From 94124bc6ebef1359c1994f9ec64ac5161d2db276 Mon Sep 17 00:00:00 2001 From: Hans Hagen Date: Thu, 5 Jan 2012 19:27:17 +0100 Subject: beta 2011.11.02 20:10 --- metapost/context/base/mp-mlib.mpiv | 21 +- tex/context/base/attr-col.lua | 10 +- tex/context/base/cont-new.mkii | 2 +- tex/context/base/cont-new.mkiv | 2 +- tex/context/base/context-version.pdf | 26 +- tex/context/base/context-version.png | Bin 106314 -> 105046 bytes tex/context/base/context.mkii | 2 +- tex/context/base/context.mkiv | 7 +- tex/context/base/core-con.lua | 30 +- tex/context/base/core-con.mkiv | 5 +- tex/context/base/core-fnt.mkiv | 80 +- tex/context/base/file-job.mkvi | 8 +- tex/context/base/font-afm.lua | 3 +- tex/context/base/font-chk.lua | 213 +- tex/context/base/font-con.lua | 47 +- tex/context/base/font-ctx.lua | 8 + tex/context/base/font-ext.lua | 90 +- tex/context/base/font-gds.lua | 16 +- tex/context/base/font-otf.lua | 7 +- tex/context/base/font-tfm.lua | 5 +- tex/context/base/meta-ini.mkiv | 7 + tex/context/base/mlib-pps.lua | 58 +- tex/context/base/mtx-context-arrange.tex | 15 + tex/context/base/mtx-context-combine.tex | 8 +- tex/context/base/mtx-context-common.tex | 2 +- tex/context/base/mult-aux.mkiv | 2 +- tex/context/base/node-res.lua | 7 + tex/context/base/s-fonts-missing.mkiv | 79 + tex/context/base/s-mod-01.mkiv | 110 +- tex/context/base/scrn-ini.mkvi | 6 + tex/context/base/status-files.pdf | 1563 ++++----- tex/context/base/status-lua.pdf | 3324 ++++++++++---------- tex/context/base/supp-fun.mkiv | 38 +- tex/context/base/task-ini.lua | 5 + tex/context/base/typo-cln.lua | 18 +- tex/context/base/typo-cln.mkiv | 7 +- tex/context/base/typo-itc.lua | 64 +- tex/context/base/typo-mar.lua | 24 +- tex/context/base/typo-mar.mkiv | 46 +- tex/context/base/typo-pag.lua | 172 + tex/context/base/typo-pag.mkiv | 20 + tex/context/base/typo-par.lua | 184 ++ tex/context/base/typo-par.mkiv | 105 + tex/context/base/typo-txt.mkvi | 71 + tex/generic/context/luatex/luatex-fonts-merged.lua | 56 +- 45 files changed, 3840 insertions(+), 2733 deletions(-) create mode 100644 tex/context/base/s-fonts-missing.mkiv create mode 100644 tex/context/base/typo-pag.lua create mode 100644 tex/context/base/typo-pag.mkiv create mode 100644 tex/context/base/typo-par.lua create mode 100644 tex/context/base/typo-par.mkiv create mode 100644 tex/context/base/typo-txt.mkvi diff --git a/metapost/context/base/mp-mlib.mpiv b/metapost/context/base/mp-mlib.mpiv index 329683f8c..eaef033a9 100644 --- a/metapost/context/base/mp-mlib.mpiv +++ b/metapost/context/base/mp-mlib.mpiv @@ -54,12 +54,11 @@ vardef transparency_alternative_to_number(expr name) = fi enddef ; -% def namedcolor(expr n, v) = -% 1 -% withprescript "sp_type=named" -% withprescript "sp_name=" & n -% withprescript "sp_value=" & v -% enddef ; +def namedcolor (expr n) = + 1 + withprescript "sp_type=named" + withprescript "sp_name=" & n +enddef ; def spotcolor(expr n, v) = 1 @@ -157,6 +156,16 @@ enddef ; defaultfont := "Mono" ; % was cmr10, could be lmmono10-regular, but is fed into context anyway +vardef fontsize expr str = + save size ; numeric size ; + size := bbwidth(textext("\MPfontsizehskip{" & defaultfont & "}")) ; + if size = 0 : + 12pt + else : + size + fi +enddef ; + pair mfun_laboff ; mfun_laboff := (0,0) ; pair mfun_laboff.lft ; mfun_laboff.lft := (-1,0) ; pair mfun_laboff.rt ; mfun_laboff.rt := (1,0) ; diff --git a/tex/context/base/attr-col.lua b/tex/context/base/attr-col.lua index 871ac3e03..6683e9a2d 100644 --- a/tex/context/base/attr-col.lua +++ b/tex/context/base/attr-col.lua @@ -9,6 +9,9 @@ if not modules then modules = { } end modules ['attr-col'] = { -- this module is being reconstructed and code will move to other places -- we can also do the nsnone via a metatable and then also se index 0 +-- list could as well refer to the tables (instead of numbers that +-- index into another table) .. depends on what we need + local type = type local format = string.format local concat = table.concat @@ -349,13 +352,15 @@ end -- transparencies +local a_transparency = attributes.private('transparency') + attributes.transparencies = attributes.transparencies or { } local transparencies = attributes.transparencies transparencies.registered = transparencies.registered or { } transparencies.data = allocate() transparencies.values = transparencies.values or { } transparencies.triggering = true -transparencies.attribute = attributes.private('transparency') +transparencies.attribute = a_transparency transparencies.supported = true storage.register("attributes/transparencies/registered", transparencies.registered, "attributes.transparencies.registered") @@ -393,6 +398,9 @@ function transparencies.register(name,a,t,force) -- name is irrelevant here (can elseif force and not data[n] then register_transparency(n,a,t) end + if name then + list[a_transparency][name] = n -- not grouped, so only global transparencies + end return registered[stamp] end diff --git a/tex/context/base/cont-new.mkii b/tex/context/base/cont-new.mkii index 6c23cf5bb..e6c4667a4 100644 --- a/tex/context/base/cont-new.mkii +++ b/tex/context/base/cont-new.mkii @@ -11,7 +11,7 @@ %C therefore copyrighted by \PRAGMA. See mreadme.pdf for %C details. -\newcontextversion{2011.10.28 22:32} +\newcontextversion{2011.11.02 20:10} %D This file is loaded at runtime, thereby providing an %D excellent place for hacks, patches, extensions and new diff --git a/tex/context/base/cont-new.mkiv b/tex/context/base/cont-new.mkiv index 1f66ecf79..e69bb2250 100644 --- a/tex/context/base/cont-new.mkiv +++ b/tex/context/base/cont-new.mkiv @@ -11,7 +11,7 @@ %C therefore copyrighted by \PRAGMA. See mreadme.pdf for %C details. -\newcontextversion{2011.10.28 22:32} +\newcontextversion{2011.11.02 20:10} %D This file is loaded at runtime, thereby providing an %D excellent place for hacks, patches, extensions and new diff --git a/tex/context/base/context-version.pdf b/tex/context/base/context-version.pdf index 637928702..a1da50d5d 100644 --- a/tex/context/base/context-version.pdf +++ b/tex/context/base/context-version.pdf @@ -55,7 +55,7 @@ h f 0.000 0.700 0.000 rg 0.000 0.700 0.000 RG 10.070053 2.375809 m 87.534943 62.348938 l -60.763657 35.427704 64.666656 -5.834824 95.250870 -19.224304 c +58.287216 36.077240 62.418533 -7.599014 95.250870 -19.224304 c 10.070053 2.375809 l h f 0 g 0 G @@ -69,7 +69,7 @@ h f 0.000 0.000 0.700 rg 0.000 0.000 0.700 RG 6.996964 -6.113174 m 94.155334 -22.251892 l -58.031265 -17.699509 24.317474 -54.247360 32.849838 -88.710907 c +66.970764 -37.042160 45.038116 -60.818512 32.849838 -88.710907 c 6.996964 -6.113174 l h f 0 g 0 G @@ -83,7 +83,7 @@ h f 0.000 0.700 0.700 rg 0.000 0.700 0.700 RG -1.345032 -9.998840 m 29.874359 -90.097046 l -15.309891 -58.363571 -31.108002 -59.080185 -54.288406 -91.396378 c +13.670990 -60.770996 -30.111328 -61.446930 -54.288406 -91.396378 c -1.345032 -9.998840 l h f 0 g 0 G @@ -97,7 +97,7 @@ h f 0.700 0.000 0.700 rg 0.700 0.000 0.700 RG -8.674164 -6.355164 m -56.902374 -90.097046 l --49.807724 -57.744019 -68.968475 -29.278183 -100.546051 -25.258499 c +-58.992950 -61.206207 -75.207825 -37.116867 -100.546051 -25.258499 c -8.674164 -6.355164 l h f 0 g 0 G @@ -163,17 +163,17 @@ stream s-version - 2011.10.28 22:32 + 2011.11.02 20:11 www.pragma-ade.com - 2011.10.28 22:32 - s-version.2011-10-28T22:32:41+02:00 + 2011.11.02 20:10 + s-version.2011-11-02T20:11:08+01:00 This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1 - 2011-10-28T22:32:41+02:00 - ConTeXt - 2011.10.28 22:32 - 2011-10-28T22:32:41+02:00 - 2011-10-28T22:32:41+02:00 + 2011-11-02T20:11:08+01:00 + ConTeXt - 2011.11.02 20:10 + 2011-11-02T20:11:08+01:00 + 2011-11-02T20:11:08+01:00 @@ -201,7 +201,7 @@ endobj endobj 22 0 obj << -/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.10.28 22:32) /ConTeXt.Jobname (s-version) /CreationDate (D:20111028223241+02'00') /Trapped /False /Title /ConTeXt.Time (2011.10.28 22:32) /ID (s-version.2011-10-28T22:32:41+02:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111028223241+02'00') /Creator +/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.11.02 20:10) /ConTeXt.Jobname (s-version) /CreationDate (D:20111102201108+01'00') /Trapped /False /Title /ConTeXt.Time (2011.11.02 20:11) /ID (s-version.2011-11-02T20:11:08+01:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111102201108+01'00') /Creator /PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>> endobj xref @@ -230,7 +230,7 @@ xref 0000006116 00000 n 0000006268 00000 n trailer -< ]>> +< <87760E0AF8C9536F734AF6F658E056C3>]>> startxref 6866 %%EOF diff --git a/tex/context/base/context-version.png b/tex/context/base/context-version.png index 6fcea3e5c..dcf05bb3b 100644 Binary files a/tex/context/base/context-version.png and b/tex/context/base/context-version.png differ diff --git a/tex/context/base/context.mkii b/tex/context/base/context.mkii index 866cd05c4..b6d1db2e8 100644 --- a/tex/context/base/context.mkii +++ b/tex/context/base/context.mkii @@ -20,7 +20,7 @@ %D your styles an modules. \edef\contextformat {\jobname} -\edef\contextversion{2011.10.28 22:32} +\edef\contextversion{2011.11.02 20:10} %D For those who want to use this: diff --git a/tex/context/base/context.mkiv b/tex/context/base/context.mkiv index 0f4e4ca33..5ac5ad90d 100644 --- a/tex/context/base/context.mkiv +++ b/tex/context/base/context.mkiv @@ -20,7 +20,7 @@ %D your styles an modules. \edef\contextformat {\jobname} -\edef\contextversion{2011.10.28 22:32} +\edef\contextversion{2011.11.02 20:10} %D For those who want to use this: @@ -148,7 +148,7 @@ \loadmarkfile{supp-box} \loadmarkfile{supp-vis} -\loadmarkfile{supp-fun} +\loadmarkfile{supp-fun} % close to obsolete \loadmarkfile{supp-ran} \loadmarkfile{supp-mat} @@ -264,6 +264,7 @@ \loadmarkfile{page-lin} \loadmarkfile{page-par} %loadmarkfile{page-mar} % also commented code in anch-pgr.mkiv +\loadmarkfile{typo-pag} \loadmarkfile{typo-mar} % \loadmkvifile{file-job} % why so late? @@ -333,6 +334,8 @@ \loadmarkfile{typo-cap} \loadmarkfile{typo-dig} \loadmarkfile{typo-rep} +\loadmkvifile{typo-txt} +\loadmarkfile{typo-par} \loadmarkfile{type-ini} \loadmarkfile{type-set} diff --git a/tex/context/base/core-con.lua b/tex/context/base/core-con.lua index 4ddc9e0b6..4bd51770a 100644 --- a/tex/context/base/core-con.lua +++ b/tex/context/base/core-con.lua @@ -804,8 +804,9 @@ end -- a prelude to a function that we can use at the lua end -- day:ord month:mmem +-- j and jj obsolete -function commands.currentdate(str,currentlanguage) -- j and jj obsolete +function commands.currentdate(str,currentlanguage) -- second argument false : no label local list = utilities.parsers.settings_to_array(str) local year, month, day = tex.year, tex.month, tex.day local auto = true @@ -831,7 +832,9 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete elseif tag == "Y" then context(year) elseif tag == v_month or tag == "m" then - if mnemonic then + if currentlanguage == false then + context(months[month] or "unknown") + elseif mnemonic then commands.monthmnem(month) else commands.monthname(month) @@ -841,7 +844,11 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete elseif tag == "M" then context(month) elseif tag == v_day or tag == "d" then - context.convertnumber(v_day,day) + if currentlanguage == false then + context(days[day] or "unknown") + else + context.convertnumber(v_day,day) + end whatordinal = day elseif tag == "dd" then context("%02i",day) @@ -850,7 +857,12 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete context(day) whatordinal = day elseif tag == v_weekday or tag == "w" then - commands.dayname(weekday(day,month,year)) + local wd = weekday(day,month,year) + if currentlanguage == false then + context(days[wd] or "unknown") + else + commands.dayname(wd) + end elseif tag == "W" then context(weekday(day,month,year)) elseif tag == v_referral then @@ -863,7 +875,15 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete auto = true end if ordinal and whatordinal then - context("%s",converters.ordinal(whatordinal,currentlanguage)) + if currentlanguage == false then + -- ignore + else + context("%s",converters.ordinal(whatordinal,currentlanguage)) + end end end end + +function commands.rawdate(str) + commands.currentdate(str,false) +end diff --git a/tex/context/base/core-con.mkiv b/tex/context/base/core-con.mkiv index 427486c39..d8820050a 100644 --- a/tex/context/base/core-con.mkiv +++ b/tex/context/base/core-con.mkiv @@ -336,7 +336,7 @@ % [\the\normaltime=\the\time] %D \macros -%D {currentdate, date} +%D {currentdate, rawdate, date} %D %D We use these conversion macros in the date formatting %D macro: @@ -456,6 +456,9 @@ \docurrentdate[#2]% \endgroup} +\def\rawdate[#1]% expandable and no labels + {\ctxcommand{rawdate(\!!bs\currentdatespecification\!!es)}} + %D \macros %D {currenttime} %D diff --git a/tex/context/base/core-fnt.mkiv b/tex/context/base/core-fnt.mkiv index c1acd07b6..641411f00 100644 --- a/tex/context/base/core-fnt.mkiv +++ b/tex/context/base/core-fnt.mkiv @@ -100,6 +100,8 @@ %D Given the following settings, the space is 1em by default: +%D OBSOLETE: + \def\stretchedspacefactor{4} \def\stretchedspaceamount{.25em} \def\stretchedbreaktokens{.@/} @@ -247,44 +249,44 @@ %D %D \getbuffer -%D \macros -%D {setupinitial,placeinitial,checkinitial} -%D -%D {\em To be documented.} -%D -%D \starttyping -%D \setupinitial[state=start] \placeinitial \input tufte -%D \stoptyping -%D -%D and -%D -%D \starttyping -%D \def\bpar{\ifvmode\checkinitial\fi} -%D \def\epar{\ifhmode\par\fi\checkinitial} -%D \stoptyping - -% to do: more fine tuning - -\unexpanded\def\setupinitial - {\dodoubleempty\getparameters[\??dc]} - -\definefontsynonym[Initial][Regular] % prefered initial identifier -\definefontsynonym[initial][Initial] % internal but accepted too - -\setupinitial - [\c!state=\v!stop, - \c!location=\v!text, - \c!n=3, - \c!distance=.125em, - \c!command=, - \s!font=initial] - -\def\AutoDroppedCapsCommand{\NiceDroppedCaps\@@dccommand\@@dcfont\@@dcdistance\@@dcn}% - -\unexpanded\def\placeinitial - {\doifelse\@@dclocation\v!margin{\chardef\DropMode\plusone}{\chardef\DropMode\zerocount}% - \doif \@@dcstate\v!start{\ifcase\@@dcn\else\AutoDroppedCaps\fi}} - -\let\checkinitial\CheckDroppedCaps +% %D \macros +% %D {setupinitial,placeinitial,checkinitial} +% %D +% %D {\em To be documented.} +% %D +% %D \starttyping +% %D \setupinitial[state=start] \placeinitial \input tufte +% %D \stoptyping +% %D +% %D and +% %D +% %D \starttyping +% %D \def\bpar{\ifvmode\checkinitial\fi} +% %D \def\epar{\ifhmode\par\fi\checkinitial} +% %D \stoptyping +% +% % to do: more fine tuning +% +% \unexpanded\def\setupinitial +% {\dodoubleempty\getparameters[\??dc]} +% +% \definefontsynonym[Initial][Regular] % prefered initial identifier +% \definefontsynonym[initial][Initial] % internal but accepted too +% +% \setupinitial +% [\c!state=\v!stop, +% \c!location=\v!text, +% \c!n=3, +% \c!distance=.125em, +% \c!command=, +% \s!font=initial] +% +% \def\AutoDroppedCapsCommand{\NiceDroppedCaps\@@dccommand\@@dcfont\@@dcdistance\@@dcn}% +% +% \unexpanded\def\placeinitial +% {\doifelse\@@dclocation\v!margin{\chardef\DropMode\plusone}{\chardef\DropMode\zerocount}% +% \doif \@@dcstate\v!start{\ifcase\@@dcn\else\AutoDroppedCaps\fi}} +% +% \let\checkinitial\CheckDroppedCaps \protect \endinput diff --git a/tex/context/base/file-job.mkvi b/tex/context/base/file-job.mkvi index 2b4ea5203..3c5a60c33 100644 --- a/tex/context/base/file-job.mkvi +++ b/tex/context/base/file-job.mkvi @@ -237,11 +237,14 @@ %D Relatively new (might move as it depends on setups): +\newtoks\everysetupdocument + \unexpanded\def\startdocument % todo: dostarttagged\t!document {\dosingleargument\start_document} \unexpanded\def\start_document[#settings]% {\setvariables[document][#settings]% + \the\everysetupdocument\relax \starttext \documentvariable\c!before} @@ -252,8 +255,9 @@ \def\documentvariable#name% {\getvariable{document}{#name}} -\unexpanded\def\setupdocument - {\dodoubleempty\setvariables[document]} +\unexpanded\def\setupdocument[#1]% + {\setvariables[document][#1]% + \the\everysetupdocument\relax} \setvariables [document] diff --git a/tex/context/base/font-afm.lua b/tex/context/base/font-afm.lua index 400136d70..df7e47409 100644 --- a/tex/context/base/font-afm.lua +++ b/tex/context/base/font-afm.lua @@ -968,7 +968,8 @@ local function read_from_afm(specification) if tfmdata then tfmdata.properties.name = specification.name tfmdata = constructors.scale(tfmdata, specification) - constructors.applymanipulators("afm",tfmdata,specification.features.normal,trace_features,report_afm) + local allfeatures = tfmdata.shared.features or specification.features.normal + constructors.applymanipulators("afm",tfmdata,allfeatures,trace_features,report_afm) fonts.loggers.register(tfmdata,'afm',specification) end return tfmdata diff --git a/tex/context/base/font-chk.lua b/tex/context/base/font-chk.lua index fd4e2e249..04b49b02c 100644 --- a/tex/context/base/font-chk.lua +++ b/tex/context/base/font-chk.lua @@ -9,32 +9,43 @@ if not modules then modules = { } end modules ['font-chk'] = { -- possible optimization: delayed initialization of vectors -- move to the nodes namespace -local report_fonts = logs.reporter("fonts","checking") +local format = string.format +local bpfactor = number.dimenfactors.bp -local fonts = fonts +local report_fonts = logs.reporter("fonts","checking") -fonts.checkers = fonts.checkers or { } -local checkers = fonts.checkers +local fonts = fonts -local fonthashes = fonts.hashes -local fontdata = fonthashes.identifiers -local fontcharacters = fonthashes.characters +fonts.checkers = fonts.checkers or { } +local checkers = fonts.checkers -local is_character = characters.is_character -local chardata = characters.data +local fonthashes = fonts.hashes +local fontdata = fonthashes.identifiers +local fontcharacters = fonthashes.characters -local tasks = nodes.tasks -local enableaction = tasks.enableaction -local disableaction = tasks.disableaction +local addprivate = fonts.helpers.addprivate +local hasprivate = fonts.helpers.hasprivate +local getprivatenode = fonts.helpers.getprivatenode -local glyph = node.id('glyph') -local traverse_id = node.traverse_id -local remove_node = nodes.remove +local otffeatures = fonts.constructors.newfeatures("otf") +local registerotffeature = otffeatures.register + +local is_character = characters.is_character +local chardata = characters.data + +local tasks = nodes.tasks +local enableaction = tasks.enableaction +local disableaction = tasks.disableaction + +local glyph_code = nodes.nodecodes.glyph +local traverse_id = node.traverse_id +local remove_node = nodes.remove +local insert_node_after = node.insert_after -- maybe in fonts namespace -- deletion can be option -local cleanup = false +local action = false -- to tfmdata.properties ? @@ -59,17 +70,139 @@ end fonts.loggers.onetimemessage = onetimemessage +local mapping = { -- this is just an experiment to illustrate some principles elsewhere + lu = "placeholder uppercase red", + ll = "placeholder lowercase red", + lt = "placeholder uppercase red", + lm = "placeholder lowercase red", + lo = "placeholder lowercase red", + mn = "placeholder mark green", + mc = "placeholder mark green", + me = "placeholder mark green", + nd = "placeholder lowercase blue", + nl = "placeholder lowercase blue", + no = "placeholder lowercase blue", + pc = "placeholder punctuation cyan", + pd = "placeholder punctuation cyan", + ps = "placeholder punctuation cyan", + pe = "placeholder punctuation cyan", + pi = "placeholder punctuation cyan", + pf = "placeholder punctuation cyan", + po = "placeholder punctuation cyan", + sm = "placeholder lowercase magenta", + sc = "placeholder lowercase yellow", + sk = "placeholder lowercase yellow", + so = "placeholder lowercase yellow", +} + +table.setmetatableindex(mapping,function(t,k) v = "placeholder unknown gray" t[k] = v return v end) + +local fakes = { + { + name = "lowercase", + code = ".025 -.175 m .425 -.175 l .425 .525 l .025 .525 l .025 -.175 l .025 0 l .425 0 l .025 -.175 m h S", + width = .45, + height = .55, + depth = .20, + }, + { + name = "uppercase", + code = ".025 -.225 m .625 -.225 l .625 .675 l .025 .675 l .025 -.225 l .025 0 l .625 0 l .025 -.225 m h S", + width = .65, + height = .70, + depth = .25, + }, + { + name = "mark", + code = ".025 .475 m .125 .475 l .125 .675 l .025 .675 l .025 .475 l h B", + width = .15, + height = .70, + depth = -.50, + }, + { + name = "punctuation", + code = ".025 -.175 m .125 -.175 l .125 .525 l .025 .525 l .025 -.175 l h B", + width = .15, + height = .55, + depth = .20, + }, + { + name = "unknown", + code = ".025 0 m .425 0 l .425 .175 l .025 .175 l .025 0 l h B", + width = .45, + height = .20, + depth = 0, + }, +} + +local variants = { + { tag = "gray", r = .6, g = .6, b = .6 }, + { tag = "red", r = .6, g = 0, b = 0 }, + { tag = "green", r = 0, g = .6, b = 0 }, + { tag = "blue", r = 0, g = 0, b = .6 }, + { tag = "cyan", r = 0, g = .6, b = .6 }, + { tag = "magenta", r = .6, g = 0, b = .6 }, + { tag = "yellow", r = .6, g = .6, b = 0 }, +} + +local package = "q %0.6f 0 0 %0.6f 0 0 cm %s %s %s rg %s %s %s RG 10 M 1 j 1 J 0.05 w %s Q" + +local cache = { } -- saves some tables but not that impressive + +local function addmissingsymbols(tfmdata) + local characters = tfmdata.characters + local size = tfmdata.parameters.size + local privates = tfmdata.properties.privates + local scale = size * bpfactor + for i=1,#variants do + local v = variants[i] + local tag, r, g, b = v.tag, v.r, v.g, v.b + for i =1, #fakes do + local fake = fakes[i] + local name = fake.name + local privatename = format("placeholder %s %s",name,tag) + if not hasprivate(tfmdata,privatename) then + local hash = format("%s_%s_%s_%s_%s_%s",name,tag,r,g,b,size) + local char = cache[hash] + if not char then + char = { + width = size*fake.width, + height = size*fake.height, + depth = size*fake.depth, + commands = { { "special", "pdf: " .. format(package,scale,scale,r,g,b,r,g,b,fake.code) } } + } + cache[hash] = char + end + addprivate(tfmdata, privatename, char) + end + end + end +end + +registerotffeature { + name = "missing", + description = "missing symbols", + manipulators = { + base = addmissingsymbols, + node = addmissingsymbols, + } +} + +fonts.loggers.category_to_placeholder = mapping + function checkers.missing(head) local lastfont, characters, found = nil, nil, nil - for n in traverse_id(glyph,head) do + for n in traverse_id(glyph_code,head) do -- faster than while loop so we delay removal local font = n.font local char = n.char if font ~= lastfont then characters = fontcharacters[font] end if not characters[char] and is_character[chardata[char].category] then - if cleanup then + if action == "remove" then onetimemessage(font,char,"missing (will be deleted)") + elseif action == "replace" then + onetimemessage(font,char,"missing (will be flagged)") else onetimemessage(font,char,"missing") end @@ -80,10 +213,39 @@ function checkers.missing(head) end end end - if found and cleanup then + if not found then + -- all well + elseif action == "remove" then for i=1,#found do head = remove_node(head,found[i],true) end + elseif action == "replace" then + for i=1,#found do + local n = found[i] + local font = n.font + local char = n.char + local tfmdata = fontdata[font] + local properties = tfmdata.properties + local privates = properties.privates + local category = chardata[char].category + local fakechar = mapping[category] + local p = privates and privates[fakechar] + if not p then + addmissingsymbols(tfmdata) + p = properties.privates[fakechar] + end + if properties.lateprivates then -- .frozen + -- bad, we don't have them at the tex end + local fake = getprivatenode(tfmdata,fakechar) + insert_node_after(head,n,fake) + head = remove_node(head,n,true) + else + -- good, we have \definefontfeature[default][default][missing=yes] + n.char = p + end + end + else + -- maye write a report to the log end return head, false end @@ -94,7 +256,10 @@ trackers.register("fonts.missing", function(v) else disableaction("processors","fonts.checkers.missing") end - cleanup = v == "remove" + if v == "replace" then + otffeatures.defaults.missing = true + end + action = v end) function commands.checkcharactersinfont() @@ -103,5 +268,11 @@ end function commands.removemissingcharacters() enableaction("processors","fonts.checkers.missing") - cleanup = true + action = "remove" +end + +function commands.replacemissingcharacters() + enableaction("processors","fonts.checkers.missing") + action = "replace" + otffeatures.defaults.missing = true end diff --git a/tex/context/base/font-con.lua b/tex/context/base/font-con.lua index 93567cb2d..01707bd30 100644 --- a/tex/context/base/font-con.lua +++ b/tex/context/base/font-con.lua @@ -74,8 +74,8 @@ constructors.keys = { noglyphnames = "boolean", mode = "string", has_math = "boolean", - no_math_italics = "boolean", - no_text_italics = "boolean", + mathitalics = "boolean", + textitalics = "boolean", finalized = "boolean", }, parameters = { @@ -405,13 +405,13 @@ function constructors.scale(tfmdata,specification) targetparameters.units = units targetparameters.scaledpoints = askedscaledpoints -- - local isvirtual = properties.virtualized or tfmdata.type == "virtual" - local hasquality = target.auto_expand or target.auto_protrude - local hasitalic = properties.italic_correction - local autoitalic = properties.auto_italic_correction - local stackmath = not properties.no_stackmath - local nonames = properties.noglyphnames - local nodemode = properties.mode == "node" + local isvirtual = properties.virtualized or tfmdata.type == "virtual" + local hasquality = target.auto_expand or target.auto_protrude + local hasitalic = properties.italic_correction + local autoitalic = properties.auto_italic_correction + local stackmath = not properties.no_stackmath + local nonames = properties.noglyphnames + local nodemode = properties.mode == "node" -- if changed and not next(changed) then changed = false @@ -482,9 +482,12 @@ function constructors.scale(tfmdata,specification) end -- local italickey = "italic" + -- + -- some context specific trickery (we might move this to a plug in into here + -- if hasmath then - if properties.no_mathitalics then - italickey = "italic_correction" -- context specific trickery + if properties.mathitalics then + italickey = "italic_correction" if trace_defining then report_defining("math italics disabled for: name '%s', fullname: '%s', filename: '%s'", name or "noname",fullname or "nofullname",filename or "nofilename") @@ -492,15 +495,20 @@ function constructors.scale(tfmdata,specification) end autoitalic = false -- new else - if properties.no_textitalics then - italickey = "italic_correction" -- context specific trickery + if properties.textitalics then + italickey = "italic_correction" if trace_defining then report_defining("text italics disabled for: name '%s', fullname: '%s', filename: '%s'", name or "noname",fullname or "nofullname",filename or "nofilename") end + if properties.delaytextitalics then + autoitalic = false + end end end -- + -- end of context specific trickery + -- local sharedkerns = { } -- -- we can have a dumb mode (basemode without math etc) that skips most @@ -600,12 +608,17 @@ function constructors.scale(tfmdata,specification) end -- if autoitalic then - local vi = description.italic or (description.boundingbox[3] - description.width + autoitalic) - if vi and vi ~= 0 then + local vi = description.italic + if not vi then + local vi = description.boundingbox[3] - description.width + autoitalic + if vi > 0 then -- < 0 indicates no overshoot or a very small auto italic + chr[italickey] = vi*hdelta + end + elseif vi ~= 0 then chr[italickey] = vi*hdelta end elseif hasitalic then - local vi = description.italic -- or character.italic hm, already scaled ! + local vi = description.italic if vi and vi ~= 0 then chr[italickey] = vi*hdelta end @@ -1122,7 +1135,7 @@ a helper function.

function constructors.checkedfeatures(what,features) local defaults = handlers[what].features.defaults if features and next(features) then - features = fastcopy(features) -- can be inherited + features = fastcopy(features) -- can be inherited (mt) but then no loops possible for key, value in next, defaults do if features[key] == nil then features[key] = value diff --git a/tex/context/base/font-ctx.lua b/tex/context/base/font-ctx.lua index 4a902c1e4..ffc774f3f 100644 --- a/tex/context/base/font-ctx.lua +++ b/tex/context/base/font-ctx.lua @@ -107,6 +107,7 @@ commands.resetnullfont = definers.resetnullfont setmetatableindex(fontdata, function(t,k) return nulldata end) local chardata = allocate() -- chardata +local descriptions = allocate() local parameters = allocate() local properties = allocate() local quaddata = allocate() @@ -116,6 +117,7 @@ local csnames = allocate() -- namedata local italicsdata = allocate() hashes.characters = chardata +hashes.descriptions = descriptions hashes.parameters = parameters hashes.properties = properties hashes.quads = quaddata @@ -130,6 +132,12 @@ setmetatableindex(chardata, function(t,k) return characters end) +setmetatableindex(descriptions, function(t,k) + local descriptions = fontdata[k].descriptions + t[k] = descriptions + return descriptions +end) + setmetatableindex(parameters, function(t,k) local parameters = fontdata[k].parameters t[k] = parameters diff --git a/tex/context/base/font-ext.lua b/tex/context/base/font-ext.lua index 5749d58b3..309d7814a 100644 --- a/tex/context/base/font-ext.lua +++ b/tex/context/base/font-ext.lua @@ -25,6 +25,7 @@ of neutral.

--ldx]]-- local fonts = fonts +local fontdata = fonts.hashes.identifiers local otffeatures = fonts.constructors.newfeatures("otf") local registerotffeature = otffeatures.register @@ -491,13 +492,14 @@ registerotffeature { local function initializeitlc(tfmdata,value) -- hm, always value if value then - -- the magic 40 and it formula come from Dohyun Kim + -- the magic 40 and it formula come from Dohyun Kim but we might need another guess local parameters = tfmdata.parameters local italicangle = parameters.italicangle if italicangle and italicangle ~= 0 then + local properties = tfmdata.properties local factor = tonumber(value) or 1 - tfmdata.properties.italic_correction = true - tfmdata.properties.auto_italic_correction = factor * (parameters.uwidth or 40)/2 + properties.italic_correction = true + properties.auto_italic_correction = factor * (parameters.uwidth or 40)/2 end end end @@ -520,25 +522,27 @@ registerafmfeature { } } -local function initializenotextitalics(tfmdata,value) - tfmdata.properties.no_textitalics = value +local function initializetextitalics(tfmdata,value) -- yes no delay + local delay = value == "delay" + tfmdata.properties.textitalics = delay and true or value + tfmdata.properties.delaytextitalics = delay end registerotffeature { - name = "notextitalics", - description = "don't pass text italic correction to tex", + name = "textitalics", + description = "use alternative text italic correction", initializers = { - base = initializenotextitalics, - node = initializenotextitalics, + base = initializetextitalics, + node = initializetextitalics, } } registerafmfeature { - name = "notextitalics", - description = "don't pass text italic correction to tex", + name = "textitalics", + description = "use alternative text italic correction", initializers = { - base = initializenotextitalics, - node = initializenotextitalics, + base = initializetextitalics, + node = initializetextitalics, } } @@ -766,3 +770,63 @@ registerotffeature { -- node = processformatters, -- } -- } + +-- a handy helper (might change or be moved to another namespace) + +local new_special = nodes.pool.special +local new_glyph = nodes.pool.glyph +local hpack_node = node.hpack + +function fonts.helpers.addprivate(tfmdata,name,characterdata) + local properties = tfmdata.properties + local privates = properties.privates + local lastprivate = properties.lastprivate + if lastprivate then + lastprivate = lastprivate + 1 + else + lastprivate = 0xE000 + end + if not privates then + privates = { } + properties.privates = privates + end + privates[name] = lastprivate + properties.lastprivate = lastprivate + tfmdata.characters[lastprivate] = characterdata + if properties.finalized then + properties.lateprivates = true + end + return lastprivate +end + +function fonts.helpers.getprivatenode(tfmdata,name) + local properties = tfmdata.properties + local privates = properties and properties.privates + if privates then + local p = privates[name] + if p then + local char = tfmdata.characters[p] + local commands = char.commands + if commands then + local fake = hpack_node(new_special(commands[1][2])) + fake.width = char.width + fake.height = char.height + fake.depth = char.depth + return fake + else + -- todo: set current attribibutes + return new_glyph(properties.id,p) + end + end + end +end + +function fonts.helpers.hasprivate(tfmdata,name) + local properties = tfmdata.properties + local privates = properties and properties.privates + return privates and privates[name] or false +end + +function commands.getprivatechar(name) + context(fonts.helpers.getprivatenode(fontdata[font.current()],name)) +end diff --git a/tex/context/base/font-gds.lua b/tex/context/base/font-gds.lua index a0c50c35f..e7728d681 100644 --- a/tex/context/base/font-gds.lua +++ b/tex/context/base/font-gds.lua @@ -464,8 +464,8 @@ local function initialize(tfmdata) local disableengine = mathitalics.disableengine properties.italic_correction = true properties.mathitalic_defaultfactor = defaultfactor -- we inherit outer one anyway - if properties.no_mathitalics == nil then - properties.no_mathitalics = disableengine + if properties.mathitalics == nil then + properties.mathitalics = disableengine end if corrections then -- As we want to set italic_correction (the context one) we need a @@ -477,15 +477,15 @@ local function initialize(tfmdata) properties.italic_correction = true properties.mathitalic_defaultfactor = defaultfactor properties.mathitalic_defaultvalue = defaultfactor * parameters.quad - if properties.no_mathitalics == nil then - properties.no_mathitalics = disableengine + if properties.mathitalics == nil then + properties.mathitalics = disableengine end if trace_goodies then report_goodies("assigning mathitalics for font '%s'",properties.name) end - local no_mathitalics = properties.no_mathitalics - local quad = parameters.quad - local hfactor = parameters.hfactor + local mathitalics = properties.mathitalics + local quad = parameters.quad + local hfactor = parameters.hfactor for k, v in next, corrections do local c = characters[k] if v > -1 and v < 1 then @@ -494,7 +494,7 @@ local function initialize(tfmdata) v = v * hfactor end c.italic_correction = v -- for context - if no_mathitalics then + if mathitalics then c.italic = v -- for tex else c.italic = nil diff --git a/tex/context/base/font-otf.lua b/tex/context/base/font-otf.lua index cb309a39f..1c14dcab4 100644 --- a/tex/context/base/font-otf.lua +++ b/tex/context/base/font-otf.lua @@ -1930,9 +1930,9 @@ local function otftotfm(specification) tfmdata.shared = shared end shared.rawdata = rawdata - shared.features = features -- default + -- shared.features = features -- default shared.dynamics = { } - shared.processes = { } + -- shared.processes = { } tfmdata.changed = { } shared.features = features shared.processes = otf.setfeatures(tfmdata,features) @@ -1951,7 +1951,8 @@ local function read_from_otf(specification) tfmdata.properties.sub = specification.sub -- tfmdata = constructors.scale(tfmdata,specification) - constructors.applymanipulators("otf",tfmdata,specification.features.normal,trace_features,report_otf) + local allfeatures = tfmdata.shared.features or specification.features.normal + constructors.applymanipulators("otf",tfmdata,allfeatures,trace_features,report_otf) constructors.setname(tfmdata,specification) -- only otf? fonts.loggers.register(tfmdata,file.extname(specification.filename),specification) end diff --git a/tex/context/base/font-tfm.lua b/tex/context/base/font-tfm.lua index 354d77b68..257eee0a0 100644 --- a/tex/context/base/font-tfm.lua +++ b/tex/context/base/font-tfm.lua @@ -97,9 +97,8 @@ local function read_from_tfm(specification) end end -- - if next(features) then - constructors.applymanipulators("tfm",tfmdata,specification.features.normal,trace_features,report_tfm) - end + local allfeatures = tfmdata.shared.features or specification.features.normal + constructors.applymanipulators("tfm",tfmdata,allfeatures.normal,trace_features,report_tfm) if not features.encoding then local encoding, filename = match(properties.filename,"^(.-)%-(.*)$") -- context: encoding-name.* if filename and encoding and encodings.known[encoding] then diff --git a/tex/context/base/meta-ini.mkiv b/tex/context/base/meta-ini.mkiv index ddf345391..ad4bd768b 100644 --- a/tex/context/base/meta-ini.mkiv +++ b/tex/context/base/meta-ini.mkiv @@ -278,6 +278,13 @@ %D Since we want lables to follow the document settings, we %D also set the font related variables. +\unexpanded\def\MPfontsizehskip#1% + {\dontleavehmode + \begingroup + \definedfont[#1]% + \hskip\cldcontext{fonts.hashes.parameters[font.current()].designsize}sp\relax + \endgroup} + \startMPinitializations % scale is not yet ok defaultfont:="\truefontname{Regular}"; defaultscale:=\the\bodyfontsize/10pt; diff --git a/tex/context/base/mlib-pps.lua b/tex/context/base/mlib-pps.lua index a2e343720..aa955ac1c 100644 --- a/tex/context/base/mlib-pps.lua +++ b/tex/context/base/mlib-pps.lua @@ -949,20 +949,24 @@ local value = Cs ( ( -- should be codeinjections +local t_list = attributes.list[attributes.private('transparency')] +local c_list = attributes.list[attributes.private('color')] + local function tr_process(object,prescript,before,after) -- before can be shortcut to t local tr_alternative = prescript.tr_alternative if tr_alternative then tr_alternative = tonumber(tr_alternative) local tr_transparency = tonumber(prescript.tr_transparency) - before[#before+1], after[#after+1] = format("/Tr%s gs",registertransparency(nil,tr_alternative,tr_transparency,true)), "/Tr0 gs" -- outertransparency + before[#before+1] = format("/Tr%s gs",registertransparency(nil,tr_alternative,tr_transparency,true)) + after[#after+1] = "/Tr0 gs" -- outertransparency end local cs = object.color if cs and #cs > 0 then - local b, a + local c_b, c_a local sp_type = prescript.sp_type if not sp_type then - b, a = colorconverter(cs) + c_b, c_a = colorconverter(cs) elseif sp_type == "spot" or sp_type == "multitone" then local sp_name = prescript.sp_name or "black" local sp_fractions = prescript.sp_fractions or 1 @@ -971,19 +975,47 @@ local function tr_process(object,prescript,before,after) local cf = cs[1] if cf ~= 1 then -- beware, we do scale the spotcolors but not the alternative representation - sp_value = lpeg.match(value,sp_value,1,cf) or sp_value + sp_value = lpegmatch(value,sp_value,1,cf) or sp_value end - b, a = spotcolorconverter(sp_name,sp_fractions,sp_components,sp_value) + c_b, c_a = spotcolorconverter(sp_name,sp_fractions,sp_components,sp_value) elseif sp_type == "named" then ---~ local sp_name = prescript.sp_name or "black" ---~ local c = attributes.list[attributes.private('color')][sp_name] -- string or attribute ---~ local r = attributes.colors.registered[r] ---~ local v = attributes.colors.value(r) - b, a = colorconverter(cs) + -- we might move this to another namespace .. also, named can be a spotcolor + -- so we need to check for that too + local sp_name = prescript.sp_name or "black" + if not tr_alternative then + -- todo: sp_name is not yet registered at this time + local t = t_list[sp_name] -- string or attribute + local v = t and attributes.transparencies.value(t) + if v then + before[#before+1] = format("/Tr%s gs",registertransparency(nil,v[1],v[2],true)) + after[#after+1] = "/Tr0 gs" -- outertransparency + end + end + local c = c_list[sp_name] -- string or attribute + local v = c and attributes.colors.value(c) + if v then + -- all=1 gray=2 rgb=3 cmyk=4 + local colorspace = v[1] + local f = cs[1] + if colorspace == 2 then + local s = f*v[2] + c_b, c_a = checked_color_pair(format("%.3f g %.3f G",s,s)) + elseif colorspace == 3 then + local r, g, b = f*v[3], f*v[4], f*v[5] + c_b, c_a = checked_color_pair(format("%.3f %.3f %.3f rg %.3f %.3f %.3f RG",r,g,b,r,g,b)) + elseif colorspace == 4 or colorspace == 1 then + local c, m, y, k = f*v[6], f*v[7], f*v[8], f*v[9] + c_b, c_a = checked_color_pair(format("%.3f %.3f %.3f %.3f k %.3f %.3f %.3f %.3f K",c,m,y,k,c,m,y,k)) + else + local s = f*v[2] + c_b, c_a = checked_color_pair(format("%.3f g %.3f G",s,s)) + end + end + -- end - if a and b then - before[#before+1] = b - after[#after+1] = a + if c_a and c_b then + before[#before+1] = c_b + after[#after+1] = c_a end end end diff --git a/tex/context/base/mtx-context-arrange.tex b/tex/context/base/mtx-context-arrange.tex index d1a01c699..49920293f 100644 --- a/tex/context/base/mtx-context-arrange.tex +++ b/tex/context/base/mtx-context-arrange.tex @@ -25,9 +25,14 @@ % --marking : add cutmarks % --addempty=list : add empty pages at/after (comma separated list) % --printformat : 2UP, etc +% --paperformat=spec : paper*print or paperxprint +% +% example: context --extra=arrange --printformat=2UP --paperformat=A4,A3,landscape myfile % % end help +\input mtx-context-common.tex + \doifdocumentargument {paperoffset} { \definepapersize [offset=\getdocumentargument{paperoffset}] @@ -41,6 +46,16 @@ \setdocumentargument{sided}{singlesided} } +\setuppapersize + [\getdocumentargument{paperformat_paper}] + [\getdocumentargument{paperformat_print}] + +% todo: autopapersize +% +% \setuppapersize +% [A4] +% [A3,landscape] + \setdocumentargumentdefault {textwidth} {0cm} \setdocumentargumentdefault {backspace} {0cm} \setdocumentargumentdefault {topspace} {0cm} diff --git a/tex/context/base/mtx-context-combine.tex b/tex/context/base/mtx-context-combine.tex index 3c48080ee..05e31d800 100644 --- a/tex/context/base/mtx-context-combine.tex +++ b/tex/context/base/mtx-context-combine.tex @@ -44,16 +44,16 @@ } +\setuppapersize + [\getdocumentargument{paperformat_paper}] + [\getdocumentargument{paperformat_print}] + \setuplayout [header=0pt, footer=0pt, width=middle, height=middle] -\setuppapersize - [\getdocumentargument{paperformat_paper}] - [\getdocumentargument{paperformat_print}] - \doifnotdocumentargument {bannerheight} { \setuplayout [footer=1cm] diff --git a/tex/context/base/mtx-context-common.tex b/tex/context/base/mtx-context-common.tex index a34e47747..2db0a5be2 100644 --- a/tex/context/base/mtx-context-common.tex +++ b/tex/context/base/mtx-context-common.tex @@ -29,7 +29,7 @@ \startluacode local paperformat = document.arguments['paperformat'] or 'A4*A4' - paperformat = string.upper(paperformat) + -- paperformat = string.upper(paperformat) -- no, as we don't want to uppercase 'landscape' local f, t = string.match(paperformat,"^(.-)%s*[%*xX]%s*(.-)$") if not f then f, t = "A4", "A4" diff --git a/tex/context/base/mult-aux.mkiv b/tex/context/base/mult-aux.mkiv index 3b93bf172..8a0fdd25f 100644 --- a/tex/context/base/mult-aux.mkiv +++ b/tex/context/base/mult-aux.mkiv @@ -117,7 +117,7 @@ \expandafter\noexpand\csname named#2hash\endcsname \expandafter\noexpand\csname check#2parent\endcsname}} -\unexpanded\def\doinstallparametersethandler#1#2#3#4#5% we can speed thsi up for english +\unexpanded\def\doinstallparametersethandler#1#2#3#4#5% we can speed this up for english {\ifx#2\relax\let#2\empty\fi \unexpanded\def#3{\dosetvalue{#1#2:}}% ##1 {##2} (braces are mandate) \unexpanded\def#4{\doletvalue{#1#2:}}% ##1 ##2 diff --git a/tex/context/base/node-res.lua b/tex/context/base/node-res.lua index 3247e153a..836a24b19 100644 --- a/tex/context/base/node-res.lua +++ b/tex/context/base/node-res.lua @@ -85,6 +85,7 @@ local glyph = register_node(new_node("glyph",0)) local textdir = register_node(new_node("whatsit",whatsitcodes.dir)) local rule = register_node(new_node("rule")) local latelua = register_node(new_node("whatsit",whatsitcodes.latelua)) +local special = register_node(new_node("whatsit",whatsitcodes.special)) local user_n = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_n.type = 100 -- 44 local user_l = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_l.type = 110 -- 44 local user_s = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_s.type = 115 -- 44 @@ -371,6 +372,12 @@ function pool.usertokens(id,tokens) return n end +function pool.special(str) + local n = copy_node(special) + n.data = str + return n +end + statistics.register("cleaned up reserved nodes", function() return format("%s nodes, %s lists of %s", pool.cleanup(tex.count["last_allocated_box"])) end) -- \topofboxstack diff --git a/tex/context/base/s-fonts-missing.mkiv b/tex/context/base/s-fonts-missing.mkiv new file mode 100644 index 000000000..ef45383a0 --- /dev/null +++ b/tex/context/base/s-fonts-missing.mkiv @@ -0,0 +1,79 @@ +%D \module +%D [ file=s-fonts-missing, +%D version=2011.10.30, +%D title=\CONTEXT\ Style File, +%D subtitle=Some Missing Character Info, +%D author=Hans Hagen, +%D date=\currentdate, +%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] +%C +%C This module is part of the \CONTEXT\ macro||package and is +%C therefore copyrighted by \PRAGMA. See mreadme.pdf for +%C details. + +\startluacode + + moduledata.fonts = moduledata.fonts or { } + moduledata.fonts.tracers = moduledata.fonts.tracers or { } + moduledata.fonts.tracers.missing = moduledata.fonts.tracers.missing or { } + + function moduledata.fonts.tracers.missing.legend() + local c = fonts.hashes.identifiers[font.current()] + local p = c.properties.privates + if p then + context.starttabulate { "|Tl|c|c|" } + context.NC() + context.bold("name") + context.NC() + context.bold("character") + context.NC() + context.bold("node") + context.NC() + context.NR() + for k, v in table.sortedhash(p) do + context.NC() + context(k) + context.NC() + context.dontleavehmode() + context.char(v) + context.NC() + context.dontleavehmode() + commands.getprivatechar(k) + context.NC() + context.NR() + end + context.stoptabulate() + end + end + +\stopluacode + +\def\ModuleFontsTracersMissingLegend + {\ctxlua{moduledata.fonts.tracers.missing.legend()}} + +\continueifinputfile{s-fonts-missing.mkiv} + +\enabletrackers[fonts.missing=replace] % the sooner, the more efficient + +% \usemodule[art-01] + +% \definefontfeature[default][default][missing=yes] % automatically when enabled + +\starttext + + \ModuleFontsTracersMissingLegend + + ½ ⅓ ¼ ⅕ ⅙ ⅛ + + \startluacode + for i=1,1000 do + local c = characters.data[i] + if c then + context.char(c.unicodeslot) + context.space() + end + end + \stopluacode + +\stoptext + diff --git a/tex/context/base/s-mod-01.mkiv b/tex/context/base/s-mod-01.mkiv index cca0e96e7..8f78f6107 100644 --- a/tex/context/base/s-mod-01.mkiv +++ b/tex/context/base/s-mod-01.mkiv @@ -2,8 +2,8 @@ %D [ file=s-mod-01, %D version=very-old, %D title=\CONTEXT\ Style File, -%D subtitle=Documentation Paper Environment, -%D author=Hans Hagen, +%D subtitle=Module Documentation, +%D author={Hans Hagen \& Luigi Scarso}, %D date=\currentdate, %D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] %C @@ -11,13 +11,20 @@ %C therefore copyrighted by \PRAGMA. See mreadme.pdf for %C details. -%D This module looks like crap, is not documented, will -%D change, and used to be called modu-*.tex. - -% now split in mkii/mkiv so we will cleanup - \unprotect +%D Usage: +%D +%D \starttyping +%D context --ctx=s-mod somefile.mkiv +%D \stoptyping +%D +%D In due time there will be a \type {mtx-context-module} as well. +%D +%D Luigi Scarso coordinates the processing of modules so best contact +%D him when you run into problems. Bugs in this style can be sent to +%D Hans. + \setvariables [document] [ file=\jobname, @@ -130,37 +137,46 @@ \stopsetups -\unexpanded\def\startmoduledocumentation - {\starttext - \page - \begingroup - \startdocument} +% In order to be able to typeset this one too, we need to avoid +% direct backslashed names. -\unexpanded\def\stopmoduledocumentation - {\stopdocument - \page - \endgroup - \stoptext} +\starttexdefinition startmoduledocumentation + \starttext + \page + \begingroup + \startdocument +\stoptexdefinition -\unexpanded\def\startdocumentation % grouped ! - {\par - \bgroup} +\starttexdefinition stopmoduledocumentation + \stopdocument + \page + \endgroup + \stoptext +\stoptexdefinition -\unexpanded\def\stopdocumentation - {\par - \egroup} +\starttexdefinition startdocumentation + \par + \bgroup +\stoptexdefinition + +\starttexdefinition stopdocumentation + \par + \egroup +\stoptexdefinition \definetyping [definition] -\unexpanded\def\startcompressdefinitions - {\blank - \begingroup - \setuptyping[definition][bodyfont=small]} +\starttexdefinition startcompressdefinitions + \blank + \begingroup + \setuptyping[definition][bodyfont=small] +\stoptexdefinition -\unexpanded\def\stopcompressdefinitions - {\blank - \endgroup} +\starttexdefinition stopcompressdefinitions + \blank + \endgroup +\stoptexdefinition \definetyping [PL] [\c!option=PL] \definetyping [JV] [\c!option=JV] @@ -216,8 +232,14 @@ \defineparagraphs [interface] [\c!n=2] \setupparagraphs [interface] [1] [\c!width=4cm] -\def\startexample{\par\startnarrower} -\def\stopexample {\stopnarrower} +\starttexdefinition startexample + \par + \startnarrower +\stoptexdefinition + +\starttexdefinition stopexample + \stopnarrower +\stoptexdefinition %D Command references: @@ -327,7 +349,6 @@ [\c!balance=\v!yes, \c!indicator=\v!no] - \setupinteraction [\c!state=\v!start, \c!color=, @@ -336,13 +357,6 @@ % modes -\doifmode {nocode} { % \startmode ... \stopmode fails in the module documentation - - \unexpanded\def\startdefinition{\gobbleuntil\stopdefinition} - \unexpanded\def\stopdefinition {} - -} - \doifmode {nocolor} { \setupcolors @@ -350,7 +364,7 @@ } -\doifmode {single} { +\doifmode {singlesided} { \setuppagenumbering [\c!alternative=\v!singlesided] @@ -364,20 +378,10 @@ % bonus \usemodule - [abr-01] + [abr-02] % another one \dontcomplain -\protect - -\continueifinputfile{s-mod-01.mkiv} - -\startmodule - - \macros{alpha,beta} - - \input ward - -\stopmodule +\protect \endinput diff --git a/tex/context/base/scrn-ini.mkvi b/tex/context/base/scrn-ini.mkvi index e7684f02d..42d04cb08 100644 --- a/tex/context/base/scrn-ini.mkvi +++ b/tex/context/base/scrn-ini.mkvi @@ -167,6 +167,12 @@ \scrn_identity_synchronize \to \everysetupinteraction +\appendtoks % not interfaced i.e. english + \doifvariable{document}{metadata:author}{\setupinteraction[author=\documentvariable{metadata:author}]}% + \doifvariable{document}{metadata:title}{\setupinteraction[title=\documentvariable{metadata:title}]}% + \doifvariable{document}{metadata:subject}{\setupinteraction[subject=\documentvariable{metadata:subject}]}% +\to \everysetupdocument + \setupinteraction [\c!title=, \c!subtitle=, diff --git a/tex/context/base/status-files.pdf b/tex/context/base/status-files.pdf index a28e52f54..5100ae1d7 100644 --- a/tex/context/base/status-files.pdf +++ b/tex/context/base/status-files.pdf @@ -1,21 +1,21 @@ %PDF-1.6 % 17 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550023001C00620032>-515<004B0051002F006D004800320062>-515<001C004D002F>-515<00620069007600480032006200560058>]TJ -1 0 0 1 151.7827 929.3652 Tm [<00650079>-500<006900320074>-22910<003800790064>-500<004B004600420042>-21091<006A00650038>-500<004B004600420070>-17258<006B0039>-500<004B004600700042>-5873<006A00380079>-500<0048006D001C>]TJ +/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550023001C00620032>-515<004B0051002F006D004800320062>-515<001C004D002F>-515<00620069007600480032006200560058>]TJ +1 0 0 1 151.7827 929.3652 Tm [<00650079>-500<006900320074>-22910<003800790064>-500<004B004600420042>-21091<006A00650033>-500<004B004600420070>-17693<006B0038>-500<004B004600700042>-5873<006A0038006B>-500<0048006D001C>]TJ ET q 1 0 0 1 0 923.1064 cm -[]0 d 0 J 0.3985 w 0 0 m 1338.5507 0 l S +[]0 d 0 J 0.3985 w 0 0 m 1343.7497 0 l S Q q 1 0 0 1 0 923.1064 cm -[]0 d 0 J 0.3985 w 0 0 m 1338.5507 0 l S +[]0 d 0 J 0.3985 w 0 0 m 1343.7497 0 l S Q BT /F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-31985<0039>]TJ @@ -36,11 +36,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 910.4995 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 910.4995 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 910.4995 cm +1 0 0 1 1161.8245 910.4995 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -54,11 +54,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 896.072 Tm [<0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 896.072 Tm [<0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 896.072 cm +1 0 0 1 1161.8245 896.072 cm 0 0 25.9878 8.3103 re f Q 0 g 0 G @@ -72,11 +72,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 881.6445 Tm [<006A>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 881.6445 Tm [<006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 881.6445 cm +1 0 0 1 1161.8245 881.6445 cm 0 0 15.5934 8.3103 re f Q 0 g 0 G @@ -99,11 +99,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 867.217 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 867.217 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 867.217 cm +1 0 0 1 1161.8245 867.217 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -117,11 +117,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 852.7895 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 852.7895 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 852.7895 cm +1 0 0 1 1161.8245 852.7895 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -144,11 +144,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 838.362 Tm [<00520052>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 838.362 Tm [<00520052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 838.362 cm +1 0 0 1 1161.8245 838.362 cm 0 0 57.1782 8.3103 re f Q 0 g 0 G @@ -180,11 +180,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 809.5071 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 809.5071 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 809.5071 cm +1 0 0 1 1161.8245 809.5071 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -198,11 +198,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 795.0796 Tm [<0033>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 795.0796 Tm [<0033>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 795.0796 cm +1 0 0 1 1161.8245 795.0796 cm 0 0 41.5848 8.3103 re f Q 0 g 0 G @@ -216,11 +216,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 780.6521 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 780.6521 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 780.6521 cm +1 0 0 1 1161.8245 780.6521 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -234,11 +234,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 766.2246 Tm [<0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 766.2246 Tm [<0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 766.2246 cm +1 0 0 1 1161.8245 766.2246 cm 0 0 25.9878 8.3103 re f Q 0 g 0 G @@ -261,11 +261,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 751.7971 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 751.7971 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 751.7971 cm +1 0 0 1 1161.8245 751.7971 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -306,20 +306,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.5029 722.9421 Tm [<0065>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.702 722.9421 Tm [<0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 722.9421 cm +1 0 0 1 1161.8245 722.9421 cm 0 0 31.1868 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-87491<006B0038>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-87926<006B0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 708.5146 cm +1 0 0 1 1161.8245 708.5146 cm 0 0 129.9461 8.3103 re f Q 0 g 0 G @@ -342,20 +342,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-78029<0065>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-78464<0065>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 679.6596 cm +1 0 0 1 1042.5311 679.6596 cm 0 0 31.1868 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.5029 679.6596 Tm [<0065>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.702 679.6596 Tm [<0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 679.6596 cm +1 0 0 1 1161.8245 679.6596 cm 0 0 31.1868 8.3103 re f Q 0 g 0 G @@ -387,11 +387,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 650.8046 Tm [<006A0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 650.8046 Tm [<006A0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 650.8046 cm +1 0 0 1 1161.8245 650.8046 cm 0 0 181.9252 8.3103 re f Q 0 g 0 G @@ -414,11 +414,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 636.3771 Tm [<0064>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 636.3771 Tm [<0064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 636.3771 cm +1 0 0 1 1161.8245 636.3771 cm 0 0 36.3858 8.3103 re f Q 0 g 0 G @@ -459,11 +459,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 607.5221 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 607.5221 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 607.5221 cm +1 0 0 1 1161.8245 607.5221 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -486,11 +486,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.5029 593.0946 Tm [<0065>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.702 593.0946 Tm [<0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 593.0946 cm +1 0 0 1 1161.8245 593.0946 cm 0 0 31.1868 8.3103 re f Q 0 g 0 G @@ -504,20 +504,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 578.6671 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 578.6671 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 578.6671 cm +1 0 0 1 1161.8245 578.6671 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-87491<00520033>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-87926<00520033>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 564.2396 cm +1 0 0 1 1161.8245 564.2396 cm 0 0 93.5639 8.3103 re f Q 0 g 0 G @@ -531,11 +531,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.346 549.8122 Tm [<00520065>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.545 549.8122 Tm [<00520065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 549.8122 cm +1 0 0 1 1161.8245 549.8122 cm 0 0 83.1659 8.3103 re f Q 0 g 0 G @@ -549,11 +549,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 535.3847 Tm [<0052006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 535.3847 Tm [<0052006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 535.3847 cm +1 0 0 1 1161.8245 535.3847 cm 0 0 62.3735 8.3103 re f Q 0 g 0 G @@ -585,20 +585,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 520.9572 Tm [<006A>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 520.9572 Tm [<006A>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 520.9572 cm +1 0 0 1 1042.5311 520.9572 cm 0 0 15.5934 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 520.9572 Tm [<0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 520.9572 Tm [<0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 520.9572 cm +1 0 0 1 1161.8245 520.9572 cm 0 0 25.9878 8.3103 re f Q 0 g 0 G @@ -621,11 +621,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.5029 506.5297 Tm [<004E>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.702 506.5297 Tm [<004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 506.5297 cm +1 0 0 1 1161.8245 506.5297 cm 0 0 46.7801 8.3103 re f Q 0 g 0 G @@ -648,11 +648,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 492.1022 Tm [<0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 492.1022 Tm [<0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 492.1022 cm +1 0 0 1 1161.8245 492.1022 cm 0 0 25.9878 8.3103 re f Q 0 g 0 G @@ -666,11 +666,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 477.6747 Tm [<0039>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 477.6747 Tm [<0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 477.6747 cm +1 0 0 1 1161.8245 477.6747 cm 0 0 20.7924 8.3103 re f Q 0 g 0 G @@ -693,11 +693,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 463.2472 Tm [<0033>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 463.2472 Tm [<0033>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 463.2472 cm +1 0 0 1 1161.8245 463.2472 cm 0 0 41.5848 8.3103 re f Q 0 g 0 G @@ -711,11 +711,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 448.8197 Tm [<006B006A>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 448.8197 Tm [<006B006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 448.8197 cm +1 0 0 1 1161.8245 448.8197 cm 0 0 119.5517 8.3103 re f Q 0 g 0 G @@ -756,20 +756,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 419.9647 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 419.9647 Tm [<0052>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 419.9647 cm +1 0 0 1 1042.5311 419.9647 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 419.9647 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 419.9647 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 419.9647 cm +1 0 0 1 1161.8245 419.9647 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -792,20 +792,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 405.5372 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 405.5372 Tm [<0052>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 405.5372 cm +1 0 0 1 1042.5311 405.5372 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 405.5372 Tm [<0039>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 405.5372 Tm [<0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 405.5372 cm +1 0 0 1 1161.8245 405.5372 cm 0 0 20.7924 8.3103 re f Q 0 g 0 G @@ -828,11 +828,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 376.6822 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 376.6822 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 376.6822 cm +1 0 0 1 1161.8245 376.6822 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -873,11 +873,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.346 347.8272 Tm [<006B0065>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.545 347.8272 Tm [<006B0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 347.8272 cm +1 0 0 1 1161.8245 347.8272 cm 0 0 135.1451 8.3103 re f Q 0 g 0 G @@ -900,29 +900,29 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 769.8013 333.3997 Tm [<006A006A>]TJ +/F47 11.955168 Tf 1 0 0 1 769.8013 333.3997 Tm [<006A0039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 788.0927 333.3997 cm -0 0 171.5308 8.3103 re f +0 0 176.7298 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 333.3997 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 333.3997 Tm [<0052>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 333.3997 cm +1 0 0 1 1042.5311 333.3997 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 333.3997 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 333.3997 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 333.3997 cm +1 0 0 1 1161.8245 333.3997 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -936,20 +936,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 318.9722 Tm [<0033>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 318.9722 Tm [<0033>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 318.9722 cm +1 0 0 1 1042.5311 318.9722 cm 0 0 41.5848 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 318.9722 Tm [<0064>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 318.9722 Tm [<0064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 318.9722 cm +1 0 0 1 1161.8245 318.9722 cm 0 0 36.3858 8.3103 re f Q 0 g 0 G @@ -963,11 +963,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 304.5447 Tm [<006A>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 304.5447 Tm [<006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 304.5447 cm +1 0 0 1 1161.8245 304.5447 cm 0 0 15.5934 8.3103 re f Q 0 g 0 G @@ -990,11 +990,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 290.1172 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 290.1172 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 290.1172 cm +1 0 0 1 1161.8245 290.1172 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -1017,11 +1017,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 275.6898 Tm [<0038>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 275.6898 Tm [<0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 275.6898 cm +1 0 0 1 1161.8245 275.6898 cm 0 0 25.9878 8.3103 re f Q 0 g 0 G @@ -1053,20 +1053,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 246.8348 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 246.8348 Tm [<0052>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 246.8348 cm +1 0 0 1 1042.5311 246.8348 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 246.8348 Tm [<006B0079>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 246.8348 Tm [<006B0079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 246.8348 cm +1 0 0 1 1161.8245 246.8348 cm 0 0 103.9583 8.3103 re f Q 0 g 0 G @@ -1089,11 +1089,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 232.4073 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 232.4073 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 232.4073 cm +1 0 0 1 1161.8245 232.4073 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -1116,11 +1116,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 217.9798 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 217.9798 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 217.9798 cm +1 0 0 1 1161.8245 217.9798 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -1143,11 +1143,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 203.5523 Tm [<006A>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 203.5523 Tm [<006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 203.5523 cm +1 0 0 1 1161.8245 203.5523 cm 0 0 15.5934 8.3103 re f Q 0 g 0 G @@ -1170,20 +1170,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 189.1248 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 189.1248 Tm [<006B>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 189.1248 cm +1 0 0 1 1042.5311 189.1248 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 189.1248 Tm [<006B>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 189.1248 Tm [<006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 189.1248 cm +1 0 0 1 1161.8245 189.1248 cm 0 0 10.3944 8.3103 re f Q 0 g 0 G @@ -1197,11 +1197,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 174.6973 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 174.6973 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 174.6973 cm +1 0 0 1 1161.8245 174.6973 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -1224,11 +1224,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 145.8423 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 145.8423 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 145.8423 cm +1 0 0 1 1161.8245 145.8423 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -1251,11 +1251,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.5029 131.4148 Tm [<004E>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.702 131.4148 Tm [<004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 131.4148 cm +1 0 0 1 1161.8245 131.4148 cm 0 0 46.7801 8.3103 re f Q 0 g 0 G @@ -1278,11 +1278,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 116.9873 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 116.9873 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 116.9873 cm +1 0 0 1 1161.8245 116.9873 cm 0 0 5.199 8.3103 re f Q 0 g 0 G @@ -1296,30 +1296,30 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 769.8013 102.5598 Tm [<00520079>]TJ +/F47 11.955168 Tf 1 0 0 1 769.8013 102.5598 Tm [<0052006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 788.0927 102.5598 cm -0 0 51.9792 8.3103 re f +0 0 62.3735 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1025.1976 102.5598 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1030.3966 102.5598 Tm [<006B>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 1037.3321 102.5598 cm -0 0 5.199 8.3103 re f +1 0 0 1 1042.5311 102.5598 cm +0 0 10.3944 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1138.3341 102.5598 Tm [<00520052>]TJ +/F47 11.955168 Tf 1 0 0 1 1143.5331 102.5598 Tm [<0052006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 102.5598 cm -0 0 57.1782 8.3103 re f +1 0 0 1 1161.8245 102.5598 cm +0 0 67.5725 8.3103 re f Q 0 g 0 G BT @@ -1341,20 +1341,20 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 88.1323 Tm [<0052>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 88.1323 Tm [<0052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 88.1323 cm +1 0 0 1 1161.8245 88.1323 cm 0 0 5.199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-87491<00520052>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-87926<00520052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 73.7048 cm +1 0 0 1 1161.8245 73.7048 cm 0 0 57.1782 8.3103 re f Q 0 g 0 G @@ -1395,11 +1395,11 @@ q Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 1144.491 44.8498 Tm [<0064>]TJ +/F47 11.955168 Tf 1 0 0 1 1149.69 44.8498 Tm [<0064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 1156.6255 44.8498 cm +1 0 0 1 1161.8245 44.8498 cm 0 0 36.3858 8.3103 re f Q 0 g 0 G @@ -1423,566 +1423,566 @@ Q endstream endobj 16 0 obj -<> +<> endobj 15 0 obj <>/ProcSet[/PDF/Text]>> endobj 22 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<0062004200780032>-515<00510037>-515<0055002B0051006000320056>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550040>-515<0042004D002F0042002B001C006900320062>-515<00320074002B0048006D006200420051004D>-514<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<0059>-515<0042004D002F0042002B001C006900320062>-515<0042004D002B0048006D006200420051004D>-515<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<002B0051004B004B0032004D0069>-515<001C004D002F>-515<00620054001C002B00320062>-515<00600032004B005100700032002F00580056>]TJ -1 0 0 1 127.1431 929.3652 Tm [<006B00790038005200790079>-500<006900320074>-8238<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12282<006B006B004E004E006A00330039>-500<004B004600420070>-14905<00520065006A007900330033>-500<004B004600700042>-4192<006B005200330038004E00330065>-500<0048006D001C>-515<00380038004E0065006A00650038>-515<0059>]TJ +/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<0062004200780032>-515<00510037>-515<0055002B0051006000320056>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550040>-515<0042004D002F0042002B001C006900320062>-515<00320074002B0048006D006200420051004D>-514<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<0059>-515<0042004D002F0042002B001C006900320062>-515<0042004D002B0048006D006200420051004D>-515<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<002B0051004B004B0032004D0069>-515<001C004D002F>-515<00620054001C002B00320062>-515<00600032004B005100700032002F00580056>]TJ +1 0 0 1 127.1431 929.3652 Tm [<006B00790038005200790079>-500<006900320074>-8145<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12063<006B006A007900520064006B0038>-500<004B004600420070>-14727<0052006500390064006A0064>-500<004B004600700042>-4157<006B006B00790052006B00520039>-500<0048006D001C>-515<00380065005200520038004E006A>-515<0059>]TJ ET q 1 0 0 1 0 923.1064 cm -[]0 d 0 J 0.3985 w 0 0 m 1226.7848 0 l S +[]0 d 0 J 0.3985 w 0 0 m 1220.5569 0 l S Q q 1 0 0 1 0 923.1064 cm -[]0 d 0 J 0.3985 w 0 0 m 1226.7848 0 l S +[]0 d 0 J 0.3985 w 0 0 m 1220.5569 0 l S Q BT -/F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-17313<00380052005200380065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-17220<00380052005200380065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 910.4995 cm -0 0 29.1874 8.3103 re f +1 0 0 1 334.9718 910.4995 cm +0 0 28.8189 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 910.4995 Tm [<0039006A006A00790064>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 910.4995 Tm [<0039006A006A00790064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 910.4995 cm -0 0 24.7108 8.3103 re f +1 0 0 1 614.4494 910.4995 cm +0 0 24.397 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.1001 910.4995 Tm [<00650038006A0065>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8722 910.4995 Tm [<00650038006A0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 910.4995 cm -0 0 3.7287 8.3103 re f +1 0 0 1 981.4535 910.4995 cm +0 0 3.6813 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 896.072 Tm [<00420070>-3090<001C006900690060>-41422<00640038004E0033>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 896.072 Tm [<00420070>-3090<001C006900690060>-41112<00640038004E0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 896.072 cm -0 0 4.3343 8.3103 re f +1 0 0 1 614.4494 896.072 cm +0 0 4.2796 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 896.072 Tm [<0052004E006400380033>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 896.072 Tm [<0052004E0033006A006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 896.072 cm -0 0 11.2736 8.3103 re f +1 0 0 1 981.4535 896.072 cm +0 0 11.1715 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 881.6445 Tm [<00420070>-3090<0023001C002B0046>-40906<005200330064006B0052>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 881.6445 Tm [<00420070>-3090<0023001C002B0046>-40596<005200330064006B0052>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 881.6445 cm -0 0 10.6826 8.3103 re f +1 0 0 1 614.4494 881.6445 cm +0 0 10.5476 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 881.6445 Tm [<0039006A006A006A0033>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 881.6445 Tm [<0039006A006A006A0033>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 881.6445 cm -0 0 24.729 8.3103 re f +1 0 0 1 981.4535 881.6445 cm +0 0 24.4153 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 867.217 Tm [<00420042>-515<00420070>-3090<0023004200230048>-17314<006B004E0065006B0033>]TJ +/F47 11.955168 Tf 1 0 0 1 0 867.217 Tm [<00420042>-515<00420070>-3090<0023004200230048>-17221<006B004E0065006B0033>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 867.217 cm -0 0 16.9068 8.3103 re f +1 0 0 1 334.9718 867.217 cm +0 0 16.6916 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 867.217 Tm [<003900640064006A006A>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 867.217 Tm [<003900640064006A006A>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 867.217 cm -0 0 27.2355 8.3103 re f +1 0 0 1 614.4494 867.217 cm +0 0 26.8889 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 867.217 Tm [<0052003300390033006A>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 867.217 Tm [<0052003300390033006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 867.217 cm -0 0 10.5476 8.3103 re f +1 0 0 1 981.4535 867.217 cm +0 0 10.4126 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 852.7895 Tm [<00420070>-3090<0023004800510023>-41936<006A0039006B>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 852.7895 Tm [<00420070>-3090<0023004800510023>-41626<006A0039006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.2529 852.7895 cm +1 0 0 1 614.5461 852.7895 cm []0 d 0 J 0.1934 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0881 852.7895 Tm [<006B00520038004E>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8603 852.7895 Tm [<006B00520038004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 852.7895 cm -0 0 1.2332 8.3103 re f +1 0 0 1 981.4535 852.7895 cm +0 0 1.2149 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 838.362 Tm [<00420042>-515<00420070>-3090<0023006D00370037>-17313<006B0064007900790065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 838.362 Tm [<00420042>-515<00420070>-3090<0023006D00370037>-17220<006B0064007900790065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 838.362 cm -0 0 15.4073 8.3103 re f +1 0 0 1 334.9718 838.362 cm +0 0 15.2139 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 838.362 Tm [<006B006A007900330064>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 838.362 Tm [<006B006A007900330064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 838.362 cm -0 0 13.1745 8.3103 re f +1 0 0 1 614.4494 838.362 cm +0 0 13.0066 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 838.362 Tm [<00390039006A00790039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 838.362 Tm [<00390039006A00790039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 838.362 cm -0 0 25.28 8.3103 re f +1 0 0 1 981.4535 838.362 cm +0 0 24.9589 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 823.9346 Tm [<00230074004B0048>-40906<00520039006B006B0033>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 823.9346 Tm [<00230074004B0048>-40596<00520039006B006B0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 823.9346 cm -0 0 8.1178 8.3103 re f +1 0 0 1 614.4494 823.9346 cm +0 0 8.0156 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 809.5071 Tm [<00420042>-515<00420070>-3090<002B001C0069002B>-17312<006B0079006B00520039>]TJ +/F47 11.955168 Tf 1 0 0 1 0 809.5071 Tm [<00420042>-515<00420070>-3090<002B001C0069002B>-17219<006B0079006B00520039>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 809.5071 cm -0 0 11.5327 8.3103 re f +1 0 0 1 334.9718 809.5071 cm +0 0 11.3867 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 809.5071 Tm [<006B006B00380064006B>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 809.5071 Tm [<006B006B00380064006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 809.5071 cm -0 0 12.879 8.3103 re f +1 0 0 1 614.4494 809.5071 cm +0 0 12.7148 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 963.245 809.5071 Tm [<003300650039>]TJ +/F47 11.955168 Tf 1 0 0 1 957.0172 809.5071 Tm [<003300650039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.9277 809.5071 cm -[]0 d 0 J 0.4925 w 0 0 m 0 8.3103 l S +1 0 0 1 981.6961 809.5071 cm +[]0 d 0 J 0.4852 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 795.0796 Tm [<00420070>-3090<002B003F001C0060>-41422<006B0064006B0065>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 795.0796 Tm [<00420070>-3090<002B003F001C0060>-41112<006B0064006B0065>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 795.0796 cm -0 0 1.5542 8.3103 re f +1 0 0 1 614.4494 795.0796 cm +0 0 1.536 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 938.6294 795.0796 Tm [<0040>-515<004E0039003800380065>]TJ +/F47 11.955168 Tf 1 0 0 1 932.4015 795.0796 Tm [<0040>-515<004E0039003800380065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 795.0796 cm -0 0 53.9529 8.3103 re f +1 0 0 1 981.4535 795.0796 cm +0 0 53.267 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 780.6521 Tm [<00420070>-3090<002B003F0032004B>-40906<00520039003800390038>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 780.6521 Tm [<00420070>-3090<002B003F0032004B>-40596<00520039003800390038>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 780.6521 cm -0 0 8.3002 8.3103 re f +1 0 0 1 614.4494 780.6521 cm +0 0 8.1944 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 780.6521 Tm [<00520039003800790064>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 780.6521 Tm [<00520039003800790064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 780.6521 cm -0 0 8.2783 8.3103 re f +1 0 0 1 981.4535 780.6521 cm +0 0 8.1725 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 766.2246 Tm [<00420070>-3090<002B0048002F0037>-41936<003300520038>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 766.2246 Tm [<00420070>-3090<002B0048002F0037>-41626<003300520038>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.3879 766.2246 cm -[]0 d 0 J 0.4634 w 0 0 m 0 8.3103 l S +1 0 0 1 614.6793 766.2246 cm +[]0 d 0 J 0.4597 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 766.2246 Tm [<006B006A00380052004E>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 766.2246 Tm [<006B006A00380052004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 766.2246 cm -0 0 13.4189 8.3103 re f +1 0 0 1 981.4535 766.2246 cm +0 0 13.2511 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 751.7971 Tm [<00420042>-515<00420070>-3090<002B005100480051>-16798<0052007900640039004E0079>]TJ +/F47 11.955168 Tf 1 0 0 1 0 751.7971 Tm [<00420042>-515<00420070>-3090<002B005100480051>-16705<0052007900640039004E0079>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 751.7971 cm -0 0 61.3301 8.3103 re f +1 0 0 1 334.9718 751.7971 cm +0 0 60.5566 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 751.7971 Tm [<003300380038004E0038>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 751.7971 Tm [<003300380038004E0038>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 751.7971 cm -0 0 48.8379 8.3103 re f +1 0 0 1 614.4494 751.7971 cm +0 0 48.2213 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 751.7971 Tm [<005200330064006B0039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 751.7971 Tm [<005200330064006B0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 751.7971 cm -0 0 10.6826 8.3103 re f +1 0 0 1 981.4535 751.7971 cm +0 0 10.5476 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 737.3696 Tm [<00420042>-515<00420070>-3090<002B0051004D0069>-17313<0052004E005200790079>]TJ +/F47 11.955168 Tf 1 0 0 1 0 737.3696 Tm [<00420042>-515<00420070>-3090<002B0051004D0069>-17220<0052004E005200790079>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 737.3696 cm -0 0 10.8979 8.3103 re f +1 0 0 1 334.9718 737.3696 cm +0 0 10.7592 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 737.3696 Tm [<005200390033006A0052>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 737.3696 Tm [<005200390033006A0052>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 737.3696 cm -0 0 8.4607 8.3103 re f +1 0 0 1 614.4494 737.3696 cm +0 0 8.3549 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 722.9421 Tm [<00420042>-515<00420070>-3090<002B005100600032>-16797<0052006B00520038006A0052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 722.9421 Tm [<00420042>-515<00420070>-3090<002B005100600032>-16704<0052006B00520038006A0052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 722.9421 cm -0 0 69.342 8.3103 re f +1 0 0 1 334.9718 722.9421 cm +0 0 68.4664 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 722.9421 Tm [<00330038004E00790039>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 722.9421 Tm [<003300380039006A004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 722.9421 cm -0 0 49.0166 8.3103 re f +1 0 0 1 614.4494 722.9421 cm +0 0 48.1337 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9432 722.9421 Tm [<006B0064006500790065>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7153 722.9421 Tm [<006B0064004E00790065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 722.9421 cm -0 0 15.7503 8.3103 re f +1 0 0 1 981.4535 722.9421 cm +0 0 15.7211 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-71818<004E0033004E006A0065>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-71297<004E0033004E006A0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 708.5146 cm -0 0 56.4521 8.3103 re f +1 0 0 1 981.4535 708.5146 cm +0 0 55.737 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 694.0871 Tm [<00420042>-515<00420070>-3090<0032004D002B0051>-16798<006B006A004E006A0038006B>]TJ +/F47 11.955168 Tf 1 0 0 1 0 694.0871 Tm [<00420042>-515<00420070>-3090<0032004D002B0051>-16705<006B006A004E006A0038006B>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 694.0871 cm -0 0 136.5716 8.3103 re f +1 0 0 1 334.9718 694.0871 cm +0 0 134.8386 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 587.563 694.0871 Tm [<00650038006A0033>]TJ +/F47 11.955168 Tf 1 0 0 1 583.8562 694.0871 Tm [<00650038006A0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 694.0871 cm -0 0 3.7287 8.3103 re f +1 0 0 1 614.4494 694.0871 cm +0 0 3.6849 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-61460<0052006A0064006A0038>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-60972<0052006A003300520039>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 679.6596 cm -0 0 7.8368 8.3103 re f +1 0 0 1 858.0484 679.6596 cm +0 0 7.7821 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 679.6596 Tm [<006B006B00520079004E>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 679.6596 Tm [<006B006B00520079004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 679.6596 cm -0 0 12.6163 8.3103 re f +1 0 0 1 981.4535 679.6596 cm +0 0 12.4557 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 665.2321 Tm [<00420042>-4635<0037004200480069>-17828<006B00650052006B>]TJ +/F47 11.955168 Tf 1 0 0 1 0 665.2321 Tm [<00420042>-4635<0037004200480069>-17735<006B00650052006B>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 665.2321 cm -0 0 1.4886 8.3103 re f +1 0 0 1 334.9718 665.2321 cm +0 0 1.4703 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 650.8046 Tm [<00420042>-515<00420070>-3090<00370051004D0069>-16797<005200790079005200330052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 650.8046 Tm [<00420042>-515<00420070>-3090<00370051004D0069>-16704<005200790079005200330052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 650.8046 cm -0 0 57.1599 8.3103 re f +1 0 0 1 334.9718 650.8046 cm +0 0 56.4375 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 650.8046 Tm [<004E0052006B006B0079>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 650.8046 Tm [<004E0052006B006B0079>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 650.8046 cm -0 0 52.0485 8.3103 re f +1 0 0 1 614.4494 650.8046 cm +0 0 51.3881 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 944.7743 650.8046 Tm [<00390052004E00790038006B>]TJ +/F47 11.955168 Tf 1 0 0 1 938.5345 650.8046 Tm [<0039006B00390039006B0064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 650.8046 cm +1 0 0 1 981.4535 650.8046 cm 0 0 239.1034 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 636.3771 Tm [<00420042>-515<00420070>-3090<003B00600054003F>-17313<00380039003300640065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 636.3771 Tm [<00420042>-515<00420070>-3090<003B00600054003F>-17220<00380039003300640065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 636.3771 cm -0 0 31.3108 8.3103 re f +1 0 0 1 334.9718 636.3771 cm +0 0 30.9131 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.418 636.3771 Tm [<006A0065006500640064>]TJ +/F47 11.955168 Tf 1 0 0 1 577.7112 636.3771 Tm [<006A0065006500640064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 636.3771 cm -0 0 20.9274 8.3103 re f +1 0 0 1 614.4494 636.3771 cm +0 0 20.661 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 636.3771 Tm [<006A0039005200650079>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 636.3771 Tm [<006A0039005200650079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 636.3771 cm -0 0 19.4899 8.3103 re f +1 0 0 1 981.4535 636.3771 cm +0 0 19.2455 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 621.9496 Tm [<00420042>-515<00420070>-3090<003F001C004D002F>-17313<006B0052004E00390039>]TJ +/F47 11.955168 Tf 1 0 0 1 0 621.9496 Tm [<00420042>-515<00420070>-3090<003F001C004D002F>-17220<006B0052004E00390039>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 621.9496 cm -0 0 12.5214 8.3103 re f +1 0 0 1 334.9718 621.9496 cm +0 0 12.3609 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 587.563 621.9496 Tm [<00520052004E0039>]TJ +/F47 11.955168 Tf 1 0 0 1 583.8562 621.9496 Tm [<00520052004E0039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.4973 621.9496 cm -[]0 d 0 J 0.6823 w 0 0 m 0 8.3103 l S +1 0 0 1 614.7851 621.9496 cm +[]0 d 0 J 0.6713 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 607.5221 Tm [<00420042>-515<00420070>-3090<0044001C0070001C>-17313<006B003900380079004E>]TJ +/F47 11.955168 Tf 1 0 0 1 0 607.5221 Tm [<00420042>-515<00420070>-3090<0044001C0070001C>-17220<006B003900380079004E>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 607.5221 cm -0 0 13.9844 8.3103 re f +1 0 0 1 334.9718 607.5221 cm +0 0 13.8057 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.418 607.5221 Tm [<005200650038006B004E>]TJ +/F47 11.955168 Tf 1 0 0 1 577.7112 607.5221 Tm [<005200650038006B004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 607.5221 cm -0 0 9.4312 8.3103 re f +1 0 0 1 614.4494 607.5221 cm +0 0 9.3108 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0762 607.5221 Tm [<00380079006B006A>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8483 607.5221 Tm [<00380079006B006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 607.5221 cm -0 0 2.8677 8.3103 re f +1 0 0 1 981.4535 607.5221 cm +0 0 2.8312 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 593.0946 Tm [<00420042>-515<00420070>-3090<0048001C004D003B>-16799<0052006A004E004E006A0038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 593.0946 Tm [<00420042>-515<00420070>-3090<0048001C004D003B>-16706<0052006A004E004E006A0038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 593.0946 cm -0 0 79.8458 8.3103 re f +1 0 0 1 334.9718 593.0946 cm +0 0 78.8316 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 593.0946 Tm [<00390052003300330064>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 593.0946 Tm [<00390052003300330064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 593.0946 cm -0 0 23.9009 8.3103 re f +1 0 0 1 614.4494 593.0946 cm +0 0 23.598 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 593.0946 Tm [<003800790052006B004E>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 593.0946 Tm [<003800790052006B004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 593.0946 cm -0 0 28.6037 8.3103 re f +1 0 0 1 981.4535 593.0946 cm +0 0 28.2388 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 578.6671 Tm [<00420070>-3090<0048001C00760051>-41938<006A00650065>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 578.6671 Tm [<00420070>-3090<0048001C00760051>-41628<006A00650065>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.2602 578.6671 cm +1 0 0 1 614.5534 578.6671 cm []0 d 0 J 0.208 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 963.245 578.6671 Tm [<004E00380079>]TJ +/F47 11.955168 Tf 1 0 0 1 957.0172 578.6671 Tm [<004E00380079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.9532 578.6671 cm -[]0 d 0 J 0.5436 w 0 0 m 0 8.3103 l S +1 0 0 1 981.7217 578.6671 cm +[]0 d 0 J 0.5363 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-71302<00520065006B006500390064>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-70781<00520065006B006500390064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 564.2396 cm -0 0 92.8051 8.3103 re f +1 0 0 1 981.4535 564.2396 cm +0 0 91.6266 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 549.8122 Tm [<00420070>-3090<0048006D001C0069>-41421<003300520039006B>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 549.8122 Tm [<00420070>-3090<0048006D001C0069>-41111<003300520039006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 549.8122 cm -0 0 4.6444 8.3103 re f +1 0 0 1 614.4494 549.8122 cm +0 0 4.5861 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 549.8122 Tm [<0039006A0033006A0039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 549.8122 Tm [<0039006A0033006A0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 549.8122 cm -0 0 25.01 8.3103 re f +1 0 0 1 981.4535 549.8122 cm +0 0 24.6926 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 535.3847 Tm [<00420070>-3090<00480074004B0048>-40906<0052006B007900390033>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 535.3847 Tm [<00420070>-3090<00480074004B0048>-40596<0052006B007900390033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 535.3847 cm -0 0 6.8736 8.3103 re f +1 0 0 1 614.4494 535.3847 cm +0 0 6.7861 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 535.3847 Tm [<004E00330033006A0064>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 535.3847 Tm [<004E00330033006A0064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 535.3847 cm -0 0 56.3937 8.3103 re f +1 0 0 1 981.4535 535.3847 cm +0 0 55.6787 8.3103 re f Q 0 g 0 G BT @@ -1991,322 +1991,322 @@ ET 0 0.8 0 rg 0 0.8 0 RG q 1 0 0 1 170.0622 520.9572 cm -0 0 27.6259 8.3103 re f +0 0 27.2793 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 299.3417 520.9572 Tm [<003300790064006B0065>]TJ +/F47 11.955168 Tf 1 0 0 1 298.2217 520.9572 Tm [<003300790064006B0065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 520.9572 cm -0 0 46.0614 8.3103 re f +1 0 0 1 334.9718 520.9572 cm +0 0 45.4777 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 520.9572 Tm [<0039006A0039006B004E>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 520.9572 Tm [<0039006A0039006B004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 520.9572 cm -0 0 24.7801 8.3103 re f +1 0 0 1 614.4494 520.9572 cm +0 0 24.4664 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 827.1201 520.9572 Tm [<006B006B003800390038>]TJ +/F47 11.955168 Tf 1 0 0 1 821.2863 520.9572 Tm [<006B006B003800390038>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 520.9572 cm -0 0 12.8644 8.3103 re f +1 0 0 1 858.0484 520.9572 cm +0 0 12.7002 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9432 520.9572 Tm [<006A00330064004E0065>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7153 520.9572 Tm [<006A00330064004E0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 520.9572 cm -0 0 22.135 8.3103 re f +1 0 0 1 981.4535 520.9572 cm +0 0 21.8577 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 506.5297 Tm [<00420042>-515<00420070>-3090<004B001C0069003F>-16799<00520079006500650038006A>]TJ +/F47 11.955168 Tf 1 0 0 1 0 506.5297 Tm [<00420042>-515<00420070>-3090<004B001C0069003F>-16706<00520079006500650038006A>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 506.5297 cm -0 0 60.8558 8.3103 re f +1 0 0 1 334.9718 506.5297 cm +0 0 60.0823 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 506.5297 Tm [<006500390052006B006A>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 506.5297 Tm [<006500390052006B006A>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 506.5297 cm -0 0 36.5864 8.3103 re f +1 0 0 1 614.4494 506.5297 cm +0 0 36.1231 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9671 506.5297 Tm [<004E0065004E004E0039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7392 506.5297 Tm [<004E0065004E004E0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 506.5297 cm -0 0 55.343 8.3103 re f +1 0 0 1 981.4535 506.5297 cm +0 0 54.6425 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 492.1022 Tm [<00420042>-515<00420070>-3090<004B00320069001C>-17314<00640052006A0065004E>]TJ +/F47 11.955168 Tf 1 0 0 1 0 492.1022 Tm [<00420042>-515<00420070>-3090<004B00320069001C>-17221<00640052006A0065004E>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 492.1022 cm -0 0 40.7201 8.3103 re f +1 0 0 1 334.9718 492.1022 cm +0 0 40.2057 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 492.1022 Tm [<0039004E006B006B006A>]TJ +/F47 11.955168 Tf 1 0 0 1 577.7112 492.1022 Tm [<0039004E006A00330065>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 492.1022 cm -0 0 28.0856 8.3103 re f +1 0 0 1 614.4494 492.1022 cm +0 0 27.8229 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 492.1022 Tm [<006B0033004E00390038>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 492.1022 Tm [<006B0033004E00390038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 492.1022 cm -0 0 16.5164 8.3103 re f +1 0 0 1 981.4535 492.1022 cm +0 0 16.3048 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 477.6747 Tm [<00420070>-3090<004B004800420023>-41421<006A006B00330039>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 477.6747 Tm [<00420070>-3090<004B004800420023>-41111<006A006B00330039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 477.6747 cm -0 0 1.8753 8.3103 re f +1 0 0 1 614.4494 477.6747 cm +0 0 1.8498 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 477.6747 Tm [<0039006A006B00380065>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 477.6747 Tm [<00390039005200650033>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 477.6747 cm -0 0 24.6816 8.3103 re f +1 0 0 1 981.4535 477.6747 cm +0 0 24.8823 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 463.2472 Tm [<00420042>-515<00420070>-3090<004B006D00480069>-16282<0040>-515<006A0039007900330038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 463.2472 Tm [<00420042>-515<00420070>-3090<004B006D00480069>-16189<0040>-515<006A0039007900330038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 463.2472 cm -0 0 19.4498 8.3103 re f +1 0 0 1 334.9718 463.2472 cm +0 0 19.2017 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 463.2472 Tm [<00390079006500640039>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 463.2472 Tm [<00390079006500640039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 463.2472 cm -0 0 23.2076 8.3103 re f +1 0 0 1 614.4494 463.2472 cm +0 0 22.9121 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 938.6055 463.2472 Tm [<0040>-515<00330079003900330052>]TJ +/F47 11.955168 Tf 1 0 0 1 932.3776 463.2472 Tm [<0040>-515<00330079003900330052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 463.2472 cm -0 0 45.9228 8.3103 re f +1 0 0 1 981.4535 463.2472 cm +0 0 45.339 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 448.8197 Tm [<00420070>-3090<004D0051002F0032>-40906<0052006B006400790039>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 448.8197 Tm [<00420070>-3090<004D0051002F0032>-40596<0052006B006400790039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 448.8197 cm -0 0 7.2494 8.3103 re f +1 0 0 1 614.4494 448.8197 cm +0 0 7.1582 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 944.7743 448.8197 Tm [<005200520079006500790038>]TJ +/F47 11.955168 Tf 1 0 0 1 938.5345 448.8197 Tm [<00520052007900640039006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 448.8197 cm -0 0 63.1105 8.3103 re f +1 0 0 1 981.4535 448.8197 cm +0 0 62.3881 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 434.3922 Tm [<00420042>-515<00420070>-3090<004D00510060004B>-17312<006B0039006B00380079>]TJ +/F47 11.955168 Tf 1 0 0 1 0 434.3922 Tm [<00420042>-515<00420070>-3090<004D00510060004B>-17219<006B0039006B00380079>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 434.3922 cm -0 0 13.8348 8.3103 re f +1 0 0 1 334.9718 434.3922 cm +0 0 13.6597 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 599.8648 434.3922 Tm [<006B0033>]TJ +/F47 11.955168 Tf 1 0 0 1 596.158 434.3922 Tm [<006B0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1635 434.3922 cm +1 0 0 1 614.4567 434.3922 cm []0 d 0 J 0.0146 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 419.9647 Tm [<00420042>-515<00420070>-3090<0054001C002B0046>-17312<00330052007900640038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 419.9647 Tm [<00420042>-515<00420070>-3090<0054001C002B0046>-17219<00330052007900640038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 419.9647 cm -0 0 46.2584 8.3103 re f +1 0 0 1 334.9718 419.9647 cm +0 0 45.6747 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 419.9647 Tm [<004E0052006A0038006A>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 419.9647 Tm [<004E0052006A0038006A>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 419.9647 cm -0 0 52.1251 8.3103 re f +1 0 0 1 614.4494 419.9647 cm +0 0 51.4647 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 833.289 419.9647 Tm [<00520039004E0039>]TJ +/F47 11.955168 Tf 1 0 0 1 827.4551 419.9647 Tm [<00520039004E0039>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 864.3091 419.9647 cm -[]0 d 0 J 0.8537 w 0 0 m 0 8.3103 l S +1 0 0 1 858.4698 419.9647 cm +[]0 d 0 J 0.8428 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0881 419.9647 Tm [<006B00650064006B>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8603 419.9647 Tm [<006B00650064006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 419.9647 cm -0 0 1.525 8.3103 re f +1 0 0 1 981.4535 419.9647 cm +0 0 1.5068 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 405.5372 Tm [<00420042>-515<00420070>-3090<0054001C003B0032>-16797<006B00640033007900790038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 405.5372 Tm [<00420042>-515<00420070>-3090<0054001C003B0032>-16704<006B00640033007900790038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 405.5372 cm -0 0 158.6263 8.3103 re f +1 0 0 1 334.9718 405.5372 cm +0 0 156.6161 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 575.2372 405.5372 Tm [<006B00330052007900790052>]TJ +/F47 11.955168 Tf 1 0 0 1 571.5304 405.5372 Tm [<006B00330052007900790052>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 405.5372 cm -0 0 160.3338 8.3103 re f +1 0 0 1 614.4494 405.5372 cm +0 0 158.3053 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 833.277 405.5372 Tm [<006A006A00390052>]TJ +/F47 11.955168 Tf 1 0 0 1 827.4432 405.5372 Tm [<006A006A00390052>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 405.5372 cm -0 0 1.9081 8.3103 re f +1 0 0 1 858.0484 405.5372 cm +0 0 1.8826 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 405.5372 Tm [<00520038003900640065>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 405.5372 Tm [<00520038003900640065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 405.5372 cm -0 0 8.8292 8.3103 re f +1 0 0 1 981.4535 405.5372 cm +0 0 8.7197 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 391.1097 Tm [<0054002F00370060>-17313<006A006B006500520079>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 391.1097 Tm [<0054002F00370060>-17220<006A006B006500520079>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 391.1097 cm -0 0 18.607 8.3103 re f +1 0 0 1 334.9718 391.1097 cm +0 0 18.3698 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 376.6822 Tm [<00420070>-3090<0054003F00760062>-41421<0064006400390038>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 376.6822 Tm [<00420070>-3090<0054003F00760062>-41111<0064006400390038>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 376.6822 cm -0 0 4.4182 8.3103 re f +1 0 0 1 614.4494 376.6822 cm +0 0 4.3635 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.1001 376.6822 Tm [<004E00390039004E>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8722 376.6822 Tm [<004E00390039004E>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 376.6822 cm -0 0 5.3924 8.3103 re f +1 0 0 1 981.4535 376.6822 cm +0 0 5.3231 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 362.2547 Tm [<00420042>-515<00420070>-3090<0054006000510054>-17828<004E00790039006B>]TJ +/F47 11.955168 Tf 1 0 0 1 0 362.2547 Tm [<00420042>-515<00420070>-3090<0054006000510054>-17735<004E00790039006B>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 362.2547 cm -0 0 5.1589 8.3103 re f +1 0 0 1 334.9718 362.2547 cm +0 0 5.0932 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 587.551 362.2547 Tm [<0052005200330038>]TJ +/F47 11.955168 Tf 1 0 0 1 583.8442 362.2547 Tm [<0052005200330038>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.4937 362.2547 cm -[]0 d 0 J 0.675 w 0 0 m 0 8.3103 l S +1 0 0 1 614.7832 362.2547 cm +[]0 d 0 J 0.6677 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 347.8272 Tm [<00420042>-515<00420070>-3090<00600032003B0042>-16800<00520039004E006500790065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 347.8272 Tm [<00420042>-515<00420070>-3090<00600032003B0042>-16707<00520039004E006500790065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 347.8272 cm -0 0 85.3623 8.3103 re f +1 0 0 1 334.9718 347.8272 cm +0 0 84.2823 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 593.7079 347.8272 Tm [<006A0033006B>]TJ +/F47 11.955168 Tf 1 0 0 1 590.0011 347.8272 Tm [<006A0033006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.2657 347.8272 cm -[]0 d 0 J 0.2189 w 0 0 m 0 8.3103 l S +1 0 0 1 614.557 347.8272 cm +[]0 d 0 J 0.2153 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 347.8272 Tm [<0038006B006400330079>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 347.8272 Tm [<0038006B006400330079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 347.8272 cm -0 0 30.1141 8.3103 re f +1 0 0 1 981.4535 347.8272 cm +0 0 29.7347 8.3103 re f Q 0 g 0 G BT @@ -2315,484 +2315,484 @@ ET 0 0.8 0 rg 0 0.8 0 RG q 1 0 0 1 170.0622 333.3997 cm -0 0 88.3211 8.3103 re f +0 0 87.2011 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 299.3417 333.3997 Tm [<006A004E007900640039>]TJ +/F47 11.955168 Tf 1 0 0 1 298.2217 333.3997 Tm [<006A004E007900640039>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 333.3997 cm -0 0 22.2955 8.3103 re f +1 0 0 1 334.9718 333.3997 cm +0 0 22.011 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 333.3997 Tm [<0033006B006A00520038>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 333.3997 Tm [<0033006A006A00380079>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 333.3997 cm -0 0 46.9662 8.3103 re f +1 0 0 1 614.4494 333.3997 cm +0 0 46.9553 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 833.289 333.3997 Tm [<0039006A0038004E>]TJ +/F47 11.955168 Tf 1 0 0 1 827.4551 333.3997 Tm [<0039006A0038004E>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 333.3997 cm -0 0 2.4882 8.3103 re f +1 0 0 1 858.0484 333.3997 cm +0 0 2.4554 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0762 333.3997 Tm [<00640079006A0038>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8483 333.3997 Tm [<00640079006A0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 333.3997 cm -0 0 4.0133 8.3103 re f +1 0 0 1 981.4535 333.3997 cm +0 0 3.9622 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 318.9722 Tm [<00420042>-515<00420070>-3090<0062002B0060004D>-17313<0033003900390065006A>]TJ +/F47 11.955168 Tf 1 0 0 1 0 318.9722 Tm [<00420042>-515<00420070>-3090<0062002B0060004D>-17220<0033003900390065006A>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 318.9722 cm -0 0 48.1921 8.3103 re f +1 0 0 1 334.9718 318.9722 cm +0 0 47.5828 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 827.1201 318.9722 Tm [<00330079006400640064>]TJ +/F47 11.955168 Tf 1 0 0 1 821.2982 318.9722 Tm [<00330052005200520065>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 318.9722 cm -0 0 46.0906 8.3103 re f +1 0 0 1 858.0484 318.9722 cm +0 0 45.6966 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 318.9722 Tm [<005200520079006A0065>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 318.9722 Tm [<005200520079006A0065>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 318.9722 cm -0 0 6.2972 8.3103 re f +1 0 0 1 981.4535 318.9722 cm +0 0 6.2169 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 304.5447 Tm [<00420070>-3090<0062002B00600054>-41936<003300390064>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 304.5447 Tm [<00420070>-3090<0062002B00600054>-41626<003300390064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.397 304.5447 cm -[]0 d 0 J 0.4816 w 0 0 m 0 8.3103 l S +1 0 0 1 614.6884 304.5447 cm +[]0 d 0 J 0.4779 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9432 304.5447 Tm [<006B0065004E00640064>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7153 304.5447 Tm [<006B0065004E00640064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 304.5447 cm -0 0 15.3927 8.3103 re f +1 0 0 1 981.4535 304.5447 cm +0 0 15.1994 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 290.1172 Tm [<00420042>-515<00420070>-3090<0062005100600069>-17313<006B0079006B004E0033>]TJ +/F47 11.955168 Tf 1 0 0 1 0 290.1172 Tm [<00420042>-515<00420070>-3090<0062005100600069>-17220<006B0079006B004E0033>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 290.1172 cm -0 0 11.5801 8.3103 re f +1 0 0 1 334.9718 290.1172 cm +0 0 11.4342 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 593.7199 290.1172 Tm [<0052006A004E>]TJ +/F47 11.955168 Tf 1 0 0 1 590.0131 290.1172 Tm [<0052006A004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1964 290.1172 cm -[]0 d 0 J 0.0803 w 0 0 m 0 8.3103 l S +1 0 0 1 614.4877 290.1172 cm +[]0 d 0 J 0.0766 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 290.1172 Tm [<006A006A006B0052006A>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 290.1172 Tm [<006A006A006B0052006A>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 290.1172 cm -0 0 18.9499 8.3103 re f +1 0 0 1 981.4535 290.1172 cm +0 0 18.7091 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 275.6898 Tm [<00420042>-515<00420070>-3090<00620054001C002B>-17312<00330038006A006A0039>]TJ +/F47 11.955168 Tf 1 0 0 1 0 275.6898 Tm [<00420042>-515<00420070>-3090<00620054001C002B>-17219<00330038006A006A0039>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 275.6898 cm -0 0 48.6883 8.3103 re f +1 0 0 1 334.9718 275.6898 cm +0 0 48.0717 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.4061 275.6898 Tm [<00330038006500520064>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6993 275.6898 Tm [<00330038006500520064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 275.6898 cm -0 0 48.8524 8.3103 re f +1 0 0 1 614.4494 275.6898 cm +0 0 48.2322 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 275.6898 Tm [<006A00330079006B0038>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 275.6898 Tm [<006A00330079006B0038>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 275.6898 cm -0 0 21.6972 8.3103 re f +1 0 0 1 981.4535 275.6898 cm +0 0 21.4199 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 261.2623 Tm [<00420042>-4635<006200540032002B>-16798<0052006A006A006A004E0038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 261.2623 Tm [<00420042>-4635<006200540032002B>-16705<0052006A006A006A004E0038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 261.2623 cm -0 0 76.1135 8.3103 re f +1 0 0 1 334.9718 261.2623 cm +0 0 75.1503 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 246.8348 Tm [<00420042>-515<00420070>-3090<006200690060002B>-16798<006A00390065007900640052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 246.8348 Tm [<00420042>-515<00420070>-3090<006200690060002B>-16705<006A00390065007900640052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 246.8348 cm -0 0 197.4602 8.3103 re f +1 0 0 1 334.9718 246.8348 cm +0 0 194.961 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 575.2731 246.8348 Tm [<006B004E003900390065004E>]TJ +/F47 11.955168 Tf 1 0 0 1 571.5663 246.8348 Tm [<006B004E003900390065004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 246.8348 cm -0 0 168.0174 8.3103 re f +1 0 0 1 614.4494 246.8348 cm +0 0 165.8904 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 827.144 246.8348 Tm [<006B00650033006A0065>]TJ +/F47 11.955168 Tf 1 0 0 1 821.3102 246.8348 Tm [<006B00650033006A0065>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 246.8348 cm -0 0 15.3125 8.3103 re f +1 0 0 1 858.0484 246.8348 cm +0 0 15.1191 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 944.7624 246.8348 Tm [<005200390033003800330079>]TJ +/F47 11.955168 Tf 1 0 0 1 938.5345 246.8348 Tm [<005200390033003800330079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 246.8348 cm -0 0 84.7785 8.3103 re f +1 0 0 1 981.4535 246.8348 cm +0 0 83.7022 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 232.4073 Tm [<00420042>-515<00420070>-3090<0062006D00540054>-16797<005200640052007900640038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 232.4073 Tm [<00420042>-515<00420070>-3090<0062006D00540054>-16704<005200640052007900640038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 232.4073 cm -0 0 97.6137 8.3103 re f +1 0 0 1 334.9718 232.4073 cm +0 0 96.3769 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.418 232.4073 Tm [<00650039004E0039006B>]TJ +/F47 11.955168 Tf 1 0 0 1 577.7112 232.4073 Tm [<00650039003300520065>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 232.4073 cm -0 0 37.0534 8.3103 re f +1 0 0 1 614.4494 232.4073 cm +0 0 36.5135 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0762 232.4073 Tm [<006A006A00640039>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8483 232.4073 Tm [<006A006A00640039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 232.4073 cm -0 0 1.9264 8.3103 re f +1 0 0 1 981.4535 232.4073 cm +0 0 1.9008 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 217.9798 Tm [<00420042>-515<00420070>-3090<00620076004B0023>-17312<0033006B0033006A0064>]TJ +/F47 11.955168 Tf 1 0 0 1 0 217.9798 Tm [<00420042>-515<00420070>-3090<00620076004B0023>-17219<0033006B0033006A0064>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 217.9798 cm -0 0 47.2654 8.3103 re f +1 0 0 1 334.9718 217.9798 cm +0 0 46.667 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 217.9798 Tm [<006A0052006A00640079>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 217.9798 Tm [<006A0052006A00640079>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 217.9798 cm -0 0 17.8992 8.3103 re f +1 0 0 1 614.4494 217.9798 cm +0 0 17.673 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 963.257 217.9798 Tm [<004E004E0079>]TJ +/F47 11.955168 Tf 1 0 0 1 957.0291 217.9798 Tm [<004E004E0079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.9641 217.9798 cm -[]0 d 0 J 0.5655 w 0 0 m 0 8.3103 l S +1 0 0 1 981.7326 217.9798 cm +[]0 d 0 J 0.5582 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 203.5523 Tm [<00420042>-515<00420070>-3090<0062007600620069>-16798<0052006B0038006500520064>]TJ +/F47 11.955168 Tf 1 0 0 1 0 203.5523 Tm [<00420042>-515<00420070>-3090<0062007600620069>-16705<0052006B0038006500520064>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 203.5523 cm -0 0 71.6734 8.3103 re f +1 0 0 1 334.9718 203.5523 cm +0 0 70.7686 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 575.2372 203.5523 Tm [<00520052006400790079006B>]TJ +/F47 11.955168 Tf 1 0 0 1 571.5304 203.5523 Tm [<00520052006400790079006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 203.5523 cm -0 0 66.7589 8.3103 re f +1 0 0 1 614.4494 203.5523 cm +0 0 65.9125 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0762 203.5523 Tm [<006A003900390052>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8483 203.5523 Tm [<006A003900390052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 203.5523 cm -0 0 1.9629 8.3103 re f +1 0 0 1 981.4535 203.5523 cm +0 0 1.9373 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 189.1248 Tm [<00420042>-515<00420070>-3090<0069001C00230048>-16798<0052005200380065006B006A>]TJ +/F47 11.955168 Tf 1 0 0 1 0 189.1248 Tm [<00420042>-515<00420070>-3090<0069001C00230048>-16705<0052005200380065006B006A>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 189.1248 cm -0 0 65.9709 8.3103 re f +1 0 0 1 334.9718 189.1248 cm +0 0 65.1354 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 575.2492 189.1248 Tm [<0052006A006A0064004E006A>]TJ +/F47 11.955168 Tf 1 0 0 1 571.5424 189.1248 Tm [<0052006A006A0064004E006A>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 189.1248 cm -0 0 76.3397 8.3103 re f +1 0 0 1 614.4494 189.1248 cm +0 0 75.3729 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 833.289 189.1248 Tm [<004E006B0033006A>]TJ +/F47 11.955168 Tf 1 0 0 1 827.4551 189.1248 Tm [<004E006B0033006A>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 863.8822 189.1248 cm -0 0 5.2975 8.3103 re f +1 0 0 1 858.0484 189.1248 cm +0 0 5.2282 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 189.1248 Tm [<00520052003800650039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 189.1248 Tm [<00520052003800650039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 189.1248 cm -0 0 6.6 8.3103 re f +1 0 0 1 981.4535 189.1248 cm +0 0 6.5161 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 174.6973 Tm [<00420070>-3090<0069001C00620046>-41937<00520052004E>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 174.6973 Tm [<00420070>-3090<0069001C00620046>-41627<00520052004E>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1909 174.6973 cm -[]0 d 0 J 0.0693 w 0 0 m 0 8.3103 l S +1 0 0 1 614.4823 174.6973 cm +[]0 d 0 J 0.0657 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.1001 174.6973 Tm [<0065006500790039>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8722 174.6973 Tm [<006500330065006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 174.6973 cm -0 0 3.7688 8.3103 re f +1 0 0 1 981.4535 174.6973 cm +0 0 3.8673 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 160.2698 Tm [<00420042>-4635<0069003F0060002F>-17312<00640039003800790052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 160.2698 Tm [<00420042>-4635<0069003F0060002F>-17219<00640039003800790052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 160.2698 cm -0 0 42.5078 8.3103 re f +1 0 0 1 334.9718 160.2698 cm +0 0 41.9715 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 18.4707 145.8423 Tm [<00420070>-3090<0069005100460062>-41421<0052006B006A0033>]TJ +/F47 11.955168 Tf 1 0 0 1 18.4707 145.8423 Tm [<00420070>-3090<0069005100460062>-41111<0052006B006A0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.5101 145.8423 cm -[]0 d 0 J 0.7078 w 0 0 m 0 8.3103 l S +1 0 0 1 614.7978 145.8423 cm +[]0 d 0 J 0.6968 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 957.0762 145.8423 Tm [<003800390039006B>]TJ +/F47 11.955168 Tf 1 0 0 1 950.8483 145.8423 Tm [<003800390039006B>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 145.8423 cm -0 0 3.1048 8.3103 re f +1 0 0 1 981.4535 145.8423 cm +0 0 3.0647 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 131.4148 Tm [<00420042>-515<00420070>-3090<00690060001C002B>-17313<0052006A003900390065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 131.4148 Tm [<00420042>-515<00420070>-3090<00690060001C002B>-17220<0052006A003900390065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 131.4148 cm -0 0 7.6726 8.3103 re f +1 0 0 1 334.9718 131.4148 cm +0 0 7.5741 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.3941 131.4148 Tm [<005200390038006A0033>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 131.4148 Tm [<005200390038006A0033>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 131.4148 cm -0 0 8.2965 8.3103 re f +1 0 0 1 614.4494 131.4148 cm +0 0 8.1907 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9312 131.4148 Tm [<006A0033006500390052>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7034 131.4148 Tm [<006A0033006500390052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 131.4148 cm -0 0 22.0474 8.3103 re f +1 0 0 1 981.4535 131.4148 cm +0 0 21.7702 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 116.9873 Tm [<00420042>-515<00420070>-3090<0069007600540032>-16797<006A00380033005200380038>]TJ +/F47 11.955168 Tf 1 0 0 1 0 116.9873 Tm [<00420042>-515<00420070>-3090<0069007600540032>-16704<006A00380033005200380038>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 116.9873 cm -0 0 204.3557 8.3103 re f +1 0 0 1 334.9718 116.9873 cm +0 0 201.769 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 575.2611 116.9873 Tm [<005200650039004E006A0064>]TJ +/F47 11.955168 Tf 1 0 0 1 571.5543 116.9873 Tm [<005200650039004E006A0064>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 116.9873 cm -0 0 94.1112 8.3103 re f +1 0 0 1 614.4494 116.9873 cm +0 0 92.9182 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 963.245 116.9873 Tm [<006500380079>]TJ +/F47 11.955168 Tf 1 0 0 1 957.0172 116.9873 Tm [<006500380079>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.8675 116.9873 cm -[]0 d 0 J 0.3721 w 0 0 m 0 8.3103 l S +1 0 0 1 981.6359 116.9873 cm +[]0 d 0 J 0.3648 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 102.5598 Tm [<00420042>-515<00420070>-3090<0069007600540051>-18342<005200390064>]TJ +/F47 11.955168 Tf 1 0 0 1 0 102.5598 Tm [<00420042>-515<00420070>-3090<0069007600540051>-18249<005200390064>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.1338 102.5598 cm +1 0 0 1 335.0138 102.5598 cm []0 d 0 J 0.0839 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.43 102.5598 Tm [<0052004E006B004E0065>]TJ +/F47 11.955168 Tf 1 0 0 1 577.6873 102.5598 Tm [<006B00520079006A0079>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 102.5598 cm -0 0 11.011 8.3103 re f +1 0 0 1 614.4494 102.5598 cm +0 0 11.8464 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 839.4339 102.5598 Tm [<006400520033>]TJ +/F47 11.955168 Tf 1 0 0 1 827.4671 102.5598 Tm [<0052004E0039004E>]TJ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q -1 0 0 1 864.0865 102.5598 cm -[]0 d 0 J 0.4086 w 0 0 m 0 8.3103 l S +1 0 0 1 858.0484 102.5598 cm +0 0 1.0982 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 102.5598 Tm [<0038006B0064006B0039>]TJ +/F47 11.955168 Tf 1 0 0 1 944.7153 102.5598 Tm [<006500790033004E0039>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 102.5598 cm -0 0 30.0849 8.3103 re f +1 0 0 1 981.4535 102.5598 cm +0 0 34.3062 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 88.1323 Tm [<00420042>-515<00420070>-3090<006D004D0042002B>-17314<00380065006A00380065>]TJ +/F47 11.955168 Tf 1 0 0 1 0 88.1323 Tm [<00420042>-515<00420070>-3090<006D004D0042002B>-17221<00380065006A00380065>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 88.1323 cm -0 0 32.1572 8.3103 re f +1 0 0 1 334.9718 88.1323 cm +0 0 31.7486 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 593.7199 88.1323 Tm [<003900650039>]TJ +/F47 11.955168 Tf 1 0 0 1 590.0131 88.1323 Tm [<003900650039>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.2894 88.1323 cm -[]0 d 0 J 0.2663 w 0 0 m 0 8.3103 l S +1 0 0 1 614.5808 88.1323 cm +[]0 d 0 J 0.2627 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 963.2331 88.1323 Tm [<006A00390064>]TJ +/F47 11.955168 Tf 1 0 0 1 957.0052 88.1323 Tm [<006A00390064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.7799 88.1323 cm +1 0 0 1 981.552 88.1323 cm []0 d 0 J 0.197 w 0 0 m 0 8.3103 l S Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-71815<006A0079006A00640064>]TJ +/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-71294<006A0079006A00640064>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 73.7048 cm -0 0 17.3337 8.3103 re f +1 0 0 1 981.4535 73.7048 cm +0 0 17.1148 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 59.2773 Tm [<00420042>-4635<0070003200600023>-17312<0064006B0038006B0052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 59.2773 Tm [<00420042>-4635<0070003200600023>-17219<0064006B0038006B0052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 59.2773 cm -0 0 41.3805 8.3103 re f +1 0 0 1 334.9718 59.2773 cm +0 0 40.8551 8.3103 re f Q 0 g 0 G BT @@ -2801,68 +2801,68 @@ ET 0 0.8 0 rg 0 0.8 0 RG q 1 0 0 1 170.0622 44.8498 cm -0 0 1.0799 8.3103 re f +0 0 1.0653 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 293.1729 44.8498 Tm [<006B0064006A006A00520079>]TJ +/F47 11.955168 Tf 1 0 0 1 292.0528 44.8498 Tm [<006B0064006A006A00520079>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 44.8498 cm -0 0 155.9447 8.3103 re f +1 0 0 1 334.9718 44.8498 cm +0 0 153.9709 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 581.43 44.8498 Tm [<004E006500380065006B>]TJ +/F47 11.955168 Tf 1 0 0 1 577.7232 44.8498 Tm [<004E006500380065006B>]TJ ET 0.8 0 0 rg 0.8 0 0 RG q -1 0 0 1 618.1562 44.8498 cm -0 0 55.0949 8.3103 re f +1 0 0 1 614.4494 44.8498 cm +0 0 54.3981 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 950.9193 44.8498 Tm [<006A0064003900330052>]TJ +/F47 11.955168 Tf 1 0 0 1 944.6914 44.8498 Tm [<006A0064003900330052>]TJ ET 0.725 g 0.725 G q -1 0 0 1 987.6814 44.8498 cm -0 0 21.3871 8.3103 re f +1 0 0 1 981.4535 44.8498 cm +0 0 21.1135 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 30.4223 Tm [<00420042>-4635<0074003200690074>-16798<0052006B0065006A006B0052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 30.4223 Tm [<00420042>-4635<0074003200690074>-16705<0052006B0065006A006B0052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 30.4223 cm -0 0 72.0747 8.3103 re f +1 0 0 1 334.9718 30.4223 cm +0 0 71.1626 8.3103 re f Q 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 15.9948 Tm [<00420042>-4635<00740069001C003B>-16800<006B0052004E004E004E0052>]TJ +/F47 11.955168 Tf 1 0 0 1 0 15.9948 Tm [<00420042>-4635<00740069001C003B>-16707<006B0052004E004E004E0052>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q -1 0 0 1 336.0919 15.9948 cm -0 0 125.5242 8.3103 re f +1 0 0 1 334.9718 15.9948 cm +0 0 123.9334 8.3103 re f Q endstream endobj 21 0 obj -<> +<> endobj 20 0 obj <>/ProcSet[/PDF/Text]>> endobj 25 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ +/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q @@ -3717,7 +3717,7 @@ Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 326.0144 238.413 cm -0 0 11.9552 137.2247 re f +0 0 11.9552 141.3839 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q @@ -4081,17 +4081,17 @@ Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 175.8057 25.1898 cm -0 0 11.9552 41.5833 re f +0 0 11.9552 49.8988 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 187.7609 25.1898 cm -0 0 11.9552 4.1592 re f +0 0 11.9552 8.3155 re f Q 0.725 g 0.725 G q 1 0 0 1 199.716 25.1898 cm -0 0 11.9552 45.7425 re f +0 0 11.9552 54.058 re f Q 0.6 g 0.6 G q @@ -4220,27 +4220,27 @@ endobj <>/ProcSet[/PDF/Text]>> endobj 28 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT -/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<0062004200780032>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ +/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<0062004200780032>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 13.6418 673.7576 cm -0 0 11.9552 23.3499 re f +0 0 11.9552 23.0551 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 25.597 673.7576 cm -0 0 11.9552 19.7686 re f +0 0 11.9552 19.5176 re f Q 0.725 g 0.725 G q 1 0 0 1 49.5073 673.7576 cm -0 0 11.9552 2.983 re f +0 0 11.9552 2.945 re f Q 0.6 g 0.6 G q @@ -4254,12 +4254,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 100.7013 673.7576 cm -0 0 11.9552 3.4675 re f +0 0 11.9552 3.4237 re f Q 0.725 g 0.725 G q 1 0 0 1 124.6117 673.7576 cm -0 0 11.9552 9.0189 re f +0 0 11.9552 8.9372 re f Q 0.6 g 0.6 G q @@ -4273,12 +4273,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 175.8057 673.7576 cm -0 0 11.9552 8.5461 re f +0 0 11.9552 8.4381 re f Q 0.725 g 0.725 G q 1 0 0 1 199.716 673.7576 cm -0 0 11.9552 19.7832 re f +0 0 11.9552 19.5322 re f Q 0.6 g 0.6 G q @@ -4292,17 +4292,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 238.9549 673.7576 cm -0 0 11.9552 13.5255 re f +0 0 11.9552 13.3532 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 250.91 673.7576 cm -0 0 11.9552 21.7884 re f +0 0 11.9552 21.5111 re f Q 0.725 g 0.725 G q 1 0 0 1 274.8204 673.7576 cm -0 0 11.9552 8.4381 re f +0 0 11.9552 8.3301 re f Q 0.6 g 0.6 G q @@ -4335,17 +4335,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 389.1636 673.7576 cm -0 0 11.9552 12.3258 re f +0 0 11.9552 12.1712 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 401.1187 673.7576 cm -0 0 11.9552 10.5396 re f +0 0 11.9552 10.4053 re f Q 0.725 g 0.725 G q 1 0 0 1 425.0291 673.7576 cm -0 0 11.9552 20.224 re f +0 0 11.9552 19.9671 re f Q 0.6 g 0.6 G q @@ -4359,7 +4359,7 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 476.2231 673.7576 cm -0 0 11.9552 6.4942 re f +0 0 11.9552 6.4125 re f Q 0.6 g 0.6 G q @@ -4373,12 +4373,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 539.3723 673.7576 cm -0 0 11.9552 9.2261 re f +0 0 11.9552 9.1094 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 551.3274 673.7576 cm -0 0 11.9552 10.3032 re f +0 0 11.9552 10.1718 re f Q 0.725 g 0.725 G q @@ -4397,12 +4397,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 626.4318 673.7576 cm -0 0 11.9552 1.2434 re f +0 0 11.9552 1.2288 re f Q 0.725 g 0.725 G q 1 0 0 1 650.3421 673.7576 cm -0 0 11.9552 43.1624 re f +0 0 11.9552 42.6136 re f Q 0.6 g 0.6 G q @@ -4416,12 +4416,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 701.5361 673.7576 cm -0 0 11.9552 6.6401 re f +0 0 11.9552 6.5555 re f Q 0.725 g 0.725 G q 1 0 0 1 725.4464 673.7576 cm -0 0 11.9552 6.6226 re f +0 0 11.9552 6.538 re f Q 0.6 g 0.6 G q @@ -4440,7 +4440,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 800.5508 673.7576 cm -0 0 11.9552 10.7351 re f +0 0 11.9552 10.6009 re f Q 0.6 g 0.6 G q @@ -4454,17 +4454,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 839.7896 673.7576 cm -0 0 11.9552 49.0641 re f +0 0 11.9552 48.4453 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 851.7448 673.7576 cm -0 0 11.9552 39.0703 re f +0 0 11.9552 38.577 re f Q 0.725 g 0.725 G q 1 0 0 1 875.6551 673.7576 cm -0 0 11.9552 8.5461 re f +0 0 11.9552 8.4381 re f Q 0.6 g 0.6 G q @@ -4478,12 +4478,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 914.894 673.7576 cm -0 0 11.9552 8.7183 re f +0 0 11.9552 8.6074 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 926.8491 673.7576 cm -0 0 11.9552 6.7686 re f +0 0 11.9552 6.6839 re f Q 0.6 g 0.6 G q @@ -4497,17 +4497,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 989.9983 673.7576 cm -0 0 11.9552 55.4736 re f +0 0 11.9552 54.7731 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1001.9535 673.7576 cm -0 0 11.9552 39.2133 re f +0 0 11.9552 38.507 re f Q 0.725 g 0.725 G q 1 0 0 1 1025.8638 673.7576 cm -0 0 11.9552 12.6002 re f +0 0 11.9552 12.5769 re f Q 0.6 g 0.6 G q @@ -4521,7 +4521,7 @@ ET 0.725 g 0.725 G q 1 0 0 1 1100.9682 673.7576 cm -0 0 11.9552 45.1617 re f +0 0 11.9552 44.5896 re f Q 0.6 g 0.6 G q @@ -4535,12 +4535,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1140.207 673.7576 cm -0 0 11.9552 109.2573 re f +0 0 11.9552 107.8709 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1152.1622 673.7576 cm -0 0 11.9552 2.983 re f +0 0 11.9552 2.9479 re f Q 0.6 g 0.6 G q @@ -4554,12 +4554,12 @@ ET 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 1239.2217 673.7576 cm -0 0 11.9552 6.2695 re f +0 0 11.9552 6.2257 re f Q 0.725 g 0.725 G q 1 0 0 1 1251.1769 673.7576 cm -0 0 11.9552 10.093 re f +0 0 11.9552 9.9646 re f Q 0.6 g 0.6 G q @@ -4573,7 +4573,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1290.4157 673.7576 cm -0 0 11.9552 1.1908 re f +0 0 11.9552 1.1763 re f Q 0.6 g 0.6 G q @@ -4587,12 +4587,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 13.6418 454.6022 cm -0 0 11.9552 45.7279 re f +0 0 11.9552 45.15 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 25.597 454.6022 cm -0 0 11.9552 41.6388 re f +0 0 11.9552 41.1105 re f Q 0.725 g 0.725 G q @@ -4611,17 +4611,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 88.7462 457.5684 cm -0 0 11.9552 25.0486 re f +0 0 11.9552 24.7305 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 100.7013 457.5684 cm -0 0 11.9552 16.7419 re f +0 0 11.9552 16.5288 re f Q 0.725 g 0.725 G q 1 0 0 1 124.6117 457.5684 cm -0 0 11.9552 15.5919 re f +0 0 11.9552 15.3964 re f Q 0.6 g 0.6 G q @@ -4635,7 +4635,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 163.8505 457.5684 cm -0 0 11.9552 10.0171 re f +0 0 11.9552 9.8887 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -4654,17 +4654,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 238.9549 457.5684 cm -0 0 11.9552 11.1875 re f +0 0 11.9552 11.0445 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 250.91 457.5684 cm -0 0 11.9552 7.5449 re f +0 0 11.9552 7.4486 re f Q 0.725 g 0.725 G q 1 0 0 1 274.8204 457.5684 cm -0 0 11.9552 2.2941 re f +0 0 11.9552 2.2649 re f Q 0.6 g 0.6 G q @@ -4678,17 +4678,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 314.0592 457.5684 cm -0 0 11.9552 63.8767 re f +0 0 11.9552 63.0653 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 326.0144 457.5684 cm -0 0 11.9552 19.1207 re f +0 0 11.9552 18.8784 re f Q 0.725 g 0.725 G q 1 0 0 1 349.9247 457.5684 cm -0 0 11.9552 22.8829 re f +0 0 11.9552 22.5911 re f Q 0.6 g 0.6 G q @@ -4721,7 +4721,7 @@ ET 0.725 g 0.725 G q 1 0 0 1 500.1334 457.5684 cm -0 0 11.9552 74.244 re f +0 0 11.9552 73.3013 re f Q 0.6 g 0.6 G q @@ -4735,12 +4735,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 551.3274 457.5684 cm -0 0 11.9552 3.7156 re f +0 0 11.9552 3.6689 re f Q 0.725 g 0.725 G q 1 0 0 1 575.2378 457.5684 cm -0 0 11.9552 20.008 re f +0 0 11.9552 19.754 re f Q 0.6 g 0.6 G q @@ -4754,12 +4754,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 626.4318 457.5684 cm -0 0 11.9552 5.4989 re f +0 0 11.9552 5.4289 re f Q 0.725 g 0.725 G q 1 0 0 1 650.3421 457.5684 cm -0 0 11.9552 45.115 re f +0 0 11.9552 44.5429 re f Q 0.6 g 0.6 G q @@ -4773,27 +4773,27 @@ ET 0 0.8 0 rg 0 0.8 0 RG q 1 0 0 1 677.6258 457.5684 cm -0 0 11.9552 22.1007 re f +0 0 11.9552 21.8234 re f Q 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 689.5809 457.5684 cm -0 0 11.9552 36.8491 re f +0 0 11.9552 36.3821 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 701.5361 457.5684 cm -0 0 11.9552 19.8241 re f +0 0 11.9552 19.5731 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 713.4913 457.5684 cm -0 0 11.9552 10.2915 re f +0 0 11.9552 10.1601 re f Q 0.725 g 0.725 G q 1 0 0 1 725.4464 457.5684 cm -0 0 11.9552 17.708 re f +0 0 11.9552 17.4862 re f Q 0.6 g 0.6 G q @@ -4807,17 +4807,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 764.6853 457.5684 cm -0 0 11.9552 48.6846 re f +0 0 11.9552 48.0658 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 776.6405 457.5684 cm -0 0 11.9552 29.2691 re f +0 0 11.9552 28.8985 re f Q 0.725 g 0.725 G q 1 0 0 1 800.5508 457.5684 cm -0 0 11.9552 44.2744 re f +0 0 11.9552 43.714 re f Q 0.6 g 0.6 G q @@ -4831,17 +4831,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 839.7896 457.5684 cm -0 0 11.9552 32.5761 re f +0 0 11.9552 32.1645 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 851.7448 457.5684 cm -0 0 11.9552 22.4685 re f +0 0 11.9552 22.2583 re f Q 0.725 g 0.725 G q 1 0 0 1 875.6551 457.5684 cm -0 0 11.9552 13.2131 re f +0 0 11.9552 13.0439 re f Q 0.6 g 0.6 G q @@ -4855,12 +4855,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 926.8491 457.5684 cm -0 0 11.9552 1.5002 re f +0 0 11.9552 1.4798 re f Q 0.725 g 0.725 G q 1 0 0 1 950.7595 457.5684 cm -0 0 11.9552 19.7453 re f +0 0 11.9552 19.9058 re f Q 0.6 g 0.6 G q @@ -4874,17 +4874,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 989.9983 457.5684 cm -0 0 11.9552 15.5598 re f +0 0 11.9552 15.3613 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1001.9535 457.5684 cm -0 0 11.9552 18.5661 re f +0 0 11.9552 18.3297 re f Q 0.725 g 0.725 G q 1 0 0 1 1025.8638 457.5684 cm -0 0 11.9552 36.7382 re f +0 0 11.9552 36.2712 re f Q 0.6 g 0.6 G q @@ -4898,12 +4898,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1077.0578 457.5684 cm -0 0 11.9552 5.7995 re f +0 0 11.9552 5.7266 re f Q 0.725 g 0.725 G q 1 0 0 1 1100.9682 457.5684 cm -0 0 11.9552 50.4884 re f +0 0 11.9552 49.9105 re f Q 0.6 g 0.6 G q @@ -4917,7 +4917,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1140.207 457.5684 cm -0 0 11.9552 11.0679 re f +0 0 11.9552 10.9278 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -4936,12 +4936,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1215.3114 457.5684 cm -0 0 11.9552 37.0067 re f +0 0 11.9552 36.5397 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1227.2665 457.5684 cm -0 0 11.9552 41.7001 re f +0 0 11.9552 41.1718 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q @@ -4951,7 +4951,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 1251.1769 457.5684 cm -0 0 11.9552 1.22 re f +0 0 11.9552 1.2054 re f Q 0.6 g 0.6 G q @@ -4965,22 +4965,22 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1290.4157 457.5684 cm -0 0 11.9552 126.9011 re f +0 0 11.9552 125.2928 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1302.3709 457.5684 cm -0 0 11.9552 128.267 re f +0 0 11.9552 126.6442 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 1314.326 457.5684 cm -0 0 11.9552 1.5265 re f +0 0 11.9552 1.5061 re f Q 0.725 g 0.725 G q 1 0 0 1 1326.2812 457.5684 cm -0 0 11.9552 7.0634 re f +0 0 11.9552 6.9758 re f Q 0.6 g 0.6 G q @@ -4994,7 +4994,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 13.6418 241.3791 cm -0 0 11.9552 14.8856 re f +0 0 11.9552 14.6959 re f Q 0.6 g 0.6 G q @@ -5008,12 +5008,12 @@ ET 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 100.7013 241.3791 cm -0 0 11.9552 3.5346 re f +0 0 11.9552 3.4908 re f Q 0.725 g 0.725 G q 1 0 0 1 124.6117 241.3791 cm -0 0 11.9552 4.3139 re f +0 0 11.9552 4.2584 re f Q 0.6 g 0.6 G q @@ -5027,7 +5027,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 163.8505 241.3791 cm -0 0 11.9552 4.1271 re f +0 0 11.9552 4.0746 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -5046,7 +5046,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 238.9549 241.3791 cm -0 0 11.9552 68.2898 re f +0 0 11.9552 67.4259 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -5056,7 +5056,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 274.8204 241.3791 cm -0 0 11.9552 24.0913 re f +0 0 11.9552 23.7877 re f Q 0.6 g 0.6 G q @@ -5070,27 +5070,27 @@ ET 0 0.8 0 rg 0 0.8 0 RG q 1 0 0 1 302.104 241.3791 cm -0 0 11.9552 70.6569 re f +0 0 11.9552 69.7609 re f Q 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 314.0592 241.3791 cm -0 0 11.9552 17.8364 re f +0 0 11.9552 17.6088 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 326.0144 241.3791 cm -0 0 11.9552 37.573 re f +0 0 11.9552 37.5642 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 337.9696 241.3791 cm -0 0 11.9552 1.9906 re f +0 0 11.9552 1.9643 re f Q 0.725 g 0.725 G q 1 0 0 1 349.9247 241.3791 cm -0 0 11.9552 3.2106 re f +0 0 11.9552 3.1698 re f Q 0.6 g 0.6 G q @@ -5104,17 +5104,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 389.1636 241.3791 cm -0 0 11.9552 38.5537 re f +0 0 11.9552 38.0662 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 413.0739 241.3791 cm -0 0 11.9552 36.8725 re f +0 0 11.9552 36.5572 re f Q 0.725 g 0.725 G q 1 0 0 1 425.0291 241.3791 cm -0 0 11.9552 5.0377 re f +0 0 11.9552 4.9735 re f Q 0.6 g 0.6 G q @@ -5133,7 +5133,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 500.1334 241.3791 cm -0 0 11.9552 12.3142 re f +0 0 11.9552 12.1595 re f Q 0.6 g 0.6 G q @@ -5147,7 +5147,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 539.3723 241.3791 cm -0 0 11.9552 9.2641 re f +0 0 11.9552 9.1473 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -5157,7 +5157,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 575.2378 241.3791 cm -0 0 11.9552 15.1599 re f +0 0 11.9552 14.9673 re f Q 0.6 g 0.6 G q @@ -5171,17 +5171,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 614.4766 241.3791 cm -0 0 11.9552 38.9506 re f +0 0 11.9552 38.4573 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 626.4318 241.3791 cm -0 0 11.9552 39.082 re f +0 0 11.9552 38.5858 re f Q 0.725 g 0.725 G q 1 0 0 1 650.3421 241.3791 cm -0 0 11.9552 17.3578 re f +0 0 11.9552 17.1359 re f Q 0.6 g 0.6 G q @@ -5195,7 +5195,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 689.5809 241.3791 cm -0 0 11.9552 60.8908 re f +0 0 11.9552 60.1203 re f Q 0.6 g 0.6 G q @@ -5209,22 +5209,22 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 764.6853 241.3791 cm -0 0 11.9552 157.9682 re f +0 0 11.9552 155.9688 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 776.6405 241.3791 cm -0 0 11.9552 134.4139 re f +0 0 11.9552 132.7123 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 788.5956 241.3791 cm -0 0 11.9552 12.25 re f +0 0 11.9552 12.0953 re f Q 0.725 g 0.725 G q 1 0 0 1 800.5508 241.3791 cm -0 0 11.9552 67.8228 re f +0 0 11.9552 66.9618 re f Q 0.6 g 0.6 G q @@ -5238,17 +5238,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 839.7896 241.3791 cm -0 0 11.9552 78.0909 re f +0 0 11.9552 77.1015 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 851.7448 241.3791 cm -0 0 11.9552 29.6427 re f +0 0 11.9552 29.2108 re f Q 0.725 g 0.725 G q 1 0 0 1 875.6551 241.3791 cm -0 0 11.9552 1.5411 re f +0 0 11.9552 1.5207 re f Q 0.6 g 0.6 G q @@ -5262,12 +5262,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 914.894 241.3791 cm -0 0 11.9552 37.8123 re f +0 0 11.9552 37.3336 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 926.8491 241.3791 cm -0 0 11.9552 14.3193 re f +0 0 11.9552 14.1384 re f Q 0.725 g 0.725 G q @@ -5286,17 +5286,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 989.9983 241.3791 cm -0 0 11.9552 57.3387 re f +0 0 11.9552 56.6148 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1001.9535 241.3791 cm -0 0 11.9552 53.4071 re f +0 0 11.9552 52.73 re f Q 0.725 g 0.725 G q 1 0 0 1 1025.8638 241.3791 cm -0 0 11.9552 1.5703 re f +0 0 11.9552 1.5499 re f Q 0.6 g 0.6 G q @@ -5310,22 +5310,22 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1065.1027 241.3791 cm -0 0 11.9552 52.7767 re f +0 0 11.9552 52.1083 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 1077.0578 241.3791 cm -0 0 11.9552 61.0718 re f +0 0 11.9552 60.2983 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q 1 0 0 1 1089.013 241.3791 cm -0 0 11.9552 4.238 re f +0 0 11.9552 4.1826 re f Q 0.725 g 0.725 G q 1 0 0 1 1100.9682 241.3791 cm -0 0 11.9552 5.28 re f +0 0 11.9552 5.2129 re f Q 0.6 g 0.6 G q @@ -5344,7 +5344,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 1176.0725 241.3791 cm -0 0 11.9552 3.0151 re f +0 0 11.9552 3.0939 re f Q 0.6 g 0.6 G q @@ -5358,7 +5358,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 1215.3114 241.3791 cm -0 0 11.9552 34.0063 re f +0 0 11.9552 33.5772 re f Q 0.6 g 0.6 G q @@ -5377,7 +5377,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 1326.2812 241.3791 cm -0 0 11.9552 2.4838 re f +0 0 11.9552 2.4517 re f Q 0.6 g 0.6 G q @@ -5391,17 +5391,17 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 13.6418 25.1898 cm -0 0 11.9552 6.1381 re f +0 0 11.9552 6.0593 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 25.597 25.1898 cm -0 0 11.9552 6.6372 re f +0 0 11.9552 6.5526 re f Q 0.725 g 0.725 G q 1 0 0 1 49.5073 25.1898 cm -0 0 11.9552 17.638 re f +0 0 11.9552 17.4161 re f Q 0.6 g 0.6 G q @@ -5415,12 +5415,12 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 88.7462 25.1898 cm -0 0 11.9552 163.4846 re f +0 0 11.9552 161.4152 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 100.7013 25.1898 cm -0 0 11.9552 75.289 re f +0 0 11.9552 74.3345 re f Q 0.725 g 0.725 G q @@ -5444,7 +5444,7 @@ Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 175.8057 25.1898 cm -0 0 11.9552 8.8088 re f +0 0 11.9552 9.4772 re f Q 0.6 0.6 0 rg 0.6 0.6 0 RG q @@ -5454,7 +5454,7 @@ Q 0.725 g 0.725 G q 1 0 0 1 199.716 25.1898 cm -0 0 11.9552 24.0679 re f +0 0 11.9552 27.4449 re f Q 0.6 g 0.6 G q @@ -5468,7 +5468,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 238.9549 25.1898 cm -0 0 11.9552 25.7258 re f +0 0 11.9552 25.3989 re f Q 0.8 0 0 rg 0.8 0 0 RG q @@ -5492,7 +5492,7 @@ ET 0.725 g 0.725 G q 1 0 0 1 349.9247 25.1898 cm -0 0 11.9552 13.8669 re f +0 0 11.9552 13.6918 re f Q 0.6 g 0.6 G q @@ -5506,7 +5506,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 389.1636 25.1898 cm -0 0 11.9552 33.1044 re f +0 0 11.9552 32.6841 re f Q 0.6 g 0.6 G q @@ -5525,17 +5525,17 @@ Q 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 464.2679 25.1898 cm -0 0 11.9552 124.7558 re f +0 0 11.9552 123.1768 re f Q 0.8 0 0 rg 0.8 0 0 RG q 1 0 0 1 476.2231 25.1898 cm -0 0 11.9552 44.0759 re f +0 0 11.9552 43.5184 re f Q 0.725 g 0.725 G q 1 0 0 1 500.1334 25.1898 cm -0 0 11.9552 17.1097 re f +0 0 11.9552 16.8908 re f Q 0.6 g 0.6 G q @@ -5549,7 +5549,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 539.3723 25.1898 cm -0 0 11.9552 57.6598 re f +0 0 11.9552 56.9301 re f Q 0.6 g 0.6 G q @@ -5563,7 +5563,7 @@ ET 0 0 0.8 rg 0 0 0.8 RG q 1 0 0 1 614.4766 25.1898 cm -0 0 11.9552 100.4193 re f +0 0 11.9552 99.1468 re f Q 0.6 g 0.6 G q @@ -5609,14 +5609,14 @@ stream - s-inf-01.2011-10-28T22:37:19+02:00 + s-inf-01.2011-11-02T20:15:29+01:00 This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1
- 2011-10-28T22:37:19+02:00 - ConTeXt - 2011.10.28 22:32 - 2011-10-28T22:37:19+02:00 - 2011-10-28T22:37:19+02:00 + 2011-11-02T20:15:29+01:00 + ConTeXt - 2011.11.02 20:10 + 2011-11-02T20:15:29+01:00 + 2011-11-02T20:15:29+01:00 @@ -5634,31 +5634,32 @@ stream endstream endobj 30 0 obj -[28[515]35[515]42[515 515]45[515]47[515]50[515 515]55[515 515 515]59[515]63[515 515]66[515]68[515]70[515]72[515]75[515]77[515 514]80[515 515 515]84[515 515 515]88[515 515]96[515]98[515 515 515 514]104[515 515 515 515]109[515]112[515]115[515 515]118[515]120[515 515]] +[28[515]35[515]42[515 515]45[515]47[515]50[515 515]55[515 515 515]59[515]63[515 515]66[515]68[515]70[515]72[515]75[515 515 515 514]81[515 515]84[515 515 515]88[515 515]96[515]98[515 515 515 514]104[515 515 515 515]109[515]112[515]115[515 515]118[515]120[515 515]] endobj 31 0 obj <> stream -51Ѫ +51Ѫn endstream endobj 32 0 obj -<> +<> stream -GMOFIU+LMMono12-RegularH  !" \  P_ "* $ %%* GMOFIU+LMMono12-RegularAdobeIdentity2.004Copyright 2003, 2009 B. Jackowski and J. M. Nowacki (on behalf of TeX users groups). This work is released under the GUST Font License -- see http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt for details.LMMono12-RegularLMMono12Normal#*+-/23789;?@BDFHKMNPQRTUVXY`bcdehijkmpstvxy..k ^8rrp\ K -= -  U v 1  j <+x"W4x\q}qw}nRa*Fp|roonPQMwYzKgGDOɐ@j9tvbxzh\P` ql7#B]_OiI}qnnytpnJ+GGD@fB1n=v}{z&z.6++`/u%oyyb]a GK 4̎U\rt}TuZs6C辨b衞&_?T 7'  +LJVAWI+LMMono12-RegularH  !" \  P_ "L $ %%* LJVAWI+LMMono12-RegularAdobeIdentity2.004Copyright 2003, 2009 B. Jackowski and J. M. Nowacki (on behalf of TeX users groups). This work is released under the GUST Font License -- see http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt for details.LMMono12-RegularLMMono12Normal#*+-/23789;?@BDFHKLMNQRTUVXY`bcdehijkmpstvxy..k ^8rrp\ W + +_ + ( w S 7 ^M6 DW4x\q}qw}nRa*Fp|roonPQMwYzKgGDOɐ@j9tvbxzh\P` ql7#B]_OiI}qnnytpnJ+GGD@fB1n=v}{z&z.6++`/u%oyyb]a GK 4̎U\rt}TuZs6C辨b衞&_?T 7'  vj_fwnpjslweZz|x~zW|q}biI}qnn:{bN!/+)̶@a~&5S]9@CQ̺PW‹\lx|QrJx8I؀ I.')I<̽6YbXX,kAf%ۣ8 8=9QWt&keFS)4<URZ=UXus.0u~ˋҖ™ګV\=N\l00(+J+M@CCMI.wEp}3nz~x`jVV|vqzöA3}pnnr2Wql7#B]_쬋cI}qnnb}qnn'q}bjpnJ+GGD@fB1Mvw>@R}i#$ srAQJ]S=o.,.PKNMvwxCiAmtz51n'#(~~z̹ݥ]pnkrrkmqvPPwuql}"#kjl}##~kkj##~k#"W+̙8raYHRmS]تi&}qnn?}qnnq}"$ g}npU[3O^qwossc]w7u8iboxy~~Tfih.Kavrjxw${ueM  +q}&}pnn6.iN}pnn^}pnn&p}^ 2ksnnuXq}i'}qnn}qnnWtl3hi{fpu[^lnܫvym}qnnkunntlL߯h\zpnntlL߯h\zpnnpyr|'}pnnxy)8wvJ|rnnu}qnnp}uxqX)8iWTq}b]9G_exzаcI}qnnb}qnn'q}bI϶ŗjR{b}qnn';Ia5)6 +4à<(-soy}qq|xtYY VANRS<=Tާ4nqm\l00(+J+M@CCMI.wEp}3nz~x`jVV|vqzöA3}pnnr2Wql7#B]_쬋cI}qnnb}qnn'q}bjpnJ+GGD@fB1Mvw>@R}i#$ srAQJ]S=o.,.PKNMvwxCiAmtz51n'#(~~z̹ݥ]pnkrrkmqvPPwuql}"#kjl}##~kkj##~k#"W+̙8raYHRmS]تi&}qnn?}qnnq}"$ g}npU[3O^qwossc]w7u8iboxy~~Tfih.Kavrjxw${ueM  va] pnkrrkmqoiiupnxg\ptq~{~zvkq}tjuxgytWlJ~kXN ;IaU 4#XRx]`{|xvb2^E J4JOC0p庀LH<|ijjIyt[}qnn5q}[Zytw+3LjkuvORt=6q}6kjty96}pnn.iQ^Vvf6kAo3ȱǿ@=[AjЍϽg\nx8"ɉf{w~}nBUIQM3'^{svw~l4Kc̋4ckjvsS6->47alZ4=POU\pSnWThq}biI}qnnm9Gu^<iI}qnn/oȱ@gvh&p}}pnnp}}pnnizq}w"xp}-}pnn@.:.q},}qnn xx}qnnrw\\zpnnzq}h8+q}}qnn@$>q}}qnn +8i}pnntprsnnx -ddڇ(&p}}pnno9R;}R.p}}pnn q2|or\[P{tr|ztec`1dfkjuxiuxjjcytyjdN()KNKJ(L<C<JTl/ +ddڇ(&p}}pnno9R;}R.p}}pnn q2|or\[P{tr|ztec`1dfkjuxiuxjjcytyjdN()KNKJ(L<> +<> endobj 34 0 obj <> @@ -5666,8 +5667,8 @@ stream %!PS-Adobe-3.0 Resource-CMap %%DocumentNeededResources: ProcSet (CIDInit) %%IncludeResource: ProcSet (CIDInit) -%%BeginResource: CMap (TeX-GMOFIU-LMMono12-Regular-0) -%%Title: (TeX-GMOFIU-LMMono12-Regular-0 TeX GMOFIU-LMMono12-Regular 0) +%%BeginResource: CMap (TeX-LJVAWI-LMMono12-Regular-0) +%%Title: (TeX-LJVAWI-LMMono12-Regular-0 TeX LJVAWI-LMMono12-Regular 0) %%Version: 1.000 %%EndComments /CIDInit /ProcSet findresource begin @@ -5675,10 +5676,10 @@ stream begincmap /CIDSystemInfo << /Registry (TeX) -/Ordering (GMOFIU-LMMono12-Regular) +/Ordering (LJVAWI-LMMono12-Regular) /Supplement 0 >> def -/CMapName /TeX-Identity-GMOFIU-LMMono12-Regular def +/CMapName /TeX-Identity-LJVAWI-LMMono12-Regular def /CMapType 2 def 1 begincodespacerange <0000> @@ -5706,9 +5707,9 @@ endbfrange <0046> <006B> <0048> <006C> <004B> <006D> +<004C> <004E> <004D> <006E> <004E> <0039> -<0050> <004F> <0051> <006F> <0052> <0031> <0054> <0070> @@ -5740,10 +5741,10 @@ end endstream endobj 18 0 obj -<> +<> endobj 35 0 obj -<>>> +<>>> endobj 19 0 obj <> @@ -5756,7 +5757,7 @@ endobj endobj 38 0 obj << -/CreationDate (D:20111028223719+02'00') /Creator /Producer (LuaTeX-0.71.0) /ID (s-inf-01.2011-10-28T22:37:19+02:00) /Trapped /False /ModDate (D:20111028223719+02'00') /Title +/CreationDate (D:20111102201529+01'00') /Creator /Producer (LuaTeX-0.71.0) /ID (s-inf-01.2011-11-02T20:15:29+01:00) /Trapped /False /ModDate (D:20111102201529+01'00') /Title /PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>> endobj xref @@ -5776,32 +5777,32 @@ xref 0000000013 00000 f 0000000014 00000 f 0000000000 00000 f -0000026988 00000 n -0000026786 00000 n +0000026951 00000 n +0000026749 00000 n 0000000015 00000 n -0000113952 00000 n -0000114275 00000 n -0000056993 00000 n -0000056791 00000 n -0000027048 00000 n -0000080435 00000 n -0000080234 00000 n -0000057053 00000 n -0000104174 00000 n -0000103973 00000 n -0000080495 00000 n -0000104234 00000 n -0000106456 00000 n -0000106739 00000 n -0000106812 00000 n -0000112382 00000 n -0000112599 00000 n -0000114091 00000 n -0000114349 00000 n -0000114370 00000 n -0000114522 00000 n +0000113962 00000 n +0000114285 00000 n +0000056966 00000 n +0000056764 00000 n +0000027011 00000 n +0000080407 00000 n +0000080206 00000 n +0000057026 00000 n +0000104153 00000 n +0000103952 00000 n +0000080467 00000 n +0000104213 00000 n +0000106435 00000 n +0000106715 00000 n +0000106788 00000 n +0000112392 00000 n +0000112609 00000 n +0000114101 00000 n +0000114359 00000 n +0000114380 00000 n +0000114532 00000 n trailer -< <0EF28420C97B3B84A0D8F7E76C44448A>]>> +< ]>> startxref -114983 +114993 %%EOF diff --git a/tex/context/base/status-lua.pdf b/tex/context/base/status-lua.pdf index a69706c6d..ae0e79591 100644 --- a/tex/context/base/status-lua.pdf +++ b/tex/context/base/status-lua.pdf @@ -2689,7 +2689,7 @@ endobj endobj 403 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -2716,33 +2716,35 @@ BT 1 0 0 1 46.0537 551.079 Tm [<002E>-525<004D006D004B0023003200600062>]TJ 1 0 0 1 46.0537 536.6515 Tm [<0036>-525<00600032003B00420062006900320060>]TJ 1 0 0 1 46.0537 522.224 Tm [<0036>-525<006200320069>]TJ -1 0 0 1 36.091 507.7966 Tm [<0068>-525<006200510048006D006900420051004D0062>]TJ -1 0 0 1 46.0537 493.3691 Tm [<0068>-525<006200540048004200690069003200600062>]TJ -1 0 0 1 56.0163 478.9416 Tm [<0036>-525<002F003200370042004D0032>]TJ -1 0 0 1 56.0163 464.5141 Tm [<0036>-525<002F00420062001C002300480032>]TJ -1 0 0 1 348.4473 767.4915 Tm [<0036>-525<0032004D001C002300480032>]TJ -1 0 0 1 348.4473 753.064 Tm [<0036>-525<0051005400690042004B004200780032>]TJ -1 0 0 1 348.4473 738.6365 Tm [<0036>-525<006200320069006D0054>]TJ -1 0 0 1 348.4473 724.209 Tm [<0036>-525<00620054004800420069>]TJ -1 0 0 1 328.522 709.7815 Tm [<0036>-525<0069001C003B>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 695.354 Tm [<007000620054001C002B0042004D003B>]TJ -/F1 11.955168 Tf 1 0 0 1 381.324 695.354 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 680.9265 Tm [<0036>-525<001C004D001C0048007600780032>]TJ -1 0 0 1 328.522 666.499 Tm [<002E>-525<002B001C00690032003B00510060004200320062>]TJ -1 0 0 1 328.522 652.0715 Tm [<0036>-525<002B005100480048001C0054006200320070002300510074>]TJ -1 0 0 1 328.522 637.644 Tm [<0068>-525<002F001C0069001C>]TJ -1 0 0 1 338.4846 623.2165 Tm [<002E>-525<004B001C0054>]TJ -1 0 0 1 338.4846 608.789 Tm [<002E>-525<0062004600420054>]TJ -1 0 0 1 338.4846 594.3615 Tm [<002E>-525<0062004D001C0054004B00320069003F0051002F0062>]TJ -1 0 0 1 328.522 579.934 Tm [<0036>-525<002F003200370042004D00320062004D001C0054004B00320069003F0051002F>]TJ -1 0 0 1 328.522 565.5065 Tm [<0022>-525<0037004200740032002F>]TJ -1 0 0 1 328.522 551.079 Tm [<0036>-525<0054001C003B0032003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 536.6515 Tm [<0036>-525<006200320069004B001C0054>]TJ -1 0 0 1 328.522 522.224 Tm [<0036>-525<0062003200690062004600420054>]TJ -1 0 0 1 328.522 507.7966 Tm [<0036>-525<0062004D001C0054002300510074>]TJ -1 0 0 1 328.522 493.3691 Tm [<0036>-525<00690051002B001C00690032003B00510060004200320062>]TJ -1 0 0 1 328.522 478.9416 Tm [<0036>-525<00690051002B001C00690032003B005100600076>]TJ -1 0 0 1 328.522 464.5141 Tm [<0036>-525<0070002300510074003F001C004D002F004800320060>]TJ +1 0 0 1 36.091 507.7966 Tm [<0036>-525<004600320032005400690051003B00320069003F00320060>]TJ +1 0 0 1 36.091 493.3691 Tm [<0036>-525<00600032003B0042006200690032006000690051003B00320069003F00320060>]TJ +1 0 0 1 36.091 478.9416 Tm [<0068>-525<006200510048006D006900420051004D0062>]TJ +1 0 0 1 46.0537 464.5141 Tm [<0068>-525<006200540048004200690069003200600062>]TJ +1 0 0 1 56.0163 450.0866 Tm [<0036>-525<002F003200370042004D0032>]TJ +1 0 0 1 348.4473 767.4915 Tm [<0036>-525<002F00420062001C002300480032>]TJ +1 0 0 1 348.4473 753.064 Tm [<0036>-525<0032004D001C002300480032>]TJ +1 0 0 1 348.4473 738.6365 Tm [<0036>-525<0051005400690042004B004200780032>]TJ +1 0 0 1 348.4473 724.209 Tm [<0036>-525<006200320069006D0054>]TJ +1 0 0 1 348.4473 709.7815 Tm [<0036>-525<00620054004800420069>]TJ +1 0 0 1 328.522 695.354 Tm [<0036>-525<0069001C003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 680.9265 Tm [<007000620054001C002B0042004D003B>]TJ +/F1 11.955168 Tf 1 0 0 1 381.324 680.9265 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 666.499 Tm [<0036>-525<001C004D001C0048007600780032>]TJ +1 0 0 1 328.522 652.0715 Tm [<002E>-525<002B001C00690032003B00510060004200320062>]TJ +1 0 0 1 328.522 637.644 Tm [<0036>-525<002B005100480048001C0054006200320070002300510074>]TJ +1 0 0 1 328.522 623.2165 Tm [<0068>-525<002F001C0069001C>]TJ +1 0 0 1 338.4846 608.789 Tm [<002E>-525<004B001C0054>]TJ +1 0 0 1 338.4846 594.3615 Tm [<002E>-525<0062004600420054>]TJ +1 0 0 1 338.4846 579.934 Tm [<002E>-525<0062004D001C0054004B00320069003F0051002F0062>]TJ +1 0 0 1 328.522 565.5065 Tm [<0036>-525<002F003200370042004D00320062004D001C0054004B00320069003F0051002F>]TJ +1 0 0 1 328.522 551.079 Tm [<0022>-525<0037004200740032002F>]TJ +1 0 0 1 328.522 536.6515 Tm [<0036>-525<0054001C003B0032003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 522.224 Tm [<0036>-525<006200320069004B001C0054>]TJ +1 0 0 1 328.522 507.7966 Tm [<0036>-525<0062003200690062004600420054>]TJ +1 0 0 1 328.522 493.3691 Tm [<0036>-525<0062004D001C0054002300510074>]TJ +1 0 0 1 328.522 478.9416 Tm [<0036>-525<00690051002B001C00690032003B00510060004200320062>]TJ +1 0 0 1 328.522 464.5141 Tm [<0036>-525<00690051002B001C00690032003B005100600076>]TJ +1 0 0 1 328.522 450.0866 Tm [<0036>-525<0070002300510074003F001C004D002F004800320060>]TJ ET endstream endobj @@ -3481,7 +3483,7 @@ endobj endobj 475 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -3627,76 +3629,76 @@ BT /F1 11.955168 Tf 1 0 0 1 500.5769 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ /F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<003B003200690054006000420070001C00690032001C00690069006000420023006D00690032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 599.349 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<003B003200690060001C004D002F0051004B002B0051006D004D0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<003B003200690054006000420070001C00690032002B003F001C0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 584.9215 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<003B003200690060001C004D002F0051004B002B0051006D004D00690023>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<003B003200690060001C004D002F0051004B002B0051006D004D0069001C>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<003B003200690060001C004D002F0051004B006200320032002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<003B003200690060001C004D002F0051004B002B0051006D004D00690023>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<003B0032006900600032001C002F0037004200480032004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<003B003200690060001C004D002F0051004B006200320032002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 541.639 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<003B003200690069007200510054001C00620062002F001C0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<003B0032006900600032001C002F0037004200480032004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 527.2115 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<003B003200690069007200510054001C00620062002F001C0069001C0048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<003B003200690069007200510054001C00620062002F001C0069001C>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 512.784 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<003B0060001C00230023006D0037003700320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<003B003200690069007200510054001C00620062002F001C0069001C0048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 498.3565 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<003F003200480054001C002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<003B0060001C00230023006D0037003700320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 483.929 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<003F003200480054006000320037003200600032004D002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<003F003200480054001C002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 469.5015 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<003F003200740062006900600042004D003B00690051004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<003F003200480054006000320037003200600032004D002B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<003F0051006D0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<003F003200740062006900600042004D003B00690051004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<003F00760054003F0032004D001C00690032002F0048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<003F0051006D0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 426.219 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<003F00760054003F0032004D001C00690032002F006D00600048>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<003F00760054003F0032004D001C00690032002F0048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 411.7915 Tm [<0037006D004D002B006900420051004D>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 397.364 Tm [<002E>-525<002B003F001C0060001C002B0069003200600062>]TJ -1 0 0 1 328.522 382.9365 Tm [<004C>-525<0048003200370069003F00760054003F0032004D004B0042004D>]TJ -1 0 0 1 328.522 368.509 Tm [<002E>-525<004B001C005400540042004D003B>]TJ -1 0 0 1 328.522 354.0815 Tm [<004C>-525<00600042003B003F0069003F00760054003F0032004D004B0042004D>]TJ -1 0 0 1 328.522 339.654 Tm [<0036>-525<006200320069002B003F001C0060001C002B0069003200600062>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<0042004D002B00600032004B0032004D00690032002F006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ -/F1 11.955168 Tf 1 0 0 1 500.5769 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<0042004D0062003200600069001C00690069001C002B003F004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<003F00760054003F0032004D001C00690032002F006D00600048>]TJ +/F1 11.955168 Tf 1 0 0 1 500.5769 397.364 Tm [<0037006D004D002B006900420051004D>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 382.9365 Tm [<002E>-525<002B003F001C0060001C002B0069003200600062>]TJ +1 0 0 1 328.522 368.509 Tm [<004C>-525<0048003200370069003F00760054003F0032004D004B0042004D>]TJ +1 0 0 1 328.522 354.0815 Tm [<002E>-525<004B001C005400540042004D003B>]TJ +1 0 0 1 328.522 339.654 Tm [<004C>-525<00600042003B003F0069003F00760054003F0032004D004B0042004D>]TJ +1 0 0 1 328.522 325.2266 Tm [<0036>-525<006200320069002B003F001C0060001C002B0069003200600062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<0042004D002B00600032004B0032004D00690032002F006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 310.7991 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0042004D0062003200600069002B0051004B004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0042004D0062003200600069001C00690069001C002B003F004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 296.3716 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0042004D00620032006000690037004200320048002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0042004D0062003200600069002B0051004B004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<0042004D006200320060006900600032004D002F003200600042004D003B00720042004D002F00510072>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<0042004D00620032006000690037004200320048002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<0042004D006200320060006900620051006D004D002F002B004800420054>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<0042004D006200320060006900600032004D002F003200600042004D003B00720042004D002F00510072>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<0042006200480032001C005400760032001C0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<0042004D006200320060006900620051006D004D002F002B004800420054>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<0048001C004D003B006D001C003B0032004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<0042006200480032001C005400760032001C0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<0048001C00620069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<0048001C004D003B006D001C003B0032004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<0048002B003F00320074004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<0048001C00620069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<0048002B003F00320074004D006D004B0023003200600062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<0048002B003F00320074004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<00480032001C005400760032001C0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<0048002B003F00320074004D006D004B0023003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 166.5241 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<00480051001C002F002B0069007400540060003200540048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<00480032001C005400760032001C0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 152.0966 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<00480051001C002F00320074001C004B0051002F00320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<00480051001C002F002B0069007400540060003200540048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 137.6691 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<00480051001C002F00370051004D0069003B00510051002F004200320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<00480051001C002F00320074001C004B0051002F00320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 123.2416 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<00480051001C002F007000420062006D001C00480042007800320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<00480051001C002F00370051004D0069003B00510051002F004200320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00480051002B001C0069003200370042004800320054001C0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00480051001C002F007000420062006D001C00480042007800320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<00480051002B0037004200480032004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<00480051002B001C0069003200370042004800320054001C0069003F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<004B001C0074004200690032004B00720042002F0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<00480051002B0037004200480032004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 65.5316 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<004B0042004D006D00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<004B001C0074004200690032004B00720042002F0069003F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ ET endstream @@ -3723,227 +3725,227 @@ endobj endobj 482 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT /F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0079>-1000<004D003200740069>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<004B005100480032002B006D00480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<004B0042004D006D00690032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 815.7614 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<004B0051004D0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<004B005100480032002B006D00480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<004B0051004D0069003F004B004D0032004B>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<004B0051004D0069003F>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 786.9064 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<004B0051004D0069003F004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<004B0051004D0069003F004B004D0032004B>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 772.4789 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<004B0054002B0051004800510060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<004B0051004D0069003F004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 758.0514 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<004B005400510054006900420051004D0062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<004B0054002B0051004800510060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 743.6239 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<004D001C004B0032002F006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<004B005400510054006900420051004D0062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<004D001C004B0032002F006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<004D001C004B0032002F006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 714.7689 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<004D002300370062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<004D001C004B0032002F006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<004D0032007400690054001C0060001C0048004800320048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<004D002300370062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<004D003200740069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<004D0032007400690054001C0060001C0048004800320048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 671.4864 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<004D00510037002F001C00760062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<004D003200740069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 657.0589 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<004D00510037004200690032004B0062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<004D00510037002F001C00760062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 642.6314 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<004D0051003700620069001C002B00460032002F003700480051001C00690062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<004D00510037004200690032004B0062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 628.2039 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<004D0051003700620069001C002B00460032002F003700480051001C00690062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<0051002B0069004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 599.349 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<0051002B00690062006900600042004D003B00690051004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<0051002B0069004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 584.9215 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<00510060002F0042004D001C0048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<0051002B00690062006900600042004D003B00690051004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<005100700032006000480051001C002F0023005100510046004B001C00600046>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<00510060002F0042004D001C0048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<0054002F0037006000510069001C006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<005100700032006000480051001C002F0023005100510046004B001C00600046>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 541.639 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<005400320060002B0032004D0069001C003B003200510037>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<0054002F0037006000510069001C006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 527.2115 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<00540048001C002B00320054001C0060001C0048004800320048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<005400320060002B0032004D0069001C003B003200510037>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 512.784 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<005400510054003700480051001C0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<00540048001C002B00320054001C0060001C0048004800320048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 498.3565 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<00540051005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<005400510054003700480051001C0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 483.929 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<0054006000320054001C00600032004A00530070001C00600042001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<00540051005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 469.5015 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<0054006000320054001C00600032002300420023006900320074006200320062006200420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<0054006000320054001C00600032004A00530070001C00600042001C002300480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0054006000320054001C00600032002F0037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0054006000320054001C00600032002300420023006900320074006200320062006200420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<0054006000320054001C0060003200370051004D0069002B0051004800480032002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<0054006000320054001C00600032002F0037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 426.219 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<00540060003200620032006900620076004B0023005100480048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<0054006000320054001C0060003200370051004D0069002B0051004800480032002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 411.7915 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<0054006000320062003200690069001C0023006D0048001C00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<00540060003200620032006900620076004B0023005100480048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 397.364 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<0054006000320070006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<0054006000320062003200690069001C0023006D0048001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 382.9365 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<005400600051002B0032006200620023006D0037003700320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<0054006000320070006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 368.509 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<005400600051002B0032006200620032002F0037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<005400600051002B0032006200620023006D0037003700320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 354.0815 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<005400600051002B0032006200620032002F00370042004800320062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<005400600051002B0032006200620032002F0037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 339.654 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<005400600051002B0032006200620037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<005400600051002B0032006200620032002F00370042004800320062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<005400600051002B0032006200620037004200480032004B001C004D0076>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<005400600051002B0032006200620037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 310.7991 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<005400600051002B0032006200620037004200480032004D0051004D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<005400600051002B0032006200620037004200480032004B001C004D0076>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 296.3716 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<005400600051002B00320062006200370042004800320051004D002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<005400600051002B0032006200620037004200480032004D0051004D0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<0054006D0062003F003700480051001C0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<005400600051002B00320062006200370042004800320051004D002B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<0054006D0062003F00420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<0054006D0062003F003700480051001C0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<0060001C0072002B003F001C0060001C002B006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<0054006D0062003F00420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<006000320037003200600032004D002B00320054001C003B003200620069001C00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<0060001C0072002B003F001C0060001C002B006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<006000320037003200600032004D002B003200600032001C00480054001C003B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<0060001C0072002F001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<00600032003B00420062006900320060001C00690069001C002B003F004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<006000320037003200600032004D002B00320054001C003B003200620069001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<00600032003B004200620069003200600023004200230069003200740032004D006900600076>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<006000320037003200600032004D002B003200600032001C00480054001C003B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<00600032003B004200620069003200600023004200230069003200740037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<00600032003B00420062006900320060001C00690069001C002B003F004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 166.5241 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<00600032003B004200620069003200600023005100510046004B001C00600046>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<00600032003B004200620069003200600023004200230069003200740032004D006900600076>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 152.0966 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<00600032003B004200620069003200600023006D006900690051004D0062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<00600032003B004200620069003200600023004200230069003200740037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 137.6691 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<00600032003B00420062006900320060002B0051004800510060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<00600032003B004200620069003200600023005100510046004B001C00600046>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 123.2416 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<00600032003B00420062006900320060002B00510048005100600042004D00690032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<00600032003B004200620069003200600023006D006900690051004D0062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<00600032003B00420062006900320060003F003200480054>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<00600032003B00420062006900320060002B0051004800510060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<00600032003B00420062006900320060004200690032004B003B00600051006D0054>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<00600032003B00420062006900320060002B00510048005100600042004D00690032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<00600032003B00420062006900320060004B001C0042004D0069003200740069002B0051004800510060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<00600032003B00420062006900320060003F003200480054>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 65.5316 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<00600032003B00420062006900320060005400510062006900540051004D0032002F002300480051002B0046>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<00600032003B00420062006900320060004200690032004B003B00600051006D0054>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<00600032003B0042006200690032006000620051006D004D002F002B004800420054>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<00600032003B00420062006900320060004B001C0042004D0069003200740069002B0051004800510060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 815.7614 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<00600032003B00420062006900320060006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<00600032003B00420062006900320060005400510062006900540051004D0032002F002300480051002B0046>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<00600032003B0042006200690032006000690060001C004D00620054001C00600032004D002B0076>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<00600032003B0042006200690032006000620051006D004D002F002B004800420054>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 786.9064 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<006000320048001C00690032004B001C006000460042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<00600032003B00420062006900320060006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 772.4789 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<00600032004B005100700032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<00600032003B0042006200690032006000690060001C004D00620054001C00600032004D002B0076>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 758.0514 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<0060003200540048001C002B00320054005100620054007400760072003F002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<006000320048001C00690032004B001C006000460042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 743.6239 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<006000320062001C00700032003700480051001C0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<00600032004B005100700032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0060003200620032006900370051004D0069002B0051004800480032002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0060003200540048001C002B0032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 714.7689 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0060003200620032006900370051004D006900370032001C0069006D00600032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0060003200540048001C002B00320054005100620054007400760072003F002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<00600032006200320069004B001C006000460042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<006000320062001C00700032003700480051001C0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<00600032006200320069004B001C0069003F00420069001C00480042002B0062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<0060003200620032006900370051004D0069002B0051004800480032002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 671.4864 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<00600032006200320069004D006D0048004800370051004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<0060003200620032006900370051004D006900370032001C0069006D00600032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 657.0589 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<006000320062003200690054001C0060001C0048004800320048>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<00600032006200320069004B001C006000460042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 642.6314 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00600032006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00600032006200320069004B001C0069003F00420069001C00480042002B0062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 628.2039 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<00600032006200320069006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<00600032006200320069004D006D0048004800370051004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<0060003200620032006900690042004B00320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<006000320062003200690054001C0060001C0048004800320048>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 599.349 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<0060003200620069001C00600069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<00600032006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 584.9215 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<0060003200620069005100600032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<00600032006200320069006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<0060003200620069005100600032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<0060003200620032006900690042004B00320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<00600051004B001C004D004D006D004B00320060001C00480062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<0060003200620069001C00600069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 541.639 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<0060006D004D0023006D0037003700320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<0060003200620069005100600032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 527.2115 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<0062001C007000320023006D0037003700320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<0060003200620069005100600032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 512.784 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<0062001C00700032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<00600051004B001C004D004D006D004B00320060001C00480062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 498.3565 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<0062001C00700032003700480051001C0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<0060006D004D0023006D0037003700320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 483.929 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<0062001C007000320054001C0060001C0048004800320048>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<0062001C007000320023006D0037003700320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 469.5015 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<0062001C00700032006200690060006D002B0069006D00600032002300480051002B0046>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<0062001C00700032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<0062001C00700032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<0062001C00700032003700480051001C0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<0062001C007000320069001C003B003B0032002F0069007200510054001C00620062002F001C0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<0062001C007000320054001C0060001C0048004800320048>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 426.219 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<0062001C007000320069007200510054001C00620062002F001C0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<0062001C00700032006200690060006D002B0069006D00600032002300480051002B0046>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 411.7915 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<00620032002B0051004D002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<0062001C00700032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 397.364 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<0062003200480032002B0069006200690060006D002B0069006D00600032002300480051002B0046>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<0062001C007000320069001C003B003B0032002F0069007200510054001C00620062002F001C0069001C>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 382.9365 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 368.509 Tm [<006200320069002B0048005100620032002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 368.509 Tm [<0062001C007000320069007200510054001C00620062002F001C0069001C>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 368.509 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 354.0815 Tm [<006200320069002B00480051006200320054001C003B0032001C002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 354.0815 Tm [<00620032002B0051004D002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 354.0815 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<006200320069002B0051004800510060004B0051002F00320048>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<0062003200480032002B0069006200690060006D002B0069006D00600032002300480051002B0046>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 339.654 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<00620032006900370051004D006900370032001C0069006D00600032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<006200320069002B0048005100620032002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<00620032006900370051004D0069005100370042002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<006200320069002B00480051006200320054001C003B0032001C002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 310.7991 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<006200320069003700510060004B001C0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<006200320069002B0051004800510060004B0051002F00320048>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 296.3716 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<006200320069003700510060004B0062004B00320069003F0051002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<00620032006900370051004D006900370032001C0069006D00600032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<006200320069004B001C006000460042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<00620032006900370051004D0069005100370042002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<006200320069004B001C0069003F001C00480054003F001C002300320069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<006200320069003700510060004B001C0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<006200320069004B001C0069003F001C0048006900320060004D001C00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<006200320069003700510060004B0062004B00320069003F0051002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<006200320069004B001C0069003F001C00690069006000420023006D00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<006200320069004B001C006000460042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<006200320069004B001C0069003F00420069001C00480042002B0062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<006200320069004B001C0069003F001C00480054003F001C002300320069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<006200320069004B001C0069003F00620069007600480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<006200320069004B001C0069003F001C0048006900320060004D001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<006200320069005100540032004D002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<006200320069004B001C0069003F001C00690069006000420023006D00690032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<006200320069005100540032004D0054001C003B0032001C002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<006200320069004B001C0069003F00420069001C00480042002B0062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 166.5241 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<00620032006900510072004D006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<006200320069004B001C0069003F00620069007600480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 152.0966 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<0062003200690054001C003B003200690060001C004D00620042006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<006200320069005100540032004D002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 137.6691 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<0062003200690060001C004D002F0051004B006200320032002F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<006200320069005100540032004D0054001C003B0032001C002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 123.2416 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<0062003200690060001C0062006900320060002B0051004800510060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<00620032006900510072004D006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00620032006900600032001C00480042003B004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<0062003200690054001C003B003200690060001C004D00620042006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<006200320069006000320037003200600032004D002B0032001C0060003B006D004B0032004D00690062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<0062003200690060001C004D002F0051004B006200320032002F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<006200320069006000320037003200600032004D002B00320051005400320060001C006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<0062003200690060001C0062006900320060002B0051004800510060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 65.5316 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<006200320069006200690060006D002B0069006D00600032002300480051002B004600620069001C00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<00620032006900600032001C00480042003B004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ ET endstream @@ -3970,216 +3972,222 @@ endobj endobj 490 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT /F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0052>-1000<004D003200740069>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<006200320069006000320037003200600032004D002B0032001C0060003B006D004B0032004D00690062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 815.7614 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<0062003200690069001C003B002B0051004B00230042004D001C006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<006200320069006000320037003200600032004D002B00320051005400320060001C006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<006200320069006200690060006D002B0069006D00600032002300480051002B004600620069001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 786.9064 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D00620076004B002300510048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 772.4789 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<0062003200690069001C003B00370042003B006D00600032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<0062003200690069001C003B002B0051004B00230042004D001C006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 758.0514 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<0062003200690069001C003B003F0042003B003F00480042003B003F0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 743.6239 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<0062003200690069001C003B004200690032004B003B00600051006D0054>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D00620076004B002300510048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<0062003200690069001C003B00540060005100540032006000690076>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<0062003200690069001C003B00370042003B006D00600032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 714.7689 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<0062003200690069001C003B00620051006000690042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<0062003200690069001C003B003F0042003B003F00480042003B003F0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<0062003200690069001C003B00620076004D0051004D0076004B>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<0062003200690069001C003B004200690032004B003B00600051006D0054>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<0062003200690069001C003B0069001C002300480032002B003200480048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<0062003200690069001C003B00540060005100540032006000690076>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 671.4864 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<0062003200690069001C003B0069001C0023006D0048001C00690032002B003200480048>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<0062003200690069001C003B00620051006000690042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 657.0589 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<006200320069006D00540023005100510046004B001C006000460062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<0062003200690069001C003B00620076004D0051004D0076004B>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 642.6314 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<006200320069006D0054002B001C004D0070001C0062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<0062003200690069001C003B0069001C002300480032002B003200480048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 628.2039 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<006200320069006D0054003200740054005100600069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<0062003200690069001C003B0069001C0023006D0048001C00690032002B003200480048>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<006200320069006D005400370051004D0069003200740054001C004D006200420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<006200320069006D00540023005100510046004B001C006000460062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 599.349 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<006200320069006D005400370051004D006900540060005100690060006D006200420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<006200320069006D0054002B001C004D0070001C0062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 584.9215 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<006200320069006D00540042002F0032004D0069004200690076>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<006200320069006D0054003200740054005100600069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<006200320069006D005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<006200320069006D005400370051004D0069003200740054001C004D006200420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<0062003200690074004B00540037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<006200320069006D005400370051004D006900540060005100690060006D006200420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 541.639 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<0062003F00510072002B003F001C0060002F001C0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<006200320069006D00540042002F0032004D0069004200690076>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 527.2115 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<0062003F0051007200370051004D00690054001C0060001C004B00320069003200600062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<006200320069006D005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 512.784 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<0062003F00510072003F00760054003F0032004D001C00690032002F0042004D0048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<0062003200690074004B00540037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 498.3565 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<0062003F00510072006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<0062003F00510072002B003F001C0060002F001C0069001C>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 483.929 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<006200540048004200690037004200480032004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<0062003F0051007200370051004D00690054001C0060001C004B00320069003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 469.5015 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<0062005400510069002B0051004800510060004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<0062003F00510072003F00760054003F0032004D001C00690032002F0042004D0048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0062005400510069002B00510048005100600054001C00600032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0062003F00510072006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<0062005400510069002B00510048005100600070001C0048006D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<006200540048004200690037004200480032004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 426.219 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<00620069001C00600069002B0051004B00540051004D0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<0062005400510069002B0051004800510060004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 411.7915 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<00620069001C006000690032004D0070004200600051004D004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<0062005400510069002B00510048005100600054001C00600032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 397.364 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<00620069001C00600069005400600051002F006D002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<0062005400510069002B00510048005100600070001C0048006D0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 382.9365 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<00620069001C0060006900540060005100440032002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<00620069001C00600069002B0051004B00540051004D0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 368.509 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<00620069001C0060006900600032003B0042004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<00620069001C006000690032004D0070004200600051004D004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 354.0815 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<00620069001C006000690069001C003B>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<00620069001C00600069005400600051002F006D002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 339.654 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<00620069001C006000690069003200740069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<00620069001C0060006900540060005100440032002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<0062006900510054002B0051004B00540051004D0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<00620069001C0060006900600032003B0042004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 310.7991 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<00620069005100540032004D0070004200600051004D004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<00620069001C006000690069001C003B>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 296.3716 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<0062006900510054005400600051002F006D002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<00620069001C006000690069003200740069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<006200690051005400540060005100440032002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<0062006900510054002B0051004B00540051004D0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<006200690051005400600032003B0042004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<00620069005100540032004D0070004200600051004D004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<00620069005100540069001C003B>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<0062006900510054005400600051002F006D002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<00620069005100540069003200740069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<006200690051005400540060005100440032002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<006200690060006D002B0069006D00600032001C006D00690051002B001C0069002B0051002F0032002F003B00320069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<006200690051005400600032003B0042004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<006200690060006D002B0069006D00600032002B001C0069002B0051002F0032002F003B00320069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<00620069005100540069001C003B>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600062006D00230062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<00620069005100540069003200740069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600070001C0048006D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<006200690060006D002B0069006D00600032001C006D00690051002B001C0069002B0051002F0032002F003B00320069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 166.5241 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<006200690060006D002B0069006D00600032003B004200700032004D002B001C0069002B0051002F0032002F003B00320069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<006200690060006D002B0069006D00600032002B001C0069002B0051002F0032002F003B00320069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 152.0966 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<006200690060006D002B0069006D00600032004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600062006D00230062>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 137.6691 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<006200690060006D002B0069006D0060003200690042006900480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600070001C0048006D0032>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 123.2416 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<006200690060006D002B0069006D00600032003B004200700032004D002B001C0069002B0051002F0032002F003B00320069>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<006200690060006D002B0069006D00600032004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 208.1459 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<0062006D002300370037>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<006200690060006D002B0069006D0060003200690042006900480032>]TJ +/F1 11.955168 Tf 1 0 0 1 208.1459 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]TJ +/F1 11.955168 Tf 1 0 0 1 208.1459 65.5316 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 815.7614 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<0062006D002300370062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<0062006D002300370037>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<00620076004D002B003F00600051004D004200780032004B001C006000460042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<0062006D002300370062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 786.9064 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<0069001C003B003B0032002F004B001C0069003F0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<00620076004D002B003F00600051004D004200780032004B001C006000460042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 772.4789 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<0069003200620069002B001C00620032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<0069001C003B003B0032002F004B001C0069003F0037006D004D002B006900420051004D>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 758.0514 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<00690032007400690042004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<0069003200620069002B001C00620032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 743.6239 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<00690060001C004D00620054001C00600032004D002B0076002B0051004B00540051004D0032004D00690062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<00690032007400690042004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<006900600042003B003B003200600032003700370032002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<00690060001C004D00620054001C00600032004D002B0076002B0051004B00540051004D0032004D00690062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 714.7689 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<006900600042003B003B00320060004D0032003B001C0069004200700032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<006900600042003B003B003200600032003700370032002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<00690060006D00320037004200480032004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<006900600042003B003B00320060004D0032003B001C0069004200700032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<00690076005400320023006D0037003700320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<00690060006D00320037004200480032004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 671.4864 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<00690076005400320037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<00690076005400320023006D0037003700320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 657.0589 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<00690076005400320062006900600042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<00690076005400320037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 642.6314 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<006D002B003F00320074004D006D004B002300320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00690076005400320062006900600042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 628.2039 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<006D002B003F00320074004D006D004B0023003200600062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<006D002B003F00320074004D006D004B002300320060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<006D004D0042002B0051002F0032002B003F001C0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<006D002B003F00320074004D006D004B0023003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 599.349 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<006D004D00420069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<006D004D0042002B0051002F0032002B003F001C0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 584.9215 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<006D0054002F001C006900320037004200480032004D001C004B00320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<006D004D00420069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<006D00620032004A00530048004200230060001C00600076>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<006D0054002F001C006900320037004200480032004D001C004B00320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<006D00620032001C004D00760037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<006D00620032004A00530048004200230060001C00600076>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 541.639 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<006D00620032002B0048002F0037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<006D00620032001C004D00760037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 527.2115 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<006D00620032002B00510048005100600062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<006D00620032002B0048002F0037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 512.784 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<006D00620032002B0051004B00540051004D0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<006D00620032002B00510048005100600062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 498.3565 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<006D006200320032004D0070004200600051004D004B0032004D0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<006D00620032002B0051004B00540051004D0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 483.929 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<006D006200320048004200230060001C00600076>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<006D006200320032004D0070004200600051004D004B0032004D0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 469.5015 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<006D006200320048006D001C0037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<006D006200320048004200230060001C00600076>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<006D00620032004B0051002F006D004800320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<006D006200320048006D001C0037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<006D006200320054001C0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<006D00620032004B0051002F006D004800320062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 426.219 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<006D00620032005400600051002F006D002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<006D006200320054001C0069003F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 411.7915 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<006D0062003200540060005100440032002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<006D00620032005400600051002F006D002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 397.364 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<006D006200320062006D00230054001C0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<006D0062003200540060005100440032002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 382.9365 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 368.509 Tm [<006D0062003200620076004B0023005100480062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 368.509 Tm [<006D006200320062006D00230054001C0069003F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 368.509 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 354.0815 Tm [<006D006200320069003200740037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 354.0815 Tm [<006D0062003200620076004B0023005100480062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 354.0815 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<006D006200320074004B00480037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<006D006200320069003200740037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 339.654 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<006D006200320078004200540037004200480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<006D006200320074004B00480037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<006D00690037002B003F001C0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<006D006200320078004200540037004200480032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 310.7991 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0072003200320046002F001C0076>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<006D00690037002B003F001C0060>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 296.3716 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0072003200320046002F001C0076004D001C004B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0072003200320046002F001C0076>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<00720042002F0069003F005100370062006900600042004D003B>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<0072003200320046002F001C0076004D001C004B0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<0072006000420069003200620069001C0069006D0062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<00720042002F0069003F005100370062006900600042004D003B>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<0074006E0069001C002300480032006E002B00480032001C004D006D0054>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<0072006000420069003200620069001C0069006D0062>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<0074006E0069001C002300480032006E002B0051004D006200690060006D002B0069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<0074006E0069001C002300480032006E002B00480032001C004D006D0054>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<0074006E0069001C002300480032006E002B00600032001C00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<0074006E0069001C002300480032006E002B0051004D006200690060006D002B0069>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<0074006E0069001C002300480032006E00370048006D0062003F>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<0074006E0069001C002300480032006E002B00600032001C00690032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<0074006E0069001C002300480032006E0042004D00420069006E0051004D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<0074006E0069001C002300480032006E00370048006D0062003F>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<0074006E0069001C002300480032006E0042004D00420069006E006900720051>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<0074006E0069001C002300480032006E0042004D00420069006E0051004D0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 166.5241 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<0074006E0069001C002300480032006E004D003200740069006E006000510072>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<0074006E0069001C002300480032006E0042004D00420069006E006900720051>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 152.0966 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<0074006E0069001C002300480032006E006000320037004800510072>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<0074006E0069001C002300480032006E004D003200740069006E006000510072>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 137.6691 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<0074006E0069001C002300480032006E006200320069006E0051004D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<0074006E0069001C002300480032006E006000320037004800510072>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 123.2416 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<0074006E0069001C002300480032006E006200320069006E006900720051>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<0074006E0069001C002300480032006E006200320069006E0051004D0032>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00760032001C0060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<0074006E0069001C002300480032006E006200320069006E006900720051>]TJ /F1 11.955168 Tf 1 0 0 1 500.5769 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<00760032001C0060>]TJ +/F1 11.955168 Tf 1 0 0 1 500.5769 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ ET endstream endobj @@ -5338,7 +5346,7 @@ endobj endobj 633 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -5443,13 +5451,13 @@ BT 1 0 0 1 348.4473 204.8192 Tm [<0061>-525<0037006D00480048004D001C004B0032>]TJ 1 0 0 1 348.4473 190.3917 Tm [<0061>-525<003F001C0062006E004B001C0069003F>]TJ 1 0 0 1 348.4473 175.9642 Tm [<0061>-525<00420069001C00480042002B006E002B0051006000600032002B006900420051004D>]TJ -1 0 0 1 348.4473 161.5367 Tm [<0061>-525<004B0051002F0032>]TJ -1 0 0 1 348.4473 147.1092 Tm [<0061>-525<004D001C004B0032>]TJ -1 0 0 1 348.4473 132.6817 Tm [<0061>-525<004D0051006E004B001C0069003F006E00420069001C00480042002B0062>]TJ +1 0 0 1 348.4473 161.5367 Tm [<0061>-525<004B001C0069003F00420069001C00480042002B0062>]TJ +1 0 0 1 348.4473 147.1092 Tm [<0061>-525<004B0051002F0032>]TJ +1 0 0 1 348.4473 132.6817 Tm [<0061>-525<004D001C004B0032>]TJ 1 0 0 1 348.4473 118.2542 Tm [<0061>-525<004D0051006E00620069001C002B0046004B001C0069003F>]TJ -1 0 0 1 348.4473 103.8267 Tm [<0061>-525<004D0051006E0069003200740069006E00420069001C00480042002B0062>]TJ -1 0 0 1 348.4473 89.3992 Tm [<0061>-525<004D0051003B004800760054003F004D001C004B00320062>]TJ -1 0 0 1 348.4473 74.9717 Tm [<0061>-525<00540062004D001C004B0032>]TJ +1 0 0 1 348.4473 103.8267 Tm [<0061>-525<004D0051003B004800760054003F004D001C004B00320062>]TJ +1 0 0 1 348.4473 89.3992 Tm [<0061>-525<00540062004D001C004B0032>]TJ +1 0 0 1 348.4473 74.9717 Tm [<0061>-525<006900320074006900420069001C00480042002B0062>]TJ 1 0 0 1 348.4473 60.5442 Tm [<0061>-525<0070004200600069006D001C0048004200780032002F>]TJ 1 0 0 1 328.522 46.1167 Tm [<002E>-525<00480051001C002F0032002F00370051004D00690062>]TJ ET @@ -5631,7 +5639,7 @@ endobj endobj 649 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -5651,108 +5659,106 @@ BT /F1 11.955168 Tf 1 0 0 1 113.9989 671.4864 Tm [<0069001C002300480032>]TJ /F50 9.96264 Tf 1 0 0 1 36.091 657.0589 Tm [<002E>-525<002B003F001C0060001C002B0069003200600062>]TJ 1 0 0 1 36.091 642.6314 Tm [<002E>-525<002B0062004D001C004B00320062>]TJ -1 0 0 1 36.091 628.2039 Tm [<0068>-525<002F0076004D001C004B0042002B0062>]TJ -1 0 0 1 36.091 613.7764 Tm [<002E>-525<0042002F0032004D0069004200370042003200600062>]TJ -1 0 0 1 36.091 599.349 Tm [<002E>-525<00420069001C00480042002B0062>]TJ -1 0 0 1 36.091 584.9215 Tm [<002E>-525<004B001C006000460062>]TJ -1 0 0 1 36.091 570.494 Tm [<002E>-525<0054001C0060001C004B00320069003200600062>]TJ -1 0 0 1 36.091 556.0665 Tm [<0068>-525<005400600051002B00320062006200320062>]TJ -1 0 0 1 36.091 541.639 Tm [<002E>-525<0054006000510054003200600069004200320062>]TJ -1 0 0 1 36.091 527.2115 Tm [<002E>-525<005B006D001C002F0062>]TJ -1 0 0 1 36.091 512.784 Tm [<0068>-525<006200320069002F0076004D001C004B0042002B0062>]TJ -1 0 0 1 36.091 498.3565 Tm [<002E>-525<0074003F00320042003B003F00690062>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<003F003200480054003200600062>]TJ -/F1 11.955168 Tf 1 0 0 1 113.9989 483.929 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 469.5015 Tm [<0036>-525<002F0042004B0032004D0037001C002B006900510060>]TJ -1 0 0 1 36.091 455.074 Tm [<0036>-525<003B00320069002F0042003B0042006900720042002F0069003F>]TJ -1 0 0 1 36.091 440.6465 Tm [<0036>-525<003B003200690054001C0060001C004B00320069003200600062>]TJ -1 0 0 1 36.091 426.219 Tm [<0036>-525<004D001C004B0032006900510062004800510069>]TJ -1 0 0 1 36.091 411.7915 Tm [<0036>-525<006200320069002F0042003B0042006900720042002F0069003F>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<0042006900320060001C0069005100600062>]TJ -/F1 11.955168 Tf 1 0 0 1 113.9989 397.364 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 382.9365 Tm [<0036>-525<002B003F001C0060001C002B0069003200600062>]TJ -1 0 0 1 36.091 368.509 Tm [<0036>-525<002F00320062002B006000420054006900420051004D0062>]TJ -1 0 0 1 36.091 354.0815 Tm [<0036>-525<003B004800760054003F0062>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<00480051003B003B003200600062>]TJ +1 0 0 1 36.091 628.2039 Tm [<002E>-525<002F00320062002B006000420054006900420051004D0062>]TJ +1 0 0 1 36.091 613.7764 Tm [<0068>-525<002F0076004D001C004B0042002B0062>]TJ +1 0 0 1 36.091 599.349 Tm [<002E>-525<0042002F0032004D0069004200370042003200600062>]TJ +1 0 0 1 36.091 584.9215 Tm [<002E>-525<00420069001C00480042002B0062>]TJ +1 0 0 1 36.091 570.494 Tm [<002E>-525<004B001C006000460062>]TJ +1 0 0 1 36.091 556.0665 Tm [<002E>-525<0054001C0060001C004B00320069003200600062>]TJ +1 0 0 1 36.091 541.639 Tm [<0068>-525<005400600051002B00320062006200320062>]TJ +1 0 0 1 36.091 527.2115 Tm [<002E>-525<0054006000510054003200600069004200320062>]TJ +1 0 0 1 36.091 512.784 Tm [<002E>-525<005B006D001C002F0062>]TJ +1 0 0 1 36.091 498.3565 Tm [<0068>-525<006200320069002F0076004D001C004B0042002B0062>]TJ +1 0 0 1 36.091 483.929 Tm [<002E>-525<0074003F00320042003B003F00690062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<003F003200480054003200600062>]TJ +/F1 11.955168 Tf 1 0 0 1 113.9989 469.5015 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 455.074 Tm [<0036>-525<001C002F002F0054006000420070001C00690032>]TJ +1 0 0 1 36.091 440.6465 Tm [<0036>-525<002F0042004B0032004D0037001C002B006900510060>]TJ +1 0 0 1 36.091 426.219 Tm [<0036>-525<003B00320069002F0042003B0042006900720042002F0069003F>]TJ +1 0 0 1 36.091 411.7915 Tm [<0036>-525<003B003200690054001C0060001C004B00320069003200600062>]TJ +1 0 0 1 36.091 397.364 Tm [<0036>-525<003B003200690054006000420070001C00690032004D0051002F0032>]TJ +1 0 0 1 36.091 382.9365 Tm [<0036>-525<003F001C00620054006000420070001C00690032>]TJ +1 0 0 1 36.091 368.509 Tm [<0036>-525<004D001C004B0032006900510062004800510069>]TJ +1 0 0 1 36.091 354.0815 Tm [<0036>-525<006200320069002F0042003B0042006900720042002F0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<0042006900320060001C0069005100600062>]TJ /F1 11.955168 Tf 1 0 0 1 113.9989 339.654 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 325.2266 Tm [<0036>-525<003700510060004B001C0069>]TJ -1 0 0 1 36.091 310.7991 Tm [<0036>-525<0051004D003200690042004B0032004B003200620062001C003B0032>]TJ -1 0 0 1 36.091 296.3716 Tm [<0036>-525<00600032003B00420062006900320060>]TJ -1 0 0 1 36.091 281.9441 Tm [<0036>-525<006000320054005100600069002F003200370042004D0032002F00370051004D00690062>]TJ -1 0 0 1 36.091 267.5166 Tm [<0036>-525<006000320054005100600069006D00620032002F00370032001C0069006D006000320062>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<004B001C005400540042004D003B0062>]TJ -/F1 11.955168 Tf 1 0 0 1 113.9989 253.0891 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 238.6616 Tm [<0036>-525<001C002F002F00690051006D004D0042002B0051002F0032>]TJ -1 0 0 1 36.091 224.2341 Tm [<0036>-525<003700600051004B006D004D0042002B0051002F003200520065>]TJ -1 0 0 1 36.091 209.8066 Tm [<0036>-525<00480051001C002F0037004200480032>]TJ -1 0 0 1 36.091 195.3791 Tm [<0036>-525<00480051001C002F00480042004D0032>]TJ -1 0 0 1 36.091 180.9516 Tm [<0036>-525<00480051001C002F0048006D004B0069001C002300480032>]TJ -1 0 0 1 36.091 166.5241 Tm [<0036>-525<004B001C00460032004D001C004B00320054001C0060006200320060>]TJ -1 0 0 1 36.091 152.0966 Tm [<0036>-525<00600032006200320069>]TJ -1 0 0 1 36.091 137.6691 Tm [<0036>-525<00690051006D004D0042002B0051002F003200520065>]TJ -1 0 0 1 36.091 123.2416 Tm [<0036>-525<00690051006D004D0042002B0051002F00320052006500620032005B006D0032004D002B0032>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<004D001C004B00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 113.9989 108.8141 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 94.3866 Tm [<0061>-525<0023001C00620032004D001C004B0032>]TJ -1 0 0 1 36.091 79.9591 Tm [<0022>-525<00230032006E002B00480032007000320060>]TJ -1 0 0 1 36.091 65.5316 Tm [<002E>-525<002B001C002B003F0032>]TJ -1 0 0 1 36.091 51.1042 Tm [<0036>-525<002B00480032001C004D0037004200480032004D001C004B0032>]TJ -1 0 0 1 328.522 815.7614 Tm [<0036>-525<002B00480032001C004D004D001C004B0032>]TJ -1 0 0 1 328.522 801.3339 Tm [<0036>-525<002B0051004800480032002B0069>]TJ -1 0 0 1 328.522 786.9064 Tm [<0036>-525<002B0051004800480032002B006900370042004800320062>]TJ -1 0 0 1 328.522 772.4789 Tm [<0036>-525<002B0051004800480032002B0069006200540032002B>]TJ -1 0 0 1 328.522 758.0514 Tm [<0068>-525<002F001C0069001C>]TJ -1 0 0 1 328.522 743.6239 Tm [<0022>-525<0032004D001C002300480032002F>]TJ -1 0 0 1 328.522 729.1964 Tm [<0036>-525<003200740042006200690062>]TJ -1 0 0 1 328.522 714.7689 Tm [<0068>-525<0037004200480069003200600062>]TJ -1 0 0 1 338.4846 700.3414 Tm [<0036>-525<001C0037004B>]TJ -1 0 0 1 338.4846 685.9139 Tm [<0036>-525<002F00370051004D0069>]TJ -1 0 0 1 338.4846 671.4864 Tm [<0068>-525<0048004200620069>]TJ -1 0 0 1 338.4846 657.0589 Tm [<0068>-525<004D001C004B00320062>]TJ -1 0 0 1 338.4846 642.6314 Tm [<0036>-525<005100690037>]TJ -1 0 0 1 338.4846 628.2039 Tm [<0068>-525<0054001C0069003F0062>]TJ -1 0 0 1 338.4846 613.7764 Tm [<0036>-525<005400370023>]TJ -1 0 0 1 338.4846 599.349 Tm [<0036>-525<00690069002B>]TJ -1 0 0 1 338.4846 584.9215 Tm [<0036>-525<006900690037>]TJ -1 0 0 1 328.522 570.494 Tm [<0061>-525<00370051004D0069002B0051004D00370042003B0037004200480032>]TJ -1 0 0 1 328.522 556.0665 Tm [<0036>-525<003B003200690037004200480032004D001C004B0032>]TJ -1 0 0 1 328.522 541.639 Tm [<0036>-525<003B003200690048005100510046006D0054004600320076>]TJ -1 0 0 1 328.522 527.2115 Tm [<0036>-525<003B003200690048005100510046006D00540062>]TJ -1 0 0 1 328.522 512.784 Tm [<0036>-525<003B003200690054001C0069003F0062>]TJ -1 0 0 1 328.522 498.3565 Tm [<0036>-525<0042002F0032004D0069004200370076>]TJ -1 0 0 1 328.522 483.929 Tm [<0036>-525<00420062006E005400320060004B0042006900690032002F>]TJ -1 0 0 1 328.522 469.5015 Tm [<0036>-525<0048004200620069>]TJ -1 0 0 1 328.522 455.074 Tm [<0036>-525<00480051001C002F>]TJ -1 0 0 1 328.522 440.6465 Tm [<0022>-525<00480051001C002F0032002F>]TJ -1 0 0 1 328.522 426.219 Tm [<0036>-525<0048005100510046006D0054>]TJ -1 0 0 1 328.522 411.7915 Tm [<0036>-525<004D005100370048005100510046006D00540062>]TJ -1 0 0 1 328.522 397.364 Tm [<0061>-525<0051006200370051004D0069002F004200600070001C00600042001C002300480032>]TJ -1 0 0 1 328.522 382.9365 Tm [<0036>-525<00600032001C002F002F001C0069001C>]TJ -1 0 0 1 328.522 368.509 Tm [<0036>-525<00600032003B00420062006900320060>]TJ -1 0 0 1 328.522 354.0815 Tm [<0036>-525<00600032003B004200620069003200600032002F>]TJ -1 0 0 1 328.522 339.654 Tm [<0036>-525<0060003200620051004800700032>]TJ -1 0 0 1 328.522 325.2266 Tm [<0036>-525<0060003200620051004800700032002F006200540032002B004200370042002B001C006900420051004D>]TJ -1 0 0 1 328.522 310.7991 Tm [<0036>-525<0060003200620051004800700032006200540032002B>]TJ -1 0 0 1 328.522 296.3716 Tm [<0022>-525<0062001C00700032002F>]TJ -1 0 0 1 328.522 281.9441 Tm [<0036>-525<006200540032002B004200370042002B001C006900420051004D>]TJ -1 0 0 1 328.522 267.5166 Tm [<002E>-525<006200540032002B004200370042002B001C006900420051004D0062>]TJ -1 0 0 1 328.522 253.0891 Tm [<0036>-525<00620054004800420069006200540032002B>]TJ -1 0 0 1 328.522 238.6616 Tm [<004C>-525<007000320060006200420051004D>]TJ -1 0 0 1 328.522 224.2341 Tm [<0036>-525<00720060004200690032002F001C0069001C>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<00540060005100690060006D006200420051004D0062>]TJ -/F1 11.955168 Tf 1 0 0 1 406.4299 209.8066 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<00600032001C002F003200600062>]TJ -/F1 11.955168 Tf 1 0 0 1 406.4299 195.3791 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 180.9516 Tm [<0036>-525<001C0037004B>]TJ -1 0 0 1 328.522 166.5241 Tm [<0036>-525<002B003F0032002B0046006E0048006D001C>]TJ -1 0 0 1 328.522 152.0966 Tm [<0036>-525<002B003F0032002B0046006E00690037004B>]TJ -1 0 0 1 328.522 137.6691 Tm [<0036>-525<002F00370051004D0069>]TJ -1 0 0 1 328.522 123.2416 Tm [<0036>-525<0048006D001C>]TJ -1 0 0 1 328.522 108.8141 Tm [<0036>-525<005100540032004D0069007600540032>]TJ -1 0 0 1 328.522 94.3866 Tm [<0036>-525<005100690037>]TJ -1 0 0 1 328.522 79.9591 Tm [<0036>-525<005400370023>]TJ -1 0 0 1 328.522 65.5316 Tm [<002E>-525<00620032005B006D0032004D002B0032>]TJ -1 0 0 1 328.522 51.1042 Tm [<0036>-525<00690037004B>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 325.2266 Tm [<0036>-525<002B003F001C0060001C002B0069003200600062>]TJ +1 0 0 1 36.091 310.7991 Tm [<0036>-525<002F00320062002B006000420054006900420051004D0062>]TJ +1 0 0 1 36.091 296.3716 Tm [<0036>-525<003B004800760054003F0062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<00480051003B003B003200600062>]TJ +/F1 11.955168 Tf 1 0 0 1 113.9989 281.9441 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 267.5166 Tm [<0068>-525<002B001C00690032003B005100600076006E00690051006E00540048001C002B0032003F00510048002F00320060>]TJ +1 0 0 1 46.0537 253.0891 Tm [<0061>-525<00480048>]TJ +1 0 0 1 46.0537 238.6616 Tm [<0061>-525<0048004B>]TJ +1 0 0 1 46.0537 224.2341 Tm [<0061>-525<00480051>]TJ +1 0 0 1 46.0537 209.8066 Tm [<0061>-525<00480069>]TJ +1 0 0 1 46.0537 195.3791 Tm [<0061>-525<0048006D>]TJ +1 0 0 1 46.0537 180.9516 Tm [<0061>-525<004B002B>]TJ +1 0 0 1 46.0537 166.5241 Tm [<0061>-525<004B0032>]TJ +1 0 0 1 46.0537 152.0966 Tm [<0061>-525<004B004D>]TJ +1 0 0 1 46.0537 137.6691 Tm [<0061>-525<004D002F>]TJ +1 0 0 1 46.0537 123.2416 Tm [<0061>-525<004D0048>]TJ +1 0 0 1 46.0537 108.8141 Tm [<0061>-525<004D0051>]TJ +1 0 0 1 46.0537 94.3866 Tm [<0061>-525<0054002B>]TJ +1 0 0 1 46.0537 79.9591 Tm [<0061>-525<0054002F>]TJ +1 0 0 1 46.0537 65.5316 Tm [<0061>-525<00540032>]TJ +1 0 0 1 46.0537 51.1042 Tm [<0061>-525<00540037>]TJ +1 0 0 1 338.4846 815.7614 Tm [<0061>-525<00540042>]TJ +1 0 0 1 338.4846 801.3339 Tm [<0061>-525<00540051>]TJ +1 0 0 1 338.4846 786.9064 Tm [<0061>-525<00540062>]TJ +1 0 0 1 338.4846 772.4789 Tm [<0061>-525<0062002B>]TJ +1 0 0 1 338.4846 758.0514 Tm [<0061>-525<00620046>]TJ +1 0 0 1 338.4846 743.6239 Tm [<0061>-525<0062004B>]TJ +1 0 0 1 338.4846 729.1964 Tm [<0061>-525<00620051>]TJ +1 0 0 1 328.522 714.7689 Tm [<0036>-525<003700510060004B001C0069>]TJ +1 0 0 1 328.522 700.3414 Tm [<0036>-525<0051004D003200690042004B0032004B003200620062001C003B0032>]TJ +1 0 0 1 328.522 685.9139 Tm [<0036>-525<00600032003B00420062006900320060>]TJ +1 0 0 1 328.522 671.4864 Tm [<0036>-525<006000320054005100600069002F003200370042004D0032002F00370051004D00690062>]TJ +1 0 0 1 328.522 657.0589 Tm [<0036>-525<006000320054005100600069006D00620032002F00370032001C0069006D006000320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<004B001C005400540042004D003B0062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 642.6314 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 628.2039 Tm [<0036>-525<001C002F002F00690051006D004D0042002B0051002F0032>]TJ +1 0 0 1 328.522 613.7764 Tm [<0036>-525<003700600051004B006D004D0042002B0051002F003200520065>]TJ +1 0 0 1 328.522 599.349 Tm [<0036>-525<00480051001C002F0037004200480032>]TJ +1 0 0 1 328.522 584.9215 Tm [<0036>-525<00480051001C002F00480042004D0032>]TJ +1 0 0 1 328.522 570.494 Tm [<0036>-525<00480051001C002F0048006D004B0069001C002300480032>]TJ +1 0 0 1 328.522 556.0665 Tm [<0036>-525<004B001C00460032004D001C004B00320054001C0060006200320060>]TJ +1 0 0 1 328.522 541.639 Tm [<0036>-525<00600032006200320069>]TJ +1 0 0 1 328.522 527.2115 Tm [<0036>-525<00690051006D004D0042002B0051002F003200520065>]TJ +1 0 0 1 328.522 512.784 Tm [<0036>-525<00690051006D004D0042002B0051002F00320052006500620032005B006D0032004D002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<004D001C004B00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 498.3565 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 483.929 Tm [<0061>-525<0023001C00620032004D001C004B0032>]TJ +1 0 0 1 328.522 469.5015 Tm [<0022>-525<00230032006E002B00480032007000320060>]TJ +1 0 0 1 328.522 455.074 Tm [<002E>-525<002B001C002B003F0032>]TJ +1 0 0 1 328.522 440.6465 Tm [<0036>-525<002B00480032001C004D0037004200480032004D001C004B0032>]TJ +1 0 0 1 328.522 426.219 Tm [<0036>-525<002B00480032001C004D004D001C004B0032>]TJ +1 0 0 1 328.522 411.7915 Tm [<0036>-525<002B0051004800480032002B0069>]TJ +1 0 0 1 328.522 397.364 Tm [<0036>-525<002B0051004800480032002B006900370042004800320062>]TJ +1 0 0 1 328.522 382.9365 Tm [<0036>-525<002B0051004800480032002B0069006200540032002B>]TJ +1 0 0 1 328.522 368.509 Tm [<0068>-525<002F001C0069001C>]TJ +1 0 0 1 328.522 354.0815 Tm [<0022>-525<0032004D001C002300480032002F>]TJ +1 0 0 1 328.522 339.654 Tm [<0036>-525<003200740042006200690062>]TJ +1 0 0 1 328.522 325.2266 Tm [<0068>-525<0037004200480069003200600062>]TJ +1 0 0 1 338.4846 310.7991 Tm [<0036>-525<001C0037004B>]TJ +1 0 0 1 338.4846 296.3716 Tm [<0036>-525<002F00370051004D0069>]TJ +1 0 0 1 338.4846 281.9441 Tm [<0068>-525<0048004200620069>]TJ +1 0 0 1 338.4846 267.5166 Tm [<0068>-525<004D001C004B00320062>]TJ +1 0 0 1 338.4846 253.0891 Tm [<0036>-525<005100690037>]TJ +1 0 0 1 338.4846 238.6616 Tm [<0068>-525<0054001C0069003F0062>]TJ +1 0 0 1 338.4846 224.2341 Tm [<0036>-525<005400370023>]TJ +1 0 0 1 338.4846 209.8066 Tm [<0036>-525<00690069002B>]TJ +1 0 0 1 338.4846 195.3791 Tm [<0036>-525<006900690037>]TJ +1 0 0 1 328.522 180.9516 Tm [<0061>-525<00370051004D0069002B0051004D00370042003B0037004200480032>]TJ +1 0 0 1 328.522 166.5241 Tm [<0036>-525<003B003200690037004200480032004D001C004B0032>]TJ +1 0 0 1 328.522 152.0966 Tm [<0036>-525<003B003200690048005100510046006D0054004600320076>]TJ +1 0 0 1 328.522 137.6691 Tm [<0036>-525<003B003200690048005100510046006D00540062>]TJ +1 0 0 1 328.522 123.2416 Tm [<0036>-525<003B003200690054001C0069003F0062>]TJ +1 0 0 1 328.522 108.8141 Tm [<0036>-525<0042002F0032004D0069004200370076>]TJ +1 0 0 1 328.522 94.3866 Tm [<0036>-525<00420062006E005400320060004B0042006900690032002F>]TJ +1 0 0 1 328.522 79.9591 Tm [<0036>-525<0048004200620069>]TJ +1 0 0 1 328.522 65.5316 Tm [<0036>-525<00480051001C002F>]TJ +1 0 0 1 328.522 51.1042 Tm [<0022>-525<00480051001C002F0032002F>]TJ ET endstream endobj @@ -5778,37 +5784,66 @@ endobj endobj 656 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT /F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390079>-1000<004D003200740069>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<00690069002B>]TJ -1 0 0 1 36.091 801.3339 Tm [<0036>-525<006900690037>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<006200540032002B004200370042003200600062>]TJ -/F1 11.955168 Tf 1 0 0 1 113.9989 786.9064 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 772.4789 Tm [<002E>-525<002B0051004D0069003200740069004B00320060003B0032002F>]TJ -1 0 0 1 36.091 758.0514 Tm [<0036>-525<002B0051004D0069003200740069004D006D004B002300320060>]TJ -1 0 0 1 36.091 743.6239 Tm [<002E>-525<002B0051004D0069003200740069004D006D004B0023003200600062>]TJ -1 0 0 1 36.091 729.1964 Tm [<002E>-525<002B0051004D0069003200740069006200320069006D00540062>]TJ -1 0 0 1 36.091 714.7689 Tm [<0036>-525<002B0051004D0069003200740069006900510062006900600042004D003B>]TJ -1 0 0 1 36.091 700.3414 Tm [<0036>-525<004B00320060003B0032002B0051004D0069003200740069>]TJ -1 0 0 1 36.091 685.9139 Tm [<0036>-525<005400600032006200320069002B0051004D0069003200740069>]TJ -1 0 0 1 328.522 815.7614 Tm [<0036>-525<00600032003B00420062006900320060002B0051004D0069003200740069>]TJ -1 0 0 1 328.522 801.3339 Tm [<0036>-525<0062003F00510072002B0051004D0069003200740069>]TJ -1 0 0 1 328.522 786.9064 Tm [<0036>-525<00620054004800420069002B0051004D0069003200740069>]TJ -1 0 0 1 328.522 772.4789 Tm [<002E>-525<00620076004D0051004D0076004B0062>]TJ -1 0 0 1 328.522 758.0514 Tm [<002E>-525<0070001C00600042001C004D00690062>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<00620076004B0023005100480062>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<0048005100510046006D0054>]TJ +1 0 0 1 36.091 801.3339 Tm [<0036>-525<004D005100370048005100510046006D00540062>]TJ +1 0 0 1 36.091 786.9064 Tm [<0061>-525<0051006200370051004D0069002F004200600070001C00600042001C002300480032>]TJ +1 0 0 1 36.091 772.4789 Tm [<0036>-525<00600032001C002F002F001C0069001C>]TJ +1 0 0 1 36.091 758.0514 Tm [<0036>-525<00600032003B00420062006900320060>]TJ +1 0 0 1 36.091 743.6239 Tm [<0036>-525<00600032003B004200620069003200600032002F>]TJ +1 0 0 1 36.091 729.1964 Tm [<0036>-525<0060003200620051004800700032>]TJ +1 0 0 1 36.091 714.7689 Tm [<0036>-525<0060003200620051004800700032002F006200540032002B004200370042002B001C006900420051004D>]TJ +1 0 0 1 36.091 700.3414 Tm [<0036>-525<0060003200620051004800700032006200540032002B>]TJ +1 0 0 1 36.091 685.9139 Tm [<0022>-525<0062001C00700032002F>]TJ +1 0 0 1 36.091 671.4864 Tm [<0036>-525<006200540032002B004200370042002B001C006900420051004D>]TJ +1 0 0 1 36.091 657.0589 Tm [<002E>-525<006200540032002B004200370042002B001C006900420051004D0062>]TJ +1 0 0 1 36.091 642.6314 Tm [<0036>-525<00620054004800420069006200540032002B>]TJ +1 0 0 1 36.091 628.2039 Tm [<004C>-525<007000320060006200420051004D>]TJ +1 0 0 1 36.091 613.7764 Tm [<0036>-525<00720060004200690032002F001C0069001C>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<00540060005100690060006D006200420051004D0062>]TJ +/F1 11.955168 Tf 1 0 0 1 113.9989 599.349 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<00600032001C002F003200600062>]TJ +/F1 11.955168 Tf 1 0 0 1 113.9989 584.9215 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 570.494 Tm [<0036>-525<001C0037004B>]TJ +1 0 0 1 36.091 556.0665 Tm [<0036>-525<002B003F0032002B0046006E0048006D001C>]TJ +1 0 0 1 36.091 541.639 Tm [<0036>-525<002B003F0032002B0046006E00690037004B>]TJ +1 0 0 1 36.091 527.2115 Tm [<0036>-525<002F00370051004D0069>]TJ +1 0 0 1 36.091 512.784 Tm [<0036>-525<0048006D001C>]TJ +1 0 0 1 36.091 498.3565 Tm [<0036>-525<005100540032004D0069007600540032>]TJ +1 0 0 1 36.091 483.929 Tm [<0036>-525<005100690037>]TJ +1 0 0 1 328.522 815.7614 Tm [<0036>-525<005400370023>]TJ +1 0 0 1 328.522 801.3339 Tm [<002E>-525<00620032005B006D0032004D002B0032>]TJ +1 0 0 1 328.522 786.9064 Tm [<0036>-525<00690037004B>]TJ +1 0 0 1 328.522 772.4789 Tm [<0036>-525<00690069002B>]TJ +1 0 0 1 328.522 758.0514 Tm [<0036>-525<006900690037>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<006200540032002B004200370042003200600062>]TJ /F1 11.955168 Tf 1 0 0 1 406.4299 743.6239 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 729.1964 Tm [<0036>-525<006D006200320048004200230060001C00600076>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0069001C0023004800320062>]TJ -/F1 11.955168 Tf 1 0 0 1 406.4299 714.7689 Tm [<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<00690060001C002B003200600062>]TJ -/F1 11.955168 Tf 1 0 0 1 406.4299 700.3414 Tm [<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<00690076005400320037001C002B00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 406.4299 685.9139 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 729.1964 Tm [<002E>-525<002B0051004D0069003200740069004B00320060003B0032002F>]TJ +1 0 0 1 328.522 714.7689 Tm [<0036>-525<002B0051004D0069003200740069004D006D004B002300320060>]TJ +1 0 0 1 328.522 700.3414 Tm [<002E>-525<002B0051004D0069003200740069004D006D004B0023003200600062>]TJ +1 0 0 1 328.522 685.9139 Tm [<002E>-525<002B0051004D0069003200740069006200320069006D00540062>]TJ +1 0 0 1 328.522 671.4864 Tm [<0036>-525<002B0051004D0069003200740069006900510062006900600042004D003B>]TJ +1 0 0 1 328.522 657.0589 Tm [<0036>-525<004B00320060003B0032002B0051004D0069003200740069>]TJ +1 0 0 1 328.522 642.6314 Tm [<0036>-525<005400600032006200320069002B0051004D0069003200740069>]TJ +1 0 0 1 328.522 628.2039 Tm [<0036>-525<00600032003B00420062006900320060002B0051004D0069003200740069>]TJ +1 0 0 1 328.522 613.7764 Tm [<0036>-525<0062003F00510072002B0051004D0069003200740069>]TJ +1 0 0 1 328.522 599.349 Tm [<0036>-525<00620054004800420069002B0051004D0069003200740069>]TJ +1 0 0 1 328.522 584.9215 Tm [<002E>-525<00620076004D0051004D0076004B0062>]TJ +1 0 0 1 328.522 570.494 Tm [<002E>-525<0070001C00600042001C004D00690062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<00620076004B0023005100480062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 556.0665 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 541.639 Tm [<0036>-525<006D006200320048004200230060001C00600076>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<0069001C0023004800320062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 527.2115 Tm [<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<00690060001C002B003200600062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 512.784 Tm [<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<00690076005400320037001C002B00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 406.4299 498.3565 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ ET endstream endobj @@ -8895,7 +8930,7 @@ endobj endobj 918 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -8913,140 +8948,140 @@ BT 1 0 0 1 36.091 685.9139 Tm [<0036>-525<00600042003B003F00690062004600420054>]TJ 1 0 0 1 36.091 671.4864 Tm [<0036>-525<0060006D00480032>]TJ 1 0 0 1 36.091 657.0589 Tm [<0036>-525<0062003F00600042004D0046>]TJ -1 0 0 1 36.091 642.6314 Tm [<0036>-525<00620069006000320069002B003F>]TJ -1 0 0 1 36.091 628.2039 Tm [<0036>-525<00690032004B0054>]TJ -1 0 0 1 36.091 613.7764 Tm [<0036>-525<0069003200740069002F00420060>]TJ -1 0 0 1 36.091 599.349 Tm [<0036>-525<006D0062001C003B0032>]TJ -1 0 0 1 36.091 584.9215 Tm [<0068>-525<006D0062003200600042002F0062>]TJ -1 0 0 1 46.0537 570.494 Tm [<004C>-525<004B001C0060003B0042004D006200580042004D00480042004D0032>]TJ -1 0 0 1 46.0537 556.0665 Tm [<004C>-525<00620054004800420069006900320060006200580051004D0032>]TJ -1 0 0 1 46.0537 541.639 Tm [<004C>-525<0062005400480042006900690032006000620058006900720051>]TJ -1 0 0 1 36.091 527.2115 Tm [<0036>-525<006D0062003200600048004200620069>]TJ -1 0 0 1 36.091 512.784 Tm [<0036>-525<006D006200320060004D006D004B002300320060>]TJ -1 0 0 1 36.091 498.3565 Tm [<0036>-525<006D0062003200600062006900600042004D003B>]TJ -1 0 0 1 36.091 483.929 Tm [<0036>-525<006D0062003200600069005100460032004D0062>]TJ -1 0 0 1 36.091 469.5015 Tm [<0036>-525<0078003200600051003B0048006D0032>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<005400600042004D0069>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 455.074 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<005400600051002B003200620062005100600062>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 440.6465 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 426.219 Tm [<0022>-525<0032004D001C002300480032002F>]TJ -1 0 0 1 36.091 411.7915 Tm [<0036>-525<003F0054001C002B0046006E003700420048006900320060>]TJ -1 0 0 1 36.091 397.364 Tm [<0036>-525<0054005100620069006E00480042004D0032002300600032001C0046006E003700420048006900320060>]TJ -1 0 0 1 36.091 382.9365 Tm [<0036>-525<005400600032006E00480042004D0032002300600032001C0046006E003700420048006900320060>]TJ -1 0 0 1 36.091 368.509 Tm [<0036>-525<00690060001C002B00320060>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<005400600051002B003200620062007200510060002F0062>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 354.0815 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<006000320037003200600032004D002B0032>]TJ +1 0 0 1 36.091 642.6314 Tm [<0036>-525<006200540032002B0042001C0048>]TJ +1 0 0 1 36.091 628.2039 Tm [<0036>-525<00620069006000320069002B003F>]TJ +1 0 0 1 36.091 613.7764 Tm [<0036>-525<00690032004B0054>]TJ +1 0 0 1 36.091 599.349 Tm [<0036>-525<0069003200740069002F00420060>]TJ +1 0 0 1 36.091 584.9215 Tm [<0036>-525<006D0062001C003B0032>]TJ +1 0 0 1 36.091 570.494 Tm [<0068>-525<006D0062003200600042002F0062>]TJ +1 0 0 1 46.0537 556.0665 Tm [<004C>-525<004B001C0060003B0042004D006200580042004D00480042004D0032>]TJ +1 0 0 1 46.0537 541.639 Tm [<004C>-525<00620054004800420069006900320060006200580051004D0032>]TJ +1 0 0 1 46.0537 527.2115 Tm [<004C>-525<0062005400480042006900690032006000620058006900720051>]TJ +1 0 0 1 36.091 512.784 Tm [<0036>-525<006D0062003200600048004200620069>]TJ +1 0 0 1 36.091 498.3565 Tm [<0036>-525<006D006200320060004D006D004B002300320060>]TJ +1 0 0 1 36.091 483.929 Tm [<0036>-525<006D0062003200600062006900600042004D003B>]TJ +1 0 0 1 36.091 469.5015 Tm [<0036>-525<006D0062003200600069005100460032004D0062>]TJ +1 0 0 1 36.091 455.074 Tm [<0036>-525<0078003200600051003B0048006D0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<005400600042004D0069>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 440.6465 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<005400600051002B003200620062005100600062>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 426.219 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 411.7915 Tm [<0022>-525<0032004D001C002300480032002F>]TJ +1 0 0 1 36.091 397.364 Tm [<0036>-525<003F0054001C002B0046006E003700420048006900320060>]TJ +1 0 0 1 36.091 382.9365 Tm [<0036>-525<0054005100620069006E00480042004D0032002300600032001C0046006E003700420048006900320060>]TJ +1 0 0 1 36.091 368.509 Tm [<0036>-525<005400600032006E00480042004D0032002300600032001C0046006E003700420048006900320060>]TJ +1 0 0 1 36.091 354.0815 Tm [<0036>-525<00690060001C002B00320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<005400600051002B003200620062007200510060002F0062>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 339.654 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<006000320037003200600032004D002B00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 325.2266 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 310.7991 Tm [<004C>-525<001C00690069006000420023006D00690032>]TJ -1 0 0 1 36.091 296.3716 Tm [<0068>-525<002F0051004D0032>]TJ -1 0 0 1 36.091 281.9441 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -1 0 0 1 36.091 267.5166 Tm [<0068>-525<00620069001C002B0046>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<00600032004B005100700032>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<006000320054001C002B0046003F0048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<006000320037003200600032004D002B0032>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 325.2266 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<006000320037003200600032004D002B00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 310.7991 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 296.3716 Tm [<004C>-525<001C00690069006000420023006D00690032>]TJ +1 0 0 1 36.091 281.9441 Tm [<0068>-525<002F0051004D0032>]TJ +1 0 0 1 36.091 267.5166 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +1 0 0 1 36.091 253.0891 Tm [<0068>-525<00620069001C002B0046>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<00600032004B005100700032>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<0060003200540048001C002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<006000320054001C002B0046003F0048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<006000320054005100600069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<0060003200540048001C002B0032>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 209.8066 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<00600042003B003F0069004B001C0060003B0042004D00720042002F0069003F>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<006000320054005100600069>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 195.3791 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<0060006D004800320062>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 180.9516 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 166.5241 Tm [<002E>-525<002F001C0069001C>]TJ -1 0 0 1 36.091 152.0966 Tm [<0036>-525<002F003200370042004D0032>]TJ -1 0 0 1 36.091 137.6691 Tm [<0036>-525<0032004D001C002300480032>]TJ -1 0 0 1 36.091 123.2416 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<0062001C00700032>]TJ -/F1 11.955168 Tf 1 0 0 1 170.4871 108.8141 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<0062003200600042001C0048004200780032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<00600042003B003F0069004B001C0060003B0042004D00720042002F0069003F>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 180.9516 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<0060006D004800320062>]TJ +/F1 11.955168 Tf 1 0 0 1 170.4871 166.5241 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 152.0966 Tm [<002E>-525<002F001C0069001C>]TJ +1 0 0 1 36.091 137.6691 Tm [<0036>-525<002F003200370042004D0032>]TJ +1 0 0 1 36.091 123.2416 Tm [<0036>-525<0032004D001C002300480032>]TJ +1 0 0 1 36.091 108.8141 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<0062001C00700032>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 94.3866 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<0062003200600042001C0048004200780032002300510074>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<0062003200600042001C0048004200780032>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 79.9591 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<006200320069001C00690069006000420023006D00690032>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<0062003200600042001C0048004200780032002300510074>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 65.5316 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<006200320069001C00690069006000420023006D006900320062>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<006200320069001C00690069006000420023006D00690032>]TJ /F1 11.955168 Tf 1 0 0 1 170.4871 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<006200320069006D004D006200320069001C00690069006000420023006D006900320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<006200320069001C00690069006000420023006D006900320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 815.7614 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<0062003F0042003700690062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 801.3339 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 786.9064 Tm [<002E>-525<002F001C0069001C>]TJ -1 0 0 1 328.522 772.4789 Tm [<0036>-525<002F003200370042004D0032>]TJ -1 0 0 1 328.522 758.0514 Tm [<0036>-525<0032004D001C002300480032>]TJ -1 0 0 1 328.522 743.6239 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<0062003F00510072>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0062003F0051007200230051007400320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<006200320069006D004D006200320069001C00690069006000420023006D006900320062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<0062003F0042003700690062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 786.9064 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 772.4789 Tm [<002E>-525<002F001C0069001C>]TJ +1 0 0 1 328.522 758.0514 Tm [<0036>-525<002F003200370042004D0032>]TJ +1 0 0 1 328.522 743.6239 Tm [<0036>-525<0032004D001C002300480032>]TJ +1 0 0 1 328.522 729.1964 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0062003F00510072>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 714.7689 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0062003F00510072002B0051002F00320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0062003F0051007200230051007400320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<0062003F005100720048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<0062003F00510072002B0051002F00320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<0062003F0051007200620042004B0054004800320048004200620069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<0062003F005100720048004200620069>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 671.4864 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<0062004600420054002B0051002F00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 657.0589 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<00620051004B003200540032004D001C004800690076>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 642.6314 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00620051004B003200620054001C002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<0062003F0051007200620042004B0054004800320048004200620069>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 657.0589 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<0062004600420054002B0051002F00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 642.6314 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00620051004B003200540032004D001C004800690076>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 628.2039 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<0062006900600042005400540042004D003B>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 613.7764 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 599.349 Tm [<0036>-525<0032004D001C002300480032>]TJ -1 0 0 1 328.522 584.9215 Tm [<0068>-525<003B004800760054003F0062>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<006200690060004200540060001C004D003B0032>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 570.494 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<0069001C006200460062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 556.0665 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 541.639 Tm [<0036>-525<001C002B006900420051004D0062>]TJ -1 0 0 1 328.522 527.2115 Tm [<0036>-525<001C005400540032004D002F001C002B006900420051004D>]TJ -1 0 0 1 328.522 512.784 Tm [<0036>-525<002F00420062001C002300480032001C002B006900420051004D>]TJ -1 0 0 1 328.522 498.3565 Tm [<0036>-525<002F00420062001C002300480032003B00600051006D0054>]TJ -1 0 0 1 328.522 483.929 Tm [<0036>-525<0032004D001C002300480032001C002B006900420051004D>]TJ -1 0 0 1 328.522 469.5015 Tm [<0036>-525<0032004D001C002300480032003B00600051006D0054>]TJ -1 0 0 1 328.522 455.074 Tm [<0036>-525<003700600032003200780032>]TJ -1 0 0 1 328.522 440.6465 Tm [<0036>-525<003700600032003200780032003B00600051006D0054>]TJ -1 0 0 1 328.522 426.219 Tm [<0036>-525<004D00320072>]TJ -1 0 0 1 328.522 411.7915 Tm [<0036>-525<00540060003200540032004D002F001C002B006900420051004D>]TJ -1 0 0 1 328.522 397.364 Tm [<0036>-525<00600032004B005100700032001C002B006900420051004D>]TJ -1 0 0 1 328.522 382.9365 Tm [<0036>-525<0060003200620069001C00600069>]TJ -1 0 0 1 328.522 368.509 Tm [<0036>-525<0062003F00510072001C002B006900420051004D0062>]TJ -1 0 0 1 328.522 354.0815 Tm [<0036>-525<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<0069003200740069002F00420060006E00420062006E0032005B006D001C0048>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 339.654 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<0069003200740069002F00420060006E00420062006E00420062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<00620051004B003200620054001C002B0032>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 613.7764 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<0062006900600042005400540042004D003B>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 599.349 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 584.9215 Tm [<0036>-525<0032004D001C002300480032>]TJ +1 0 0 1 328.522 570.494 Tm [<0068>-525<003B004800760054003F0062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<006200690060004200540060001C004D003B0032>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 556.0665 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<0069001C006200460062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 541.639 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 527.2115 Tm [<0036>-525<001C002B006900420051004D0062>]TJ +1 0 0 1 328.522 512.784 Tm [<0036>-525<001C005400540032004D002F001C002B006900420051004D>]TJ +1 0 0 1 328.522 498.3565 Tm [<0036>-525<002F00420062001C002300480032001C002B006900420051004D>]TJ +1 0 0 1 328.522 483.929 Tm [<0036>-525<002F00420062001C002300480032003B00600051006D0054>]TJ +1 0 0 1 328.522 469.5015 Tm [<0036>-525<0032004D001C002300480032001C002B006900420051004D>]TJ +1 0 0 1 328.522 455.074 Tm [<0036>-525<0032004D001C002300480032003B00600051006D0054>]TJ +1 0 0 1 328.522 440.6465 Tm [<0036>-525<003700600032003200780032>]TJ +1 0 0 1 328.522 426.219 Tm [<0036>-525<003700600032003200780032003B00600051006D0054>]TJ +1 0 0 1 328.522 411.7915 Tm [<0036>-525<004D00320072>]TJ +1 0 0 1 328.522 397.364 Tm [<0036>-525<00540060003200540032004D002F001C002B006900420051004D>]TJ +1 0 0 1 328.522 382.9365 Tm [<0036>-525<00600032004B005100700032001C002B006900420051004D>]TJ +1 0 0 1 328.522 368.509 Tm [<0036>-525<0060003200620069001C00600069>]TJ +1 0 0 1 328.522 354.0815 Tm [<0036>-525<0062003F00510072001C002B006900420051004D0062>]TJ +1 0 0 1 328.522 339.654 Tm [<0036>-525<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<0069003200740069002F00420060006E00420062006E0032005B006D001C0048>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 325.2266 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<0069003200740069002F00420060006E00420062006E00510054005400510062004200690032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<0069003200740069002F00420060006E00420062006E00420062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 310.7991 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0069003200740069002F00420060006E00420062006E0054001C0060001C0048004800320048>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0069003200740069002F00420060006E00420062006E00510054005400510062004200690032>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 296.3716 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<00690051004D0051002F00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 281.9441 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<0069005100620032005B006D0032004D002B0032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0069003200740069002F00420060006E00420062006E0054001C0060001C0048004800320048>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 281.9441 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<00690051004D0051002F00320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 267.5166 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<006900510069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<0069005100620032005B006D0032004D002B0032>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 253.0891 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<00690051006D00690037>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<006900510069001C002300480032>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 238.6616 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<00690060001C002B003200600062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 224.2341 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 209.8066 Tm [<0068>-525<002B003F001C0060001C002B0069003200600062>]TJ -1 0 0 1 338.4846 195.3791 Tm [<0036>-525<002B0051004800480032002B0069>]TJ -1 0 0 1 338.4846 180.9516 Tm [<0036>-525<0032005B006D001C0048>]TJ -1 0 0 1 338.4846 166.5241 Tm [<0036>-525<0042004D002F0042002B00320062>]TJ -1 0 0 1 338.4846 152.0966 Tm [<0036>-525<00620069001C00600069>]TJ -1 0 0 1 338.4846 137.6691 Tm [<0036>-525<0062006900600042004D003B>]TJ -1 0 0 1 338.4846 123.2416 Tm [<0036>-525<006D004D0042002B0051002F00320062>]TJ -1 0 0 1 328.522 108.8141 Tm [<0068>-525<002B00510048005100600062>]TJ -1 0 0 1 338.4846 94.3866 Tm [<0036>-525<00600032006200320069>]TJ -1 0 0 1 338.4846 79.9591 Tm [<0036>-525<006200320069>]TJ -1 0 0 1 328.522 65.5316 Tm [<0036>-525<00370051004D0069002B003F001C0060>]TJ -1 0 0 1 328.522 51.1042 Tm [<0036>-525<00620069001C00600069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<00690051006D00690037>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 224.2341 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<00690060001C002B003200600062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 209.8066 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 195.3791 Tm [<0068>-525<002B003F001C0060001C002B0069003200600062>]TJ +1 0 0 1 338.4846 180.9516 Tm [<0036>-525<002B0051004800480032002B0069>]TJ +1 0 0 1 338.4846 166.5241 Tm [<0036>-525<0032005B006D001C0048>]TJ +1 0 0 1 338.4846 152.0966 Tm [<0036>-525<0042004D002F0042002B00320062>]TJ +1 0 0 1 338.4846 137.6691 Tm [<0036>-525<00620069001C00600069>]TJ +1 0 0 1 338.4846 123.2416 Tm [<0036>-525<0062006900600042004D003B>]TJ +1 0 0 1 338.4846 108.8141 Tm [<0036>-525<006D004D0042002B0051002F00320062>]TJ +1 0 0 1 328.522 94.3866 Tm [<0068>-525<002B00510048005100600062>]TJ +1 0 0 1 338.4846 79.9591 Tm [<0036>-525<00600032006200320069>]TJ +1 0 0 1 338.4846 65.5316 Tm [<0036>-525<006200320069>]TJ +1 0 0 1 328.522 51.1042 Tm [<0036>-525<00370051004D0069002B003F001C0060>]TJ ET endstream endobj @@ -9072,37 +9107,38 @@ endobj endobj 925 0 obj -<> +<> stream 0 g 0 G 0 g 0 G BT /F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640079>-1000<004D003200740069>]TJ -/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0068>-525<00620069003200540054003200600062>]TJ -1 0 0 1 46.0537 801.3339 Tm [<0036>-525<002B003F0032002B0046>]TJ -1 0 0 1 46.0537 786.9064 Tm [<0036>-525<002B0051002F00320062>]TJ -1 0 0 1 46.0537 772.4789 Tm [<0036>-525<00370032001C0069006D006000320062>]TJ -1 0 0 1 46.0537 758.0514 Tm [<0036>-525<003B004800760054003F0062>]TJ -1 0 0 1 46.0537 743.6239 Tm [<0036>-525<004B003200620062001C003B0032>]TJ -1 0 0 1 46.0537 729.1964 Tm [<0036>-525<004B003200620062001C003B00320062>]TJ -1 0 0 1 46.0537 714.7689 Tm [<0036>-525<004D0051003700620069003200540062>]TJ -1 0 0 1 46.0537 700.3414 Tm [<0036>-525<00600032003B00420062006900320060>]TJ -1 0 0 1 46.0537 685.9139 Tm [<0036>-525<00600032006200320069>]TJ -1 0 0 1 338.4846 815.7614 Tm [<0036>-525<00620069001C00600069>]TJ -1 0 0 1 338.4846 801.3339 Tm [<0036>-525<0062006900510054>]TJ -1 0 0 1 328.522 786.9064 Tm [<0036>-525<0062006900510054>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<006D004D006200320069001C00690069006000420023006D00690032>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 772.4789 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<006D004D006200320069001C00690069006000420023006D006900320062>]TJ +/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<00620069001C00600069>]TJ +1 0 0 1 36.091 801.3339 Tm [<0068>-525<00620069003200540054003200600062>]TJ +1 0 0 1 46.0537 786.9064 Tm [<0036>-525<002B003F0032002B0046>]TJ +1 0 0 1 46.0537 772.4789 Tm [<0036>-525<002B0051002F00320062>]TJ +1 0 0 1 46.0537 758.0514 Tm [<0036>-525<00370032001C0069006D006000320062>]TJ +1 0 0 1 46.0537 743.6239 Tm [<0036>-525<003B004800760054003F0062>]TJ +1 0 0 1 46.0537 729.1964 Tm [<0036>-525<004B003200620062001C003B0032>]TJ +1 0 0 1 46.0537 714.7689 Tm [<0036>-525<004B003200620062001C003B00320062>]TJ +1 0 0 1 46.0537 700.3414 Tm [<0036>-525<004D0051003700620069003200540062>]TJ +1 0 0 1 46.0537 685.9139 Tm [<0036>-525<00600032003B00420062006900320060>]TJ +1 0 0 1 338.4846 815.7614 Tm [<0036>-525<00600032006200320069>]TJ +1 0 0 1 338.4846 801.3339 Tm [<0036>-525<00620069001C00600069>]TJ +1 0 0 1 338.4846 786.9064 Tm [<0036>-525<0062006900510054>]TJ +1 0 0 1 328.522 772.4789 Tm [<0036>-525<0062006900510054>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<006D004D006200320069001C00690069006000420023006D00690032>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 758.0514 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<007000420062006D001C0048004200780032002300510074>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<006D004D006200320069001C00690069006000420023006D006900320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 743.6239 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<0072003F001C0069002B0051002F00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 729.1964 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0072003F001C0069006200420069002B0051002F00320062>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<007000420062006D001C0048004200780032002300510074>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 729.1964 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<0072003F001C0069002B0051002F00320062>]TJ /F1 11.955168 Tf 1 0 0 1 462.9181 714.7689 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0072006000420069001C002300480032006E006200540032002B>]TJ -/F1 11.955168 Tf 1 0 0 1 462.9181 700.3414 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0072003F001C0069006200420069002B0051002F00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 700.3414 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<0072006000420069001C002300480032006E006200540032002B>]TJ +/F1 11.955168 Tf 1 0 0 1 462.9181 685.9139 Tm [<0037006D004D002B006900420051004D>]TJ ET endstream endobj @@ -12478,7 +12514,7 @@ endobj endobj 1225 0 obj -<> +<> stream 0 g 0 G 0 g 0 G @@ -12520,40 +12556,48 @@ BT /F1 11.955168 Tf 1 0 0 1 95.1695 406.8041 Tm [<0069001C002300480032>]TJ /F50 9.96264 Tf 1 0 0 1 36.091 392.3766 Tm [<0036>-525<003F001C004D002F004800320060>]TJ 1 0 0 1 36.091 377.9491 Tm [<0036>-525<005400600051002B003200620062>]TJ -1 0 0 1 328.522 767.4915 Tm [<0036>-525<006200320069>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 753.064 Tm [<003F0054001C002B0046>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 753.064 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 738.6365 Tm [<00420069001C00480042002B0062>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 738.6365 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 724.209 Tm [<0036>-525<003700510060002B00320070001C00600042001C004D0069>]TJ -1 0 0 1 328.522 709.7815 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 695.354 Tm [<0036>-525<00600032006200320069>]TJ -1 0 0 1 328.522 680.9265 Tm [<0036>-525<006200320069>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 666.499 Tm [<004600320060004D0062>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 666.499 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 652.0715 Tm [<002E>-525<0037001C002B0069005100600062>]TJ -1 0 0 1 328.522 637.644 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 623.2165 Tm [<0022>-525<004600320032005400480042003B001C0069006D00600032>]TJ -1 0 0 1 328.522 608.789 Tm [<0022>-525<004600320032005400690051003B00320069003F00320060>]TJ -1 0 0 1 328.522 594.3615 Tm [<002E>-525<004B001C005400540042004D003B>]TJ -1 0 0 1 328.522 579.934 Tm [<0036>-525<006200320069>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 565.5065 Tm [<004B001C0060003B0042004D0062>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 565.5065 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 551.079 Tm [<0036>-525<00370042004D001C0048003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 536.6515 Tm [<0036>-525<003B004800510023001C0048003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 522.224 Tm [<0036>-525<00480051002B001C0048003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 507.7966 Tm [<0036>-525<0062001C00700032>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 493.3691 Tm [<00620054001C002B0042004D003B0062>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 493.3691 Tm [<0069001C002300480032>]TJ -/F50 9.96264 Tf 1 0 0 1 328.522 478.9416 Tm [<004C>-525<001C00690069006000420023006D00690032>]TJ +1 0 0 1 36.091 363.5216 Tm [<0036>-525<006200320069>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 349.0941 Tm [<003F0054001C002B0046>]TJ +/F1 11.955168 Tf 1 0 0 1 95.1695 349.0941 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 14.1732 334.6666 Tm [<00420069001C00480042002B0062>]TJ +/F1 11.955168 Tf 1 0 0 1 95.1695 334.6666 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 767.4915 Tm [<0036>-525<003700510060002B00320070001C00600042001C004D0069>]TJ +1 0 0 1 328.522 753.064 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 738.6365 Tm [<0036>-525<00600032006200320069>]TJ +1 0 0 1 328.522 724.209 Tm [<0036>-525<006200320069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 709.7815 Tm [<004600320060004D0062>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 709.7815 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 695.354 Tm [<002E>-525<0037001C002B0069005100600062>]TJ +1 0 0 1 328.522 680.9265 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 666.499 Tm [<0022>-525<004600320032005400480042003B001C0069006D00600032>]TJ +1 0 0 1 328.522 652.0715 Tm [<0022>-525<004600320032005400690051003B00320069003F00320060>]TJ +1 0 0 1 328.522 637.644 Tm [<002E>-525<004B001C005400540042004D003B>]TJ +1 0 0 1 328.522 623.2165 Tm [<0036>-525<006200320069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 608.789 Tm [<004B001C0060003B0042004D0062>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 608.789 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 594.3615 Tm [<0036>-525<00370042004D001C0048003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 579.934 Tm [<0036>-525<003B004800510023001C0048003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 565.5065 Tm [<0036>-525<00480051002B001C0048003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 551.079 Tm [<0036>-525<0062001C00700032>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 536.6515 Tm [<0054001C0060001C003B0060001C0054003F0062>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 536.6515 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 522.224 Tm [<004C>-525<001C00690069006000420023006D00690032>]TJ +1 0 0 1 328.522 507.7966 Tm [<0068>-525<002F0060005100540054003200600062>]TJ +1 0 0 1 338.4846 493.3691 Tm [<0036>-525<003700600032003200780032>]TJ +1 0 0 1 338.4846 478.9416 Tm [<0036>-525<006200320069>]TJ 1 0 0 1 328.522 464.5141 Tm [<0036>-525<003F001C004D002F004800320060>]TJ -1 0 0 1 328.522 450.0866 Tm [<002E>-525<004B001C005400540042004D003B>]TJ -1 0 0 1 328.522 435.6591 Tm [<0036>-525<006200320069>]TJ -1 0 0 1 328.522 421.2316 Tm [<0036>-525<006200320069006D0054>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 406.8041 Tm [<00690051004D0051002F00320062>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 406.8041 Tm [<0037006D004D002B006900420051004D>]TJ -/F47 11.955168 Tf 1 0 0 1 306.6042 392.3766 Tm [<00700054001C002B0046>]TJ -/F1 11.955168 Tf 1 0 0 1 387.6005 392.3766 Tm [<0037006D004D002B006900420051004D>]TJ +1 0 0 1 328.522 450.0866 Tm [<0036>-525<006200320069>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 435.6591 Tm [<00620054001C002B0042004D003B0062>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 435.6591 Tm [<0069001C002300480032>]TJ +/F50 9.96264 Tf 1 0 0 1 328.522 421.2316 Tm [<004C>-525<001C00690069006000420023006D00690032>]TJ +1 0 0 1 328.522 406.8041 Tm [<0036>-525<003F001C004D002F004800320060>]TJ +1 0 0 1 328.522 392.3766 Tm [<002E>-525<004B001C005400540042004D003B>]TJ +1 0 0 1 328.522 377.9491 Tm [<0036>-525<006200320069>]TJ +1 0 0 1 328.522 363.5216 Tm [<0036>-525<006200320069006D0054>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 349.0941 Tm [<00690051004D0051002F00320062>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 349.0941 Tm [<0037006D004D002B006900420051004D>]TJ +/F47 11.955168 Tf 1 0 0 1 306.6042 334.6666 Tm [<00700054001C002B0046>]TJ +/F1 11.955168 Tf 1 0 0 1 387.6005 334.6666 Tm [<0037006D004D002B006900420051004D>]TJ ET endstream endobj @@ -13805,7 +13849,7 @@ endobj <> stream - + @@ -13825,17 +13869,17 @@ stream s-inf-03 - 2011.10.28 22:37 + 2011.11.02 20:16 www.pragma-ade.com - 2011.10.28 22:32 - s-inf-03.2011-10-28T22:37:53+02:00 + 2011.11.02 20:10 + s-inf-03.2011-11-02T20:16:00+01:00 This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1 - 2011-10-28T22:37:53+02:00 - ConTeXt - 2011.10.28 22:32 - 2011-10-28T22:37:53+02:00 - 2011-10-28T22:37:53+02:00 + 2011-11-02T20:16:00+01:00 + ConTeXt - 2011.11.02 20:10 + 2011-11-02T20:16:00+01:00 + 2011-11-02T20:16:00+01:00 @@ -13843,8 +13887,8 @@ stream False - uuid:7725c0b3-408e-aa6c-d405-15011d0db3c5 - uuid:337377c5-4342-9fa5-ead3-0e8b9f75e4e5 + uuid:92f913e9-4bbe-a0aa-9581-e61dd2c9da19 + uuid:a19762bb-448d-9249-a347-817dac6bdc53 @@ -14678,7 +14722,7 @@ endobj endobj 1438 0 obj << -/ConTeXt.Url (www.pragma-ade.com) /Creator /ConTeXt.Jobname (s-inf-03) /Author /Trapped /False /CreationDate (D:20111028223753+02'00') /Producer (LuaTeX-0.71.0) /Title /ConTeXt.Time (2011.10.28 22:37) /ID (s-inf-03.2011-10-28T22:37:53+02:00) /ConTeXt.Version (2011.10.28 22:32) /ModDate (D:20111028223753+02'00') /Subject +/ConTeXt.Url (www.pragma-ade.com) /Creator /ConTeXt.Jobname (s-inf-03) /Author /Trapped /False /CreationDate (D:20111102201600+01'00') /Producer (LuaTeX-0.71.0) /Title /ConTeXt.Time (2011.11.02 20:16) /ID (s-inf-03.2011-11-02T20:16:00+01:00) /ConTeXt.Version (2011.11.02 20:10) /ModDate (D:20111102201600+01'00') /Subject /PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>> endobj xref @@ -14796,7 +14840,7 @@ xref 0000011811 00000 n 0000004152 00000 n 0000024538 00000 n -0000801698 00000 n +0000804790 00000 n 0000012800 00000 n 0000012924 00000 n 0000013049 00000 n @@ -14891,7 +14935,7 @@ xref 0000024160 00000 n 0000024286 00000 n 0000024412 00000 n -0000802030 00000 n +0000805122 00000 n 0000012029 00000 n 0000024637 00000 n 0000024682 00000 n @@ -14903,7 +14947,7 @@ xref 0000042582 00000 n 0000024878 00000 n 0000043371 00000 n -0000791626 00000 n +0000794718 00000 n 0000043495 00000 n 0000051914 00000 n 0000043619 00000 n @@ -15021,7 +15065,7 @@ xref 0000075163 00000 n 0000075287 00000 n 0000075324 00000 n -0000784419 00000 n +0000787511 00000 n 0000074996 00000 n 0000088659 00000 n 0000075446 00000 n @@ -15073,7 +15117,7 @@ xref 0000098538 00000 n 0000098575 00000 n 0000098247 00000 n -0000105659 00000 n +0000105861 00000 n 0000098685 00000 n 0000101566 00000 n 0000098738 00000 n @@ -15081,1049 +15125,1049 @@ xref 0000101368 00000 n 0000101492 00000 n 0000101529 00000 n -0000802174 00000 n +0000805266 00000 n 0000101201 00000 n -0000111045 00000 n +0000111247 00000 n 0000101651 00000 n -0000106242 00000 n +0000106444 00000 n 0000101704 00000 n -0000105920 00000 n -0000106044 00000 n -0000106168 00000 n -0000106205 00000 n -0000105877 00000 n -0000112666 00000 n -0000106327 00000 n -0000111628 00000 n -0000106380 00000 n -0000111306 00000 n -0000111430 00000 n -0000111554 00000 n -0000111591 00000 n -0000111263 00000 n -0000114976 00000 n -0000111701 00000 n -0000113249 00000 n -0000111754 00000 n -0000112927 00000 n -0000113051 00000 n -0000113175 00000 n -0000113212 00000 n -0000112884 00000 n -0000116521 00000 n -0000113322 00000 n -0000115559 00000 n -0000113375 00000 n -0000115237 00000 n -0000115361 00000 n -0000115485 00000 n -0000115522 00000 n -0000115194 00000 n -0000129075 00000 n -0000115632 00000 n -0000117104 00000 n -0000115685 00000 n -0000116782 00000 n -0000116906 00000 n -0000117030 00000 n -0000117067 00000 n -0000116739 00000 n -0000131952 00000 n -0000117177 00000 n -0000129658 00000 n -0000117230 00000 n -0000129336 00000 n -0000129460 00000 n -0000129584 00000 n -0000129621 00000 n -0000129293 00000 n -0000152519 00000 n -0000129743 00000 n -0000132535 00000 n -0000129796 00000 n -0000132213 00000 n -0000132337 00000 n -0000132461 00000 n -0000132498 00000 n -0000132170 00000 n -0000174384 00000 n -0000132608 00000 n -0000153102 00000 n -0000132661 00000 n -0000152780 00000 n -0000152904 00000 n -0000153028 00000 n -0000153065 00000 n -0000152737 00000 n -0000196674 00000 n -0000153175 00000 n -0000174885 00000 n -0000153228 00000 n -0000174637 00000 n -0000174761 00000 n -0000174602 00000 n -0000216981 00000 n -0000174970 00000 n -0000197175 00000 n -0000175023 00000 n -0000196927 00000 n -0000197051 00000 n -0000802318 00000 n -0000196892 00000 n -0000219259 00000 n -0000197248 00000 n -0000217482 00000 n -0000197301 00000 n -0000217234 00000 n -0000217358 00000 n -0000217199 00000 n -0000227706 00000 n -0000217555 00000 n -0000219842 00000 n -0000217608 00000 n -0000219520 00000 n -0000219644 00000 n -0000219768 00000 n -0000219805 00000 n -0000219477 00000 n -0000230088 00000 n -0000219915 00000 n -0000228289 00000 n -0000219968 00000 n -0000227967 00000 n -0000228091 00000 n -0000228215 00000 n -0000228252 00000 n -0000227924 00000 n -0000233578 00000 n -0000228362 00000 n -0000230671 00000 n -0000228415 00000 n -0000230349 00000 n -0000230473 00000 n -0000230597 00000 n -0000230634 00000 n -0000230306 00000 n -0000236419 00000 n -0000230744 00000 n -0000234161 00000 n -0000230797 00000 n -0000233839 00000 n -0000233963 00000 n -0000234087 00000 n -0000234124 00000 n -0000233796 00000 n -0000238733 00000 n -0000234234 00000 n -0000237002 00000 n -0000234287 00000 n -0000236680 00000 n -0000236804 00000 n -0000236928 00000 n -0000236965 00000 n -0000236637 00000 n -0000241034 00000 n -0000237075 00000 n -0000239316 00000 n -0000237128 00000 n -0000238994 00000 n -0000239118 00000 n -0000239242 00000 n -0000239279 00000 n -0000238951 00000 n -0000247439 00000 n -0000239389 00000 n -0000241617 00000 n -0000239442 00000 n -0000241295 00000 n -0000241419 00000 n -0000241543 00000 n -0000241580 00000 n -0000241252 00000 n -0000249819 00000 n -0000241690 00000 n -0000248022 00000 n -0000241743 00000 n -0000247700 00000 n -0000247824 00000 n -0000247948 00000 n -0000247985 00000 n -0000247657 00000 n -0000252137 00000 n -0000248095 00000 n -0000250402 00000 n -0000248148 00000 n -0000250080 00000 n -0000250204 00000 n -0000250328 00000 n -0000250365 00000 n -0000802462 00000 n -0000250037 00000 n -0000261787 00000 n -0000250475 00000 n -0000252720 00000 n -0000250528 00000 n -0000252398 00000 n -0000252522 00000 n -0000252646 00000 n -0000252683 00000 n -0000252355 00000 n -0000268158 00000 n -0000252793 00000 n -0000262370 00000 n -0000252846 00000 n -0000262048 00000 n -0000262172 00000 n -0000262296 00000 n -0000262333 00000 n -0000262005 00000 n -0000271208 00000 n -0000262455 00000 n -0000268741 00000 n -0000262508 00000 n -0000268419 00000 n -0000268543 00000 n -0000268667 00000 n -0000268704 00000 n -0000268376 00000 n -0000274198 00000 n -0000268814 00000 n -0000271791 00000 n -0000268867 00000 n -0000271469 00000 n -0000271593 00000 n -0000271717 00000 n -0000271754 00000 n -0000271426 00000 n -0000276890 00000 n -0000271864 00000 n -0000274781 00000 n -0000271917 00000 n -0000274459 00000 n -0000274583 00000 n -0000274707 00000 n -0000274744 00000 n -0000274416 00000 n -0000286796 00000 n -0000274854 00000 n -0000277473 00000 n -0000274907 00000 n -0000277151 00000 n -0000277275 00000 n -0000277399 00000 n -0000277436 00000 n -0000277108 00000 n -0000297283 00000 n -0000277546 00000 n -0000287379 00000 n -0000277599 00000 n -0000287057 00000 n -0000287181 00000 n -0000287305 00000 n -0000287342 00000 n -0000287014 00000 n -0000307382 00000 n -0000287464 00000 n -0000297784 00000 n -0000287517 00000 n -0000297536 00000 n -0000297660 00000 n -0000297501 00000 n -0000310400 00000 n -0000297869 00000 n -0000307883 00000 n -0000297922 00000 n -0000307635 00000 n +0000106122 00000 n +0000106246 00000 n +0000106370 00000 n +0000106407 00000 n +0000106079 00000 n +0000112868 00000 n +0000106529 00000 n +0000111830 00000 n +0000106582 00000 n +0000111508 00000 n +0000111632 00000 n +0000111756 00000 n +0000111793 00000 n +0000111465 00000 n +0000115178 00000 n +0000111903 00000 n +0000113451 00000 n +0000111956 00000 n +0000113129 00000 n +0000113253 00000 n +0000113377 00000 n +0000113414 00000 n +0000113086 00000 n +0000116723 00000 n +0000113524 00000 n +0000115761 00000 n +0000113577 00000 n +0000115439 00000 n +0000115563 00000 n +0000115687 00000 n +0000115724 00000 n +0000115396 00000 n +0000129277 00000 n +0000115834 00000 n +0000117306 00000 n +0000115887 00000 n +0000116984 00000 n +0000117108 00000 n +0000117232 00000 n +0000117269 00000 n +0000116941 00000 n +0000132154 00000 n +0000117379 00000 n +0000129860 00000 n +0000117432 00000 n +0000129538 00000 n +0000129662 00000 n +0000129786 00000 n +0000129823 00000 n +0000129495 00000 n +0000152721 00000 n +0000129945 00000 n +0000132737 00000 n +0000129998 00000 n +0000132415 00000 n +0000132539 00000 n +0000132663 00000 n +0000132700 00000 n +0000132372 00000 n +0000174617 00000 n +0000132810 00000 n +0000153304 00000 n +0000132863 00000 n +0000152982 00000 n +0000153106 00000 n +0000153230 00000 n +0000153267 00000 n +0000152939 00000 n +0000196799 00000 n +0000153377 00000 n +0000175118 00000 n +0000153430 00000 n +0000174870 00000 n +0000174994 00000 n +0000174835 00000 n +0000217771 00000 n +0000175203 00000 n +0000197300 00000 n +0000175256 00000 n +0000197052 00000 n +0000197176 00000 n +0000805410 00000 n +0000197017 00000 n +0000220049 00000 n +0000197373 00000 n +0000218272 00000 n +0000197426 00000 n +0000218024 00000 n +0000218148 00000 n +0000217989 00000 n +0000228496 00000 n +0000218345 00000 n +0000220632 00000 n +0000218398 00000 n +0000220310 00000 n +0000220434 00000 n +0000220558 00000 n +0000220595 00000 n +0000220267 00000 n +0000230878 00000 n +0000220705 00000 n +0000229079 00000 n +0000220758 00000 n +0000228757 00000 n +0000228881 00000 n +0000229005 00000 n +0000229042 00000 n +0000228714 00000 n +0000234368 00000 n +0000229152 00000 n +0000231461 00000 n +0000229205 00000 n +0000231139 00000 n +0000231263 00000 n +0000231387 00000 n +0000231424 00000 n +0000231096 00000 n +0000237209 00000 n +0000231534 00000 n +0000234951 00000 n +0000231587 00000 n +0000234629 00000 n +0000234753 00000 n +0000234877 00000 n +0000234914 00000 n +0000234586 00000 n +0000239523 00000 n +0000235024 00000 n +0000237792 00000 n +0000235077 00000 n +0000237470 00000 n +0000237594 00000 n +0000237718 00000 n +0000237755 00000 n +0000237427 00000 n +0000241824 00000 n +0000237865 00000 n +0000240106 00000 n +0000237918 00000 n +0000239784 00000 n +0000239908 00000 n +0000240032 00000 n +0000240069 00000 n +0000239741 00000 n +0000248229 00000 n +0000240179 00000 n +0000242407 00000 n +0000240232 00000 n +0000242085 00000 n +0000242209 00000 n +0000242333 00000 n +0000242370 00000 n +0000242042 00000 n +0000250609 00000 n +0000242480 00000 n +0000248812 00000 n +0000242533 00000 n +0000248490 00000 n +0000248614 00000 n +0000248738 00000 n +0000248775 00000 n +0000248447 00000 n +0000252927 00000 n +0000248885 00000 n +0000251192 00000 n +0000248938 00000 n +0000250870 00000 n +0000250994 00000 n +0000251118 00000 n +0000251155 00000 n +0000805554 00000 n +0000250827 00000 n +0000262577 00000 n +0000251265 00000 n +0000253510 00000 n +0000251318 00000 n +0000253188 00000 n +0000253312 00000 n +0000253436 00000 n +0000253473 00000 n +0000253145 00000 n +0000268948 00000 n +0000253583 00000 n +0000263160 00000 n +0000253636 00000 n +0000262838 00000 n +0000262962 00000 n +0000263086 00000 n +0000263123 00000 n +0000262795 00000 n +0000271998 00000 n +0000263245 00000 n +0000269531 00000 n +0000263298 00000 n +0000269209 00000 n +0000269333 00000 n +0000269457 00000 n +0000269494 00000 n +0000269166 00000 n +0000274988 00000 n +0000269604 00000 n +0000272581 00000 n +0000269657 00000 n +0000272259 00000 n +0000272383 00000 n +0000272507 00000 n +0000272544 00000 n +0000272216 00000 n +0000277680 00000 n +0000272654 00000 n +0000275571 00000 n +0000272707 00000 n +0000275249 00000 n +0000275373 00000 n +0000275497 00000 n +0000275534 00000 n +0000275206 00000 n +0000287554 00000 n +0000275644 00000 n +0000278263 00000 n +0000275697 00000 n +0000277941 00000 n +0000278065 00000 n +0000278189 00000 n +0000278226 00000 n +0000277898 00000 n +0000298041 00000 n +0000278336 00000 n +0000288137 00000 n +0000278389 00000 n +0000287815 00000 n +0000287939 00000 n +0000288063 00000 n +0000288100 00000 n +0000287772 00000 n +0000307506 00000 n +0000288222 00000 n +0000298542 00000 n +0000288275 00000 n +0000298294 00000 n +0000298418 00000 n +0000298259 00000 n +0000312824 00000 n +0000298627 00000 n +0000308007 00000 n +0000298680 00000 n 0000307759 00000 n -0000307600 00000 n -0000311881 00000 n -0000307968 00000 n -0000310901 00000 n -0000308021 00000 n -0000310653 00000 n -0000310777 00000 n -0000802606 00000 n -0000310618 00000 n -0000315677 00000 n -0000310986 00000 n -0000312464 00000 n -0000311039 00000 n -0000312142 00000 n -0000312266 00000 n -0000312390 00000 n -0000312427 00000 n -0000312099 00000 n -0000321178 00000 n -0000312537 00000 n -0000316260 00000 n -0000312590 00000 n -0000315938 00000 n -0000316062 00000 n -0000316186 00000 n -0000316223 00000 n -0000315895 00000 n -0000328071 00000 n -0000316333 00000 n -0000321761 00000 n -0000316386 00000 n -0000321439 00000 n -0000321563 00000 n -0000321687 00000 n -0000321724 00000 n -0000321396 00000 n -0000335171 00000 n -0000321846 00000 n -0000328654 00000 n -0000321899 00000 n -0000328332 00000 n -0000328456 00000 n -0000328580 00000 n -0000328617 00000 n -0000328289 00000 n -0000342877 00000 n -0000328739 00000 n -0000335754 00000 n -0000328792 00000 n -0000335432 00000 n -0000335556 00000 n -0000335680 00000 n -0000335717 00000 n -0000335389 00000 n -0000346353 00000 n -0000335839 00000 n -0000343460 00000 n -0000335892 00000 n -0000343138 00000 n -0000343262 00000 n -0000343386 00000 n -0000343423 00000 n -0000343095 00000 n -0000352650 00000 n -0000343545 00000 n -0000346936 00000 n -0000343598 00000 n -0000346614 00000 n -0000346738 00000 n -0000346862 00000 n -0000346899 00000 n -0000346571 00000 n -0000354066 00000 n -0000347009 00000 n -0000353233 00000 n -0000347062 00000 n -0000352911 00000 n -0000353035 00000 n -0000353159 00000 n -0000353196 00000 n -0000352868 00000 n -0000357858 00000 n -0000353318 00000 n -0000354649 00000 n -0000353371 00000 n -0000354327 00000 n -0000354451 00000 n -0000354575 00000 n -0000354612 00000 n -0000354284 00000 n -0000359966 00000 n -0000354734 00000 n -0000358441 00000 n -0000354787 00000 n -0000358119 00000 n -0000358243 00000 n -0000358367 00000 n -0000358404 00000 n -0000802750 00000 n -0000358076 00000 n -0000364912 00000 n -0000358514 00000 n -0000360549 00000 n -0000358567 00000 n -0000360227 00000 n -0000360351 00000 n -0000360475 00000 n -0000360512 00000 n -0000360184 00000 n -0000372737 00000 n -0000360622 00000 n -0000365495 00000 n -0000360675 00000 n -0000365173 00000 n -0000365297 00000 n -0000365421 00000 n -0000365458 00000 n -0000365130 00000 n -0000387213 00000 n -0000365568 00000 n -0000373320 00000 n -0000365621 00000 n -0000372998 00000 n -0000373122 00000 n -0000373246 00000 n -0000373283 00000 n -0000372955 00000 n -0000395537 00000 n -0000373393 00000 n -0000387796 00000 n -0000373446 00000 n -0000387474 00000 n -0000387598 00000 n -0000387722 00000 n -0000387759 00000 n -0000387431 00000 n -0000398727 00000 n -0000387881 00000 n -0000396120 00000 n -0000387934 00000 n -0000395798 00000 n -0000395922 00000 n -0000396046 00000 n -0000396083 00000 n -0000395755 00000 n -0000403984 00000 n -0000396193 00000 n -0000399310 00000 n -0000396246 00000 n -0000398988 00000 n -0000399112 00000 n -0000399236 00000 n -0000399273 00000 n -0000398945 00000 n -0000406375 00000 n -0000399395 00000 n -0000404567 00000 n -0000399448 00000 n -0000404245 00000 n -0000404369 00000 n -0000404493 00000 n -0000404530 00000 n -0000404202 00000 n -0000423466 00000 n -0000404640 00000 n -0000406958 00000 n -0000404693 00000 n -0000406636 00000 n -0000406760 00000 n -0000406884 00000 n -0000406921 00000 n -0000406593 00000 n -0000430821 00000 n -0000407031 00000 n -0000424049 00000 n -0000407084 00000 n -0000423727 00000 n -0000423851 00000 n -0000423975 00000 n -0000424012 00000 n -0000423684 00000 n -0000438915 00000 n -0000424134 00000 n -0000431404 00000 n -0000424187 00000 n -0000431082 00000 n -0000431206 00000 n -0000431330 00000 n -0000431367 00000 n -0000802894 00000 n -0000431039 00000 n -0000441343 00000 n -0000431477 00000 n -0000439498 00000 n -0000431530 00000 n -0000439176 00000 n -0000439300 00000 n -0000439424 00000 n -0000439461 00000 n -0000439133 00000 n -0000453246 00000 n -0000439583 00000 n -0000441926 00000 n -0000439636 00000 n -0000441604 00000 n -0000441728 00000 n -0000441852 00000 n -0000441889 00000 n -0000441561 00000 n -0000457642 00000 n -0000441999 00000 n -0000453829 00000 n -0000442052 00000 n -0000453507 00000 n -0000453631 00000 n -0000453755 00000 n -0000453792 00000 n -0000453464 00000 n -0000459388 00000 n -0000453914 00000 n -0000458225 00000 n -0000453967 00000 n -0000457903 00000 n -0000458027 00000 n -0000458151 00000 n -0000458188 00000 n -0000457860 00000 n -0000462249 00000 n -0000458310 00000 n -0000459971 00000 n -0000458363 00000 n -0000459649 00000 n -0000459773 00000 n -0000459897 00000 n -0000459934 00000 n -0000459606 00000 n -0000470933 00000 n -0000460044 00000 n -0000462832 00000 n -0000460097 00000 n -0000462510 00000 n -0000462634 00000 n -0000462758 00000 n -0000462795 00000 n -0000462467 00000 n -0000485739 00000 n -0000462917 00000 n -0000471516 00000 n -0000462970 00000 n -0000471194 00000 n -0000471318 00000 n -0000471442 00000 n -0000471479 00000 n -0000471151 00000 n -0000498936 00000 n -0000471589 00000 n -0000486322 00000 n -0000471642 00000 n -0000486000 00000 n -0000486124 00000 n -0000486248 00000 n -0000486285 00000 n -0000485957 00000 n -0000501856 00000 n -0000486407 00000 n -0000499437 00000 n -0000486460 00000 n -0000499189 00000 n -0000499313 00000 n -0000499154 00000 n -0000508030 00000 n -0000499522 00000 n -0000502357 00000 n -0000499575 00000 n -0000502109 00000 n -0000502233 00000 n -0000803038 00000 n -0000502074 00000 n -0000515070 00000 n -0000502442 00000 n -0000508613 00000 n -0000502495 00000 n -0000508291 00000 n -0000508415 00000 n -0000508539 00000 n -0000508576 00000 n -0000508248 00000 n -0000518240 00000 n -0000508686 00000 n -0000515653 00000 n -0000508739 00000 n -0000515331 00000 n -0000515455 00000 n -0000515579 00000 n -0000515616 00000 n -0000515288 00000 n -0000522174 00000 n -0000515726 00000 n -0000518823 00000 n -0000515779 00000 n -0000518501 00000 n -0000518625 00000 n -0000518749 00000 n -0000518786 00000 n -0000518458 00000 n -0000523363 00000 n -0000518896 00000 n -0000522757 00000 n -0000518949 00000 n -0000522435 00000 n -0000522559 00000 n -0000522683 00000 n -0000522720 00000 n -0000522392 00000 n -0000525093 00000 n -0000522830 00000 n -0000523946 00000 n -0000522883 00000 n -0000523624 00000 n -0000523748 00000 n -0000523872 00000 n -0000523909 00000 n -0000523581 00000 n -0000527093 00000 n -0000524019 00000 n -0000525676 00000 n -0000524072 00000 n -0000525354 00000 n -0000525478 00000 n -0000525602 00000 n -0000525639 00000 n -0000525311 00000 n -0000543786 00000 n -0000525749 00000 n -0000527676 00000 n -0000525802 00000 n -0000527354 00000 n -0000527478 00000 n -0000527602 00000 n -0000527639 00000 n -0000527311 00000 n -0000554774 00000 n -0000527749 00000 n -0000544372 00000 n -0000527802 00000 n -0000544049 00000 n -0000544173 00000 n -0000544297 00000 n -0000544334 00000 n -0000544005 00000 n -0000557740 00000 n -0000544457 00000 n -0000555284 00000 n -0000544512 00000 n -0000555033 00000 n -0000555158 00000 n -0000554995 00000 n -0000559600 00000 n -0000555370 00000 n -0000558338 00000 n -0000555425 00000 n -0000558009 00000 n -0000558134 00000 n -0000558260 00000 n -0000558299 00000 n -0000803182 00000 n -0000557963 00000 n -0000561216 00000 n -0000558412 00000 n -0000560199 00000 n -0000558467 00000 n -0000559869 00000 n -0000559995 00000 n -0000560121 00000 n -0000560160 00000 n -0000559823 00000 n -0000564827 00000 n -0000560273 00000 n -0000561815 00000 n -0000560328 00000 n -0000561485 00000 n -0000561611 00000 n -0000561737 00000 n -0000561776 00000 n -0000561439 00000 n -0000567263 00000 n -0000561889 00000 n -0000565426 00000 n -0000561944 00000 n -0000565096 00000 n -0000565222 00000 n -0000565348 00000 n -0000565387 00000 n -0000565050 00000 n -0000575430 00000 n -0000565500 00000 n -0000567862 00000 n -0000565555 00000 n -0000567532 00000 n -0000567658 00000 n -0000567784 00000 n -0000567823 00000 n -0000567486 00000 n -0000579045 00000 n -0000567936 00000 n -0000576029 00000 n -0000567991 00000 n -0000575699 00000 n -0000575825 00000 n -0000575951 00000 n -0000575990 00000 n -0000575653 00000 n -0000583478 00000 n -0000576115 00000 n -0000579644 00000 n -0000576170 00000 n -0000579314 00000 n -0000579440 00000 n -0000579566 00000 n -0000579605 00000 n -0000579268 00000 n -0000584745 00000 n -0000579730 00000 n -0000584077 00000 n -0000579785 00000 n -0000583747 00000 n -0000583873 00000 n -0000583999 00000 n -0000584038 00000 n -0000583701 00000 n -0000587531 00000 n -0000584151 00000 n -0000585344 00000 n -0000584206 00000 n -0000585014 00000 n -0000585140 00000 n -0000585266 00000 n -0000585305 00000 n -0000584968 00000 n -0000590052 00000 n -0000585418 00000 n -0000588130 00000 n -0000585473 00000 n -0000587800 00000 n -0000587926 00000 n -0000588052 00000 n -0000588091 00000 n -0000587754 00000 n -0000598459 00000 n -0000588204 00000 n -0000590651 00000 n -0000588259 00000 n -0000590321 00000 n -0000590447 00000 n -0000590573 00000 n -0000590612 00000 n -0000803337 00000 n -0000590275 00000 n -0000608109 00000 n -0000590725 00000 n -0000599058 00000 n -0000590780 00000 n -0000598728 00000 n -0000598854 00000 n -0000598980 00000 n -0000599019 00000 n -0000598682 00000 n -0000617978 00000 n -0000599132 00000 n -0000608708 00000 n -0000599187 00000 n -0000608378 00000 n -0000608504 00000 n -0000608630 00000 n -0000608669 00000 n -0000608332 00000 n -0000628042 00000 n -0000608794 00000 n -0000618491 00000 n -0000608849 00000 n -0000618239 00000 n -0000618365 00000 n -0000618201 00000 n -0000635733 00000 n -0000618577 00000 n -0000628555 00000 n -0000618632 00000 n -0000628303 00000 n -0000628429 00000 n -0000628265 00000 n -0000646037 00000 n -0000628641 00000 n -0000636246 00000 n -0000628696 00000 n -0000635994 00000 n -0000636120 00000 n -0000635956 00000 n -0000664879 00000 n -0000636332 00000 n -0000646636 00000 n -0000636387 00000 n -0000646306 00000 n -0000646432 00000 n -0000646558 00000 n -0000646597 00000 n -0000646260 00000 n -0000668584 00000 n -0000646710 00000 n -0000665478 00000 n -0000646765 00000 n -0000665148 00000 n -0000665274 00000 n -0000665400 00000 n -0000665439 00000 n -0000665102 00000 n -0000670018 00000 n -0000665552 00000 n -0000669183 00000 n -0000665607 00000 n -0000668853 00000 n -0000668979 00000 n -0000669105 00000 n -0000669144 00000 n -0000668807 00000 n -0000673068 00000 n -0000669257 00000 n -0000670617 00000 n -0000669312 00000 n -0000670287 00000 n -0000670413 00000 n -0000670539 00000 n -0000670578 00000 n -0000670241 00000 n -0000676879 00000 n -0000670691 00000 n -0000673667 00000 n -0000670746 00000 n -0000673337 00000 n -0000673463 00000 n -0000673589 00000 n -0000673628 00000 n -0000803492 00000 n -0000673291 00000 n -0000680184 00000 n -0000673741 00000 n -0000677478 00000 n -0000673796 00000 n -0000677148 00000 n -0000677274 00000 n -0000677400 00000 n -0000677439 00000 n -0000677102 00000 n -0000682894 00000 n -0000677564 00000 n -0000680783 00000 n -0000677619 00000 n -0000680453 00000 n -0000680579 00000 n -0000680705 00000 n -0000680744 00000 n -0000680407 00000 n -0000689305 00000 n -0000680869 00000 n -0000683493 00000 n -0000680924 00000 n -0000683163 00000 n -0000683289 00000 n -0000683415 00000 n -0000683454 00000 n -0000683117 00000 n -0000697691 00000 n -0000683567 00000 n -0000689904 00000 n -0000683622 00000 n -0000689574 00000 n -0000689700 00000 n -0000689826 00000 n -0000689865 00000 n -0000689528 00000 n -0000699905 00000 n -0000689990 00000 n -0000698290 00000 n -0000690045 00000 n -0000697960 00000 n -0000698086 00000 n -0000698212 00000 n -0000698251 00000 n -0000697914 00000 n -0000709871 00000 n -0000698376 00000 n -0000700504 00000 n -0000698431 00000 n -0000700174 00000 n -0000700300 00000 n -0000700426 00000 n -0000700465 00000 n -0000700128 00000 n -0000715771 00000 n -0000700578 00000 n -0000710470 00000 n -0000700633 00000 n -0000710140 00000 n -0000710266 00000 n -0000710392 00000 n -0000710431 00000 n -0000710094 00000 n -0000728612 00000 n -0000710556 00000 n -0000716370 00000 n -0000710611 00000 n -0000716040 00000 n -0000716166 00000 n -0000716292 00000 n -0000716331 00000 n -0000715994 00000 n -0000748523 00000 n -0000716444 00000 n -0000729211 00000 n -0000716499 00000 n -0000728881 00000 n -0000729007 00000 n -0000729133 00000 n -0000729172 00000 n -0000728835 00000 n -0000751213 00000 n -0000729297 00000 n -0000749036 00000 n -0000729352 00000 n -0000748784 00000 n -0000748910 00000 n -0000803647 00000 n -0000748746 00000 n -0000753802 00000 n -0000749122 00000 n -0000751812 00000 n -0000749177 00000 n -0000751482 00000 n -0000751608 00000 n -0000751734 00000 n -0000751773 00000 n -0000751436 00000 n -0000756063 00000 n -0000751886 00000 n -0000754401 00000 n -0000751941 00000 n -0000754071 00000 n -0000754197 00000 n -0000754323 00000 n -0000754362 00000 n -0000754025 00000 n -0000756536 00000 n -0000754475 00000 n -0000756332 00000 n -0000756458 00000 n -0000756497 00000 n -0000756286 00000 n -0000756610 00000 n -0000775564 00000 n -0000759062 00000 n -0000759219 00000 n -0000759399 00000 n -0000759571 00000 n -0000759735 00000 n -0000759895 00000 n -0000760063 00000 n -0000760231 00000 n -0000760403 00000 n -0000760567 00000 n -0000760748 00000 n -0000760925 00000 n -0000761098 00000 n -0000761279 00000 n -0000761456 00000 n -0000761629 00000 n -0000761810 00000 n -0000761991 00000 n -0000762176 00000 n -0000762345 00000 n -0000762498 00000 n -0000762679 00000 n -0000762852 00000 n -0000763037 00000 n -0000763202 00000 n -0000763387 00000 n -0000763556 00000 n -0000763721 00000 n -0000763886 00000 n -0000764051 00000 n -0000764240 00000 n -0000764401 00000 n -0000764566 00000 n -0000764727 00000 n -0000764916 00000 n -0000765097 00000 n -0000765254 00000 n -0000765407 00000 n -0000765572 00000 n -0000765749 00000 n -0000765918 00000 n -0000766079 00000 n -0000766256 00000 n -0000766409 00000 n -0000766566 00000 n -0000766723 00000 n -0000766888 00000 n -0000767057 00000 n -0000767218 00000 n -0000767383 00000 n -0000767540 00000 n -0000767705 00000 n -0000767890 00000 n -0000768051 00000 n -0000768224 00000 n -0000768389 00000 n -0000768558 00000 n -0000768719 00000 n -0000768884 00000 n -0000769045 00000 n -0000769210 00000 n -0000769367 00000 n -0000769544 00000 n -0000769705 00000 n -0000769874 00000 n -0000770055 00000 n -0000770224 00000 n -0000770401 00000 n -0000770570 00000 n -0000770723 00000 n -0000770924 00000 n -0000771121 00000 n -0000771306 00000 n -0000771479 00000 n -0000771648 00000 n -0000771829 00000 n -0000772002 00000 n -0000772171 00000 n -0000772340 00000 n -0000772513 00000 n -0000772694 00000 n -0000772863 00000 n -0000773024 00000 n -0000773209 00000 n -0000773378 00000 n -0000773547 00000 n -0000773712 00000 n -0000773881 00000 n -0000774054 00000 n -0000774239 00000 n -0000774416 00000 n -0000774569 00000 n -0000774746 00000 n -0000774931 00000 n -0000775084 00000 n -0000775253 00000 n -0000775414 00000 n -0000775646 00000 n -0000775940 00000 n -0000776015 00000 n -0000782736 00000 n -0000782959 00000 n -0000784563 00000 n -0000784753 00000 n -0000785009 00000 n -0000785084 00000 n -0000790132 00000 n -0000790355 00000 n -0000791770 00000 n -0000791960 00000 n -0000792285 00000 n -0000792360 00000 n -0000799895 00000 n -0000800117 00000 n -0000801841 00000 n -0000803747 00000 n -0000803895 00000 n -0000803978 00000 n -0000804046 00000 n -0000804651 00000 n -0000805248 00000 n -0000805874 00000 n -0000806518 00000 n -0000807087 00000 n -0000807764 00000 n -0000807846 00000 n -0000807966 00000 n -0000808004 00000 n -0000808187 00000 n +0000307883 00000 n +0000307724 00000 n +0000314305 00000 n +0000308092 00000 n +0000313325 00000 n +0000308145 00000 n +0000313077 00000 n +0000313201 00000 n +0000805698 00000 n +0000313042 00000 n +0000318101 00000 n +0000313410 00000 n +0000314888 00000 n +0000313463 00000 n +0000314566 00000 n +0000314690 00000 n +0000314814 00000 n +0000314851 00000 n +0000314523 00000 n +0000323602 00000 n +0000314961 00000 n +0000318684 00000 n +0000315014 00000 n +0000318362 00000 n +0000318486 00000 n +0000318610 00000 n +0000318647 00000 n +0000318319 00000 n +0000330495 00000 n +0000318757 00000 n +0000324185 00000 n +0000318810 00000 n +0000323863 00000 n +0000323987 00000 n +0000324111 00000 n +0000324148 00000 n +0000323820 00000 n +0000337595 00000 n +0000324270 00000 n +0000331078 00000 n +0000324323 00000 n +0000330756 00000 n +0000330880 00000 n +0000331004 00000 n +0000331041 00000 n +0000330713 00000 n +0000345301 00000 n +0000331163 00000 n +0000338178 00000 n +0000331216 00000 n +0000337856 00000 n +0000337980 00000 n +0000338104 00000 n +0000338141 00000 n +0000337813 00000 n +0000348777 00000 n +0000338263 00000 n +0000345884 00000 n +0000338316 00000 n +0000345562 00000 n +0000345686 00000 n +0000345810 00000 n +0000345847 00000 n +0000345519 00000 n +0000355074 00000 n +0000345969 00000 n +0000349360 00000 n +0000346022 00000 n +0000349038 00000 n +0000349162 00000 n +0000349286 00000 n +0000349323 00000 n +0000348995 00000 n +0000356490 00000 n +0000349433 00000 n +0000355657 00000 n +0000349486 00000 n +0000355335 00000 n +0000355459 00000 n +0000355583 00000 n +0000355620 00000 n +0000355292 00000 n +0000360282 00000 n +0000355742 00000 n +0000357073 00000 n +0000355795 00000 n +0000356751 00000 n +0000356875 00000 n +0000356999 00000 n +0000357036 00000 n +0000356708 00000 n +0000362390 00000 n +0000357158 00000 n +0000360865 00000 n +0000357211 00000 n +0000360543 00000 n +0000360667 00000 n +0000360791 00000 n +0000360828 00000 n +0000805842 00000 n +0000360500 00000 n +0000367336 00000 n +0000360938 00000 n +0000362973 00000 n +0000360991 00000 n +0000362651 00000 n +0000362775 00000 n +0000362899 00000 n +0000362936 00000 n +0000362608 00000 n +0000375161 00000 n +0000363046 00000 n +0000367919 00000 n +0000363099 00000 n +0000367597 00000 n +0000367721 00000 n +0000367845 00000 n +0000367882 00000 n +0000367554 00000 n +0000389637 00000 n +0000367992 00000 n +0000375744 00000 n +0000368045 00000 n +0000375422 00000 n +0000375546 00000 n +0000375670 00000 n +0000375707 00000 n +0000375379 00000 n +0000397961 00000 n +0000375817 00000 n +0000390220 00000 n +0000375870 00000 n +0000389898 00000 n +0000390022 00000 n +0000390146 00000 n +0000390183 00000 n +0000389855 00000 n +0000401151 00000 n +0000390305 00000 n +0000398544 00000 n +0000390358 00000 n +0000398222 00000 n +0000398346 00000 n +0000398470 00000 n +0000398507 00000 n +0000398179 00000 n +0000406408 00000 n +0000398617 00000 n +0000401734 00000 n +0000398670 00000 n +0000401412 00000 n +0000401536 00000 n +0000401660 00000 n +0000401697 00000 n +0000401369 00000 n +0000408799 00000 n +0000401819 00000 n +0000406991 00000 n +0000401872 00000 n +0000406669 00000 n +0000406793 00000 n +0000406917 00000 n +0000406954 00000 n +0000406626 00000 n +0000425890 00000 n +0000407064 00000 n +0000409382 00000 n +0000407117 00000 n +0000409060 00000 n +0000409184 00000 n +0000409308 00000 n +0000409345 00000 n +0000409017 00000 n +0000433245 00000 n +0000409455 00000 n +0000426473 00000 n +0000409508 00000 n +0000426151 00000 n +0000426275 00000 n +0000426399 00000 n +0000426436 00000 n +0000426108 00000 n +0000441339 00000 n +0000426558 00000 n +0000433828 00000 n +0000426611 00000 n +0000433506 00000 n +0000433630 00000 n +0000433754 00000 n +0000433791 00000 n +0000805986 00000 n +0000433463 00000 n +0000443767 00000 n +0000433901 00000 n +0000441922 00000 n +0000433954 00000 n +0000441600 00000 n +0000441724 00000 n +0000441848 00000 n +0000441885 00000 n +0000441557 00000 n +0000455670 00000 n +0000442007 00000 n +0000444350 00000 n +0000442060 00000 n +0000444028 00000 n +0000444152 00000 n +0000444276 00000 n +0000444313 00000 n +0000443985 00000 n +0000460066 00000 n +0000444423 00000 n +0000456253 00000 n +0000444476 00000 n +0000455931 00000 n +0000456055 00000 n +0000456179 00000 n +0000456216 00000 n +0000455888 00000 n +0000461812 00000 n +0000456338 00000 n +0000460649 00000 n +0000456391 00000 n +0000460327 00000 n +0000460451 00000 n +0000460575 00000 n +0000460612 00000 n +0000460284 00000 n +0000464673 00000 n +0000460734 00000 n +0000462395 00000 n +0000460787 00000 n +0000462073 00000 n +0000462197 00000 n +0000462321 00000 n +0000462358 00000 n +0000462030 00000 n +0000473357 00000 n +0000462468 00000 n +0000465256 00000 n +0000462521 00000 n +0000464934 00000 n +0000465058 00000 n +0000465182 00000 n +0000465219 00000 n +0000464891 00000 n +0000488163 00000 n +0000465341 00000 n +0000473940 00000 n +0000465394 00000 n +0000473618 00000 n +0000473742 00000 n +0000473866 00000 n +0000473903 00000 n +0000473575 00000 n +0000501368 00000 n +0000474013 00000 n +0000488746 00000 n +0000474066 00000 n +0000488424 00000 n +0000488548 00000 n +0000488672 00000 n +0000488709 00000 n +0000488381 00000 n +0000504353 00000 n +0000488831 00000 n +0000501869 00000 n +0000488884 00000 n +0000501621 00000 n +0000501745 00000 n +0000501586 00000 n +0000510527 00000 n +0000501954 00000 n +0000504854 00000 n +0000502007 00000 n +0000504606 00000 n +0000504730 00000 n +0000806130 00000 n +0000504571 00000 n +0000517567 00000 n +0000504939 00000 n +0000511110 00000 n +0000504992 00000 n +0000510788 00000 n +0000510912 00000 n +0000511036 00000 n +0000511073 00000 n +0000510745 00000 n +0000520737 00000 n +0000511183 00000 n +0000518150 00000 n +0000511236 00000 n +0000517828 00000 n +0000517952 00000 n +0000518076 00000 n +0000518113 00000 n +0000517785 00000 n +0000524671 00000 n +0000518223 00000 n +0000521320 00000 n +0000518276 00000 n +0000520998 00000 n +0000521122 00000 n +0000521246 00000 n +0000521283 00000 n +0000520955 00000 n +0000525860 00000 n +0000521393 00000 n +0000525254 00000 n +0000521446 00000 n +0000524932 00000 n +0000525056 00000 n +0000525180 00000 n +0000525217 00000 n +0000524889 00000 n +0000527590 00000 n +0000525327 00000 n +0000526443 00000 n +0000525380 00000 n +0000526121 00000 n +0000526245 00000 n +0000526369 00000 n +0000526406 00000 n +0000526078 00000 n +0000529590 00000 n +0000526516 00000 n +0000528173 00000 n +0000526569 00000 n +0000527851 00000 n +0000527975 00000 n +0000528099 00000 n +0000528136 00000 n +0000527808 00000 n +0000546283 00000 n +0000528246 00000 n +0000530173 00000 n +0000528299 00000 n +0000529851 00000 n +0000529975 00000 n +0000530099 00000 n +0000530136 00000 n +0000529808 00000 n +0000557271 00000 n +0000530246 00000 n +0000546869 00000 n +0000530299 00000 n +0000546546 00000 n +0000546670 00000 n +0000546794 00000 n +0000546831 00000 n +0000546502 00000 n +0000560237 00000 n +0000546954 00000 n +0000557781 00000 n +0000547009 00000 n +0000557530 00000 n +0000557655 00000 n +0000557492 00000 n +0000562097 00000 n +0000557867 00000 n +0000560835 00000 n +0000557922 00000 n +0000560506 00000 n +0000560631 00000 n +0000560757 00000 n +0000560796 00000 n +0000806274 00000 n +0000560460 00000 n +0000563713 00000 n +0000560909 00000 n +0000562696 00000 n +0000560964 00000 n +0000562366 00000 n +0000562492 00000 n +0000562618 00000 n +0000562657 00000 n +0000562320 00000 n +0000567324 00000 n +0000562770 00000 n +0000564312 00000 n +0000562825 00000 n +0000563982 00000 n +0000564108 00000 n +0000564234 00000 n +0000564273 00000 n +0000563936 00000 n +0000569760 00000 n +0000564386 00000 n +0000567923 00000 n +0000564441 00000 n +0000567593 00000 n +0000567719 00000 n +0000567845 00000 n +0000567884 00000 n +0000567547 00000 n +0000577927 00000 n +0000567997 00000 n +0000570359 00000 n +0000568052 00000 n +0000570029 00000 n +0000570155 00000 n +0000570281 00000 n +0000570320 00000 n +0000569983 00000 n +0000581542 00000 n +0000570433 00000 n +0000578526 00000 n +0000570488 00000 n +0000578196 00000 n +0000578322 00000 n +0000578448 00000 n +0000578487 00000 n +0000578150 00000 n +0000585975 00000 n +0000578612 00000 n +0000582141 00000 n +0000578667 00000 n +0000581811 00000 n +0000581937 00000 n +0000582063 00000 n +0000582102 00000 n +0000581765 00000 n +0000587242 00000 n +0000582227 00000 n +0000586574 00000 n +0000582282 00000 n +0000586244 00000 n +0000586370 00000 n +0000586496 00000 n +0000586535 00000 n +0000586198 00000 n +0000590028 00000 n +0000586648 00000 n +0000587841 00000 n +0000586703 00000 n +0000587511 00000 n +0000587637 00000 n +0000587763 00000 n +0000587802 00000 n +0000587465 00000 n +0000592549 00000 n +0000587915 00000 n +0000590627 00000 n +0000587970 00000 n +0000590297 00000 n +0000590423 00000 n +0000590549 00000 n +0000590588 00000 n +0000590251 00000 n +0000600956 00000 n +0000590701 00000 n +0000593148 00000 n +0000590756 00000 n +0000592818 00000 n +0000592944 00000 n +0000593070 00000 n +0000593109 00000 n +0000806429 00000 n +0000592772 00000 n +0000610606 00000 n +0000593222 00000 n +0000601555 00000 n +0000593277 00000 n +0000601225 00000 n +0000601351 00000 n +0000601477 00000 n +0000601516 00000 n +0000601179 00000 n +0000620475 00000 n +0000601629 00000 n +0000611205 00000 n +0000601684 00000 n +0000610875 00000 n +0000611001 00000 n +0000611127 00000 n +0000611166 00000 n +0000610829 00000 n +0000630539 00000 n +0000611291 00000 n +0000620988 00000 n +0000611346 00000 n +0000620736 00000 n +0000620862 00000 n +0000620698 00000 n +0000638230 00000 n +0000621074 00000 n +0000631052 00000 n +0000621129 00000 n +0000630800 00000 n +0000630926 00000 n +0000630762 00000 n +0000648534 00000 n +0000631138 00000 n +0000638743 00000 n +0000631193 00000 n +0000638491 00000 n +0000638617 00000 n +0000638453 00000 n +0000667376 00000 n +0000638829 00000 n +0000649133 00000 n +0000638884 00000 n +0000648803 00000 n +0000648929 00000 n +0000649055 00000 n +0000649094 00000 n +0000648757 00000 n +0000671081 00000 n +0000649207 00000 n +0000667975 00000 n +0000649262 00000 n +0000667645 00000 n +0000667771 00000 n +0000667897 00000 n +0000667936 00000 n +0000667599 00000 n +0000672515 00000 n +0000668049 00000 n +0000671680 00000 n +0000668104 00000 n +0000671350 00000 n +0000671476 00000 n +0000671602 00000 n +0000671641 00000 n +0000671304 00000 n +0000675565 00000 n +0000671754 00000 n +0000673114 00000 n +0000671809 00000 n +0000672784 00000 n +0000672910 00000 n +0000673036 00000 n +0000673075 00000 n +0000672738 00000 n +0000679376 00000 n +0000673188 00000 n +0000676164 00000 n +0000673243 00000 n +0000675834 00000 n +0000675960 00000 n +0000676086 00000 n +0000676125 00000 n +0000806584 00000 n +0000675788 00000 n +0000682681 00000 n +0000676238 00000 n +0000679975 00000 n +0000676293 00000 n +0000679645 00000 n +0000679771 00000 n +0000679897 00000 n +0000679936 00000 n +0000679599 00000 n +0000685391 00000 n +0000680061 00000 n +0000683280 00000 n +0000680116 00000 n +0000682950 00000 n +0000683076 00000 n +0000683202 00000 n +0000683241 00000 n +0000682904 00000 n +0000692397 00000 n +0000683366 00000 n +0000685990 00000 n +0000683421 00000 n +0000685660 00000 n +0000685786 00000 n +0000685912 00000 n +0000685951 00000 n +0000685614 00000 n +0000700783 00000 n +0000686064 00000 n +0000692996 00000 n +0000686119 00000 n +0000692666 00000 n +0000692792 00000 n +0000692918 00000 n +0000692957 00000 n +0000692620 00000 n +0000702997 00000 n +0000693082 00000 n +0000701382 00000 n +0000693137 00000 n +0000701052 00000 n +0000701178 00000 n +0000701304 00000 n +0000701343 00000 n +0000701006 00000 n +0000712963 00000 n +0000701468 00000 n +0000703596 00000 n +0000701523 00000 n +0000703266 00000 n +0000703392 00000 n +0000703518 00000 n +0000703557 00000 n +0000703220 00000 n +0000718863 00000 n +0000703670 00000 n +0000713562 00000 n +0000703725 00000 n +0000713232 00000 n +0000713358 00000 n +0000713484 00000 n +0000713523 00000 n +0000713186 00000 n +0000731704 00000 n +0000713648 00000 n +0000719462 00000 n +0000713703 00000 n +0000719132 00000 n +0000719258 00000 n +0000719384 00000 n +0000719423 00000 n +0000719086 00000 n +0000751615 00000 n +0000719536 00000 n +0000732303 00000 n +0000719591 00000 n +0000731973 00000 n +0000732099 00000 n +0000732225 00000 n +0000732264 00000 n +0000731927 00000 n +0000754305 00000 n +0000732389 00000 n +0000752128 00000 n +0000732444 00000 n +0000751876 00000 n +0000752002 00000 n +0000806739 00000 n +0000751838 00000 n +0000756894 00000 n +0000752214 00000 n +0000754904 00000 n +0000752269 00000 n +0000754574 00000 n +0000754700 00000 n +0000754826 00000 n +0000754865 00000 n +0000754528 00000 n +0000759155 00000 n +0000754978 00000 n +0000757493 00000 n +0000755033 00000 n +0000757163 00000 n +0000757289 00000 n +0000757415 00000 n +0000757454 00000 n +0000757117 00000 n +0000759628 00000 n +0000757567 00000 n +0000759424 00000 n +0000759550 00000 n +0000759589 00000 n +0000759378 00000 n +0000759702 00000 n +0000778656 00000 n +0000762154 00000 n +0000762311 00000 n +0000762491 00000 n +0000762663 00000 n +0000762827 00000 n +0000762987 00000 n +0000763155 00000 n +0000763323 00000 n +0000763495 00000 n +0000763659 00000 n +0000763840 00000 n +0000764017 00000 n +0000764190 00000 n +0000764371 00000 n +0000764548 00000 n +0000764721 00000 n +0000764902 00000 n +0000765083 00000 n +0000765268 00000 n +0000765437 00000 n +0000765590 00000 n +0000765771 00000 n +0000765944 00000 n +0000766129 00000 n +0000766294 00000 n +0000766479 00000 n +0000766648 00000 n +0000766813 00000 n +0000766978 00000 n +0000767143 00000 n +0000767332 00000 n +0000767493 00000 n +0000767658 00000 n +0000767819 00000 n +0000768008 00000 n +0000768189 00000 n +0000768346 00000 n +0000768499 00000 n +0000768664 00000 n +0000768841 00000 n +0000769010 00000 n +0000769171 00000 n +0000769348 00000 n +0000769501 00000 n +0000769658 00000 n +0000769815 00000 n +0000769980 00000 n +0000770149 00000 n +0000770310 00000 n +0000770475 00000 n +0000770632 00000 n +0000770797 00000 n +0000770982 00000 n +0000771143 00000 n +0000771316 00000 n +0000771481 00000 n +0000771650 00000 n +0000771811 00000 n +0000771976 00000 n +0000772137 00000 n +0000772302 00000 n +0000772459 00000 n +0000772636 00000 n +0000772797 00000 n +0000772966 00000 n +0000773147 00000 n +0000773316 00000 n +0000773493 00000 n +0000773662 00000 n +0000773815 00000 n +0000774016 00000 n +0000774213 00000 n +0000774398 00000 n +0000774571 00000 n +0000774740 00000 n +0000774921 00000 n +0000775094 00000 n +0000775263 00000 n +0000775432 00000 n +0000775605 00000 n +0000775786 00000 n +0000775955 00000 n +0000776116 00000 n +0000776301 00000 n +0000776470 00000 n +0000776639 00000 n +0000776804 00000 n +0000776973 00000 n +0000777146 00000 n +0000777331 00000 n +0000777508 00000 n +0000777661 00000 n +0000777838 00000 n +0000778023 00000 n +0000778176 00000 n +0000778345 00000 n +0000778506 00000 n +0000778738 00000 n +0000779032 00000 n +0000779107 00000 n +0000785828 00000 n +0000786051 00000 n +0000787655 00000 n +0000787845 00000 n +0000788101 00000 n +0000788176 00000 n +0000793224 00000 n +0000793447 00000 n +0000794862 00000 n +0000795052 00000 n +0000795377 00000 n +0000795452 00000 n +0000802987 00000 n +0000803209 00000 n +0000804933 00000 n +0000806839 00000 n +0000806987 00000 n +0000807070 00000 n +0000807138 00000 n +0000807743 00000 n +0000808340 00000 n +0000808966 00000 n +0000809610 00000 n +0000810179 00000 n +0000810856 00000 n +0000810938 00000 n +0000811058 00000 n +0000811096 00000 n +0000811279 00000 n trailer -< ]>> +< <64BFAAF83C35EDC0485147D6D8415864>]>> startxref -809072 +812164 %%EOF diff --git a/tex/context/base/supp-fun.mkiv b/tex/context/base/supp-fun.mkiv index 99cfbc1d4..c3aa8329c 100644 --- a/tex/context/base/supp-fun.mkiv +++ b/tex/context/base/supp-fun.mkiv @@ -13,6 +13,9 @@ \unprotect +%D Beware, these macros wil be replaced and at some point this +%D module will not be preloaded any more. + %D This module implements some typographics tricks that can %D be fun when designing document layouts. The examples use %D macros that are typical to \CONTEXT, but non \CONTEXT\ @@ -20,14 +23,8 @@ %D macros without problems. This module will be extended %D when the need for more of such tricks arises. -\ifx \undefined \writestatus \input supp-mis.tex \relax \fi - \writestatus{loading}{ConTeXt Support Macros / Fun Stuff} -\ifx\definefont\undefined - \def\definedfont[#1]{\font\temp#1\relax\temp} -\fi - %D \macros %D {DroppedCaps, DroppedString, DroppedIndent, DroppedLines} %D @@ -537,30 +534,9 @@ \def\NormalizeFontHeight{\NormalizeFontSize\ht} \def\NormalizeFontWidth {\NormalizeFontSize\wd} -% \def\NormalizeFontSize#1#2#3#4#5% -% {\bgroup -% \dimen0=#4% #4 can be \ht0 or so -% \setbox0\hbox{\definedfont[#5 at 10pt]#3}% -% \ifdim\wd0>\zeropoint -% \dimen2=#10 % #1 is \wd or \ht -% \dimen4=10000pt -% \divide\dimen4 \dimen2 -% \divide\dimen0 \plusthousand -% \dimen0=\number\dimen4\dimen0 -% \xdef\TheNormalizedFontSize{\the\dimen0}% -% \else -% \dimen0\bodyfontsize -% \fi -% \definedfont[#5 at \the\dimen0]% -% \expandafter -% \egroup -% \expandafter\font\expandafter#2\fontname\font\relax} -% -% the familiar struggle with accuracy forces us to use: - \def\NormalizeFontSize#1#2#3#4#5% {\bgroup - \dimen0=#4% #4 can be \ht0 or so + \dimen0=#4% #4 can be \ht0 or so \setbox0\hbox{\definedfont[#5 at 5pt]#3}% 10pt \ifdim\wd0>\zeropoint \dimen2=#10 % #1 is \wd or \ht @@ -573,12 +549,6 @@ \else \dimen0\bodyfontsize \fi - % mkii - % \definedfont[#5 at \the\dimen0]% - % \expandafter - % \egroup - % \expandafter\font\expandafter#2\fontname\font\relax} - % mkiv safe (file: prefix etc) \expanded{\egroup\def\noexpand#2{\definedfont[#5 at \the\dimen0]}}} %D Afterwards, we have access to the calculated size by: diff --git a/tex/context/base/task-ini.lua b/tex/context/base/task-ini.lua index 0757dc9b0..9fca612a0 100644 --- a/tex/context/base/task-ini.lua +++ b/tex/context/base/task-ini.lua @@ -43,6 +43,8 @@ appendaction("processors", "lists", "typesetters.kerns.handler") appendaction("processors", "lists", "typesetters.digits.handler") -- disabled (after otf handling) appendaction("processors", "lists", "typesetters.italics.handler") -- disabled (after otf/kern handling) +appendaction("processors", "lists", "typesetters.paragraphs.handler") -- disabled + appendaction("shipouts", "normalizers", "nodes.handlers.cleanuppage") -- disabled appendaction("shipouts", "normalizers", "typesetters.alignments.handler") appendaction("shipouts", "normalizers", "nodes.references.handler") -- disabled @@ -78,6 +80,7 @@ appendaction("math", "builders", "builders.kernel.mlist_to_hlist") -- quite experimental (nodes.handlers.graphicvadjust might go away) +appendaction("finalizers", "lists", "builders.paragraphs.keeptogether") appendaction("finalizers", "lists", "nodes.handlers.graphicvadjust") -- todo appendaction("finalizers", "fonts", "builders.paragraphs.solutions.splitters.optimize") -- experimental appendaction("finalizers", "lists", "builders.paragraphs.tag") @@ -103,6 +106,7 @@ disableaction("processors", "typesetters.spacings.handler") disableaction("processors", "typesetters.kerns.handler") disableaction("processors", "typesetters.italics.handler") disableaction("processors", "nodes.handlers.stripping") +disableaction("processors", "typesetters.paragraphs.handler") disableaction("shipouts", "typesetters.alignments.handler") disableaction("shipouts", "nodes.rules.handler") @@ -127,6 +131,7 @@ disableaction("mvlbuilders", "nodes.handlers.migrate") disableaction("processors", "builders.paragraphs.solutions.splitters.split") +disableaction("finalizers", "builders.paragraphs.keeptogether") disableaction("finalizers", "builders.paragraphs.solutions.splitters.optimize") disableaction("finalizers", "nodes.handlers.graphicvadjust") -- sort of obsolete disableaction("finalizers", "builders.paragraphs.tag") diff --git a/tex/context/base/typo-cln.lua b/tex/context/base/typo-cln.lua index e36575bce..d689f7c09 100644 --- a/tex/context/base/typo-cln.lua +++ b/tex/context/base/typo-cln.lua @@ -69,19 +69,23 @@ local function process(namespace,attribute,head) return head, done end --- see typo-cap for a more advanced settings handler .. now needed now +-- see typo-cap for a more advanced settings handler .. not needed now local enabled = false function cleaners.set(n) - if not enabled then - tasks.enableaction("processors","typesetters.cleaners.handler") - if trace_cleaners then - report_cleaners("enabling cleaners") + if n == variables.reset or not tonumber(n) or n == 0 then + texattribute[a_cleaner] = unsetvalue + else + if not enabled then + tasks.enableaction("processors","typesetters.cleaners.handler") + if trace_cleaners then + report_cleaners("enabling cleaners") + end + enabled = true end - enabled = true + texattribute[a_cleaner] = n end - texattribute[a_cleaner] = n end cleaners.handler = nodes.installattributehandler { diff --git a/tex/context/base/typo-cln.mkiv b/tex/context/base/typo-cln.mkiv index 038ebf2c5..4cf79d078 100644 --- a/tex/context/base/typo-cln.mkiv +++ b/tex/context/base/typo-cln.mkiv @@ -22,9 +22,12 @@ %D Currently there is no interface. %D %D 1: Autocap first character of a line -%D 2: Maybe dropped caps. \unexpanded\def\setcharactercleaning[#1]% This name might change! - {\ctxlua{typesetters.cleaners.set(\number#1)}} + {\ctxlua{typesetters.cleaners.set("#1")}} % also accepts "reset" + +% \appendtoks +% \attribute\cleanerattribute\attributeunsetvalue +% \to \everyforgetall \protect \endinput diff --git a/tex/context/base/typo-itc.lua b/tex/context/base/typo-itc.lua index 227f3e22c..5cc6e4d64 100644 --- a/tex/context/base/typo-itc.lua +++ b/tex/context/base/typo-itc.lua @@ -19,6 +19,7 @@ local nodecodes = nodes.nodecodes local glyph_code = nodecodes.glyph local kern_code = nodecodes.kern local glue_code = nodecodes.glue +local disc_code = nodecodes.disc local tasks = nodes.tasks @@ -30,7 +31,6 @@ local texattribute = tex.attribute local a_italics = attributes.private("italics") local unsetvalue = attributes.unsetvalue ------ new_correction = nodes.pool.fontkern ----- new_correction = nodes.pool.fontkern local new_correction = nodes.pool.glue @@ -38,7 +38,6 @@ local points = number.points local fonthashes = fonts.hashes local fontdata = fonthashes.identifiers -local chardata = fonthashes.characters local italicsdata = fonthashes.italics local forcedvariant = false @@ -55,7 +54,43 @@ end -- italic = vi*parameters[font].hfactor -- end -- --- this saves us quite entries in the characters table +-- this saves us quite some entries in the characters table + +local function setitalicinfont(font,char) + local tfmdata = fontdata[font] + local character = tfmdata.characters[char] + if character then + local italic = character.italic_correction + if not italic then + local autoitalic = tfmdata.properties.auto_italic_correction or 0 + if autoitalic ~= 0 then + local description = tfmdata.descriptions[char] + if description then + italic = description.italic + if not italic then + local boundingbox = description.boundingbox + italic = boundingbox[3] - description.width + autoitalic + -- print(boundingbox[3],description.width,autoitalic,italic) + if italic < 0 then -- < 0 indicates no overshoot or a very small auto italic + italic = 0 + end + end + if italic ~= 0 then + italic = italic * tfmdata.parameters.hfactor + end + end + end + if trace_italics then + report_italics("setting italic correction of %s (U+%05X) of font %s to %s",utfchar(char),char,font,points(italic)) + end + character.italic_correction = italic or 0 + end + return italic + else + return 0 + end +end + local function process(namespace,attribute,head) local done = false @@ -82,7 +117,7 @@ local function process(namespace,attribute,head) if trace_italics then report_italics("inserting %s between italic %s and regular %s",points(italic),utfchar(prevchar),utfchar(char)) end - insert_node_after(head,previous,new_correction(italic),new_correction(italic)) + insert_node_after(head,previous,new_correction(italic)) done = true end elseif inserted and data then @@ -90,7 +125,10 @@ local function process(namespace,attribute,head) report_italics("deleting last correction before %s",utfchar(char)) end delete_node(head,inserted) + else + -- nothing end + lastfont = font end if data then local attr = forcedvariant or has_attribute(current,attribute) @@ -102,8 +140,10 @@ local function process(namespace,attribute,head) else italic = cd.italic or cd.italic_correction if not italic then - italic = 0 - elseif italic ~= 0 then + italic = setitalicinfont(font,char) -- calculated once + -- italic = 0 + end + if italic ~= 0 then lastfont = font lastattr = attr previous = current @@ -117,6 +157,8 @@ local function process(namespace,attribute,head) italic = 0 end inserted = nil + elseif id == disc_code then + -- skip elseif id == kern_code then inserted = nil italic = 0 @@ -197,14 +239,14 @@ function commands.setupitaliccorrection(option) -- no grouping ! variant = 2 end if options[variables.global] then - forcevariant = variant + forcedvariant = variant texattribute[a_italics] = unsetvalue else - forcevariant = false + forcedvariant = false texattribute[a_italics] = variant end if trace_italics then - report_italics("force: %s, variant: %s",tostring(forcevariant),tostring(variant ~= unsetvalue and variant)) + report_italics("force: %s, variant: %s",tostring(forcedvariant),tostring(variant ~= unsetvalue and variant)) end end @@ -213,11 +255,11 @@ end local stack = { } function commands.pushitaliccorrection() - table.insert(stack,{forcevariant, texattribute[a_italics] }) + table.insert(stack,{forcedvariant, texattribute[a_italics] }) end function commands.popitaliccorrection() local top = table.remove(stack) - forcevariant = top[1] + forcedvariant = top[1] texattribute[a_italics] = top[2] end diff --git a/tex/context/base/typo-mar.lua b/tex/context/base/typo-mar.lua index e9b10c22f..a2936592c 100644 --- a/tex/context/base/typo-mar.lua +++ b/tex/context/base/typo-mar.lua @@ -130,6 +130,8 @@ local whatsitcodes = nodes.whatsitcodes local hlist_code = nodecodes.hlist local vlist_code = nodecodes.vlist local glue_code = nodecodes.glue +local kern_code = nodecodes.kern +local penalty_code = nodecodes.penalty local whatsit_code = nodecodes.whatsit local line_code = listcodes.line local leftskip_code = gluecodes.leftskip @@ -142,6 +144,7 @@ local localpar_code = whatsitcodes.localpar local nodepool = nodes.pool local new_kern = nodepool.kern +local new_penalty = nodepool.penalty local new_stretch = nodepool.stretch local new_usernumber = nodepool.usernumber local new_latelua = nodepool.latelua @@ -151,6 +154,7 @@ local texdimen = tex.dimen local texbox = tex.box local isleftpage = layouts.status.isleftpage +local registertogether = builders.paragraphs.registertogether local a_margindata = attributes.private("margindata") @@ -530,7 +534,13 @@ local function inject(parent,head,candidate) -- we need to add line etc to offset as well offset = offset + depth stacked[location] = offset - return head + -- todo: if no real depth then zero + local room = { + height = box.height, + depth = offset, + slack = candidate.bottomspace, -- todo: 'depth' => strutdepth + } + return head, room end local function flushinline(parent,head,done) @@ -561,6 +571,7 @@ end local function flushed(scope,parent) -- current is hlist local done = false local head = parent.list + local room for c=1,#categories do local category = categories[c] for l=1,#locations do @@ -569,9 +580,10 @@ local function flushed(scope,parent) -- current is hlist while true do local candidate = remove(store,1) -- brr, local stores are sparse if candidate then -- no vpack, as we want to realign - head = inject(parent,head,candidate) -- maybe return applied offset + head, room = inject(parent,head,candidate) -- maybe return applied offset done = true nofstored = nofstored - 1 + registertogether(parent,room) else break end @@ -596,9 +608,9 @@ end local function handler(scope,head,group) if nofstored > 0 then - -- if trace_margindata then - -- report_margindata("flushing stage one, stored: %s, scope: %s, delayed: %s, group: %s",nofstored,scope,nofdelayed,group) - -- end + if trace_margindata then + report_margindata("flushing stage one, stored: %s, scope: %s, delayed: %s, group: %s",nofstored,scope,nofdelayed,group) + end local current = head local done = false while current do @@ -641,6 +653,8 @@ function margins.globalhandler(head,group) -- check group return handler("global",head,group) elseif group == "vmode_par" then -- experiment (for alignments) return handler("global",head,group) + -- this needs checking as we then get quite some one liners to process and + -- we cannot look ahead then: elseif group == "box" then -- experiment (for alignments) return handler("global",head,group) else diff --git a/tex/context/base/typo-mar.mkiv b/tex/context/base/typo-mar.mkiv index 2c5cff635..30aea9f61 100644 --- a/tex/context/base/typo-mar.mkiv +++ b/tex/context/base/typo-mar.mkiv @@ -116,6 +116,7 @@ \c!width=, % \c!stack=, \c!line=0, + \c!bottomspace=\strutdepth, % slack used for keeptogether \c!dy=\zeropoint, \c!distance=\zeropoint, \c!hoffset=\zeropoint, @@ -226,35 +227,36 @@ \ifdone \initializenextposition % we use positions at the lua end \ctxlua{typesetters.margins.save{ - \c!location = "\margindataparameter\c!location", - \c!method = "\margindataparameter\c!method", - \c!category = "\margindataparameter\c!category", - \c!name = "\margindataparameter\c!name", - \c!margin = "\margindataparameter\c!margin", % local normal margin edge - \c!distance = \number\dimexpr\margindataparameter\c!distance, - \c!hoffset = \number\dimexpr\margindataparameter\c!hoffset, - \c!voffset = \number\dimexpr\margindataparameter\c!voffset, - \c!dy = \number\dimexpr\margindataparameter\c!dy, + \c!location = "\margindataparameter\c!location", + \c!method = "\margindataparameter\c!method", + \c!category = "\margindataparameter\c!category", + \c!name = "\margindataparameter\c!name", + \c!margin = "\margindataparameter\c!margin", % local normal margin edge + \c!distance = \number\dimexpr\margindataparameter\c!distance, + \c!hoffset = \number\dimexpr\margindataparameter\c!hoffset, + \c!voffset = \number\dimexpr\margindataparameter\c!voffset, + \c!dy = \number\dimexpr\margindataparameter\c!dy, + \c!bottomspace = \number\dimexpr\margindataparameter\c!bottomspace, \ifx\currentmarginfirstheight\empty \else - baseline = \currentmarginfirstheight, + baseline = \currentmarginfirstheight, \fi - threshold = \number\dimexpr\margindataparameter\c!threshold, % will change + threshold = \number\dimexpr\margindataparameter\c!threshold, % overlap related, will change \ifhmode - inline = true, + inline = true, \fi - \c!scope = "\margindataparameter\c!scope", - \c!align = "\margindataparameter\c!align", - \c!line = "\margindataparameter\c!line", - \c!stack = "\margindataparameter\c!stack", - \c!number = \number\nextbox, + \c!scope = "\margindataparameter\c!scope", + \c!align = "\margindataparameter\c!align", + \c!line = "\margindataparameter\c!line", + \c!stack = "\margindataparameter\c!stack", + \c!number = \number\nextbox, }}% \else \ctxlua{typesetters.margins.save{ - \c!location = "\margindataparameter\c!location", - \c!method = "\margindataparameter\c!method", - \c!category = "\margindataparameter\c!category", - \c!name = "\margindataparameter\c!name", - \c!scope = "\margindataparameter\c!scope", + \c!location = "\margindataparameter\c!location", + \c!method = "\margindataparameter\c!method", + \c!category = "\margindataparameter\c!category", + \c!name = "\margindataparameter\c!name", + \c!scope = "\margindataparameter\c!scope", }}% \fi \endgroup} diff --git a/tex/context/base/typo-pag.lua b/tex/context/base/typo-pag.lua new file mode 100644 index 000000000..92c8e2c62 --- /dev/null +++ b/tex/context/base/typo-pag.lua @@ -0,0 +1,172 @@ +if not modules then modules = { } end modules ['typo-pag'] = { + version = 1.001, + comment = "companion to typo-pag.mkiv", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files" +} + +local nodecodes = nodes.nodecodes + +local hlist_code = nodecodes.hlist +local vlist_code = nodecodes.vlist +local glue_code = nodecodes.glue +local kern_code = nodecodes.kern +local penalty_code = nodecodes.penalty + +local insert_node_after = node.insert_after +local new_penalty = nodes.pool.penalty +local has_attribute = node.has_attribute +local unset_attribute = node.unset_attribute +local set_attribute = node.set_attribute + +local points = number.points + +local a_keeptogether = attributes.private("keeptogether") + +local trace_keeptogether = false trackers.register("parbuilders.keeptogether", function(v) trace_keeptogether = v end) +local report_keeptogether = logs.reporter("parbuilders","keeptogether") + +local cache = { } +local last = 0 +local enabled = false + +-- todo: also support lines = 3 etc (e.g. dropped caps) but how to set that +-- when no hlists are there ? ... maybe the local_par + +function builders.paragraphs.registertogether(line,specification) -- might change + if not enabled then + nodes.tasks.enableaction("finalizers","builders.paragraphs.keeptogether") + end + local a = has_attribute(line,a_keeptogether) + local c = a and cache[a] + if c then + local height = specification.height + local depth = specification.depth + local slack = specification.slack + if height and height > c.height then + c.height = height + end + if depth and depth > c.depth then + c.depth = depth + end + if slack and slack > c.slack then + c.slack = slack + end + else + last = last + 1 + cache[last] = specification + if not specification.height then + specification.height = 0 + end + if not specification.depth then + specification.depth = 0 + end + if not specification.slack then + specification.slack = 0 + end + set_attribute(line,a_keeptogether,last) + end + if trace_keeptogether then + local a = a or last + local c = cache[a] + if trace_keeptogether then + report_keeptogether("registered, index: %s, height: %s, depth: %s, slack: %s", + a,points(c.height),points(c.depth),points(c.slack)) + end + end +end + +local function keeptogether(start,a) + if start then + local specification = cache[a] + if a then + local current = start.next + local previous = start + local total = previous.depth + local slack = specification.slack + local threshold = specification.depth - slack + if trace_keeptogether then + report_keeptogether("list, index: %s, total: %s, threshold: %s, slack: %s",a,points(total),points(threshold),points(slack)) + end + while current do + local id = current.id + if id == vlist_code or id == hlist_code then + total = total + current.height + current.depth + if trace_keeptogether then + report_keeptogether("list, index: %s, total: %s, threshold: %s",a,points(total),points(threshold)) + end + if total <= threshold then + if previous.id == penalty_code then + previous.penalty = 10000 + else + insert_node_after(head,previous,new_penalty(10000)) + end + else + break + end + elseif id == glue_code then + -- hm, breakpoint, maybe turn this into kern + total = total + current.spec.width + if trace_keeptogether then + report_keeptogether("glue, index: %s, total: %s, threshold: %s",a,points(total),points(threshold)) + end + if total <= threshold then + if previous.id == penalty_code then + previous.penalty = 10000 + else + insert_node_after(head,previous,new_penalty(10000)) + end + else + break + end + elseif id == kern_code then + total = total + current.kern + if trace_keeptogether then + report_keeptogether("kern, index: %s, total: %s, threshold: %s",a,points(total),points(threshold)) + end + if total <= threshold then + if previous.id == penalty_code then + previous.penalty = 10000 + else + insert_node_after(head,previous,new_penalty(10000)) + end + else + break + end + elseif id == penalty_code then + if total <= threshold then + if previous.id == penalty_code then + previous.penalty = 10000 + end + current.penalty = 10000 + else + break + end + end + previous = current + current = current.next + end + end + end +end + +-- also look at first non glue/kern node e.g for a dropped caps + +function builders.paragraphs.keeptogether(head) + local done = false + local current = head + while current do + if current.id == hlist_code then + local a = has_attribute(current,a_keeptogether) + if a and a > 0 then + keeptogether(current,a) + unset_attribute(current,a_keeptogether) + cache[a] = nil + done = true + end + end + current = current.next + end + return head, done +end diff --git a/tex/context/base/typo-pag.mkiv b/tex/context/base/typo-pag.mkiv new file mode 100644 index 000000000..30d2b51b7 --- /dev/null +++ b/tex/context/base/typo-pag.mkiv @@ -0,0 +1,20 @@ +%D \module +%D [ file=typo-pag, +%D version=2011.11.02, +%D title=\CONTEXT\ Typesetting Macros, +%D subtitle=Pages, +%D author=Hans Hagen, +%D date=\currentdate, +%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] +%C +%C This module is part of the \CONTEXT\ macro||package and is +%C therefore copyrighted by \PRAGMA. See mreadme.pdf for +%C details. + +\writestatus{loading}{ConTeXt Typesetting Macros / Pages} + +\unprotect + +\registerctxluafile{typo-pag}{1.001} + +\protect \endinput diff --git a/tex/context/base/typo-par.lua b/tex/context/base/typo-par.lua new file mode 100644 index 000000000..0261d2e4e --- /dev/null +++ b/tex/context/base/typo-par.lua @@ -0,0 +1,184 @@ +if not modules then modules = { } end modules ['typo-par'] = { + version = 1.001, + comment = "companion to typo-par.mkiv", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files" +} + +-- A playground for experiments. + +local utfbyte = utf.byte +local utfchar = utf.char + +local trace_paragraphs = false trackers.register("typesetters.paragraphs", function(v) trace_paragraphs = v end) +local trace_dropper = false trackers.register("typesetters.paragraphs.dropper",function(v) trace_dropper = v end) + +local report_paragraphs = logs.reporter("nodes","paragraphs") +local report_dropper = logs.reporter("nodes","dropped") + +typesetters.paragraphs = typesetters.paragraphs or { } +local paragraphs = typesetters.paragraphs + +local nodecodes = nodes.nodecodes +local whatsitcodes = nodes.whatsitcodes +local tasks = nodes.tasks + +local variables = interfaces.variables + +local texattribute = tex.attribute +local unsetvalue = attributes.unsetvalue + +local has_attribute = node.has_attribute +local set_attribute = node.set_attribute + +local glyph_code = nodecodes.glyph +local hlist_code = nodecodes.hlist +local kern_node = nodecodes.kern +local whatsit_code = nodecodes.whatsit +local localpar_code = whatsitcodes.localpar + +local a_paragraph = attributes.private("paragraphspecial") +local a_color = attributes.private('color') +local a_transparency = attributes.private('transparency') +local a_colorspace = attributes.private('colormodel') + +local dropper = { + enabled = false, + -- font = 0, + -- n = 0, + -- distance = 0, + -- hoffset = 0, + -- voffset = 0, +} + +local droppers = { } + +typesetters.paragraphs.droppers = droppers + +function droppers.set(specification) + dropper = specification or { } +end + +function droppers.freeze() + if dropper.enabled then + dropper.font = font.current() + end +end + +-- dropped caps experiment (will be done properly when luatex +-- stores the state in the local par node) .. btw, search still +-- works with dropped caps, as does an export + +-- we need a 'par' attribute and in fact for dropped caps we don't need +-- need an attribute ... dropit will become s state counter (or end up +-- in the localpar user data + +-- for the moment, each paragraph gets a number as id (attribute) ..problem +-- with nesting .. or anyhow, needed for tagging anyway + +-- todo: prevent linebreak .. but normally a dropper ends up atthe top of +-- a page so this has a low priority + +local function process(namespace,attribute,head) + local done = false + if head.id == whatsit_code and head.subtype == localpar_code then + -- begin of par + local a = has_attribute(head,attribute) + if a and a > 0 then + if dropper.enabled then + dropper.enabled = false -- dangerous for e.g. nested || in tufte + local first = head.next + if first and first.id == hlist_code then + -- parbox .. needs to be set at 0 + first = first.next + end + if first and first.id == glyph_code then +-- if texattribute[a_paragraph] >= 0 then +-- texattribute[a_paragraph] = unsetvalue +-- end + local char = first.char + local prev = first.prev + local next = first.next + -- if prev.id == hlist_code then + -- -- set the width to 0 + -- end + if next and next.id == kern_node then + next.kern = 0 + end + first.font = dropper.font or first.font + -- can be a helper + local ma = dropper.ma or 0 + local ca = dropper.ca + local ta = dropper.ta + if ca and ca > 0 then + set_attribute(first,a_colorspace,ma == 0 and 1 or ma) + set_attribute(first,a_color,ca) + end + if ta and ta > 0 then + set_attribute(first,a_transparency,ta) + end + -- + local width = first.width + local height = first.height + local depth = first.depth + local distance = dropper.distance or 0 + local voffset = dropper.voffset or 0 + local hoffset = dropper.hoffset or 0 + first.xoffset = - width - hoffset - distance + first.yoffset = - height - voffset + if true then + -- needed till we can store parindent with localpar + first.prev = nil + first.next = nil + local h = node.hpack(first) + h.width = 0 + h.height = 0 + h.depth = 0 + prev.next = h + next.prev = h + h.next = next + h.prev = prev + end + if dropper.location == variables.margin then + -- okay + else + local lines = tonumber(dropper.n) or 0 + if lines == 0 then -- safeguard, not too precise + lines = math.ceil((height+voffset) / tex.baselineskip.width) + end + tex.hangafter = - lines + tex.hangindent = width + distance + end + done = true + end + end + end + end + return head, done +end + +local enabled = false + +function paragraphs.set(n) + if n == variables.reset or not tonumber(n) or n == 0 then + texattribute[a_paragraph] = unsetvalue + else + if not enabled then + tasks.enableaction("processors","typesetters.paragraphs.handler") + if trace_paragraphs then + report_paragraphs("enabling paragraphs") + end + enabled = true + end + texattribute[a_paragraph] = n + end +end + +paragraphs.attribute = a_paragraph + +paragraphs.handler = nodes.installattributehandler { + name = "paragraphs", + namespace = paragraphs, + processor = process, +} diff --git a/tex/context/base/typo-par.mkiv b/tex/context/base/typo-par.mkiv new file mode 100644 index 000000000..196585324 --- /dev/null +++ b/tex/context/base/typo-par.mkiv @@ -0,0 +1,105 @@ +%D \module +%D [ file=typo-par, +%D version=2011.10.27, +%D title=\CONTEXT\ Typesetting Macros, +%D subtitle=Paragraphs, +%D author=Hans Hagen, +%D date=\currentdate, +%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] +%C +%C This module is part of the \CONTEXT\ macro||package and is +%C therefore copyrighted by \PRAGMA. See mreadme.pdf for +%C details. + +\writestatus{loading}{ConTeXt Typesetting Macros / Paragraphs} + +%D This will change ... par specific attribute set and such. + +\unprotect + +\registerctxluafile{typo-par}{1.001} + +\definesystemattribute[paragraphspecial][public] + +\unexpanded\def\setparagraphspecial[#1]% + {\ctxlua{typesetters.paragraphs.set("#1")}} + +\appendtoks + \attribute\paragraphspecialattribute\attributeunsetvalue +\to \everyforgetall + +%D For the moment here: dropped caps redone. In addition to the +%D parameters shown in the example you can use the \type {style} and +%D more low level \type {font} keys to set up the font where +%D the first one wins. If you don't like the behaviour you can always +%D roll out your own command. +%D +%D \starttyping +%D \placeinitial \input ward \par \input ward \par \placeinitial \input tufte +%D +%D \setupinitial +%D [location=text, +%D n=2, +%D color=darkred, +%D distance=-1em, +%D hoffset=1em, +%D voffset=-3ex, +%D before=\blank] +%D +%D \placeinitial \input ward \par \input ward \placeinitial \input tufte +%D \stoptyping + +\installsimplecommandhandler \??dc {initial} + +\appendtoks + \checkinitialparent % this might become automatic +\to \everysetupinitial + +\def\initial_auto_scale % magic + {\the\dimexpr\lineheight*\initialparameter\c!n-\initialparameter\c!voffset\relax} + +\setupinitial + [\c!location=\v!text, + \c!n=3, + % \s!font=Bold sa 4, + \s!font=Bold at \initial_auto_scale, + \c!distance=.125em, + \c!hoffset=\zeropoint, + \c!voffset=-1ex, + \c!style=, + \c!color=, + \c!before=\blank] + +\unexpanded\def\placeinitial + {\dosingleempty\place_initial} + +\def\place_initial[#1]% todo: optional text + {\par + \begingroup + \edef\currentinitial{#1}% + \begingroup + \dosetinitialcolorattribute\c!color + \ctxlua{typesetters.paragraphs.droppers.set { + location = "\initialparameter\c!location", + enabled = true, + n = \number\initialparameter\c!n, + distance = \number\dimexpr\initialparameter\c!distance, + hoffset = \number\dimexpr\initialparameter\c!hoffset, + voffset = \number\dimexpr\initialparameter\c!voffset, + ma = \the\attribute\colormodelattribute , + ca = \the\attribute\colorattribute , + ta = \the\attribute\transparencyattribute + }}% + \stopluacode + \endgroup + \begingroup + \doifelsenothing{\initialparameter\c!style} + {\definedfont[\initialparameter\s!font]} + {\initialparameter\c!style}% + \ctxlua{typesetters.paragraphs.droppers.freeze()}% + \endgroup + \endgroup + \setparagraphspecial[1]% + \namedinitialparameter{#1}\c!before} + +\protect \endinput diff --git a/tex/context/base/typo-txt.mkvi b/tex/context/base/typo-txt.mkvi new file mode 100644 index 000000000..5f7824a0a --- /dev/null +++ b/tex/context/base/typo-txt.mkvi @@ -0,0 +1,71 @@ +%D \module +%D [ file=typo-txt, +%D version=2011.10.27, +%D title=\CONTEXT\ Typesetting Macros, +%D subtitle=Texts, +%D author=Hans Hagen, +%D date=\currentdate, +%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] +%C +%C This module is part of the \CONTEXT\ macro||package and is +%C therefore copyrighted by \PRAGMA. See mreadme.pdf for +%C details. + +%D This module replaces the by now rather old supp-fun module. + +\unprotect + +%D \NormalizeFontHeight \name {sample text} {height} {font} +%D \NormalizeFontWidth \name {sample text} {width} {font} +%D \NormalizeTextHeight {font} {height} {text} +%D \NormalizeTextWidth {font} {width} {text} + +\newbox\normalize_font_box + +\def\normalized_size#axis#size% + {\dimexpr\ifdim#1\normalize_font_box=\zeropoint + \bodyfontsize + \else + \cldcontext{\number\dimexpr10pt\relax*\number\dimexpr#size\relax/\number#axis\normalize_font_box}\scaledpoint + \fi\relax} + +\def\normalize_font_at_size#axis#cs#text#size#font% avoid overflow by using lua + {\begingroup + \setbox\normalize_font_box\hbox{\definedfont[#font at 10pt]\settrialtypesetting#text}% + \normalexpanded{\endgroup\edef\noexpand\TheNormalizedFontSize{\the\normalized_size{#axis}{#size}}}% + \edef#cs{\noexpand\definedfont[#font at \TheNormalizedFontSize]}} + +\unexpanded\def\normalize_text_at_size#axis#font#size#text% + {\dontleavehmode + \begingroup + \setbox\normalize_font_box\hbox{\definedfont[#font at 10pt]\settrialtypesetting#text}% + \definedfont[#font at \the\normalized_size{#axis}{#size}]#text% + \endgroup} + +\let\TheNormalizedFontSize\!!zeropoint + +%D Traditionally we use UpperCasedNames for this kind of +%D functionality. + +\unexpanded\def\NormalizeFontHeight{\normalize_font_at_size\ht} +\unexpanded\def\NormalizeFontWidth {\normalize_font_at_size\wd} + +\unexpanded\def\NormalizeTextHeight{\normalize_text_at_size\ht} +\unexpanded\def\NormalizeTextWidth {\normalize_text_at_size\wd} + +\unexpanded\def\WidthSpanningText#text#width#font% compatibility macro + {\hbox{\NormalizeFontWidth\temp{#text}{#width}{#font}\temp\the\everydefinedfont#1}} + +%D \startbuffer +%D \NormalizeFontWidth \MyFontName {sample text} {10cm} {Serif*default} +%D +%D \ruledhbox{\MyFontName sample text} +%D \blank +%D \blackrule[width=10cm] +%D \blank +%D \ruledhbox{\NormalizeTextWidth {Serif*default} {10cm} {sample text}} +%D \stopbuffer +%D +%D \typebuffer \getbuffer + +\protect \endinput diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua index ebd7cd239..4d5f40409 100644 --- a/tex/generic/context/luatex/luatex-fonts-merged.lua +++ b/tex/generic/context/luatex/luatex-fonts-merged.lua @@ -1,6 +1,6 @@ -- merged file : luatex-fonts-merged.lua -- parent file : luatex-fonts.lua --- merge date : 10/28/11 22:32:28 +-- merge date : 11/02/11 20:10:53 do -- begin closure to overcome local limits and interference @@ -3239,8 +3239,8 @@ constructors.keys = { noglyphnames = "boolean", mode = "string", has_math = "boolean", - no_math_italics = "boolean", - no_text_italics = "boolean", + mathitalics = "boolean", + textitalics = "boolean", finalized = "boolean", }, parameters = { @@ -3570,13 +3570,13 @@ function constructors.scale(tfmdata,specification) targetparameters.units = units targetparameters.scaledpoints = askedscaledpoints -- - local isvirtual = properties.virtualized or tfmdata.type == "virtual" - local hasquality = target.auto_expand or target.auto_protrude - local hasitalic = properties.italic_correction - local autoitalic = properties.auto_italic_correction - local stackmath = not properties.no_stackmath - local nonames = properties.noglyphnames - local nodemode = properties.mode == "node" + local isvirtual = properties.virtualized or tfmdata.type == "virtual" + local hasquality = target.auto_expand or target.auto_protrude + local hasitalic = properties.italic_correction + local autoitalic = properties.auto_italic_correction + local stackmath = not properties.no_stackmath + local nonames = properties.noglyphnames + local nodemode = properties.mode == "node" -- if changed and not next(changed) then changed = false @@ -3647,9 +3647,12 @@ function constructors.scale(tfmdata,specification) end -- local italickey = "italic" + -- + -- some context specific trickery (we might move this to a plug in into here + -- if hasmath then - if properties.no_mathitalics then - italickey = "italic_correction" -- context specific trickery + if properties.mathitalics then + italickey = "italic_correction" if trace_defining then report_defining("math italics disabled for: name '%s', fullname: '%s', filename: '%s'", name or "noname",fullname or "nofullname",filename or "nofilename") @@ -3657,15 +3660,20 @@ function constructors.scale(tfmdata,specification) end autoitalic = false -- new else - if properties.no_textitalics then - italickey = "italic_correction" -- context specific trickery + if properties.textitalics then + italickey = "italic_correction" if trace_defining then report_defining("text italics disabled for: name '%s', fullname: '%s', filename: '%s'", name or "noname",fullname or "nofullname",filename or "nofilename") end + if properties.delaytextitalics then + autoitalic = false + end end end -- + -- end of context specific trickery + -- local sharedkerns = { } -- -- we can have a dumb mode (basemode without math etc) that skips most @@ -3765,12 +3773,17 @@ function constructors.scale(tfmdata,specification) end -- if autoitalic then - local vi = description.italic or (description.boundingbox[3] - description.width + autoitalic) - if vi and vi ~= 0 then + local vi = description.italic + if not vi then + local vi = description.boundingbox[3] - description.width + autoitalic + if vi > 0 then -- < 0 indicates no overshoot or a very small auto italic + chr[italickey] = vi*hdelta + end + elseif vi ~= 0 then chr[italickey] = vi*hdelta end elseif hasitalic then - local vi = description.italic -- or character.italic hm, already scaled ! + local vi = description.italic if vi and vi ~= 0 then chr[italickey] = vi*hdelta end @@ -4287,7 +4300,7 @@ a helper function.

function constructors.checkedfeatures(what,features) local defaults = handlers[what].features.defaults if features and next(features) then - features = fastcopy(features) -- can be inherited + features = fastcopy(features) -- can be inherited (mt) but then no loops possible for key, value in next, defaults do if features[key] == nil then features[key] = value @@ -7106,9 +7119,9 @@ local function otftotfm(specification) tfmdata.shared = shared end shared.rawdata = rawdata - shared.features = features -- default + -- shared.features = features -- default shared.dynamics = { } - shared.processes = { } + -- shared.processes = { } tfmdata.changed = { } shared.features = features shared.processes = otf.setfeatures(tfmdata,features) @@ -7127,7 +7140,8 @@ local function read_from_otf(specification) tfmdata.properties.sub = specification.sub -- tfmdata = constructors.scale(tfmdata,specification) - constructors.applymanipulators("otf",tfmdata,specification.features.normal,trace_features,report_otf) + local allfeatures = tfmdata.shared.features or specification.features.normal + constructors.applymanipulators("otf",tfmdata,allfeatures,trace_features,report_otf) constructors.setname(tfmdata,specification) -- only otf? fonts.loggers.register(tfmdata,file.extname(specification.filename),specification) end -- cgit v1.2.3