diff --git a/doc/GNUmakefile b/doc/GNUmakefile index a162267..6960680 100755 --- a/doc/GNUmakefile +++ b/doc/GNUmakefile @@ -1,11 +1,232 @@ +# GNUmakefile for postprocessing PDF files +# +# 2000 IBM Corporation. +# Licensed under the GNU GPL. + +######################################################################## +# Make sure that the following macros are correct for your setup +######################################################################## +# ... System utilities +RMRF = /bin/rm -rf +MV = /bin/mv +EGREP = /bin/egrep ECHO = /bin/echo +PERL = /usr/bin/perl +PYTHON = python +CAT = /bin/cat +TOUCH = /bin/touch +ZIP = /usr/bin/zip -all: - @${ECHO} "/libs/iterator/doc/GNUmakefile should be replaced by" - @${ECHO} - @${ECHO} " http://www.boost-consulting.com/writing/GNUmakefile," - @${ECHO} - @${ECHO} "before proceeding. That file is not included in the Boost" - @${ECHO} "distribution because it is licensed under the GPL, which violates" - @${ECHO} "Boost license requirements." +# ... TeX & postprocessors +PPOWER4 = ppower4 +PDFLATEX = pdflatex +METAPOST = mpost +FIG2DEV = fig2dev +BIBTEX = bibtex +FOLIAGECUTTER = foliageCutter --verbose +RST2LATEX = rst2latex +RST2HTML = rst2html +TEX = latex +export TEX +######################################################################## +# End of user servicable parts; don't fiddle with the remainder of this +# makefile unless you know what you do. +# +# You have been warned ;=) +######################################################################## + +# ... Variables +TEXFILES = $(strip $(wildcard *.tex)) +RSTFILES = $(strip $(wildcard *.rst)) +-include GNUmakefile.local +TEXSTEMS = $(strip $(patsubst %.tex,%,${TEXFILES})) +RSTSTEMS = $(strip $(patsubst %.rst,%,${RSTFILES})) +CUTFOILS = $(strip $(patsubst %,%---toc.tex,${TEXSTEMS})) +PDFFILES = $(strip $(patsubst %.tex,%.pdf,${TEXFILES})) +PRINTS = $(patsubst %.pdf,%-print.pdf,${PDFFILES}) +PRINTZIP = prints.zip +SLIDEZIP = slides.zip + +# ... Depend +DEPENDFILES = .depend +GENFILE = .generated + +# ... List of extensions and files generated +texcrap = *.mpx *.log *.aux *.blg *-print.brf *-print.tex *.out + +mpxcrap = mpxerr.tex mpxerr.pdf + +generated = *.out *.[0-9] *.[0-9][0-9] *.bbl *.brf \ + *.mp *.mmp *.pdf *.ps TMP-*.pdf *.ftoc\ + ${PRINTZIP} ${SLIDEZIP} ${GENFILE} ${DEPENDFILES} \ + ${texcrap} ${mpxcrap} ${CUTFOILS} $(strip $(wildcard *---*.tex)) + + +# ... canned command to run PDFLaTeX +define run-pdflatex +@${ECHO} "" +@${ECHO} "---- Running PDFLaTeX on $<" && ${PDFLATEX} $< +@${ECHO} "---- Running PDFLaTeX on $< again" && ${PDFLATEX} $< +-@(${EGREP} -qi 'Rerun to get' $*.log && \ + ${ECHO} "---- Rerunning PDFLaTeX on $* to get cross-refs right" && \ + ${PDFLATEX} $<) || \ + ${ECHO} "---- No cross-refs correcting PDFLaTeX rerun required for $*" +-@(${EGREP} -qi $*.ftoc $*.log && \ + ${ECHO} "---- Rerunning PDFLaTeX on $* for FTOC" && \ + ${PDFLATEX} $<) || \ + ${ECHO} "---- No FTOC PDFLaTeX run required for $*" +-@(${EGREP} -qi 'Warning: Citation' $*.log && \ + ${ECHO} "---- Running BIBTeX on $*" && \ + ${BIBTEX} $* && \ + ${ECHO} "---- Running PDFLaTeX on $<" && \ + ${PDFLATEX} $<) || \ + ${ECHO} "---- No BIBTeX run required for $*" +-@(${EGREP} -qi 'Warning: .+undefined references' $*.log && \ + ${ECHO} "---- Running PDFLaTeX on $<" && \ + ${PDFLATEX} $<) || \ + ${ECHO} "---- No further PDFLaTex run required for $<" +@${ECHO} "Generated: $@ {$<}" >> ${GENFILE} +@${RMRF} ${texcrap} +endef + +# ... canned command to run PDFLaTeX for printable versions +define run-pdflatex-for-print +@${ECHO} "" +@${ECHO} "---- Running PDFLaTeX on $*-print.tex" && ${PDFLATEX} $*-print.tex +@${ECHO} "---- Running PDFLaTeX on $< again" && ${PDFLATEX} $< +-@(${EGREP} -qi 'Warning: Citation' $*-print.log && \ + ${ECHO} "---- Running BIBTeX on $*-print" && \ + ${BIBTEX} $*-print && \ + ${ECHO} "---- Running PDFLaTeX on $*-print.tex" && \ + ${PDFLATEX} $*-print.tex) || \ + ${ECHO} "---- No BIBTeX run required for $*" +-@(${EGREP} -qi 'Warning: .+undefined references' $*-print.log && \ + ${ECHO} "---- Running PDFLaTeX on $*-print" && \ + ${PDFLATEX} $*-print.tex) || \ + ${ECHO} "---- No further PDFLaTex run required for $*-print" +@${ECHO} "Generated: $@ {$<}" >> ${GENFILE} +@${RMRF} ${texcrap} +endef + +# DWA begin modifications +# ... Rule: How to generate TeX from ReST +%.tex: %.txt + @${ECHO} "---- Running rst2latex on $<" + ${RST2LATEX} $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate TeX from ReST +%.tex: %.rst + @${ECHO} "---- Running rst2latex on $<" + ${RST2LATEX} $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate HTML from ReST +%.html: %.txt + @${ECHO} "---- Running rst2html on $<" + ${RST2HTML} $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate HTML from ReST +%.html: %.rst + @${ECHO} "---- Running rst2html on $<" + ${RST2HTML} $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} +# DWA end modifications + +# ... Rule: How to generate PDF from TeX +%.pdf: %.tex + $(run-pdflatex) + @${MV} $@ TMP-$@ + @${ECHO} "---- Running PPower4 on $*" + ${PPOWER4} -v TMP-$@ $@ + @${RMRF} TMP-$@ + @${ECHO} "Postprocessed: $*.pdf {$*.pdf}" >> ${GENFILE} + +# ... Rule: How to generate printable PDF from TeX +%-print.pdf: %.tex + ${PERL} -pe 's/^\\documentclass\[(.*?)\]/\\documentclass\[$$1,prints\]/;' < $< > $*-print.tex + $(run-pdflatex-for-print) + @${ECHO} "Generated: $*-print.pdf {$*.pdf}" >> ${GENFILE} + +# ... Rule: How to generate cut foils from TeX master +%---toc.tex: %.tex + ${FOLIAGECUTTER} --prefix=$* $< + +# ... Rule: How to generate MetaPost from FIG +%.mp: %.fig + @${ECHO} "---- Running Fig2Dev (mp) on $<" + ${FIG2DEV} -L mp $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate MultiMetaPost from FIG +%.mmp: %.fig + @${ECHO} "---- Running Fig2Dev (mmp) on $<" + ${FIG2DEV} -L mmp $< $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate includable PS from FIG via MetaPost +%.mps: %.fig + @${ECHO} "---- Running Fig2Dev (mps) on $<" + ${FIG2DEV} -L mp $< $*.mps.mp + @${RMRF} $*.mps.[0-9] + ${METAPOST} $*.mps.mp + @${MV} $*.mps.0 $@ + @${ECHO} "Generated: $@ {$<}" >> ${GENFILE} + +# ... Rule: How to generate includable PS files from MultiMetaPost +%.0: %.mmp + @${ECHO} "---- Running MetaPost on $<" + @${RMRF} $*.[0-9] $*.[0-9][0-9] + ${METAPOST} $< + @${ECHO} "Generated: $*.0{...} {$<}" >> ${GENFILE} + +cleanup-crap: + @${RMRF} ${mpxcrap} + +# ... Target: all +all: cleanup-crap ${DEPENDFILES} ${PDFFILES} ${PRINTS} ${PRINTZIP} ${SLIDEZIP} + @${ECHO} "" + @${TOUCH} ${GENFILE} + @${CAT} ${GENFILE} + @${RMRF} ${GENFILE} + +# ... Target: ZIP files +zip zips: ${PRINTZIP} ${SLIDEZIP} + +# ... Target: ZIP file containing printable versions of slides +${PRINTZIP}: .depend ${PDFFILES} + @${RMRF} ${PRINTZIP} + ${ZIP} -r ${PRINTZIP} ${PRINTS} + @${ECHO} "Generated: ${PRINTZIP}" >> ${GENFILE} + +# ... Target: ZIP file containing screen versions of slides + ${SLIDEZIP}: .depend ${PDFFILES} + @${RMRF} ${SLIDEZIP} + ${ZIP} -r ${SLIDEZIP} ${PDFFILES} + @${ECHO} "Generated: ${SLIDEZIP}" >> ${GENFILE} + +# ... Target: clean up +clean: + ${RMRF} ${generated} + +# ... Target: create dependencies +depend: .depend + +# ... Target: dependency file (parse TEXFILES for multiinclude and includegraphics) +# .depend: GNUmakefile ${TEXFILES} +# ${RMRF} $@ +# @for t in ${TEXSTEMS} ; do \ +# ${ECHO} "Scanning $$t.tex"; \ +# ${PERL} -e 'my $$target = shift @ARGV;' -e 'while (<>) { /\\multiinclude(\[.*?\])?{(.*?)}/ && print "$$target: $$2.0\n";}' $$t.pdf < $$t.tex >> $@; \ +# ${PERL} -e 'my $$target = shift @ARGV;' -e 'while (<>) { /\\includegraphics(\[.*?\])?{(.*?)\.(.*?)}/ && print "$$target: $$2.$$3\n";}' $$t.pdf < $$t.tex >> $@; \ +# done + +.depend: GNUmakefile ${RSTFILES} + ${RMRF} $@ + ${PYTHON} scanrst.py ${RSTFILES} > $@ + +# ... include dependency files +# -include .depend +-include .depend diff --git a/doc/counting_iterator.pdf b/doc/counting_iterator.pdf index 3c577e6..31c308c 100755 Binary files a/doc/counting_iterator.pdf and b/doc/counting_iterator.pdf differ diff --git a/doc/docutils.sty b/doc/docutils.sty new file mode 100755 index 0000000..a6fce3f --- /dev/null +++ b/doc/docutils.sty @@ -0,0 +1,54 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%% docutils.sty: A style for docutils latex output %%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% +%% o author: Alexander Schmolck (a.schmolck@gmx.net) +%% o created: 2002-07-07 10:50:31+00:40 +%% o last modified: $Date: 2004/01/29 05:55:26 $ +%% o keywords: +%% o license: +%XXX titlesec +%% XXX geometry +\usepackage{graphicx} +\usepackage{latexsym} % extra symbols +\usepackage{url} % !!!: pay attention when using in other commands!!! +\usepackage{verbatim} % normal verbatim has lenght-limit +\usepackage{enumerate} % easy style choice with e.g: ``\begin{enumerate}[Ex i.]`` +\usepackage{hyperref} %href, htarget and hlink XXX: pdfauthor, pdfcreator etc. +\usepackage{xr} %XXX do we need this? +% need this to have ``fboxes`` in ``enviroments``, as well as ``verbatim``s +\usepackage{fancybox} +\usepackage{mdwtab} % better tables and arrays (fixes spacing and adds + % vertical align and multirows (m)) +\usepackage{ltxtable} % long and autoscaling tables (use X for autoscaled + % columns) +\newcommand{\transition}{\vspace{2em}\par\hrule{}\par\vspace{2em}} +\newcommand{\classifier}[1]{(\textit{#1})} +\newenvironment{topic}[1]% +{\begin{Sbox}% + \begin{minipage}{.8\textwidth}% + \protect{\large{\textbf{#1}}}\par\vspace{.5em}}% +{\end{minipage}\end{Sbox}\fbox{\TheSbox}\par\vspace{.5em}} +%XXX shadow box for warnings? +\newenvironment{admonition}[1]% +{\begin{center}% + \begin{Sbox}% + \begin{minipage}{.9\textwidth}% + \protect{\textsc{#1}}\par\vspace{.2em}}% +{\end{minipage}\end{Sbox}\fbox{\TheSbox}\par\vspace{.5em}\end{center}} + +\newenvironment{doctest}% +{\VerbatimEnvironment + \begin{Verbatim}}% +{\end{Verbatim}} +% {% +% \begin{Sbox}% +% \begin{minipage}{.8\textwidth}% +% \protect{\large{\textsc{#1}}\par\vspace{.5em}}}% +% {\end{minipage}\end{Sbox}\fbox{\TheSbox}\par\vspace{.5em}} +%{\end{minipage}\end{Sbox}\fbox{\TheSbox}} + + +%% just a piece of example code +% \newcommand{\vitem}% +% {\SaveVerb[{\item[\UseVerb{\MyTemp}]}]{\MyTemp}} diff --git a/doc/facade-and-adaptor.pdf b/doc/facade-and-adaptor.pdf index 4a6352b..9d887d6 100755 --- a/doc/facade-and-adaptor.pdf +++ b/doc/facade-and-adaptor.pdf @@ -3,75 +3,108 @@ << /Type /Catalog /Pages 2 0 R -/Outlines 204 0 R -/Names 304 0 R +/Outlines 212 0 R +/Names 390 0 R /PageMode /UseOutlines /URI << /Base () >> /ViewerPreferences << >> -/OpenAction 542 0 R +/OpenAction 621 0 R /PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b) >> endobj 2 0 obj << /Type /Pages -/Kids [ 3 0 R 8 0 R 50 0 R 85 0 R 94 0 R 104 0 R 107 0 R 115 0 R 118 0 R 121 0 R 127 0 R 132 0 R 136 0 R 140 0 R 143 0 R 146 0 R 150 0 R 153 0 R 156 0 R 159 0 R 162 0 R 165 0 R 168 0 R 171 0 R 174 0 R 177 0 R 180 0 R 183 0 R 186 0 R 189 0 R 192 0 R 198 0 R 201 0 R ] -/Count 33 +/Kids [ 3 0 R 63 0 R 102 0 R 116 0 R 120 0 R 127 0 R 134 0 R 137 0 R 144 0 R 153 0 R 157 0 R 160 0 R 163 0 R 167 0 R 170 0 R 173 0 R 176 0 R 179 0 R 182 0 R 185 0 R 188 0 R 191 0 R 194 0 R 197 0 R 206 0 R 209 0 R ] +/Count 26 >> endobj 3 0 obj << /Type /Page +/Annots [ 4 0 R 5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R ] +/Resources 39 0 R +/MediaBox [ 0 0 595.276 841.89 ] /Parent 2 0 R -/Resources 4 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 7 0 R +/Contents 62 0 R >> endobj 4 0 obj << -/Font << -/F38 5 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 165.056 655.339 286.434 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:dave@boost-consulting.com) >> -/ProcSet [ /PDF /Text ] >> endobj 5 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-Roman +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 290.53 655.339 360.711 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:jsiek@osl.iu.edu) +>> >> endobj 6 0 obj << -/Type /Encoding -/Differences [ 0 /.notdef 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 10 /.notdef 11 /breve /minus 13 /.notdef 14 /Zcaron /zcaron /caron /dotlessi /dotlessj /ff /ffi /ffl 22 /.notdef 30 /grave /quotesingle /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde 127 /.notdef 128 /Euro 129 /.notdef 130 /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE 141 /.notdef 147 /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe 157 /.notdef 159 /Ydieresis 160 /.notdef 161 /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 364.807 655.339 464.074 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:witt@styleadvisor.com) +>> >> endobj 7 0 obj << -/Filter /FlateDecode -/Length 158 +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 165.056 643.384 243.374 654.232 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://www.boost-consulting.com) +>> >> -stream -x -@})"1\J# ׉őV?nH@ YoA -B] -e7GQ09WF#cksg˪ʝȴ'=+Ot?Kc7#líO%HB' n';ZyC*'s9!endstream endobj 8 0 obj << -/Type /Page -/Annots [ 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R ] -/Resources 43 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 49 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 334.292 643.384 420.055 654.232 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://www.osl.iu.edu) +>> >> endobj 9 0 obj @@ -80,12 +113,12 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 197.115 682.108 312.811 698.049 ] +/Rect [ 425.154 643.384 509.505 654.232 ] /Subtype /Link /A << /Type /Action /S /URI -/URI (mailto:dave@boost-consulting.com) +/URI (http://www.styleadvisor.com) >> >> endobj @@ -95,12 +128,12 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 315.799 682.108 384.531 698.049 ] +/Rect [ 165.056 633.366 183.376 642.166 ] /Subtype /Link /A << /Type /Action /S /URI -/URI (mailto:jsiek@osl.iu.edu) +/URI (http://www.styleadvisor.com) >> >> endobj @@ -109,13 +142,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 387.52 682.108 481.436 698.049 ] +/C [ 1 0 0 ] +/Rect [ 80.603 485.923 130.195 494.724 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (mailto:witt@styleadvisor.com) +/S /GoTo +/D (motivation) >> >> endobj @@ -124,13 +156,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 197.115 669.59 269.33 684.101 ] +/C [ 1 0 0 ] +/Rect [ 80.603 464.061 187.508 474.909 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.boost-consulting.com) +/S /GoTo +/D (impact-on-the-standard) >> >> endobj @@ -139,13 +170,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 351.256 669.59 430.001 684.101 ] +/C [ 1 0 0 ] +/Rect [ 80.603 444.136 111.847 454.873 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.osl.iu.edu) +/S /GoTo +/D (design) >> >> endobj @@ -154,13 +184,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 433.919 669.59 512.967 684.101 ] +/C [ 1 0 0 ] +/Rect [ 102.521 424.21 181.281 434.948 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.styleadvisor.com) +/S /GoTo +/D (iterator-concepts) >> >> endobj @@ -169,13 +198,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 197.115 656.205 214.321 668.44 ] +/C [ 1 0 0 ] +/Rect [ 102.521 408.27 172.37 419.118 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.styleadvisor.com) +/S /GoTo +/D (interoperability) >> >> endobj @@ -185,11 +213,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 488.43 168.688 497.356 ] +/Rect [ 102.521 394.267 171.402 403.178 ] /Subtype /Link /A << /S /GoTo -/D (motivation) +/D (iterator-facade) >> >> endobj @@ -199,11 +227,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 466.487 217.594 477.431 ] +/Rect [ 121.151 376.39 148.936 387.127 ] /Subtype /Link /A << /S /GoTo -/D (impact-on-the-standard) +/D (usage) >> >> endobj @@ -213,11 +241,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 446.562 153.127 457.506 ] +/Rect [ 121.151 364.379 212.448 373.179 ] /Subtype /Link /A << /S /GoTo -/D (design) +/D (iterator-core-access) >> >> endobj @@ -227,11 +255,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 426.637 215.711 437.58 ] +/Rect [ 121.151 348.217 175.447 359.342 ] /Subtype /Link /A << /S /GoTo -/D (iterator-concepts) +/D (operator) >> >> endobj @@ -241,11 +269,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 410.696 208.797 421.64 ] +/Rect [ 121.151 334.27 175.447 344.011 ] /Subtype /Link /A << /S /GoTo -/D (interoperability) +/D (id6) >> >> endobj @@ -255,11 +283,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 396.798 206.695 405.7 ] +/Rect [ 102.521 318.606 177.656 329.454 ] /Subtype /Link /A << /S /GoTo -/D (iterator-facade) +/D (iterator-adaptor) >> >> endobj @@ -269,11 +297,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 378.816 190.347 389.62 ] +/Rect [ 102.521 302.666 195.921 313.514 ] /Subtype /Link /A << /S /GoTo -/D (usage) +/D (specialized-adaptors) >> >> endobj @@ -283,11 +311,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 366.886 247.333 375.812 ] +/Rect [ 80.603 282.741 146.191 293.589 ] /Subtype /Link /A << /S /GoTo -/D (iterator-core-access) +/D (proposed-text) >> >> endobj @@ -297,11 +325,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 351.543 216.26 361.222 ] +/Rect [ 102.521 262.262 388.893 274.217 ] /Subtype /Link /A << /S /GoTo -/D (operator) +/D (header-iterator-helper-synopsis-lib-iterator-helper-synopsis) >> >> endobj @@ -311,11 +339,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 337.595 216.26 346.641 ] +/Rect [ 102.521 246.322 254.341 258.277 ] /Subtype /Link /A << /S /GoTo -/D (id6) +/D (iterator-facade-lib-iterator-facade) >> >> endobj @@ -325,11 +353,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 321.033 211.278 331.976 ] +/Rect [ 121.151 230.935 267.77 241.783 ] /Subtype /Link /A << /S /GoTo -/D (iterator-adaptor) +/D (class-template-iterator-facade) >> >> endobj @@ -339,11 +367,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 305.092 231.761 316.036 ] +/Rect [ 121.151 216.987 262.899 227.725 ] /Subtype /Link /A << /S /GoTo -/D (specialized-adaptors) +/D (iterator-facade-requirements) >> >> endobj @@ -353,11 +381,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 285.167 181.889 296.111 ] +/Rect [ 121.151 203.04 248.647 213.623 ] /Subtype /Link /A << /S /GoTo -/D (proposed-text) +/D (iterator-facade-operations) >> >> endobj @@ -367,11 +395,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 265.242 413.379 276.186 ] +/Rect [ 102.521 186.546 267.126 198.501 ] /Subtype /Link /A << /S /GoTo -/D (header-iterator-helper-synopsis-lib-iterator-helper-synopsis) +/D (iterator-adaptor-lib-iterator-adaptor) >> >> endobj @@ -381,11 +409,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 249.904 282.869 260.245 ] +/Rect [ 121.151 170.882 273 182.007 ] /Subtype /Link /A << /S /GoTo -/D (iterator-facade-lib-iterator-facade) +/D (class-template-iterator-adaptor) >> >> endobj @@ -395,11 +423,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 233.361 301.051 244.305 ] +/Rect [ 121.151 156.935 264.698 167.795 ] /Subtype /Link /A << /S /GoTo -/D (class-template-iterator-facade) +/D (iterator-adaptor-requirements) >> >> endobj @@ -409,11 +437,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 219.414 298.003 230.357 ] +/Rect [ 121.151 142.987 302.501 154.112 ] /Subtype /Link /A << /S /GoTo -/D (iterator-facade-requirements) +/D (iterator-adaptor-base-class-parameters) >> >> endobj @@ -423,11 +451,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 205.466 284.165 216.41 ] +/Rect [ 121.151 129.039 283.765 140.164 ] /Subtype /Link /A << /S /GoTo -/D (iterator-facade-operations) +/D (iterator-adaptor-public-operations) >> >> endobj @@ -437,11 +465,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 189.526 290.839 200.47 ] +/Rect [ 121.151 115.092 330.839 126.217 ] /Subtype /Link /A << /S /GoTo -/D (iterator-adaptor-lib-iterator-adaptor) +/D (iterator-adaptor-protected-member-functions) >> >> endobj @@ -451,11 +479,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 173.586 306.132 184.529 ] +/Rect [ 121.151 101.144 320.046 112.269 ] /Subtype /Link /A << /S /GoTo -/D (class-template-iterator-adaptor) +/D (iterator-adaptor-private-member-functions) >> >> endobj @@ -465,11 +493,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 159.638 299.756 170.582 ] +/Rect [ 102.521 84.927 321.202 96.882 ] /Subtype /Link /A << /S /GoTo -/D (iterator-adaptor-requirements) +/D (specialized-adaptors-lib-iterator-special-adaptors) >> >> endobj @@ -479,11 +507,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 145.69 333.499 156.634 ] +/Rect [ 121.151 71.477 193.242 80.388 ] /Subtype /Link /A << /S /GoTo -/D (iterator-adaptor-base-class-parameters) +/D (indirect-iterator) >> >> endobj @@ -493,223 +521,7 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 131.742 316.643 142.686 ] -/Subtype /Link -/A << -/S /GoTo -/D (iterator-adaptor-public-operations) ->> ->> -endobj -39 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 163.458 117.795 359.521 128.739 ] -/Subtype /Link -/A << -/S /GoTo -/D (iterator-adaptor-protected-member-functions) ->> ->> -endobj -40 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 163.458 103.847 349.619 114.791 ] -/Subtype /Link -/A << -/S /GoTo -/D (iterator-adaptor-private-member-functions) ->> ->> -endobj -41 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 144.828 87.907 345.354 98.851 ] -/Subtype /Link -/A << -/S /GoTo -/D (specialized-adaptors-lib-iterator-special-adaptors) ->> ->> -endobj -42 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 163.458 74.009 227.696 82.91 ] -/Subtype /Link -/A << -/S /GoTo -/D (indirect-iterator) ->> ->> -endobj -43 0 obj -<< -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -44 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-Bold ->> -endobj -45 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/FirstChar 33 -/LastChar 124 -/Widths 46 0 R -/BaseFont /PYAWJK+NimbusMonL-Regu-Extend_850 -/FontDescriptor 47 0 R ->> -endobj -46 0 obj -[ 510 0 0 0 0 510 0 510 510 510 510 510 510 510 510 510 510 510 0 0 0 0 0 0 0 510 510 510 510 510 0 0 510 510 510 510 0 510 0 0 510 0 0 0 0 0 510 510 0 510 0 510 510 510 0 510 510 0 510 0 510 0 0 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 510 0 510 ] -endobj -47 0 obj -<< -/Ascent 625 -/CapHeight 557 -/Descent -150 -/FontName /PYAWJK+NimbusMonL-Regu-Extend_850 -/ItalicAngle 0 -/StemV 41 -/XHeight 0 -/FontBBox [ -12 -237 650 811 ] -/Flags 4 -/CharSet (/exclam/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/colon/semicolon/less/equal/greater/A/B/C/D/F/I/O/P/R/T/U/V/X/Y/bracketleft/bracketright/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/bar) -/FontFile 48 0 R ->> -endobj -48 0 obj -<< -/Length1 1640 -/Length2 14478 -/Length3 532 -/Length 15362 -/Filter /FlateDecode ->> -stream -xtUT^%݂݃$8wsnݪ_G-k. QRe17H]XyL\r * WO!(n%LYYYxxx(<,,]U4iC ?5V@bϟo[{;Q v[eԉ@-)) !6w"ǃhfWjΌX"SO7)/=ʙY{b+_>rp});8:Y9FUOKcb;[}?-M]Jo'̧ -Lpw+ 3'4\ `adf pv:'oo3֜3gl + _"4'fa៺o D|06z]>CSu-iH{{%BK*}? 煱'#;ovVÿjA#bY gC!rr)YZ~Vo: dk|vb303NW9gΤ-)_n*˧!!0)}'Jڻ{1|.#+1'7 ox8Y~f W%Y _b 4[]2⟹2s-5uur3^` -holR7PڨVݿƾ/=|6icϞ,>L[TEMw N.@&RČShy-Nf e7(N6'Go1|Mt4R&=>P ^CR}@wQ􊠁hF|'2ȧ %{Q(XvȽ%Cft';IUia^IXspoƟ !΂n p}GʛV*mpkڣ`fpBksp[j x+ ƥ >ktԞʙ;ea+19n,4n1)7|0.MV|{m<%JK:TUnN1gOq;r%Bp/OB8y<\XɏLM Zzqq &)\!VNhQ6<$udli*;?@ 3 N74G4i;f<$nߕs1HjE; y֤Џ,jmy00#7II:7% h"f̡цBn~9s<dXR=%ņ sPaۥx~|ѝ/C\?aiS]d%_?@b!`ӭg8{q)[BbS4nTgpeZRIA4+J. -;. mе*MPFh;Euc$3Z78*хAYKq-ǟ'tLd(oGׄSnxcf|JiW{<]`=ׄ#?=甥\ -_>|,&'&dp!uiDv28x -يk<Ʃlmn(|ή$Ot0$EfUr$ X8f.hTߒԪejҮ̖L N (^e|֔}xERlЗh V^MrrT֊2'DY v^[g ǰ%hm؆,#SBɳ0T'`vZxŔ4xxYx]1,r7|'OQa3L;&90WaB^rnph"jDO r.aڴD6o2+XᕣCd0|ʑXr:JMWsp -KCёI3(4y`*LOq- D?Y#Ir;)/B -iVr/iU|!yt[i5 DG2_T%g\GvrNW&ꡠq(I"R,qE$|`yXHMMSwѴbI,(:wN2"|=huT񹫕.m+$Gh1sſ&B48!-zQYX,dE U]~VakӤ{e.ݲnAw6ǐwny^C0f lL}uy"o*@?q"c3-+ -FJ X 5m"체PD¹cL)k&׮jU ޥL< K.Ԟ㥿ʲz<Zwɯ$us jǩx" 4L3t7Klz]1B!Dsv b˅'j>?TrjY^6+927lmRJUI-|g-,Ym>dB-Y,9s^7|LH;LhuЧ覑/CAŔV0gtoA/1AMj6rޱYG"ǀ5Zb9ş]0qX$5e',wv V yP`ʌ )Bgoy XC[oRo_d|J yօe_ǗfZ[/db,㇒E!E2,u -.'Q(=ã -Bsƴ(FHZ7B/7gZ*͕`bԉ>#e!&U E׺Ha"|pQE*F- -ɚ -O)NzZNۉ3ӡw8:ʁ8[veqz5v7ǫzct Juscz93JAPu[D&:'3_w^;NqE{}b܃L\BH82`̔G%)I rlllaknJ_ -xA$<e# -a)?. C".aR(MᐌZ=gj*|nZI\Q Qs0a^,:T"z>4uZFmn(yϞ/_WM#Ev f#xvhݘ}d ~M*5b*3푹92:Ć厀 `U;(жݧ>Qk7 "Kc `R%Dž"4_Naσ_뇻O?:6[~ uw<ǤQ kJj - >r/fX]'ˑFu[Ȯ3 Q' {9j|M1LGDťܔk6hOvd fs<~zN)uLv 9?J8d9d~qn/a$QG䙚$N8Iz'˹j4-}_ȡqw3\_äaW 5|Mg:c`{PLrV@.-9( DϼU?M)+!É˲+os^|4Sn,C+sx/Zn6;i.>JSO/xETs2E#o=v^UXKFT=@Psu_KC)̥6a5:f9!@bgZh8+6V -%3g/XN ٧l1*SɪnaybjJ72ĸɅJųT@ &}~8A8'e/dgV=*)4LQK?thF(x6coc4"!KEE,`$m睥e<T6E[6;h_q4Sd J$ -–?B^ՅLD4. /sWs5"eܳz@po"vK,."d}<&X~^֦ Al֍E_4c~O7}TJ;4/>2IwVL$C 9]9@~>@2*Z#pd{ )=Wkѓoކ#qwp2)ʑn6HNZe2O 'e2rT""~&r/u"el%Qx/G?7D $ bu^wuIaI=󣀿e :t{_xЇbh/^ W8 '?8Dy>FR "|2w\gGO <t7-&pQ -6tU{G{6%>UK]gJcgl0 vc]R;Wx'ۗ|w)WtAC{ kޛ{ȌQfI=b,` 輠WZE':֢m ܃l)k5*{>VLXHm&\%}| T<%t3ˊp.9<"[&} -`h~J2txlocRBc8y -7Kɀ,ܗ+$ٰ닭4X.ל}*o nKry!Eo햩-o$lrY2ԅ-R1N=Թ6a}{LX-mB;GNt[:+?wr7B6 'Bg*jB}QCYzSײSCI+釂 <a+J fn( C5ȯ+xb /00aKI^vGܣ{.i -]j:b!I-?'D=^upX*{ilF[)@N ʜsT!`t[h?|F ?4JCF\QU//5]qm]*#H\5t}A$(q%Ϙ#uyg|O, ɣ_k{6L[TeU}.PXf\Z"ʉ4 LVUV}S<3 ~H5]] G#DL.¢^?%{ƒt:^S6~wiڏaJ hz"Rgaɬ#YI:/PNK)n EKOAΡwƭ;^C.x3oV݄$ :&ͧI -p~hJ?}tpG!1a1 2~ TTj蓉D^ї0wT\%J`6q7Qx/`pi6C.ydH(~ǢN;oٞ]DTwk_tFz]?Aß;&K&@<#?=Ͻci<髑@O)u37쓩ex/j.ܗ(Dճ_vBe}Gp:*%,NYC<X(WY[멜#VMð%0,xћ)53ϯ&;kW2f?iTNv]$/xCItSQvݬ/vEiyKЈY+{@,B勺og"4b4yngS^n,pl6LXң*, -+\-ML,J𽒌_ :v3e1DȠW= S.Y r[qqWޱ+];5JI 1 - \ɢA#G=GbwRnfaIGU5͞ 32«|dyZ#tkS̑$ pf+G'Ԅsyш3$2=+-hDUn.j4V]JN Y,Uk)WZqӤ>%y0 >-hs GmG.d$YpH"#pY7hBT7UVkGꞡ: UV;'ֶXrTd~Rcl]q0-11nI-dcj (;egΧ5h,h;W%R>yp@O ilw 9bѲ#u~~b5wSآ+9s#ХQ _zʨ#RBPpt- fLy5Å'!BxBeTVx*2'K| =|DW.c=L9a~$hkr}+b<$6tp +~Q==3*&e09v+0,*gk|4C?4* 719+OAje0\Vl%Ȇ:9|fgG[l*uef_KH РDzA)۾qe, -o$񅯒B:ɼ+䔽MKW(&ɋ]x`tXp.UUQBD![wZ[rfzKX4T4^\$5u[a%#k#q7G)Cujt(x zD)e   w\ aj@%'kH+ )#: N7sHLq磒:|˚KwptbBB1A 4:?Yq֣m~R9x\?c$`*;\i~ Ćyꘃwa9(qgO<<Տrv%Z6A?JFNеrLB4#JX2iXjTlJozhrSp@R]jN*_թ8pFWy'l#VJn)7u~VSOjUhu3/ n!?3!I-%u6dʇ TJkMpQ<K~KP<%\ tW <$q|)~:_د}ۯN'Q̊%'m=/N@Px|K 2ꑦ?SmGh'ߺƨνw+T{// խd6=d;V!wyGt_O[rqR3h<-ϖ_Y2~`QBx>bu -{٨+ -L`Cz$#P̕+|$ə6dlAP]hRt2O7i=ĢÏL _4 wdhҧJQ@]}tI~J`:N :vn^)s4O]'.sorh@CХd.Ǹ*:`vjOv {;sw{KW"Hg<69COݬDb -h=&.j$MZoW)Y 'ʗ532~aΙq) /ZbZ(T,f$gھezZ{q4Lk1e4'%5ƑC# 7ŀckfطо':7_k"fUTpCl6fi0ts Ŏ̒JqiDe8Y7o# -$Ob%O.pVY Ȏ+U?/]8`)\4f' d8oWI JZe0ZL[5bR$.Rs4~9ń4rh lBL-i {PJ< _cϗAOOtÀ]h[`N[Hx|1e7C;O@̐}=TL4Q WK -55%3c=5;`z/>)"QTorj \ocƯ~~ޜnOPl>x?)WС^U$&N]AYz3R+ZSHWll=9e0Qu׺Lfziq0Z5|ۏ*,Md;w^YBaK>7-PK@_n:~.wp{,O%eh Oڌ9 _ q+~jˤ!i+xTU%*%Dᕘ!Q&&׋Eɞ:mD<`>l075v3D+[ZVP|j;./XSojPғ_9мaقFc7B3Rb%4 -we\S@)kd/V+ -VuS-g\v@Pd"SB#94HɓO RǪ\aE:^yJmgDm&A8ݭ fCꜱ\lp N[=Ž4D~ 8cJ -0lF%-_dKZ^EuyDeވ#Wކ!pp>SgQqk˶=t\f7::tEa5Y$v(Yr&.|Ċ7+DsIsppe@b nf&i-IW>Upn!^ Q}z>P'a`z>a>\At%U'PƪQtB$99&6F-Z׍q.=5 )&ąu :S5kLXWuIn7њe: ˒r**~Axɀ;>ۮ;>TZpf+&\f(D=d@!g{U>FFeׂiq[Ö+":,>|Lt48ڙmUy&[N` -c,)3s@@mY ̘t7dN?7K;LBy,^B&fPC!CF\ǹкh87txXN4}\a5^H^||(/T~)e1VE'+?_vً*lvTU<-Sqnۃ~Bޤw 4pߏob 3ƪ`[Ubr,\5Cy(%vy@udHVz.I=ϒQdPoB=ă2 7aDYMϭ ޡk_ΜM[~@1?=B!o/-iXq}cemw`pS< >T CH'Tj%7[n\خe'k5U'`0!qXH9cfYh&C XHѳ2QKjX{IeQ q* RrMvxxg3qTLss)vßO83CJd -3#8%6='鴼?%R' lI !\QӈV[9qEL"v6-!b>qsfW`~tQӠs7SCܟc n@D3~?$_=I>:x]<+n.0$7Y3 -e0o:ɐЍ>?/@2eNn~)3JGss`部 C -n:!Ц6CD=Lo NqbM%Tt6qs6U78r#I %';^.Q^qːh4.Z +Kw6ǢDC]N=F_m% -kqUDY)JS2ujTVXf`9-e_Bwr*]9iqG6Ħv ݼ(33[˗σ?ǔY% -^Ln2+.W_#P`ƫN6K&@ԒzC5j?9ف'Hٴ@{ -7jDE]Ws3 ?6ֿBlfyDng^5W aЋs¿\v`07?- endstream -endobj -49 0 obj -<< -/Filter /FlateDecode -/Length 2547 ->> -stream -xZm_o"1wQEҴ9isAlkjl'ɹn~}")Q%{{FpVy{HӌD#QD1MnG-og(Ad̾v}&ݿ}Yp-b,%!R/-N|z+G!ʛ4Jc}NLq͟,_>m\ ϡEWeOdQq9IGOU[vo2o4Aus2*;8Jp)J-?nEnXiUαe)\E+H2Fz)(V*dVf '5`AeBc}?E<Ozx:W@ RwQf -T=Bwsxp~$?a k3W'Է -6VPwvt[57{V|n-Z'P#&],[So2weUlY,i-VU4|,!v@,E‘q(tNiҨ(&@-YUqx*M,naE{3D$918U2*]E&2#\"w;Pb :Оn~S^UYr}!p{ɃM!ʘLU]qF"ؔw '3܋!<ÒXT>r(CQ}*kF=&C47W۴mgniIw6y,{4is̷`Sf۲ȮVLdLmYwPjRg -W.猝aIJGk-50Xw)Q!.z`vm[iMmTHS$G^TG8 3 -9EQ-?O܈4~q2FjD,=>0L HT YX_=OPL4|+cYPV叡%,R`$J#"#q - 'cEl\m!{U)L -)  -i1@D -Q3P8e n(<W 0FĐL8ߛ韮u ګggW$Hb -/N^Wrąƫ`V?Wc>< $C6 #yCfe*l[-3P΍Ayֆc$G;L_ݠ.0me @$14P׉*LjP9-@iXy_P:亏 ~*C؞a\n<ÐgZtOІp,E%#uU -1:Ifauf`` :KTJ̨9BMF8r2_3ݑ_+}c& 3 ^*]GfnFXbf?y\j*v}4z#߄O`\z*o>l9@kQj0;hn{sBS_YV_)w.Τ 7{ hչjWB#Yhaa?'S4K4F -7A#2"O:E$AjͼmXBRӓ`#42c2Q -AlmЬŇMBy_I(H Yw' ]z}:e %Q`,}8P %%9xI2*+sa: Pܻ(OL P fzaA䙣'cD6BKGl9> -endobj -51 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 697.884 278.834 708.828 ] +/Rect [ 138.088 55.316 244.328 66.441 ] /Subtype /Link /A << /S /GoTo @@ -717,172 +529,442 @@ endobj >> >> endobj +39 0 obj +<< +/Font << +/F17 40 0 R +/F38 45 0 R +/F8 49 0 R +/F39 53 0 R +/F40 57 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +40 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 41 0 R +/FirstChar 65 +/LastChar 116 +/Widths 42 0 R +/BaseFont /UYTHWC+CMR17 +/FontDescriptor 43 0 R +>> +endobj +41 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /exclam /quotedblright /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /exclamdown /equal /questiondown /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /dieresis 197 /.notdef ] +>> +endobj +42 0 obj +[ 693 0 0 0 0 602 0 0 328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 459 0 406 511 406 0 0 0 0 0 0 0 0 511 459 511 0 354 0 354 ] +endobj +43 0 obj +<< +/Ascent 694 +/CapHeight 683 +/Descent -195 +/FontName /UYTHWC+CMR17 +/ItalicAngle 0 +/StemV 53 +/XHeight 431 +/FontBBox [ -33 -250 945 749 ] +/Flags 4 +/CharSet (/A/F/I/a/c/d/e/n/o/p/r/t) +/FontFile 44 0 R +>> +endobj +44 0 obj +<< +/Length1 918 +/Length2 2673 +/Length3 532 +/Length 3311 +/Filter /FlateDecode +>> +stream +xy<eI}Gv1c %})%x0 &*%ddplgT9IPBEu=t}.4T]-G@[2"Lk'7@@ k +Ȥ=8*h 0`I padb`l4hp:Lu0BH 48"N@* +X۷H )Q`@<8H7C@2#@ 3R"ymIg1L"ҁ0Òyw<' S?҈D,.![F Y@ QA +D)K?9ZY{*H[ #D%Ā.*>#q ܾ[ym}~Ϲ$=/o7C!p(Ο~ˆ'H2p + X@ 13 T^ $S i`B `xۃ& E81D0oD%H0hgleE70(81DhC _)p`D6_"ս!ڦ*mR"-rQuQҌ~!;ሙM)o$[JWc4-J(x|~|ZV:5B?@?5]tFcY⦰ݦ*M՟7ㅕE O]E6rNxbуeǹa>a컩K +ޫTZGoZ+I:_*k9\YJs!B AߊX` ;{WۏĽ^60ʯr6|\r@1Ǖ|~mܫrkٖu'ty]Kc4>’JZk]ګ\jaY( XaKJ-L5BD3He +N}o K3ry" +Rʄl7޾Y Fd6 +qr+<|AӢA?J/rJMdo}ewZ0ybd2]hw/]dowE:![Oaq.^O+ۿUN]'B)tZۮrq6ꤙ[YRbCSor k/ 4 }RyU瀜_94. w8' K-m4W%q>}h DK"lo֙SE|E G\\hz9VZ}N8bm>Wv Yfsb멠|oݜ属QR + E m0ޛK]l~w4)J(dm%i!qu.zgXvBא:Y'+{gԵREjJZ% +r٣3ve<<'tH DL41PVifd\e>_bh{v.յx1CEXL@K%DȦV*=4Ηsjs(0)1es!qe x7dEf/-PlIzN(Sb7q!]6vS_;4h9 {@OQ>/Rܦ}aLh0ʻ7AZrG tDG,*:B[}%B[w,Ukr ZcQ)xޮ%Tubg-Bift=A%myI8Ĵ+)9ʯvE.*P3O) K%uM٘-;99~/F[=f>%vpWRL׍/jCDE51nAg 7,B +(қ&V4ӓh`KiCvY&i̅+z3~8Yι#|`nJHevY2Cr_csÔ{el[ 3ք:gJ: IOT[e lY-cHё:ҒbUCe{4؇ZU"l#{N^,PE}V +"b81iW2Զtflx[,ܘ4qT++)֫|=4s^^젂[S#lYƞ$u=qjC}6J|:WZm,޽S C>y?Dܞ`apsBkp򰉇 +t["Օ3 側IF.__}~V9> +endobj +46 0 obj +[ 671 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 447 447 0 0 319 383 0 575 0 0 0 0 0 0 0 0 0 0 319 0 0 0 0 0 0 869 0 831 882 756 724 0 0 436 0 0 0 0 900 864 0 0 862 0 800 885 0 0 0 0 0 319 0 0 0 0 0 559 639 511 639 527 351 575 639 319 0 0 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 ] +endobj +47 0 obj +<< +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /QWNWWB+CMBX10 +/ItalicAngle 0 +/StemV 114 +/XHeight 444 +/FontBBox [ -301 -250 1164 946 ] +/Flags 4 +/CharSet (/ff/parenleft/parenright/comma/hyphen/slash/colon/A/C/D/E/F/I/N/O/R/T/U/bracketleft/a/b/c/d/e/f/g/h/i/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 48 0 R +>> +endobj +48 0 obj +<< +/Length1 1418 +/Length2 8218 +/Length3 532 +/Length 9078 +/Filter /FlateDecode +>> +stream +xUT\۶qww +@ hZP;- - 8;xmgGc֊N]Sb8qpdTy<\LL2. 37[H#" .`?Q~QnA & *W@bkaP1s9zXZ [7@ + hU +\<@\<<K[ 79'G+@_aKwrqm 3i q{,AV@UL 6wUj}3[3 Nn  +zB p+d*oTuX]AAi6 5T9T7utv_3oM ` /,7!&hu +\\̼1`F_% 9r9B`%HV6@c#?7dr~Gyn- f# wHt #+M +˖M"?$s+@SM:HMeh&Hrs3 {(/[e`Z7̤aV@@5?ɂ@o8Ӆ0]?t]@(Y0W ̕o䅹a@+?Q/_N>8yr: Y77pw^bp@^ Y[rE͉:0C(9Vdl#ozSFi|?vN̜y0i?Vr +4}~ 6cAuVYe:CB`zf>:ML珑+xH+C"Z8vw"G W97LCJֵ!Nܝʼc*j2^F m 4+#Ͽv$΋t>~%8F@JpRGfT~KzTr1CiOh3i{Kp ʏ!Uɢ/.~.&kH8Ǻs8r*Ϊn +XϸbXۃ۪c/0l[XB>]%EG%<[}=FrHX}=֤>\ [-`Dށs6 ^SIm@td-=Kqp'7a||b+z&;Uj\&s !cL}4H'UkXSVy_tuE0C^̻~?bB(Rb2nˡEKCr?C>Y) Ε7>7oG^o{13q\}ѱ>M9awr% lЇp_㌆|3#6(B]GRư,S oUac?i͒U +n¹ XlG܍"M3,]1^4i3*gޞvm4ۂN!ZiX7&ѫO.&Ϥ q,i*OnPKt_vq-, ְ糒h!A dlj]zk#Tgm@q*zlni6wmV^clκ'T_Ŝ/FSj]эZik&Ą}XW# +h~ %MBt1WkEymỹPjbiίl;Uni=9Ty.pkK~iݹQ{V{"C6|/(e֗3H.q6\<s?)%TMe7+ ~LXdrei|0!YT)UH$)HEk%1`,>EIȼO[Ct6l83~1ğ +RvEC֢~ݗR,q,ό*wd-2 >R^0:9`uws 9Dxg4ZR}7i|{3y r~芮ʅN9?1XmtLfS# +CV{.`e}E+<0{if‘e߉i iY;EsrTaa.[һv}onp8\8Ո[4Ad,JWF:T](#t>jM܆)뙳; NH;g`_agE ք\!JDn{{4͠{ϟT- #T)gNJp_Wi +[<Љd "_G-qNW.ODG4=l'#酈a1bq?D%m&c:53dvYQ^?Z`\-ڇFC#2*:GlQɃysƩ,_A3;JE +ѢnͫL9DL>VKN7[RxռTT$::ײI[Fִy^>֯oy۳`gq@k ~U3W6KH_(7V&$N 5ͻQRHvgNm}D> +Ў`r&hM+ZQd0HBe<>%C*Ӵ|QTVb}U' s#"OW> W9,S6x)%|s@"*r^h1FcpArtVZ}x鑠 2N y A Kr^Rn#F2fK3rfldo QC܄os@Ixz\)+ڃ$g +̢bBMғ}ܡi߰*ن*#cYM.@n3;Ll>5?is<^ ڽ'n%y?xݕ찏W ^O.9x68k΁XU֪ +`|v f4S2󙬆',ZQ?$Y2%м {T8E`( Nc*MZL9^^yu++3ًx;2rWQt7{Hϕ4'*I&$Զܱ};fL.Jb)wz4 pme7!6k1z4c&Rtn2?jTrA>5)&#zlF#>YBpD`{i4B8b^P9Ξ/;&̯Djs)#zfC!L<>&n\EBㄋxe}RO4Ԗ>VE;%0TXn,Ili4u޾PBoWU$tCrAeA莢('$pP]"6T,}M?tדJbur]:⪖7*PJ~$K\CeR=YL A>&,juZC]5ř9%ADeq밵40㇘$7vYrl8D#r=HN{%',@D>}K0!Yhةv,vmAɤɾ :G 6r 4?%є'cZʔW_o/t$R\}/ja8_E +Ri"LoZ}GyrX$hEHB K[k$1JZ>;p8Iq2{B2; /K][Y, ,Xm?jr J MQòE䭬M7u>rlfuބ3*ĉ!΂J&AS+uViIh7<~60#Skc'ڬp\sK2-Э>-=u;ݑ,;a/f^EiVES쐱LT]A 3 Zm 뻶WhCLF6uǁ +;YL_8G)̇AVOF5B'L:kܤzip gG>wɘRrjdB ^zjэ{9>OTz0veeN n1^d2c) ʈ][,[6hNqƻ;$Ҭ0ΒbF(bH_Yl.JP.Sg[7VטKZ7'Db!\#]}u)/"D$ʖMqYX#i7 LJ-T Pb}FK檗Ap7۵j +WwQ']O\cj۬^s7T˹Z+Eb k}|]0ޯ˙f?ZQ#`v' L 8R>@q%Ig_ SHaXDe}-Zǃ*K\Ҁ] uy]&fI7K.expKh`{wk +u;o ~Hz#(dG {x?q1QVrc,:WGTjA*~M O"85"'e{Î +,|L U[UŖP xו/5;b&GyuDO9'~*.|_ϵ:2 +Z{&8螐 ^F0kI2!lwbǑBSRczǧj\bյЪc\X6t~ZA%4uUʣQZǏ*aōQ@Vӡѣ4.?D'mVW-=؀eeM&##OD~Z z#OQi^ 0ZObD7U7\=(B%hSP}2Ls!LDէpޚ≩uEjۖyǭ~O]QMII4ё5n*)B +#gJTM^J`*Isu +nI[r##)H/j`69D"R@qz%>;yX$ȽIMSiݹj񆘽]C4fִ`|Lc]lwi 8vv0Oj yP1Wu,S"ݳTVcW>)ŸKOŚy<*\"- +#lg\FEx߲#gK$t%P| M0|5D`xv{28z.i Y/6gPUhp +Ղ1=>RVq TV5#s&s +Ue╶ ̘X3rݎ +5SpˍNZo|[m < } g jlr0Y[&୪EhuR+f.?)sf.b[BsJuarx*/͌, +;-W'c0~y *Z&jq& +4[2\ 'o!g+,R3yWfPo&_[ѡZ˦j] ۾jˊҰN=ݨ!ͭ.5$kQOD; u[eTw^Ӳ~m|0Y,Tr Bn@֏<!Q{Tktg18i~D =.xQ_q PF%d]X?aRONiMEIv8VP tD 9;aװX;%kNى wK릩+;W6L=!r3 T!mUzOOl1mը[NH-Lx+kr^@Y(%Y"DnVעw6'!S|/My*;{&skBQ4HX&9Wĕ#)l)}uH{d]MHOA^dz=uTT$GaI3cvP)!w9u5[ 8 ة(r_/YO_fQuS8T'Y2j#aS<LP9֒ˆ4R*ؐ&8ܪXo>nv^UTTHbfxЅrOXw%DH/tWֵsP/x<~Zm;EeH9LY@ep9!}QJ ߲0jGjmǗV^d=A=W +gQv +( /m${#DX!,cI.c23TO㥩 Hg>/WMMKN4S pP۩4fK{NjPOE7}EԹ_pG= 5R4t9fx~yVkD J8I^ou휢k%v§E|So(9S0S(Ľp6CcELЧ' P}8p$X%O=-q/O0aOXKl"ӟ6G-%d5 ~T;=3 Uiz _Cj39б߸:ߪVWBj\azYZVN +\'e27Ws^Fۀ{yU5vRTJM'5ٷ$44>3>YKz:s&ϯ/6PF95Rs2t}kM +O2:ߟz')g|j4j{>AK@~ 2ysɽc uQy,shnX$Y\m]a|.||yIi ]q($ 3p +"#v+,~NH~wTv.>.b-r?=3)nIgk1x3Kh؟Uv'%8<2I5Ҟȧb-=Xteqi13W/㶄 )fҿ[&PJܿ+S٬ZCk^e[ ՔrKSL2rxT8'o||Ȣ;MK^8^!Opbt0܊ҧhFyqQG~M-Aɏ鉎SoP!hV8c/@ŘmYi[IoY-Q)J4x8Ŵ֕t –WEZ+ؖuD3ѵ -'$ὦ:K>1f~|p6Qdi 7h+۔<ڸrvm;m~C4\k:p"/7_G*c +p:[N&ͬ>?EA ݰ?[xKְ◻D< T|2q235qZx&L>n~IKɓxO6Gl_A4v/, ,s5;d!eD?^O +egZOJhomk-uJ(+^r0y6r2\cL\sr5ySDw;QI}c6t$,D_ Bfӥi9hv-0v~wS;Bx?`O4\ f.0iendstream +endobj +49 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 41 0 R +/FirstChar 11 +/LastChar 122 +/Widths 50 0 R +/BaseFont /VHQRDN+CMR10 +/FontDescriptor 51 0 R +>> +endobj +50 0 obj +[ 583 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 278 389 389 0 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 0 778 750 708 722 764 681 653 785 750 361 514 0 625 917 750 778 681 0 736 556 722 750 750 1028 0 0 611 278 500 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 ] +endobj +51 0 obj +<< +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /VHQRDN+CMR10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [ -251 -250 1009 969 ] +/Flags 4 +/CharSet (/ff/fi/fl/ffi/quotedblright/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/at/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/W/Z/bracketleft/quotedblleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 52 0 R +>> +endobj 52 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 683.937 333.23 694.88 ] -/Subtype /Link -/A << -/S /GoTo -/D (class-template-indirect-reference) ->> +/Length1 2007 +/Length2 14472 +/Length3 532 +/Length 15573 +/Filter /FlateDecode >> +stream +xct%ζضm۶tm۶N:vݽOw$#cfͪ9j)( :13q +*11232 + ;8[ي8p2qq1>X٘a=-̝ )I 1q02%5p67ad`MlgdaAO(hmM 'B%'GWcz&&Bc #gBC3 [,IښrW\M)e`ڃAf?Skl]M eMmwy51pߣFf&pp71Vp62'45v2WT_$DhS0uV$0:ڌ2Ii[ؚ28:xN-lM MmS5!4s3+_ @?@?Oa;9ZW=#fe$d7p461+ vq2{؛ fd8 D8 SQ9 vmfKV 'g!RBJs( g tCJJۜ jYmRlIGtQZX98Z#AhHxJi\2(5&[TcZ4\S蝌]w@F߼Pj:20+S:яt19/FMJ ͒Ck(=c͓ .S[؞?E ]WЧ bRWqpW4# _FzP Ñ]5;:Z + JȲo* =d(v`F[J%U͂Il8y0ԡp^_!JD0 \]:I+;jǽJ/&_mT;CVd%Z/^C^g5opR:rބg5q$e!^q+IOJ,z5QqAY!L(n6GFLH9 &Ɯ^tJ]G 3ˡu.Y,wwd(l f{Sb0u4/4 '8a`QN_g@SFoNOuɬa~ֆCX|t-]diNM7cCi2,|UQh ܜ ׅ4ɼ%2Dfv>OAKfa.* +ٝ=O"\R \F%ؼT,VD$ZF*rڃ*Q~1ǔߏ*ONH; +s9+[ pLx(zu/WoG9ڀ, if!x tqRMz*$/f֬eͭVʠ>|.pyxV"sٞ`+@ֿےSj~ؖ䓎Z_s7d2oz+0ŇDy|)!&YgBěy ҉kǣ/n1Df:FlN2wj1HLk! `2aI yV$Q얗=rn}!ət4-qGwnY5)Vs vAQo-AǍ$uR!pL}1Č +lGxX:y۬.=+W2UpwxG\N&uI3\f$w[Fţni+*SS6 Ӡl %: XWZ6 ,-V@_3sY95|эe,2<__ES繆أ'C,b"S_lG;eag!sJ0 +ƭyR`67 VCW(z +]<c껦O>6HmNLJFr=Z>O4J%m7b}^[DgqVk'S̃]ZPdg$Fmal?[l M=$Ufv)^Ţ?վ6CDSRֻ`GsܚU+u*dS,FMI^EA g@ '5ޛ2Lidiq\LoAk"2kDqO+Y~I(q)o*UvjG<6(ˎ.w\C*k^ԈEIqӈ" 7T|SN>zMjfvϳv\mi秗mhYb(_~r_I1йV7XW5+CZZbkxL\pL," MR#tjw FW]ƎPY7:?4;;ŷUW{lKRr[,B)0)H*4QoX<߆ZrQֿT"v9QZ9j6ck(zcVo5x!p9ƶ_Z8tџ-nty]1<ƿCbEYKb7WI[1JM7b$PP8eч (`qXlfG.&53?9U9\~`Y 8ʫ#g>b|P@!)efs |t,‹G$Kifh[*1[y?Md86V{Y> +P&&UVV UJ]BvLR9͔\X#/dyNY[5IocӚ/x C{ƻz_z2i'=!.lwDVJ?cuOmZAp _w5p(T(!~ld)*&vL c͂oְ[:=q0\."{WLk_yAG:g?tV3ginxfc /]3>R)aO #9T6s&:tiRn <_ϋ׿׫yskt3K춴~oH֝a4tE\&7np8ͦ +u}|=;!'a(0c܏lX Wq*Rշ8\dE/g`Edy+ +,[ +V"9~mm|ۛ㟅g"}PO V7lO+(ߙC2CL/,!^2!MY'Dmm9WX +:j%i\\Ύ,;%M& u{͙bi2uP5"8 01^.x؇l2|xp<,` +YMQ wؕuPњ7bf;QH7lnWtvfi`b[S(&C׵ +rnrqrtC,O6d"?򝠫2ʼW6NO#vgQ̠?Sje?}Om8܌ãL3gx% |Akf-uz#_tTa0 pP^}+@No^I|Q?EirC1+;f60֊?e :s4܌, smfg2L_H8AWq}Sk xP17Ĵw}vْȭM8#!;ؽ6ZsigGVOs_k>ƺ.y>k_\R KF}6z>ypdǧ}Ь XƳ?0!v$D}*>Fmt "~1ir`b(ԝAA&2EẆ" olr +5[Bq@rqdR$c̣T;%vD<*L2nStZحxvߵl=@Qa­JϣZY0RkarV̮pο0ueĪ$td\b"q| |7CaC~#Z{S| >!i qhAӯb&D]_r7ʠD༄ #kp[N)6 wZN®?}`q_6PK>fQS^wMW`b*eBۑa%@%q﫨DzeբL[Tx1H<@0fE>]5Uk=Ƕ@^? v~`@\tE rhHCt5x '颞T@h7 /&` A8Y9M5Cuo˯p*u?m "(LSg:e=_H F3]J&+=Wk-JVxED_U$$|w 㾜^'q;z֢9Ӟ\gV%<- \N~wXܾQ>D)mMMmtuM1 )^nN7+C#&g|vQ>>a'QLxN[r5Ip /@iP`kdWs*몸җU.[QDInDzqqL{1IS8.h͞gJ}f)4alvfm#>_rC_i띺4>>-²!+YWp yCmûJHl}x_DSF(yҮT=~6b(]>)W;pI5Kr5]V@=Eڪ3*/ ,cSb;@1tӊP,xVJo@ڝLA: + A)Ov8{Pʉw]; ݦUW%)L|5ofu/wuqnI|`5B4&h4IM_-]ZH2|w6V']NdV.h0g =Zu&]bZXTTX;ml)if +91٭ ,N(8E g[מڥĒ)Nvׅab(>l@XpћYZPĵwFȼ3L_p+~QbP2Oa+- sxS6ۭڢE.B#/^^ ^q8Dِ"+4s)*:BUxn nR@AOiAЛŮ6Ґ~'_ +'s+SofL Aˈ'WHmDDmNVJEF(j:n)ȳRd@tjRf@CTQ# MT,1InL\4Jm)Iu]s$ +$8vSs{qc5 +ue,Cc>`)o@2T߲݅?eC=r(}g&h::`%@QkQ Q"PճۀEEIa>PD|qq(<X*B#xhq)wmpҭ;h!\z>4(hd7GJgѹ%V~ћ\}k9_6"YlF ?=-)1J"J2%Pݘ="u?o*SWws4絁Ud + +w bUe""LuTmp_#{EIhQXݯy0p;>0Mw+XiHGlPBM{[]@@s|<1ʹkn'p+u1MזX I@<F7@vleQ-/NS!PU\c*;wUJ%`Z " @>Ss-#X= fTX$0%l<"t ͱZ=1B X۫Ql];W[ ,[e]/X>un:Քgalw٪CF4U)\oBrtxD&l79nV>S!K!K)V21q*TCIi*WbmRB/;_Wy3Ty ܳ_n(Leһ+,z^ K3{X ,&6O +U$<X97%YHao5#7p՚cK _t-ƹP԰3m7\uOO6_a`KF\zH]N /zFq{)+A=-OX +.ԥCAoͩA´ǧ {j 뗣0v')so2;/5B#DɔP_b7ZDϭpbK(T\mM~]@MNk!VbZ. d0V)yc:]$1R86?F86G-j8Uf!f,Q>rvN) s",v'`yf}õ~~qZ/O'oI0&gJ\daɂƢk_iN<;>\4J@<~*P|"9U3<47@F-FV&"țQveքsa/34$J= QZ_ OU U_ꔃz; 7YH,<"jC70 )XL{~[}r1I_){t! gރ2Ah ;>Qt`Z*[f  ](GȨ"!!vFk('LW*w "y't.~ҎKEלO&6vǻ(.p-EhӲ%)t۠)ֆ$-_s~l]XFݠ,~/IՃ9laA:ׯ ܱ~YZ"BH=C,3OOg9q|4rY'ڜ6uaa9*7cUW@+i(5W$ܖrouJG= !$?F7 gͺLIxtzɄV_oV壩杰%*FwC@-&RXb>^rxS>p[`lbL3]X? KJM{ {h,0Ҍ0.u逕-쪟kWܮNz~ iyW!AJ8hKj&bqyo/`Xђ=Krz[.=%聜)#JPYKFs!+Xc4C!] 9fF$iN .JuGwj\ADv@VߌN$̭gD;w{iM_LxZ뵎fabu,~nL'79>V#,BP?T +fy_D"!iOylC÷1.ö1?i.=~T=dP !ˏ. VbX #|i 8X"D[1v&UöőަqZ*G9kT'nkT"+Bv]< 4 h|zӳTLF{T dr7(n-QDhL^_̓IJCA⢋:4hܓURlll,y@Pq<Ƙ(7朞o"7: +M'C23@k{?ա]fEĿK 61iJmb߷=##w֛"wCw<{HGA'?<( i~!J$BY41VŦKH{RmwڏVކs EIˤu^։4557̆DTPPTW4.DΠz,3)75o~Ņ\?%ح_i,@ȝSPބ&*ђH \c~ǮTxPeq޵}fv=Lee̓<ǿOS #')V [{(٢%WW'ELJ@Wf}Y|Pm8i~Fq-v\'6qhW>?˙5Zڞ;1~f`N߶A,z5&:e@"~.=D +xFr=M + )I +AVD! ҠOabw[TixKe#zEK6ԽcL`Z%pсPf|;ɞSN&K޸ȜV*oY`y[ t +$cKi`dx2P@KQ~$ލ=3ՇT +CY2[)ң8[2Ԅ|<J9&~-[[OϙZ_4*]Z0؍-,[zt +oEsJeVڞgP^'/y9J41M ++]*6+R+m^ˆm~J_Lf; hUni]CJ)&O4 Tn3r^WkOS,f@MѨa 36 ځ *%}mơTGn*PcC4!wՁQ?{w?4T^R˙)wQޜsNxIzi'VN YܑʪfPfd>us*߉yh}z/hTp?ڃ{30fNy˿;cȉgq52öhղ݃2XuA{ߌP_uaT/g[+\_({㎉-Sfnv $䇞,`A0Kw;'="zf(JmFg|7D1/\Wr;JHYa(H<{)5HCs={_Dž-E*K4-w2AUL&LV𝳷ׇƑdznmt5=ltLh}BdMFD4o= wr?\/vӾC: +Y&fh4?m\!yڜ~Qٟ_AjząʭQAM}) B +y"(7Kd6^5`djoce+wC\ǵ5PkOWH6.!_Dد]41^oIё?Fکaگ-M§Cv#,bܺQMh1aixWqqn} +Le~+'ROnng7(D^G\MکO2 U5s$,/v,ܱ58zA{\촙LJ? T&%u9[ qƈz] +SФI7"mzrSQb4!;h~C,^+ G#hB2)ɨرG,w&.B_1ZF~,DϿ_];W_EH=6ӋIN^GDaTs<2560M*K9C"p3S!(14. +Ovq+WfFX‰;ڏ qLgy5}lBsSkqz_c<+.G1Ky<$4/9FXo'a`QZ%go50d)BaHgafT"\EeLU@\ҦL>o;oAkb 4 +W*/*s' +יBqwi鎗lАsu;v,2+?ׯTƉ2h.qPCԞcUYj:,=,L^euL YA3 D`/y&=;`ɒ@75Uw)?3Av!f}GW7!vƩCb"9hd9W>`j8TU^X,.G{0LN\NvJ pMmN[&$-{&EH=*ywR9PÏ +g0T_q'iS3ѕ#7q^{9q,OxpZd/e>IǎX" /,6a<=u |:i@ݷ7z]1b3$kD?3kaz@Ւ5~\=|z% >3]Q&3n}(qk \ p22Acԛ|Ko Jrq'&[u0FkY{LL_OuPN̿ E?tlfLh1p{0DӖi؄=U3 +"oR_uK1_ƅlj*/Bp3FXTd?HvG=uֱv=:~"=L]mF{~ fĬޱoպցMw1s>$ >tZwFlQo|rځ VHAZγq?W v ΁B*7Ȕh +@.m]ZƎ;f$;=5L+h~EuJ88J,Fm/*E':_\ൃh|,wo=~DJ>̛*N ҴIa}ib80ΐݲy͉0sQ|9\@YbqBH2nhhߐgNOYD";-=M!r@v,!N8RJ/No$DO/JgbT`ڶF&v+uŨ@4#F/Bπ 9!/穳1}iYH!HC"mIol~.[l,6LElcqXV+ҬR^gWX2FCAZ~IH2W*efiH\Dr/^L`fT; n3+p 1c @{h#d%}'m[ԟyos/8A(hk~k˗p>=3$%|R; 'aNP{IWɶot0(ȣbha 9sd_?ʶ&g{#fdRCM~lSLc!FbuTNI?HV~~]0@JZz +c:r (65. _4 +[hHy.r~$s܁΃ :+Y?r<h>yL=~Z{[Ò`da!ݚŤ,OlR]y? 5q.#)T7 7s?q-T6y1v|v`9*KFK.zGߕvޤqf5kX Xv^s7 gѰxsGq! ++"=\0&K4mw1~AZMgg݉[k|f8֝&g[(]`"_2I y'+wg]W?SmAq(bNN"|sS!Q]r,!A3ku ְ.oʁf+<`xEqEBR`'`_+amuGku +3O$" g/M l `d|endstream endobj 53 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 669.989 328.149 680.933 ] -/Subtype /Link -/A << -/S /GoTo -/D (class-template-indirect-iterator) ->> +/Type /Font +/Subtype /Type1 +/Encoding 41 0 R +/FirstChar 46 +/LastChar 122 +/Widths 54 0 R +/BaseFont /HWJQFG+CMBX12 +/FontDescriptor 55 0 R >> endobj 54 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 656.041 321.773 666.985 ] -/Subtype /Link -/A << -/S /GoTo -/D (indirect-iterator-requirements) ->> ->> +[ 313 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 0 813 862 0 707 0 880 419 0 0 0 1067 0 845 769 0 0 625 782 0 0 0 0 0 0 313 0 313 0 0 0 547 625 500 625 513 344 563 625 313 0 0 313 938 625 563 625 0 459 444 438 0 594 0 594 594 500 ] endobj 55 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 644.126 298.541 653.037 ] -/Subtype /Link -/A << -/S /GoTo -/D (indirect-iterator-models) ->> +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /HWJQFG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +/FontBBox [ -53 -251 1139 750 ] +/Flags 4 +/CharSet (/period/A/C/D/F/H/I/M/O/P/S/T/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/v/x/y/z) +/FontFile 56 0 R >> endobj 56 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 628.146 311.263 639.09 ] -/Subtype /Link -/A << -/S /GoTo -/D (indirect-iterator-operations) ->> +/Length1 1279 +/Length2 5859 +/Length3 532 +/Length 6653 +/Filter /FlateDecode >> +stream +xe\]D`@FFje F@AK$K3[<7]{]kk2% TT,*BA2{@2 .JHHHITHG/_I B\z/G Ap/?2 +0k' G{a"d@ zHW2ѿi"a/yўXS~I"d`7,AݥZ Q~zn08?S2/-/ + Uvu@b +!=5p @@PpWZo͵ 54<^4 ]L)W k111 6/Sw؁@hv2$0/u,*$pCuQw외*&@T7C 1o>oj&lt V1M}ƿI jaG_ :ýPp?? XYošMX(uR?l?+b]:"@,F VX]?+B ,@o^ V +=**nRaq) =HJ,O4uEz`Zj)111P  w'fVp(T6))"XhPWš9\9A1U:!yU=::g@Q0gWvYGYz~_ݹ~DlS7MHO|H,}~з]`fAڻ+;Rd2z+iḌd̢MZ +⇈`C"ԫQ3:{~V#?BmV1z/?qQG S|wl2k޸-:'aԌQ":9MqkyC>4/vg)娣y_vwaq[3@^mZlkm (ꆐLv:M'GN.ZvΫDI;'{ȭڑ9wWҀD_O`ݣM/K-sԚ򝮎QE:( +)ژr[nEJUu|T(.g1 Hd]PJW[F^Q-$"(g3_sa4fD٩7<ȯ,3>q{xg*DI 9zQ}ҀnE:m5'= )2?PRM6oSI2$ϟKޗd,_Uˢ7 $yX 9%l)kw50Jp +8NjΕOx}b'NJ] 6LcbGāAAqjtKrQyڋT*UZA/xo/%|{Н!r!eO`z'J[,FF#s٪1OkLwj ]Vyo3 50mxFw&Η>\A?@y)6K߫j`'ptNCQsb/A@|]{ uEJ('`:0LIʔ< H|N6o!r%rS.0uF܆fP6A)2Voc˕2Tn :IyAX~ΡgfkrO34^3a)t\5M=?k1p.WGI'@Zb}^d1Z/¸ T 0Em"@RKFi|ȢoL؀:;Qu\3/֞҈%]̪ƢݚA'ײ%Vat+WJ[iO0ŵ-,:ݛtB|\.s,oZDqyMȖ-0]=_.)NlT³dE~(\Nu,鎀Fb$4Pq~yxn 99iJ]'LJLAS6c +4n40{ZY Zϣ#[t/$1?߮9,)73gS9^Uv&^m3໇e _C̾g!}]fxS.,ƞ6[\ +IZ9~I/_]?5ґ}@iK)3W>oTo* ^MLaY91N4.A6sJ9 ouA(z|kyêFo; ά0 {u?X1#>BL5,؊-J/&dj)Ǽ?叞G G$N=iUo7.g 5*T|t;bYoWxӤ)$fpl칆Vk+?D֩e3Trf{a$HncmP{xa-;NiV?3uHmewދH$ex򹦮e Ӽ4-/E]6UkbAY߂&S9IHax͍W}ފ'%B/>>KQ]}lIٖ3!^nZw-y>;IO֞o: I28=iPKNa_>u7=$!7_1ʑ ݞ| cP0O{"࠷{V?qljili):>rȻi_q7( :K +~ςKmVSSE8sZT2C~9;׸DW:Hk~m N,8`k]#7esV?+jWGX)sfy pϭ? +p$gD9>ג yTZCFG_F.-|轇h$ +]] +/H}YMTCBd_JDZW4ߐx2dϓ|9WTT%μ?gpJ*||~[j٪I<TiwMxte  >Z- +%8Wco 11".=SLJjgSd;_8{LBd~KG-4mtѨ1SْpqvA'ȘRP(iy<yݮTnrpn'vy8lRcאQqX6HQDSS#i_1I6nhY3%gHvd0ې$TZRVJv5W|Hbv|f<掉kXTro}yhTJR8G_߻D`/ڽM)c6Y^hNO}6>?Bi3씝Q) Z7S~qbU.V{$~~G==vI1]̦$ ɪAmDvĔI+5M_[ z&4ӶY2W]r%FJaUÝJgN;E ~4JDUUBV:Allo 8JXbd8jiBuj'60]D YDl3kG˛&T)6 +&5ȸhոC1lsnB.j U_}q;|跌V0Mh*z}K5|k-uȣ_0 X#ejjO)iNIoZqMzI1CP`ҟx2)8t7W#_:yB:oӄ ʅ焀f ~+%f,\\KsEձHQ膚GZVgK'At82m*|}EE (oY]v)WE F3Ez;Bc +JůAUQhA1=8o2)p9-mmAP})8OB59Z*Lmiߙk ]`h1z(X,W=+zY{~Tw6f!R>حu7\aCimխ[N$I ]u^@D*w(/)~d'HNkܲf6w'MKX21p_ 7=fXS(ywur{E8t`$~׵^p%3ux[cp"MX.+&a}0|ݞ<$t  ƗVeQz)}1Ǫjh *HU!64oV8A}_@*y&w&%b O0 IJ$&I')DzhVyJL/ͣFNe7 *6|jtS1Zp+ n 3aK` s( 'eYJCf"𻶋i_u>$֢$vD~wH~-]qu۱7U(Nߧ[<8:_+L;20mSZ)%ױ*sD f~\4K3]e0spOh4AJ@Z!#'2n(9HGhDZPuoSݶlZFSni#omhįZwX٠?wSV!;w4_]oe>Fx #ib1Rˊ82N6j*x)X1O$ `L;4y~BU8c1c~v&8^l fcX֤aP舽wwL8y&AtH ۂ]%?tѕw$6)Z?R>+p}+3Y mdv5H P<[t؆ڐy i,(n_8vq@8s9ZJdsYǙze iܒa܇l^ OO4_Uۥk-;n;g?iskDR~ +єo` FuW3zb E?\1pdM) +"0K0X`<60ĔGރxgKJ$}L ]+r79oMBs^"tr0u,ׇUˮʌ#9х=B^bkpļP7Vx+ ^=a㐚cu!/T+K|iSYϒ…G+|al|9(odj}Tubœq_ާ}_?zXA Fgo¡R|+`'|Hlq@fp}X,R{ tE᠗ў /5s4&M&2< ".?e;k^Kыd2M. ޹BMfF0 +&mjzv~1S,})cl&=&QLUC}Xt} +<4f ˋ4>#9$˃+{AMߣQ:9f`S~RIqvgK7E,sBVʸ;hDL[hӬpM9>:՞R|jTв_(TސY'~w<60ăiT\OS=f1@3?FeW.>:ـC1O/D( +A{@d ";Eendstream endobj 57 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 163.458 616.216 228.404 625.142 ] -/Subtype /Link -/A << -/S /GoTo -/D (reverse-iterator) ->> +/Type /Font +/Subtype /Type1 +/Encoding 58 0 R +/FirstChar 33 +/LastChar 124 +/Widths 59 0 R +/BaseFont /ZVXQHL+CMTT10 +/FontDescriptor 60 0 R >> endobj 58 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 600.25 323.068 611.194 ] -/Subtype /Link -/A << -/S /GoTo -/D (class-template-reverse-iterator) ->> +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /dieresis /visiblespace 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /dieresis 197 /.notdef ] >> endobj 59 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 586.303 316.693 597.246 ] -/Subtype /Link -/A << -/S /GoTo -/D (reverse-iterator-requirements) ->> ->> +[ 525 0 0 0 0 525 0 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 525 525 525 525 525 0 0 525 525 525 525 0 525 0 0 525 0 0 0 0 0 525 525 0 525 0 525 525 525 0 525 525 0 525 0 525 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 ] endobj 60 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 574.387 293.46 583.299 ] -/Subtype /Link -/A << -/S /GoTo -/D (reverse-iterator-models) ->> +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /ZVXQHL+CMTT10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [ -4 -235 731 800 ] +/Flags 4 +/CharSet (/exclam/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/colon/semicolon/less/equal/greater/A/B/C/D/F/I/O/P/R/T/U/V/X/Y/bracketleft/bracketright/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/bar) +/FontFile 61 0 R >> endobj 61 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 558.407 306.182 569.351 ] -/Subtype /Link -/A << -/S /GoTo -/D (reverse-iterator-operations) ->> +/Length1 1761 +/Length2 10005 +/Length3 532 +/Length 11023 +/Filter /FlateDecode >> +stream +xUX\ qƝ,@pơqwwwww5.{9s9s5\V}Wi*2%&HldUU 3+(l+nyy"v6. D۹;X;h 9X A65 *`c ;3@e#dŒL,F 3 [$dlM&vr98Bk &`[kw E % mZ m,g l{:_r  gq205XY8JZL,NΠc;@vo-5r s*Z:_fol@@DW1 [c ``} ,lM@nDo)eg@ mX m gli)+dk 2u'AAplRw`1N8,v *B?T,ֆ;mA0'8'_pBpXgۙ 0r@z51hd>D~MRN7A6L7A!LqPM}UM 5~? +GO Yv0/o4LhB4@H i?fB@4!.+?beB@r!V XF6r!V D_"JT`bcs@Ƚ>Z;d!++;ߩw%o61A 71ؘ?21G"5=YSB]l;rRpD+F[ۥ;#[C2chp-5;2z}IG+zRde(W p3}>BN;c6ѬIKt&|uq(]N*ȹ֛Ω-nWshxO$Qa$ѭa*YپH\& g( +Rh1<^O47&OuX4F6{%w+jyQ$A?cV_u#`L`/u\SpR=|M*j-rd&hݘFS!L!O4=فE{/eIs.j+b +F,-N!?fytw.ޫp[>Dz ]^ŻG +Qlh&)c+13ysZJ ZѣsãbXۮezfn׫,c.Eؑ*yo3^k46BW=ǁE:ip}(9y{ڰ2ʊQ7ƜPT#4`|5q~箅U؝ykĩ.OoRoe@߉i@4F#!e}\f`çPz[!.8z!Y.?A i*֡,61إ T2Ñ9ıN.5L.g`_&Og50ȯ(f$S\yֿi.- HFWL:\E<Kw#WGYʁNÆcY;4x\A7;e'EY:!w{4+\ !U(Wd: +'ß'LͱnPF³>AOfvNvw4$QfD|& ƴyN"Pv>gwR кT.ugZ! DA(YޠܽȢW*BO-<]*f^iz5݉]"GC+;fPjE;g%`-mEmN_oRH ~^}Epב# +^|*d󴠡z`(1{z҇ݤkzw/8᎗pIRR\"fjÅs(NlDUɜ>p~Nx]g<~xRk'sBM1HBu7"_?x +2?<|Hr۔5jNKW g&m^0QLrgzidq1ه$e3ҷI/F0 ~1A,x M PiZ~SIWLW OM-:=%qM B'#k/XN0ekWyLѻ]!{u-g?*PJURbX)M6Afk~ 3vz. +Tcoě΀Ex¡]tW:'\׌q,>R?&r\C0zeu~d,j`ȭ |OB3}̣oUG,1x~wDAV{]6imjUŗ"okGOѪ'ZFige5na{e4YT2^ ^|DHҕC(wk2,h1ޯ!w%H;5/TB-(0=q;]"HFIG:K+KvƇI0eWjC' +tq<:yT G`o Ҿvә `}oq!LK;D/f B+y >gGrkzՔOZ!F1T!?-(@L4~"|:#pEY%$Fy)^m=95D8kJ!K./ 2RO8)`DI^y o5 wȻ[jLh{~[}A0}["s_mW/N {)+QY܈֤Or^Ƨu^*[{g~؄J@UQ&fgt&o8养 %)8U:m-X}\UW34zI=GܵyJz\,k%Zb[Ѳ3UJir3"d(Ь2s!)]qɌ%MGoC 6d]I>ԳuΊe~^@B 4IB:~H+Gv|fpb~t:NiҢ(p-qͦ~(HԵe^ ʵusNQKdmmh"e{Qʞ<;B?)ǯ8fM:swVQt6 dIڔ?iRԒa)j\Srvt S"W!pxpn{~d, o1S{1.[g0i7.O(Y!s=EvHtONg'> [(Qv d5oN TDo|M,΋|ݢMAEW?D\2ȆL_$aqg8cU IKd݀ޤ郎FT\y + M# ltDH>B>CߐO̪N/5JSDDd,mQY RdžJJ;T~pl^oFQN;tf+4~P3l|CxZҬ.b9ɒ=vN<slY$:suBn7b4L*\ .P s | J>\32KuȢ_}/:'8"vFx0a6Z0(EbÜA{3߅xL۟+]r b'#2i;,e><n7qAL!k<" ͌Q7+<TxD:Z >fmWoG/_3mp^_΢YOW uʸd=xQl@Gl;>J[nF(Lȏq{Bfn%۪)>7KP6E-n& 3Yf/8x!N/Gꘗ/M9ǚwf͆/>;f4K.@|żE^=iF}F AzYvMjӸ|۟dZ$!~/:dFpʿ=/vZ⓻K9G-i=ݙ~Vj:9&)/bsUx[z>ItnJvB fZLQ~VpSoWSLlH(;3Bn=]]37G*>/ׄ=!ՓgUyu!Ab45/iUb }0M@hk6g4S*PWv2f-%{[>5Q؟]d8VIJHj̽MDyl4Ywϰ2qD߭M>M]O^NzNnF,%M_>*,+>ok1@u^9Zoƣ.-mY?fe=+fzi[<>).$z9LL]Ǻ|% _2i0|^߆s FJ_`pULS/3wcR,#DS?Ѝ-|uD0lɈi㼸([\ h.OJ 2[v+ђw$GRO-f3hSS9/1 -q IP7߸hH}40{[eђ*'IwG|ndeAuUS +xG cxW<rq9J3"ll#iwu>qA䦠 ΄K>N-2ѕK.# @ɞRJ#/Q=~hǕ'ԛs0O0 k-K^7ϙӼZ.3ӂPo7JчrE#V=5_yVxcDȁe]=d@O[7&T~9}fg4&QLSE5͓n>c4ŭUڷmQlҟ8J3G.2pcSYiXAj,fu'[O{wrtt_'Eb +jG<^؊|H_9nIn;mOq2J$1ZN 9 +38rJ +նeȇ 8i ؔ|l3Ȫ%S#s&>yms N#}b+THNjqchx6%llUžT@tϐ@5MܨOL⪼: 1=;q(yca!3 |9naiiH\dA{iѐLVd/\Sg5y}Zv57GJBW' "ՎYZtu=(0>CQ+LѤS=iCŮ0~Wi,k95iq7!4|u>Фkxh'oԪ=ThvEk9t(Y|:F23xX3{z]oH|T[AzQ|.r\3Ұ9~hAݛoiL(-Ȃ] +!Bf9 8+XaX_ɐM{"?"3SCm#ll>RGـUqjAcHj4U`%;ځ*2+1E_ܝ<:OOmwG ٵa_ӪE:h<CZHPg +rR%(Y G)e!G]19[o 6Q%jՎQmn..F=IUI;~1WXp]N0esD`|-.!>4\CܳAlcS*BSfKz״nJ1KƋ8YjB|Fe֢۞99@,(;_l 4hTQ]ǚυ1A @_7/bhqq-9qaA}5pu[@G;倓X)ez{.]ۃ5z +'#(yPG3`"wEVL %W2Z~RD]mbU[qM.=s\ ~ BL &2}Y1nj}㚿0x28X>㿗:oQg6qrfR!z +=Oh)N;pP(hW"]S4v3u*s~fj< ^,# nEDT5%#УMn 2lUmuq# +}>LѼgxII(m#S$v+t6Dl M6ұRm0Gw62TɨyCKcsGR4úX͜f\wzcǔWMo0,ަ\GM:%|=Z5G?-x%|teW OYY_EuKG/ 'xvۍ6V\.hN k~_7ނԌkR \o8#b`ޛ1fkG+#۞=7|+S^߬mrn,1AGױ2"c +'ФNɪh'G(-;U@g<~@qF3=>Yb{wl1BteR&XGۗa ʥz[Ypq#v):5 YaYle+Vf֨SU&_]hTaGX=t%m&}E }Gᬖ.=ӭ&$.XC:TϞGU ۡkДq -nv`(W+ҋR]2=H Zxr ]͹ANynu<_shSC`W3rj?XrI,kYyS6s\ԑX9VsћV}sf߽}#~RjX(*c2$8f+;ś-djI>3 +}YŨ:3K5R״jɜUջ{WN A(Ⱥ4☗uh-<~=fC/8g2ALhbI.^xxo~X5e-rɿpRԘ`(=uo#<)y̻iޑ|KŻ^cJIٲ=g((&ۭEAG,fP [}is[b徧?c3"Q+Ƈȿ=CR%W^^bV3t rjĶ@+gzuxs0otɹښB|H +~u֪u~j^f7fhFj^dee Kj5Bub݊}>M*Wgasxg\l:aH}^ZL+r +#<( 8Wi7BPM}'ʳG6q}a>wY" ׌n~Iyw\y}ydܷ)U_Q?bE]o))ĩ\TG&rF b{ji`BۺkLcjY}A,i|_'%kJRJZ6T!nG$s$FUFwџ"w4JnعfjǻCӫj{ERDS@6yU2(LKwVК.C9GКR?l:WV5‹k(u.u3R!زK1N͍]]~)x'y|TCdYC`;"[ js9Lj6NJqG=LCX OrƚMiyDjبP$ IExAgXFج Y3l'kԐMk =sgtX-ʧp?nye^UhNoT:\'HYҴ&Smȹ'J>2OWOr0]rRطD횘yy`3kbI:J01 +E yK[T ǞKW'?aZתݮ=J`DVaeL Jr7 [ 6VH endstream endobj 62 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 163.458 546.502 238.416 555.403 ] -/Subtype /Link -/A << -/S /GoTo -/D (transform-iterator) ->> +/Filter /FlateDecode +/Length 2953 >> +stream +x[mo_o܆Jh+Nh&V`?Pwt:>;;/| 3ﳳ̻ OaIkƋ,Yn/P9gyg 4SB$ D iFȤdo,\'׷W"!򇶪v_?%S\>dErY.UE݊.VX^y\u$Ӏ5OTL9ٓ.ZYI +s2cLzh @w@:<ޔBJΟ ,k'1KdXn}5 +n +x#{vҾh=*ϤluvHC!sVh?$=/llr̀rR-s&2o3K1G\zE?Sªlo}.P~7 '9|&gLkaU 7a +Z"ڀkX z4لZ+{{?!5@unPV04E& jZ@ܷ&n{jw%&A`H4I u ++L)BA3Ŵ"sߥRm\rR<M*2ܞHGk`ع.{#Sح$Xb$k3Qfqk?D:/'}Q0 @yƼ5  JGZ  ja5B5Iϱv(uEOag`őy^9dFMO\YɳI JkS@1%Retrl˓Lpe+gMoۥw&ZiSu +E!zzЀHFiP* 5O㒜x\fI}B:$ +vF85 WΒLffO߫[qqe2IXT\cuIS̬|UכAX؍Q(Qt" )cڳM5amtu9.D~wwK@T$"AQ`ƾ,q_=ٸ!Ӯ! V+@"eȓیl/$rkspF SB8@n66\p%nq?`jwl=e'lwU34殑2 sدYY^jOd +7`Oϖ~sܾuřF4: A%J'qd}]^`*qi2fɏ8#H>>#,H}Q2C2Mz ShsVH,)Li>~nFPs x]{8 'B #g>yiN_Q77xnʦkar9OT#)gd15s6S>μ=dsvŚ3Ș!myHgsL>Mqv၍\#}PEcg:A>;pdz22  p1n5Gt.7,yHlВ^A&?Ӱ j3{7Sʊ1@=Q&W'9?6!\% b{Oۯ]:׻єdR@> +/Type /Page +/Annots [ 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R ] +/Resources 95 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 101 0 R >> endobj 64 0 obj @@ -891,11 +973,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 516.564 326.854 527.508 ] +/Rect [ 138.088 772.301 300.397 783.149 ] /Subtype /Link /A << /S /GoTo -/D (transform-iterator-requirements) +/D (class-template-indirect-reference) >> >> endobj @@ -905,11 +987,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 504.649 303.622 513.56 ] +/Rect [ 138.088 758.401 295.167 769.25 ] /Subtype /Link /A << /S /GoTo -/D (transform-iterator-models) +/D (class-template-indirect-iterator) >> >> endobj @@ -919,11 +1001,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 488.669 316.344 499.613 ] +/Rect [ 138.088 744.502 286.865 755.085 ] /Subtype /Link /A << /S /GoTo -/D (transform-iterator-operations) +/D (indirect-iterator-requirements) >> >> endobj @@ -933,11 +1015,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 476.763 218.302 485.665 ] +/Rect [ 138.088 732.54 261.072 741.451 ] /Subtype /Link /A << /S /GoTo -/D (filter-iterator) +/D (indirect-iterator-models) >> >> endobj @@ -947,11 +1029,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 460.773 317.987 471.717 ] +/Rect [ 138.088 716.703 276.044 727.286 ] /Subtype /Link /A << /S /GoTo -/D (class-template-filter-iterator) +/D (indirect-iterator-operations) >> >> endobj @@ -961,11 +1043,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 446.826 311.612 457.77 ] +/Rect [ 121.151 704.741 192.606 713.541 ] /Subtype /Link /A << /S /GoTo -/D (filter-iterator-requirements) +/D (reverse-iterator) >> >> endobj @@ -975,11 +1057,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 434.91 288.379 443.822 ] +/Rect [ 138.088 688.904 289.936 699.752 ] /Subtype /Link /A << /S /GoTo -/D (filter-iterator-models) +/D (class-template-reverse-iterator) >> >> endobj @@ -989,11 +1071,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 418.93 301.101 429.874 ] +/Rect [ 138.088 675.005 281.634 685.588 ] /Subtype /Link /A << /S /GoTo -/D (filter-iterator-operations) +/D (reverse-iterator-requirements) >> >> endobj @@ -1003,11 +1085,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 404.983 233.804 415.926 ] +/Rect [ 138.088 663.042 255.842 671.953 ] /Subtype /Link /A << /S /GoTo -/D (counting-iterator) +/D (reverse-iterator-models) >> >> endobj @@ -1017,11 +1099,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 391.035 328.149 401.979 ] +/Rect [ 138.088 647.206 270.814 657.789 ] /Subtype /Link /A << /S /GoTo -/D (class-template-counting-iterator) +/D (reverse-iterator-operations) >> >> endobj @@ -1031,11 +1113,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 377.087 321.773 388.031 ] +/Rect [ 121.151 635.243 204.118 644.154 ] /Subtype /Link /A << /S /GoTo -/D (counting-iterator-requirements) +/D (transform-iterator) >> >> endobj @@ -1045,11 +1127,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 363.762 298.541 374.083 ] +/Rect [ 138.088 619.407 300.397 630.255 ] /Subtype /Link /A << /S /GoTo -/D (counting-iterator-models) +/D (class-template-transform-iterator) >> >> endobj @@ -1059,11 +1141,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 349.192 311.263 360.136 ] +/Rect [ 138.088 605.507 292.095 616.091 ] /Subtype /Link /A << /S /GoTo -/D (counting-iterator-operations) +/D (transform-iterator-requirements) >> >> endobj @@ -1073,11 +1155,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 335.244 260.095 346.188 ] +/Rect [ 138.088 593.545 266.303 602.456 ] /Subtype /Link /A << /S /GoTo -/D (function-output-iterator) +/D (transform-iterator-models) >> >> endobj @@ -1087,11 +1169,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 321.296 362.221 332.24 ] +/Rect [ 138.088 577.708 281.274 588.292 ] /Subtype /Link /A << /S /GoTo -/D (class-template-function-output-iterator) +/D (transform-iterator-operations) >> >> endobj @@ -1101,11 +1183,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 307.349 355.846 318.293 ] +/Rect [ 121.151 565.746 183.418 574.657 ] /Subtype /Link /A << /S /GoTo -/D (function-output-iterator-requirements) +/D (filter-iterator) >> >> endobj @@ -1115,11 +1197,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 294.024 332.613 304.345 ] +/Rect [ 138.088 549.909 284.706 560.758 ] /Subtype /Link /A << /S /GoTo -/D (function-output-iterator-models) +/D (class-template-filter-iterator) >> >> endobj @@ -1129,11 +1211,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 279.453 345.335 290.397 ] +/Rect [ 138.088 536.01 276.404 546.593 ] /Subtype /Link /A << /S /GoTo -/D (function-output-iterator-operations) +/D (filter-iterator-requirements) >> >> endobj @@ -1143,7 +1225,175 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 222.513 168.375 229.487 178.716 ] +/Rect [ 138.088 524.048 250.612 532.959 ] +/Subtype /Link +/A << +/S /GoTo +/D (filter-iterator-models) +>> +>> +endobj +83 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 508.211 265.583 518.794 ] +/Subtype /Link +/A << +/S /GoTo +/D (filter-iterator-operations) +>> +>> +endobj +84 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 121.151 494.312 199.303 505.049 ] +/Subtype /Link +/A << +/S /GoTo +/D (counting-iterator) +>> +>> +endobj +85 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 480.135 295.167 491.26 ] +/Subtype /Link +/A << +/S /GoTo +/D (class-template-counting-iterator) +>> +>> +endobj +86 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 466.236 286.865 477.096 ] +/Subtype /Link +/A << +/S /GoTo +/D (counting-iterator-requirements) +>> +>> +endobj +87 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 452.336 261.072 463.461 ] +/Subtype /Link +/A << +/S /GoTo +/D (counting-iterator-models) +>> +>> +endobj +88 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 438.437 276.044 449.297 ] +/Subtype /Link +/A << +/S /GoTo +/D (counting-iterator-operations) +>> +>> +endobj +89 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 121.151 424.814 230.159 435.552 ] +/Subtype /Link +/A << +/S /GoTo +/D (function-output-iterator) +>> +>> +endobj +90 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 410.638 330.315 421.763 ] +/Subtype /Link +/A << +/S /GoTo +/D (class-template-function-output-iterator) +>> +>> +endobj +91 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 396.739 322.012 407.599 ] +/Subtype /Link +/A << +/S /GoTo +/D (function-output-iterator-requirements) +>> +>> +endobj +92 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 382.839 296.22 393.964 ] +/Subtype /Link +/A << +/S /GoTo +/D (function-output-iterator-models) +>> +>> +endobj +93 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 138.088 368.94 311.192 379.8 ] +/Subtype /Link +/A << +/S /GoTo +/D (function-output-iterator-operations) +>> +>> +endobj +94 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 222.836 268.399 229.81 280.354 ] /Subtype /Link /A << /S /GoTo @@ -1151,190 +1401,140 @@ endobj >> >> endobj -83 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -84 0 obj -<< -/Filter /FlateDecode -/Length 3012 ->> -stream -x\Ks8Wh ^gvS-mӎj$Q!x~O"%FT* l||"?U3gxr nݳ_~TQJJ00=^}*M귻Ap|P9+\4:2Jh&qT)ݳkuBAF ¬Lⅼ5u7Ozh6u=4ğ?J:/1R}q׮CG%Rqe6*0CO,8*R2N1YmW]0$E1$HYP # - -Uj+\QrW뫿 Q%rjX<5]}HE4Yi{V2D8ͳd?m#Ex۳-IĶtv `a!Q$煘XϓQ( gtCӖH@}Sai4ۡOaIs„DK\ fR"ZW/s2YE@ tM .yrcOdیSNdF0@\:BOXY(3qAX2^ "q&m+rn}F`PSÒA;638VX[Eye9t:RMe2 -Is5hOJ -}0o&zᗾQ"K_bX&9_B@-V +YHWI v y"zS=*ҹG zBM^3c3V×Ig[3s/0ah# ^[) zo;Z>5/}2i?|]=^n o^Y#uU٭8CGx k֘è"=èF^^wS@[ f1}ZzMӏ/{ Cm*ģon^Ls) %FG~'|I=3Muz[}̑llj2>o}K-iZnukҎ}mn:}z2dqt3r3zVnCH2{e9bG{ -&q }wO]1IOH_!cӲ#՛!= \ZtT R -@JٛNm.qHyH26Y"ZݦvM CkF DoQ-i@d!NU4-뇿S[=,ڲs<#\,>-OqDa}/#t%CcB6:m~om>f.bcbh?;dX_S0Aa\.Q[%NBa@O L[H1b -=:<z`)4!P3U*Gl2@5nntI;xw)|4_߿%Ey/8ݽ۪} ]U4*A<)*h={rz28eF\mg0a^7tآ׼ZӨߺV -ŷ~`^p}xJ1FH@lijz{zM/RQ Rw9Wv;jU)XNd~Ygt~İ^ uX -,gp> -endobj -86 0 obj -<< -/Font << -/F38 5 0 R -/F66 87 0 R -/F62 45 0 R -/F14 88 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -87 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-Italic ->> -endobj -88 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 89 0 R -/FirstChar 15 -/LastChar 103 -/Widths 90 0 R -/BaseFont /ORUEHT+CMSY10 -/FontDescriptor 91 0 R ->> -endobj -89 0 obj -<< -/Type /Encoding -/Differences [ 0 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /arrowright /arrowup /arrowdown /arrowboth /arrownortheast /arrowsoutheast /similarequal /arrowdblleft /arrowdblright /arrowdblup /arrowdbldown /arrowdblboth /arrownorthwest /arrowsouthwest /proportional /prime /infinity /element /owner /triangle /triangleinv /negationslash /mapsto /universal /existential /logicalnot /emptyset /Rfractur /Ifractur /latticetop /perpendicular /aleph /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /union /intersection /unionmulti /logicaland /logicalor /turnstileleft /turnstileright /floorleft /floorright /ceilingleft /ceilingright /braceleft /braceright /angbracketleft /angbracketright /bar /bardbl /arrowbothv /arrowdblbothv /backslash /wreathproduct /radical /coproduct /nabla /integral /unionsq /intersectionsq /subsetsqequal /supersetsqequal /section /dagger /daggerdbl /paragraph /club /diamond /heart /spade /arrowleft 129 /.notdef 161 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus 171 /.notdef 173 /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /spade 197 /.notdef ] ->> -endobj -90 0 obj -[ 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 ] -endobj -91 0 obj -<< -/Ascent 750 -/CapHeight 683 -/Descent -194 -/FontName /ORUEHT+CMSY10 -/ItalicAngle -14 -/StemV 85 -/XHeight 431 -/FontBBox [ -29 -960 1116 775 ] -/Flags 4 -/CharSet (/bullet/braceleft/braceright) -/FontFile 92 0 R ->> -endobj -92 0 obj -<< -/Length1 819 -/Length2 957 -/Length3 532 -/Length 1536 -/Filter /FlateDecode ->> -stream -xRiTWUr\A}(dYaSP ! N&`!ZѢ( V\Pb,zDzlg3}ݹg^SaЛ"{?rP.!1 (*|g7T&#`1 JH2~ S %# B{O@ TA:\EN :!pquV U)`˚ X8E*r'ػ 05P[P0e|_J1%~`Ph5iG&R~s~'ʁ]S2!; -ʛ@ܟ`d@)T$> -_80kQ݇51d?jSͦDQȾ."eNA0ƴAl%q( Hj԰y\b#&)+N06Z߁hLPW?^vw4qՉNYwb0IVCO .A4 IoL?r(Cj(L^* mOv[7J>DXc[X=cVMRli:uqfGJ/W%72.6̓_,EG +ػ"(Ss9bA-lzIEQTs}w3+nnKoJ[]ȍk^im<;tɋNe8a&P:Ԯ×m▥SFg,zr0ҤVIt% t[,P^Z=WmkU=f0~E~i}k6ɼ_=̍[ kn2iߥ8޹.ŷ([U .OJ -9g3בVK&l>_?! S@f(%FG!Jendstream -endobj -93 0 obj -<< -/Filter /FlateDecode -/Length 3308 ->> -stream -xَܸ}2oku5&ƒFb{+wv,Rji=6# 2 Qf+9̠jhyq[ Vlm^J9H`Vf˺9BgK;{eAoa(8Όl-G[{IE˦膢("pxÄ.neG -/|5- BF/G%Ӫz웊7T4}mfX۝[Tb;pAK_CW$hgB Ao>>733 w:zEsb$Ddi8IY - R[V+׎(P C&^s~/b 熳{QF3.MyGǛ_2Ԏ9ra.sqyʖ⩬Z98DdAV?ȩjIi2zŹZT hdfWY a8Wƽ[cm&jk*fU{46zau0P5hWQSôaqVJkT|iBc3p*zC0SJ+j.lQ?vC-4-Eax(4aVFZ7*}/h{~YjGܕYq η*0s" -dCisӪt̩q$A% 0 J9ik"L'x8Jп|2/ITa66x]ks qN8Uɒzp(lKG爀b9Rwf˙< -p.ϳ;F• Ʉ-z^D-" wk5;:Ԯȼ $`p^+Q<)XZ1H"2ޢd".{ѹA2dF"L̶SC5˺<[_zG5!231pO)|0vw˶WJcDHX `N.GY^|fF<\ts - v~K.8h_7"/ a˱ៃ'm\+c2HQT-ǤP|6+"Ic՝^`ZIf2 $fXi ?3ߋ?*(Qj@ WXw ?;-3=e;.6ttP>ь1kEP$G(Ȋ#9zIoRĎ80-dMGtqȊCMJ$c< -8q۟4;}fҍ8~`tRNĄu\c N3l&s ĝOh`!(\Z'b8t4'nXWяmpފqŻ&kJ~cӵ%~eYۛrI߂؉hB >g?6~{38W6}*٤ )H -Wג<@=Psqcj D17c`ZhC1Kvw%lp^# 7ݒr{]L9j2l PEwl92=WZ X.D FIBy|%y|aX݋׼CEyEt!P;:j(O4eK] \̽[y5m]Ί`E+٘f.68%! - -/N2C/-㸐_%$/ؓQKNCpʼ!LV -L+NV!Md=62,_`?JgiIWOrXq"hddWkd eR$+?;L}@u623:Ju'1Ŧ_>c]3' 8V7}^ˬ_ v_;yMٔm?YH~є1dDhkc<}~czQ@v^|jGuDZ((dWt)o񯔜ƦXт(pB X6TlbNT&{S!~99χ\V6Kj߆|W~&B=ԮM⨔Nz3gaS&߽!7f<9-JDmOswHq}s:QNvnjG~ cpӛRH|ISpnGr*uw,bJqַ~yIùB9Y2 ߥ#4N''5uWW?ztt!eҼ1i<4$Ⱥ`\sS]rfۅtMA٩Yy-2=yȠl߮a9O=CE:n2,-^!?GQ\@uRSJдuqz,|-&h"gU1ϗEmTHr/}nZ.$UgcC6 8%3zƺyN(T æ1B¯7Mtendstream -endobj -94 0 obj -<< -/Type /Page -/Annots [ 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R ] -/Resources 102 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 103 0 R ->> -endobj 95 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 437.267 645.571 464.166 656.515 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) +/Font << +/F8 49 0 R +/F40 57 0 R +/F39 53 0 R +/F43 96 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 96 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 306.724 605.018 333.623 615.962 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) ->> +/Type /Font +/Subtype /Type1 +/Encoding 97 0 R +/FirstChar 12 +/LastChar 121 +/Widths 98 0 R +/BaseFont /DGVPEV+CMTI10 +/FontDescriptor 99 0 R >> endobj 97 0 obj << +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /exclam /quotedblright /numbersign /sterling /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /exclamdown /equal /questiondown /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /dieresis 197 /.notdef ] +>> +endobj +98 0 obj +[ 562 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 0 0 0 0 0 358 0 0 0 0 0 0 0 0 0 0 0 0 307 0 0 0 0 0 0 0 0 716 755 0 0 0 0 0 0 0 0 0 743 0 0 0 729 0 0 0 743 0 0 0 0 0 0 0 0 0 0 511 0 460 511 460 307 460 0 307 0 0 256 818 562 511 511 0 422 409 332 537 0 0 464 486 ] +endobj +99 0 obj +<< +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /DGVPEV+CMTI10 +/ItalicAngle -14 +/StemV 68 +/XHeight 431 +/FontBBox [ -163 -250 1146 969 ] +/Flags 4 +/CharSet (/fi/quoteright/hyphen/colon/C/D/N/R/V/a/c/d/e/f/g/i/l/m/n/o/p/r/s/t/u/x/y) +/FontFile 100 0 R +>> +endobj +100 0 obj +<< +/Length1 1170 +/Length2 6379 +/Length3 532 +/Length 7147 +/Filter /FlateDecode +>> +stream +xgXSkN R Ҥ&"t@@M.E: IGAzRH Zo<׾196f-^9Bbx!|q2 llh8@!C1pq DLyŅ!6<s$sP$P;԰uP8ƃ(go g6v-$'e +(0Kp)697&a(4P7j/?lgqE{{ _w꿭Crpt@u Fg_0*cK9=  +pVDaZ +j #a}?RE 1p oF7]$db +HK  h4p3D7$Hwq C07o: B+Bb@ u;ﰠdhG,Q""@?to!IFTYA? ` = G?xsZ x#o@A 977so!G#'/DX/KV(&,g!N.p@!0,/;jFÑ_ͼ7#-c(Kۄ> +Yx Iy=I|Gp}@J[D!Ejf%4OW% + H!ر06Jsc5ќk#'5H&V;IDr<$Z\u.l * 58jufn4Iu:hjygwYuIOrfN1 R<6 +F![<*7̛i󝅺n|&]F>v*f5Џo.ALS.9zXv9F_a"F2edZqy?q>5ڥ9o=55M*'2$JxDLɧ)*KOjVo^2I|)o~-u? 됦Hۻ^f) `H>Wz`pU#XAt+K{ɦ뾌oK3n-vd K!-.0epEKY{.gvyڨ1]Ld`!{0C2&J'a[KrMwxш7/9"|64Hc)9zs$¨ݯU dblyW*_1>% #>Z9:fʠ-O2w$X}"pG`xPqgS+d#ntCɕ%/.%$ ~lt6{s+&BL?lҸ EKo,ZG8 X^yILefş#Z_`^Xr L6ύpsh0̘-Q%?;C+h,;79 Bw4z巿Qks1Nk"7պ~Tc8*{~Ved|*] V_eٚӝt;ǭ&ͪ;_{Gbyw0j$ +O\rGؠy㬸 vzOD &roZċ7|f]\mRRsњ.D.o9xx{?Kb< HJBͿE''/tC ͽ-03BqGMR]\QS@~.\&!;ЯɉXәԖ+57/}u4XP/:{c/03"č<lQެeBmSX.+'z>~eۤ \P^DAO/nq= Q8iK;/=L NkX9I6:e2i3Ap62Jed˨( \V0c6˗YP +#_斷9FXֵYqɶN"aYgd 6NgiЬbu琘ؽo@_Vު x\ig;pN +8PԤ%kmgVX9,c:G5һ>ތQ6'l[}@CB;/?yٮA?1vg}F RQ?|]\fI#ST2,Gؚ嶦پbkOJՒr:Fë)~k+lGlbD}N2^W~9q<}5oJ*/9wJ㣈xpL +s Ɓ8{Fɼ)'´̋bK$bPq %nMV:0{4ޙ$50NXVaӦL^+եvuX}+xSl6Z )Y=!M:9ˁMm 龴(+I Nwũj'_c67xƀvQ: +'ΡPInAV(:*=Quzqds +pZQgM]_֠Oz|Cp(uÊ:)-jR=1!watb9*כɣڶU5c!ċ_O>-}^+BElc_kMp(J3tg +[|Μn0KhT|}|CS&#[]`fynR +@֬B긚tŁbG$;Y2 k} w5yPi}{ėn8N&UF|\de>jK;[K@ƅg gbiHE/xD5kf_j-e Đ;Uf_K@f)sZwϫ5?yTq`q]2UnِVe|:^!V{xҕ'6іj۝͍i*oȦUwLj)N(6Ws)ӑhVak(rF:l=왘/OYzL#y}Zdc*Tj4E`WUӡ,{G\)&AKk&[oMW*8d>Ji|lQAjz2, OvM_CR6>D6Ff[Yvq 7>~ZuxOŚ<0i!@}lھ9e,F-g7 EؼuA\-N: +"yCa6KUѝburKFw;;CbOumh v8؈U3}Ƴk"bJ<:SehLm6ڦ6m}ہGn&1yY&BS$]'a@ lݿۣlO~6bW6:\:FMz#w>I>ED52^=ow]IIۑȣ}LNy<퇄][qN)*U!g$/NH^u7<>skglXIi̓PBQ7pF0Y :.X><˱lhMziu,-"L'˗]Iiʹ\ +NypgwۘqJw4TԻ(.%O2Xu ϞӬ8~K-gr ?;tAloxdaхS4I4"9p0cz~3L>9K'ULSg+P}R,`JG +s. y]0abcjJuP}1X$xmq8BJ s]4c FGIᬒ6:q0Z$zCXx1'PHAg2'&3<0=S\3o!T+R#Kshc#ɖran>:SZR`$'7o}=һf捾\}/7s F}=X=43oEg+ڼFQh!Z} m +bX +qPBzIKrS>y_řPvvK +e|]k.nǠuQ iɽf[(",%j(ZA\[Ǔۥ}KZ?y4;T06UDXGWs^>I}yL*!~K^O[ E! h:EJ 8?Y 糿q/+2mh +Y͵Մ}x Ů('nx;+pmZC DKǗ`[לA[ֻ'ҝa?"Y+]3aԤ$z})Obc z]ٚ<-KA-rQ~ +2wإe+ `7sM?=3x@E ;O)/}t8PCspz o,P4Eg9Dendstream +endobj +101 0 obj +<< +/Filter /FlateDecode +/Length 4441 +>> +stream +x˲۶uK{b$@wmtiIK%k%!ܸ_߃(9V' E +̪:%͸Rl{|('OD gV9ui +,sYY.Eԍ^QReΫP/ߋ̬aշf^g +w^#\٫OC3_gﲷ?&VxT5kZG{ڵ~;Z: ,7x<?>9"{V̎4/<䙴f<䔈 qO}B)sV!3 bJ̠fUX9.ЂS5T81ˆv) eHaB$/j1)\~ <ˤؖĪXU2pU8gmx?@!>!s4礼RWhanVǹHD$ޮcZS)E^:di0sI[I]PvE]fuykDTWL>)uq2lvflSJ{ +&BF]xn!y8rNy2Y1 l}?1f%јQ2 PCiPq B0^s>p\,EI`1e}T1 Y_\D֨s.靲F E,!"PyF!mBnl=jb>`"dqJL+5 *gan՟G(DE~%!KO 'ꚶ,̭(W/|Hd!`I{|1^\uYˑ\})DU }Qa-( _ +Zx,an_t -hӸb+H_ɐ+E4]J^lAJEΉ^-qz'L.4eHa"syuuF9Ys0˲WBz藶2儒 ޷yuYL44'g&uڳ07jc\E{K"WLLuY,͵E84>kʲ07*c\EYK"rZݸgjoNq/F"v#1&koː?q +ZSY* +\"}@Å$y@}M]fuykDTWDW߸Hq g"0[ҿ@ΦMQ)@ΣI~>Zsyƴuޖ.SL)՞T{3B)Tf%3%ʬǝwf (|em)L ?Xu9Us_Eo7Ԭk~Dt Α{цuwϿ5Ͽ黧W˱5S+Ve~,,8n~L= |~[,խ4 +-h F3㇣ZľW71{sɈwA6m*á3zzFq k^X`eڛ\5ss"7 +%ݏ~&Lo;v? hgͥ%~K2ڃMp' 63K7?E7Li|ԕ9Yu>X+"c ]<Z_b-^`BSY؆CFqa +T < +`0q@Նl.yl!"!}T +)\]Л|XN1Hji"K/=e,1;JhNC2kn5WyCȅ#g J}CLiI!llzT} 3iI3dָC(og ¥}9Ye$NPvwEF*xlbfUuΊ-ySYDH2K0 #WOxf\D+yV3<ϏJo/zj5B-GU>{ j =_<[ֿBi3{ym>_>UzW>Ԭ> \&@u^8wK R`A^yhN n)`kqn/Z+2jY}:*nz^xl?&\^}: #E:$ɍauA"b[&Pw_$P_cAh +(~+2||,ԡONԯyN%0sxOcl̓RMrI.hH@SZB5Y!f]c1K*QOqyRl9)Nяc>7JmNxyl>zbq!+66j "dPʚ@]3BD.fMT&a):VQ&}yz+PEՈ .b&MLFFo0.0eDS-OY{ܗSck)igO,4H?RJ{WSny!f>dr#f\<۱ ~Fn+Ǐ'=OV?oя6;2^ 9?M͢у"ބywbyr mm_T #: FPvۚSn_dgߠP ةo:مZ6M겟 U%uyg$餞$nجq?s! ң WXMMvh=mevڎ +m@*rKuCppW?1MŵZ6 ++>ˆU!>kZ :-{2+_I\FYyUY \/b`ԟ 6j`" Rk"A*5`OG.ۛ[3=v:6YUH敛LR\t.V:>F]*g3wŤSQZ+|}B=֖w.(cp9y %̍L/}c#9m(WSwVQF ipWwZ]D=eAiMȧNJZ5:6JBeLFsJÙh,D\-h jҟ} 0t.mNi>)YE=u>''a3j@!r(,=<6zƻ* +vtO ||2؎_栧U[=jN"ƞ7,!u$Ԟ&$u.D ᚬШ+Z짇endstream +endobj +102 0 obj +<< +/Type /Page +/Annots [ 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R ] +/Resources 109 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 115 0 R +>> +endobj +103 0 obj +<< /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 378.2 593.063 405.099 604.007 ] +/Rect [ 429.013 359.17 456.465 370.295 ] /Subtype /Link /A << /Type /Action @@ -1343,13 +1543,43 @@ endobj >> >> endobj -98 0 obj +104 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 122.29 508.158 139.226 519.102 ] +/Rect [ 300.831 323.581 328.284 334.429 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) +>> +>> +endobj +105 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 379.594 311.626 407.046 322.474 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) +>> +>> +endobj +106 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 95.425 241.438 112.362 252.286 ] /Subtype /Link /A << /Type /Action @@ -1358,13 +1588,13 @@ endobj >> >> endobj -99 0 obj +107 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 338.051 472.292 354.987 483.236 ] +/Rect [ 317.222 205.572 334.158 216.42 ] /Subtype /Link /A << /Type /Action @@ -1373,13 +1603,13 @@ endobj >> >> endobj -100 0 obj +108 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 121.687 431.74 138.623 442.683 ] +/Rect [ 95.13 169.707 112.067 180.555 ] /Subtype /Link /A << /Type /Action @@ -1388,13 +1618,118 @@ endobj >> >> endobj -101 0 obj +109 0 obj +<< +/Font << +/F8 49 0 R +/F40 57 0 R +/F14 110 0 R +/F39 53 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +110 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 111 0 R +/FirstChar 15 +/LastChar 103 +/Widths 112 0 R +/BaseFont /HDMPWD+CMSY10 +/FontDescriptor 113 0 R +>> +endobj +111 0 obj +<< +/Type /Encoding +/Differences [ 0 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /arrowright /arrowup /arrowdown /arrowboth /arrownortheast /arrowsoutheast /similarequal /arrowdblleft /arrowdblright /arrowdblup /arrowdbldown /arrowdblboth /arrownorthwest /arrowsouthwest /proportional /prime /infinity /element /owner /triangle /triangleinv /negationslash /mapsto /universal /existential /logicalnot /emptyset /Rfractur /Ifractur /latticetop /perpendicular /aleph /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /union /intersection /unionmulti /logicaland /logicalor /turnstileleft /turnstileright /floorleft /floorright /ceilingleft /ceilingright /braceleft /braceright /angbracketleft /angbracketright /bar /bardbl /arrowbothv /arrowdblbothv /backslash /wreathproduct /radical /coproduct /nabla /integral /unionsq /intersectionsq /subsetsqequal /supersetsqequal /section /dagger /daggerdbl /paragraph /club /diamond /heart /spade /arrowleft 129 /.notdef 161 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus 171 /.notdef 173 /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /spade 197 /.notdef ] +>> +endobj +112 0 obj +[ 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 ] +endobj +113 0 obj +<< +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /HDMPWD+CMSY10 +/ItalicAngle -14 +/StemV 85 +/XHeight 431 +/FontBBox [ -29 -960 1116 775 ] +/Flags 4 +/CharSet (/bullet/braceleft/braceright) +/FontFile 114 0 R +>> +endobj +114 0 obj +<< +/Length1 819 +/Length2 957 +/Length3 532 +/Length 1536 +/Filter /FlateDecode +>> +stream +xRiTWUrPA| dYD@H" $38`*jUD +GDz(XqAYTŲqzlg3}ݹgUQSЇ"Gz@2P.!1(#*|W'^T&""0kz/&d 1&*Y JF@FB,= +ұ"( +pBƀpAב)k?c>b!bMi逵SB p(Gx" N S} +SYS +Q3ir u)7qBc0! +Y\A| ăF BpHz-v0׾fFbm OT)ф,s|%/2 +'$pMcZ x$5jX<.I1F]'^8-dz~b4& +(+m/{zRxG'w@Q*H;1$V7|7 dj$ӷplk9B !lvjT + e<|hi.O>XQΉ6>1!]s%MkevnwSZcF+2fw%G[=W;bE[fNt?d0xVkﶸUO 'rv,{{|Di tܼzW{ 9KFf͖9EY* 7)Ѫ- b]-ќ&>߲xwI.e[ ܉ vRT8ųbcwyѸK7q`񛮓} X>΋2i?%!EER[a:;eʋʽe<Ƚ F;J3n4Ϲgp."kfm!lq5W또Jl!Ԏ4Da]Y;"99LH!.G%VLy"}bB@PJFJendstream +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 4524 +>> +stream +xْܶ}b޲*yhGl%JrRh+yX;2HW ]ʵ% h}whMyl2 N7@ejΌm 2l-?TA' /QdA>_mqon0W +NJ7 +}s"1PX2# IR{n36ǹcqkg|=6扷ݝF{g+~hxa/.l\w?H,wn8A6wPFQPeq +%F3\ ؍<nn0tDrwHOʓ(k;-RӞ?2(0A R}o_mi͗t96?Q(߳~ϓ.(mTP?MC#IU77Dѧ* JEqQi&|P{E|ŀ ͓jJ& _Ǜ7dl[ (JJ۱Qs,M+r@0۴(=a퐫z_#%H5M2%fjI#UTzgWzQ~[G)h}Ćb[#-(؇ OJ\u+HlBfEWQEgh$ ,!D{ĖvJ.ZoُB vBtly6t(z tQWRSbwU^ A L ( O +AV-+ +]TH -Sn6{ؐJ}"* 4K{a?{ b5qlh%'[_@0:YD|QN\`IyU,%&1 "3_gL5U[ Jŋ'CO(}GhiFK<Ș*qTx Z!@THiƑ0+ɷ?3 fu!MDTY^(AyF ̢KleE3oʼn9ˡ=&kJ܇+ 9>pf> am";luX$}dWТ[ֈm KT\\N7dk<^EI8ܕ@-Kp bIc_;e&NF7^g2&&fM|+dAffFt ̢KDweE]oʼn:˽#nb`{J?0 "̈́0h(ifDqH pğ1zJWe*:יg`G /aʊ{ۄ W1 lC@hnG=iqb, W24e !NVBnԶQUv ?) L)tկ_v۫;σX'ߧ91ˬ\|-cSyvͪ1t'A%9 4A*hQ';c(1_2!k(qysbnJr^2 "ȒqlA K,(zd\HalX ]WK#7Mϓ +lwk3 DSRO oeC緼b6ٴ ]@XT.Bo!,KywEͣp@\K0:uɩO[?7^x]Clnՙ$y H,ai,EPHE9ƶMR,*ü,E|i(g*y*jpØb;@:8:%JGl<8'6L +~d55Gvqɛd\ys&F4:*ezw) +~ "AIZ7M9ֈ#)=Mr9j“R{_}Q,ɕP#eRj]e2Ao {*y*.>m{V_JoNcC,Ȝts(mM7oX5˱K!c.ěϿf}b=ԹwydH_LIKN, ʈF)YMNmmXۨ l%G霨X9NFw/3@Vui~T̫pub.]j&f8[!BinH-۸='Ab{h\Gj*0@Ee@,ـʮ݀Wae],rn'pfE~;L MUSuͅ=RQԅX}Ip.m%KX(F:ǡәv5{MpH)z86,B)2KEGݵǚes>|s>9TƯRq橇\0ͥ$IXL=wNom=oDP̴C!'BˍʦLumg띏esr .=x +0+{xcT4.! z7fxQ+4May9GG0Ȫ>އTVKnc6*%jP1=ɛq&vlC&>ݥR=KII:fY"ւO9恊 A֖M*H[ -2 +xld"4sVŒ5 enOWU@t+Q.-ו˄\ {fP^0(pFZ;8)g}J>T@<Ƅ7"< +(=ʀG呛SN7x½8F*aCdfj+!$C?ϾxݼݠSQCN7[q@"Y)u;8͋;ʃTq[ ZоzpQQW"[Ǿ[S|8 xu@ʸu@B;2CC;,~(uue%zy}ZF&f0/ um"=B0.O2>O4ȏ2/Js e_ MM7m4tKe1Ě*qXׂMZhøHw "'8Y. +!pUxvꆑiåUV?r֘A֕sK;;'" Y)hvOŕh7/0@ZUՁ'C-u@]PBj4c=k(_й*׹gpv# gf]} + [׸Nt:\M6dڢy%2ۣl#H"*T~\`x&g5{ݙhV,(`eVnf󮰤4{sai"jTfZ75BJ5c\aVo5ex%%gKz cBwԿpurT& /2AΝ2mfvÏ8ޤ* +~cCs!n@"r*2*콘1hf0w\}Qɑuܨ +SٝJI޹Dgrx͕+\gmּ\αX˗0 pZFM8McX^vL*t'7Ł PW|EnZFH^3NB f8Yj6, 1ԆJ T062Q)Հ$H/T>5nOOBM3SIJ Jgkj]o' D;qedbctnz  ͖X`Ķl? ) ~d`t/kE\FI-~!cmYR:`\j?+R݂ nɺ_9yl=Pϭkڹ7®L!h?L^{ 7&rN_|I`ikwܙ\{ 'zS/C<&aMq<(YW A גP`~?@kendstream +endobj +116 0 obj +<< +/Type /Page +/Annots [ 117 0 R ] +/Resources 118 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 119 0 R +>> +endobj +117 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 383.917 167.411 412.48 178.355 ] +/Rect [ 386.192 578.015 415.859 589.971 ] /Subtype /Link /A << /S /GoTo @@ -1402,93 +1737,56 @@ endobj >> >> endobj -102 0 obj +118 0 obj << /Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F14 88 0 R +/F39 53 0 R +/F8 49 0 R +/F14 110 0 R +/F40 57 0 R +/F38 45 0 R >> /ProcSet [ /PDF /Text ] >> endobj -103 0 obj +119 0 obj << /Filter /FlateDecode -/Length 3142 +/Length 4725 >> stream -xrܸQ0$gnY'N9ݍ"9^ "R[*UaF7~_B/+ -/ -3S`$~z{_{<%,P}~<* IDkc)SLb{3Ͻ$!CHDQ~\\?U3.m2R"xig8 0+a]4Ziԯ -p8KCFQDDaYPĉZN;;ygY/y]},#ƀ%paz_ ؉R$ء2?lHc6Agys #)sr@Q:4Є@{ A{<6U[v ͔u9>xioy= ퟑ;OÕN{qtM|i9=MU`aj[.@O]s5r:)2mi_`K#pP¯X\9ThR?=X̺m,CaLmsflRpU0os͌97|%ɀ4lꎑ1Q6s^U|.KR.۩x83|jM$C:cfF;srL-iXi橡~YX Ě1adk!OVKc Muj~RUPJT" -cJS!_m sP0sD[63y-C&R˫YLqN͗u=5z"hڕ6]N(SR~TqCɍQ5EJy8,nqYk525𐅄{m墬y+1?F?\ݚarY88 _s}27ìء;w@S#?CKr깽LAA CBXu]J xEuT`yEEڜ'a*35_W𽵢7$~&<l[oP]i8$8&Ζ82sױyo6 -<]O$no% =̋dF%eͽz D$VK yt -#п"sH5`EDBhQPjbv#gyIf'Nw7|{厺dNދNH? ]UgsrhK~tvHPU@K @'^E`TI(JFy)Aj@In% - ->83C.oAXg:|EI$ld1JCgo 36j# Y߾o#%ٟ:a;d=f Vf_؞i J4P2{bYcsܨ~0|=:aG{_k{F? gP.@_u>ݿRp|*c9,0KA m'A)~/^bpZqw_$!UX-wddUU,pk40G3Smy*j=i҄9\ES#d\]8v]̠(E1% iOMKUq 1m?eDI1M3\ga^ \Vj5׶Ý@K((unl'qJE2=e$Hn}N# ꕿ%y{kɢen'6CkBE_>#;ǘD0$! -mRHJe'eo{za{9Kݒ%)qY#A\KϥKS֚BHGOG&76zAh8*IWbOy -H@nR~^~0ՕN6ep4#o \YS2]M?)Aoc2ȧV>?Rp#(cvqh;_O endstream +xvl޾mRBuC= ۇScá?4_zwn.m}$FvyyȦGmvFrnl;D\yJX5fVL-\$lVHC~?;sߜ~Jא-dFP<~DjJOQӓ: ߷îMwbWHP}CIDnԽlZiEt!84eaI#'9*Y&1n 9ﳖ1̈́rdxcLEGt@-@ݣqw]-:(d:Rv|NT{k=D5QN bŜyoEl#}y2}`zDhʪ\X:W+=7;P\$nx}l]^`_dE΄6R,ձaXQ1׌ +,{©Ym-􃉖ua7 Ff||I gW L*qĿ&Z1~W8ڞmƙYf! &%WC7 e8ʯ~>yʊܭn krBdB?tzKͫ{Q%Tnp1% # +UT^ tex5)(Dt-BZV]sDu_ZTSJeRv'QI:8KB̖kR2 xL){'\[l9.sL"y[\K;vteN#W(͎[3!џ=frO+G&7+Tzw}k0Pkx4I #1PQLQQs2J-EkYgC\T΀$9tz'2L8JTiƪ:iŇl#j~Elhأ*>}=W䖛T +VUE@`"|2q`S٦"Qd6$EI!ks s%4uGl<*4[uZ`x #IyaeƫV-v*W, . +sڳ-cL'}0oQJhH*7;:aGW۹ D}HMyhm8uz7TgxqeɧVEϢ} G9'x ?K.s{r?ƸŮ8,+& +WRkkA)ĵgu9C&RuF‘~Ԩ:ps$v6$7WhOy"ū̽sʠ^'^ۈW49 +FƜTDw\EAz9}zHZ*H`pY^yU淑hsr 'd*Z';xYb\z+.˶JFS΁t2ujU.[t,lW֘ n`"9v/޼fD|;cgckxmP2Mzgŏ| -()Mgoiݷ9슙֜Ld43t7>t  3{r,LwG*FFԩ+"Lkz`Ύè/^[XAue\Qa &cm=trW+^ƕlUb $]؜vjwGK,suR"99y)_BobQjj^=s?@-%}GSACR}h Zuם}eOH%PVL$>{Iͭ ǒ3 +~ayyUOW!4_*`\wIZz'g+Lbhq>oDˋ_fKheۖ~3蹠T36+w6snu9#Ί=^EW{{˜~Y?K-{UQ϶sYJej"A0NhO [puPȚKi$[#2 qY\69C0؟o7Mendstream endobj -104 0 obj +120 0 obj << /Type /Page +/Annots [ 121 0 R 122 0 R 123 0 R 124 0 R ] +/Resources 125 0 R +/MediaBox [ 0 0 595.276 841.89 ] /Parent 2 0 R -/Resources 105 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 106 0 R +/Contents 126 0 R >> endobj -105 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -106 0 obj -<< -/Filter /FlateDecode -/Length 3651 ->> -stream -x]}ߺĊe_@P rE -Hy5N<חEIx涷8+KERI7<22oŎ0?|&)Yn̴?mv{;9Yg,* sn +8|$,y@0HMN"bH"eE,K.~o?NwLIR8f?̺.A=6[V3ɡwA|&7q2?>>iTXANǡ#aKY k"g% 9=3Ɂ83Awն嗌?+2=.cP -vAkD`EZq;4Z Ʃ3Xf|-m n\a;)"TǪjUM\" r -rc;~ -Yß_+1ڕ΄YyLgۖ(nwa î[ T`JNP ̖FcX|}Xʝx|غX;T,N_{ - vjbc,V 8xa˂dEův42:3~?**8s}!u8Dm|+뗂eE(wrv}mpb^_S}]߶ Gf \p\]YD9w+,"WfЭ>u, i݅j".񲼬v)HȜjKv3V:n'2Bi!X -S$Nc*Gb!#1#;YGy'Ma4"q{0Pe+Je* ^ u-R%޷%n&,"m'fiT{0ljn&%VMcaXJ-\Ko6-N(Np`\yZzN7\NӪcez>4JA[dYC/QmN|$Zשḝ̛q.(TC@8CgVWF5na2)]'v5VV vf"$yTO%L.jnj^knI>W$_f^4%u&Ъ¿ɮO'L3e)8j"E1ĩÈ5j,eUߋ -ytL# _pU:%%𓭦T(J('Rr1)jDSGqc{+ L\żS'U}< q %"50&Po9CK>:{ E %y5nXQBLcSiu?==i!I>ۈ8Sj&Y,ΒTݶ@ԙiSj'yaQqH}뭮.+K U2 `,f YgڗcZ+r+K#z2\uOu::R8MBzR8-Н^9DR%_d{4i?^8gYjuVWnUfjg¤*6Xd;PEɀҔ~VmDR*9D{14>[VBwG .Sy(MGaRעSuTw?Es%wl쫆1zN'~M>׉bL?vkjW٩HC'zV Ϊ{jMӫAV `J9F$N.#̏=VUxf}?,`?YvCOj;![j͉ʮ4/rCN[h-o&#ZŃU %R4& g$P홺k^oj:" 5L9^x犾p/ /vws3>[ܠgyȓ۝|uAzN*.צv)Vb;uIN>濶BN|endstream -endobj -107 0 obj -<< -/Type /Page -/Annots [ 108 0 R 109 0 R 110 0 R 111 0 R ] -/Resources 112 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 114 0 R ->> -endobj -108 0 obj +121 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 119.205 508.007 206.078 518.95 ] +/Rect [ 475.53 481.924 564.974 493.88 ] /Subtype /Link /A << /S /GoTo @@ -1496,13 +1794,13 @@ endobj >> >> endobj -109 0 obj +122 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 109.936 467.616 150.979 478.559 ] +/Rect [ 69.376 446.336 111.727 457.461 ] /Subtype /Link /A << /Type /Action @@ -1511,181 +1809,18 @@ endobj >> >> endobj -110 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 260.095 467.616 286.995 478.559 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) ->> ->> -endobj -111 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 340.088 221.9 347.062 232.844 ] -/Subtype /Link -/A << -/S /GoTo -/D (base) ->> ->> -endobj -112 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F69 113 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -113 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Courier-Bold ->> -endobj -114 0 obj -<< -/Filter /FlateDecode -/Length 4468 ->> -stream -x[K8m*s`{1sXЇ>(meZ۶EɒӍ, -I A&3fwz6/nϟ7*RDEiy!{9$qV""9m7['%5͇7z~}hS E}:S #6q =VyNv_u3{˾ڮSuz:y4e?i/G?MWreV^AZ"Ij>M -(zrhMEnҼPQnp~_{loB;Rv`Tχ.ܶ;pmU?{rW+2XEi_lU;H}VɎSg_MgH'X yӆ{3ۮ_vs0Ysc}ISRJzVA-w?.T=;E*KMeJ;mv;YřFtpJowU_uƳU>'d5 +/fNq94XIZܷAhA`ĸJL%~cgď!rU1˝^e5@~gH\ܟ]]qwQ5/€+J$]\` Ԝ7$@ -}?]JL1<2\FT / Q7X O'W[~c1<^|JiDfC&ql;rQbrf2n}@ry@.hrV 錡 k#QŹaWw9Y Dݥ@Q``{tQ@aAWdTaMh^4- gn̿ބGdY|{sC^M29)W{qzoGk9e(! *,.nrln(X(YUHNMa#4C@+/} EN͈ˇw͗ǵ5:nf4pi$v[+DPsZUD\\hE4/o(4]/W@W4 -b~=TͲKcEw xY% NDɏ]=FK' ]_kt{Kb=E$ <;! ]C$W~ʷV%y2rp bp6yӚׅ_I~շ 9=T4(x i?tۀ,2{r1) -t)3#4`Lj=sI ;=F+OIo.sΒ$Tp3F<뿃؟/0@.d.\l1Bf7JO4E#>_CJv?˾ =C:pf;5`b u;m[@lS>Sgl S-Æ! f躦EziZO1#z;iPkm dP$MO^h'XF)rna RL鹍S!6o;MvE~Zq j] $\G%J3S NJD38ڇ҉aC)_'R~=sӎA3rP$/8ۚq:iMx(U2~Yߘ@ƋI6_ l\G١Ih&ݑSӾ*/c.jv.\EA;?P.ʽ-UqӝH1tϞՑm #x'v~ZX{e<-+1#'l )glT&c[0 w4J6cYqh -1C_?x!/rMBo&vS% xF;EW&<e5w9FK?~pw=+oQf謵tt˝85pJM#*]2P<*&a ^Y;ִ.Tb̽0Sy3yP[N[rRSn-@䪲-{DAM\.ZȑCjw 5xOu$KYWO4r pl 'W *|yjC{ -d9 _Vmڭ.y|D ܌& -߻! '^ˣ[$5u. QS/kS,/Qd=%p ޙN `TB(W@u=!hNu 1[N!22sc9r|)wOq5>BM:^J^{. ˍ30Znм+׮U,:^gӾ<o/) ;q7-)UCIT7nۀ©Q8/m!5AͲܫxyˑ ,ez}^yZEoԡJT{S<];g5hyc)#'/o{t݌xdTCon,lÖz3jmmkDv۷/ tn_Vo_ -]*^$< ^.bxCd4vmUmR¤TV"edE&*Jb:Hxc@Wҽ}be -krIB1\=N5.]Hij8 -z=VjUjpJ ʑ T dIT+& m}m+i$q쮓$S]V# |Q[v{%gHQ4 -/OK ra;%~(b:IWt6*DR1OBYѐg6&ܶo|. -EvIdW6҉ێZ@u.@8EgxMs5sYo ,\YB_X+LV3JB 0`|7~Ir.LnpEP_ɡ+Oј[,}rhuO,7\@gXFӏndtn}]371P,dD@JNjH`ez]XbI͚XgKXM5bE}7Ho0U;\Z.D*qt/M>F1~IH^W3;%N0q-Uї+g$> -endobj -116 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R -/F14 88 0 R -/F69 113 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -117 0 obj -<< -/Filter /FlateDecode -/Length 3157 ->> -stream -xksܶ~}`W錝g4~$6lh=jGDW\˔B<+)!1*'=n/yC`Ef#3&*lS>L>2 F2jsAVq ͊A:c3 juc݂Æ,%maO=z>@y^\n\<\,/VPL0@dq5g]|ms$)c0iZb Vo* ͧkAeR<Jju#NS)zG >D;i34ꉆNTfhC? rQ2nlc'P*^ 咓q-H@(P43 br-ܹ $X73 -xzO3&`3.7/QK胨!o!d]y|jn f(,!ha b>5,J'1eP&~"2n ٪Qza90̛?*t322R,Cy] 5e;ʀ0j<)@߄JWLKö7%`0xФI~nY*bKV*q +A##d@ڜtJԨכqp2E%W尝g1ũ6\*YPs'Ќy( &5# oaW#}ar,U{HFtB dc_T33aXQahD٢\hs=s͒N5Z̗#;v.g)*Ʉkѹr./UrG -`*BR!CvLe0X٩wᏳuIID%sѹ][?16BoGF;XZ"v*M`o ]lF?zL&1f!OϿ =_L8ի:a"NrX?mY|^ѥ3% -z-P!KS~]:ly!O|e1 >">bpW~6\דFi j 3FkDmV3<'l>5X5u_|>\^h>s=sK8%zW7>;"B>9Ktg/Y38R2REm2(!h1g)(`/z alX7;4#D,*2&̜ϋB@wv8V'U6ѩP~Ze̳T 3*;!G8F~EOYR2T.]`c1܂DO4Q{z.=0Ug4O\jvo~ADs{)(}X[eDs{mluy(fgY',L&~X ᰁaF>.Xz!8ui!N? K2~ڰir023a͈.ք(= 19ɰ&,vqX*t2((|. ~qJ#˷f_uӰF0]N;V=5+Ɋ 3V;j2:uԑ;wvVU82d)ߛčX~δq4/yUt!i׽"K1Q{Qb kVJ -X v*n)[{y4<:`p>yb>lLg!ZBQ1xsiO;4cT}ix힎eW -;f,)V?{> -endobj -119 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -120 0 obj -<< -/Filter /FlateDecode -/Length 1139 ->> -stream -xYKo6WT$@@v؃jӁG;DDW6 @,ySFEY~zߟ*7b8Zm3%&j#Vf?z)H9@Wl@b -4piF zXm]ʵ0x?؟Aك3tRW!IRW3$fa$RbbX'P7cn &B|3ݧ}GaGQl!z_ug[N:_C$Qծ*C5vj5H)Nuӣܸ"4˴nuqzg8cK}$˾L~ 3)ߺjmHsIΩ7TpM6rb;0aq5aH QV5ܸ֡Ƹ -"eZW6n[C1%9 y:T_WJaXR˱45ZC`^t8rNդKC0%=&$' -^YY,yr{ϝ̴KXRu@j'[l0/P'[䜲! -3Ԣl\200tqZc2B:߂-,BL)fRLsf -"lMCb5h"EkҢP͓i1ҢAMfWuE ©E˴z枦(7(n⟽XW& qؕ]?kiNG-&b_Dkw,,ݒߓfiF%pN G hh(HH-Կ,˻Swr_mΆ+<4Inw:LB9~ 󎗙vUQ9:M;KP:\uDJ:Un[ܓY >EI5&/X>MPR0H,FQ+ʺijw B`w7ޱrin.:vzTֻ)>vR*1K3^f9lݾ>xOhԕ̀ M'{8/є XYLjºy ;4/Ix!?_endstream -endobj -121 0 obj -<< -/Type /Page -/Annots [ 122 0 R 123 0 R 124 0 R ] -/Resources 125 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 126 0 R ->> -endobj -122 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 194.541 452.305 221.938 462.313 ] -/Subtype /Link -/A << -/S /GoTo -/D (iterator-category) ->> ->> -endobj 123 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 1 0 0 ] -/Rect [ 153.894 416.44 181.291 426.118 ] +/C [ 0 1 1 ] +/Rect [ 232.181 446.336 259.633 457.461 ] /Subtype /Link /A << -/S /GoTo -/D (operator-arrow) +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/papers/2003/n1550.html) >> >> endobj @@ -1695,22 +1830,21 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 153.894 404.485 181.291 414.492 ] +/Rect [ 315.626 223.989 322.6 235.944 ] /Subtype /Link /A << /S /GoTo -/D (brackets) +/D (base) >> >> endobj 125 0 obj << /Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F69 113 0 R -/F14 88 0 R +/F38 45 0 R +/F40 57 0 R +/F8 49 0 R +/F39 53 0 R >> /ProcSet [ /PDF /Text ] >> @@ -1718,39 +1852,233 @@ endobj 126 0 obj << /Filter /FlateDecode -/Length 1774 +/Length 5841 >> stream -xYKo8Wh/F ئ9l-E^d[N ؖ+9P")wE@7|C2_&C<)Jo`~/>|_gw,$f6[N>ySϼ;oao5 BhLfd!< -MW"^&f=?qV`^ -i@  (CA@jn1\xA"/0>.#&#+XC|0klKݡ`;JE.2]q4_L -&6o#aTxӯ:>!V'PEY=ub<] =;|Os:3,yX&ٺ O%ndt S\SF)척pʉ"@CIG&A2(nUv$cJG0RڜUldU × -SL- Z2s#\Wy4b=#q ާٷ?Y?%x gMdXmJdW)F޺U o֫ -ya!0P#N\kܪoOW=Ea :" ƺi|?BB(#?ϪBpŪeP5QqY/^wՌIhŧdeb%Ή 0Ei5#:1c.zZYoLrֱtNdADH+[ߘtX5z5e:j([}ӓ "V/mݧŖȹmY=ܢ~y<P(XhצPЪ7V {{a'5[;.8XP6;!/}G#됥Yd~,䴮d̠V -܃)kh}yF -g-3˦xeKQ1hB^e;pmQ=#s|Uhb$6p_XN8[ڼo+<׏iynǸz]|Qewz!=w uτ۞jκ~9jwF ^曮 5 -'| pƱGw:B}q@"866LHa: TyVwMYex>:,d|}L Ӂ 7&B -Ggc9E\S0G ҽ( \d-ƶC~nɁP6 Qͅ -m-pC)-j!w lrm$(:u6یijv"4 aڑQEu*d̏/"ȏ?nWpnk/!2v -u  fnrc6`~DrGp13itzZZ4Zzw]q'.Yendstream +x<ێ㶒ƾ{k%bHA90rdwf|Y^D=ATX$uxSrW:rմUVtj&_=nx6rͿT.r T*ͻatZG,V7Ы7t]z ԹCE@ . o +xZ]~g[˛<+v9߭ޔY}w7YBٹʼ~o6T~vqM +#\.ZB {:'z Tn<0c7ȭ"~ѿlp¿'97$m& ji`.8l ն)w()v=M Z"*^0,؟87ﲫ8Ud._o€=/OL/m{h ~'f?8ȌZޠùe##Sq-{-[|)T-CrpzvBނ3|$ %>$M?xd(G9n$CA "<#式:[< ;t iB D5" %> O)ya~ώKB fi 9Mtμ`e?ڝz9r'>;:noq +%\rDYX2Rnv4q RiܗbfeHHC&FZp[MDcD^o](:ls{f.ȫU5Y^w*ՓCg Ok0P +0zwWv?oMǎř[+#;΢29H^yULSEkh]+~!QZ.&N}v"NCdrzBE-DM ^D9.G +9$ ]Z 7aS]iM˰erYX%' ^f>Ѳ|._Rc1I[403?O\G,D,h}%[F 6QFv?ٯs ^'eȼVs/mUހP(dȗ ۈ-!Ggd6Z +Dk_vh监vC(%NYjOq]!|DL~^8/l:!Ծqq6m|Ťys8~yk~">uNA-dKf{q8il{I[WB9 d7ydxIEEdV[kgGWzs֖Y_#VeM2 _'C7w*AKo*﯍mz%A.y3 ZL}Z!szm&Ɔ/6BG +%D)&14EuUht.L +(LZUY J lkݜ;`+c ~F^UgV_<¶L^e-!u} kbQ0ȎnVz~ɓbŖU9޵laX#e=t&R$0 +1Zo$.a"ǬC;Zpk1m y͇"Z یj<ڧaӳ g$[ +YiA{*[7]V6p23 ƶQ t@*9u<1P. *%c<ZS>oل- `4PI5a!m,!Kɿ@țUvn^m^n. A]ɐ +l4W"-a`C5r|[/y$[O#ACqx y#q6{Hڷ68 #)iy[$!>QtYUMW8S2,[ʥLLTʢJ|ɯQXf692N֊E.k'T;G5:(> ә?µHtiDX GhI{#Tag<6nn^M7>-*8M}TU> +tc[{fBE7 $(܁Da[&yr*|"I B9 Esip7C~D0 +\D>0,u_u1;N~5-E,<}3"6fUXQИ;j%S#7%k;_y{j69$b̀|9cJ&F|z(K[3Эs r$.}gqq*YRϸ]3c.65 +6k2c[{V* ,Tz Zpf]% 8;{n$l^Ie'+4=G4, ݳf lLQ.YV cc3+Q] +>YLQ$~ dsJG`6y~;@x[Y]1>Vc)ʒSxGev 8rGwxm`{+78M5GI! ў :1Zmi[gG3a +Kx?Rk`#6 YսVxm&;>⋜D3zSOzBݶoKMYnS͓,r ='/V?X(Ne *< ]j Z)EL =[@q214z *8:-1wY<ȭ4{ >r%cY= wzv}x4ZZ[^,)TM'O'Ի᭝gXПȱ b{WXj58` B|Ffj3a3;7u=ܐ{yƶ]F. p}*Lf_GykD|lc[]e#;sJF Fyas, wHVhL,Yh:xuX١/'|{{:,kxu]&_vd%‘"^.˞.T]^L/JCK}yѴ եi `%ӈ%b/ݏTUR;D:mh8|p)_2jHW_Č S>ȒD/bis謓[FY&  yvrK cM6ᄋځ5Ԯ"S.w3^-l-ߕv"*ت؍{HdWk ؖ/6]L4}I3(}~WTL[@+H'$1R5$ Ih?ՄW &}@q/W$[t̅ʡgTw$"U)>Zxex}UAO_r< J^ w76sc )f?1BfIzcf">B[3+# oni}ЁisD% hlSk_k  K|] VpI)-jW2b'-,L.J1eUJ/ *A}Pavg?(endstream endobj 127 0 obj << /Type /Page -/Annots [ 128 0 R ] -/Resources 129 0 R -/MediaBox [ 0 0 612 792 ] /Parent 2 0 R -/Contents 131 0 R +/Resources 128 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 133 0 R >> endobj 128 0 obj << +/Font << +/F8 49 0 R +/F40 57 0 R +/F39 53 0 R +/F14 110 0 R +/F44 129 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +129 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 58 0 R +/FirstChar 60 +/LastChar 116 +/Widths 130 0 R +/BaseFont /MNQCOH+CMTT12 +/FontDescriptor 131 0 R +>> +endobj +130 0 obj +[ 515 0 515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 515 0 515 515 515 515 0 515 515 0 0 515 0 0 515 515 0 515 0 515 ] +endobj +131 0 obj +<< +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /MNQCOH+CMTT12 +/ItalicAngle 0 +/StemV 65 +/XHeight 431 +/FontBBox [ -1 -234 524 695 ] +/Flags 4 +/CharSet (/less/greater/a/c/d/e/f/h/i/l/o/p/r/t) +/FontFile 132 0 R +>> +endobj +132 0 obj +<< +/Length1 959 +/Length2 2811 +/Length3 532 +/Length 3469 +/Filter /FlateDecode +>> +stream +xgXS۶7R-,TF'ґԠ dBIM +HWHSAP CEZhz~>w?co~CJ%d "-B@@RRzM#Ih@PU +RY[ +#{Rx 'H ) ixЋA2XAA*HPn04 t'a?pd@0H2L2 "L"X 3N7L.nK$Z~^b*^޾4 {9sK=kLC ;TCB"0xFAwt38gyZ_BH4@Ɉ +!8F!c$ K 16BE@S(@nj0HF aD182>Օ~F1 +H\~Ƙf b!c4|D,xa#GDmf +ͳKRyi|')cxwu>3^i8}kj>}Paw:fc%o1.G9Qj(L]lt Kʱo 嬓J~+yڮ wǀլ>A QXU4zGP% ?UIa<0 *={r{=ٗ5&w5݈5b(%Ru=;̠պzJ|?U/QM-;JN}1zeY/WA~j2yѷ.Yσv+߫,aDzfJt6~~AJ3#<4|*˦͠@Ɓ)6۩s:&L +t% +ўۦ'M\qֿ" +:/NȌwF/zw[ a},`ZzE^#R`6f.wL&` { '=i(o?%HMo-<ԔI +>֞ ʰp9؆h=8[}^"Q%g^~6^VbOZW,f1~%O%v (ѨBۃA r 3#/>8ȷFn}ⅉH)ŚVnJlל$f[ٔ5&W9͋su1ˇSY9,+sN-#OoewHMŚm$D_|α_ME8y+O-T) =.Dj ~I#Ojό긏{޳>{?:_m׸ev/ɴGjTϥ@5VAK{B|Х-oHN{DߵgڐnZevܮ'_'²}um sp͝pJczxkDڒ ω/oUěJN)N:MPXtjY^Gy]t|0LU3+ ? hj1 +}WK@hOy*36.|Z% u~-I\cZLr࠷=#kĦFpD,= >ڸk'v@6-%} TZt2'mh(t}8mP i8=*GԱrA[D_2>ܧqLKf"z2sba#o +lS<> y+Q`6 BqsqlGSz]OB6rӧBw~:IX}h+Oםša1NU1)͓+ٟ6fRo:xX⋗PӢq`޸,rC["kNˌڃpds}}}!gVKM.h2~:Ҟsh^+MVeWzN~pp9sLxXm'# x#hvx `Ḗ2s"qttyGw{udBr$3M%O|TrӃ_ j?dׁMBO+j`#T_=HdGxi0 9GZyH3r|DžnW  3!=WޓwsKfM"\eO,t/ٳx3bjt b [6{8$$5,:SWO29_}s{u-xܒ'e==3\7`cM譻CW[BENs3~Ȍ,Uy"~'T[2K/%‡Jj%h +P^ƽ2хu^f띓t("t$*m NBN&Qя* ۿ,3l-+;YSƉ 98)!1mh^m]W/&Z}c@5?_)4_EAendstream +endobj +133 0 obj +<< +/Filter /FlateDecode +/Length 3865 +>> +stream +xk۶ +}j|qD$jydMs/?ub#/w}|UL(`XWjjAZī,OUdU_ U93N+3ngg;t Uj;^E9 hvY6L>V]yl,ffmsxN=;y0n3I~[(-^oڮ⹚7_u(rCWV7[+IB'CfԳvGk^C@ ̌ + #x# G40x[x "_=wS@9:\v5ƶY]ySIY,$r[;Wf#ˀ~P?'Ia9#':'m4@ײW"CWWr4DHfV14Vu_[Z[=#G,2#eWޱiW]ϓgtKe:3+$KTGB"dkD" +a>ZZNծ$vaBd"+ۏ,I0HͶfL df9TZ4$ޢ=:I:΁pFkBPwgZ),~jc841r~ Y#Cjxa{_ +.)fifߣhG-g:@aU0%0acp&ּ<7p s MBV%c6@~3ŵ$U bWH_`ĵx$^vQ߲PF,) EYDNM=s{13tJ6Yn@ +E.0O'wMSƄ:/HeAB2=tSgZ O:+s76O"Fsg4lw"Hٺ]hiDB8t(aJ[%YD6)+2뙓CHUaD a[{ ^9a>};9K&@qVg? s$=dw/e 2qxm+ZuՁշ{R۽"z ?pFI9BjWuUNbcHT6qdqfX KWYh<<<r2J7A$<=eBkga/6adhM~*7dvJqҮ0sIό3bQ +֤T/=l3* +b|a%Jyj +t[&c9STƙArb)/R$ E_9Pѫ-$LViS8{.I*"w +\Dc4N*r885v#Ns1" T;2QԋS酚xfi +d0v|v=Ob찔{2wKyҏ,F7rkPz'gZ[ln#?YJb8sCa= xF h4fʿ,>O\& zq񮆍x\gM +G& K18̥5&2҆z!l)l}: -0l[+q0((& ئm r9,;Z|Xw8VɈGm`Wz~e,Lq\`p3ɹ˕աSřTuv/K eҕ?^o\JxSYB U([Q!cW6r vyQL6Sq8Te?l13񌺾cTl + ;ؚ!p)4'EWxB}G2ӗ;|螱RGTp]o)=jd\Uqh9`0%lcՇc5SL(iX$/¶ȝR |Ej>ILqc E"2AS.el⋩if7<7PzmB0 Yd˫:*T%Kr=K7&%;-킱Faecq0g@>X((Ne@oӞc-}n; >X9̳Jh\Vu +Ӣ՛/ :ۜƜ;fmz/#lmMmxOt5_K5 uDd,/2qpbӋ u 床Ɋ;c쵫O]co I6~xKEzDd!X}K2TP[ $(]9Js\Eq%#SW29S\%\wJ iwA4EO2iXOM fhfW\xb.ڹ!m]n_}9FĽKP$id.,h#lCt`)mIF󳟯74;2긩͗IO [Z1;~[5Rp{MxKKG{p4Q\kwVǸҹրg}kBS̲(Z{B } y]3V +zb8%ۢ>ٹ }6뒍(^ ne{;ߗ,#9tm)Ϧ[۬yrΔ=6syvxؼ&w7=@V+7,75YRz&ok2?kv5qn 0 M/6k?k <"XUfH ^MysG n O~[@7*|'p_i8ߎg#IEq!$~O$qv9F/i#.5P VZNXq'(C\ +`?7q+* N,K%<"&* 6?+I u>1:Lk|fyBy#Tn^*: v?6([}UM|E쫃<$WCԽx7C"8)Ly#ڃ|3؝lS\{Ui}>.zY5wYxZ 6~AXMn;ZHry}!2{'{:ؤůF/<q@/˕FVǒ^/f+pKQ?4wD'|kαʰt%(;x}(1a 8-mt7fj<< 5qvJGzCgG^mJ?җC7}۫\0CI}w&9`ɄP6ʥN=t3N8Bl@|iE;V^s+|* U5ůaJs&8aFŸ(~\rY3650&2\I1~d/xiv _p ma;aA.Q93@3FZ/~> +endobj +135 0 obj +<< +/Font << +/F40 57 0 R +/F39 53 0 R +/F8 49 0 R +/F38 45 0 R +/F14 110 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 1614 +>> +stream +xYI6WTdwrФ)KvKƖRH$.-@o-pN@BD*rȒ` +#cd-T!h-^}`Y4+Pܭoo/b4r ɻmci1g<""ul+\DJ fA~[/^|:n gHq7_=ß݇}[Dl)$\%s9Ӗ- ƶ"ZxFUQuwP0rb_]߀/חY0PQDGљphi7aw4q iB^dhzq`Be1ٞhi7<,=˸ބ /}UFgS]SD3Yj\_;4,]M\g]u,M֫)tCKdt4F^yr2Q{\a߯)] bvU|%‘" l4E̳47.ix(y_L,m.:MgXp( d)10- Ɔ! +J,+FSþ^vն~zm? +NM}Im:X]k.^ +& GWC>Nս(̺&rl3Jlm] +&3g$?bU-S 4c"Õc)pҫM)6EL/3ӄ + ܦԡ\װgDnSJaVVߔpMvS뮪N7w) &RGsISzQ1|8䶜GDqh2"en8Ȼw}w|ι +ځcOՉ;e_87)4;Lk )#|UWWjx#4^xK9le +545°Ij-XMHs4Vu q.jҟl5XnPy[Kc!++rgk",gK{Qm,=1*GQ4AVO-Y1#W٬ܺsgfN@;wVv'w~8O$mס:D0 =ݪaڛdYrgW} ӽ( ln=<+`8a $5.P:r2(`S%w)28x~DSJ83=}  A)բ8>U+2UL`|(eG|CS e];{X^4=anE99 ,$3kVi1C9k ncОuwȐn:8&;K-z0e4LLZޞº] l} LȤ'wz8ueRvo 2MvĤWa( +%A ދ} Di=ܙ{8 IxgSa^O249k-LFx`>-l^endstream +endobj +137 0 obj +<< +/Type /Page +/Annots [ 138 0 R 139 0 R 140 0 R 141 0 R ] +/Resources 142 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 143 0 R +>> +endobj +138 0 obj +<< /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 133.57 448.186 160.967 457.127 ] +/Rect [ 155.073 748.114 183.217 759.239 ] +/Subtype /Link +/A << +/S /GoTo +/D (iterator-category) +>> +>> +endobj +139 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 113.23 712.248 141.375 723.373 ] +/Subtype /Link +/A << +/S /GoTo +/D (operator-arrow) +>> +>> +endobj +140 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 113.23 700.293 141.375 711.418 ] +/Subtype /Link +/A << +/S /GoTo +/D (brackets) +>> +>> +endobj +141 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 92.309 103.918 120.453 113.66 ] /Subtype /Link /A << /S /GoTo @@ -1758,59 +2086,45 @@ endobj >> >> endobj -129 0 obj +142 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F73 130 0 R -/F66 87 0 R +/F40 57 0 R +/F14 110 0 R +/F8 49 0 R >> /ProcSet [ /PDF /Text ] >> endobj -130 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Courier-Oblique ->> -endobj -131 0 obj +143 0 obj << /Filter /FlateDecode -/Length 1733 +/Length 1604 >> stream -xY[o6~wë$fml243KXv r&+ "夕(HsΡ@ 2LpBlr;KdĂb"F|OpD4N~9 ZkGWZawlsNl -/](ȱv XGWfv>p9B=  AR^GӍܬ~|H,PBh1"4Vs FL&#\cD ( E2n={򮎨E pȒ8A۰RwH$CiVWLR$쪖Y -*Tto)NOm0$`mRѪϺvSH{JH ӑ[׳b(nJEz+T@m\3|WdvJBw\c]] md:fc(WUP.v_ R$!?[`U x}Yjvx:G_DF0✌۠ 8-}9x2:nl#s0}};!h}Yg@ګj_^4~ JP<R N!F{^P (c]] [mdurb,۹0_-Y6pg++|t8@pyjX+6сGB VfpP‚vv}ubEzC<,A9B ps>1"y0káH -RJU_H?3D>>PgJ]dc6r6\~k_ P,By27 D -b}|y|QZx>w<^[iϠ8@T[3qnZyxH`ʩ&@:0J #>cn0JF%äk0{<[pM\ 7\pFW'b0k:gwor@} ->xM --CcѢ 8PVLrP]m䵞3Dޚ67j!T_x])"ih= z蹠JG1P (]wJ4ljAPvVp1Eך^Y~̊]v<1]knz22VrI DኂEf(zSʫp$wV -PT\"`2JaOirBbFN:54mB?Hb^ÌBapFPQeT-(<27m!˺]aQs{5h\S#5U |WB\6`7!iN= DBܖ1c+:m Σ o[2] -c@O?'DBTJJofd>I>z4ha@ 8@** -{j[f`H5KsEV>y#6敬h޹h>Sl@>"dyxx@M-Z؀x< Vx6C2FIJGWGUDqWthsM.m} Tha}]QhVWuՑfYheyX)1&$mb + H%*Zqcsk8gSϼxY1_tW6^Dc~ 1߭7e!A 0d+.]oIHccɃ]?T^\\ڋ벟ﷻpQ10Dbh25N=v`v06^d:Z7M_zLHkY({4)$Q$[fzpBD;U +2$dF(zR(pQdcK@5Rxt Z `&W[*L6rq} q.7c'owr[&tYra}z5nG\߽n/DnG8A $ rٸ^BdXT,SbdZԃkoD5.=g(T8 b+N +9<)j\N_\r,z%\dB{ бgA9MAK=vR0¹¾_U:`9:ç qȩE5B5S16"{ѮⴍM@.91Iu2&5B:&DBEB\%tAlb 1cܚv`]Y<1hfFWQ⤍ͳ2wѯj2fl49 X3eWdB5AB}nR7|ߣܹkX{Zfi I<ܖv mlZ2G;Բȳ=QJc_|:-ZfmkDY- Ҳ eF2J2jByXz;5\y~1#Py,ƾvbEb\%fAlӋ0H6}P> endobj -133 0 obj +145 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 143.732 459.404 271.254 469.411 ] +/Rect [ 102.77 224.597 216.329 235.721 ] /Subtype /Link /A << /Type /Action @@ -1819,61 +2133,120 @@ endobj >> >> endobj -134 0 obj +146 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F73 130 0 R -/F66 87 0 R -/F69 113 0 R -/F60 44 0 R +/F40 57 0 R +/F8 49 0 R +/F45 147 0 R +/F43 96 0 R +/F14 110 0 R >> /ProcSet [ /PDF /Text ] >> endobj -135 0 obj +147 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 148 0 R +/FirstChar 39 +/LastChar 121 +/Widths 149 0 R +/BaseFont /EGSJGC+CMITT10 +/FontDescriptor 150 0 R +>> +endobj +148 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /exclam /quotedbl /numbersign /sterling /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /dieresis /visiblespace 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /dieresis 197 /.notdef ] +>> +endobj +149 0 obj +[ 525 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 525 0 0 0 0 0 0 0 0 0 0 525 0 525 525 525 525 525 525 525 0 0 525 525 0 525 525 0 525 525 525 0 525 0 0 525 ] +endobj +150 0 obj +<< +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /EGSJGC+CMITT10 +/ItalicAngle -14 +/StemV 69 +/XHeight 431 +/FontBBox [ 11 -233 669 696 ] +/Flags 4 +/CharSet (/quoteright/hyphen/C/D/R/V/a/c/d/e/f/g/h/i/l/m/o/p/r/s/t/v/y) +/FontFile 151 0 R +>> +endobj +151 0 obj +<< +/Length1 1103 +/Length2 4564 +/Length3 532 +/Length 5287 /Filter /FlateDecode -/Length 2961 >> stream -x[mo6_zN$wmsh?hj ʶpZɑUŕpp!pf|xܛ^%?.{K@" %&/vvW\t,=XiȤs - -҂NwחllW2H(ac$87JTOU?7ͤ[haSR Bay0H?B& #Sa6 \~4aV[[LR.Ǿ1 e0mqFC ﻷM !eVu¾}|{e=t s“62z~_ C`Fx+F:#[! Ke$նa2Cyز'A8A)> :?oXV[[ pRX8VfP*m;XR@FURB`ifx:_ -ԇcݵQ_ G`:@09ZYi[Ά S+b@V120c-fƑȳ3O -r|Or+ |~`THo Dm"Io:8[3e)_AY<݉@\J.(>lS4Lg bDFU4e0"8%0cfh6\kS6nt)؈mv2`3"zxe4Zm 6l ;elV@,fN8tSBWok$}x#ވeH0$Q~32ʒIsED`b#|F*>9>`E~6⾍(cE ?(ʈDaU /V%3w^J'zE@|_]N.YY$Obe(f -iח4*7|at&y^XPྟFkH%0~~HK':,m7.X-cWUrkl 8>X9ڍի*BCD"]X2~uRI&Mm/@'E>J /`a)\Wb%HUN 73 2د|tM׽{D'43]r[""QU V}lfb餶AQX}S7sgR2Cn|\]i^1ᓂI9G5[aB4~,%>x rfQAi@Isc -EΰQu9E peP8m\ rXC8 -#A+ I. "臆})ãj@ cvMG -;56A) -mș]òUU 7SQ LN/%8)=v(&QDSL€$\dn Qmh['j;Y1Mw T"8g닝l'g4q~"H! -j7U[b -;ꇡ>Bi~h-Ŧ:fT"\ev!![?_TjOLϼRRL^:^xIhxڑi gozF[[nzTFAu#CWP8mۗӚ]vdV.ޚ:bGj|s|-xI"\P 뛮k\z$yߖMNdaYiֶ:K< #f[3"}?$G6WPwS% ]*6aI~pCy 0,E;o0+&MQܳbfӳq9 w{f?Y7|iLJ -❃;C9 V14.[,*x}9P#c[Ou;TД8ީ~Tu2A),~ǣ;>Non'Ge7=MT\uLN~O>{ }o+JfఐJ')vUkeɤ-S* -ۡ},LLm([s9lJ˟[kpP'1/VhZA|;Wi6lm_co ?KpwO +pHRs_`($vP:(D8C}4D3"m86Zp]-5gL|QWObM(%￟MCN> Ih,u@&:bq+q2#Xe-OqV?GB KH`gwg4VE2XƿH +C#~?@07`oHu o(A-CAߐ F!Q=~C~Cb#_(FT}+TUq}E))Y@JVbѷ%+Hqo]_+?!nqɯb{xʗp|mn&#|L:=SΕVcڦn5j?78N%!!fMOEQQt ^h6<`uvXcC{),V{big&wB蝅kKjx~ ( òV9$p5a+j}2Ż.Eˑ"=b.>cG X ?LiǢxƄ)q/:Aë=ʜ +qвޒm~e/B{=Y$*FIf9,tK۶ioujRqnO!W| x;;Uhh͆(.ڻX咴hɒ3?$O@㢛&+C%z;w yYAYXQ~co,\rXľs?hS}lͳ ]ߢnTLɾ4{:Jc܌鶨Eo&5 )J}YS|Onc/uCF(I!_VVNݶHbzLD7#6<'̸tkvy8H z6Uy<- Gq^"];\͝P=Zkf-?NyԾ[^>gmx[v 6jZ]x˻) u >&]-0Ұ;-9%V^kVQTi8W-f_>~4\6hrZ +j<#4'b ih~Hnz2EMBn;tbj'T6qpk}PD/l/ԳOsdPワR~Cyu{}?=;kSD{^UC'-I+>Xܛz Ez[~c -\t&d#=%o5w>wEDZZD!rj/5zgO3e=ӕ̴fyhufR܎FdJ,7)m# +{^1lT%9b|h>U,\ZVb j4=c lНvnmtWu7w7$ZEz.d\^M5Wa|lDۖWrΨ9SG`c@-u@r E ]L1 p_IC %A!Ƞe+0u=:[ZalZ˾[/%G0vv.ܨ3`{S9W^:վ:{̧JA1nAR1/̷̈́RN'ȱ/F6R3҅)1lϒ'a!PQ@n'g "495wD^qC7o[ăO\ KLRy9u8GW-nHEˠ$0~EΡc'C-7ML5s݌f=hUc OBRTRϽfUb,ӖX%o[W ~0=2`Yk[l];w'Ik]@q$³:>JF8eU?b 79sWK\L+/P/ب[Bf+Cu9~t=VZ~{1`F`+9Xݲn;R+:% +KQ!ak9f +5Vj: +}ѝ>fz=JE JuK72u{%=K{א_˿`RƶɅGvaOs~Le|>XXQ`>T6hox#snع.YDN-uy/''[[osj.x~A IZ~]vގmߙltMW,oq)'bͼsd:^w~K/wͲo%NONJY=_V`kYk p ͺJW~.!\/vUlTs=qZL%QmJ9*5H%']JػcK ##J7 H3L܋ܚv(`Uny'3jRAVfr<1,'s}qv +>; )9)#z;;a5 gY3_vLR _aW4_\H6\ٳMi FT$Ag ӖiYgJIHhl*}">vz9hW@#wlj##a؂V9飪E9ʄ+:.]R(D1җ)Oո꽓eQIg:dFMgdرw $$\nAro7݅ +nNUClx=2L'G=UpxyD߰*QnzIHws\q(;s {H]C۩ LX1|V!F:rF`<,dTtfs ]/nuDW :";E>@jݾ^Q($ J4e٫?ـ1;(KsڂN'RV̕e!+: ѕXv $maY&1ꏛ 7FR܉(i,< (*𿋘}#x}~)¨ +D_y[%Jj|;]OUay=gԱh~ֻZD +>;uӬFb7pn1 _9+K/h%+h8&t/Ǒ\I/+@yOS[7r\ԥ[iGn,\R:+қr3V kG93˚ﺿͪ9Ye_?O>eYx*?M[xQ8=8$O!GG$\AA+a(hNMQZxtM=Bv 0h0E: $LV[I%|ИwݦX b\}Kx|IKw^lm_IWǨw>]f~|ԛW2[I $R+U4CO.2:q!5m)/b6:[!GS2jl'$8b=(_ޙvrXh>HM&{y^bI( (€kuFڵF8JidA{ɌQ n#5 J0sT0 $3>x˰* _Yɗ'B 8mo&CΑwތ&,W9f;w]ǐ6 rYC}$NR"Q? 6RkGO2[j954):R)6$I<^?!B 8  +U8endstream endobj -136 0 obj +152 0 obj +<< +/Filter /FlateDecode +/Length 3036 +>> +stream +x[[ܶ~_'c"JrC8 @vV茴ȏUEi6=~\~REdo3`0 E=u2+Exϣ560I0YnGT/wD5k1c-Vok?f)IbX5jI͛}}_uK쪹hbYQ.;fb G$O ͷf(-H +kV XV]4LW#e]ie4As4 HܖO-eC(&eLSe"H .g$3z a7&p B';!ad1N7ɣ;E) AP,p[ HCԙ +EYLH$!0q.|2 $zi*,i  Ej~~v嗪ˣ~_J +ǧ@\"y0hni)".Y]駛pFpUFhúlj7QJ [g<9G'q?PgQN&¢3dVTZ{=[uϽͲ!e7.& ~jR{I)Wէ~LoeݏA껣QHu4lQj6#ڲ;涜Bec;8Xpd+:Ba¡<"M SE 4jH*L}zDeQ +yR!hnn.a( 9=QF UbZUw*FH {US84:W.7yu:i-duS |=5(RZqvsQc2bF$Fc|+:FA|InL.FЕ61o?5L-f!k,^gsX\7:^l0Df0Ѹ櫹<]M95k-]hxt_N !}{Zq}a9jvjJWի?DveC" 9.m" X +F? L E\A5cz!%QO7g +<=hJ$tInnYFͰ>мAr6hT5e9P(lQs[(֞!fzn+tI<gmCj0FڋL-vmC\CۆXY@m`J#$Ӝ"rmv-yi˽DrBT-oDT7W@;uDsQB<*nn>i 54痄SFuV5uCtV$r  W>Hc7@pZZMg<{ +_/<޾Ԕ8npEY:` jH_Qa;C{XY +}p(™ŹEiY\[D09!k> & OPyr#hVpZGSmCe.F"JN~Uc(v.X|x[+{($ҺGqv‡Q_p:9e:̃G&|cA(tA+EځzvAIUH5`^?pęXk4⠙ڶXVnJ)r\~`i/7y|@v>)7fi^7K7bT w04yxC݆ҫ&] @fPKw a8ݒCc=<GJV4upt\@ 8=@ VŪ uLc0Sg/knX+n%PQ,UMa>jnJۨ?MF0\ 8fb"6ɉ5/>/eǯÛfR]Q%Pޖv#|ؙ/}ei&ǞPӬ WKb<)BX!4T-2}ŕBP9 Wk{ӍL +`_(~F[pNTk2!=%- 21.>GԷf9R2F4up)w6])Urt`t&Z/?`phByE{є8kqߚkJEc4xqMY5|?oQ5A6 jJj9<,MU/GQhɪ0BP$^bM?Qφ~kQ qH=_aN$%[찛zqh JM*IV4up mVJl]H0i0Ax)N]W6` GyW(DqHJ/~e)XE`, `?_0Eendstream +endobj +153 0 obj << /Type /Page -/Annots [ 137 0 R ] -/Resources 138 0 R -/MediaBox [ 0 0 612 792 ] +/Annots [ 154 0 R ] +/Resources 155 0 R +/MediaBox [ 0 0 595.276 841.89 ] /Parent 2 0 R -/Contents 139 0 R +/Contents 156 0 R >> endobj -137 0 obj +154 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 215.562 303.985 241.654 314.54 ] +/Rect [ 193.319 215.561 220.218 227.516 ] /Subtype /Link /A << /S /GoTo @@ -1881,125 +2254,139 @@ endobj >> >> endobj -138 0 obj +155 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F69 113 0 R -/F60 44 0 R -/F66 87 0 R +/F40 57 0 R +/F14 110 0 R +/F38 45 0 R +/F8 49 0 R +/F44 129 0 R +/F39 53 0 R +/F43 96 0 R >> /ProcSet [ /PDF /Text ] >> endobj -139 0 obj +156 0 obj << /Filter /FlateDecode -/Length 3344 +/Length 4510 >> stream -x\[6~_“F,-aMgwyؚc{"i2=$ŋ$J- rHwȣ~ E/2/ֻ xFJڱo.z"GyW7aY߽\Xvx+GBpRKr'C&)$) -OmsqnMr,dSe﫿9y&F[j|r*ˍ,`esO*I]i"z  85&ղ^]FJ2M5<2D}cu9<,(Ep,/ںtj[ ź9Bḥ&WGR1c[/^V.ʹ?B'*z[e4\8Q{5]ݯ+Î$xO.},EVHY8ߩ󎉍:lHXǟh3fL']H$;{KxQz%fp~;Q~lrҚ> 4U:@-r\Y5cwڥ ,Ei:]H"sbE~ʣʳxTӘGu9=Qp8GMmzTwo'hkڱXJή#gRͱNב\aOh!vAD2]|YjI@n$,=&jۤ}=9Fݾ+: [F -ٟp)2X[C^E*jI@.z)-9Ÿy)uj_]{P,ɨ2RŖac\դU[m>{"nvIh.O~>bĸf)Qn9 'N?3Om%p7'A |п]"!cBn[^ݚkmcͭoG˵16}3vȚծv˹vjn<_Dߕ]H  MTL TL}v}kW 0ay tڔTgi+jE%RR} M4S&e/ -+pncTˬvwk[sWyد;H!e}OwfLxDQeLk%!āsꖴ!0^Km=rYBT(P5M(ẃ}3rkm m`RCOPa$;6h -%DYI@hاA+h 1"t.߱cZ:!֋psdbP/{쭋څ:˕JǠe8!h4s}+qo셈 -H \i - Ca5PoZ`V葴A:hp1HEb{ڽG($DLwШ 9Os  b]xzpZ"J| ?\S$sxd\={_fE&FNMaI-9q T'xV3&ٓh a,yc=EfBc T=n5jJ*[hBflDPxh}ޮ k^HLhu|6"." ʅy:Ԓ@IpΉi\Vt{)y xzxA=cSF2V/GkQFe2N7B8O-$64At+2)h7v\B$MF;rwSi:ڃ63{~Fpv -a%8%nɧ};4Y* H՟brh[rS0$3q,9Zb6į"]Pfƾ#@ B0y`è1]^'e8NXapJQʏUUÍc,-BkQDbI+# OAQƏ8T\҉g0aMSk,@9sDzϔF l7}lwڑ^4 0`LĜ}]p]Q̹=Vd(9>;#T$@_'n™ -xGNIy2dYY -5Y[,pk}*1!4gƦ?|d RȨE'S'DK- Er#`VݒC="&LLZjL2ua ud -%ZZm Dq3#fyWڷѺ7K5&,·䆕tF_;R`L+osѾ2s U1pb Z)ɀ IrDޓQXg6s|o{5nPX]͙Gcjۇ Nv(-:a43cjqˍ\(/Lendstream +xk۶ +}Ju!3y|hf&щg=|u&?7HLҌs .ł/xN*Vd~wQNLb$\fJ% /xʉBJ텟P6^\2w~y @L?/7pb)~'_|wf'%EUkx,(Ur%&wa*ݯO?ƕ8`ER +JZ6R #G0@m6嶾_n{H(hx:hx*~{X^i4xY| T RI1Rnt\" d Dk //I, )PJ5(R%)vwնvAv@SL8@*|Њ\H8 S+ +qBAF`x GtF>=JR!<0"s 0A az6; +>ڰŠ#Xh:hx*W6U^pM m)j7 hxIG_ܼ|Xn+3m~<%և`b~_C+o,C\v/Xn-r8u8Qn I%R=6-E[ޜ@fzۥ +pAuB$V$к"TDKftKgeX&L^_}5wrB ],dd`9ﴘNL0LVs17ᕅξ8AU|qڽ}m>[' z@V܏ܽ.wnUmS" ˣRB7&犉V$:rBCB??&+'`3̯/r\d(*Ynڀ k5by/<+ Wق +q[*9Rв@FFL-{T|,?㫓fl>k?]\,.^)~T(͑C<:1A. ڪ<)ҷx l>޳?od=]mO{kַ̛*`m 5/+sde؄+ЏV$XBHl,7}ϭ]JpRD𬏄AB˦Y`i9' L> ̏w`89tĤ9ƇX+ .஝4JPmC3F7H!8֛]?eHpD0f_xՖ>Ga &ӧrs.D1H\ZW-+ WaXe:| ḦOaO5z};d*dTW[ +lđ!H~$4S5koܱp7ݰK>2atۙK;OVo]fbCιowdWjPǔ8hEڒg+h>&OZQɻ "w©1A3:6߶7+d; EOy#P[%WvxnR=R&&:b}C;KT@ 28alc\yWrrzFEv$Ulh D9zzaq00fD@RM[J;km6ޥP`_0Sɖt%-o%P%)$ZC6YJ>մR}w4Y <8 +y2țTa- (uM:DأTqdm\!X1%XzZmC/!v\7p5{fťּNXR+}9J6"mleo h(|ë,a~ԴvMka)3IJvY͇F;446%0+B髲CXtEFWݿH@!hut7%-,HTX2YMTk,1fMH%9ufu`@]@Z3'8nv9@l2 +Q0 H +aE2=gaO^gJ)4h"DlVVG#C|Ѩ0vkFA/:(Pc/-s}j6/^ S 2z-CeDŽ$Zhcf LGW or}3¬EngsMMEO >F? 4|cf& ^cqND`؝~HEMqb@6 Prۜt 4[ġE*<4 z=67.)駶)\5P +:oڎaR?1v-%*%Ex¤:ܘ_ +Ny\w/L_xs雜RQ5p"Wn+4}` [<$8Z\qN^4}y 5+90Le;M:0@'Iog}u޾ ۗl,ofp<ѕa<x5RAppS2 9\z1T# $M܎4g}-{=%0艭bٳǦˌ3~P*!r\>i|0bs&:4:HD:S[KvOgKp, PmwCPWtsD\zA`K}xo(Z)-i=6fك̜'0eɤ~}.^sdx'jAz 2>dxD%F~2m8"[ ڄ,Ju1VQ&/{?Pifj5k3IM}mwlf +ӫtzeñzQr6{b)EbMKBpOIsRBL"I?ƢYdH,j c(J0a 名l&WHQY{XhBȅ&IsڗxG̋F̕; \7@023 =XnD0PpfQ{+":% ~Stѥx~en%ݐah;\ueR,2EXL(xKd@TP>;z LA 9|\ W/J׭5%"fS4z;~OmR&J2kfY2ih! &2)=(]r m4" CR pcu(IEh\EZa--gnZc|y/opѰ 8lhԏpqm#̱IpR$Θj¦'΄%g # $,l! XhT:TSZJ޺&\/!B1}$*xsdAФd-_ϜKֵvgOs`6hx/+$eˡ Rpl'Ac +R+mW^EB/H| I*ٓU`rrL̉z1Y +KџVDh`@p V8DM ~ټhy" lHȉ {"Fp9Oj3e֧ 2L(b"/8e$ؐ 0U!&21\'r$ =! 0'`bL\𙮼%R>[KLLzعA^I~PeedgO+"nއA8)R5pAAaf`aUUY5}$s|}֮[ %k~9O\f&s_$endstream endobj -140 0 obj +157 0 obj << /Type /Page /Parent 2 0 R -/Resources 141 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 142 0 R +/Resources 158 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 159 0 R >> endobj -141 0 obj +158 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R +/F38 45 0 R +/F40 57 0 R +/F8 49 0 R >> /ProcSet [ /PDF /Text ] >> endobj -142 0 obj +159 0 obj << /Filter /FlateDecode -/Length 1644 +/Length 1980 >> stream -xZMo8WT8($m heՃk+jJDF@L<͌~ * ?'!< -ճߖ_~gi Y|זDg`qaY#Z1m#c0Km~ؾ3x`V"oEv0$F).|Q,UhU\qÕPNjg8^ڼ"9?M M%U](g'}p>0b" ӌ" -i7k!zIS8^Uy,oy=fg8냇(!" Ź4V{#65\$%w4 lA(" *9h]"l85i7OPpE7Rf5)lL)2cr $7ν:# Ɯ&cuBi}7:r -\"ŀH@ ՁiXD:hyK-6LQHZ&= -( Z|q7[8q%:w" A5  --4vY}҉h@^hq;-C:m"Z8E %ZH62!3' (ţXwAbQ?]ǐ=F _g ˪0R _fvmr%nI6hn0S "2:x 8xt}2t#X$v41)ʝSƭ`1lym*A-"ep5L1փkdd TrL@`{6lihغcnU|ޭG7ױ|^s/xxE^ETH$extqThgŜ.<֫M~q_@trF[Խ#&,4S}:*0J -$c)`@-43L{G(TZy&ͷ&25yOI8NFT#8P)Jo Wnd|6|@$`6Y mr۳EўDҞ /S>Һ=IOvmC3IDjφ="EzU=D$^*@c?ณَVl^FBѮY):|2u  V RTHofNI_ebmh7f=q.V{"E[k#QDڵ_endstream +x[Mo6Wh/|X)1Mrh-b z^Gi 8NvvߑDRDR=A[ < HHGXqDƂee^:d,e ͫ;^R3rD(+l ͢6}8f bwf[:;>G7'nj8CG +m4T*Ԩ0Hw˅& _3?NDe} l'aBn5}§ 1*[*,w'r;;/2Mw*3HRdIΕM{51=>:ƝQ* Yv,uē̬D eiH|9=-׻+fM,(yLڏpjtSIV:w3/]n#P7[4!@ۅ/egUJv1,mVINBTef*߷K3gCK.ImppI:d$qnu[o٭KXv>-} >}ZS̆KˏpRtIC}:Z&}Z(Gqi^ 0saFM` sk1yMo?O$uLtedfWlž9q9~upWVZmx ֆs\0WxehK$%[ EfTMuw$!cSx1b0ʹ9c`z,zq4BQYFLb˦.ǩ:CvKkj΢P + ~ fώWEѣ|GaFf%7LdeJ]p.k.MoҖݜ CHMJ kA p%oBq`6+ ;QqO)5? +r2[ZYNki Wi5ܻ4&t5yŌ75*6aa+pYL~N޼j\6ܥl+5.#2jP&ȵFVtƊzŚ-%^!0X/4&4*ÕZj-.OU_$Wqm&: ʢZ cb0yZoُoendstream endobj -143 0 obj +160 0 obj << /Type /Page /Parent 2 0 R -/Resources 144 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 145 0 R +/Resources 161 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 162 0 R >> endobj -144 0 obj +161 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R +/F39 53 0 R >> /ProcSet [ /PDF /Text ] >> endobj -145 0 obj +162 0 obj << /Filter /FlateDecode -/Length 1771 +/Length 3121 >> stream -xMo8e5Msfw^lzpgi#HPF.AQԖ^;3caC2n_͝ܚ{'dY6fElJI51oB9HIxA*g&e6T&uBj_d3Ap6=\-v;|Kޚ Cz3BBɆ|\/|s9=̼_wMͷղ?HE>n^}`Ĕ~k ݄8+n5gXmf,)$a'5ʬOLQ$ꦶ/li9ٜ@ݻf0BQ}zٚxbz7׺uS@@h3+\r9X4u׋U]2r8'g̈́:YKY%# x M6\lMr-W&,j.N~y4G9!=@"T^IT3+P]f.eH1 ?BȦ; b283 yX޵oִtD!!| _s;_G7^R\Nv[/|[bXMva3`TRYTRһrGدjMٙ)"tL\L/k3q*'=Z><.VU;jʪ{P,eg -SOM?-QFS; -zR%qk[;x`ڱ~kWZQHWeDjևj+VP -@58j#eQ-FNjihD& -L[GYἛ )1y RkʦqRsIͲz [IZ8YX YRRzH5nXWw! 0f& -"8H}ټ^k!haI`%LVZ3--{tdYO ` s;EgLgY'3B[_>s"`+\ hb;XrPNSѝ.xtg4/ybAy:MV`Fs f@=x[l4OH-w}'se9`s0 -QV -1G]G;cp9G*0l?@?0No`NoEך6۳kȿ@Mj b[Zۯ||=`+\ hb;gC΁)hvîlK͞UkK}\k RT2JA%gl(xm-Ps'zuAGl)k@r~%H7{d]/HF y"$'3 9 I bP!m{c܉GjCQr5%@ϲvf7Ͷ4(ٚͮCɲ.hd$%'tlPr@%5=SPJn[p5J42S8ɣIH3%d: +)P'u +2Qra(P$dC`Ӆ&4q09T%۪L= & `K<6/,Ah٣H/͡ +ĎJ=vxi.剔CT@!CeTՆ[lՒ|ˉecmZ4_j, +|ﳰ' +бʡ]`4VNCcXmXYƒ`ɣKH3+d: +a)'u +2rAXypTz@y74ѷ4C&*Ġr[ 't2rۄaPy;!e3:${} I J6:!Hd 'RArR9ݮyH4TU]k4bǮw4rɌFf&k/5NҝG|=>qW@䄎 DB!'p +m \pR跌$y4 i@LC1:DNSF D<7 "O5NXƣ#4q9T%۪L=` & 9͈ !e$&RfeftWBEHs)O"r)Er:&\3T^ */c;`Eo9Wf9#raǮlKL@]ygfO4#Ah3^r:s tP`X,i:m,۪%t3BB6UZcrʒ"J̖1V@8y48Eu!(-ݫb0.Ơ5’[D@'I(@аRB,1!J`OzUi!OݪM2MVV 7[nIO(-pޜO/L8U[P.ܒj +OPB2]M"HSQAgGҹ!OgKsaث"G+áʂz pquiAmΕ{ 2KnD#6nr6\ +JƇؓ=xOF+Y)n*d5=N1 + \=Ȣ%0Σd ͐AVJdBcIVbhTfm$pKZDp/p݅IVVE=ƺ#{}?֖UJ7 +UMڪL0N0JS V=;o|-8U8M?ψTT+jWK397~ߚ#s4js?`p13H"cTN{V8@ydx%)eөṱD ᧃ#ϱu_3GV.~0X-q5>y:4M=%6;%%!3A`v 0$ +:KqV,ܯu "?θhbeQwi\!M(k֯Z6l*r՝Oebh39ci4-D^ YljO32erAXq1<97z(%G +uU#[ґ#RYˑ0)jf +;^īՓ+m)Yh*[ ֝i~W|.k]zj[,z%#e9d:1cp (&Œ\\Emٮ}Ѝ-OjzQy?Șՠ9EnxcW,qc 5!yX&ϭ'L%> endobj -147 0 obj +164 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 403.457 260.752 441.016 270.76 ] +/Rect [ 364.552 646.038 403.157 657.163 ] /Subtype /Link /A << /S /GoTo @@ -2007,2540 +2394,2892 @@ endobj >> >> endobj -148 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R -/F69 113 0 R -/F73 130 0 R -/F14 88 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -149 0 obj -<< -/Filter /FlateDecode -/Length 2861 ->> -stream -x[[oF~ׯIY[[l_zCZbP3W!EQEޫ?nF>܌VFF9@B^ykziI_ն|ڂ?7Ф$('4Yզ - W`"O3F`Y{GkXp˒,G_а[#83`ӌ ^YfϔuWc.ˋ qgiI4q8wgѽ_HDHdt- " 6K\!T@\KZ 7jppiQ{8Al%nŶ4=;Y:Fnw?e$(E,q` -xJ* 82T/fOh"-pJ}IƓ3p؋XA>l !HZ!G"|Qܒ|p 6h9"'r}cm8EC ͓vXҘ+ 0$!a@Kh1\,;'cXI)e}/yuZWUgnAtN%7Uw-p޸!0-=,cRCۢM416 TT5zPLSiUsSߟ'P[] V[Q0Fw_`f<ʾu[ֽݭSE4l =(P}0s±hi7lx$L8_pۓҺvfU5yrl -drDfKGt](9מOnSNx๕j(޺'5OJ\d > (\@q# T-C?(̢;%&PJNΡ(@F%W)#S&Do!/T@p Gڌ&z4I=1 -r8/ɡMډ -쏘Im_*}KQ_*n]@ Mt[if;}@qyVy9I?>HL[ jy" -8ϵ)O^[)Nr@,I -JuF,BZU1:s[Q/kGfRߡZV}_Ujr|Cä́)wݪV^CެoX뎣#M세$&m,Z [5IIKz3٫vZrAj5,cV::}۶1 iJˊ?smaP,!8b,ZD"_2s"s*ΠYg{h=#;uݱuJ@%Rc I?TnC^?E}3f KaDu9zdAo -e׼|lnjLRnWT-ڸ7IN'[\YYIܢKlif[:>CK]h k4iQ%+26򹃥oZѦDdbIHn]?q1,gWf7A撲])u^fĒCD~(^b1hi7<% i:qt)׳Q=u6{Cen48Nhh+92bD3_{ISzYʷdwd'`dd$GA~wLц\-&f&t PazECTM)iVsח}kwE({?[,Lendstream -endobj -150 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 151 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 152 0 R ->> -endobj -151 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F69 113 0 R -/F60 44 0 R -/F66 87 0 R -/F73 130 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -152 0 obj -<< -/Filter /FlateDecode -/Length 1779 ->> -stream -xYKsHWpʩ0'0U{UJr~{d٨R h5?ITz /ćG~lrED2`l1 #Y2כ;L zւhODr/$x.3x`o'O!O]ש~,~fq*ѐ"ƥAwx_&1y#.XO(&L5Fh4߂CC8mL;"Y.i1}mH[vP[rVyY{x3?XS  )c,]b>m^HR !I:z e-FA-\K~-~M-䃾ّ( brw۷7Ƒ-Ws~8@T^2Kͷt(0K)9 夣d@pR;k!rW[|jXL;t0$d٠| #%[tgy ^D6A]j7W&趛x=ZL:GLU \D ʻ SN6%X'hw`%CL*o͗rw7ڠτ7 @.hp0F_|ldW ,B!Dm " iKk4߂\*mֻX˴x؄-E#R_*;}KBNJ.R ;T71| 0Y.q^\j~0;#'RYTBPWއVK{W+Ioz_j/:MY'ُԹh X(d4{rO*"j?|WJqpn}y*96w 5f2<Kx 9cR Qn@(ΚV˼:l^zDn]A sGp4KoNLU܅D -ax Fk^ ! oܠPdi;Ԧ^2(*)J3M~D[:ct[p}i.E~jWI B4j2P6h[CEh((]98sg:(R<m5eԖXQVxP[( >zhgJDE 0 -x[>5`_IW#f;:9Xݾo9:.[рAk-GoG[p``Y%y魥TMduA|5o9`1KfcH: ѻW\,%]$KGGFTw9F6-"py{`XGR0T@qȠ| A%"rn(F6@D}'P".Z ("\HcvPc&DQDup5sV#X! ^>uNtҠ ">rW꘳;eryIcix4<<9iφ\}$oqendstream -endobj -153 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 154 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 155 0 R ->> -endobj -154 0 obj -<< -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F69 113 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -155 0 obj -<< -/Filter /FlateDecode -/Length 1862 ->> -stream -xZKs6WԱ%I\:I=9hF[wI@dL\~ŷPw3d'J%9Qb3˒nٯQ(M.of sra},1䵮} Vνe-F["(1Heybd<29+رP8LϾ%g`ұ6-q7bo+j%IZR³ls(Equ{n{( :V<,@ɰ'L$h$Dy_'gp 0R 2=^ @TtͿg&!!HUYnND$c.;x3\ Q%9Cȴֳfl$,,qZSD|]_&Ymm˥#LD5K=&ND2 -jee ͊X3R" "݀YobU#ԠFhKu=Wa  FW:XW/``B?-a[=,ш$-IDǷ)jC|mrpzJnXnH ~ zDAjB 'V.pbH@g5̷ksuvu S+%9(Ȝ=k|`[ypMZlL~vK,Z _pAː`v8_ZG Mr#i>-85E 2̃iLpE`dNcD˄|-m$6 tSDw0Z[^+ 3d~ynm%Lusbqe hy52O}oY cʫQEm9ar<lE`-s5e\;.U 'GQ4ӒDlzo`K&Gԍapba.d0"j|06Z4ud{UQln RCȪX#ōb=?ПbQWvLi?"՗×߅/ -_}~ۭͳ|}5bE , rˠӫu -;׺zuxv\ɪ4&H#VQVK|0Jf[.rpȫ^'joim.0~70kMvjru@NhDK9|-YmlT (J;#{>\Aq8cCR#7#^pp"tec c˳t%ܳp-њcmu.Ŧؖ@t6xEļc5rgV -٩UAF9󡙀ѕGwY|7U2Sr;52xpp ľ4n Qu1HJ1ӏ;~4;j0yDO1NL6;#9 QDhADG˕ygo8ʩ6r*OpwWgF - 9eڄ qˀߍhm.(\&j~H VOhƷ8>;um7#{N͇q @"Xl3YSɐJxp~E?Qnendstream -endobj -156 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 157 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 158 0 R ->> -endobj -157 0 obj -<< -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F66 87 0 R -/F14 88 0 R -/F69 113 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -158 0 obj -<< -/Filter /FlateDecode -/Length 3121 ->> -stream -xZ[o6~8XDQ`oY]tI֮FJ8_xFA`9<7+aG,RE+=?/1LFf{mHv}~ǝH8^DWt%Wda02( 66MUy}uDld|ho - A5 7NP?ds0Ê:!BH)bPOWLF/ƈwWe2_~hqgRPDpKE2M.E܀NH|BCS)ھw77}1+B&-ljPhs贒$loW<h=*1czӕC!$& `ȠvF/HI02##C܍_wGwM]շ^՗nY5[+z;aځ? w-ͣFP0mV-$b qc,jWCٛS9/}tgLl 1|= 2p,eR ,=.ʬҕOu鶻{_S}J5GS u0Y$8&X8; <L0v̲⒀#"n@['Nr{5+ϘD:\snfM!NR'cƄRD"OʗI$" JXh y\/e8q:q4E˘SN'h +mcZooq` -"< 134'PMS_kjRu(Uʕ0NȟW8]T\m8*@'$,RThT%i1ၙ"Rc;8ALê61*hȒʝT7A(,;78U3䊺a$f"΢Gq -an#fr@[;rB-ŻR2Jg]S#a -*]C6$=g -V-Y;f3DሻB;ɀI$Q@XMi8@$ L;f%}L3h։ptBSO8~s F"b;n&[g)ܒk:Q 7p>!n 痡ҢRI)x;',TfH%džR2y)>Zu -ܥ -o![qs%YB'يu&\6CT .bHuk֢hG':m -qwzs>vEzu[C`5{OPY0ЗWm㡶[׽s9,15५:e,] PwnT3 ULk7乹ECV\ vKf) - cNfm R:!=m6O NNveUŏMSHKeT7]_>؞P`J <\Ul^x]8ؾ bZ"IOW&,) X:t,cV_٥h։TZN;e dk*xV%;Pket֦_aNYSTlMX7ގ6ɼ*&Glb^ 2R7;DiYݽPePsQ#袆arp'Nkt@3bzS*_]`Dy1H<ǠܱqaA v@t? LSWZ$`k7Z|kI0uf$&Lg=k`e_H17Wq'mxp]u_>Spoћׯ0ZjnZ=/loA`Rtr$QiJP -2}jȔ0Bȸ[uD龨e,1zdU܈6/<s͈tޭ2.B,dU6H+L{B߾ip˦}cH ,i5 @GwSJMܡSC } adCsv"_Luti'T2 h wI$ISK^Otrmllf ri8qoU9p_$YP( \_,E8a< -]ٟ*ߝ:TbZf\1M;Ak+BY7n Eռ؏7߫֊R5e0#00c#ae P>&FACпuF:e*SFh혣GtRNí4+tJdTJu]b1%ߕpU32Rj -lxioMQFg *V%ZJ|ꅀG` V/,18^t!*]PӟAndݴVe{tV3PtCmS]+KqU!\MQxTRD288;f)ۜ).h90' GKlӤu& -_)UmDR.F$xBDI?H Xj0Pv"}]e78K~!-* !R$%O'$k0cdh䮯\Kze#ã?r C%[)ς]<۾TwCj> -endobj -160 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F60 44 0 R -/F69 113 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -161 0 obj -<< -/Filter /FlateDecode -/Length 1903 ->> -stream -xY[s6~_Sg $!;C<4ӗ$3ƻZ^6I} b n㱀/,8nx7'_}rq:= Bm\/>zKx˷.n2#2"I EYJIcncnmx](anAz.wi4߂IpBrVEVWݮdr_Oxyd{9`@S.0H)ɰmgzUJckY -Db"w\6a^08g) @Pa7TԚaLB$n}_)bCP a4#Da" ہ26+' ۾QCUCP|Y:gWd(Irą0gr$p=-2k>7yq'>X0oƝ " s7Ch2P`q %qfyS5+Xyd~iu+ x-*No@nBhdija Z`@S<;(v UvywF:H~r μVw!ml@-zHKwUsTg6 sx [h)Ć#cS!K |?>Ȩ!Bթ`vFe4+y^oH4 k,'2V6ޮJ/.f杼^lmUjoV$ӏN1'R D;c1ª}<10f _2ͷFQSvqDs;"C/#PY! @oj.w'Xۛ#խ>YIlmSR؝$c##ʱC`&JکU} ѿf8:jh]s47٧^5Kfuv8yu5(mqTSLpx[,C ]<7Q5o+5L[^hǢAN!8#7y&45^ErâuN85ֿgؗ31 |^F-l /0òx>:mZu_}{W\ɽ,Jus8GQTsG/[hc5[(?tM(/3)?r[pcptk )E5~nOet< WɕUYXzذt҆[ ] -:/EF-8ǥPyaX:V(js/DQ0n 3v/n& DG0ՃbvCSh7 -T0QD8̙).&"qv;* -# LZ8 -h8[pc mxi\̣ &8׸>Cqk{S| hZugHG'J -8qg_x+4߂6hYk'8e!qe Pܐ4IEZݸW^87uG^.endstream -endobj -162 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 163 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 164 0 R ->> -endobj -163 0 obj -<< -/Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F73 130 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -164 0 obj -<< -/Filter /FlateDecode -/Length 1763 ->> -stream -xZIoFWI8}h/ER!:rȢBN7y$q7}B ĘDQ,n'8Rtr #Y2]M3U;]NI(9O$?'Mxݮ5% 3HrǤTSXl9Jpr!+懼oeM^^åҔpMolJ2mSZ TA;7јnfETKW!H3$ea)ҰDzhFp=,*2lf7@>3yB̮1l3_,bxC*l9ُHvyȗ%p5ˊ7vSY{mSuP)g1 -J8W\$\adn dJ2Pׇ}8lmOOSINb:b+ғ6m=5pI8#ݩM#َbSCmKE(UK8pwSloӁem[h8Tm-/_d}@PX@=Ac6Zu=)˄m!ˮ>~T.l+v"OYj98yr{,Y0NdG;j9F@޴,Hit1w|jwޏX0-s-຤ሆ1> +/ProcSet [ /PDF /Text ] >> endobj 166 0 obj << -/Font << -/F38 5 0 R -/F69 113 0 R -/F60 44 0 R -/F62 45 0 R -/F14 88 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 2408 >> +stream +xZKo8W ZlMezw;dlrڀce9=[KD)nh4b[UŪU$-p?pDN8¹LVϋ,yLaryrW4I_*Q.hrY1$G~_UREe p,_v|P,kDRc[UQ*+{o `o \%sz" JoV:4Va Y#A;tMV ^+SNxd IcF9w+;!ZsYm_˵Oqp)n2|K;5 +J%Yaָ1@3gաQWNƘ.7iW{@|P!r-ӡz+cZVb瞟,G׭ZqX+7eUW:,.r2qYFmv2mFFl9E4*_- ĘCm9`k^G)ei8l- Rb~YGbΜn:82,G;8pCx~HXe7U/.f5ڀ in'9P^n.R+yЍݧcX*8 +<쇻`Iwғ؇tYq@qUWIXJBPTTrD(2X^Yb.wX!-e1!zmR=9ʁUyv*v[L %̐d.$Cv"S|n]z| llvt(Xz=l}AX_ \3:nB-c%EKa F$o력~]HY6,%QӶqs>XH~%vr_J?aesHE7Z f30!̒v4_~|y"e_^@x^HW5)B]4 C}=E<3*BZIe)kF>tܢC56-{- :C/<횣s hN{]iaO륞#nΠ| +ѻ03lnf1@HyXC{8na߽p['Boew)koK}ˡ8thm=Ͱ1=dVPݚ#H[>/]%9}64j +cy5~SPfNjE $IVQ=H{9֬7qiFh}kq+$zs6|k/0z {߶a[U}4n듦Ź#b܅QD6JN)Ѷf~SOKapQcrlщ1nT#*[CZ6r&C܎`}v}@)&"0zҚ9L^6)BIP9IgpBL ̼0wI~2 \Uwg^oB|.7?(Ącgc |)W;IWsH0i}R 2S8>.54SPp 3}_Ѣv5!( +d[R{DO%becqEwB*.C[fmhnkK9 T?PΐM; F9>b[?55|!mڤ$g#}m'HwK`n79vc7ΈUW\z' #:¦[`l'h[O6Vb$p6SVπm4sΥ@cf XH#@*0n˴F"mEakМ8V id0{v82endstream endobj 167 0 obj << -/Filter /FlateDecode -/Length 2990 +/Type /Page +/Parent 2 0 R +/Resources 168 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 169 0 R >> -stream -x[[۸~_bXx4@lY6dwɃƖ3*|ؚ$_C7IƎ`Y> /Wx?8˭w5fiGVA)FQ)δ -EpUz Q&;ëwV/_~-Pb1*rq!ڤČ3$Kx_% MpWnn+`\K $kC)-z3Ҁm,Be؀վoו{ւa -U+0"<Ƒ$PȎ]'-d얕ܵ Z@kyCSSl*Ǥ -<>;00 NsE"%bFOيWyL7Gmz|m0X O820}-'E%S>a -oSU˽In\Zޫz=o#AL}V -".262*QBWe?BX%Bg{T/ qH׽,Xui/!>{׹gl6'hàg\=[,OyjRE9*2;I51%p&.Wn6 K&Bs_M L!XӚqU]:^"HpH p\2hY7$3L0uc,Va$5E؃[xxks5r _7wwc3\5z9.Hc5ѽ MMB L_h.@- -F{p|HjSYѧϨHBPK ">sz 'uXljnzKܶu߈+H& x`%sAoв.A`T@Pn!ZF =>X2u*-CոFR֡M -K |H!ҏrmw . -}uz;i9E2̣JbpTwQCTxDI쳀AŤDYLjڭ׻- -a9|$tRJ9Q?I -%M!q ++lw(ӭS8;zhYhR wc~U6/#CX -c},_rv$3K!GX fY Ci<2~̱Lӵc&dܘ:j*N*e46L6*dK׏ґm# j;yfΪGňB@ejJ#4T0(֞P#l.4jsn1679)NT)6}sr,-/㺊H[IڵE=iY8q2uGI# ':qBw+w1nIxmRH!H]%`Y6L Ur(ܘn `r>W=9uhυ)x£àqcIG&Mztgyy89@=Cf,4}6~Vf2,8TׯsZQ]_)ܘ}{<_$e< -0{jV7wImOb\KђCԒ)dߓ[rVN!@d/Rv6NN~?o9M ʋ0Uq{ U&Kuhs9e+o҉[VO9ZnMQ»q_6]yP0RR~qDMQIgwr-Z +?OyD!cyni]Qީ^Vi2-4=Inώ#]^(Dpač#)MKcaF_'Z6ӊۦ:vJ]nB񄀙2 Й|0 app][oGoS)o V8]Yќnj+j&?glrV;?k' -AvVDGevB#lj#HAsR 6PtL·6h׀@Kb;qi#&ь"zq`Szџ(,O1_SqbNd096Z7ϵQ]dZȗp`h)ܘcbBSdѝ-[諘-sc УZ΢m_(8) O"CK˦XJakѦ[`Tsֻݷ\Ç~I> +/ProcSet [ /PDF /Text ] >> endobj 169 0 obj << -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F69 113 0 R -/F14 88 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 2394 >> +stream +x[[s6~ׯSkoJ@f۝KYO_}%ь,9@\ҶݝDzt;sHg/Qh&$GXlu(?矽I/J%rŷ"SH4[B"Lez좮c ³M~P_Ǫ>\r{]r Z" ǯ@|͝}us񱺫jձq ׽X*$ %3|#(U2 ^`/(T/~sh74"H1UZWw㶹4s V-&HS&Tl jRhir.f#j%42 MSf_"FBuqPm&p;Nm9qy޿}[bmeeV\Ym{7)B&Mй+ Yl0˕g3Ӧy;%7GؼPF=DJMđK_XJTPQ4h܃K?2k wP4L-$o +!#O}vJdS ىU@4=D/n DMp^>8~'W0҇vΩd}Ennހ!,Q^lAPf6n#!I3BqH|yjL€PQJ @t|_(V|46.oH$SM̭̀GS +F?UI_C1iE/as\fDfOmdA$05^ƾs\嶳V Q,!Z҆j~n+44^YD\dF\e}Q{j4&Ϸ2 +hZv*=lAt.Yrti)WĀ` Ympn )Er\<[Xe4qLrg֢MjK1CPCu_&Qtj围C5%"Hz¦ySb&0 {hÂ^2Dkc=Y h pF8jsFD Q5jD +'FjE[W5&F+ƪ ;c$V'- 0>ȭHb',P~wE+-|vާZf6VJ0U@] +B +(ƔCI95ݠ=CM扢80Wb 55<]ʼ~a7QQdsTn׳[oMw-k6wؤzQ>%!7K Z H=tqF移Iw#pJs="0l!knwc@OF* ]&j !%WfN`& / =-gq =' *nK{p5v&)rM+%M D8 VB5þ2sRà 'cljgS2Ĉ2}ywؗ)/ TԖhW6"6eY/E+zr{s{ّ-O($%Fh +صS5NkIF4ѫItRGj<Ġ6s)ē""7#:Qoh7a`ELrT[] 34j<?47>G$/'~P.>"vx?~VTM&2R$'-qG5]:'L y>|yqY!C"ˊ.+V2ѕ@&~K45\@k'~ rvFD-1d~\v&hl%L1-s~X܃eB) NV&jDZTEdK~Z0T46Ӳd~rZHK%_;)0"TAf4vfk=`gޛ>v3tM4o n[}kL,`x,+prL0 f +ț7CU;intSBn6 zvB> 9 +!ZpFnNw8SE> -stream -xYKs6Wq!fNsA)[[R(ى}$^$r2], gJe%Qân%OTf -)AՂl^,}}.?/>]:Ί$:#%rR61%Rd7)`B*#ӚiwC03CFf8qv?ԏvRfgM󤲳~aە":3 -ͺQL4t;oϋQ%\ HIe,x-0qs$ s}}a[;h1Νw}u(T"+s9lV -Nqxxev( FJ}8FU70";[ۇh8̋r:r_}=:naNEs(KN?9Eʾykp6aFLbTĪE-]'d2#WG&lT1s+3TƾqI ;'ۢVr`5cw^F('N#TWrv׎:T8H`1PV4 0P!@Wy RP -q$g]R4B] -W& 0q S0`GzGH׉W}^\h&Hfyi2bo]ɰu*h+BQ6nLzhb)PPz>̉bL} -Q~ӭBl$NN@&8/=\:̑t2)NKAq#L[5~y>}l3^ǴJInPz"i7ަ@}$KL>[c* YSRsyD $OA˛.x] ]}UgakDv;]M[ F|*ޛY=`HP m:Ч6*}rB4sCjj#mQ`)`X -X( -2ujfD@vbZ>mpmܼMܯư'Ì׽e̘\Z<@D*1,LW ?xGaxuz3܈:qxU7ʆj\* -N Aa4qu*r}p xiy]=d&-ڨ3[ 1N*釜V6n+pQ3ն4Pd}\ 2)ؽTP Fxr$,j 02 i -X~&å62)o֫fe"M77mvJT ku`*g3آ`#;QXm>rcsW}9{HIލFThy7Vtгng ݟJ -cf -m<RВLhyJDE2ݮsv&m ^&/<~1Ywh1> +/ProcSet [ /PDF /Text ] >> endobj 172 0 obj << -/Font << -/F38 5 0 R -/F62 45 0 R -/F69 113 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 3628 >> +stream +x[s6B4DI]Cozv̄hwHT_ ,^@ڭ4X.>х,H$\/-%ĻLȊ/߯/}ՂR\\\AJIŲ_YqYoOfߗ뇾3wH7bD7?~4{?3v`BUp=8T"PƓ<бHPCnɚmi("PL%Vg0O9ZH-X5sJr(=o4h[Kb#@]ZJ |6oݤEXSrBRnI`$6/\"Ǻ=HJ&J8۬LwlB0o“gT ¥ 7鸄=s3ȯ!0 EdܲJ.s&_I8m^"C u6)Y)oFWrSj:ќ0@=1A|_Q!YUc{@+U67zm}-ݮ7p:*NLzlЩ%Eurܲ] "xWg鹄lǎ`2Tճ)X0@ܲ]#R9dCfi6BTwR4"%]Tgq;E17E^P\]}OgN؃AMkoQ [Wv; AfM)j}j8H2t +; ?w5uRٶe%Rwy`eDPΔr`Pչ慃 +[ {Qʰ$_bϝ/>FڽC_w?e0C|G` \o 1K1݊ĭx-x4f'̱s֣f~6ơ7qA궣)"acaNAHJ*v MJ6ZM8xoM\)B8jYq;6S?p<8mȺ~nU.{Xܗi;O~`7$4Dmj$N#C1nv ߮'+v߮7D0WWS{~r2"z\h Ji֐V7}gjR xmX5W5,`1[Y>*lQ,90)أ]xWv1W~ g˘%u8;(~77]mrA/IP4jm}E@kkcrF5"/)2Zl֙Y$O@e%4c}%%J&x$ܱLӱ斖[;-UNr͋RZz0jB9Lv$B2wᑨKׄK(YGY1'a|Gn2)߇d(K"` +||P05(,ۛ vB3TSd* _?=`F|"L>+jXtDM>/L«k <Ko!J+ v ΢+k/n[vRhѨnIefuul܋lLHT +<S(N:nY8u:f>BS@gGkm˼9V0-{|6 Q塭]Azvc81XA&CY1#us9%@Y̲ۑ9gF*?UoFbvҙ3LeFzo*C12!*@8eU75mZo!%3 "+Qo1h2M+Mv=YZÍO:*[mO/ އl"5sŭ͉SZ:Sq!.`TSE jbnacVnߵ[_ R,ڦl u~7ΖwNL%ϧ-2Z[$ %N:Jg($r4$*JIث]wd/xliHX,?j5au#~h x$$")"'v,,b8]MhW~8u43^R1}/ǏkV L=">ҝ0BF\_]MwwUɧ\؈XG3u%Tx>)ęwf,gcr&JF\w"^3ki57[Kl$+RqÕ䠢` H 12n0,9 ,ØPzcl(}_>U. Y "8:@endstream endobj 173 0 obj << -/Filter /FlateDecode -/Length 2876 +/Type /Page +/Parent 2 0 R +/Resources 174 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 175 0 R >> -stream -x[mܶ~B6)4u>vu{=wH%Q]q^3!)0#1X<\-5)U}s{; dvyooׂQݤdLfK}?NҶFR8Pv[9ERa6CzMDqn -7z֮ Cy"ZVw: PRVy3ûzan_uOѡůr CF#\cDWmW?87|r:o)9dfqv&a}j_Y7IfaM/QV&>$v(Xy #^G mRARU8^ڴJ!TOC6 1"- &j_Y' g֧ CԐ X~Zvnmb{lޖӒ nUi5]"DddMv#N " -`26L1v6' cUc6F?qwaMz+ zBA JϤb6Qz*Nqfp7Mҙ=.>d-Q0 ÇV&(H< b[Il le0t q`y\MQ8=׌F(2^ڴ@*{* jijf#0Qv!u+@AK1륕DEaX1;.N&?(AZA#VY|F@莜!,]\R n{/y:ᭂ67I -I@»V:o7Iǀ/QH%07#V&e#cjuؿ xŮw6u~r0G9k9]{\oDE k Ug_YJ~d`f1RfHD JMH ˛p#1` D3F8<IčQMhr>Մ=T.S^?)Gdu )i\<{ie"n=C!.G|˞6~SйzcZE{jH"n#k!;}e Șʐi5X aB89W' -5Wry*كǞ1>^o0u&Óz۬?6oc_df:Q0$䤤cp%@o -ƓPOt> }u0'ۏ'A@o?1հ,fg'u+@n VLa"NnDq/{~=zs'/ũ8% 1AUQ)RgRԓR3 ,4Ra q[R">"DhT7Ajk d>u-m\-^ؤWErWb\YfnI - 糊 /yNz^ؖ|{Mphr~yզ]!<{MڼiJlQhQx6\yݻd#6){eϡu>0ug"' (!.4D<aQ{v.FH"fK͐EI- V9@wzp)iH(xa/Le1A%FOcL CT 94ͩ1\sJF5ܛQր8aM%6u3$!3$҆FiP3M Ӆp}cCàh --Mnoz B?^:-9(x(N?ߴL#?ա~XW(5xv4%jqD476}"O4Ҵy!*Xss} L qbH2:n`J{b'a}CDg=iN{qc:0.ylXie".Ц- gaϤ\6=)CRkO#ဥWϟǁG1խ -ݑʞԗVhdM\i+.gY;c_ ×&)=4 _[?S+NR hNO?].3endstream endobj 174 0 obj << -/Type /Page -/Parent 2 0 R -/Resources 175 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 176 0 R +/Font << +/F38 45 0 R +/F40 57 0 R +/F14 110 0 R +/F8 49 0 R +>> +/ProcSet [ /PDF /Text ] >> endobj 175 0 obj << -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F69 113 0 R -/F14 88 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 2461 >> +stream +xZKs6Wl"$$ær\eJñ539eƓ &v8l|@$8 I<ݞdgOO + + Ȼ&iH$&W#P\NLNؔY҂$ prZm7%e=Tޭ궺,?`8H'f|+ QY$0@nlO( yڜ~kCK8e(.22C5j]11Ѓy +CNlHӀvYْ1)pO9[kvc;ZfSf6F;}>(K,O9s)Yhx hS Jø?GG2$=pf}VY+ojn{U<$dh&PPv$‡s7?%qNrF-ʿ[#d5PAz+D}@j֎ 󤵿Ws1 x1̦14/xȄySĈш_m6ZԘiv[~F(MN ٜ͛(<&J ufJ3ec`g3]5Ua_/S5ATY܄A4nTbF)o?V{|k[ +"hcX y7wC2꿿PaUl]R4JwF+Fsk؋Q>vtݘjUc +Tr}WeaH +I'Bp$(]rZMrBGcB[~haӔ4~p9Zw%qF7)OcWӅ½Բ|#!bT vػZ9v- ߛi<5nT}j7̾zA*ۮν;(7ʮnv~+kxC* !;`PnZ1 MxsEPqzU/l~"DO  #m +5끿xw)6w ׍ ۏ*76mߺè=0>_!p#6/ZX^{~D +dA-)l!2X]!Sڹ>őXZԍt` ߲&lu09Z>UOip4 QjSV[]\̧+*t|p9ót$H#f/p=yϡ>*d?䋃v) o`3<}E$C"KWɢt AEYM?/6],a -Z{]Pa@Ep5`K@ZMQFžeTG-ol2aB.ޟ- +/1"8,zCY1zX9onf3/PNwY4,cgיJsg{:ƓQ +lϠ\pBae4T`QDԷ M}5t2:# O0dX4 u$<^KCPݲIX/).gp* u (*@ ͢tݸG<qxb&8pݩ`(g0[- "tTƆ0{#B#I.*xBIA, n- DSg|fܮ(èpSSWҌO]":q2 R? Zr#:yBls+2KϯxufьݷP!F'BU,[%4t  +,K%cE>70T9/P||;Xwq^Ѡ dq;g.t`aGӟMo_H8vX8^H8XLn +w{2z|o9sh90~Kn}uΌ\Ԏ`8:n~eq+[f_U}Mʊ\{%{y%-3JTI!m&iۘA8r!ReA ZE g94plb[, w-WZCmk-u&w0VK-)u8~` +N}[XGVXB0pԗBjz 3{rv{; +1?/1'MchCv9٪I&Jni]6GݛĮXo6O*X>*Z+4#f#uELgST_FZvH\B*ߑN?˂ E6 Eړ?w"0찈0gNz_@Iendstream endobj 176 0 obj << -/Filter /FlateDecode -/Length 1747 +/Type /Page +/Parent 2 0 R +/Resources 177 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 178 0 R >> -stream -xYKsHWD9 3,` nY. Ǒ2-if4FJRJReI~Lnjfhfm͖3}{{n2j&9ٿٜɳ[vq2@HAh!+Д [2JHC2-*Nnʗe -K!k@صm2ĉk.l[9R`k,ÆZ_3K$&^35/M0'ƺ٧R_ ]uGp9 [:Kޘ}7kPOdG5k6;! -K!C` VF\NDKㄨhܴhnFZUB hU;p"` 1opD 3CUU'A+0d3tB q:NJ۽C,tM6J>~ˑT]T H!0ӿA:Ugp\b[ Lfmvh( mu̇t 1&<4F5PO1wCm%KbJ_6Ka)}1Elxw }[M-}nxt(n'#$̧x ~(͛ -jhKơ_sh';5Uլ[zV  -j="~HAe{n$`7ѪX!cRiq2]k}s~?7Q\%֢r,4= ~C~ }`x%D.h=DIo1Hl5ϦwO 5NTG½us*gZx*%mY}xWuendstream endobj 177 0 obj << -/Type /Page -/Parent 2 0 R -/Resources 178 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 179 0 R +/Font << +/F40 57 0 R +/F45 147 0 R +/F38 45 0 R +/F8 49 0 R +/F14 110 0 R +>> +/ProcSet [ /PDF /Text ] >> endobj 178 0 obj << -/Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F69 113 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 3427 >> +stream +x[mo_q +7K͇MhWptQ6N츿\K# +O7gfW +?ɒju}{W?"3\K<,% +B)(ogʽ|ys$Wx7C>ևp_[]t˸"a,Wɂ;rt+ Vw^BJ$'¿|@nwsrVJ2DUy="a7ܠHbt^]}T7?<{fvg~0-B; &wNP͑=TkmJrkٍӤq55a`Tc$YHmR|䡲'~`T!jb2Tj_]!lKLD .f܊LR ,e\rF +(i9m-cfme7eOLڬ6n2[i^dI'[s+v-B-K:ƍ >up5b~NBO1ҕ =j~ld~Axٰ]KR"MRU?a7Z2+vTxJj>hn}Y<6*D L h SI}$jPκ3(9Z.Av4x9<%G֏ZC l!I:I_$n Kp/%6-pLь1XHxQDR26 +)IH qczqŌ2נT5:^ns?.3 %- -ũ܊pDYhF #vDX}AK>vkDR@.KoD"}}._18Uz&Fg6^WUNWWi,1 2 &JůbvJk„}%G'O4<"2b[j wްѲfg{qekg V+N5 SM L{gQ7(ςUä[-q4G oJgЕ)rj 60E b6~#,z@RӃ=@gػ>ܚQ!JXPtH1A8;Oww`( {90vaփ;vxڤ}#TA䷁X߅gXtgrj a\WM`Z͚ 5޽/+;b?x]` ^+a[71#`2xlID74Nhd4k&Ը.: PR^jaB3{|`3sdE#[mAe\"a7De2 @3#f.)|+ZaAB &)'.Q{ֻYecvjy]}rG\r5˽T{:t Ile1 !2 "a7DY\3 t`okg ü#]hA\P9IƤgD)Ag-4Md[`&S1)YHmRb)Cٗx,7rqߴ A2㤍 YMx%5ƒ#jZW--avb`'x' uCJ`/q ̤ ""tfYIغՅӎE Է:MRe kgH16qm-*қ8Dv%ɹ4涱`Rĺ2 &ǕF Pm CFuF-YU抌9Qr*@De$F'/(kL8{%M;Uq4F2ѣ]%l* k30CJ +Jajk<nEn3C iTpigAgr|!Mn0&Z#M2[6),/MA웭NeH4J+C~|sZH= a.ً%O99> {nE.s)ڷ@3!!yLbnw.V$\N NI#\3riZ)X$v>gTlMR@-2G,][fJ U&Lqt_ygyM4wcfli* RLj۽2; $ *MNYxXYwjyL~mq$j:_7B^%%&JqtG V4t]xXs#b_hz`:G$sHW,W>6F/& +7!]c>nV$23s!;:l2aHqۤ ?' h?s.˳S@B1Ɍ0^H3)?CLChURMK9}Mg&\u1ixuS#'o,6k[¡{AkȞ[FQE\UxC.^%!{ +h/ +*E%'R d0~/ L9, [))endstream endobj 179 0 obj << -/Filter /FlateDecode -/Length 3399 +/Type /Page +/Parent 2 0 R +/Resources 180 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 181 0 R >> -stream -x[[o#~S`':f 4nPAǻ*l#G\5^M s΅gt?2fU0y8W_7w_z?s.V.2sRcJT*mHRMȍ69nڅ dΛ\jڷi]>}iao_O=6/-ѱ7~A%!xg߫~>qVaRp vޗ-z#8AoWޕr{}z7Mg(O[ow(TJ\ -x(:Q,!ׇV(b/~UbLGTv5G@Z.b6ke-q?n |\~sqr"YI$'+Sr}e(Nq˶29ܹiP͉!$+K'e Z-kT- LGqmʁz7qMZGe)wwԨ&A x%)Odk±H -F?q,!7l)-kn˻aP\Q\(Ci-IePxgE%|(]ܢp5Р=I CU86g9R Mr.7*NO-KqR^e`ueW]e!Uf)I|I.a_^\W77Յ Jh΢E-2M]ڔ_EO2/z@VVtQsą pN9!It*BLVZB`&L 9; - '4RHh --OjjYB%5_X3Tm!*QL(YUXH@mRzASw &!G#;}` |CN8 ZڤmU7c< -%X[@mGQXkM|69YB=!j<❍gSKȕu=:i2QSrŒ]Eg3iԳ x'"-E9  fARwud LF_?^F{O]smx܌%fCxNbn ᖐ=y[11!@d ZnM6^P@?MJNLOZ'h k<<~_>Y3tP Z;o^|)j -BZAN@@J2 j r@w2nKZAbSfQ)z\e])J+Qd7 -H21̐ 7,fnԃrv8x00[b^}PJ/@mROBEGOFw!=i!'ccic4@ JZA32M3] ^ze .N#ÚyΌx:piӃۯǜFwy@1B&UP]j# 4 -8DoĥcxAmUFVPxikPչ.e.h S<(Q9LÎN0Z& <ʻ's <*l\ iTu|) 2j,t%ԦsJ0I'p4PcnPyG~Z6$p}aȐ_ɘ\ɰ]y&<>~Pqe -Q**\Y!;Sܐ:{);hli\t潻CJu/!SX){q!#`Yo;4]e(_tR,](7,W7)"w0ē6Jd26fٛP{BP]9Wq4flȹFdwf:hITNsKm&ֆfgi2r3¨Mw -eP "'_Z‖&k>,"RLjL&Bt^,σDsZ$ha'á⛱>.zaXOڗtZۮcYˋ'Yw4iU.nBn45/Oas<Ų9mHtc)͡^aO=Բ\?.rFfƝ ̩B伆mC}񮺿ha&W4%_GHZ8k*ܩw*p2cǾ3I/D!âgqǫ -YX۴wNwC -)sѱgI7=)Md*I)"%d;!gC}:[O֡6<={av0xt C~^mNn?/?|֡sħ>7$ԉYB[{eA2Kz7Z*?ISi>n^Oؿ?eˉ@xȁܤ6#rT'QH21䈃@SrfPtziaD٬nVS1°5B TvaPP~ 6댾h4{.'2pj-uGw1,p~WX^*=>H=G@Jv8r]jo5,ZϚ+q7[?}iN۷^_vElBdǥ;^pGt/2k!R&qߗxYyY"^6!dBwe+j_(QBbpz.%_t?`+endstream endobj 180 0 obj << -/Type /Page -/Parent 2 0 R -/Resources 181 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 182 0 R +/Font << +/F38 45 0 R +/F8 49 0 R +/F40 57 0 R +/F14 110 0 R +>> +/ProcSet [ /PDF /Text ] >> endobj 181 0 obj << -/Font << -/F38 5 0 R -/F62 45 0 R -/F69 113 0 R -/F60 44 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 2508 >> +stream +xZYs8~ׯӔ0q`62/S3㚗<pKIqAJYOt7y (/iRpY$Y<_>F,ǨyFI +X [pD(4n"/-gDXO}i=?\')|٫]''w~sk`,ʼnB!@`B)Izs㠾UVhrլIVjKY nfvu]u<6W/Xi6OV#p?u8E rX{ Xkq6e$GEQFJ!N`H +QER]Ot DwKvE蔐r“ob4A%E 3p gip1pK8s_X~aHP!}R~z +U//E>*(ĵFť9\q5)zVSq~,,Ճ)YrC *?|1*0x3Y + QCz=l`Hix*70HAE*MU[J[Kbjugy\G|^WݮR`IqX`Gw5ĮJяRuVZ|0O`@/KGy0K=n}"#fحV>6ŋ`L$ar QgHbwV*}? \\MoގxNOr>8W);E{x |yX-؉QYN--KYce\!8m\P}Xzh@c( ևwo2vofl + cUa:B^U'^Y ћ΄A"Y924=P +p kG{ fDR]t(4"-Nd<ڡK2p"9u1>1t@ycX`ZyB8SG [걋dmnɁQf~EzY5XMnfn3^2E<溻'D5c3g-iMT x#6FA 5[K2@5Q Qq*%q&{ &hum_4ɐȉޕS8E:=^2_.^Zv!l7f6- ^Xx,\pZA5Ő؋f/-yT/3/AM3{I&5 +*͋ 5Ɛ7d :o\z.q_;)櫝ܞv-B:qbF7R]?St+*@[X^ӁƬ<|rK=vϡ4] /@|=\>8P۪#ӵLc|化p04/bh?ҤyPvߠ}iW_/2-a14Ck:S򓂘R$s_[wnCܮѦiIq Z&S/@i' i+sM2 Qd\.2o]_1 ЗmudxlIr$2<% *PhXDq[?˵endstream endobj 182 0 obj << -/Filter /FlateDecode -/Length 2167 +/Type /Page +/Parent 2 0 R +/Resources 183 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 184 0 R >> -stream -xZm6_On1$4-Z^{ck%"%Rk""ɣg^8̐0!֙:_wK?oY~WL#-fF7+*߳V8p7Vaj_t#Jjc֏ aQU߯(Jwϫ-ZNqQIT?ߌ!R0~]mY^p]P7me:<*3!Ni>T;{]7a1G8W{g]bLw*w:{߮{s ĥ AI rj^8TCu_57 HgTdBRDt{܃.8S ܩ |_9_uW? !FPf F^un>D#)*0?bViP-lIʒ.V BO % iR2ܭmRw'{]92Cp h[nڇS B>UVxug$ 8gBBC=.ϟ;  m`z;F#$0f Al1tF0f+ڼ4:)n ?Os}U=hܛ"YQp&Oi] %L`Z\Z=ZMkZ 9 b$<^Ekl,.lGʜ|#@'8uhKrn ራM. #4nxq~SRdp2aon 8'R= S&)!=8wiO+S<UD(312Acb]M "F\4ESY -u[i=(;l9%l#i{oJRZY S5w*n׎-MnJةT^ -BbqzlwMN^A9) ~ƣPjD-x\z1y{vmA7ӻ]?7I]* ^LLH}/_*O%AKYgE|١MC𥄬#+-K,0u,ES17ŗ^w0ڗݮ#~faxv% fjZ2 %Ϙ>Vfw9>܎8S @!YbBYEsOv=@^?l˦z{-GKs;s9"x>]QNM J@`Toʌ{;SHsf#Ehf6uӺ-মQS;_mNC[kltFLBjWWnáIs0k1h7m.Xp*yo4 Rhp 62Suhj[Jޙoޘпq^`{[/c4gmy@iʜ7m͘8L[ci+TN=؝NBٝ>i>n2 Ö<=&6 -I҉w7sgC -J(|E.ȼ^f?`wC 0gCۯfpgŧzyf1gΦtYkF'M- -< >wfCj[c 6P:]z3*mGUc4BUb@EsJ6omc msN{!'ICޗ*̀] <> +/ProcSet [ /PDF /Text ] >> endobj 184 0 obj << -/Font << -/F38 5 0 R -/F60 44 0 R -/F62 45 0 R -/F69 113 0 R -/F14 88 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 3637 >> +stream +x\mo_O}.4@&ARMPudҝ|GYv}gߗ䒺̳3#PUB*H-.n+T {` + Ŋ2a͛q\ԨX^H)exsu|^vj/ 6fK^6]EkoT X|hM`X oB~W8mU<5!”t{ϳ[HDJ+a[4Vߞ_sPkWrJu10թtut4OXSF#݇o_9"Ȉ{]"#D!DmǭLM-Ba) Z /˗xu}1Y;%^~eUyHsT+-"ШHb/J +̈ƼrOyr)*ί۝8 .@fm4_U7@(4Ok{$~AyUmKmk`T`|Baz]1$!u NMϭLM|S`*#OcE\AlrZr.Z\FgFnT. }ɚMrDx1⹢HqUT0 #q+vxJWZ.#`-Q]Wq[bHy +-+$9779#ҏ`H㤄hR>v;`:(UՐ^@"y~cY.4v[`3HdgkB)}roJ?O2}O縞HY w-Am6n9٩cs{"=vvdn؇4*UaT*)`NcdyKWO_n^9QH:US0[)|)<BM-Pz8LyQWǨ-͈Dtl_V +42Mų=0qʄݴ0Q0iHh_eG"ÆI]ʝlty>Fxd?R9B d +&C5mla:I` \E±HIv|"-Q3]# 22$oSmxm_f׍-ܙ>hqSyYp!/}]?hyC8nѲή}{QV~qyaqOd8I@A:*?z@U +JZ: 4\ 1d$w땯C{W9:^e…BTD$*Mbh99v6ItsJ$l4|f9χqCZ1}>$>?o`3ITCblf$ʂIdے`,#[,2a7AqI5*TRv:jQ f'6&nv1} +hD-S(bY,vZۀ =1Qs?Y\%''\<_@i}[ ">v}?2k;ֺsztݬnV+*mڡل;z2Ns9&TB;Oaيxfull[{4;O5n[^wnˬ+U0GOZfeYPE+='^)0{,Zڣ'1[Զ;Wrq +']uUR%L&fB<j>^~z5ɦm~$CM9=t WSQɽ! lg Nx/Z $[8vB^4 bHֶ;?m1߆,ۇt/nBS}1iM+=wB' +|kc`UHȢd"ESAHEB\o!g$C3J@橺Gm[&*H"ƦY$XNv ՉelġF528R{5-pTxۭz93TLs_sˬLe6xCZiƀ>>q ᡢG>383/iD9FIgd, L#Iԍn@ԍjt8{2ܑ=.>ކL*nw;!I`!:Lh[D8emmcc~rBTy\W;S +;U!p=Föe}{(L"*N=繕 L~Q? Mt8ޞ4~O LD9G8[N&B@N%,( }Li`Rg/ʟ",eH2O>3ϩXL7a29 Ȥ:widtr&]zLHNMqo֔c|lLhf<;[gxc)2P "i2gn$sBƹz>ZTcR9lbAjd';MPd|R*AnN綨/ bz{!vUl]Һ6t8T1sbek/<ڟrM ?4s*ɠH=x&y0wz;'Z ?FoPn{.$ ՒDPӁ1F\VҜO + ̙s0G6v=M̋YU06vΑKZ!En9Ĭ: ++'3fs?qYx?endstream endobj 185 0 obj << -/Filter /FlateDecode -/Length 2629 +/Type /Page +/Parent 2 0 R +/Resources 186 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 187 0 R >> -stream -xZ[o~BΚ AS(l@}%ZfW"}xJ@8ߜ9sqA" HQJhՍ0?\²(Gy¢ тf.r˱rȘ Rt2Ѣkf>WKJb>/w)1'%!/V.ܗEW*@"Z<7͝#!ץّ=W{mrSn/ASDyz޽ovr@1\O.ݾ\UKվ;ˮjEsreSwfNpm ;ų3Dݗ%3LrS6Ur5nz0Ռ̕_IWv}:gLw{o7Ϸ2hS]mTʳ_˄eS -Ŗb *YpeY -&!!Ey_.~ـ._34s3 ۯ9GH(⌆MФq@ J4*Vٲ"`W/3#3I0"!0iz ,Z@ܔFxpI %? x7YHPjym@I E -]%I$G '{F(bᦴsb}1K~&-Q1xM!2ϥ\vS(P:%)$9xy14sGMž8FAf#X#Kܬ,͜vЪnAWr*mh^Uw˩8)N~&-Qޙ+t{3,S sl [ s Ҙa@@Adgz[nG{G-HPD4?9 Z-H Mʺ?;&i8l;"{h89*NlG Z3qSۑޚtP^aC8(n^C3[O«sXR/kOC9*d(?u:sh*$C kDij:rڛoI,!:Z=ڬZ P.70HkH3(M,en,F - ª_R ?_Q?pxRŶVn&zP>DNU=8CK|~r1v1Ew&iz#w0ƮZwx5mw?c/dP! .=Gi'˜G98чH}7|ۢX9f'x6^h4'RZ7,M?4{gnL(6#NF2XR+pvrjhq73 881:7N14y'e $vr͖K=@JM0} b D~n^lCԂ^^n_S-}p4Pbvm|~%)v phͪTGCgYtM;2EooiЬس2EE7{XIe]pد 6Y Jc!2yGPhNݙhq7^LCVeS7~RUG]ڍNHd,7c$.Ae"Bz&-QpbrhNӝ1KR`tV-}wn"d vr=U7QYLIrEv!LU}!lmYQ}Έ"qGjXګѠP#AW櫡ߪzqt\ѧjRy5úL(~)Rwzqpzf̽LK -%/Y *Aւ̔t0o.!Cՠ~jjF䊞A[|XdKl> UHg # cK _* -컪œ\N_yI+ -Ec"ʶ1 >Q^`f r?Wv̤(Kf];t#yS䌽_㺚D><H,;ȩ= zTJIx@rCE;:!%vCC ]"P 8Iʄ(ٙC䦺}(8yUJ0z׫5w#k yJXmͼ|Ac +F|2),Sendstream endobj 186 0 obj << -/Type /Page -/Parent 2 0 R -/Resources 187 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 188 0 R +/Font << +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R +/F14 110 0 R +>> +/ProcSet [ /PDF /Text ] >> endobj 187 0 obj << -/Font << -/F38 5 0 R -/F69 113 0 R -/F60 44 0 R -/F62 45 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 3177 >> +stream +x[[oF~Sa'd3lfb]o_6}e*B\IvgC )}sɟB"YBiH.>F + ·`PQ\UGqO7qA XzpFx {U_0Do_pF'#y,B\L*!<ձ>?AWe b_*-)x3c 6Q$shePK.Huxp~ջ> (g2q(ۼ=Wy4xoƱc0vc4! <CZм* /sL6߾O1<!6?Zؗ>4V|k}%*..w9?8=!cH],}0ezP6ojϮ{ݺ7Kh.ڼ;][Zf.<~r3\($([*$4hq_8XNcH v>EyM s +S?y2{wD\2t2^g.dFygdFAӆA~5C$܅hjM>0*Z5B$ԇ8AƽG+~C:U\ѧh">_W֑@b%j L2 + +U]iׅt&ұ5/7f(M7,Jt^wzn|>dta K:d|O#zFCLL? % `5{86"FX.EQ("&K=Zeh*ĔKEN̛3؏{M؁) D 0va3> x2r)H+fk -ĜGg2 :0x-:O n(=V8`3lŢTp8m,q؛XB-o- vhnضfma.v`sm|>j`זL/UжU6e>ˊy޶P?RL:&ixCA,g & )bsXI^tp}ek4/: 2lt& z.. ֢a.wK +PeWEiRLxjhR&%#<깔lU -]|nܜ,4{h_zT>(HOus#x((` Ҽ ⳫG+̾Ei\FO$g ޛ)GFЕp??{н;V1,|kDAA lz6;9VzܱNБ-tmT`w];l[9S;HY6ʹ,OUTm>.2?^/gKǒF;ùR1j۩vĹEl _&Ĉ3ηBc'Gb}κtS|k)eO !&L"E_rhe=$%FoNM":0'|)eQePHqLw1CٝUb/&arxmys #APX?]XIПZG6cU!ѵy:>)Ȋ.F0 +Mq cW*/8R0=Ze^Z% !x=E='l*2zH@C)zuzg/T]`Çz*NgɘȔg6ʱk6$__u> +q"UZOͧ.W(j* [\8.4| +ӓL͞X٠eFln!O>hub(nd3U<:JDqj#!*QQSSVjOLm^^6ƝWgZ ;04ɟO(Uy)[ +ƒKwJ>BfGD!Ĵcv֥m%UBoX6p>>pFZJ.DZ +IB%fTah44xf+~ =Ʉu2ɺK|&،ޜm#vΐؘ87E[e&5-b!<(oz +b 7#vSV EI͕jU UFL/ 'x4rY5\9ab9w\vs xŘnmŌ%9]hk9s ZZ=2+48<?cZgyMAs$,DX׷gZ߫x}UIeTlRHQ-šz q) v\Z<N?qIj&qWI2 `c1ίlf$45 —σ=j79:sMlH,KnN h<[b~sztendstream endobj 188 0 obj << -/Filter /FlateDecode -/Length 2884 +/Type /Page +/Parent 2 0 R +/Resources 189 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 190 0 R >> -stream -x\o8_PMnн pcˍN7D(F6(5oF~X Eh8{p+jo -TH]ma^d~ͮ[|sI{-h0;T7ݩXPHiK1X4g: -XЯߟVLL U)kS!HC4[ iahs f%EAY`8Gua{ܞγfY%1e[U Ő3\$Xd3lfIpmfpaNn> jZZơu<(U+pj:41R/XiigH%Ef -RX7-!ɡBxЦzp38:<7 #%s99} - o:ٸRW؍ç7TCy|)!*SoM -ce0zl~$ -Dz+P: -![E?L )oDgBC8[JFIZ讌MGA!*'Y4|\o6ruoyzzMoV"!iT{mP!1 GLra `dnM0׀1Tؖ+!yhɤkJ]$C13'fQKh#texG\\rTĒ$\"r.3hgX*cIqG(QKl^e B# EywC;\X&rr^7fi5T`92R)ٷ6|%$"z/kc.]cr`'~vb'o650sAlMiiL*ᴡ ɐIiWhD+DZnc:ec`b&y/o<C# s%Tyт.`]˭r}\ R/( t{x1pF"F!NoF< 6d͙PccmKS4yF<dq FL:j=a['FAK2m6CB˥iW?,4'X5Mz&&#> +/ProcSet [ /PDF /Text ] >> endobj 190 0 obj << +/Filter /FlateDecode +/Length 3722 +>> +stream +x\o>[s_\u$A]$(QU>:bqNݿOG >ٙkpDeMbq}wV,s#XQU̳%],^|ÊE..o#Brual7gtTq{h~W~+WG]"L+s>GϢ Xą@vgX|p0ʒzpw0'\N_??Բ./$kM򶅗ałgE +h:R$!QTm7CŸ3iQe㝜Y_7C:5y~[}+9mkR+Iv9rqlVNZV~HWܡHEwu:x _w+CcT/bTsn>޶1&c0PC:ɖD=J`C]]j>{Y2\:g@5b%YQ/PSZ[Ԛ5`ex k5ϲ%0 : K9V13ӂ p>d:)QͪՔj e@oaU no^Ghv^IsNJ 3qnrNJJgvk_ڵ73vs^]6丢ֈ 2>6ivh<7.hJKzmg߶ +w{mVͻ%v.e "竁,0}5LG@n0c>djhPc7U}6f11TBƂ't2 WjYRP7R(t T]﭂B-A@ !U&TEi]u:;x^o{97Eige`eѕkɇ\ >J&/_0E`Fx>À%@ Xf릈sC4zXٵ2iLbݾY?ny6,۸>] +yD7Wp$j<FTv+mvɻ M'#UقԼї`apaΆ +8 p2 +bŷC"&5\%:OSՓf,Y͙AXbde%0Kʙ +'6tdOjˀ\B% cRz]w; +pmeXws(USUor u8j}+j(&W:VG_vz'A•TO\-t~wͰtQj"*%TSA 0XFO !FbtSye+_o͟pD*vMJU;{,\\GATU;^-QҪF+q*4Nn|_ђJj=1cK +A;<}<g̒e-)@jq-Qq)%XR.a،Y)n,$di*_sg1'נyiꓑ( +=>b@ BpՍ A-PK4, QSf.C!~ffvgJLGオKtߗ`#Bz^#vzk-KvL\!G Ҫz eݐbLfwpuN j΃~ɶh&qo˯6]kBU8 y -?P[:XM = 9Cm)3 :Ppte)=Q?^t ~!@?q,$#Kٶ"2O&ψdžX2{?2\ n"n.>"e̗ZgoTA}@eoL૘xW5\ϸY8cx, U6:*HC!cqtuCds(%2mm]w[EMџЅC[]~q'##Ͷ` Y&5Q풀¶4(2lÆ 3>Nl(ϰm#CKo8bKߓɯyfЯ}2{fGVScG1&.Ko$ >s(s%̹b8L.QUʌX!7pvzR3?-֟dzoendstream +endobj +191 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources 192 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 193 0 R +>> +endobj +192 0 obj +<< /Font << -/F38 5 0 R -/F62 45 0 R -/F60 44 0 R -/F69 113 0 R -/F14 88 0 R +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R +/F14 110 0 R >> /ProcSet [ /PDF /Text ] >> endobj -191 0 obj -<< -/Filter /FlateDecode -/Length 1979 ->> -stream -xY[o6~Sû+uнtc˭re9Y%"%Jm("Y\ȯ aG,EGoK b,2Ilzzwty1}Ʈ2\,4aaXe$џ[|w.<٫vy 0B,Kxƈz3]Йh1jE - -0L+ PC`q$A&sb"};^QbVw*y o<~؀m>  |#"nn3DSiEjlQ ϥ62SBpWu.|+Ro9QR0~<`pyic<uQ-1bz{~9` "CهETT!$mbQ@<ݣiZ̿ -8^6822clhݭ`D [Hp4Tb^@,VE}4T ݃A jCm>ץ)F¤6#KDҰl:iV&_H p,ӂ5@k# ǂV6\[iudcaS=|)6 -|wW*w(yT./ ^M `2)f;&ۜnp [Mm=ni! 9b2K;Fbh̖OUMOxwH$&2'qNܦuKD}T(MNdC )~0!\<1*:?ٳ|J7pO7ߓhwc7{~ \Bkypb< *v`?s``R7_¯a T&fЮxJP1hc4MD/>OEp۴r)8!s=a7:9/|R3F F( vu]j_pKۯ|U8̵k!=͙U5 ݆H4";JR{ .h?د$:*<2蔟XBdM%GNqA^4!p',7&-#dr}>a(Bg>ƚ۴YRAzw JމITfM!̴@Uihy6Xa& IEmRE -.WQkp:cnL0>qkyZ3)t:NQ)ˤ:MT!IMtVvJ=.MTjݚhnnΠ(p+2^"]YH --橼vh)kqHm.=P(΅/K+R[@թJپޟGܳd)ʍ=d억f:Zi5M(HOwmM r$mvD;BkJULJ hdā}/ղVfe$ ]wwƔP[ka@Dp+2cn(fHdc6m|*cĻͮs'Cu$r>[~.Moet ]9@Ly^3nִuY:@'I$ a7$BI{i zތXah]{.(0 - kΝ[n.p~Ú;C3R``*j.jIyzTݶX]Mm7upBCcJ-v #1™";C-^'~RmmB7$ž]i|,zis|[>Ksǻv `EԚQ> -endobj 193 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 153.894 456.432 258.332 466.564 ] -/Subtype /Link -/A << -/S /GoTo -/D (id12) ->> +/Filter /FlateDecode +/Length 3220 >> +stream +x[o6_O;hK98ik.}we[j#i俿((,iÙ|pdU +PVU.8EZ?;_ DN₮?.?tU"۳iK~}YjmiW,MaY{>}vf҃u:#C!hx un˙6(ZwP͉®?oN%\9a-{'T$e9ʇDx[hԖYpqq|lm%iANcc$G$Ë!M<$fxJ+`>^~\1#Yk(~Av5 cӠ4Qk\~ ʜDBf[mfHojSZ]g0 E?{5c^h4n ޾},2 +0Ol"8*@ӈm-MD0ԟE +{"Q EI)""VIH#.^l8:ʜ y\B nLVC@N>\w$s]ta75-~2v97buD"&Cq-E)g"p(56;۲dDvB,{+UNכj<ٗW-yQ ϱi0Kn,ʡ2$i9pap[X \j B=y +k%ic !#BBC>-8@tt[E&]P Ul#Kyȏ6x즰)]ɲF8mQ8r(Y j |&$I@nپtoZh[ihY/[.HXSOr~c%yݿ=fcǞ{SvcY?N!\n#dvmfi^pƳ<ϠB/}~3ۍ +9ngP 4 %HP17Uڼ[`[| wqB*9!- ٥ n )O4gRAiZ 1ry ;PJ6J|y7FE7*p^-We9 +OP쁋2JH[ !k;]rx>L,#PeA‹A[YnnLd~wSYAwKr/0=AlЄY2:Loo޴K+C<nnՀ[, 5;$?ۢe</bF6;ou)~X>zt\?a H0H?mʨڲ ~\wʉvHtoyw/`! ܽ)Aev*,E8@&}s.TةD4ܖEGLvwP.t\D=Nc,M~R0&9Üףޑ=%~ +`)RPxZ;Ҳl3TҔ|]$WX"_wy [T/lXTK |їJLJ齍vǕnC$tC`a?=̞wlp C \i˛}AuqC`,BIn,eW )6>7޵RsC?߉b fMWMVXx B޸@(jgL*tahKk뛤~O1w15"> +/Type /Page +/Parent 2 0 R +/Resources 195 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 196 0 R >> endobj 195 0 obj << /Font << -/F38 5 0 R -/F62 45 0 R -/F14 88 0 R -/F73 130 0 R -/F60 44 0 R -/F75 196 0 R -/F69 113 0 R +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R >> /ProcSet [ /PDF /Text ] >> endobj 196 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-BoldItalic +/Filter /FlateDecode +/Length 3780 >> +stream +x\oFBvn!E^ \@eȒ#uKrII %.g3YaCfB"iLiQL#&H,ܫHh62<{AFYC D]ޜ8;]vb//I`n`0bFϞÄfva:|Z}wm^ VezwKmD^\ ))o.fzWdv˞4Fx"1Ч=;_g7 <~vqnKs 4EXϐfH)P-Csqj#*#-Q BҔm-NIWj;VukP[  |c)XXĹ +(yOƫwO}+F\@#[;&qcvn[yZm|n GCB?:H^ضJh(XZR#aP I$CXt?u+Sib#*#׃Czh 2=bȗrc^hn9Ru;+3Div8Wq;gL8{ ҂k؞f tvA=!p[^' 6"^():aݭnarFiwX{ys{OJ٤N%z#h n_پo}E˗EFixXsɁ[ˮx7~;n{AqiNrNlHAZH*3'6jUF%d^a0bϾ!v9*f^jp\:ﮠ} 6+>񼴭&m%ni/R#QG~֞iwtaYoehYX1F%-}_N4V!Pc0⼧8hBC9۞F"*'AExLiQ괋CmUGܬܙ/lt & OnX&Z]9gB"swy/{ӗ/oPx'ߚY0GjY/B_?G@=p)m/9(jUFt qIܼj*4"hDGjs!{9 ^6QV_*\3ۤՔ3 +2 q_"A&`ʎcz:k}eN`Yju&0CK>TFyD|MQ?~Z%1֌1Y1=Z)Mor1c"sjnW{rKי:4vۧWw#.4Sq df̀5/˗n+LXإU +ljS" q1A% QH/ kKʦA]M!rOizB{XmI9L8dmCֹ/$HL7GDg# 2P3-ںk.`p d? P'$DF-8`]ƍ/0D&j @~KfQ.;Ph ]g2_3@}u*-bCXV d ϋB,o80Ckr#S%`c >defkw5;jo1CbT)8ygӔw\NѼP;"80wgK'%O'f<'ӮG!}B r3ڨ  o1~2қ Y~EQ8ް]-27WTJv~WVoEALF̏~uQUbsa q5I=)6(9Ԫ\9QÐƜV!ȥ(KX(h YXGUT ⎁*O'mn?(c_Ȱճ +m2HbmYr?R?[wT򰭋դ"8aE6,vq۰q?j`m/WYH=-0hA%P2r)ҀqdhZAG]s CQ@iT76E푸&mdq_}Nw9~rs6=pdhfAa+1sQd3~E~r_]͘4 +C7]Esswwa;+չ]l;>R N8;e<nQy1."]. +E?Y/r4bLX_?/jS_Hݤv}"~~䭄o(sNU~0)aҔ 3( +fEͫV_Y'NS.&Ïx + +zee_9W}Ąj~9 8;\"Q*Uܴwd{bPq@\Κ)v%A +0K0RZU-bݧX֣/wbK7 zj]I2jC$qH"ϡ/!<CaVewc]RLmc*9_RK%pmhm$z>9|NLn$0(hל@~@ +iʦ Vk 139xz Uʪ/*o${Z+Hqx:\bw- ?V" +6S.‗T#L6lB!Gk*~%2-.b\,w0/\*Uߤ;yJ)*NGNFN $z!a;6c "]. +e`kR{a끐.0+Mq:em($oamӁOd51ۼx˓64+6Pw+>Aq10ދ>/W]/x?*v4d.|]axd*a֞TcAFZglq ´ V6>^[NuClpfug[غ4Gn1l%Ҹ+È;n |!#?e*^}{?J2endstream endobj 197 0 obj << -/Filter /FlateDecode -/Length 2689 +/Type /Page +/Annots [ 198 0 R 199 0 R ] +/Resources 200 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 205 0 R >> -stream -xZs۸_; |p.iN7Fvd!8_ R'1%.]`A}" $Q*ɨJ6OW8ywR{z3dÕ`agW'׌$_q!dz^IY[\nˇx+wՔT/ë -j˺hTGS$K:_`ps rSyE*W?WV94XGsȶMі;aJD$ɐ"Npܷqj eKphi7$ɐ_Sy9.AJ|@W37ʌW -gd%eڢTtFWw7}>՟`?㰸mHyWmGKDUHPƢfͥ_rA|*mi p 5}tOEcJ}"[PiA;U_ ! lD d( 7ᇱ_X!r5zy t`}u -Ql)9DbX4zD) wo4]{۟ Ru95dyI;!!>`WeB-߫E0^~%9h}喪J9TcSFQc -j%dW]B- Ts8_*kN`9RyCk!H/6 8XYnh7rd.*6é[mvwW}\n{iu_6~:RZ'NL]фE j(d뗪asMx`eb.B`~S( YCQĔp^IƝBjJDX" ы{pSWNdBvxRG8XTu|Sl6zkoE{W0}~8vpI~ (vG~~KqJ8́n.pkvi ;qꡬez.uc40]k8g1>.hFLv>rm.$8h:={gf,Jr#[]m"11+ C_zZMc *v2j_no={Lx-ڢΌpXg.]r쭂6Nf3{;?$Y~ -4cwCLGL3{7dNfu_{Im?~{ h3Ӣ|f e謌7FߘC[T e:f -=QN^8+hіuS@Xi HA7%">N,iJL®Kׂ=4ܙD"'z4UsцSݟCmC~5uV&?`6zS4epzRi u@ (N- %K:|-ڢΌ(Ao؏g'=}wQ b #>QO·R0 v~Kp7T18KFS[ Fw/]MoC01qw3MU/5*Gey24[|.v;1B}ܴU7ʶ|_=W.Ba>1w'" -)!5%Pltͼ03bv  -eشS{)wO<)@udcOw{Ea;νD~PvuVҰvG+ZT9tU#hy,C)$Tu٤O5c_Z4>դoe#}<&}cRI a~U]ntKdF3J~rh~bPeO QqmYEh#gF ľp=mhQb/ Y@@?`*::Ep[}(.w\7J(]>G'E[?zVdcK2Q-T"*3y¡\we.#ޅhئ9[*ISy\7m7T9.fuumQAP) $RѢ- lB3Ekf~p\uhjn3++Ԣ~6KvtZGGttYr -RC)vRfKN21j~Z*HvqVZIO gCvc̩%gz'KE&Ӌ8 c *Jendstream endobj 198 0 obj << -/Type /Page -/Parent 2 0 R -/Resources 199 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 200 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 113.23 168.946 205.868 180.071 ] +/Subtype /Link +/A << +/S /GoTo +/D (id12) +>> >> endobj 199 0 obj << -/Font << -/F38 5 0 R -/F69 113 0 R -/F60 44 0 R -/F62 45 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 113.23 133.08 205.868 144.205 ] +/Subtype /Link +/A << +/S /GoTo +/D (id12) >> -/ProcSet [ /PDF /Text ] >> endobj 200 0 obj << -/Filter /FlateDecode -/Length 2267 ->> -stream -xZo6~_F(ҙW^9mnqF.u^m겲./Pad.ߟ:I?)@)CR|[l6uQa) O]oJ q*:sQ!bJ^<,yQFz;fw*7)c*8GjMX!N=,' l]JIY#4(:e.2q -uPU= ,/jmo>8F2˺("0Ҍ%R -H"raN8mnb)Lڬz&׈n;L)g189y\%8/X. md4$IG:﬇V7K^6KDxjy,qeHi-x<Ӄb -!`K봥A@;ƻ]~ysFF A S2`,%br];mZCJѮg9+ktqP-Q_$zhQCLֿ'Sq[`LH$å W6P֙@9f]X֭S79f#1[8黟*?Ǻ6߿}_LZgmg*(k] -9;6NƐP p2@ -Wj8mF`,ށR6A9ʃ6u5}H6F6?5KԿJj=_jZX6E8'(aG -MD9+M/m(9iZk?6V+rҲE5aK#%$o#5qч~-J>YPeH %Gs%о5^a}c)YQ;w=>X"uߡ)WGX_>ӴSOE}c9#œ,m6: J)fy^aӦq羗spYDA{0hi; 8x6 zDKjM{`D_E[<'3$oM|@^(  OQ6SD4m,9s2> -endobj -202 0 obj -<< /Font << -/F38 5 0 R -/F60 44 0 R -/F69 113 0 R -/F62 45 0 R -/F14 88 0 R +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R +/F14 110 0 R +/F45 147 0 R +/F46 201 0 R >> /ProcSet [ /PDF /Text ] >> endobj +201 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 97 0 R +/FirstChar 58 +/LastChar 116 +/Widths 202 0 R +/BaseFont /LYEJHY+CMBXTI10 +/FontDescriptor 203 0 R +>> +endobj +202 0 obj +[ 356 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 532 0 0 0 0 0 0 0 0 0 591 0 0 0 0 385 ] +endobj 203 0 obj << -/Filter /FlateDecode -/Length 2322 +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /LYEJHY+CMBXTI10 +/ItalicAngle -14 +/StemV 107 +/XHeight 444 +/FontBBox [ -29 -250 1274 754 ] +/Flags 4 +/CharSet (/colon/N/e/o/t) +/FontFile 204 0 R >> -stream -xZ[۸~b2[1EdNч>hKVV+tO-]8 -S{<[uVfЧ -5kN6wꛆVB̞Zz ρGިXN3)ڌKn|[Yii S*RB[1JccSoʂB[7Iym3~R9XN*@) >eW#,x/el͔hVUoӢ1O[]2F9c @0y 帱Qx f)2lkD`m=zfƞm}jr3f(1m\<ԜC󯧢֡hX+)Oɷ-+P B?!:,84S73$Mt2,yyp++ >`TD$#6I7ꊤA =Xz]h="cıXF[&3#> 8(ŔA=xDCO[6[y:eVǁO՟3Л6XDHP E"q ZTƂBv3!1Dt%m )㘹),F$.]z!$vײӾ~30d?;ͦ}a^Tl-&"pbsPhc*-gf/Ƥd)^A[$Kqw}[( -/UQs$(b| -y`OA HLV5Zubjt~8s|~nyR$Pp$t$ّ-JR#3$>BcUg -:f -ad<~j:s;YB7-;G"L]!ERMqy{|碛2mqm=;yk -Ag=p4$5uU97[qnjOnܿ7d#!W!  Ά-I[Bqz5Z &2 CLkhO{'; 㙈jpp2:`Kz;I@878,U=Z0e4p2ZMXf0`dtt}Tͼj -_w --F -oNv#Pa!x'N3\ܨ37ibdeGX_L@u (D1~їyHLͤKfaƃ4b2j={5d/~j̞v\ǟcwya;O2LC12HJ֨b&< 32Jt-A֧wMBj?p -cq@xԺ?Zk)g1ʋjeBDKP SwYTȾP.^u9ݝ'm~l#+*V"<2e:L.3ۣwMv'0U|E3 NGȜi#I"YrV!h hd'xvI44%\~u${(*z7'%z@XSȇfQ\3NGbKX+oE3ZXbqD,coMendstream endobj 204 0 obj << -/Type /Outlines -/First 205 0 R -/Last 217 0 R -/Count 5 +/Length1 833 +/Length2 1678 +/Length3 532 +/Length 2273 +/Filter /FlateDecode >> +stream +xRy<(kqhؓYdJ:k03/c,SʮRʄl-bH]E#!{騱e'{Qq&N֟u?>}~U] $i mgX8paTUC ,Ad q!8Ntа$*D'A2 *0 1h@.^.P(DHh$D iH'O4?Ia_!z(7 -` ?$N-nF8O;H%Si`jp0 ӾCÔ2@ +HS @~ɡVHLf? +~zk.0xh=صkgLc1!Uq_1?&:9bq|!|n&i> _!>pF"( #?Ua +|zǿ}U c ~9ch-uC [K@3 |`?2& .hM(:RGf(]R_6FOK?WAR Oo@K!Ba&,WqZ qHp\2W8|̉Eϻ>9:$)#rC'^6/O[×`ޕF9ϬE|mӠލlÓvT݉S-6) -ᔅElR،r4Ş38:F HάʔMDmI?^E7?6㜚7ؼFȅrԝ 7)nna0ja#j]fͿk3>j̣+쩈IXx]E&nt>9j+1uk߲mpTV@-~o:< Po3 u>IdX~#EgCz7,B@Lsxb&ԅEl-7E:+)UMJQōtR[ie8~k_x>`u#'jP=9$:2(~wʑYSipjgF",pkgȜ42Ҷ)F\>ƀ`w$Ӄjh>晥L ^l4 7Eh_~59{Dn&@[9z{AD0v].3w0[<+Ϣ*PK".GÅDUoEn66鮟Sb/a_%kˏ2?wߕ(Rk}2otص!NpdhX](xuˈc۫9#~Wx.~@6pᩢes +)K˳XjT@H\*[J>%L&MO +ֳ7k֟,U)n3'T׵.$GQ!IrL{;q {vfIitrAp/fSnRYS-WLcٍbWyW[ +/|̘&Yj|lAJ~2!Y+u$?1؊eǫ6:po x %;o`Q5> +stream +x[KsFW`yc$UI66n آ$x<1R.d~ θ@BLa%E=+1*<&~9-/iGx/Vd +)A 2#BYv#|vWBxviW]uo/og~}w}n~f>,>6qD 0=2^A]@ ?\OYĄ%sO3a V#*舅Ă,@T'x.`TxAQ.~Xsh/PAis!Kqi-QW]~'֛/䒬gfy1 oR0 N2o!9m~%AEH(D +n*@!İЂ_^-JQH**#UzOz`J'KdE&EF|o2RfG12vF,:"fw]8d()bSC"(0D%"T-HO?{mد!94dBz&τ&7*JTI98gRG[T%ID5Ji4X @dK`(Ϥ + +$lV6|Jq*u|<mc%*~Pk]NR8wmz0AX!L0T<^,Ц^,h9{m: +-8th, +(`#,jrUݩNdJ{4%!uL&LiaP9VON?6}y%EڕBRx5l0DC. ?h CS36_JHW~Ӟ:z; ZWw`y+&k1?P]m'Ibщ2,ɪG?fs6 >/$ՒXkǧ:i(RB~0D7(VFvGp4I (03X; +GG]IoX&[)#+ܸ1  +hɠ_2\wI.ӡ0Jly<08X}u`TȑMHSXAdbZM-V@i2S$:{sdC I]4>_uцCc.D}A ތBDBD"Iq\$ ; gzbWn zE'*n@g*ZQZ%hhdX1x GuvȫGJPB(< +h +P)5ր.:gxя}z;O'Dl&84Xk`ҟAEؙ5gg'-?Ղ-W:It+iy!!($Jhݡ\:z02آԜ._@{z1DʝvۗC' i^kݣTXrxXr؃$–`#3\;V3{t'ξÀڸl;޷;;n oU;؟>&~ܤ%*~P3jzЕfh% è} +ts>`}Mph sY@:wpǓ>H[YcTTu?=]I_P* +Z%/(|<6÷2kkJ &DBۇ'Jծ_|oo*zpM, ؗ?#r+r@QZ@d=͔X[# ˁt~&QiPflӸu kWtT;mA}ۀG2wź"gѣ-BYCNfR(?(8+T ZG ~hI #Ffp| cP}pb>Puvhy\4##҅13t=d"Gő?Paꧧ06`[R<>XWuڽ|/ԓ:Ġ1Q|0yJV +R 'DIEn=?h)B +`KPIXkrA7qF ~f sACQ*yL.Qm>n: h9.C}K~8ngaJAzI蓋-{̄꫃ʯP +kשR Xô[ H*FvAs6m~sЇKzv= "I>̀(쪄Vc'[endstream endobj 206 0 obj -(Table of Contents) +<< +/Type /Page +/Parent 2 0 R +/Resources 207 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 208 0 R +>> endobj 207 0 obj << +/Font << +/F40 57 0 R +/F38 45 0 R +/F8 49 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +208 0 obj +<< +/Filter /FlateDecode +/Length 3416 +>> +stream +x\Yo6~[99f` lZng2("%, RXW| .PtQIExS0T1[D\E0oYPH pkT7-.Wݩٽ}qoh`>iTO,'1%bN)a*Јr)XA: +VU]^vhL +|Go_}U@v*C 2%dW4*y;'g Bs+vLq4R]Ҧ +ZthiM+Kts۬C |Kŀq˪JHf29CS6[^DY"=S҆ dY<ٳ3 +(z{\eeP9cwIf + 0E mAjiQRAb`l=ڂlHq?sZMJ7Xq$F7ÈۼꪦKZVSJ*I@-+ 0R shEpM"$9=*ڄq%@ެsW1͔Ў8G2qpaM2cynC[ՉPVS1[V\K$ >=ts +CvַW_ ^鷠;߂}(=)RJ@ɓmNf۸?XOm؁!.bW!.@gӳBOW~ͻl6W\yP蹕V솚9G2^z^5j^ܼ(_ JpvrmPU @gr;n/%{YЇ+3hİ/GqI;IBH#bt΂'#1|dC H+- P{H}붣qpHŢL֙sψ[׃X~4 +ܥ[-X8q +.퉐p>Lyts`r{B4Nc:o={MtUem*M *cګzd'푎ŐCn_Xg*UY2m'[þ=٤%xJ( yώE˺X؍Ǣy"X#qyˣpL.Ps戾q\Re#:d:6hF` ^y H"ty}Iğ,Eg{}&p =.` mGgPV.S +E%ծɒ'`)@#cbV#<߳ Wſendstream +endobj +209 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources 210 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 211 0 R +>> +endobj +210 0 obj +<< +/Font << +/F38 45 0 R +/F8 49 0 R +/F40 57 0 R +/F14 110 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +211 0 obj +<< +/Filter /FlateDecode +/Length 2519 +>> +stream +xZߓ~߿Y_$T]\dSy̚df0>A]V0֧O-ow8J?1xN#1s$zuiQC3[hXFS𗇻i(4z1C(r=>O[7Sиi.Ҫ4mu*t= '7C@j_+ n 葴\k_ۓUV<54}dѦ:WSUQ d薁w//ۧ梔]10UU4ct㏱Ү3LrݼJ??C ^Cyv]?yR?9zkiΠ Pajl]dé<[U\GR3x 3Y4qLK7F;hi3G!.VsjR2e#爐o{ -GPFvdV}.z;`ܔml[l_cɍ5=PJCCS+vGc./;޽_H +7粸+ףz>0;ts6ŏ CtrS,l ~Sk#g@K0vzЌh>ʩ +vZҤ"c{ь4??GyJ#3@J z +?>7y}v'wavwKUV[Sʇ~#nH Ѧ!@ Jr@m D}Ad 2~r-{M*"zV\r`KC Ġ&Q(Oy"Ђ&,{7m00"&(# ŞD1+sm)8_ 6 Q.GiyZ؝Ț:!|1`7QWgi>8<8,bhϬ T'Tr[B 3c^\a:ix[|wN;V*>hyyF'O^.EṛYOͮfЍ- IZבw| yo!P +ڋWy.;PXwM;ȼY5:pNʧHsC/|~p` ay-B\ϛ˒Nmdu"c6Sb +fRGZĀ[Q+G)5[m~9cge͕K[sZBDI*8h)037?lꝡP:=htLhΡ85KwcleFHD\@𫼲 ZRa7D }QEiǝVW/|>)s" \-AjCs^׫+v~sU1,><(rҷFڬOM+?vIIbJr G<&u&F|Đd`JԲŵ{'ܐN`sD[ 6nC29L%|yLDO#{4F/z7@:| ivLVbb?ޯDLO$1눹@KY}wrzz3;ڇ4p9\KĝȰP2J0z</ǣrޜ4Bendstream +endobj +212 0 obj +<< +/Type /Outlines +/First 213 0 R +/Last 225 0 R +/Count 5 +>> +endobj +213 0 obj +<< +/Title 214 0 R +/A 215 0 R +/Parent 212 0 R +/Next 216 0 R +>> +endobj +214 0 obj +(Table of Contents) +endobj +215 0 obj +<< /S /GoTo /D (table-of-contents.0) >> endobj -208 0 obj +216 0 obj << -/Title 209 0 R -/A 210 0 R -/Parent 204 0 R -/Prev 205 0 R -/Next 211 0 R +/Title 217 0 R +/A 218 0 R +/Parent 212 0 R +/Prev 213 0 R +/Next 219 0 R >> endobj -209 0 obj +217 0 obj (Motivation) endobj -210 0 obj +218 0 obj << /S /GoTo /D (motivation.0) >> endobj -211 0 obj +219 0 obj << -/Title 212 0 R -/A 213 0 R -/Parent 204 0 R -/Prev 208 0 R -/Next 214 0 R +/Title 220 0 R +/A 221 0 R +/Parent 212 0 R +/Prev 216 0 R +/Next 222 0 R >> endobj -212 0 obj +220 0 obj (Impact on the Standard) endobj -213 0 obj +221 0 obj << /S /GoTo /D (impact-on-the-standard.0) >> endobj -214 0 obj +222 0 obj << -/Title 215 0 R -/A 216 0 R -/Parent 204 0 R -/Prev 211 0 R -/Next 217 0 R -/First 277 0 R -/Last 289 0 R +/Title 223 0 R +/A 224 0 R +/Parent 212 0 R +/Prev 219 0 R +/Next 225 0 R +/First 363 0 R +/Last 375 0 R /Count -5 >> endobj -215 0 obj +223 0 obj (Design) endobj -216 0 obj +224 0 obj << /S /GoTo /D (design.0) >> endobj -217 0 obj +225 0 obj << -/Title 218 0 R -/A 219 0 R -/Parent 204 0 R -/Prev 214 0 R -/First 220 0 R -/Last 229 0 R +/Title 226 0 R +/A 227 0 R +/Parent 212 0 R +/Prev 222 0 R +/First 228 0 R +/Last 237 0 R /Count -4 >> endobj -218 0 obj +226 0 obj (Proposed Text) endobj -219 0 obj +227 0 obj << /S /GoTo /D (proposed-text.0) >> endobj -220 0 obj +228 0 obj << -/Title 221 0 R -/A 222 0 R -/Parent 217 0 R -/Next 223 0 R +/Title 229 0 R +/A 230 0 R +/Parent 225 0 R +/Next 231 0 R >> endobj -221 0 obj +229 0 obj (Header synopsis [lib.iterator.helper.synopsis]) endobj -222 0 obj +230 0 obj << /S /GoTo /D (header-iterator-helper-synopsis-lib-iterator-helper-synopsis.1) >> endobj -223 0 obj +231 0 obj << -/Title 224 0 R -/A 225 0 R -/Parent 217 0 R -/Prev 220 0 R -/Next 226 0 R -/First 268 0 R -/Last 274 0 R +/Title 232 0 R +/A 233 0 R +/Parent 225 0 R +/Prev 228 0 R +/Next 234 0 R +/First 354 0 R +/Last 360 0 R /Count -3 >> endobj -224 0 obj +232 0 obj (Iterator facade [lib.iterator.facade]) endobj -225 0 obj +233 0 obj << /S /GoTo /D (iterator-facade-lib-iterator-facade.1) >> endobj -226 0 obj +234 0 obj << -/Title 227 0 R -/A 228 0 R -/Parent 217 0 R -/Prev 223 0 R -/Next 229 0 R -/First 250 0 R -/Last 265 0 R +/Title 235 0 R +/A 236 0 R +/Parent 225 0 R +/Prev 231 0 R +/Next 237 0 R +/First 336 0 R +/Last 351 0 R /Count -6 >> endobj -227 0 obj +235 0 obj (Iterator adaptor [lib.iterator.adaptor]) endobj -228 0 obj +236 0 obj << /S /GoTo /D (iterator-adaptor-lib-iterator-adaptor.1) >> endobj -229 0 obj +237 0 obj << -/Title 230 0 R -/A 231 0 R -/Parent 217 0 R -/Prev 226 0 R -/First 232 0 R -/Last 247 0 R +/Title 238 0 R +/A 239 0 R +/Parent 225 0 R +/Prev 234 0 R +/First 240 0 R +/Last 255 0 R /Count -6 >> endobj -230 0 obj +238 0 obj (Specialized adaptors [lib.iterator.special.adaptors]) endobj -231 0 obj +239 0 obj << /S /GoTo /D (specialized-adaptors-lib-iterator-special-adaptors.1) >> endobj -232 0 obj +240 0 obj << -/Title 233 0 R -/A 234 0 R -/Parent 229 0 R -/Next 235 0 R +/Title 241 0 R +/A 242 0 R +/Parent 237 0 R +/Next 243 0 R +/First 318 0 R +/Last 333 0 R +/Count -6 >> endobj -233 0 obj +241 0 obj (Indirect iterator) endobj -234 0 obj +242 0 obj << /S /GoTo /D (indirect-iterator.2) >> endobj -235 0 obj +243 0 obj << -/Title 236 0 R -/A 237 0 R -/Parent 229 0 R -/Prev 232 0 R -/Next 238 0 R +/Title 244 0 R +/A 245 0 R +/Parent 237 0 R +/Prev 240 0 R +/Next 246 0 R +/First 306 0 R +/Last 315 0 R +/Count -4 >> endobj -236 0 obj +244 0 obj (Reverse iterator) endobj -237 0 obj +245 0 obj << /S /GoTo /D (reverse-iterator.2) >> endobj -238 0 obj +246 0 obj << -/Title 239 0 R -/A 240 0 R -/Parent 229 0 R -/Prev 235 0 R -/Next 241 0 R +/Title 247 0 R +/A 248 0 R +/Parent 237 0 R +/Prev 243 0 R +/Next 249 0 R +/First 294 0 R +/Last 303 0 R +/Count -4 >> endobj -239 0 obj +247 0 obj (Transform iterator) endobj -240 0 obj +248 0 obj << /S /GoTo /D (transform-iterator.2) >> endobj -241 0 obj +249 0 obj << -/Title 242 0 R -/A 243 0 R -/Parent 229 0 R -/Prev 238 0 R -/Next 244 0 R +/Title 250 0 R +/A 251 0 R +/Parent 237 0 R +/Prev 246 0 R +/Next 252 0 R +/First 282 0 R +/Last 291 0 R +/Count -4 >> endobj -242 0 obj +250 0 obj (Filter iterator) endobj -243 0 obj +251 0 obj << /S /GoTo /D (filter-iterator.2) >> endobj -244 0 obj +252 0 obj << -/Title 245 0 R -/A 246 0 R -/Parent 229 0 R -/Prev 241 0 R -/Next 247 0 R +/Title 253 0 R +/A 254 0 R +/Parent 237 0 R +/Prev 249 0 R +/Next 255 0 R +/First 270 0 R +/Last 279 0 R +/Count -4 >> endobj -245 0 obj +253 0 obj (Counting iterator) endobj -246 0 obj +254 0 obj << /S /GoTo /D (counting-iterator.2) >> endobj -247 0 obj +255 0 obj << -/Title 248 0 R -/A 249 0 R -/Parent 229 0 R -/Prev 244 0 R +/Title 256 0 R +/A 257 0 R +/Parent 237 0 R +/Prev 252 0 R +/First 258 0 R +/Last 267 0 R +/Count -4 >> endobj -248 0 obj +256 0 obj (Function output iterator) endobj -249 0 obj +257 0 obj << /S /GoTo /D (function-output-iterator.2) >> endobj -250 0 obj +258 0 obj << -/Title 251 0 R -/A 252 0 R -/Parent 226 0 R -/Next 253 0 R +/Title 259 0 R +/A 260 0 R +/Parent 255 0 R +/Next 261 0 R >> endobj -251 0 obj +259 0 obj +(Class template function_output_iterator) +endobj +260 0 obj +<< +/S /GoTo +/D (class-template-function-output-iterator.3) +>> +endobj +261 0 obj +<< +/Title 262 0 R +/A 263 0 R +/Parent 255 0 R +/Prev 258 0 R +/Next 264 0 R +>> +endobj +262 0 obj +(function_output_iterator requirements) +endobj +263 0 obj +<< +/S /GoTo +/D (function-output-iterator-requirements.3) +>> +endobj +264 0 obj +<< +/Title 265 0 R +/A 266 0 R +/Parent 255 0 R +/Prev 261 0 R +/Next 267 0 R +>> +endobj +265 0 obj +(function_output_iterator models) +endobj +266 0 obj +<< +/S /GoTo +/D (function-output-iterator-models.3) +>> +endobj +267 0 obj +<< +/Title 268 0 R +/A 269 0 R +/Parent 255 0 R +/Prev 264 0 R +>> +endobj +268 0 obj +(function_output_iterator operations) +endobj +269 0 obj +<< +/S /GoTo +/D (function-output-iterator-operations.3) +>> +endobj +270 0 obj +<< +/Title 271 0 R +/A 272 0 R +/Parent 252 0 R +/Next 273 0 R +>> +endobj +271 0 obj +(Class template counting_iterator) +endobj +272 0 obj +<< +/S /GoTo +/D (class-template-counting-iterator.3) +>> +endobj +273 0 obj +<< +/Title 274 0 R +/A 275 0 R +/Parent 252 0 R +/Prev 270 0 R +/Next 276 0 R +>> +endobj +274 0 obj +(counting_iterator requirements) +endobj +275 0 obj +<< +/S /GoTo +/D (counting-iterator-requirements.3) +>> +endobj +276 0 obj +<< +/Title 277 0 R +/A 278 0 R +/Parent 252 0 R +/Prev 273 0 R +/Next 279 0 R +>> +endobj +277 0 obj +(counting_iterator models) +endobj +278 0 obj +<< +/S /GoTo +/D (counting-iterator-models.3) +>> +endobj +279 0 obj +<< +/Title 280 0 R +/A 281 0 R +/Parent 252 0 R +/Prev 276 0 R +>> +endobj +280 0 obj +(counting_iterator operations) +endobj +281 0 obj +<< +/S /GoTo +/D (counting-iterator-operations.3) +>> +endobj +282 0 obj +<< +/Title 283 0 R +/A 284 0 R +/Parent 249 0 R +/Next 285 0 R +>> +endobj +283 0 obj +(Class template filter_iterator) +endobj +284 0 obj +<< +/S /GoTo +/D (class-template-filter-iterator.3) +>> +endobj +285 0 obj +<< +/Title 286 0 R +/A 287 0 R +/Parent 249 0 R +/Prev 282 0 R +/Next 288 0 R +>> +endobj +286 0 obj +(filter_iterator requirements) +endobj +287 0 obj +<< +/S /GoTo +/D (filter-iterator-requirements.3) +>> +endobj +288 0 obj +<< +/Title 289 0 R +/A 290 0 R +/Parent 249 0 R +/Prev 285 0 R +/Next 291 0 R +>> +endobj +289 0 obj +(filter_iterator models) +endobj +290 0 obj +<< +/S /GoTo +/D (filter-iterator-models.3) +>> +endobj +291 0 obj +<< +/Title 292 0 R +/A 293 0 R +/Parent 249 0 R +/Prev 288 0 R +>> +endobj +292 0 obj +(filter_iterator operations) +endobj +293 0 obj +<< +/S /GoTo +/D (filter-iterator-operations.3) +>> +endobj +294 0 obj +<< +/Title 295 0 R +/A 296 0 R +/Parent 246 0 R +/Next 297 0 R +>> +endobj +295 0 obj +(Class template transform_iterator) +endobj +296 0 obj +<< +/S /GoTo +/D (class-template-transform-iterator.3) +>> +endobj +297 0 obj +<< +/Title 298 0 R +/A 299 0 R +/Parent 246 0 R +/Prev 294 0 R +/Next 300 0 R +>> +endobj +298 0 obj +(transform_iterator requirements) +endobj +299 0 obj +<< +/S /GoTo +/D (transform-iterator-requirements.3) +>> +endobj +300 0 obj +<< +/Title 301 0 R +/A 302 0 R +/Parent 246 0 R +/Prev 297 0 R +/Next 303 0 R +>> +endobj +301 0 obj +(transform_iterator models) +endobj +302 0 obj +<< +/S /GoTo +/D (transform-iterator-models.3) +>> +endobj +303 0 obj +<< +/Title 304 0 R +/A 305 0 R +/Parent 246 0 R +/Prev 300 0 R +>> +endobj +304 0 obj +(transform_iterator operations) +endobj +305 0 obj +<< +/S /GoTo +/D (transform-iterator-operations.3) +>> +endobj +306 0 obj +<< +/Title 307 0 R +/A 308 0 R +/Parent 243 0 R +/Next 309 0 R +>> +endobj +307 0 obj +(Class template reverse_iterator) +endobj +308 0 obj +<< +/S /GoTo +/D (class-template-reverse-iterator.3) +>> +endobj +309 0 obj +<< +/Title 310 0 R +/A 311 0 R +/Parent 243 0 R +/Prev 306 0 R +/Next 312 0 R +>> +endobj +310 0 obj +(reverse_iterator requirements) +endobj +311 0 obj +<< +/S /GoTo +/D (reverse-iterator-requirements.3) +>> +endobj +312 0 obj +<< +/Title 313 0 R +/A 314 0 R +/Parent 243 0 R +/Prev 309 0 R +/Next 315 0 R +>> +endobj +313 0 obj +(reverse_iterator models) +endobj +314 0 obj +<< +/S /GoTo +/D (reverse-iterator-models.3) +>> +endobj +315 0 obj +<< +/Title 316 0 R +/A 317 0 R +/Parent 243 0 R +/Prev 312 0 R +>> +endobj +316 0 obj +(reverse_iterator operations) +endobj +317 0 obj +<< +/S /GoTo +/D (reverse-iterator-operations.3) +>> +endobj +318 0 obj +<< +/Title 319 0 R +/A 320 0 R +/Parent 240 0 R +/Next 321 0 R +>> +endobj +319 0 obj +(Class template pointee) +endobj +320 0 obj +<< +/S /GoTo +/D (class-template-pointee.3) +>> +endobj +321 0 obj +<< +/Title 322 0 R +/A 323 0 R +/Parent 240 0 R +/Prev 318 0 R +/Next 324 0 R +>> +endobj +322 0 obj +(Class template indirect_reference) +endobj +323 0 obj +<< +/S /GoTo +/D (class-template-indirect-reference.3) +>> +endobj +324 0 obj +<< +/Title 325 0 R +/A 326 0 R +/Parent 240 0 R +/Prev 321 0 R +/Next 327 0 R +>> +endobj +325 0 obj +(Class template indirect_iterator) +endobj +326 0 obj +<< +/S /GoTo +/D (class-template-indirect-iterator.3) +>> +endobj +327 0 obj +<< +/Title 328 0 R +/A 329 0 R +/Parent 240 0 R +/Prev 324 0 R +/Next 330 0 R +>> +endobj +328 0 obj +(indirect_iterator requirements) +endobj +329 0 obj +<< +/S /GoTo +/D (indirect-iterator-requirements.3) +>> +endobj +330 0 obj +<< +/Title 331 0 R +/A 332 0 R +/Parent 240 0 R +/Prev 327 0 R +/Next 333 0 R +>> +endobj +331 0 obj +(indirect_iterator models) +endobj +332 0 obj +<< +/S /GoTo +/D (indirect-iterator-models.3) +>> +endobj +333 0 obj +<< +/Title 334 0 R +/A 335 0 R +/Parent 240 0 R +/Prev 330 0 R +>> +endobj +334 0 obj +(indirect_iterator operations) +endobj +335 0 obj +<< +/S /GoTo +/D (indirect-iterator-operations.3) +>> +endobj +336 0 obj +<< +/Title 337 0 R +/A 338 0 R +/Parent 234 0 R +/Next 339 0 R +>> +endobj +337 0 obj (Class template iterator_adaptor) endobj -252 0 obj +338 0 obj << /S /GoTo /D (class-template-iterator-adaptor.2) >> endobj -253 0 obj +339 0 obj << -/Title 254 0 R -/A 255 0 R -/Parent 226 0 R -/Prev 250 0 R -/Next 256 0 R +/Title 340 0 R +/A 341 0 R +/Parent 234 0 R +/Prev 336 0 R +/Next 342 0 R >> endobj -254 0 obj +340 0 obj (iterator_adaptor requirements) endobj -255 0 obj +341 0 obj << /S /GoTo /D (iterator-adaptor-requirements.2) >> endobj -256 0 obj +342 0 obj << -/Title 257 0 R -/A 258 0 R -/Parent 226 0 R -/Prev 253 0 R -/Next 259 0 R +/Title 343 0 R +/A 344 0 R +/Parent 234 0 R +/Prev 339 0 R +/Next 345 0 R >> endobj -257 0 obj +343 0 obj (iterator_adaptor base class parameters) endobj -258 0 obj +344 0 obj << /S /GoTo /D (iterator-adaptor-base-class-parameters.2) >> endobj -259 0 obj +345 0 obj << -/Title 260 0 R -/A 261 0 R -/Parent 226 0 R -/Prev 256 0 R -/Next 262 0 R +/Title 346 0 R +/A 347 0 R +/Parent 234 0 R +/Prev 342 0 R +/Next 348 0 R >> endobj -260 0 obj +346 0 obj (iterator_adaptor public operations) endobj -261 0 obj +347 0 obj << /S /GoTo /D (iterator-adaptor-public-operations.2) >> endobj -262 0 obj +348 0 obj << -/Title 263 0 R -/A 264 0 R -/Parent 226 0 R -/Prev 259 0 R -/Next 265 0 R +/Title 349 0 R +/A 350 0 R +/Parent 234 0 R +/Prev 345 0 R +/Next 351 0 R >> endobj -263 0 obj +349 0 obj (iterator_adaptor protected member functions) endobj -264 0 obj +350 0 obj << /S /GoTo /D (iterator-adaptor-protected-member-functions.2) >> endobj -265 0 obj +351 0 obj << -/Title 266 0 R -/A 267 0 R -/Parent 226 0 R -/Prev 262 0 R +/Title 352 0 R +/A 353 0 R +/Parent 234 0 R +/Prev 348 0 R >> endobj -266 0 obj +352 0 obj (iterator_adaptor private member functions) endobj -267 0 obj +353 0 obj << /S /GoTo /D (iterator-adaptor-private-member-functions.2) >> endobj -268 0 obj +354 0 obj << -/Title 269 0 R -/A 270 0 R -/Parent 223 0 R -/Next 271 0 R +/Title 355 0 R +/A 356 0 R +/Parent 231 0 R +/Next 357 0 R >> endobj -269 0 obj +355 0 obj (Class template iterator_facade) endobj -270 0 obj +356 0 obj << /S /GoTo /D (class-template-iterator-facade.2) >> endobj -271 0 obj +357 0 obj << -/Title 272 0 R -/A 273 0 R -/Parent 223 0 R -/Prev 268 0 R -/Next 274 0 R +/Title 358 0 R +/A 359 0 R +/Parent 231 0 R +/Prev 354 0 R +/Next 360 0 R >> endobj -272 0 obj +358 0 obj (iterator_facade Requirements) endobj -273 0 obj +359 0 obj << /S /GoTo /D (iterator-facade-requirements.2) >> endobj -274 0 obj +360 0 obj << -/Title 275 0 R -/A 276 0 R -/Parent 223 0 R -/Prev 271 0 R +/Title 361 0 R +/A 362 0 R +/Parent 231 0 R +/Prev 357 0 R >> endobj -275 0 obj +361 0 obj (iterator_facade operations) endobj -276 0 obj +362 0 obj << /S /GoTo /D (iterator-facade-operations.2) >> endobj -277 0 obj +363 0 obj << -/Title 278 0 R -/A 279 0 R -/Parent 214 0 R -/Next 280 0 R +/Title 364 0 R +/A 365 0 R +/Parent 222 0 R +/Next 366 0 R >> endobj -278 0 obj +364 0 obj (Iterator Concepts) endobj -279 0 obj +365 0 obj << /S /GoTo /D (iterator-concepts.1) >> endobj -280 0 obj +366 0 obj << -/Title 281 0 R -/A 282 0 R -/Parent 214 0 R -/Prev 277 0 R -/Next 283 0 R +/Title 367 0 R +/A 368 0 R +/Parent 222 0 R +/Prev 363 0 R +/Next 369 0 R >> endobj -281 0 obj +367 0 obj (Interoperability) endobj -282 0 obj +368 0 obj << /S /GoTo /D (interoperability.1) >> endobj -283 0 obj +369 0 obj << -/Title 284 0 R -/A 285 0 R -/Parent 214 0 R -/Prev 280 0 R -/Next 286 0 R -/First 292 0 R -/Last 301 0 R +/Title 370 0 R +/A 371 0 R +/Parent 222 0 R +/Prev 366 0 R +/Next 372 0 R +/First 378 0 R +/Last 387 0 R /Count -4 >> endobj -284 0 obj +370 0 obj (Iterator Facade) endobj -285 0 obj +371 0 obj << /S /GoTo /D (iterator-facade.1) >> endobj -286 0 obj +372 0 obj << -/Title 287 0 R -/A 288 0 R -/Parent 214 0 R -/Prev 283 0 R -/Next 289 0 R +/Title 373 0 R +/A 374 0 R +/Parent 222 0 R +/Prev 369 0 R +/Next 375 0 R >> endobj -287 0 obj +373 0 obj (Iterator Adaptor) endobj -288 0 obj +374 0 obj << /S /GoTo /D (iterator-adaptor.1) >> endobj -289 0 obj +375 0 obj << -/Title 290 0 R -/A 291 0 R -/Parent 214 0 R -/Prev 286 0 R +/Title 376 0 R +/A 377 0 R +/Parent 222 0 R +/Prev 372 0 R >> endobj -290 0 obj +376 0 obj (Specialized Adaptors) endobj -291 0 obj +377 0 obj << /S /GoTo /D (specialized-adaptors.1) >> endobj -292 0 obj +378 0 obj << -/Title 293 0 R -/A 294 0 R -/Parent 283 0 R -/Next 295 0 R +/Title 379 0 R +/A 380 0 R +/Parent 369 0 R +/Next 381 0 R >> endobj -293 0 obj +379 0 obj (Usage) endobj -294 0 obj +380 0 obj << /S /GoTo /D (usage.2) >> endobj -295 0 obj +381 0 obj << -/Title 296 0 R -/A 297 0 R -/Parent 283 0 R -/Prev 292 0 R -/Next 298 0 R +/Title 382 0 R +/A 383 0 R +/Parent 369 0 R +/Prev 378 0 R +/Next 384 0 R >> endobj -296 0 obj +382 0 obj (Iterator Core Access) endobj -297 0 obj +383 0 obj << /S /GoTo /D (iterator-core-access.2) >> endobj -298 0 obj +384 0 obj << -/Title 299 0 R -/A 300 0 R -/Parent 283 0 R -/Prev 295 0 R -/Next 301 0 R +/Title 385 0 R +/A 386 0 R +/Parent 369 0 R +/Prev 381 0 R +/Next 387 0 R >> endobj -299 0 obj +385 0 obj (operator[]) endobj -300 0 obj +386 0 obj << /S /GoTo /D (operator.2) >> endobj -301 0 obj +387 0 obj << -/Title 302 0 R -/A 303 0 R -/Parent 283 0 R -/Prev 298 0 R +/Title 388 0 R +/A 389 0 R +/Parent 369 0 R +/Prev 384 0 R >> endobj -302 0 obj +388 0 obj (operator->) endobj -303 0 obj +389 0 obj << /S /GoTo /D (id6.2) >> endobj -304 0 obj -<< -/Dests 305 0 R ->> -endobj -305 0 obj -<< -/Kids [ 306 0 R ] ->> -endobj -306 0 obj -<< -/Names [ (Doc-Start) 307 0 R (Item.1) 308 0 R (Item.2) 309 0 R (Item.3) 310 0 R (base) 311 0 R (base-parameters) 312 0 R (brackets) 313 0 R (class-template-counting-iterator) 314 0 R (class-template-counting-iterator.3) 315 0 R (class-template-filter-iterator) 316 0 R (class-template-filter-iterator.3) 317 0 R (class-template-function-output-iterator) 318 0 R (class-template-function-output-iterator.3) 319 0 R (class-template-indirect-iterator) 320 0 R (class-template-indirect-iterator.3) 321 0 R (class-template-indirect-reference) 322 0 R (class-template-indirect-reference.3) 323 0 R (class-template-iterator-adaptor) 324 0 R (class-template-iterator-adaptor.2) 325 0 R (class-template-iterator-facade) 326 0 R (class-template-iterator-facade.2) 327 0 R (class-template-pointee) 328 0 R (class-template-pointee.3) 329 0 R (class-template-reverse-iterator) 330 0 R (class-template-reverse-iterator.3) 331 0 R (class-template-transform-iterator) 332 0 R (class-template-transform-iterator.3) 333 0 R (concept) 334 0 R (cop95) 335 0 R (core-operations) 336 0 R (counting) 337 0 R (counting-iterator) 338 0 R (counting-iterator-models) 339 0 R (counting-iterator-models.3) 340 0 R (counting-iterator-operations) 341 0 R (counting-iterator-operations.3) 342 0 R (counting-iterator-requirements) 343 0 R (counting-iterator-requirements.3) 344 0 R (counting-iterator.2) 345 0 R (design) 346 0 R (design.0) 347 0 R (filter-iterator) 348 0 R (filter-iterator-models) 349 0 R (filter-iterator-models.3) 350 0 R (filter-iterator-operations) 351 0 R (filter-iterator-operations.3) 352 0 R (filter-iterator-requirements) 353 0 R (filter-iterator-requirements.3) 354 0 R (filter-iterator.2) 355 0 R (function-output-iterator) 356 0 R (function-output-iterator-models) 357 0 R (function-output-iterator-models.3) 358 0 R (function-output-iterator-operations) 359 0 R (function-output-iterator-operations.3) 360 0 R (function-output-iterator-requirements) 361 0 R (function-output-iterator-requirements.3) 362 0 R (function-output-iterator.2) 363 0 R (header-iterator-helper-synopsis-lib-iterator-helper-synopsis) 364 0 R (header-iterator-helper-synopsis-lib-iterator-helper-synopsis.1) 365 0 R (id12) 366 0 R (id6) 367 0 R (id6.2) 368 0 R (impact-on-the-standard) 369 0 R (impact-on-the-standard.0) 370 0 R (indirect-iterator) 371 0 R (indirect-iterator-models) 372 0 R (indirect-iterator-models.3) 373 0 R (indirect-iterator-operations) 374 0 R (indirect-iterator-operations.3) 375 0 R (indirect-iterator-requirements) 376 0 R (indirect-iterator-requirements.3) 377 0 R (indirect-iterator.2) 378 0 R (interoperability) 379 0 R (interoperability.1) 380 0 R (iterator-adaptor) 381 0 R (iterator-adaptor-base-class-parameters) 382 0 R (iterator-adaptor-base-class-parameters.2) 383 0 R (iterator-adaptor-lib-iterator-adaptor) 384 0 R (iterator-adaptor-lib-iterator-adaptor.1) 385 0 R (iterator-adaptor-private-member-functions) 386 0 R (iterator-adaptor-private-member-functions.2) 387 0 R (iterator-adaptor-protected-member-functions) 388 0 R (iterator-adaptor-protected-member-functions.2) 389 0 R (iterator-adaptor-public-operations) 390 0 R (iterator-adaptor-public-operations.2) 391 0 R (iterator-adaptor-requirements) 392 0 R (iterator-adaptor-requirements.2) 393 0 R (iterator-adaptor.1) 394 0 R (iterator-category) 395 0 R (iterator-concepts) 396 0 R (iterator-concepts.1) 397 0 R (iterator-core-access) 398 0 R (iterator-core-access.2) 399 0 R (iterator-facade) 400 0 R (iterator-facade-lib-iterator-facade) 401 0 R (iterator-facade-lib-iterator-facade.1) 402 0 R (iterator-facade-operations) 403 0 R (iterator-facade-operations.2) 404 0 R (iterator-facade-requirements) 405 0 R (iterator-facade-requirements.2) 406 0 R (iterator-facade.1) 407 0 R (minus) 408 0 R (motivation) 409 0 R (motivation.0) 410 0 R (mutable) 411 0 R (operator) 412 0 R (operator-arrow) 413 0 R (operator.2) 414 0 R (page.1) 415 0 R (page.10) 416 0 R (page.11) 417 0 R (page.12) 418 0 R (page.13) 419 0 R (page.14) 420 0 R (page.15) 421 0 R (page.16) 422 0 R (page.17) 423 0 R (page.18) 424 0 R (page.19) 425 0 R (page.2) 426 0 R (page.20) 427 0 R (page.21) 428 0 R (page.22) 429 0 R (page.23) 430 0 R (page.24) 431 0 R (page.25) 432 0 R (page.26) 433 0 R (page.27) 434 0 R (page.28) 435 0 R (page.29) 436 0 R (page.3) 437 0 R (page.30) 438 0 R (page.31) 439 0 R (page.32) 440 0 R (page.33) 441 0 R (page.4) 442 0 R (page.5) 443 0 R (page.6) 444 0 R (page.7) 445 0 R (page.8) 446 0 R (page.9) 447 0 R (proposed-text) 448 0 R (proposed-text.0) 449 0 R (requirements) 450 0 R (reverse-iterator) 451 0 R (reverse-iterator-models) 452 0 R (reverse-iterator-models.3) 453 0 R (reverse-iterator-operations) 454 0 R (reverse-iterator-operations.3) 455 0 R (reverse-iterator-requirements) 456 0 R (reverse-iterator-requirements.3) 457 0 R (reverse-iterator.2) 458 0 R (section*.1) 459 0 R (section*.10) 460 0 R (section*.11) 461 0 R (section*.12) 462 0 R (section*.13) 463 0 R (section*.14) 464 0 R (section*.15) 465 0 R (section*.16) 466 0 R (section*.17) 467 0 R (section*.18) 468 0 R (section*.19) 469 0 R (section*.2) 470 0 R (section*.20) 471 0 R (section*.21) 472 0 R (section*.22) 473 0 R (section*.23) 474 0 R (section*.24) 475 0 R (section*.25) 476 0 R (section*.26) 477 0 R (section*.27) 478 0 R (section*.28) 479 0 R (section*.29) 480 0 R (section*.3) 481 0 R (section*.30) 482 0 R (section*.31) 483 0 R (section*.32) 484 0 R (section*.33) 485 0 R (section*.34) 486 0 R (section*.35) 487 0 R (section*.36) 488 0 R (section*.37) 489 0 R (section*.38) 490 0 R (section*.39) 491 0 R (section*.4) 492 0 R (section*.40) 493 0 R (section*.41) 494 0 R (section*.42) 495 0 R (section*.43) 496 0 R (section*.44) 497 0 R (section*.45) 498 0 R (section*.46) 499 0 R (section*.47) 500 0 R (section*.48) 501 0 R (section*.49) 502 0 R (section*.5) 503 0 R (section*.50) 504 0 R (section*.51) 505 0 R (section*.52) 506 0 R (section*.53) 507 0 R (section*.54) 508 0 R (section*.55) 509 0 R (section*.56) 510 0 R (section*.57) 511 0 R (section*.58) 512 0 R (section*.59) 513 0 R (section*.6) 514 0 R (section*.60) 515 0 R (section*.7) 516 0 R (section*.8) 517 0 R (section*.9) 518 0 R (specialized-adaptors) 519 0 R (specialized-adaptors-lib-iterator-special-adaptors) 520 0 R (specialized-adaptors-lib-iterator-special-adaptors.1) 521 0 R (specialized-adaptors.1) 522 0 R (table-of-contents) 523 0 R (table-of-contents.0) 524 0 R (table.0.1) 525 0 R (table.0.2) 526 0 R (table.0.3) 527 0 R (table.0.4) 528 0 R (table.0.5) 529 0 R (table.0.6) 530 0 R (table.0.7) 531 0 R (transform-iterator) 532 0 R (transform-iterator-models) 533 0 R (transform-iterator-models.3) 534 0 R (transform-iterator-operations) 535 0 R (transform-iterator-operations.3) 536 0 R (transform-iterator-requirements) 537 0 R (transform-iterator-requirements.3) 538 0 R (transform-iterator.2) 539 0 R (usage) 540 0 R (usage.2) 541 0 R ] -/Limits [ (Doc-Start) (usage.2) ] ->> -endobj -307 0 obj -<< -/D [ 3 0 R /XYZ 99 711 null ] ->> -endobj -308 0 obj -<< -/D [ 94 0 R /XYZ 99 134.714 null ] ->> -endobj -309 0 obj -<< -/D [ 94 0 R /XYZ 99 107.407 null ] ->> -endobj -310 0 obj -<< -/D [ 104 0 R /XYZ 99 711 null ] ->> -endobj -311 0 obj -<< -/D [ 107 0 R /XYZ 99 104.862 null ] ->> -endobj -312 0 obj -<< -/D [ 150 0 R /XYZ 245.888 471.907 null ] ->> -endobj -313 0 obj -<< -/D [ 136 0 R /XYZ 99 211.94 null ] ->> -endobj -314 0 obj -<< -/D [ 189 0 R /XYZ 99 256.422 null ] ->> -endobj -315 0 obj -<< -/D [ 189 0 R /XYZ 99 256.422 null ] ->> -endobj -316 0 obj -<< -/D [ 183 0 R /XYZ 99 615.443 null ] ->> -endobj -317 0 obj -<< -/D [ 183 0 R /XYZ 99 615.443 null ] ->> -endobj -318 0 obj -<< -/D [ 201 0 R /XYZ 99 640.3 null ] ->> -endobj -319 0 obj -<< -/D [ 201 0 R /XYZ 99 640.3 null ] ->> -endobj -320 0 obj -<< -/D [ 159 0 R /XYZ 99 346.335 null ] ->> -endobj -321 0 obj -<< -/D [ 159 0 R /XYZ 99 346.335 null ] ->> -endobj -322 0 obj -<< -/D [ 159 0 R /XYZ 99 607.302 null ] ->> -endobj -323 0 obj -<< -/D [ 159 0 R /XYZ 99 607.302 null ] ->> -endobj -324 0 obj -<< -/D [ 146 0 R /XYZ 99 425.649 null ] ->> -endobj -325 0 obj -<< -/D [ 146 0 R /XYZ 99 425.649 null ] ->> -endobj -326 0 obj -<< -/D [ 121 0 R /XYZ 99 663.264 null ] ->> -endobj -327 0 obj -<< -/D [ 121 0 R /XYZ 99 663.264 null ] ->> -endobj -328 0 obj -<< -/D [ 156 0 R /XYZ 99 350.064 null ] ->> -endobj -329 0 obj -<< -/D [ 156 0 R /XYZ 99 350.064 null ] ->> -endobj -330 0 obj -<< -/D [ 168 0 R /XYZ 99 410.809 null ] ->> -endobj -331 0 obj -<< -/D [ 168 0 R /XYZ 99 410.809 null ] ->> -endobj -332 0 obj -<< -/D [ 174 0 R /XYZ 99 340.094 null ] ->> -endobj -333 0 obj -<< -/D [ 174 0 R /XYZ 99 340.094 null ] ->> -endobj -334 0 obj -<< -/D [ 85 0 R /XYZ 99 118.794 null ] ->> -endobj -335 0 obj -<< -/D [ 107 0 R /XYZ 99 128.707 null ] ->> -endobj -336 0 obj -<< -/D [ 136 0 R /XYZ 502.622 677.127 null ] ->> -endobj -337 0 obj -<< -/D [ 115 0 R /XYZ 99 376.714 null ] ->> -endobj -338 0 obj -<< -/D [ 189 0 R /XYZ 99 325.467 null ] ->> -endobj -339 0 obj -<< -/D [ 192 0 R /XYZ 99 66.028 null ] ->> -endobj -340 0 obj -<< -/D [ 192 0 R /XYZ 99 66.028 null ] ->> -endobj -341 0 obj -<< -/D [ 198 0 R /XYZ 99 574.597 null ] ->> -endobj -342 0 obj -<< -/D [ 198 0 R /XYZ 99 574.597 null ] ->> -endobj -343 0 obj -<< -/D [ 192 0 R /XYZ 99 342.356 null ] ->> -endobj -344 0 obj -<< -/D [ 192 0 R /XYZ 99 342.356 null ] ->> -endobj -345 0 obj -<< -/D [ 189 0 R /XYZ 99 325.467 null ] ->> -endobj -346 0 obj -<< -/D [ 85 0 R /XYZ 99 203.638 null ] ->> -endobj -347 0 obj -<< -/D [ 85 0 R /XYZ 99 203.638 null ] ->> -endobj -348 0 obj -<< -/D [ 180 0 R /XYZ 99 80.848 null ] ->> -endobj -349 0 obj -<< -/D [ 183 0 R /XYZ 99 78.706 null ] ->> -endobj -350 0 obj -<< -/D [ 183 0 R /XYZ 99 78.706 null ] ->> -endobj -351 0 obj -<< -/D [ 186 0 R /XYZ 99 403.498 null ] ->> -endobj -352 0 obj -<< -/D [ 186 0 R /XYZ 99 403.498 null ] ->> -endobj -353 0 obj -<< -/D [ 183 0 R /XYZ 99 187.299 null ] ->> -endobj -354 0 obj -<< -/D [ 183 0 R /XYZ 99 187.299 null ] ->> -endobj -355 0 obj -<< -/D [ 180 0 R /XYZ 99 80.848 null ] ->> -endobj -356 0 obj -<< -/D [ 198 0 R /XYZ 99 112.978 null ] ->> -endobj -357 0 obj -<< -/D [ 201 0 R /XYZ 99 320.257 null ] ->> -endobj -358 0 obj -<< -/D [ 201 0 R /XYZ 99 320.257 null ] ->> -endobj -359 0 obj -<< -/D [ 201 0 R /XYZ 99 267.832 null ] ->> -endobj -360 0 obj -<< -/D [ 201 0 R /XYZ 99 267.832 null ] ->> -endobj -361 0 obj -<< -/D [ 201 0 R /XYZ 99 367.115 null ] ->> -endobj -362 0 obj -<< -/D [ 201 0 R /XYZ 99 367.115 null ] ->> -endobj -363 0 obj -<< -/D [ 198 0 R /XYZ 99 112.978 null ] ->> -endobj -364 0 obj -<< -/D [ 115 0 R /XYZ 99 201.506 null ] ->> -endobj -365 0 obj -<< -/D [ 115 0 R /XYZ 99 201.506 null ] ->> -endobj -366 0 obj -<< -/D [ 127 0 R /XYZ 283.436 241.76 null ] ->> -endobj -367 0 obj -<< -/D [ 107 0 R /XYZ 99 408.836 null ] ->> -endobj -368 0 obj -<< -/D [ 107 0 R /XYZ 99 408.836 null ] ->> -endobj -369 0 obj -<< -/D [ 85 0 R /XYZ 99 281.446 null ] ->> -endobj -370 0 obj -<< -/D [ 85 0 R /XYZ 99 281.446 null ] ->> -endobj -371 0 obj -<< -/D [ 156 0 R /XYZ 99 441.097 null ] ->> -endobj -372 0 obj -<< -/D [ 165 0 R /XYZ 99 610.462 null ] ->> -endobj -373 0 obj -<< -/D [ 165 0 R /XYZ 99 610.462 null ] ->> -endobj -374 0 obj -<< -/D [ 165 0 R /XYZ 99 425.78 null ] ->> -endobj -375 0 obj -<< -/D [ 165 0 R /XYZ 99 425.78 null ] ->> -endobj -376 0 obj -<< -/D [ 162 0 R /XYZ 99 77.834 null ] ->> -endobj -377 0 obj -<< -/D [ 162 0 R /XYZ 99 77.834 null ] ->> -endobj -378 0 obj -<< -/D [ 156 0 R /XYZ 99 441.097 null ] ->> -endobj -379 0 obj -<< -/D [ 94 0 R /XYZ 99 594.059 null ] ->> -endobj -380 0 obj -<< -/D [ 94 0 R /XYZ 99 594.059 null ] ->> -endobj -381 0 obj -<< -/D [ 107 0 R /XYZ 99 278.734 null ] ->> -endobj -382 0 obj -<< -/D [ 150 0 R /XYZ 99 469.751 null ] ->> -endobj -383 0 obj -<< -/D [ 150 0 R /XYZ 99 469.751 null ] ->> -endobj -384 0 obj -<< -/D [ 146 0 R /XYZ 99 540.662 null ] ->> -endobj -385 0 obj -<< -/D [ 146 0 R /XYZ 99 540.662 null ] ->> -endobj -386 0 obj -<< -/D [ 153 0 R /XYZ 99 467.07 null ] ->> -endobj -387 0 obj -<< -/D [ 153 0 R /XYZ 99 467.07 null ] ->> -endobj -388 0 obj -<< -/D [ 153 0 R /XYZ 99 592.324 null ] ->> -endobj -389 0 obj -<< -/D [ 153 0 R /XYZ 99 592.324 null ] ->> -endobj 390 0 obj << -/D [ 150 0 R /XYZ 99 125.805 null ] +/Dests 391 0 R >> endobj 391 0 obj << -/D [ 150 0 R /XYZ 99 125.805 null ] +/Kids [ 392 0 R ] >> endobj 392 0 obj << -/D [ 150 0 R /XYZ 99 535.302 null ] +/Names [ (Doc-Start) 393 0 R (Item.1) 394 0 R (Item.2) 395 0 R (Item.3) 396 0 R (base) 397 0 R (base-parameters) 398 0 R (brackets) 399 0 R (class-template-counting-iterator) 400 0 R (class-template-counting-iterator.3) 401 0 R (class-template-filter-iterator) 402 0 R (class-template-filter-iterator.3) 403 0 R (class-template-function-output-iterator) 404 0 R (class-template-function-output-iterator.3) 405 0 R (class-template-indirect-iterator) 406 0 R (class-template-indirect-iterator.3) 407 0 R (class-template-indirect-reference) 408 0 R (class-template-indirect-reference.3) 409 0 R (class-template-iterator-adaptor) 410 0 R (class-template-iterator-adaptor.2) 411 0 R (class-template-iterator-facade) 412 0 R (class-template-iterator-facade.2) 413 0 R (class-template-pointee) 414 0 R (class-template-pointee.3) 415 0 R (class-template-reverse-iterator) 416 0 R (class-template-reverse-iterator.3) 417 0 R (class-template-transform-iterator) 418 0 R (class-template-transform-iterator.3) 419 0 R (concept) 420 0 R (cop95) 421 0 R (core-operations) 422 0 R (counting) 423 0 R (counting-iterator) 424 0 R (counting-iterator-models) 425 0 R (counting-iterator-models.3) 426 0 R (counting-iterator-operations) 427 0 R (counting-iterator-operations.3) 428 0 R (counting-iterator-requirements) 429 0 R (counting-iterator-requirements.3) 430 0 R (counting-iterator.2) 431 0 R (design) 432 0 R (design.0) 433 0 R (filter-iterator) 434 0 R (filter-iterator-models) 435 0 R (filter-iterator-models.3) 436 0 R (filter-iterator-operations) 437 0 R (filter-iterator-operations.3) 438 0 R (filter-iterator-requirements) 439 0 R (filter-iterator-requirements.3) 440 0 R (filter-iterator.2) 441 0 R (function-output-iterator) 442 0 R (function-output-iterator-models) 443 0 R (function-output-iterator-models.3) 444 0 R (function-output-iterator-operations) 445 0 R (function-output-iterator-operations.3) 446 0 R (function-output-iterator-requirements) 447 0 R (function-output-iterator-requirements.3) 448 0 R (function-output-iterator.2) 449 0 R (header-iterator-helper-synopsis-lib-iterator-helper-synopsis) 450 0 R (header-iterator-helper-synopsis-lib-iterator-helper-synopsis.1) 451 0 R (id12) 452 0 R (id6) 453 0 R (id6.2) 454 0 R (impact-on-the-standard) 455 0 R (impact-on-the-standard.0) 456 0 R (indirect-iterator) 457 0 R (indirect-iterator-models) 458 0 R (indirect-iterator-models.3) 459 0 R (indirect-iterator-operations) 460 0 R (indirect-iterator-operations.3) 461 0 R (indirect-iterator-requirements) 462 0 R (indirect-iterator-requirements.3) 463 0 R (indirect-iterator.2) 464 0 R (interoperability) 465 0 R (interoperability.1) 466 0 R (iterator-adaptor) 467 0 R (iterator-adaptor-base-class-parameters) 468 0 R (iterator-adaptor-base-class-parameters.2) 469 0 R (iterator-adaptor-lib-iterator-adaptor) 470 0 R (iterator-adaptor-lib-iterator-adaptor.1) 471 0 R (iterator-adaptor-private-member-functions) 472 0 R (iterator-adaptor-private-member-functions.2) 473 0 R (iterator-adaptor-protected-member-functions) 474 0 R (iterator-adaptor-protected-member-functions.2) 475 0 R (iterator-adaptor-public-operations) 476 0 R (iterator-adaptor-public-operations.2) 477 0 R (iterator-adaptor-requirements) 478 0 R (iterator-adaptor-requirements.2) 479 0 R (iterator-adaptor.1) 480 0 R (iterator-category) 481 0 R (iterator-concepts) 482 0 R (iterator-concepts.1) 483 0 R (iterator-core-access) 484 0 R (iterator-core-access.2) 485 0 R (iterator-facade) 486 0 R (iterator-facade-lib-iterator-facade) 487 0 R (iterator-facade-lib-iterator-facade.1) 488 0 R (iterator-facade-operations) 489 0 R (iterator-facade-operations.2) 490 0 R (iterator-facade-requirements) 491 0 R (iterator-facade-requirements.2) 492 0 R (iterator-facade.1) 493 0 R (minus) 494 0 R (motivation) 495 0 R (motivation.0) 496 0 R (mutable) 497 0 R (operator) 498 0 R (operator-arrow) 499 0 R (operator.2) 500 0 R (page.1) 501 0 R (page.10) 502 0 R (page.11) 503 0 R (page.12) 504 0 R (page.13) 505 0 R (page.14) 506 0 R (page.15) 507 0 R (page.16) 508 0 R (page.17) 509 0 R (page.18) 510 0 R (page.19) 511 0 R (page.2) 512 0 R (page.20) 513 0 R (page.21) 514 0 R (page.22) 515 0 R (page.23) 516 0 R (page.24) 517 0 R (page.25) 518 0 R (page.26) 519 0 R (page.3) 520 0 R (page.4) 521 0 R (page.5) 522 0 R (page.6) 523 0 R (page.7) 524 0 R (page.8) 525 0 R (page.9) 526 0 R (proposed-text) 527 0 R (proposed-text.0) 528 0 R (requirements) 529 0 R (reverse-iterator) 530 0 R (reverse-iterator-models) 531 0 R (reverse-iterator-models.3) 532 0 R (reverse-iterator-operations) 533 0 R (reverse-iterator-operations.3) 534 0 R (reverse-iterator-requirements) 535 0 R (reverse-iterator-requirements.3) 536 0 R (reverse-iterator.2) 537 0 R (section*.1) 538 0 R (section*.10) 539 0 R (section*.11) 540 0 R (section*.12) 541 0 R (section*.13) 542 0 R (section*.14) 543 0 R (section*.15) 544 0 R (section*.16) 545 0 R (section*.17) 546 0 R (section*.18) 547 0 R (section*.19) 548 0 R (section*.2) 549 0 R (section*.20) 550 0 R (section*.21) 551 0 R (section*.22) 552 0 R (section*.23) 553 0 R (section*.24) 554 0 R (section*.25) 555 0 R (section*.26) 556 0 R (section*.27) 557 0 R (section*.28) 558 0 R (section*.29) 559 0 R (section*.3) 560 0 R (section*.30) 561 0 R (section*.31) 562 0 R (section*.32) 563 0 R (section*.33) 564 0 R (section*.34) 565 0 R (section*.35) 566 0 R (section*.36) 567 0 R (section*.37) 568 0 R (section*.38) 569 0 R (section*.39) 570 0 R (section*.4) 571 0 R (section*.40) 572 0 R (section*.41) 573 0 R (section*.42) 574 0 R (section*.43) 575 0 R (section*.44) 576 0 R (section*.45) 577 0 R (section*.46) 578 0 R (section*.47) 579 0 R (section*.48) 580 0 R (section*.49) 581 0 R (section*.5) 582 0 R (section*.50) 583 0 R (section*.51) 584 0 R (section*.52) 585 0 R (section*.53) 586 0 R (section*.54) 587 0 R (section*.55) 588 0 R (section*.56) 589 0 R (section*.57) 590 0 R (section*.58) 591 0 R (section*.59) 592 0 R (section*.6) 593 0 R (section*.60) 594 0 R (section*.7) 595 0 R (section*.8) 596 0 R (section*.9) 597 0 R (specialized-adaptors) 598 0 R (specialized-adaptors-lib-iterator-special-adaptors) 599 0 R (specialized-adaptors-lib-iterator-special-adaptors.1) 600 0 R (specialized-adaptors.1) 601 0 R (table-of-contents) 602 0 R (table-of-contents.0) 603 0 R (table.1) 604 0 R (table.2) 605 0 R (table.3) 606 0 R (table.4) 607 0 R (table.5) 608 0 R (table.6) 609 0 R (table.7) 610 0 R (transform-iterator) 611 0 R (transform-iterator-models) 612 0 R (transform-iterator-models.3) 613 0 R (transform-iterator-operations) 614 0 R (transform-iterator-operations.3) 615 0 R (transform-iterator-requirements) 616 0 R (transform-iterator-requirements.3) 617 0 R (transform-iterator.2) 618 0 R (usage) 619 0 R (usage.2) 620 0 R ] +/Limits [ (Doc-Start) (usage.2) ] >> endobj 393 0 obj << -/D [ 150 0 R /XYZ 99 535.302 null ] +/D [ 3 0 R /XYZ 56.693 785.197 null ] >> endobj 394 0 obj << -/D [ 107 0 R /XYZ 99 278.734 null ] +/D [ 116 0 R /XYZ 56.693 549.677 null ] >> endobj 395 0 obj << -/D [ 127 0 R /XYZ 99 307.413 null ] +/D [ 116 0 R /XYZ 56.693 521.782 null ] >> endobj 396 0 obj << -/D [ 94 0 R /XYZ 99 687.807 null ] +/D [ 116 0 R /XYZ 56.693 483.869 null ] >> endobj 397 0 obj << -/D [ 94 0 R /XYZ 99 687.807 null ] +/D [ 120 0 R /XYZ 56.693 90.012 null ] >> endobj 398 0 obj << -/D [ 104 0 R /XYZ 99 238.866 null ] +/D [ 163 0 R /XYZ 168.026 224.39 null ] >> endobj 399 0 obj << -/D [ 104 0 R /XYZ 99 238.866 null ] +/D [ 153 0 R /XYZ 56.693 129.782 null ] >> endobj 400 0 obj << -/D [ 94 0 R /XYZ 99 410.843 null ] +/D [ 197 0 R /XYZ 56.693 588.533 null ] >> endobj 401 0 obj << -/D [ 118 0 R /XYZ 99 72 null ] +/D [ 197 0 R /XYZ 56.693 588.533 null ] >> endobj 402 0 obj << -/D [ 118 0 R /XYZ 99 72 null ] +/D [ 191 0 R /XYZ 56.693 569.61 null ] >> endobj 403 0 obj << -/D [ 136 0 R /XYZ 99 438.007 null ] +/D [ 191 0 R /XYZ 56.693 569.61 null ] >> endobj 404 0 obj << -/D [ 136 0 R /XYZ 99 438.007 null ] +/D [ 209 0 R /XYZ 56.693 719.042 null ] >> endobj 405 0 obj << -/D [ 132 0 R /XYZ 99 158.125 null ] +/D [ 209 0 R /XYZ 56.693 719.042 null ] >> endobj 406 0 obj << -/D [ 132 0 R /XYZ 99 158.125 null ] +/D [ 173 0 R /XYZ 56.693 562.38 null ] >> endobj 407 0 obj << -/D [ 94 0 R /XYZ 99 410.843 null ] +/D [ 173 0 R /XYZ 56.693 562.38 null ] >> endobj 408 0 obj << -/D [ 143 0 R /XYZ 99 62.282 null ] +/D [ 170 0 R /XYZ 56.693 99.906 null ] >> endobj 409 0 obj << -/D [ 50 0 R /XYZ 99 270.487 null ] +/D [ 170 0 R /XYZ 56.693 99.906 null ] >> endobj 410 0 obj << -/D [ 50 0 R /XYZ 99 270.487 null ] +/D [ 160 0 R /XYZ 56.693 56.693 null ] >> endobj 411 0 obj << -/D [ 85 0 R /XYZ 99 92.906 null ] +/D [ 160 0 R /XYZ 56.693 56.693 null ] >> endobj 412 0 obj << -/D [ 107 0 R /XYZ 99 598.714 null ] +/D [ 134 0 R /XYZ 56.693 226.895 null ] >> endobj 413 0 obj << -/D [ 107 0 R /XYZ 351.959 410.993 null ] +/D [ 134 0 R /XYZ 56.693 226.895 null ] >> endobj 414 0 obj << -/D [ 107 0 R /XYZ 99 598.714 null ] +/D [ 170 0 R /XYZ 56.693 455.302 null ] >> endobj 415 0 obj << -/D [ 3 0 R /XYZ 99 729 null ] +/D [ 170 0 R /XYZ 56.693 455.302 null ] >> endobj 416 0 obj << -/D [ 121 0 R /XYZ 99 729 null ] +/D [ 179 0 R /XYZ 56.693 314.156 null ] >> endobj 417 0 obj << -/D [ 127 0 R /XYZ 99 729 null ] +/D [ 179 0 R /XYZ 56.693 314.156 null ] >> endobj 418 0 obj << -/D [ 132 0 R /XYZ 99 729 null ] +/D [ 185 0 R /XYZ 56.693 583.557 null ] >> endobj 419 0 obj << -/D [ 136 0 R /XYZ 99 729 null ] +/D [ 185 0 R /XYZ 56.693 583.557 null ] >> endobj 420 0 obj << -/D [ 140 0 R /XYZ 99 729 null ] +/D [ 102 0 R /XYZ 56.693 104.403 null ] >> endobj 421 0 obj << -/D [ 143 0 R /XYZ 99 729 null ] +/D [ 120 0 R /XYZ 56.693 114.421 null ] >> endobj 422 0 obj << -/D [ 146 0 R /XYZ 99 729 null ] +/D [ 153 0 R /XYZ 541.622 543.651 null ] >> endobj 423 0 obj << -/D [ 150 0 R /XYZ 99 729 null ] +/D [ 127 0 R /XYZ 56.693 472.379 null ] >> endobj 424 0 obj << -/D [ 153 0 R /XYZ 99 729 null ] +/D [ 197 0 R /XYZ 56.693 646.488 null ] >> endobj 425 0 obj << -/D [ 156 0 R /XYZ 99 729 null ] +/D [ 206 0 R /XYZ 56.693 546.559 null ] >> endobj 426 0 obj << -/D [ 8 0 R /XYZ 99 729 null ] +/D [ 206 0 R /XYZ 56.693 546.559 null ] >> endobj 427 0 obj << -/D [ 159 0 R /XYZ 99 729 null ] +/D [ 206 0 R /XYZ 56.693 419.12 null ] >> endobj 428 0 obj << -/D [ 162 0 R /XYZ 99 729 null ] +/D [ 206 0 R /XYZ 56.693 419.12 null ] >> endobj 429 0 obj << -/D [ 165 0 R /XYZ 99 729 null ] +/D [ 197 0 R /XYZ 56.693 56.693 null ] >> endobj 430 0 obj << -/D [ 168 0 R /XYZ 99 729 null ] +/D [ 197 0 R /XYZ 56.693 56.693 null ] >> endobj 431 0 obj << -/D [ 171 0 R /XYZ 99 729 null ] +/D [ 197 0 R /XYZ 56.693 646.488 null ] >> endobj 432 0 obj << -/D [ 174 0 R /XYZ 99 729 null ] +/D [ 102 0 R /XYZ 56.693 435.591 null ] >> endobj 433 0 obj << -/D [ 177 0 R /XYZ 99 729 null ] +/D [ 102 0 R /XYZ 56.693 435.591 null ] >> endobj 434 0 obj << -/D [ 180 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 675.608 null ] >> endobj 435 0 obj << -/D [ 183 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 76.279 null ] >> endobj 436 0 obj << -/D [ 186 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 76.279 null ] >> endobj 437 0 obj << -/D [ 50 0 R /XYZ 99 729 null ] +/D [ 194 0 R /XYZ 56.693 510.722 null ] >> endobj 438 0 obj << -/D [ 189 0 R /XYZ 99 729 null ] +/D [ 194 0 R /XYZ 56.693 510.722 null ] >> endobj 439 0 obj << -/D [ 192 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 168.385 null ] >> endobj 440 0 obj << -/D [ 198 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 168.385 null ] >> endobj 441 0 obj << -/D [ 201 0 R /XYZ 99 729 null ] +/D [ 191 0 R /XYZ 56.693 675.608 null ] >> endobj 442 0 obj << -/D [ 85 0 R /XYZ 99 729 null ] +/D [ 206 0 R /XYZ 56.693 56.693 null ] >> endobj 443 0 obj << -/D [ 94 0 R /XYZ 99 729 null ] +/D [ 209 0 R /XYZ 56.693 405.039 null ] >> endobj 444 0 obj << -/D [ 104 0 R /XYZ 99 729 null ] +/D [ 209 0 R /XYZ 56.693 405.039 null ] >> endobj 445 0 obj << -/D [ 107 0 R /XYZ 99 729 null ] +/D [ 209 0 R /XYZ 56.693 360.754 null ] >> endobj 446 0 obj << -/D [ 115 0 R /XYZ 99 729 null ] +/D [ 209 0 R /XYZ 56.693 360.754 null ] >> endobj 447 0 obj << -/D [ 118 0 R /XYZ 99 729 null ] +/D [ 209 0 R /XYZ 56.693 449.048 null ] >> endobj 448 0 obj << -/D [ 115 0 R /XYZ 99 251.184 null ] +/D [ 209 0 R /XYZ 56.693 449.048 null ] >> endobj 449 0 obj << -/D [ 115 0 R /XYZ 99 251.184 null ] +/D [ 206 0 R /XYZ 56.693 56.693 null ] >> endobj 450 0 obj << -/D [ 150 0 R /XYZ 99 535.302 null ] +/D [ 127 0 R /XYZ 56.693 313.389 null ] >> endobj 451 0 obj << -/D [ 168 0 R /XYZ 99 466.869 null ] +/D [ 127 0 R /XYZ 56.693 313.389 null ] >> endobj 452 0 obj << -/D [ 171 0 R /XYZ 99 595.892 null ] +/D [ 144 0 R /XYZ 268.959 642.131 null ] >> endobj 453 0 obj << -/D [ 171 0 R /XYZ 99 595.892 null ] +/D [ 120 0 R /XYZ 56.693 387.833 null ] >> endobj 454 0 obj << -/D [ 171 0 R /XYZ 99 365.815 null ] +/D [ 120 0 R /XYZ 56.693 387.833 null ] >> endobj 455 0 obj << -/D [ 171 0 R /XYZ 99 365.815 null ] +/D [ 102 0 R /XYZ 56.693 502.313 null ] >> endobj 456 0 obj << -/D [ 171 0 R /XYZ 99 663.638 null ] +/D [ 102 0 R /XYZ 56.693 502.313 null ] >> endobj 457 0 obj << -/D [ 171 0 R /XYZ 99 663.638 null ] +/D [ 170 0 R /XYZ 56.693 535.176 null ] >> endobj 458 0 obj << -/D [ 168 0 R /XYZ 99 466.869 null ] +/D [ 176 0 R /XYZ 56.693 302.057 null ] >> endobj 459 0 obj << -/D [ 8 0 R /XYZ 99 505.285 null ] +/D [ 176 0 R /XYZ 56.693 302.057 null ] >> endobj 460 0 obj << -/D [ 107 0 R /XYZ 99 562.091 null ] +/D [ 176 0 R /XYZ 56.693 150.729 null ] >> endobj 461 0 obj << -/D [ 107 0 R /XYZ 99 372.213 null ] +/D [ 176 0 R /XYZ 56.693 150.729 null ] >> endobj 462 0 obj << -/D [ 107 0 R /XYZ 99 239.101 null ] +/D [ 176 0 R /XYZ 56.693 406.395 null ] >> endobj 463 0 obj << -/D [ 115 0 R /XYZ 99 557.758 null ] +/D [ 176 0 R /XYZ 56.693 406.395 null ] >> endobj 464 0 obj << -/D [ 115 0 R /XYZ 99 201.506 null ] +/D [ 170 0 R /XYZ 56.693 535.176 null ] >> endobj 465 0 obj << -/D [ 115 0 R /XYZ 99 176.338 null ] +/D [ 102 0 R /XYZ 56.693 312.622 null ] >> endobj 466 0 obj << -/D [ 121 0 R /XYZ 99 692.531 null ] +/D [ 102 0 R /XYZ 56.693 312.622 null ] >> endobj 467 0 obj << -/D [ 121 0 R /XYZ 99 625.162 null ] +/D [ 120 0 R /XYZ 56.693 271.817 null ] >> endobj 468 0 obj << -/D [ 132 0 R /XYZ 99 121.941 null ] +/D [ 163 0 R /XYZ 56.693 222.453 null ] >> endobj 469 0 obj << -/D [ 136 0 R /XYZ 99 634.47 null ] +/D [ 163 0 R /XYZ 56.693 222.453 null ] >> endobj 470 0 obj << -/D [ 50 0 R /XYZ 99 223.527 null ] +/D [ 160 0 R /XYZ 56.693 160.456 null ] >> endobj 471 0 obj << -/D [ 136 0 R /XYZ 99 412.318 null ] +/D [ 160 0 R /XYZ 56.693 160.456 null ] >> endobj 472 0 obj << -/D [ 146 0 R /XYZ 99 499.958 null ] +/D [ 167 0 R /XYZ 56.693 375.717 null ] >> endobj 473 0 obj << -/D [ 146 0 R /XYZ 99 385.694 null ] +/D [ 167 0 R /XYZ 56.693 375.717 null ] >> endobj 474 0 obj << -/D [ 150 0 R /XYZ 99 498.345 null ] +/D [ 167 0 R /XYZ 56.693 472.3 null ] >> endobj 475 0 obj << -/D [ 150 0 R /XYZ 99 432.46 null ] +/D [ 167 0 R /XYZ 56.693 472.3 null ] >> endobj 476 0 obj << -/D [ 150 0 R /XYZ 99 86.482 null ] +/D [ 167 0 R /XYZ 56.693 615.512 null ] >> endobj 477 0 obj << -/D [ 153 0 R /XYZ 99 553.298 null ] +/D [ 167 0 R /XYZ 56.693 615.512 null ] >> endobj 478 0 obj << -/D [ 153 0 R /XYZ 99 428.044 null ] +/D [ 163 0 R /XYZ 56.693 278.14 null ] >> endobj 479 0 obj << -/D [ 156 0 R /XYZ 99 691.88 null ] +/D [ 163 0 R /XYZ 56.693 278.14 null ] >> endobj 480 0 obj << -/D [ 156 0 R /XYZ 99 404.883 null ] +/D [ 120 0 R /XYZ 56.693 271.817 null ] >> endobj 481 0 obj << -/D [ 85 0 R /XYZ 99 231.767 null ] +/D [ 144 0 R /XYZ 56.693 692.309 null ] >> endobj 482 0 obj << -/D [ 156 0 R /XYZ 99 311.962 null ] +/D [ 102 0 R /XYZ 56.693 391.927 null ] >> endobj 483 0 obj << -/D [ 159 0 R /XYZ 99 577.288 null ] +/D [ 102 0 R /XYZ 56.693 391.927 null ] >> endobj 484 0 obj << -/D [ 159 0 R /XYZ 99 313.955 null ] +/D [ 116 0 R /XYZ 56.693 54.756 null ] >> endobj 485 0 obj << -/D [ 165 0 R /XYZ 99 692.285 null ] +/D [ 116 0 R /XYZ 56.693 54.756 null ] >> endobj 486 0 obj << -/D [ 165 0 R /XYZ 99 574.238 null ] +/D [ 102 0 R /XYZ 56.693 148.73 null ] >> endobj 487 0 obj << -/D [ 165 0 R /XYZ 99 387.678 null ] +/D [ 134 0 R /XYZ 56.693 284.851 null ] >> endobj 488 0 obj << -/D [ 168 0 R /XYZ 99 429.375 null ] +/D [ 134 0 R /XYZ 56.693 284.851 null ] >> endobj 489 0 obj << -/D [ 168 0 R /XYZ 99 373.445 null ] +/D [ 153 0 R /XYZ 56.693 324.695 null ] >> endobj 490 0 obj << -/D [ 171 0 R /XYZ 99 624.913 null ] +/D [ 153 0 R /XYZ 56.693 324.695 null ] >> endobj 491 0 obj << -/D [ 171 0 R /XYZ 99 559.668 null ] +/D [ 153 0 R /XYZ 56.693 657.177 null ] >> endobj 492 0 obj << -/D [ 94 0 R /XYZ 99 687.807 null ] +/D [ 153 0 R /XYZ 56.693 657.177 null ] >> endobj 493 0 obj << -/D [ 171 0 R /XYZ 99 327.713 null ] +/D [ 102 0 R /XYZ 56.693 148.73 null ] >> endobj 494 0 obj << -/D [ 174 0 R /XYZ 99 370.965 null ] +/D [ 160 0 R /XYZ 56.693 320.434 null ] >> endobj 495 0 obj << -/D [ 174 0 R /XYZ 99 302.064 null ] +/D [ 63 0 R /XYZ 56.693 360.263 null ] >> endobj 496 0 obj << -/D [ 177 0 R /XYZ 99 384.813 null ] +/D [ 63 0 R /XYZ 56.693 360.263 null ] >> endobj 497 0 obj << -/D [ 177 0 R /XYZ 99 290.676 null ] +/D [ 102 0 R /XYZ 56.693 78.057 null ] >> endobj 498 0 obj << -/D [ 180 0 R /XYZ 99 619.932 null ] +/D [ 120 0 R /XYZ 56.693 551.67 null ] >> endobj 499 0 obj << -/D [ 183 0 R /XYZ 99 694.173 null ] +/D [ 120 0 R /XYZ 273.742 389.77 null ] >> endobj 500 0 obj << -/D [ 183 0 R /XYZ 99 577.341 null ] +/D [ 120 0 R /XYZ 56.693 551.67 null ] >> endobj 501 0 obj << -/D [ 183 0 R /XYZ 99 148.574 null ] +/D [ 3 0 R /XYZ 56.693 785.197 null ] >> endobj 502 0 obj << -/D [ 186 0 R /XYZ 99 694.163 null ] +/D [ 153 0 R /XYZ 56.693 785.197 null ] >> endobj 503 0 obj << -/D [ 94 0 R /XYZ 99 662.934 null ] +/D [ 157 0 R /XYZ 56.693 785.197 null ] >> endobj 504 0 obj << -/D [ 186 0 R /XYZ 99 363.379 null ] +/D [ 160 0 R /XYZ 56.693 785.197 null ] >> endobj 505 0 obj << -/D [ 189 0 R /XYZ 99 285.41 null ] +/D [ 163 0 R /XYZ 56.693 785.197 null ] >> endobj 506 0 obj << -/D [ 189 0 R /XYZ 99 218.383 null ] +/D [ 167 0 R /XYZ 56.693 785.197 null ] >> endobj 507 0 obj << -/D [ 192 0 R /XYZ 99 312.065 null ] +/D [ 170 0 R /XYZ 56.693 785.197 null ] >> endobj 508 0 obj << -/D [ 198 0 R /XYZ 99 692.898 null ] +/D [ 173 0 R /XYZ 56.693 785.197 null ] >> endobj 509 0 obj << -/D [ 198 0 R /XYZ 99 536.495 null ] +/D [ 176 0 R /XYZ 56.693 785.197 null ] >> endobj 510 0 obj << -/D [ 201 0 R /XYZ 99 692.285 null ] +/D [ 179 0 R /XYZ 56.693 785.197 null ] >> endobj 511 0 obj << -/D [ 201 0 R /XYZ 99 603.995 null ] +/D [ 182 0 R /XYZ 56.693 785.197 null ] >> endobj 512 0 obj << -/D [ 201 0 R /XYZ 99 336.377 null ] +/D [ 63 0 R /XYZ 56.693 785.197 null ] >> endobj 513 0 obj << -/D [ 201 0 R /XYZ 99 284.565 null ] +/D [ 185 0 R /XYZ 56.693 785.197 null ] >> endobj 514 0 obj << -/D [ 94 0 R /XYZ 99 554.118 null ] +/D [ 188 0 R /XYZ 56.693 785.197 null ] >> endobj 515 0 obj << -/D [ 201 0 R /XYZ 99 231.527 null ] +/D [ 191 0 R /XYZ 56.693 785.197 null ] >> endobj 516 0 obj << -/D [ 94 0 R /XYZ 99 371.15 null ] +/D [ 194 0 R /XYZ 56.693 785.197 null ] >> endobj 517 0 obj << -/D [ 104 0 R /XYZ 99 593.033 null ] +/D [ 197 0 R /XYZ 56.693 785.197 null ] >> endobj 518 0 obj << -/D [ 104 0 R /XYZ 99 202.607 null ] +/D [ 206 0 R /XYZ 56.693 785.197 null ] >> endobj 519 0 obj << -/D [ 115 0 R /XYZ 99 598.258 null ] +/D [ 209 0 R /XYZ 56.693 785.197 null ] >> endobj 520 0 obj << -/D [ 153 0 R /XYZ 99 72 null ] +/D [ 102 0 R /XYZ 56.693 785.197 null ] >> endobj 521 0 obj << -/D [ 153 0 R /XYZ 99 72 null ] +/D [ 116 0 R /XYZ 56.693 785.197 null ] >> endobj 522 0 obj << -/D [ 115 0 R /XYZ 99 598.258 null ] +/D [ 120 0 R /XYZ 56.693 785.197 null ] >> endobj 523 0 obj << -/D [ 8 0 R /XYZ 99 543.573 null ] +/D [ 127 0 R /XYZ 56.693 785.197 null ] >> endobj 524 0 obj << -/D [ 8 0 R /XYZ 99 543.573 null ] +/D [ 134 0 R /XYZ 56.693 785.197 null ] >> endobj 525 0 obj << -/D [ 104 0 R /XYZ 99 466.378 null ] +/D [ 137 0 R /XYZ 56.693 785.197 null ] >> endobj 526 0 obj << -/D [ 136 0 R /XYZ 99 634.47 null ] +/D [ 144 0 R /XYZ 56.693 785.197 null ] >> endobj 527 0 obj << -/D [ 171 0 R /XYZ 99 528.769 null ] +/D [ 127 0 R /XYZ 56.693 356.476 null ] >> endobj 528 0 obj << -/D [ 177 0 R /XYZ 99 149.192 null ] +/D [ 127 0 R /XYZ 56.693 356.476 null ] >> endobj 529 0 obj << -/D [ 186 0 R /XYZ 99 663.264 null ] +/D [ 163 0 R /XYZ 56.693 278.14 null ] >> endobj 530 0 obj << -/D [ 186 0 R /XYZ 99 595.917 null ] +/D [ 179 0 R /XYZ 56.693 360.301 null ] >> endobj 531 0 obj << -/D [ 186 0 R /XYZ 99 514.223 null ] +/D [ 182 0 R /XYZ 56.693 599.497 null ] >> endobj 532 0 obj << -/D [ 174 0 R /XYZ 99 409.125 null ] +/D [ 182 0 R /XYZ 56.693 599.497 null ] >> endobj 533 0 obj << -/D [ 177 0 R /XYZ 99 326.901 null ] +/D [ 182 0 R /XYZ 56.693 395.838 null ] >> endobj 534 0 obj << -/D [ 177 0 R /XYZ 99 326.901 null ] +/D [ 182 0 R /XYZ 56.693 395.838 null ] >> endobj 535 0 obj << -/D [ 180 0 R /XYZ 99 658.034 null ] +/D [ 182 0 R /XYZ 56.693 655.461 null ] >> endobj 536 0 obj << -/D [ 180 0 R /XYZ 99 658.034 null ] +/D [ 182 0 R /XYZ 56.693 655.461 null ] >> endobj 537 0 obj << -/D [ 177 0 R /XYZ 99 423.538 null ] +/D [ 179 0 R /XYZ 56.693 360.301 null ] >> endobj 538 0 obj << -/D [ 177 0 R /XYZ 99 423.538 null ] +/D [ 3 0 R /XYZ 56.693 498.875 null ] >> endobj 539 0 obj << -/D [ 174 0 R /XYZ 99 409.125 null ] +/D [ 120 0 R /XYZ 56.693 519.063 null ] >> endobj 540 0 obj << -/D [ 104 0 R /XYZ 99 631.135 null ] +/D [ 120 0 R /XYZ 56.693 355.226 null ] >> endobj 541 0 obj << -/D [ 104 0 R /XYZ 99 631.135 null ] +/D [ 120 0 R /XYZ 56.693 237.107 null ] >> endobj 542 0 obj << +/D [ 127 0 R /XYZ 56.693 642.969 null ] +>> +endobj +543 0 obj +<< +/D [ 127 0 R /XYZ 56.693 313.389 null ] +>> +endobj +544 0 obj +<< +/D [ 127 0 R /XYZ 56.693 292.808 null ] +>> +endobj +545 0 obj +<< +/D [ 134 0 R /XYZ 56.693 249.753 null ] +>> +endobj +546 0 obj +<< +/D [ 134 0 R /XYZ 56.693 194.565 null ] +>> +endobj +547 0 obj +<< +/D [ 153 0 R /XYZ 56.693 625.4 null ] +>> +endobj +548 0 obj +<< +/D [ 153 0 R /XYZ 56.693 507.004 null ] +>> +endobj +549 0 obj +<< +/D [ 63 0 R /XYZ 56.693 319.707 null ] +>> +endobj +550 0 obj +<< +/D [ 153 0 R /XYZ 56.693 304.369 null ] +>> +endobj +551 0 obj +<< +/D [ 160 0 R /XYZ 56.693 125.435 null ] +>> +endobj +552 0 obj +<< +/D [ 163 0 R /XYZ 56.693 766.586 null ] +>> +endobj +553 0 obj +<< +/D [ 163 0 R /XYZ 56.693 246.087 null ] +>> +endobj +554 0 obj +<< +/D [ 163 0 R /XYZ 56.693 189.846 null ] +>> +endobj +555 0 obj +<< +/D [ 167 0 R /XYZ 56.693 581.757 null ] +>> +endobj +556 0 obj +<< +/D [ 167 0 R /XYZ 56.693 438.545 null ] +>> +endobj +557 0 obj +<< +/D [ 167 0 R /XYZ 56.693 341.962 null ] +>> +endobj +558 0 obj +<< +/D [ 170 0 R /XYZ 56.693 765.811 null ] +>> +endobj +559 0 obj +<< +/D [ 170 0 R /XYZ 56.693 505.337 null ] +>> +endobj +560 0 obj +<< +/D [ 102 0 R /XYZ 56.693 458.649 null ] +>> +endobj +561 0 obj +<< +/D [ 170 0 R /XYZ 56.693 422.972 null ] +>> +endobj +562 0 obj +<< +/D [ 173 0 R /XYZ 56.693 766.863 null ] +>> +endobj +563 0 obj +<< +/D [ 173 0 R /XYZ 56.693 528.533 null ] +>> +endobj +564 0 obj +<< +/D [ 176 0 R /XYZ 56.693 374.342 null ] +>> +endobj +565 0 obj +<< +/D [ 176 0 R /XYZ 56.693 272.218 null ] +>> +endobj +566 0 obj +<< +/D [ 176 0 R /XYZ 56.693 118.399 null ] +>> +endobj +567 0 obj +<< +/D [ 179 0 R /XYZ 56.693 328.049 null ] +>> +endobj +568 0 obj +<< +/D [ 179 0 R /XYZ 56.693 281.904 null ] +>> +endobj +569 0 obj +<< +/D [ 182 0 R /XYZ 56.693 623.408 null ] +>> +endobj +570 0 obj +<< +/D [ 182 0 R /XYZ 56.693 569.105 null ] +>> +endobj +571 0 obj +<< +/D [ 102 0 R /XYZ 56.693 391.927 null ] +>> +endobj +572 0 obj +<< +/D [ 182 0 R /XYZ 56.693 363.588 null ] +>> +endobj +573 0 obj +<< +/D [ 185 0 R /XYZ 56.693 609.405 null ] +>> +endobj +574 0 obj +<< +/D [ 185 0 R /XYZ 56.693 551.227 null ] +>> +endobj +575 0 obj +<< +/D [ 188 0 R /XYZ 56.693 766.863 null ] +>> +endobj +576 0 obj +<< +/D [ 188 0 R /XYZ 56.693 688.649 null ] +>> +endobj +577 0 obj +<< +/D [ 188 0 R /XYZ 56.693 398.995 null ] +>> +endobj +578 0 obj +<< +/D [ 191 0 R /XYZ 56.693 643.278 null ] +>> +endobj +579 0 obj +<< +/D [ 191 0 R /XYZ 56.693 537.279 null ] +>> +endobj +580 0 obj +<< +/D [ 191 0 R /XYZ 56.693 136.332 null ] +>> +endobj +581 0 obj +<< +/D [ 194 0 R /XYZ 56.693 768.8 null ] +>> +endobj +582 0 obj +<< +/D [ 102 0 R /XYZ 56.693 372.01 null ] +>> +endobj +583 0 obj +<< +/D [ 194 0 R /XYZ 56.693 476.562 null ] +>> +endobj +584 0 obj +<< +/D [ 197 0 R /XYZ 56.693 612.444 null ] +>> +endobj +585 0 obj +<< +/D [ 197 0 R /XYZ 56.693 556.15 null ] +>> +endobj +586 0 obj +<< +/D [ 206 0 R /XYZ 56.693 766.586 null ] +>> +endobj +587 0 obj +<< +/D [ 206 0 R /XYZ 56.693 514.484 null ] +>> +endobj +588 0 obj +<< +/D [ 206 0 R /XYZ 56.693 386.768 null ] +>> +endobj +589 0 obj +<< +/D [ 209 0 R /XYZ 56.693 766.863 null ] +>> +endobj +590 0 obj +<< +/D [ 209 0 R /XYZ 56.693 686.435 null ] +>> +endobj +591 0 obj +<< +/D [ 209 0 R /XYZ 56.693 416.994 null ] +>> +endobj +592 0 obj +<< +/D [ 209 0 R /XYZ 56.693 372.709 null ] +>> +endobj +593 0 obj +<< +/D [ 102 0 R /XYZ 56.693 277.912 null ] +>> +endobj +594 0 obj +<< +/D [ 209 0 R /XYZ 56.693 328.424 null ] +>> +endobj +595 0 obj +<< +/D [ 116 0 R /XYZ 56.693 768.8 null ] +>> +endobj +596 0 obj +<< +/D [ 116 0 R /XYZ 56.693 367.908 null ] +>> +endobj +597 0 obj +<< +/D [ 120 0 R /XYZ 56.693 768.8 null ] +>> +endobj +598 0 obj +<< +/D [ 127 0 R /XYZ 56.693 677.656 null ] +>> +endobj +599 0 obj +<< +/D [ 167 0 R /XYZ 56.693 56.693 null ] +>> +endobj +600 0 obj +<< +/D [ 167 0 R /XYZ 56.693 56.693 null ] +>> +endobj +601 0 obj +<< +/D [ 127 0 R /XYZ 56.693 677.656 null ] +>> +endobj +602 0 obj +<< +/D [ 3 0 R /XYZ 56.693 531.26 null ] +>> +endobj +603 0 obj +<< +/D [ 3 0 R /XYZ 56.693 531.26 null ] +>> +endobj +604 0 obj +<< +/D [ 116 0 R /XYZ 56.693 256.326 null ] +>> +endobj +605 0 obj +<< +/D [ 153 0 R /XYZ 56.693 507.004 null ] +>> +endobj +606 0 obj +<< +/D [ 182 0 R /XYZ 56.693 543.257 null ] +>> +endobj +607 0 obj +<< +/D [ 188 0 R /XYZ 56.693 567.16 null ] +>> +endobj +608 0 obj +<< +/D [ 194 0 R /XYZ 56.693 742.953 null ] +>> +endobj +609 0 obj +<< +/D [ 194 0 R /XYZ 56.693 681.583 null ] +>> +endobj +610 0 obj +<< +/D [ 194 0 R /XYZ 56.693 607.859 null ] +>> +endobj +611 0 obj +<< +/D [ 185 0 R /XYZ 56.693 641.735 null ] +>> +endobj +612 0 obj +<< +/D [ 188 0 R /XYZ 56.693 719.042 null ] +>> +endobj +613 0 obj +<< +/D [ 188 0 R /XYZ 56.693 719.042 null ] +>> +endobj +614 0 obj +<< +/D [ 188 0 R /XYZ 56.693 431.325 null ] +>> +endobj +615 0 obj +<< +/D [ 188 0 R /XYZ 56.693 431.325 null ] +>> +endobj +616 0 obj +<< +/D [ 185 0 R /XYZ 56.693 62.781 null ] +>> +endobj +617 0 obj +<< +/D [ 185 0 R /XYZ 56.693 62.781 null ] +>> +endobj +618 0 obj +<< +/D [ 185 0 R /XYZ 56.693 641.735 null ] +>> +endobj +619 0 obj +<< +/D [ 116 0 R /XYZ 56.693 400.238 null ] +>> +endobj +620 0 obj +<< +/D [ 116 0 R /XYZ 56.693 400.238 null ] +>> +endobj +621 0 obj +<< /S /GoTo /D [ 3 0 R /Fit ] >> endobj -543 0 obj +622 0 obj << /Author (David Abrahams, Jeremy Siek, Thomas Witt) /Title (Iterator Facade and Adaptor) @@ -4548,561 +5287,640 @@ endobj /Creator (LaTeX with hyperref package) /Producer (pdfTeX-1.10b extended by PPower4 V0.9.4) /Keywords () -/CreationDate (D:20040123155500) +/CreationDate (D:20040129004900) >> endobj xref -0 544 +0 623 0000000000 65535 f 0000000009 00000 n 0000000236 00000 n -0000000547 00000 n -0000000653 00000 n -0000000721 00000 n -0000000809 00000 n -0000002861 00000 n -0000003090 00000 n -0000003447 00000 n -0000003646 00000 n -0000003837 00000 n +0000000495 00000 n +0000000861 00000 n +0000001060 00000 n +0000001249 00000 n +0000001444 00000 n +0000001642 00000 n +0000001830 00000 n +0000002024 00000 n +0000002219 00000 n +0000002381 00000 n +0000002555 00000 n +0000002713 00000 n +0000002882 00000 n +0000003049 00000 n +0000003217 00000 n +0000003374 00000 n +0000003547 00000 n +0000003708 00000 n +0000003863 00000 n 0000004032 00000 n -0000004229 00000 n -0000004417 00000 n -0000004611 00000 n -0000004805 00000 n -0000004966 00000 n -0000005140 00000 n -0000005298 00000 n -0000005467 00000 n -0000005635 00000 n -0000005801 00000 n -0000005958 00000 n -0000006131 00000 n -0000006291 00000 n -0000006446 00000 n -0000006615 00000 n -0000006788 00000 n -0000006953 00000 n -0000007166 00000 n -0000007354 00000 n -0000007537 00000 n -0000007718 00000 n -0000007896 00000 n -0000008085 00000 n -0000008269 00000 n -0000008451 00000 n -0000008641 00000 n -0000008828 00000 n -0000009024 00000 n -0000009218 00000 n -0000009419 00000 n -0000009586 00000 n -0000009679 00000 n -0000009767 00000 n -0000009944 00000 n -0000010272 00000 n -0000010730 00000 n -0000026208 00000 n -0000028828 00000 n -0000029173 00000 n -0000029348 00000 n -0000029532 00000 n -0000029717 00000 n -0000029900 00000 n -0000030077 00000 n -0000030257 00000 n -0000030426 00000 n -0000030609 00000 n -0000030791 00000 n -0000030966 00000 n -0000031146 00000 n -0000031317 00000 n -0000031502 00000 n -0000031686 00000 n -0000031863 00000 n -0000032045 00000 n -0000032213 00000 n -0000032396 00000 n -0000032576 00000 n -0000032750 00000 n -0000032928 00000 n -0000033098 00000 n -0000033283 00000 n -0000033466 00000 n -0000033643 00000 n -0000033824 00000 n -0000034001 00000 n -0000034192 00000 n -0000034382 00000 n -0000034566 00000 n -0000034754 00000 n -0000034914 00000 n -0000035007 00000 n -0000038092 00000 n -0000038201 00000 n -0000038318 00000 n -0000038408 00000 n -0000038566 00000 n -0000040388 00000 n -0000040592 00000 n -0000040818 00000 n -0000042466 00000 n -0000045847 00000 n -0000046021 00000 n -0000046254 00000 n -0000046487 00000 n -0000046718 00000 n -0000046948 00000 n -0000047179 00000 n -0000047409 00000 n -0000047567 00000 n -0000047673 00000 n -0000050889 00000 n -0000051001 00000 n -0000051095 00000 n -0000054820 00000 n -0000054976 00000 n -0000055137 00000 n -0000055368 00000 n -0000055602 00000 n -0000055758 00000 n -0000055865 00000 n -0000055956 00000 n -0000060498 00000 n -0000060610 00000 n -0000060729 00000 n -0000063960 00000 n -0000064072 00000 n -0000064154 00000 n -0000065367 00000 n -0000065515 00000 n -0000065686 00000 n -0000065853 00000 n -0000066015 00000 n -0000066134 00000 n -0000067982 00000 n -0000068114 00000 n -0000068272 00000 n -0000068379 00000 n -0000068473 00000 n -0000070280 00000 n -0000070412 00000 n -0000070630 00000 n -0000070774 00000 n -0000073809 00000 n -0000073941 00000 n -0000074108 00000 n -0000074227 00000 n -0000077645 00000 n -0000077757 00000 n -0000077851 00000 n -0000079569 00000 n -0000079681 00000 n -0000079775 00000 n -0000081620 00000 n -0000081752 00000 n -0000081920 00000 n -0000082052 00000 n -0000084987 00000 n -0000085099 00000 n -0000085243 00000 n -0000087096 00000 n -0000087208 00000 n -0000087315 00000 n -0000089251 00000 n -0000089363 00000 n -0000089494 00000 n -0000092689 00000 n -0000092801 00000 n -0000092920 00000 n -0000094897 00000 n -0000095009 00000 n -0000095116 00000 n -0000096953 00000 n -0000097065 00000 n -0000097184 00000 n -0000100248 00000 n -0000100360 00000 n -0000100479 00000 n -0000102397 00000 n -0000102509 00000 n -0000102616 00000 n -0000105566 00000 n -0000105678 00000 n -0000105797 00000 n -0000107618 00000 n -0000107730 00000 n -0000107849 00000 n -0000111322 00000 n -0000111434 00000 n -0000111541 00000 n -0000113782 00000 n -0000113894 00000 n -0000114013 00000 n -0000116716 00000 n -0000116828 00000 n -0000116935 00000 n -0000119893 00000 n -0000120005 00000 n -0000120124 00000 n -0000122177 00000 n -0000122317 00000 n -0000122475 00000 n -0000122633 00000 n -0000122778 00000 n -0000122873 00000 n -0000125636 00000 n -0000125748 00000 n -0000125855 00000 n -0000128196 00000 n -0000128308 00000 n -0000128427 00000 n -0000130823 00000 n -0000130900 00000 n -0000130979 00000 n -0000131016 00000 n -0000131073 00000 n -0000131166 00000 n -0000131196 00000 n -0000131246 00000 n -0000131339 00000 n -0000131381 00000 n -0000131443 00000 n -0000131575 00000 n -0000131601 00000 n -0000131647 00000 n -0000131765 00000 n -0000131798 00000 n -0000131851 00000 n -0000131930 00000 n -0000132014 00000 n -0000132114 00000 n -0000132246 00000 n -0000132303 00000 n -0000132378 00000 n -0000132510 00000 n -0000132569 00000 n -0000132646 00000 n -0000132764 00000 n -0000132836 00000 n -0000132926 00000 n -0000133005 00000 n -0000133042 00000 n -0000133099 00000 n -0000133192 00000 n -0000133228 00000 n -0000133284 00000 n -0000133377 00000 n -0000133415 00000 n -0000133473 00000 n -0000133566 00000 n -0000133601 00000 n -0000133656 00000 n -0000133749 00000 n -0000133786 00000 n -0000133843 00000 n -0000133922 00000 n -0000133966 00000 n -0000134030 00000 n -0000134109 00000 n -0000134160 00000 n -0000134231 00000 n -0000134324 00000 n -0000134373 00000 n -0000134442 00000 n -0000134535 00000 n -0000134593 00000 n -0000134671 00000 n -0000134764 00000 n -0000134818 00000 n -0000134892 00000 n -0000134985 00000 n -0000135048 00000 n -0000135131 00000 n -0000135210 00000 n -0000135271 00000 n -0000135352 00000 n -0000135431 00000 n -0000135481 00000 n -0000135551 00000 n -0000135644 00000 n -0000135692 00000 n -0000135760 00000 n -0000135839 00000 n -0000135885 00000 n -0000135951 00000 n -0000136030 00000 n -0000136067 00000 n -0000136124 00000 n -0000136217 00000 n -0000136253 00000 n -0000136309 00000 n -0000136441 00000 n -0000136476 00000 n -0000136531 00000 n -0000136624 00000 n -0000136660 00000 n -0000136716 00000 n -0000136795 00000 n -0000136835 00000 n -0000136895 00000 n -0000136974 00000 n -0000136999 00000 n -0000137044 00000 n -0000137137 00000 n -0000137177 00000 n -0000137237 00000 n -0000137330 00000 n -0000137360 00000 n -0000137408 00000 n -0000137487 00000 n -0000137517 00000 n -0000137560 00000 n -0000137598 00000 n -0000137639 00000 n -0000144566 00000 n -0000144619 00000 n -0000144677 00000 n -0000144735 00000 n -0000144790 00000 n -0000144849 00000 n -0000144913 00000 n -0000144971 00000 n -0000145030 00000 n -0000145089 00000 n -0000145148 00000 n -0000145207 00000 n -0000145264 00000 n -0000145321 00000 n -0000145380 00000 n -0000145439 00000 n -0000145498 00000 n -0000145557 00000 n -0000145616 00000 n -0000145675 00000 n -0000145734 00000 n -0000145793 00000 n -0000145852 00000 n -0000145911 00000 n -0000145970 00000 n -0000146029 00000 n -0000146088 00000 n -0000146147 00000 n -0000146205 00000 n -0000146264 00000 n -0000146328 00000 n -0000146387 00000 n -0000146446 00000 n -0000146504 00000 n -0000146562 00000 n -0000146621 00000 n -0000146680 00000 n -0000146739 00000 n -0000146798 00000 n -0000146857 00000 n -0000146915 00000 n -0000146973 00000 n -0000147031 00000 n -0000147089 00000 n -0000147147 00000 n -0000147206 00000 n -0000147265 00000 n -0000147324 00000 n -0000147383 00000 n -0000147441 00000 n -0000147500 00000 n -0000147559 00000 n -0000147618 00000 n -0000147677 00000 n -0000147736 00000 n -0000147795 00000 n -0000147854 00000 n -0000147913 00000 n -0000147972 00000 n -0000148031 00000 n -0000148094 00000 n -0000148153 00000 n -0000148212 00000 n -0000148270 00000 n -0000148328 00000 n -0000148387 00000 n -0000148446 00000 n -0000148505 00000 n -0000148563 00000 n -0000148621 00000 n -0000148679 00000 n -0000148737 00000 n -0000148796 00000 n -0000148854 00000 n -0000148912 00000 n -0000148971 00000 n -0000149030 00000 n -0000149089 00000 n -0000149148 00000 n -0000149207 00000 n -0000149265 00000 n -0000149323 00000 n -0000149382 00000 n -0000149441 00000 n -0000149500 00000 n -0000149559 00000 n -0000149618 00000 n -0000149677 00000 n -0000149736 00000 n -0000149795 00000 n -0000149853 00000 n -0000149911 00000 n -0000149970 00000 n -0000150029 00000 n -0000150087 00000 n -0000150141 00000 n -0000150195 00000 n -0000150254 00000 n -0000150313 00000 n -0000150372 00000 n -0000150431 00000 n -0000150489 00000 n -0000150547 00000 n -0000150605 00000 n -0000150663 00000 n -0000150720 00000 n -0000150779 00000 n -0000150843 00000 n -0000150902 00000 n -0000150955 00000 n -0000151010 00000 n -0000151065 00000 n -0000151120 00000 n -0000151175 00000 n -0000151230 00000 n -0000151285 00000 n -0000151340 00000 n -0000151395 00000 n -0000151450 00000 n -0000151505 00000 n -0000151558 00000 n -0000151613 00000 n -0000151668 00000 n -0000151723 00000 n -0000151778 00000 n -0000151833 00000 n -0000151888 00000 n -0000151943 00000 n -0000151998 00000 n -0000152053 00000 n -0000152108 00000 n -0000152162 00000 n -0000152217 00000 n -0000152272 00000 n -0000152327 00000 n -0000152382 00000 n -0000152436 00000 n -0000152490 00000 n -0000152545 00000 n -0000152600 00000 n -0000152655 00000 n -0000152710 00000 n -0000152769 00000 n -0000152828 00000 n -0000152887 00000 n -0000152946 00000 n -0000153005 00000 n -0000153064 00000 n -0000153123 00000 n -0000153182 00000 n -0000153241 00000 n -0000153300 00000 n -0000153359 00000 n -0000153416 00000 n -0000153475 00000 n -0000153534 00000 n -0000153593 00000 n -0000153652 00000 n -0000153711 00000 n -0000153770 00000 n -0000153829 00000 n -0000153888 00000 n -0000153947 00000 n -0000154005 00000 n -0000154063 00000 n -0000154122 00000 n -0000154181 00000 n -0000154240 00000 n -0000154299 00000 n -0000154357 00000 n -0000154415 00000 n -0000154474 00000 n -0000154533 00000 n -0000154591 00000 n -0000154650 00000 n -0000154708 00000 n -0000154767 00000 n -0000154826 00000 n -0000154885 00000 n -0000154944 00000 n -0000155003 00000 n -0000155062 00000 n -0000155121 00000 n -0000155180 00000 n -0000155239 00000 n -0000155298 00000 n -0000155356 00000 n -0000155415 00000 n -0000155474 00000 n -0000155533 00000 n -0000155592 00000 n -0000155651 00000 n -0000155710 00000 n -0000155769 00000 n -0000155828 00000 n -0000155887 00000 n -0000155946 00000 n -0000156004 00000 n -0000156063 00000 n -0000156121 00000 n -0000156180 00000 n -0000156239 00000 n -0000156298 00000 n -0000156357 00000 n -0000156416 00000 n -0000156475 00000 n -0000156534 00000 n -0000156593 00000 n -0000156651 00000 n -0000156710 00000 n -0000156767 00000 n -0000156826 00000 n -0000156885 00000 n -0000156944 00000 n -0000156998 00000 n -0000157052 00000 n -0000157111 00000 n -0000157168 00000 n -0000157225 00000 n -0000157284 00000 n -0000157342 00000 n -0000157401 00000 n -0000157460 00000 n -0000157519 00000 n -0000157578 00000 n -0000157637 00000 n -0000157696 00000 n -0000157755 00000 n -0000157814 00000 n -0000157873 00000 n -0000157932 00000 n -0000157991 00000 n -0000158050 00000 n -0000158109 00000 n -0000158168 00000 n -0000158227 00000 n -0000158277 00000 n +0000004205 00000 n +0000004370 00000 n +0000004583 00000 n +0000004771 00000 n +0000004953 00000 n +0000005134 00000 n +0000005312 00000 n +0000005502 00000 n +0000005682 00000 n +0000005864 00000 n +0000006055 00000 n +0000006242 00000 n +0000006438 00000 n +0000006632 00000 n +0000006833 00000 n +0000007001 00000 n +0000007174 00000 n +0000007291 00000 n +0000007448 00000 n +0000008560 00000 n +0000008708 00000 n +0000008926 00000 n +0000012350 00000 n +0000012508 00000 n +0000012838 00000 n +0000013167 00000 n +0000022359 00000 n +0000022516 00000 n +0000022917 00000 n +0000023412 00000 n +0000039101 00000 n +0000039259 00000 n +0000039504 00000 n +0000039797 00000 n +0000046564 00000 n +0000046722 00000 n +0000047906 00000 n +0000048234 00000 n +0000048673 00000 n +0000059812 00000 n +0000062838 00000 n +0000063184 00000 n +0000063370 00000 n +0000063554 00000 n +0000063737 00000 n +0000063913 00000 n +0000064094 00000 n +0000064263 00000 n +0000064447 00000 n +0000064629 00000 n +0000064805 00000 n +0000064985 00000 n +0000065156 00000 n +0000065342 00000 n +0000065526 00000 n +0000065704 00000 n +0000065886 00000 n +0000066054 00000 n +0000066237 00000 n +0000066417 00000 n +0000066592 00000 n +0000066771 00000 n +0000066941 00000 n +0000067125 00000 n +0000067308 00000 n +0000067485 00000 n +0000067666 00000 n +0000067843 00000 n +0000068035 00000 n +0000068225 00000 n +0000068408 00000 n +0000068593 00000 n +0000068752 00000 n +0000068857 00000 n +0000069015 00000 n +0000070129 00000 n +0000070423 00000 n +0000070696 00000 n +0000077958 00000 n +0000082473 00000 n +0000082652 00000 n +0000082885 00000 n +0000083119 00000 n +0000083353 00000 n +0000083584 00000 n +0000083815 00000 n +0000084044 00000 n +0000084151 00000 n +0000084313 00000 n +0000086136 00000 n +0000086341 00000 n +0000086569 00000 n +0000088218 00000 n +0000092816 00000 n +0000092955 00000 n +0000093114 00000 n +0000093233 00000 n +0000098032 00000 n +0000098195 00000 n +0000098355 00000 n +0000098585 00000 n +0000098819 00000 n +0000098975 00000 n +0000099081 00000 n +0000104996 00000 n +0000105115 00000 n +0000105235 00000 n +0000105396 00000 n +0000105559 00000 n +0000105792 00000 n +0000109375 00000 n +0000113314 00000 n +0000113433 00000 n +0000113552 00000 n +0000115240 00000 n +0000115403 00000 n +0000115574 00000 n +0000115741 00000 n +0000115902 00000 n +0000116059 00000 n +0000116154 00000 n +0000117832 00000 n +0000117971 00000 n +0000118188 00000 n +0000118308 00000 n +0000118471 00000 n +0000119658 00000 n +0000119891 00000 n +0000120150 00000 n +0000125552 00000 n +0000128662 00000 n +0000128801 00000 n +0000128969 00000 n +0000129113 00000 n +0000133697 00000 n +0000133816 00000 n +0000133910 00000 n +0000135964 00000 n +0000136083 00000 n +0000136189 00000 n +0000139384 00000 n +0000139523 00000 n +0000139692 00000 n +0000139824 00000 n +0000142306 00000 n +0000142425 00000 n +0000142532 00000 n +0000145000 00000 n +0000145119 00000 n +0000145250 00000 n +0000148952 00000 n +0000149071 00000 n +0000149178 00000 n +0000151713 00000 n +0000151832 00000 n +0000151952 00000 n +0000155453 00000 n +0000155572 00000 n +0000155679 00000 n +0000158261 00000 n +0000158380 00000 n +0000158487 00000 n +0000162198 00000 n +0000162317 00000 n +0000162424 00000 n +0000165675 00000 n +0000165794 00000 n +0000165901 00000 n +0000169697 00000 n +0000169816 00000 n +0000169923 00000 n +0000173217 00000 n +0000173336 00000 n +0000173430 00000 n +0000177284 00000 n +0000177431 00000 n +0000177588 00000 n +0000177744 00000 n +0000177877 00000 n +0000178040 00000 n +0000178189 00000 n +0000178406 00000 n +0000180793 00000 n +0000183934 00000 n +0000184053 00000 n +0000184147 00000 n +0000187637 00000 n +0000187756 00000 n +0000187863 00000 n +0000190456 00000 n +0000190533 00000 n +0000190612 00000 n +0000190649 00000 n +0000190706 00000 n +0000190799 00000 n +0000190829 00000 n +0000190879 00000 n +0000190972 00000 n +0000191014 00000 n +0000191076 00000 n +0000191208 00000 n +0000191234 00000 n +0000191280 00000 n +0000191398 00000 n +0000191431 00000 n +0000191484 00000 n +0000191563 00000 n +0000191647 00000 n +0000191747 00000 n +0000191879 00000 n +0000191936 00000 n +0000192011 00000 n +0000192143 00000 n +0000192202 00000 n +0000192279 00000 n +0000192397 00000 n +0000192469 00000 n +0000192559 00000 n +0000192677 00000 n +0000192714 00000 n +0000192771 00000 n +0000192903 00000 n +0000192939 00000 n +0000192995 00000 n +0000193127 00000 n +0000193165 00000 n +0000193223 00000 n +0000193355 00000 n +0000193390 00000 n +0000193445 00000 n +0000193577 00000 n +0000193614 00000 n +0000193671 00000 n +0000193789 00000 n +0000193833 00000 n +0000193897 00000 n +0000193976 00000 n +0000194035 00000 n +0000194114 00000 n +0000194207 00000 n +0000194264 00000 n +0000194341 00000 n +0000194434 00000 n +0000194485 00000 n +0000194556 00000 n +0000194635 00000 n +0000194690 00000 n +0000194765 00000 n +0000194844 00000 n +0000194896 00000 n +0000194968 00000 n +0000195061 00000 n +0000195111 00000 n +0000195181 00000 n +0000195274 00000 n +0000195318 00000 n +0000195382 00000 n +0000195461 00000 n +0000195509 00000 n +0000195577 00000 n +0000195656 00000 n +0000195706 00000 n +0000195776 00000 n +0000195869 00000 n +0000195917 00000 n +0000195985 00000 n +0000196078 00000 n +0000196120 00000 n +0000196182 00000 n +0000196261 00000 n +0000196307 00000 n +0000196373 00000 n +0000196452 00000 n +0000196505 00000 n +0000196578 00000 n +0000196671 00000 n +0000196722 00000 n +0000196793 00000 n +0000196886 00000 n +0000196931 00000 n +0000196996 00000 n +0000197075 00000 n +0000197124 00000 n +0000197193 00000 n +0000197272 00000 n +0000197323 00000 n +0000197394 00000 n +0000197487 00000 n +0000197536 00000 n +0000197605 00000 n +0000197698 00000 n +0000197741 00000 n +0000197804 00000 n +0000197883 00000 n +0000197930 00000 n +0000197997 00000 n +0000198076 00000 n +0000198118 00000 n +0000198180 00000 n +0000198273 00000 n +0000198326 00000 n +0000198399 00000 n +0000198492 00000 n +0000198544 00000 n +0000198616 00000 n +0000198709 00000 n +0000198759 00000 n +0000198829 00000 n +0000198922 00000 n +0000198966 00000 n +0000199030 00000 n +0000199109 00000 n +0000199157 00000 n +0000199225 00000 n +0000199304 00000 n +0000199355 00000 n +0000199426 00000 n +0000199519 00000 n +0000199568 00000 n +0000199637 00000 n +0000199730 00000 n +0000199788 00000 n +0000199866 00000 n +0000199959 00000 n +0000200013 00000 n +0000200087 00000 n +0000200180 00000 n +0000200243 00000 n +0000200326 00000 n +0000200405 00000 n +0000200466 00000 n +0000200547 00000 n +0000200626 00000 n +0000200676 00000 n +0000200746 00000 n +0000200839 00000 n +0000200887 00000 n +0000200955 00000 n +0000201034 00000 n +0000201080 00000 n +0000201146 00000 n +0000201225 00000 n +0000201262 00000 n +0000201319 00000 n +0000201412 00000 n +0000201448 00000 n +0000201504 00000 n +0000201636 00000 n +0000201671 00000 n +0000201726 00000 n +0000201819 00000 n +0000201855 00000 n +0000201911 00000 n +0000201990 00000 n +0000202030 00000 n +0000202090 00000 n +0000202169 00000 n +0000202194 00000 n +0000202239 00000 n +0000202332 00000 n +0000202372 00000 n +0000202432 00000 n +0000202525 00000 n +0000202555 00000 n +0000202603 00000 n +0000202682 00000 n +0000202712 00000 n +0000202755 00000 n +0000202793 00000 n +0000202834 00000 n +0000209621 00000 n +0000209682 00000 n +0000209745 00000 n +0000209808 00000 n +0000209871 00000 n +0000209933 00000 n +0000209996 00000 n +0000210059 00000 n +0000210122 00000 n +0000210185 00000 n +0000210247 00000 n +0000210309 00000 n +0000210372 00000 n +0000210435 00000 n +0000210497 00000 n +0000210559 00000 n +0000210621 00000 n +0000210683 00000 n +0000210745 00000 n +0000210807 00000 n +0000210870 00000 n +0000210933 00000 n +0000210996 00000 n +0000211059 00000 n +0000211122 00000 n +0000211185 00000 n +0000211248 00000 n +0000211311 00000 n +0000211374 00000 n +0000211437 00000 n +0000211501 00000 n +0000211564 00000 n +0000211627 00000 n +0000211690 00000 n +0000211753 00000 n +0000211815 00000 n +0000211877 00000 n +0000211939 00000 n +0000212001 00000 n +0000212064 00000 n +0000212127 00000 n +0000212190 00000 n +0000212253 00000 n +0000212315 00000 n +0000212377 00000 n +0000212440 00000 n +0000212503 00000 n +0000212566 00000 n +0000212629 00000 n +0000212692 00000 n +0000212754 00000 n +0000212817 00000 n +0000212880 00000 n +0000212943 00000 n +0000213006 00000 n +0000213069 00000 n +0000213132 00000 n +0000213194 00000 n +0000213257 00000 n +0000213320 00000 n +0000213384 00000 n +0000213447 00000 n +0000213510 00000 n +0000213573 00000 n +0000213636 00000 n +0000213699 00000 n +0000213762 00000 n +0000213825 00000 n +0000213888 00000 n +0000213951 00000 n +0000214014 00000 n +0000214077 00000 n +0000214140 00000 n +0000214203 00000 n +0000214266 00000 n +0000214329 00000 n +0000214392 00000 n +0000214455 00000 n +0000214518 00000 n +0000214581 00000 n +0000214644 00000 n +0000214707 00000 n +0000214768 00000 n +0000214829 00000 n +0000214892 00000 n +0000214955 00000 n +0000215017 00000 n +0000215079 00000 n +0000215142 00000 n +0000215205 00000 n +0000215268 00000 n +0000215331 00000 n +0000215393 00000 n +0000215455 00000 n +0000215517 00000 n +0000215580 00000 n +0000215643 00000 n +0000215706 00000 n +0000215769 00000 n +0000215832 00000 n +0000215895 00000 n +0000215957 00000 n +0000216020 00000 n +0000216082 00000 n +0000216144 00000 n +0000216206 00000 n +0000216268 00000 n +0000216331 00000 n +0000216393 00000 n +0000216454 00000 n +0000216517 00000 n +0000216580 00000 n +0000216643 00000 n +0000216706 00000 n +0000216769 00000 n +0000216832 00000 n +0000216895 00000 n +0000216958 00000 n +0000217021 00000 n +0000217084 00000 n +0000217146 00000 n +0000217209 00000 n +0000217272 00000 n +0000217335 00000 n +0000217398 00000 n +0000217461 00000 n +0000217524 00000 n +0000217587 00000 n +0000217650 00000 n +0000217713 00000 n +0000217776 00000 n +0000217839 00000 n +0000217902 00000 n +0000217965 00000 n +0000218028 00000 n +0000218091 00000 n +0000218154 00000 n +0000218216 00000 n +0000218279 00000 n +0000218342 00000 n +0000218405 00000 n +0000218468 00000 n +0000218531 00000 n +0000218594 00000 n +0000218657 00000 n +0000218720 00000 n +0000218781 00000 n +0000218844 00000 n +0000218907 00000 n +0000218970 00000 n +0000219033 00000 n +0000219096 00000 n +0000219159 00000 n +0000219222 00000 n +0000219285 00000 n +0000219346 00000 n +0000219409 00000 n +0000219471 00000 n +0000219534 00000 n +0000219597 00000 n +0000219660 00000 n +0000219723 00000 n +0000219786 00000 n +0000219849 00000 n +0000219912 00000 n +0000219975 00000 n +0000220038 00000 n +0000220101 00000 n +0000220164 00000 n +0000220227 00000 n +0000220290 00000 n +0000220353 00000 n +0000220416 00000 n +0000220479 00000 n +0000220542 00000 n +0000220605 00000 n +0000220668 00000 n +0000220731 00000 n +0000220794 00000 n +0000220857 00000 n +0000220920 00000 n +0000220983 00000 n +0000221046 00000 n +0000221109 00000 n +0000221172 00000 n +0000221235 00000 n +0000221298 00000 n +0000221361 00000 n +0000221424 00000 n +0000221485 00000 n +0000221547 00000 n +0000221610 00000 n +0000221673 00000 n +0000221735 00000 n +0000221798 00000 n +0000221861 00000 n +0000221924 00000 n +0000221987 00000 n +0000222050 00000 n +0000222113 00000 n +0000222176 00000 n +0000222239 00000 n +0000222302 00000 n +0000222363 00000 n +0000222426 00000 n +0000222487 00000 n +0000222550 00000 n +0000222612 00000 n +0000222674 00000 n +0000222737 00000 n +0000222797 00000 n +0000222857 00000 n +0000222920 00000 n +0000222983 00000 n +0000223046 00000 n +0000223108 00000 n +0000223171 00000 n +0000223234 00000 n +0000223297 00000 n +0000223360 00000 n +0000223423 00000 n +0000223486 00000 n +0000223549 00000 n +0000223612 00000 n +0000223674 00000 n +0000223736 00000 n +0000223799 00000 n +0000223862 00000 n +0000223925 00000 n +0000223975 00000 n trailer << -/Size 544 +/Size 623 /Root 1 0 R -/Info 543 0 R +/Info 622 0 R >> startxref -158537 +224235 %%EOF diff --git a/doc/filter_iterator.pdf b/doc/filter_iterator.pdf index 960add4..9ae74d7 100755 Binary files a/doc/filter_iterator.pdf and b/doc/filter_iterator.pdf differ diff --git a/doc/function_output_iterator.pdf b/doc/function_output_iterator.pdf index c48d171..367874d 100755 Binary files a/doc/function_output_iterator.pdf and b/doc/function_output_iterator.pdf differ diff --git a/doc/generate.py b/doc/generate.py index a6d3f31..f5d0de8 100644 --- a/doc/generate.py +++ b/doc/generate.py @@ -1,4 +1,7 @@ #!/usr/bin/python +# Copyright David Abrahams 2004. Use, modification and distribution is +# subject to the Boost Software License, Version 1.0. (See accompanying +# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # # Generate html, TeX, and PDF versions of all the source files @@ -13,7 +16,7 @@ if 0: for s in sources: syscmd('boosthtml %s' % s) else: - extensions = ('html', 'tex', 'pdf') + extensions = ('html', 'pdf') if len(sys.argv) > 1: extensions = sys.argv[1:] @@ -23,7 +26,7 @@ else: for s in sources ] - print 'make -k %s' % ' '.join(all) - syscmd('make -k %s' % ' '.join(all)) + print 'make %s' % ' '.join(all) + syscmd('make %s' % ' '.join(all)) diff --git a/doc/index.html b/doc/index.html index 4afe734..9589c14 100755 --- a/doc/index.html +++ b/doc/index.html @@ -53,21 +53,21 @@ older Boost Iterator Adaptor Library.
-

New-Style Iterators

+

New-Style Iterators

The iterator categories defined in C++98 are extremely limiting because they bind together two orthogonal concepts: traversal and element access. For example, because a random access iterator is @@ -86,7 +86,7 @@ concepts, see our

Standard Proposal For New-Style Iterators (PDF)
-

Iterator Facade and Adaptor

+

Iterator Facade and Adaptor

Writing standard-conforming iterators is tricky, but the need comes up often. In order to ease the implementation of new iterators, the Boost.Iterator library provides the iterator_facade class template, @@ -113,7 +113,7 @@ and accepted into the first C++ technical report; see our

for more details.

-

Specialized Adaptors

+

Specialized Adaptors

The iterator library supplies a useful suite of standard-conforming iterator templates based on the Boost iterator facade and adaptor.

    @@ -137,9 +137,9 @@ positions of heterogeneous underlying iterators.
-

Iterator Utilities

+

Iterator Utilities

-

Traits

+

Traits

  • pointee.hpp (PDF): Provides the capability to deduce the referent types of pointers, smart pointers and iterators in generic code. Used @@ -147,12 +147,13 @@ in indirect_iterator.
  • iterator_traits.hpp (PDF): Provides MPL-compatible metafunctions which retrieve an iterator's traits. Also corrects for the deficiencies of broken implementations of std::iterator_traits.
  • -
  • interoperable.hpp (PDF): Provides an MPL-compatible metafunction for -testing iterator interoperability
+ +
-

Testing and Concept Checking

+

Testing and Concept Checking

-

Upgrading from the old Boost Iterator Adaptor Library

+

Upgrading from the old Boost Iterator Adaptor Library

If you have been using the old Boost Iterator Adaptor library to implement iterators, you probably wrote a Policies class which captures the core operations of your iterator. In the new library @@ -170,7 +171,7 @@ you probably wrote a iterator_adaptor specialization you needed; in the new library design you don't need a type generator (though may want to keep it around as a compatibility aid for older code) because, due to the -use of the Curiously Recurring Template Pattern (CRTP) [Cop95], +use of the Curiously Recurring Template Pattern (CRTP) [Cop95], you can now define the iterator class yourself and acquire functionality through inheritance from iterator_facade or iterator_adaptor. As a result, you also get much finer control @@ -185,7 +186,7 @@ type, transform_iterator will projection_iterator used to.

-

History

+

History

In 2000 Dave Abrahams was writing an iterator for a container of pointers, which would access the pointed-to elements when dereferenced. Naturally, being a library writer, he decided to @@ -214,7 +215,7 @@ library you see today.

-[Cop95][Coplien, 1995] Coplien, J., Curiously Recurring Template +[Cop95][Coplien, 1995] Coplien, J., Curiously Recurring Template Patterns, C++ Report, February 1995, pp. 24-27. diff --git a/doc/index.pdf b/doc/index.pdf index 2c92d64..aed0bdc 100755 Binary files a/doc/index.pdf and b/doc/index.pdf differ diff --git a/doc/index.rst b/doc/index.rst index e18de55..2b1cdf5 100755 --- a/doc/index.rst +++ b/doc/index.rst @@ -195,8 +195,8 @@ Traits retrieve an iterator's traits. Also corrects for the deficiencies of broken implementations of ``std::iterator_traits``. -* |interoperable|_ (PDF__): Provides an MPL_\ -compatible metafunction for - testing iterator interoperability +.. * |interoperable|_ (PDF__): Provides an MPL_\ -compatible metafunction for + testing iterator interoperability .. |pointee| replace:: ``pointee.hpp`` .. _pointee: pointee.html @@ -208,7 +208,7 @@ __ iterator_traits.pdf .. |interoperable| replace:: ``interoperable.hpp`` .. _interoperable: interoperable.html -__ interoperable.pdf +.. comment! __ interoperable.pdf .. _MPL: ../../mpl/doc/index.html diff --git a/doc/indirect_iterator.pdf b/doc/indirect_iterator.pdf index 4c350a0..61fccba 100755 Binary files a/doc/indirect_iterator.pdf and b/doc/indirect_iterator.pdf differ diff --git a/doc/iterator_adaptor.pdf b/doc/iterator_adaptor.pdf index aeaa693..c6f3f70 100755 Binary files a/doc/iterator_adaptor.pdf and b/doc/iterator_adaptor.pdf differ diff --git a/doc/iterator_archetypes.pdf b/doc/iterator_archetypes.pdf index 41cb4ff..c1087d0 100755 Binary files a/doc/iterator_archetypes.pdf and b/doc/iterator_archetypes.pdf differ diff --git a/doc/iterator_concepts.pdf b/doc/iterator_concepts.pdf new file mode 100755 index 0000000..9c9c598 Binary files /dev/null and b/doc/iterator_concepts.pdf differ diff --git a/doc/iterator_facade.pdf b/doc/iterator_facade.pdf index 033c328..5ea0383 100755 Binary files a/doc/iterator_facade.pdf and b/doc/iterator_facade.pdf differ diff --git a/doc/iterator_traits.html b/doc/iterator_traits.html new file mode 100755 index 0000000..2691867 --- /dev/null +++ b/doc/iterator_traits.html @@ -0,0 +1,120 @@ + + + + + + +Iterator Traits + + + + + + + +
+

Iterator Traits

+ +++ + + + + + + + + + + + +
Author:David Abrahams
Contact:dave@boost-consulting.com
Organization:Boost Consulting
Date:2004-01-13
Copyright:Copyright David Abrahams 2004. All rights reserved
+ +++ + + + +
abstract:Header <boost/iterator/iterator_traits.hpp> provides +the ability to access an iterator's associated types using +MPL-compatible metafunctions.
+
+

Overview

+

std::iterator_traits provides access to five associated types +of any iterator: its value_type, reference, pointer, +iterator_category, and difference_type. Unfortunately, +such a "multi-valued" traits template can be difficult to use in a +metaprogramming context. <boost/iterator/iterator_traits.hpp> +provides access to these types using a standard metafunctions.

+
+
+

Summary

+

Header <boost/iterator/iterator_traits.hpp>:

+
+template <class Iterator>
+struct iterator_value
+{
+    typedef typename 
+      std::iterator_traits<Iterator>::value_type 
+    type;
+};
+
+template <class Iterator>
+struct iterator_reference
+{
+    typedef typename 
+      std::iterator_traits<Iterator>::reference
+    type;
+};
+
+
+template <class Iterator>
+struct iterator_pointer
+{
+    typedef typename 
+      std::iterator_traits<Iterator>::pointer 
+    type;
+};
+
+template <class Iterator>
+struct iterator_difference
+{
+    typedef typename
+      detail::iterator_traits<Iterator>::difference_type
+    type;
+};
+
+template <class Iterator>
+struct iterator_category
+{
+    typedef typename
+      detail::iterator_traits<Iterator>::iterator_category
+    type;
+};
+
+
+
+

Broken Compiler Notes

+

Because of workarounds in Boost, you may find that these +metafunctions actually work better than the facilities provided by +your compiler's standard library.

+

On compilers that don't support partial specialization, such as +Microsoft Visual C++ 6.0 or 7.0, you may need to manually invoke +BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION on the +value_type of pointers that are passed to these metafunctions.

+

Because of bugs in the implementation of GCC-2.9x, the name of +iterator_category is changed to iterator_category_ on that +compiler. A macro, BOOST_ITERATOR_CATEGORY, that expands to +either iterator_category or iterator_category_, as +appropriate to the platform, is provided for portability.

+
+
+ + + + diff --git a/doc/iterator_traits.pdf b/doc/iterator_traits.pdf new file mode 100755 index 0000000..d2ce590 Binary files /dev/null and b/doc/iterator_traits.pdf differ diff --git a/doc/iterator_traits.rst b/doc/iterator_traits.rst new file mode 100755 index 0000000..aaaaa6f --- /dev/null +++ b/doc/iterator_traits.rst @@ -0,0 +1,94 @@ ++++++++++++++++++ + Iterator Traits ++++++++++++++++++ + +:Author: David Abrahams +:Contact: dave@boost-consulting.com +:organization: `Boost Consulting`_ +:date: $Date$ +:copyright: Copyright David Abrahams 2004. All rights reserved + +.. _`Boost Consulting`: http://www.boost-consulting.com + +:abstract: Header ```` provides + the ability to access an iterator's associated types using + MPL-compatible metafunctions_. + +.. _metafunctions: ../../mpl/doc/index.html#metafunctions + +Overview +======== + +``std::iterator_traits`` provides access to five associated types +of any iterator: its ``value_type``, ``reference``, ``pointer``, +``iterator_category``, and ``difference_type``. Unfortunately, +such a "multi-valued" traits template can be difficult to use in a +metaprogramming context. ```` +provides access to these types using a standard metafunctions_. + +Summary +======= + +Header ````:: + + template + struct iterator_value + { + typedef typename + std::iterator_traits::value_type + type; + }; + + template + struct iterator_reference + { + typedef typename + std::iterator_traits::reference + type; + }; + + + template + struct iterator_pointer + { + typedef typename + std::iterator_traits::pointer + type; + }; + + template + struct iterator_difference + { + typedef typename + detail::iterator_traits::difference_type + type; + }; + + template + struct iterator_category + { + typedef typename + detail::iterator_traits::iterator_category + type; + }; + +Broken Compiler Notes +===================== + +Because of workarounds in Boost, you may find that these +metafunctions_ actually work better than the facilities provided by +your compiler's standard library. + +On compilers that don't support partial specialization, such as +Microsoft Visual C++ 6.0 or 7.0, you may need to manually invoke +BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION_ on the +``value_type`` of pointers that are passed to these metafunctions. + +Because of bugs in the implementation of GCC-2.9x, the name of +``iterator_category`` is changed to ``iterator_category_`` on that +compiler. A macro, ``BOOST_ITERATOR_CATEGORY``, that expands to +either ``iterator_category`` or ``iterator_category_``, as +appropriate to the platform, is provided for portability. + +.. _BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION: ../../type_traits/index.html#transformations + diff --git a/doc/new-iter-concepts.pdf b/doc/new-iter-concepts.pdf index eff0461..e6eb89a 100755 --- a/doc/new-iter-concepts.pdf +++ b/doc/new-iter-concepts.pdf @@ -3,73 +3,108 @@ << /Type /Catalog /Pages 2 0 R -/Outlines 109 0 R -/Names 155 0 R +/Outlines 129 0 R +/Names 205 0 R /PageMode /UseOutlines /URI << /Base () >> /ViewerPreferences << >> -/OpenAction 262 0 R +/OpenAction 309 0 R /PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b) >> endobj 2 0 obj << /Type /Pages -/Kids [ 3 0 R 8 0 R 47 0 R 62 0 R 70 0 R 74 0 R 79 0 R 83 0 R 87 0 R 90 0 R 93 0 R 100 0 R 105 0 R ] -/Count 13 +/Kids [ 3 0 R 59 0 R 78 0 R 90 0 R 94 0 R 99 0 R 106 0 R 109 0 R 116 0 R 125 0 R ] +/Count 10 >> endobj 3 0 obj << /Type /Page +/Annots [ 4 0 R 5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R ] +/Resources 35 0 R +/MediaBox [ 0 0 595.276 841.89 ] /Parent 2 0 R -/Resources 4 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 7 0 R +/Contents 58 0 R >> endobj 4 0 obj << -/Font << -/F38 5 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 165.056 655.339 286.434 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:dave@boost-consulting.com) >> -/ProcSet [ /PDF /Text ] >> endobj 5 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-Roman +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 290.53 655.339 360.711 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:jsiek@osl.iu.edu) +>> >> endobj 6 0 obj << -/Type /Encoding -/Differences [ 0 /.notdef 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 10 /.notdef 11 /breve /minus 13 /.notdef 14 /Zcaron /zcaron /caron /dotlessi /dotlessj /ff /ffi /ffl 22 /.notdef 30 /grave /quotesingle /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde 127 /.notdef 128 /Euro 129 /.notdef 130 /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE 141 /.notdef 147 /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe 157 /.notdef 159 /Ydieresis 160 /.notdef 161 /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 364.807 655.339 464.074 666.188 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (mailto:witt@styleadvisor.com) +>> >> endobj 7 0 obj << -/Filter /FlateDecode -/Length 155 +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 165.056 643.384 243.374 654.232 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://www.boost-consulting.com) +>> >> -stream -x -@})"Or \'J1{2,2s#NbRg8k{#(6C2⽪b$D֋b۳HvG˪ x!@d:8d<8lk?i.sl4M5iMO35endstream endobj 8 0 obj << -/Type /Page -/Annots [ 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R ] -/Resources 40 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 46 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 334.292 643.384 420.055 654.232 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://www.osl.iu.edu) +>> >> endobj 9 0 obj @@ -78,12 +113,12 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 197.115 682.108 312.811 698.049 ] +/Rect [ 425.154 643.384 509.505 654.232 ] /Subtype /Link /A << /Type /Action /S /URI -/URI (mailto:dave@boost-consulting.com) +/URI (http://www.styleadvisor.com) >> >> endobj @@ -93,12 +128,12 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 315.799 682.108 384.531 698.049 ] +/Rect [ 165.056 633.366 183.376 642.166 ] /Subtype /Link /A << /Type /Action /S /URI -/URI (mailto:jsiek@osl.iu.edu) +/URI (http://www.styleadvisor.com) >> >> endobj @@ -107,13 +142,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 387.52 682.108 481.436 698.049 ] +/C [ 1 0 0 ] +/Rect [ 80.603 460.02 130.195 468.821 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (mailto:witt@styleadvisor.com) +/S /GoTo +/D (motivation) >> >> endobj @@ -122,13 +156,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 197.115 669.59 269.33 684.101 ] +/C [ 1 0 0 ] +/Rect [ 80.603 438.158 187.508 449.006 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.boost-consulting.com) +/S /GoTo +/D (impact-on-the-standard) >> >> endobj @@ -137,13 +170,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 351.256 669.59 430.001 684.101 ] +/C [ 1 0 0 ] +/Rect [ 102.521 417.679 363.847 429.634 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.osl.iu.edu) +/S /GoTo +/D (possible-but-not-proposed-changes-to-the-working-paper) >> >> endobj @@ -152,13 +184,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 433.919 669.59 512.967 684.101 ] +/C [ 1 0 0 ] +/Rect [ 121.151 402.292 282.574 413.141 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.styleadvisor.com) +/S /GoTo +/D (changes-to-algorithm-requirements) >> >> endobj @@ -167,13 +198,12 @@ endobj /Type /Annot /Border [ 0 0 0 ] /H /I -/C [ 0 1 1 ] -/Rect [ 197.115 656.205 214.321 668.44 ] +/C [ 1 0 0 ] +/Rect [ 121.151 388.345 179.543 399.082 ] /Subtype /Link /A << -/Type /Action -/S /URI -/URI (http://www.styleadvisor.com) +/S /GoTo +/D (deprecations) >> >> endobj @@ -183,11 +213,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 465.516 168.688 474.442 ] +/Rect [ 121.151 376.334 185.908 384.415 ] /Subtype /Link /A << /S /GoTo -/D (motivation) +/D (vector-bool) >> >> endobj @@ -197,11 +227,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 443.573 217.594 454.517 ] +/Rect [ 80.603 354.472 111.847 365.209 ] /Subtype /Link /A << /S /GoTo -/D (impact-on-the-standard) +/D (design) >> >> endobj @@ -211,11 +241,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 423.648 379.775 434.592 ] +/Rect [ 80.603 334.547 146.191 345.395 ] /Subtype /Link /A << /S /GoTo -/D (possible-but-not-proposed-changes-to-the-working-paper) +/D (proposed-text) >> >> endobj @@ -225,11 +255,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 407.708 311.84 418.651 ] +/Rect [ 102.521 314.068 269.34 326.023 ] /Subtype /Link /A << /S /GoTo -/D (changes-to-algorithm-requirements) +/D (addition-to-lib-iterator-requirements) >> >> endobj @@ -239,11 +269,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 393.76 218.013 404.704 ] +/Rect [ 121.151 298.128 369 310.083 ] /Subtype /Link /A << /S /GoTo -/D (deprecations) +/D (iterator-value-access-concepts-lib-iterator-value-access) >> >> endobj @@ -253,11 +283,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 381.845 226.422 390.113 ] +/Rect [ 138.088 284.18 319.519 296.135 ] /Subtype /Link /A << /S /GoTo -/D (vector-bool) +/D (readable-iterators-lib-readable-iterators) >> >> endobj @@ -267,11 +297,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 359.887 153.127 370.831 ] +/Rect [ 138.088 270.232 316.087 282.187 ] /Subtype /Link /A << /S /GoTo -/D (design) +/D (writable-iterators-lib-writable-iterators) >> >> endobj @@ -281,11 +311,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 122.91 339.962 181.889 350.905 ] +/Rect [ 138.088 256.284 333.799 268.24 ] /Subtype /Link /A << /S /GoTo -/D (proposed-text) +/D (swappable-iterators-lib-swappable-iterators) >> >> endobj @@ -295,11 +325,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 144.828 320.036 296.956 330.98 ] +/Rect [ 138.088 242.337 296.798 254.292 ] /Subtype /Link /A << /S /GoTo -/D (addition-to-lib-iterator-requirements) +/D (lvalue-iterators-lib-lvalue-iterators) >> >> endobj @@ -309,11 +339,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 304.096 391.939 315.04 ] +/Rect [ 121.151 228.389 338.835 240.344 ] /Subtype /Link /A << /S /GoTo -/D (iterator-value-access-concepts-lib-iterator-value-access) +/D (iterator-traversal-concepts-lib-iterator-traversal) >> >> endobj @@ -323,11 +353,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 290.751 345.762 301.092 ] +/Rect [ 138.088 214.441 365.07 226.397 ] /Subtype /Link /A << /S /GoTo -/D (readable-iterators-lib-readable-iterators) +/D (incrementable-iterators-lib-incrementable-iterators) >> >> endobj @@ -337,11 +367,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 276.803 342.455 287.144 ] +/Rect [ 138.088 200.494 337.202 212.449 ] /Subtype /Link /A << /S /GoTo -/D (writable-iterators-lib-writable-iterators) +/D (single-pass-iterators-lib-single-pass-iterators) >> >> endobj @@ -351,11 +381,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 262.253 360.517 273.197 ] +/Rect [ 138.088 186.546 395.65 198.501 ] /Subtype /Link /A << /S /GoTo -/D (swappable-iterators-lib-swappable-iterators) +/D (forward-traversal-iterators-lib-forward-traversal-iterators) >> >> endobj @@ -365,11 +395,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 248.908 326.465 259.249 ] +/Rect [ 138.088 172.598 436.552 184.553 ] /Subtype /Link /A << /S /GoTo -/D (lvalue-iterators-lib-lvalue-iterators) +/D (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators) >> >> endobj @@ -379,11 +409,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 163.458 234.358 360.158 245.301 ] +/Rect [ 138.088 158.651 457.225 170.606 ] /Subtype /Link /A << /S /GoTo -/D (iterator-traversal-concepts-lib-iterator-traversal) +/D (random-access-traversal-iterators-lib-random-access-traversal-iterators) >> >> endobj @@ -393,11 +423,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 221.013 388.372 231.354 ] +/Rect [ 138.088 144.703 357.93 156.658 ] /Subtype /Link /A << /S /GoTo -/D (incrementable-iterators-lib-incrementable-iterators) +/D (interoperable-iterators-lib-interoperable-iterators) >> >> endobj @@ -407,11 +437,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 206.462 363.914 217.406 ] +/Rect [ 102.521 128.763 249.194 140.718 ] /Subtype /Link /A << /S /GoTo -/D (single-pass-iterators-lib-single-pass-iterators) +/D (addition-to-lib-iterator-synopsis) >> >> endobj @@ -421,11 +451,11 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 193.117 415.74 203.458 ] +/Rect [ 102.521 112.822 236.657 124.778 ] /Subtype /Link /A << /S /GoTo -/D (forward-traversal-iterators-lib-forward-traversal-iterators) +/D (addition-to-lib-iterator-traits) >> >> endobj @@ -435,77 +465,7 @@ endobj /Border [ 0 0 0 ] /H /I /C [ 1 0 0 ] -/Rect [ 180.395 179.17 453.188 189.511 ] -/Subtype /Link -/A << -/S /GoTo -/D (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators) ->> ->> -endobj -35 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 165.222 473.642 175.563 ] -/Subtype /Link -/A << -/S /GoTo -/D (random-access-traversal-iterators-lib-random-access-traversal-iterators) ->> ->> -endobj -36 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 180.395 150.671 380.621 161.615 ] -/Subtype /Link -/A << -/S /GoTo -/D (interoperable-iterators-lib-interoperable-iterators) ->> ->> -endobj -37 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 144.828 134.731 279.262 145.675 ] -/Subtype /Link -/A << -/S /GoTo -/D (addition-to-lib-iterator-synopsis) ->> ->> -endobj -38 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 144.828 119.394 264.866 129.735 ] -/Subtype /Link -/A << -/S /GoTo -/D (addition-to-lib-iterator-traits) ->> ->> -endobj -39 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 122.91 100.908 164.056 109.67 ] +/Rect [ 80.603 95.388 125.131 104.188 ] /Subtype /Link /A << /S /GoTo @@ -513,154 +473,438 @@ endobj >> >> endobj -40 0 obj +35 0 obj << /Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R +/F17 36 0 R +/F38 41 0 R +/F8 45 0 R +/F39 49 0 R +/F40 53 0 R >> /ProcSet [ /PDF /Text ] >> endobj +36 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 37 0 R +/FirstChar 67 +/LastChar 119 +/Widths 38 0 R +/BaseFont /AMIZFE+CMR17 +/FontDescriptor 39 0 R +>> +endobj +37 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /exclam /quotedblright /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /exclamdown /equal /questiondown /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /dieresis 197 /.notdef ] +>> +endobj +38 0 obj +[ 668 0 0 0 0 0 328 0 0 0 0 693 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 459 0 406 0 406 0 0 0 0 0 0 0 0 511 459 511 0 354 359 354 0 0 668 ] +endobj +39 0 obj +<< +/Ascent 694 +/CapHeight 683 +/Descent -195 +/FontName /AMIZFE+CMR17 +/ItalicAngle 0 +/StemV 53 +/XHeight 431 +/FontBBox [ -33 -250 945 749 ] +/Flags 4 +/CharSet (/C/I/N/a/c/e/n/o/p/r/s/t/w) +/FontFile 40 0 R +>> +endobj +40 0 obj +<< +/Length1 933 +/Length2 2950 +/Length3 532 +/Length 3597 +/Filter /FlateDecode +>> +stream +xy8}+=e'E,#afKd2"6f. 31Ȓ-EBd([!Rn"[vy?xsy~03]@4DG( ]@K#I4P @"7@ jJ(5(KbPn4@Vw + R8, 0AOf qPtDT,H)@ p$! ɕ xRLS,QiO&tL^ _}D߇4֓@dG@)_VތA<,%p:$7"h/7#p+HAW̹1آ93,D`xU#ft(_#B/H82@b^e$P f0IG@_aLc3)D00 +E*E77"2Py'T`ԟ h?!/s'O}啔yEe8z\P9zuHos +P*?8 +$~q6dWs }dzGjUDAޝvtfRMļ6Co7 +&&["躀3/!zM^pL{$bn̘\ ᮭY$ggdOYLIjP٘TFEߗQ8˓]px0')u;4#w :;Yߜ!el,9";]Мv ߖb:mM=+#0a_eMg5p5&eRL@tQlj^=rIv & +iɫ~e@*"H>ac^GTuuXpS*DPh!;AEcw9e&<8(RxֺFz3 j!BO993zϰyEY ҏݤ+0q@FʫڷXq>H9b Erν~UXXoJ_\͂>,mz{ٻd_2VTjSonhi#P)sJ&118cE>KW rtdqbTjq\]=tU.'<|Y]F(<(I;,4]QLȗIY +odĢ6@|-5X 悢jgq}'bxlYvl{nfgr r.)w:7Ո:AW?= qKѐuʆzV 2yk|M)=vL3.jV; 1y ?㚅)n˅ک _kCss l47گxGQdiTm #Rxg5 C«fjl ,MoUԊ'у<x +|nB47E/̷D?.Ҟ?^i\\wuYCA?^cBӂȣ凱 61ILq3 ju#KcPaڰM2.s릅ܽm{ b9SxQ@r(e p@S&}NdHɭ9aPi,P^\m6,"EلNyL-fZ ^Q[֬ZUb%l$(K;9EQgC6BR""wAoA#j)~Rӱ7Xx{F{[rٴF<4~ +g _pEYv&ɹĐ.h 98g"v/J9>E1B|P#v=MyL[+(SiQD rt*wDd` z'ҥ,Tk\T0uK +Q:GpC@Z-I\JCGf,B&XhSS#Su +&Lh %pdsN#EdWD1e D{z? ]=vۜ꽼9 E=eT;~tYCb}PT:RhCd3W-^WxjQCޫ>|T>{mӍ϶24"}yd/-כ(oQu[69ye-C/np#X5oD7 $ƿbP2Ol5m>?)-mr )5 Q7JrnBȼ2:(ű$e G?:\(Ǟᕷ8(AuDe}Ŧl7xJhgK=Yɖ ѳ6T')U3FCr-T$mfx]'/VZ DmZ ">We'@O7?dS + )Miq>ïIk!kJ|ؚaBѮn?GjK_;qbbk~}x#+P6zZ>0w<=%1u?m pX̸wI4:6[W' *tXewQ~]ϧbjWUE:to`M q „!J1i ![LFئrj:Z4Ss"|sKtz%L{DO8fedOT?~nPI[Őș[НU{s-!t6d$z`IcYtI0;Ň'q#6yL-9-T8eV Kb?s &A%-7g^!wSذ Mc]a~w+lӈ< \sÏ)*}i!`#ͷSz wԾ 6ɥZ}Ŕ_3`.*U'vLl0k8D0 hbPu1rk?yW6Xꤙ9n(ڋkԼW'fޞ܎P!Nke P06^]3n ,H+m9/ȳuu/Ec-D]H XBt +j,pAUY1HrԺN +ZKf}E&=U?P.pTяq<XO&.VcbG^xc{dN&cuhBﹻ!"J1 ]-(')2=Sn?wJi'U$p8ޱW{eӛ +vXnokH1:j{r7Wy+ qA=r@^w : IhHw7-/\K*L Ʈ:5}Q촦D%jrw5u񏩑D<O>^<iϫ-&£\ +k\sDQi9S<7s>Xd̪T5*Ѹ50qXCpd3RxA5;xXoc"NWe۴lH@~]4}l&W)V79GVoIܦZE>99A1].c*?n >oE@*IxS5åĨ.'42vK;$}N\l V8Լ3]-զ3yGV~)htU8s +lJ3)=hi)6>Qx(1T}l.AB7.b`_T&OFoƄ KYљ"5;Bgy /.wB>03,x0n. b|!Y#-Bj)s>1 *Dӿacϟ;sͦĒO%\E @Z _e8k%rs55QK!^dDb + M r>X!3Uan!~gC%R"0.S?Y#a e $ᦠKWA$IS+GM|{ lk1d 5KXo&;w^_~2AJh$|N{f,kH?v 6q՘1x8|L4 ]֝~w*.A$=uy#Zd7^xʞU \%܌}9| -_蠬| kf66͙)R#8շBʋeeqV'Hԭ\h!M0+TT56Vc.ZW\yaֱKkQ"A^pn~ľ"w*L WC?eS,d7cr"S`#d,UU֏['?GWxFXm*|U]ȗJs$6+\ vŜ`B få/ľxTXe30*1>ÓjL.*ow3ӚSc˹iShPZF>9$ٸ[UF:u? +loCj['ɹnb!y7xw/2ng}o#o5t)9y3&j= ;}j6П=A15uo#W\ +|-|GsARα_ržCaND\ٸ߅ + &(-M\toѱF%~IӪSm3]oȾzeHSι]|;bp~X!v4_0@M~-씫|~<1oez"ܫRw 54HHf2+CC]b#l,"/=fv7`ZZ&D(uN,Zպ/3~D!Dzu;eĉ$9i&Ƣ,,VL +iϛB#lVOf[/튨t뤾-UwC q?vݵ ńV(M* +A̧hX9 &z>͛"{nK4^7&ro3͕? avvye[q2=Do ܬ$$Nf'^ ]p{`%.ڳ U1NzF~RmI"gK)_ni ȭ !?Q>C?IB ӈUHDvE@#35YdLɛ9'gϑ{3fy/]4:貨DM= ƼC4)H xzrqC8eysq='<=jy|΍گr +^jOh)"clYVjFƶAng9$V+W˚GSn­^T0GқbcnU(D[D$'Pno,@Msƭ +u3ǒ,8t/^i\pq}q9Ǔ`ͷ-@b>/W@qC/l-1QkϨr,ٞf/k2#9ͱS FZ2Lwq-<> H;̐.U j^%C"RPK|ASs0-ݷ?B') O՚S!;Kgq+RAnb0`x#| ~YiüJX-?/ۥ\)h9\GRz.]&Iai+WV'7kvo);ҲTgרgCdH+{-Γ3dnBD )⺘=,.7e_:y tqĒ S]p'}UQigҭFtަ8R18$k͝1 eW5gu:LTҾ]SPj 5RI"ךG?'wA|6[nA0e#W&D kC"@HGJfkaojiǶ}(MmL@n},v+@O!"Ӎ<+؆?;ɼ*L7 M3WZ~qsZ/(4XajujXGg4S@7e?4/24Y>T<]O~^'c$V/7yFz:Os0P3ĻۂS´YmW Ѽ~XAa`6=G[j?w,vn~b*վQh/mbN_Qq &̭1Sx2خ3b Ov\rQ&QiY2ج$gP1 mO)U1'i8c{E=C2ֿH5)?AtJ`Ul/pœ F9"-^NfŅ[{ni6SH:y^[tzKEcӶ6~ W +o~YJmBm@z.W/_9$3#y<5`CߥSFYZԑ0[0 @o$XCG~,6e1ܓY.Oy 6I-@;Jyn2徿,C9\`.#,O =e|CN dI{2&CxX2lηeY(:1a|WpkaQz )!=%\3FG+kF(u𙌠i&vgVK 3V(!ı>MLM6?fLǗ:RˠSQǾz??i/qhU9RMe?zO"2#MRҽIq2PTꏽRXꘛy4WcXnR j9M_k|kEH#^|I47HHWAZRsh7Y{|ZEo7 ]AOgЮs'!l :fW\$Eg} +B_KԽ~,8 *l^6' 𮥜z ~sXؾLFu~z~YoiaZ$NH#ngV-1b~ћM3ӓK]IF1|],*sۮ#:;7GN̓[%AЂNK:t;ZӚYM1QG75x` + +lM'h(YQ$^gQbѪ!@n$MNJko+/>)F=RX/h_ɰ'ȰRPq>Wcó7T\"-CdohVY"?5ܬPly?sWoFP /Ig"'%эäapHj=۟Ͱ-#Wz[@NRjf'|1Ll[|۶SdR.qĖòw]_aiG1o>F0p%ے`q.9튛ӫB>{C iq6]s& 9"nyWɸ4ڌqOTE@aV1'?#I/M%Z, +l#{%]B# /)5ƈP0ZUv,zV^t3)C"o ҄ 3g#2eiƦ*bϥYf 9k[:^qMP ;Z"PU +Sos++|O,2#ݒ7=$6՜ (CWcԨt#q2OA T"Q|¶3.й} ^uqwii |\;fX֣o2\O]m8獶xeM]L[NUT(ު/,?2G(6/hf=}-VuB?AUPL ؼY ι0{Pܭ+닏ᅶLoRxPw]`M[!V^[ƎTܩR:\ +9~;^˪h<8ݫ0WD+,[FsH_J⹁E.6i ;d3#DxYߕ':'ymnFm#ZmP U}qP^1S7F;> -stream -xwUT]۶%67w ݝzS}U5>9Z[j"@I{;FV&^"YNQh -r PR9M\@v&.@^ 4Xyxx(bN K+-==H2zdi8mlv.׎j@ -bJ:2R)E dbPv5Af@;g - ` WjLX" 0:b8lAg`dbQ{/r 98X~>]͜@.beWlgЇ`oainoWJ>`>.& ;g X@9#o ;`pZ8?`> Oٛ88xmտs8m,X>b|Ķ!05(2vV]Mt@4  s{;O9Y#$LsMhHGk?={WhIWEۏǂ|l{<cc؂l< 5G"v aab, +\̬&6[agt?:w1,,SYUzvJISgSUV(eOf1pQtϬ+cddfe/ w'@#{nP*_$5;!w?rtʈo#=fK f|_R3\~ tB8ժK )3~ -a}o?vxە±Lv@_j d6,BN;bN~JEsokLE+ Dg'ZrX(f)51mhu`O;w c)ܠ t5ʾF¤#^\hu|5̥ V[kMNkOPpn-ƹIJ)_O4s=eM4[i⒦9/JnIF]Jr&gJ/EQ9+kqV]LR@k״uՉyӯ "q0>Β9C[X? @z["DxD":D~s "ITGMc,@;מ_|JKh~TNM!jg&n¡لLrlG~>-xLJ3 )2|kڈl|r& Z[~NFݣ.W=L-F&ʬFUķ* -MR<!w<-ψ ci:32|.S5{Q` -e'LpUK3]?2 -7")@Ξ,*<|Y%6#Y$ n&j[6qpg"^F|\ IS(Lp=0lʓ&Ll@'/f=c5y(k}.-8{%0D"@¶Z8f MsP6H_0r.>C2ZxAEƙS2~[{of$yNЉş2BŢv]aM1sچ9ҾxXĽH@^|>H<܇2|FWI1*=WA%aqR696qzǺ X)aQ]WTBԂ'NɉMfFG% (xyh"6> Ugx=A nv8;/zrSapB=y-PD?r(^b>k{ B덄 -8_bnϨ'a+~Fϗ~kZ{g`[}0 -M8 ,T&2S2cV=;U|h?]K"z xhOVYԋW?@Vu:Tǽ[/|fnBb۱ - ~٫}/yl&iz@f|=J/!= oA$ 2/A֢)ˍly,t$F[ TNu" -ʥ^e/$oby'Qdžzf0\8"Ag"n#G4(􀌢|X* ,ieMSOr>-  !?e`_"#JQMbhtYbTxא:T}t'igS lnoIn N➄ mw`- -P)JP3=ΝHͿnO0`}tn@ʸv_\&{|D1OgK%|+T1L;"q۝7DcNMہ1 7s -wJ洛ĭkdA1vߨ9*GlX^ޥ_诏 /a(" ) 2Cͥ -6. F!Wm,Yp0lSZ,1wQq*,/Lup;^g T1`wO'OPLƕgӀ !5bm)$@gz6a Ip)rdDc=+!$<U'213΂sP! gWDfػfwH";e5-q_+!NM?sQ6('38EP/+|VC -NJUoC,cA7ܖڦ!aǦU׹½ AcMrih_kD!'` -{D*~`8w-O]6g7}Su|a@7JkR%Umb3Qw1Oad]>;T;g51 -Yߑ;'>8ss JcM[^HD7"sj(f7A0~{e? -Gl0D -g787؄JL2d8=*Fηa Me NPg~5ȮLr1'/&eWY#A9k#[:Umi25`Yf-T$]e,iB@8eE7|ey]fND0oex4%q_Q[|I8gvsFLSW4 袉mzc3;tX**TwiS~^|6eT\t/URSͶJ=_xW*,9 -a4+"vhFܺWboUmׁ!=7Uvi5V;1ZYh?VHVD#JTIāwᆂ"'oj\u$:nD|―r,K٭TKC}/ @!OۘR.¿4RJ3X!j>Z69*N:׹`UW8bATrWUJ.,şlNR1%AeA~4eU$M\.n֜:9T 4`Q T {ЦKd GN^?aP&bMk9h#u4wU7QKWvF8\10D3f)mE3QߋѾL?<UxaZ;.Is[#^_:̅t -KX3b -Qv31#ۯaT2ƫ${Җ.5b#T -!%`VHaB Tl=wDź7HHј5y%5y_bZ {Xg#g$_ʈJyqn AG76$Ff/:¼= ,k 5"sZe %1,sSAYv*mXoMBǠ-bXHQjw~. - spY(rΫQ=gHS=Q:ć@0v:鬗H({Y,7P(ĉS_~z*@jYmryUO-3'WDox4|v#_SCB*vAG)~G!gl r@F,v8`JctӁm/k"E+ʘQI'/xDM?\7j V/Hk)q)[ͫ_M?S*;AԤA'X)5-/ң W(SfsK='bUkAw`k3.iX(^dwq600QJqnUV`JU`s F(-@Ot[#(]?a\ݮCdS)ݐF'QkwZM }*OMW> GNЗ ZwZx/PnB6?1!2\uԸP{Tn_Ks`"zC|X1q ~r sRNd'=,-6~{;SHdJ&"1ɞIN vq(hܗqsl'9B%UaSӈI~S$ gv -v#0p14dEdr߇CJHQ`&O)O3~2$$}n9P_'D!hs?I'8>|2^ŕvS=`wE&> .Vͧ }~S}Dn:L3=ƀt>zx2C}jpM̍h {)MlkOKG`A%3]tfۻ$Ibo7oO[(₯ 88 ۆ2&J},zqOeA""xaJ$cv%{{cHrָ M Y$T߈&CRh-YjZ=aKP…AJk%dcUY QT^%-|G*+c.^WWaDЍqo 3XhnP\rOuot/ iǺz OENE4mAr):5[$do {G…L9.~F8^fPaKFiɨBΎJ+8<^~&"4~#%UgO.-EvY IT%s{%ˡV$ -鸖#Lx#gT5[FƔ-Dw-nL)!LCׄqmOܟϧ曆+_>J@:hv=:ee>tBT EW U&;^+IτSGáua -2]5t͉`XXijM$ ^|dS1rPGțw}ѓ=6 Cq,Jz37QYa'ؐ`[sż&k")̱et{=aeYi5{M=N?7`Jv#=< ]ťk<U؂/LBkp;bʗl%B>W UK3G '1鰓9YpցPˑ^r}bVЍ%hS[`R|l֊yyJ6ۣ9eDU^&-X5oee؈:4]/Ӱ[D yN)珑8jj(#E7 - Ŏy$#w+eö_`rp -sra 6YEIakoRn#W3vܕH*G9 ԝg`D[1d9eAg -K̾k=j+׺{X]F#Gӓ|Α(a}X覉y{'$ۯ >iJeH"l]uue"u/]H 16Oh-Zz9 88 P^1,XUg~va[![Z^ddtJ2eߩ1Z1 -@F.q3A'|?0̊gAg/:C'x1nfWY"E37 )m ȣN$AP@Q/Y-j9IR[ -pR0>{s]hwԁ 0_uIlCA!A= OÀ3%. EiطO3"p?wd#;JVsp.vL^\SUpt-u Ǎc:u ==?xd(Tקt^%8oN` 3hXNҗuEXw:MC GWJ];kU\#p"5q6*˂9=b?N3i{%yh+t@b[TVJTrJaK> - ->)*ذ  NR4x/$H&P)u-iAx.NP%kk&; 郕/&^Iz(KߌɳZ<ɹ۔z\`]8SnG:;15`zka n\XSH1)pz8ITDbL%sBI"ȷkpZ*=6(<7.%\{\} rvB9,85+m>IvEpn\8߯jV,YtyXUdfLd֋g]au:wk6E -gŭ'n(i.4ƴb_TY,P$zVIbP&i" U$砵k)T6ͧ_'$e>^M|~&{NKǣB J -ŚA-YRX-4USfnGR1Q4&A܁~&B~tO9Y[l56*b$Od#fɏ77g͑p ׵v u% &<_na|MpoZt  !۰A3 &nI%b -t67|e&\wȦwx7-^0UycJL< XVCa5`\MIjm*xx8,t2O 5d<4㒋͎Ƚ؍mPJT`(`=w \ar4(,oc.@cZ+Fn/<]ᢓWBymיcCEv6]rΣ&-奝W}yE0fϴ RElb88/IU\Jڒ63W5ECA珔/!C@~y1d"H2`= )cBM; ?ڏ\Ϙq ;!c>Q4gj?gx0gݭa.8(ȅ|4콋h{xI$ DT#r}qA - εC1xغQTʢBZ/pm@jpՅ;ŏɷWf|84ѹM}{gL|qazUU/<((vFIGzPٷ0nF~ -XDGHWՉŽq~݇yx5J{ҔͿe@M GIÃlYݶWɒ8"p1(M>B-QGNaFKĩښ\'hN"=9ڻM6V#`M̸>*b6R[ND\ Gӗ=5 :QԸC[UB[{Rq -7Mt{Ð2uA D3"X@Oɥ$|Ld,?sȡ/ lc% ruكzr$4Ո!H4Si5E!w*r"!+:% -m -/ܬn wksc^Uq=Ȭl3-"gwEwku9X(J dsW h?efKVxL?LUf|?_V"lf$qݕ΃_AXΗ 2 Tzmc\S]VAb7!aJҪ4tZZIըO[O3.΍Kfjφp.??`w棵 bɛØzgaH7,TVCr3G=ZPryi 2})=/<U aEwJZwi#~q{VM7֐&*iU@'AhO,-Me||z]5!u*'Mk=j;߿h%rodaKKľ뀥rF]X"a\!OU1rLxQ}GVe,[Z`ŰX[|u$99̹қgs+@$bPjm…!!5a3!# BWzArRPT|{*HYJeqC1gfdBuma{?Lt}ndc6Va <.=6+RR[QMF8*]rPs:ЂLpP=q.я Guq;j~~7 sYR]UX{m@U$Ӵ5\J -/DG2aj2'l}dj$3FZgg!F?> -stream -xZmoї́yeH%[۱\Nm"@.ʯO*2ffG ,RE]= Obxg_ihU~xCU=VyX6wߖ(Vnʟfw?#cU@l]1¤u˦MI1,2l@V'{ƇZǞ/4{- M񦩻㮯'iS(Hbv;E.2^}Q u!⬟|I;ȄWMC1SYvbD_~f%!_uiWŇS!-I$$rX'!)O*)}RQ.*%4ϗҙ_Q4D.[@SRzpfя˅)u]Tyk^WP|S 8A_ ^trI{ćvx=u}@ % _,sl1PP8/4{[t_~{.p7@eC{qWJj%m~|# t3Gm*/s\M7<M?և!ymZXZ.Q<(}{SF3L&T4"/Dg9  _]ЏڃI15r6V:A`;oFQR`i=<7ү s1]*L y,Q r?ZFzo+F?)ZgF#S?<24y n4I,7D$ Kf4Cd޺rõuyo'!NƝ8%Mpq6<:CBJ, -dR,xqMǡS1ϧ: 5:WyZk&߰ C ߀ՒV홋 05U>pV (SDSyNZfr3BO 4XڂvōDXNрYKXF\PF@1l X_xw[E;p.B0"4A)o"]V^]*@oqZ©hըh h,AJoE+fƊڼ.}xb愰^qJt[".c?/2:k 1^-zo-sR.Y9JCj33FZBHʙ 9O߻SCWgT"&03-a!sG|:,*AC@Jz -ٜۦ |{˝a"fr΂1|Z endstream +[ 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 278 389 389 0 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 0 778 750 708 722 764 681 653 785 750 361 514 0 625 917 750 778 681 0 736 556 722 750 750 1028 0 0 611 278 500 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 ] endobj 47 0 obj << -/Type /Page -/Annots [ 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R ] -/Resources 54 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 61 0 R +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /SUAUTU+CMR10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [ -251 -250 1009 969 ] +/Flags 4 +/CharSet (/fi/fl/ffi/quotedblright/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/at/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/W/Z/bracketleft/quotedblleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 48 0 R >> endobj 48 0 obj << +/Length1 1992 +/Length2 14226 +/Length3 532 +/Length 15322 +/Filter /FlateDecode +>> +stream +xeT޶Cqb)^;ww/)9x;n\sYsIr9EzA##=3g3I\hfc- `f @@lY6nf&*a8V@{3C}k) +4%@ (t;Ff5g ;̋\9*}_$`ݚ jbi(XIPSJC؂\P&̓ZhW/mڜПrߴ ۈYh0Ծ U L{+p +#YAՙEu/p&DCdZH^9׋vtYiuM $ +.m*")ߎIymR>d(񎹑*Z$H8iS7?~IxpH*r7F}2~f7+wH$-էcH%p[(ʍzSKCn6BMeFF ³} p]@RI0o/5p_KnW"|r\ᨎ6#c!Z-NK8/|l:~^䃷Tp&]`Joh:A17:ip5'Ӕw|L}yʹkYIqq98$5uHZ /@R# .نuv1nrs DaTT}7[d 2b8tz&@b>skWJi#iN2W$-C#7+!wZJKצ]E; C;v1~;,o6.R4oK#ɮu_hTuK n37aJVxoJLI1Ұ>Cf&״ 0ɀC Z.[Mc;?R;&r!F@~J)BS 7xz&RJpKuH RF;!\~<-m.w^T e[WtT=| +#ŢWb$G 1M0,}Y۟,ɏ(HB [3S ʌ%jR>EԽD6bwEnSQչj} 6-/3b -QLJʢ\ة G?8k5N瀼N0h>}_&hy ,YBԵrJUwm14KwӈUxuF#NYʓc!<3T} +eyJ[ ^ TǗ#lΫ/1ktB.+yn[qHYi= (Z]rqj7R_#9ِj5hr,9MܫxQ$:J/w`Y6vGe0FuiU @2 `ޕlr?, ==n%ǝuCٽ6קDNKkOA#~3WIn M!ZJTago3۴EdݖWɺ!9Qс䗴 QC"M.j²8Ttvu~Y$G;/3%{'9bӫtqAi,u̸0gruQ34*>;JPە |շq0p{W;Ft$$u0u +Fܑ +~z)R>ׯPxW"iQf3ܭE!a:#l,uH~%\nh6(Z/쨕Œq 7;wK@KO:+%T]`n~~sxAYsb8Nj)f(Jm}}h)EB|4Қ1JdWoh#(r5Rf\IM*ϣ8:<{pX.Y|Xx'l)FkHoDNJ 2~:Y/siNt ( hx}I37Z;sK!㉫<ƙe`U:6)R6?an?\ʺ6<7;PrSwo&C.^-8REn_[u3y՜*g^1(:䗔je zgC< Jt RAdFx"i!E*!1XjX o~J?ܶcPM }YT54>RuGzh폀 #oƭtTr9. +5SנmtX1Kț|}i{. @iFjE+=&OecM]C>SX A;ΤJ 1 +>}|1mcmo +wFIq.W3q.OsloCVrbO,qp-n<3wjD0&4N!9ʤe:VBHŗec7\O܉ bx8fRDgi6h|ng]sJs>o4k z\Uk'83&[dft$x('9*UzU +C6OSJ}叮OE*gPssx ͯ>'-=!1QQ~᚜[2( +͸Q Ba\3XNr+6xo4#*cyIgcQCd]S86?4X0FФܾPEH\!0[} /'JdJYoj/DAp{څ5*4 +Ìb6,G3څ jJycCu Zr+B1նڼTFP&Wf!t/<ƼQDZ5\aҥ@7ҫR C +([i()̟ )A%Ga>>$ \Oq/>x,p{djn`\n=d|ϒR N,KpXڇx DȏYyٿ&>0dBkEF '?QR>5i*1eQ?pghn`ߓ ɟgLRiR 3bTE@М/ +ޔA$@2{:Sw&:yB}^ނ%rTO.% +n>_ [?g 'JcN &z»_?`ws"3["R[^9 `K$bzd0}pٽjjM=Pl ]dQyQs(Cw<";fmbWjNS5t>KyȘ-:/[@u+*UyȌ y| +|i!Y`RcW} ] ?1UdP|Ԝ0G@嫢O [?\ŵЯ QRRC>;gz.Mqx uBh] {zA3M5@9#z=6"t>E|V&KpL.G mei#S^C6 :E Th.;}mԾl F'~IL~&@YG7:qjB䂶lxD\LaxXBoFHUi9iѿ=v{uGؔ"F*<*:12o~\P3Mp}TiY)6<<4$Q%9J/T.`M|KJlKI C:XL&-$Yc&+HoA=L/s(2CoU230̢zQކb;h]P!TJ$![!J#a2ʿ`kQgg]bdL;-HlLW%p[e)KLgŬ1>#4 ySw_E;Y#tO)X< ¨hAc=#t_Dq7ƥwJM +"Bc{] +Sy[5waa,&}k)!m/&ϫN׎TegO]kRP<,=)I"$سxgiufy=ԩx[ә;: 5Xxe鋢hWSj3+9K>wv)H )؎Wek1R]/~0Ў <Ԧ~\F _M=4_N33 $쾲X#8 Zǹ?~lʫV;eF-?}3rsy*^:{v ~߸Hbڠ\אPG> "eKrA !ߒOH`t7k}EL8׾n"ŦLWSx{1U.mO봝KDt^|IIrz: ſXŠtUgzcyU}&+n +V&\{Ml[XpT=2D.¥~mj'Y=4a^ġOr-w",$h9w%k9ܖ5Љl=pIS.E2³8$!uctS6-3WJՁ0#ZM +SlA`{j~+ڈ[ Zvnew{en(`vt2һlCIhxwM*v*ST! +V榆pP-ɘ+z(Qɶ$HV=U +%Fdh^R$kV2qZ{_ X|FGN9o;#}沥B&Xv5BeT'/RQ"H6O^Et| xDR'j7OVu{ԗF@)aYDaڎt_B>W#.m @545Ɗ+k^+|)$lo~P)`x7?Qs:?Wg{D al$m#liT*ް x ho)](B +wΑi'r`I"[FFSG3NX>)Q|1 QH>H!ZJ pHkάaOڍ ?5ŧMDfrCiUQiJ gJZ 5ő\^uv T"wl~3A9'ޙ,̫mqX5L׳ap=q)_vO}}\R*zӟiq)۶v ce~ݸƓO_\d5H*&%[;iC&/I%jn^3> AY1]#a=*Y ƯAN aBK$m=P66Țj0"Ҍ?Gdܙiri{`mK3o񋏎 [ط?hꆄ5`$ vkYwjbLRxMu,ov\-o^# 3)!eWij*ĄC!Ff/\=ڇt2`qCX:u  Hg}k>=2s&9ѤtE )Zxwu璦NhwCZ8É+fPn)4CKMϓz@WV͝I&Xdψ=x$,Bu!X%cwdR\4gxj9/v)BoKuÌ" J=S-L`^tpY`Fihʳ;@-ݽxuG.3jf_ +k3{[._>ǽc#ñRf5=#o26sXO]wO/CR#@ZCX"NUL|yGhu`R#dˈAH{tMy20f9K+7ZGO~ڠfdݢY ~J6TaGz変_63݁^kZ Ii9nJqw%,݂Ӈ TiY7}CX/GgHxxDe,HGi\C/4i=1kW7YC5.W.M E}fudLTx nMew{fUg+h>Ufkߤx1Jh iQhiYI53ό56GjY~T!yfA&U%Q8"ץ4Êva3w~/ξ#uvrbf)c;wuӺ*9t rsb-&ב@ Y`=\bE"'yӮ=aW`WVÔ ֥%ghv >`FGF(y^,t_e4}io-4&Ζ D-%`ߘyѪG/93ʕ`&zoQuhGdq[ė Z[TNfX󮈌Ο4EЮ}ho~ k- ڍ9G^V Ywg0z5(&cWo9iJ7"lj=_1?N8 hC4 VʎRwud?6>hSo4 5?Ln\ ێ}X,*:M߬Z$ PNscrfN!G mt ˨Výupg0*5lR9 ݹ3mvsG}O68@jv1ۯ7A<|2rvox5qlƧ#I=v+dl6]dNPun;I@,LFpBc S҆aAZV;8A9˭ Kfj#co#UǣD:urQdahMϳMcV' +}6FDQ4pܡr+oW.>'8U"qlki#umu]fyuԕ|νSv9~#=guyLBCqU(%zilwWVQ9&[p|O`PSwDCÂuvhNh0$1PCѣ$:7]+wx0j<v#D=~lE:ALE q@;!xr(ԸνX.Mi;4~}(},m2͇ڝy \K}q(<qV\QOk5s7J>Z[9N@ʘɲt#oiSq<|bkenX_"l#=6;::%Q|a_D=VDOd9rW(Lkٴ΁\r^ߔ[?Ƒh wU̐!R]% + +Q+Mשa{-Gz,UX>pK&CHPQWO]*{ԨCW).<lRs1ys Z /&M勨56W_U: .BJ,$H%]VH6j?c63oP+#oE EV}d_'/y(@5qV ͿSC:K=4%XEDx:|1=Ǵ+PO5Y,=bv]G@"LG٪_bkf8EF'z%07> V%x(#3Jлslr߀}uf{ oQ8ꆐZC4EOEՈ|%F:ShyKPIXg' J6aGb_KRT5K 8QlwܔAzԷdWG-dYSe\&VNV;T&Yrr/zZ؃Ӹuh;S7ݨtS^nݺK氀EG*@tN$%S%m8#p"Y[87HUX?E@'v(LP`B_i'>B;|4 n||z.p!aÆa@9bقeIg⍀3_4ĝ-uG|K +W1ޚAdoSmXOL4#&OHKt +P5ru^b!݂8/XxUi!1کbY"*6-LU5>ƿw^KG G{ȕ6H9z2̖u"EE+w bUgCIctP~eJ^z +o%n~Q} M;:yY7zV]ֳӬ;UF)i <#B`-z_k_|0ԕ w*F|]&&wcdvyL3[BgsmSaFdw,~hAbD;{Z/=K\rIq{?ٻ;!z]0$yj}CrK|1S]-6Q]R,ylW\&-d;hG4c~b]O-RsF(%Xj՘GAACl%pĤ &Cq# NcjcՐs-]1 a^S&Ta7e҃BpyZʔڹ&O?؉5>0rdUƣeR9!b:Y+J2ӟad)9 u f&D(<|O˨eT5ows 99AG0G&#[kd{3Kt JL GXpנNk:݇|(O(V-c,WI~O\˒ j~c! `ԽjT*՟̀o~zc,87)*$XW|3C}t6ppa0ݸ`+AǏgI'z m0nvxk)]CXGc'<'h?'&#݁%y@YUd/%MPd54i9{w{vnڥ`Ǔ&wtT:m} IzR7{{rk#C]H'糧cW [^Ą+!HEu9qUժڝuSu6Q8)n$.7cD_1a*|?NW)私4CJNWGr*BOHQ/U{`OtdFpsaȺtbn;fJ*D(g!,=^V,'t0 |vdA'i|iQ717+Қ$cVJj =ٮ&雪.64[cǘ}'av<ԭtp")i'r 8օۥX;+ǙW)dbI^nZ: +/F_Sckᦹ6$`2#Ia ( %I6:]bt:S.$8;De^a ]1GW7^T3:_IvKWun{(o׼'t4 U[;ZT);αxpgJ1̝8upotm;X+#3oScZ+$:iwbmU1Q2%{'wP} xvT"/Ҩ87śt@V3o5* r)A[O2nXec-Ai)k]Re)W*#S1q\)vW`n Lqzڌ_ԞQ2I~Bm\c'̯1LHvc_`F. .qg")ڿf}fRpa4pc1"tn?FT+iu]rd#q)$b󛖣$SZB>U-%>|xtu2de-$ݔAP8s&mikT0 *wtqCyց*mPV j;e%^w0E W(ٖU3ZNj<3qWMpӟK)KFT| #*?C [H K;E>ߜV f1fZcs{2?|bCKsiendstream +endobj +49 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 37 0 R +/FirstChar 40 +/LastChar 121 +/Widths 50 0 R +/BaseFont /ZBIEWK+CMBX12 +/FontDescriptor 51 0 R +>> +endobj +50 0 obj +[ 438 438 0 0 0 0 313 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 0 813 862 0 707 0 0 419 0 0 0 1067 0 0 769 0 0 625 782 0 0 1162 0 0 0 313 0 313 0 0 0 547 625 500 625 513 344 563 625 313 0 594 313 938 625 563 625 594 459 444 438 625 594 0 594 594 ] +endobj +51 0 obj +<< +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /ZBIEWK+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +/FontBBox [ -53 -251 1139 750 ] +/Flags 4 +/CharSet (/parenleft/parenright/period/A/C/D/F/I/M/P/S/T/W/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/x/y) +/FontFile 52 0 R +>> +endobj +52 0 obj +<< +/Length1 1340 +/Length2 6345 +/Length3 532 +/Length 7164 +/Filter /FlateDecode +>> +stream +xe\ָ N A IAJA``!f(.FJ)Iwl=|?w/s{k];%! +FBBN`)`)@@ $&%,"%*P;x8Am\$N  B؀Q5,@PFxP3`g+ؒ_H` @Fj0+8@ÿ\N()}$h A=`+|M8eCU\PM\Cʀ; N % TC_r +pQC y5 +qV-!  3YSl +()k?A`}' b8APLLfPBT rryND^Bapj +$H 80( +_QEھb0jDH $J8/"T;JD*AC\q?ztDuYo2slJ~EU)6z0BniW]b26yJҫ/jI5Q'M<=??*UV?_brx Zrpe1?m YvM>)T ?7 zz0^([3Ռ&PpkOp,3 +:xA8eEN:S"a5OJhߛC)Hpcdu01cevmg?}vjoiҲ Ŗ`vxC̋L/Y*hheT􅈪u\q^ +YgytibKBo0Sy;_J =/2Se,QWV-ŝaF Xz86Qu_dzLJ$ i͝/k#" +ŊIkf]w1"~dc{J`7X`B9e>\J€M}.qk K{3i;&pC"Ut}F&pE$Фģ7} +Q^4AuiOv`\LT +#v\<_N&tFQWh,BP6g h$O,>mBmvJfQt>0> 1{X>/kD[D?TƲ򁟖Rr8ֽN-=6if|0I63@XtN\<%<;"O]Tsbj +eM]Vc63{ӌO;|)Z\Fõ*)N@<uX{G|C)ˉS>}b^)2:df*~ =cd1K{%=KWW-4~c`2F=y4bNHi ut#}$oBa9F|}7:TvtئykZ4TÆE/wϻ[Iw7aSܥ3Rrxڌ1+,Cv|[7!rSJ)2;-9Q%4ny6[ 8NDqd}h0Iߴ˰R|)VQ1:yTJHm[TTgoNm:[ߟA5nI;ъBI-1d7J[ bl(a9"}WXWUJ-1mk܏ՙFe@&QМ͢OTR쎑U %TbY(poCN"!|o],zmkQdK1MMC`lW=M+CӅࠛ0PÇW"WLo e?KIW}VW7~|B(D'>9˶Rm wUٹZ)]3^K)&_K NE2Lj`Lv(q _Ar(@Ed߆)S""c8AW^U'K%HKeƆ|Gz&&tYW! j!%DZ??6v&<`xr:#N>g&G,;ݵ ^## Tٚdv—E,{g4͉MT쳒FԫL(rCi=9WWWrf> +mEߔXrx³Lc//ԍ'7ߨ11F)}c\$Q:H*2QAd8H<|7 Fv{л9g-L;p!NvG\ +jZ &CяJDMnSɚ4n:uyr~tթ\hFШ﮷K2O]£Vק 7J)_.~&Tp0U)/=x5|P{k8ׄr}"c %og +wA[f~o]_XD(ϧ ]bڸ.q]vn[{-ImÚ`3-Y (.c>k ק7Oin 9/\"/.W˭Ȇx^RF+}y7sV[> +Ēt_>4$+Yd&R`X[V0>c33!&+?Q 0?zlOGSMF=/2ͺYN@oT7ϼ:%4wh1p܉N3*Ë~^nՔƼxV3뺶o>,u,PM`~w*<)9PW54zBmՐNe3;jY>x[뤲\b ׬L?Nl]bZS۪n4.6—gҹ`dm<{9\Ā;1RnMwj];̑ρ2Ҁd³w%KaIbwHOg0ǗmCz(=?bG9uo1<,śў\H6V0 ɞOsGZӗGf~¸^iޘñYfF&b\>fAtcP1Tܼ-K~U~#hoy>-;†zWzSRISMG9(ٻZ!ғ萘-h6З-5:^jÄJ`=zQļ~9{ȩ#2"D>}sઃFf%^I[I 7,DŽ8~2뗾٪V |3QqMf "{:/dF,M/p"hg,~[RL֧ ,–Tk5UM x[7hޏk45s,g?WFtɷy7{KtWQ@!HCrwe0ÆRt3 F$1U+xnAÁ`ERizinjY|/. n񇧬藌$'alt3Yʧ?-攆-èn,'pN1mZHAC<яNxk(i\X@sIɘ3#\Z_jԜ Ȅ,,CHd+6 O)C*)ǥY|QZC.1V6+ވoRj _1y/ iuUm!(ID}K1z'ohD |Wr. !jJOrT. |!k|M wg r$cwS/Ag_}%/ڨ>% 3ARQkR<+,rуDu4xcئ-K= +~iZȸbN0*Z[;.0a3hZ(3m*/!zl'"vA26Dgj[A5` gbZ5Ns٧TiN)m6D?#YS2EUQIJ. q#?UO>Ut&z`K1lz}Qq+KPc9}opmXUBuq?y͖*i"sx^% +fG❂9cWk7/qW>;H/.1(Y?KDcZq<|N?d'(eMϡc~XXsxyhE;! M{_%FJht7{ yd\AL34CyPs#^Ny\ y yV؍yHBs>h^T~ -ӵܽNRM?2mYqMe'nKOK֬8~0d2]jAV'3!rA9b1jnDuO;rE`g٦e'%E?|_&)\p5]R(ƙ7Uvfw鑭 +9Xr :lMF"Ժ GR rjWڻerũhL=V"1z,DJ!].E|%O۠æ6oGrsIU+_wtYPp'Ն q^ٺ_.5U(Ȗ-u5NDoC59$rlPB׻Tk,9Qh1AqZP굔4!VuO)>o#f +?*N[Rh?xL S9[ʶ_wy9*~n%*)8$m<dhަg9x=zĕ +VÖƊvpD< 4üvaǍh{JwT..T}:5G\_ڌXxklDxG,rhA_ +@(-B\u]b y!%hJm +NI=_t29VɩZoa&kCIn_p{m>_̾Zlac R\ ?Bzh+-* +8[5=<ॶeNȐ6g<5ap30va{^s<ţߊ 1&FonɅ꾧?nU+ Z*̙& wX@%* ?+8p{[endstream +endobj +53 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 54 0 R +/FirstChar 33 +/LastChar 121 +/Widths 55 0 R +/BaseFont /RIBAKC+CMTT10 +/FontDescriptor 56 0 R +>> +endobj +54 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /dieresis /visiblespace 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /dieresis 197 /.notdef ] +>> +endobj +55 0 obj +[ 525 0 0 0 0 525 0 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 0 0 0 525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 525 0 525 525 0 0 525 525 0 525 0 525 0 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ] +endobj +56 0 obj +<< +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /RIBAKC+CMTT10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [ -4 -235 731 800 ] +/Flags 4 +/CharSet (/exclam/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/colon/semicolon/less/equal/greater/question/C/D/I/R/T/U/X/Y/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y) +/FontFile 57 0 R +>> +endobj +57 0 obj +<< +/Length1 1612 +/Length2 8800 +/Length3 532 +/Length 9760 +/Filter /FlateDecode +>> +stream +xUX֦qwB 8w&[pww n];!?;9g.gUZ)՘EM팁RvN,o +lv6614jjq0 dg+a| `ڃ<v\5@[8 A&F#' 45@tDp`) ;;d0lX$ckfll! j +@MzԤ5` +4CcUza뿃K9[[+JoF6 k̰wv +v@O˜lߣ2NF Q[sk _Q +4U9Xe{Vo2brԿ@N5ofAnlC'B_Iښؙl<#0=>P|blMn0+t ZOrrXF6F6AS`7mfNUQdhGhAVEVΎ.ojx `u6r@-v|hO5'hB@gGb54h*@ǿojK7AHC24oA7AKQ>&h?Ԫ1 +=GϮ@/ ZCC&hh Z?Pf tC?MBiB=YPS C ԕueգ? +B]9PWN ԕuB]F+? +7﯂'f.3'7Lܕc!>8yI:D'=7|HUSc6^}U^)8?QPGFѥ+-TFp` '*NCIW+N|,ꄿe0Jʹ]3]Jvܓ̭ RXbㄥPp*3ߪj18+2|vfcrSKfa ՘ah@yQL +Sdc#|@6"+x4 N~mq3ܸ?Y=NC ad;ȯ 0"T*w!ѥKC*k61'*Ϋg܉ +s{v.rw^vzэrg$=X5UK(/=Dd˚b8@2ߔK`UcN˲-p7?w0 %v)nmD\KB(1*n-l.AS@;㤉(937|t#Gghm;ݺWXe= 櫂y`ע變=x1ZjN?\|"maS*lun9<"{Fg_ȉ.ÐmVR%iX.:ݿ z" 2tQ":˼r qU '9339 Q8GM-6 h$1r/Q9pϘɞU^2nɔ8W[\x/(DASL>RޤFsA bTM֕}S `COeީ#\`_vP2~4j+1lH+΄X`IĚ݅\(Kؗ0P/37G  1yٳtE/c{hc +?*z#[V]bNZ#|0?Hsn,ib9U,$^II%»__LyUqY 8ΉՏ^#c[zaN2%<_W7 v`ߟDy&իn3煉4YMKB k̠³,2lG-Wm VQT.kAۚ: +I:hNi* o蝧[3aw2%  ϋQX7=oQG_H",v2!Sh\$daݔwb~2Sy›H .ugL-b#r_Q];} yhH=lWmKCW˱H +a?ni¶̔ٹ((V D_;2'3':SX<{^`&fKm֙~耤>iގ rG_aG#pC]*L L.C$rr_;8+ fpF^!lP1K#vv(Rta&sc"!rƮw2a8YrUgSWQKLs8PS)0~li/+#RLS/i|wbM>WV7ow#$GTzl}6As4 +H +o7_+qaD0毚vc]q:]U 4<i ~q*,C*ys|.?u@־J[\[‡rQXɦ(T`mTarIWXlIŧPZ)_®o*Egmt9`=9MhЩjja2cleH/QdhrjnVaR\a*vdZ:/<ˈs\~1;m'R!El8qt}OP>8m"xNBϾ* K,O.j/E~./4vN _L`dVc 'tY}\M]yc)}n=hڣ{wf[&Ȱtd_N_Q @w= Lj9@D!լNhFlA(Ԝ3 *{UJHW,wq#4|W'Hcq7-,3մ2IT!kDC)L+G/FEV6nU+~8P߼G١xՇ@ta<)u`?w\S4wԩ4Gl dE0ʆ3Pqgt/, +IבĻ xNC OR3b{ɶU²'d[R;ztE + P_-lSU31uҏOeDaت4#ͮFZwd|A2-%\bz\`zih{F^L`D$*Yyuel.iGyyܙ D5g w_KӢ)(e8S{}k&rc=eՍj /HEŒ:~ 1thVZR&G_l?:F3El\ؓmʗu]J{%sRdī1FڝQ4Mz홤+$`#q+DI|ru/uw(tκ# ۯ>n8RO:`pW~p^.|+1k R4Oc 7/:0Y$FO=xru9 sV^45.|VȽT1rj#@#/1!颃BO$XUrYJչC+jR;TexZ܆]/yniJ3m="+#^to>x3Fɚ +9˓V(|zdK/ +0}[yCHscΦfksO͖]onynqPVEP '^qQةbpJ +`;`|?%ZC[DsOmD Iҏ i}+.q)U"`NSɽtW!QL e))]]x!ɢ}W#8]AJxw=p3|:So)~t'2G#_P~!wY0Q)? +ftpik\(}=۰уr-gϭl*5)̖Jp2\)^7zsV LW{"7^0:܂lbPhNZ!mY0f\ +6xWom!2G̏[ +ߌ<3' Kr/i~'zY t3btқ+n5uLԁvd KMMK|n2@|.XCOdbp!['(LB62{.\R nJI?|UJ9NJp&sKYϟu,)I^R 6nY|I|F5gvT.k0ws5'k/6ase#1A@]{'DF[JIhu#g#ޠhAɹIx=Uj`w)g~OzTiMXhԹArv!\(Q*"c x6c %[ڌpE7z> qx8=`,5?qbbk\,ō:n ,@-+#ѣilfh >e}6 )0?BiƇ +DhxK.i6vU(Cu>V^sȓ~v~NV1E#1{zKGͻ{yWnLy$ }mVţd^Ĭe嵨K=q&pIT-"vUP`aXsy(dAN4DUQܘ_FWPl|v[ÅC_!5zT&VQu'k/uU漵wXE{z`/E8C ,֊:~h#Y!8# ϫqVВS'!ؔi}hB}§A]Aɦ3e퀭 vu 54lYãK`s+9RUBLu:Ìia܎>&|2JcvMT;8hbmО4?é0vϾ7XqFXS PGV]ذGdzVbmT9 eoT6{-5\ϠKAsG*Iv* #<+gcD?rDb=NN.e"}B\cǠ$\3'؋ܫ_ _^NMw{&XO +V\׆J/kNrds* vʣ36Xtӡm4I$lY[|FZLs9B*W uB\CRst֤W +p^'ۇ|ЍΆ?_3hw.Ѻ^GbGP8[Wq1: c1̨`z7 gJЩiYϷuꑓ z?d.pGmT +vD0 _V^)Ά+Lt_ccG"84,XrƘHh>Og&Q8thUJ/J=OOu#d*^t:4G48,4%7ubQdpg EYLŖsNg{'l/&oZܯ#S{ؑL851W$\ ?Ĝ9<ꗹHOsC`^@|2@b!$6kfo>( +=& Qc"ɸ+"5$紏g Dp4aLdo8._ԑ8Ys,$pS9&={Lqa/6+'oҦ4=pYP`EF*KPݩu9o.$} *tzn\ӭ_J ˔&*03(z f55il(~g}z)$bP5m]l|Q Y^jpW:6+wq W]4!3UV6 ;ő|4AEU{x͍ӂ~BCǐcK-fP¿um~|, S {S0~32cqWQ,PjareG-wA(NoU|KkLyPSA1,x4i]$5ƍ#6҂@I<ք4(VmWyMueb +ɱckF$bdžel&t$o:f:]1'@B){(vd_r_3Ai9KKxN3],0#c}z_Cz@FE +ʯïsA˪kOK yr^AVBlO+2{rwʹj ?XT0(r5"~`L9A[6.ˡLYeBDS~ȴbžqr0/Bai vuاHjqZnDE>2R*:qh_˕(D/(^/+EN3f_Hͮ!![%mjNfdl]矌,66zάw }dKd[ 0+f]j-b+8$,ԅCQK +jrHq>]wvW ϙA 3$!=+wgpn5wDoL!9&M󮓯 ȹ.3bXg)*h3=Ԑq_##Zh# t- :ar x[W]bSzlkR] +<4X}Y? %YܢAi,/ɒӉ~$Tqϣk$mA{DecO`(wNп%Ӵ'/t]$LHf3'Vt0#Z;S]lfvrı8piK6Z^YQÔ/dvU:|XMR.0v R>gT$?ຍjRfĠ]&5mM2n!S(^}h>1h4z=- EBp.x9<`2T\.Qi`#5oY`;0h?cLs]][|-~k mWF.K@?@qy_=ג6e^GKl\W[]=q.x_gRWX5#͇ЇU2i벧'h(T] LS)"|ai$^b5K_kUMhCrnb ܖ->-Cف Q|}ZVYOci2O䖺zQ1=LhmP[693̊ֆ"-Ɋ冞H}&#-. K^R x" ֶ +pу4{VkrV&1T^8t2f&&L1%b za + \T0-ؗj'; m;QCgћn `T1(67g4oA +Y[cG圙@oQ8˃2:;W䭥wGVG9>]B/.(湯j Q7*im.hl6WvPz/ 7Jku©vxGs0w)G۲/Fk(.Ӊ;ȗ2jWi^ uc h!L>G[ bu#UE%6PKۓ)Ƽ( AU +/ uLߌVk%Un&,lPg؍]h /u'/j4}b<[r5cFZkdB rA޿kQBMG^S)ۻdj%Prn7͗ъ^FK+#Gn;Fѧfma16;ipן"}8gƛNkK:$EPR ^Kdz+oO1l#IЅb6Q-Ge.J(3YRd,|=roYXM<2M@kBFQ~= +UO٬dܫȗ-aHyGm>'=[9jjY~'U_?RKjLU=lJ )Nr#pf^_.Ca%=t*gJ#tGYe!4T:D(nJOxpɏY"nouF FqX~Z0xf? +\ J1 +D[}Y%OžC9_/R +;y:?l ej,&`%̳(pO9%"I.z".UBY* kKKRI+Oz˚Ob2 N:ˏ3%+ +>}uN:H?HT=hWd3#YB;ATXW5~x]jwafқ$3$=Nv2`*IY{?0¼=z;r#YvW [Vd>gTxx#^h>):ң; ++$zOWTkc߿3{8\ٿiXZz'U^V?7~G A"ZR)A$3R0'ӟ){a|@ ZKjIDr_>䁢 *eLxd$K(^=r(xq8qyg" +L6en2@k/L5H]jE^`U#ȹjXw3X+}] 00 X&)fmҬi\/M;k,!gI;X Z jv5y=~zVѽ*\N6 AY;H2!|?%uʴC-n$,hTX^r 5hFdpMa.3?;n[ +JtJ 3Iv=FY&pbi GϠ8c)$>oH$P)7 hMϝ7rkڒ*UC*}y i< 8'ļy, VfBˍ c#'@Ye=jf ~-x<#Pފ{.ɏϙĕ Dkl4kendstream +endobj +58 0 obj +<< +/Filter /FlateDecode +/Length 2973 +>> +stream +xZmsܶ_o&9+Nq&M][guGKO3.X$q(#v}!?$x4ӥLB1^$M_DVpVp[I1d@(աLV U.%%7^|=ۡ'NHbs>9>KV<9?2W}U}"9}ٞ⇓?_xrJI\ VSY$%+4Z':O:F?7OJD`!|D<9:K` >=uNXIᦀǿнvP|N+7IuwM{MM+Ye;KsnպdZpZTDśPHzc ֜ΈKoXSTW;_^p8bk3M s2l;%ŧ_G,9SB?3^\z2#.CS| ՛۹:R,]?,)16)^\z2#.}>У|š9[L!Ӓ)Ld@>ock[qĹ)=uA㍔6p0Cs<֣U" & rSr2K*M&$ +{TxQءnwwh"F)E@X4ُDVQ?eiVt95dZ)\Y6Hl/!=8?IHL$4hqFLdT"Lskl: 7evT= O,4ctvGs!XTT楴n]Y.|餽z5׬FHfr:9}SΉ襧}f_~ ?;Tφ}brѪv@:n #8>_0 ed{Ȟ>> Křf[*L&t@imэfoNoH7 AA2qEh0…BEЬ8^ 8] :O }(wϧ[3D^ϐ>#gA_@>D2#0vfv5&A_>ºp˼%Jf&\q,z>#jVT8q㵳+8GJ207[.콗N÷z7̝¨y ` k2krN, i+p|X k%}r(C"O]`7Ԯ6^o:bqDB&s,5^ OY.Yqa 2'2F@w?Ek\d^;CQ[Pٴ;P<.D@hFRCD·cF'?%;<;VwG" |}2{3!I9G*T3f&t$l#s<EaQSzYHΊ| xqHG/9]KП_4ǰdkˌ? 笐el6bR<BQxBDBHhvMhQi`Fr;$7z|`(5!4,aDGCu./F|$W7Y)Լ/ co;_ݴ7)<6"sMtS]&x"^dѩ8Le>N3Amt40NiL?+`u!"K=W2|I;18|v> +endobj +60 0 obj +<< /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 362.697 517.61 402.049 533.551 ] +/Rect [ 342.414 606.52 383.261 618.475 ] /Subtype /Link /A << /Type /Action @@ -669,13 +913,13 @@ endobj >> >> endobj -49 0 obj +61 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 292.869 491.309 332.221 503.683 ] +/Rect [ 263.599 582.211 304.446 594.166 ] /Subtype /Link /A << /Type /Action @@ -684,13 +928,13 @@ endobj >> >> endobj -50 0 obj +62 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 242.397 439.959 276.517 450.903 ] +/Rect [ 259.242 531.099 295.019 543.054 ] /Subtype /Link /A << /Type /Action @@ -699,13 +943,13 @@ endobj >> >> endobj -51 0 obj +63 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 347.41 376.003 420.495 386.947 ] +/Rect [ 360.35 471.323 441.092 483.278 ] /Subtype /Link /A << /Type /Action @@ -714,13 +958,13 @@ endobj >> >> endobj -52 0 obj +64 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 360.138 312.048 446.587 322.992 ] +/Rect [ 366.523 412.101 462.703 422.949 ] /Subtype /Link /A << /Type /Action @@ -729,13 +973,13 @@ endobj >> >> endobj -53 0 obj +65 0 obj << /Type /Annot /Border [ 0 0 0 ] /H /I /C [ 0 1 1 ] -/Rect [ 98.004 264.227 198.177 275.171 ] +/Rect [ 91.832 364.28 204.038 375.128 ] /Subtype /Link /A << /Type /Action @@ -744,167 +988,242 @@ endobj >> >> endobj -54 0 obj +66 0 obj << /Font << -/F38 5 0 R -/F62 41 0 R -/F66 55 0 R -/F64 42 0 R -/F14 56 0 R +/F39 49 0 R +/F8 45 0 R +/F43 67 0 R +/F38 41 0 R +/F40 53 0 R +/F14 72 0 R >> /ProcSet [ /PDF /Text ] >> endobj -55 0 obj +67 0 obj << /Type /Font /Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-Italic +/Encoding 68 0 R +/FirstChar 45 +/LastChar 123 +/Widths 69 0 R +/BaseFont /SANTOO+CMTI10 +/FontDescriptor 70 0 R >> endobj -56 0 obj +68 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /exclam /quotedblright /numbersign /sterling /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /exclamdown /equal /questiondown /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /suppress /dieresis 197 /.notdef ] +>> +endobj +69 0 obj +[ 358 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 743 704 0 0 0 653 0 0 386 0 0 627 0 0 0 678 0 729 562 716 0 0 999 0 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 0 0 256 818 562 511 511 0 422 409 332 537 460 664 0 486 0 511 ] +endobj +70 0 obj +<< +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /SANTOO+CMTI10 +/ItalicAngle -14 +/StemV 68 +/XHeight 431 +/FontBBox [ -163 -250 1146 969 ] +/Flags 4 +/CharSet (/hyphen/A/B/F/I/L/P/R/S/T/W/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/w/y/endash) +/FontFile 71 0 R +>> +endobj +71 0 obj +<< +/Length1 1248 +/Length2 7801 +/Length3 532 +/Length 8596 +/Filter /FlateDecode +>> +stream +xU\۶ i\q'84H744@܂kp 4<@p h+w{VCs|sV1ѩkqHY,0+7'@FE[d` W *k +p /@غXeJH9bj v|ph@'@ & w[qbqs W%˓"W鿇pGSֿmMZ^+5*Q ,.jW;?-!^strs*0+0zS[AsT8|@!.O:d ppCc%⿶Au U 7sÏMC<F.s?&>fbrP + ,p /CHonj=sqBaSXX+? +wH1$ M@? R3MBKz!A޿pYCB.H7q@n|4`>:-࣮?\?Q>:B?Q|x?цhyx2-\y@a~_¾{V@! 78 ul y``O0kn K)+EesJ- +nCԦr/>7|Ӝ" eIoʹW)|zkq!f iM3öh7^3\V*r R?-g?:bŰeݬY9P +Ɍ.~Qt-M/ +GdLa1:!&zt(դӶ>T^%mτ`M6!Ψ``ޛ.N 2,Eh/d;ōĈ R 5d +J"[!~Xg샦*#*w nQr*}Xo< ?i_wv<&wYɞ"C 3fz565ϵ4kTx)3˘˃Y_ sPEM1}^՝ 0icoqE/g8}ݿgT(hY3rpSk~SjHu]QZ#D0o5njڔJ + pI,ɞ8%-GF{ޤ{_:=wH3bz[ݞLh詚f'lS< +K8jmD8Nl+N~ w']`1zn:!RL +Ydؓ&̧7Pot?qu>Eom,=&cU=DsΥo],*B|Nwݩ_nBCl $@!c qJ"- s?UL7mW|Ų Q5NƐ1qy&&;Śpi<aQuyrlBgTNX-ʧȔh*YB6DC{TnxNf%^r_z|^vEs LS1Kj$c1BL ~2u4gԺM$I顴mdTg6Zɇyeo*|*Л~gc"-emWL۲6q wi~,Y-^(YIw:ahd!ܓ/V0-gs)\4kf(%'5wSLx#h4Ndc +I;ηTZ23Ntb/>#XrՃZ|xe~ӗHn71$֚o9>""]S/.*d=g>l+4vYd]$ 0&K&u=d_`g}&4*ކg&b$x22CiqWMk\YHd]R/`J{Yۧ'J4$8ߠ$54rIN9|J8O}R JOwI{<:*dR2EWRW"&0aF +.ou̇߄-m oME,!4_E?'(%87bLO?|(%G/\o{T+-N^ֈ"N5R槊fbl J(w쥴mHE%PM>%lu|I}۱o-d_ ͚ECL=v#II3}v5p_נdO K]G.nڷ7_"'բmbBL yʪԥ?U؝Ӗ;s|LvrxhNE$V*$!5[ǬvC삗KzTK̹m%%-w_ZRR0}Qnm6'2uƟc}ӥ|w3N15L*[[mcI *#W[z hj% yW)difU>q%D1pj员E+p_Zqgi}s\{ +iޔyTeP\ʹMK'W;}0;LJYj p+HXr$[wSXe0@@rgSRi|SP[L^6XߕFkby8r{*ܼHoD}@ 9]]/& Ϸ`oyahI 2yi`1Ybz!nr%MpjY-"dkwH"V3_E9(̕Gxh Ҥ~9VvrBlJ+)8^2,1lAfGG:iz0wAbT0Ǖ״yIr~EB,s[ UKSG*DcBj19'WgI7`fi5vStKk1;[3<KӃV*' +h+7QxhFgc8'/ɹm\^?{(9dB&Kſ+b5fM螅/De|FDF75&vnIsą$"\"sEOf$ի +q2Et(wH*xM{pkQTɲވx>#g}# XbT#e0z X){I[F,o65`xAL8X$9;eŎj|elP@䲰X؅ QBO1Mgw!ĩJT\KHo"uM։PGwl=ϻ&yE$=&rO|O$'J$1_9,(I;V=GYNKFCz#,NS?SVtJTI0ޓg6y5dz<2R !n捫 "i+f +U-N.oe 9FY>q8T!c.ˋ'^q ,*]Bbۉ~]`>Fc|7&_w,VD5--6}C[듬saO{Q=/krbm[[#@725EK Ms!5̍k!ѧe+~0P@wJ^af39]1:}xC߅[b,TwRX^u(xi\;0^")ҀCnوQ^B#xkI=Xt+v~ D͖}֢&FBW}dڛ`Cp4%I5FOfoRfbJ}lmͧ2}e'o$nג@/g +Ԅ.|}2F\7ۏgοk#( 'NxKCFrQbHHC?\ǘ|coeګ裎)\:L؝{5!T(,MۡCGu$u%ϕw2I5EE2}M#buF z:a(D҇W8>"Mr:7T  )(L Yzj-[*'Uf{ol$S#G}gnxoXNx,E ˽]Z3 +B2 /'N*mkIV7*XoS #fsOqP~ +a.5=M[xyZ9[EoʩsPV]sp@# wPߎ0ِ%'| +pEwTOm3%Iwfz0/yHڼ`)Z78xolYSM.G#)FEժ«KL ,k$j%4Q3<ˋRmjͱ>ǑGtYd *vC",07c Hs .x#n/x2p[l;`J)aWZ{o\B{ +1in +o!eQ@]13x븆SIo5Li|nj3oݜ F\(lSH9qUlIK۬ϰ#<ķy'tr5llVN"Inr`EZDrp(VEĵ*So}@m洈5J|qqw19Ӌu'Nxj6, +*N , +:xnɪLL[R;YSJl擺F5G;P-f]|öceؾX +skSaw.13R}֦g)YFe W4E7=6\7)o\],jtOJտPZse MpcM;lOV@zب{<5[͢veSkYD !oCs+:jg*C=6mhK),`C \qT:/n 2:mDe[e{ OjS4~JT~^xm"ڼuM>k~&E{׹36M2x/̴@rߌRFMU&/k];OM7TMۣ#5!b]}٘~L.Tug|hT +[q u1G\}ߍ"JöXOԄ'B1oGCq緄$( +dD>/1ق+&/K뒞ߛ1^S6ݬj\irֺ=!0zڬ~Fn;>P!NK6Z6U_ROC,m~9B==fӬb@zLEŭРŦÐvA#2װÖWX9"AzˉIEgB9;[n3v'- W;$yqev  +e=-s I㚶5Ƙ=OUԵhϳ~,HD.#pC+4/w7,4|!%nv@BoI|OMTDؘYj{f{EW:^KqBg}*[s7^)wV +R/p G/ +Uܑ"!h +:]@5q1F6uSI7zK<:snNQp*9M2U<ZȨtFk@۷B8viđ pÕ}c'4G.|7Sw^d0|*v47&eML݈Cv,ݖc^S N?'kлtE1_ڸG~̇ySFhF="6>^WOͱ9\R۝Rɞdh EX̖ DG:` |XSiRh4,t8.FSŰn&O۴LcK?e6JG4q5(f},D ?Ž[ǜlM?-6q9Oe6xml`oQt19rE^tP*5K`kWuaKa:k93}×`7Lk?+2]]gNMKdTӠ.|UW:E,i +׷:Y[Go0rq +b.uْ{XKLg7޵Z^Z9*xPQ4.Z5K sҭYęmŋJ,y{ na㒭bDgBή !0AEquCm&!%!>:F8ey]kok(*oP ׯ"Z+ |jlSI)I}>Wuj\5->2>>V$iaɳtDAgɳRڟ+'_^ 4Li,D'.$jp;Bz(هN8cS g,_ X.~ZNl-?rz{qA|][Xç!~= A]Z~=1ry\٢eH>k+Nb܀iUe=E/PkdEKG_W%WK6`߅^΢w(1)S (o7vhL!}({1x*2'J,}4? +!kB55pϷ50PF#c +3C.ϘYjWiDڎ3E3?)_&3Mmv/,VK7/(4T .R*ɸII:*z/%'zP^9(f"~2.2TGJM7/uNxӲ5 g&׃-\+¯-I^Ƅ Jj]]o"R:I.<{clf /Z; 'qbf=4d#+0׼?UJxCK3J{6 +ӟT.Ά1^e'Vڳb))& n^Ϯ "|^*~PbDj>L߆*|S "DSѷp7֨'Av ם*:8mT,GU*vk=_ +Ykuv{i]|ӝw4B'қy[쇢DR,CRf*Ǹj~%&JXՒgRV̷<z}˓o?oy?iӵ?fmŭj.(367=Lu'fRHD[mN+ZG6 +e z}3!ѯ@Un&-W̸=.;E33md%]a\G`Nls`{}1Mٴ9s̭鸾(_4}-ot5\R;2]%DvԻz9J—sqlH>5=+QD`w^=DEg@2J= +p2H2- b LOCe}rX"~TNS{zVUK"`Ľǐ)\|GX<(yK!$Y2췴?' +pWGMendstream +endobj +72 0 obj << /Type /Font /Subtype /Type1 -/Encoding 57 0 R +/Encoding 73 0 R /FirstChar 15 /LastChar 103 -/Widths 58 0 R -/BaseFont /AIJWRZ+CMSY10 -/FontDescriptor 59 0 R +/Widths 74 0 R +/BaseFont /YADAFS+CMSY10 +/FontDescriptor 75 0 R >> endobj -57 0 obj +73 0 obj << /Type /Encoding /Differences [ 0 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /arrowright /arrowup /arrowdown /arrowboth /arrownortheast /arrowsoutheast /similarequal /arrowdblleft /arrowdblright /arrowdblup /arrowdbldown /arrowdblboth /arrownorthwest /arrowsouthwest /proportional /prime /infinity /element /owner /triangle /triangleinv /negationslash /mapsto /universal /existential /logicalnot /emptyset /Rfractur /Ifractur /latticetop /perpendicular /aleph /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /union /intersection /unionmulti /logicaland /logicalor /turnstileleft /turnstileright /floorleft /floorright /ceilingleft /ceilingright /braceleft /braceright /angbracketleft /angbracketright /bar /bardbl /arrowbothv /arrowdblbothv /backslash /wreathproduct /radical /coproduct /nabla /integral /unionsq /intersectionsq /subsetsqequal /supersetsqequal /section /dagger /daggerdbl /paragraph /club /diamond /heart /spade /arrowleft 129 /.notdef 161 /minus /periodcentered /multiply /asteriskmath /divide /diamondmath /plusminus /minusplus /circleplus /circleminus 171 /.notdef 173 /circlemultiply /circledivide /circledot /circlecopyrt /openbullet /bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal /greaterequal /precedesequal /followsequal /similar /approxequal /propersubset /propersuperset /lessmuch /greatermuch /precedes /follows /arrowleft /spade 197 /.notdef ] >> endobj -58 0 obj +74 0 obj [ 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 ] endobj -59 0 obj +75 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /AIJWRZ+CMSY10 +/FontName /YADAFS+CMSY10 /ItalicAngle -14 /StemV 85 /XHeight 431 /FontBBox [ -29 -960 1116 775 ] /Flags 4 /CharSet (/bullet/braceleft/braceright) -/FontFile 60 0 R +/FontFile 76 0 R >> endobj -60 0 obj +76 0 obj << /Length1 819 /Length2 957 /Length3 532 -/Length 1536 +/Length 1535 /Filter /FlateDecode >> stream -xRiTWUrPA} dY!%A"hz2/0d p-6\VEEE7P%7PQ)ˢǭş~w~W!2w!NE@dQ.DE(\>*!1(j*|o?q"*NOQ IB5 F`jVCRsP'4 j q.' Q:I%a\i k -L`MNE"UzC%“P]uo)U$S+P?0(u4pH= a`ZuϮTBHF pGp $t!E4Pb* !e'- p0׮fF|}OT)ф,s|%/yf - -'(!Mcz D$uX<.I1FcJF:ʮ/2x7`1S@Tw϶)]/pb}N #eZ(>BKӐdc$9@ -RL]a>'y恲/x_Y>^ 2y_E1YsbSOHk?H13;| -A_m6ge ^[WD?V=?N -V:pO<Wb*3_P4 YRJv>RO7Px }H6Y\>V6n i:gѫnFh -!uCd;v6aqBޘ-aIKNoU禹utK> n_Ҁ^ű>Wpu(ʂ یځ.IIWE+A<D0ɤ]0^]66֦}Azk͢Re|~vѴ5p1Vyi;-$$z376n#W%ֻ'eԦe0vzԠ|r.-.II ?ab3#V[2'6[h?u_?!PAf(5F"Jendstream +xRiTWUrPA| dYaS4! N&U(-9nB."EX,z:gwߝ}_I8})qD +|r 1HouwGPPz8==b4ɀi^{I@4!H1Pj0P22Z.*`q X U8AQ2DxH9\a\ ik +LcMNE"ZC9Q]uo(V(DW/Ph?0(e4pH`@j)P@ BKh D0H *؇Ch/T-8|k_3#Hf6'v_~ٔhB|>te> 28 \FӘa7 C 1KR {$9E#ce׉F ^;ɠ +;gۋߞ&8>P +N &Uj |>ͩ?!-ZNsPeH}-%!*}^/x_=7R%`ro,J/DW[foG&y`"]vn5m G^c;OJW-ݹgcG hv3;풍#⭞a/ܫ1v3l'1k;']h)Tq.wĦWFN4Kp1vY_?! S@f(%FG#;xJendstream endobj -61 0 obj +77 0 obj << /Filter /FlateDecode -/Length 4192 +/Length 5412 >> stream -x]}ڽʴt4~%iyZ[,9$Hi_һN;HA;f{6{$0O>TT: yxEf >܋Wo6aev[a/TBWTe,Dii\Wm4˔K;о$4îv;wK;58mُSζf)Sݹc;,nxjcQmw6Xf;ll :m6Hm{R4iK0LXFbn7l?O0ǡmO7v]Lʔd( _qYiN3>lRMniۭ_{Ҽ(iZ -Sʂm;%?6̘{(H—Y;UJQf@{?hn-`둠Ա[6:]RBh.Z"Skqxe궋b`oy|d =MX]H Ѽmh/øZjY k-3 h{R^gNdƂ1Tx|oO]1ba"k'uJa`Gdڽ݄>MF8t>Ɗ!/-j=r.t^tGxR*Ԏۡ:jcDD橧p,ͷ ܝf삫Ko/iZ%J7D]Vx- (2&ɕm47,UEi.M[J@pTWV+]6OJ?$X:tuGFw.IFnhJo\ps,6E <0S8X'[f@~T7Wx݌\2Q8ُAxO Y#]̋5WPKT4eԡrkQ}lwЉ~ !Jˤ%<.I*g/ s4@t{k=vn؂ifYTdm[iE/4xd B`EMkC]UQtUEuUե -R}i;G86Mr~VEe.r;m:y<{Ą'6 -ҷͨH+:O+ܶT:/4DTu1$@ [t<1oa@CD0Meqk?G^*.&4RfɨVryy~⡵}hueRAO+|Ĝh]SN9sYhzG'AJamNiyhDHj}(H#R'U՟ۘT@NCiP(C6WJT65%0/,XYI9$h!N O+>$˲vNg?3V可=k_ǺG:u+>C%Tc_yQEGT!_\±m( ږC}Dg0LȫN󘫧ٴjv8*Q:EJx -KAj~a9wKVr/%7m/ici-=I?ۯqpX;9@ @,L~jNESsȉeD@rdAT\\E)`kld1~o(k4OqrII uf;MO0}]r}2=KIi,l[F`Xr gƅ"@kNַn{ө7W9MD>-Qӕ&K:nGָgh,vv @J{FW1:/Śq((2:/ၓ w!}W w.qvx hC%Z)N /G'SeA`Gj5l{3joD [׶tvG9EoD=ʄۨG\qp,'d/:Ex۷̈́N6-Y$íBTXXI -g:EATE-fkL@p{-G7q &xV -V -ߥtOOpD31 / -IWES:+WÕ{9#yJzyb,(ycT!lD~V橪[ <3^iXx߇;+̂#N>,Wi7{ĵ; X+v5'FK`w\OC#n \O佨RW)щ# Nw EXOm8r~QĪBEeLWr_9lg Ff<_4ؚL̫c45Tc;LJ1ؚa\a+] -3qcd&*+bkjYSb6T e&J߶[N-8$ DUŚ.-L.H-t<τĝ;O/g+ѪT/'3Uf0jIUixaeg;=s"<{9gK1r+7f)}_m%K-r}ղ0 -%EYE>m!ÚĥǓmpФX8-p(h1f =QG"؞:[PtA$H0#sxm80Xc*T}-ca:oS6fJA [[⡋([fEAK"umS:F Z\B9GCcV!$J.ACΨbE#07 `䯦 ɼq䱺L\)|dAnQפ - ·iܝͽ^2P-tNGɮ:"tD$}3DDl@ 2XӖ嘲`Cy!HvY0- -(w!aP˔t -j]{_Nt -Ū׼J]zt3iUBr: -f}Y3x FeP5ÞhN'&vV_>y0HIHa +#Ui dZ\,1qؽp ka05xWca~ nG g5rgj8va;i#CKSF_{w6:j1Ts ) bMrчu^3p,4Om"*tSVyr;7{U*jx iU:|{ߥFeQ72IGImoya!v6Ey6?m#U:Ɖ7Iq^m)v67GoF+ﻹy[r?hN2TcПǩ&Nj2nb7ڼJlflavijeYl&i{3CD7py Ý4jqw`C< aY=RM=bPF^p?^;^tjo cd QVM[&~%&=Ӛ۪8ʊ L:cӟ̚8;oG-O#fz 34kal4Q?J_tch@ 'b +ݎlSDRM۟inl< 2{R閧V+󤊡Qf yH3rF+fEN">" +aH53 Mڤh6G{X6Vmɮ9#)-G i82? lzί ⢀߾Glɧm3Tʈ`ѩ_}BNQp2v;pyd#!z}wD3۞C(,=XT!| jŊ^38fEЛÏt|fya~^K`i{R!Id['Gjn{4r{ @^0Wnoev^&$+GbK0  yln쩬I3pDJ?K2Dql-ޑ?9$9@#)ŊRkyT8edargOJ/S޼_9q- ^<9F\w&>„"=Sa@a|>o5QѢb"p:j(C Nc\+RԵR3?fy–Nv,9CtbeO QU C l.u#~{m QSyeiv?=iܐzsxlo~|`-qm8WerAQ Ƕ(.*f91ʮ?i S6g3[Jݟ:Z< +н@_Qܿ -ͪ_BTQ k_pAEq及Tbh#,*@iJ|b±0tXAѻܟru%ˑVboҮ3}DUQ1/p!Ǒ (K6:p5hqi2dLWsf@FPݼ5X VDqiSpYjx,TһX<*]cX.fdxB*/e$UI"n-01`b(ЋD\] _)O$jfŸ 9Rd2*w/|:FܿE _"#0K +I Qߎ?co:qʽ!4IW:Gic5 + ZŒ&* , +\I^ !@>6V۪Be,ZGE9\9N&[|_ouo1,fR%DRFeV˜tsĒ$ %p0rl-^Y WpxeH]~b=e)auqClQC:4< + DKt O2笣nbl9_,r<{00*7mJq^p2-|AdS%0#Z$GIpRkׁY1odսZۯ4ӧڏ79.h-Y0E7p̻p<U|na[u$i=3g0x0>qÆnAg )o:QjQA, |I__/.8`pZ  H|Лv98o6̨Q|l">Pu㸒HFc%JT\Ixdq6f>n"Ԙi&a"!&QCb"{ffbqn P@`bj]QB`|bF:@]y}'ȝHri=љ̬Nk;G!2(~_ f19 +M8GQx[Bۀ&Cd*`D"H{Hģz~W`$6e_" Z62gXr4A]&EC̩ҲDXx"(Ⱦ ؉iH4Z:#!K&&*2Y2|w$7? Qw7*|X?oa{A?c_u ɥl̈́A_N"}f +L|=33ǧ R%exlgg# ph ZïG*W?&ig]SP"Ԓ=D 5oL[(U(9,4ӥ`o-IcQ,5E{8.>/& u1.%Z7pi5s\ SB@.Mv%[((ȅ:Dף5>+jd?8-ÁUʉݡb& i|2re5>okT%h^i~ ~pA5rhcb a4ȓЫ6lqT(/ρsVհTS6 +KŒ-mVa<5S&>?=L9ٝ]2ΓN4WX&dfve#7=׬ec#{IN-R)aoY:\ +@jSܙqYԙVq^!hڽqx>pc`0^,^wtqE'm69d25L{m +S1Y9ApA ŖXerQA:bT}ߚG3(w,Ɲ | «1KR: i ;V;՘D͌AId:ңC/$KmTG(xONG13|rk ޷O߉DM׳C4kb*$~(NM&:k14j߻ݭMx+` =\ +\p9/1rUWNvoTf9Pj7L-)pW} gz1ֱSc/ t1Ijr5AWh4Qf]аz'{=xzwd5 Yp+n{C<׭"3ݲ<{j*>eb}%nwRɬ/_Nb2G"ټI T᪔SXӨ6Ok],u4Uu[kN.%fʗXJ˜\2-]VhJD#R7+=-%{0 #\E +(z(`K7b=j6tމ, L׽*?wmT 1;!S7:;/EcDGVEVԑyInpX?z1w|eRltI-nu}7 :9y$bgP M~t<4~Y-Yҝs,}k]A&jMl>.|Mf-%T8 [ep4VzSd5[.{\Lh:Y3͙^eq7:Xq (< 0 stWҌBK:ӽ ~Nji]bf`|i;L ~"uJ %42Kn,Nٌ8Hw i(ޝU9*HAñ4um:R)& w7:4[R7vNssfu^3_Byؕ74 I lhb9>%YeWQ+NQ`={(_ {^G1ʃ_BksY8cMɘ 8J ygB0ˤC|_b2YwOzbY,jm"*ݭ$(ӕ8hfO35ӂ}2)fp~E%Z0_Mi"Y'L | #n\!,o׫M7>Gz+[AFf>]P*2+o?$ZbO`N`6WfJ[O֙W,L$mHp ]|"=w2J"ᒍ2ikS}+]3a|҅|rX1H|!jc]QNbh3Rڰd|xrZ(*/G1 Ⱥ +?TV D$0gq=_/cendstream endobj -62 0 obj +78 0 obj << /Type /Page /Parent 2 0 R -/Resources 63 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 69 0 R +/Resources 79 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 89 0 R >> endobj -63 0 obj +79 0 obj << /Font << -/F38 5 0 R -/F62 41 0 R -/F11 64 0 R -/F64 42 0 R +/F8 45 0 R +/F11 80 0 R +/F40 53 0 R +/F38 41 0 R +/F44 85 0 R >> /ProcSet [ /PDF /Text ] >> endobj -64 0 obj +80 0 obj << /Type /Font /Subtype /Type1 -/Encoding 65 0 R +/Encoding 81 0 R /FirstChar 62 /LastChar 62 -/Widths 66 0 R -/BaseFont /OHBVSP+CMMI10 -/FontDescriptor 67 0 R +/Widths 82 0 R +/BaseFont /GQVROM+CMMI10 +/FontDescriptor 83 0 R >> endobj -65 0 obj +81 0 obj << /Type /Encoding /Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /alpha /beta /gamma /delta /epsilon1 /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /pi /rho /sigma /tau /upsilon /phi /chi /psi /omega /epsilon /theta1 /pi1 /rho1 /sigma1 /phi1 /arrowlefttophalf /arrowleftbothalf /arrowrighttophalf /arrowrightbothalf /arrowhookleft /arrowhookright /triangleright /triangleleft /zerooldstyle /oneoldstyle /twooldstyle /threeoldstyle /fouroldstyle /fiveoldstyle /sixoldstyle /sevenoldstyle /eightoldstyle /nineoldstyle /period /comma /less /slash /greater /star /partialdiff /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /flat /natural /sharp /slurbelow /slurabove /lscript /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /dotlessi /dotlessj /weierstrass /vector /tie /psi 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /alpha /beta /gamma /delta /epsilon1 /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /pi /rho /sigma /tau /upsilon /phi /chi /psi /tie 197 /.notdef ] >> endobj -66 0 obj +82 0 obj [ 778 ] endobj -67 0 obj +83 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /OHBVSP+CMMI10 +/FontName /GQVROM+CMMI10 /ItalicAngle -14 /StemV 72 /XHeight 431 /FontBBox [ -32 -250 1048 750 ] /Flags 4 /CharSet (/greater) -/FontFile 68 0 R +/FontFile 84 0 R >> endobj -68 0 obj +84 0 obj << /Length1 776 /Length2 1036 @@ -913,102 +1232,102 @@ endobj /Filter /FlateDecode >> stream -xRkXUFG@Zg VevaYvpAV6X^d9 34n-JYdMSK<)hV^LQ1[_=s}{y 8hEbhbp{E0XXbb$2W!!|F["%^aA ( !04:68 LGx# k%I f@q"X3IMi {ƍO!d28SkȦp&q"-z'npq$uA iy  F2@C㐡S4'ᨚՑRHb?Od3cKz‡;3?"ta|ctj-j5CA*BQ1G]Ұ) *H@0: WIU  -f͜cE%i|W I5.,@'*D)~@&EW"^7B\ Edҡ.fdHC3ĥ\![i,pk֔e*-ȘcE.?T/tv}w= \/^̴Y}\mN?Ȧ# -]ؙ^D]Jܯw,;VVʓ[Qp7~35.ۛ&'~~|KOs -5?'ִ?pvaQ>px>8&RqZ ?Ӣ~{E^";22hvC0uطǧU},N%?ߜ{.(ǽ;`k>Zo.+2$F÷!홵w5`UZwn WE4KmJ 7;ȗfhCVɫ usMux1VRΨq:B'ݦNtQ&vjAƮҁi-/V}}їH δt:Yl9P$͸6S9mWYdW>6\^yC<(显xE)h/ke]6+I1KBP չj_& LLy#nv+{zM[ Q8uzNYmsب% -*eu9ayǻt1o/ڀTN@UnןFy'.Ќ./hT`ַF[S_/Ljiy ^MSY\핹(+zAswǖvTļ=6$qZU?6&>xp'ݘ0iE[CL^7PxKt)_c!.9n0|ҖQs_˿[=e׺v r]g\8Sjۦp|qjV[_go,S_J^n,?xd[jdZ:69p2C R6؏67veM٭o~x;dGQv5k$˙<7 aݥk 2y-Œf#wu8I, ?F1TǞ>IR;40!qs;7¹]fn5Z]ëO۩keyO^!mw5N ZzG~?;F(qk({~>^Sl(u4꒽lw'Q*% }2;Zg籑Ttu%9aEwr'u2o埛';X(z齢gݚn?!_^$>.'i޴ʣn㛎@W2:k;1Uo,}=%*ИJxg}n ^r-"o3YOSm.Px?Fm7?Y8M6yhsDS&̊=/zؾO=Iy[=3ou ,=3oqaݍN +y'vjs|=-Ryn:dJ]O>NWQ<-ik-5Mnߝ`,(4!w_)rkt?FBYendstream endobj -69 0 obj -<< -/Filter /FlateDecode -/Length 2027 ->> -stream -xZKoFWhіR)"=%hP$MRv;}\Ҋ-M!og -{>^xIl{YZ߬~@c/AIHJٮ.إm_?뗏91J@y1i$]]Wܖ&\܊^=j}ٴᥦͥz.Ni_.(WoEu MVD( -uH6 p}^uE] EQ)~W觍B t{@۫\p(}q}MC02XխJ/U/Omn IeZӁώ#{Eڮ3-: ΈF:H;#g9Ky_E۫Wa@XH:%c$ʹߝz,ïaؼKMg,0`m^7Oz5z9$^DS;3E:DLW -=[@}ݚYvh>Wc2gF6:=ˋV<7Q y-ZL̚T|ǻC٫;YlȤD1EQХ(:gX?/CT[uKETC_>eɒ:!J|5ԑL->8,ny}%z|5sn. o1^ (ABjUܕ33vTw -@7E>nMfצiGk0u>p@;C<1<!im;kӮv&OȐ&d$M)en5?άuش#L(hgg>"4F n.=ʛZk㒥9u9t,@(>EITPھSakˁPbZ1GI -u3b-`05$ Qx>€|"(yWW-x2<Ֆs8r+͠p fљ*op FSv)x - #r&"xJ -J#m~f'HCY 9aY-QNĐEz&"Xue@F`o@ h,=66q3'Kys -okݴ bl " }sUx -Ъ*eل 7䇎 -5LP\G@]S̙E3uڧM%Sw,WɣE:>V8<s -x"y&JIv.s.r `1䃀 +L֖YV J#q͞pA~K?'q%x+i,>AQ0 -:TI#tL@$߬q$23Jv7CU<f{I]GDb <h9FQ)̜h{Ǒ-[EďQ#|KG[qD9,z_li^ }`> -endobj -71 0 obj -<< -/Font << -/F38 5 0 R -/F11 64 0 R -/F64 42 0 R -/F62 41 0 R -/F69 72 0 R -/F14 56 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -72 0 obj +85 0 obj << /Type /Font /Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Courier-Bold +/Encoding 81 0 R +/FirstChar 62 +/LastChar 62 +/Widths 86 0 R +/BaseFont /HTSXNJ+CMMIB10 +/FontDescriptor 87 0 R >> endobj -73 0 obj +86 0 obj +[ 894 ] +endobj +87 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /HTSXNJ+CMMIB10 +/ItalicAngle -14 +/StemV 113 +/XHeight 444 +/FontBBox [ -15 -250 1216 750 ] +/Flags 4 +/CharSet (/greater) +/FontFile 88 0 R +>> +endobj +88 0 obj +<< +/Length1 777 +/Length2 1024 +/Length3 532 +/Length 1588 /Filter /FlateDecode -/Length 2173 >> stream -xZݏh飿NrJ)9{<03Y{E ,k.~Ujzp?$Dyv$Pt=MDLS"޽;~ &-y;hU0}aD+<rd|)dT)4'" -O# 3&|UԀ3,@ g3'뾏c8"ٖu6{56Ǫ3M -XWfF_ZJyԶ^'x*l]oVVs]Ѷ)9z\d4KPhۄKdn'Ԕ!BE mj:, jq*Ey2Ȇ4NhۄxR>ϲ"kFuI"+A56(-@`>OϾVNob8tѨmuCE<*`:@-$(b:p2ޕU+kүVs -߷~rӻ chφ -B˭e&UF JY؊/dt.s:焁t#6G7mf1m[Ӷgڦa롩u{ɗB{,6/h^C~'hlޫ**PLSa.B ~s@Hn?գk^5RMm?v>zj^eAT_N"h~KG@FـTOKgTE%r]JĀ 0rũY2eZe[6'?2ڼ8:zQ.&V5wώJnt;4RW8ԍc@Rxdlak\?>Ȱ4ܑ'sʇfXюe,qǬKYRV[{)"1@ϒ'H 6؁'l :d;[FygRhӔ^,JXB>~RZwFU͂f *EC=*4Eqmyj`У3ɉfVԲ+KgekyEtvg]ytVZlx}u8Y?ӽ[U}ܖճ*2~z=#4㰬rm1l!ZDpnØ=՛Yd0` wu̫ް7z<3uybYzlGWUvݒujkξc= O3yFgFO˓3C[ '&ݴCm`)S?IGy;GϊPZ(t"BǟonQ*BgoDxu+|kCutMXSbyh u)8A8IR478 ƭِ Ǣ-ܯqth}F);:/-"m[(fC#AVDeTkl$D4zfA/,J*`g;ZtkJκ%[p|577vg E^1̢OPF_f7y^0'K%wendstream +xR[TWEY(R /* +!sC&3q2(RD"/"EyQh-X"H}u\3?w= 0w>Np\> r 8' J^ +1`g8N|< i2Ɖ)`ɚ$9w $QJ %P0BB* 1 NP(d"D . 0pˈ\Im +XNd$BX2@aD ߰ÂI"$(H$A @N Q q6\6a|PDBPJ("&Su#ora:<,"NuC(N'K!༦OakLD +as8\Hߘ HR̠F< P +e[6NP@ 1yv6nr_ [m<`cǣwG8Edb7UI1"NB2oBםEg?H>vrKNu]ĕ=osAAjiB['V~>S;lQ(&.#W2Xd# v吳+gzirIAe罙 isR~Cgu<T訚ҞHc\QT-{5mq[;1>oHĭW&]g%;>g=x]0s>^d8i3E7D G u|glj)p}g[&rnAzȂZ󲍭)V3X%2[o:gշ.f%YGlnDJpirI* >\WZ5^ƭnkzUQ=V[$aT ;c|.Io;j0ikzVhZ1ң%=䌴3~ S%5Ѻ3Y/4;eEmUH\̥VZfMiuRSUfg{>fj)o|=AQAljD)iBG⏺Xђ♩w1EF_6Vkj48\T]s^3Fևk/)s/yŬ8xHݞEGd-3ؠnRWK1OW\&O?`tY +ZqdJ;SJ?31 #蘙߫}qaN];k|omrnt.}~z$=b>56%teÇB@AIRiZendstream endobj -74 0 obj +89 0 obj +<< +/Filter /FlateDecode +/Length 3012 +>> +stream +x\ݏ۸߿@?$QPA}KCsZ[^-GOQuv`-i8qf83 e]B*.PRP3IR,?e Y +`Rwr$˭0UK()C;;c硱0w>Pb~+_1nަso7AALy.KSpN{ +gIfKp1l&k;_F)R48> +6'֐7_r&?p2|9>G=yB:.!)=ط&P{_d{`}GYcAfUq?k@"y{ww,l?Ar+a3J_jFN{PM2dIzE^ld@Hgd<,G%{Vz?j=%H;;cIWT&nM'y@^{뤎BMs2_eM[J-E3 zE;mffKD6Z]+ TɊe n(C#;ek;kLBD2:BG1gr$:]^c}1XۣQ&# T,?ZERkg0/PD)+Q̴8*c tcթذLhQaS=Sq+6Fgw\ հd%7RU/vC·rS up1 K<ܢpqV$.)2&c;4!olHTomJNnN]10k'7搱rtǶ2ĝʐ7{\QD83)CQei}LV_!yטHN.&2MD0Do'W홟 ϐsȂ*43MؘɹlZ䇗Rhd,f8u ZwQ5 +/E"U\[7q]Y\3. Cs4[xbRh @oPS6k#kD:C'YE2 +4' +(^[xn8FUM`h5z}`ia:s-a3+1r r@ޕM(VbtbnĜHD9* *V4;v`{$IͷS.dxKa!Q-D!Wmxmxf4<3$?ff<`lV ,,KE2|.B(NM隢F*ꅊ*`Qe Цv>֧@>f-$`>Vcx]EE#:#$?f3rIGbhf!&D%5+ +5G4(4!&|ПvjAkL}Z Uͦ;Q~qqE +gWc=O!)(X\fǜ":$@B^P/vA?/avM;. ,BD# 7ܢ  V/YY"2|1[-/a{=g)+dAh[jJA1)eb5ܢha'hUy6[ĖfǙ(e=ٗ[/nQ)/SMR`%1būOJ.44C17-; 1w \MC oO((R`2 +֛{+>fe㮱tvY,BQIOG2q 4mz\'Z>ldtZlg:S5uV)r,#@`W-X=lD)8ꝩ˰}k)1HTǪ/wӰ)4\@ +@YQ| ,(') +%_;U ygendstream +endobj +90 0 obj << /Type /Page /Parent 2 0 R -/Resources 75 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 78 0 R +/Resources 91 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 93 0 R >> endobj -75 0 obj +91 0 obj << /Font << -/F38 5 0 R -/F14 56 0 R -/F64 42 0 R +/F40 53 0 R +/F8 45 0 R +/F39 49 0 R +/F14 72 0 R >> /XObject << -/Im1 76 0 R -/Im2 77 0 R +/Im1 92 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -76 0 obj +92 0 obj << /Type /XObject /Subtype /Image @@ -1028,7 +1347,7 @@ x aƍ́ ⣏>СXf{Xre\\X|y׮]ҥKkh"{v6̙#TX[zAP([Baa+)oޓgW?;)((owɹ,==N:[oլYSoNxxuLL #G?~fW"idɒsIW$o~> &ek)ShBʌ`{B2k׮]xKQ (-[80gvĘ09 ԩͮ0֥K&Mԯ_'Pq2QF MY_yIII!!!_mA|QQQ.k7g_;}QuG˗;0.]*a÷r:%mve#v8k|7;֭t_\\|ő#G tޝ+wޑ^{55[BQQܳgO77}q0Q,mD"&77r3n7f%J2.5 ܹųnFO?tVh 7|,0zÏ̜~XHK,i{>y7 Fll, #@hqbnҘeDgۺ~X| ͟ 3ғ%( -BP("̚5K`mp)ɓܬ&EI%@adgge۷O bI$&&zzzePX׮]@ɍ +BP("̚5K`mp)ɓܬ&EI%@adgge۷O bI$&&zzzePX׮]@ɍ +aXT z%8K|G)wQV¼yŀX/V!osCJ0{Y^VezY^Vez}BP(v79rh:\~]^Q\\<|U ==='M]o.[~#rȂ +$uԩ\("]{_lyuqPPPJJJ*Ufqjdlk`1Av+^x<)))$$D\ mX" >>_V-yRɥHWjbbb:v׹s:8jРAӹ=`.keka1AnݺլY3?uNdb{6WB[,|PBkJ銈Ak0% @@ -1056,7 +1375,65 @@ m BP( BPFYRendstream endobj -77 0 obj +93 0 obj +<< +/Filter /FlateDecode +/Length 2101 +>> +stream +xY[6~_nq[Tjԋ&)Mv ﱏ`؉TV\>>o (HRq ,؟7apߴ#p&qN<70(Hald 1 vͿ~6~Y('1XF_o7]l)xe[}m@3VKaDx#$*c|.xc"$џ8wgT~DZҏS(ҳڡ>ٶ?tߔÀx6Il㜑.Cگ^c՗#fVMF)D*(VλEEb-<F PW RU{r'B@O 튧2 E\#1KeƔF\O ̝Vw3fHWgrlpUZة{69dTwxQGɈG?>E(Jmȟިt +|/ nHW:tV /jجXp|.z3Tx*r3IAYs4nZJ$'QD%#eLdILA?Q6(_(EfTNk\ܪ8"&r#&:Y䎹xc)~~`/Y_\E,~{%ܙp(Ok+A#8|_lp_ŔSlXw"u)CxHc7EΪVfh,@y_$֋ӡj&4+fzA<*0v0#KU`֪&jreԉ^ݹv +Sh,mgm)2]*APs2!SxlkRݎ^eɬ;9_F{CEL"I M;q,2.(+VIYR +ʼbN1批)avl}U.>6(6șudf_}Q?Փ&+ޏUCM|4jprVTSF3à\dtF4)_x{3"̠E\9SJpǖ?7v \endstream +endobj +94 0 obj +<< +/Type /Page +/Annots [ 95 0 R ] +/Resources 96 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 98 0 R +>> +endobj +95 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 496.344 350.981 536.812 361.83 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/lwg-active.html#299) +>> +>> +endobj +96 0 obj +<< +/Font << +/F8 45 0 R +/F40 53 0 R +/F39 49 0 R +/F38 41 0 R +/F43 67 0 R +>> +/XObject << +/Im2 97 0 R +>> +/ProcSet [ /PDF /Text /ImageC ] +>> +endobj +97 0 obj << /Type /XObject /Subtype /Image @@ -1230,415 +1607,130 @@ h2 BP( BP(0')9endstream endobj -78 0 obj -<< -/Filter /FlateDecode -/Length 1052 ->> -stream -xWA6 W蘬%˶ Nk[j;γe$Kc-C")RHJ늠>9h*B%[m{ه9(y~oەohnПhoNXh117"837!1CN{D98 -M90`Bi9} uހZbKmP Vl_Vj89jE״c)˙ 9Gz˟GBcd)۪dS? 05o4q/cUBg,6/. ע?%R;+GsUw$t~Q^X{mʻa{ց.Kc'ctjعإVlc8Lz<ϙs? ج>gT)͹{Q Oz,_L$:vQR])&Z "~JZ]wz@Ӡ)I1:H{>g;ƓD'^L^)ሓQ˺8]Ko^[_iS X+um/uјb?_D+v $Ƅ >Y浡C筦8K2k%8+Cao(mV"=-q -Z6R'Ye~qU>ԳL'і]2]Ek^9K B -Gjǥu !KPQt_Pvߢҳc7dwiA@a"_.> kζ# RP6@pn‡R׮4q˾Z4.U!9cU{ -njp -"S}Fk$۩%}s{ߏuo^pVbR> -endobj -80 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 499.045 503.613 538.227 514.557 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/JTC1/SC22/WG21/docs/lwg-active.html#299) ->> ->> -endobj -81 0 obj -<< -/Font << -/F38 5 0 R -/F64 42 0 R -/F62 41 0 R -/F66 55 0 R -/F69 72 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -82 0 obj -<< -/Filter /FlateDecode -/Length 3486 ->> -stream -x[m۶~;OɌIZw2m^@III.ﻋwRti&,g_ Qh$DT"Zn~SoY "r]e,# UkoWW&[K!,q6KJ(IX|$o8yt=Uʌ6CUCۙO]t fw-͢fe }o&9RCo~j̗Uanvo`z誛(=(ꮇ]ǒe['Z /J2-[E,euTMe&5u5C;}kI>`*olK<O24㭵Z@"vg Po=}l%b$iK2YbwŦ:*j -cE˵k)x\yʉ`yf꾹ߙPÊOqK2z6N*%8 #'-)솊AfyvKHRbP;.c$%(}=Y0aI_i2^[[5Rj@Ͷ_x^f&c[N\Ԛ֢Ux) -"5m?+ #2ߵO+ܻf6DY鑕—)Y:ʃֵjN{5phW+v-#oJ) ˃`$򺭞f/E׻-p@]pqBPO>` k)5q P2iEh@,4s|` `鼮<:F.Rє ƦQk^ڛx\&6w`/ @k%\BsYR _VD `sȬ"rq@+419J?(m΁>܋ ~,#wu6lⲺBʝ 8d,ZYCk: A 7S56+0f8db)xTUרhǕضzcEudD%W{P\'T@Yfv:GK(h(붯wW!z'DTa!sͽ4 Ɂۍ*'Xa}fsUݽnKuzvM?.NHj58" -+j숕iP9bu!+űbG^:p}uKHTpv aG#5GwG)-I鹣PqII_\QbQ AGX*As]mT(}[W}co$LG - Yʁl -ߞEZ}٢*@À>{MdNa>@ +G+}¾;:q#\=- -"䉱!jc}&HerETXkj %a,>uh}nJG/@nFqy> 7؀79ϩ3{$*c( ZzzՕ T ιS|Ќ$Y:(d[W|l x3[=ٯhUA)c' Ad21sfΕ;?Waw6eH?N1iuZ"{Ԏky)cj3gTׯO4$9&]L X1?Έ^).$OC@YI^qϹ`QҲk-9^lXrt^69$u RӸpO<)e:YLص u枃;}b.K7'IJ͝|Jr *H0 ߂NrՌƖM9NIݫޢt"T1ڍBLAY+/iXseUXצ s/{*߂7˞Eaa!c2жjޕLIj )#J܆UD(ok,| %e j)2ԏ* -"J95~b4̔G]w=M){0'f&wB[xM%di_"8SI.eԁS -|H))?i&0Jx7ܫыGB_K%lr'yMnJ Ǽ"h`?L!-†ܐ;9ɔC_=ikU˰cnO@es0a:HJ̽Bvۊ!|пfK+qS.P#I|B 4;zPBbSدy51S?Pj> Bރ [ )LQZW)FGD;Ud(m=OQ%PR|0V!~g[`G( Sww} +ػoc!Lkd[y]׻@. )iFsy"=~ s>Jp/VLA0\eXc`U^|N1)W`&GArwT΀ wD=(z~SL\b@P>k찊ޞAG%9<?];܅}WrY͋iʌUlsE~Xo6Jϋu;>3grь1%Ʊr-@=0/s) ħ<8ǖb3;endstream -endobj -83 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 84 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 86 0 R ->> -endobj -84 0 obj -<< -/Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R -/F66 55 0 R -/F71 85 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -85 0 obj -<< -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Times-BoldItalic ->> -endobj -86 0 obj -<< -/Filter /FlateDecode -/Length 2748 ->> -stream -x[[oܸ~_2\Im4Y,ݬ.A˱v{Hi(y3E#Q}$uA2 H癢y_ W.?,Gdf);ŏc\n Xҡ`Lfm<[Rm-z۸y2:r=? JP$@@ *;[?tvVoc պ]VPzGK3A#™s_ߔK Wû_ DvfTQA7u۷I)4,0:9g"4|qruƿ&|PZ3iشժA7o6͞:%0o5MaRAɨoS``b8v\?an $ пBF,31" ,-~}7NnP3 V(g沔T NZ)$$t9!u˯VeOlW]vԮ!-8:Oe#Maa\Y̳e*ԄU&1ѭH5dTBJBP׏eؗJP"͙L4wf5g#H_\Pix7i{&})* fk7TS"1F;PRרIsGL^ܬ @zAM?kr޵O㒧wmn@Qrm*͇b {Bs] 7@SI;F;sQYБvvSivN;f.@9i7qFb\5i)mjt41]je$n"J#;H-1N%Өͪj45R5>RoI@(arFƽL-f,\ cI |0|C #iXWWUaٻFuǘ ⍴_** ]a%X~Szhโ:s!VDѭp쏕ԃdܤ0AȼQ!vnIΣ$ՁYi{VRǩ )4~6d-QNx SUs0Ʒ=L~eۦ&Awlː 6۔xy"hq/Kw62+.3u>r9 f.3!$􀐻Vq0N k8ⴷDuFŕYte.WiuM(AI vI[F '_cMʴa`~l$=R(.<8 -&Q]@bPbf+da .pҖ]I@]}!AtDU^1Vu -PЀxR0k>ړ^!vФ cs|oW2i1vY}opߧn^R{G7̏.͟*2uG !%?:C 3S# {lSRU?JwsEC?Fl ́m l{A{Au>dɊ?_/xendstream -endobj -87 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 88 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 89 0 R ->> -endobj -88 0 obj -<< -/Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R -/F14 56 0 R -/F66 55 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -89 0 obj -<< -/Filter /FlateDecode -/Length 2728 ->> -stream -x[ݏ6_ؚz]/9\هMY\R"E׮ˢ6$rpf8r$)E}/Kz%UY -ASr܍^-.]vŵY>K1+D  -z/ $7׋;STfXVL0I ssDXϫlo 좺m~S]fKsVM;|ŧ^[.Ww?VO}Lteh7ejaMnSdP\Ee@(TamrHXTPx`yv2,zW"gT EREq3ƑPSW։r7`'Bh;qx3_9RdBbax&"4G@{d^\`s -S=fcP~'Av:Mٗu  SRVY\fD$'=盫yȝl 7"<Qyk^U)I門Cְ0 ^{QŰN;< (>O>|9Bc׾D(pTC LA0t)1pZK\R[z!OMjooYtz+s1b gLBusٴ ԅ8 S!LzsX.fmMOlQ;Ig5A bO- c"ք'X gw_!8SwZly]o? !+zӠڽcSTMk;1ڿsJk6`B!Ф@f޼ys_oڥ[ςaP?ƠUݭQީ  r,3eʱ,@aÏ87MuZR2f/0}]uA:ٷe[Sv=:T8&8*h _1$ Jze`@kX}RIdNȐ1/\HIenʦj <HM^Zҹr >iMJ ˑh&X/ŋ ֓ZuIܒ"glm ޺ R\~nM靭˞Xvg-o^n:rBbctaN1" 1jGi@ ޠv?3"l"x.౦ (J>Pn(Gя:?i:gP_GhJ͎B $A(c6R[zS9Fp.n2EyB$:K-vb1X@SC k1frn$; $IƮ"_vڮR6I)Cϙ^R5Vj -k&jCd\! -3.PfepŐ^!HK֒&_2gSpxd#b!Wqw8gd4.UUkKPDʵ=;.W2 \[ֿuxߴeoe7͡ƣ^;C&]Kޠ(qC' 4W xR3W!D!|l@X & - 4K]=Nbĺ_9vKI1^Rɗ%cyN2N9WQNIh'j$\8rK.Q}eDM՛_wmTHT ]ƫx!j8D@dڊomMPj.VfӀdvnTs!)' 3EsP-W Tc9tƳޗM8 =9vq_<OӑǬO.\=z4Bգ4=sz4Bj ȹdUf4!aRW ըb.joۻM]hx -<12]U{w:hbgƪjLZ?Q#7#ln&W׽ -Vd"Z.mUŔK1{\ "g1VCM)wk7!3QCAmUɞfqafI)Q0$ #B&d fM)D' j#|qtk9(O`b~](DήYbˁaqs$>\?Q$ &œ$oc~WX Aj@45-ffendstream -endobj -90 0 obj -<< -/Type /Page -/Parent 2 0 R -/Resources 91 0 R -/MediaBox [ 0 0 612 792 ] -/Contents 92 0 R ->> -endobj -91 0 obj -<< -/Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R -/F66 55 0 R -/F14 56 0 R ->> -/ProcSet [ /PDF /Text ] ->> -endobj -92 0 obj -<< -/Filter /FlateDecode -/Length 2375 ->> -stream -x[[oܸ~_+FKvSd_M9V1q$%i})$ɨH$;N'IQ$q%K -RW4O -To̲ -gɻ/n5g"amDY1 JCzW7 ΓjCNR³:,j3̂US^wR+cڷ BQPygx" ͊j/V?ƾh]Z?O#/'8U"1s<wվua1aLEF ~__)isi͔B;j#b=Sg r1('QD=OPUՇsI#堳V㧺CU - 8{;z |S6; $HQجW/)hYJq~~QUOOMն 'lr_;H a}lܼz,]m|Pqa;0_7E|q0{0FyoUk`zYOh'rR`0(2,Cx*oNԗigYF?zh0 -F#}guȿc$%f(jZU|#!!Q!Xk/`搵MG2G\+ qI'XT'b -rK.)beVXv؟[/Bcw=o>] -Zݒqıg72Ip|2'f~8Xho9R$W1Of$m0*ˇ\}>PvHGH?ҏ?MXbWBJbf &aH Z9 L0o^ -w2RHӷS.)JPshH9ai_WaU酷P>ar 0Y Fd`Î1ٔ#.lӹ^xv'f~}+nXApl!MG`{On7KkJrlT¶ջX8X] 9dވ -Wf}F - -`rΜX0 3g~dGwg?B,~jTyo h+`* C[93 -6]:3f dq#sZjGnH ®Q)zӋ](qhrj*ϐۢ*D]hts:L4{2\ )cSRK=r:9 `s1FC-Pf1Xh Ɛ+*Y8&F@`Ч9C$<쎏6ľn>YhԄKnѬ/11=Qc0Y7_ -pkS8C;_oR;a<1b 1U>*-P[zhzO9֏}[]:)ՅC`UW.[?c׉ຉ*rp$^wK^!)Fuh`/3D ıi!z!"B҅kum[uZjQSo٣OP*rrAAZqo* @i=28I_L"TDU5\w@A)\8fţrD6)Z屍:? 7Rj#?pC nz/*X (Vp sPBnES($-&Z4A.`bڲַDj@_8,(S,'L ZdT6<\WV)Ĕm!87w2 ֍ b42!rw/pEXJpin%x}CibRFV_~3 -C$SnbO>Na]K='.s3z_y4>MS"d|5buΆ77 FxpYk=JjVV9]c|āǶpb> -endobj -94 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 517.824 556.016 553.56 570.527 ] -/Subtype /Link -/A << -/S /GoTo -/D (readable-iterator) ->> ->> -endobj -95 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 472.191 542.631 502.955 555.005 ] -/Subtype /Link -/A << -/S /GoTo -/D (readable-iterator) ->> ->> -endobj -96 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 518.921 529.715 553.56 544.225 ] -/Subtype /Link -/A << -/S /GoTo -/D (writable-iterator) ->> ->> -endobj -97 0 obj -<< -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 1 0 0 ] -/Rect [ 472.191 516.33 502.955 528.704 ] -/Subtype /Link -/A << -/S /GoTo -/D (writable-iterator) ->> ->> -endobj 98 0 obj << -/Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R -/F14 56 0 R -/F66 55 0 R ->> -/ProcSet [ /PDF /Text ] +/Filter /FlateDecode +/Length 3831 >> +stream +x[msܶ_o2>xfM֝Lj;#%=;ʎ}X`p'%L;G$,g_pƳLeVVwgyvH=TYUcJU>Ч6p3^̵lj`ȍ{7!|k8m?ؑ7Uw+jq%[Ӯq:")ي+R8v]ZZ6r9GfGͻnLmǾ}ngc_`sSgwgqYbV9P1o0U%)E0~ pիWa/%גk♸Nr-y\-^>ތϴ HWmK(B6!HP L'g߃COjœ,wh;|'m6]fЃ4㕐 м\hW+s$DynrU qnLfײq ϫmt7)Ik1aU"2mSvywܳ56I%;LfaO32c]شW9NDz$.d ǽ\?Ȳ]pc6Qqr +' #bk^ 3qMl%O)C&ѵKw~ Z +մ{)TԂt ~4y](JkCUcJ~ ) vԊi^ou"Jac~c8βoi} &#mWLٚE8ߌFYAZA-m?s7<פ$L$Ĉ4^l,FSp44ƴ^w"7|Y~1|wI͔Ie fo>1( jÝ// +}fSz/ A>QAmy%}xC#|3Ĩ9uM#}3>i:xP~صJ(u TIjƦ*:wHbDQ-LjjŴn;=g>¹iCԬ3?)NtWI +@L,@ҺwIG^?+9p}#ȗL+*7hc^(Ί Y:-st[j5J=k2+!JKBMcmL42W֜)Cb˳$N/6F?r!$N63Tģ BZwa:Rk:&'sM̔jp, BfCh0шDиLty0a4#ց(W>o[_emy}J/d'+.} /׽]$}@YkUx|X60sא)}n|s.(tG hX$b^xku_$5LG?)Rr͖؊4d3.ZёrVE@8^~j_󰕾_/s,)-#P^2$U(9}S_̩~j42qT.`S[E.!}fǧ?~Ʉ +BV4̫EqX1CB9yXrp,ISUD@$~ρT0%g&7xV= +*ՒcqEjv.phӑ +v/ye+KN "sN**K,`J Sv]=뛼K96k=ȁ勤˯GiH6*s7w4Sivz,2*~s!ނs8ayY𬱯"v**xa>k!g<ԥ"+Yf)OL`5UQHz}`.s-P@нby4T_ aBݶQݶ/[`pyw,&*N۴ EZxj5q̈́mzO 9*۹ХPQ)· _#}Y:x) +ݎ{v+^ e%wy)-yc>]1 şw>տVEG!?A`u Ǖ @8sgL_ϼM8>|r[ȊK0p!-v[DΥ1/tZ-e}XqI$!Ow|KӶ1Igc)J!ɳPB 1dgjP6@ErWBn ֧lQsWleKV⤺ nPݾapqH0\g$Oٓ;ɴ5˗L{R]:%*kxExr'!!8u/uq?;?”~DaT[rC^ZDҚkVGmK¬:g.VӬ+ʥ45aoф'vZ䜉/> -stream -x\[w6~P -d{OӾl9uhKnG\@ ,ULp`2Drr}{'wfpkbRR͉`ag/'ONL.~>ŠJC -Bd;sh n1" x7~N~=_ˍ]o˹}Z7q~ڠ<(~YcfQ -Tb"](xFФB4n;M]ӓ)} L#.2 -UX_-w,8:pOw!r& *8υ܈K"g"?(M.n=H?BP)DP R"_wqIxA2PnJ} ::_WzPڰhlgR8"G T0tct(¥t}t SЧF%8y&tWEc:FHp*["sA#=pLM-4;DV흹<3w&8j:\Gκp;H#?Ũ%# J]H - P1&nj5= kCՃ宮׉a:F)&b=^ kDԼrZ}sն3*ݚHd ;ϻb :nx, M[u*{Lm&q6+h TIu_-FEihmk -mL;Sa!}T`+w6][gXG{o[;P8$330#x1Du#0 pEr\Hg I$ BY~_Iйe.wsߵN9nB3CZ-  ϣ#;e,T -;Zz֫3F5ךH H -JfL]-ֳ^J] $ռj -$4ul%<'$Ud{Ab4=0ma)7qsR_g!!3{ }0OԔkz0P7@=(6Qcf5NPCPu\qnʄrS -&OKRܮ*ZV,ڧU^e'pHQ^`D`zG8y8"CpD%G$_ǫmGF|y:FH5=:JgJ3%0`5-F N1P%x}JȣDJt|vKRk)y Gȗ^<*#b%{E'ш>DDQETSLDy:#|뉨3[\j$ -޻@DR~PT꽗3#m7ȵ_m){uU?OR[3,uIH-Ij$jJ5I%Fڬ'nI! k_pW9X*% `'- a#@4OUy0ii!*RbY=':#rfڧ9 [~%< -L~Z=]M鯭7}ljZ@ȰMt4t jd/mQx߻媞ϔs9}^aWBompl拕+6[_/pP%r뤠h-RW{ 8YCŎ0`NL]U vjgFpH -Oo!`:;? v1wVM[Y*hJm[c3},O0X wvuU/#;]T놑މJGio vVӉ}.Z@.Hwaף - )֬w\իiF|P -rO px&k|EO>+ ?]DS#ZR$q#FW!ه1 dH却YOpMKTCB{ȄHKᦥ@;bϰc*߾lwu -ZHQdRG;v@^>˪$EJܨ||O'xקU-]yh_';66o@bx6y„s;unm|ksq:LToVpx'?x$=Gl0iT|N%]$:=0Xf%K7C9:=.\3+psٳ>j+1\_[$28.zxN~H F#GIN)eEbs=MY=)$K<F!"1.b#SR㻜Vgg㼮ήFIg.d7L0?C5 -t+o)P - $a+E757DHP7GQABn%ӂC|Y˘*$4NF\R'V(2P|YíE.mAcDΗA_ T Ejd?*AR -)g5}܆y\v-`(4P&dz^n|O9hπJa|ȧ.xpYrX`x5+#Wr29t| % "},uUXu/N3.f, @P@@,$P@_to P@@2("8@rw{Nx -F(GA0i ̓Ն| ykT@Q|3L{5 3QVlj> +/ProcSet [ /PDF /Text ] >> endobj 101 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 324.472 315.369 390.056 326.313 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1519.htm) ->> +/Type /Font +/Subtype /Type1 +/Encoding 68 0 R +/FirstChar 58 +/LastChar 116 +/Widths 102 0 R +/BaseFont /ZIOCRR+CMBXTI10 +/FontDescriptor 103 0 R >> endobj 102 0 obj -<< -/Font << -/F38 5 0 R -/F62 41 0 R -/F64 42 0 R -/F14 56 0 R -/F73 103 0 R -/F66 55 0 R ->> -/ProcSet [ /PDF /Text ] ->> +[ 356 0 0 0 0 0 0 0 0 0 0 0 0 0 0 472 0 0 0 0 896 0 0 0 859 0 0 0 0 1160 0 0 0 0 0 0 0 0 0 591 532 0 591 532 0 0 0 356 0 0 297 0 0 591 0 0 502 0 385 ] endobj 103 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 6 0 R -/BaseFont /Courier-Oblique +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /ZIOCRR+CMBXTI10 +/ItalicAngle -14 +/StemV 107 +/XHeight 444 +/FontBBox [ -29 -250 1274 754 ] +/Flags 4 +/CharSet (/colon/I/N/R/W/a/b/d/e/i/l/o/r/t) +/FontFile 104 0 R >> endobj 104 0 obj << +/Length1 963 +/Length2 3510 +/Length3 532 +/Length 4175 /Filter /FlateDecode -/Length 3239 >> stream -x\]۶}_ɭ \3mx6v&h-w,%{A$Ra>xZbߛM J/gHWXx[\pei,0QieZp_gt KϸqQR4fۏal{JqTa*:LcDv -E/D L -AZrnK`dŨs,OތD SBbxLSPū\\8wqm\bsƀy|[VtHL*TkH.9$$Rc~̘^8K9r^$Q|,]gFm*÷c@g G"1 `0A`qO PDxRU|KG:{n?t!݁n׉gC|H؄*0 p5Uog3@y:sQUj'*3dͬzHjϣoLU/|1IydpPԼ=zAyCקiFOT"FxZP #W'=1A~ 9ᠧ=zA8OOOY?k'&AO}DOBiLTH*O|M_]|9ya5!|c5F)!W|}I|}8_+G/i=շ=yv+J{uz׭`H~;S& tz>5-Gm'aGP/[:aܽ;UW[ߺ08ӡpM]}w]_^EبW1r▎ׂ#hM7]S_wS:$EF9 (:[ɝR6 N2ϲPȓiiRr8s,Z9ND(yߥ߮z3~hWRX6 -ƵY1ICy~Rnb&-Q0oR0*Qo:"{HscC+GpSNr9.&E&-ɑBbÌ#2 Te!i&$aXh\Z8/T!\-Zc."cvLDDnu5Kwnbf+uTvJj(\D!YrP S`}WX)v".t.! (nXbyae ->O5:BF]l\6zTk$)Ϣ% RL!Ւ`J\Cޓ8:4GA"Q Ƞ7RLZ;dB=!_@OU.-IC8> >(!2jV@m;v;\}~fo\”-2 Uu M]B=IMc Jg&0ƕPhiã(XM g nc3mƴ{{|I߽ڇތpz2<|&(kS/ -_€'&L -Z"SQ -]4XEpwU$ߣx%Kͪ;r7fǹ}cuoLnX~ HyD$Eg66g*BѢ#i!I.4,MP`t{/?yG\{\5}8=r_V7x/XWSmYƏ2|v!ϘʮYge0K[G jӐ8̓VtY.ѩ0ҳ"eu)ۢ} ?O ,4X&>؃< :Y]L9=w zHٜ^tVA`OXcŠҩ 'ߢ#i9ɝBpmuy֬;2N{K9TO'ێڶta:>uö kCܻJJ !ƴ:^&#|P2X3`x#)&_KCKeaPfō1ss&hŒ3YgŖmi`. -Յ?,X.&\7Z4}_lmW}wme'm̵][c{f" ?Wf/SOC9l!%{ZMT?n۵9i{\;4 -qa}ۋ=ାv{ooܴT ̩:-Lv ;yMgYezA)hCKQAH b7A6X47u@?ۛ^~߬O`Xh QKCV"%FUM'(TEҹZ4AnV\* 5U8Z4G c};\1ϸ~@sloZڪ\5`-" -1Y_Т)*& z}9*]%ɱI{\ o>[4Z9}E "Rh# 9zQ'G" loh.HwyT0|&h!/}s5I7;x!L .Ɍ6Ǖ%hY.-ͱbhq$JYm#.iq+H2vQH i,s`)~ ?0<~B]CgTٚN*> m>MR(q\,X붟=n)Bn`IW }n!6{a];<~x{endstream +xgXSٷƅ( H !AzޫHH "84iJQ* E(#MHGn8w㽟sr~kkYkIZ*`!@V)4=s]';STb#h2HGA t(L !5* G p>d@FOwI8 >?lH*:x<`{y<@"; `q2 z=0UH:00L X"O;Ԃx d80<{_ +?O@!$IJ?zȄ0:o<(J?`k#c|/4<#PK= +# Sa?&.pURTR1~6nv tH`D#8:~YL#3 bt/p#&wk+i8L_9D>$.>ADX|u{xK/ j{T,_bW:#Ng)#C8e>e0,W{윲 +Z5JéYҬ-Zӓ#$:XUxʗ;m:ĠUw{'oOG*T9>VI&r=}^Z|{uхH끫7Ռҏ7a/ғ&tanXylQ. 8*d8κ؜*?:#FnFܑo,<ʞOS nNe74 c?#:r6X`XS%#~;g,tJa1tfE:mW{Ux7TM =zB6ѣ$\"UqFF֚!/tDs%xpGpV#iV6̰qu>}}V|%O%L:O,m!aS!e5JAZ"]֙`4eVaZ{aSrݓdʙ|VՍi>kE|{u]okMmj"3N$^uCHDHgaM;gfK;?%SUhPXhL}v̘T7x]B£T]O;\6#VuW,9$X+YLڥi R'y Y3@jK|f/ŕUJ&{vZE^ OJT0H0xYoiZ8 Hgn[z$KQB(NS& ֲmK[N%BB*ttDƓd·&0 ?ӯwT(G;C7m[ZߠK8sT Cug2C 4or@0QvcJ` +6wn iRP˚5eچ e:t0Z[ox5Pw|"{2d@K@r?}?cl!Ҁb$by_/Ny(Tڟ/؎nHꤕJ _ZGtoßEJG >td 6C:84Ћќ74h^S~_#̇ B<˄v-H) 4f7}>B?4g[Y _c~Yl=i,]!}jk~[_gZ`'_҃w4y2w v4I~xGiY֙lNVbNE_:_5q؂My :_rNJd kJ=w=rйb H4+6$ce8+E2!Vl:/ޒGT[YG6I=-ƌLa\7Gܳ097Pڤ 'rţ!vEsw &% %jڻigB(4Ӈ݊ 7n ˄6 *]h=eOq(j̎5OEH]'j)LU f__Ud)۝)-HR&Ql僧đÑX:ӖO=[w<./M㋜L PNMniFMsw,=zURkE"Ia&7wq +UE}]<;8\֠.)S/f8W9k;+ENqݒg @s:F~ѳ&6npt[%pB׈mdSiSfy&2ugwߠ7&]3X-}:q2KJR=& (g޻435^.2&=++qpi5Nv Ob5ic7]Ϯ(>S8);zٶL>HJh͝cn@Cб!Ž7 O|C.[sy(g2]D!W˖MW*?Rk[(>^jtKx2(Mkw^_W~LYFf#-!w8:w'-t}MH+O8dg&y|TҴ/ GMb=cj!goykZOLn+#/prڊ&=w,FVNgF˼s? '#k_6{]ܐh4bqU:Nx"Ab==k^?w5 SeNrČlj:ARt*jf?:AjoIyqJE"aR$3Ź~q>i\fTIwl٘%N#nW3 +{rK5sv8pʋ%NL/4F-y9نJ۱ה܊wNk|Α75},v硂A  L:=Z-e nTarJk{{fOA4LG '7lendstream endobj 105 0 obj << -/Type /Page -/Annots [ 106 0 R ] -/Resources 107 0 R -/MediaBox [ 0 0 612 792 ] -/Parent 2 0 R -/Contents 108 0 R +/Filter /FlateDecode +/Length 3863 >> +stream +x\[~_Z΍34n "q;$*Z9s'9J+ +XΜ9s.߹P/hQ?ZȊT5/֪__{0BhJt f%Ŭ$qNjxuq%L_BD׋__,fZʑc%c<3)ň oW_&uŋw">+Uj=y'?o3O~h恕3\eYY, ZwknQno~zR~XYqߙKp{)s.LWQ"GsN %Ԋ$JRUNܾfn Z"q~1Y)I'kH{KdDʉ `F[`5'54lc[ Tm_[ηŪyIк! Lߺ~H?xED(' %)Qjf^B *PJJXE{!(=:BSJ֣ƨΩsGhoWJJ9/e>i\Sc 5ϭбI|`t-oJ*6'.%<| z|#2s֕e726U% 5@G2RJ`9scU+RsXeQùVa8G~A4P^ŧA׬jG's;}A[ ꭓu;[m֊QLE&xW95ѲCԋ:~H AhԺv+ ,cA6!J:m&;C3TȒ:U4+4sP yY=sß~3w6vgOoѰ܂0(F 0黭.rژM,ٵ >]/(;hX-PMp'r6m4v7XCP/QM\CcsF:R>yqEVE,~_k]*!D&?Y8 \ƍs%AݮK𘴨cf;Mki6L?En+` efS@&3N0!uG7vbpym&d5sQ)껏??Kp%5,@Ne\~&I9{+AR"%{ )0H9+$-{4r mMFwd{ph6 FOCxG }Y[&7RinH2pAOf<&BbtގdXޖ +"ՙy _H3P3R`x5Q2F->Քh^`EdS ʈj^I$OF"C)gIݠkBh>xfXh[10c6ooccC8D!d! 6tY XP^"zbE‰$㉞O-#Zʗp>g$/EΏ8>Q]_.QSDz]Fw]lۇx^!#_:NaBW (J XUUAeYFX I9Xj% ( xKyy惺9c1n|ma$ۮ#j6 yQzuL@('z!ەh\.sc=c.OÔ/3^CpΓ<Ƞ# kRDWj,8C\&LhRFX\d B^ܲCӆiue `[:YB+cU,3u Y#,C)6wxHa+L7,dTTݩizTK"T IvuVpͶ ߳8Ώ-}'jlMj)n-zp]cLsipb@)iOw,F&Jb4]"ss'=vCd8M{pek'm3d{ 8#JŜZْcIJEZo7,ޥ:lҰ|6| ,JYѐل#lrpCG9GsL^f\0h84[4qبB+ +cHH: +%XQg8)>*4h0JWƳ?Uԋdz d$3^꒜)yZg%?V\BUӉgȱ}^n7JЉIQϠBN 7R0p 5֦i2z@"Im b +CU DNiNˡ8"~Z Hm~/(N#< mP {ft`E+cIkV}zā +K JT?(BJG꧛l0\]]ꖹ#gj/5kw+cf~k |# w{g.Y"!BmٛrI;{*$doBklwE%Kk"I8"NE):T^0a%Ѻ,q{=gBV,C np"aI^W!rW`qb߄#oCi9#WR\l[m<,L(?#l8h$/< [A>P'Lh 00iJ̷!]ik_aRҏbǾC}SvZp#s.H&7_Nï :m]0֭}X~TdMm~½367u9L9#<Th`Oz u`2#"B'v/d?{cߋgh^?lHsOHh3/8+P|Ok3T8'&If@s^@ 6dc[%*i(g+a_}vmڌիjUռ>{HIe"G1gWAhZGYՅV}_sƹks0Btvh{) x # VxCWa,/ND$MuIZfu*VaYSexq&/1endstream endobj 106 0 obj << -/Type /Annot -/Border [ 0 0 0 ] -/H /I -/C [ 0 1 1 ] -/Rect [ 267.344 588.196 294.243 599.139 ] -/Subtype /Link -/A << -/Type /Action -/S /URI -/URI (http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1519.htm) ->> +/Type /Page +/Parent 2 0 R +/Resources 107 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Contents 108 0 R >> endobj 107 0 obj << /Font << -/F38 5 0 R -/F64 42 0 R -/F73 103 0 R -/F62 41 0 R +/F38 41 0 R +/F40 53 0 R +/F14 72 0 R +/F8 45 0 R +/F43 67 0 R >> /ProcSet [ /PDF /Text ] >> @@ -1646,834 +1738,1296 @@ endobj 108 0 obj << /Filter /FlateDecode -/Length 673 +/Length 3947 >> stream -xUKs0+t4PrkLtrs Fv9wycpsi®ۇ/E>ihnDߧ4 XKms W4~!zB}%!bA8S1g)B;” $%hUl^}_6իx.C [\G̴*>Q gs`LFa ,=Z4[d JY36s]JcA=ZəD/b$P!wؠjcT.{.ͅڃhe1I~@&p$lOb8Q Lkv7TA0AKqu4yIM[lݵꭲݛ|ĕ Q-p$BHH+|"Í]U;ӌG Sd8vjUf%` XlV8}ccr&UU]L@?l+öjv7&{GGzC9U4DqH\϶yuԳtǾ]H z[ jE<ynfSde4N)q2Wi{*n٬f+WX7ummv|a4n:ӿFL2__;3 q"c$^.4, &/Z>endstream +x\o6_ 17p6y(AMSY+Ի+j#93gj?\qDK+8­.Ϛ-whFkX7n7v?U>7 ĉK+b& 3wZxg&k`vJҊ CN~Pm7yfZy^ N??h]E)k`^B)DEdDEQ#`)ɲMN̨ e8V18FI02!w G iw1hpjFۚr}?;A'O/ =H&^gѼ]6u⯷ =9.-!5n8ĩCgՑQHH58?f6`w1Uw>]X!N~aܞ7&97 X]:3iB"ARyiu$`(iIxl2SF'Qb2eIkh N28'XK~_mo^DG/mC4%[.rh~k~g\.X|[7LYCMa@rX )#^) \d2W.mB{u@NVo\WUZ \-V}{Y D@Դ>@^wR5|Gnt77b!Ep'U0YO#aI&9':id{>Y5Fj192qJu1NaBm61"WمOBe3׿7_uށq: 'e7A*Г'4Эr ٪)( d=(I+B& rPN=>tC[+X^ZIS&ͼꯣLd p/>T{`to?snbkXR^4U#O`M#%KDYRdV,gv +t +m)_.:&Kl M6Lc+!I lk"mbɳ.؅ck^|.ՇH}X{qfV# +1ӎPH_ 3Z y=c'3py*u:M;_{Z0/z'£bgʖny^pWUZqV ڋy(Vrdҏ< +{*1&(zbC&Ij~7dMPW1_u%v&mA̪pfwmK1*c%!k%Rtq5⯎H)h8x>;.MQ_:RJZJ$E\)gL7KW"m"qM +(5Vpf7zi6 {Wq=ĈHx01^Z;̏$3oRS\;rm-tVX\ۢDJL+AҊ)T1昤Pe[N>L< l&@??<@<6rmF\9Qi .j>mu6bSǘoCR JP+)κ,#~J_9GTVS6P)>9ALeპ];%OHy`/:Ҫw7-UXk'R,)xHG 0ZEriHư`1}wka SfDR3/9 SzV\a5"MCNQe'aXKő:KXpxM6g >f-'Ђ7YhVgۀX|K=2#ߡQ4Svn骖}s!Х4)_*+Tq>vt͢TJI{!zY^\L/` i/vctPu@ fer P~LP홚[{^PI{4K&d! ʻ +Iwg BٍGN]Q}ݹ_o /ؙS;j9]o|L\maB'̍dn VxogU.Yhh .XZn8]sD<[6qu/,#2̚:4h MvIf^_>34|Ȟ<ɥ/W俞"F G}r +q73EV0#+Ҋ sxdUg:癃$)6]B;ۛM*(]M5;V)1I(Miy|;MsaT|Td-E +BVrPҩ=T Ώ?Eۯ&q*SdQװp?z!y{!KSZl=#eb*ďSےvHܡVqþ"+aҊ){bDh˧pE9.# 6|ݤܸu;@E +u ;w;R/Wesxx!4{g$d61}; +z NhN.D,àU3T˾.xz Hk9fA {=#uHC ._pX&lZW^QD,zms4L2}eO?Œ5;g.ׁ!oʓ@BB 9*aJT<{xϜ y +\ڇ,!1uV&8[n˞G5<^y@MB N +Ar|0;ڃѰ&? +J6 Iխ;ᲊqD+XGN $ 3#o.xi.m( qrϽ 46KV|1?gD+ ClCG-ou#r헬H{enA`^aEPy]g9n: t/K.x[Xd 3t-j_é7 +Boa|]aD,//"jswaøw޾fqAX7fK0"t'_ρ([iߨ'm LJn +*&:';60Ķlc%Cdg]FXk{9;A65oފF $F#\A +MY:>|k5;y[40JE"aH׉p Y|ד9f\s%§^\?\e| M&ae? ;|ϰO}VzW²J+Q` +m)MBms P2L kw+Z痦Zđˀɽϙ:zN`5>*F0TCRM^{^\ ;27mj J endstream endobj 109 0 obj << -/Type /Outlines -/First 110 0 R -/Last 125 0 R -/Count 6 +/Type /Page +/Annots [ 110 0 R 111 0 R 112 0 R 113 0 R ] +/Resources 114 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 115 0 R >> endobj 110 0 obj << -/Title 111 0 R -/A 112 0 R -/Parent 109 0 R -/Next 113 0 R +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 510.73 366.221 549.28 377.069 ] +/Subtype /Link +/A << +/S /GoTo +/D (readable-iterator) +>> >> endobj 111 0 obj -(Table of Contents) +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 460.551 356.203 495.254 364.849 ] +/Subtype /Link +/A << +/S /GoTo +/D (readable-iterator) +>> +>> endobj 112 0 obj << +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 511.837 341.912 549.28 352.76 ] +/Subtype /Link +/A << +/S /GoTo +/D (writable-iterator) +>> +>> +endobj +113 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 1 0 0 ] +/Rect [ 460.551 331.894 495.254 340.54 ] +/Subtype /Link +/A << +/S /GoTo +/D (writable-iterator) +>> +>> +endobj +114 0 obj +<< +/Font << +/F38 41 0 R +/F40 53 0 R +/F8 45 0 R +/F43 67 0 R +/F14 72 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 4123 +>> +stream +x\Ks7W0-iƉ&[eFpm~m L8RR[.HhZgC]OgBr{1;:jg} &1=|jY7f NOD٨XvԊ<x8I~6NƔQ}z~Pֵ+P"Vx֦B|Xz?|>/.o ؾ` JҶ?]ϛOͫͶ9_]:KuqgTjyakGGQLN[XvoB)091G=p=Gd|C +0$p҄*;'RO.|]i[jh9PS M< fMS$19pfDng(&]&Qy`Hjom/so krbEb~ѧl{W\YRF;9z] W0NA}"i0G6zc'2g,N+3(˕;&f{^d@G-N};,d`]SkZuh>Ǝ n@HD۹}czskqQd?]η憳r:kw0¿ od)Jho ?Xh`Eɡᇣ֌LԵbѱr,%=uuԊr@(u*!֙Q:7\m*[|"'g#'S;\2VU?/ݧ=Z{4֫|ẽR In5]ީ124h !)c1"~VdGO&IBʧ魰D-|mGeߚuH X~:Y#gr7-G(?#k{:9eG3ӄCFe0a@cuރBIjY :EM&HWQ+`NdCbrrizd +鱡0yis t`=f"g¨0 ETߎ(`)=:bdbR3*>̍į׿=}]l;Oxz? ffr6"S +wA,Os\*,Ğ1ǻ͙W{ / J lvQӔ[)C0 J}~>J Sb !.EYl߲"u%+T +TA*E~T"S@xTFT!NMǩH Nl𩛀($#yDͨ.DFz݅(쒠qD݀?BZPLR"NEi6 OzxJSgSnjЫ ++9[~G\UU#W2CS~ LP#ŵ˾5b ;4ઢ٢Nߤ!;'{ Ɉz $I I I=!I,gbuQFu4t/466L:sɧ(r8#U@ʖrn;"v;0D<":ͅN_M/:Nu-a7hwhudV"hcG{Uu r$[8n?LpY\ULor*pX{XPkF2 $LXܧbG ! H37,tkum/g H +֌n+=wiQMaվZAV$ j)MVVQ+H 9Ȅ\-Udny:G sLۆ(n;w'wj^׷Ζc 9$ 4[S +T|R#}s&晁wY6'HZ$I\E&lk o-`ګH8ܲ^#))Ҁ4,M);Cե]'Eu߳t2c4},^d_M aqS̃83TJ/mByet7^BҟF'tKK_VACLf<0kݰ&E%-W}_--y˩JĹMPLAMqY e'(x٨|5 +ۢ%0<[8@?t"SS*j.c:$[䅃E8^ۊVQo(Z!0" w@۫C)2ԚLUP.Z!nרïVWQ~'談xgS޹xk3B"0HQ /Od&̽vaóq$azܺbT!iM$&j=dR+)& yP pԊBu'٢OeWF@o|Nʲ 8mV=% 1UW=\R?$P?(- +_ sw4A)sHa Pou?_mW{tx_̥mrU,3i;Ù7󄳌G};mQ﹡ qaԳHJ8iī}«ܵ?p7ǹS$U(t5-'6>fhc\_Lh<]l}_rkuwjY0Э_yU44wU.:=0C#yZE{Aͣ\%Ȋ⠥ 4Gg īhkG#^G이08K#sǣ+aӯ'. nhtӋb- j9> +endobj +117 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 299.896 291.986 373.343 302.834 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1519.htm) +>> +>> +endobj +118 0 obj +<< +/Font << +/F38 41 0 R +/F40 53 0 R +/F8 45 0 R +/F39 49 0 R +/F14 72 0 R +/F46 119 0 R +/F43 67 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +119 0 obj +<< +/Type /Font +/Subtype /Type1 +/Encoding 120 0 R +/FirstChar 45 +/LastChar 121 +/Widths 121 0 R +/BaseFont /BPBWTL+CMITT10 +/FontDescriptor 122 0 R +>> +endobj +120 0 obj +<< +/Type /Encoding +/Differences [ 0 /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /exclam /quotedbl /numbersign /sterling /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /dieresis /visiblespace 129 /.notdef 160 /space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi 171 /.notdef 173 /Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /dieresis 197 /.notdef ] +>> +endobj +121 0 obj +[ 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 525 525 525 525 525 525 0 0 525 525 0 525 525 0 525 525 525 0 525 0 0 525 ] +endobj +122 0 obj +<< +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /BPBWTL+CMITT10 +/ItalicAngle -14 +/StemV 69 +/XHeight 431 +/FontBBox [ 11 -233 669 696 ] +/Flags 4 +/CharSet (/hyphen/a/c/d/e/f/g/h/i/l/m/o/p/r/s/t/v/y) +/FontFile 123 0 R +>> +endobj +123 0 obj +<< +/Length1 1024 +/Length2 3799 +/Length3 532 +/Length 4487 +/Filter /FlateDecode +>> +stream +xe\T{iN*)R8 "(H* !!(""( w{yyf_YkmSgkȋ8, Ut͌ll +JJ0ՃTM +hгTU]鬺2UIx;֕C +h{!h8 H/j8 Xh$1G"@P(@ 5 +ÒT #:G}iIjbHb㨵T'c#m !G@3Sz;3$S# kc0H T Q3&"h H,FmcsT>7-п%<8A@*}>Cn +a$VQIh,IDc0#PP8<cUR$ow$u\`ߤCP#!#FBEv!4CH7R7;Bއ} +&Bj!Qu::8b EE@EE PQSeXHP@ jp?<%y ԕB"H8[\##!~~H9ɜȡG9^_ Eֹ=\+&`JyZA;/5#Sk|v¸w SզP;+ ߽ y>=Ζdu)h5@}5l+ƍpq|\kr{ZB+-)p'\ȗZB!p&)e[q&̬k垨jF`sZ=&FNg.,=sɺ^TϽ.3gyA'GE@c۶Pۖ0s f8O'h{zc>V'|!uF!+cV2yh01pY}{w-̓aQs=F_~I +mpjnVHTNrĚ=Bic0-9t+ HwCּ6kO5$'q϶;e kútqclVq'Exؒ׍ L ׳}+x˓^sCXEW+_~Z]eKxǘ +ÔZvSc!E%J[aB>_ⷔ7@Ν$+M;~aFA:׿V&&9\S Nk?yQc #-NࢨP̱|:tx2T8\_Bۅs̟9S 9dƱBJQz 3Jod` >mjoٙ,˧7;@uN dK2?BU a_9"{9+t|elcq2~ ajōMr֫AW̴r^}|ZHJ}QMg6 qj~ڔeiYnb FEUChNr1Zov?xvy@~ݑ>`S16F+\Z!r钘rDc=ҽXL]Ƅ>k8 %iulgS$ǫ +̡ړCC*{[b H{I"?!z8%GCzqo +L(U*3Mg\@`{/m՞[zM)q ihaN@M,_z8^SbBBk54Jg2٢h-+;J%"!.Nݦ&oE)ޫV /"92gOmnF +ؠ + apN2nh劃lJ0}ӟ\7cn} eNZP""߆5]_xA2Vvf^m?wSK*6l"ٻU}l"6'k!{&-C x?;blVr+9ql~blB*\5X'yHOijKWUN6ug=/OLnޙƙaa!1 '6ln,so|Bd4[; 6HVSCʖ(kZX.,kG8Cӣ~ wVV*V%HVREz'{ '2H # I;fDĿx6acbSDn9.>ZOQzU+Tr=i |0x6;&UY TаteN*^lyu|(לll{@lJ1Q2g^*|7+ V@Co%pr˪0~H:u_^F}E'."n]2yk:V\2(nHP/6y>Y] \mD/-8H +5̧ދυ[S|Y%?<ٖFt͠3u^[\m6}!F3ÕծsY' [l%yvMCu8{>0ԶmUO8$B>T=R!*MZBh1 ,.<iM;עXuO#a(ų<~Tᖮ$g5IYuEv#[ej]=/ƲOiS+ͣW%\]2QN#+O'-t]eͶ'zkb[ڵ8j_vdYgS\Z0̗ +rrBf<+܇ŶMzaw:i9բ7q5,YPGqVܝ%,NMžˀXKᴸʤVrK%`Gh[ ɿk(ZrMNڋ?);aOp '`xOendstream +endobj +124 0 obj +<< +/Filter /FlateDecode +/Length 4214 +>> +stream +x][s6~Pߜ!.lni_L;uKv#KD7FT:tLIwpgxVxp[:A۳zvZ0l2[e~jDVo}wp]vv{Ơ#>?uEP*BQ3}w G_桔 C%xJߜ'\I83!8bz;~~[g*ܢFY1j4ܯ7_L8ݞSjC5~\>gVTg3Jfw Xu M c' +`eu #_K[imoW4VVq﮶YٓED,L1K1F̸mS$r|aޕݱюE~_&"@ >EZD.!E|6Њ` XFkd  1jJF/h1Dp +-g"hÌv1)q(!@5;d2MZ)>2&r(=h2Z̟WF JGP8pQXM 3/>2`] c曫iB}Td B\\`xqg=2ꋿڋx=* < AfNJHXep8l#dBN9og}YvS ze7ow7osMY.p7E3b) P>b x2ڧg9!VW+F brGX1Պ +H|Vo?{_tq۫M'-a&38[=hV#&Z/3W<+|i`m?`~Cun=n} hƝUg? T 1 jIE!d7j nE Kn9_߮SJ6mq)FZl5,W YdECLFc!;zT<'V čB0uiXgc``ޚ-o.mga!iNJ5$xmL`x!VZ#B0o\Bl +}ҺcNoZ;[:J5MҌzJ+?aj .]6ui>F5)Hk@圬R D+- 1*'~91$i!VZ;5>T%\Jclh1L\(cI-ٱŽ@ +*%o Ҳw"-|`?ZTӶܻ Qc~ޭ5fK\B.9}׈ v7Rm=tIkw||ݰciV]*הjmdBylo`[ iiLu{TjU UJ.ʄ^af߮~nӣ^s`VSɗyy>oY0M$MBHơB6GYxK +AҲՒ>k/^#X{\-H4B'}s(RZyk Uo|6cܪ"+Ǿ 0)ODQ?TޱO,*;|/Ips (g'oz`hYcQ''#Kf1k]X[u?$eZiY)W .s9 5̿zާLg: +dez+" G26U1ѴN&e#;T5˨}q1~5m_Oٯhh61Q vXu*b _v( "?iN L m)7X)܊kZEK IM>e9f^@-wA+FH֞!5V> ͯ['*IܱXz\82q%I}bӡLttOʿ͊- +7G.L PyM5OfXM+_*?-ʠDƅNEF$ݲ߹g_c :%>N/zͬAsmC*Oj .f^PE\5HrR +ضq! 3x!FXU 2 +4t\mxu1iV č Q#0K,&/J$\"e+HcW#FH6?3kW[G9i@\"6ms=iN>mU^Z7ZD`hHB\2>)"#xaԪZ`9xtI +D/`}hdֶI2،,6eeW-G rCqlhp&uY,w5F@qkg^ɧir+,URͧcK9x3Te +A/`hL.U`)C>BW`/G|xj_GX!6ї:&Sp_d3endstream +endobj +125 0 obj +<< +/Type /Page +/Annots [ 126 0 R ] +/Resources 127 0 R +/MediaBox [ 0 0 595.276 841.89 ] +/Parent 2 0 R +/Contents 128 0 R +>> +endobj +126 0 obj +<< +/Type /Annot +/Border [ 0 0 0 ] +/H /I +/C [ 0 1 1 ] +/Rect [ 242.561 697.609 270.013 708.457 ] +/Subtype /Link +/A << +/Type /Action +/S /URI +/URI (http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1519.htm) +>> +>> +endobj +127 0 obj +<< +/Font << +/F40 53 0 R +/F46 119 0 R +/F39 49 0 R +/F8 45 0 R +>> +/ProcSet [ /PDF /Text ] +>> +endobj +128 0 obj +<< +/Filter /FlateDecode +/Length 525 +>> +stream +x}TM0+Hv *uWziECH@J6%QE73ϼe8hCPr[1%!Tiiq`hYR]J UY1 .+ +jTHU=~B67` +sj`솽Ok7Hve6\ZJDi +VXH d"1}> +endobj +130 0 obj +<< +/Title 131 0 R +/A 132 0 R +/Parent 129 0 R +/Next 133 0 R +>> +endobj +131 0 obj +(Table of Contents) +endobj +132 0 obj +<< /S /GoTo /D (table-of-contents.0) >> endobj -113 0 obj +133 0 obj << -/Title 114 0 R -/A 115 0 R -/Parent 109 0 R -/Prev 110 0 R -/Next 116 0 R +/Title 134 0 R +/A 135 0 R +/Parent 129 0 R +/Prev 130 0 R +/Next 136 0 R >> endobj -114 0 obj +134 0 obj (Motivation) endobj -115 0 obj +135 0 obj << /S /GoTo /D (motivation.0) >> endobj -116 0 obj +136 0 obj << -/Title 117 0 R -/A 118 0 R -/Parent 109 0 R -/Prev 113 0 R -/Next 119 0 R -/First 143 0 R -/Last 143 0 R +/Title 137 0 R +/A 138 0 R +/Parent 129 0 R +/Prev 133 0 R +/Next 139 0 R +/First 193 0 R +/Last 193 0 R /Count -1 >> endobj -117 0 obj +137 0 obj (Impact on the Standard) endobj -118 0 obj +138 0 obj << /S /GoTo /D (impact-on-the-standard.0) >> endobj -119 0 obj +139 0 obj << -/Title 120 0 R -/A 121 0 R -/Parent 109 0 R -/Prev 116 0 R -/Next 122 0 R +/Title 140 0 R +/A 141 0 R +/Parent 129 0 R +/Prev 136 0 R +/Next 142 0 R >> endobj -120 0 obj +140 0 obj (Design) endobj -121 0 obj +141 0 obj << /S /GoTo /D (design.0) >> endobj -122 0 obj +142 0 obj << -/Title 123 0 R -/A 124 0 R -/Parent 109 0 R -/Prev 119 0 R -/Next 125 0 R -/First 128 0 R -/Last 134 0 R +/Title 143 0 R +/A 144 0 R +/Parent 129 0 R +/Prev 139 0 R +/Next 145 0 R +/First 148 0 R +/Last 154 0 R /Count -3 >> endobj -123 0 obj +143 0 obj (Proposed Text) endobj -124 0 obj +144 0 obj << /S /GoTo /D (proposed-text.0) >> endobj -125 0 obj +145 0 obj << -/Title 126 0 R -/A 127 0 R -/Parent 109 0 R -/Prev 122 0 R +/Title 146 0 R +/A 147 0 R +/Parent 129 0 R +/Prev 142 0 R >> endobj -126 0 obj +146 0 obj (Footnotes) endobj -127 0 obj +147 0 obj << /S /GoTo /D (footnotes.0) >> endobj -128 0 obj +148 0 obj << -/Title 129 0 R -/A 130 0 R -/Parent 122 0 R -/Next 131 0 R -/First 137 0 R -/Last 140 0 R +/Title 149 0 R +/A 150 0 R +/Parent 142 0 R +/Next 151 0 R +/First 157 0 R +/Last 160 0 R /Count -2 >> endobj -129 0 obj +149 0 obj (Addition to [lib.iterator.requirements]) endobj -130 0 obj +150 0 obj << /S /GoTo /D (addition-to-lib-iterator-requirements.1) >> endobj -131 0 obj +151 0 obj << -/Title 132 0 R -/A 133 0 R -/Parent 122 0 R -/Prev 128 0 R -/Next 134 0 R +/Title 152 0 R +/A 153 0 R +/Parent 142 0 R +/Prev 148 0 R +/Next 154 0 R >> endobj -132 0 obj +152 0 obj (Addition to [lib.iterator.synopsis]) endobj -133 0 obj +153 0 obj << /S /GoTo /D (addition-to-lib-iterator-synopsis.1) >> endobj -134 0 obj +154 0 obj << -/Title 135 0 R -/A 136 0 R -/Parent 122 0 R -/Prev 131 0 R +/Title 155 0 R +/A 156 0 R +/Parent 142 0 R +/Prev 151 0 R >> endobj -135 0 obj +155 0 obj (Addition to [lib.iterator.traits]) endobj -136 0 obj +156 0 obj << /S /GoTo /D (addition-to-lib-iterator-traits.1) >> endobj -137 0 obj +157 0 obj << -/Title 138 0 R -/A 139 0 R -/Parent 128 0 R -/Next 140 0 R +/Title 158 0 R +/A 159 0 R +/Parent 148 0 R +/Next 160 0 R +/First 181 0 R +/Last 190 0 R +/Count -4 >> endobj -138 0 obj +158 0 obj (Iterator Value Access Concepts [lib.iterator.value.access]) endobj -139 0 obj +159 0 obj << /S /GoTo /D (iterator-value-access-concepts-lib-iterator-value-access.2) >> endobj -140 0 obj +160 0 obj << -/Title 141 0 R -/A 142 0 R -/Parent 128 0 R -/Prev 137 0 R +/Title 161 0 R +/A 162 0 R +/Parent 148 0 R +/Prev 157 0 R +/First 163 0 R +/Last 178 0 R +/Count -6 >> endobj -141 0 obj +161 0 obj (Iterator Traversal Concepts [lib.iterator.traversal]) endobj -142 0 obj +162 0 obj << /S /GoTo /D (iterator-traversal-concepts-lib-iterator-traversal.2) >> endobj -143 0 obj +163 0 obj << -/Title 144 0 R -/A 145 0 R -/Parent 116 0 R -/First 146 0 R -/Last 152 0 R +/Title 164 0 R +/A 165 0 R +/Parent 160 0 R +/Next 166 0 R +>> +endobj +164 0 obj +(Incrementable Iterators [lib.incrementable.iterators]) +endobj +165 0 obj +<< +/S /GoTo +/D (incrementable-iterators-lib-incrementable-iterators.3) +>> +endobj +166 0 obj +<< +/Title 167 0 R +/A 168 0 R +/Parent 160 0 R +/Prev 163 0 R +/Next 169 0 R +>> +endobj +167 0 obj +(Single Pass Iterators [lib.single.pass.iterators]) +endobj +168 0 obj +<< +/S /GoTo +/D (single-pass-iterators-lib-single-pass-iterators.3) +>> +endobj +169 0 obj +<< +/Title 170 0 R +/A 171 0 R +/Parent 160 0 R +/Prev 166 0 R +/Next 172 0 R +>> +endobj +170 0 obj +(Forward Traversal Iterators [lib.forward.traversal.iterators]) +endobj +171 0 obj +<< +/S /GoTo +/D (forward-traversal-iterators-lib-forward-traversal-iterators.3) +>> +endobj +172 0 obj +<< +/Title 173 0 R +/A 174 0 R +/Parent 160 0 R +/Prev 169 0 R +/Next 175 0 R +>> +endobj +173 0 obj +(Bidirectional Traversal Iterators [lib.bidirectional.traversal.iterators]) +endobj +174 0 obj +<< +/S /GoTo +/D (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators.3) +>> +endobj +175 0 obj +<< +/Title 176 0 R +/A 177 0 R +/Parent 160 0 R +/Prev 172 0 R +/Next 178 0 R +>> +endobj +176 0 obj +(Random Access Traversal Iterators [lib.random.access.traversal.iterators]) +endobj +177 0 obj +<< +/S /GoTo +/D (random-access-traversal-iterators-lib-random-access-traversal-iterators.3) +>> +endobj +178 0 obj +<< +/Title 179 0 R +/A 180 0 R +/Parent 160 0 R +/Prev 175 0 R +>> +endobj +179 0 obj +(Interoperable Iterators [lib.interoperable.iterators]) +endobj +180 0 obj +<< +/S /GoTo +/D (interoperable-iterators-lib-interoperable-iterators.3) +>> +endobj +181 0 obj +<< +/Title 182 0 R +/A 183 0 R +/Parent 157 0 R +/Next 184 0 R +>> +endobj +182 0 obj +(Readable Iterators [lib.readable.iterators]) +endobj +183 0 obj +<< +/S /GoTo +/D (readable-iterators-lib-readable-iterators.3) +>> +endobj +184 0 obj +<< +/Title 185 0 R +/A 186 0 R +/Parent 157 0 R +/Prev 181 0 R +/Next 187 0 R +>> +endobj +185 0 obj +(Writable Iterators [lib.writable.iterators]) +endobj +186 0 obj +<< +/S /GoTo +/D (writable-iterators-lib-writable-iterators.3) +>> +endobj +187 0 obj +<< +/Title 188 0 R +/A 189 0 R +/Parent 157 0 R +/Prev 184 0 R +/Next 190 0 R +>> +endobj +188 0 obj +(Swappable Iterators [lib.swappable.iterators]) +endobj +189 0 obj +<< +/S /GoTo +/D (swappable-iterators-lib-swappable-iterators.3) +>> +endobj +190 0 obj +<< +/Title 191 0 R +/A 192 0 R +/Parent 157 0 R +/Prev 187 0 R +>> +endobj +191 0 obj +(Lvalue Iterators [lib.lvalue.iterators]) +endobj +192 0 obj +<< +/S /GoTo +/D (lvalue-iterators-lib-lvalue-iterators.3) +>> +endobj +193 0 obj +<< +/Title 194 0 R +/A 195 0 R +/Parent 136 0 R +/First 196 0 R +/Last 202 0 R /Count -3 >> endobj -144 0 obj +194 0 obj (Possible \(but not proposed\) Changes to the Working Paper) endobj -145 0 obj +195 0 obj << /S /GoTo /D (possible-but-not-proposed-changes-to-the-working-paper.1) >> endobj -146 0 obj +196 0 obj << -/Title 147 0 R -/A 148 0 R -/Parent 143 0 R -/Next 149 0 R +/Title 197 0 R +/A 198 0 R +/Parent 193 0 R +/Next 199 0 R >> endobj -147 0 obj +197 0 obj (Changes to Algorithm Requirements) endobj -148 0 obj +198 0 obj << /S /GoTo /D (changes-to-algorithm-requirements.2) >> endobj -149 0 obj +199 0 obj << -/Title 150 0 R -/A 151 0 R -/Parent 143 0 R -/Prev 146 0 R -/Next 152 0 R +/Title 200 0 R +/A 201 0 R +/Parent 193 0 R +/Prev 196 0 R +/Next 202 0 R >> endobj -150 0 obj +200 0 obj (Deprecations) endobj -151 0 obj +201 0 obj << /S /GoTo /D (deprecations.2) >> endobj -152 0 obj +202 0 obj << -/Title 153 0 R -/A 154 0 R -/Parent 143 0 R -/Prev 149 0 R +/Title 203 0 R +/A 204 0 R +/Parent 193 0 R +/Prev 199 0 R >> endobj -153 0 obj +203 0 obj (vector) endobj -154 0 obj +204 0 obj << /S /GoTo /D (vector-bool.2) >> endobj -155 0 obj -<< -/Dests 156 0 R ->> -endobj -156 0 obj -<< -/Kids [ 157 0 R ] ->> -endobj -157 0 obj -<< -/Names [ (Doc-Start) 158 0 R (addition-to-lib-iterator-requirements) 159 0 R (addition-to-lib-iterator-requirements.1) 160 0 R (addition-to-lib-iterator-synopsis) 161 0 R (addition-to-lib-iterator-synopsis.1) 162 0 R (addition-to-lib-iterator-traits) 163 0 R (addition-to-lib-iterator-traits.1) 164 0 R (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators) 165 0 R (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators.3) 166 0 R (category-to-traversal) 167 0 R (changes-to-algorithm-requirements) 168 0 R (changes-to-algorithm-requirements.2) 169 0 R (deprecations) 170 0 R (deprecations.2) 171 0 R (design) 172 0 R (design.0) 173 0 R (footnotes) 174 0 R (footnotes.0) 175 0 R (forward-traversal-iterators-lib-forward-traversal-iterators) 176 0 R (forward-traversal-iterators-lib-forward-traversal-iterators.3) 177 0 R (impact-on-the-standard) 178 0 R (impact-on-the-standard.0) 179 0 R (incrementable-iterators-lib-incrementable-iterators) 180 0 R (incrementable-iterators-lib-incrementable-iterators.3) 181 0 R (interoperable-iterators-lib-interoperable-iterators) 182 0 R (interoperable-iterators-lib-interoperable-iterators.3) 183 0 R (iterator-traversal-concepts-lib-iterator-traversal) 184 0 R (iterator-traversal-concepts-lib-iterator-traversal.2) 185 0 R (iterator-value-access-concepts-lib-iterator-value-access) 186 0 R (iterator-value-access-concepts-lib-iterator-value-access.2) 187 0 R (lvalue-iterators-lib-lvalue-iterators) 188 0 R (lvalue-iterators-lib-lvalue-iterators.3) 189 0 R (motivation) 190 0 R (motivation.0) 191 0 R (page.1) 192 0 R (page.10) 193 0 R (page.11) 194 0 R (page.12) 195 0 R (page.13) 196 0 R (page.2) 197 0 R (page.3) 198 0 R (page.4) 199 0 R (page.5) 200 0 R (page.6) 201 0 R (page.7) 202 0 R (page.8) 203 0 R (page.9) 204 0 R (possible-but-not-proposed-changes-to-the-working-paper) 205 0 R (possible-but-not-proposed-changes-to-the-working-paper.1) 206 0 R (proposed-text) 207 0 R (proposed-text.0) 208 0 R (random-access-traversal-iterators-lib-random-access-traversal-iterators) 209 0 R (random-access-traversal-iterators-lib-random-access-traversal-iterators.3) 210 0 R (readable-iterator) 211 0 R (readable-iterators-lib-readable-iterators) 212 0 R (readable-iterators-lib-readable-iterators.3) 213 0 R (section*.1) 214 0 R (section*.10) 215 0 R (section*.11) 216 0 R (section*.12) 217 0 R (section*.13) 218 0 R (section*.14) 219 0 R (section*.15) 220 0 R (section*.16) 221 0 R (section*.17) 222 0 R (section*.18) 223 0 R (section*.19) 224 0 R (section*.2) 225 0 R (section*.20) 226 0 R (section*.21) 227 0 R (section*.22) 228 0 R (section*.23) 229 0 R (section*.24) 230 0 R (section*.25) 231 0 R (section*.3) 232 0 R (section*.4) 233 0 R (section*.5) 234 0 R (section*.6) 235 0 R (section*.7) 236 0 R (section*.8) 237 0 R (section*.9) 238 0 R (single-pass-iterators-lib-single-pass-iterators) 239 0 R (single-pass-iterators-lib-single-pass-iterators.3) 240 0 R (swappable-iterators-lib-swappable-iterators) 241 0 R (swappable-iterators-lib-swappable-iterators.3) 242 0 R (table-of-contents) 243 0 R (table-of-contents.0) 244 0 R (table.0.1) 245 0 R (table.0.10) 246 0 R (table.0.11) 247 0 R (table.0.12) 248 0 R (table.0.2) 249 0 R (table.0.3) 250 0 R (table.0.4) 251 0 R (table.0.5) 252 0 R (table.0.6) 253 0 R (table.0.7) 254 0 R (table.0.8) 255 0 R (table.0.9) 256 0 R (vector-bool) 257 0 R (vector-bool.2) 258 0 R (writable-iterator) 259 0 R (writable-iterators-lib-writable-iterators) 260 0 R (writable-iterators-lib-writable-iterators.3) 261 0 R ] -/Limits [ (Doc-Start) (writable-iterators-lib-writable-iterators.3) ] ->> -endobj -158 0 obj -<< -/D [ 3 0 R /XYZ 99 711 null ] ->> -endobj -159 0 obj -<< -/D [ 79 0 R /XYZ 99 431.02 null ] ->> -endobj -160 0 obj -<< -/D [ 79 0 R /XYZ 99 431.02 null ] ->> -endobj -161 0 obj -<< -/D [ 100 0 R /XYZ 99 538.447 null ] ->> -endobj -162 0 obj -<< -/D [ 100 0 R /XYZ 99 538.447 null ] ->> -endobj -163 0 obj -<< -/D [ 100 0 R /XYZ 99 373.192 null ] ->> -endobj -164 0 obj -<< -/D [ 100 0 R /XYZ 99 373.192 null ] ->> -endobj -165 0 obj -<< -/D [ 87 0 R /XYZ 99 82.328 null ] ->> -endobj -166 0 obj -<< -/D [ 87 0 R /XYZ 99 82.328 null ] ->> -endobj -167 0 obj -<< -/D [ 100 0 R /XYZ 296.776 222.881 null ] ->> -endobj -168 0 obj -<< -/D [ 62 0 R /XYZ 99 663.296 null ] ->> -endobj -169 0 obj -<< -/D [ 62 0 R /XYZ 99 663.296 null ] ->> -endobj -170 0 obj -<< -/D [ 70 0 R /XYZ 99 477.839 null ] ->> -endobj -171 0 obj -<< -/D [ 70 0 R /XYZ 99 477.839 null ] ->> -endobj -172 0 obj -<< -/D [ 70 0 R /XYZ 99 333.551 null ] ->> -endobj -173 0 obj -<< -/D [ 70 0 R /XYZ 99 333.551 null ] ->> -endobj -174 0 obj -<< -/D [ 105 0 R /XYZ 99 655.668 null ] ->> -endobj -175 0 obj -<< -/D [ 105 0 R /XYZ 99 655.668 null ] ->> -endobj -176 0 obj -<< -/D [ 87 0 R /XYZ 99 307.772 null ] ->> -endobj -177 0 obj -<< -/D [ 87 0 R /XYZ 99 307.772 null ] ->> -endobj -178 0 obj -<< -/D [ 47 0 R /XYZ 99 169.237 null ] ->> -endobj -179 0 obj -<< -/D [ 47 0 R /XYZ 99 169.237 null ] ->> -endobj -180 0 obj -<< -/D [ 83 0 R /XYZ 99 178.762 null ] ->> -endobj -181 0 obj -<< -/D [ 83 0 R /XYZ 99 178.762 null ] ->> -endobj -182 0 obj -<< -/D [ 93 0 R /XYZ 99 397.376 null ] ->> -endobj -183 0 obj -<< -/D [ 93 0 R /XYZ 99 397.376 null ] ->> -endobj -184 0 obj -<< -/D [ 83 0 R /XYZ 99 248.042 null ] ->> -endobj -185 0 obj -<< -/D [ 83 0 R /XYZ 99 248.042 null ] ->> -endobj -186 0 obj -<< -/D [ 79 0 R /XYZ 99 405.853 null ] ->> -endobj -187 0 obj -<< -/D [ 79 0 R /XYZ 99 405.853 null ] ->> -endobj -188 0 obj -<< -/D [ 83 0 R /XYZ 99 408.515 null ] ->> -endobj -189 0 obj -<< -/D [ 83 0 R /XYZ 99 408.515 null ] ->> -endobj -190 0 obj -<< -/D [ 8 0 R /XYZ 99 91.942 null ] ->> -endobj -191 0 obj -<< -/D [ 8 0 R /XYZ 99 91.942 null ] ->> -endobj -192 0 obj -<< -/D [ 3 0 R /XYZ 99 729 null ] ->> -endobj -193 0 obj -<< -/D [ 90 0 R /XYZ 99 729 null ] ->> -endobj -194 0 obj -<< -/D [ 93 0 R /XYZ 99 729 null ] ->> -endobj -195 0 obj -<< -/D [ 100 0 R /XYZ 99 729 null ] ->> -endobj -196 0 obj -<< -/D [ 105 0 R /XYZ 99 729 null ] ->> -endobj -197 0 obj -<< -/D [ 8 0 R /XYZ 99 729 null ] ->> -endobj -198 0 obj -<< -/D [ 47 0 R /XYZ 99 729 null ] ->> -endobj -199 0 obj -<< -/D [ 62 0 R /XYZ 99 729 null ] ->> -endobj -200 0 obj -<< -/D [ 70 0 R /XYZ 99 729 null ] ->> -endobj -201 0 obj -<< -/D [ 74 0 R /XYZ 99 729 null ] ->> -endobj -202 0 obj -<< -/D [ 79 0 R /XYZ 99 729 null ] ->> -endobj -203 0 obj -<< -/D [ 83 0 R /XYZ 99 729 null ] ->> -endobj -204 0 obj -<< -/D [ 87 0 R /XYZ 99 729 null ] ->> -endobj 205 0 obj << -/D [ 47 0 R /XYZ 99 69.843 null ] +/Dests 206 0 R >> endobj 206 0 obj << -/D [ 47 0 R /XYZ 99 69.843 null ] +/Kids [ 207 0 R ] >> endobj 207 0 obj << -/D [ 79 0 R /XYZ 99 480.699 null ] +/Names [ (Doc-Start) 208 0 R (addition-to-lib-iterator-requirements) 209 0 R (addition-to-lib-iterator-requirements.1) 210 0 R (addition-to-lib-iterator-synopsis) 211 0 R (addition-to-lib-iterator-synopsis.1) 212 0 R (addition-to-lib-iterator-traits) 213 0 R (addition-to-lib-iterator-traits.1) 214 0 R (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators) 215 0 R (bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators.3) 216 0 R (category-to-traversal) 217 0 R (changes-to-algorithm-requirements) 218 0 R (changes-to-algorithm-requirements.2) 219 0 R (deprecations) 220 0 R (deprecations.2) 221 0 R (design) 222 0 R (design.0) 223 0 R (footnotes) 224 0 R (footnotes.0) 225 0 R (forward-traversal-iterators-lib-forward-traversal-iterators) 226 0 R (forward-traversal-iterators-lib-forward-traversal-iterators.3) 227 0 R (impact-on-the-standard) 228 0 R (impact-on-the-standard.0) 229 0 R (incrementable-iterators-lib-incrementable-iterators) 230 0 R (incrementable-iterators-lib-incrementable-iterators.3) 231 0 R (interoperable-iterators-lib-interoperable-iterators) 232 0 R (interoperable-iterators-lib-interoperable-iterators.3) 233 0 R (iterator-traversal-concepts-lib-iterator-traversal) 234 0 R (iterator-traversal-concepts-lib-iterator-traversal.2) 235 0 R (iterator-value-access-concepts-lib-iterator-value-access) 236 0 R (iterator-value-access-concepts-lib-iterator-value-access.2) 237 0 R (lvalue-iterators-lib-lvalue-iterators) 238 0 R (lvalue-iterators-lib-lvalue-iterators.3) 239 0 R (motivation) 240 0 R (motivation.0) 241 0 R (page.1) 242 0 R (page.10) 243 0 R (page.2) 244 0 R (page.3) 245 0 R (page.4) 246 0 R (page.5) 247 0 R (page.6) 248 0 R (page.7) 249 0 R (page.8) 250 0 R (page.9) 251 0 R (possible-but-not-proposed-changes-to-the-working-paper) 252 0 R (possible-but-not-proposed-changes-to-the-working-paper.1) 253 0 R (proposed-text) 254 0 R (proposed-text.0) 255 0 R (random-access-traversal-iterators-lib-random-access-traversal-iterators) 256 0 R (random-access-traversal-iterators-lib-random-access-traversal-iterators.3) 257 0 R (readable-iterator) 258 0 R (readable-iterators-lib-readable-iterators) 259 0 R (readable-iterators-lib-readable-iterators.3) 260 0 R (section*.1) 261 0 R (section*.10) 262 0 R (section*.11) 263 0 R (section*.12) 264 0 R (section*.13) 265 0 R (section*.14) 266 0 R (section*.15) 267 0 R (section*.16) 268 0 R (section*.17) 269 0 R (section*.18) 270 0 R (section*.19) 271 0 R (section*.2) 272 0 R (section*.20) 273 0 R (section*.21) 274 0 R (section*.22) 275 0 R (section*.23) 276 0 R (section*.24) 277 0 R (section*.25) 278 0 R (section*.3) 279 0 R (section*.4) 280 0 R (section*.5) 281 0 R (section*.6) 282 0 R (section*.7) 283 0 R (section*.8) 284 0 R (section*.9) 285 0 R (single-pass-iterators-lib-single-pass-iterators) 286 0 R (single-pass-iterators-lib-single-pass-iterators.3) 287 0 R (swappable-iterators-lib-swappable-iterators) 288 0 R (swappable-iterators-lib-swappable-iterators.3) 289 0 R (table-of-contents) 290 0 R (table-of-contents.0) 291 0 R (table.1) 292 0 R (table.10) 293 0 R (table.11) 294 0 R (table.12) 295 0 R (table.2) 296 0 R (table.3) 297 0 R (table.4) 298 0 R (table.5) 299 0 R (table.6) 300 0 R (table.7) 301 0 R (table.8) 302 0 R (table.9) 303 0 R (vector-bool) 304 0 R (vector-bool.2) 305 0 R (writable-iterator) 306 0 R (writable-iterators-lib-writable-iterators) 307 0 R (writable-iterators-lib-writable-iterators.3) 308 0 R ] +/Limits [ (Doc-Start) (writable-iterators-lib-writable-iterators.3) ] >> endobj 208 0 obj << -/D [ 79 0 R /XYZ 99 480.699 null ] +/D [ 3 0 R /XYZ 56.693 785.197 null ] >> endobj 209 0 obj << -/D [ 90 0 R /XYZ 99 403.837 null ] +/D [ 94 0 R /XYZ 56.693 284.403 null ] >> endobj 210 0 obj << -/D [ 90 0 R /XYZ 99 403.837 null ] +/D [ 94 0 R /XYZ 56.693 284.403 null ] >> endobj 211 0 obj << -/D [ 79 0 R /XYZ 202.033 343.777 null ] +/D [ 116 0 R /XYZ 56.693 492.588 null ] >> endobj 212 0 obj << -/D [ 79 0 R /XYZ 99 341.62 null ] +/D [ 116 0 R /XYZ 56.693 492.588 null ] >> endobj 213 0 obj << -/D [ 79 0 R /XYZ 99 341.62 null ] +/D [ 116 0 R /XYZ 56.693 338.644 null ] >> endobj 214 0 obj << -/D [ 8 0 R /XYZ 99 482.371 null ] +/D [ 116 0 R /XYZ 56.693 338.644 null ] >> endobj 215 0 obj << -/D [ 79 0 R /XYZ 99 405.853 null ] +/D [ 106 0 R /XYZ 56.693 284.613 null ] >> endobj 216 0 obj << -/D [ 79 0 R /XYZ 99 382.597 null ] +/D [ 106 0 R /XYZ 56.693 284.613 null ] >> endobj 217 0 obj << -/D [ 79 0 R /XYZ 99 304.061 null ] +/D [ 116 0 R /XYZ 282.036 219.788 null ] >> endobj 218 0 obj << -/D [ 83 0 R /XYZ 99 692.828 null ] +/D [ 59 0 R /XYZ 56.693 122.802 null ] >> endobj 219 0 obj << -/D [ 83 0 R /XYZ 99 543.802 null ] +/D [ 59 0 R /XYZ 56.693 122.802 null ] >> endobj 220 0 obj << -/D [ 83 0 R /XYZ 99 380.819 null ] +/D [ 78 0 R /XYZ 56.693 119.194 null ] >> endobj 221 0 obj << -/D [ 83 0 R /XYZ 99 207.783 null ] +/D [ 78 0 R /XYZ 56.693 119.194 null ] >> endobj 222 0 obj << -/D [ 83 0 R /XYZ 99 141.202 null ] +/D [ 90 0 R /XYZ 56.693 744.89 null ] >> endobj 223 0 obj << -/D [ 87 0 R /XYZ 99 506.955 null ] +/D [ 90 0 R /XYZ 56.693 744.89 null ] >> endobj 224 0 obj << -/D [ 87 0 R /XYZ 99 280.012 null ] +/D [ 125 0 R /XYZ 56.693 753.095 null ] >> endobj 225 0 obj << -/D [ 47 0 R /XYZ 99 690.525 null ] +/D [ 125 0 R /XYZ 56.693 753.095 null ] >> endobj 226 0 obj << -/D [ 90 0 R /XYZ 99 692.828 null ] +/D [ 106 0 R /XYZ 56.693 473.164 null ] >> endobj 227 0 obj << -/D [ 90 0 R /XYZ 99 376.076 null ] +/D [ 106 0 R /XYZ 56.693 473.164 null ] >> endobj 228 0 obj << -/D [ 93 0 R /XYZ 99 369.072 null ] +/D [ 59 0 R /XYZ 56.693 271.369 null ] >> endobj 229 0 obj << -/D [ 100 0 R /XYZ 99 495.79 null ] +/D [ 59 0 R /XYZ 56.693 271.369 null ] >> endobj 230 0 obj << -/D [ 100 0 R /XYZ 99 333.677 null ] +/D [ 99 0 R /XYZ 56.693 201.126 null ] >> endobj 231 0 obj << -/D [ 105 0 R /XYZ 99 608.085 null ] +/D [ 99 0 R /XYZ 56.693 201.126 null ] >> endobj 232 0 obj << -/D [ 47 0 R /XYZ 99 121.081 null ] +/D [ 109 0 R /XYZ 56.693 219.316 null ] >> endobj 233 0 obj << -/D [ 62 0 R /XYZ 99 691.88 null ] +/D [ 109 0 R /XYZ 56.693 219.316 null ] >> endobj 234 0 obj << -/D [ 62 0 R /XYZ 99 625.254 null ] +/D [ 99 0 R /XYZ 56.693 259.581 null ] >> endobj 235 0 obj << -/D [ 70 0 R /XYZ 99 439.608 null ] +/D [ 99 0 R /XYZ 56.693 259.581 null ] >> endobj 236 0 obj << -/D [ 70 0 R /XYZ 99 374.363 null ] +/D [ 94 0 R /XYZ 56.693 263.822 null ] >> endobj 237 0 obj << -/D [ 70 0 R /XYZ 99 281.829 null ] +/D [ 94 0 R /XYZ 56.693 263.822 null ] >> endobj 238 0 obj << -/D [ 79 0 R /XYZ 99 431.02 null ] +/D [ 99 0 R /XYZ 56.693 424.458 null ] >> endobj 239 0 obj << -/D [ 87 0 R /XYZ 99 535.259 null ] +/D [ 99 0 R /XYZ 56.693 424.458 null ] >> endobj 240 0 obj << -/D [ 87 0 R /XYZ 99 535.259 null ] +/D [ 3 0 R /XYZ 56.693 86.421 null ] >> endobj 241 0 obj << -/D [ 83 0 R /XYZ 99 572.106 null ] +/D [ 3 0 R /XYZ 56.693 86.421 null ] >> endobj 242 0 obj << -/D [ 83 0 R /XYZ 99 572.106 null ] +/D [ 3 0 R /XYZ 56.693 785.197 null ] >> endobj 243 0 obj << -/D [ 8 0 R /XYZ 99 520.659 null ] +/D [ 125 0 R /XYZ 56.693 785.197 null ] >> endobj 244 0 obj << -/D [ 8 0 R /XYZ 99 520.659 null ] +/D [ 59 0 R /XYZ 56.693 785.197 null ] >> endobj 245 0 obj << -/D [ 47 0 R /XYZ 99 587.947 null ] +/D [ 78 0 R /XYZ 56.693 785.197 null ] >> endobj 246 0 obj << -/D [ 90 0 R /XYZ 99 334.557 null ] +/D [ 90 0 R /XYZ 56.693 785.197 null ] >> endobj 247 0 obj << -/D [ 93 0 R /XYZ 99 316.141 null ] +/D [ 94 0 R /XYZ 56.693 785.197 null ] >> endobj 248 0 obj << -/D [ 93 0 R /XYZ 99 162.403 null ] +/D [ 99 0 R /XYZ 56.693 785.197 null ] >> endobj 249 0 obj << -/D [ 79 0 R /XYZ 99 262.542 null ] +/D [ 106 0 R /XYZ 56.693 785.197 null ] >> endobj 250 0 obj << -/D [ 83 0 R /XYZ 99 651.409 null ] +/D [ 109 0 R /XYZ 56.693 785.197 null ] >> endobj 251 0 obj << -/D [ 83 0 R /XYZ 99 514.781 null ] +/D [ 116 0 R /XYZ 56.693 785.197 null ] >> endobj 252 0 obj << -/D [ 83 0 R /XYZ 99 351.255 null ] +/D [ 59 0 R /XYZ 56.693 180.886 null ] >> endobj 253 0 obj << -/D [ 83 0 R /XYZ 99 111.638 null ] +/D [ 59 0 R /XYZ 56.693 180.886 null ] >> endobj 254 0 obj << -/D [ 87 0 R /XYZ 99 477.934 null ] +/D [ 94 0 R /XYZ 56.693 327.514 null ] >> endobj 255 0 obj << -/D [ 87 0 R /XYZ 99 240.535 null ] +/D [ 94 0 R /XYZ 56.693 327.514 null ] >> endobj 256 0 obj << -/D [ 90 0 R /XYZ 99 663.264 null ] +/D [ 109 0 R /XYZ 56.693 723.827 null ] >> endobj 257 0 obj << -/D [ 70 0 R /XYZ 99 410.587 null ] +/D [ 109 0 R /XYZ 56.693 723.827 null ] >> endobj 258 0 obj << -/D [ 70 0 R /XYZ 99 410.587 null ] +/D [ 94 0 R /XYZ 423.155 224.511 null ] >> endobj 259 0 obj << -/D [ 79 0 R /XYZ 99 110.711 null ] +/D [ 94 0 R /XYZ 56.693 222.297 null ] >> endobj 260 0 obj << -/D [ 79 0 R /XYZ 99 110.711 null ] +/D [ 94 0 R /XYZ 56.693 222.297 null ] >> endobj 261 0 obj << -/D [ 79 0 R /XYZ 99 110.711 null ] +/D [ 3 0 R /XYZ 56.693 472.972 null ] >> endobj 262 0 obj << +/D [ 94 0 R /XYZ 56.693 263.822 null ] +>> +endobj +263 0 obj +<< +/D [ 94 0 R /XYZ 56.693 245.931 null ] +>> +endobj +264 0 obj +<< +/D [ 94 0 R /XYZ 56.693 189.691 null ] +>> +endobj +265 0 obj +<< +/D [ 99 0 R /XYZ 56.693 689.006 null ] +>> +endobj +266 0 obj +<< +/D [ 99 0 R /XYZ 56.693 545.548 null ] +>> +endobj +267 0 obj +<< +/D [ 99 0 R /XYZ 56.693 392.128 null ] +>> +endobj +268 0 obj +<< +/D [ 99 0 R /XYZ 56.693 224.76 null ] +>> +endobj +269 0 obj +<< +/D [ 99 0 R /XYZ 56.693 168.52 null ] +>> +endobj +270 0 obj +<< +/D [ 106 0 R /XYZ 56.693 642.773 null ] +>> +endobj +271 0 obj +<< +/D [ 106 0 R /XYZ 56.693 452.284 null ] +>> +endobj +272 0 obj +<< +/D [ 59 0 R /XYZ 56.693 765.368 null ] +>> +endobj +273 0 obj +<< +/D [ 106 0 R /XYZ 56.693 263.733 null ] +>> +endobj +274 0 obj +<< +/D [ 109 0 R /XYZ 56.693 702.947 null ] +>> +endobj +275 0 obj +<< +/D [ 109 0 R /XYZ 56.693 198.436 null ] +>> +endobj +276 0 obj +<< +/D [ 116 0 R /XYZ 56.693 455.339 null ] +>> +endobj +277 0 obj +<< +/D [ 116 0 R /XYZ 56.693 303.886 null ] +>> +endobj +278 0 obj +<< +/D [ 125 0 R /XYZ 56.693 712.497 null ] +>> +endobj +279 0 obj +<< +/D [ 59 0 R /XYZ 56.693 227.854 null ] +>> +endobj +280 0 obj +<< +/D [ 59 0 R /XYZ 56.693 145.661 null ] +>> +endobj +281 0 obj +<< +/D [ 59 0 R /XYZ 56.693 90.621 null ] +>> +endobj +282 0 obj +<< +/D [ 78 0 R /XYZ 56.693 87.418 null ] +>> +endobj +283 0 obj +<< +/D [ 90 0 R /XYZ 56.693 768.8 null ] +>> +endobj +284 0 obj +<< +/D [ 90 0 R /XYZ 56.693 699.289 null ] +>> +endobj +285 0 obj +<< +/D [ 94 0 R /XYZ 56.693 284.403 null ] +>> +endobj +286 0 obj +<< +/D [ 106 0 R /XYZ 56.693 663.653 null ] +>> +endobj +287 0 obj +<< +/D [ 106 0 R /XYZ 56.693 663.653 null ] +>> +endobj +288 0 obj +<< +/D [ 99 0 R /XYZ 56.693 580.369 null ] +>> +endobj +289 0 obj +<< +/D [ 99 0 R /XYZ 56.693 580.369 null ] +>> +endobj +290 0 obj +<< +/D [ 3 0 R /XYZ 56.693 505.357 null ] +>> +endobj +291 0 obj +<< +/D [ 3 0 R /XYZ 56.693 505.357 null ] +>> +endobj +292 0 obj +<< +/D [ 59 0 R /XYZ 56.693 667.79 null ] +>> +endobj +293 0 obj +<< +/D [ 109 0 R /XYZ 56.693 667.635 null ] +>> +endobj +294 0 obj +<< +/D [ 109 0 R /XYZ 56.693 151.169 null ] +>> +endobj +295 0 obj +<< +/D [ 116 0 R /XYZ 56.693 712.27 null ] +>> +endobj +296 0 obj +<< +/D [ 94 0 R /XYZ 56.693 154.378 null ] +>> +endobj +297 0 obj +<< +/D [ 99 0 R /XYZ 56.693 653.694 null ] +>> +endobj +298 0 obj +<< +/D [ 99 0 R /XYZ 56.693 522.192 null ] +>> +endobj +299 0 obj +<< +/D [ 99 0 R /XYZ 56.693 368.771 null ] +>> +endobj +300 0 obj +<< +/D [ 99 0 R /XYZ 56.693 145.163 null ] +>> +endobj +301 0 obj +<< +/D [ 106 0 R /XYZ 56.693 619.416 null ] +>> +endobj +302 0 obj +<< +/D [ 106 0 R /XYZ 56.693 418.909 null ] +>> +endobj +303 0 obj +<< +/D [ 106 0 R /XYZ 56.693 240.376 null ] +>> +endobj +304 0 obj +<< +/D [ 78 0 R /XYZ 56.693 63.507 null ] +>> +endobj +305 0 obj +<< +/D [ 78 0 R /XYZ 56.693 63.507 null ] +>> +endobj +306 0 obj +<< +/D [ 99 0 R /XYZ 56.693 723.827 null ] +>> +endobj +307 0 obj +<< +/D [ 99 0 R /XYZ 56.693 723.827 null ] +>> +endobj +308 0 obj +<< +/D [ 99 0 R /XYZ 56.693 723.827 null ] +>> +endobj +309 0 obj +<< /S /GoTo /D [ 3 0 R /Fit ] >> endobj -263 0 obj +310 0 obj << /Author (David Abrahams, Jeremy Siek, Thomas Witt) /Title (New Iterator Concepts) @@ -2481,281 +3035,328 @@ endobj /Creator (LaTeX with hyperref package) /Producer (pdfTeX-1.10b extended by PPower4 V0.9.4) /Keywords () -/CreationDate (D:20040123155600) +/CreationDate (D:20040129005000) >> endobj xref -0 264 +0 311 0000000000 65535 f 0000000009 00000 n 0000000236 00000 n -0000000381 00000 n -0000000487 00000 n -0000000555 00000 n -0000000643 00000 n -0000002695 00000 n -0000002921 00000 n -0000003257 00000 n -0000003456 00000 n -0000003647 00000 n -0000003842 00000 n -0000004039 00000 n -0000004227 00000 n -0000004421 00000 n -0000004615 00000 n -0000004777 00000 n -0000004951 00000 n -0000005158 00000 n -0000005343 00000 n -0000005507 00000 n -0000005671 00000 n -0000005829 00000 n -0000005994 00000 n -0000006183 00000 n -0000006391 00000 n -0000006585 00000 n -0000006779 00000 n -0000006975 00000 n -0000007165 00000 n -0000007368 00000 n -0000007572 00000 n -0000007772 00000 n -0000007983 00000 n -0000008206 00000 n -0000008430 00000 n -0000008634 00000 n -0000008820 00000 n -0000009004 00000 n -0000009164 00000 n -0000009257 00000 n -0000009345 00000 n -0000009522 00000 n -0000009824 00000 n -0000010255 00000 n -0000024625 00000 n -0000027228 00000 n -0000027391 00000 n -0000027620 00000 n -0000027850 00000 n -0000028079 00000 n -0000028302 00000 n -0000028528 00000 n -0000028756 00000 n -0000028873 00000 n -0000028963 00000 n -0000029121 00000 n -0000030943 00000 n -0000031147 00000 n -0000031373 00000 n -0000033021 00000 n -0000037286 00000 n -0000037395 00000 n -0000037500 00000 n -0000037657 00000 n -0000038818 00000 n -0000038842 00000 n -0000039048 00000 n -0000040760 00000 n -0000042860 00000 n -0000042969 00000 n -0000043098 00000 n -0000043188 00000 n -0000045434 00000 n -0000045543 00000 n -0000045683 00000 n -0000052396 00000 n -0000076813 00000 n -0000077938 00000 n -0000078066 00000 n -0000078296 00000 n -0000078413 00000 n -0000081972 00000 n -0000082081 00000 n -0000082198 00000 n -0000082292 00000 n -0000085113 00000 n -0000085222 00000 n -0000085339 00000 n -0000088140 00000 n -0000088249 00000 n -0000088366 00000 n -0000090814 00000 n -0000090963 00000 n -0000091132 00000 n -0000091302 00000 n -0000091471 00000 n -0000091640 00000 n -0000091757 00000 n -0000095339 00000 n -0000095471 00000 n -0000095704 00000 n -0000095835 00000 n -0000095929 00000 n -0000099242 00000 n -0000099374 00000 n -0000099607 00000 n -0000099714 00000 n -0000100460 00000 n -0000100537 00000 n -0000100616 00000 n -0000100653 00000 n -0000100710 00000 n -0000100803 00000 n -0000100833 00000 n -0000100883 00000 n -0000101015 00000 n -0000101057 00000 n -0000101119 00000 n -0000101212 00000 n -0000101238 00000 n -0000101284 00000 n -0000101416 00000 n -0000101449 00000 n -0000101502 00000 n -0000101581 00000 n -0000101610 00000 n -0000101659 00000 n -0000101777 00000 n -0000101836 00000 n -0000101913 00000 n -0000102006 00000 n -0000102061 00000 n -0000102134 00000 n -0000102213 00000 n -0000102266 00000 n -0000102337 00000 n -0000102416 00000 n -0000102494 00000 n -0000102590 00000 n -0000102669 00000 n -0000102741 00000 n -0000102831 00000 n -0000102935 00000 n -0000103013 00000 n -0000103107 00000 n -0000103186 00000 n -0000103239 00000 n -0000103312 00000 n -0000103405 00000 n -0000103437 00000 n -0000103489 00000 n -0000103568 00000 n -0000103600 00000 n -0000103651 00000 n -0000103689 00000 n -0000103730 00000 n -0000107363 00000 n -0000107416 00000 n -0000107473 00000 n -0000107530 00000 n -0000107589 00000 n -0000107648 00000 n -0000107707 00000 n -0000107766 00000 n -0000107823 00000 n -0000107880 00000 n -0000107944 00000 n -0000108002 00000 n -0000108060 00000 n -0000108118 00000 n -0000108176 00000 n -0000108234 00000 n -0000108292 00000 n -0000108351 00000 n -0000108410 00000 n -0000108468 00000 n -0000108526 00000 n -0000108584 00000 n -0000108642 00000 n -0000108700 00000 n -0000108758 00000 n -0000108816 00000 n -0000108874 00000 n -0000108932 00000 n -0000108990 00000 n -0000109048 00000 n -0000109106 00000 n -0000109164 00000 n -0000109222 00000 n -0000109278 00000 n -0000109334 00000 n -0000109387 00000 n -0000109441 00000 n -0000109495 00000 n -0000109550 00000 n -0000109605 00000 n -0000109658 00000 n -0000109712 00000 n -0000109766 00000 n -0000109820 00000 n -0000109874 00000 n -0000109928 00000 n -0000109982 00000 n -0000110036 00000 n -0000110093 00000 n -0000110150 00000 n -0000110208 00000 n -0000110266 00000 n -0000110324 00000 n -0000110382 00000 n -0000110445 00000 n -0000110502 00000 n -0000110559 00000 n -0000110616 00000 n -0000110674 00000 n -0000110732 00000 n -0000110790 00000 n -0000110848 00000 n -0000110906 00000 n -0000110964 00000 n -0000111022 00000 n -0000111080 00000 n -0000111138 00000 n -0000111196 00000 n -0000111254 00000 n -0000111312 00000 n -0000111370 00000 n -0000111428 00000 n -0000111486 00000 n -0000111545 00000 n -0000111604 00000 n -0000111662 00000 n -0000111719 00000 n -0000111777 00000 n -0000111835 00000 n -0000111893 00000 n -0000111951 00000 n -0000112008 00000 n -0000112066 00000 n -0000112124 00000 n -0000112182 00000 n -0000112240 00000 n -0000112297 00000 n -0000112354 00000 n -0000112412 00000 n -0000112470 00000 n -0000112528 00000 n -0000112586 00000 n -0000112644 00000 n -0000112702 00000 n -0000112760 00000 n -0000112818 00000 n -0000112876 00000 n -0000112934 00000 n -0000112992 00000 n -0000113050 00000 n -0000113108 00000 n -0000113166 00000 n -0000113224 00000 n -0000113282 00000 n -0000113340 00000 n -0000113390 00000 n +0000000363 00000 n +0000000701 00000 n +0000000900 00000 n +0000001089 00000 n +0000001284 00000 n +0000001482 00000 n +0000001670 00000 n +0000001864 00000 n +0000002059 00000 n +0000002220 00000 n +0000002394 00000 n +0000002601 00000 n +0000002787 00000 n +0000002952 00000 n +0000003116 00000 n +0000003274 00000 n +0000003439 00000 n +0000003628 00000 n +0000003833 00000 n +0000004026 00000 n +0000004220 00000 n +0000004415 00000 n +0000004605 00000 n +0000004808 00000 n +0000005011 00000 n +0000005211 00000 n +0000005422 00000 n +0000005646 00000 n +0000005870 00000 n +0000006073 00000 n +0000006259 00000 n +0000006443 00000 n +0000006603 00000 n +0000006720 00000 n +0000006877 00000 n +0000007989 00000 n +0000008141 00000 n +0000008361 00000 n +0000012071 00000 n +0000012229 00000 n +0000012516 00000 n +0000012876 00000 n +0000023017 00000 n +0000023174 00000 n +0000023571 00000 n +0000024063 00000 n +0000039501 00000 n +0000039659 00000 n +0000039921 00000 n +0000040237 00000 n +0000047515 00000 n +0000047673 00000 n +0000048857 00000 n +0000049159 00000 n +0000049571 00000 n +0000059445 00000 n +0000062491 00000 n +0000062661 00000 n +0000062890 00000 n +0000063120 00000 n +0000063349 00000 n +0000063572 00000 n +0000063798 00000 n +0000064025 00000 n +0000064154 00000 n +0000064312 00000 n +0000065426 00000 n +0000065670 00000 n +0000065945 00000 n +0000074655 00000 n +0000074813 00000 n +0000076635 00000 n +0000076839 00000 n +0000077065 00000 n +0000078712 00000 n +0000084197 00000 n +0000084313 00000 n +0000084430 00000 n +0000084587 00000 n +0000085748 00000 n +0000085772 00000 n +0000085978 00000 n +0000087690 00000 n +0000087848 00000 n +0000087872 00000 n +0000088080 00000 n +0000089781 00000 n +0000092866 00000 n +0000092982 00000 n +0000093122 00000 n +0000099835 00000 n +0000102009 00000 n +0000102144 00000 n +0000102373 00000 n +0000102525 00000 n +0000126942 00000 n +0000130846 00000 n +0000130964 00000 n +0000131083 00000 n +0000131246 00000 n +0000131414 00000 n +0000131649 00000 n +0000135938 00000 n +0000139875 00000 n +0000139994 00000 n +0000140112 00000 n +0000144133 00000 n +0000144296 00000 n +0000144465 00000 n +0000144636 00000 n +0000144805 00000 n +0000144975 00000 n +0000145093 00000 n +0000149290 00000 n +0000149429 00000 n +0000149662 00000 n +0000149805 00000 n +0000149968 00000 n +0000151155 00000 n +0000151366 00000 n +0000151606 00000 n +0000156208 00000 n +0000160496 00000 n +0000160635 00000 n +0000160868 00000 n +0000160975 00000 n +0000161573 00000 n +0000161650 00000 n +0000161729 00000 n +0000161766 00000 n +0000161823 00000 n +0000161916 00000 n +0000161946 00000 n +0000161996 00000 n +0000162128 00000 n +0000162170 00000 n +0000162232 00000 n +0000162325 00000 n +0000162351 00000 n +0000162397 00000 n +0000162529 00000 n +0000162562 00000 n +0000162615 00000 n +0000162694 00000 n +0000162723 00000 n +0000162772 00000 n +0000162890 00000 n +0000162949 00000 n +0000163026 00000 n +0000163119 00000 n +0000163174 00000 n +0000163247 00000 n +0000163326 00000 n +0000163379 00000 n +0000163450 00000 n +0000163568 00000 n +0000163646 00000 n +0000163742 00000 n +0000163860 00000 n +0000163932 00000 n +0000164022 00000 n +0000164101 00000 n +0000164174 00000 n +0000164265 00000 n +0000164358 00000 n +0000164427 00000 n +0000164514 00000 n +0000164607 00000 n +0000164688 00000 n +0000164787 00000 n +0000164880 00000 n +0000164973 00000 n +0000165084 00000 n +0000165177 00000 n +0000165270 00000 n +0000165381 00000 n +0000165460 00000 n +0000165533 00000 n +0000165624 00000 n +0000165703 00000 n +0000165766 00000 n +0000165847 00000 n +0000165940 00000 n +0000166003 00000 n +0000166084 00000 n +0000166177 00000 n +0000166242 00000 n +0000166325 00000 n +0000166404 00000 n +0000166463 00000 n +0000166540 00000 n +0000166644 00000 n +0000166722 00000 n +0000166816 00000 n +0000166895 00000 n +0000166948 00000 n +0000167021 00000 n +0000167114 00000 n +0000167146 00000 n +0000167198 00000 n +0000167277 00000 n +0000167309 00000 n +0000167360 00000 n +0000167398 00000 n +0000167439 00000 n +0000170994 00000 n +0000171055 00000 n +0000171117 00000 n +0000171179 00000 n +0000171242 00000 n +0000171305 00000 n +0000171368 00000 n +0000171431 00000 n +0000171494 00000 n +0000171557 00000 n +0000171621 00000 n +0000171683 00000 n +0000171745 00000 n +0000171807 00000 n +0000171869 00000 n +0000171930 00000 n +0000171991 00000 n +0000172054 00000 n +0000172117 00000 n +0000172180 00000 n +0000172243 00000 n +0000172305 00000 n +0000172367 00000 n +0000172429 00000 n +0000172491 00000 n +0000172554 00000 n +0000172617 00000 n +0000172679 00000 n +0000172741 00000 n +0000172803 00000 n +0000172865 00000 n +0000172927 00000 n +0000172989 00000 n +0000173049 00000 n +0000173109 00000 n +0000173170 00000 n +0000173233 00000 n +0000173295 00000 n +0000173357 00000 n +0000173419 00000 n +0000173481 00000 n +0000173543 00000 n +0000173606 00000 n +0000173669 00000 n +0000173732 00000 n +0000173794 00000 n +0000173856 00000 n +0000173918 00000 n +0000173980 00000 n +0000174043 00000 n +0000174106 00000 n +0000174169 00000 n +0000174231 00000 n +0000174293 00000 n +0000174354 00000 n +0000174416 00000 n +0000174478 00000 n +0000174540 00000 n +0000174602 00000 n +0000174664 00000 n +0000174726 00000 n +0000174787 00000 n +0000174848 00000 n +0000174911 00000 n +0000174974 00000 n +0000175036 00000 n +0000175099 00000 n +0000175162 00000 n +0000175225 00000 n +0000175288 00000 n +0000175351 00000 n +0000175414 00000 n +0000175476 00000 n +0000175538 00000 n +0000175599 00000 n +0000175660 00000 n +0000175720 00000 n +0000175782 00000 n +0000175844 00000 n +0000175907 00000 n +0000175970 00000 n +0000176032 00000 n +0000176094 00000 n +0000176155 00000 n +0000176216 00000 n +0000176277 00000 n +0000176340 00000 n +0000176403 00000 n +0000176465 00000 n +0000176527 00000 n +0000176589 00000 n +0000176651 00000 n +0000176713 00000 n +0000176775 00000 n +0000176838 00000 n +0000176901 00000 n +0000176964 00000 n +0000177025 00000 n +0000177086 00000 n +0000177148 00000 n +0000177210 00000 n +0000177272 00000 n +0000177322 00000 n trailer << -/Size 264 +/Size 311 /Root 1 0 R -/Info 263 0 R +/Info 310 0 R >> startxref -113644 +177576 %%EOF diff --git a/doc/permutation_iterator.pdf b/doc/permutation_iterator.pdf index 203e0f8..37d35ff 100755 Binary files a/doc/permutation_iterator.pdf and b/doc/permutation_iterator.pdf differ diff --git a/doc/pointee.html b/doc/pointee.html index 4ca16d8..0678b9f 100755 --- a/doc/pointee.html +++ b/doc/pointee.html @@ -21,7 +21,7 @@ Author: David Abrahams Contact: -dave@boost-consulting.com, jsiek@osl.iu.edu, witt@ive.uni-hannover.de +dave@boost-consulting.com Organization: Boost Consulting Date: diff --git a/doc/pointee.pdf b/doc/pointee.pdf index a61b36c..83e5f84 100755 Binary files a/doc/pointee.pdf and b/doc/pointee.pdf differ diff --git a/doc/pointee.rst b/doc/pointee.rst index 21b90a4..8e0e6e4 100755 --- a/doc/pointee.rst +++ b/doc/pointee.rst @@ -1,9 +1,9 @@ ++++++++++++++++++++++++++++++++++++++++ - ``pointee`` and ``indirect_reference`` + ``pointee`` and ``indirect_reference`` ++++++++++++++++++++++++++++++++++++++++ :Author: David Abrahams -:Contact: dave@boost-consulting.com, jsiek@osl.iu.edu, witt@ive.uni-hannover.de +:Contact: dave@boost-consulting.com :organization: `Boost Consulting`_ :date: $Date$ :copyright: Copyright David Abrahams 2004. All rights reserved diff --git a/doc/reverse_iterator.pdf b/doc/reverse_iterator.pdf index 582c336..34092cb 100755 Binary files a/doc/reverse_iterator.pdf and b/doc/reverse_iterator.pdf differ diff --git a/doc/rst2latex b/doc/rst2latex new file mode 100755 index 0000000..795610c --- /dev/null +++ b/doc/rst2latex @@ -0,0 +1,4 @@ +#!/bin/sh +PYTHONPATH="c:/src/docutils/docutils;c:/src/docutils/docutils/extras" +export PYTHONPATH +python c:/src/docutils/docutils/tools/rst2latex.py --documentoptions pdftex --stylesheet=docutils.sty --embed-stylesheet $1 `echo $1 | sed 's/\(.*\)\..*/\1.tex/'` diff --git a/doc/sources.py b/doc/sources.py index 1458e96..5f954a5 100644 --- a/doc/sources.py +++ b/doc/sources.py @@ -1,6 +1,6 @@ -# This is where we list the ReStructuredText source files that form -# the book. When you're ready to expose a new chapter, add the -# filename here and put links in index.rst +# Copyright David Abrahams 2004. Use, modification and distribution is +# subject to the Boost Software License, Version 1.0. (See accompanying +# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sources = [ 'counting_iterator.rst', @@ -17,6 +17,8 @@ sources = [ 'reverse_iterator.rst', 'transform_iterator.rst', 'zip_iterator.rst', -'iterator_archetypes.rst' +'iterator_archetypes.rst', +'iterator_concepts.rst', +'iterator_traits.rst' ] diff --git a/doc/syscmd.py b/doc/syscmd.py new file mode 100644 index 0000000..e6a8dca --- /dev/null +++ b/doc/syscmd.py @@ -0,0 +1,14 @@ +# Copyright David Abrahams 2004. Use, modification and distribution is +# subject to the Boost Software License, Version 1.0. (See accompanying +# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +import os +import sys + +def syscmd(s): + print 'executing: ', repr(s) + sys.stdout.flush() + err = os.system(s) + if err: + raise SystemError, 'command: %s returned %s' % ( + repr(s), err) diff --git a/doc/transform_iterator.pdf b/doc/transform_iterator.pdf index 0675701..2de6d65 100755 Binary files a/doc/transform_iterator.pdf and b/doc/transform_iterator.pdf differ diff --git a/doc/zip_iterator.html b/doc/zip_iterator.html index c76823a..060bd13 100755 --- a/doc/zip_iterator.html +++ b/doc/zip_iterator.html @@ -7,7 +7,7 @@ Zip Iterator - + @@ -25,7 +25,7 @@ Organization: Boost Consulting, Zephyr Associates, Inc. Date: -2004-01-19 +2004-01-27 Copyright: Copyright David Abrahams and Thomas Becker 2003. All rights reserved diff --git a/doc/zip_iterator.pdf b/doc/zip_iterator.pdf index e35087c..8cbd22d 100755 Binary files a/doc/zip_iterator.pdf and b/doc/zip_iterator.pdf differ