booky 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.pdf +0 -0
- data/README.textile +35 -8
- data/booky.gemspec +7 -2
- data/lib/booky.rb +40 -36
- data/lib/booky/ast.rb +10 -0
- data/lib/booky/exceptions.rb +1 -1
- data/lib/booky/layout.rb +103 -0
- data/lib/booky/layout/base.rb +70 -0
- data/lib/booky/layout/base/author.rb +15 -0
- data/lib/booky/layout/base/blockquote.rb +58 -0
- data/lib/booky/layout/base/chart.rb +26 -0
- data/lib/booky/layout/base/charts/bar.rb +164 -0
- data/lib/booky/layout/base/charts/base.rb +82 -0
- data/lib/booky/layout/base/charts/line.rb +249 -0
- data/lib/booky/layout/base/code.rb +185 -0
- data/lib/booky/layout/base/copyright.rb +16 -0
- data/lib/booky/layout/base/footnote.rb +10 -0
- data/lib/booky/layout/base/h0.rb +26 -0
- data/lib/booky/layout/base/h1.rb +29 -0
- data/lib/booky/layout/base/h2.rb +29 -0
- data/lib/booky/layout/base/h3.rb +29 -0
- data/lib/booky/layout/base/h4.rb +29 -0
- data/lib/booky/layout/base/image.rb +39 -0
- data/lib/booky/layout/base/import.rb +11 -0
- data/lib/booky/layout/base/numbered_list.rb +45 -0
- data/lib/booky/layout/base/outline.rb +21 -0
- data/lib/booky/layout/base/p.rb +15 -0
- data/lib/booky/layout/base/subtitle.rb +18 -0
- data/lib/booky/layout/base/table.rb +58 -0
- data/lib/booky/layout/base/title.rb +22 -0
- data/lib/booky/layout/base/toc.rb +131 -0
- data/lib/booky/layout/base/tof.rb +73 -0
- data/lib/booky/layout/base/unnumbered_list.rb +36 -0
- data/lib/booky/layout/element.rb +28 -0
- data/lib/booky/layout/helpers.rb +29 -0
- data/lib/booky/pdf.rb +12 -10
- data/lib/booky/textile.rb +6 -4
- data/lib/booky/textile/load.rb +1 -1
- data/lib/booky/textile/precompiler.rb +1 -0
- data/lib/booky/textile/source.rb +31 -5
- data/lib/booky/textile/table.rb +52 -0
- data/lib/booky/version.rb +1 -1
- data/pdfs/Rakefile +16 -0
- data/pdfs/blockquote_source.pdf +15641 -1
- data/pdfs/footnotes.pdf +1991 -0
- data/pdfs/link_image.pdf +0 -0
- data/pdfs/lists.pdf +706 -1
- data/pdfs/tables.pdf +2162 -0
- data/pdfs/title_subtitle.pdf +3454 -0
- data/spec/ast_spec.rb +12 -0
- data/{lib/fop/lib → spec/fixtures}/.DS_Store +0 -0
- data/spec/fixtures/bar_chart.json +35 -0
- data/spec/fixtures/blockquote_pagebreak.textile +27 -0
- data/spec/fixtures/blockquote_source.textile +35 -0
- data/spec/fixtures/chart.textile +9 -0
- data/spec/fixtures/footnotes.textile +57 -0
- data/spec/fixtures/footnotes_tables.textile +29 -0
- data/spec/fixtures/image_big.jpg +0 -0
- data/spec/fixtures/image_small.jpg +0 -0
- data/spec/fixtures/import.textile +7 -0
- data/spec/fixtures/line_chart.json +49 -0
- data/spec/fixtures/link_image.textile +18 -0
- data/spec/fixtures/lists.textile +98 -0
- data/spec/fixtures/request_flow.pdf +477 -0
- data/spec/fixtures/some_code.rb +138 -0
- data/spec/fixtures/some_text.txt +10 -0
- data/spec/fixtures/source_plain_text.textile +1 -0
- data/spec/fixtures/tables.textile +42 -0
- data/spec/fixtures/textile/basic.textile +3 -0
- data/spec/fixtures/textile/source/precompiled_index.textile +2 -2
- data/spec/fixtures/textile/tables/names.xls +0 -0
- data/spec/fixtures/textile/tables/request_limits_hardware.xls +0 -0
- data/spec/fixtures/title_subtitle.textile +110 -0
- data/spec/helpers.rb +2 -1
- data/spec/pdf_spec.rb +107 -0
- data/test.pdf +16657 -0
- metadata +152 -1551
- data/lib/booky/docbook.rb +0 -13
- data/lib/booky/fo.rb +0 -15
- data/lib/booky/fonts.rb +0 -104
- data/lib/custom_fonts.xml +0 -91
- data/lib/fop/KEYS +0 -248
- data/lib/fop/LICENSE +0 -202
- data/lib/fop/NOTICE +0 -10
- data/lib/fop/README +0 -286
- data/lib/fop/build/fop.jar +0 -0
- data/lib/fop/conf/fop.xconf +0 -464
- data/lib/fop/fop +0 -254
- data/lib/fop/fop.bat +0 -85
- data/lib/fop/fop.cmd +0 -75
- data/lib/fop/fop.js +0 -341
- data/lib/fop/lib/README.txt +0 -243
- data/lib/fop/lib/avalon-framework-4.2.0.jar +0 -0
- data/lib/fop/lib/avalon-framework.LICENSE.txt +0 -175
- data/lib/fop/lib/avalon-framework.NOTICE.TXT +0 -11
- data/lib/fop/lib/batik-all-1.7.jar +0 -0
- data/lib/fop/lib/batik.LICENSE.txt +0 -201
- data/lib/fop/lib/batik.NOTICE.txt +0 -18
- data/lib/fop/lib/commons-io-1.3.1.jar +0 -0
- data/lib/fop/lib/commons-io.LICENSE.txt +0 -203
- data/lib/fop/lib/commons-io.NOTICE.txt +0 -6
- data/lib/fop/lib/commons-logging-1.0.4.jar +0 -0
- data/lib/fop/lib/commons-logging.LICENSE.txt +0 -202
- data/lib/fop/lib/commons-logging.NOTICE.txt +0 -3
- data/lib/fop/lib/jeuclid-core-3.1.9.jar +0 -0
- data/lib/fop/lib/jeuclid-fop-3.1.9.jar +0 -0
- data/lib/fop/lib/serializer-2.7.0.jar +0 -0
- data/lib/fop/lib/serializer.LICENSE.txt +0 -201
- data/lib/fop/lib/serializer.NOTICE.txt +0 -15
- data/lib/fop/lib/xalan-2.7.0.jar +0 -0
- data/lib/fop/lib/xalan.BCEL.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.LICENSE.txt +0 -202
- data/lib/fop/lib/xalan.NOTICE.txt +0 -44
- data/lib/fop/lib/xalan.regexp.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.runtime.LICENSE.txt +0 -20
- data/lib/fop/lib/xerces.LICENSE.txt +0 -56
- data/lib/fop/lib/xercesImpl-2.7.1.jar +0 -0
- data/lib/fop/lib/xercesImpl.LICENSE.txt +0 -201
- data/lib/fop/lib/xercesImpl.NOTICE.txt +0 -14
- data/lib/fop/lib/xml-apis-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +0 -73
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +0 -61
- data/lib/fop/lib/xml-apis-ext.LICENSE.sac.html +0 -75
- data/lib/fop/lib/xml-apis-ext.LICENSE.txt +0 -202
- data/lib/fop/lib/xml-apis-ext.NOTICE.txt +0 -16
- data/lib/fop/lib/xml-apis-ext.README.dom.txt +0 -56
- data/lib/fop/lib/xml-apis.LICENSE-SAX.html +0 -17
- data/lib/fop/lib/xml-apis.LICENSE.DOM-documentation.html +0 -74
- data/lib/fop/lib/xml-apis.LICENSE.DOM-software.html +0 -66
- data/lib/fop/lib/xml-apis.LICENSE.txt +0 -201
- data/lib/fop/lib/xml-apis.NOTICE.txt +0 -13
- data/lib/fop/lib/xmlgraphics-commons-1.4.jar +0 -0
- data/lib/fop/lib/xmlgraphics-commons.LICENSE.txt +0 -202
- data/lib/fop/lib/xmlgraphics-commons.NOTICE.txt +0 -5
- data/lib/fop/lib/xslthl-2.0.2.jar +0 -0
- data/lib/fop/status.xml +0 -1809
- data/lib/params.pdf +0 -0
- data/lib/stylesheets/.CatalogManager.properties.example +0 -61
- data/lib/stylesheets/.urilist +0 -1
- data/lib/stylesheets/AUTHORS +0 -4
- data/lib/stylesheets/BUGS +0 -21
- data/lib/stylesheets/COPYING +0 -47
- data/lib/stylesheets/INSTALL +0 -88
- data/lib/stylesheets/Makefile +0 -89
- data/lib/stylesheets/NEWS +0 -139
- data/lib/stylesheets/NEWS.html +0 -25
- data/lib/stylesheets/NEWS.xml +0 -145
- data/lib/stylesheets/README +0 -166
- data/lib/stylesheets/RELEASE-NOTES.html +0 -8353
- data/lib/stylesheets/RELEASE-NOTES.pdf +6 -24345
- data/lib/stylesheets/RELEASE-NOTES.txt +0 -8575
- data/lib/stylesheets/RELEASE-NOTES.xml +0 -10327
- data/lib/stylesheets/TODO +0 -23
- data/lib/stylesheets/VERSION +0 -115
- data/lib/stylesheets/catalog.xml +0 -8
- data/lib/stylesheets/common/addns.xsl +0 -118
- data/lib/stylesheets/common/af.xml +0 -1229
- data/lib/stylesheets/common/am.xml +0 -1229
- data/lib/stylesheets/common/ar.xml +0 -1229
- data/lib/stylesheets/common/as.xml +0 -660
- data/lib/stylesheets/common/ast.xml +0 -660
- data/lib/stylesheets/common/autoidx-kimber.xsl +0 -45
- data/lib/stylesheets/common/autoidx-kosek.xsl +0 -155
- data/lib/stylesheets/common/az.xml +0 -672
- data/lib/stylesheets/common/bg.xml +0 -724
- data/lib/stylesheets/common/bn.xml +0 -1229
- data/lib/stylesheets/common/bn_in.xml +0 -660
- data/lib/stylesheets/common/bs.xml +0 -662
- data/lib/stylesheets/common/ca.xml +0 -660
- data/lib/stylesheets/common/charmap.xml +0 -185
- data/lib/stylesheets/common/charmap.xsl +0 -222
- data/lib/stylesheets/common/common.xml +0 -622
- data/lib/stylesheets/common/common.xsl +0 -2040
- data/lib/stylesheets/common/cs.xml +0 -700
- data/lib/stylesheets/common/cy.xml +0 -1245
- data/lib/stylesheets/common/da.xml +0 -664
- data/lib/stylesheets/common/de.xml +0 -666
- data/lib/stylesheets/common/el.xml +0 -729
- data/lib/stylesheets/common/en.xml +0 -1230
- data/lib/stylesheets/common/entities.ent +0 -67
- data/lib/stylesheets/common/eo.xml +0 -1229
- data/lib/stylesheets/common/es.xml +0 -676
- data/lib/stylesheets/common/et.xml +0 -1229
- data/lib/stylesheets/common/eu.xml +0 -1229
- data/lib/stylesheets/common/fa.xml +0 -660
- data/lib/stylesheets/common/fi.xml +0 -670
- data/lib/stylesheets/common/fr.xml +0 -690
- data/lib/stylesheets/common/ga.xml +0 -1229
- data/lib/stylesheets/common/gentext.xsl +0 -840
- data/lib/stylesheets/common/gl.xml +0 -1229
- data/lib/stylesheets/common/gu.xml +0 -660
- data/lib/stylesheets/common/he.xml +0 -1229
- data/lib/stylesheets/common/hi.xml +0 -660
- data/lib/stylesheets/common/hr.xml +0 -662
- data/lib/stylesheets/common/hu.xml +0 -678
- data/lib/stylesheets/common/id.xml +0 -1229
- data/lib/stylesheets/common/insertfile.xsl +0 -113
- data/lib/stylesheets/common/is.xml +0 -672
- data/lib/stylesheets/common/it.xml +0 -1229
- data/lib/stylesheets/common/ja.xml +0 -660
- data/lib/stylesheets/common/ka.xml +0 -700
- data/lib/stylesheets/common/kn.xml +0 -1229
- data/lib/stylesheets/common/ko.xml +0 -1229
- data/lib/stylesheets/common/ky.xml +0 -732
- data/lib/stylesheets/common/l10n.dtd +0 -64
- data/lib/stylesheets/common/l10n.xml +0 -77
- data/lib/stylesheets/common/l10n.xsl +0 -594
- data/lib/stylesheets/common/la.xml +0 -1229
- data/lib/stylesheets/common/labels.xsl +0 -888
- data/lib/stylesheets/common/lt.xml +0 -678
- data/lib/stylesheets/common/lv.xml +0 -1229
- data/lib/stylesheets/common/ml.xml +0 -660
- data/lib/stylesheets/common/mn.xml +0 -730
- data/lib/stylesheets/common/mr.xml +0 -660
- data/lib/stylesheets/common/nb.xml +0 -1229
- data/lib/stylesheets/common/nds.xml +0 -666
- data/lib/stylesheets/common/nl.xml +0 -660
- data/lib/stylesheets/common/nn.xml +0 -1229
- data/lib/stylesheets/common/olink.xsl +0 -1227
- data/lib/stylesheets/common/or.xml +0 -1229
- data/lib/stylesheets/common/pa.xml +0 -660
- data/lib/stylesheets/common/pi.xml +0 -168
- data/lib/stylesheets/common/pi.xsl +0 -347
- data/lib/stylesheets/common/pl.xml +0 -678
- data/lib/stylesheets/common/pt.xml +0 -1229
- data/lib/stylesheets/common/pt_br.xml +0 -1229
- data/lib/stylesheets/common/refentry.xml +0 -781
- data/lib/stylesheets/common/refentry.xsl +0 -1353
- data/lib/stylesheets/common/ro.xml +0 -1229
- data/lib/stylesheets/common/ru.xml +0 -726
- data/lib/stylesheets/common/sk.xml +0 -1229
- data/lib/stylesheets/common/sl.xml +0 -1229
- data/lib/stylesheets/common/sq.xml +0 -1229
- data/lib/stylesheets/common/sr.xml +0 -720
- data/lib/stylesheets/common/sr_Latn.xml +0 -679
- data/lib/stylesheets/common/subtitles.xsl +0 -156
- data/lib/stylesheets/common/sv.xml +0 -664
- data/lib/stylesheets/common/ta.xml +0 -660
- data/lib/stylesheets/common/table.xsl +0 -515
- data/lib/stylesheets/common/targetdatabase.dtd +0 -49
- data/lib/stylesheets/common/targets.xsl +0 -334
- data/lib/stylesheets/common/te.xml +0 -660
- data/lib/stylesheets/common/th.xml +0 -1229
- data/lib/stylesheets/common/titles.xsl +0 -806
- data/lib/stylesheets/common/tl.xml +0 -1229
- data/lib/stylesheets/common/tr.xml +0 -666
- data/lib/stylesheets/common/uk.xml +0 -726
- data/lib/stylesheets/common/utility.xml +0 -259
- data/lib/stylesheets/common/utility.xsl +0 -291
- data/lib/stylesheets/common/vi.xml +0 -1229
- data/lib/stylesheets/common/xh.xml +0 -1229
- data/lib/stylesheets/common/zh.xml +0 -660
- data/lib/stylesheets/common/zh_cn.xml +0 -660
- data/lib/stylesheets/common/zh_tw.xml +0 -660
- data/lib/stylesheets/docsrc/authors.xml +0 -10
- data/lib/stylesheets/docsrc/copyright.xml +0 -18
- data/lib/stylesheets/docsrc/license.xml +0 -23
- data/lib/stylesheets/docsrc/page.png +0 -0
- data/lib/stylesheets/docsrc/reference.css +0 -79
- data/lib/stylesheets/docsrc/reference.xml +0 -229
- data/lib/stylesheets/docsrc/reference.xml.included +0 -33905
- data/lib/stylesheets/docsrc/warranty.xml +0 -11
- data/lib/stylesheets/eclipse/eclipse.xsl +0 -294
- data/lib/stylesheets/eclipse/eclipse3.xsl +0 -112
- data/lib/stylesheets/eclipse/profile-eclipse.xsl +0 -268
- data/lib/stylesheets/epub/README +0 -88
- data/lib/stylesheets/epub/bin/dbtoepub +0 -76
- data/lib/stylesheets/epub/bin/lib/docbook.rb +0 -227
- data/lib/stylesheets/epub/bin/xslt/obfuscate.xsl +0 -14
- data/lib/stylesheets/epub/docbook.xsl +0 -1678
- data/lib/stylesheets/extensions/LICENSE.txt +0 -264
- data/lib/stylesheets/extensions/NOTICE.txt +0 -12
- data/lib/stylesheets/extensions/README.LIBXSLT +0 -52
- data/lib/stylesheets/extensions/README.txt +0 -4
- data/lib/stylesheets/extensions/docbook.py +0 -239
- data/lib/stylesheets/extensions/lucene-analyzers-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/lucene-core-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/saxon65.jar +0 -0
- data/lib/stylesheets/extensions/webhelpindexer.jar +0 -0
- data/lib/stylesheets/extensions/xalan27.jar +0 -0
- data/lib/stylesheets/extensions/xslt.py +0 -84
- data/lib/stylesheets/fo/admon.xsl +0 -132
- data/lib/stylesheets/fo/annotations.xsl +0 -20
- data/lib/stylesheets/fo/autoidx-kimber.xsl +0 -173
- data/lib/stylesheets/fo/autoidx-kosek.xsl +0 -140
- data/lib/stylesheets/fo/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/fo/autoidx.xsl +0 -1331
- data/lib/stylesheets/fo/autotoc.xsl +0 -917
- data/lib/stylesheets/fo/axf.xsl +0 -112
- data/lib/stylesheets/fo/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/fo/biblio.xsl +0 -1171
- data/lib/stylesheets/fo/block.xsl +0 -656
- data/lib/stylesheets/fo/callout.xsl +0 -232
- data/lib/stylesheets/fo/component.xsl +0 -900
- data/lib/stylesheets/fo/division.xsl +0 -614
- data/lib/stylesheets/fo/docbook.xsl +0 -333
- data/lib/stylesheets/fo/ebnf.xsl +0 -326
- data/lib/stylesheets/fo/fo-rtf.xsl +0 -155
- data/lib/stylesheets/fo/fo.xsl +0 -120
- data/lib/stylesheets/fo/footnote.xsl +0 -221
- data/lib/stylesheets/fo/fop.xsl +0 -95
- data/lib/stylesheets/fo/fop1.xsl +0 -225
- data/lib/stylesheets/fo/formal.xsl +0 -644
- data/lib/stylesheets/fo/glossary.xsl +0 -1170
- data/lib/stylesheets/fo/graphics.xsl +0 -649
- data/lib/stylesheets/fo/highlight.xsl +0 -78
- data/lib/stylesheets/fo/htmltbl.xsl +0 -427
- data/lib/stylesheets/fo/index.xsl +0 -486
- data/lib/stylesheets/fo/info.xsl +0 -36
- data/lib/stylesheets/fo/inline.xsl +0 -1289
- data/lib/stylesheets/fo/keywords.xsl +0 -23
- data/lib/stylesheets/fo/lists.xsl +0 -1395
- data/lib/stylesheets/fo/math.xsl +0 -141
- data/lib/stylesheets/fo/pagesetup.xsl +0 -2571
- data/lib/stylesheets/fo/param.xml +0 -12445
- data/lib/stylesheets/fo/param.xsl +0 -969
- data/lib/stylesheets/fo/passivetex.xsl +0 -38
- data/lib/stylesheets/fo/pdf2index +0 -140
- data/lib/stylesheets/fo/pi.xml +0 -1002
- data/lib/stylesheets/fo/pi.xsl +0 -1093
- data/lib/stylesheets/fo/profile-docbook.xsl +0 -288
- data/lib/stylesheets/fo/ptc.xsl +0 -79
- data/lib/stylesheets/fo/qandaset.xsl +0 -397
- data/lib/stylesheets/fo/refentry.xsl +0 -640
- data/lib/stylesheets/fo/sections.xsl +0 -766
- data/lib/stylesheets/fo/spaces.xsl +0 -276
- data/lib/stylesheets/fo/synop.xsl +0 -1009
- data/lib/stylesheets/fo/table.xml +0 -135
- data/lib/stylesheets/fo/table.xsl +0 -1682
- data/lib/stylesheets/fo/task.xsl +0 -93
- data/lib/stylesheets/fo/titlepage.templates.xml +0 -1354
- data/lib/stylesheets/fo/titlepage.templates.xsl +0 -5186
- data/lib/stylesheets/fo/titlepage.xsl +0 -769
- data/lib/stylesheets/fo/toc.xsl +0 -334
- data/lib/stylesheets/fo/verbatim.xsl +0 -466
- data/lib/stylesheets/fo/xep.xsl +0 -182
- data/lib/stylesheets/fo/xref.xsl +0 -1539
- data/lib/stylesheets/highlighting/README +0 -16
- data/lib/stylesheets/highlighting/c-hl.xml +0 -101
- data/lib/stylesheets/highlighting/common.xsl +0 -121
- data/lib/stylesheets/highlighting/cpp-hl.xml +0 -150
- data/lib/stylesheets/highlighting/csharp-hl.xml +0 -187
- data/lib/stylesheets/highlighting/delphi-hl.xml +0 -200
- data/lib/stylesheets/highlighting/ini-hl.xml +0 -45
- data/lib/stylesheets/highlighting/java-hl.xml +0 -117
- data/lib/stylesheets/highlighting/javascript-hl.xml +0 -147
- data/lib/stylesheets/highlighting/m2-hl.xml +0 -90
- data/lib/stylesheets/highlighting/myxml-hl.xml +0 -116
- data/lib/stylesheets/highlighting/perl-hl.xml +0 -120
- data/lib/stylesheets/highlighting/php-hl.xml +0 -149
- data/lib/stylesheets/highlighting/python-hl.xml +0 -100
- data/lib/stylesheets/highlighting/ruby-hl.xml +0 -109
- data/lib/stylesheets/highlighting/tcl-hl.xml +0 -180
- data/lib/stylesheets/highlighting/xslthl-config.xml +0 -46
- data/lib/stylesheets/html/admon.xsl +0 -136
- data/lib/stylesheets/html/annotations.xsl +0 -171
- data/lib/stylesheets/html/autoidx-kimber.xsl +0 -166
- data/lib/stylesheets/html/autoidx-kosek.xsl +0 -121
- data/lib/stylesheets/html/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/html/autoidx.xsl +0 -740
- data/lib/stylesheets/html/autotoc.xsl +0 -709
- data/lib/stylesheets/html/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/html/biblio.xsl +0 -1255
- data/lib/stylesheets/html/block.xsl +0 -540
- data/lib/stylesheets/html/callout.xsl +0 -202
- data/lib/stylesheets/html/changebars.xsl +0 -123
- data/lib/stylesheets/html/chunk-changebars.xsl +0 -100
- data/lib/stylesheets/html/chunk-code.xsl +0 -672
- data/lib/stylesheets/html/chunk-common.xsl +0 -1921
- data/lib/stylesheets/html/chunk.xsl +0 -53
- data/lib/stylesheets/html/chunker.xsl +0 -440
- data/lib/stylesheets/html/chunkfast.xsl +0 -73
- data/lib/stylesheets/html/chunktoc.xsl +0 -541
- data/lib/stylesheets/html/component.xsl +0 -427
- data/lib/stylesheets/html/division.xsl +0 -219
- data/lib/stylesheets/html/docbook.css.xml +0 -109
- data/lib/stylesheets/html/docbook.xsl +0 -468
- data/lib/stylesheets/html/ebnf.xsl +0 -330
- data/lib/stylesheets/html/footnote.xsl +0 -314
- data/lib/stylesheets/html/formal.xsl +0 -427
- data/lib/stylesheets/html/glossary.xsl +0 -493
- data/lib/stylesheets/html/graphics.xsl +0 -1516
- data/lib/stylesheets/html/highlight.xsl +0 -87
- data/lib/stylesheets/html/html-rtf.xsl +0 -336
- data/lib/stylesheets/html/html.xsl +0 -614
- data/lib/stylesheets/html/htmltbl.xsl +0 -137
- data/lib/stylesheets/html/index.xsl +0 -290
- data/lib/stylesheets/html/info.xsl +0 -45
- data/lib/stylesheets/html/inline.xsl +0 -1491
- data/lib/stylesheets/html/keywords.xsl +0 -37
- data/lib/stylesheets/html/lists.xsl +0 -1185
- data/lib/stylesheets/html/maketoc.xsl +0 -87
- data/lib/stylesheets/html/manifest.xsl +0 -23
- data/lib/stylesheets/html/math.xsl +0 -271
- data/lib/stylesheets/html/oldchunker.xsl +0 -203
- data/lib/stylesheets/html/onechunk.xsl +0 -38
- data/lib/stylesheets/html/param.xml +0 -10905
- data/lib/stylesheets/html/param.xsl +0 -436
- data/lib/stylesheets/html/pi.xml +0 -1113
- data/lib/stylesheets/html/pi.xsl +0 -1264
- data/lib/stylesheets/html/profile-chunk-code.xsl +0 -614
- data/lib/stylesheets/html/profile-chunk.xsl +0 -53
- data/lib/stylesheets/html/profile-docbook.xsl +0 -412
- data/lib/stylesheets/html/profile-onechunk.xsl +0 -38
- data/lib/stylesheets/html/qandaset.xsl +0 -438
- data/lib/stylesheets/html/refentry.xsl +0 -301
- data/lib/stylesheets/html/sections.xsl +0 -617
- data/lib/stylesheets/html/synop.xsl +0 -1556
- data/lib/stylesheets/html/table.xsl +0 -1201
- data/lib/stylesheets/html/task.xsl +0 -78
- data/lib/stylesheets/html/titlepage.templates.xml +0 -708
- data/lib/stylesheets/html/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/html/titlepage.xsl +0 -1049
- data/lib/stylesheets/html/toc.xsl +0 -352
- data/lib/stylesheets/html/verbatim.xsl +0 -411
- data/lib/stylesheets/html/xref.xsl +0 -1378
- data/lib/stylesheets/htmlhelp/htmlhelp-common.xsl +0 -1108
- data/lib/stylesheets/htmlhelp/htmlhelp.xsl +0 -23
- data/lib/stylesheets/htmlhelp/profile-htmlhelp-common.xsl +0 -1082
- data/lib/stylesheets/htmlhelp/profile-htmlhelp.xsl +0 -23
- data/lib/stylesheets/images/annot-close.png +0 -0
- data/lib/stylesheets/images/annot-open.png +0 -0
- data/lib/stylesheets/images/blank.png +0 -0
- data/lib/stylesheets/images/callouts/1.gif +0 -0
- data/lib/stylesheets/images/callouts/1.png +0 -0
- data/lib/stylesheets/images/callouts/1.svg +0 -15
- data/lib/stylesheets/images/callouts/10.gif +0 -0
- data/lib/stylesheets/images/callouts/10.png +0 -0
- data/lib/stylesheets/images/callouts/10.svg +0 -18
- data/lib/stylesheets/images/callouts/11.gif +0 -0
- data/lib/stylesheets/images/callouts/11.png +0 -0
- data/lib/stylesheets/images/callouts/11.svg +0 -16
- data/lib/stylesheets/images/callouts/12.gif +0 -0
- data/lib/stylesheets/images/callouts/12.png +0 -0
- data/lib/stylesheets/images/callouts/12.svg +0 -18
- data/lib/stylesheets/images/callouts/13.gif +0 -0
- data/lib/stylesheets/images/callouts/13.png +0 -0
- data/lib/stylesheets/images/callouts/13.svg +0 -20
- data/lib/stylesheets/images/callouts/14.gif +0 -0
- data/lib/stylesheets/images/callouts/14.png +0 -0
- data/lib/stylesheets/images/callouts/14.svg +0 -17
- data/lib/stylesheets/images/callouts/15.gif +0 -0
- data/lib/stylesheets/images/callouts/15.png +0 -0
- data/lib/stylesheets/images/callouts/15.svg +0 -19
- data/lib/stylesheets/images/callouts/16.svg +0 -20
- data/lib/stylesheets/images/callouts/17.svg +0 -17
- data/lib/stylesheets/images/callouts/18.svg +0 -21
- data/lib/stylesheets/images/callouts/19.svg +0 -20
- data/lib/stylesheets/images/callouts/2.gif +0 -0
- data/lib/stylesheets/images/callouts/2.png +0 -0
- data/lib/stylesheets/images/callouts/2.svg +0 -17
- data/lib/stylesheets/images/callouts/20.svg +0 -20
- data/lib/stylesheets/images/callouts/21.svg +0 -18
- data/lib/stylesheets/images/callouts/22.svg +0 -20
- data/lib/stylesheets/images/callouts/23.svg +0 -22
- data/lib/stylesheets/images/callouts/24.svg +0 -19
- data/lib/stylesheets/images/callouts/25.svg +0 -21
- data/lib/stylesheets/images/callouts/26.svg +0 -22
- data/lib/stylesheets/images/callouts/27.svg +0 -19
- data/lib/stylesheets/images/callouts/28.svg +0 -23
- data/lib/stylesheets/images/callouts/29.svg +0 -22
- data/lib/stylesheets/images/callouts/3.gif +0 -0
- data/lib/stylesheets/images/callouts/3.png +0 -0
- data/lib/stylesheets/images/callouts/3.svg +0 -19
- data/lib/stylesheets/images/callouts/30.svg +0 -22
- data/lib/stylesheets/images/callouts/4.gif +0 -0
- data/lib/stylesheets/images/callouts/4.png +0 -0
- data/lib/stylesheets/images/callouts/4.svg +0 -16
- data/lib/stylesheets/images/callouts/5.gif +0 -0
- data/lib/stylesheets/images/callouts/5.png +0 -0
- data/lib/stylesheets/images/callouts/5.svg +0 -18
- data/lib/stylesheets/images/callouts/6.gif +0 -0
- data/lib/stylesheets/images/callouts/6.png +0 -0
- data/lib/stylesheets/images/callouts/6.svg +0 -19
- data/lib/stylesheets/images/callouts/7.gif +0 -0
- data/lib/stylesheets/images/callouts/7.png +0 -0
- data/lib/stylesheets/images/callouts/7.svg +0 -16
- data/lib/stylesheets/images/callouts/8.gif +0 -0
- data/lib/stylesheets/images/callouts/8.png +0 -0
- data/lib/stylesheets/images/callouts/8.svg +0 -20
- data/lib/stylesheets/images/callouts/9.gif +0 -0
- data/lib/stylesheets/images/callouts/9.png +0 -0
- data/lib/stylesheets/images/callouts/9.svg +0 -19
- data/lib/stylesheets/images/caution.gif +0 -0
- data/lib/stylesheets/images/caution.png +0 -0
- data/lib/stylesheets/images/caution.svg +0 -25
- data/lib/stylesheets/images/caution.tif +0 -0
- data/lib/stylesheets/images/colorsvg/caution.svg +0 -141
- data/lib/stylesheets/images/colorsvg/home.svg +0 -498
- data/lib/stylesheets/images/colorsvg/important.svg +0 -239
- data/lib/stylesheets/images/colorsvg/next.svg +0 -338
- data/lib/stylesheets/images/colorsvg/note.svg +0 -200
- data/lib/stylesheets/images/colorsvg/prev.svg +0 -338
- data/lib/stylesheets/images/colorsvg/tip.svg +0 -367
- data/lib/stylesheets/images/colorsvg/up.svg +0 -338
- data/lib/stylesheets/images/colorsvg/warning.svg +0 -232
- data/lib/stylesheets/images/draft.png +0 -0
- data/lib/stylesheets/images/home.gif +0 -0
- data/lib/stylesheets/images/home.png +0 -0
- data/lib/stylesheets/images/home.svg +0 -26
- data/lib/stylesheets/images/important.gif +0 -0
- data/lib/stylesheets/images/important.png +0 -0
- data/lib/stylesheets/images/important.svg +0 -25
- data/lib/stylesheets/images/important.tif +0 -0
- data/lib/stylesheets/images/next.gif +0 -0
- data/lib/stylesheets/images/next.png +0 -0
- data/lib/stylesheets/images/next.svg +0 -19
- data/lib/stylesheets/images/note.gif +0 -0
- data/lib/stylesheets/images/note.png +0 -0
- data/lib/stylesheets/images/note.svg +0 -33
- data/lib/stylesheets/images/note.tif +0 -0
- data/lib/stylesheets/images/prev.gif +0 -0
- data/lib/stylesheets/images/prev.png +0 -0
- data/lib/stylesheets/images/prev.svg +0 -19
- data/lib/stylesheets/images/tip.gif +0 -0
- data/lib/stylesheets/images/tip.png +0 -0
- data/lib/stylesheets/images/tip.svg +0 -31
- data/lib/stylesheets/images/tip.tif +0 -0
- data/lib/stylesheets/images/toc-blank.png +0 -0
- data/lib/stylesheets/images/toc-minus.png +0 -0
- data/lib/stylesheets/images/toc-plus.png +0 -0
- data/lib/stylesheets/images/up.gif +0 -0
- data/lib/stylesheets/images/up.png +0 -0
- data/lib/stylesheets/images/up.svg +0 -19
- data/lib/stylesheets/images/warning.gif +0 -0
- data/lib/stylesheets/images/warning.png +0 -0
- data/lib/stylesheets/images/warning.svg +0 -23
- data/lib/stylesheets/images/warning.tif +0 -0
- data/lib/stylesheets/install.sh +0 -977
- data/lib/stylesheets/javahelp/javahelp.xsl +0 -613
- data/lib/stylesheets/javahelp/profile-javahelp.xsl +0 -548
- data/lib/stylesheets/lib/lib.xsl +0 -482
- data/lib/stylesheets/manpages/ChangeLog.20020917 +0 -195
- data/lib/stylesheets/manpages/block.xsl +0 -412
- data/lib/stylesheets/manpages/charmap.groff.xsl +0 -6014
- data/lib/stylesheets/manpages/docbook.xsl +0 -302
- data/lib/stylesheets/manpages/endnotes.xsl +0 -587
- data/lib/stylesheets/manpages/html-synop.xsl +0 -1569
- data/lib/stylesheets/manpages/info.xsl +0 -801
- data/lib/stylesheets/manpages/inline.xsl +0 -221
- data/lib/stylesheets/manpages/lists.xsl +0 -606
- data/lib/stylesheets/manpages/other.xsl +0 -889
- data/lib/stylesheets/manpages/param.xml +0 -3220
- data/lib/stylesheets/manpages/param.xsl +0 -195
- data/lib/stylesheets/manpages/pi.xml +0 -70
- data/lib/stylesheets/manpages/pi.xsl +0 -80
- data/lib/stylesheets/manpages/profile-docbook.xsl +0 -282
- data/lib/stylesheets/manpages/refentry.xsl +0 -321
- data/lib/stylesheets/manpages/synop.xsl +0 -433
- data/lib/stylesheets/manpages/table.xsl +0 -633
- data/lib/stylesheets/manpages/utility.xsl +0 -556
- data/lib/stylesheets/params/abstract.notitle.enabled.xml +0 -22
- data/lib/stylesheets/params/abstract.properties.xml +0 -32
- data/lib/stylesheets/params/abstract.title.properties.xml +0 -39
- data/lib/stylesheets/params/active.toc.xml +0 -29
- data/lib/stylesheets/params/ade.extensions.xml +0 -32
- data/lib/stylesheets/params/admon.graphics.extension.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.path.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.xml +0 -29
- data/lib/stylesheets/params/admon.style.xml +0 -31
- data/lib/stylesheets/params/admon.textlabel.xml +0 -32
- data/lib/stylesheets/params/admonition.properties.xml +0 -25
- data/lib/stylesheets/params/admonition.title.properties.xml +0 -32
- data/lib/stylesheets/params/alignment.xml +0 -41
- data/lib/stylesheets/params/annotate.toc.xml +0 -28
- data/lib/stylesheets/params/annotation.css.xml +0 -71
- data/lib/stylesheets/params/annotation.graphic.close.xml +0 -31
- data/lib/stylesheets/params/annotation.graphic.open.xml +0 -28
- data/lib/stylesheets/params/annotation.js.xml +0 -33
- data/lib/stylesheets/params/annotation.support.xml +0 -29
- data/lib/stylesheets/params/appendix.autolabel.xml +0 -73
- data/lib/stylesheets/params/arbortext.extensions.xml +0 -30
- data/lib/stylesheets/params/article.appendix.title.properties.xml +0 -33
- data/lib/stylesheets/params/author.othername.in.middle.xml +0 -31
- data/lib/stylesheets/params/autolayout-file.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.in.hyperlink.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.separator.xml +0 -27
- data/lib/stylesheets/params/axf.extensions.xml +0 -33
- data/lib/stylesheets/params/banner.before.navigation.xml +0 -25
- data/lib/stylesheets/params/base.dir.xml +0 -29
- data/lib/stylesheets/params/biblioentry.item.separator.xml +0 -26
- data/lib/stylesheets/params/biblioentry.properties.xml +0 -28
- data/lib/stylesheets/params/bibliography.collection.xml +0 -104
- data/lib/stylesheets/params/bibliography.numbered.xml +0 -27
- data/lib/stylesheets/params/bibliography.style.xml +0 -35
- data/lib/stylesheets/params/blockquote.properties.xml +0 -34
- data/lib/stylesheets/params/blurb.on.titlepage.enabled.xml +0 -31
- data/lib/stylesheets/params/body.attributes.xml +0 -31
- data/lib/stylesheets/params/body.bg.color.xml +0 -28
- data/lib/stylesheets/params/body.end.indent.xml +0 -37
- data/lib/stylesheets/params/body.font.family.xml +0 -32
- data/lib/stylesheets/params/body.font.master.xml +0 -30
- data/lib/stylesheets/params/body.font.size.xml +0 -31
- data/lib/stylesheets/params/body.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/body.margin.top.xml +0 -28
- data/lib/stylesheets/params/body.start.indent.xml +0 -64
- data/lib/stylesheets/params/bookmarks.collapse.xml +0 -31
- data/lib/stylesheets/params/bridgehead.in.toc.xml +0 -28
- data/lib/stylesheets/params/bullet.image.xml +0 -28
- data/lib/stylesheets/params/callout.defaultcolumn.xml +0 -30
- data/lib/stylesheets/params/callout.graphics.extension.xml +0 -33
- data/lib/stylesheets/params/callout.graphics.number.limit.xml +0 -34
- data/lib/stylesheets/params/callout.graphics.path.xml +0 -31
- data/lib/stylesheets/params/callout.graphics.xml +0 -30
- data/lib/stylesheets/params/callout.icon.size.xml +0 -28
- data/lib/stylesheets/params/callout.list.table.xml +0 -32
- data/lib/stylesheets/params/callout.unicode.font.xml +0 -29
- data/lib/stylesheets/params/callout.unicode.number.limit.xml +0 -35
- data/lib/stylesheets/params/callout.unicode.start.character.xml +0 -33
- data/lib/stylesheets/params/callout.unicode.xml +0 -26
- data/lib/stylesheets/params/callouts.extension.xml +0 -30
- data/lib/stylesheets/params/chapter.autolabel.xml +0 -71
- data/lib/stylesheets/params/chunk.append.xml +0 -30
- data/lib/stylesheets/params/chunk.first.sections.xml +0 -31
- data/lib/stylesheets/params/chunk.quietly.xml +0 -30
- data/lib/stylesheets/params/chunk.section.depth.xml +0 -27
- data/lib/stylesheets/params/chunk.sections.xml +0 -30
- data/lib/stylesheets/params/chunk.separate.lots.xml +0 -36
- data/lib/stylesheets/params/chunk.toc.xml +0 -30
- data/lib/stylesheets/params/chunk.tocs.and.lots.has.title.xml +0 -28
- data/lib/stylesheets/params/chunk.tocs.and.lots.xml +0 -32
- data/lib/stylesheets/params/chunker.output.cdata-section-elements.xml +0 -30
- data/lib/stylesheets/params/chunker.output.doctype-public.xml +0 -31
- data/lib/stylesheets/params/chunker.output.doctype-system.xml +0 -31
- data/lib/stylesheets/params/chunker.output.encoding.xml +0 -31
- data/lib/stylesheets/params/chunker.output.indent.xml +0 -30
- data/lib/stylesheets/params/chunker.output.media-type.xml +0 -35
- data/lib/stylesheets/params/chunker.output.method.xml +0 -32
- data/lib/stylesheets/params/chunker.output.omit-xml-declaration.xml +0 -30
- data/lib/stylesheets/params/chunker.output.standalone.xml +0 -31
- data/lib/stylesheets/params/citerefentry.link.xml +0 -29
- data/lib/stylesheets/params/collect.xref.targets.xml +0 -33
- data/lib/stylesheets/params/column.count.back.xml +0 -27
- data/lib/stylesheets/params/column.count.body.xml +0 -27
- data/lib/stylesheets/params/column.count.front.xml +0 -27
- data/lib/stylesheets/params/column.count.index.xml +0 -27
- data/lib/stylesheets/params/column.count.lot.xml +0 -28
- data/lib/stylesheets/params/column.count.titlepage.xml +0 -27
- data/lib/stylesheets/params/column.gap.back.xml +0 -28
- data/lib/stylesheets/params/column.gap.body.xml +0 -28
- data/lib/stylesheets/params/column.gap.front.xml +0 -28
- data/lib/stylesheets/params/column.gap.index.xml +0 -28
- data/lib/stylesheets/params/column.gap.lot.xml +0 -28
- data/lib/stylesheets/params/column.gap.titlepage.xml +0 -29
- data/lib/stylesheets/params/compact.list.item.spacing.xml +0 -28
- data/lib/stylesheets/params/component.label.includes.part.label.xml +0 -39
- data/lib/stylesheets/params/component.title.properties.xml +0 -40
- data/lib/stylesheets/params/component.titlepage.properties.xml +0 -33
- data/lib/stylesheets/params/contrib.inline.enabled.xml +0 -26
- data/lib/stylesheets/params/crop.mark.bleed.xml +0 -28
- data/lib/stylesheets/params/crop.mark.offset.xml +0 -28
- data/lib/stylesheets/params/crop.mark.width.xml +0 -28
- data/lib/stylesheets/params/crop.marks.xml +0 -28
- data/lib/stylesheets/params/css.decoration.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.dir.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.xml +0 -29
- data/lib/stylesheets/params/current.docid.xml +0 -27
- data/lib/stylesheets/params/currentpage.marker.xml +0 -25
- data/lib/stylesheets/params/custom.css.source.xml +0 -119
- data/lib/stylesheets/params/default.float.class.xml +0 -34
- data/lib/stylesheets/params/default.image.width.xml +0 -30
- data/lib/stylesheets/params/default.table.frame.xml +0 -28
- data/lib/stylesheets/params/default.table.rules.xml +0 -76
- data/lib/stylesheets/params/default.table.width.xml +0 -26
- data/lib/stylesheets/params/default.units.xml +0 -37
- data/lib/stylesheets/params/dingbat.font.family.xml +0 -33
- data/lib/stylesheets/params/docbook.css.link.xml +0 -42
- data/lib/stylesheets/params/docbook.css.source.xml +0 -83
- data/lib/stylesheets/params/double.sided.xml +0 -31
- data/lib/stylesheets/params/draft.mode.xml +0 -36
- data/lib/stylesheets/params/draft.watermark.image.xml +0 -27
- data/lib/stylesheets/params/dry-run.xml +0 -27
- data/lib/stylesheets/params/dynamic.toc.xml +0 -29
- data/lib/stylesheets/params/ebnf.assignment.xml +0 -39
- data/lib/stylesheets/params/ebnf.statement.terminator.xml +0 -32
- data/lib/stylesheets/params/ebnf.table.bgcolor.xml +0 -30
- data/lib/stylesheets/params/ebnf.table.border.xml +0 -26
- data/lib/stylesheets/params/eclipse.autolabel.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.id.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.name.xml +0 -27
- data/lib/stylesheets/params/eclipse.plugin.provider.xml +0 -27
- data/lib/stylesheets/params/editedby.enabled.xml +0 -27
- data/lib/stylesheets/params/email.delimiters.enabled.xml +0 -34
- data/lib/stylesheets/params/email.mailto.enabled.xml +0 -29
- data/lib/stylesheets/params/emphasis.propagates.style.xml +0 -26
- data/lib/stylesheets/params/entry.propagates.style.xml +0 -30
- data/lib/stylesheets/params/epub.autolabel.xml +0 -28
- data/lib/stylesheets/params/equation.number.properties.xml +0 -28
- data/lib/stylesheets/params/equation.properties.xml +0 -27
- data/lib/stylesheets/params/example.properties.xml +0 -27
- data/lib/stylesheets/params/exsl.node.set.available.xml +0 -44
- data/lib/stylesheets/params/feedback.href.xml +0 -28
- data/lib/stylesheets/params/feedback.link.text.xml +0 -28
- data/lib/stylesheets/params/feedback.with.ids.xml +0 -27
- data/lib/stylesheets/params/figure.properties.xml +0 -27
- data/lib/stylesheets/params/filename-prefix.xml +0 -28
- data/lib/stylesheets/params/firstterm.only.link.xml +0 -29
- data/lib/stylesheets/params/foil.properties.xml +0 -37
- data/lib/stylesheets/params/foil.subtitle.properties.xml +0 -36
- data/lib/stylesheets/params/foil.title.master.xml +0 -29
- data/lib/stylesheets/params/foil.title.size.xml +0 -32
- data/lib/stylesheets/params/foilgroup.properties.xml +0 -31
- data/lib/stylesheets/params/foilgroup.toc.xml +0 -29
- data/lib/stylesheets/params/footer.column.widths.xml +0 -80
- data/lib/stylesheets/params/footer.content.properties.xml +0 -34
- data/lib/stylesheets/params/footer.hr.xml +0 -26
- data/lib/stylesheets/params/footer.rule.xml +0 -27
- data/lib/stylesheets/params/footer.table.height.xml +0 -32
- data/lib/stylesheets/params/footer.table.properties.xml +0 -30
- data/lib/stylesheets/params/footers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/footnote.font.size.xml +0 -28
- data/lib/stylesheets/params/footnote.mark.properties.xml +0 -41
- data/lib/stylesheets/params/footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/footnote.properties.xml +0 -43
- data/lib/stylesheets/params/footnote.sep.leader.properties.xml +0 -39
- data/lib/stylesheets/params/fop.extensions.xml +0 -36
- data/lib/stylesheets/params/fop1.extensions.xml +0 -34
- data/lib/stylesheets/params/formal.object.properties.xml +0 -36
- data/lib/stylesheets/params/formal.procedures.xml +0 -28
- data/lib/stylesheets/params/formal.title.placement.xml +0 -41
- data/lib/stylesheets/params/formal.title.properties.xml +0 -34
- data/lib/stylesheets/params/funcsynopsis.decoration.xml +0 -30
- data/lib/stylesheets/params/funcsynopsis.style.xml +0 -31
- data/lib/stylesheets/params/function.parens.xml +0 -29
- data/lib/stylesheets/params/generate.css.header.xml +0 -40
- data/lib/stylesheets/params/generate.id.attributes.xml +0 -59
- data/lib/stylesheets/params/generate.index.xml +0 -25
- data/lib/stylesheets/params/generate.legalnotice.link.xml +0 -72
- data/lib/stylesheets/params/generate.manifest.xml +0 -27
- data/lib/stylesheets/params/generate.meta.abstract.xml +0 -29
- data/lib/stylesheets/params/generate.revhistory.link.xml +0 -50
- data/lib/stylesheets/params/generate.section.toc.level.xml +0 -35
- data/lib/stylesheets/params/generate.toc.xml +0 -108
- data/lib/stylesheets/params/glossary.as.blocks.xml +0 -38
- data/lib/stylesheets/params/glossary.collection.xml +0 -252
- data/lib/stylesheets/params/glossary.sort.xml +0 -32
- data/lib/stylesheets/params/glossdef.block.properties.xml +0 -32
- data/lib/stylesheets/params/glossdef.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossentry.list.item.properties.xml +0 -32
- data/lib/stylesheets/params/glossentry.show.acronym.xml +0 -37
- data/lib/stylesheets/params/glosslist.as.blocks.xml +0 -27
- data/lib/stylesheets/params/glossterm.auto.link.xml +0 -33
- data/lib/stylesheets/params/glossterm.block.properties.xml +0 -35
- data/lib/stylesheets/params/glossterm.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossterm.separation.xml +0 -31
- data/lib/stylesheets/params/glossterm.width.xml +0 -28
- data/lib/stylesheets/params/graphic.default.extension.xml +0 -29
- data/lib/stylesheets/params/graphical.admonition.properties.xml +0 -42
- data/lib/stylesheets/params/graphics.dir.xml +0 -33
- data/lib/stylesheets/params/graphicsize.extension.xml +0 -30
- data/lib/stylesheets/params/graphicsize.use.img.src.path.xml +0 -30
- data/lib/stylesheets/params/header.column.widths.xml +0 -80
- data/lib/stylesheets/params/header.content.properties.xml +0 -34
- data/lib/stylesheets/params/header.hr.xml +0 -26
- data/lib/stylesheets/params/header.rule.xml +0 -27
- data/lib/stylesheets/params/header.table.height.xml +0 -32
- data/lib/stylesheets/params/header.table.properties.xml +0 -30
- data/lib/stylesheets/params/headers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/hidetoc.image.xml +0 -29
- data/lib/stylesheets/params/highlight.default.language.xml +0 -27
- data/lib/stylesheets/params/highlight.source.xml +0 -82
- data/lib/stylesheets/params/highlight.xslthl.config.xml +0 -33
- data/lib/stylesheets/params/home.image.xml +0 -27
- data/lib/stylesheets/params/html.append.xml +0 -30
- data/lib/stylesheets/params/html.base.xml +0 -30
- data/lib/stylesheets/params/html.cellpadding.xml +0 -29
- data/lib/stylesheets/params/html.cellspacing.xml +0 -29
- data/lib/stylesheets/params/html.cleanup.xml +0 -34
- data/lib/stylesheets/params/html.ext.xml +0 -29
- data/lib/stylesheets/params/html.extra.head.links.xml +0 -31
- data/lib/stylesheets/params/html.head.legalnotice.link.multiple.xml +0 -44
- data/lib/stylesheets/params/html.head.legalnotice.link.types.xml +0 -75
- data/lib/stylesheets/params/html.longdesc.link.xml +0 -39
- data/lib/stylesheets/params/html.longdesc.xml +0 -28
- data/lib/stylesheets/params/html.stylesheet.type.xml +0 -26
- data/lib/stylesheets/params/html.stylesheet.xml +0 -36
- data/lib/stylesheets/params/htmlhelp.alias.file.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.autolabel.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.back.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.forward.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.hideshow.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.xml +0 -23
- data/lib/stylesheets/params/htmlhelp.button.jump2.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.locate.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.next.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.options.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.prev.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.print.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.refresh.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.stop.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.zoom.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.chm.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.default.topic.xml +0 -37
- data/lib/stylesheets/params/htmlhelp.display.progress.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.encoding.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.enhanced.decompilation.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.enumerate.images.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.force.map.and.alias.xml +0 -26
- data/lib/stylesheets/params/htmlhelp.hhc.binary.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.folders.instead.books.xml +0 -31
- data/lib/stylesheets/params/htmlhelp.hhc.section.depth.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhc.show.root.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.width.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhc.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhk.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhp.tail.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.window.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.windows.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhp.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.map.file.xml +0 -25
- data/lib/stylesheets/params/htmlhelp.only.xml +0 -32
- data/lib/stylesheets/params/htmlhelp.remember.window.position.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.show.advanced.search.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.favorities.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.menu.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.toolbar.text.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.title.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.use.hhk.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.window.geometry.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.characters.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.xml +0 -45
- data/lib/stylesheets/params/hyphenate.xml +0 -29
- data/lib/stylesheets/params/id.warnings.xml +0 -25
- data/lib/stylesheets/params/ignore.image.scaling.xml +0 -28
- data/lib/stylesheets/params/img.src.path.xml +0 -40
- data/lib/stylesheets/params/index.div.title.properties.xml +0 -39
- data/lib/stylesheets/params/index.entry.properties.xml +0 -33
- data/lib/stylesheets/params/index.links.to.section.xml +0 -76
- data/lib/stylesheets/params/index.method.xml +0 -162
- data/lib/stylesheets/params/index.number.separator.xml +0 -54
- data/lib/stylesheets/params/index.on.role.xml +0 -48
- data/lib/stylesheets/params/index.on.type.xml +0 -52
- data/lib/stylesheets/params/index.page.number.properties.xml +0 -31
- data/lib/stylesheets/params/index.prefer.titleabbrev.xml +0 -29
- data/lib/stylesheets/params/index.preferred.page.properties.xml +0 -32
- data/lib/stylesheets/params/index.range.separator.xml +0 -57
- data/lib/stylesheets/params/index.term.separator.xml +0 -54
- data/lib/stylesheets/params/informal.object.properties.xml +0 -29
- data/lib/stylesheets/params/informalequation.properties.xml +0 -27
- data/lib/stylesheets/params/informalexample.properties.xml +0 -27
- data/lib/stylesheets/params/informalfigure.properties.xml +0 -27
- data/lib/stylesheets/params/informaltable.properties.xml +0 -32
- data/lib/stylesheets/params/inherit.keywords.xml +0 -31
- data/lib/stylesheets/params/insert.link.page.number.xml +0 -69
- data/lib/stylesheets/params/insert.olink.page.number.xml +0 -83
- data/lib/stylesheets/params/insert.olink.pdf.frag.xml +0 -68
- data/lib/stylesheets/params/insert.xref.page.number.xml +0 -60
- data/lib/stylesheets/params/itemizedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/itemizedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/itemizedlist.properties.xml +0 -23
- data/lib/stylesheets/params/javahelp.encoding.xml +0 -31
- data/lib/stylesheets/params/keep.relative.image.uris.xml +0 -34
- data/lib/stylesheets/params/keyboard.nav.xml +0 -29
- data/lib/stylesheets/params/l10n.gentext.default.language.xml +0 -30
- data/lib/stylesheets/params/l10n.gentext.language.xml +0 -33
- data/lib/stylesheets/params/l10n.gentext.use.xref.language.xml +0 -53
- data/lib/stylesheets/params/l10n.lang.value.rfc.compliant.xml +0 -57
- data/lib/stylesheets/params/label.from.part.xml +0 -38
- data/lib/stylesheets/params/line-height.xml +0 -27
- data/lib/stylesheets/params/linenumbering.everyNth.xml +0 -29
- data/lib/stylesheets/params/linenumbering.extension.xml +0 -30
- data/lib/stylesheets/params/linenumbering.separator.xml +0 -30
- data/lib/stylesheets/params/linenumbering.width.xml +0 -29
- data/lib/stylesheets/params/link.mailto.url.xml +0 -29
- data/lib/stylesheets/params/list.block.properties.xml +0 -25
- data/lib/stylesheets/params/list.block.spacing.xml +0 -29
- data/lib/stylesheets/params/list.item.spacing.xml +0 -26
- data/lib/stylesheets/params/make.clean.html.xml +0 -51
- data/lib/stylesheets/params/make.graphic.viewport.xml +0 -35
- data/lib/stylesheets/params/make.index.markup.xml +0 -73
- data/lib/stylesheets/params/make.single.year.ranges.xml +0 -28
- data/lib/stylesheets/params/make.valid.html.xml +0 -35
- data/lib/stylesheets/params/make.year.ranges.xml +0 -32
- data/lib/stylesheets/params/man.authors.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.base.url.for.relative.links.xml +0 -76
- data/lib/stylesheets/params/man.break.after.slash.xml +0 -46
- data/lib/stylesheets/params/man.charmap.enabled.xml +0 -55
- data/lib/stylesheets/params/man.charmap.subset.profile.english.xml +0 -80
- data/lib/stylesheets/params/man.charmap.subset.profile.xml +0 -297
- data/lib/stylesheets/params/man.charmap.uri.xml +0 -42
- data/lib/stylesheets/params/man.charmap.use.subset.xml +0 -80
- data/lib/stylesheets/params/man.copyright.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.endnotes.are.numbered.xml +0 -106
- data/lib/stylesheets/params/man.endnotes.list.enabled.xml +0 -105
- data/lib/stylesheets/params/man.endnotes.list.heading.xml +0 -36
- data/lib/stylesheets/params/man.font.funcprototype.xml +0 -30
- data/lib/stylesheets/params/man.font.funcsynopsisinfo.xml +0 -30
- data/lib/stylesheets/params/man.font.links.xml +0 -64
- data/lib/stylesheets/params/man.font.table.headings.xml +0 -30
- data/lib/stylesheets/params/man.font.table.title.xml +0 -30
- data/lib/stylesheets/params/man.funcsynopsis.style.xml +0 -26
- data/lib/stylesheets/params/man.hyphenate.computer.inlines.xml +0 -53
- data/lib/stylesheets/params/man.hyphenate.filenames.xml +0 -47
- data/lib/stylesheets/params/man.hyphenate.urls.xml +0 -46
- data/lib/stylesheets/params/man.hyphenate.xml +0 -59
- data/lib/stylesheets/params/man.indent.blurbs.xml +0 -33
- data/lib/stylesheets/params/man.indent.lists.xml +0 -35
- data/lib/stylesheets/params/man.indent.refsect.xml +0 -70
- data/lib/stylesheets/params/man.indent.verbatims.xml +0 -33
- data/lib/stylesheets/params/man.indent.width.xml +0 -39
- data/lib/stylesheets/params/man.justify.xml +0 -52
- data/lib/stylesheets/params/man.output.base.dir.xml +0 -39
- data/lib/stylesheets/params/man.output.better.ps.enabled.xml +0 -61
- data/lib/stylesheets/params/man.output.encoding.xml +0 -53
- data/lib/stylesheets/params/man.output.in.separate.dir.xml +0 -32
- data/lib/stylesheets/params/man.output.lang.in.name.enabled.xml +0 -50
- data/lib/stylesheets/params/man.output.manifest.enabled.xml +0 -27
- data/lib/stylesheets/params/man.output.manifest.filename.xml +0 -29
- data/lib/stylesheets/params/man.output.quietly.xml +0 -37
- data/lib/stylesheets/params/man.output.subdirs.enabled.xml +0 -40
- data/lib/stylesheets/params/man.segtitle.suppress.xml +0 -28
- data/lib/stylesheets/params/man.string.subst.map.local.post.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.local.pre.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.xml +0 -162
- data/lib/stylesheets/params/man.subheading.divider.enabled.xml +0 -37
- data/lib/stylesheets/params/man.subheading.divider.xml +0 -37
- data/lib/stylesheets/params/man.table.footnotes.divider.xml +0 -29
- data/lib/stylesheets/params/man.th.extra1.suppress.xml +0 -32
- data/lib/stylesheets/params/man.th.extra2.max.length.xml +0 -43
- data/lib/stylesheets/params/man.th.extra2.suppress.xml +0 -44
- data/lib/stylesheets/params/man.th.extra3.max.length.xml +0 -42
- data/lib/stylesheets/params/man.th.extra3.suppress.xml +0 -34
- data/lib/stylesheets/params/man.th.title.max.length.xml +0 -63
- data/lib/stylesheets/params/manifest.in.base.dir.xml +0 -29
- data/lib/stylesheets/params/manifest.xml +0 -29
- data/lib/stylesheets/params/manual.toc.xml +0 -29
- data/lib/stylesheets/params/margin.note.float.type.xml +0 -77
- data/lib/stylesheets/params/margin.note.properties.xml +0 -54
- data/lib/stylesheets/params/margin.note.title.properties.xml +0 -32
- data/lib/stylesheets/params/margin.note.width.xml +0 -35
- data/lib/stylesheets/params/marker.section.level.xml +0 -50
- data/lib/stylesheets/params/menuchoice.menu.separator.xml +0 -42
- data/lib/stylesheets/params/menuchoice.separator.xml +0 -32
- data/lib/stylesheets/params/minus.image.xml +0 -29
- data/lib/stylesheets/params/monospace.font.family.xml +0 -29
- data/lib/stylesheets/params/monospace.properties.xml +0 -38
- data/lib/stylesheets/params/monospace.verbatim.font.width.xml +0 -40
- data/lib/stylesheets/params/monospace.verbatim.properties.xml +0 -27
- data/lib/stylesheets/params/multiframe.bottom.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.navigation.height.xml +0 -28
- data/lib/stylesheets/params/multiframe.top.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.xml +0 -31
- data/lib/stylesheets/params/nav.separator.xml +0 -28
- data/lib/stylesheets/params/nav.table.summary.xml +0 -27
- data/lib/stylesheets/params/navbgcolor.xml +0 -26
- data/lib/stylesheets/params/navbodywidth.xml +0 -26
- data/lib/stylesheets/params/navig.graphics.extension.xml +0 -28
- data/lib/stylesheets/params/navig.graphics.path.xml +0 -30
- data/lib/stylesheets/params/navig.graphics.xml +0 -31
- data/lib/stylesheets/params/navig.showtitles.xml +0 -32
- data/lib/stylesheets/params/navtocwidth.xml +0 -26
- data/lib/stylesheets/params/next.image.xml +0 -27
- data/lib/stylesheets/params/no.home.image.xml +0 -27
- data/lib/stylesheets/params/no.next.image.xml +0 -27
- data/lib/stylesheets/params/no.prev.image.xml +0 -27
- data/lib/stylesheets/params/no.toc.image.xml +0 -27
- data/lib/stylesheets/params/no.up.image.xml +0 -27
- data/lib/stylesheets/params/nominal.image.depth.xml +0 -27
- data/lib/stylesheets/params/nominal.image.width.xml +0 -43
- data/lib/stylesheets/params/nominal.table.width.xml +0 -30
- data/lib/stylesheets/params/nongraphical.admonition.properties.xml +0 -41
- data/lib/stylesheets/params/normal.para.spacing.xml +0 -26
- data/lib/stylesheets/params/olink.base.uri.xml +0 -35
- data/lib/stylesheets/params/olink.debug.xml +0 -36
- data/lib/stylesheets/params/olink.doctitle.xml +0 -146
- data/lib/stylesheets/params/olink.fragid.xml +0 -23
- data/lib/stylesheets/params/olink.lang.fallback.sequence.xml +0 -83
- data/lib/stylesheets/params/olink.outline.ext.xml +0 -28
- data/lib/stylesheets/params/olink.properties.xml +0 -33
- data/lib/stylesheets/params/olink.pubid.xml +0 -27
- data/lib/stylesheets/params/olink.resolver.xml +0 -23
- data/lib/stylesheets/params/olink.sysid.xml +0 -27
- data/lib/stylesheets/params/orderedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/orderedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/orderedlist.properties.xml +0 -24
- data/lib/stylesheets/params/othercredit.like.author.enabled.xml +0 -31
- data/lib/stylesheets/params/output-root.xml +0 -28
- data/lib/stylesheets/params/output.indent.xml +0 -32
- data/lib/stylesheets/params/overlay.js.xml +0 -28
- data/lib/stylesheets/params/overlay.logo.xml +0 -28
- data/lib/stylesheets/params/overlay.xml +0 -32
- data/lib/stylesheets/params/page.height.portrait.xml +0 -69
- data/lib/stylesheets/params/page.height.xml +0 -37
- data/lib/stylesheets/params/page.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/page.margin.inner.xml +0 -56
- data/lib/stylesheets/params/page.margin.outer.xml +0 -53
- data/lib/stylesheets/params/page.margin.top.xml +0 -28
- data/lib/stylesheets/params/page.orientation.xml +0 -32
- data/lib/stylesheets/params/page.width.portrait.xml +0 -67
- data/lib/stylesheets/params/page.width.xml +0 -36
- data/lib/stylesheets/params/pages.template.xml +0 -29
- data/lib/stylesheets/params/paper.type.xml +0 -73
- data/lib/stylesheets/params/para.propagates.style.xml +0 -29
- data/lib/stylesheets/params/part.autolabel.xml +0 -73
- data/lib/stylesheets/params/passivetex.extensions.xml +0 -37
- data/lib/stylesheets/params/pgwide.properties.xml +0 -52
- data/lib/stylesheets/params/phrase.propagates.style.xml +0 -29
- data/lib/stylesheets/params/pixels.per.inch.xml +0 -31
- data/lib/stylesheets/params/plus.image.xml +0 -29
- data/lib/stylesheets/params/points.per.em.xml +0 -29
- data/lib/stylesheets/params/preface.autolabel.xml +0 -71
- data/lib/stylesheets/params/prefer.internal.olink.xml +0 -78
- data/lib/stylesheets/params/preferred.mediaobject.role.xml +0 -40
- data/lib/stylesheets/params/prev.image.xml +0 -27
- data/lib/stylesheets/params/procedure.properties.xml +0 -29
- data/lib/stylesheets/params/process.empty.source.toc.xml +0 -39
- data/lib/stylesheets/params/process.source.toc.xml +0 -39
- data/lib/stylesheets/params/profile.arch.xml +0 -39
- data/lib/stylesheets/params/profile.attribute.xml +0 -34
- data/lib/stylesheets/params/profile.audience.xml +0 -38
- data/lib/stylesheets/params/profile.condition.xml +0 -38
- data/lib/stylesheets/params/profile.conformance.xml +0 -38
- data/lib/stylesheets/params/profile.lang.xml +0 -38
- data/lib/stylesheets/params/profile.os.xml +0 -38
- data/lib/stylesheets/params/profile.revision.xml +0 -38
- data/lib/stylesheets/params/profile.revisionflag.xml +0 -38
- data/lib/stylesheets/params/profile.role.xml +0 -54
- data/lib/stylesheets/params/profile.security.xml +0 -38
- data/lib/stylesheets/params/profile.separator.xml +0 -27
- data/lib/stylesheets/params/profile.status.xml +0 -38
- data/lib/stylesheets/params/profile.userlevel.xml +0 -38
- data/lib/stylesheets/params/profile.value.xml +0 -41
- data/lib/stylesheets/params/profile.vendor.xml +0 -38
- data/lib/stylesheets/params/profile.wordsize.xml +0 -38
- data/lib/stylesheets/params/punct.honorific.xml +0 -28
- data/lib/stylesheets/params/qanda.defaultlabel.xml +0 -86
- data/lib/stylesheets/params/qanda.in.toc.xml +0 -34
- data/lib/stylesheets/params/qanda.inherit.numeration.xml +0 -30
- data/lib/stylesheets/params/qanda.nested.in.toc.xml +0 -29
- data/lib/stylesheets/params/qanda.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level2.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level6.properties.xml +0 -34
- data/lib/stylesheets/params/qanda.title.properties.xml +0 -37
- data/lib/stylesheets/params/qandadiv.autolabel.xml +0 -26
- data/lib/stylesheets/params/rebuild-all.xml +0 -33
- data/lib/stylesheets/params/refclass.suppress.xml +0 -28
- data/lib/stylesheets/params/refentry.date.profile.enabled.xml +0 -46
- data/lib/stylesheets/params/refentry.date.profile.xml +0 -38
- data/lib/stylesheets/params/refentry.generate.name.xml +0 -33
- data/lib/stylesheets/params/refentry.generate.title.xml +0 -33
- data/lib/stylesheets/params/refentry.manual.fallback.profile.xml +0 -48
- data/lib/stylesheets/params/refentry.manual.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.manual.profile.xml +0 -72
- data/lib/stylesheets/params/refentry.meta.get.quietly.xml +0 -37
- data/lib/stylesheets/params/refentry.pagebreak.xml +0 -33
- data/lib/stylesheets/params/refentry.separator.xml +0 -29
- data/lib/stylesheets/params/refentry.source.fallback.profile.xml +0 -49
- data/lib/stylesheets/params/refentry.source.name.profile.enabled.xml +0 -48
- data/lib/stylesheets/params/refentry.source.name.profile.xml +0 -89
- data/lib/stylesheets/params/refentry.source.name.suppress.xml +0 -42
- data/lib/stylesheets/params/refentry.title.properties.xml +0 -59
- data/lib/stylesheets/params/refentry.version.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.version.profile.xml +0 -41
- data/lib/stylesheets/params/refentry.version.suppress.xml +0 -43
- data/lib/stylesheets/params/refentry.xref.manvolnum.xml +0 -31
- data/lib/stylesheets/params/reference.autolabel.xml +0 -67
- data/lib/stylesheets/params/region.after.extent.xml +0 -29
- data/lib/stylesheets/params/region.before.extent.xml +0 -29
- data/lib/stylesheets/params/revhistory.table.cell.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.table.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.title.properties.xml +0 -28
- data/lib/stylesheets/params/root.filename.xml +0 -29
- data/lib/stylesheets/params/root.properties.xml +0 -46
- data/lib/stylesheets/params/rootid.xml +0 -33
- data/lib/stylesheets/params/runinhead.default.title.end.punct.xml +0 -27
- data/lib/stylesheets/params/runinhead.title.end.punct.xml +0 -32
- data/lib/stylesheets/params/running.foot.properties.xml +0 -34
- data/lib/stylesheets/params/sans.font.family.xml +0 -29
- data/lib/stylesheets/params/saxon.callouts.xml +0 -30
- data/lib/stylesheets/params/saxon.character.representation.xml +0 -38
- data/lib/stylesheets/params/saxon.linenumbering.xml +0 -32
- data/lib/stylesheets/params/saxon.tablecolumns.xml +0 -30
- data/lib/stylesheets/params/script.dir.xml +0 -33
- data/lib/stylesheets/params/section.autolabel.max.depth.xml +0 -32
- data/lib/stylesheets/params/section.autolabel.xml +0 -26
- data/lib/stylesheets/params/section.container.element.xml +0 -62
- data/lib/stylesheets/params/section.label.includes.component.label.xml +0 -27
- data/lib/stylesheets/params/section.level1.properties.xml +0 -43
- data/lib/stylesheets/params/section.level2.properties.xml +0 -43
- data/lib/stylesheets/params/section.level3.properties.xml +0 -43
- data/lib/stylesheets/params/section.level4.properties.xml +0 -43
- data/lib/stylesheets/params/section.level5.properties.xml +0 -43
- data/lib/stylesheets/params/section.level6.properties.xml +0 -43
- data/lib/stylesheets/params/section.properties.xml +0 -35
- data/lib/stylesheets/params/section.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level2.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level6.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.properties.xml +0 -39
- data/lib/stylesheets/params/segmentedlist.as.table.xml +0 -28
- data/lib/stylesheets/params/sequential.links.xml +0 -25
- data/lib/stylesheets/params/shade.verbatim.style.xml +0 -36
- data/lib/stylesheets/params/shade.verbatim.xml +0 -30
- data/lib/stylesheets/params/show.comments.xml +0 -32
- data/lib/stylesheets/params/show.foil.number.xml +0 -28
- data/lib/stylesheets/params/show.revisionflag.xml +0 -42
- data/lib/stylesheets/params/showtoc.image.xml +0 -29
- data/lib/stylesheets/params/side.float.properties.xml +0 -50
- data/lib/stylesheets/params/sidebar.float.type.xml +0 -90
- data/lib/stylesheets/params/sidebar.float.width.xml +0 -35
- data/lib/stylesheets/params/sidebar.properties.xml +0 -42
- data/lib/stylesheets/params/sidebar.title.properties.xml +0 -32
- data/lib/stylesheets/params/simplesect.in.toc.xml +0 -26
- data/lib/stylesheets/params/slide.font.family.xml +0 -31
- data/lib/stylesheets/params/slide.title.font.family.xml +0 -31
- data/lib/stylesheets/params/slides.js.xml +0 -28
- data/lib/stylesheets/params/slides.properties.xml +0 -31
- data/lib/stylesheets/params/spacing.paras.xml +0 -30
- data/lib/stylesheets/params/speakernote.properties.xml +0 -32
- data/lib/stylesheets/params/subscript.properties.xml +0 -29
- data/lib/stylesheets/params/superscript.properties.xml +0 -29
- data/lib/stylesheets/params/suppress.footer.navigation.xml +0 -26
- data/lib/stylesheets/params/suppress.header.navigation.xml +0 -27
- data/lib/stylesheets/params/suppress.homepage.title.xml +0 -25
- data/lib/stylesheets/params/suppress.navigation.xml +0 -28
- data/lib/stylesheets/params/symbol.font.family.xml +0 -45
- data/lib/stylesheets/params/table.borders.with.css.xml +0 -28
- data/lib/stylesheets/params/table.cell.border.color.xml +0 -39
- data/lib/stylesheets/params/table.cell.border.style.xml +0 -42
- data/lib/stylesheets/params/table.cell.border.thickness.xml +0 -35
- data/lib/stylesheets/params/table.cell.padding.xml +0 -32
- data/lib/stylesheets/params/table.entry.padding.xml +0 -27
- data/lib/stylesheets/params/table.footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/table.footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/table.footnote.properties.xml +0 -39
- data/lib/stylesheets/params/table.frame.border.color.xml +0 -28
- data/lib/stylesheets/params/table.frame.border.style.xml +0 -37
- data/lib/stylesheets/params/table.frame.border.thickness.xml +0 -27
- data/lib/stylesheets/params/table.properties.xml +0 -34
- data/lib/stylesheets/params/table.spacer.image.xml +0 -26
- data/lib/stylesheets/params/table.table.properties.xml +0 -36
- data/lib/stylesheets/params/tablecolumns.extension.xml +0 -30
- data/lib/stylesheets/params/target.database.document.xml +0 -37
- data/lib/stylesheets/params/targets.filename.xml +0 -32
- data/lib/stylesheets/params/template.xml +0 -27
- data/lib/stylesheets/params/tex.math.delims.xml +0 -47
- data/lib/stylesheets/params/tex.math.file.xml +0 -42
- data/lib/stylesheets/params/tex.math.in.alt.xml +0 -76
- data/lib/stylesheets/params/text.home.xml +0 -27
- data/lib/stylesheets/params/text.next.xml +0 -27
- data/lib/stylesheets/params/text.prev.xml +0 -27
- data/lib/stylesheets/params/text.toc.xml +0 -27
- data/lib/stylesheets/params/text.up.xml +0 -27
- data/lib/stylesheets/params/textbgcolor.xml +0 -26
- data/lib/stylesheets/params/textdata.default.encoding.xml +0 -32
- data/lib/stylesheets/params/textinsert.extension.xml +0 -62
- data/lib/stylesheets/params/title.font.family.xml +0 -33
- data/lib/stylesheets/params/title.margin.left.xml +0 -65
- data/lib/stylesheets/params/titlefoil.html.xml +0 -27
- data/lib/stylesheets/params/toc.bg.color.xml +0 -27
- data/lib/stylesheets/params/toc.blank.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.blank.image.xml +0 -27
- data/lib/stylesheets/params/toc.blank.text.xml +0 -27
- data/lib/stylesheets/params/toc.hide.show.xml +0 -33
- data/lib/stylesheets/params/toc.html.xml +0 -27
- data/lib/stylesheets/params/toc.image.xml +0 -27
- data/lib/stylesheets/params/toc.indent.width.xml +0 -34
- data/lib/stylesheets/params/toc.line.properties.xml +0 -44
- data/lib/stylesheets/params/toc.list.type.xml +0 -30
- data/lib/stylesheets/params/toc.margin.properties.xml +0 -33
- data/lib/stylesheets/params/toc.max.depth.xml +0 -25
- data/lib/stylesheets/params/toc.pointer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.pointer.image.xml +0 -27
- data/lib/stylesheets/params/toc.pointer.text.xml +0 -27
- data/lib/stylesheets/params/toc.row.height.xml +0 -33
- data/lib/stylesheets/params/toc.section.depth.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.image.xml +0 -27
- data/lib/stylesheets/params/toc.spacer.text.xml +0 -27
- data/lib/stylesheets/params/toc.width.xml +0 -28
- data/lib/stylesheets/params/ua.js.xml +0 -28
- data/lib/stylesheets/params/ulink.footnotes.xml +0 -34
- data/lib/stylesheets/params/ulink.hyphenate.chars.xml +0 -37
- data/lib/stylesheets/params/ulink.hyphenate.xml +0 -35
- data/lib/stylesheets/params/ulink.show.xml +0 -37
- data/lib/stylesheets/params/ulink.target.xml +0 -29
- data/lib/stylesheets/params/up.image.xml +0 -27
- data/lib/stylesheets/params/use.embed.for.svg.xml +0 -33
- data/lib/stylesheets/params/use.extensions.xml +0 -31
- data/lib/stylesheets/params/use.id.as.filename.xml +0 -30
- data/lib/stylesheets/params/use.id.function.xml +0 -32
- data/lib/stylesheets/params/use.local.olink.style.xml +0 -28
- data/lib/stylesheets/params/use.role.as.xrefstyle.xml +0 -93
- data/lib/stylesheets/params/use.role.for.mediaobject.xml +0 -56
- data/lib/stylesheets/params/use.svg.xml +0 -30
- data/lib/stylesheets/params/variablelist.as.blocks.xml +0 -62
- data/lib/stylesheets/params/variablelist.as.table.xml +0 -54
- data/lib/stylesheets/params/variablelist.max.termlength.xml +0 -46
- data/lib/stylesheets/params/variablelist.term.break.after.xml +0 -39
- data/lib/stylesheets/params/variablelist.term.properties.xml +0 -29
- data/lib/stylesheets/params/variablelist.term.separator.xml +0 -40
- data/lib/stylesheets/params/verbatim.properties.xml +0 -38
- data/lib/stylesheets/params/wordml.template.xml +0 -29
- data/lib/stylesheets/params/writing.mode.xml +0 -83
- data/lib/stylesheets/params/xbCollapsibleLists.js.xml +0 -28
- data/lib/stylesheets/params/xbDOM.js.xml +0 -28
- data/lib/stylesheets/params/xbLibrary.js.xml +0 -28
- data/lib/stylesheets/params/xbStyle.js.xml +0 -28
- data/lib/stylesheets/params/xep.extensions.xml +0 -31
- data/lib/stylesheets/params/xep.index.item.properties.xml +0 -36
- data/lib/stylesheets/params/xref.label-page.separator.xml +0 -38
- data/lib/stylesheets/params/xref.label-title.separator.xml +0 -36
- data/lib/stylesheets/params/xref.properties.xml +0 -29
- data/lib/stylesheets/params/xref.title-page.separator.xml +0 -36
- data/lib/stylesheets/params/xref.with.number.and.title.xml +0 -30
- data/lib/stylesheets/profiling/profile-mode.xsl +0 -239
- data/lib/stylesheets/profiling/profile.xsl +0 -58
- data/lib/stylesheets/profiling/strip-attributes.xsl +0 -27
- data/lib/stylesheets/profiling/xsl2profile.xsl +0 -159
- data/lib/stylesheets/roundtrip/blocks-spec.xml +0 -11
- data/lib/stylesheets/roundtrip/blocks2dbk.dtd +0 -76
- data/lib/stylesheets/roundtrip/blocks2dbk.xsl +0 -1734
- data/lib/stylesheets/roundtrip/dbk2ooo.xsl +0 -178
- data/lib/stylesheets/roundtrip/dbk2pages.xsl +0 -442
- data/lib/stylesheets/roundtrip/dbk2wordml.xsl +0 -402
- data/lib/stylesheets/roundtrip/dbk2wp.xsl +0 -1376
- data/lib/stylesheets/roundtrip/normalise-common.xsl +0 -39
- data/lib/stylesheets/roundtrip/normalise2sections.xsl +0 -1270
- data/lib/stylesheets/roundtrip/pages2normalise.xsl +0 -352
- data/lib/stylesheets/roundtrip/param.xml +0 -105
- data/lib/stylesheets/roundtrip/param.xsl +0 -20
- data/lib/stylesheets/roundtrip/sections-spec.xml +0 -38
- data/lib/stylesheets/roundtrip/sections2blocks.xsl +0 -263
- data/lib/stylesheets/roundtrip/specifications.xml +0 -1420
- data/lib/stylesheets/roundtrip/template-pages.xml +0 -2
- data/lib/stylesheets/roundtrip/template.dot +0 -0
- data/lib/stylesheets/roundtrip/template.xml +0 -3
- data/lib/stylesheets/roundtrip/wordml2normalise.xsl +0 -446
- data/lib/stylesheets/slides/browser/CTOCWidget.js +0 -169
- data/lib/stylesheets/slides/browser/overlay.js +0 -142
- data/lib/stylesheets/slides/browser/slides-default.css +0 -9
- data/lib/stylesheets/slides/browser/slides-frames.css +0 -73
- data/lib/stylesheets/slides/browser/slides-plain.css +0 -1
- data/lib/stylesheets/slides/browser/slides-table.css +0 -41
- data/lib/stylesheets/slides/browser/slides-w3c.css +0 -1
- data/lib/stylesheets/slides/browser/slides.css +0 -119
- data/lib/stylesheets/slides/browser/slides.js +0 -120
- data/lib/stylesheets/slides/browser/ua.js +0 -135
- data/lib/stylesheets/slides/browser/xbCollapsibleLists.js +0 -537
- data/lib/stylesheets/slides/browser/xbDOM.js +0 -374
- data/lib/stylesheets/slides/browser/xbDebug.js +0 -311
- data/lib/stylesheets/slides/browser/xbLibrary.js +0 -80
- data/lib/stylesheets/slides/browser/xbStyle-css.js +0 -791
- data/lib/stylesheets/slides/browser/xbStyle-nn4.js +0 -485
- data/lib/stylesheets/slides/browser/xbStyle-not-supported.js +0 -77
- data/lib/stylesheets/slides/browser/xbStyle.js +0 -295
- data/lib/stylesheets/slides/fo/param.xml +0 -356
- data/lib/stylesheets/slides/fo/param.xsl +0 -74
- data/lib/stylesheets/slides/fo/plain-titlepage.xml +0 -79
- data/lib/stylesheets/slides/fo/plain-titlepage.xsl +0 -187
- data/lib/stylesheets/slides/fo/plain.xsl +0 -528
- data/lib/stylesheets/slides/graphics/active/arr-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/arr-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/arrow.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.png +0 -0
- data/lib/stylesheets/slides/graphics/hidetoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/plus.gif +0 -0
- data/lib/stylesheets/slides/graphics/pointer.png +0 -0
- data/lib/stylesheets/slides/graphics/showtoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/toc/bullet.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/closed.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/open.png +0 -0
- data/lib/stylesheets/slides/html/css.xsl +0 -46
- data/lib/stylesheets/slides/html/default.xsl +0 -261
- data/lib/stylesheets/slides/html/flat.xsl +0 -70
- data/lib/stylesheets/slides/html/frames.xsl +0 -2016
- data/lib/stylesheets/slides/html/graphics.xsl +0 -151
- data/lib/stylesheets/slides/html/jscript.xsl +0 -127
- data/lib/stylesheets/slides/html/param.xml +0 -1376
- data/lib/stylesheets/slides/html/param.xsl +0 -68
- data/lib/stylesheets/slides/html/plain.xsl +0 -472
- data/lib/stylesheets/slides/html/slides-common.xsl +0 -1541
- data/lib/stylesheets/slides/html/tables.xsl +0 -336
- data/lib/stylesheets/slides/html/vslides.xsl +0 -667
- data/lib/stylesheets/slides/html/w3c.xsl +0 -376
- data/lib/stylesheets/slides/htmlhelp/htmlhelp.xsl +0 -89
- data/lib/stylesheets/slides/keynote/default.xsl +0 -600
- data/lib/stylesheets/slides/keynote/xsltsl/cmp.xsl +0 -348
- data/lib/stylesheets/slides/keynote/xsltsl/date-time.xsl +0 -1524
- data/lib/stylesheets/slides/keynote/xsltsl/example.xsl +0 -90
- data/lib/stylesheets/slides/keynote/xsltsl/markup.xsl +0 -789
- data/lib/stylesheets/slides/keynote/xsltsl/math.xsl +0 -704
- data/lib/stylesheets/slides/keynote/xsltsl/node.xsl +0 -229
- data/lib/stylesheets/slides/keynote/xsltsl/stdlib.xsl +0 -340
- data/lib/stylesheets/slides/keynote/xsltsl/string.xsl +0 -1233
- data/lib/stylesheets/slides/keynote/xsltsl/svg.xsl +0 -177
- data/lib/stylesheets/slides/keynote/xsltsl/uri.xsl +0 -580
- data/lib/stylesheets/slides/svg/default.xsl +0 -686
- data/lib/stylesheets/slides/xhtml/css.xsl +0 -47
- data/lib/stylesheets/slides/xhtml/default.xsl +0 -246
- data/lib/stylesheets/slides/xhtml/flat.xsl +0 -71
- data/lib/stylesheets/slides/xhtml/frames.xsl +0 -1982
- data/lib/stylesheets/slides/xhtml/graphics.xsl +0 -152
- data/lib/stylesheets/slides/xhtml/jscript.xsl +0 -128
- data/lib/stylesheets/slides/xhtml/param.xsl +0 -70
- data/lib/stylesheets/slides/xhtml/plain.xsl +0 -470
- data/lib/stylesheets/slides/xhtml/slides-common.xsl +0 -1534
- data/lib/stylesheets/slides/xhtml/tables.xsl +0 -334
- data/lib/stylesheets/slides/xhtml/vslides.xsl +0 -652
- data/lib/stylesheets/slides/xhtml/w3c.xsl +0 -358
- data/lib/stylesheets/template/titlepage.xml +0 -478
- data/lib/stylesheets/template/titlepage.xsl +0 -1355
- data/lib/stylesheets/tests/refentry.007.ns.xml +0 -325
- data/lib/stylesheets/tests/refentry.007.xml +0 -340
- data/lib/stylesheets/tools/bin/docbook-xsl-update +0 -53
- data/lib/stylesheets/tools/make/Makefile.DocBook +0 -698
- data/lib/stylesheets/tools/make/Makefile.combine +0 -182
- data/lib/stylesheets/tools/make/Makefile.docParam +0 -59
- data/lib/stylesheets/webhelp/LICENSE +0 -1
- data/lib/stylesheets/webhelp/build.properties +0 -43
- data/lib/stylesheets/webhelp/build.xml +0 -112
- data/lib/stylesheets/webhelp/docs/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/docs/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/main.js +0 -161
- data/lib/stylesheets/webhelp/docs/content/ch01.html +0 -61
- data/lib/stylesheets/webhelp/docs/content/ch02.html +0 -32
- data/lib/stylesheets/webhelp/docs/content/ch02s01.html +0 -117
- data/lib/stylesheets/webhelp/docs/content/ch02s02.html +0 -102
- data/lib/stylesheets/webhelp/docs/content/ch02s03.html +0 -36
- data/lib/stylesheets/webhelp/docs/content/ch02s04.html +0 -42
- data/lib/stylesheets/webhelp/docs/content/ch03.html +0 -37
- data/lib/stylesheets/webhelp/docs/content/ch03s01.html +0 -62
- data/lib/stylesheets/webhelp/docs/content/ch03s02.html +0 -124
- data/lib/stylesheets/webhelp/docs/content/index.html +0 -71
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileInfoList.js +0 -10
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileList.js +0 -11
- data/lib/stylesheets/webhelp/docs/content/search/index-1.js +0 -224
- data/lib/stylesheets/webhelp/docs/content/search/index-2.js +0 -223
- data/lib/stylesheets/webhelp/docs/content/search/index-3.js +0 -221
- data/lib/stylesheets/webhelp/docs/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/docs/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/docs/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/docs/index.html +0 -13
- data/lib/stylesheets/webhelp/docsrc/readme.xml +0 -891
- data/lib/stylesheets/webhelp/template/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/template/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/template/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/template/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/template/common/main.js +0 -161
- data/lib/stylesheets/webhelp/template/content/search/default.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/en-us.props +0 -45
- data/lib/stylesheets/webhelp/template/content/search/es-es.props +0 -179
- data/lib/stylesheets/webhelp/template/content/search/ja-jp.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/template/content/search/punctuation.props +0 -31
- data/lib/stylesheets/webhelp/template/content/search/stemmers/de_stemmer.js +0 -247
- data/lib/stylesheets/webhelp/template/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/template/content/search/stemmers/fr_stemmer.js +0 -299
- data/lib/stylesheets/webhelp/template/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/xsl/webhelp.xsl +0 -772
- data/lib/stylesheets/website/autolayout.xsl +0 -258
- data/lib/stylesheets/website/chunk-common.xsl +0 -227
- data/lib/stylesheets/website/chunk-tabular.xsl +0 -12
- data/lib/stylesheets/website/chunk-website.xsl +0 -12
- data/lib/stylesheets/website/head.xsl +0 -316
- data/lib/stylesheets/website/makefile-dep.xsl +0 -143
- data/lib/stylesheets/website/olink.xsl +0 -297
- data/lib/stylesheets/website/param.xml +0 -788
- data/lib/stylesheets/website/param.xsl +0 -53
- data/lib/stylesheets/website/rss.xsl +0 -143
- data/lib/stylesheets/website/tabular.xsl +0 -213
- data/lib/stylesheets/website/toc-tabular.xsl +0 -480
- data/lib/stylesheets/website/toc.xsl +0 -286
- data/lib/stylesheets/website/website-common.xsl +0 -821
- data/lib/stylesheets/website/website-targets.xsl +0 -27
- data/lib/stylesheets/website/website.xsl +0 -132
- data/lib/stylesheets/website/xbel.xsl +0 -114
- data/lib/stylesheets/xhtml-1_1/admon.xsl +0 -135
- data/lib/stylesheets/xhtml-1_1/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml-1_1/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml-1_1/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml-1_1/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml-1_1/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml-1_1/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml-1_1/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml-1_1/block.xsl +0 -537
- data/lib/stylesheets/xhtml-1_1/callout.xsl +0 -189
- data/lib/stylesheets/xhtml-1_1/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml-1_1/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml-1_1/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml-1_1/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml-1_1/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml-1_1/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml-1_1/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml-1_1/component.xsl +0 -397
- data/lib/stylesheets/xhtml-1_1/division.xsl +0 -219
- data/lib/stylesheets/xhtml-1_1/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml-1_1/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml-1_1/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml-1_1/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml-1_1/formal.xsl +0 -413
- data/lib/stylesheets/xhtml-1_1/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml-1_1/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml-1_1/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml-1_1/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml-1_1/html.xsl +0 -600
- data/lib/stylesheets/xhtml-1_1/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml-1_1/index.xsl +0 -266
- data/lib/stylesheets/xhtml-1_1/info.xsl +0 -46
- data/lib/stylesheets/xhtml-1_1/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml-1_1/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml-1_1/lists.xsl +0 -1090
- data/lib/stylesheets/xhtml-1_1/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml-1_1/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/math.xsl +0 -285
- data/lib/stylesheets/xhtml-1_1/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml-1_1/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/param.xsl +0 -438
- data/lib/stylesheets/xhtml-1_1/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml-1_1/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml-1_1/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml-1_1/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml-1_1/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml-1_1/sections.xsl +0 -543
- data/lib/stylesheets/xhtml-1_1/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml-1_1/table.xsl +0 -1169
- data/lib/stylesheets/xhtml-1_1/task.xsl +0 -75
- data/lib/stylesheets/xhtml-1_1/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml-1_1/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml-1_1/toc.xsl +0 -332
- data/lib/stylesheets/xhtml-1_1/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml-1_1/xref.xsl +0 -1317
- data/lib/stylesheets/xhtml/admon.xsl +0 -137
- data/lib/stylesheets/xhtml/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml/block.xsl +0 -537
- data/lib/stylesheets/xhtml/callout.xsl +0 -189
- data/lib/stylesheets/xhtml/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml/component.xsl +0 -397
- data/lib/stylesheets/xhtml/division.xsl +0 -219
- data/lib/stylesheets/xhtml/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml/formal.xsl +0 -413
- data/lib/stylesheets/xhtml/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml/html.xsl +0 -600
- data/lib/stylesheets/xhtml/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml/index.xsl +0 -266
- data/lib/stylesheets/xhtml/info.xsl +0 -46
- data/lib/stylesheets/xhtml/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml/lists.xsl +0 -1123
- data/lib/stylesheets/xhtml/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml/math.xsl +0 -285
- data/lib/stylesheets/xhtml/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/param.xsl +0 -438
- data/lib/stylesheets/xhtml/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml/sections.xsl +0 -543
- data/lib/stylesheets/xhtml/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml/table.xsl +0 -1169
- data/lib/stylesheets/xhtml/task.xsl +0 -75
- data/lib/stylesheets/xhtml/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml/toc.xsl +0 -332
- data/lib/stylesheets/xhtml/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml/xref.xsl +0 -1317
@@ -0,0 +1,3454 @@
|
|
1
|
+
%PDF-1.3
|
2
|
+
%����
|
3
|
+
1 0 obj
|
4
|
+
<< /Creator <feff0050007200610077006e>
|
5
|
+
/Producer <feff0050007200610077006e>
|
6
|
+
>>
|
7
|
+
endobj
|
8
|
+
2 0 obj
|
9
|
+
<< /Type /Catalog
|
10
|
+
/Pages 3 0 R
|
11
|
+
/Names 92 0 R
|
12
|
+
/Outlines 106 0 R
|
13
|
+
>>
|
14
|
+
endobj
|
15
|
+
3 0 obj
|
16
|
+
<< /Type /Pages
|
17
|
+
/Count 13
|
18
|
+
/Kids [5 0 R 8 0 R 11 0 R 57 0 R 73 0 R 76 0 R 78 0 R 80 0 R 82 0 R 84 0 R 86 0 R 88 0 R 90 0 R]
|
19
|
+
>>
|
20
|
+
endobj
|
21
|
+
4 0 obj
|
22
|
+
<< /Length 606
|
23
|
+
>>
|
24
|
+
stream
|
25
|
+
q
|
26
|
+
|
27
|
+
BT
|
28
|
+
197.98000000000002 568.1478897637795 Td
|
29
|
+
/F1.0 24 Tf
|
30
|
+
<53616d706c6520446f63756d656e74> Tj
|
31
|
+
ET
|
32
|
+
|
33
|
+
/DeviceRGB cs
|
34
|
+
0.392 0.392 0.392 scn
|
35
|
+
|
36
|
+
BT
|
37
|
+
194.187 539.9959527559056 Td
|
38
|
+
/F1.0 14 Tf
|
39
|
+
[<486f> 13.0 <772074> 14.0 <6f206c6f6164206d756c7469706c6520646f63756d656e7473>] TJ
|
40
|
+
ET
|
41
|
+
|
42
|
+
0.000 0.000 0.000 scn
|
43
|
+
|
44
|
+
BT
|
45
|
+
243.952 240.8453858267717 Td
|
46
|
+
/F1.0 12 Tf
|
47
|
+
[<54686f6d61732046> 51.0 <616e6b686175736572>] TJ
|
48
|
+
ET
|
49
|
+
|
50
|
+
0.392 0.392 0.392 scn
|
51
|
+
|
52
|
+
BT
|
53
|
+
194.12 221.52409448818904 Td
|
54
|
+
/F1.0 10 Tf
|
55
|
+
[<323031302c2054686f6d61732046> 51.0 <616e6b6861757365722c20416c6c20726967687473207265736572> -21.0 <76> 14.0 <65642e>] TJ
|
56
|
+
ET
|
57
|
+
|
58
|
+
0.000 0.000 0.000 scn
|
59
|
+
Q
|
60
|
+
|
61
|
+
endstream
|
62
|
+
endobj
|
63
|
+
5 0 obj
|
64
|
+
<< /Type /Page
|
65
|
+
/Parent 3 0 R
|
66
|
+
/MediaBox [0 0 595.28 841.89]
|
67
|
+
/Contents 4 0 R
|
68
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
69
|
+
/Font << /F1.0 6 0 R
|
70
|
+
>>
|
71
|
+
>>
|
72
|
+
>>
|
73
|
+
endobj
|
74
|
+
6 0 obj
|
75
|
+
<< /Type /Font
|
76
|
+
/BaseFont /AAAAAN+Ubuntu
|
77
|
+
/Subtype /TrueType
|
78
|
+
/FontDescriptor 137 0 R
|
79
|
+
/FirstChar 32
|
80
|
+
/LastChar 255
|
81
|
+
/Widths 139 0 R
|
82
|
+
/ToUnicode 138 0 R
|
83
|
+
>>
|
84
|
+
endobj
|
85
|
+
7 0 obj
|
86
|
+
<< /Length 1974
|
87
|
+
>>
|
88
|
+
stream
|
89
|
+
q
|
90
|
+
/DeviceRGB cs
|
91
|
+
0.392 0.392 0.392 scn
|
92
|
+
|
93
|
+
BT
|
94
|
+
428.4726299212598 738.2266299212598 Td
|
95
|
+
/F2.0 24 Tf
|
96
|
+
<50726566616365> Tj
|
97
|
+
ET
|
98
|
+
|
99
|
+
0.000 0.000 0.000 scn
|
100
|
+
|
101
|
+
0.910 Tw
|
102
|
+
|
103
|
+
BT
|
104
|
+
85.03937007874016 606.7448031496062 Td
|
105
|
+
/F1.0 12 Tf
|
106
|
+
[<546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e64>] TJ
|
107
|
+
ET
|
108
|
+
|
109
|
+
|
110
|
+
0.000 Tw
|
111
|
+
|
112
|
+
0.335 Tw
|
113
|
+
|
114
|
+
BT
|
115
|
+
85.03937007874016 591.5408031496063 Td
|
116
|
+
/F1.0 12 Tf
|
117
|
+
[<74686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f726521205468697320697320746865>] TJ
|
118
|
+
ET
|
119
|
+
|
120
|
+
|
121
|
+
0.000 Tw
|
122
|
+
|
123
|
+
0.002 Tw
|
124
|
+
|
125
|
+
BT
|
126
|
+
85.03937007874016 576.3368031496062 Td
|
127
|
+
/F1.0 12 Tf
|
128
|
+
[<707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265>] TJ
|
129
|
+
ET
|
130
|
+
|
131
|
+
|
132
|
+
0.000 Tw
|
133
|
+
|
134
|
+
0.233 Tw
|
135
|
+
|
136
|
+
BT
|
137
|
+
85.03937007874016 561.1328031496063 Td
|
138
|
+
/F1.0 12 Tf
|
139
|
+
[<6d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e>] TJ
|
140
|
+
ET
|
141
|
+
|
142
|
+
|
143
|
+
0.000 Tw
|
144
|
+
|
145
|
+
0.114 Tw
|
146
|
+
|
147
|
+
BT
|
148
|
+
85.03937007874016 545.9288031496062 Td
|
149
|
+
/F1.0 12 Tf
|
150
|
+
[<416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f7265212054686973206973>] TJ
|
151
|
+
ET
|
152
|
+
|
153
|
+
|
154
|
+
0.000 Tw
|
155
|
+
|
156
|
+
1.222 Tw
|
157
|
+
|
158
|
+
BT
|
159
|
+
85.03937007874016 530.7248031496063 Td
|
160
|
+
/F1.0 12 Tf
|
161
|
+
[<74686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e64207468657265>] TJ
|
162
|
+
ET
|
163
|
+
|
164
|
+
|
165
|
+
0.000 Tw
|
166
|
+
|
167
|
+
BT
|
168
|
+
85.03937007874016 515.5208031496063 Td
|
169
|
+
/F1.0 12 Tf
|
170
|
+
<77696c6c206265206d6f726521> Tj
|
171
|
+
ET
|
172
|
+
|
173
|
+
0.714 0.714 0.714 scn
|
174
|
+
|
175
|
+
BT
|
176
|
+
282.11 77.27937007874014 Td
|
177
|
+
/F2.0 10 Tf
|
178
|
+
<32206f66203133> Tj
|
179
|
+
ET
|
180
|
+
|
181
|
+
Q
|
182
|
+
|
183
|
+
endstream
|
184
|
+
endobj
|
185
|
+
8 0 obj
|
186
|
+
<< /Type /Page
|
187
|
+
/Parent 3 0 R
|
188
|
+
/MediaBox [0 0 595.28 841.89]
|
189
|
+
/Contents 7 0 R
|
190
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
191
|
+
/Font << /F2.0 9 0 R
|
192
|
+
/F1.0 6 0 R
|
193
|
+
>>
|
194
|
+
>>
|
195
|
+
>>
|
196
|
+
endobj
|
197
|
+
9 0 obj
|
198
|
+
<< /Type /Font
|
199
|
+
/BaseFont /AAAAAO+Ubuntu-Light
|
200
|
+
/Subtype /TrueType
|
201
|
+
/FontDescriptor 141 0 R
|
202
|
+
/FirstChar 32
|
203
|
+
/LastChar 255
|
204
|
+
/Widths 143 0 R
|
205
|
+
/ToUnicode 142 0 R
|
206
|
+
>>
|
207
|
+
endobj
|
208
|
+
10 0 obj
|
209
|
+
<< /Length 6895
|
210
|
+
>>
|
211
|
+
stream
|
212
|
+
q
|
213
|
+
/DeviceRGB cs
|
214
|
+
0.392 0.392 0.392 scn
|
215
|
+
|
216
|
+
BT
|
217
|
+
317.20862992125984 738.2266299212598 Td
|
218
|
+
/F1.0 24 Tf
|
219
|
+
[<54> 45.0 <61626c65206f662043> 15.0 <6f6e74> 10.0 <656e7473>] TJ
|
220
|
+
ET
|
221
|
+
|
222
|
+
0.000 0.000 0.000 scn
|
223
|
+
1 w
|
224
|
+
/DeviceRGB CS
|
225
|
+
0.000 0.000 0.000 SCN
|
226
|
+
|
227
|
+
BT
|
228
|
+
85.03937007874016 598.7468031496062 Td
|
229
|
+
/F2.0 14 Tf
|
230
|
+
<436f766572> Tj
|
231
|
+
ET
|
232
|
+
|
233
|
+
0.000 0.000 0.000 scn
|
234
|
+
1 w
|
235
|
+
0.000 0.000 0.000 SCN
|
236
|
+
|
237
|
+
BT
|
238
|
+
499.4726299212598 600.2988031496062 Td
|
239
|
+
/F2.0 12 Tf
|
240
|
+
<31> Tj
|
241
|
+
ET
|
242
|
+
|
243
|
+
0.000 0.000 0.000 scn
|
244
|
+
1 w
|
245
|
+
0.000 0.000 0.000 SCN
|
246
|
+
|
247
|
+
BT
|
248
|
+
85.03937007874016 579.5088031496063 Td
|
249
|
+
/F2.0 14 Tf
|
250
|
+
<50726566616365> Tj
|
251
|
+
ET
|
252
|
+
|
253
|
+
0.000 0.000 0.000 scn
|
254
|
+
1 w
|
255
|
+
0.000 0.000 0.000 SCN
|
256
|
+
|
257
|
+
BT
|
258
|
+
499.4726299212598 581.0608031496063 Td
|
259
|
+
/F2.0 12 Tf
|
260
|
+
<32> Tj
|
261
|
+
ET
|
262
|
+
|
263
|
+
0.000 0.000 0.000 scn
|
264
|
+
1 w
|
265
|
+
0.000 0.000 0.000 SCN
|
266
|
+
|
267
|
+
BT
|
268
|
+
85.03937007874016 560.2708031496062 Td
|
269
|
+
/F2.0 14 Tf
|
270
|
+
[<54> 34.0 <61626c65206f6620436f6e74656e7473>] TJ
|
271
|
+
ET
|
272
|
+
|
273
|
+
0.000 0.000 0.000 scn
|
274
|
+
1 w
|
275
|
+
0.000 0.000 0.000 SCN
|
276
|
+
|
277
|
+
BT
|
278
|
+
499.4726299212598 561.8228031496062 Td
|
279
|
+
/F2.0 12 Tf
|
280
|
+
<33> Tj
|
281
|
+
ET
|
282
|
+
|
283
|
+
0.000 0.000 0.000 scn
|
284
|
+
0.5 w
|
285
|
+
0.714 0.714 0.714 SCN
|
286
|
+
85.039 520.122 m
|
287
|
+
460.241 520.122 l
|
288
|
+
S
|
289
|
+
1 w
|
290
|
+
0.000 0.000 0.000 SCN
|
291
|
+
|
292
|
+
BT
|
293
|
+
85.03937007874016 526.8088031496062 Td
|
294
|
+
/F1.0 13 Tf
|
295
|
+
<3120202020426f617264> Tj
|
296
|
+
ET
|
297
|
+
|
298
|
+
0.000 0.000 0.000 scn
|
299
|
+
0.5 w
|
300
|
+
0.714 0.714 0.714 SCN
|
301
|
+
460.241 520.122 m
|
302
|
+
510.241 520.122 l
|
303
|
+
S
|
304
|
+
1 w
|
305
|
+
0.000 0.000 0.000 SCN
|
306
|
+
|
307
|
+
BT
|
308
|
+
499.4726299212598 527.5848031496062 Td
|
309
|
+
/F1.0 12 Tf
|
310
|
+
<35> Tj
|
311
|
+
ET
|
312
|
+
|
313
|
+
0.000 0.000 0.000 scn
|
314
|
+
1 w
|
315
|
+
0.000 0.000 0.000 SCN
|
316
|
+
|
317
|
+
BT
|
318
|
+
95.03937007874016 504.36380314960616 Td
|
319
|
+
/F2.0 12 Tf
|
320
|
+
<312e31202020204e616d6573> Tj
|
321
|
+
ET
|
322
|
+
|
323
|
+
0.000 0.000 0.000 scn
|
324
|
+
1 w
|
325
|
+
0.000 0.000 0.000 SCN
|
326
|
+
|
327
|
+
BT
|
328
|
+
499.4726299212598 504.36380314960616 Td
|
329
|
+
/F2.0 12 Tf
|
330
|
+
<35> Tj
|
331
|
+
ET
|
332
|
+
|
333
|
+
0.000 0.000 0.000 scn
|
334
|
+
1 w
|
335
|
+
0.000 0.000 0.000 SCN
|
336
|
+
|
337
|
+
BT
|
338
|
+
95.03937007874016 487.1598031496062 Td
|
339
|
+
/F2.0 12 Tf
|
340
|
+
[<312e322020202050> 8.0 <616e6573>] TJ
|
341
|
+
ET
|
342
|
+
|
343
|
+
0.000 0.000 0.000 scn
|
344
|
+
1 w
|
345
|
+
0.000 0.000 0.000 SCN
|
346
|
+
|
347
|
+
BT
|
348
|
+
499.4726299212598 487.1598031496062 Td
|
349
|
+
/F2.0 12 Tf
|
350
|
+
<35> Tj
|
351
|
+
ET
|
352
|
+
|
353
|
+
0.000 0.000 0.000 scn
|
354
|
+
0.5 w
|
355
|
+
0.714 0.714 0.714 SCN
|
356
|
+
85.039 447.493 m
|
357
|
+
460.241 447.493 l
|
358
|
+
S
|
359
|
+
1 w
|
360
|
+
0.000 0.000 0.000 SCN
|
361
|
+
|
362
|
+
BT
|
363
|
+
85.03937007874016 454.1798031496062 Td
|
364
|
+
/F1.0 13 Tf
|
365
|
+
<322020202047656e65726174696f6e73> Tj
|
366
|
+
ET
|
367
|
+
|
368
|
+
0.000 0.000 0.000 scn
|
369
|
+
0.5 w
|
370
|
+
0.714 0.714 0.714 SCN
|
371
|
+
460.241 447.493 m
|
372
|
+
510.241 447.493 l
|
373
|
+
S
|
374
|
+
1 w
|
375
|
+
0.000 0.000 0.000 SCN
|
376
|
+
|
377
|
+
BT
|
378
|
+
499.4726299212598 454.9558031496062 Td
|
379
|
+
/F1.0 12 Tf
|
380
|
+
<36> Tj
|
381
|
+
ET
|
382
|
+
|
383
|
+
0.000 0.000 0.000 scn
|
384
|
+
1 w
|
385
|
+
0.000 0.000 0.000 SCN
|
386
|
+
|
387
|
+
BT
|
388
|
+
95.03937007874016 431.7348031496062 Td
|
389
|
+
/F2.0 12 Tf
|
390
|
+
<322e31202020204d656574696e67732041> Tj
|
391
|
+
ET
|
392
|
+
|
393
|
+
0.000 0.000 0.000 scn
|
394
|
+
1 w
|
395
|
+
0.000 0.000 0.000 SCN
|
396
|
+
|
397
|
+
BT
|
398
|
+
499.4726299212598 431.7348031496062 Td
|
399
|
+
/F2.0 12 Tf
|
400
|
+
<36> Tj
|
401
|
+
ET
|
402
|
+
|
403
|
+
0.000 0.000 0.000 scn
|
404
|
+
1 w
|
405
|
+
0.000 0.000 0.000 SCN
|
406
|
+
|
407
|
+
BT
|
408
|
+
105.03937007874016 415.3068031496062 Td
|
409
|
+
/F2.0 11 Tf
|
410
|
+
[<322e312e31202020204d656574696e67732041> -33.0 <41>] TJ
|
411
|
+
ET
|
412
|
+
|
413
|
+
0.000 0.000 0.000 scn
|
414
|
+
1 w
|
415
|
+
0.000 0.000 0.000 SCN
|
416
|
+
|
417
|
+
BT
|
418
|
+
499.4726299212598 414.5308031496062 Td
|
419
|
+
/F2.0 12 Tf
|
420
|
+
<36> Tj
|
421
|
+
ET
|
422
|
+
|
423
|
+
0.000 0.000 0.000 scn
|
424
|
+
1 w
|
425
|
+
0.000 0.000 0.000 SCN
|
426
|
+
|
427
|
+
BT
|
428
|
+
115.03937007874016 398.8788031496062 Td
|
429
|
+
/F2.0 10 Tf
|
430
|
+
[<322e312e312e312020202054> 44.0 <65737473>] TJ
|
431
|
+
ET
|
432
|
+
|
433
|
+
0.000 0.000 0.000 scn
|
434
|
+
1 w
|
435
|
+
0.000 0.000 0.000 SCN
|
436
|
+
|
437
|
+
BT
|
438
|
+
499.4726299212598 397.3268031496062 Td
|
439
|
+
/F2.0 12 Tf
|
440
|
+
<36> Tj
|
441
|
+
ET
|
442
|
+
|
443
|
+
0.000 0.000 0.000 scn
|
444
|
+
0.5 w
|
445
|
+
0.714 0.714 0.714 SCN
|
446
|
+
85.039 357.660 m
|
447
|
+
460.241 357.660 l
|
448
|
+
S
|
449
|
+
1 w
|
450
|
+
0.000 0.000 0.000 SCN
|
451
|
+
|
452
|
+
BT
|
453
|
+
85.03937007874016 364.34680314960616 Td
|
454
|
+
/F1.0 13 Tf
|
455
|
+
<3320202020426f6172642041> Tj
|
456
|
+
ET
|
457
|
+
|
458
|
+
0.000 0.000 0.000 scn
|
459
|
+
0.5 w
|
460
|
+
0.714 0.714 0.714 SCN
|
461
|
+
460.241 357.660 m
|
462
|
+
510.241 357.660 l
|
463
|
+
S
|
464
|
+
1 w
|
465
|
+
0.000 0.000 0.000 SCN
|
466
|
+
|
467
|
+
BT
|
468
|
+
499.4726299212598 365.12280314960617 Td
|
469
|
+
/F1.0 12 Tf
|
470
|
+
<37> Tj
|
471
|
+
ET
|
472
|
+
|
473
|
+
0.000 0.000 0.000 scn
|
474
|
+
1 w
|
475
|
+
0.000 0.000 0.000 SCN
|
476
|
+
|
477
|
+
BT
|
478
|
+
95.03937007874016 341.90180314960617 Td
|
479
|
+
/F2.0 12 Tf
|
480
|
+
<332e31202020204e616d65732041> Tj
|
481
|
+
ET
|
482
|
+
|
483
|
+
0.000 0.000 0.000 scn
|
484
|
+
1 w
|
485
|
+
0.000 0.000 0.000 SCN
|
486
|
+
|
487
|
+
BT
|
488
|
+
499.4726299212598 341.90180314960617 Td
|
489
|
+
/F2.0 12 Tf
|
490
|
+
<37> Tj
|
491
|
+
ET
|
492
|
+
|
493
|
+
0.000 0.000 0.000 scn
|
494
|
+
0.5 w
|
495
|
+
0.714 0.714 0.714 SCN
|
496
|
+
85.039 302.235 m
|
497
|
+
460.241 302.235 l
|
498
|
+
S
|
499
|
+
1 w
|
500
|
+
0.000 0.000 0.000 SCN
|
501
|
+
|
502
|
+
BT
|
503
|
+
85.03937007874016 308.92180314960615 Td
|
504
|
+
/F1.0 13 Tf
|
505
|
+
<342020202047656e65726174696f6e732041> Tj
|
506
|
+
ET
|
507
|
+
|
508
|
+
0.000 0.000 0.000 scn
|
509
|
+
0.5 w
|
510
|
+
0.714 0.714 0.714 SCN
|
511
|
+
460.241 302.235 m
|
512
|
+
510.241 302.235 l
|
513
|
+
S
|
514
|
+
1 w
|
515
|
+
0.000 0.000 0.000 SCN
|
516
|
+
|
517
|
+
BT
|
518
|
+
499.4726299212598 309.69780314960616 Td
|
519
|
+
/F1.0 12 Tf
|
520
|
+
<38> Tj
|
521
|
+
ET
|
522
|
+
|
523
|
+
0.000 0.000 0.000 scn
|
524
|
+
1 w
|
525
|
+
0.000 0.000 0.000 SCN
|
526
|
+
|
527
|
+
BT
|
528
|
+
95.03937007874016 286.47680314960616 Td
|
529
|
+
/F2.0 12 Tf
|
530
|
+
<342e31202020204d656574696e6773204142> Tj
|
531
|
+
ET
|
532
|
+
|
533
|
+
0.000 0.000 0.000 scn
|
534
|
+
1 w
|
535
|
+
0.000 0.000 0.000 SCN
|
536
|
+
|
537
|
+
BT
|
538
|
+
499.4726299212598 286.47680314960616 Td
|
539
|
+
/F2.0 12 Tf
|
540
|
+
<38> Tj
|
541
|
+
ET
|
542
|
+
|
543
|
+
0.000 0.000 0.000 scn
|
544
|
+
1 w
|
545
|
+
0.000 0.000 0.000 SCN
|
546
|
+
|
547
|
+
BT
|
548
|
+
105.03937007874016 270.04880314960616 Td
|
549
|
+
/F2.0 11 Tf
|
550
|
+
[<342e312e31202020204d656574696e67732041> -33.0 <41> 8.0 <43>] TJ
|
551
|
+
ET
|
552
|
+
|
553
|
+
0.000 0.000 0.000 scn
|
554
|
+
1 w
|
555
|
+
0.000 0.000 0.000 SCN
|
556
|
+
|
557
|
+
BT
|
558
|
+
499.4726299212598 269.27280314960615 Td
|
559
|
+
/F2.0 12 Tf
|
560
|
+
<38> Tj
|
561
|
+
ET
|
562
|
+
|
563
|
+
0.000 0.000 0.000 scn
|
564
|
+
1 w
|
565
|
+
0.000 0.000 0.000 SCN
|
566
|
+
|
567
|
+
BT
|
568
|
+
115.03937007874016 253.62080314960616 Td
|
569
|
+
/F2.0 10 Tf
|
570
|
+
[<342e312e312e312020202054> 44.0 <657374732044>] TJ
|
571
|
+
ET
|
572
|
+
|
573
|
+
0.000 0.000 0.000 scn
|
574
|
+
1 w
|
575
|
+
0.000 0.000 0.000 SCN
|
576
|
+
|
577
|
+
BT
|
578
|
+
499.4726299212598 252.06880314960614 Td
|
579
|
+
/F2.0 12 Tf
|
580
|
+
<38> Tj
|
581
|
+
ET
|
582
|
+
|
583
|
+
0.000 0.000 0.000 scn
|
584
|
+
0.5 w
|
585
|
+
0.714 0.714 0.714 SCN
|
586
|
+
85.039 212.402 m
|
587
|
+
460.241 212.402 l
|
588
|
+
S
|
589
|
+
1 w
|
590
|
+
0.000 0.000 0.000 SCN
|
591
|
+
|
592
|
+
BT
|
593
|
+
85.03937007874016 219.08880314960618 Td
|
594
|
+
/F1.0 13 Tf
|
595
|
+
<3520202020426f6172642046> Tj
|
596
|
+
ET
|
597
|
+
|
598
|
+
0.000 0.000 0.000 scn
|
599
|
+
0.5 w
|
600
|
+
0.714 0.714 0.714 SCN
|
601
|
+
460.241 212.402 m
|
602
|
+
510.241 212.402 l
|
603
|
+
S
|
604
|
+
1 w
|
605
|
+
0.000 0.000 0.000 SCN
|
606
|
+
|
607
|
+
BT
|
608
|
+
499.4726299212598 219.86480314960616 Td
|
609
|
+
/F1.0 12 Tf
|
610
|
+
<39> Tj
|
611
|
+
ET
|
612
|
+
|
613
|
+
0.000 0.000 0.000 scn
|
614
|
+
1 w
|
615
|
+
0.000 0.000 0.000 SCN
|
616
|
+
|
617
|
+
BT
|
618
|
+
95.03937007874016 196.64380314960616 Td
|
619
|
+
/F2.0 12 Tf
|
620
|
+
<352e31202020204e616d65732046> Tj
|
621
|
+
ET
|
622
|
+
|
623
|
+
0.000 0.000 0.000 scn
|
624
|
+
1 w
|
625
|
+
0.000 0.000 0.000 SCN
|
626
|
+
|
627
|
+
BT
|
628
|
+
499.4726299212598 196.64380314960616 Td
|
629
|
+
/F2.0 12 Tf
|
630
|
+
<39> Tj
|
631
|
+
ET
|
632
|
+
|
633
|
+
0.000 0.000 0.000 scn
|
634
|
+
0.5 w
|
635
|
+
0.714 0.714 0.714 SCN
|
636
|
+
85.039 156.977 m
|
637
|
+
460.241 156.977 l
|
638
|
+
S
|
639
|
+
1 w
|
640
|
+
0.000 0.000 0.000 SCN
|
641
|
+
|
642
|
+
BT
|
643
|
+
85.03937007874016 163.66380314960617 Td
|
644
|
+
/F1.0 13 Tf
|
645
|
+
<362020202047656e65726174696f6e732047> Tj
|
646
|
+
ET
|
647
|
+
|
648
|
+
0.000 0.000 0.000 scn
|
649
|
+
0.5 w
|
650
|
+
0.714 0.714 0.714 SCN
|
651
|
+
460.241 156.977 m
|
652
|
+
510.241 156.977 l
|
653
|
+
S
|
654
|
+
1 w
|
655
|
+
0.000 0.000 0.000 SCN
|
656
|
+
|
657
|
+
BT
|
658
|
+
492.7046299212598 164.43980314960615 Td
|
659
|
+
/F1.0 12 Tf
|
660
|
+
<3130> Tj
|
661
|
+
ET
|
662
|
+
|
663
|
+
0.000 0.000 0.000 scn
|
664
|
+
1 w
|
665
|
+
0.000 0.000 0.000 SCN
|
666
|
+
|
667
|
+
BT
|
668
|
+
95.03937007874016 141.21880314960615 Td
|
669
|
+
/F2.0 12 Tf
|
670
|
+
<362e31202020204d656574696e677320412046> Tj
|
671
|
+
ET
|
672
|
+
|
673
|
+
0.000 0.000 0.000 scn
|
674
|
+
1 w
|
675
|
+
0.000 0.000 0.000 SCN
|
676
|
+
|
677
|
+
BT
|
678
|
+
492.7046299212598 141.21880314960615 Td
|
679
|
+
/F2.0 12 Tf
|
680
|
+
<3130> Tj
|
681
|
+
ET
|
682
|
+
|
683
|
+
0.000 0.000 0.000 scn
|
684
|
+
1 w
|
685
|
+
0.000 0.000 0.000 SCN
|
686
|
+
|
687
|
+
BT
|
688
|
+
105.03937007874016 124.79080314960615 Td
|
689
|
+
/F2.0 11 Tf
|
690
|
+
[<362e312e31202020204d656574696e67732041> -33.0 <412046>] TJ
|
691
|
+
ET
|
692
|
+
|
693
|
+
0.000 0.000 0.000 scn
|
694
|
+
1 w
|
695
|
+
0.000 0.000 0.000 SCN
|
696
|
+
|
697
|
+
BT
|
698
|
+
492.7046299212598 124.01480314960615 Td
|
699
|
+
/F2.0 12 Tf
|
700
|
+
<3130> Tj
|
701
|
+
ET
|
702
|
+
|
703
|
+
0.000 0.000 0.000 scn
|
704
|
+
1 w
|
705
|
+
0.000 0.000 0.000 SCN
|
706
|
+
|
707
|
+
BT
|
708
|
+
115.03937007874016 108.36280314960614 Td
|
709
|
+
/F2.0 10 Tf
|
710
|
+
[<362e312e312e312020202054> 44.0 <657374732046>] TJ
|
711
|
+
ET
|
712
|
+
|
713
|
+
0.000 0.000 0.000 scn
|
714
|
+
1 w
|
715
|
+
0.000 0.000 0.000 SCN
|
716
|
+
|
717
|
+
BT
|
718
|
+
492.7046299212598 106.81080314960614 Td
|
719
|
+
/F2.0 12 Tf
|
720
|
+
<3130> Tj
|
721
|
+
ET
|
722
|
+
|
723
|
+
0.000 0.000 0.000 scn
|
724
|
+
0.714 0.714 0.714 scn
|
725
|
+
|
726
|
+
BT
|
727
|
+
282.11 77.27937007874014 Td
|
728
|
+
/F2.0 10 Tf
|
729
|
+
<33206f66203133> Tj
|
730
|
+
ET
|
731
|
+
|
732
|
+
Q
|
733
|
+
|
734
|
+
endstream
|
735
|
+
endobj
|
736
|
+
11 0 obj
|
737
|
+
<< /Type /Page
|
738
|
+
/Parent 3 0 R
|
739
|
+
/MediaBox [0 0 595.28 841.89]
|
740
|
+
/Contents 10 0 R
|
741
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
742
|
+
/Font << /F1.0 6 0 R
|
743
|
+
/F2.0 9 0 R
|
744
|
+
>>
|
745
|
+
>>
|
746
|
+
/Annots [12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R]
|
747
|
+
>>
|
748
|
+
endobj
|
749
|
+
12 0 obj
|
750
|
+
<< /Border [0 0 0]
|
751
|
+
/Dest (page1)
|
752
|
+
/Subtype /Link
|
753
|
+
/Rect [85.03937007874016 596.1568031496063 121.34137007874017 609.6108031496062]
|
754
|
+
/Type /Annot
|
755
|
+
>>
|
756
|
+
endobj
|
757
|
+
13 0 obj
|
758
|
+
<< /Border [0 0 0]
|
759
|
+
/Dest (page1)
|
760
|
+
/Subtype /Link
|
761
|
+
/Rect [499.4726299212598 598.0788031496062 506.2406299212598 609.6108031496062]
|
762
|
+
/Type /Annot
|
763
|
+
>>
|
764
|
+
endobj
|
765
|
+
14 0 obj
|
766
|
+
<< /Border [0 0 0]
|
767
|
+
/Dest (page2)
|
768
|
+
/Subtype /Link
|
769
|
+
/Rect [85.03937007874016 576.9188031496063 132.73737007874016 590.3728031496063]
|
770
|
+
/Type /Annot
|
771
|
+
>>
|
772
|
+
endobj
|
773
|
+
15 0 obj
|
774
|
+
<< /Border [0 0 0]
|
775
|
+
/Dest (page2)
|
776
|
+
/Subtype /Link
|
777
|
+
/Rect [499.4726299212598 578.8408031496062 506.2406299212598 590.3728031496063]
|
778
|
+
/Type /Annot
|
779
|
+
>>
|
780
|
+
endobj
|
781
|
+
16 0 obj
|
782
|
+
<< /Border [0 0 0]
|
783
|
+
/Dest (page3)
|
784
|
+
/Subtype /Link
|
785
|
+
/Rect [85.03937007874016 557.6808031496063 195.66737007874016 571.1348031496062]
|
786
|
+
/Type /Annot
|
787
|
+
>>
|
788
|
+
endobj
|
789
|
+
17 0 obj
|
790
|
+
<< /Border [0 0 0]
|
791
|
+
/Dest (page3)
|
792
|
+
/Subtype /Link
|
793
|
+
/Rect [499.4726299212598 559.6028031496062 506.2406299212598 571.1348031496062]
|
794
|
+
/Type /Annot
|
795
|
+
>>
|
796
|
+
endobj
|
797
|
+
18 0 obj
|
798
|
+
<< /Border [0 0 0]
|
799
|
+
/Dest (page5)
|
800
|
+
/Subtype /Link
|
801
|
+
/Rect [85.03937007874016 524.4038031496061 139.87337007874015 536.8968031496062]
|
802
|
+
/Type /Annot
|
803
|
+
>>
|
804
|
+
endobj
|
805
|
+
19 0 obj
|
806
|
+
<< /Border [0 0 0]
|
807
|
+
/Dest (page5)
|
808
|
+
/Subtype /Link
|
809
|
+
/Rect [499.4726299212598 525.3648031496061 506.2406299212598 536.8968031496062]
|
810
|
+
/Type /Annot
|
811
|
+
>>
|
812
|
+
endobj
|
813
|
+
20 0 obj
|
814
|
+
<< /Border [0 0 0]
|
815
|
+
/Dest (page5)
|
816
|
+
/Subtype /Link
|
817
|
+
/Rect [95.03937007874016 502.1438031496062 159.15537007874016 513.6758031496062]
|
818
|
+
/Type /Annot
|
819
|
+
>>
|
820
|
+
endobj
|
821
|
+
21 0 obj
|
822
|
+
<< /Border [0 0 0]
|
823
|
+
/Dest (page5)
|
824
|
+
/Subtype /Link
|
825
|
+
/Rect [499.4726299212598 502.1438031496062 506.2406299212598 513.6758031496062]
|
826
|
+
/Type /Annot
|
827
|
+
>>
|
828
|
+
endobj
|
829
|
+
22 0 obj
|
830
|
+
<< /Border [0 0 0]
|
831
|
+
/Dest (page5)
|
832
|
+
/Subtype /Link
|
833
|
+
/Rect [95.03937007874016 484.93980314960623 154.12737007874017 496.4718031496062]
|
834
|
+
/Type /Annot
|
835
|
+
>>
|
836
|
+
endobj
|
837
|
+
23 0 obj
|
838
|
+
<< /Border [0 0 0]
|
839
|
+
/Dest (page5)
|
840
|
+
/Subtype /Link
|
841
|
+
/Rect [499.4726299212598 484.93980314960623 506.2406299212598 496.4718031496062]
|
842
|
+
/Type /Annot
|
843
|
+
>>
|
844
|
+
endobj
|
845
|
+
24 0 obj
|
846
|
+
<< /Border [0 0 0]
|
847
|
+
/Dest (page6)
|
848
|
+
/Subtype /Link
|
849
|
+
/Rect [85.03937007874016 451.7748031496062 176.36437007874017 464.2678031496062]
|
850
|
+
/Type /Annot
|
851
|
+
>>
|
852
|
+
endobj
|
853
|
+
25 0 obj
|
854
|
+
<< /Border [0 0 0]
|
855
|
+
/Dest (page6)
|
856
|
+
/Subtype /Link
|
857
|
+
/Rect [499.4726299212598 452.7358031496062 506.2406299212598 464.2678031496062]
|
858
|
+
/Type /Annot
|
859
|
+
>>
|
860
|
+
endobj
|
861
|
+
26 0 obj
|
862
|
+
<< /Border [0 0 0]
|
863
|
+
/Dest (page6)
|
864
|
+
/Subtype /Link
|
865
|
+
/Rect [95.03937007874016 429.5148031496062 182.75937007874018 441.0468031496062]
|
866
|
+
/Type /Annot
|
867
|
+
>>
|
868
|
+
endobj
|
869
|
+
27 0 obj
|
870
|
+
<< /Border [0 0 0]
|
871
|
+
/Dest (page6)
|
872
|
+
/Subtype /Link
|
873
|
+
/Rect [499.4726299212598 429.5148031496062 506.2406299212598 441.0468031496062]
|
874
|
+
/Type /Annot
|
875
|
+
>>
|
876
|
+
endobj
|
877
|
+
28 0 obj
|
878
|
+
<< /Border [0 0 0]
|
879
|
+
/Dest (page6)
|
880
|
+
/Subtype /Link
|
881
|
+
/Rect [105.03937007874016 413.27180314960617 201.77337007874016 423.8428031496062]
|
882
|
+
/Type /Annot
|
883
|
+
>>
|
884
|
+
endobj
|
885
|
+
29 0 obj
|
886
|
+
<< /Border [0 0 0]
|
887
|
+
/Dest (page6)
|
888
|
+
/Subtype /Link
|
889
|
+
/Rect [499.4726299212598 412.3108031496062 506.2406299212598 423.8428031496062]
|
890
|
+
/Type /Annot
|
891
|
+
>>
|
892
|
+
endobj
|
893
|
+
30 0 obj
|
894
|
+
<< /Border [0 0 0]
|
895
|
+
/Dest (page6)
|
896
|
+
/Subtype /Link
|
897
|
+
/Rect [115.03937007874016 397.0288031496062 177.04937007874017 406.6388031496062]
|
898
|
+
/Type /Annot
|
899
|
+
>>
|
900
|
+
endobj
|
901
|
+
31 0 obj
|
902
|
+
<< /Border [0 0 0]
|
903
|
+
/Dest (page6)
|
904
|
+
/Subtype /Link
|
905
|
+
/Rect [499.4726299212598 395.1068031496062 506.2406299212598 406.6388031496062]
|
906
|
+
/Type /Annot
|
907
|
+
>>
|
908
|
+
endobj
|
909
|
+
32 0 obj
|
910
|
+
<< /Border [0 0 0]
|
911
|
+
/Dest (page7)
|
912
|
+
/Subtype /Link
|
913
|
+
/Rect [85.03937007874016 361.9418031496062 151.49537007874017 374.4348031496062]
|
914
|
+
/Type /Annot
|
915
|
+
>>
|
916
|
+
endobj
|
917
|
+
33 0 obj
|
918
|
+
<< /Border [0 0 0]
|
919
|
+
/Dest (page7)
|
920
|
+
/Subtype /Link
|
921
|
+
/Rect [499.4726299212598 362.9028031496062 506.2406299212598 374.4348031496062]
|
922
|
+
/Type /Annot
|
923
|
+
>>
|
924
|
+
endobj
|
925
|
+
34 0 obj
|
926
|
+
<< /Border [0 0 0]
|
927
|
+
/Dest (page7)
|
928
|
+
/Subtype /Link
|
929
|
+
/Rect [95.03937007874016 339.6818031496062 169.58337007874016 351.2138031496062]
|
930
|
+
/Type /Annot
|
931
|
+
>>
|
932
|
+
endobj
|
933
|
+
35 0 obj
|
934
|
+
<< /Border [0 0 0]
|
935
|
+
/Dest (page7)
|
936
|
+
/Subtype /Link
|
937
|
+
/Rect [499.4726299212598 339.6818031496062 506.2406299212598 351.2138031496062]
|
938
|
+
/Type /Annot
|
939
|
+
>>
|
940
|
+
endobj
|
941
|
+
36 0 obj
|
942
|
+
<< /Border [0 0 0]
|
943
|
+
/Dest (page8)
|
944
|
+
/Subtype /Link
|
945
|
+
/Rect [85.03937007874016 306.5168031496062 187.98637007874015 319.00980314960617]
|
946
|
+
/Type /Annot
|
947
|
+
>>
|
948
|
+
endobj
|
949
|
+
37 0 obj
|
950
|
+
<< /Border [0 0 0]
|
951
|
+
/Dest (page8)
|
952
|
+
/Subtype /Link
|
953
|
+
/Rect [499.4726299212598 307.4778031496062 506.2406299212598 319.00980314960617]
|
954
|
+
/Type /Annot
|
955
|
+
>>
|
956
|
+
endobj
|
957
|
+
38 0 obj
|
958
|
+
<< /Border [0 0 0]
|
959
|
+
/Dest (page8)
|
960
|
+
/Subtype /Link
|
961
|
+
/Rect [95.03937007874016 284.2568031496062 190.31937007874018 295.78880314960617]
|
962
|
+
/Type /Annot
|
963
|
+
>>
|
964
|
+
endobj
|
965
|
+
39 0 obj
|
966
|
+
<< /Border [0 0 0]
|
967
|
+
/Dest (page8)
|
968
|
+
/Subtype /Link
|
969
|
+
/Rect [499.4726299212598 284.2568031496062 506.2406299212598 295.78880314960617]
|
970
|
+
/Type /Annot
|
971
|
+
>>
|
972
|
+
endobj
|
973
|
+
40 0 obj
|
974
|
+
<< /Border [0 0 0]
|
975
|
+
/Dest (page8)
|
976
|
+
/Subtype /Link
|
977
|
+
/Rect [105.03937007874016 268.01380314960613 208.38437007874018 278.58480314960616]
|
978
|
+
/Type /Annot
|
979
|
+
>>
|
980
|
+
endobj
|
981
|
+
41 0 obj
|
982
|
+
<< /Border [0 0 0]
|
983
|
+
/Dest (page8)
|
984
|
+
/Subtype /Link
|
985
|
+
/Rect [499.4726299212598 267.0528031496062 506.2406299212598 278.58480314960616]
|
986
|
+
/Type /Annot
|
987
|
+
>>
|
988
|
+
endobj
|
989
|
+
42 0 obj
|
990
|
+
<< /Border [0 0 0]
|
991
|
+
/Dest (page8)
|
992
|
+
/Subtype /Link
|
993
|
+
/Rect [115.03937007874016 251.77080314960614 186.34937007874015 261.38080314960615]
|
994
|
+
/Type /Annot
|
995
|
+
>>
|
996
|
+
endobj
|
997
|
+
43 0 obj
|
998
|
+
<< /Border [0 0 0]
|
999
|
+
/Dest (page8)
|
1000
|
+
/Subtype /Link
|
1001
|
+
/Rect [499.4726299212598 249.84880314960614 506.2406299212598 261.38080314960615]
|
1002
|
+
/Type /Annot
|
1003
|
+
>>
|
1004
|
+
endobj
|
1005
|
+
44 0 obj
|
1006
|
+
<< /Border [0 0 0]
|
1007
|
+
/Dest (page9)
|
1008
|
+
/Subtype /Link
|
1009
|
+
/Rect [85.03937007874016 216.68380314960618 149.85737007874016 229.17680314960617]
|
1010
|
+
/Type /Annot
|
1011
|
+
>>
|
1012
|
+
endobj
|
1013
|
+
45 0 obj
|
1014
|
+
<< /Border [0 0 0]
|
1015
|
+
/Dest (page9)
|
1016
|
+
/Subtype /Link
|
1017
|
+
/Rect [499.4726299212598 217.64480314960616 506.2406299212598 229.17680314960617]
|
1018
|
+
/Type /Annot
|
1019
|
+
>>
|
1020
|
+
endobj
|
1021
|
+
46 0 obj
|
1022
|
+
<< /Border [0 0 0]
|
1023
|
+
/Dest (page9)
|
1024
|
+
/Subtype /Link
|
1025
|
+
/Rect [95.03937007874016 194.42380314960616 168.13137007874016 205.95580314960617]
|
1026
|
+
/Type /Annot
|
1027
|
+
>>
|
1028
|
+
endobj
|
1029
|
+
47 0 obj
|
1030
|
+
<< /Border [0 0 0]
|
1031
|
+
/Dest (page9)
|
1032
|
+
/Subtype /Link
|
1033
|
+
/Rect [499.4726299212598 194.42380314960616 506.2406299212598 205.95580314960617]
|
1034
|
+
/Type /Annot
|
1035
|
+
>>
|
1036
|
+
endobj
|
1037
|
+
48 0 obj
|
1038
|
+
<< /Border [0 0 0]
|
1039
|
+
/Dest (page10)
|
1040
|
+
/Subtype /Link
|
1041
|
+
/Rect [85.03937007874016 161.25880314960617 188.10337007874017 173.75180314960616]
|
1042
|
+
/Type /Annot
|
1043
|
+
>>
|
1044
|
+
endobj
|
1045
|
+
49 0 obj
|
1046
|
+
<< /Border [0 0 0]
|
1047
|
+
/Dest (page10)
|
1048
|
+
/Subtype /Link
|
1049
|
+
/Rect [492.7046299212598 162.21980314960615 506.2406299212598 173.75180314960616]
|
1050
|
+
/Type /Annot
|
1051
|
+
>>
|
1052
|
+
endobj
|
1053
|
+
50 0 obj
|
1054
|
+
<< /Border [0 0 0]
|
1055
|
+
/Dest (page10)
|
1056
|
+
/Subtype /Link
|
1057
|
+
/Rect [95.03937007874016 138.99880314960615 191.73537007874017 150.53080314960616]
|
1058
|
+
/Type /Annot
|
1059
|
+
>>
|
1060
|
+
endobj
|
1061
|
+
51 0 obj
|
1062
|
+
<< /Border [0 0 0]
|
1063
|
+
/Dest (page10)
|
1064
|
+
/Subtype /Link
|
1065
|
+
/Rect [492.7046299212598 138.99880314960615 506.2406299212598 150.53080314960616]
|
1066
|
+
/Type /Annot
|
1067
|
+
>>
|
1068
|
+
endobj
|
1069
|
+
52 0 obj
|
1070
|
+
<< /Border [0 0 0]
|
1071
|
+
/Dest (page10)
|
1072
|
+
/Subtype /Link
|
1073
|
+
/Rect [105.03937007874016 122.75580314960615 210.00137007874014 133.32680314960615]
|
1074
|
+
/Type /Annot
|
1075
|
+
>>
|
1076
|
+
endobj
|
1077
|
+
53 0 obj
|
1078
|
+
<< /Border [0 0 0]
|
1079
|
+
/Dest (page10)
|
1080
|
+
/Subtype /Link
|
1081
|
+
/Rect [492.7046299212598 121.79480314960615 506.2406299212598 133.32680314960615]
|
1082
|
+
/Type /Annot
|
1083
|
+
>>
|
1084
|
+
endobj
|
1085
|
+
54 0 obj
|
1086
|
+
<< /Border [0 0 0]
|
1087
|
+
/Dest (page10)
|
1088
|
+
/Subtype /Link
|
1089
|
+
/Rect [115.03937007874016 106.51280314960614 184.52937007874016 116.12280314960614]
|
1090
|
+
/Type /Annot
|
1091
|
+
>>
|
1092
|
+
endobj
|
1093
|
+
55 0 obj
|
1094
|
+
<< /Border [0 0 0]
|
1095
|
+
/Dest (page10)
|
1096
|
+
/Subtype /Link
|
1097
|
+
/Rect [492.7046299212598 104.59080314960615 506.2406299212598 116.12280314960614]
|
1098
|
+
/Type /Annot
|
1099
|
+
>>
|
1100
|
+
endobj
|
1101
|
+
56 0 obj
|
1102
|
+
<< /Length 2227
|
1103
|
+
>>
|
1104
|
+
stream
|
1105
|
+
q
|
1106
|
+
0.5 w
|
1107
|
+
/DeviceRGB CS
|
1108
|
+
0.714 0.714 0.714 SCN
|
1109
|
+
85.039 718.630 m
|
1110
|
+
460.241 718.630 l
|
1111
|
+
S
|
1112
|
+
1 w
|
1113
|
+
0.000 0.000 0.000 SCN
|
1114
|
+
|
1115
|
+
BT
|
1116
|
+
85.03937007874016 725.3166299212598 Td
|
1117
|
+
/F1.0 13 Tf
|
1118
|
+
<3720202020426f6172642054> Tj
|
1119
|
+
ET
|
1120
|
+
|
1121
|
+
/DeviceRGB cs
|
1122
|
+
0.000 0.000 0.000 scn
|
1123
|
+
0.5 w
|
1124
|
+
0.714 0.714 0.714 SCN
|
1125
|
+
460.241 718.630 m
|
1126
|
+
510.241 718.630 l
|
1127
|
+
S
|
1128
|
+
1 w
|
1129
|
+
0.000 0.000 0.000 SCN
|
1130
|
+
|
1131
|
+
BT
|
1132
|
+
492.7046299212598 726.0926299212598 Td
|
1133
|
+
/F1.0 12 Tf
|
1134
|
+
<3131> Tj
|
1135
|
+
ET
|
1136
|
+
|
1137
|
+
0.000 0.000 0.000 scn
|
1138
|
+
1 w
|
1139
|
+
0.000 0.000 0.000 SCN
|
1140
|
+
|
1141
|
+
BT
|
1142
|
+
95.03937007874016 702.8716299212598 Td
|
1143
|
+
/F2.0 12 Tf
|
1144
|
+
<372e31202020204e616d65732054> Tj
|
1145
|
+
ET
|
1146
|
+
|
1147
|
+
0.000 0.000 0.000 scn
|
1148
|
+
1 w
|
1149
|
+
0.000 0.000 0.000 SCN
|
1150
|
+
|
1151
|
+
BT
|
1152
|
+
492.7046299212598 702.8716299212598 Td
|
1153
|
+
/F2.0 12 Tf
|
1154
|
+
<3131> Tj
|
1155
|
+
ET
|
1156
|
+
|
1157
|
+
0.000 0.000 0.000 scn
|
1158
|
+
0.5 w
|
1159
|
+
0.714 0.714 0.714 SCN
|
1160
|
+
85.039 663.205 m
|
1161
|
+
460.241 663.205 l
|
1162
|
+
S
|
1163
|
+
1 w
|
1164
|
+
0.000 0.000 0.000 SCN
|
1165
|
+
|
1166
|
+
BT
|
1167
|
+
85.03937007874016 669.8916299212599 Td
|
1168
|
+
/F1.0 13 Tf
|
1169
|
+
<382020202047656e65726174696f6e732046> Tj
|
1170
|
+
ET
|
1171
|
+
|
1172
|
+
0.000 0.000 0.000 scn
|
1173
|
+
0.5 w
|
1174
|
+
0.714 0.714 0.714 SCN
|
1175
|
+
460.241 663.205 m
|
1176
|
+
510.241 663.205 l
|
1177
|
+
S
|
1178
|
+
1 w
|
1179
|
+
0.000 0.000 0.000 SCN
|
1180
|
+
|
1181
|
+
BT
|
1182
|
+
492.7046299212598 670.6676299212598 Td
|
1183
|
+
/F1.0 12 Tf
|
1184
|
+
<3132> Tj
|
1185
|
+
ET
|
1186
|
+
|
1187
|
+
0.000 0.000 0.000 scn
|
1188
|
+
1 w
|
1189
|
+
0.000 0.000 0.000 SCN
|
1190
|
+
|
1191
|
+
BT
|
1192
|
+
95.03937007874016 647.4466299212598 Td
|
1193
|
+
/F2.0 12 Tf
|
1194
|
+
<382e31202020204d656574696e6773204d> Tj
|
1195
|
+
ET
|
1196
|
+
|
1197
|
+
0.000 0.000 0.000 scn
|
1198
|
+
1 w
|
1199
|
+
0.000 0.000 0.000 SCN
|
1200
|
+
|
1201
|
+
BT
|
1202
|
+
492.7046299212598 647.4466299212598 Td
|
1203
|
+
/F2.0 12 Tf
|
1204
|
+
<3132> Tj
|
1205
|
+
ET
|
1206
|
+
|
1207
|
+
0.000 0.000 0.000 scn
|
1208
|
+
1 w
|
1209
|
+
0.000 0.000 0.000 SCN
|
1210
|
+
|
1211
|
+
BT
|
1212
|
+
105.03937007874016 631.01862992126 Td
|
1213
|
+
/F2.0 11 Tf
|
1214
|
+
<382e312e31202020204d656574696e67732042> Tj
|
1215
|
+
ET
|
1216
|
+
|
1217
|
+
0.000 0.000 0.000 scn
|
1218
|
+
1 w
|
1219
|
+
0.000 0.000 0.000 SCN
|
1220
|
+
|
1221
|
+
BT
|
1222
|
+
492.7046299212598 630.2426299212599 Td
|
1223
|
+
/F2.0 12 Tf
|
1224
|
+
<3132> Tj
|
1225
|
+
ET
|
1226
|
+
|
1227
|
+
0.000 0.000 0.000 scn
|
1228
|
+
1 w
|
1229
|
+
0.000 0.000 0.000 SCN
|
1230
|
+
|
1231
|
+
BT
|
1232
|
+
115.03937007874016 614.59062992126 Td
|
1233
|
+
/F2.0 10 Tf
|
1234
|
+
[<382e312e312e312020202054> 44.0 <657374732055>] TJ
|
1235
|
+
ET
|
1236
|
+
|
1237
|
+
0.000 0.000 0.000 scn
|
1238
|
+
1 w
|
1239
|
+
0.000 0.000 0.000 SCN
|
1240
|
+
|
1241
|
+
BT
|
1242
|
+
492.7046299212598 613.0386299212599 Td
|
1243
|
+
/F2.0 12 Tf
|
1244
|
+
<3132> Tj
|
1245
|
+
ET
|
1246
|
+
|
1247
|
+
0.000 0.000 0.000 scn
|
1248
|
+
1 w
|
1249
|
+
0.000 0.000 0.000 SCN
|
1250
|
+
|
1251
|
+
BT
|
1252
|
+
85.03937007874016 579.28262992126 Td
|
1253
|
+
/F2.0 14 Tf
|
1254
|
+
[<4269626c696f6772617068> 9.0 <79>] TJ
|
1255
|
+
ET
|
1256
|
+
|
1257
|
+
0.000 0.000 0.000 scn
|
1258
|
+
1 w
|
1259
|
+
0.000 0.000 0.000 SCN
|
1260
|
+
|
1261
|
+
BT
|
1262
|
+
492.7046299212598 580.83462992126 Td
|
1263
|
+
/F2.0 12 Tf
|
1264
|
+
<3133> Tj
|
1265
|
+
ET
|
1266
|
+
|
1267
|
+
0.000 0.000 0.000 scn
|
1268
|
+
0.714 0.714 0.714 scn
|
1269
|
+
|
1270
|
+
BT
|
1271
|
+
282.11 77.27937007874014 Td
|
1272
|
+
/F2.0 10 Tf
|
1273
|
+
<34206f66203133> Tj
|
1274
|
+
ET
|
1275
|
+
|
1276
|
+
Q
|
1277
|
+
|
1278
|
+
endstream
|
1279
|
+
endobj
|
1280
|
+
57 0 obj
|
1281
|
+
<< /Type /Page
|
1282
|
+
/Parent 3 0 R
|
1283
|
+
/MediaBox [0 0 595.28 841.89]
|
1284
|
+
/Contents 56 0 R
|
1285
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1286
|
+
/Font << /F1.0 6 0 R
|
1287
|
+
/F2.0 9 0 R
|
1288
|
+
>>
|
1289
|
+
>>
|
1290
|
+
/Annots [58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R]
|
1291
|
+
>>
|
1292
|
+
endobj
|
1293
|
+
58 0 obj
|
1294
|
+
<< /Border [0 0 0]
|
1295
|
+
/Dest (page11)
|
1296
|
+
/Subtype /Link
|
1297
|
+
/Rect [85.03937007874016 722.9116299212598 150.22137007874016 735.4046299212598]
|
1298
|
+
/Type /Annot
|
1299
|
+
>>
|
1300
|
+
endobj
|
1301
|
+
59 0 obj
|
1302
|
+
<< /Border [0 0 0]
|
1303
|
+
/Dest (page11)
|
1304
|
+
/Subtype /Link
|
1305
|
+
/Rect [492.7046299212598 723.8726299212598 506.2406299212598 735.4046299212598]
|
1306
|
+
/Type /Annot
|
1307
|
+
>>
|
1308
|
+
endobj
|
1309
|
+
60 0 obj
|
1310
|
+
<< /Border [0 0 0]
|
1311
|
+
/Dest (page11)
|
1312
|
+
/Subtype /Link
|
1313
|
+
/Rect [95.03937007874016 700.6516299212598 168.46737007874015 712.1836299212598]
|
1314
|
+
/Type /Annot
|
1315
|
+
>>
|
1316
|
+
endobj
|
1317
|
+
61 0 obj
|
1318
|
+
<< /Border [0 0 0]
|
1319
|
+
/Dest (page11)
|
1320
|
+
/Subtype /Link
|
1321
|
+
/Rect [492.7046299212598 700.6516299212598 506.2406299212598 712.1836299212598]
|
1322
|
+
/Type /Annot
|
1323
|
+
>>
|
1324
|
+
endobj
|
1325
|
+
62 0 obj
|
1326
|
+
<< /Border [0 0 0]
|
1327
|
+
/Dest (page12)
|
1328
|
+
/Subtype /Link
|
1329
|
+
/Rect [85.03937007874016 667.4866299212598 186.34837007874017 679.9796299212599]
|
1330
|
+
/Type /Annot
|
1331
|
+
>>
|
1332
|
+
endobj
|
1333
|
+
63 0 obj
|
1334
|
+
<< /Border [0 0 0]
|
1335
|
+
/Dest (page12)
|
1336
|
+
/Subtype /Link
|
1337
|
+
/Rect [492.7046299212598 668.4476299212598 506.2406299212598 679.9796299212599]
|
1338
|
+
/Type /Annot
|
1339
|
+
>>
|
1340
|
+
endobj
|
1341
|
+
64 0 obj
|
1342
|
+
<< /Border [0 0 0]
|
1343
|
+
/Dest (page12)
|
1344
|
+
/Subtype /Link
|
1345
|
+
/Rect [95.03937007874016 645.2266299212598 185.44737007874016 656.7586299212599]
|
1346
|
+
/Type /Annot
|
1347
|
+
>>
|
1348
|
+
endobj
|
1349
|
+
65 0 obj
|
1350
|
+
<< /Border [0 0 0]
|
1351
|
+
/Dest (page12)
|
1352
|
+
/Subtype /Link
|
1353
|
+
/Rect [492.7046299212598 645.2266299212598 506.2406299212598 656.7586299212599]
|
1354
|
+
/Type /Annot
|
1355
|
+
>>
|
1356
|
+
endobj
|
1357
|
+
66 0 obj
|
1358
|
+
<< /Border [0 0 0]
|
1359
|
+
/Dest (page12)
|
1360
|
+
/Subtype /Link
|
1361
|
+
/Rect [105.03937007874016 628.9836299212599 194.23837007874016 639.5546299212599]
|
1362
|
+
/Type /Annot
|
1363
|
+
>>
|
1364
|
+
endobj
|
1365
|
+
67 0 obj
|
1366
|
+
<< /Border [0 0 0]
|
1367
|
+
/Dest (page12)
|
1368
|
+
/Subtype /Link
|
1369
|
+
/Rect [492.7046299212598 628.0226299212599 506.2406299212598 639.5546299212599]
|
1370
|
+
/Type /Annot
|
1371
|
+
>>
|
1372
|
+
endobj
|
1373
|
+
68 0 obj
|
1374
|
+
<< /Border [0 0 0]
|
1375
|
+
/Dest (page12)
|
1376
|
+
/Subtype /Link
|
1377
|
+
/Rect [115.03937007874016 612.7406299212599 186.12937007874018 622.35062992126]
|
1378
|
+
/Type /Annot
|
1379
|
+
>>
|
1380
|
+
endobj
|
1381
|
+
69 0 obj
|
1382
|
+
<< /Border [0 0 0]
|
1383
|
+
/Dest (page12)
|
1384
|
+
/Subtype /Link
|
1385
|
+
/Rect [492.7046299212598 610.8186299212599 506.2406299212598 622.35062992126]
|
1386
|
+
/Type /Annot
|
1387
|
+
>>
|
1388
|
+
endobj
|
1389
|
+
70 0 obj
|
1390
|
+
<< /Border [0 0 0]
|
1391
|
+
/Dest (page13)
|
1392
|
+
/Subtype /Link
|
1393
|
+
/Rect [85.03937007874016 576.69262992126 163.39737007874015 590.14662992126]
|
1394
|
+
/Type /Annot
|
1395
|
+
>>
|
1396
|
+
endobj
|
1397
|
+
71 0 obj
|
1398
|
+
<< /Border [0 0 0]
|
1399
|
+
/Dest (page13)
|
1400
|
+
/Subtype /Link
|
1401
|
+
/Rect [492.7046299212598 578.61462992126 506.2406299212598 590.14662992126]
|
1402
|
+
/Type /Annot
|
1403
|
+
>>
|
1404
|
+
endobj
|
1405
|
+
72 0 obj
|
1406
|
+
<< /Length 2603
|
1407
|
+
>>
|
1408
|
+
stream
|
1409
|
+
q
|
1410
|
+
/DeviceRGB cs
|
1411
|
+
0.392 0.392 0.392 scn
|
1412
|
+
|
1413
|
+
BT
|
1414
|
+
405.3366299212598 738.2266299212598 Td
|
1415
|
+
/F2.0 24 Tf
|
1416
|
+
<436861707465722031> Tj
|
1417
|
+
ET
|
1418
|
+
|
1419
|
+
0.000 0.000 0.000 scn
|
1420
|
+
|
1421
|
+
BT
|
1422
|
+
428.34062992125985 700.4933385826772 Td
|
1423
|
+
/F1.0 30 Tf
|
1424
|
+
<426f617264> Tj
|
1425
|
+
ET
|
1426
|
+
|
1427
|
+
|
1428
|
+
0.005 Tw
|
1429
|
+
|
1430
|
+
BT
|
1431
|
+
85.03937007874016 567.5655118110236 Td
|
1432
|
+
/F1.0 12 Tf
|
1433
|
+
<536f6d6520> Tj
|
1434
|
+
ET
|
1435
|
+
|
1436
|
+
|
1437
|
+
0.000 Tw
|
1438
|
+
|
1439
|
+
0.005 Tw
|
1440
|
+
|
1441
|
+
BT
|
1442
|
+
118.32052073490814 567.5655118110236 Td
|
1443
|
+
/F3.0 12 Tf
|
1444
|
+
<626f6c64> Tj
|
1445
|
+
ET
|
1446
|
+
|
1447
|
+
|
1448
|
+
0.000 Tw
|
1449
|
+
|
1450
|
+
0.005 Tw
|
1451
|
+
|
1452
|
+
BT
|
1453
|
+
143.89252073490815 567.5655118110236 Td
|
1454
|
+
/F1.0 12 Tf
|
1455
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1456
|
+
ET
|
1457
|
+
|
1458
|
+
|
1459
|
+
0.000 Tw
|
1460
|
+
|
1461
|
+
0.005 Tw
|
1462
|
+
|
1463
|
+
BT
|
1464
|
+
231.83712335958006 567.5655118110236 Td
|
1465
|
+
/F2.0 12 Tf
|
1466
|
+
<6974616c6963> Tj
|
1467
|
+
ET
|
1468
|
+
|
1469
|
+
|
1470
|
+
0.000 Tw
|
1471
|
+
|
1472
|
+
0.005 Tw
|
1473
|
+
|
1474
|
+
BT
|
1475
|
+
256.8571233595801 567.5655118110236 Td
|
1476
|
+
/F1.0 12 Tf
|
1477
|
+
[<2074> 10.0 <657874> -11.0 <2e20546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265>] TJ
|
1478
|
+
ET
|
1479
|
+
|
1480
|
+
|
1481
|
+
0.000 Tw
|
1482
|
+
|
1483
|
+
0.233 Tw
|
1484
|
+
|
1485
|
+
BT
|
1486
|
+
85.03937007874016 552.3615118110235 Td
|
1487
|
+
/F1.0 12 Tf
|
1488
|
+
[<6d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e>] TJ
|
1489
|
+
ET
|
1490
|
+
|
1491
|
+
|
1492
|
+
0.000 Tw
|
1493
|
+
|
1494
|
+
BT
|
1495
|
+
85.03937007874016 537.1575118110236 Td
|
1496
|
+
/F1.0 12 Tf
|
1497
|
+
[<416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f726521>] TJ
|
1498
|
+
ET
|
1499
|
+
|
1500
|
+
0.392 0.392 0.392 scn
|
1501
|
+
|
1502
|
+
BT
|
1503
|
+
85.03937007874016 488.95105511811016 Td
|
1504
|
+
/F2.0 18 Tf
|
1505
|
+
<4e616d6573> Tj
|
1506
|
+
ET
|
1507
|
+
|
1508
|
+
0.000 0.000 0.000 scn
|
1509
|
+
|
1510
|
+
BT
|
1511
|
+
85.03937007874016 458.1278267716535 Td
|
1512
|
+
/F1.0 12 Tf
|
1513
|
+
<536f6d6520> Tj
|
1514
|
+
ET
|
1515
|
+
|
1516
|
+
|
1517
|
+
BT
|
1518
|
+
118.31537007874016 458.1278267716535 Td
|
1519
|
+
/F3.0 12 Tf
|
1520
|
+
<626f6c64> Tj
|
1521
|
+
ET
|
1522
|
+
|
1523
|
+
|
1524
|
+
BT
|
1525
|
+
143.88737007874016 458.1278267716535 Td
|
1526
|
+
/F1.0 12 Tf
|
1527
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1528
|
+
ET
|
1529
|
+
|
1530
|
+
|
1531
|
+
BT
|
1532
|
+
231.81137007874014 458.1278267716535 Td
|
1533
|
+
/F2.0 12 Tf
|
1534
|
+
<6974616c6963> Tj
|
1535
|
+
ET
|
1536
|
+
|
1537
|
+
|
1538
|
+
BT
|
1539
|
+
256.8313700787402 458.1278267716535 Td
|
1540
|
+
/F1.0 12 Tf
|
1541
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
1542
|
+
ET
|
1543
|
+
|
1544
|
+
0.392 0.392 0.392 scn
|
1545
|
+
|
1546
|
+
BT
|
1547
|
+
85.03937007874016 409.92137007874004 Td
|
1548
|
+
/F2.0 18 Tf
|
1549
|
+
[<50> 8.0 <616e6573>] TJ
|
1550
|
+
ET
|
1551
|
+
|
1552
|
+
0.000 0.000 0.000 scn
|
1553
|
+
|
1554
|
+
BT
|
1555
|
+
85.03937007874016 379.09814173228335 Td
|
1556
|
+
/F1.0 12 Tf
|
1557
|
+
<536f6d6520> Tj
|
1558
|
+
ET
|
1559
|
+
|
1560
|
+
|
1561
|
+
BT
|
1562
|
+
118.31537007874016 379.09814173228335 Td
|
1563
|
+
/F3.0 12 Tf
|
1564
|
+
<626f6c64> Tj
|
1565
|
+
ET
|
1566
|
+
|
1567
|
+
|
1568
|
+
BT
|
1569
|
+
143.88737007874016 379.09814173228335 Td
|
1570
|
+
/F1.0 12 Tf
|
1571
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1572
|
+
ET
|
1573
|
+
|
1574
|
+
|
1575
|
+
BT
|
1576
|
+
231.81137007874014 379.09814173228335 Td
|
1577
|
+
/F2.0 12 Tf
|
1578
|
+
<6974616c6963> Tj
|
1579
|
+
ET
|
1580
|
+
|
1581
|
+
|
1582
|
+
BT
|
1583
|
+
256.8313700787402 379.09814173228335 Td
|
1584
|
+
/F1.0 12 Tf
|
1585
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
1586
|
+
ET
|
1587
|
+
|
1588
|
+
0.714 0.714 0.714 scn
|
1589
|
+
|
1590
|
+
BT
|
1591
|
+
282.11 77.27937007874014 Td
|
1592
|
+
/F2.0 10 Tf
|
1593
|
+
<35206f66203133> Tj
|
1594
|
+
ET
|
1595
|
+
|
1596
|
+
Q
|
1597
|
+
|
1598
|
+
endstream
|
1599
|
+
endobj
|
1600
|
+
73 0 obj
|
1601
|
+
<< /Type /Page
|
1602
|
+
/Parent 3 0 R
|
1603
|
+
/MediaBox [0 0 595.28 841.89]
|
1604
|
+
/Contents 72 0 R
|
1605
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1606
|
+
/Font << /F2.0 9 0 R
|
1607
|
+
/F1.0 6 0 R
|
1608
|
+
/F3.0 74 0 R
|
1609
|
+
>>
|
1610
|
+
>>
|
1611
|
+
>>
|
1612
|
+
endobj
|
1613
|
+
74 0 obj
|
1614
|
+
<< /Type /Font
|
1615
|
+
/BaseFont /AAAAAP+Ubuntu-Bold
|
1616
|
+
/Subtype /TrueType
|
1617
|
+
/FontDescriptor 145 0 R
|
1618
|
+
/FirstChar 32
|
1619
|
+
/LastChar 255
|
1620
|
+
/Widths 147 0 R
|
1621
|
+
/ToUnicode 146 0 R
|
1622
|
+
>>
|
1623
|
+
endobj
|
1624
|
+
75 0 obj
|
1625
|
+
<< /Length 1717
|
1626
|
+
>>
|
1627
|
+
stream
|
1628
|
+
q
|
1629
|
+
/DeviceRGB cs
|
1630
|
+
0.392 0.392 0.392 scn
|
1631
|
+
|
1632
|
+
BT
|
1633
|
+
405.3366299212598 738.2266299212598 Td
|
1634
|
+
/F2.0 24 Tf
|
1635
|
+
<436861707465722032> Tj
|
1636
|
+
ET
|
1637
|
+
|
1638
|
+
0.000 0.000 0.000 scn
|
1639
|
+
|
1640
|
+
BT
|
1641
|
+
344.1306299212598 700.4933385826772 Td
|
1642
|
+
/F1.0 30 Tf
|
1643
|
+
<47656e65726174696f6e73> Tj
|
1644
|
+
ET
|
1645
|
+
|
1646
|
+
0.392 0.392 0.392 scn
|
1647
|
+
|
1648
|
+
BT
|
1649
|
+
85.03937007874016 548.7362834645669 Td
|
1650
|
+
/F2.0 18 Tf
|
1651
|
+
<4d656574696e67732041> Tj
|
1652
|
+
ET
|
1653
|
+
|
1654
|
+
0.000 0.000 0.000 scn
|
1655
|
+
|
1656
|
+
BT
|
1657
|
+
85.03937007874016 517.9130551181103 Td
|
1658
|
+
/F1.0 12 Tf
|
1659
|
+
[<54686973206973206576> 14.0 <656e206d6f7265>] TJ
|
1660
|
+
ET
|
1661
|
+
|
1662
|
+
0.392 0.392 0.392 scn
|
1663
|
+
|
1664
|
+
BT
|
1665
|
+
85.03937007874016 472.8105984251968 Td
|
1666
|
+
/F2.0 14 Tf
|
1667
|
+
[<4d656574696e67732041> -33.0 <41>] TJ
|
1668
|
+
ET
|
1669
|
+
|
1670
|
+
0.000 0.000 0.000 scn
|
1671
|
+
|
1672
|
+
BT
|
1673
|
+
85.03937007874016 442.95137007874007 Td
|
1674
|
+
/F1.0 12 Tf
|
1675
|
+
<536f6d6520> Tj
|
1676
|
+
ET
|
1677
|
+
|
1678
|
+
|
1679
|
+
BT
|
1680
|
+
118.31537007874016 442.95137007874007 Td
|
1681
|
+
/F3.0 12 Tf
|
1682
|
+
<626f6c64> Tj
|
1683
|
+
ET
|
1684
|
+
|
1685
|
+
|
1686
|
+
BT
|
1687
|
+
143.88737007874016 442.95137007874007 Td
|
1688
|
+
/F1.0 12 Tf
|
1689
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1690
|
+
ET
|
1691
|
+
|
1692
|
+
|
1693
|
+
BT
|
1694
|
+
231.81137007874014 442.95137007874007 Td
|
1695
|
+
/F2.0 12 Tf
|
1696
|
+
<6974616c6963> Tj
|
1697
|
+
ET
|
1698
|
+
|
1699
|
+
|
1700
|
+
BT
|
1701
|
+
256.8313700787402 442.95137007874007 Td
|
1702
|
+
/F1.0 12 Tf
|
1703
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
1704
|
+
ET
|
1705
|
+
|
1706
|
+
0.392 0.392 0.392 scn
|
1707
|
+
|
1708
|
+
BT
|
1709
|
+
85.03937007874016 399.40091338582664 Td
|
1710
|
+
/F2.0 12 Tf
|
1711
|
+
[<54> 44.0 <65737473>] TJ
|
1712
|
+
ET
|
1713
|
+
|
1714
|
+
0.000 0.000 0.000 scn
|
1715
|
+
|
1716
|
+
BT
|
1717
|
+
85.03937007874016 370.0236850393699 Td
|
1718
|
+
/F1.0 12 Tf
|
1719
|
+
<536f6d6520> Tj
|
1720
|
+
ET
|
1721
|
+
|
1722
|
+
|
1723
|
+
BT
|
1724
|
+
118.31537007874016 370.0236850393699 Td
|
1725
|
+
/F3.0 12 Tf
|
1726
|
+
<626f6c64> Tj
|
1727
|
+
ET
|
1728
|
+
|
1729
|
+
|
1730
|
+
BT
|
1731
|
+
143.88737007874016 370.0236850393699 Td
|
1732
|
+
/F1.0 12 Tf
|
1733
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1734
|
+
ET
|
1735
|
+
|
1736
|
+
|
1737
|
+
BT
|
1738
|
+
231.81137007874014 370.0236850393699 Td
|
1739
|
+
/F2.0 12 Tf
|
1740
|
+
<6974616c6963> Tj
|
1741
|
+
ET
|
1742
|
+
|
1743
|
+
|
1744
|
+
BT
|
1745
|
+
256.8313700787402 370.0236850393699 Td
|
1746
|
+
/F1.0 12 Tf
|
1747
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
1748
|
+
ET
|
1749
|
+
|
1750
|
+
0.714 0.714 0.714 scn
|
1751
|
+
|
1752
|
+
BT
|
1753
|
+
282.11 77.27937007874014 Td
|
1754
|
+
/F2.0 10 Tf
|
1755
|
+
<36206f66203133> Tj
|
1756
|
+
ET
|
1757
|
+
|
1758
|
+
Q
|
1759
|
+
|
1760
|
+
endstream
|
1761
|
+
endobj
|
1762
|
+
76 0 obj
|
1763
|
+
<< /Type /Page
|
1764
|
+
/Parent 3 0 R
|
1765
|
+
/MediaBox [0 0 595.28 841.89]
|
1766
|
+
/Contents 75 0 R
|
1767
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1768
|
+
/Font << /F2.0 9 0 R
|
1769
|
+
/F1.0 6 0 R
|
1770
|
+
/F3.0 74 0 R
|
1771
|
+
>>
|
1772
|
+
>>
|
1773
|
+
>>
|
1774
|
+
endobj
|
1775
|
+
77 0 obj
|
1776
|
+
<< /Length 2036
|
1777
|
+
>>
|
1778
|
+
stream
|
1779
|
+
q
|
1780
|
+
/DeviceRGB cs
|
1781
|
+
0.392 0.392 0.392 scn
|
1782
|
+
|
1783
|
+
BT
|
1784
|
+
405.3366299212598 738.2266299212598 Td
|
1785
|
+
/F2.0 24 Tf
|
1786
|
+
<436861707465722033> Tj
|
1787
|
+
ET
|
1788
|
+
|
1789
|
+
0.000 0.000 0.000 scn
|
1790
|
+
|
1791
|
+
BT
|
1792
|
+
401.5206299212598 700.4933385826772 Td
|
1793
|
+
/F1.0 30 Tf
|
1794
|
+
<426f6172642041> Tj
|
1795
|
+
ET
|
1796
|
+
|
1797
|
+
|
1798
|
+
0.005 Tw
|
1799
|
+
|
1800
|
+
BT
|
1801
|
+
85.03937007874016 567.5655118110236 Td
|
1802
|
+
/F1.0 12 Tf
|
1803
|
+
<536f6d6520> Tj
|
1804
|
+
ET
|
1805
|
+
|
1806
|
+
|
1807
|
+
0.000 Tw
|
1808
|
+
|
1809
|
+
0.005 Tw
|
1810
|
+
|
1811
|
+
BT
|
1812
|
+
118.32052073490814 567.5655118110236 Td
|
1813
|
+
/F3.0 12 Tf
|
1814
|
+
<626f6c64> Tj
|
1815
|
+
ET
|
1816
|
+
|
1817
|
+
|
1818
|
+
0.000 Tw
|
1819
|
+
|
1820
|
+
0.005 Tw
|
1821
|
+
|
1822
|
+
BT
|
1823
|
+
143.89252073490815 567.5655118110236 Td
|
1824
|
+
/F1.0 12 Tf
|
1825
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1826
|
+
ET
|
1827
|
+
|
1828
|
+
|
1829
|
+
0.000 Tw
|
1830
|
+
|
1831
|
+
0.005 Tw
|
1832
|
+
|
1833
|
+
BT
|
1834
|
+
231.83712335958006 567.5655118110236 Td
|
1835
|
+
/F2.0 12 Tf
|
1836
|
+
<6974616c6963> Tj
|
1837
|
+
ET
|
1838
|
+
|
1839
|
+
|
1840
|
+
0.000 Tw
|
1841
|
+
|
1842
|
+
0.005 Tw
|
1843
|
+
|
1844
|
+
BT
|
1845
|
+
256.8571233595801 567.5655118110236 Td
|
1846
|
+
/F1.0 12 Tf
|
1847
|
+
[<2074> 10.0 <657874> -11.0 <2e20546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265>] TJ
|
1848
|
+
ET
|
1849
|
+
|
1850
|
+
|
1851
|
+
0.000 Tw
|
1852
|
+
|
1853
|
+
0.233 Tw
|
1854
|
+
|
1855
|
+
BT
|
1856
|
+
85.03937007874016 552.3615118110235 Td
|
1857
|
+
/F1.0 12 Tf
|
1858
|
+
[<6d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e>] TJ
|
1859
|
+
ET
|
1860
|
+
|
1861
|
+
|
1862
|
+
0.000 Tw
|
1863
|
+
|
1864
|
+
BT
|
1865
|
+
85.03937007874016 537.1575118110236 Td
|
1866
|
+
/F1.0 12 Tf
|
1867
|
+
[<416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f726521>] TJ
|
1868
|
+
ET
|
1869
|
+
|
1870
|
+
0.392 0.392 0.392 scn
|
1871
|
+
|
1872
|
+
BT
|
1873
|
+
85.03937007874016 488.95105511811016 Td
|
1874
|
+
/F2.0 18 Tf
|
1875
|
+
<4e616d65732041> Tj
|
1876
|
+
ET
|
1877
|
+
|
1878
|
+
0.000 0.000 0.000 scn
|
1879
|
+
|
1880
|
+
BT
|
1881
|
+
85.03937007874016 458.1278267716535 Td
|
1882
|
+
/F1.0 12 Tf
|
1883
|
+
<536f6d6520> Tj
|
1884
|
+
ET
|
1885
|
+
|
1886
|
+
|
1887
|
+
BT
|
1888
|
+
118.31537007874016 458.1278267716535 Td
|
1889
|
+
/F3.0 12 Tf
|
1890
|
+
<626f6c64> Tj
|
1891
|
+
ET
|
1892
|
+
|
1893
|
+
|
1894
|
+
BT
|
1895
|
+
143.88737007874016 458.1278267716535 Td
|
1896
|
+
/F1.0 12 Tf
|
1897
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
1898
|
+
ET
|
1899
|
+
|
1900
|
+
|
1901
|
+
BT
|
1902
|
+
231.81137007874014 458.1278267716535 Td
|
1903
|
+
/F2.0 12 Tf
|
1904
|
+
<6974616c6963> Tj
|
1905
|
+
ET
|
1906
|
+
|
1907
|
+
|
1908
|
+
BT
|
1909
|
+
256.8313700787402 458.1278267716535 Td
|
1910
|
+
/F1.0 12 Tf
|
1911
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
1912
|
+
ET
|
1913
|
+
|
1914
|
+
0.714 0.714 0.714 scn
|
1915
|
+
|
1916
|
+
BT
|
1917
|
+
282.11 77.27937007874014 Td
|
1918
|
+
/F2.0 10 Tf
|
1919
|
+
<37206f66203133> Tj
|
1920
|
+
ET
|
1921
|
+
|
1922
|
+
Q
|
1923
|
+
|
1924
|
+
endstream
|
1925
|
+
endobj
|
1926
|
+
78 0 obj
|
1927
|
+
<< /Type /Page
|
1928
|
+
/Parent 3 0 R
|
1929
|
+
/MediaBox [0 0 595.28 841.89]
|
1930
|
+
/Contents 77 0 R
|
1931
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1932
|
+
/Font << /F2.0 9 0 R
|
1933
|
+
/F1.0 6 0 R
|
1934
|
+
/F3.0 74 0 R
|
1935
|
+
>>
|
1936
|
+
>>
|
1937
|
+
>>
|
1938
|
+
endobj
|
1939
|
+
79 0 obj
|
1940
|
+
<< /Length 1736
|
1941
|
+
>>
|
1942
|
+
stream
|
1943
|
+
q
|
1944
|
+
/DeviceRGB cs
|
1945
|
+
0.392 0.392 0.392 scn
|
1946
|
+
|
1947
|
+
BT
|
1948
|
+
405.3366299212598 738.2266299212598 Td
|
1949
|
+
/F2.0 24 Tf
|
1950
|
+
<436861707465722034> Tj
|
1951
|
+
ET
|
1952
|
+
|
1953
|
+
0.000 0.000 0.000 scn
|
1954
|
+
|
1955
|
+
BT
|
1956
|
+
317.3106299212598 700.4933385826772 Td
|
1957
|
+
/F1.0 30 Tf
|
1958
|
+
<47656e65726174696f6e732041> Tj
|
1959
|
+
ET
|
1960
|
+
|
1961
|
+
0.392 0.392 0.392 scn
|
1962
|
+
|
1963
|
+
BT
|
1964
|
+
85.03937007874016 548.7362834645669 Td
|
1965
|
+
/F2.0 18 Tf
|
1966
|
+
<4d656574696e6773204142> Tj
|
1967
|
+
ET
|
1968
|
+
|
1969
|
+
0.000 0.000 0.000 scn
|
1970
|
+
|
1971
|
+
BT
|
1972
|
+
85.03937007874016 517.9130551181103 Td
|
1973
|
+
/F1.0 12 Tf
|
1974
|
+
[<54686973206973206576> 14.0 <656e206d6f7265>] TJ
|
1975
|
+
ET
|
1976
|
+
|
1977
|
+
0.392 0.392 0.392 scn
|
1978
|
+
|
1979
|
+
BT
|
1980
|
+
85.03937007874016 472.8105984251968 Td
|
1981
|
+
/F2.0 14 Tf
|
1982
|
+
[<4d656574696e67732041> -33.0 <41> 8.0 <43>] TJ
|
1983
|
+
ET
|
1984
|
+
|
1985
|
+
0.000 0.000 0.000 scn
|
1986
|
+
|
1987
|
+
BT
|
1988
|
+
85.03937007874016 442.95137007874007 Td
|
1989
|
+
/F1.0 12 Tf
|
1990
|
+
<536f6d6520> Tj
|
1991
|
+
ET
|
1992
|
+
|
1993
|
+
|
1994
|
+
BT
|
1995
|
+
118.31537007874016 442.95137007874007 Td
|
1996
|
+
/F3.0 12 Tf
|
1997
|
+
<626f6c64> Tj
|
1998
|
+
ET
|
1999
|
+
|
2000
|
+
|
2001
|
+
BT
|
2002
|
+
143.88737007874016 442.95137007874007 Td
|
2003
|
+
/F1.0 12 Tf
|
2004
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2005
|
+
ET
|
2006
|
+
|
2007
|
+
|
2008
|
+
BT
|
2009
|
+
231.81137007874014 442.95137007874007 Td
|
2010
|
+
/F2.0 12 Tf
|
2011
|
+
<6974616c6963> Tj
|
2012
|
+
ET
|
2013
|
+
|
2014
|
+
|
2015
|
+
BT
|
2016
|
+
256.8313700787402 442.95137007874007 Td
|
2017
|
+
/F1.0 12 Tf
|
2018
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2019
|
+
ET
|
2020
|
+
|
2021
|
+
0.392 0.392 0.392 scn
|
2022
|
+
|
2023
|
+
BT
|
2024
|
+
85.03937007874016 399.40091338582664 Td
|
2025
|
+
/F2.0 12 Tf
|
2026
|
+
[<54> 44.0 <657374732044>] TJ
|
2027
|
+
ET
|
2028
|
+
|
2029
|
+
0.000 0.000 0.000 scn
|
2030
|
+
|
2031
|
+
BT
|
2032
|
+
85.03937007874016 370.0236850393699 Td
|
2033
|
+
/F1.0 12 Tf
|
2034
|
+
<536f6d6520> Tj
|
2035
|
+
ET
|
2036
|
+
|
2037
|
+
|
2038
|
+
BT
|
2039
|
+
118.31537007874016 370.0236850393699 Td
|
2040
|
+
/F3.0 12 Tf
|
2041
|
+
<626f6c64> Tj
|
2042
|
+
ET
|
2043
|
+
|
2044
|
+
|
2045
|
+
BT
|
2046
|
+
143.88737007874016 370.0236850393699 Td
|
2047
|
+
/F1.0 12 Tf
|
2048
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2049
|
+
ET
|
2050
|
+
|
2051
|
+
|
2052
|
+
BT
|
2053
|
+
231.81137007874014 370.0236850393699 Td
|
2054
|
+
/F2.0 12 Tf
|
2055
|
+
<6974616c6963> Tj
|
2056
|
+
ET
|
2057
|
+
|
2058
|
+
|
2059
|
+
BT
|
2060
|
+
256.8313700787402 370.0236850393699 Td
|
2061
|
+
/F1.0 12 Tf
|
2062
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2063
|
+
ET
|
2064
|
+
|
2065
|
+
0.714 0.714 0.714 scn
|
2066
|
+
|
2067
|
+
BT
|
2068
|
+
282.11 77.27937007874014 Td
|
2069
|
+
/F2.0 10 Tf
|
2070
|
+
<38206f66203133> Tj
|
2071
|
+
ET
|
2072
|
+
|
2073
|
+
Q
|
2074
|
+
|
2075
|
+
endstream
|
2076
|
+
endobj
|
2077
|
+
80 0 obj
|
2078
|
+
<< /Type /Page
|
2079
|
+
/Parent 3 0 R
|
2080
|
+
/MediaBox [0 0 595.28 841.89]
|
2081
|
+
/Contents 79 0 R
|
2082
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2083
|
+
/Font << /F2.0 9 0 R
|
2084
|
+
/F1.0 6 0 R
|
2085
|
+
/F3.0 74 0 R
|
2086
|
+
>>
|
2087
|
+
>>
|
2088
|
+
>>
|
2089
|
+
endobj
|
2090
|
+
81 0 obj
|
2091
|
+
<< /Length 2036
|
2092
|
+
>>
|
2093
|
+
stream
|
2094
|
+
q
|
2095
|
+
/DeviceRGB cs
|
2096
|
+
0.392 0.392 0.392 scn
|
2097
|
+
|
2098
|
+
BT
|
2099
|
+
405.3366299212598 738.2266299212598 Td
|
2100
|
+
/F2.0 24 Tf
|
2101
|
+
<436861707465722035> Tj
|
2102
|
+
ET
|
2103
|
+
|
2104
|
+
0.000 0.000 0.000 scn
|
2105
|
+
|
2106
|
+
BT
|
2107
|
+
405.3006299212598 700.4933385826772 Td
|
2108
|
+
/F1.0 30 Tf
|
2109
|
+
<426f6172642046> Tj
|
2110
|
+
ET
|
2111
|
+
|
2112
|
+
|
2113
|
+
0.005 Tw
|
2114
|
+
|
2115
|
+
BT
|
2116
|
+
85.03937007874016 567.5655118110236 Td
|
2117
|
+
/F1.0 12 Tf
|
2118
|
+
<536f6d6520> Tj
|
2119
|
+
ET
|
2120
|
+
|
2121
|
+
|
2122
|
+
0.000 Tw
|
2123
|
+
|
2124
|
+
0.005 Tw
|
2125
|
+
|
2126
|
+
BT
|
2127
|
+
118.32052073490814 567.5655118110236 Td
|
2128
|
+
/F3.0 12 Tf
|
2129
|
+
<626f6c64> Tj
|
2130
|
+
ET
|
2131
|
+
|
2132
|
+
|
2133
|
+
0.000 Tw
|
2134
|
+
|
2135
|
+
0.005 Tw
|
2136
|
+
|
2137
|
+
BT
|
2138
|
+
143.89252073490815 567.5655118110236 Td
|
2139
|
+
/F1.0 12 Tf
|
2140
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2141
|
+
ET
|
2142
|
+
|
2143
|
+
|
2144
|
+
0.000 Tw
|
2145
|
+
|
2146
|
+
0.005 Tw
|
2147
|
+
|
2148
|
+
BT
|
2149
|
+
231.83712335958006 567.5655118110236 Td
|
2150
|
+
/F2.0 12 Tf
|
2151
|
+
<6974616c6963> Tj
|
2152
|
+
ET
|
2153
|
+
|
2154
|
+
|
2155
|
+
0.000 Tw
|
2156
|
+
|
2157
|
+
0.005 Tw
|
2158
|
+
|
2159
|
+
BT
|
2160
|
+
256.8571233595801 567.5655118110236 Td
|
2161
|
+
/F1.0 12 Tf
|
2162
|
+
[<2074> 10.0 <657874> -11.0 <2e20546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265>] TJ
|
2163
|
+
ET
|
2164
|
+
|
2165
|
+
|
2166
|
+
0.000 Tw
|
2167
|
+
|
2168
|
+
0.233 Tw
|
2169
|
+
|
2170
|
+
BT
|
2171
|
+
85.03937007874016 552.3615118110235 Td
|
2172
|
+
/F1.0 12 Tf
|
2173
|
+
[<6d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e>] TJ
|
2174
|
+
ET
|
2175
|
+
|
2176
|
+
|
2177
|
+
0.000 Tw
|
2178
|
+
|
2179
|
+
BT
|
2180
|
+
85.03937007874016 537.1575118110236 Td
|
2181
|
+
/F1.0 12 Tf
|
2182
|
+
[<416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f726521>] TJ
|
2183
|
+
ET
|
2184
|
+
|
2185
|
+
0.392 0.392 0.392 scn
|
2186
|
+
|
2187
|
+
BT
|
2188
|
+
85.03937007874016 488.95105511811016 Td
|
2189
|
+
/F2.0 18 Tf
|
2190
|
+
<4e616d65732046> Tj
|
2191
|
+
ET
|
2192
|
+
|
2193
|
+
0.000 0.000 0.000 scn
|
2194
|
+
|
2195
|
+
BT
|
2196
|
+
85.03937007874016 458.1278267716535 Td
|
2197
|
+
/F1.0 12 Tf
|
2198
|
+
<536f6d6520> Tj
|
2199
|
+
ET
|
2200
|
+
|
2201
|
+
|
2202
|
+
BT
|
2203
|
+
118.31537007874016 458.1278267716535 Td
|
2204
|
+
/F3.0 12 Tf
|
2205
|
+
<626f6c64> Tj
|
2206
|
+
ET
|
2207
|
+
|
2208
|
+
|
2209
|
+
BT
|
2210
|
+
143.88737007874016 458.1278267716535 Td
|
2211
|
+
/F1.0 12 Tf
|
2212
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2213
|
+
ET
|
2214
|
+
|
2215
|
+
|
2216
|
+
BT
|
2217
|
+
231.81137007874014 458.1278267716535 Td
|
2218
|
+
/F2.0 12 Tf
|
2219
|
+
<6974616c6963> Tj
|
2220
|
+
ET
|
2221
|
+
|
2222
|
+
|
2223
|
+
BT
|
2224
|
+
256.8313700787402 458.1278267716535 Td
|
2225
|
+
/F1.0 12 Tf
|
2226
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2227
|
+
ET
|
2228
|
+
|
2229
|
+
0.714 0.714 0.714 scn
|
2230
|
+
|
2231
|
+
BT
|
2232
|
+
282.11 77.27937007874014 Td
|
2233
|
+
/F2.0 10 Tf
|
2234
|
+
<39206f66203133> Tj
|
2235
|
+
ET
|
2236
|
+
|
2237
|
+
Q
|
2238
|
+
|
2239
|
+
endstream
|
2240
|
+
endobj
|
2241
|
+
82 0 obj
|
2242
|
+
<< /Type /Page
|
2243
|
+
/Parent 3 0 R
|
2244
|
+
/MediaBox [0 0 595.28 841.89]
|
2245
|
+
/Contents 81 0 R
|
2246
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2247
|
+
/Font << /F2.0 9 0 R
|
2248
|
+
/F1.0 6 0 R
|
2249
|
+
/F3.0 74 0 R
|
2250
|
+
>>
|
2251
|
+
>>
|
2252
|
+
>>
|
2253
|
+
endobj
|
2254
|
+
83 0 obj
|
2255
|
+
<< /Length 1736
|
2256
|
+
>>
|
2257
|
+
stream
|
2258
|
+
q
|
2259
|
+
/DeviceRGB cs
|
2260
|
+
0.392 0.392 0.392 scn
|
2261
|
+
|
2262
|
+
BT
|
2263
|
+
405.3366299212598 738.2266299212598 Td
|
2264
|
+
/F2.0 24 Tf
|
2265
|
+
<436861707465722036> Tj
|
2266
|
+
ET
|
2267
|
+
|
2268
|
+
0.000 0.000 0.000 scn
|
2269
|
+
|
2270
|
+
BT
|
2271
|
+
317.04062992125984 700.4933385826772 Td
|
2272
|
+
/F1.0 30 Tf
|
2273
|
+
<47656e65726174696f6e732047> Tj
|
2274
|
+
ET
|
2275
|
+
|
2276
|
+
0.392 0.392 0.392 scn
|
2277
|
+
|
2278
|
+
BT
|
2279
|
+
85.03937007874016 548.7362834645669 Td
|
2280
|
+
/F2.0 18 Tf
|
2281
|
+
<4d656574696e677320412046> Tj
|
2282
|
+
ET
|
2283
|
+
|
2284
|
+
0.000 0.000 0.000 scn
|
2285
|
+
|
2286
|
+
BT
|
2287
|
+
85.03937007874016 517.9130551181103 Td
|
2288
|
+
/F1.0 12 Tf
|
2289
|
+
[<54686973206973206576> 14.0 <656e206d6f7265>] TJ
|
2290
|
+
ET
|
2291
|
+
|
2292
|
+
0.392 0.392 0.392 scn
|
2293
|
+
|
2294
|
+
BT
|
2295
|
+
85.03937007874016 472.8105984251968 Td
|
2296
|
+
/F2.0 14 Tf
|
2297
|
+
[<4d656574696e67732041> -33.0 <412046>] TJ
|
2298
|
+
ET
|
2299
|
+
|
2300
|
+
0.000 0.000 0.000 scn
|
2301
|
+
|
2302
|
+
BT
|
2303
|
+
85.03937007874016 442.95137007874007 Td
|
2304
|
+
/F1.0 12 Tf
|
2305
|
+
<536f6d6520> Tj
|
2306
|
+
ET
|
2307
|
+
|
2308
|
+
|
2309
|
+
BT
|
2310
|
+
118.31537007874016 442.95137007874007 Td
|
2311
|
+
/F3.0 12 Tf
|
2312
|
+
<626f6c64> Tj
|
2313
|
+
ET
|
2314
|
+
|
2315
|
+
|
2316
|
+
BT
|
2317
|
+
143.88737007874016 442.95137007874007 Td
|
2318
|
+
/F1.0 12 Tf
|
2319
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2320
|
+
ET
|
2321
|
+
|
2322
|
+
|
2323
|
+
BT
|
2324
|
+
231.81137007874014 442.95137007874007 Td
|
2325
|
+
/F2.0 12 Tf
|
2326
|
+
<6974616c6963> Tj
|
2327
|
+
ET
|
2328
|
+
|
2329
|
+
|
2330
|
+
BT
|
2331
|
+
256.8313700787402 442.95137007874007 Td
|
2332
|
+
/F1.0 12 Tf
|
2333
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2334
|
+
ET
|
2335
|
+
|
2336
|
+
0.392 0.392 0.392 scn
|
2337
|
+
|
2338
|
+
BT
|
2339
|
+
85.03937007874016 399.40091338582664 Td
|
2340
|
+
/F2.0 12 Tf
|
2341
|
+
[<54> 44.0 <657374732046>] TJ
|
2342
|
+
ET
|
2343
|
+
|
2344
|
+
0.000 0.000 0.000 scn
|
2345
|
+
|
2346
|
+
BT
|
2347
|
+
85.03937007874016 370.0236850393699 Td
|
2348
|
+
/F1.0 12 Tf
|
2349
|
+
<536f6d6520> Tj
|
2350
|
+
ET
|
2351
|
+
|
2352
|
+
|
2353
|
+
BT
|
2354
|
+
118.31537007874016 370.0236850393699 Td
|
2355
|
+
/F3.0 12 Tf
|
2356
|
+
<626f6c64> Tj
|
2357
|
+
ET
|
2358
|
+
|
2359
|
+
|
2360
|
+
BT
|
2361
|
+
143.88737007874016 370.0236850393699 Td
|
2362
|
+
/F1.0 12 Tf
|
2363
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2364
|
+
ET
|
2365
|
+
|
2366
|
+
|
2367
|
+
BT
|
2368
|
+
231.81137007874014 370.0236850393699 Td
|
2369
|
+
/F2.0 12 Tf
|
2370
|
+
<6974616c6963> Tj
|
2371
|
+
ET
|
2372
|
+
|
2373
|
+
|
2374
|
+
BT
|
2375
|
+
256.8313700787402 370.0236850393699 Td
|
2376
|
+
/F1.0 12 Tf
|
2377
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2378
|
+
ET
|
2379
|
+
|
2380
|
+
0.714 0.714 0.714 scn
|
2381
|
+
|
2382
|
+
BT
|
2383
|
+
279.29 77.27937007874014 Td
|
2384
|
+
/F2.0 10 Tf
|
2385
|
+
<3130206f66203133> Tj
|
2386
|
+
ET
|
2387
|
+
|
2388
|
+
Q
|
2389
|
+
|
2390
|
+
endstream
|
2391
|
+
endobj
|
2392
|
+
84 0 obj
|
2393
|
+
<< /Type /Page
|
2394
|
+
/Parent 3 0 R
|
2395
|
+
/MediaBox [0 0 595.28 841.89]
|
2396
|
+
/Contents 83 0 R
|
2397
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2398
|
+
/Font << /F2.0 9 0 R
|
2399
|
+
/F1.0 6 0 R
|
2400
|
+
/F3.0 74 0 R
|
2401
|
+
>>
|
2402
|
+
>>
|
2403
|
+
>>
|
2404
|
+
endobj
|
2405
|
+
85 0 obj
|
2406
|
+
<< /Length 2039
|
2407
|
+
>>
|
2408
|
+
stream
|
2409
|
+
q
|
2410
|
+
/DeviceRGB cs
|
2411
|
+
0.392 0.392 0.392 scn
|
2412
|
+
|
2413
|
+
BT
|
2414
|
+
405.3366299212598 738.2266299212598 Td
|
2415
|
+
/F2.0 24 Tf
|
2416
|
+
<436861707465722037> Tj
|
2417
|
+
ET
|
2418
|
+
|
2419
|
+
0.000 0.000 0.000 scn
|
2420
|
+
|
2421
|
+
BT
|
2422
|
+
404.46062992125985 700.4933385826772 Td
|
2423
|
+
/F1.0 30 Tf
|
2424
|
+
<426f6172642054> Tj
|
2425
|
+
ET
|
2426
|
+
|
2427
|
+
|
2428
|
+
0.005 Tw
|
2429
|
+
|
2430
|
+
BT
|
2431
|
+
85.03937007874016 567.5655118110236 Td
|
2432
|
+
/F1.0 12 Tf
|
2433
|
+
<536f6d6520> Tj
|
2434
|
+
ET
|
2435
|
+
|
2436
|
+
|
2437
|
+
0.000 Tw
|
2438
|
+
|
2439
|
+
0.005 Tw
|
2440
|
+
|
2441
|
+
BT
|
2442
|
+
118.32052073490814 567.5655118110236 Td
|
2443
|
+
/F3.0 12 Tf
|
2444
|
+
<626f6c64> Tj
|
2445
|
+
ET
|
2446
|
+
|
2447
|
+
|
2448
|
+
0.000 Tw
|
2449
|
+
|
2450
|
+
0.005 Tw
|
2451
|
+
|
2452
|
+
BT
|
2453
|
+
143.89252073490815 567.5655118110236 Td
|
2454
|
+
/F1.0 12 Tf
|
2455
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2456
|
+
ET
|
2457
|
+
|
2458
|
+
|
2459
|
+
0.000 Tw
|
2460
|
+
|
2461
|
+
0.005 Tw
|
2462
|
+
|
2463
|
+
BT
|
2464
|
+
231.83712335958006 567.5655118110236 Td
|
2465
|
+
/F2.0 12 Tf
|
2466
|
+
<6974616c6963> Tj
|
2467
|
+
ET
|
2468
|
+
|
2469
|
+
|
2470
|
+
0.000 Tw
|
2471
|
+
|
2472
|
+
0.005 Tw
|
2473
|
+
|
2474
|
+
BT
|
2475
|
+
256.8571233595801 567.5655118110236 Td
|
2476
|
+
/F1.0 12 Tf
|
2477
|
+
[<2074> 10.0 <657874> -11.0 <2e20546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265>] TJ
|
2478
|
+
ET
|
2479
|
+
|
2480
|
+
|
2481
|
+
0.000 Tw
|
2482
|
+
|
2483
|
+
0.233 Tw
|
2484
|
+
|
2485
|
+
BT
|
2486
|
+
85.03937007874016 552.3615118110235 Td
|
2487
|
+
/F1.0 12 Tf
|
2488
|
+
[<6d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e>] TJ
|
2489
|
+
ET
|
2490
|
+
|
2491
|
+
|
2492
|
+
0.000 Tw
|
2493
|
+
|
2494
|
+
BT
|
2495
|
+
85.03937007874016 537.1575118110236 Td
|
2496
|
+
/F1.0 12 Tf
|
2497
|
+
[<416e642074686572652077696c6c206265206d6f72652120546869732069732074686520707265666163652074> 10.0 <657874> -11.0 <2e20416e642074686572652077696c6c206265206d6f726521>] TJ
|
2498
|
+
ET
|
2499
|
+
|
2500
|
+
0.392 0.392 0.392 scn
|
2501
|
+
|
2502
|
+
BT
|
2503
|
+
85.03937007874016 488.95105511811016 Td
|
2504
|
+
/F2.0 18 Tf
|
2505
|
+
<4e616d65732054> Tj
|
2506
|
+
ET
|
2507
|
+
|
2508
|
+
0.000 0.000 0.000 scn
|
2509
|
+
|
2510
|
+
BT
|
2511
|
+
85.03937007874016 458.1278267716535 Td
|
2512
|
+
/F1.0 12 Tf
|
2513
|
+
<536f6d6520> Tj
|
2514
|
+
ET
|
2515
|
+
|
2516
|
+
|
2517
|
+
BT
|
2518
|
+
118.31537007874016 458.1278267716535 Td
|
2519
|
+
/F3.0 12 Tf
|
2520
|
+
<626f6c64> Tj
|
2521
|
+
ET
|
2522
|
+
|
2523
|
+
|
2524
|
+
BT
|
2525
|
+
143.88737007874016 458.1278267716535 Td
|
2526
|
+
/F1.0 12 Tf
|
2527
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2528
|
+
ET
|
2529
|
+
|
2530
|
+
|
2531
|
+
BT
|
2532
|
+
231.81137007874014 458.1278267716535 Td
|
2533
|
+
/F2.0 12 Tf
|
2534
|
+
<6974616c6963> Tj
|
2535
|
+
ET
|
2536
|
+
|
2537
|
+
|
2538
|
+
BT
|
2539
|
+
256.8313700787402 458.1278267716535 Td
|
2540
|
+
/F1.0 12 Tf
|
2541
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2542
|
+
ET
|
2543
|
+
|
2544
|
+
0.714 0.714 0.714 scn
|
2545
|
+
|
2546
|
+
BT
|
2547
|
+
279.29 77.27937007874014 Td
|
2548
|
+
/F2.0 10 Tf
|
2549
|
+
<3131206f66203133> Tj
|
2550
|
+
ET
|
2551
|
+
|
2552
|
+
Q
|
2553
|
+
|
2554
|
+
endstream
|
2555
|
+
endobj
|
2556
|
+
86 0 obj
|
2557
|
+
<< /Type /Page
|
2558
|
+
/Parent 3 0 R
|
2559
|
+
/MediaBox [0 0 595.28 841.89]
|
2560
|
+
/Contents 85 0 R
|
2561
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2562
|
+
/Font << /F2.0 9 0 R
|
2563
|
+
/F1.0 6 0 R
|
2564
|
+
/F3.0 74 0 R
|
2565
|
+
>>
|
2566
|
+
>>
|
2567
|
+
>>
|
2568
|
+
endobj
|
2569
|
+
87 0 obj
|
2570
|
+
<< /Length 1715
|
2571
|
+
>>
|
2572
|
+
stream
|
2573
|
+
q
|
2574
|
+
/DeviceRGB cs
|
2575
|
+
0.392 0.392 0.392 scn
|
2576
|
+
|
2577
|
+
BT
|
2578
|
+
405.3366299212598 738.2266299212598 Td
|
2579
|
+
/F2.0 24 Tf
|
2580
|
+
<436861707465722038> Tj
|
2581
|
+
ET
|
2582
|
+
|
2583
|
+
0.000 0.000 0.000 scn
|
2584
|
+
|
2585
|
+
BT
|
2586
|
+
321.09062992125985 700.4933385826772 Td
|
2587
|
+
/F1.0 30 Tf
|
2588
|
+
<47656e65726174696f6e732046> Tj
|
2589
|
+
ET
|
2590
|
+
|
2591
|
+
0.392 0.392 0.392 scn
|
2592
|
+
|
2593
|
+
BT
|
2594
|
+
85.03937007874016 548.7362834645669 Td
|
2595
|
+
/F2.0 18 Tf
|
2596
|
+
<4d656574696e6773204d> Tj
|
2597
|
+
ET
|
2598
|
+
|
2599
|
+
0.000 0.000 0.000 scn
|
2600
|
+
|
2601
|
+
BT
|
2602
|
+
85.03937007874016 517.9130551181103 Td
|
2603
|
+
/F1.0 12 Tf
|
2604
|
+
[<54686973206973206576> 14.0 <656e206d6f7265>] TJ
|
2605
|
+
ET
|
2606
|
+
|
2607
|
+
0.392 0.392 0.392 scn
|
2608
|
+
|
2609
|
+
BT
|
2610
|
+
85.03937007874016 472.8105984251968 Td
|
2611
|
+
/F2.0 14 Tf
|
2612
|
+
<4d656574696e67732042> Tj
|
2613
|
+
ET
|
2614
|
+
|
2615
|
+
0.000 0.000 0.000 scn
|
2616
|
+
|
2617
|
+
BT
|
2618
|
+
85.03937007874016 442.95137007874007 Td
|
2619
|
+
/F1.0 12 Tf
|
2620
|
+
<536f6d6520> Tj
|
2621
|
+
ET
|
2622
|
+
|
2623
|
+
|
2624
|
+
BT
|
2625
|
+
118.31537007874016 442.95137007874007 Td
|
2626
|
+
/F3.0 12 Tf
|
2627
|
+
<626f6c64> Tj
|
2628
|
+
ET
|
2629
|
+
|
2630
|
+
|
2631
|
+
BT
|
2632
|
+
143.88737007874016 442.95137007874007 Td
|
2633
|
+
/F1.0 12 Tf
|
2634
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2635
|
+
ET
|
2636
|
+
|
2637
|
+
|
2638
|
+
BT
|
2639
|
+
231.81137007874014 442.95137007874007 Td
|
2640
|
+
/F2.0 12 Tf
|
2641
|
+
<6974616c6963> Tj
|
2642
|
+
ET
|
2643
|
+
|
2644
|
+
|
2645
|
+
BT
|
2646
|
+
256.8313700787402 442.95137007874007 Td
|
2647
|
+
/F1.0 12 Tf
|
2648
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2649
|
+
ET
|
2650
|
+
|
2651
|
+
0.392 0.392 0.392 scn
|
2652
|
+
|
2653
|
+
BT
|
2654
|
+
85.03937007874016 399.40091338582664 Td
|
2655
|
+
/F2.0 12 Tf
|
2656
|
+
[<54> 44.0 <657374732055>] TJ
|
2657
|
+
ET
|
2658
|
+
|
2659
|
+
0.000 0.000 0.000 scn
|
2660
|
+
|
2661
|
+
BT
|
2662
|
+
85.03937007874016 370.0236850393699 Td
|
2663
|
+
/F1.0 12 Tf
|
2664
|
+
<536f6d6520> Tj
|
2665
|
+
ET
|
2666
|
+
|
2667
|
+
|
2668
|
+
BT
|
2669
|
+
118.31537007874016 370.0236850393699 Td
|
2670
|
+
/F3.0 12 Tf
|
2671
|
+
<626f6c64> Tj
|
2672
|
+
ET
|
2673
|
+
|
2674
|
+
|
2675
|
+
BT
|
2676
|
+
143.88737007874016 370.0236850393699 Td
|
2677
|
+
/F1.0 12 Tf
|
2678
|
+
[<2074> 10.0 <657874> -11.0 <2e20416e6420736f6d6520>] TJ
|
2679
|
+
ET
|
2680
|
+
|
2681
|
+
|
2682
|
+
BT
|
2683
|
+
231.81137007874014 370.0236850393699 Td
|
2684
|
+
/F2.0 12 Tf
|
2685
|
+
<6974616c6963> Tj
|
2686
|
+
ET
|
2687
|
+
|
2688
|
+
|
2689
|
+
BT
|
2690
|
+
256.8313700787402 370.0236850393699 Td
|
2691
|
+
/F1.0 12 Tf
|
2692
|
+
[<2074> 10.0 <657874> -11.0 <2e>] TJ
|
2693
|
+
ET
|
2694
|
+
|
2695
|
+
0.714 0.714 0.714 scn
|
2696
|
+
|
2697
|
+
BT
|
2698
|
+
279.29 77.27937007874014 Td
|
2699
|
+
/F2.0 10 Tf
|
2700
|
+
<3132206f66203133> Tj
|
2701
|
+
ET
|
2702
|
+
|
2703
|
+
Q
|
2704
|
+
|
2705
|
+
endstream
|
2706
|
+
endobj
|
2707
|
+
88 0 obj
|
2708
|
+
<< /Type /Page
|
2709
|
+
/Parent 3 0 R
|
2710
|
+
/MediaBox [0 0 595.28 841.89]
|
2711
|
+
/Contents 87 0 R
|
2712
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2713
|
+
/Font << /F2.0 9 0 R
|
2714
|
+
/F1.0 6 0 R
|
2715
|
+
/F3.0 74 0 R
|
2716
|
+
>>
|
2717
|
+
>>
|
2718
|
+
>>
|
2719
|
+
endobj
|
2720
|
+
89 0 obj
|
2721
|
+
<< /Length 402
|
2722
|
+
>>
|
2723
|
+
stream
|
2724
|
+
q
|
2725
|
+
/DeviceRGB cs
|
2726
|
+
0.392 0.392 0.392 scn
|
2727
|
+
|
2728
|
+
BT
|
2729
|
+
375.91262992125985 738.2266299212598 Td
|
2730
|
+
/F2.0 24 Tf
|
2731
|
+
[<4269626c696f6772617068> 9.0 <79>] TJ
|
2732
|
+
ET
|
2733
|
+
|
2734
|
+
0.000 0.000 0.000 scn
|
2735
|
+
|
2736
|
+
BT
|
2737
|
+
85.03937007874016 606.7448031496062 Td
|
2738
|
+
/F1.0 12 Tf
|
2739
|
+
[<54686973206973207468652063> 13.0 <6f6e74> 10.0 <656e7420666f722074686520426f6f6b73>] TJ
|
2740
|
+
ET
|
2741
|
+
|
2742
|
+
0.714 0.714 0.714 scn
|
2743
|
+
|
2744
|
+
BT
|
2745
|
+
279.29 77.27937007874014 Td
|
2746
|
+
/F2.0 10 Tf
|
2747
|
+
<3133206f66203133> Tj
|
2748
|
+
ET
|
2749
|
+
|
2750
|
+
Q
|
2751
|
+
|
2752
|
+
endstream
|
2753
|
+
endobj
|
2754
|
+
90 0 obj
|
2755
|
+
<< /Type /Page
|
2756
|
+
/Parent 3 0 R
|
2757
|
+
/MediaBox [0 0 595.28 841.89]
|
2758
|
+
/Contents 89 0 R
|
2759
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
2760
|
+
/Font << /F2.0 9 0 R
|
2761
|
+
/F1.0 6 0 R
|
2762
|
+
>>
|
2763
|
+
>>
|
2764
|
+
>>
|
2765
|
+
endobj
|
2766
|
+
91 0 obj
|
2767
|
+
[5 0 R /Fit]
|
2768
|
+
endobj
|
2769
|
+
92 0 obj
|
2770
|
+
<< /Type /Names
|
2771
|
+
/Dests 93 0 R
|
2772
|
+
>>
|
2773
|
+
endobj
|
2774
|
+
93 0 obj
|
2775
|
+
<< /Names [(page1) 91 0 R (page10) 102 0 R (page11) 103 0 R (page12) 104 0 R (page13) 105 0 R (page2) 94 0 R (page3) 95 0 R (page4) 96 0 R (page5) 97 0 R (page6) 98 0 R (page7) 99 0 R (page8) 100 0 R (page9) 101 0 R]
|
2776
|
+
>>
|
2777
|
+
endobj
|
2778
|
+
94 0 obj
|
2779
|
+
[8 0 R /Fit]
|
2780
|
+
endobj
|
2781
|
+
95 0 obj
|
2782
|
+
[11 0 R /Fit]
|
2783
|
+
endobj
|
2784
|
+
96 0 obj
|
2785
|
+
[57 0 R /Fit]
|
2786
|
+
endobj
|
2787
|
+
97 0 obj
|
2788
|
+
[73 0 R /Fit]
|
2789
|
+
endobj
|
2790
|
+
98 0 obj
|
2791
|
+
[76 0 R /Fit]
|
2792
|
+
endobj
|
2793
|
+
99 0 obj
|
2794
|
+
[78 0 R /Fit]
|
2795
|
+
endobj
|
2796
|
+
100 0 obj
|
2797
|
+
[80 0 R /Fit]
|
2798
|
+
endobj
|
2799
|
+
101 0 obj
|
2800
|
+
[82 0 R /Fit]
|
2801
|
+
endobj
|
2802
|
+
102 0 obj
|
2803
|
+
[84 0 R /Fit]
|
2804
|
+
endobj
|
2805
|
+
103 0 obj
|
2806
|
+
[86 0 R /Fit]
|
2807
|
+
endobj
|
2808
|
+
104 0 obj
|
2809
|
+
[88 0 R /Fit]
|
2810
|
+
endobj
|
2811
|
+
105 0 obj
|
2812
|
+
[90 0 R /Fit]
|
2813
|
+
endobj
|
2814
|
+
106 0 obj
|
2815
|
+
<< /Type /Outlines
|
2816
|
+
/Count 29
|
2817
|
+
/First 107 0 R
|
2818
|
+
/Last 135 0 R
|
2819
|
+
>>
|
2820
|
+
endobj
|
2821
|
+
107 0 obj
|
2822
|
+
<< /Title <feff0043006f007600650072>
|
2823
|
+
/Parent 106 0 R
|
2824
|
+
/Count 0
|
2825
|
+
/Next 108 0 R
|
2826
|
+
/Dest [5 0 R /Fit]
|
2827
|
+
>>
|
2828
|
+
endobj
|
2829
|
+
108 0 obj
|
2830
|
+
<< /Title <feff0050007200650066006100630065>
|
2831
|
+
/Parent 106 0 R
|
2832
|
+
/Count 0
|
2833
|
+
/Next 109 0 R
|
2834
|
+
/Prev 107 0 R
|
2835
|
+
/Dest [8 0 R /Fit]
|
2836
|
+
>>
|
2837
|
+
endobj
|
2838
|
+
109 0 obj
|
2839
|
+
<< /Title <feff005400610062006c00650020006f006600200043006f006e00740065006e00740073>
|
2840
|
+
/Parent 106 0 R
|
2841
|
+
/Count 0
|
2842
|
+
/Next 110 0 R
|
2843
|
+
/Prev 108 0 R
|
2844
|
+
/Dest [11 0 R /Fit]
|
2845
|
+
>>
|
2846
|
+
endobj
|
2847
|
+
110 0 obj
|
2848
|
+
<< /Title <feff0042006f006100720064>
|
2849
|
+
/Parent 106 0 R
|
2850
|
+
/Count 2
|
2851
|
+
/First 111 0 R
|
2852
|
+
/Last 112 0 R
|
2853
|
+
/Next 113 0 R
|
2854
|
+
/Prev 109 0 R
|
2855
|
+
/Dest [73 0 R /Fit]
|
2856
|
+
>>
|
2857
|
+
endobj
|
2858
|
+
111 0 obj
|
2859
|
+
<< /Title <feff004e0061006d00650073>
|
2860
|
+
/Parent 110 0 R
|
2861
|
+
/Count 0
|
2862
|
+
/Next 112 0 R
|
2863
|
+
/Dest [73 0 R /Fit]
|
2864
|
+
>>
|
2865
|
+
endobj
|
2866
|
+
112 0 obj
|
2867
|
+
<< /Title <feff00500061006e00650073>
|
2868
|
+
/Parent 110 0 R
|
2869
|
+
/Count 0
|
2870
|
+
/Prev 111 0 R
|
2871
|
+
/Dest [73 0 R /Fit]
|
2872
|
+
>>
|
2873
|
+
endobj
|
2874
|
+
113 0 obj
|
2875
|
+
<< /Title <feff00470065006e00650072006100740069006f006e0073>
|
2876
|
+
/Parent 106 0 R
|
2877
|
+
/Count 3
|
2878
|
+
/First 114 0 R
|
2879
|
+
/Last 114 0 R
|
2880
|
+
/Next 117 0 R
|
2881
|
+
/Prev 110 0 R
|
2882
|
+
/Dest [76 0 R /Fit]
|
2883
|
+
>>
|
2884
|
+
endobj
|
2885
|
+
114 0 obj
|
2886
|
+
<< /Title <feff004d0065006500740069006e0067007300200041>
|
2887
|
+
/Parent 113 0 R
|
2888
|
+
/Count 2
|
2889
|
+
/First 115 0 R
|
2890
|
+
/Last 115 0 R
|
2891
|
+
/Dest [76 0 R /Fit]
|
2892
|
+
>>
|
2893
|
+
endobj
|
2894
|
+
115 0 obj
|
2895
|
+
<< /Title <feff004d0065006500740069006e00670073002000410041>
|
2896
|
+
/Parent 114 0 R
|
2897
|
+
/Count 1
|
2898
|
+
/First 116 0 R
|
2899
|
+
/Last 116 0 R
|
2900
|
+
/Dest [76 0 R /Fit]
|
2901
|
+
>>
|
2902
|
+
endobj
|
2903
|
+
116 0 obj
|
2904
|
+
<< /Title <feff00540065007300740073>
|
2905
|
+
/Parent 115 0 R
|
2906
|
+
/Count 0
|
2907
|
+
/Dest [76 0 R /Fit]
|
2908
|
+
>>
|
2909
|
+
endobj
|
2910
|
+
117 0 obj
|
2911
|
+
<< /Title <feff0042006f00610072006400200041>
|
2912
|
+
/Parent 106 0 R
|
2913
|
+
/Count 1
|
2914
|
+
/First 118 0 R
|
2915
|
+
/Last 118 0 R
|
2916
|
+
/Next 119 0 R
|
2917
|
+
/Prev 113 0 R
|
2918
|
+
/Dest [78 0 R /Fit]
|
2919
|
+
>>
|
2920
|
+
endobj
|
2921
|
+
118 0 obj
|
2922
|
+
<< /Title <feff004e0061006d0065007300200041>
|
2923
|
+
/Parent 117 0 R
|
2924
|
+
/Count 0
|
2925
|
+
/Dest [78 0 R /Fit]
|
2926
|
+
>>
|
2927
|
+
endobj
|
2928
|
+
119 0 obj
|
2929
|
+
<< /Title <feff00470065006e00650072006100740069006f006e007300200041>
|
2930
|
+
/Parent 106 0 R
|
2931
|
+
/Count 3
|
2932
|
+
/First 120 0 R
|
2933
|
+
/Last 120 0 R
|
2934
|
+
/Next 123 0 R
|
2935
|
+
/Prev 117 0 R
|
2936
|
+
/Dest [80 0 R /Fit]
|
2937
|
+
>>
|
2938
|
+
endobj
|
2939
|
+
120 0 obj
|
2940
|
+
<< /Title <feff004d0065006500740069006e00670073002000410042>
|
2941
|
+
/Parent 119 0 R
|
2942
|
+
/Count 2
|
2943
|
+
/First 121 0 R
|
2944
|
+
/Last 121 0 R
|
2945
|
+
/Dest [80 0 R /Fit]
|
2946
|
+
>>
|
2947
|
+
endobj
|
2948
|
+
121 0 obj
|
2949
|
+
<< /Title <feff004d0065006500740069006e006700730020004100410043>
|
2950
|
+
/Parent 120 0 R
|
2951
|
+
/Count 1
|
2952
|
+
/First 122 0 R
|
2953
|
+
/Last 122 0 R
|
2954
|
+
/Dest [80 0 R /Fit]
|
2955
|
+
>>
|
2956
|
+
endobj
|
2957
|
+
122 0 obj
|
2958
|
+
<< /Title <feff0054006500730074007300200044>
|
2959
|
+
/Parent 121 0 R
|
2960
|
+
/Count 0
|
2961
|
+
/Dest [80 0 R /Fit]
|
2962
|
+
>>
|
2963
|
+
endobj
|
2964
|
+
123 0 obj
|
2965
|
+
<< /Title <feff0042006f00610072006400200046>
|
2966
|
+
/Parent 106 0 R
|
2967
|
+
/Count 1
|
2968
|
+
/First 124 0 R
|
2969
|
+
/Last 124 0 R
|
2970
|
+
/Next 125 0 R
|
2971
|
+
/Prev 119 0 R
|
2972
|
+
/Dest [82 0 R /Fit]
|
2973
|
+
>>
|
2974
|
+
endobj
|
2975
|
+
124 0 obj
|
2976
|
+
<< /Title <feff004e0061006d0065007300200046>
|
2977
|
+
/Parent 123 0 R
|
2978
|
+
/Count 0
|
2979
|
+
/Dest [82 0 R /Fit]
|
2980
|
+
>>
|
2981
|
+
endobj
|
2982
|
+
125 0 obj
|
2983
|
+
<< /Title <feff00470065006e00650072006100740069006f006e007300200047>
|
2984
|
+
/Parent 106 0 R
|
2985
|
+
/Count 3
|
2986
|
+
/First 126 0 R
|
2987
|
+
/Last 126 0 R
|
2988
|
+
/Next 129 0 R
|
2989
|
+
/Prev 123 0 R
|
2990
|
+
/Dest [84 0 R /Fit]
|
2991
|
+
>>
|
2992
|
+
endobj
|
2993
|
+
126 0 obj
|
2994
|
+
<< /Title <feff004d0065006500740069006e006700730020004100200046>
|
2995
|
+
/Parent 125 0 R
|
2996
|
+
/Count 2
|
2997
|
+
/First 127 0 R
|
2998
|
+
/Last 127 0 R
|
2999
|
+
/Dest [84 0 R /Fit]
|
3000
|
+
>>
|
3001
|
+
endobj
|
3002
|
+
127 0 obj
|
3003
|
+
<< /Title <feff004d0065006500740069006e0067007300200041004100200046>
|
3004
|
+
/Parent 126 0 R
|
3005
|
+
/Count 1
|
3006
|
+
/First 128 0 R
|
3007
|
+
/Last 128 0 R
|
3008
|
+
/Dest [84 0 R /Fit]
|
3009
|
+
>>
|
3010
|
+
endobj
|
3011
|
+
128 0 obj
|
3012
|
+
<< /Title <feff0054006500730074007300200046>
|
3013
|
+
/Parent 127 0 R
|
3014
|
+
/Count 0
|
3015
|
+
/Dest [84 0 R /Fit]
|
3016
|
+
>>
|
3017
|
+
endobj
|
3018
|
+
129 0 obj
|
3019
|
+
<< /Title <feff0042006f00610072006400200054>
|
3020
|
+
/Parent 106 0 R
|
3021
|
+
/Count 1
|
3022
|
+
/First 130 0 R
|
3023
|
+
/Last 130 0 R
|
3024
|
+
/Next 131 0 R
|
3025
|
+
/Prev 125 0 R
|
3026
|
+
/Dest [86 0 R /Fit]
|
3027
|
+
>>
|
3028
|
+
endobj
|
3029
|
+
130 0 obj
|
3030
|
+
<< /Title <feff004e0061006d0065007300200054>
|
3031
|
+
/Parent 129 0 R
|
3032
|
+
/Count 0
|
3033
|
+
/Dest [86 0 R /Fit]
|
3034
|
+
>>
|
3035
|
+
endobj
|
3036
|
+
131 0 obj
|
3037
|
+
<< /Title <feff00470065006e00650072006100740069006f006e007300200046>
|
3038
|
+
/Parent 106 0 R
|
3039
|
+
/Count 3
|
3040
|
+
/First 132 0 R
|
3041
|
+
/Last 132 0 R
|
3042
|
+
/Next 135 0 R
|
3043
|
+
/Prev 129 0 R
|
3044
|
+
/Dest [88 0 R /Fit]
|
3045
|
+
>>
|
3046
|
+
endobj
|
3047
|
+
132 0 obj
|
3048
|
+
<< /Title <feff004d0065006500740069006e006700730020004d>
|
3049
|
+
/Parent 131 0 R
|
3050
|
+
/Count 2
|
3051
|
+
/First 133 0 R
|
3052
|
+
/Last 133 0 R
|
3053
|
+
/Dest [88 0 R /Fit]
|
3054
|
+
>>
|
3055
|
+
endobj
|
3056
|
+
133 0 obj
|
3057
|
+
<< /Title <feff004d0065006500740069006e0067007300200042>
|
3058
|
+
/Parent 132 0 R
|
3059
|
+
/Count 1
|
3060
|
+
/First 134 0 R
|
3061
|
+
/Last 134 0 R
|
3062
|
+
/Dest [88 0 R /Fit]
|
3063
|
+
>>
|
3064
|
+
endobj
|
3065
|
+
134 0 obj
|
3066
|
+
<< /Title <feff0054006500730074007300200055>
|
3067
|
+
/Parent 133 0 R
|
3068
|
+
/Count 0
|
3069
|
+
/Dest [88 0 R /Fit]
|
3070
|
+
>>
|
3071
|
+
endobj
|
3072
|
+
135 0 obj
|
3073
|
+
<< /Title <feff004200690062006c0069006f006700720061007000680079>
|
3074
|
+
/Parent 106 0 R
|
3075
|
+
/Count 0
|
3076
|
+
/Prev 131 0 R
|
3077
|
+
/Dest [90 0 R /Fit]
|
3078
|
+
>>
|
3079
|
+
endobj
|
3080
|
+
136 0 obj
|
3081
|
+
<< /Length 11933
|
3082
|
+
/Length1 18740
|
3083
|
+
/Filter /FlateDecode
|
3084
|
+
>>
|
3085
|
+
stream
|
3086
|
+
x��|xWy�93��}Ͼ_��v���Z����e���iɶ^�e�v��JZ=b�,�vL�&�cڛ��[(���`�Є�������z[Hs�^JK�MB���gfe9����w�ލf������3�J1�J�&O�Lg�~��;���j�:;�7��9(�AH���ّ�[=?�I|���^�����>B*�P�>1���j�Y�߄zd:{���h��1ԥ���+��!Uԇ�fUK��@}���N�
|
3087
|
+
�iz���x���-ji��ڹ����=�A���p'��ƧO�
|
3088
|
+
:��h2+@�h���y��˽u���/(%*
|
3089
|
+
G�����l[�<�/����H����Oa�Z�K�U�NK-��H��+T|����LYC����������%��N�s���W�
|
3090
|
+
��' �E=�[UZ����M#�1�����R��>��y+y�����h�tMA)\���M%]/u;t�Qk$��E�=�ᶶ|�և���~���э,�F�AJ+n���i�`����I�כ-M�^g�jH"�Ȱ5��ZK&cU�u.��-i�5�ђ��b��+R:/X�����S�&��C�v�����@��IP���R�htv�Q�Q?B�^9�����y�l���nb�h��s�� ���+-��{}�k��3������!3 n*�q��Ӌ]��Hl���xQ�.��p#��}�h�{�uq�����g���^D�C�93��_�!6v(�[ExX/���ISl-��:�5�U���$��1�ggdp2�WWp�"3�t�T��K�7=}^t���F�������/|���}����z�)�#�� _Fҗ��Uk��h�N�h̦G�������j����\�����g2�5F#����(d�RY(�g��I�Ճ(6Һ�5l5��L�T�%c�ŝ\��^}k/Wm�ZY&��O��r�� ^kw�n��Zޡ��Z��-�.IZ��"R|B���_�䵍tG��V��V�}#A�A�"�}��Z 8��}}�njAXx��u�a�"���γ:�]�-�F(��L���JȠ��q�4�5!cR����Y�%�c�kk'_N"o�AK"A�����x�_�3�5�ΐ3���n������D<���yaeC�/�Ӧ��h0����N��VF}�
|
3091
|
+
]$����T��榀�"Ya��Չ��t��H$�
|
3092
|
+
L�ӭi��l9F纍��:o'�|>D��5@ �n��'Ղ�o���pD�9�����τyw��c�Ei&:��Q}���v�Gx�����5Ǩ������G��K��%�kpޚJ�\y���
|
3093
|
+
�i�����O24�@�4)���D��oG����5��G��`��f��*aI�Є�YJH�[K�ق�Z�>�P@�(����iB-��ݍ�Nc-��A���$��/��ݣgr
|
3094
|
+
�\l�������F.��}cY)�A�Il�|S��~_�d�+
|
3095
|
+
�|G�y�k]�M�����}K��n��Va���͇�]�`�{8P�S��/�;N��$%�E)I�ěJ�U�4�KR�HQ]t[��m�k
|
3096
|
+
���
|
3097
|
+
k*��ۧ������t�0U^dھd+ ��R�T��{h�%t:��6Wy4��ا6�A^����iCd���1N���~�*�����N��t@b$t��>�?�sgx��S��N ���H"����(+��q֊�cF�<=z�|T���eנ�2�E��m���
|
3098
|
+
��]|���/�9����(��@�:3�3Y�M���V�l��E�z�;|Sn_��k�����;�������s��9��h �����0h���-����B~�]���
|
3099
|
+
�CcPk(��0�rbȚn5�n#��F��H�N���#>������}ϧ���zy�Y���Y璓�9mN����lhִ@4�� �3#�,sR|�
|
3100
|
+
R�" Ol���4�r}S}�&��̞��b�
|
3101
|
+
ZҢ�Ox753�r�ր��rS����%r$���Q�M��(���_���SO����S_����g����af[m����^��A,���a'�<mWl�]dPt,�M mb�BO��%K�W�J�Q(I:��ݾ�~�~{�9�}�ٲ2�1����Ԥ�4��nJ�����ג1%��>���5z4��̷�:]�-N�dk�C�Ϊ�J������0�]^�������b
|
3102
|
+
�c�;¾��m��E� AUKq�6��Si�ܓjp��XG���f��=1I�ޤ�3��'
|
3103
|
+
�=z�6)P�5r����Ζ���ei��s��<�q?�a�C�(Z,E�2�^��ih�;��.jd�y4�_(��8�0���:@'H*��YВ���`/���1�ףb�ۋ<*
|
3104
|
+
b7����υY[�����hx�rl�ĂuV����/'��3�����[���o�Y��f�]�J���-֞�4��X�W7�*�qxG�˫��vZ*�Z>|x��J�(��4f�.�9�n�*-0��-f����^9I!9�.t��!��s���v� ^��$�c9�;��0=�c?�H��-O|nF�ϡUc$6���H���5O����XR���o�d*�brZ�� �$(��Q4k�r���]ؖ++�m�4�}}���ʅ��N�ǎ>x8��sO굱������G8z�������4$t��@�ҫ�j�T��͘E�bC� ��.;q�����﮿H���{����_����3y���F�I�c(���U�@����˔�O���a�ei���Ġ3 ")����FaDE���H@o�B����ۇ}}笔j](�f6�)km/�(�b��U�9�i��)6qa��2@��$π�
|
3105
|
+
&���Nj�:H�O��6�b��b�h( �Cja!rBB ��s���$+I�K�BT��7�YЀ�bZ���6Bk��vBaD�c���sg��cjzVMw��՜AM��m Pu@�쮠��9��i����q;w�N��s6\�
|
3106
|
+
-��qgl��ii��S��%��Rl-��g���22���QN��z��:yě�Y�CX>�B�
|
3107
|
+
^>���{7���|���+v��m��s�M㞠�@]Ae��*���{��-k�-1���OH��h
|
3108
|
+
�ˏ���^���)�D=F[$�^ul�`�j�L�,"�D1Ȅ��HGtK�<�����∊��/�-Ts��K�C�A�-�^�p�A&�5\�_e��{��Osك���m�E_✐/Ԑ�LBh��Ѷa��f�(�-��(_���l��|���^���1�v\���d
|
3109
|
+
}�Yo$Q���Am�~�����T�`mYdE�M�h�G�A�it7�j�.Z��'+N_2�����
|
3110
|
+
'�RTԼ*��7c�S�[��6O�AOk�s�љ�W�o�UPP��U���_:��;�0�j���{jᆾrs��P�}�HE��`;�ʫ>��j�!���YaMW���8�Fm+I�c�Q�VQ�;v��� �H�79/dR+��%�
|
3111
|
+
�N�j-��d�#W-��Y1Ʃ���K�����
|
3112
|
+
�����Yn
|
3113
|
+
���p���d�f�>��j&V�����F�)���"�U�v+�mXWLr|�W�EG`�O���&�J�f,��I*T!J,"���M�@��~$��n���L}�Cr:�=�e���IDc��Α��Ѯ2��Wo>��#�7=j�V��7�-�3P�K���_��K��γ�$52�3ۻȶ,^ Ht��y/k��K�,XFyb}�O���~�%����l`��3�X�b��0��t��D?��jS�� /[�,��>iMGK�#�ѽє9#�67�o��[��;�TG�����xK��E;rM
|
3114
|
+
���S`#��`''@lw�g��^x���x��C�M�����<a�#J���:�q������,+��eTgw�}����|�����D�XQ��0�p��Z���\{{�f&�y����;��
|
3115
|
+
H@�
|
3116
|
+
�,6�% �!��/��<���JQHS��T�R�N�u˥��o}+3�Fu�ư�!��ՍN+<n����I���?� �2OK��2K!���!�o����f��{t"�q+\Ġ䚑=��m�X_!�%�N��ޅNXBx���_q���K������%߶BX�Xx*�$q<#�V��|-�a��dV�����w*���=��Mkk�;�}��^�8�)j>��9:���Ò����@5'J���KR��F[��
|
3117
|
+
$�-R�[ͽ#���7��k�@�ʶmv�Zí��̴�.~�{���BRi�XE+'X���%-�"�P%
|
3118
|
+
�85Ғ�7@-*bK�+�{�{�{bѨ)�g�@x^�x:�2�
|
3119
|
+
=�}W��}j��NV�W��;�z_cQ���*��&��h�4�ua[f�L�)������� ��/Y��� ��^�\r_����8�"�|��y���x&����> vxO����g�9�D}ؿr~�S�$H>t�e���I�1`)��o<�p�'O��Bԗ\}����ꙕ�?-�1�r�9p�X�
|
3120
|
+
�#�B��pE�/�k19*�c�<S閗쬛�!�4��9��?��mm�xQU�hgII�h�>s����"J����0F�@zЄ��9�y�}��!��0ŎrM܇��"��a�{�{�Hï�
|
3121
|
+
�<{�̃j�+nVp;`c�mJ)DZ��2J��y�'�uJ�&I9�qtﶄY�:�J�� �����dž5���w���d�������μ�{��{3�ڎv��S�[����)����I���Ct�(0B�h�ѐ*���Lh���j5ׯ2����_�N&��>��;n�b��M����e��)�\:�,�,I[��Qf��H�"E"���+��>� �)�^��#_4a,0�/m�h��\�;��џ����_>fԡ�-��Z�j��i;�G�N4%�oɰ�"�.1���6.`f/w����#+�J���eWF���3��ګ��73�r �vJ�P�3�h�Xf�[�eX@������@]�gl�U-��t�d��_ZP���ub���l;Z��R��[Tn�Wk�O�CV�Ӧ7�#���=nM��#۪=o��/��:��� o���K�;��|���i��z)�^r^���h/J�n�$
|
3122
|
+
zze|���I(�+,%��~�,�L��g����f�)G�ֺ��FOij-���;�5�۬N�y�$Uh����Nmo5��xןrq��tH�$�}��:9�y����ꗄ+.G���nf/��`>�7:|�p�N� �\>����h\@�)�S�
|
3123
|
+
&��z0�uQ���������N�訋�w�}�E�wQ��x��I���ϱ���k@D��j���ȵ87Iw����Rmh�����ki�����P���^����b���`>�'�8],z|�Y��^���?��P�m%��W5�75����iF5�a'��)��N�$'����z�s���゛�s�x`�D�8%@��I
|
3124
|
+
�'m4��UDC'���WC�
|
3125
|
+
\M<�!�!&�)��%i���GK@����p'�@���S�:�^���p�T�zu�zB��O�en ��om������T\��sg�'�'�deU�Ԛ�����NI�G+$i��Hnf!7*����K�9i`����)�cvfQn�IU����9K��$'d"I*I\�f�����(Ol���X�9h_��(@NAy��P^��r� ��w �b����a��`�Jѭc���OMe�Arr��)@"K�۲S��3���8lyG~{JW����
|
3126
|
+
d^d�uC9�e�w�
|
3127
|
+
Rw�
|
3128
|
+
��F`���f�����
|
3129
|
+
fٙ�-l��������bnش8��Mg�O,H�c���{�2��?gu��<��$ ���9��,��4�y�%�a���Y&���F|�IW���U��ˎ����YF���a��tAC!����I ��Md�Ɛf[D|n~����b�����hnar|F:3;��a172!�39=7����,f���0��̸�7���\wˮ�Y���Ʋ�A0`!;�_��O��K�rR�\n� t��r��S��5��tv�Tv
|
3130
|
+
v819�;���F@Z'��f���s������TN���;��-���@�+Lz�1X�����V"NΌL�ŵ��X�������8@N-��D�iX}��B~h��!J�$��g��S3P�\�P��,Hs�S��sg�3�#�P�_��.J�ӹ��l>iab�L2���ð��Y���6;�x�Kl�R����k%�]�,�rvf|�RΨu&'����cL���I��0�,���#������а�.
|
3131
|
+
|
3132
|
+
@s$��\v~���LX�4(����
|
3133
|
+
8�a�<��]`�yD�fc�}Փ����elSa�ߴ�����h��<�c�������g���aYd�'��g�8%496O��՛d{C,'�>~���'ؘ�~��$l�u��AiZd� ���p\ q�l�a��r��ۓ�[�2�;�p=Ÿ��e��Ӭ~��$�p��bQ����xȞa�a��L�l7s[枆�0��;��w��L��@#�uVѳ+O�6J�ï���'��̩NA���}O1^��b؎���+}Nm�q�W�����ϲ���Ef��/KٔB�ւ}�I���YK�ls�S0z�Qc�au�AGؘEe��� 5r�3�tv~�{�a7��1�0V��\����>��C,��y
|
3134
|
+
~� g���?����;�8�>�_�|���o��炿Ei�������|i4�{��^Z��=s��/m��q�わ<�
|
3135
|
+
^|�������`c���E���Ѡ�,-W.�}�C��������e�|{�����9������з��>��V���%��}�l*x�}u�sgG��q��`���Ξ��r�ཋ���S�^
|
3136
|
+
_�ډM<m��߯Aɯ�.^��%`'y�5�7"T&��ڶ xǤjAe��ǓCZ(��ٙo�As��4�\�H��O��G� C�A�Қ�w�������ۊ���&�o�lSJ�\+`G̟�)��f��j�{�����!����9�LH�]�D6
|
3137
|
+
�8qo���ı�ʵq�k�@wr_'��;�}�tA��CVI/5B�w2��!7!��z��@� ?�E�X
|
3138
|
+
���!Ih넾�A��H$-0�!��I���Oot�m#���5�wɏ`�>�G�7al��O
|
3139
|
+
�����I���
|
3140
|
+
endstream
|
3141
|
+
endobj
|
3142
|
+
137 0 obj
|
3143
|
+
<< /Type /FontDescriptor
|
3144
|
+
/FontName /AAAAAN+Ubuntu
|
3145
|
+
/FontFile2 136 0 R
|
3146
|
+
/FontBBox [-167 -189 1561 962]
|
3147
|
+
/Flags 4
|
3148
|
+
/StemV 0
|
3149
|
+
/ItalicAngle 0.0
|
3150
|
+
/Ascent 776
|
3151
|
+
/Descent -185
|
3152
|
+
/CapHeight 693
|
3153
|
+
/XHeight 520
|
3154
|
+
>>
|
3155
|
+
endobj
|
3156
|
+
138 0 obj
|
3157
|
+
<< /Filter /FlateDecode
|
3158
|
+
/Length 1286
|
3159
|
+
>>
|
3160
|
+
stream
|
3161
|
+
x�e��n�F�ὮB�tHs&�@�n��u{stԒ +�}���i �/��y�_�!u������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n���P��Ҫt�N���*eP)��D�T.��ʕrU�)��BYTVʪ�Q6�����[����k�y
|
3162
|
+
���J�����31���x;��
|
3163
|
+
���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x�oS��7+[ƛețךyޢoV��浖-㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x����V�z�����[YE�V�Y���_}/7�*�Y%��e�ӫq+��:��.�7�J���E�/�3Y(Y�*A�W R��VJS�����:(u@c��D�]a*��f)�9J���)�o,#�\�Z>M�U��\�jPS�
|
3164
|
+
endstream
|
3165
|
+
endobj
|
3166
|
+
139 0 obj
|
3167
|
+
[231 276 500 500 500 500 500 500 500 500 500 500 246 500 246 500 564 564 564 564 564 564 564 564 564 564 500 500 500 500 500 500 500 663 643 620 713 500 537 672 705 500 500 500 500 500 500 500 500 500 500 532 565 500 500 500 500 500 500 500 500 500 500 500 500 522 589 465 589 559 386 578 571 253 500 522 273 861 574 590 589 500 386 446 402 574 502 777 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 500 500]
|
3168
|
+
endobj
|
3169
|
+
140 0 obj
|
3170
|
+
<< /Length 11576
|
3171
|
+
/Length1 19420
|
3172
|
+
/Filter /FlateDecode
|
3173
|
+
>>
|
3174
|
+
stream
|
3175
|
+
x��|t�u�{3��`H| ���"A�(��EQ)Ŕ��'��$��#'v�V��l�t�9��d�ݴ͞v*�S�iZ�Q�l7�z�N��&�����a�f��i+r�}3�H[N���,əy����;#Jq�fb$��Y.���S_�@�I��/]�������� ��;K�3�s�!!�W��Ʌ���S_�>JHk-�?��P,Xڌ3P�*ԫ��_�P��D��)��?��� i�~~mu����a�kP/������+@�;��w`��}��%d�}m�����݄�`O�[�_����-B�!Ĥ�\,)��ͽ�����P��ɠh"?���q�7Mf�b��u����[+{�D��ϿoH@���P8BHT�U���&N������?�p$
|
3176
|
+
��=��zNr�1�T�ϸLQ'�b~6%��3D���8���m�m
|
3177
|
+
�����$ �^?^�CQMk#�V99��2�^���л77���Mz�UݕLu�.�ڕJvU��٭�������g�d:}r��gy"��XF|R��
|
3178
|
+
ܳ���O
|
3179
|
+
<yn�v.f#c�dr8�v�<17J@&�fxx�l0�����}���6_Jf��fo/�ȸU��7?�s���ߦ��e.���s�;a�̸��n
|
3180
|
+
B��0t��@'R¡�$�C92!̄%#v12�q=*C1#�d`�:\Fdӿ��2�sQ��͞����K���t�'X�p�҉T��Z2r�Q����E�`�B�]ę��TMƙǛ�.�'-�6~ƕ�&9!�#�ۺ���Gi��qEb��j�f�+�K�x�x<�.:E2�N��DXm�M�)ۚ�oUڳ�f0bD��N#/y��&�� UGY
|
3181
|
+
t�M|ez��̴����bG��
|
3182
|
+
%Z�D��n�����#�Ș=����?~h�m7䒩�Q��n�2�mB��p�&'�ߺI��o2�� ���|�iw,�ڭH-o�x5 �x���'�f*�E1�F�"1�I6�ρ9��Pb���tY��>/X��8�>"&��d0����g2�i*��_:7��6M'3��=����ޯ�AXA'f|�Om�ՠjL{�O�oɟ>��y�v�#����4_~��NO�o�v}O���\#���ÿ��'ɷn��&Y`)��bA�����2�\��Տfό��@��n/��b��r�Ѩ�|��"(k8���;��h�q��!.�(#{
|
3183
|
+
�%�8�OY����`����q�x��)�]�1&e��
|
3184
|
+
N&��?
|
3185
|
+
PքSr���t.�����K�k.͛�*�P7cp��nNp7X�3$
|
3186
|
+
�F��y��0�3�#��l��ʹѭ{�w�m:@�^�)�}�T�I*�8`�ƾ������vk�h��f��k[~���"�C�j�iU\����o��>t~��S�F������o��n���d��2ե�|�C���t��X@���脸B0���b,�
|
3187
|
+
������-�toYb^(DA���$��xL*[�^d��d�ά8,ߘ̊�.h��F=T� hXܲY�vƬ�V�ѭ�t�����Q���{g!�#Bx�4���ʆ���:�-�۲��b8+���p8P=�F��=�>cs�f�#[N�8l#��c�<q�'�|�WҚ��Jp�E�-���t���g��o�S�vF0j̋o��(�;s���`�I�J��3�K��p�V�ܟ�J��|(i;�jm HJ�w8�<~!�6X����t���g�uGu����MW��1�+��S�
|
3188
|
+
�~���IU�o �3��;�2�O�ӿ�����x��6�H�]������G�f4�XG���>��_6���G��p�v�K*�'s'<n���:)������N��y%�w9��h�$�Y2�
|
3189
|
+
Ip|L��K�
|
3190
|
+
� Tz�0�e���$@�Г��4�i��"���/O_���EQ5�,K�-�.�x�^M-ͱF��9�]�L�P(�Ky�ĝϺ�<�k�jzj��v� ~8N�̹��s��/��/����}a��?����ϡ�>��O\�8y餩ܹ����*�2r-H�i���Xj�R��uۀC���o��V��I
|
3191
|
+
�����1UQV��Ԉ����~�t���{�y��[ϕ������:Xr
|
3192
|
+
�u�>����,~�d���@�ɏ;w"���ck����ڱ�}י'�R��Ւ�zb�C�T7���/�֙(�4g�����-�56��(� ��ب������D-?B9�PZ�R���"���د�,���MZ���l��w�������a�Z�Ms
|
3193
|
+
F�Tˡ��*�~��A���u�Y�zF4h�
|
3194
|
+
漂������+���+�|X�ŷ`<lf�ps��ǕW��Μ�wZ��u!,TpA.fΡ�5��:��.��� ��x!g���0�Tk���n���N2�A������v2o=����MA�y���ˁ��5�Ƅ�3��fd���=5���L�Z��.Ӡ%����d�o0ɺ�!��!T��k������y�;��_�g?���G?���~ �ɝ_��/ӚG����A���C�_��M��<"��t�m�
|
3195
|
+
���8+g���-�;ͮ��fP�YV8��V�xdw�ͥ����� �g6�
|
3196
|
+
�A��C?t���sܳ�_������9���{
|
3197
|
+
��I��[��B(�!�%�Q�k}�$���9��Q?0[�d5��2�9(?��0 mB#l�#G���Kd0ߏ�m&��Sd�z,���b�X����Q��U����E+�'z���/d�\��zi�]�fj��'��{��|u�!��=�q�����}���'2��p��Z����K����Gu��zw�������"bF��y�Y0�`�Fp��C �k�͗�M�4S�
|
3198
|
+
�m��<�띟�醹&����\A��M"kyY��Y.J�sO��@�l@�7tz]Xr���6�6=k����v&�����4,�]Q5p2R��5cb ��KW*]�T0�R!q^�̙8�Q4I�e��(�>���!*:9T��W6�����P�)���d�3;����Y��;�ٙ���?�wH����A^�9T�b���8?�n炠Ϛ��FكoAܘ<
|
3199
|
+
N��ӻ?�D^Wɧr�J��4�`I@DďMO]Y�T?�eϠ�0b��r5
|
3200
|
+
N�����TC=�q��j����O���$zږ�@;�)�<
|
3201
|
+
nީ�'�)z�9+�<c^��q�SO�����]W�v=d����~��6bV�s���zQhq9�3�j�c�8{m¡1w:B�p4� �4a|��tO:�4��9���;9�ow!��i��@R��y����?"��t��3R��L}�����gz͎$��N�}u�q�#�5wZ��[�˿\V��fX��y��8�n'1���E� � ��f��w�?����e4� x���5� w��MCy6ٚ���:��q�^������O�6OưQ���"��%�b$d
|
3202
|
+
�ύ:F{[����d;z�E2f]���� ۲�m�eNMw3�o��b�����h
|
3203
|
+
/")**\�<�z���[0����|���J.���Mc��>�=�F�Ųv�{��fz[۩T�&8l��P��/�O���i�
|
3204
|
+
ڧ.Р��{��e���_�MXߛ�O��X���E[' &.#�f�wn:��N5-�iʠ���c�����p�/[���Ɩ��L��j8���{Wvd2t�Jz<�'�����t}�j芤�H=G�z�w�Jx-;�����&>M�h �Ie�4�*�{����/A�ќݍ8N-�"��>���5h,���ea��td/��LH�m�V~��w+9.8N�VM���M�r�`����<0?08�BӍ��t�2�9�����{܉�J�/����U}Sm;F���>�Y�v�
|
3205
|
+
��C2�`q<&���:Mf�c���p�k�
|
3206
|
+
���٧�|���k���-��d��hK
|
3207
|
+
$W��SZ��t>�ە��C���G{2���w2v����z��/�;��I!����.W�"g&�ڋZ��
|
3208
|
+
�fƍf�Ƕ�L�AWk�W0� O���Pt<���8�1�|,Fc�qr�!i��ܦ�P 1i5�c0|b���Lk��"���2�ֽ�W�_���]q;��i�K�>�)�g��n��� JRO���^Hé���#��~Ke�6�R0Z,��P�����O�� e
|
3209
|
+
�@03�J�ig�/��������sv"�2�L�0Z��k��E�c���]r��6#1�1�$�Mv���I���7����kƵD���V��`Z��L&b$��E�d������<�/����d ��|n�}x���j#��D���Ru��ߓji�V���<Cv�.5�\�t����'io��ۮ\Zeg��| �VM/�R$.K���
|
3210
|
+
{ͅ�~���֪�
|
3211
|
+
?���o[��ЍR@w� i����TB����6L�i�G�ƃ�ƿ|��B�S�>�3�bߖ�x��E�Q�N���p���x%�dw��[�I6�[�z<�n�U0�L�X4�l��3F"� هB�hN��-g;n;o3��E��+Flƚ�2i3��/,�?eY������d���]3�t�D��6�q�%#��!��>(����z����~��r;Ԗ�lU�ֈ�*\��WN4{k[�S�:��P#��öCO\��z�jO�������|o���^������:H5�%ߧ)�/|���b\3~Z�
|
3212
|
+
�by�z��c��`�G���s�U��O�Ϻ?�Y�|�����NK����^����������$M�_��#�s������k�4\#p�����lj��H�r���<r�/�#ܗ�|�j��>C&���&��WI�:�er�;�,ؾm�uv�)�A�A�8���o�Z�r��&������$!��wgvgM����B����'Y%f�6D�D��(�P�sc4����6w�~D{�o�N�O������6�v��]���c�$G�?xa�0��?M���NÊ��{�(�qZ��O�|���c���(����*C[A*IhZC�Ցf�B2��ȓ!��9�>Z�~r���d���M���#teG�
|
3213
|
+
�`��ǡ��)H���p
|
3214
|
+
k���?��`mG��D�vΓ�L���.�p�����'u��O�p��g�������<ƙu�@\�5.��t����p���í���\�[���'t��TX�P��H��;{�:,h�u���m-:4�mF���n[��nb�m�p7���������ڕ������nniV+�+�3�%e�4ۨ(��3ŕ�⬲�2[\WJE�ԅ͕Ҧ2��RҚg�JKc3]#W�:Y$�d����Ҍ��P$�=V�u�K�>��JXFx�7�>�M(�By�%���S����#�����3�_�ڬm�-cF˻�C��� �)��|a���2V(����e��Ǝ�^�x�-;������͍�CC3l�����z�.�o,��h�f�߀6\qo�~��?�M���ӧ.���#aa����7J�u ai�0[\.�?���ν��o�N����TD1�3�-��Jl��JP*0�-��A�3��d�P� �q?0���Z����|�-,;\X^\��p��x�s�P��g�W"F�u.
|
3215
|
+
Ks��}쿶����L�Q��q
|
3216
|
+
e���8��\Z]�ѡT�Y��Y\^[*.WJ��vq�\\��d�Tx�����;�6k��Zq��6
|
3217
|
+
+
|
3218
|
+
+<�~$.��,m���KK��Rae~�0��
|
3219
|
+
�O�XX݄I.��8Si�8�"��Ε.!�q�}��O=fVA�ih�)��\]�_���.���5l�9�4\Z��_��R�1,<�
|
3220
|
+
�B:@3���E��~�XX�h$'�z�^�Y�zW�rA/��}7X��:Q /�1�,z�.6��k���{��5Xs��Zf�껼�����L��ܗ���b)����g\���"��WY�-���.�>�@`χؘ�y����֠4-���V�`{�
|
3221
|
+
���ya%8IDOM�&�6�����=
|
3222
|
+
�[�ǧ���#�l�-����ͥ,�ɇ����9�\8��Ϫ�������]�~m˝ܪS�[u�|G�#�Rj~h+��d�N�-@��5��\�!�ͫ�wR�!���x�=4A{�L`o�C8_,�{��s9r*[��OiuP���#���-�<��Pn���-{�ϫ1$��y��₼���!�g5���?|cx���|^��ɩ�\
|
3223
|
+
��~֡�Mпp��h��jR$u@�i�81ņ�ö��-r~F��4��})C���
|
3224
|
+
������xrs��Lq����a��=� �X):УL�JR���=�t`��5�#�������ؙ����T���X�%�K�ޞ�u�qkZo�P�2T�����I�����Oq�/#$�H�����0RQV��qeJ-�gT���)<���zl�����%'Դ�ν6���
|
3225
|
+
endstream
|
3226
|
+
endobj
|
3227
|
+
141 0 obj
|
3228
|
+
<< /Type /FontDescriptor
|
3229
|
+
/FontName /AAAAAO+Ubuntu-Light
|
3230
|
+
/FontFile2 140 0 R
|
3231
|
+
/FontBBox [-157 -196 1551 958]
|
3232
|
+
/Flags 4
|
3233
|
+
/StemV 0
|
3234
|
+
/ItalicAngle 0.0
|
3235
|
+
/Ascent 776
|
3236
|
+
/Descent -185
|
3237
|
+
/CapHeight 693
|
3238
|
+
/XHeight 517
|
3239
|
+
>>
|
3240
|
+
endobj
|
3241
|
+
142 0 obj
|
3242
|
+
<< /Filter /FlateDecode
|
3243
|
+
/Length 1286
|
3244
|
+
>>
|
3245
|
+
stream
|
3246
|
+
x�e��n�F�ὮB�tHs&�@�n��u{stԒ +�}���i �/��y�_�!u������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n���P��Ҫt�N���*eP)��D�T.��ʕrU�)��BYTVʪ�Q6�����[����k�y
|
3247
|
+
���J�����31���x;��
|
3248
|
+
���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x�oS��7+[ƛețךyޢoV��浖-㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x����V�z�����[YE�V�Y���_}/7�*�Y%��e�ӫq+��:��.�7�J���E�/�3Y(Y�*A�W R��VJS�����:(u@c��D�]a*��f)�9J���)�o,#�\�Z>M�U��\�jPS�
|
3249
|
+
endstream
|
3250
|
+
endobj
|
3251
|
+
143 0 obj
|
3252
|
+
[228 500 500 500 500 500 500 500 500 500 500 500 500 500 246 500 564 564 564 564 564 564 564 564 564 564 500 500 500 500 500 500 500 641 630 609 702 500 520 500 500 500 500 500 500 865 709 500 592 500 500 500 548 680 500 500 500 500 500 500 500 500 500 500 500 509 583 460 500 548 376 573 569 237 500 500 255 863 569 582 583 500 374 428 387 500 480 500 500 474 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
|
3253
|
+
endobj
|
3254
|
+
144 0 obj
|
3255
|
+
<< /Length 3606
|
3256
|
+
/Length1 6864
|
3257
|
+
/Filter /FlateDecode
|
3258
|
+
>>
|
3259
|
+
stream
|
3260
|
+
x��Xkp�u>wA� �(1$Z�פ|�/[4M� @�)U�H��YX`%�b�)9
|
3261
|
+
�$�m���t�}~�yl�u�~�9��A����J��j�?���Df�'��~��gx*���Cן���?�>�>_;;>>99>~�8g��O�:����,�:��� _�G���
|
3262
|
+
!NR�K\DY L�S!b�Di>�
|
3263
|
+
F�d]�
|
3264
|
+
7P�B��5��:c��Ə{�{qv<<Xt>;����1�PbG���Hx>���X*8���`�7��Z� �\u�+��A���`��q�~Ҹo-�j� ���yE�dz`q˜k�WCk���Y��
|
3265
|
+
�d�0ǣЭex~(����*�]�2f.o�hJ
|
3266
|
+
p|���0P��������'x���l)\�._�����=�x.-��gg��~z�ɳO><�������vuz:�ܮg��ބ��a0,F��OM�����R�0(B��6Mp3��2���G,��e�nI<t��iX�ƽ�H��/��85v�|��M�|І�gа7�Iа��UÉ��q���54;.7�n��Sbi���!\N��v�j[ְ�������C=~�c��}�����
|
3267
|
+
�_�;�oU_��db�5-���������p��{F�qZ�o��C��A16Dt�t��1�}�V?$/���~D�G��`"��&��d@n�������
|
3268
|
+
endstream
|
3269
|
+
endobj
|
3270
|
+
145 0 obj
|
3271
|
+
<< /Type /FontDescriptor
|
3272
|
+
/FontName /AAAAAP+Ubuntu-Bold
|
3273
|
+
/FontFile2 144 0 R
|
3274
|
+
/FontBBox [-170 -221 1610 962]
|
3275
|
+
/Flags 4
|
3276
|
+
/StemV 0
|
3277
|
+
/ItalicAngle 0.0
|
3278
|
+
/Ascent 776
|
3279
|
+
/Descent -185
|
3280
|
+
/CapHeight 693
|
3281
|
+
/XHeight 526
|
3282
|
+
>>
|
3283
|
+
endobj
|
3284
|
+
146 0 obj
|
3285
|
+
<< /Filter /FlateDecode
|
3286
|
+
/Length 1286
|
3287
|
+
>>
|
3288
|
+
stream
|
3289
|
+
x�e��n�F�ὮB�tHs&�@�n��u{stԒ +�}���i �/��y�_�!u������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n���P��Ҫt�N���*eP)��D�T.��ʕrU�)��BYTVʪ�Q6�����[����k�y
|
3290
|
+
���J�����31���x;��
|
3291
|
+
���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x�oS��7+[ƛețךyޢoV��浖-㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x����V�z�����[YE�V�Y���_}/7�*�Y%��e�ӫq+��:��.�7�J���E�/�3Y(Y�*A�W R��VJS�����:(u@c��D�]a*��f)�9J���)�o,#�\�Z>M�U��\�jPS�
|
3292
|
+
endstream
|
3293
|
+
endobj
|
3294
|
+
147 0 obj
|
3295
|
+
[500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 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 604 500 500 500 500 500 500 500 316 500 500 607 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
|
3296
|
+
endobj
|
3297
|
+
xref
|
3298
|
+
0 148
|
3299
|
+
0000000000 65535 f
|
3300
|
+
0000000015 00000 n
|
3301
|
+
0000000109 00000 n
|
3302
|
+
0000000190 00000 n
|
3303
|
+
0000000331 00000 n
|
3304
|
+
0000000988 00000 n
|
3305
|
+
0000001168 00000 n
|
3306
|
+
0000001332 00000 n
|
3307
|
+
0000003358 00000 n
|
3308
|
+
0000003550 00000 n
|
3309
|
+
0000003720 00000 n
|
3310
|
+
0000010668 00000 n
|
3311
|
+
0000011180 00000 n
|
3312
|
+
0000011341 00000 n
|
3313
|
+
0000011501 00000 n
|
3314
|
+
0000011662 00000 n
|
3315
|
+
0000011822 00000 n
|
3316
|
+
0000011983 00000 n
|
3317
|
+
0000012143 00000 n
|
3318
|
+
0000012304 00000 n
|
3319
|
+
0000012464 00000 n
|
3320
|
+
0000012625 00000 n
|
3321
|
+
0000012785 00000 n
|
3322
|
+
0000012947 00000 n
|
3323
|
+
0000013108 00000 n
|
3324
|
+
0000013269 00000 n
|
3325
|
+
0000013429 00000 n
|
3326
|
+
0000013590 00000 n
|
3327
|
+
0000013750 00000 n
|
3328
|
+
0000013913 00000 n
|
3329
|
+
0000014073 00000 n
|
3330
|
+
0000014235 00000 n
|
3331
|
+
0000014395 00000 n
|
3332
|
+
0000014556 00000 n
|
3333
|
+
0000014716 00000 n
|
3334
|
+
0000014877 00000 n
|
3335
|
+
0000015037 00000 n
|
3336
|
+
0000015199 00000 n
|
3337
|
+
0000015360 00000 n
|
3338
|
+
0000015522 00000 n
|
3339
|
+
0000015683 00000 n
|
3340
|
+
0000015847 00000 n
|
3341
|
+
0000016008 00000 n
|
3342
|
+
0000016172 00000 n
|
3343
|
+
0000016334 00000 n
|
3344
|
+
0000016497 00000 n
|
3345
|
+
0000016659 00000 n
|
3346
|
+
0000016822 00000 n
|
3347
|
+
0000016984 00000 n
|
3348
|
+
0000017148 00000 n
|
3349
|
+
0000017311 00000 n
|
3350
|
+
0000017475 00000 n
|
3351
|
+
0000017638 00000 n
|
3352
|
+
0000017803 00000 n
|
3353
|
+
0000017966 00000 n
|
3354
|
+
0000018131 00000 n
|
3355
|
+
0000018294 00000 n
|
3356
|
+
0000020574 00000 n
|
3357
|
+
0000020876 00000 n
|
3358
|
+
0000021038 00000 n
|
3359
|
+
0000021199 00000 n
|
3360
|
+
0000021361 00000 n
|
3361
|
+
0000021522 00000 n
|
3362
|
+
0000021684 00000 n
|
3363
|
+
0000021845 00000 n
|
3364
|
+
0000022007 00000 n
|
3365
|
+
0000022168 00000 n
|
3366
|
+
0000022331 00000 n
|
3367
|
+
0000022492 00000 n
|
3368
|
+
0000022653 00000 n
|
3369
|
+
0000022812 00000 n
|
3370
|
+
0000022970 00000 n
|
3371
|
+
0000023127 00000 n
|
3372
|
+
0000025783 00000 n
|
3373
|
+
0000025990 00000 n
|
3374
|
+
0000026160 00000 n
|
3375
|
+
0000027930 00000 n
|
3376
|
+
0000028137 00000 n
|
3377
|
+
0000030226 00000 n
|
3378
|
+
0000030433 00000 n
|
3379
|
+
0000032222 00000 n
|
3380
|
+
0000032429 00000 n
|
3381
|
+
0000034518 00000 n
|
3382
|
+
0000034725 00000 n
|
3383
|
+
0000036514 00000 n
|
3384
|
+
0000036721 00000 n
|
3385
|
+
0000038813 00000 n
|
3386
|
+
0000039020 00000 n
|
3387
|
+
0000040788 00000 n
|
3388
|
+
0000040995 00000 n
|
3389
|
+
0000041449 00000 n
|
3390
|
+
0000041643 00000 n
|
3391
|
+
0000041672 00000 n
|
3392
|
+
0000041721 00000 n
|
3393
|
+
0000041957 00000 n
|
3394
|
+
0000041986 00000 n
|
3395
|
+
0000042016 00000 n
|
3396
|
+
0000042046 00000 n
|
3397
|
+
0000042076 00000 n
|
3398
|
+
0000042106 00000 n
|
3399
|
+
0000042136 00000 n
|
3400
|
+
0000042167 00000 n
|
3401
|
+
0000042198 00000 n
|
3402
|
+
0000042229 00000 n
|
3403
|
+
0000042260 00000 n
|
3404
|
+
0000042291 00000 n
|
3405
|
+
0000042322 00000 n
|
3406
|
+
0000042400 00000 n
|
3407
|
+
0000042515 00000 n
|
3408
|
+
0000042652 00000 n
|
3409
|
+
0000042830 00000 n
|
3410
|
+
0000042989 00000 n
|
3411
|
+
0000043105 00000 n
|
3412
|
+
0000043221 00000 n
|
3413
|
+
0000043404 00000 n
|
3414
|
+
0000043555 00000 n
|
3415
|
+
0000043710 00000 n
|
3416
|
+
0000043812 00000 n
|
3417
|
+
0000043979 00000 n
|
3418
|
+
0000044089 00000 n
|
3419
|
+
0000044280 00000 n
|
3420
|
+
0000044435 00000 n
|
3421
|
+
0000044594 00000 n
|
3422
|
+
0000044704 00000 n
|
3423
|
+
0000044871 00000 n
|
3424
|
+
0000044981 00000 n
|
3425
|
+
0000045172 00000 n
|
3426
|
+
0000045331 00000 n
|
3427
|
+
0000045494 00000 n
|
3428
|
+
0000045604 00000 n
|
3429
|
+
0000045771 00000 n
|
3430
|
+
0000045881 00000 n
|
3431
|
+
0000046072 00000 n
|
3432
|
+
0000046223 00000 n
|
3433
|
+
0000046374 00000 n
|
3434
|
+
0000046484 00000 n
|
3435
|
+
0000046628 00000 n
|
3436
|
+
0000058652 00000 n
|
3437
|
+
0000058861 00000 n
|
3438
|
+
0000060222 00000 n
|
3439
|
+
0000061137 00000 n
|
3440
|
+
0000072804 00000 n
|
3441
|
+
0000073019 00000 n
|
3442
|
+
0000074380 00000 n
|
3443
|
+
0000075295 00000 n
|
3444
|
+
0000078990 00000 n
|
3445
|
+
0000079204 00000 n
|
3446
|
+
0000080565 00000 n
|
3447
|
+
trailer
|
3448
|
+
<< /Size 148
|
3449
|
+
/Root 2 0 R
|
3450
|
+
/Info 1 0 R
|
3451
|
+
>>
|
3452
|
+
startxref
|
3453
|
+
81480
|
3454
|
+
%%EOF
|