summaryrefslogtreecommitdiff
path: root/tex
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2011-11-04 18:00:13 +0200
committerMarius <mariausol@gmail.com>2011-11-04 18:00:13 +0200
commite39e55fe08653b79084655b91e468940b9495a59 (patch)
tree3a06d66513f0ace7e542df82bfcf7397e34c383e /tex
parent59b391358db7f668f0887943cde339fa1152b081 (diff)
downloadcontext-e39e55fe08653b79084655b91e468940b9495a59.tar.gz
beta 2011.11.04 14:15
Diffstat (limited to 'tex')
-rw-r--r--tex/context/base/buff-ini.lua61
-rw-r--r--tex/context/base/buff-ini.mkiv7
-rw-r--r--tex/context/base/buff-ver.lua12
-rw-r--r--tex/context/base/catc-ini.mkiv2
-rw-r--r--tex/context/base/cont-new.mkii2
-rw-r--r--tex/context/base/cont-new.mkiv2
-rw-r--r--tex/context/base/context-version.pdf42
-rw-r--r--tex/context/base/context-version.pngbin105446 -> 105314 bytes
-rw-r--r--tex/context/base/context.mkii2
-rw-r--r--tex/context/base/context.mkiv2
-rw-r--r--tex/context/base/page-lin.lua3
-rw-r--r--tex/context/base/status-files.pdf116
-rw-r--r--tex/context/base/status-lua.pdf5922
-rw-r--r--tex/context/base/strc-ref.mkvi49
-rw-r--r--tex/context/base/tabl-xtb.mkvi36
-rw-r--r--tex/context/base/typo-mar.mkiv58
-rw-r--r--tex/generic/context/luatex/luatex-fonts-merged.lua2
17 files changed, 3219 insertions, 3099 deletions
diff --git a/tex/context/base/buff-ini.lua b/tex/context/base/buff-ini.lua
index 90b4b4a76..65b0135c6 100644
--- a/tex/context/base/buff-ini.lua
+++ b/tex/context/base/buff-ini.lua
@@ -19,40 +19,45 @@ local count, splitlines = string.count, string.splitlines
local variables = interfaces.variables
local settings_to_array = utilities.parsers.settings_to_array
+local ctxcatcodes = tex.ctxcatcodes
+local txtcatcodes = tex.txtcatcodes
+
buffers = { }
local buffers = buffers
local context = context
-local data = { }
-
-function buffers.raw(name)
- return data[name] or ""
-end
+local cache = { }
local function erase(name)
- data[name] = nil
+ cache[name] = nil
end
-local function assign(name,str)
- data[name] = str
+local function assign(name,str,catcodes)
+ cache[name] = { data = str, catcodes = catcodes }
end
local function append(name,str)
- data[name] = (data[name] or "") .. str
+ local buffer = cache[name]
+ if buffer then
+ buffer.data = buffer.data .. str
+ else
+ cache[name] = { data = str }
+ end
end
local function exists(name)
- return data[name] ~= nil
+ return cache[name]
end
-local function getcontent(name) -- == raw
- return data[name] or ""
+local function getcontent(name)
+ local buffer = name and cache[name]
+ return buffer and buffer.data or ""
end
local function getlines(name)
- local d = name and data[name]
- return d and splitlines(d)
+ local buffer = name and cache[name]
+ return buffer and splitlines(buffer.data)
end
local function collectcontent(names,separator) -- no print
@@ -61,7 +66,7 @@ local function collectcontent(names,separator) -- no print
end
local nnames = #names
if nnames == 0 then
- return data[""] or "" -- default buffer
+ return getcontent("") -- default buffer
elseif nnames == 1 then
return getcontent(names[1])
else
@@ -77,6 +82,7 @@ local function collectcontent(names,separator) -- no print
end
end
+buffers.raw = getcontent
buffers.erase = erase
buffers.assign = assign
buffers.append = append
@@ -115,7 +121,7 @@ local continue = false
-- An \n is unlikely to show up as \r is the endlinechar but \n is more generic
-- for us.
-function commands.grabbuffer(name,begintag,endtag,bufferdata) -- maybe move \\ to call
+function commands.grabbuffer(name,begintag,endtag,bufferdata,catcodes) -- maybe move \\ to call
local dn = getcontent(name)
if dn == "" then
nesting = 0
@@ -168,7 +174,7 @@ function commands.grabbuffer(name,begintag,endtag,bufferdata) -- maybe move \\ t
end
end
end
- assign(name,dn)
+ assign(name,dn,catcodes)
commands.testcase(more)
end
@@ -215,16 +221,31 @@ function commands.savebuffer(list,name) -- name is optional
end
function commands.getbuffer(name)
- local str = data[name]
- if str and str ~= "" then
+ local str = getcontent(name)
+ if str ~= "" then
context.viafile(str)
end
end
-function commands.getbuffermkvi(name)
+function commands.getbuffermkvi(name) -- rather direct !
context.viafile(resolvers.macros.preprocessed(getcontent(name)))
end
+function commands.gettexbuffer(name)
+ local buffer = name and cache[name]
+ if buffer and buffer.data ~= "" then
+ context.pushcatcodetable()
+ if buffer.catcodes == txtcatcodes then
+ context.setcatcodetable(txtcatcodes)
+ else
+ context.setcatcodetable(ctxcatcodes)
+ end
+ -- context(function() context.viafile(buffer.data) end)
+ context.getbuffer { name } -- viafile flushes too soon
+ context.popcatcodetable()
+ end
+end
+
function commands.getbufferctxlua(name)
local ok = loadstring(getcontent(name))
if ok then
diff --git a/tex/context/base/buff-ini.mkiv b/tex/context/base/buff-ini.mkiv
index 4fae1ec52..7fedd3b60 100644
--- a/tex/context/base/buff-ini.mkiv
+++ b/tex/context/base/buff-ini.mkiv
@@ -65,6 +65,7 @@
\unexpanded\long\def\dodowithbuffer#1#2#3#4#5% name, startsequence, stopsequence, before, after
{#4%
\bgroup
+ \edef\catcodetableofbuffer{\number\catcodetable}%
\ctxcommand{erasebuffer("#1")}%
\setcatcodetable \vrbcatcodes
\long\def\nododowithbuffer
@@ -72,7 +73,7 @@
#5}%
\long\def\dododowithbuffer##1#3% is detokenize needed? TEST
%{\ctxcommand{grabbuffer("#1","#2","#3",\!!bs\detokenize{##1}\!!es)} % space ?
- {\ctxcommand{grabbuffer("#1","#2","#3",\!!bs>##1\!!es)}% space ?
+ {\ctxcommand{grabbuffer("#1","#2","#3",\!!bs>##1\!!es,\catcodetableofbuffer)}% space ?
\dododowithbuffer
\nododowithbuffer}%
\dododowithbuffer}
@@ -83,7 +84,7 @@
\let\endbuffer\relax
\long\def\dosetbuffer[#1]#2\endbuffer % seldom used so we just pass #2
- {\ctxcommand{assignbuffer("#1", \!!bs\detokenize{#2}\!!es)}}
+ {\ctxcommand{assignbuffer("#1",\!!bs\detokenize{#2}\!!es,\number\catcodetable)}}
\def\namedbufferparameter#1#2{\csname\??bu#1#2\endcsname}
@@ -156,7 +157,7 @@
\unexpanded\def\doprocesstexbuffer#1%
{\pushcatcodetable
- \catcodetable\ctxcatcodes
+ \catcodetable\ctxcatcodes % \setcatcodetable
\dododogetbuffer{#1}%
\popcatcodetable}
diff --git a/tex/context/base/buff-ver.lua b/tex/context/base/buff-ver.lua
index c7366d871..bf486045a 100644
--- a/tex/context/base/buff-ver.lua
+++ b/tex/context/base/buff-ver.lua
@@ -776,10 +776,20 @@ end
-- not really buffers but it's closely related
+-- A string.gsub(str,"(\\.-) +$","%1") is faster than an lpeg when there is a
+-- match but slower when there is no match. But anyway, we need a more clever
+-- parser so we use lpeg.
+--
+-- [[\text ]] [[\text{}]] [[\text \text ]] [[\text \\ \text ]]
+
+----- strip = Cs((P(" ")^1 * P(-1)/"" + 1)^0)
+local strip = Cs((P("\\") * ((1-S("\\ "))^1) * (P(" ")/"") + 1)^0) --
+
function commands.typestring(settings)
local content = settings.data
if content and content ~= "" then
---~ content = decodecomment(content)
+ content = lpegmatch(strip,content) -- can be an option, btu needed in e.g. tabulate
+ -- content = decodecomment(content)
-- content = dotabs(content,settings)
visualize(content,checkedsettings(settings,"inline"))
end
diff --git a/tex/context/base/catc-ini.mkiv b/tex/context/base/catc-ini.mkiv
index 47562f5f2..01814597b 100644
--- a/tex/context/base/catc-ini.mkiv
+++ b/tex/context/base/catc-ini.mkiv
@@ -271,7 +271,7 @@
\normalprotected\def\showcatcodenestingerror % can be overloaded
{\immediate\write16{}%
- \immediate\write16{Fatal error: catcode push/pop mismatch. Fix this!}\wait\end
+ \immediate\write16{Fatal error: catcode push/pop mismatch. Fix this! (restore level: \number\catcoderestorelevel)}\wait\end
\immediate\write16{}}
\normalprotected\def\restorecatcodes % takes previous level
diff --git a/tex/context/base/cont-new.mkii b/tex/context/base/cont-new.mkii
index 84fc2cf23..3880314c1 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.11.03 23:27}
+\newcontextversion{2011.11.04 14:15}
%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 20fa4338c..5c1ceb5d7 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.11.03 23:27}
+\newcontextversion{2011.11.04 14:15}
%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 10d2d92dc..339f58ff5 100644
--- a/tex/context/base/context-version.pdf
+++ b/tex/context/base/context-version.pdf
@@ -1,7 +1,7 @@
%PDF-1.6
%ÐÔÅØ
17 0 obj
-<</Length 3373 >>
+<</Length 3372 >>
stream
0 g 0 G
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
-66.547943 -36.456955 44.394852 -60.472305 32.849838 -88.710907 c
+66.130615 -35.860489 43.740662 -60.132584 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
-16.192535 -57.124786 -31.660339 -57.863541 -54.288406 -91.396378 c
+9.611038 -67.528961 -27.856400 -68.107391 -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
--52.039001 -58.461945 -70.373108 -31.224136 -100.546051 -25.258499 c
+-57.037994 -60.352188 -73.774231 -35.488251 -100.546051 -25.258499 c
-8.674164 -6.355164 l
h f
0 g 0 G
@@ -163,17 +163,17 @@ stream
</rdf:Description>
<rdf:Description rdf:about="" xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/">
<pdfx:ConTeXt.Jobname>s-version</pdfx:ConTeXt.Jobname>
- <pdfx:ConTeXt.Time>2011.11.03 23:27</pdfx:ConTeXt.Time>
+ <pdfx:ConTeXt.Time>2011.11.04 14:16</pdfx:ConTeXt.Time>
<pdfx:ConTeXt.Url>www.pragma-ade.com</pdfx:ConTeXt.Url>
- <pdfx:ConTeXt.Version>2011.11.03 23:27</pdfx:ConTeXt.Version>
- <pdfx:ID>s-version.2011-11-03T23:27:26+01:00</pdfx:ID>
+ <pdfx:ConTeXt.Version>2011.11.04 14:15</pdfx:ConTeXt.Version>
+ <pdfx:ID>s-version.2011-11-04T14:16:04+01:00</pdfx:ID>
<pdfx:PTEX.Fullbanner>This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1</pdfx:PTEX.Fullbanner>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/">
- <xmp:CreateDate>2011-11-03T23:27:26+01:00</xmp:CreateDate>
- <xmp:CreatorTool>ConTeXt - 2011.11.03 23:27</xmp:CreatorTool>
- <xmp:ModifyDate>2011-11-03T23:27:26+01:00</xmp:ModifyDate>
- <xmp:MetadataDate>2011-11-03T23:27:26+01:00</xmp:MetadataDate>
+ <xmp:CreateDate>2011-11-04T14:16:04+01:00</xmp:CreateDate>
+ <xmp:CreatorTool>ConTeXt - 2011.11.04 14:15</xmp:CreatorTool>
+ <xmp:ModifyDate>2011-11-04T14:16:04+01:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2011-11-04T14:16:04+01:00</xmp:MetadataDate>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
<pdf:Keywords/>
@@ -201,7 +201,7 @@ endobj
endobj
22 0 obj
<<
-/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.11.03 23:27) /ConTeXt.Jobname (s-version) /CreationDate (D:20111103232726+01'00') /Trapped /False /Title <feff0073002d00760065007200730069006f006e> /ConTeXt.Time (2011.11.03 23:27) /ID (s-version.2011-11-03T23:27:26+01:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111103232726+01'00') /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300033002000320033003a00320037>
+/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.11.04 14:15) /ConTeXt.Jobname (s-version) /CreationDate (D:20111104141604+01'00') /Trapped /False /Title <feff0073002d00760065007200730069006f006e> /ConTeXt.Time (2011.11.04 14:16) /ID (s-version.2011-11-04T14:16:04+01:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111104141604+01'00') /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300034002000310034003a00310035>
/PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>>
endobj
xref
@@ -221,16 +221,16 @@ xref
0000000013 00000 f
0000000014 00000 f
0000000000 00000 f
-0000003643 00000 n
-0000003444 00000 n
+0000003642 00000 n
+0000003443 00000 n
0000000015 00000 n
-0000006042 00000 n
-0000003678 00000 n
-0000006095 00000 n
-0000006116 00000 n
-0000006268 00000 n
+0000006041 00000 n
+0000003677 00000 n
+0000006094 00000 n
+0000006115 00000 n
+0000006267 00000 n
trailer
-<</Size 23/Root 21 0 R/Info 22 0 R/ID[<8D8120CDACE9308CCFB5878947E7813C> <8D8120CDACE9308CCFB5878947E7813C>]>>
+<</Size 23/Root 21 0 R/Info 22 0 R/ID[<D6CA308111BC9E00C408BE0F5F7B7528> <D6CA308111BC9E00C408BE0F5F7B7528>]>>
startxref
-6866
+6865
%%EOF
diff --git a/tex/context/base/context-version.png b/tex/context/base/context-version.png
index 6b25fa001..46987c9fe 100644
--- a/tex/context/base/context-version.png
+++ b/tex/context/base/context-version.png
Binary files differ
diff --git a/tex/context/base/context.mkii b/tex/context/base/context.mkii
index 8ee193306..86378e820 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.11.03 23:27}
+\edef\contextversion{2011.11.04 14:15}
%D For those who want to use this:
diff --git a/tex/context/base/context.mkiv b/tex/context/base/context.mkiv
index dbc8ff30a..4755d0547 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.11.03 23:27}
+\edef\contextversion{2011.11.04 14:15}
%D For those who want to use this:
diff --git a/tex/context/base/page-lin.lua b/tex/context/base/page-lin.lua
index 676a4c7f6..fc38f7e6b 100644
--- a/tex/context/base/page-lin.lua
+++ b/tex/context/base/page-lin.lua
@@ -85,7 +85,8 @@ function lines.finalize(t)
local getnumber = lines.number
for _,p in next, t do
for _,r in next, p do
- if r.metadata.kind == "line" then
+ local m = r.metadata
+ if m and m.kind == "line" then
local e = r.entries
local u = r.userdata
e.linenumber = getnumber(e.text or 0) -- we can nil e.text
diff --git a/tex/context/base/status-files.pdf b/tex/context/base/status-files.pdf
index 257ceffbc..e4440dfd3 100644
--- a/tex/context/base/status-files.pdf
+++ b/tex/context/base/status-files.pdf
@@ -6,7 +6,7 @@ stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006A002D>-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
+/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<0039002D>-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
@@ -1429,13 +1429,13 @@ endobj
<</Font<</F47 18 0 R>>/ProcSet[/PDF/Text]>>
endobj
22 0 obj
-<</Length 29700 >>
+<</Length 29699 >>
stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006A002D>-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>-8129<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12030<006B006A00790052004E00520065>-500<004B004600420070>-14700<0052006500650079006A0065>-500<004B004600700042>-4150<006B006B00790038006500330039>-500<0048006D001C>-515<003800650052006500790065006A>-515<0059>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<0039002D>-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>-8129<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12028<006B006A0079006B006B00390064>-500<004B004600420070>-14698<0052006500640079006A0039>-500<004B004600700042>-4150<006B006B00790065006B0033006A>-500<0048006D001C>-515<003800650052006500650065006B>-515<0059>]TJ
ET
q
1 0 0 1 0 923.1064 cm
@@ -1563,21 +1563,21 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 577.0936 838.362 Tm [<006B006A0079004E0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.0936 838.362 Tm [<006B006A00520033004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 613.8438 838.362 cm
-0 0 12.9848 8.3103 re f
+0 0 13.0358 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 943.6443 838.362 Tm [<00390039006A00790039>]TJ
+/F47 11.955168 Tf 1 0 0 1 943.6563 838.362 Tm [<003900390033004E0052>]TJ
ET
0.725 g 0.725 G
q
1 0 0 1 980.4064 838.362 cm
-0 0 24.9078 8.3103 re f
+0 0 25.2362 8.3103 re f
Q
0 g 0 G
BT
@@ -1599,12 +1599,12 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 577.1056 809.5071 Tm [<006B006B0038004E0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.0936 809.5071 Tm [<006B006B0065006A0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 613.8438 809.5071 cm
-0 0 12.7038 8.3103 re f
+0 0 12.7257 8.3103 re f
Q
0 g 0 G
BT
@@ -2229,12 +2229,12 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 943.6563 405.5372 Tm [<00520038003900640065>]TJ
+/F47 11.955168 Tf 1 0 0 1 943.6443 405.5372 Tm [<00520038003900330033>]TJ
ET
0.725 g 0.725 G
q
1 0 0 1 980.4064 405.5372 cm
-0 0 8.7015 8.3103 re f
+0 0 8.7088 8.3103 re f
Q
0 g 0 G
BT
@@ -2481,12 +2481,12 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 820.3579 246.8348 Tm [<006B00650033006A0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 820.346 246.8348 Tm [<006B006400650064006A>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 857.0961 246.8348 cm
-0 0 15.0862 8.3103 re f
+0 0 15.5569 8.3103 re f
Q
0 g 0 G
BT
@@ -2598,12 +2598,12 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 820.334 189.1248 Tm [<00520079003800380033>]TJ
+/F47 11.955168 Tf 1 0 0 1 820.346 189.1248 Tm [<0052007900640052004E>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 857.0961 189.1248 cm
-0 0 5.936 8.3103 re f
+0 0 6.0272 8.3103 re f
Q
0 g 0 G
BT
@@ -2724,12 +2724,12 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 577.0817 102.5598 Tm [<006B00520079006A0079>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.0817 102.5598 Tm [<006B0052006B006B0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 613.8438 102.5598 cm
-0 0 11.8209 8.3103 re f
+0 0 11.934 8.3103 re f
Q
0 g 0 G
BT
@@ -2862,7 +2862,7 @@ stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006A002D>-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<0039002D>-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
@@ -4225,7 +4225,7 @@ stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006A002D>-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<0039002D>-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
@@ -4340,12 +4340,12 @@ 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.3878 re f
+0 0 11.9552 10.4287 re f
Q
0.725 g 0.725 G
q
1 0 0 1 425.0291 673.7576 cm
-0 0 11.9552 19.9263 re f
+0 0 11.9552 20.1889 re f
Q
0.6 g 0.6 G
q
@@ -4378,7 +4378,7 @@ 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.1631 re f
+0 0 11.9552 10.1806 re f
Q
0.725 g 0.725 G
q
@@ -4980,7 +4980,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 1326.2812 457.5684 cm
-0 0 11.9552 6.9612 re f
+0 0 11.9552 6.967 re f
Q
0.6 g 0.6 G
q
@@ -5219,7 +5219,7 @@ 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.069 re f
+0 0 11.9552 12.4455 re f
Q
0.725 g 0.725 G
q
@@ -5320,7 +5320,7 @@ 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.7488 re f
+0 0 11.9552 4.8218 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 9.4567 re f
+0 0 11.9552 9.5472 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
@@ -5586,7 +5586,7 @@ endobj
<</Type /Metadata /Subtype /XML
/Length 2135 >>
stream
-<?xpacket begin="" id="anmfmfxjwqdwtojeatmmchwh"?>
+<?xpacket begin="" id="aeexbukxjrdwdbtvcotbvqej"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
@@ -5609,14 +5609,14 @@ stream
<pdfx:ConTeXt.Time/>
<pdfx:ConTeXt.Url/>
<pdfx:ConTeXt.Version/>
- <pdfx:ID>s-inf-01.2011-11-03T23:32:21+01:00</pdfx:ID>
+ <pdfx:ID>s-inf-01.2011-11-04T14:20:37+01:00</pdfx:ID>
<pdfx:PTEX.Fullbanner>This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1</pdfx:PTEX.Fullbanner>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/">
- <xmp:CreateDate>2011-11-03T23:32:21+01:00</xmp:CreateDate>
- <xmp:CreatorTool>ConTeXt - 2011.11.03 23:27</xmp:CreatorTool>
- <xmp:ModifyDate>2011-11-03T23:32:21+01:00</xmp:ModifyDate>
- <xmp:MetadataDate>2011-11-03T23:32:21+01:00</xmp:MetadataDate>
+ <xmp:CreateDate>2011-11-04T14:20:37+01:00</xmp:CreateDate>
+ <xmp:CreatorTool>ConTeXt - 2011.11.04 14:15</xmp:CreatorTool>
+ <xmp:ModifyDate>2011-11-04T14:20:37+01:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2011-11-04T14:20:37+01:00</xmp:MetadataDate>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
<pdf:Keywords/>
@@ -5624,8 +5624,8 @@ stream
<pdf:Trapped>False</pdf:Trapped>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">
- <xmpMM:DocumentID>uuid:aecd671d-46ef-a6e8-56fb-b73b8887006d</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:0fbb4db3-45d8-84ec-5bbb-f471b95fd3bf</xmpMM:InstanceID>
+ <xmpMM:DocumentID>uuid:e93b1719-4af5-8f4d-7347-2c73c22f209b</xmpMM:DocumentID>
+ <xmpMM:InstanceID>uuid:fc610249-429c-9653-0e99-551198fb692f</xmpMM:InstanceID>
</rdf:Description>
</rdf:RDF>
</x:xmpmeta>
@@ -5757,7 +5757,7 @@ endobj
endobj
38 0 obj
<<
-/CreationDate (D:20111103233221+01'00') /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300033002000320033003a00320037> /Producer (LuaTeX-0.71.0) /ID (s-inf-01.2011-11-03T23:32:21+01:00) /Trapped /False /ModDate (D:20111103233221+01'00') /Title <feff0073002d0069006e0066002d00300031>
+/CreationDate (D:20111104142037+01'00') /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300034002000310034003a00310035> /Producer (LuaTeX-0.71.0) /ID (s-inf-01.2011-11-04T14:20:37+01:00) /Trapped /False /ModDate (D:20111104142037+01'00') /Title <feff0073002d0069006e0066002d00300031>
/PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>>
endobj
xref
@@ -5780,29 +5780,29 @@ xref
0000026951 00000 n
0000026749 00000 n
0000000015 00000 n
-0000113963 00000 n
-0000114286 00000 n
-0000056969 00000 n
-0000056767 00000 n
+0000113962 00000 n
+0000114285 00000 n
+0000056968 00000 n
+0000056766 00000 n
0000027011 00000 n
-0000080410 00000 n
-0000080209 00000 n
-0000057029 00000 n
-0000104154 00000 n
-0000103953 00000 n
-0000080470 00000 n
-0000104214 00000 n
-0000106436 00000 n
-0000106716 00000 n
-0000106789 00000 n
-0000112393 00000 n
-0000112610 00000 n
-0000114102 00000 n
-0000114360 00000 n
-0000114381 00000 n
-0000114533 00000 n
+0000080409 00000 n
+0000080208 00000 n
+0000057028 00000 n
+0000104153 00000 n
+0000103952 00000 n
+0000080469 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
-<</Size 39/Root 37 0 R/Info 38 0 R/ID[<7E8D4251A8B92459EB8F6476B42863DA> <7E8D4251A8B92459EB8F6476B42863DA>]>>
+<</Size 39/Root 37 0 R/Info 38 0 R/ID[<45D84B800CA3C0E18065578DD87586B9> <45D84B800CA3C0E18065578DD87586B9>]>>
startxref
-114994
+114993
%%EOF
diff --git a/tex/context/base/status-lua.pdf b/tex/context/base/status-lua.pdf
index 1a3249906..bdbaf303e 100644
--- a/tex/context/base/status-lua.pdf
+++ b/tex/context/base/status-lua.pdf
@@ -3639,66 +3639,66 @@ BT
/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 [<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 [<003B003200690069007200510054001C00620062002F001C0069001C>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<003B003200690069003200740023006D0037003700320060>]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 [<003B003200690069007200510054001C00620062002F001C0069001C0048004200620069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<003B003200690069007200510054001C00620062002F001C0069001C>]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 [<003B0060001C00230023006D0037003700320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<003B003200690069007200510054001C00620062002F001C0069001C0048004200620069>]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 [<003F003200480054001C002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<003B0060001C00230023006D0037003700320060>]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 [<003F003200480054006000320037003200600032004D002B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<003F003200480054001C002B006900420051004D>]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 [<003F003200740062006900600042004D003B00690051004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<003F003200480054006000320037003200600032004D002B0032>]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 [<003F0051006D0060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<003F003200740062006900600042004D003B00690051004D006D004B002300320060>]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 [<003F00760054003F0032004D001C00690032002F0048004200620069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<003F0051006D0060>]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 [<003F00760054003F0032004D001C00690032002F006D00600048>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<003F00760054003F0032004D001C00690032002F0048004200620069>]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 [<0042004D0062003200600069001C00690069001C002B003F004B0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<003F00760054003F0032004D001C00690032002F006D00600048>]TJ
+/F1 11.955168 Tf 1 0 0 1 500.5769 382.9365 Tm [<0037006D004D002B006900420051004D>]TJ
+/F50 9.96264 Tf 1 0 0 1 328.522 368.509 Tm [<002E>-525<002B003F001C0060001C002B0069003200600062>]TJ
+1 0 0 1 328.522 354.0815 Tm [<004C>-525<0048003200370069003F00760054003F0032004D004B0042004D>]TJ
+1 0 0 1 328.522 339.654 Tm [<002E>-525<004B001C005400540042004D003B>]TJ
+1 0 0 1 328.522 325.2266 Tm [<004C>-525<00600042003B003F0069003F00760054003F0032004D004B0042004D>]TJ
+1 0 0 1 328.522 310.7991 Tm [<0036>-525<006200320069002B003F001C0060001C002B0069003200600062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<0042004D002B00600032004B0032004D00690032002F006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0042004D0062003200600069002B0051004B004B0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<0042004D0062003200600069001C00690069001C002B003F004B0032004D0069>]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 [<0042004D00620032006000690037004200320048002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<0042004D0062003200600069002B0051004B004B0032004D0069>]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 [<0042004D006200320060006900600032004D002F003200600042004D003B00720042004D002F00510072>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<0042004D00620032006000690037004200320048002F>]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 [<0042004D006200320060006900620051006D004D002F002B004800420054>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<0042004D006200320060006900600032004D002F003200600042004D003B00720042004D002F00510072>]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 [<0042006200480032001C005400760032001C0060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<0042004D006200320060006900620051006D004D002F002B004800420054>]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 [<0048001C004D003B006D001C003B0032004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<0042006200480032001C005400760032001C0060>]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 [<0048001C00620069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<0048001C004D003B006D001C003B0032004D006D004B002300320060>]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 [<0048002B003F00320074004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<0048001C00620069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0048002B003F00320074004D006D004B0023003200600062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<0048002B003F00320074004D006D004B002300320060>]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 [<00480032001C005400760032001C0060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<0048002B003F00320074004D006D004B0023003200600062>]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 [<00480051001C002F002B0069007400540060003200540048004200620069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<00480032001C005400760032001C0060>]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 [<00480051001C002F00320074001C004B0051002F00320062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<00480051001C002F002B0069007400540060003200540048004200620069>]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 [<00480051001C002F00370051004D0069003B00510051002F004200320062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<00480051001C002F00320074001C004B0051002F00320062>]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 [<00480051001C002F007000420062006D001C00480042007800320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00480051001C002F00370051004D0069003B00510051002F004200320062>]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 [<00480051002B001C0069003200370042004800320054001C0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<00480051001C002F007000420062006D001C00480042007800320060>]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 [<00480051002B0037004200480032004D001C004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<00480051002B001C0069003200370042004800320054001C0069003F>]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 [<004B001C0074004200690032004B00720042002F0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<00480051002B0037004200480032004D001C004B0032>]TJ
/F1 11.955168 Tf 1 0 0 1 500.5769 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ
ET
endstream
@@ -3725,227 +3725,227 @@ endobj
endobj
482 0 obj
-<</Length 21486 >>
+<</Length 21494 >>
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 [<004B0042004D006D00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<004B001C0074004200690032004B00720042002F0069003F>]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 [<004B005100480032002B006D00480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<004B0042004D006D00690032>]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 [<004B0051004D0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<004B005100480032002B006D00480032>]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 [<004B0051004D0069003F004B004D0032004B>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<004B0051004D0069003F>]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 [<004B0051004D0069003F004D001C004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<004B0051004D0069003F004B004D0032004B>]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 [<004B0054002B0051004800510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<004B0051004D0069003F004D001C004B0032>]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 [<004B005400510054006900420051004D0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<004B0054002B0051004800510060>]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 [<004D001C004B0032002F006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<004B005400510054006900420051004D0062>]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 [<004D001C004B0032002F006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<004D001C004B0032002F006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]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 [<004D002300370062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<004D001C004B0032002F006200690060006D002B0069006D006000320070001C00600042001C002300480032>]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 [<004D0032007400690054001C0060001C0048004800320048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<004D002300370062>]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 [<004D003200740069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<004D0032007400690054001C0060001C0048004800320048>]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 [<004D00510037002F001C00760062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<004D003200740069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<004D00510037004200690032004B0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<004D00510037002F001C00760062>]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 [<004D0051003700620069001C002B00460032002F003700480051001C00690062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<004D00510037004200690032004B0062>]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 [<004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<004D0051003700620069001C002B00460032002F003700480051001C00690062>]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 [<0051002B0069004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<004D006D004B002300320060>]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 [<0051002B00690062006900600042004D003B00690051004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<0051002B0069004D006D004B002300320060>]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 [<00510060002F0042004D001C0048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<0051002B00690062006900600042004D003B00690051004D006D004B002300320060>]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 [<005100700032006000480051001C002F0023005100510046004B001C00600046>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<00510060002F0042004D001C0048>]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 [<0054002F0037006000510069001C006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<005100700032006000480051001C002F0023005100510046004B001C00600046>]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 [<005400320060002B0032004D0069001C003B003200510037>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<0054002F0037006000510069001C006900420051004D>]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 [<00540048001C002B00320054001C0060001C0048004800320048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<005400320060002B0032004D0069001C003B003200510037>]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 [<005400510054003700480051001C0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<00540048001C002B00320054001C0060001C0048004800320048>]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 [<00540051005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<005400510054003700480051001C0069>]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 [<0054006000320054001C00600032004A00530070001C00600042001C002300480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<00540051005400420069001C00480042002B002B0051006000600032002B006900420051004D>]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 [<0054006000320054001C00600032002300420023006900320074006200320062006200420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0054006000320054001C00600032004A00530070001C00600042001C002300480032>]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 [<0054006000320054001C00600032002F0037004200480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<0054006000320054001C00600032002300420023006900320074006200320062006200420051004D>]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 [<0054006000320054001C0060003200370051004D0069002B0051004800480032002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<0054006000320054001C00600032002F0037004200480032>]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 [<00540060003200620032006900620076004B0023005100480048004200620069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<0054006000320054001C0060003200370051004D0069002B0051004800480032002B006900420051004D>]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 [<0054006000320062003200690069001C0023006D0048001C00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<00540060003200620032006900620076004B0023005100480048004200620069>]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 [<0054006000320070006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<0054006000320062003200690069001C0023006D0048001C00690032>]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 [<005400600051002B0032006200620023006D0037003700320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<0054006000320070006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<005400600051002B0032006200620032002F0037004200480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<005400600051002B0032006200620023006D0037003700320060>]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 [<005400600051002B0032006200620032002F00370042004800320062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<005400600051002B0032006200620032002F0037004200480032>]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 [<005400600051002B0032006200620037004200480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<005400600051002B0032006200620032002F00370042004800320062>]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 [<005400600051002B0032006200620037004200480032004B001C004D0076>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<005400600051002B0032006200620037004200480032>]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 [<005400600051002B0032006200620037004200480032004D0051004D0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<005400600051002B0032006200620037004200480032004B001C004D0076>]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 [<005400600051002B00320062006200370042004800320051004D002B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<005400600051002B0032006200620037004200480032004D0051004D0032>]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 [<0054006D0062003F003700480051001C0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<005400600051002B00320062006200370042004800320051004D002B0032>]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 [<0054006D0062003F00420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<0054006D0062003F003700480051001C0069>]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 [<0060001C0072002B003F001C0060001C002B006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<0054006D0062003F00420069001C00480042002B002B0051006000600032002B006900420051004D>]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 [<0060001C0072002F001C00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<0060001C0072002B003F001C0060001C002B006900320060>]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 [<006000320037003200600032004D002B00320054001C003B003200620069001C00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<0060001C0072002F001C00690032>]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 [<006000320037003200600032004D002B003200600032001C00480054001C003B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<006000320037003200600032004D002B00320054001C003B003200620069001C00690032>]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 [<00600032003B00420062006900320060001C00690069001C002B003F004B0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<006000320037003200600032004D002B003200600032001C00480054001C003B0032>]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 [<00600032003B004200620069003200600023004200230069003200740032004D006900600076>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<00600032003B00420062006900320060001C00690069001C002B003F004B0032004D0069>]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 [<00600032003B004200620069003200600023004200230069003200740037004200480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<00600032003B004200620069003200600023004200230069003200740032004D006900600076>]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 [<00600032003B004200620069003200600023005100510046004B001C00600046>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<00600032003B004200620069003200600023004200230069003200740037004200480032>]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 [<00600032003B004200620069003200600023006D006900690051004D0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<00600032003B004200620069003200600023005100510046004B001C00600046>]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 [<00600032003B00420062006900320060002B0051004800510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<00600032003B004200620069003200600023006D006900690051004D0062>]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 [<00600032003B00420062006900320060002B00510048005100600042004D00690032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<00600032003B00420062006900320060002B0051004800510060>]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 [<00600032003B00420062006900320060003F003200480054>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<00600032003B00420062006900320060002B00510048005100600042004D00690032004D0069>]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 [<00600032003B00420062006900320060004200690032004B003B00600051006D0054>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<00600032003B00420062006900320060003F003200480054>]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 [<00600032003B00420062006900320060004B001C0042004D0069003200740069002B0051004800510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 815.7614 Tm [<00600032003B00420062006900320060004200690032004B003B00600051006D0054>]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 [<00600032003B00420062006900320060005400510062006900540051004D0032002F002300480051002B0046>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 801.3339 Tm [<00600032003B00420062006900320060004B001C0042004D0069003200740069002B0051004800510060>]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 [<00600032003B0042006200690032006000620051006D004D002F002B004800420054>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 786.9064 Tm [<00600032003B00420062006900320060005400510062006900540051004D0032002F002300480051002B0046>]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 [<00600032003B00420062006900320060006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 772.4789 Tm [<00600032003B0042006200690032006000620051006D004D002F002B004800420054>]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 [<00600032003B0042006200690032006000690060001C004D00620054001C00600032004D002B0076>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 758.0514 Tm [<00600032003B00420062006900320060006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]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 [<006000320048001C00690032004B001C006000460042004D003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 743.6239 Tm [<00600032003B0042006200690032006000690060001C004D00620054001C00600032004D002B0076>]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 [<00600032004B005100700032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 729.1964 Tm [<006000320048001C00690032004B001C006000460042004D003B>]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 [<0060003200540048001C002B0032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 714.7689 Tm [<00600032004B005100700032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]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 [<0060003200540048001C002B00320054005100620054007400760072003F002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 700.3414 Tm [<0060003200540048001C002B0032004B0042006200620042004D003B002B003F001C0060001C002B0069003200600062>]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 [<006000320062001C00700032003700480051001C0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 685.9139 Tm [<0060003200540048001C002B00320054005100620054007400760072003F002F>]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 [<0060003200620032006900370051004D0069002B0051004800480032002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 671.4864 Tm [<006000320062001C00700032003700480051001C0069>]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 [<0060003200620032006900370051004D006900370032001C0069006D00600032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 657.0589 Tm [<0060003200620032006900370051004D0069002B0051004800480032002B006900420051004D>]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 [<00600032006200320069004B001C006000460042004D003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 642.6314 Tm [<0060003200620032006900370051004D006900370032001C0069006D00600032>]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 [<00600032006200320069004B001C0069003F00420069001C00480042002B0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 628.2039 Tm [<00600032006200320069004B001C006000460042004D003B>]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 [<00600032006200320069004D006D0048004800370051004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 613.7764 Tm [<00600032006200320069004B001C0069003F00420069001C00480042002B0062>]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 [<006000320062003200690054001C0060001C0048004800320048>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 599.349 Tm [<00600032006200320069004D006D0048004800370051004D0069>]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 [<00600032006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 584.9215 Tm [<006000320062003200690054001C0060001C0048004800320048>]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 [<00600032006200320069006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 570.494 Tm [<00600032006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0060003200620032006900690042004B00320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 556.0665 Tm [<00600032006200320069006200690060006D002B0069006D00600032005400600051002B00320062006200510060>]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 [<0060003200620069001C00600069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 541.639 Tm [<0060003200620032006900690042004B00320060>]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 [<0060003200620069005100600032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 527.2115 Tm [<0060003200620069001C00600069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0060003200620069005100600032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 512.784 Tm [<0060003200620069005100600032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]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 [<00600051004B001C004D004D006D004B00320060001C00480062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 498.3565 Tm [<0060003200620069005100600032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0060006D004D0023006D0037003700320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 483.929 Tm [<00600051004B001C004D004D006D004B00320060001C00480062>]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 [<0062001C007000320023006D0037003700320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 469.5015 Tm [<0060006D004D0023006D0037003700320060>]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 [<0062001C00700032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 455.074 Tm [<0062001C007000320023006D0037003700320060>]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 [<0062001C00700032003700480051001C0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 440.6465 Tm [<0062001C00700032002B006D006000600032004D0069001C00690069006000420023006D006900320062>]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 [<0062001C007000320054001C0060001C0048004800320048>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 426.219 Tm [<0062001C00700032003700480051001C0069>]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 [<0062001C00700032006200690060006D002B0069006D00600032002300480051002B0046>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 411.7915 Tm [<0062001C007000320054001C0060001C0048004800320048>]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 [<0062001C00700032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 397.364 Tm [<0062001C00700032006200690060006D002B0069006D00600032002300480051002B0046>]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 [<0062001C007000320069001C003B003B0032002F0069007200510054001C00620062002F001C0069001C>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 382.9365 Tm [<0062001C00700032006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0062001C007000320069007200510054001C00620062002F001C0069001C>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 368.509 Tm [<0062001C007000320069001C003B003B0032002F0069007200510054001C00620062002F001C0069001C>]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 [<00620032002B0051004D002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 354.0815 Tm [<0062001C007000320069007200510054001C00620062002F001C0069001C>]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 [<0062003200480032002B0069006200690060006D002B0069006D00600032002300480051002B0046>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 339.654 Tm [<00620032002B0051004D002F>]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 [<006200320069002B0048005100620032002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 325.2266 Tm [<0062003200480032002B0069006200690060006D002B0069006D00600032002300480051002B0046>]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 [<006200320069002B00480051006200320054001C003B0032001C002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 310.7991 Tm [<006200320069002B0048005100620032002F0051002B006D004B0032004D0069001C002B006900420051004D>]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 [<006200320069002B0051004800510060004B0051002F00320048>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 296.3716 Tm [<006200320069002B00480051006200320054001C003B0032001C002B006900420051004D>]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 [<00620032006900370051004D006900370032001C0069006D00600032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 281.9441 Tm [<006200320069002B0051004800510060004B0051002F00320048>]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 [<00620032006900370051004D0069005100370042002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 267.5166 Tm [<00620032006900370051004D006900370032001C0069006D00600032>]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 [<006200320069003700510060004B001C0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 253.0891 Tm [<00620032006900370051004D0069005100370042002F>]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 [<006200320069003700510060004B0062004B00320069003F0051002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 238.6616 Tm [<006200320069003700510060004B001C0069>]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 [<006200320069004B001C006000460042004D003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 224.2341 Tm [<006200320069003700510060004B0062004B00320069003F0051002F>]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 [<006200320069004B001C0069003F001C00480054003F001C002300320069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 209.8066 Tm [<006200320069004B001C006000460042004D003B>]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 [<006200320069004B001C0069003F001C0048006900320060004D001C00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 195.3791 Tm [<006200320069004B001C0069003F001C00480054003F001C002300320069>]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 [<006200320069004B001C0069003F001C00690069006000420023006D00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 180.9516 Tm [<006200320069004B001C0069003F001C0048006900320060004D001C00690032>]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 [<006200320069004B001C0069003F00420069001C00480042002B0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<006200320069004B001C0069003F001C00690069006000420023006D00690032>]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 [<006200320069004B001C0069003F00620069007600480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<006200320069004B001C0069003F00420069001C00480042002B0062>]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 [<006200320069005100540032004D002F0051002B006D004B0032004D0069001C002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<006200320069004B001C0069003F00620069007600480032>]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 [<006200320069005100540032004D0054001C003B0032001C002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<006200320069005100540032004D002F0051002B006D004B0032004D0069001C002B006900420051004D>]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 [<00620032006900510072004D006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<006200320069005100540032004D0054001C003B0032001C002B006900420051004D>]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 [<0062003200690054001C003B003200690060001C004D00620042006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<00620032006900510072004D006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0062003200690060001C004D002F0051004B006200320032002F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<0062003200690054001C003B003200690060001C004D00620042006900420051004D>]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 [<0062003200690060001C0062006900320060002B0051004800510060>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<0062003200690060001C004D002F0051004B006200320032002F>]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 [<00620032006900600032001C00480042003B004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 51.1042 Tm [<0062003200690060001C0062006900320060002B0051004800510060>]TJ
/F1 11.955168 Tf 1 0 0 1 500.5769 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ
ET
endstream
@@ -3972,228 +3972,226 @@ endobj
endobj
490 0 obj
-<</Length 21130 >>
+<</Length 20921 >>
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 [<006200320069006000320037003200600032004D002B0032001C0060003B006D004B0032004D00690062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<00620032006900600032001C00480042003B004D>]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 [<006200320069006000320037003200600032004D002B00320051005400320060001C006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 801.3339 Tm [<006200320069006000320037003200600032004D002B0032001C0060003B006D004B0032004D00690062>]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 [<006200320069006200690060006D002B0069006D00600032002300480051002B004600620069001C00690032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<006200320069006000320037003200600032004D002B00320051005400320060001C006900420051004D>]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 [<006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 772.4789 Tm [<006200320069006200690060006D002B0069006D00600032002300480051002B004600620069001C00690032>]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 [<0062003200690069001C003B002B0051004B00230042004D001C006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 758.0514 Tm [<006200320069006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0062003200690069001C003B002F00320062002B006000420054006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 743.6239 Tm [<0062003200690069001C003B002B0051004B00230042004D001C006900420051004D>]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 [<0062003200690069001C003B002F00320062002B006000420054006900420051004D00620076004B002300510048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 729.1964 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D>]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 [<0062003200690069001C003B00370042003B006D00600032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 714.7689 Tm [<0062003200690069001C003B002F00320062002B006000420054006900420051004D00620076004B002300510048>]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 [<0062003200690069001C003B003F0042003B003F00480042003B003F0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 700.3414 Tm [<0062003200690069001C003B00370042003B006D00600032>]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 [<0062003200690069001C003B004200690032004B003B00600051006D0054>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 685.9139 Tm [<0062003200690069001C003B003F0042003B003F00480042003B003F0069>]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 [<0062003200690069001C003B00540060005100540032006000690076>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 671.4864 Tm [<0062003200690069001C003B004200690032004B003B00600051006D0054>]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 [<0062003200690069001C003B00620051006000690042004D003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 657.0589 Tm [<0062003200690069001C003B00540060005100540032006000690076>]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 [<0062003200690069001C003B00620076004D0051004D0076004B>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 642.6314 Tm [<0062003200690069001C003B00620051006000690042004D003B>]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 [<0062003200690069001C003B0069001C002300480032002B003200480048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 628.2039 Tm [<0062003200690069001C003B00620076004D0051004D0076004B>]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 [<0062003200690069001C003B0069001C0023006D0048001C00690032002B003200480048>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 613.7764 Tm [<0062003200690069001C003B0069001C002300480032002B003200480048>]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 [<006200320069006D00540023005100510046004B001C006000460062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 599.349 Tm [<0062003200690069001C003B0069001C0023006D0048001C00690032002B003200480048>]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 [<006200320069006D0054002B001C004D0070001C0062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 584.9215 Tm [<006200320069006D00540023005100510046004B001C006000460062>]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 [<006200320069006D0054003200740054005100600069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 570.494 Tm [<006200320069006D0054002B001C004D0070001C0062>]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 [<006200320069006D005400370051004D0069003200740054001C004D006200420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 556.0665 Tm [<006200320069006D0054003200740054005100600069>]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 [<006200320069006D005400370051004D006900540060005100690060006D006200420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 541.639 Tm [<006200320069006D005400370051004D0069003200740054001C004D006200420051004D>]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 [<006200320069006D00540042002F0032004D0069004200690076>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 527.2115 Tm [<006200320069006D005400370051004D006900540060005100690060006D006200420051004D>]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 [<006200320069006D005400420069001C00480042002B002B0051006000600032002B006900420051004D>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 512.784 Tm [<006200320069006D00540042002F0032004D0069004200690076>]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 [<0062003200690074004B00540037004200480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 498.3565 Tm [<006200320069006D005400420069001C00480042002B002B0051006000600032002B006900420051004D>]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 [<0062003F00510072002B003F001C0060002F001C0069001C>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 483.929 Tm [<0062003200690074004B00540037004200480032>]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 [<0062003F0051007200370051004D00690054001C0060001C004B00320069003200600062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 469.5015 Tm [<0062003F00510072002B003F001C0060002F001C0069001C>]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 [<0062003F00510072003F00760054003F0032004D001C00690032002F0042004D0048004200620069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 455.074 Tm [<0062003F0051007200370051004D00690054001C0060001C004B00320069003200600062>]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 [<0062003F00510072006200690060006D002B0069006D00600032002B0051006D004D006900320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 440.6465 Tm [<0062003F00510072003F00760054003F0032004D001C00690032002F0042004D0048004200620069>]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 [<006200540048004200690037004200480032004D001C004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 426.219 Tm [<0062003F00510072006200690060006D002B0069006D00600032002B0051006D004D006900320060>]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 [<0062005400510069002B0051004800510060004D001C004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 411.7915 Tm [<006200540048004200690037004200480032004D001C004B0032>]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 [<0062005400510069002B00510048005100600054001C00600032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 397.364 Tm [<0062005400510069002B0051004800510060004D001C004B0032>]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 [<0062005400510069002B00510048005100600070001C0048006D0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 382.9365 Tm [<0062005400510069002B00510048005100600054001C00600032004D0069>]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 [<00620069001C00600069002B0051004B00540051004D0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 368.509 Tm [<0062005400510069002B00510048005100600070001C0048006D0032>]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 [<00620069001C006000690032004D0070004200600051004D004B0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 354.0815 Tm [<00620069001C00600069002B0051004B00540051004D0032004D0069>]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 [<00620069001C00600069005400600051002F006D002B0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 339.654 Tm [<00620069001C006000690032004D0070004200600051004D004B0032004D0069>]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 [<00620069001C0060006900540060005100440032002B0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 325.2266 Tm [<00620069001C00600069005400600051002F006D002B0069>]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 [<00620069001C0060006900600032003B0042004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 310.7991 Tm [<00620069001C0060006900540060005100440032002B0069>]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 [<00620069001C006000690069001C003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 296.3716 Tm [<00620069001C0060006900600032003B0042004B0032>]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 [<00620069001C006000690069003200740069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 281.9441 Tm [<00620069001C006000690069001C003B>]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 [<0062006900510054002B0051004B00540051004D0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 267.5166 Tm [<00620069001C006000690069003200740069>]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 [<00620069005100540032004D0070004200600051004D004B0032004D0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 253.0891 Tm [<0062006900510054002B0051004B00540051004D0032004D0069>]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 [<0062006900510054005400600051002F006D002B0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 238.6616 Tm [<00620069005100540032004D0070004200600051004D004B0032004D0069>]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 [<006200690051005400540060005100440032002B0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 224.2341 Tm [<0062006900510054005400600051002F006D002B0069>]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 [<006200690051005400600032003B0042004B0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 209.8066 Tm [<006200690051005400540060005100440032002B0069>]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 [<00620069005100540069001C003B>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 195.3791 Tm [<006200690051005400600032003B0042004B0032>]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 [<00620069005100540069003200740069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 180.9516 Tm [<00620069005100540069001C003B>]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 [<006200690060006D002B0069006D00600032001C006D00690051002B001C0069002B0051002F0032002F003B00320069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 166.5241 Tm [<00620069005100540069003200740069>]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 [<006200690060006D002B0069006D00600032002B001C0069002B0051002F0032002F003B00320069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 152.0966 Tm [<006200690060006D002B0069006D00600032001C006D00690051002B001C0069002B0051002F0032002F003B00320069>]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 [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600062006D00230062>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 137.6691 Tm [<006200690060006D002B0069006D00600032002B001C0069002B0051002F0032002F003B00320069>]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 [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600070001C0048006D0032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 123.2416 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600062006D00230062>]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 [<006200690060006D002B0069006D00600032003B004200700032004D002B001C0069002B0051002F0032002F003B00320069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 108.8141 Tm [<006200690060006D002B0069006D00600032002B0051006D004D0069003200600070001C0048006D0032>]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 [<006200690060006D002B0069006D00600032004D006D004B002300320060>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 94.3866 Tm [<006200690060006D002B0069006D00600032003B004200700032004D002B001C0069002B0051002F0032002F003B00320069>]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 [<006200690060006D002B0069006D0060003200690042006900480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 79.9591 Tm [<006200690060006D002B0069006D00600032004D006D004B002300320060>]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
+/F47 11.955168 Tf 1 0 0 1 14.1732 65.5316 Tm [<006200690060006D002B0069006D0060003200690042006900480032>]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 [<006200690060006D002B0069006D006000320070001C00600042001C002300480032>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 51.1042 Tm [<006200690060006D002B0069006D00600032006D0062003200600070001C00600042001C002300480032>]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 [<0062006D002300370037>]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 [<0074006E0069001C002300480032006E0042004D00420069006E002B0051004D006200690060006D002B0069>]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 [<0074006E0069001C002300480032006E0042004D00420069006E006000320037004800510072006E003F00320042003B003F0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 166.5241 Tm [<0074006E0069001C002300480032006E0042004D00420069006E002B0051004D006200690060006D002B0069>]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 [<0074006E0069001C002300480032006E0042004D00420069006E006000320037004800510072006E00720042002F0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 152.0966 Tm [<0074006E0069001C002300480032006E0042004D00420069006E006000320037004800510072006E003F00320042003B003F0069>]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 [<0074006E0069001C002300480032006E004D003200740069006E006000510072>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 137.6691 Tm [<0074006E0069001C002300480032006E0042004D00420069006E006000320037004800510072006E00720042002F0069003F>]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 [<0074006E0069001C002300480032006E006000320037004800510072006E003F00320042003B003F0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 123.2416 Tm [<0074006E0069001C002300480032006E004D003200740069006E006000510072>]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 [<0074006E0069001C002300480032006E006000320037004800510072006E00720042002F0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 108.8141 Tm [<0074006E0069001C002300480032006E006000320037004800510072006E003F00320042003B003F0069>]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 [<0074006E0069001C002300480032006E006200320069006E002B0051004D006200690060006D002B0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 94.3866 Tm [<0074006E0069001C002300480032006E006000320037004800510072006E00720042002F0069003F>]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 [<0074006E0069001C002300480032006E006200320069006E006000320037004800510072006E003F00320042003B003F0069>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 79.9591 Tm [<0074006E0069001C002300480032006E006200320069006E002B0051004D006200690060006D002B0069>]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 [<0074006E0069001C002300480032006E006200320069006E006000320037004800510072006E00720042002F0069003F>]TJ
+/F47 11.955168 Tf 1 0 0 1 306.6042 65.5316 Tm [<0074006E0069001C002300480032006E006200320069006E006000320037004800510072006E003F00320042003B003F0069>]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 [<00760032001C0060>]TJ
-/F1 11.955168 Tf 1 0 0 1 500.5769 51.1042 Tm [<0037006D004D002B006900420051004D>]TJ
ET
endstream
endobj
@@ -4219,12 +4217,47 @@ endobj
endobj
497 0 obj
-<</Length 1594 >>
+<</Length 532 >>
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<006B006B>-1000<004D003200740069>]TJ
+/F47 11.955168 Tf 1 0 0 1 14.1732 815.7614 Tm [<0074006E0069001C002300480032006E006200320069006E006000320037004800510072006E00720042002F0069003F>]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 [<00760032001C0060>]TJ
+/F1 11.955168 Tf 1 0 0 1 208.1459 801.3339 Tm [<0037006D004D002B006900420051004D>]TJ
+ET
+endstream
+endobj
+487 0 obj
+<</Type/Page/Contents 497 0 R/Resources 496 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 500 0 R>>
+endobj
+500 0 obj
+[498 0 R 499 0 R]
+endobj
+498 0 obj
+<< /Type /Annot /A 480 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+
+endobj
+499 0 obj
+<< /Type /Annot /A 495 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+
+endobj
+496 0 obj
+<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
+endobj
+502 0 obj
+<< /S /GoTo /D [ 501 0 R /Fit ] >>
+
+endobj
+504 0 obj
+<</Length 1594 >>
+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<006B006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<002B0051004D0069001C0042004D003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B00480032001C004D004D001C004B0032>]TJ
/F1 11.955168 Tf 1 0 0 1 82.6166 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -4245,40 +4278,40 @@ BT
ET
endstream
endobj
-487 0 obj
-<</Type/Page/Contents 497 0 R/Resources 496 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 502 0 R>>
+494 0 obj
+<</Type/Page/Contents 504 0 R/Resources 503 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 509 0 R>>
endobj
-502 0 obj
-[498 0 R 499 0 R 223 0 R]
+509 0 obj
+[505 0 R 506 0 R 223 0 R]
endobj
-498 0 obj
-<< /Type /Annot /A 480 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+505 0 obj
+<< /Type /Annot /A 488 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-499 0 obj
-<< /Type /Annot /A 495 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+506 0 obj
+<< /Type /Annot /A 502 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-500 0 obj
-<</D[487 0 R/Fit]>>
+507 0 obj
+<</D[494 0 R/Fit]>>
endobj
-501 0 obj
-<</D[487 0 R/Fit]>>
+508 0 obj
+<</D[494 0 R/Fit]>>
endobj
-496 0 obj
+503 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-504 0 obj
-<< /S /GoTo /D [ 503 0 R /Fit ] >>
+511 0 obj
+<< /S /GoTo /D [ 510 0 R /Fit ] >>
endobj
-506 0 obj
+513 0 obj
<</Length 7681 >>
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<006B006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<002B0051004D0070003200600069003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001B00480054003F001C0023003200690042002B>]TJ
/F1 11.955168 Tf 1 0 0 1 139.1048 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -4367,40 +4400,40 @@ BT
ET
endstream
endobj
-494 0 obj
-<</Type/Page/Contents 506 0 R/Resources 505 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 511 0 R>>
+501 0 obj
+<</Type/Page/Contents 513 0 R/Resources 512 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 518 0 R>>
endobj
-511 0 obj
-[507 0 R 508 0 R 223 0 R]
+518 0 obj
+[514 0 R 515 0 R 223 0 R]
endobj
-507 0 obj
-<< /Type /Annot /A 488 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+514 0 obj
+<< /Type /Annot /A 495 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-508 0 obj
-<< /Type /Annot /A 504 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+515 0 obj
+<< /Type /Annot /A 511 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-509 0 obj
-<</D[494 0 R/Fit]>>
+516 0 obj
+<</D[501 0 R/Fit]>>
endobj
-510 0 obj
-<</D[494 0 R/Fit]>>
+517 0 obj
+<</D[501 0 R/Fit]>>
endobj
-505 0 obj
+512 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-513 0 obj
-<< /S /GoTo /D [ 512 0 R /Fit ] >>
+520 0 obj
+<< /S /GoTo /D [ 519 0 R /Fit ] >>
endobj
-515 0 obj
+522 0 obj
<</Length 1616 >>
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<006B0039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0038>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -4427,40 +4460,40 @@ BT
ET
endstream
endobj
-503 0 obj
-<</Type/Page/Contents 515 0 R/Resources 514 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 520 0 R>>
+510 0 obj
+<</Type/Page/Contents 522 0 R/Resources 521 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 527 0 R>>
endobj
-520 0 obj
-[516 0 R 517 0 R 223 0 R]
+527 0 obj
+[523 0 R 524 0 R 223 0 R]
endobj
-516 0 obj
-<< /Type /Annot /A 495 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+523 0 obj
+<< /Type /Annot /A 502 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-517 0 obj
-<< /Type /Annot /A 513 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+524 0 obj
+<< /Type /Annot /A 520 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-518 0 obj
-<</D[503 0 R/Fit]>>
+525 0 obj
+<</D[510 0 R/Fit]>>
endobj
-519 0 obj
-<</D[503 0 R/Fit]>>
+526 0 obj
+<</D[510 0 R/Fit]>>
endobj
-514 0 obj
+521 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-522 0 obj
-<< /S /GoTo /D [ 521 0 R /Fit ] >>
+529 0 obj
+<< /S /GoTo /D [ 528 0 R /Fit ] >>
endobj
-524 0 obj
+531 0 obj
<</Length 2724 >>
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<006B0038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -4499,40 +4532,40 @@ BT
ET
endstream
endobj
-512 0 obj
-<</Type/Page/Contents 524 0 R/Resources 523 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 529 0 R>>
+519 0 obj
+<</Type/Page/Contents 531 0 R/Resources 530 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 536 0 R>>
endobj
-529 0 obj
-[525 0 R 526 0 R 223 0 R]
+536 0 obj
+[532 0 R 533 0 R 223 0 R]
endobj
-525 0 obj
-<< /Type /Annot /A 504 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+532 0 obj
+<< /Type /Annot /A 511 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-526 0 obj
-<< /Type /Annot /A 522 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+533 0 obj
+<< /Type /Annot /A 529 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-527 0 obj
-<</D[512 0 R/Fit]>>
+534 0 obj
+<</D[519 0 R/Fit]>>
endobj
-528 0 obj
-<</D[512 0 R/Fit]>>
+535 0 obj
+<</D[519 0 R/Fit]>>
endobj
-523 0 obj
+530 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-531 0 obj
-<< /S /GoTo /D [ 530 0 R /Fit ] >>
+538 0 obj
+<< /S /GoTo /D [ 537 0 R /Fit ] >>
endobj
-533 0 obj
+540 0 obj
<</Length 2075 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0064>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<002F00420060>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004800480032002B00690054001C0069006900320060004D>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -4559,40 +4592,40 @@ BT
ET
endstream
endobj
-521 0 obj
-<</Type/Page/Contents 533 0 R/Resources 532 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 538 0 R>>
+528 0 obj
+<</Type/Page/Contents 540 0 R/Resources 539 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 545 0 R>>
endobj
-538 0 obj
-[534 0 R 535 0 R 223 0 R]
+545 0 obj
+[541 0 R 542 0 R 223 0 R]
endobj
-534 0 obj
-<< /Type /Annot /A 513 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+541 0 obj
+<< /Type /Annot /A 520 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-535 0 obj
-<< /Type /Annot /A 531 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+542 0 obj
+<< /Type /Annot /A 538 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-536 0 obj
-<</D[521 0 R/Fit]>>
+543 0 obj
+<</D[528 0 R/Fit]>>
endobj
-537 0 obj
-<</D[521 0 R/Fit]>>
+544 0 obj
+<</D[528 0 R/Fit]>>
endobj
-532 0 obj
+539 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-540 0 obj
-<< /S /GoTo /D [ 539 0 R /Fit ] >>
+547 0 obj
+<< /S /GoTo /D [ 546 0 R /Fit ] >>
endobj
-542 0 obj
+549 0 obj
<</Length 1548 >>
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<006B0064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B0033>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<002F004200600032002B00690042007000320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002F001C0069001C>]TJ
/F1 11.955168 Tf 1 0 0 1 76.3401 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -4613,40 +4646,40 @@ BT
ET
endstream
endobj
-530 0 obj
-<</Type/Page/Contents 542 0 R/Resources 541 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 547 0 R>>
+537 0 obj
+<</Type/Page/Contents 549 0 R/Resources 548 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 554 0 R>>
endobj
-547 0 obj
-[543 0 R 544 0 R 223 0 R]
+554 0 obj
+[550 0 R 551 0 R 223 0 R]
endobj
-543 0 obj
-<< /Type /Annot /A 522 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+550 0 obj
+<< /Type /Annot /A 529 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-544 0 obj
-<< /Type /Annot /A 540 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+551 0 obj
+<< /Type /Annot /A 547 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-545 0 obj
-<</D[530 0 R/Fit]>>
+552 0 obj
+<</D[537 0 R/Fit]>>
endobj
-546 0 obj
-<</D[530 0 R/Fit]>>
+553 0 obj
+<</D[537 0 R/Fit]>>
endobj
-541 0 obj
+548 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-549 0 obj
-<< /S /GoTo /D [ 548 0 R /Fit ] >>
+556 0 obj
+<< /S /GoTo /D [ 555 0 R /Fit ] >>
endobj
-551 0 obj
+558 0 obj
<</Length 1535 >>
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<006B0033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<002F0051002B006D004B0032004D0069>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0060003B006D004B0032004D00690062>]TJ
/F1 11.955168 Tf 1 0 0 1 139.1048 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -4665,40 +4698,40 @@ BT
ET
endstream
endobj
-539 0 obj
-<</Type/Page/Contents 551 0 R/Resources 550 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 556 0 R>>
+546 0 obj
+<</Type/Page/Contents 558 0 R/Resources 557 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 563 0 R>>
endobj
-556 0 obj
-[552 0 R 553 0 R 223 0 R]
+563 0 obj
+[559 0 R 560 0 R 223 0 R]
endobj
-552 0 obj
-<< /Type /Annot /A 531 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+559 0 obj
+<< /Type /Annot /A 538 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-553 0 obj
-<< /Type /Annot /A 549 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+560 0 obj
+<< /Type /Annot /A 556 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-554 0 obj
-<</D[539 0 R/Fit]>>
+561 0 obj
+<</D[546 0 R/Fit]>>
endobj
-555 0 obj
-<</D[539 0 R/Fit]>>
+562 0 obj
+<</D[546 0 R/Fit]>>
endobj
-550 0 obj
+557 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-558 0 obj
-<< /S /GoTo /D [ 557 0 R /Fit ] >>
+565 0 obj
+<< /S /GoTo /D [ 564 0 R /Fit ] >>
endobj
-560 0 obj
+567 0 obj
<</Length 5639 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006B004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0079>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0032004D0070004200600051004D004B0032004D0069>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0060003B006D004B0032004D0069>]TJ
/F1 11.955168 Tf 1 0 0 1 164.2106 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -4763,40 +4796,40 @@ BT
ET
endstream
endobj
-548 0 obj
-<</Type/Page/Contents 560 0 R/Resources 559 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 485 0 R/Annots 565 0 R>>
+555 0 obj
+<</Type/Page/Contents 567 0 R/Resources 566 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 573 0 R>>
endobj
-565 0 obj
-[561 0 R 562 0 R 223 0 R]
+573 0 obj
+[568 0 R 569 0 R 223 0 R]
endobj
-561 0 obj
-<< /Type /Annot /A 540 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+568 0 obj
+<< /Type /Annot /A 547 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-562 0 obj
-<< /Type /Annot /A 558 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+569 0 obj
+<< /Type /Annot /A 565 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-563 0 obj
-<</D[548 0 R/Fit]>>
+570 0 obj
+<</D[555 0 R/Fit]>>
endobj
-564 0 obj
-<</D[548 0 R/Fit]>>
+571 0 obj
+<</D[555 0 R/Fit]>>
endobj
-559 0 obj
+566 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-567 0 obj
-<< /S /GoTo /D [ 566 0 R /Fit ] >>
+575 0 obj
+<< /S /GoTo /D [ 574 0 R /Fit ] >>
endobj
-569 0 obj
+577 0 obj
<</Length 1614 >>
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<006A0079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0052>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -4826,40 +4859,40 @@ BT
ET
endstream
endobj
-557 0 obj
-<</Type/Page/Contents 569 0 R/Resources 568 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 575 0 R>>
+564 0 obj
+<</Type/Page/Contents 577 0 R/Resources 576 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 582 0 R>>
endobj
-575 0 obj
-[570 0 R 571 0 R 223 0 R]
+582 0 obj
+[578 0 R 579 0 R 223 0 R]
endobj
-570 0 obj
-<< /Type /Annot /A 549 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+578 0 obj
+<< /Type /Annot /A 556 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-571 0 obj
-<< /Type /Annot /A 567 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+579 0 obj
+<< /Type /Annot /A 575 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-572 0 obj
-<</D[557 0 R/Fit]>>
+580 0 obj
+<</D[564 0 R/Fit]>>
endobj
-573 0 obj
-<</D[557 0 R/Fit]>>
+581 0 obj
+<</D[564 0 R/Fit]>>
endobj
-568 0 obj
+576 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-577 0 obj
-<< /S /GoTo /D [ 576 0 R /Fit ] >>
+584 0 obj
+<< /S /GoTo /D [ 583 0 R /Fit ] >>
endobj
-579 0 obj
+586 0 obj
<</Length 1552 >>
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<006A0052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<003200740054003200600042004B0032004D00690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002F001C0069001C>]TJ
/F1 11.955168 Tf 1 0 0 1 76.3401 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -4880,40 +4913,40 @@ BT
ET
endstream
endobj
-566 0 obj
-<</Type/Page/Contents 579 0 R/Resources 578 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 584 0 R>>
+574 0 obj
+<</Type/Page/Contents 586 0 R/Resources 585 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 591 0 R>>
endobj
-584 0 obj
-[580 0 R 581 0 R 223 0 R]
+591 0 obj
+[587 0 R 588 0 R 223 0 R]
endobj
-580 0 obj
-<< /Type /Annot /A 558 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+587 0 obj
+<< /Type /Annot /A 565 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-581 0 obj
-<< /Type /Annot /A 577 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+588 0 obj
+<< /Type /Annot /A 584 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-582 0 obj
-<</D[566 0 R/Fit]>>
+589 0 obj
+<</D[574 0 R/Fit]>>
endobj
-583 0 obj
-<</D[566 0 R/Fit]>>
+590 0 obj
+<</D[574 0 R/Fit]>>
endobj
-578 0 obj
+585 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-586 0 obj
-<< /S /GoTo /D [ 585 0 R /Fit ] >>
+593 0 obj
+<< /S /GoTo /D [ 592 0 R /Fit ] >>
endobj
-588 0 obj
+595 0 obj
<</Length 8884 >>
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<006A006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00370042003B006D006000320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C00540054004800760060001C006900420051>]TJ
/F1 11.955168 Tf 1 0 0 1 126.5518 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -5019,40 +5052,40 @@ BT
ET
endstream
endobj
-576 0 obj
-<</Type/Page/Contents 588 0 R/Resources 587 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 593 0 R>>
+583 0 obj
+<</Type/Page/Contents 595 0 R/Resources 594 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 600 0 R>>
endobj
-593 0 obj
-[589 0 R 590 0 R 223 0 R]
+600 0 obj
+[596 0 R 597 0 R 223 0 R]
endobj
-589 0 obj
-<< /Type /Annot /A 567 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+596 0 obj
+<< /Type /Annot /A 575 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-590 0 obj
-<< /Type /Annot /A 586 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+597 0 obj
+<< /Type /Annot /A 593 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-591 0 obj
-<</D[576 0 R/Fit]>>
+598 0 obj
+<</D[583 0 R/Fit]>>
endobj
-592 0 obj
-<</D[576 0 R/Fit]>>
+599 0 obj
+<</D[583 0 R/Fit]>>
endobj
-587 0 obj
+594 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-595 0 obj
-<< /S /GoTo /D [ 594 0 R /Fit ] >>
+602 0 obj
+<< /S /GoTo /D [ 601 0 R /Fit ] >>
endobj
-597 0 obj
+604 0 obj
<</Length 5593 >>
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<006A006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0039>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -5123,40 +5156,40 @@ BT
ET
endstream
endobj
-585 0 obj
-<</Type/Page/Contents 597 0 R/Resources 596 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 602 0 R>>
+592 0 obj
+<</Type/Page/Contents 604 0 R/Resources 603 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 609 0 R>>
endobj
-602 0 obj
-[598 0 R 599 0 R 223 0 R]
+609 0 obj
+[605 0 R 606 0 R 223 0 R]
endobj
-598 0 obj
-<< /Type /Annot /A 577 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+605 0 obj
+<< /Type /Annot /A 584 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-599 0 obj
-<< /Type /Annot /A 595 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+606 0 obj
+<< /Type /Annot /A 602 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-600 0 obj
-<</D[585 0 R/Fit]>>
+607 0 obj
+<</D[592 0 R/Fit]>>
endobj
-601 0 obj
-<</D[585 0 R/Fit]>>
+608 0 obj
+<</D[592 0 R/Fit]>>
endobj
-596 0 obj
+603 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-604 0 obj
-<< /S /GoTo /D [ 603 0 R /Fit ] >>
+611 0 obj
+<< /S /GoTo /D [ 610 0 R /Fit ] >>
endobj
-606 0 obj
+613 0 obj
<</Length 2284 >>
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<006A0039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0038>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<003700480051001C00690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C004D001C0048007600620032004B00320069003F0051002F>]TJ
/F1 11.955168 Tf 1 0 0 1 126.5518 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -5185,40 +5218,40 @@ BT
ET
endstream
endobj
-594 0 obj
-<</Type/Page/Contents 606 0 R/Resources 605 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 611 0 R>>
+601 0 obj
+<</Type/Page/Contents 613 0 R/Resources 612 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 618 0 R>>
endobj
-611 0 obj
-[607 0 R 608 0 R 223 0 R]
+618 0 obj
+[614 0 R 615 0 R 223 0 R]
endobj
-607 0 obj
-<< /Type /Annot /A 586 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+614 0 obj
+<< /Type /Annot /A 593 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-608 0 obj
-<< /Type /Annot /A 604 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+615 0 obj
+<< /Type /Annot /A 611 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-609 0 obj
-<</D[594 0 R/Fit]>>
+616 0 obj
+<</D[601 0 R/Fit]>>
endobj
-610 0 obj
-<</D[594 0 R/Fit]>>
+617 0 obj
+<</D[601 0 R/Fit]>>
endobj
-605 0 obj
+612 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-613 0 obj
-<< /S /GoTo /D [ 612 0 R /Fit ] >>
+620 0 obj
+<< /S /GoTo /D [ 619 0 R /Fit ] >>
endobj
-615 0 obj
+622 0 obj
<</Length 2224 >>
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<006A0038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -5253,40 +5286,40 @@ BT
ET
endstream
endobj
-603 0 obj
-<</Type/Page/Contents 615 0 R/Resources 614 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 620 0 R>>
+610 0 obj
+<</Type/Page/Contents 622 0 R/Resources 621 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 627 0 R>>
endobj
-620 0 obj
-[616 0 R 617 0 R 223 0 R]
+627 0 obj
+[623 0 R 624 0 R 223 0 R]
endobj
-616 0 obj
-<< /Type /Annot /A 595 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+623 0 obj
+<< /Type /Annot /A 602 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-617 0 obj
-<< /Type /Annot /A 613 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+624 0 obj
+<< /Type /Annot /A 620 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-618 0 obj
-<</D[603 0 R/Fit]>>
+625 0 obj
+<</D[610 0 R/Fit]>>
endobj
-619 0 obj
-<</D[603 0 R/Fit]>>
+626 0 obj
+<</D[610 0 R/Fit]>>
endobj
-614 0 obj
+621 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-622 0 obj
-<< /S /GoTo /D [ 621 0 R /Fit ] >>
+629 0 obj
+<< /S /GoTo /D [ 628 0 R /Fit ] >>
endobj
-624 0 obj
+631 0 obj
<</Length 1926 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0064>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -5324,40 +5357,40 @@ BT
ET
endstream
endobj
-612 0 obj
-<</Type/Page/Contents 624 0 R/Resources 623 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 629 0 R>>
+619 0 obj
+<</Type/Page/Contents 631 0 R/Resources 630 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 636 0 R>>
endobj
-629 0 obj
-[625 0 R 626 0 R 223 0 R]
+636 0 obj
+[632 0 R 633 0 R 223 0 R]
endobj
-625 0 obj
-<< /Type /Annot /A 604 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+632 0 obj
+<< /Type /Annot /A 611 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-626 0 obj
-<< /Type /Annot /A 622 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+633 0 obj
+<< /Type /Annot /A 629 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-627 0 obj
-<</D[612 0 R/Fit]>>
+634 0 obj
+<</D[619 0 R/Fit]>>
endobj
-628 0 obj
-<</D[612 0 R/Fit]>>
+635 0 obj
+<</D[619 0 R/Fit]>>
endobj
-623 0 obj
+630 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-631 0 obj
-<< /S /GoTo /D [ 630 0 R /Fit ] >>
+638 0 obj
+<< /S /GoTo /D [ 637 0 R /Fit ] >>
endobj
-633 0 obj
+640 0 obj
<</Length 9008 >>
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<006A0064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A0033>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00370051004D00690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C004D001C004800760078003200600062>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<0069001C002300480032>]TJ
@@ -5469,40 +5502,40 @@ BT
ET
endstream
endobj
-621 0 obj
-<</Type/Page/Contents 633 0 R/Resources 632 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 638 0 R>>
+628 0 obj
+<</Type/Page/Contents 640 0 R/Resources 639 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 645 0 R>>
endobj
-638 0 obj
-[634 0 R 635 0 R 223 0 R]
+645 0 obj
+[641 0 R 642 0 R 223 0 R]
endobj
-634 0 obj
-<< /Type /Annot /A 613 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+641 0 obj
+<< /Type /Annot /A 620 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-635 0 obj
-<< /Type /Annot /A 631 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+642 0 obj
+<< /Type /Annot /A 638 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-636 0 obj
-<</D[621 0 R/Fit]>>
+643 0 obj
+<</D[628 0 R/Fit]>>
endobj
-637 0 obj
-<</D[621 0 R/Fit]>>
+644 0 obj
+<</D[628 0 R/Fit]>>
endobj
-632 0 obj
+639 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-640 0 obj
-<< /S /GoTo /D [ 639 0 R /Fit ] >>
+647 0 obj
+<< /S /GoTo /D [ 646 0 R /Fit ] >>
endobj
-642 0 obj
+649 0 obj
<</Length 9687 >>
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<006A0033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A004E>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 56.0163 815.7614 Tm [<0061>-525<00370051004D0069004D001C004B0032>]TJ
1 0 0 1 56.0163 801.3339 Tm [<0061>-525<003700510060004B001C0069>]TJ
1 0 0 1 56.0163 786.9064 Tm [<0061>-525<0037006D00480048004D001C004B0032>]TJ
@@ -5623,34 +5656,34 @@ BT
ET
endstream
endobj
-630 0 obj
-<</Type/Page/Contents 642 0 R/Resources 641 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 645 0 R>>
+637 0 obj
+<</Type/Page/Contents 649 0 R/Resources 648 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 572 0 R/Annots 652 0 R>>
endobj
-645 0 obj
-[643 0 R 644 0 R]
+652 0 obj
+[650 0 R 651 0 R]
endobj
-643 0 obj
-<< /Type /Annot /A 622 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+650 0 obj
+<< /Type /Annot /A 629 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-644 0 obj
-<< /Type /Annot /A 640 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+651 0 obj
+<< /Type /Annot /A 647 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-641 0 obj
+648 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-647 0 obj
-<< /S /GoTo /D [ 646 0 R /Fit ] >>
+654 0 obj
+<< /S /GoTo /D [ 653 0 R /Fit ] >>
endobj
-649 0 obj
+656 0 obj
<</Length 8865 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<006A004E>-1000<004D003200740069>]TJ
+/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 46.0537 815.7614 Tm [<0036>-525<0062002B0060004200540069001C004D002F0048001C004D003B006D001C003B0032>]TJ
1 0 0 1 46.0537 801.3339 Tm [<0036>-525<006200320069002B0051004D0069003200740069002B003F001C0042004D>]TJ
1 0 0 1 46.0537 786.9064 Tm [<0036>-525<006200320069002F0076004D001C004B0042002B0062>]TJ
@@ -5768,34 +5801,34 @@ BT
ET
endstream
endobj
-639 0 obj
-<</Type/Page/Contents 649 0 R/Resources 648 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 574 0 R/Annots 652 0 R>>
+646 0 obj
+<</Type/Page/Contents 656 0 R/Resources 655 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 660 0 R>>
endobj
-652 0 obj
-[650 0 R 651 0 R]
+660 0 obj
+[657 0 R 658 0 R]
endobj
-650 0 obj
-<< /Type /Annot /A 631 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+657 0 obj
+<< /Type /Annot /A 638 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-651 0 obj
-<< /Type /Annot /A 647 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+658 0 obj
+<< /Type /Annot /A 654 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-648 0 obj
+655 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-654 0 obj
-<< /S /GoTo /D [ 653 0 R /Fit ] >>
+662 0 obj
+<< /S /GoTo /D [ 661 0 R /Fit ] >>
endobj
-656 0 obj
+664 0 obj
<</Length 5652 >>
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
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390052>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 46.0537 815.7614 Tm [<0068>-525<0054001C0069003F0062>]TJ
1 0 0 1 46.0537 801.3339 Tm [<0036>-525<005400370023>]TJ
1 0 0 1 46.0537 786.9064 Tm [<0036>-525<00690069002B>]TJ
@@ -5867,34 +5900,34 @@ BT
ET
endstream
endobj
-646 0 obj
-<</Type/Page/Contents 656 0 R/Resources 655 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 660 0 R>>
+653 0 obj
+<</Type/Page/Contents 664 0 R/Resources 663 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 667 0 R>>
endobj
-660 0 obj
-[657 0 R 658 0 R]
+667 0 obj
+[665 0 R 666 0 R]
endobj
-657 0 obj
-<< /Type /Annot /A 640 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+665 0 obj
+<< /Type /Annot /A 647 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-658 0 obj
-<< /Type /Annot /A 654 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+666 0 obj
+<< /Type /Annot /A 662 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-655 0 obj
+663 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-662 0 obj
-<< /S /GoTo /D [ 661 0 R /Fit ] >>
+669 0 obj
+<< /S /GoTo /D [ 668 0 R /Fit ] >>
endobj
-664 0 obj
+671 0 obj
<</Length 785 >>
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<00390052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0039006B>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -5911,40 +5944,40 @@ BT
ET
endstream
endobj
-653 0 obj
-<</Type/Page/Contents 664 0 R/Resources 663 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 669 0 R>>
+661 0 obj
+<</Type/Page/Contents 671 0 R/Resources 670 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 676 0 R>>
endobj
-669 0 obj
-[665 0 R 666 0 R 223 0 R]
+676 0 obj
+[672 0 R 673 0 R 223 0 R]
endobj
-665 0 obj
-<< /Type /Annot /A 647 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+672 0 obj
+<< /Type /Annot /A 654 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-666 0 obj
-<< /Type /Annot /A 662 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+673 0 obj
+<< /Type /Annot /A 669 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-667 0 obj
-<</D[653 0 R/Fit]>>
+674 0 obj
+<</D[661 0 R/Fit]>>
endobj
-668 0 obj
-<</D[653 0 R/Fit]>>
+675 0 obj
+<</D[661 0 R/Fit]>>
endobj
-663 0 obj
+670 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-671 0 obj
-<< /S /GoTo /D [ 670 0 R /Fit ] >>
+678 0 obj
+<< /S /GoTo /D [ 677 0 R /Fit ] >>
endobj
-673 0 obj
+680 0 obj
<</Length 3030 >>
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<0039006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0039006A>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -6005,40 +6038,40 @@ BT
ET
endstream
endobj
-661 0 obj
-<</Type/Page/Contents 673 0 R/Resources 672 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 678 0 R>>
+668 0 obj
+<</Type/Page/Contents 680 0 R/Resources 679 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 685 0 R>>
endobj
-678 0 obj
-[674 0 R 675 0 R 223 0 R]
+685 0 obj
+[681 0 R 682 0 R 223 0 R]
endobj
-674 0 obj
-<< /Type /Annot /A 654 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+681 0 obj
+<< /Type /Annot /A 662 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-675 0 obj
-<< /Type /Annot /A 671 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+682 0 obj
+<< /Type /Annot /A 678 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-676 0 obj
-<</D[661 0 R/Fit]>>
+683 0 obj
+<</D[668 0 R/Fit]>>
endobj
-677 0 obj
-<</D[661 0 R/Fit]>>
+684 0 obj
+<</D[668 0 R/Fit]>>
endobj
-672 0 obj
+679 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-680 0 obj
-<< /S /GoTo /D [ 679 0 R /Fit ] >>
+687 0 obj
+<< /S /GoTo /D [ 686 0 R /Fit ] >>
endobj
-682 0 obj
+689 0 obj
<</Length 4735 >>
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<0039006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0042004D006900320060001C002B006900420051004D0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C00690069001C002B003F004B0032004D00690062>]TJ
/F1 11.955168 Tf 1 0 0 1 95.1695 767.4915 Tm [<0069001C002300480032>]TJ
@@ -6096,40 +6129,40 @@ BT
ET
endstream
endobj
-670 0 obj
-<</Type/Page/Contents 682 0 R/Resources 681 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 687 0 R>>
+677 0 obj
+<</Type/Page/Contents 689 0 R/Resources 688 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 694 0 R>>
endobj
-687 0 obj
-[683 0 R 684 0 R 223 0 R]
+694 0 obj
+[690 0 R 691 0 R 223 0 R]
endobj
-683 0 obj
-<< /Type /Annot /A 662 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+690 0 obj
+<< /Type /Annot /A 669 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-684 0 obj
-<< /Type /Annot /A 680 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+691 0 obj
+<< /Type /Annot /A 687 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-685 0 obj
-<</D[670 0 R/Fit]>>
+692 0 obj
+<</D[677 0 R/Fit]>>
endobj
-686 0 obj
-<</D[670 0 R/Fit]>>
+693 0 obj
+<</D[677 0 R/Fit]>>
endobj
-681 0 obj
+688 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-689 0 obj
-<< /S /GoTo /D [ 688 0 R /Fit ] >>
+696 0 obj
+<< /S /GoTo /D [ 695 0 R /Fit ] >>
endobj
-691 0 obj
+698 0 obj
<</Length 6115 >>
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<00390039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390038>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0042004D0069003200600037001C002B00320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C002F002F0070001C00480042002F0046003200760062>]TJ
/F1 11.955168 Tf 1 0 0 1 151.6577 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -6198,40 +6231,40 @@ BT
ET
endstream
endobj
-679 0 obj
-<</Type/Page/Contents 691 0 R/Resources 690 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 696 0 R>>
+686 0 obj
+<</Type/Page/Contents 698 0 R/Resources 697 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 703 0 R>>
endobj
-696 0 obj
-[692 0 R 693 0 R 223 0 R]
+703 0 obj
+[699 0 R 700 0 R 223 0 R]
endobj
-692 0 obj
-<< /Type /Annot /A 671 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+699 0 obj
+<< /Type /Annot /A 678 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-693 0 obj
-<< /Type /Annot /A 689 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+700 0 obj
+<< /Type /Annot /A 696 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-694 0 obj
-<</D[679 0 R/Fit]>>
+701 0 obj
+<</D[686 0 R/Fit]>>
endobj
-695 0 obj
-<</D[679 0 R/Fit]>>
+702 0 obj
+<</D[686 0 R/Fit]>>
endobj
-690 0 obj
+697 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-698 0 obj
-<< /S /GoTo /D [ 697 0 R /Fit ] >>
+705 0 obj
+<< /S /GoTo /D [ 704 0 R /Fit ] >>
endobj
-700 0 obj
+707 0 obj
<</Length 6322 >>
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<00390038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -6351,40 +6384,40 @@ BT
ET
endstream
endobj
-688 0 obj
-<</Type/Page/Contents 700 0 R/Resources 699 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 705 0 R>>
+695 0 obj
+<</Type/Page/Contents 707 0 R/Resources 706 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 712 0 R>>
endobj
-705 0 obj
-[701 0 R 702 0 R 223 0 R]
+712 0 obj
+[708 0 R 709 0 R 223 0 R]
endobj
-701 0 obj
-<< /Type /Annot /A 680 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+708 0 obj
+<< /Type /Annot /A 687 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-702 0 obj
-<< /Type /Annot /A 698 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+709 0 obj
+<< /Type /Annot /A 705 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-703 0 obj
-<</D[688 0 R/Fit]>>
+710 0 obj
+<</D[695 0 R/Fit]>>
endobj
-704 0 obj
-<</D[688 0 R/Fit]>>
+711 0 obj
+<</D[695 0 R/Fit]>>
endobj
-699 0 obj
+706 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-707 0 obj
-<< /S /GoTo /D [ 706 0 R /Fit ] >>
+714 0 obj
+<< /S /GoTo /D [ 713 0 R /Fit ] >>
endobj
-709 0 obj
+716 0 obj
<</Length 6928 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390064>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004400510023>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004B004B0032004D0069>]TJ
/F1 11.955168 Tf 1 0 0 1 88.893 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -6479,40 +6512,40 @@ BT
ET
endstream
endobj
-697 0 obj
-<</Type/Page/Contents 709 0 R/Resources 708 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 714 0 R>>
+704 0 obj
+<</Type/Page/Contents 716 0 R/Resources 715 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 721 0 R>>
endobj
-714 0 obj
-[710 0 R 711 0 R 223 0 R]
+721 0 obj
+[717 0 R 718 0 R 223 0 R]
endobj
-710 0 obj
-<< /Type /Annot /A 689 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+717 0 obj
+<< /Type /Annot /A 696 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-711 0 obj
-<< /Type /Annot /A 707 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+718 0 obj
+<< /Type /Annot /A 714 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-712 0 obj
-<</D[697 0 R/Fit]>>
+719 0 obj
+<</D[704 0 R/Fit]>>
endobj
-713 0 obj
-<</D[697 0 R/Fit]>>
+720 0 obj
+<</D[704 0 R/Fit]>>
endobj
-708 0 obj
+715 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-716 0 obj
-<< /S /GoTo /D [ 715 0 R /Fit ] >>
+723 0 obj
+<< /S /GoTo /D [ 722 0 R /Fit ] >>
endobj
-718 0 obj
+725 0 obj
<</Length 2698 >>
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<00390064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00390033>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -6555,40 +6588,40 @@ BT
ET
endstream
endobj
-706 0 obj
-<</Type/Page/Contents 718 0 R/Resources 717 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 723 0 R>>
+713 0 obj
+<</Type/Page/Contents 725 0 R/Resources 724 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 730 0 R>>
endobj
-723 0 obj
-[719 0 R 720 0 R 223 0 R]
+730 0 obj
+[726 0 R 727 0 R 223 0 R]
endobj
-719 0 obj
-<< /Type /Annot /A 698 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+726 0 obj
+<< /Type /Annot /A 705 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-720 0 obj
-<< /Type /Annot /A 716 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+727 0 obj
+<< /Type /Annot /A 723 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-721 0 obj
-<</D[706 0 R/Fit]>>
+728 0 obj
+<</D[713 0 R/Fit]>>
endobj
-722 0 obj
-<</D[706 0 R/Fit]>>
+729 0 obj
+<</D[713 0 R/Fit]>>
endobj
-717 0 obj
+724 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-725 0 obj
-<< /S /GoTo /D [ 724 0 R /Fit ] >>
+732 0 obj
+<< /S /GoTo /D [ 731 0 R /Fit ] >>
endobj
-727 0 obj
+734 0 obj
<</Length 5531 >>
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<00390033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0039004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0048001C004D003B006D001C003B00320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C006200620051002B0042001C00690032>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -6656,40 +6689,40 @@ BT
ET
endstream
endobj
-715 0 obj
-<</Type/Page/Contents 727 0 R/Resources 726 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 732 0 R>>
+722 0 obj
+<</Type/Page/Contents 734 0 R/Resources 733 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 739 0 R>>
endobj
-732 0 obj
-[728 0 R 729 0 R 223 0 R]
+739 0 obj
+[735 0 R 736 0 R 223 0 R]
endobj
-728 0 obj
-<< /Type /Annot /A 707 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+735 0 obj
+<< /Type /Annot /A 714 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-729 0 obj
-<< /Type /Annot /A 725 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+736 0 obj
+<< /Type /Annot /A 732 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-730 0 obj
-<</D[715 0 R/Fit]>>
+737 0 obj
+<</D[722 0 R/Fit]>>
endobj
-731 0 obj
-<</D[715 0 R/Fit]>>
+738 0 obj
+<</D[722 0 R/Fit]>>
endobj
-726 0 obj
+733 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-734 0 obj
-<< /S /GoTo /D [ 733 0 R /Fit ] >>
+741 0 obj
+<< /S /GoTo /D [ 740 0 R /Fit ] >>
endobj
-736 0 obj
+743 0 obj
<</Length 638 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0039004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380079>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0048001C00760051006D00690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<00620069001C0069006D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 63.7872 767.4915 Tm [<0069001C002300480032>]TJ
@@ -6698,40 +6731,40 @@ BT
ET
endstream
endobj
-724 0 obj
-<</Type/Page/Contents 736 0 R/Resources 735 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 659 0 R/Annots 741 0 R>>
+731 0 obj
+<</Type/Page/Contents 743 0 R/Resources 742 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 749 0 R>>
endobj
-741 0 obj
-[737 0 R 738 0 R 223 0 R]
+749 0 obj
+[744 0 R 745 0 R 223 0 R]
endobj
-737 0 obj
-<< /Type /Annot /A 716 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+744 0 obj
+<< /Type /Annot /A 723 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-738 0 obj
-<< /Type /Annot /A 734 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+745 0 obj
+<< /Type /Annot /A 741 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-739 0 obj
-<</D[724 0 R/Fit]>>
+746 0 obj
+<</D[731 0 R/Fit]>>
endobj
-740 0 obj
-<</D[724 0 R/Fit]>>
+747 0 obj
+<</D[731 0 R/Fit]>>
endobj
-735 0 obj
+742 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-743 0 obj
-<< /S /GoTo /D [ 742 0 R /Fit ] >>
+751 0 obj
+<< /S /GoTo /D [ 750 0 R /Fit ] >>
endobj
-745 0 obj
+753 0 obj
<</Length 3014 >>
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<00380079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380052>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -6774,40 +6807,40 @@ BT
ET
endstream
endobj
-733 0 obj
-<</Type/Page/Contents 745 0 R/Resources 744 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 751 0 R>>
+740 0 obj
+<</Type/Page/Contents 753 0 R/Resources 752 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 758 0 R>>
endobj
-751 0 obj
-[746 0 R 747 0 R 223 0 R]
+758 0 obj
+[754 0 R 755 0 R 223 0 R]
endobj
-746 0 obj
-<< /Type /Annot /A 725 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+754 0 obj
+<< /Type /Annot /A 732 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-747 0 obj
-<< /Type /Annot /A 743 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+755 0 obj
+<< /Type /Annot /A 751 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-748 0 obj
-<</D[733 0 R/Fit]>>
+756 0 obj
+<</D[740 0 R/Fit]>>
endobj
-749 0 obj
-<</D[733 0 R/Fit]>>
+757 0 obj
+<</D[740 0 R/Fit]>>
endobj
-744 0 obj
+752 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-753 0 obj
-<< /S /GoTo /D [ 752 0 R /Fit ] >>
+760 0 obj
+<< /S /GoTo /D [ 759 0 R /Fit ] >>
endobj
-755 0 obj
+762 0 obj
<</Length 1342 >>
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<00380052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0038006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0048004200230060001C0060004200320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<0023001C00620042002B0048006D001C>]TJ
/F1 11.955168 Tf 1 0 0 1 76.3401 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -6824,40 +6857,40 @@ BT
ET
endstream
endobj
-742 0 obj
-<</Type/Page/Contents 755 0 R/Resources 754 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 760 0 R>>
+750 0 obj
+<</Type/Page/Contents 762 0 R/Resources 761 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 767 0 R>>
endobj
-760 0 obj
-[756 0 R 757 0 R 223 0 R]
+767 0 obj
+[763 0 R 764 0 R 223 0 R]
endobj
-756 0 obj
-<< /Type /Annot /A 734 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+763 0 obj
+<< /Type /Annot /A 741 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-757 0 obj
-<< /Type /Annot /A 753 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+764 0 obj
+<< /Type /Annot /A 760 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-758 0 obj
-<</D[742 0 R/Fit]>>
+765 0 obj
+<</D[750 0 R/Fit]>>
endobj
-759 0 obj
-<</D[742 0 R/Fit]>>
+766 0 obj
+<</D[750 0 R/Fit]>>
endobj
-754 0 obj
+761 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-762 0 obj
-<< /S /GoTo /D [ 761 0 R /Fit ] >>
+769 0 obj
+<< /S /GoTo /D [ 768 0 R /Fit ] >>
endobj
-764 0 obj
+771 0 obj
<</Length 4180 >>
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<0038006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0038006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0048004B0074>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004D0070003200600069>]TJ
/F1 11.955168 Tf 1 0 0 1 107.7224 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -6910,40 +6943,40 @@ BT
ET
endstream
endobj
-752 0 obj
-<</Type/Page/Contents 764 0 R/Resources 763 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 769 0 R>>
+759 0 obj
+<</Type/Page/Contents 771 0 R/Resources 770 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 776 0 R>>
endobj
-769 0 obj
-[765 0 R 766 0 R 223 0 R]
+776 0 obj
+[772 0 R 773 0 R 223 0 R]
endobj
-765 0 obj
-<< /Type /Annot /A 743 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+772 0 obj
+<< /Type /Annot /A 751 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-766 0 obj
-<< /Type /Annot /A 762 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+773 0 obj
+<< /Type /Annot /A 769 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-767 0 obj
-<</D[752 0 R/Fit]>>
+774 0 obj
+<</D[759 0 R/Fit]>>
endobj
-768 0 obj
-<</D[752 0 R/Fit]>>
+775 0 obj
+<</D[759 0 R/Fit]>>
endobj
-763 0 obj
+770 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-771 0 obj
-<< /S /GoTo /D [ 770 0 R /Fit ] >>
+778 0 obj
+<< /S /GoTo /D [ 777 0 R /Fit ] >>
endobj
-773 0 obj
+780 0 obj
<</Length 7059 >>
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<0038006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00480051003B0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0054005400480042002B001C006900420051004D>]TJ
/F1 11.955168 Tf 1 0 0 1 132.8283 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -7026,40 +7059,40 @@ BT
ET
endstream
endobj
-761 0 obj
-<</Type/Page/Contents 773 0 R/Resources 772 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 778 0 R>>
+768 0 obj
+<</Type/Page/Contents 780 0 R/Resources 779 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 785 0 R>>
endobj
-778 0 obj
-[774 0 R 775 0 R 223 0 R]
+785 0 obj
+[781 0 R 782 0 R 223 0 R]
endobj
-774 0 obj
-<< /Type /Annot /A 753 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+781 0 obj
+<< /Type /Annot /A 760 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-775 0 obj
-<< /Type /Annot /A 771 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+782 0 obj
+<< /Type /Annot /A 778 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-776 0 obj
-<</D[761 0 R/Fit]>>
+783 0 obj
+<</D[768 0 R/Fit]>>
endobj
-777 0 obj
-<</D[761 0 R/Fit]>>
+784 0 obj
+<</D[768 0 R/Fit]>>
endobj
-772 0 obj
+779 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-780 0 obj
-<< /S /GoTo /D [ 779 0 R /Fit ] >>
+787 0 obj
+<< /S /GoTo /D [ 786 0 R /Fit ] >>
endobj
-782 0 obj
+789 0 obj
<</Length 13710 >>
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<00380039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380038>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00480054002F0037>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C002B006900420051004D>]TJ
/F1 11.955168 Tf 1 0 0 1 183.04 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -7211,40 +7244,40 @@ BT
ET
endstream
endobj
-770 0 obj
-<</Type/Page/Contents 782 0 R/Resources 781 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 787 0 R>>
+777 0 obj
+<</Type/Page/Contents 789 0 R/Resources 788 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 794 0 R>>
endobj
-787 0 obj
-[783 0 R 784 0 R 223 0 R]
+794 0 obj
+[790 0 R 791 0 R 223 0 R]
endobj
-783 0 obj
-<< /Type /Annot /A 762 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+790 0 obj
+<< /Type /Annot /A 769 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-784 0 obj
-<< /Type /Annot /A 780 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+791 0 obj
+<< /Type /Annot /A 787 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-785 0 obj
-<</D[770 0 R/Fit]>>
+792 0 obj
+<</D[777 0 R/Fit]>>
endobj
-786 0 obj
-<</D[770 0 R/Fit]>>
+793 0 obj
+<</D[777 0 R/Fit]>>
endobj
-781 0 obj
+788 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-789 0 obj
-<< /S /GoTo /D [ 788 0 R /Fit ] >>
+796 0 obj
+<< /S /GoTo /D [ 795 0 R /Fit ] >>
endobj
-791 0 obj
+798 0 obj
<</Length 7546 >>
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<00380038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -7373,40 +7406,40 @@ BT
ET
endstream
endobj
-779 0 obj
-<</Type/Page/Contents 791 0 R/Resources 790 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 796 0 R>>
+786 0 obj
+<</Type/Page/Contents 798 0 R/Resources 797 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 803 0 R>>
endobj
-796 0 obj
-[792 0 R 793 0 R 223 0 R]
+803 0 obj
+[799 0 R 800 0 R 223 0 R]
endobj
-792 0 obj
-<< /Type /Annot /A 771 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+799 0 obj
+<< /Type /Annot /A 778 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-793 0 obj
-<< /Type /Annot /A 789 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+800 0 obj
+<< /Type /Annot /A 796 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-794 0 obj
-<</D[779 0 R/Fit]>>
+801 0 obj
+<</D[786 0 R/Fit]>>
endobj
-795 0 obj
-<</D[779 0 R/Fit]>>
+802 0 obj
+<</D[786 0 R/Fit]>>
endobj
-790 0 obj
+797 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-798 0 obj
-<< /S /GoTo /D [ 797 0 R /Fit ] >>
+805 0 obj
+<< /S /GoTo /D [ 804 0 R /Fit ] >>
endobj
-800 0 obj
+807 0 obj
<</Length 2424 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380064>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -7466,40 +7499,40 @@ BT
ET
endstream
endobj
-788 0 obj
-<</Type/Page/Contents 800 0 R/Resources 799 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 805 0 R>>
+795 0 obj
+<</Type/Page/Contents 807 0 R/Resources 806 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 812 0 R>>
endobj
-805 0 obj
-[801 0 R 802 0 R 223 0 R]
+812 0 obj
+[808 0 R 809 0 R 223 0 R]
endobj
-801 0 obj
-<< /Type /Annot /A 780 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+808 0 obj
+<< /Type /Annot /A 787 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-802 0 obj
-<< /Type /Annot /A 798 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+809 0 obj
+<< /Type /Annot /A 805 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-803 0 obj
-<</D[788 0 R/Fit]>>
+810 0 obj
+<</D[795 0 R/Fit]>>
endobj
-804 0 obj
-<</D[788 0 R/Fit]>>
+811 0 obj
+<</D[795 0 R/Fit]>>
endobj
-799 0 obj
+806 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-807 0 obj
-<< /S /GoTo /D [ 806 0 R /Fit ] >>
+814 0 obj
+<< /S /GoTo /D [ 813 0 R /Fit ] >>
endobj
-809 0 obj
+816 0 obj
<</Length 4479 >>
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<00380064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00380033>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -7574,40 +7607,40 @@ BT
ET
endstream
endobj
-797 0 obj
-<</Type/Page/Contents 809 0 R/Resources 808 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 814 0 R>>
+804 0 obj
+<</Type/Page/Contents 816 0 R/Resources 815 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 821 0 R>>
endobj
-814 0 obj
-[810 0 R 811 0 R 223 0 R]
+821 0 obj
+[817 0 R 818 0 R 223 0 R]
endobj
-810 0 obj
-<< /Type /Annot /A 789 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+817 0 obj
+<< /Type /Annot /A 796 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-811 0 obj
-<< /Type /Annot /A 807 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+818 0 obj
+<< /Type /Annot /A 814 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-812 0 obj
-<</D[797 0 R/Fit]>>
+819 0 obj
+<</D[804 0 R/Fit]>>
endobj
-813 0 obj
-<</D[797 0 R/Fit]>>
+820 0 obj
+<</D[804 0 R/Fit]>>
endobj
-808 0 obj
+815 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-816 0 obj
-<< /S /GoTo /D [ 815 0 R /Fit ] >>
+823 0 obj
+<< /S /GoTo /D [ 822 0 R /Fit ] >>
endobj
-818 0 obj
+825 0 obj
<</Length 1625 >>
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<00380033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0038004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0048006D001C006900320074>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B00480032001C004D006D005400690032004B005400370042004800320062>]TJ
/F1 11.955168 Tf 1 0 0 1 151.6577 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -7626,40 +7659,40 @@ BT
ET
endstream
endobj
-806 0 obj
-<</Type/Page/Contents 818 0 R/Resources 817 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 823 0 R>>
+813 0 obj
+<</Type/Page/Contents 825 0 R/Resources 824 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 748 0 R/Annots 830 0 R>>
endobj
-823 0 obj
-[819 0 R 820 0 R 223 0 R]
+830 0 obj
+[826 0 R 827 0 R 223 0 R]
endobj
-819 0 obj
-<< /Type /Annot /A 798 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+826 0 obj
+<< /Type /Annot /A 805 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-820 0 obj
-<< /Type /Annot /A 816 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+827 0 obj
+<< /Type /Annot /A 823 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-821 0 obj
-<</D[806 0 R/Fit]>>
+828 0 obj
+<</D[813 0 R/Fit]>>
endobj
-822 0 obj
-<</D[806 0 R/Fit]>>
+829 0 obj
+<</D[813 0 R/Fit]>>
endobj
-817 0 obj
+824 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-825 0 obj
-<< /S /GoTo /D [ 824 0 R /Fit ] >>
+832 0 obj
+<< /S /GoTo /D [ 831 0 R /Fit ] >>
endobj
-827 0 obj
+834 0 obj
<</Length 16325 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0038004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650079>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00480074004B0048>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.9341 Tm [<001C002F002F0042004D002F00320074>]TJ
/F1 11.955168 Tf 1 0 0 1 126.5518 767.9341 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -7865,40 +7898,40 @@ BT
ET
endstream
endobj
-815 0 obj
-<</Type/Page/Contents 827 0 R/Resources 826 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 750 0 R/Annots 832 0 R>>
+822 0 obj
+<</Type/Page/Contents 834 0 R/Resources 833 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 840 0 R>>
endobj
-832 0 obj
-[828 0 R 829 0 R 223 0 R]
+840 0 obj
+[835 0 R 836 0 R 223 0 R]
endobj
-828 0 obj
-<< /Type /Annot /A 807 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+835 0 obj
+<< /Type /Annot /A 814 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-829 0 obj
-<< /Type /Annot /A 825 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+836 0 obj
+<< /Type /Annot /A 832 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-830 0 obj
-<</D[815 0 R/Fit]>>
+837 0 obj
+<</D[822 0 R/Fit]>>
endobj
-831 0 obj
-<</D[815 0 R/Fit]>>
+838 0 obj
+<</D[822 0 R/Fit]>>
endobj
-826 0 obj
+833 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-834 0 obj
-<< /S /GoTo /D [ 833 0 R /Fit ] >>
+842 0 obj
+<< /S /GoTo /D [ 841 0 R /Fit ] >>
endobj
-836 0 obj
+844 0 obj
<</Length 6577 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650052>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -8023,40 +8056,40 @@ BT
ET
endstream
endobj
-824 0 obj
-<</Type/Page/Contents 836 0 R/Resources 835 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 842 0 R>>
+831 0 obj
+<</Type/Page/Contents 844 0 R/Resources 843 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 849 0 R>>
endobj
-842 0 obj
-[837 0 R 838 0 R 223 0 R]
+849 0 obj
+[845 0 R 846 0 R 223 0 R]
endobj
-837 0 obj
-<< /Type /Annot /A 816 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+845 0 obj
+<< /Type /Annot /A 823 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-838 0 obj
-<< /Type /Annot /A 834 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+846 0 obj
+<< /Type /Annot /A 842 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-839 0 obj
-<</D[824 0 R/Fit]>>
+847 0 obj
+<</D[831 0 R/Fit]>>
endobj
-840 0 obj
-<</D[824 0 R/Fit]>>
+848 0 obj
+<</D[831 0 R/Fit]>>
endobj
-835 0 obj
+843 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-844 0 obj
-<< /S /GoTo /D [ 843 0 R /Fit ] >>
+851 0 obj
+<< /S /GoTo /D [ 850 0 R /Fit ] >>
endobj
-846 0 obj
+853 0 obj
<</Length 7328 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004B001C0069003F0032004B001C00690042002B0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C002F002F0037001C004800480023001C002B00460062>]TJ
/F1 11.955168 Tf 1 0 0 1 164.2106 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -8141,40 +8174,40 @@ BT
ET
endstream
endobj
-833 0 obj
-<</Type/Page/Contents 846 0 R/Resources 845 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 851 0 R>>
+841 0 obj
+<</Type/Page/Contents 853 0 R/Resources 852 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 858 0 R>>
endobj
-851 0 obj
-[847 0 R 848 0 R 223 0 R]
+858 0 obj
+[854 0 R 855 0 R 223 0 R]
endobj
-847 0 obj
-<< /Type /Annot /A 825 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+854 0 obj
+<< /Type /Annot /A 832 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-848 0 obj
-<< /Type /Annot /A 844 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+855 0 obj
+<< /Type /Annot /A 851 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-849 0 obj
-<</D[833 0 R/Fit]>>
+856 0 obj
+<</D[841 0 R/Fit]>>
endobj
-850 0 obj
-<</D[833 0 R/Fit]>>
+857 0 obj
+<</D[841 0 R/Fit]>>
endobj
-845 0 obj
+852 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-853 0 obj
-<< /S /GoTo /D [ 852 0 R /Fit ] >>
+860 0 obj
+<< /S /GoTo /D [ 859 0 R /Fit ] >>
endobj
-855 0 obj
+862 0 obj
<</Length 1650 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065006A>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -8216,40 +8249,40 @@ BT
ET
endstream
endobj
-843 0 obj
-<</Type/Page/Contents 855 0 R/Resources 854 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 860 0 R>>
+850 0 obj
+<</Type/Page/Contents 862 0 R/Resources 861 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 867 0 R>>
endobj
-860 0 obj
-[856 0 R 857 0 R 223 0 R]
+867 0 obj
+[863 0 R 864 0 R 223 0 R]
endobj
-856 0 obj
-<< /Type /Annot /A 834 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+863 0 obj
+<< /Type /Annot /A 842 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-857 0 obj
-<< /Type /Annot /A 853 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+864 0 obj
+<< /Type /Annot /A 860 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-858 0 obj
-<</D[843 0 R/Fit]>>
+865 0 obj
+<</D[850 0 R/Fit]>>
endobj
-859 0 obj
-<</D[843 0 R/Fit]>>
+866 0 obj
+<</D[850 0 R/Fit]>>
endobj
-854 0 obj
+861 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-862 0 obj
-<< /S /GoTo /D [ 861 0 R /Fit ] >>
+869 0 obj
+<< /S /GoTo /D [ 868 0 R /Fit ] >>
endobj
-864 0 obj
+871 0 obj
<</Length 11137 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004B00320069001C0054005100620069>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C004D001C004800760078003200540048006D003B0042004D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 139.1048 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -8380,40 +8413,40 @@ BT
ET
endstream
endobj
-852 0 obj
-<</Type/Page/Contents 864 0 R/Resources 863 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 869 0 R>>
+859 0 obj
+<</Type/Page/Contents 871 0 R/Resources 870 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 876 0 R>>
endobj
-869 0 obj
-[865 0 R 866 0 R 223 0 R]
+876 0 obj
+[872 0 R 873 0 R 223 0 R]
endobj
-865 0 obj
-<< /Type /Annot /A 844 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+872 0 obj
+<< /Type /Annot /A 851 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-866 0 obj
-<< /Type /Annot /A 862 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+873 0 obj
+<< /Type /Annot /A 869 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-867 0 obj
-<</D[852 0 R/Fit]>>
+874 0 obj
+<</D[859 0 R/Fit]>>
endobj
-868 0 obj
-<</D[852 0 R/Fit]>>
+875 0 obj
+<</D[859 0 R/Fit]>>
endobj
-863 0 obj
+870 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-871 0 obj
-<< /S /GoTo /D [ 870 0 R /Fit ] >>
+878 0 obj
+<< /S /GoTo /D [ 877 0 R /Fit ] >>
endobj
-873 0 obj
+880 0 obj
<</Length 3618 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650038>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -8482,40 +8515,40 @@ BT
ET
endstream
endobj
-861 0 obj
-<</Type/Page/Contents 873 0 R/Resources 872 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 878 0 R>>
+868 0 obj
+<</Type/Page/Contents 880 0 R/Resources 879 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 885 0 R>>
endobj
-878 0 obj
-[874 0 R 875 0 R 223 0 R]
+885 0 obj
+[881 0 R 882 0 R 223 0 R]
endobj
-874 0 obj
-<< /Type /Annot /A 853 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+881 0 obj
+<< /Type /Annot /A 860 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-875 0 obj
-<< /Type /Annot /A 871 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+882 0 obj
+<< /Type /Annot /A 878 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-876 0 obj
-<</D[861 0 R/Fit]>>
+883 0 obj
+<</D[868 0 R/Fit]>>
endobj
-877 0 obj
-<</D[861 0 R/Fit]>>
+884 0 obj
+<</D[868 0 R/Fit]>>
endobj
-872 0 obj
+879 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-880 0 obj
-<< /S /GoTo /D [ 879 0 R /Fit ] >>
+887 0 obj
+<< /S /GoTo /D [ 886 0 R /Fit ] >>
endobj
-882 0 obj
+889 0 obj
<</Length 968 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -8534,40 +8567,40 @@ BT
ET
endstream
endobj
-870 0 obj
-<</Type/Page/Contents 882 0 R/Resources 881 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 887 0 R>>
+877 0 obj
+<</Type/Page/Contents 889 0 R/Resources 888 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 894 0 R>>
endobj
-887 0 obj
-[883 0 R 884 0 R 223 0 R]
+894 0 obj
+[890 0 R 891 0 R 223 0 R]
endobj
-883 0 obj
-<< /Type /Annot /A 862 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+890 0 obj
+<< /Type /Annot /A 869 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
endobj
-884 0 obj
-<< /Type /Annot /A 880 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+891 0 obj
+<< /Type /Annot /A 887 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
endobj
-885 0 obj
-<</D[870 0 R/Fit]>>
+892 0 obj
+<</D[877 0 R/Fit]>>
endobj
-886 0 obj
-<</D[870 0 R/Fit]>>
+893 0 obj
+<</D[877 0 R/Fit]>>
endobj
-881 0 obj
+888 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-889 0 obj
-<< /S /GoTo /D [ 888 0 R /Fit ] >>
+896 0 obj
+<< /S /GoTo /D [ 895 0 R /Fit ] >>
endobj
-891 0 obj
+898 0 obj
<</Length 2095 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650064>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004D0051001C002F0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<003F001C004D002F0048003200600062>]TJ
/F1 11.955168 Tf 1 0 0 1 88.893 767.4915 Tm [<0069001C002300480032>]TJ
@@ -8596,40 +8629,40 @@ BT
ET
endstream
endobj
-879 0 obj
-<</Type/Page/Contents 891 0 R/Resources 890 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 896 0 R>>
+886 0 obj
+<</Type/Page/Contents 898 0 R/Resources 897 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 903 0 R>>
endobj
-896 0 obj
-[892 0 R 893 0 R 223 0 R]
+903 0 obj
+[899 0 R 900 0 R 223 0 R]
endobj
-892 0 obj
-<< /Type /Annot /A 871 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
+899 0 obj
+<< /Type /Annot /A 878 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-893 0 obj
-<< /Type /Annot /A 889 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
+900 0 obj
+<< /Type /Annot /A 896 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-894 0 obj
-<</D[879 0 R/Fit]>>
+901 0 obj
+<</D[886 0 R/Fit]>>
endobj
-895 0 obj
-<</D[879 0 R/Fit]>>
+902 0 obj
+<</D[886 0 R/Fit]>>
endobj
-890 0 obj
+897 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-898 0 obj
-<< /S /GoTo /D [ 897 0 R /Fit ] >>
+905 0 obj
+<< /S /GoTo /D [ 904 0 R /Fit ] >>
endobj
-900 0 obj
+907 0 obj
<</Length 7906 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650033>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -8728,40 +8761,40 @@ BT
ET
endstream
endobj
-888 0 obj
-<</Type/Page/Contents 900 0 R/Resources 899 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 905 0 R>>
+895 0 obj
+<</Type/Page/Contents 907 0 R/Resources 906 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 912 0 R>>
endobj
-905 0 obj
-[901 0 R 902 0 R 223 0 R]
+912 0 obj
+[908 0 R 909 0 R 223 0 R]
endobj
-901 0 obj
-<< /Type /Annot /A 880 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+908 0 obj
+<< /Type /Annot /A 887 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-902 0 obj
-<< /Type /Annot /A 898 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+909 0 obj
+<< /Type /Annot /A 905 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-903 0 obj
-<</D[888 0 R/Fit]>>
+910 0 obj
+<</D[895 0 R/Fit]>>
endobj
-904 0 obj
-<</D[888 0 R/Fit]>>
+911 0 obj
+<</D[895 0 R/Fit]>>
endobj
-899 0 obj
+906 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-907 0 obj
-<< /S /GoTo /D [ 906 0 R /Fit ] >>
+914 0 obj
+<< /S /GoTo /D [ 913 0 R /Fit ] >>
endobj
-909 0 obj
+916 0 obj
<</Length 14040 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00650033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004D0051002F00320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0037006900320060>]TJ
/F1 11.955168 Tf 1 0 0 1 170.4871 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -8922,40 +8955,40 @@ BT
ET
endstream
endobj
-897 0 obj
-<</Type/Page/Contents 909 0 R/Resources 908 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 914 0 R>>
+904 0 obj
+<</Type/Page/Contents 916 0 R/Resources 915 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 839 0 R/Annots 921 0 R>>
endobj
-914 0 obj
-[910 0 R 911 0 R 223 0 R]
+921 0 obj
+[917 0 R 918 0 R 223 0 R]
endobj
-910 0 obj
-<< /Type /Annot /A 889 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+917 0 obj
+<< /Type /Annot /A 896 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
endobj
-911 0 obj
-<< /Type /Annot /A 907 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+918 0 obj
+<< /Type /Annot /A 914 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
endobj
-912 0 obj
-<</D[897 0 R/Fit]>>
+919 0 obj
+<</D[904 0 R/Fit]>>
endobj
-913 0 obj
-<</D[897 0 R/Fit]>>
+920 0 obj
+<</D[904 0 R/Fit]>>
endobj
-908 0 obj
+915 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-916 0 obj
-<< /S /GoTo /D [ 915 0 R /Fit ] >>
+923 0 obj
+<< /S /GoTo /D [ 922 0 R /Fit ] >>
endobj
-918 0 obj
+925 0 obj
<</Length 12427 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<0065004E>-1000<004D003200740069>]TJ
+/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 [<0036>-525<0054002F0037002F0032006200690042004D001C006900420051004D>]TJ
1 0 0 1 36.091 801.3339 Tm [<0036>-525<0054002F0037002F004200600032002B0069>]TJ
1 0 0 1 36.091 786.9064 Tm [<0036>-525<0054002F003700480042006900320060001C0048>]TJ
@@ -9105,34 +9138,34 @@ BT
ET
endstream
endobj
-906 0 obj
-<</Type/Page/Contents 918 0 R/Resources 917 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 841 0 R/Annots 921 0 R>>
+913 0 obj
+<</Type/Page/Contents 925 0 R/Resources 924 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 929 0 R>>
endobj
-921 0 obj
-[919 0 R 920 0 R]
+929 0 obj
+[926 0 R 927 0 R]
endobj
-919 0 obj
-<< /Type /Annot /A 898 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
+926 0 obj
+<< /Type /Annot /A 905 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-920 0 obj
-<< /Type /Annot /A 916 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
+927 0 obj
+<< /Type /Annot /A 923 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-917 0 obj
+924 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-923 0 obj
-<< /S /GoTo /D [ 922 0 R /Fit ] >>
+931 0 obj
+<< /S /GoTo /D [ 930 0 R /Fit ] >>
endobj
-925 0 obj
+933 0 obj
<</Length 2289 >>
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
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640052>-1000<004D003200740069>]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
@@ -9162,34 +9195,34 @@ BT
ET
endstream
endobj
-915 0 obj
-<</Type/Page/Contents 925 0 R/Resources 924 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 929 0 R>>
+922 0 obj
+<</Type/Page/Contents 933 0 R/Resources 932 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 936 0 R>>
endobj
-929 0 obj
-[926 0 R 927 0 R]
+936 0 obj
+[934 0 R 935 0 R]
endobj
-926 0 obj
-<< /Type /Annot /A 907 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+934 0 obj
+<< /Type /Annot /A 914 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-927 0 obj
-<< /Type /Annot /A 923 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+935 0 obj
+<< /Type /Annot /A 931 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-924 0 obj
+932 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-931 0 obj
-<< /S /GoTo /D [ 930 0 R /Fit ] >>
+938 0 obj
+<< /S /GoTo /D [ 937 0 R /Fit ] >>
endobj
-933 0 obj
+940 0 obj
<</Length 5478 >>
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<00640052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0064006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<004D006D004B002300320060>-515<0055002B0051004D00690032007400690056>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 753.064 Tm [<0023001C00620032005400510042004D00690062>]TJ
@@ -9255,40 +9288,40 @@ BT
ET
endstream
endobj
-922 0 obj
-<</Type/Page/Contents 933 0 R/Resources 932 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 938 0 R>>
+930 0 obj
+<</Type/Page/Contents 940 0 R/Resources 939 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 945 0 R>>
endobj
-938 0 obj
-[934 0 R 935 0 R 223 0 R]
+945 0 obj
+[941 0 R 942 0 R 223 0 R]
endobj
-934 0 obj
-<< /Type /Annot /A 916 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+941 0 obj
+<< /Type /Annot /A 923 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-935 0 obj
-<< /Type /Annot /A 931 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+942 0 obj
+<< /Type /Annot /A 938 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-936 0 obj
-<</D[922 0 R/Fit]>>
+943 0 obj
+<</D[930 0 R/Fit]>>
endobj
-937 0 obj
-<</D[922 0 R/Fit]>>
+944 0 obj
+<</D[930 0 R/Fit]>>
endobj
-932 0 obj
+939 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-940 0 obj
-<< /S /GoTo /D [ 939 0 R /Fit ] >>
+947 0 obj
+<< /S /GoTo /D [ 946 0 R /Fit ] >>
endobj
-942 0 obj
+949 0 obj
<</Length 6274 >>
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<0064006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0064006A>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -9397,40 +9430,40 @@ BT
ET
endstream
endobj
-930 0 obj
-<</Type/Page/Contents 942 0 R/Resources 941 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 947 0 R>>
+937 0 obj
+<</Type/Page/Contents 949 0 R/Resources 948 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 954 0 R>>
endobj
-947 0 obj
-[943 0 R 944 0 R 223 0 R]
+954 0 obj
+[950 0 R 951 0 R 223 0 R]
endobj
-943 0 obj
-<< /Type /Annot /A 923 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+950 0 obj
+<< /Type /Annot /A 931 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-944 0 obj
-<< /Type /Annot /A 940 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+951 0 obj
+<< /Type /Annot /A 947 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-945 0 obj
-<</D[930 0 R/Fit]>>
+952 0 obj
+<</D[937 0 R/Fit]>>
endobj
-946 0 obj
-<</D[930 0 R/Fit]>>
+953 0 obj
+<</D[937 0 R/Fit]>>
endobj
-941 0 obj
+948 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-949 0 obj
-<< /S /GoTo /D [ 948 0 R /Fit ] >>
+956 0 obj
+<< /S /GoTo /D [ 955 0 R /Fit ] >>
endobj
-951 0 obj
+958 0 obj
<</Length 2404 >>
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<0064006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640039>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -9480,40 +9513,40 @@ BT
ET
endstream
endobj
-939 0 obj
-<</Type/Page/Contents 951 0 R/Resources 950 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 956 0 R>>
+946 0 obj
+<</Type/Page/Contents 958 0 R/Resources 957 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 963 0 R>>
endobj
-956 0 obj
-[952 0 R 953 0 R 223 0 R]
+963 0 obj
+[959 0 R 960 0 R 223 0 R]
endobj
-952 0 obj
-<< /Type /Annot /A 931 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+959 0 obj
+<< /Type /Annot /A 938 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-953 0 obj
-<< /Type /Annot /A 949 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+960 0 obj
+<< /Type /Annot /A 956 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-954 0 obj
-<</D[939 0 R/Fit]>>
+961 0 obj
+<</D[946 0 R/Fit]>>
endobj
-955 0 obj
-<</D[939 0 R/Fit]>>
+962 0 obj
+<</D[946 0 R/Fit]>>
endobj
-950 0 obj
+957 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-958 0 obj
-<< /S /GoTo /D [ 957 0 R /Fit ] >>
+965 0 obj
+<< /S /GoTo /D [ 964 0 R /Fit ] >>
endobj
-960 0 obj
+967 0 obj
<</Length 3168 >>
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<00640039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640038>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -9568,80 +9601,80 @@ BT
ET
endstream
endobj
-948 0 obj
-<</Type/Page/Contents 960 0 R/Resources 959 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 965 0 R>>
+955 0 obj
+<</Type/Page/Contents 967 0 R/Resources 966 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 972 0 R>>
endobj
-965 0 obj
-[961 0 R 962 0 R 223 0 R]
+972 0 obj
+[968 0 R 969 0 R 223 0 R]
endobj
-961 0 obj
-<< /Type /Annot /A 940 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+968 0 obj
+<< /Type /Annot /A 947 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-962 0 obj
-<< /Type /Annot /A 958 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+969 0 obj
+<< /Type /Annot /A 965 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-963 0 obj
-<</D[948 0 R/Fit]>>
+970 0 obj
+<</D[955 0 R/Fit]>>
endobj
-964 0 obj
-<</D[948 0 R/Fit]>>
+971 0 obj
+<</D[955 0 R/Fit]>>
endobj
-959 0 obj
+966 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-967 0 obj
-<< /S /GoTo /D [ 966 0 R /Fit ] >>
+974 0 obj
+<< /S /GoTo /D [ 973 0 R /Fit ] >>
endobj
-969 0 obj
+976 0 obj
<</Length 423 >>
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<00640038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640065>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0054003F007600620042002B0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<0054001C0069006900320060004D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 76.3401 767.4915 Tm [<0069001C002300480032>]TJ
ET
endstream
endobj
-957 0 obj
-<</Type/Page/Contents 969 0 R/Resources 968 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 974 0 R>>
+964 0 obj
+<</Type/Page/Contents 976 0 R/Resources 975 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 981 0 R>>
endobj
-974 0 obj
-[970 0 R 971 0 R 223 0 R]
+981 0 obj
+[977 0 R 978 0 R 223 0 R]
endobj
-970 0 obj
-<< /Type /Annot /A 949 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+977 0 obj
+<< /Type /Annot /A 956 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-971 0 obj
-<< /Type /Annot /A 967 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+978 0 obj
+<< /Type /Annot /A 974 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-972 0 obj
-<</D[957 0 R/Fit]>>
+979 0 obj
+<</D[964 0 R/Fit]>>
endobj
-973 0 obj
-<</D[957 0 R/Fit]>>
+980 0 obj
+<</D[964 0 R/Fit]>>
endobj
-968 0 obj
+975 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-976 0 obj
-<< /S /GoTo /D [ 975 0 R /Fit ] >>
+983 0 obj
+<< /S /GoTo /D [ 982 0 R /Fit ] >>
endobj
-978 0 obj
+985 0 obj
<</Length 964 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640064>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -9660,40 +9693,40 @@ BT
ET
endstream
endobj
-966 0 obj
-<</Type/Page/Contents 978 0 R/Resources 977 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 983 0 R>>
+973 0 obj
+<</Type/Page/Contents 985 0 R/Resources 984 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 990 0 R>>
endobj
-983 0 obj
-[979 0 R 980 0 R 223 0 R]
+990 0 obj
+[986 0 R 987 0 R 223 0 R]
endobj
-979 0 obj
-<< /Type /Annot /A 958 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+986 0 obj
+<< /Type /Annot /A 965 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-980 0 obj
-<< /Type /Annot /A 976 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+987 0 obj
+<< /Type /Annot /A 983 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-981 0 obj
-<</D[966 0 R/Fit]>>
+988 0 obj
+<</D[973 0 R/Fit]>>
endobj
-982 0 obj
-<</D[966 0 R/Fit]>>
+989 0 obj
+<</D[973 0 R/Fit]>>
endobj
-977 0 obj
+984 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-985 0 obj
-<< /S /GoTo /D [ 984 0 R /Fit ] >>
+992 0 obj
+<< /S /GoTo /D [ 991 0 R /Fit ] >>
endobj
-987 0 obj
+994 0 obj
<</Length 1234 >>
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<00640064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00640033>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00600032003B0042004B00320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002F00420062001C002300480032>]TJ
/F1 11.955168 Tf 1 0 0 1 82.6166 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -9710,40 +9743,40 @@ BT
ET
endstream
endobj
-975 0 obj
-<</Type/Page/Contents 987 0 R/Resources 986 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 992 0 R>>
+982 0 obj
+<</Type/Page/Contents 994 0 R/Resources 993 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 999 0 R>>
endobj
-992 0 obj
-[988 0 R 989 0 R 223 0 R]
+999 0 obj
+[995 0 R 996 0 R 223 0 R]
endobj
-988 0 obj
-<< /Type /Annot /A 967 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+995 0 obj
+<< /Type /Annot /A 974 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-989 0 obj
-<< /Type /Annot /A 985 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+996 0 obj
+<< /Type /Annot /A 992 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-990 0 obj
-<</D[975 0 R/Fit]>>
+997 0 obj
+<</D[982 0 R/Fit]>>
endobj
-991 0 obj
-<</D[975 0 R/Fit]>>
+998 0 obj
+<</D[982 0 R/Fit]>>
endobj
-986 0 obj
+993 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-994 0 obj
-<< /S /GoTo /D [ 993 0 R /Fit ] >>
+1001 0 obj
+<< /S /GoTo /D [ 1000 0 R /Fit ] >>
endobj
-996 0 obj
+1003 0 obj
<</Length 15927 >>
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<00640033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0064004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<006000320062005100480070003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0048004800540060003200370042007400320062>]TJ
/F1 11.955168 Tf 1 0 0 1 201.8694 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -9942,40 +9975,40 @@ BT
ET
endstream
endobj
-984 0 obj
-<</Type/Page/Contents 996 0 R/Resources 995 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 1001 0 R>>
+991 0 obj
+<</Type/Page/Contents 1003 0 R/Resources 1002 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 1008 0 R>>
endobj
-1001 0 obj
-[997 0 R 998 0 R 223 0 R]
+1008 0 obj
+[1004 0 R 1005 0 R 223 0 R]
endobj
-997 0 obj
-<< /Type /Annot /A 976 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1004 0 obj
+<< /Type /Annot /A 983 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-998 0 obj
-<< /Type /Annot /A 994 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1005 0 obj
+<< /Type /Annot /A 1001 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-999 0 obj
-<</D[984 0 R/Fit]>>
+1006 0 obj
+<</D[991 0 R/Fit]>>
endobj
-1000 0 obj
-<</D[984 0 R/Fit]>>
+1007 0 obj
+<</D[991 0 R/Fit]>>
endobj
-995 0 obj
+1002 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1003 0 obj
-<< /S /GoTo /D [ 1002 0 R /Fit ] >>
+1010 0 obj
+<< /S /GoTo /D [ 1009 0 R /Fit ] >>
endobj
-1005 0 obj
+1012 0 obj
<</Length 10204 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0064004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330079>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<005400600051002B003200620062004B004600700042>]TJ
1 0 0 1 36.091 801.3339 Tm [<0036>-525<007000320060006200420051004D>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 786.9064 Tm [<004B001C007400600032001C002F00480032007000320048>]TJ
@@ -10090,34 +10123,34 @@ BT
ET
endstream
endobj
-993 0 obj
-<</Type/Page/Contents 1005 0 R/Resources 1004 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 928 0 R/Annots 1008 0 R>>
+1000 0 obj
+<</Type/Page/Contents 1012 0 R/Resources 1011 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1016 0 R>>
endobj
-1008 0 obj
-[1006 0 R 1007 0 R]
+1016 0 obj
+[1013 0 R 1014 0 R]
endobj
-1006 0 obj
-<< /Type /Annot /A 985 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1013 0 obj
+<< /Type /Annot /A 992 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1007 0 obj
-<< /Type /Annot /A 1003 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1014 0 obj
+<< /Type /Annot /A 1010 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1004 0 obj
+1011 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1010 0 obj
-<< /S /GoTo /D [ 1009 0 R /Fit ] >>
+1018 0 obj
+<< /S /GoTo /D [ 1017 0 R /Fit ] >>
endobj
-1012 0 obj
+1020 0 obj
<</Length 2257 >>
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<00330079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330052>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062002B00600042005400690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B001C00690032003B00510060007600690051004D006D004B002300320060>]TJ
/F1 11.955168 Tf 1 0 0 1 126.5518 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -10144,40 +10177,40 @@ BT
ET
endstream
endobj
-1002 0 obj
-<</Type/Page/Contents 1012 0 R/Resources 1011 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1018 0 R>>
+1009 0 obj
+<</Type/Page/Contents 1020 0 R/Resources 1019 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1025 0 R>>
endobj
-1018 0 obj
-[1013 0 R 1014 0 R 223 0 R]
+1025 0 obj
+[1021 0 R 1022 0 R 223 0 R]
endobj
-1013 0 obj
-<< /Type /Annot /A 994 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1021 0 obj
+<< /Type /Annot /A 1001 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1014 0 obj
-<< /Type /Annot /A 1010 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1022 0 obj
+<< /Type /Annot /A 1018 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1015 0 obj
-<</D[1002 0 R/Fit]>>
+1023 0 obj
+<</D[1009 0 R/Fit]>>
endobj
-1016 0 obj
-<</D[1002 0 R/Fit]>>
+1024 0 obj
+<</D[1009 0 R/Fit]>>
endobj
-1011 0 obj
+1019 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1020 0 obj
-<< /S /GoTo /D [ 1019 0 R /Fit ] >>
+1027 0 obj
+<< /S /GoTo /D [ 1026 0 R /Fit ] >>
endobj
-1022 0 obj
+1029 0 obj
<</Length 1075 >>
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<00330052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0033006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<006200320069>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004D0069001C0042004D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 76.3401 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -10192,40 +10225,40 @@ BT
ET
endstream
endobj
-1009 0 obj
-<</Type/Page/Contents 1022 0 R/Resources 1021 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1027 0 R>>
+1017 0 obj
+<</Type/Page/Contents 1029 0 R/Resources 1028 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1034 0 R>>
endobj
-1027 0 obj
-[1023 0 R 1024 0 R 223 0 R]
+1034 0 obj
+[1030 0 R 1031 0 R 223 0 R]
endobj
-1023 0 obj
-<< /Type /Annot /A 1003 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1030 0 obj
+<< /Type /Annot /A 1010 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1024 0 obj
-<< /Type /Annot /A 1020 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1031 0 obj
+<< /Type /Annot /A 1027 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1025 0 obj
-<</D[1009 0 R/Fit]>>
+1032 0 obj
+<</D[1017 0 R/Fit]>>
endobj
-1026 0 obj
-<</D[1009 0 R/Fit]>>
+1033 0 obj
+<</D[1017 0 R/Fit]>>
endobj
-1021 0 obj
+1028 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1029 0 obj
-<< /S /GoTo /D [ 1028 0 R /Fit ] >>
+1036 0 obj
+<< /S /GoTo /D [ 1035 0 R /Fit ] >>
endobj
-1031 0 obj
+1038 0 obj
<</Length 830 >>
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<0033006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<0033006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062003F005100600069006E0051005400320060001C0069005100600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<0020>]TJ
/F1 11.955168 Tf 1 0 0 1 32.4048 767.4915 Tm [<0062006900600042004D003B>]TJ
@@ -10238,40 +10271,40 @@ BT
ET
endstream
endobj
-1019 0 obj
-<</Type/Page/Contents 1031 0 R/Resources 1030 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1036 0 R>>
+1026 0 obj
+<</Type/Page/Contents 1038 0 R/Resources 1037 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1043 0 R>>
endobj
-1036 0 obj
-[1032 0 R 1033 0 R 223 0 R]
+1043 0 obj
+[1039 0 R 1040 0 R 223 0 R]
endobj
-1032 0 obj
-<< /Type /Annot /A 1010 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1039 0 obj
+<< /Type /Annot /A 1018 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1033 0 obj
-<< /Type /Annot /A 1029 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1040 0 obj
+<< /Type /Annot /A 1036 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1034 0 obj
-<</D[1019 0 R/Fit]>>
+1041 0 obj
+<</D[1026 0 R/Fit]>>
endobj
-1035 0 obj
-<</D[1019 0 R/Fit]>>
+1042 0 obj
+<</D[1026 0 R/Fit]>>
endobj
-1030 0 obj
+1037 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1038 0 obj
-<< /S /GoTo /D [ 1037 0 R /Fit ] >>
+1045 0 obj
+<< /S /GoTo /D [ 1044 0 R /Fit ] >>
endobj
-1040 0 obj
+1047 0 obj
<</Length 2825 >>
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<0033006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062003F005100600069006E00540060003200370042007400320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<0031>]TJ
/F1 11.955168 Tf 1 0 0 1 38.6813 767.4915 Tm [<0062006900600042004D003B>]TJ
@@ -10314,40 +10347,40 @@ BT
ET
endstream
endobj
-1028 0 obj
-<</Type/Page/Contents 1040 0 R/Resources 1039 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1045 0 R>>
+1035 0 obj
+<</Type/Page/Contents 1047 0 R/Resources 1046 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1052 0 R>>
endobj
-1045 0 obj
-[1041 0 R 1042 0 R 223 0 R]
+1052 0 obj
+[1048 0 R 1049 0 R 223 0 R]
endobj
-1041 0 obj
-<< /Type /Annot /A 1020 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1048 0 obj
+<< /Type /Annot /A 1027 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1042 0 obj
-<< /Type /Annot /A 1038 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1049 0 obj
+<< /Type /Annot /A 1045 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1043 0 obj
-<</D[1028 0 R/Fit]>>
+1050 0 obj
+<</D[1035 0 R/Fit]>>
endobj
-1044 0 obj
-<</D[1028 0 R/Fit]>>
+1051 0 obj
+<</D[1035 0 R/Fit]>>
endobj
-1039 0 obj
+1046 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1047 0 obj
-<< /S /GoTo /D [ 1046 0 R /Fit ] >>
+1054 0 obj
+<< /S /GoTo /D [ 1053 0 R /Fit ] >>
endobj
-1049 0 obj
+1056 0 obj
<</Length 1650 >>
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<00330039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330038>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062003F005100600069006E006D004D004200690062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<00470042006900600032>]TJ
/F1 11.955168 Tf 1 0 0 1 57.5107 767.4915 Tm [<0062006900600042004D003B>]TJ
@@ -10372,40 +10405,40 @@ BT
ET
endstream
endobj
-1037 0 obj
-<</Type/Page/Contents 1049 0 R/Resources 1048 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1054 0 R>>
+1044 0 obj
+<</Type/Page/Contents 1056 0 R/Resources 1055 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1061 0 R>>
endobj
-1054 0 obj
-[1050 0 R 1051 0 R 223 0 R]
+1061 0 obj
+[1057 0 R 1058 0 R 223 0 R]
endobj
-1050 0 obj
-<< /Type /Annot /A 1029 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1057 0 obj
+<< /Type /Annot /A 1036 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1051 0 obj
-<< /Type /Annot /A 1047 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1058 0 obj
+<< /Type /Annot /A 1054 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1052 0 obj
-<</D[1037 0 R/Fit]>>
+1059 0 obj
+<</D[1044 0 R/Fit]>>
endobj
-1053 0 obj
-<</D[1037 0 R/Fit]>>
+1060 0 obj
+<</D[1044 0 R/Fit]>>
endobj
-1048 0 obj
+1055 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1056 0 obj
-<< /S /GoTo /D [ 1055 0 R /Fit ] >>
+1063 0 obj
+<< /S /GoTo /D [ 1062 0 R /Fit ] >>
endobj
-1058 0 obj
+1065 0 obj
<</Length 7381 >>
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<00330038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -10550,40 +10583,40 @@ BT
ET
endstream
endobj
-1046 0 obj
-<</Type/Page/Contents 1058 0 R/Resources 1057 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1063 0 R>>
+1053 0 obj
+<</Type/Page/Contents 1065 0 R/Resources 1064 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1070 0 R>>
endobj
-1063 0 obj
-[1059 0 R 1060 0 R 223 0 R]
+1070 0 obj
+[1066 0 R 1067 0 R 223 0 R]
endobj
-1059 0 obj
-<< /Type /Annot /A 1038 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1066 0 obj
+<< /Type /Annot /A 1045 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1060 0 obj
-<< /Type /Annot /A 1056 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1067 0 obj
+<< /Type /Annot /A 1063 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1061 0 obj
-<</D[1046 0 R/Fit]>>
+1068 0 obj
+<</D[1053 0 R/Fit]>>
endobj
-1062 0 obj
-<</D[1046 0 R/Fit]>>
+1069 0 obj
+<</D[1053 0 R/Fit]>>
endobj
-1057 0 obj
+1064 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1065 0 obj
-<< /S /GoTo /D [ 1064 0 R /Fit ] >>
+1072 0 obj
+<< /S /GoTo /D [ 1071 0 R /Fit ] >>
endobj
-1067 0 obj
+1074 0 obj
<</Length 2817 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330064>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062005100600069003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004B0054001C0060003200600062>]TJ
/F1 11.955168 Tf 1 0 0 1 101.446 767.4915 Tm [<0069001C002300480032>]TJ
@@ -10617,40 +10650,40 @@ BT
ET
endstream
endobj
-1055 0 obj
-<</Type/Page/Contents 1067 0 R/Resources 1066 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1072 0 R>>
+1062 0 obj
+<</Type/Page/Contents 1074 0 R/Resources 1073 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1079 0 R>>
endobj
-1072 0 obj
-[1068 0 R 1069 0 R 223 0 R]
+1079 0 obj
+[1075 0 R 1076 0 R 223 0 R]
endobj
-1068 0 obj
-<< /Type /Annot /A 1047 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1075 0 obj
+<< /Type /Annot /A 1054 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1069 0 obj
-<< /Type /Annot /A 1065 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1076 0 obj
+<< /Type /Annot /A 1072 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1070 0 obj
-<</D[1055 0 R/Fit]>>
+1077 0 obj
+<</D[1062 0 R/Fit]>>
endobj
-1071 0 obj
-<</D[1055 0 R/Fit]>>
+1078 0 obj
+<</D[1062 0 R/Fit]>>
endobj
-1066 0 obj
+1073 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1074 0 obj
-<< /S /GoTo /D [ 1073 0 R /Fit ] >>
+1081 0 obj
+<< /S /GoTo /D [ 1080 0 R /Fit ] >>
endobj
-1076 0 obj
+1083 0 obj
<</Length 3635 >>
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<00330064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2705 18.2129 Tm [<005400600032007000420051006D0062>-1000<00330033>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00620069001C00690042006200690042002B0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B003F0032002B00460037004B006900620069001C0069006D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -10693,40 +10726,40 @@ BT
ET
endstream
endobj
-1064 0 obj
-<</Type/Page/Contents 1076 0 R/Resources 1075 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1081 0 R>>
+1071 0 obj
+<</Type/Page/Contents 1083 0 R/Resources 1082 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1088 0 R>>
endobj
-1081 0 obj
-[1077 0 R 1078 0 R 223 0 R]
+1088 0 obj
+[1084 0 R 1085 0 R 223 0 R]
endobj
-1077 0 obj
-<< /Type /Annot /A 1056 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1084 0 obj
+<< /Type /Annot /A 1063 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
endobj
-1078 0 obj
-<< /Type /Annot /A 1074 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1085 0 obj
+<< /Type /Annot /A 1081 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
endobj
-1079 0 obj
-<</D[1064 0 R/Fit]>>
+1086 0 obj
+<</D[1071 0 R/Fit]>>
endobj
-1080 0 obj
-<</D[1064 0 R/Fit]>>
+1087 0 obj
+<</D[1071 0 R/Fit]>>
endobj
-1075 0 obj
+1082 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1083 0 obj
-<< /S /GoTo /D [ 1082 0 R /Fit ] >>
+1090 0 obj
+<< /S /GoTo /D [ 1089 0 R /Fit ] >>
endobj
-1085 0 obj
+1092 0 obj
<</Length 481 >>
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<00330033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0033004E>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -10739,40 +10772,40 @@ BT
ET
endstream
endobj
-1073 0 obj
-<</Type/Page/Contents 1085 0 R/Resources 1084 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1090 0 R>>
+1080 0 obj
+<</Type/Page/Contents 1092 0 R/Resources 1091 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1015 0 R/Annots 1097 0 R>>
endobj
-1090 0 obj
-[1086 0 R 1087 0 R 223 0 R]
+1097 0 obj
+[1093 0 R 1094 0 R 223 0 R]
endobj
-1086 0 obj
-<< /Type /Annot /A 1065 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.793 14.173 279.526 28.601] >>
+1093 0 obj
+<< /Type /Annot /A 1072 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1087 0 obj
-<< /Type /Annot /A 1083 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.750 14.173 457.482 28.601] >>
+1094 0 obj
+<< /Type /Annot /A 1090 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1088 0 obj
-<</D[1073 0 R/Fit]>>
+1095 0 obj
+<</D[1080 0 R/Fit]>>
endobj
-1089 0 obj
-<</D[1073 0 R/Fit]>>
+1096 0 obj
+<</D[1080 0 R/Fit]>>
endobj
-1084 0 obj
+1091 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1092 0 obj
-<< /S /GoTo /D [ 1091 0 R /Fit ] >>
+1099 0 obj
+<< /S /GoTo /D [ 1098 0 R /Fit ] >>
endobj
-1094 0 obj
+1101 0 obj
<</Length 2000 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<0033004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0079>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062006900510060001C003B0032>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C004800480051002B001C00690032>]TJ
/F1 11.955168 Tf 1 0 0 1 88.893 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -10799,40 +10832,40 @@ BT
ET
endstream
endobj
-1082 0 obj
-<</Type/Page/Contents 1094 0 R/Resources 1093 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1017 0 R/Annots 1099 0 R>>
+1089 0 obj
+<</Type/Page/Contents 1101 0 R/Resources 1100 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1107 0 R>>
endobj
-1099 0 obj
-[1095 0 R 1096 0 R 223 0 R]
+1107 0 obj
+[1102 0 R 1103 0 R 223 0 R]
endobj
-1095 0 obj
-<< /Type /Annot /A 1074 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1102 0 obj
+<< /Type /Annot /A 1081 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1096 0 obj
-<< /Type /Annot /A 1092 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1103 0 obj
+<< /Type /Annot /A 1099 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1097 0 obj
-<</D[1082 0 R/Fit]>>
+1104 0 obj
+<</D[1089 0 R/Fit]>>
endobj
-1098 0 obj
-<</D[1082 0 R/Fit]>>
+1105 0 obj
+<</D[1089 0 R/Fit]>>
endobj
-1093 0 obj
+1100 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1101 0 obj
-<< /S /GoTo /D [ 1100 0 R /Fit ] >>
+1109 0 obj
+<< /S /GoTo /D [ 1108 0 R /Fit ] >>
endobj
-1103 0 obj
+1111 0 obj
<</Length 1735 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0052>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0062006900600032001C004B0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051004800480032002B0069>]TJ
/F1 11.955168 Tf 1 0 0 1 95.1695 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -10855,40 +10888,40 @@ BT
ET
endstream
endobj
-1091 0 obj
-<</Type/Page/Contents 1103 0 R/Resources 1102 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1109 0 R>>
+1098 0 obj
+<</Type/Page/Contents 1111 0 R/Resources 1110 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1116 0 R>>
endobj
-1109 0 obj
-[1104 0 R 1105 0 R 223 0 R]
+1116 0 obj
+[1112 0 R 1113 0 R 223 0 R]
endobj
-1104 0 obj
-<< /Type /Annot /A 1083 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1112 0 obj
+<< /Type /Annot /A 1090 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1105 0 obj
-<< /Type /Annot /A 1101 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1113 0 obj
+<< /Type /Annot /A 1109 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1106 0 obj
-<</D[1091 0 R/Fit]>>
+1114 0 obj
+<</D[1098 0 R/Fit]>>
endobj
-1107 0 obj
-<</D[1091 0 R/Fit]>>
+1115 0 obj
+<</D[1098 0 R/Fit]>>
endobj
-1102 0 obj
+1110 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1111 0 obj
-<< /S /GoTo /D [ 1110 0 R /Fit ] >>
+1118 0 obj
+<< /S /GoTo /D [ 1117 0 R /Fit ] >>
endobj
-1113 0 obj
+1120 0 obj
<</Length 7621 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E006B>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -11031,40 +11064,40 @@ BT
ET
endstream
endobj
-1100 0 obj
-<</Type/Page/Contents 1113 0 R/Resources 1112 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1118 0 R>>
+1108 0 obj
+<</Type/Page/Contents 1120 0 R/Resources 1119 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1125 0 R>>
endobj
-1118 0 obj
-[1114 0 R 1115 0 R 223 0 R]
+1125 0 obj
+[1121 0 R 1122 0 R 223 0 R]
endobj
-1114 0 obj
-<< /Type /Annot /A 1092 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1121 0 obj
+<< /Type /Annot /A 1099 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1115 0 obj
-<< /Type /Annot /A 1111 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1122 0 obj
+<< /Type /Annot /A 1118 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1116 0 obj
-<</D[1100 0 R/Fit]>>
+1123 0 obj
+<</D[1108 0 R/Fit]>>
endobj
-1117 0 obj
-<</D[1100 0 R/Fit]>>
+1124 0 obj
+<</D[1108 0 R/Fit]>>
endobj
-1112 0 obj
+1119 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1120 0 obj
-<< /S /GoTo /D [ 1119 0 R /Fit ] >>
+1127 0 obj
+<< /S /GoTo /D [ 1126 0 R /Fit ] >>
endobj
-1122 0 obj
+1129 0 obj
<</Length 8864 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<006200690060006D002B0069006D006000320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C006900480051002B001C006900420051004D>]TJ
/F1 11.955168 Tf 1 0 0 1 151.6577 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -11183,40 +11216,40 @@ BT
ET
endstream
endobj
-1110 0 obj
-<</Type/Page/Contents 1122 0 R/Resources 1121 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1127 0 R>>
+1117 0 obj
+<</Type/Page/Contents 1129 0 R/Resources 1128 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1134 0 R>>
endobj
-1127 0 obj
-[1123 0 R 1124 0 R 223 0 R]
+1134 0 obj
+[1130 0 R 1131 0 R 223 0 R]
endobj
-1123 0 obj
-<< /Type /Annot /A 1101 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1130 0 obj
+<< /Type /Annot /A 1109 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1124 0 obj
-<< /Type /Annot /A 1120 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1131 0 obj
+<< /Type /Annot /A 1127 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1125 0 obj
-<</D[1110 0 R/Fit]>>
+1132 0 obj
+<</D[1117 0 R/Fit]>>
endobj
-1126 0 obj
-<</D[1110 0 R/Fit]>>
+1133 0 obj
+<</D[1117 0 R/Fit]>>
endobj
-1121 0 obj
+1128 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1129 0 obj
-<< /S /GoTo /D [ 1128 0 R /Fit ] >>
+1136 0 obj
+<< /S /GoTo /D [ 1135 0 R /Fit ] >>
endobj
-1131 0 obj
+1138 0 obj
<</Length 9071 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0039>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<0054001C003B0032>]TJ
1 0 0 1 36.091 801.3339 Tm [<0036>-525<005400510054004D0032006200690042004D003B>]TJ
1 0 0 1 36.091 786.9064 Tm [<0036>-525<005400600032003700420074>]TJ
@@ -11333,34 +11366,34 @@ BT
ET
endstream
endobj
-1119 0 obj
-<</Type/Page/Contents 1131 0 R/Resources 1130 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1134 0 R>>
+1126 0 obj
+<</Type/Page/Contents 1138 0 R/Resources 1137 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1141 0 R>>
endobj
-1134 0 obj
-[1132 0 R 1133 0 R]
+1141 0 obj
+[1139 0 R 1140 0 R]
endobj
-1132 0 obj
-<< /Type /Annot /A 1111 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1139 0 obj
+<< /Type /Annot /A 1118 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1133 0 obj
-<< /Type /Annot /A 1129 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1140 0 obj
+<< /Type /Annot /A 1136 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1130 0 obj
+1137 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1136 0 obj
-<< /S /GoTo /D [ 1135 0 R /Fit ] >>
+1143 0 obj
+<< /S /GoTo /D [ 1142 0 R /Fit ] >>
endobj
-1138 0 obj
+1145 0 obj
<</Length 9352 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0038>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<002E>-525<0037004200480069003200600062>]TJ
1 0 0 1 36.091 801.3339 Tm [<0036>-525<003700600051004B>]TJ
1 0 0 1 36.091 786.9064 Tm [<0036>-525<003B00320069>]TJ
@@ -11474,34 +11507,34 @@ BT
ET
endstream
endobj
-1128 0 obj
-<</Type/Page/Contents 1138 0 R/Resources 1137 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1141 0 R>>
+1135 0 obj
+<</Type/Page/Contents 1145 0 R/Resources 1144 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1148 0 R>>
endobj
-1141 0 obj
-[1139 0 R 1140 0 R]
+1148 0 obj
+[1146 0 R 1147 0 R]
endobj
-1139 0 obj
-<< /Type /Annot /A 1120 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1146 0 obj
+<< /Type /Annot /A 1127 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1140 0 obj
-<< /Type /Annot /A 1136 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1147 0 obj
+<< /Type /Annot /A 1143 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1137 0 obj
+1144 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1143 0 obj
-<< /S /GoTo /D [ 1142 0 R /Fit ] >>
+1150 0 obj
+<< /S /GoTo /D [ 1149 0 R /Fit ] >>
endobj
-1145 0 obj
+1152 0 obj
<</Length 6979 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0065>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 36.091 815.7614 Tm [<0036>-525<00480051001C002F>]TJ
1 0 0 1 36.091 801.3339 Tm [<0036>-525<004B001C0069002B003F0042004D003B0069004200480048002F003200540069003F>]TJ
1 0 0 1 36.091 786.9064 Tm [<0036>-525<004D006D004B002300320060001C0069002F003200540069003F>]TJ
@@ -11590,34 +11623,34 @@ BT
ET
endstream
endobj
-1135 0 obj
-<</Type/Page/Contents 1145 0 R/Resources 1144 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1148 0 R>>
+1142 0 obj
+<</Type/Page/Contents 1152 0 R/Resources 1151 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1155 0 R>>
endobj
-1148 0 obj
-[1146 0 R 1147 0 R]
+1155 0 obj
+[1153 0 R 1154 0 R]
endobj
-1146 0 obj
-<< /Type /Annot /A 1129 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1153 0 obj
+<< /Type /Annot /A 1136 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
endobj
-1147 0 obj
-<< /Type /Annot /A 1143 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1154 0 obj
+<< /Type /Annot /A 1150 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
endobj
-1144 0 obj
+1151 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1150 0 obj
-<< /S /GoTo /D [ 1149 0 R /Fit ] >>
+1157 0 obj
+<< /S /GoTo /D [ 1156 0 R /Fit ] >>
endobj
-1152 0 obj
+1159 0 obj
<</Length 9592 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0064>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -11776,40 +11809,40 @@ BT
ET
endstream
endobj
-1142 0 obj
-<</Type/Page/Contents 1152 0 R/Resources 1151 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1157 0 R>>
+1149 0 obj
+<</Type/Page/Contents 1159 0 R/Resources 1158 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1164 0 R>>
endobj
-1157 0 obj
-[1153 0 R 1154 0 R 223 0 R]
+1164 0 obj
+[1160 0 R 1161 0 R 223 0 R]
endobj
-1153 0 obj
-<< /Type /Annot /A 1136 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
+1160 0 obj
+<< /Type /Annot /A 1143 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1154 0 obj
-<< /Type /Annot /A 1150 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
+1161 0 obj
+<< /Type /Annot /A 1157 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1155 0 obj
-<</D[1142 0 R/Fit]>>
+1162 0 obj
+<</D[1149 0 R/Fit]>>
endobj
-1156 0 obj
-<</D[1142 0 R/Fit]>>
+1163 0 obj
+<</D[1149 0 R/Fit]>>
endobj
-1151 0 obj
+1158 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1159 0 obj
-<< /S /GoTo /D [ 1158 0 R /Fit ] >>
+1166 0 obj
+<< /S /GoTo /D [ 1165 0 R /Fit ] >>
endobj
-1161 0 obj
+1168 0 obj
<</Length 18056 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0033>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -12118,40 +12151,40 @@ BT
ET
endstream
endobj
-1149 0 obj
-<</Type/Page/Contents 1161 0 R/Resources 1160 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1166 0 R>>
+1156 0 obj
+<</Type/Page/Contents 1168 0 R/Resources 1167 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1173 0 R>>
endobj
-1166 0 obj
-[1162 0 R 1163 0 R 223 0 R]
+1173 0 obj
+[1169 0 R 1170 0 R 223 0 R]
endobj
-1162 0 obj
-<< /Type /Annot /A 1143 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1169 0 obj
+<< /Type /Annot /A 1150 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
endobj
-1163 0 obj
-<< /Type /Annot /A 1159 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1170 0 obj
+<< /Type /Annot /A 1166 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
endobj
-1164 0 obj
-<</D[1149 0 R/Fit]>>
+1171 0 obj
+<</D[1156 0 R/Fit]>>
endobj
-1165 0 obj
-<</D[1149 0 R/Fit]>>
+1172 0 obj
+<</D[1156 0 R/Fit]>>
endobj
-1160 0 obj
+1167 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1168 0 obj
-<< /S /GoTo /D [ 1167 0 R /Fit ] >>
+1175 0 obj
+<< /S /GoTo /D [ 1174 0 R /Fit ] >>
endobj
-1170 0 obj
+1177 0 obj
<</Length 2919 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2765 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E0033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E004E>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -12192,40 +12225,40 @@ BT
ET
endstream
endobj
-1158 0 obj
-<</Type/Page/Contents 1170 0 R/Resources 1169 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1175 0 R>>
+1165 0 obj
+<</Type/Page/Contents 1177 0 R/Resources 1176 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1106 0 R/Annots 1182 0 R>>
endobj
-1175 0 obj
-[1171 0 R 1172 0 R 223 0 R]
+1182 0 obj
+[1178 0 R 1179 0 R 223 0 R]
endobj
-1171 0 obj
-<< /Type /Annot /A 1150 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.799 14.173 279.532 28.601] >>
+1178 0 obj
+<< /Type /Annot /A 1157 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
endobj
-1172 0 obj
-<< /Type /Annot /A 1168 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.744 14.173 457.476 28.601] >>
+1179 0 obj
+<< /Type /Annot /A 1175 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
endobj
-1173 0 obj
-<</D[1158 0 R/Fit]>>
+1180 0 obj
+<</D[1165 0 R/Fit]>>
endobj
-1174 0 obj
-<</D[1158 0 R/Fit]>>
+1181 0 obj
+<</D[1165 0 R/Fit]>>
endobj
-1169 0 obj
+1176 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1177 0 obj
-<< /S /GoTo /D [ 1176 0 R /Fit ] >>
+1184 0 obj
+<< /S /GoTo /D [ 1183 0 R /Fit ] >>
endobj
-1179 0 obj
-<</Length 648 >>
+1186 0 obj
+<</Length 651 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 230.2824 18.2129 Tm [<005400600032007000420051006D0062>-1000<004E004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790079>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -12240,40 +12273,40 @@ BT
ET
endstream
endobj
-1167 0 obj
-<</Type/Page/Contents 1179 0 R/Resources 1178 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1108 0 R/Annots 1184 0 R>>
+1174 0 obj
+<</Type/Page/Contents 1186 0 R/Resources 1185 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1192 0 R>>
endobj
-1184 0 obj
-[1180 0 R 1181 0 R 223 0 R]
+1192 0 obj
+[1187 0 R 1188 0 R 223 0 R]
endobj
-1180 0 obj
-<< /Type /Annot /A 1159 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [137.805 14.173 279.538 28.601] >>
+1187 0 obj
+<< /Type /Annot /A 1166 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1181 0 obj
-<< /Type /Annot /A 1177 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [315.738 14.173 457.470 28.601] >>
+1188 0 obj
+<< /Type /Annot /A 1184 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1182 0 obj
-<</D[1167 0 R/Fit]>>
+1189 0 obj
+<</D[1174 0 R/Fit]>>
endobj
-1183 0 obj
-<</D[1167 0 R/Fit]>>
+1190 0 obj
+<</D[1174 0 R/Fit]>>
endobj
-1178 0 obj
+1185 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1186 0 obj
-<< /S /GoTo /D [ 1185 0 R /Fit ] >>
+1194 0 obj
+<< /S /GoTo /D [ 1193 0 R /Fit ] >>
endobj
-1188 0 obj
+1196 0 obj
<</Length 2264 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790052>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -12306,40 +12339,40 @@ BT
ET
endstream
endobj
-1176 0 obj
-<</Type/Page/Contents 1188 0 R/Resources 1187 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1194 0 R>>
+1183 0 obj
+<</Type/Page/Contents 1196 0 R/Resources 1195 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1201 0 R>>
endobj
-1194 0 obj
-[1189 0 R 1190 0 R 223 0 R]
+1201 0 obj
+[1197 0 R 1198 0 R 223 0 R]
endobj
-1189 0 obj
-<< /Type /Annot /A 1168 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1197 0 obj
+<< /Type /Annot /A 1175 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1190 0 obj
-<< /Type /Annot /A 1186 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1198 0 obj
+<< /Type /Annot /A 1194 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1191 0 obj
-<</D[1176 0 R/Fit]>>
+1199 0 obj
+<</D[1183 0 R/Fit]>>
endobj
-1192 0 obj
-<</D[1176 0 R/Fit]>>
+1200 0 obj
+<</D[1183 0 R/Fit]>>
endobj
-1187 0 obj
+1195 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1196 0 obj
-<< /S /GoTo /D [ 1195 0 R /Fit ] >>
+1203 0 obj
+<< /S /GoTo /D [ 1202 0 R /Fit ] >>
endobj
-1198 0 obj
+1205 0 obj
<</Length 3025 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0069005100460032004D0062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<0023003B00600051006D0054>]TJ
/F1 11.955168 Tf 1 0 0 1 88.893 767.4915 Tm [<0069001C002300480032>]TJ
@@ -12382,40 +12415,40 @@ BT
ET
endstream
endobj
-1185 0 obj
-<</Type/Page/Contents 1198 0 R/Resources 1197 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1203 0 R>>
+1193 0 obj
+<</Type/Page/Contents 1205 0 R/Resources 1204 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1210 0 R>>
endobj
-1203 0 obj
-[1199 0 R 1200 0 R 223 0 R]
+1210 0 obj
+[1206 0 R 1207 0 R 223 0 R]
endobj
-1199 0 obj
-<< /Type /Annot /A 1177 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1206 0 obj
+<< /Type /Annot /A 1184 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1200 0 obj
-<< /Type /Annot /A 1196 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1207 0 obj
+<< /Type /Annot /A 1203 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1201 0 obj
-<</D[1185 0 R/Fit]>>
+1208 0 obj
+<</D[1193 0 R/Fit]>>
endobj
-1202 0 obj
-<</D[1185 0 R/Fit]>>
+1209 0 obj
+<</D[1193 0 R/Fit]>>
endobj
-1197 0 obj
+1204 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1205 0 obj
-<< /S /GoTo /D [ 1204 0 R /Fit ] >>
+1212 0 obj
+<< /S /GoTo /D [ 1211 0 R /Fit ] >>
endobj
-1207 0 obj
+1214 0 obj
<</Length 2507 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079006A>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00690060001C002B003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B0051006D004D0069>]TJ
/F1 11.955168 Tf 1 0 0 1 88.893 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -12448,40 +12481,40 @@ BT
ET
endstream
endobj
-1195 0 obj
-<</Type/Page/Contents 1207 0 R/Resources 1206 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1212 0 R>>
+1202 0 obj
+<</Type/Page/Contents 1214 0 R/Resources 1213 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1219 0 R>>
endobj
-1212 0 obj
-[1208 0 R 1209 0 R 223 0 R]
+1219 0 obj
+[1215 0 R 1216 0 R 223 0 R]
endobj
-1208 0 obj
-<< /Type /Annot /A 1186 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1215 0 obj
+<< /Type /Annot /A 1194 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1209 0 obj
-<< /Type /Annot /A 1205 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1216 0 obj
+<< /Type /Annot /A 1212 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1210 0 obj
-<</D[1195 0 R/Fit]>>
+1217 0 obj
+<</D[1202 0 R/Fit]>>
endobj
-1211 0 obj
-<</D[1195 0 R/Fit]>>
+1218 0 obj
+<</D[1202 0 R/Fit]>>
endobj
-1206 0 obj
+1213 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1214 0 obj
-<< /S /GoTo /D [ 1213 0 R /Fit ] >>
+1221 0 obj
+<< /S /GoTo /D [ 1220 0 R /Fit ] >>
endobj
-1216 0 obj
+1223 0 obj
<</Length 1912 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790039>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00690060001C002B0046003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002F001C0069001C>]TJ
/F1 11.955168 Tf 1 0 0 1 113.9989 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -12506,40 +12539,40 @@ BT
ET
endstream
endobj
-1204 0 obj
-<</Type/Page/Contents 1216 0 R/Resources 1215 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1221 0 R>>
+1211 0 obj
+<</Type/Page/Contents 1223 0 R/Resources 1222 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1228 0 R>>
endobj
-1221 0 obj
-[1217 0 R 1218 0 R 223 0 R]
+1228 0 obj
+[1224 0 R 1225 0 R 223 0 R]
endobj
-1217 0 obj
-<< /Type /Annot /A 1196 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1224 0 obj
+<< /Type /Annot /A 1203 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1218 0 obj
-<< /Type /Annot /A 1214 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1225 0 obj
+<< /Type /Annot /A 1221 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1219 0 obj
-<</D[1204 0 R/Fit]>>
+1226 0 obj
+<</D[1211 0 R/Fit]>>
endobj
-1220 0 obj
-<</D[1204 0 R/Fit]>>
+1227 0 obj
+<</D[1211 0 R/Fit]>>
endobj
-1215 0 obj
+1222 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1223 0 obj
-<< /S /GoTo /D [ 1222 0 R /Fit ] >>
+1230 0 obj
+<< /S /GoTo /D [ 1229 0 R /Fit ] >>
endobj
-1225 0 obj
+1232 0 obj
<</Length 6220 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790039>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790038>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00690076005400320062003200690069003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C00480042003B004D004B0032004D00690062>]TJ
/F1 11.955168 Tf 1 0 0 1 95.1695 767.4915 Tm [<0069001C002300480032>]TJ
@@ -12621,40 +12654,40 @@ BT
ET
endstream
endobj
-1213 0 obj
-<</Type/Page/Contents 1225 0 R/Resources 1224 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1230 0 R>>
+1220 0 obj
+<</Type/Page/Contents 1232 0 R/Resources 1231 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1237 0 R>>
endobj
-1230 0 obj
-[1226 0 R 1227 0 R 223 0 R]
+1237 0 obj
+[1233 0 R 1234 0 R 223 0 R]
endobj
-1226 0 obj
-<< /Type /Annot /A 1205 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1233 0 obj
+<< /Type /Annot /A 1212 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1227 0 obj
-<< /Type /Annot /A 1223 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1234 0 obj
+<< /Type /Annot /A 1230 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1228 0 obj
-<</D[1213 0 R/Fit]>>
+1235 0 obj
+<</D[1220 0 R/Fit]>>
endobj
-1229 0 obj
-<</D[1213 0 R/Fit]>>
+1236 0 obj
+<</D[1220 0 R/Fit]>>
endobj
-1224 0 obj
+1231 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1232 0 obj
-<< /S /GoTo /D [ 1231 0 R /Fit ] >>
+1239 0 obj
+<< /S /GoTo /D [ 1238 0 R /Fit ] >>
endobj
-1234 0 obj
+1241 0 obj
<</Length 7588 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790038>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.198 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790065>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -12784,40 +12817,40 @@ BT
ET
endstream
endobj
-1222 0 obj
-<</Type/Page/Contents 1234 0 R/Resources 1233 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1239 0 R>>
+1229 0 obj
+<</Type/Page/Contents 1241 0 R/Resources 1240 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1246 0 R>>
endobj
-1239 0 obj
-[1235 0 R 1236 0 R 223 0 R]
+1246 0 obj
+[1242 0 R 1243 0 R 223 0 R]
endobj
-1235 0 obj
-<< /Type /Annot /A 1214 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1242 0 obj
+<< /Type /Annot /A 1221 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.721 14.173 276.453 28.601] >>
endobj
-1236 0 obj
-<< /Type /Annot /A 1232 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1243 0 obj
+<< /Type /Annot /A 1239 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.822 14.173 460.555 28.601] >>
endobj
-1237 0 obj
-<</D[1222 0 R/Fit]>>
+1244 0 obj
+<</D[1229 0 R/Fit]>>
endobj
-1238 0 obj
-<</D[1222 0 R/Fit]>>
+1245 0 obj
+<</D[1229 0 R/Fit]>>
endobj
-1233 0 obj
+1240 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1241 0 obj
-<< /S /GoTo /D [ 1240 0 R /Fit ] >>
+1248 0 obj
+<< /S /GoTo /D [ 1247 0 R /Fit ] >>
endobj
-1243 0 obj
+1250 0 obj
<</Length 1416 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.198 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790065>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790064>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<006D00600048>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C002F002F0062002B003F0032004B0032>]TJ
/F1 11.955168 Tf 1 0 0 1 82.6166 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -12836,40 +12869,40 @@ BT
ET
endstream
endobj
-1231 0 obj
-<</Type/Page/Contents 1243 0 R/Resources 1242 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1248 0 R>>
+1238 0 obj
+<</Type/Page/Contents 1250 0 R/Resources 1249 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1255 0 R>>
endobj
-1248 0 obj
-[1244 0 R 1245 0 R 223 0 R]
+1255 0 obj
+[1251 0 R 1252 0 R 223 0 R]
endobj
-1244 0 obj
-<< /Type /Annot /A 1223 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.721 14.173 276.453 28.601] >>
+1251 0 obj
+<< /Type /Annot /A 1230 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1245 0 obj
-<< /Type /Annot /A 1241 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.822 14.173 460.555 28.601] >>
+1252 0 obj
+<< /Type /Annot /A 1248 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1246 0 obj
-<</D[1231 0 R/Fit]>>
+1253 0 obj
+<</D[1238 0 R/Fit]>>
endobj
-1247 0 obj
-<</D[1231 0 R/Fit]>>
+1254 0 obj
+<</D[1238 0 R/Fit]>>
endobj
-1242 0 obj
+1249 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1250 0 obj
-<< /S /GoTo /D [ 1249 0 R /Fit ] >>
+1257 0 obj
+<< /S /GoTo /D [ 1256 0 R /Fit ] >>
endobj
-1252 0 obj
+1259 0 obj
<</Length 9180 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790064>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790033>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<006D00690042004800420069004200320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002F00320023006D003B003B00320060>]TJ
/F1 11.955168 Tf 1 0 0 1 126.5518 767.4915 Tm [<0069001C002300480032>]TJ
@@ -12976,40 +13009,40 @@ BT
ET
endstream
endobj
-1240 0 obj
-<</Type/Page/Contents 1252 0 R/Resources 1251 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1257 0 R>>
+1247 0 obj
+<</Type/Page/Contents 1259 0 R/Resources 1258 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1264 0 R>>
endobj
-1257 0 obj
-[1253 0 R 1254 0 R 223 0 R]
+1264 0 obj
+[1260 0 R 1261 0 R 223 0 R]
endobj
-1253 0 obj
-<< /Type /Annot /A 1232 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1260 0 obj
+<< /Type /Annot /A 1239 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1254 0 obj
-<< /Type /Annot /A 1250 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1261 0 obj
+<< /Type /Annot /A 1257 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1255 0 obj
-<</D[1240 0 R/Fit]>>
+1262 0 obj
+<</D[1247 0 R/Fit]>>
endobj
-1256 0 obj
-<</D[1240 0 R/Fit]>>
+1263 0 obj
+<</D[1247 0 R/Fit]>>
endobj
-1251 0 obj
+1258 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1259 0 obj
-<< /S /GoTo /D [ 1258 0 R /Fit ] >>
+1266 0 obj
+<< /S /GoTo /D [ 1265 0 R /Fit ] >>
endobj
-1261 0 obj
+1268 0 obj
<</Length 5102 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200790033>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.198 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079004E>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<007000420062006D001C004800420078003200600062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<00320062002B001C005400320054001C0069006900320060004D0062>]TJ
/F1 11.955168 Tf 1 0 0 1 157.9342 767.4915 Tm [<002F001C0069001C>-515<0069001C002300480032>]TJ
@@ -13066,40 +13099,40 @@ BT
ET
endstream
endobj
-1249 0 obj
-<</Type/Page/Contents 1261 0 R/Resources 1260 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1266 0 R>>
+1256 0 obj
+<</Type/Page/Contents 1268 0 R/Resources 1267 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1191 0 R/Annots 1273 0 R>>
endobj
-1266 0 obj
-[1262 0 R 1263 0 R 223 0 R]
+1273 0 obj
+[1269 0 R 1270 0 R 223 0 R]
endobj
-1262 0 obj
-<< /Type /Annot /A 1241 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1269 0 obj
+<< /Type /Annot /A 1248 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.721 14.173 276.453 28.601] >>
endobj
-1263 0 obj
-<< /Type /Annot /A 1259 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1270 0 obj
+<< /Type /Annot /A 1266 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.822 14.173 460.555 28.601] >>
endobj
-1264 0 obj
-<</D[1249 0 R/Fit]>>
+1271 0 obj
+<</D[1256 0 R/Fit]>>
endobj
-1265 0 obj
-<</D[1249 0 R/Fit]>>
+1272 0 obj
+<</D[1256 0 R/Fit]>>
endobj
-1260 0 obj
+1267 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1268 0 obj
-<< /S /GoTo /D [ 1267 0 R /Fit ] >>
+1275 0 obj
+<< /S /GoTo /D [ 1274 0 R /Fit ] >>
endobj
-1270 0 obj
+1277 0 obj
<</Length 12055 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.198 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520079004E>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200520079>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<0074004B0048>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<001C0037006900320060>]TJ
/F1 11.955168 Tf 1 0 0 1 157.9342 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -13293,40 +13326,40 @@ BT
ET
endstream
endobj
-1258 0 obj
-<</Type/Page/Contents 1270 0 R/Resources 1269 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1193 0 R/Annots 1275 0 R>>
+1265 0 obj
+<</Type/Page/Contents 1277 0 R/Resources 1276 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1283 0 R>>
endobj
-1275 0 obj
-[1271 0 R 1272 0 R 223 0 R]
+1283 0 obj
+[1278 0 R 1279 0 R 223 0 R]
endobj
-1271 0 obj
-<< /Type /Annot /A 1250 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.721 14.173 276.453 28.601] >>
+1278 0 obj
+<< /Type /Annot /A 1257 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1272 0 obj
-<< /Type /Annot /A 1268 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.822 14.173 460.555 28.601] >>
+1279 0 obj
+<< /Type /Annot /A 1275 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1273 0 obj
-<</D[1258 0 R/Fit]>>
+1280 0 obj
+<</D[1265 0 R/Fit]>>
endobj
-1274 0 obj
-<</D[1258 0 R/Fit]>>
+1281 0 obj
+<</D[1265 0 R/Fit]>>
endobj
-1269 0 obj
+1276 0 obj
<</Font<</F1 220 0 R/F47 113 0 R/F50 338 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1277 0 obj
-<< /S /GoTo /D [ 1276 0 R /Fit ] >>
+1285 0 obj
+<< /S /GoTo /D [ 1284 0 R /Fit ] >>
endobj
-1279 0 obj
+1287 0 obj
<</Length 19113 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200520079>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200520052>-1000<004D003200740069>]TJ
/F50 9.96264 Tf 1 0 0 1 46.0537 815.7614 Tm [<0036>-525<0032004B005400690076>]TJ
1 0 0 1 46.0537 801.3339 Tm [<0036>-525<00370042006000620069>]TJ
1 0 0 1 46.0537 786.9064 Tm [<0036>-525<0037006D004D002B006900420051004D>]TJ
@@ -13659,34 +13692,34 @@ BT
ET
endstream
endobj
-1267 0 obj
-<</Type/Page/Contents 1279 0 R/Resources 1278 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1283 0 R>>
+1274 0 obj
+<</Type/Page/Contents 1287 0 R/Resources 1286 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1290 0 R>>
endobj
-1283 0 obj
-[1280 0 R 1281 0 R]
+1290 0 obj
+[1288 0 R 1289 0 R]
endobj
-1280 0 obj
-<< /Type /Annot /A 1259 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1288 0 obj
+<< /Type /Annot /A 1266 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1281 0 obj
-<< /Type /Annot /A 1277 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1289 0 obj
+<< /Type /Annot /A 1285 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1278 0 obj
+1286 0 obj
<</Font<</F1 220 0 R/F50 338 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1285 0 obj
-<< /S /GoTo /D [ 1284 0 R /Fit ] >>
+1292 0 obj
+<< /S /GoTo /D [ 1291 0 R /Fit ] >>
endobj
-1287 0 obj
+1294 0 obj
<</Length 2749 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200520052>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520052006B>-1000<004D003200740069>]TJ
/F1 20.658493 Tf 1 0 0 1 14.1732 809.7664 Tm [<00740069001C0023004800320062>-515<0055002B0051004D00690032007400690056>]TJ
/F47 11.955168 Tf 1 0 0 1 14.1732 767.4915 Tm [<002B00480032001C004D006D0054>]TJ
/F1 11.955168 Tf 1 0 0 1 176.7636 767.4915 Tm [<0037006D004D002B006900420051004D>]TJ
@@ -13717,40 +13750,40 @@ BT
ET
endstream
endobj
-1276 0 obj
-<</Type/Page/Contents 1287 0 R/Resources 1286 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1292 0 R>>
+1284 0 obj
+<</Type/Page/Contents 1294 0 R/Resources 1293 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1299 0 R>>
endobj
-1292 0 obj
-[1288 0 R 1289 0 R 223 0 R]
+1299 0 obj
+[1295 0 R 1296 0 R 223 0 R]
endobj
-1288 0 obj
-<< /Type /Annot /A 1268 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1295 0 obj
+<< /Type /Annot /A 1275 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1289 0 obj
-<< /Type /Annot /A 1285 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1296 0 obj
+<< /Type /Annot /A 1292 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1290 0 obj
-<</D[1276 0 R/Fit]>>
+1297 0 obj
+<</D[1284 0 R/Fit]>>
endobj
-1291 0 obj
-<</D[1276 0 R/Fit]>>
+1298 0 obj
+<</D[1284 0 R/Fit]>>
endobj
-1286 0 obj
+1293 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1294 0 obj
-<< /S /GoTo /D [ 1293 0 R /Fit ] >>
+1301 0 obj
+<< /S /GoTo /D [ 1300 0 R /Fit ] >>
endobj
-1296 0 obj
+1303 0 obj
<</Length 1803 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520052006B>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520052006A>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -13798,36 +13831,36 @@ BT
ET
endstream
endobj
-1284 0 obj
-<</Type/Page/Contents 1296 0 R/Resources 1295 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1301 0 R>>
+1291 0 obj
+<</Type/Page/Contents 1303 0 R/Resources 1302 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1308 0 R>>
endobj
-1301 0 obj
-[1297 0 R 1298 0 R 223 0 R]
+1308 0 obj
+[1304 0 R 1305 0 R 223 0 R]
endobj
-1297 0 obj
-<< /Type /Annot /A 1277 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1304 0 obj
+<< /Type /Annot /A 1285 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1298 0 obj
-<< /Type /Annot /A 1294 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
+1305 0 obj
+<< /Type /Annot /A 1301 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [318.828 14.173 460.561 28.601] >>
endobj
-1299 0 obj
-<</D[1284 0 R/Fit]>>
+1306 0 obj
+<</D[1291 0 R/Fit]>>
endobj
-1300 0 obj
-<</D[1284 0 R/Fit]>>
+1307 0 obj
+<</D[1291 0 R/Fit]>>
endobj
-1295 0 obj
+1302 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1303 0 obj
+1310 0 obj
<</Length 1530 >>
stream
0 g 0 G
0 g 0 G
BT
-/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<00520052006A>-1000<004D003200740069>]TJ
+/F1 11.955168 Tf 1 0 0 1 227.192 18.2129 Tm [<005400600032007000420051006D0062>-1000<005200520039>-1000<004D003200740069>]TJ
ET
0 0.6 0 rg 0 0.6 0 RG
BT
@@ -13852,30 +13885,30 @@ BT
ET
endstream
endobj
-1293 0 obj
-<</Type/Page/Contents 1303 0 R/Resources 1302 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1307 0 R>>
+1300 0 obj
+<</Type/Page/Contents 1310 0 R/Resources 1309 0 R/MediaBox[0 0 595.2756 841.8898]/TrimBox [ 0.0000 0.0000 595.2756 841.8898 ] /CropBox [ 0.0000 0.0000 595.2756 841.8898 ]/Parent 1282 0 R/Annots 1314 0 R>>
endobj
-1307 0 obj
-[1304 0 R 1298 0 R 223 0 R]
+1314 0 obj
+[1311 0 R 1305 0 R 223 0 R]
endobj
-1304 0 obj
-<< /Type /Annot /A 1285 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
+1311 0 obj
+<< /Type /Annot /A 1292 0 R /Subtype /Link /Border [ 0 0 0 ] /F 4 /Rect [134.715 14.173 276.447 28.601] >>
endobj
-1305 0 obj
-<</D[1293 0 R/Fit]>>
+1312 0 obj
+<</D[1300 0 R/Fit]>>
endobj
-1306 0 obj
-<</D[1293 0 R/Fit]>>
+1313 0 obj
+<</D[1300 0 R/Fit]>>
endobj
-1302 0 obj
+1309 0 obj
<</Font<</F1 220 0 R/F47 113 0 R>>/ProcSet[/PDF/Text]>>
endobj
-1308 0 obj
+1315 0 obj
<</Type /Metadata /Subtype /XML
/Length 2363 >>
stream
-<?xpacket begin="" id="anckkofcjbdwubkullqqdsgy"?>
+<?xpacket begin="" id="aevczerqwdcwepukogyfwbna"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
@@ -13895,17 +13928,17 @@ stream
</rdf:Description>
<rdf:Description rdf:about="" xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/">
<pdfx:ConTeXt.Jobname>s-inf-03</pdfx:ConTeXt.Jobname>
- <pdfx:ConTeXt.Time>2011.11.03 23:32</pdfx:ConTeXt.Time>
+ <pdfx:ConTeXt.Time>2011.11.04 14:21</pdfx:ConTeXt.Time>
<pdfx:ConTeXt.Url>www.pragma-ade.com</pdfx:ConTeXt.Url>
- <pdfx:ConTeXt.Version>2011.11.03 23:27</pdfx:ConTeXt.Version>
- <pdfx:ID>s-inf-03.2011-11-03T23:32:52+01:00</pdfx:ID>
+ <pdfx:ConTeXt.Version>2011.11.04 14:15</pdfx:ConTeXt.Version>
+ <pdfx:ID>s-inf-03.2011-11-04T14:21:28+01:00</pdfx:ID>
<pdfx:PTEX.Fullbanner>This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1</pdfx:PTEX.Fullbanner>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/">
- <xmp:CreateDate>2011-11-03T23:32:52+01:00</xmp:CreateDate>
- <xmp:CreatorTool>ConTeXt - 2011.11.03 23:27</xmp:CreatorTool>
- <xmp:ModifyDate>2011-11-03T23:32:52+01:00</xmp:ModifyDate>
- <xmp:MetadataDate>2011-11-03T23:32:52+01:00</xmp:MetadataDate>
+ <xmp:CreateDate>2011-11-04T14:21:28+01:00</xmp:CreateDate>
+ <xmp:CreatorTool>ConTeXt - 2011.11.04 14:15</xmp:CreatorTool>
+ <xmp:ModifyDate>2011-11-04T14:21:28+01:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2011-11-04T14:21:28+01:00</xmp:MetadataDate>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
<pdf:Keywords/>
@@ -13913,8 +13946,8 @@ stream
<pdf:Trapped>False</pdf:Trapped>
</rdf:Description>
<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">
- <xmpMM:DocumentID>uuid:050f6a4f-4626-858b-34c3-fd8f77eb46ef</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:6a85ed41-43e7-98f7-c70d-c803a5ef609b</xmpMM:InstanceID>
+ <xmpMM:DocumentID>uuid:3f7d1a4b-4a2c-adf0-510d-72c9b193671d</xmpMM:DocumentID>
+ <xmpMM:InstanceID>uuid:572ba1d5-40ac-aa5d-79eb-28a3858bf60b</xmpMM:InstanceID>
</rdf:Description>
</rdf:RDF>
</x:xmpmeta>
@@ -13922,408 +13955,408 @@ stream
<?xpacket end="w"?>
endstream
endobj
-1310 0 obj
-<< /Parent 1309 0 R /Dest (aut:1) /Title <feff0067006c006f00620061006c002000280061006c006900610073003a0020005f00470029> /Next 1311 0 R >>
-
-endobj
-1311 0 obj
-<< /Title <feff0061007400740072006900620075007400650073002000280063006f006e00740065007800740029> /Prev 1310 0 R /Dest (aut:2) /Next 1312 0 R /Parent 1309 0 R >>
-
-endobj
-1312 0 obj
-<< /Title <feff006200610063006b0065006e00640073002000280063006f006e00740065007800740029> /Prev 1311 0 R /Dest (aut:3) /Next 1313 0 R /Parent 1309 0 R >>
-
-endobj
-1313 0 obj
-<< /Title <feff006200690062007400650078002000280063006f006e00740065007800740029> /Prev 1312 0 R /Dest (aut:4) /Next 1314 0 R /Parent 1309 0 R >>
-
-endobj
-1314 0 obj
-<< /Title <feff0062006c006f00620073002000280063006f006e00740065007800740029> /Prev 1313 0 R /Dest (aut:5) /Next 1315 0 R /Parent 1309 0 R >>
-
-endobj
-1315 0 obj
-<< /Title <feff0062006f006f006c00650061006e002000280063006f006e00740065007800740029> /Prev 1314 0 R /Dest (aut:6) /Next 1316 0 R /Parent 1309 0 R >>
-
-endobj
-1316 0 obj
-<< /Title <feff0062007500660066006500720073002000280063006f006e00740065007800740029> /Prev 1315 0 R /Dest (aut:7) /Next 1317 0 R /Parent 1309 0 R >>
-
-endobj
1317 0 obj
-<< /Title <feff006200750069006c0064006500720073002000280063006f006e00740065007800740029> /Prev 1316 0 R /Dest (aut:8) /Next 1318 0 R /Parent 1309 0 R >>
+<< /Parent 1316 0 R /Dest (aut:1) /Title <feff0067006c006f00620061006c002000280061006c006900610073003a0020005f00470029> /Next 1318 0 R >>
endobj
1318 0 obj
-<< /Title <feff006300610063006800650073002000280063006f006e00740065007800740029> /Prev 1317 0 R /Dest (aut:9) /Next 1319 0 R /Parent 1309 0 R >>
+<< /Title <feff0061007400740072006900620075007400650073002000280063006f006e00740065007800740029> /Prev 1317 0 R /Dest (aut:2) /Next 1319 0 R /Parent 1316 0 R >>
endobj
1319 0 obj
-<< /Title <feff00630061006c006c006200610063006b002000280062006100730069006300200074006500780029> /Prev 1318 0 R /Dest (aut:10) /Next 1320 0 R /Parent 1309 0 R >>
+<< /Title <feff006200610063006b0065006e00640073002000280063006f006e00740065007800740029> /Prev 1318 0 R /Dest (aut:3) /Next 1320 0 R /Parent 1316 0 R >>
endobj
1320 0 obj
-<< /Title <feff00630061006c006c006200610063006b0073002000280063006f006e00740065007800740029> /Prev 1319 0 R /Dest (aut:11) /Next 1321 0 R /Parent 1309 0 R >>
+<< /Title <feff006200690062007400650078002000280063006f006e00740065007800740029> /Prev 1319 0 R /Dest (aut:4) /Next 1321 0 R /Parent 1316 0 R >>
endobj
1321 0 obj
-<< /Title <feff0063006100740063006f006400650073002000280063006f006e00740065007800740029> /Prev 1320 0 R /Dest (aut:12) /Next 1322 0 R /Parent 1309 0 R >>
+<< /Title <feff0062006c006f00620073002000280063006f006e00740065007800740029> /Prev 1320 0 R /Dest (aut:5) /Next 1322 0 R /Parent 1316 0 R >>
endobj
1322 0 obj
-<< /Title <feff0063006800610072006100630074006500720073002000280063006f006e00740065007800740029> /Prev 1321 0 R /Dest (aut:13) /Next 1323 0 R /Parent 1309 0 R >>
+<< /Title <feff0062006f006f006c00650061006e002000280063006f006e00740065007800740029> /Prev 1321 0 R /Dest (aut:6) /Next 1323 0 R /Parent 1316 0 R >>
endobj
1323 0 obj
-<< /Title <feff006300680065006d006900630061006c0073002000280063006f006e00740065007800740029> /Prev 1322 0 R /Dest (aut:14) /Next 1324 0 R /Parent 1309 0 R >>
+<< /Title <feff0062007500660066006500720073002000280063006f006e00740065007800740029> /Prev 1322 0 R /Dest (aut:7) /Next 1324 0 R /Parent 1316 0 R >>
endobj
1324 0 obj
-<< /Title <feff0063006f006d006d0061006e00640073002000280063006f006e00740065007800740029> /Prev 1323 0 R /Dest (aut:15) /Next 1325 0 R /Parent 1309 0 R >>
+<< /Title <feff006200750069006c0064006500720073002000280063006f006e00740065007800740029> /Prev 1323 0 R /Dest (aut:8) /Next 1325 0 R /Parent 1316 0 R >>
endobj
1325 0 obj
-<< /Title <feff0063006f006e007400610069006e006500720073002000280063006f006e00740065007800740029> /Prev 1324 0 R /Dest (aut:16) /Next 1326 0 R /Parent 1309 0 R >>
+<< /Title <feff006300610063006800650073002000280063006f006e00740065007800740029> /Prev 1324 0 R /Dest (aut:9) /Next 1326 0 R /Parent 1316 0 R >>
endobj
1326 0 obj
-<< /Title <feff0063006f006e0076006500720074006500720073002000280063006f006e00740065007800740029> /Prev 1325 0 R /Dest (aut:17) /Next 1327 0 R /Parent 1309 0 R >>
+<< /Title <feff00630061006c006c006200610063006b002000280062006100730069006300200074006500780029> /Prev 1325 0 R /Dest (aut:10) /Next 1327 0 R /Parent 1316 0 R >>
endobj
1327 0 obj
-<< /Title <feff0063006f0072006f007500740069006e006500200028006200610073006900630020006c007500610029> /Prev 1326 0 R /Dest (aut:18) /Next 1328 0 R /Parent 1309 0 R >>
+<< /Title <feff00630061006c006c006200610063006b0073002000280063006f006e00740065007800740029> /Prev 1326 0 R /Dest (aut:11) /Next 1328 0 R /Parent 1316 0 R >>
endobj
1328 0 obj
-<< /Title <feff0064006500620075006700200028006200610073006900630020006c007500610029> /Prev 1327 0 R /Dest (aut:19) /Next 1329 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006100740063006f006400650073002000280063006f006e00740065007800740029> /Prev 1327 0 R /Dest (aut:12) /Next 1329 0 R /Parent 1316 0 R >>
endobj
1329 0 obj
-<< /Title <feff006400690072002000280063006f006e00740065007800740029> /Prev 1328 0 R /Dest (aut:20) /Next 1330 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006800610072006100630074006500720073002000280063006f006e00740065007800740029> /Prev 1328 0 R /Dest (aut:13) /Next 1330 0 R /Parent 1316 0 R >>
endobj
1330 0 obj
-<< /Title <feff0064006900720065006300740069007600650073002000280063006f006e00740065007800740029> /Prev 1329 0 R /Dest (aut:21) /Next 1331 0 R /Parent 1309 0 R >>
+<< /Title <feff006300680065006d006900630061006c0073002000280063006f006e00740065007800740029> /Prev 1329 0 R /Dest (aut:14) /Next 1331 0 R /Parent 1316 0 R >>
endobj
1331 0 obj
-<< /Title <feff0064006f00630075006d0065006e0074002000280063006f006e00740065007800740029> /Prev 1330 0 R /Dest (aut:22) /Next 1332 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006f006d006d0061006e00640073002000280063006f006e00740065007800740029> /Prev 1330 0 R /Dest (aut:15) /Next 1332 0 R /Parent 1316 0 R >>
endobj
1332 0 obj
-<< /Title <feff0065006e007600690072006f006e006d0065006e0074002000280063006f006e00740065007800740029> /Prev 1331 0 R /Dest (aut:23) /Next 1333 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006f006e007400610069006e006500720073002000280063006f006e00740065007800740029> /Prev 1331 0 R /Dest (aut:16) /Next 1333 0 R /Parent 1316 0 R >>
endobj
1333 0 obj
-<< /Title <feff0065007000640066002000280065007800740072006100200074006500780029> /Prev 1332 0 R /Dest (aut:24) /Next 1334 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006f006e0076006500720074006500720073002000280063006f006e00740065007800740029> /Prev 1332 0 R /Dest (aut:17) /Next 1334 0 R /Parent 1316 0 R >>
endobj
1334 0 obj
-<< /Title <feff006500780070006500720069006d0065006e00740073002000280063006f006e00740065007800740029> /Prev 1333 0 R /Dest (aut:25) /Next 1335 0 R /Parent 1309 0 R >>
+<< /Title <feff0063006f0072006f007500740069006e006500200028006200610073006900630020006c007500610029> /Prev 1333 0 R /Dest (aut:18) /Next 1335 0 R /Parent 1316 0 R >>
endobj
1335 0 obj
-<< /Title <feff0066006900670075007200650073002000280063006f006e00740065007800740029> /Prev 1334 0 R /Dest (aut:26) /Next 1336 0 R /Parent 1309 0 R >>
+<< /Title <feff0064006500620075006700200028006200610073006900630020006c007500610029> /Prev 1334 0 R /Dest (aut:19) /Next 1336 0 R /Parent 1316 0 R >>
endobj
1336 0 obj
-<< /Title <feff00660069006c006500200028006200610073006900630020006c007500610029> /Prev 1335 0 R /Dest (aut:27) /Next 1337 0 R /Parent 1309 0 R >>
+<< /Title <feff006400690072002000280063006f006e00740065007800740029> /Prev 1335 0 R /Dest (aut:20) /Next 1337 0 R /Parent 1316 0 R >>
endobj
1337 0 obj
-<< /Title <feff0066006c006f006100740073002000280063006f006e00740065007800740029> /Prev 1336 0 R /Dest (aut:28) /Next 1338 0 R /Parent 1309 0 R >>
+<< /Title <feff0064006900720065006300740069007600650073002000280063006f006e00740065007800740029> /Prev 1336 0 R /Dest (aut:21) /Next 1338 0 R /Parent 1316 0 R >>
endobj
1338 0 obj
-<< /Title <feff0066006f006e0074002000280062006100730069006300200074006500780029> /Prev 1337 0 R /Dest (aut:29) /Next 1339 0 R /Parent 1309 0 R >>
+<< /Title <feff0064006f00630075006d0065006e0074002000280063006f006e00740065007800740029> /Prev 1337 0 R /Dest (aut:22) /Next 1339 0 R /Parent 1316 0 R >>
endobj
1339 0 obj
-<< /Title <feff0066006f006e0074006c006f0061006400650072002000280065007800740072006100200074006500780029> /Prev 1338 0 R /Dest (aut:30) /Next 1340 0 R /Parent 1309 0 R >>
+<< /Title <feff0065006e007600690072006f006e006d0065006e0074002000280063006f006e00740065007800740029> /Prev 1338 0 R /Dest (aut:23) /Next 1340 0 R /Parent 1316 0 R >>
endobj
1340 0 obj
-<< /Title <feff0066006f006e00740073002000280063006f006e00740065007800740029> /Prev 1339 0 R /Dest (aut:31) /Next 1341 0 R /Parent 1309 0 R >>
+<< /Title <feff0065007000640066002000280065007800740072006100200074006500780029> /Prev 1339 0 R /Dest (aut:24) /Next 1341 0 R /Parent 1316 0 R >>
endobj
1341 0 obj
-<< /Title <feff0067007a0069007000200028006500780074007200610020006c007500610029> /Prev 1340 0 R /Dest (aut:32) /Next 1342 0 R /Parent 1309 0 R >>
+<< /Title <feff006500780070006500720069006d0065006e00740073002000280063006f006e00740065007800740029> /Prev 1340 0 R /Dest (aut:25) /Next 1342 0 R /Parent 1316 0 R >>
endobj
1342 0 obj
-<< /Title <feff0069006d0067002000280062006100730069006300200074006500780029> /Prev 1341 0 R /Dest (aut:33) /Next 1343 0 R /Parent 1309 0 R >>
+<< /Title <feff0066006900670075007200650073002000280063006f006e00740065007800740029> /Prev 1341 0 R /Dest (aut:26) /Next 1343 0 R /Parent 1316 0 R >>
endobj
1343 0 obj
-<< /Title <feff0069006e0074006500720061006300740069006f006e0073002000280063006f006e00740065007800740029> /Prev 1342 0 R /Dest (aut:34) /Next 1344 0 R /Parent 1309 0 R >>
+<< /Title <feff00660069006c006500200028006200610073006900630020006c007500610029> /Prev 1342 0 R /Dest (aut:27) /Next 1344 0 R /Parent 1316 0 R >>
endobj
1344 0 obj
-<< /Title <feff0069006e00740065007200660061006300650073002000280063006f006e00740065007800740029> /Prev 1343 0 R /Dest (aut:35) /Next 1345 0 R /Parent 1309 0 R >>
+<< /Title <feff0066006c006f006100740073002000280063006f006e00740065007800740029> /Prev 1343 0 R /Dest (aut:28) /Next 1345 0 R /Parent 1316 0 R >>
endobj
1345 0 obj
-<< /Title <feff0069006f00200028006200610073006900630020006c007500610029> /Prev 1344 0 R /Dest (aut:36) /Next 1346 0 R /Parent 1309 0 R >>
+<< /Title <feff0066006f006e0074002000280062006100730069006300200074006500780029> /Prev 1344 0 R /Dest (aut:29) /Next 1346 0 R /Parent 1316 0 R >>
endobj
1346 0 obj
-<< /Title <feff006a006f0062002000280063006f006e00740065007800740029> /Prev 1345 0 R /Dest (aut:37) /Next 1347 0 R /Parent 1309 0 R >>
+<< /Title <feff0066006f006e0074006c006f0061006400650072002000280065007800740072006100200074006500780029> /Prev 1345 0 R /Dest (aut:30) /Next 1347 0 R /Parent 1316 0 R >>
endobj
1347 0 obj
-<< /Title <feff006c0061006e0067002000280062006100730069006300200074006500780029> /Prev 1346 0 R /Dest (aut:38) /Next 1348 0 R /Parent 1309 0 R >>
+<< /Title <feff0066006f006e00740073002000280063006f006e00740065007800740029> /Prev 1346 0 R /Dest (aut:31) /Next 1348 0 R /Parent 1316 0 R >>
endobj
1348 0 obj
-<< /Title <feff006c0061006e006700750061006700650073002000280063006f006e00740065007800740029> /Prev 1347 0 R /Dest (aut:39) /Next 1349 0 R /Parent 1309 0 R >>
+<< /Title <feff0067007a0069007000200028006500780074007200610020006c007500610029> /Prev 1347 0 R /Dest (aut:32) /Next 1349 0 R /Parent 1316 0 R >>
endobj
1349 0 obj
-<< /Title <feff006c00610079006f007500740073002000280063006f006e00740065007800740029> /Prev 1348 0 R /Dest (aut:40) /Next 1350 0 R /Parent 1309 0 R >>
+<< /Title <feff0069006d0067002000280062006100730069006300200074006500780029> /Prev 1348 0 R /Dest (aut:33) /Next 1350 0 R /Parent 1316 0 R >>
endobj
1350 0 obj
-<< /Title <feff006c0066007300200028006500780074007200610020006c007500610029> /Prev 1349 0 R /Dest (aut:41) /Next 1351 0 R /Parent 1309 0 R >>
+<< /Title <feff0069006e0074006500720061006300740069006f006e0073002000280063006f006e00740065007800740029> /Prev 1349 0 R /Dest (aut:34) /Next 1351 0 R /Parent 1316 0 R >>
endobj
1351 0 obj
-<< /Title <feff006c00690062007200610072006900650073002000280063006f006e00740065007800740029> /Prev 1350 0 R /Dest (aut:42) /Next 1352 0 R /Parent 1309 0 R >>
+<< /Title <feff0069006e00740065007200660061006300650073002000280063006f006e00740065007800740029> /Prev 1350 0 R /Dest (aut:35) /Next 1352 0 R /Parent 1316 0 R >>
endobj
1352 0 obj
-<< /Title <feff006c006d0078002000280063006f006e00740065007800740029> /Prev 1351 0 R /Dest (aut:43) /Next 1353 0 R /Parent 1309 0 R >>
+<< /Title <feff0069006f00200028006200610073006900630020006c007500610029> /Prev 1351 0 R /Dest (aut:36) /Next 1353 0 R /Parent 1316 0 R >>
endobj
1353 0 obj
-<< /Title <feff006c006f00670073002000280063006f006e00740065007800740029> /Prev 1352 0 R /Dest (aut:44) /Next 1354 0 R /Parent 1309 0 R >>
+<< /Title <feff006a006f0062002000280063006f006e00740065007800740029> /Prev 1352 0 R /Dest (aut:37) /Next 1354 0 R /Parent 1316 0 R >>
endobj
1354 0 obj
-<< /Title <feff006c007000640066002000280063006f006e00740065007800740029> /Prev 1353 0 R /Dest (aut:45) /Next 1355 0 R /Parent 1309 0 R >>
+<< /Title <feff006c0061006e0067002000280062006100730069006300200074006500780029> /Prev 1353 0 R /Dest (aut:38) /Next 1355 0 R /Parent 1316 0 R >>
endobj
1355 0 obj
-<< /Title <feff006c00700065006700200028006200610073006900630020006c007500610029> /Prev 1354 0 R /Dest (aut:46) /Next 1356 0 R /Parent 1309 0 R >>
+<< /Title <feff006c0061006e006700750061006700650073002000280063006f006e00740065007800740029> /Prev 1354 0 R /Dest (aut:39) /Next 1356 0 R /Parent 1316 0 R >>
endobj
1356 0 obj
-<< /Title <feff006c0074006e0031003200200028006500780074007200610020006c007500610029> /Prev 1355 0 R /Dest (aut:47) /Next 1357 0 R /Parent 1309 0 R >>
+<< /Title <feff006c00610079006f007500740073002000280063006f006e00740065007800740029> /Prev 1355 0 R /Dest (aut:40) /Next 1357 0 R /Parent 1316 0 R >>
endobj
1357 0 obj
-<< /Title <feff006c00750061002000280062006100730069006300200074006500780029> /Prev 1356 0 R /Dest (aut:48) /Next 1358 0 R /Parent 1309 0 R >>
+<< /Title <feff006c0066007300200028006500780074007200610020006c007500610029> /Prev 1356 0 R /Dest (aut:41) /Next 1358 0 R /Parent 1316 0 R >>
endobj
1358 0 obj
-<< /Title <feff006c00750061007400650078002000280063006f006e00740065007800740029> /Prev 1357 0 R /Dest (aut:49) /Next 1359 0 R /Parent 1309 0 R >>
+<< /Title <feff006c00690062007200610072006900650073002000280063006f006e00740065007800740029> /Prev 1357 0 R /Dest (aut:42) /Next 1359 0 R /Parent 1316 0 R >>
endobj
1359 0 obj
-<< /Title <feff006c0078006d006c002000280063006f006e00740065007800740029> /Prev 1358 0 R /Dest (aut:50) /Next 1360 0 R /Parent 1309 0 R >>
+<< /Title <feff006c006d0078002000280063006f006e00740065007800740029> /Prev 1358 0 R /Dest (aut:43) /Next 1360 0 R /Parent 1316 0 R >>
endobj
1360 0 obj
-<< /Title <feff006d00610074006800200028006200610073006900630020006c007500610029> /Prev 1359 0 R /Dest (aut:51) /Next 1361 0 R /Parent 1309 0 R >>
+<< /Title <feff006c006f00670073002000280063006f006e00740065007800740029> /Prev 1359 0 R /Dest (aut:44) /Next 1361 0 R /Parent 1316 0 R >>
endobj
1361 0 obj
-<< /Title <feff006d0061007400680065006d00610074006900630073002000280063006f006e00740065007800740029> /Prev 1360 0 R /Dest (aut:52) /Next 1362 0 R /Parent 1309 0 R >>
+<< /Title <feff006c007000640066002000280063006f006e00740065007800740029> /Prev 1360 0 R /Dest (aut:45) /Next 1362 0 R /Parent 1316 0 R >>
endobj
1362 0 obj
-<< /Title <feff006d0064003500200028006500780074007200610020006c007500610029> /Prev 1361 0 R /Dest (aut:53) /Next 1363 0 R /Parent 1309 0 R >>
+<< /Title <feff006c00700065006700200028006200610073006900630020006c007500610029> /Prev 1361 0 R /Dest (aut:46) /Next 1363 0 R /Parent 1316 0 R >>
endobj
1363 0 obj
-<< /Title <feff006d0065007400610070006f00730074002000280063006f006e00740065007800740029> /Prev 1362 0 R /Dest (aut:54) /Next 1364 0 R /Parent 1309 0 R >>
+<< /Title <feff006c0074006e0031003200200028006500780074007200610020006c007500610029> /Prev 1362 0 R /Dest (aut:47) /Next 1364 0 R /Parent 1316 0 R >>
endobj
1364 0 obj
-<< /Title <feff006d0069006d006500200028006500780074007200610020006c007500610029> /Prev 1363 0 R /Dest (aut:55) /Next 1365 0 R /Parent 1309 0 R >>
+<< /Title <feff006c00750061002000280062006100730069006300200074006500780029> /Prev 1363 0 R /Dest (aut:48) /Next 1365 0 R /Parent 1316 0 R >>
endobj
1365 0 obj
-<< /Title <feff006d0070006c00690062002000280065007800740072006100200074006500780029> /Prev 1364 0 R /Dest (aut:56) /Next 1366 0 R /Parent 1309 0 R >>
+<< /Title <feff006c00750061007400650078002000280063006f006e00740065007800740029> /Prev 1364 0 R /Dest (aut:49) /Next 1366 0 R /Parent 1316 0 R >>
endobj
1366 0 obj
-<< /Title <feff006e006f006100640073002000280063006f006e00740065007800740029> /Prev 1365 0 R /Dest (aut:57) /Next 1367 0 R /Parent 1309 0 R >>
+<< /Title <feff006c0078006d006c002000280063006f006e00740065007800740029> /Prev 1365 0 R /Dest (aut:50) /Next 1367 0 R /Parent 1316 0 R >>
endobj
1367 0 obj
-<< /Title <feff006e006f00640065002000280062006100730069006300200074006500780029> /Prev 1366 0 R /Dest (aut:58) /Next 1368 0 R /Parent 1309 0 R >>
+<< /Title <feff006d00610074006800200028006200610073006900630020006c007500610029> /Prev 1366 0 R /Dest (aut:51) /Next 1368 0 R /Parent 1316 0 R >>
endobj
1368 0 obj
-<< /Title <feff006e006f006400650073002000280063006f006e00740065007800740029> /Prev 1367 0 R /Dest (aut:59) /Next 1369 0 R /Parent 1309 0 R >>
+<< /Title <feff006d0061007400680065006d00610074006900630073002000280063006f006e00740065007800740029> /Prev 1367 0 R /Dest (aut:52) /Next 1369 0 R /Parent 1316 0 R >>
endobj
1369 0 obj
-<< /Title <feff006e0075006d006200650072002000280063006f006e00740065007800740029> /Prev 1368 0 R /Dest (aut:60) /Next 1370 0 R /Parent 1309 0 R >>
+<< /Title <feff006d0064003500200028006500780074007200610020006c007500610029> /Prev 1368 0 R /Dest (aut:53) /Next 1370 0 R /Parent 1316 0 R >>
endobj
1370 0 obj
-<< /Title <feff006f007300200028006200610073006900630020006c007500610029> /Prev 1369 0 R /Dest (aut:61) /Next 1371 0 R /Parent 1309 0 R >>
+<< /Title <feff006d0065007400610070006f00730074002000280063006f006e00740065007800740029> /Prev 1369 0 R /Dest (aut:54) /Next 1371 0 R /Parent 1316 0 R >>
endobj
1371 0 obj
-<< /Title <feff007000610063006b00610067006500200028006200610073006900630020006c007500610029> /Prev 1370 0 R /Dest (aut:62) /Next 1372 0 R /Parent 1309 0 R >>
+<< /Title <feff006d0069006d006500200028006500780074007200610020006c007500610029> /Prev 1370 0 R /Dest (aut:55) /Next 1372 0 R /Parent 1316 0 R >>
endobj
1372 0 obj
-<< /Title <feff007000640066002000280062006100730069006300200074006500780029> /Prev 1371 0 R /Dest (aut:63) /Next 1373 0 R /Parent 1309 0 R >>
+<< /Title <feff006d0070006c00690062002000280065007800740072006100200074006500780029> /Prev 1371 0 R /Dest (aut:56) /Next 1373 0 R /Parent 1316 0 R >>
endobj
1373 0 obj
-<< /Title <feff0070006800790073006900630073002000280063006f006e00740065007800740029> /Prev 1372 0 R /Dest (aut:64) /Next 1374 0 R /Parent 1309 0 R >>
+<< /Title <feff006e006f006100640073002000280063006f006e00740065007800740029> /Prev 1372 0 R /Dest (aut:57) /Next 1374 0 R /Parent 1316 0 R >>
endobj
1374 0 obj
-<< /Title <feff00700072006f00660069006c0065007200200028006500780074007200610020006c007500610029> /Prev 1373 0 R /Dest (aut:65) /Next 1375 0 R /Parent 1309 0 R >>
+<< /Title <feff006e006f00640065002000280062006100730069006300200074006500780029> /Prev 1373 0 R /Dest (aut:58) /Next 1375 0 R /Parent 1316 0 R >>
endobj
1375 0 obj
-<< /Title <feff0072006500670069006d00650073002000280063006f006e00740065007800740029> /Prev 1374 0 R /Dest (aut:66) /Next 1376 0 R /Parent 1309 0 R >>
+<< /Title <feff006e006f006400650073002000280063006f006e00740065007800740029> /Prev 1374 0 R /Dest (aut:59) /Next 1376 0 R /Parent 1316 0 R >>
endobj
1376 0 obj
-<< /Title <feff007200650073006f006c0076006500720073002000280063006f006e00740065007800740029> /Prev 1375 0 R /Dest (aut:67) /Next 1377 0 R /Parent 1309 0 R >>
+<< /Title <feff006e0075006d006200650072002000280063006f006e00740065007800740029> /Prev 1375 0 R /Dest (aut:60) /Next 1377 0 R /Parent 1316 0 R >>
endobj
1377 0 obj
-<< /Title <feff0073006300720069007000740073002000280063006f006e00740065007800740029> /Prev 1376 0 R /Dest (aut:68) /Next 1378 0 R /Parent 1309 0 R >>
+<< /Title <feff006f007300200028006200610073006900630020006c007500610029> /Prev 1376 0 R /Dest (aut:61) /Next 1378 0 R /Parent 1316 0 R >>
endobj
1378 0 obj
-<< /Title <feff007300650074002000280063006f006e00740065007800740029> /Prev 1377 0 R /Dest (aut:69) /Next 1379 0 R /Parent 1309 0 R >>
+<< /Title <feff007000610063006b00610067006500200028006200610073006900630020006c007500610029> /Prev 1377 0 R /Dest (aut:62) /Next 1379 0 R /Parent 1316 0 R >>
endobj
1379 0 obj
-<< /Title <feff00730068006f00720074005f006f00700065007200610074006f00720073002000280063006f006e00740065007800740029> /Prev 1378 0 R /Dest (aut:70) /Next 1380 0 R /Parent 1309 0 R >>
+<< /Title <feff007000640066002000280062006100730069006300200074006500780029> /Prev 1378 0 R /Dest (aut:63) /Next 1380 0 R /Parent 1316 0 R >>
endobj
1380 0 obj
-<< /Title <feff00730068006f00720074005f00700072006500660069007800650073002000280063006f006e00740065007800740029> /Prev 1379 0 R /Dest (aut:71) /Next 1381 0 R /Parent 1309 0 R >>
+<< /Title <feff0070006800790073006900630073002000280063006f006e00740065007800740029> /Prev 1379 0 R /Dest (aut:64) /Next 1381 0 R /Parent 1316 0 R >>
endobj
1381 0 obj
-<< /Title <feff00730068006f00720074005f0075006e006900740073002000280063006f006e00740065007800740029> /Prev 1380 0 R /Dest (aut:72) /Next 1382 0 R /Parent 1309 0 R >>
+<< /Title <feff00700072006f00660069006c0065007200200028006500780074007200610020006c007500610029> /Prev 1380 0 R /Dest (aut:65) /Next 1382 0 R /Parent 1316 0 R >>
endobj
1382 0 obj
-<< /Title <feff0073006f0063006b0065007400200028006500780074007200610020006c007500610029> /Prev 1381 0 R /Dest (aut:73) /Next 1383 0 R /Parent 1309 0 R >>
+<< /Title <feff0072006500670069006d00650073002000280063006f006e00740065007800740029> /Prev 1381 0 R /Dest (aut:66) /Next 1383 0 R /Parent 1316 0 R >>
endobj
1383 0 obj
-<< /Title <feff0073006f00720074006500720073002000280063006f006e00740065007800740029> /Prev 1382 0 R /Dest (aut:74) /Next 1384 0 R /Parent 1309 0 R >>
+<< /Title <feff007200650073006f006c0076006500720073002000280063006f006e00740065007800740029> /Prev 1382 0 R /Dest (aut:67) /Next 1384 0 R /Parent 1316 0 R >>
endobj
1384 0 obj
-<< /Title <feff0073007400610074006900730074006900630073002000280063006f006e00740065007800740029> /Prev 1383 0 R /Dest (aut:75) /Next 1385 0 R /Parent 1309 0 R >>
+<< /Title <feff0073006300720069007000740073002000280063006f006e00740065007800740029> /Prev 1383 0 R /Dest (aut:68) /Next 1385 0 R /Parent 1316 0 R >>
endobj
1385 0 obj
-<< /Title <feff007300740061007400750073002000280062006100730069006300200074006500780029> /Prev 1384 0 R /Dest (aut:76) /Next 1386 0 R /Parent 1309 0 R >>
+<< /Title <feff007300650074002000280063006f006e00740065007800740029> /Prev 1384 0 R /Dest (aut:69) /Next 1386 0 R /Parent 1316 0 R >>
endobj
1386 0 obj
-<< /Title <feff00730074006f0072006100670065002000280063006f006e00740065007800740029> /Prev 1385 0 R /Dest (aut:77) /Next 1387 0 R /Parent 1309 0 R >>
+<< /Title <feff00730068006f00720074005f006f00700065007200610074006f00720073002000280063006f006e00740065007800740029> /Prev 1385 0 R /Dest (aut:70) /Next 1387 0 R /Parent 1316 0 R >>
endobj
1387 0 obj
-<< /Title <feff00730074007200650061006d0073002000280063006f006e00740065007800740029> /Prev 1386 0 R /Dest (aut:78) /Next 1388 0 R /Parent 1309 0 R >>
+<< /Title <feff00730068006f00720074005f00700072006500660069007800650073002000280063006f006e00740065007800740029> /Prev 1386 0 R /Dest (aut:71) /Next 1388 0 R /Parent 1316 0 R >>
endobj
1388 0 obj
-<< /Title <feff0073007400720069006e006700200028006200610073006900630020006c007500610029> /Prev 1387 0 R /Dest (aut:79) /Next 1389 0 R /Parent 1309 0 R >>
+<< /Title <feff00730068006f00720074005f0075006e006900740073002000280063006f006e00740065007800740029> /Prev 1387 0 R /Dest (aut:72) /Next 1389 0 R /Parent 1316 0 R >>
endobj
1389 0 obj
-<< /Title <feff0073007400720075006300740075007200650073002000280063006f006e00740065007800740029> /Prev 1388 0 R /Dest (aut:80) /Next 1390 0 R /Parent 1309 0 R >>
+<< /Title <feff0073006f0063006b0065007400200028006500780074007200610020006c007500610029> /Prev 1388 0 R /Dest (aut:73) /Next 1390 0 R /Parent 1316 0 R >>
endobj
1390 0 obj
-<< /Title <feff007400610062006c006500200028006200610073006900630020006c007500610029> /Prev 1389 0 R /Dest (aut:81) /Next 1391 0 R /Parent 1309 0 R >>
+<< /Title <feff0073006f00720074006500720073002000280063006f006e00740065007800740029> /Prev 1389 0 R /Dest (aut:74) /Next 1391 0 R /Parent 1316 0 R >>
endobj
1391 0 obj
-<< /Title <feff007400650078002000280062006100730069006300200074006500780029> /Prev 1390 0 R /Dest (aut:82) /Next 1392 0 R /Parent 1309 0 R >>
+<< /Title <feff0073007400610074006900730074006900630073002000280063006f006e00740065007800740029> /Prev 1390 0 R /Dest (aut:75) /Next 1392 0 R /Parent 1316 0 R >>
endobj
1392 0 obj
-<< /Title <feff0074006500780063006f006e006600690067002000280062006100730069006300200074006500780029> /Prev 1391 0 R /Dest (aut:83) /Next 1393 0 R /Parent 1309 0 R >>
+<< /Title <feff007300740061007400750073002000280062006100730069006300200074006500780029> /Prev 1391 0 R /Dest (aut:76) /Next 1393 0 R /Parent 1316 0 R >>
endobj
1393 0 obj
-<< /Title <feff0074006500780069006f002000280062006100730069006300200074006500780029> /Prev 1392 0 R /Dest (aut:84) /Next 1394 0 R /Parent 1309 0 R >>
+<< /Title <feff00730074006f0072006100670065002000280063006f006e00740065007800740029> /Prev 1392 0 R /Dest (aut:77) /Next 1394 0 R /Parent 1316 0 R >>
endobj
1394 0 obj
-<< /Title <feff0074006f006b0065006e002000280062006100730069006300200074006500780029> /Prev 1393 0 R /Dest (aut:85) /Next 1395 0 R /Parent 1309 0 R >>
+<< /Title <feff00730074007200650061006d0073002000280063006f006e00740065007800740029> /Prev 1393 0 R /Dest (aut:78) /Next 1395 0 R /Parent 1316 0 R >>
endobj
1395 0 obj
-<< /Title <feff0074006f006b0065006e0073002000280063006f006e00740065007800740029> /Prev 1394 0 R /Dest (aut:86) /Next 1396 0 R /Parent 1309 0 R >>
+<< /Title <feff0073007400720069006e006700200028006200610073006900630020006c007500610029> /Prev 1394 0 R /Dest (aut:79) /Next 1396 0 R /Parent 1316 0 R >>
endobj
1396 0 obj
-<< /Title <feff0074007200610063006500720073002000280063006f006e00740065007800740029> /Prev 1395 0 R /Dest (aut:87) /Next 1397 0 R /Parent 1309 0 R >>
+<< /Title <feff0073007400720075006300740075007200650073002000280063006f006e00740065007800740029> /Prev 1395 0 R /Dest (aut:80) /Next 1397 0 R /Parent 1316 0 R >>
endobj
1397 0 obj
-<< /Title <feff0074007200610063006b006500720073002000280063006f006e00740065007800740029> /Prev 1396 0 R /Dest (aut:88) /Next 1398 0 R /Parent 1309 0 R >>
+<< /Title <feff007400610062006c006500200028006200610073006900630020006c007500610029> /Prev 1396 0 R /Dest (aut:81) /Next 1398 0 R /Parent 1316 0 R >>
endobj
1398 0 obj
-<< /Title <feff00740079007000650073006500740074006500720073002000280063006f006e00740065007800740029> /Prev 1397 0 R /Dest (aut:89) /Next 1399 0 R /Parent 1309 0 R >>
+<< /Title <feff007400650078002000280062006100730069006300200074006500780029> /Prev 1397 0 R /Dest (aut:82) /Next 1399 0 R /Parent 1316 0 R >>
endobj
1399 0 obj
-<< /Title <feff0075006e00690063006f0064006500200028006500780074007200610020006c007500610029> /Prev 1398 0 R /Dest (aut:90) /Next 1400 0 R /Parent 1309 0 R >>
+<< /Title <feff0074006500780063006f006e006600690067002000280062006100730069006300200074006500780029> /Prev 1398 0 R /Dest (aut:83) /Next 1400 0 R /Parent 1316 0 R >>
endobj
1400 0 obj
-<< /Title <feff00750072006c002000280063006f006e00740065007800740029> /Prev 1399 0 R /Dest (aut:91) /Next 1401 0 R /Parent 1309 0 R >>
+<< /Title <feff0074006500780069006f002000280062006100730069006300200074006500780029> /Prev 1399 0 R /Dest (aut:84) /Next 1401 0 R /Parent 1316 0 R >>
endobj
1401 0 obj
-<< /Title <feff007500740069006c00690074006900650073002000280063006f006e00740065007800740029> /Prev 1400 0 R /Dest (aut:92) /Next 1402 0 R /Parent 1309 0 R >>
+<< /Title <feff0074006f006b0065006e002000280062006100730069006300200074006500780029> /Prev 1400 0 R /Dest (aut:85) /Next 1402 0 R /Parent 1316 0 R >>
endobj
1402 0 obj
-<< /Title <feff00760069007300750061006c0069007a006500720073002000280063006f006e00740065007800740029> /Prev 1401 0 R /Dest (aut:93) /Next 1403 0 R /Parent 1309 0 R >>
+<< /Title <feff0074006f006b0065006e0073002000280063006f006e00740065007800740029> /Prev 1401 0 R /Dest (aut:86) /Next 1403 0 R /Parent 1316 0 R >>
endobj
1403 0 obj
-<< /Title <feff0078006d006c002000280063006f006e00740065007800740029> /Prev 1402 0 R /Dest (aut:94) /Next 1404 0 R /Parent 1309 0 R >>
+<< /Title <feff0074007200610063006500720073002000280063006f006e00740065007800740029> /Prev 1402 0 R /Dest (aut:87) /Next 1404 0 R /Parent 1316 0 R >>
endobj
1404 0 obj
-<< /Title <feff0078007400610062006c00650073002000280063006f006e00740065007800740029> /Prev 1403 0 R /Dest (aut:95) /Next 1405 0 R /Parent 1309 0 R >>
+<< /Title <feff0074007200610063006b006500720073002000280063006f006e00740065007800740029> /Prev 1403 0 R /Dest (aut:88) /Next 1405 0 R /Parent 1316 0 R >>
endobj
1405 0 obj
-<< /Title <feff007a0069007000200028006500780074007200610020006c007500610029> /Prev 1404 0 R /Dest (aut:96) /Next 1406 0 R /Parent 1309 0 R >>
+<< /Title <feff00740079007000650073006500740074006500720073002000280063006f006e00740065007800740029> /Prev 1404 0 R /Dest (aut:89) /Next 1406 0 R /Parent 1316 0 R >>
endobj
1406 0 obj
-<< /Parent 1309 0 R /Dest (aut:97) /Title <feff007a006c0069006200200028006500780074007200610020006c007500610029> /Prev 1405 0 R >>
+<< /Title <feff0075006e00690063006f0064006500200028006500780074007200610020006c007500610029> /Prev 1405 0 R /Dest (aut:90) /Next 1407 0 R /Parent 1316 0 R >>
endobj
-1309 0 obj
-<< /Last 1406 0 R /Type /Outlines /Count 97 /First 1310 0 R >>
+1407 0 obj
+<< /Title <feff00750072006c002000280063006f006e00740065007800740029> /Prev 1406 0 R /Dest (aut:91) /Next 1408 0 R /Parent 1316 0 R >>
endobj
-1407 0 obj
+1408 0 obj
+<< /Title <feff007500740069006c00690074006900650073002000280063006f006e00740065007800740029> /Prev 1407 0 R /Dest (aut:92) /Next 1409 0 R /Parent 1316 0 R >>
+
+endobj
+1409 0 obj
+<< /Title <feff00760069007300750061006c0069007a006500720073002000280063006f006e00740065007800740029> /Prev 1408 0 R /Dest (aut:93) /Next 1410 0 R /Parent 1316 0 R >>
+
+endobj
+1410 0 obj
+<< /Title <feff0078006d006c002000280063006f006e00740065007800740029> /Prev 1409 0 R /Dest (aut:94) /Next 1411 0 R /Parent 1316 0 R >>
+
+endobj
+1411 0 obj
+<< /Title <feff0078007400610062006c00650073002000280063006f006e00740065007800740029> /Prev 1410 0 R /Dest (aut:95) /Next 1412 0 R /Parent 1316 0 R >>
+
+endobj
+1412 0 obj
+<< /Title <feff007a0069007000200028006500780074007200610020006c007500610029> /Prev 1411 0 R /Dest (aut:96) /Next 1413 0 R /Parent 1316 0 R >>
+
+endobj
+1413 0 obj
+<< /Parent 1316 0 R /Dest (aut:97) /Title <feff007a006c0069006200200028006500780074007200610020006c007500610029> /Prev 1412 0 R >>
+
+endobj
+1316 0 obj
+<< /Last 1413 0 R /Type /Outlines /Count 97 /First 1317 0 R >>
+
+endobj
+1414 0 obj
[27[525 525]34[525 525]43[525]46[525 525]49[525 525]54[525 525 525 525 525 525]63[525 525 525 525]68[525]70[525]72[525]74[525 525 525 525]80[525 525 525 525 525]88[525]91[525]95[525 525 525 525]101[525]104[525 525 525]108[525 525 525 525 525 525 525]116[525]118[525 525 525]]
endobj
-1408 0 obj
+1415 0 obj
<</Length 16 >>
stream
endstream
endobj
-1409 0 obj
+1416 0 obj
<</Subtype/CIDFontType0C/Length 6640 >>
stream

@@ -14341,10 +14374,10 @@ h_„ub÷R÷„š¤‹©ªs‹{û¡j„‚kûžy‹t«•“«¦´ÅݸBJ;DO7oK“Âo“’Ÿ¨t›v|m‚d8ßE÷
Ð ±›‘ŒŒŒŒŒŸ‘ ® ’ŒžŒ•Á¬• ø¡ö
endstream
endobj
-1410 0 obj
-<</Type/FontDescriptor/FontName/KLLGPB+LMMono10-Regular/Flags 4/FontBBox[-451 -316 731 1016]/Ascent 1016/CapHeight 611/Descent -316/ItalicAngle 0/StemV 175/XHeight 431/FontFile3 1409 0 R/CIDSet 1408 0 R>>
+1417 0 obj
+<</Type/FontDescriptor/FontName/KLLGPB+LMMono10-Regular/Flags 4/FontBBox[-451 -316 731 1016]/Ascent 1016/CapHeight 611/Descent -316/ItalicAngle 0/StemV 175/XHeight 431/FontFile3 1416 0 R/CIDSet 1415 0 R>>
endobj
-1411 0 obj
+1418 0 obj
<</Length 1402 >>
stream
%!PS-Adobe-3.0 Resource-CMap
@@ -14432,21 +14465,21 @@ end
endstream
endobj
338 0 obj
-<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/KLLGPB+LMMono10-Regular/DescendantFonts[1412 0 R]/ToUnicode 1411 0 R>>
+<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/KLLGPB+LMMono10-Regular/DescendantFonts[1419 0 R]/ToUnicode 1418 0 R>>
endobj
-1412 0 obj
-<</Type/Font/Subtype/CIDFontType0/BaseFont/KLLGPB+LMMono10-Regular/FontDescriptor 1410 0 R/W 1407 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
+1419 0 obj
+<</Type/Font/Subtype/CIDFontType0/BaseFont/KLLGPB+LMMono10-Regular/FontDescriptor 1417 0 R/W 1414 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
endobj
-1413 0 obj
+1420 0 obj
[28[515]35[515]43[515 515]47[515]50[515 515]55[515 515 515 515 515]63[515]66[515]68[515]70[515]72[515]75[515]77[515 514]81[515 515]84[515 515 515]96[515]98[515]100[515 514]105[515 515 515]109[515 515]112[515]116[515]118[515]120[515 515]]
endobj
-1414 0 obj
+1421 0 obj
<</Length 16 >>
stream
endstream
endobj
-1415 0 obj
+1422 0 obj
<</Subtype/CIDFontType0C/Length 4967 >>
stream

@@ -14462,10 +14495,10 @@ dÅødŵڇÚ(øø&¨p‹}û}p‹nn¦‹™¤o9Rû;}RŠ†¡‡–¦.÷Š¢™¦‹¨¨p‹}û}p‹nn¦‹™¦
Ì ¨”œŒŒŒŒŽŒŸ ¬¢ŒŒŒŒŒ–”
endstream
endobj
-1416 0 obj
-<</Type/FontDescriptor/FontName/RMMWLX+LMMono12-Regular/Flags 4/FontBBox[-444 -311 715 1019]/Ascent 1019/CapHeight 611/Descent -311/ItalicAngle 0/StemV 172/XHeight 431/FontFile3 1415 0 R/CIDSet 1414 0 R>>
+1423 0 obj
+<</Type/FontDescriptor/FontName/RMMWLX+LMMono12-Regular/Flags 4/FontBBox[-444 -311 715 1019]/Ascent 1019/CapHeight 611/Descent -311/ItalicAngle 0/StemV 172/XHeight 431/FontFile3 1422 0 R/CIDSet 1421 0 R>>
endobj
-1417 0 obj
+1424 0 obj
<</Length 1213 >>
stream
%!PS-Adobe-3.0 Resource-CMap
@@ -14539,21 +14572,21 @@ end
endstream
endobj
220 0 obj
-<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/RMMWLX+LMMono12-Regular/DescendantFonts[1418 0 R]/ToUnicode 1417 0 R>>
+<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/RMMWLX+LMMono12-Regular/DescendantFonts[1425 0 R]/ToUnicode 1424 0 R>>
endobj
-1418 0 obj
-<</Type/Font/Subtype/CIDFontType0/BaseFont/RMMWLX+LMMono12-Regular/FontDescriptor 1416 0 R/W 1413 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
+1425 0 obj
+<</Type/Font/Subtype/CIDFontType0/BaseFont/RMMWLX+LMMono12-Regular/FontDescriptor 1423 0 R/W 1420 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
endobj
-1419 0 obj
+1426 0 obj
[27[525 525]32[525]34[525 525]42[525 525 525]46[525 525]49[525 525 525]54[525 525 525 525 525 525]62[525 525]65[525 525]68[525 525 525 525 525]74[525 525]77[525]80[525 525 525 525 525]88[525]91[525]95[525 525 525 525]101[525 525]104[525 525 525 525 525 525 525 525 525]114[525 525 525 525 525 525 525 525]]
endobj
-1420 0 obj
+1427 0 obj
<</Length 16 >>
stream
endstream
endobj
-1421 0 obj
+1428 0 obj
<</Subtype/CIDFontType0C/Length 7454 >>
stream

@@ -14566,10 +14599,10 @@ stream
Þ º¢ŒŒŒŒŒž‘ ÑŒŒ’ŒŒŒŸ”Œ” ø¡ö
endstream
endobj
-1422 0 obj
-<</Type/FontDescriptor/FontName/FXXPPC+LMMonoLt10-Bold/Flags 4/FontBBox[-454 -308 734 1039]/Ascent 1039/CapHeight 611/Descent -308/ItalicAngle 0/StemV 175/XHeight 431/FontFile3 1421 0 R/CIDSet 1420 0 R>>
+1429 0 obj
+<</Type/FontDescriptor/FontName/FXXPPC+LMMonoLt10-Bold/Flags 4/FontBBox[-454 -308 734 1039]/Ascent 1039/CapHeight 611/Descent -308/ItalicAngle 0/StemV 175/XHeight 431/FontFile3 1428 0 R/CIDSet 1427 0 R>>
endobj
-1423 0 obj
+1430 0 obj
<</Length 1523 >>
stream
%!PS-Adobe-3.0 Resource-CMap
@@ -14666,93 +14699,93 @@ end
endstream
endobj
113 0 obj
-<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/FXXPPC+LMMonoLt10-Bold/DescendantFonts[1424 0 R]/ToUnicode 1423 0 R>>
+<</Type/Font/Subtype/Type0/Encoding/Identity-H/BaseFont/FXXPPC+LMMonoLt10-Bold/DescendantFonts[1431 0 R]/ToUnicode 1430 0 R>>
endobj
-1424 0 obj
-<</Type/Font/Subtype/CIDFontType0/BaseFont/FXXPPC+LMMonoLt10-Bold/FontDescriptor 1422 0 R/W 1419 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
+1431 0 obj
+<</Type/Font/Subtype/CIDFontType0/BaseFont/FXXPPC+LMMonoLt10-Bold/FontDescriptor 1429 0 R/W 1426 0 R/CIDSystemInfo<</Registry (Adobe)/Ordering (Identity)/Supplement 0>>>>
endobj
208 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[110 0 R 217 0 R 214 0 R 292 0 R 330 0 R 340 0 R 347 0 R 356 0 R 363 0 R 372 0 R]>>
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[110 0 R 217 0 R 214 0 R 292 0 R 330 0 R 340 0 R 347 0 R 356 0 R 363 0 R 372 0 R]>>
endobj
398 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[381 0 R 390 0 R 400 0 R 409 0 R 418 0 R 427 0 R 436 0 R 445 0 R 454 0 R 463 0 R]>>
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[381 0 R 390 0 R 400 0 R 409 0 R 418 0 R 427 0 R 436 0 R 445 0 R 454 0 R 463 0 R]>>
endobj
485 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[472 0 R 479 0 R 487 0 R 494 0 R 503 0 R 512 0 R 521 0 R 530 0 R 539 0 R 548 0 R]>>
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[472 0 R 479 0 R 487 0 R 494 0 R 501 0 R 510 0 R 519 0 R 528 0 R 537 0 R 546 0 R]>>
endobj
-574 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[557 0 R 566 0 R 576 0 R 585 0 R 594 0 R 603 0 R 612 0 R 621 0 R 630 0 R 639 0 R]>>
+572 0 obj
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[555 0 R 564 0 R 574 0 R 583 0 R 592 0 R 601 0 R 610 0 R 619 0 R 628 0 R 637 0 R]>>
endobj
659 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[646 0 R 653 0 R 661 0 R 670 0 R 679 0 R 688 0 R 697 0 R 706 0 R 715 0 R 724 0 R]>>
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[646 0 R 653 0 R 661 0 R 668 0 R 677 0 R 686 0 R 695 0 R 704 0 R 713 0 R 722 0 R]>>
endobj
-750 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[733 0 R 742 0 R 752 0 R 761 0 R 770 0 R 779 0 R 788 0 R 797 0 R 806 0 R 815 0 R]>>
+748 0 obj
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[731 0 R 740 0 R 750 0 R 759 0 R 768 0 R 777 0 R 786 0 R 795 0 R 804 0 R 813 0 R]>>
endobj
-841 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[824 0 R 833 0 R 843 0 R 852 0 R 861 0 R 870 0 R 879 0 R 888 0 R 897 0 R 906 0 R]>>
+839 0 obj
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[822 0 R 831 0 R 841 0 R 850 0 R 859 0 R 868 0 R 877 0 R 886 0 R 895 0 R 904 0 R]>>
endobj
928 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[915 0 R 922 0 R 930 0 R 939 0 R 948 0 R 957 0 R 966 0 R 975 0 R 984 0 R 993 0 R]>>
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[913 0 R 922 0 R 930 0 R 937 0 R 946 0 R 955 0 R 964 0 R 973 0 R 982 0 R 991 0 R]>>
endobj
-1017 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[1002 0 R 1009 0 R 1019 0 R 1028 0 R 1037 0 R 1046 0 R 1055 0 R 1064 0 R 1073 0 R 1082 0 R]>>
+1015 0 obj
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[1000 0 R 1009 0 R 1017 0 R 1026 0 R 1035 0 R 1044 0 R 1053 0 R 1062 0 R 1071 0 R 1080 0 R]>>
endobj
-1108 0 obj
-<</Type/Pages/Parent 1425 0 R/Count 10/Kids[1091 0 R 1100 0 R 1110 0 R 1119 0 R 1128 0 R 1135 0 R 1142 0 R 1149 0 R 1158 0 R 1167 0 R]>>
+1106 0 obj
+<</Type/Pages/Parent 1432 0 R/Count 10/Kids[1089 0 R 1098 0 R 1108 0 R 1117 0 R 1126 0 R 1135 0 R 1142 0 R 1149 0 R 1156 0 R 1165 0 R]>>
endobj
-1193 0 obj
-<</Type/Pages/Parent 1426 0 R/Count 10/Kids[1176 0 R 1185 0 R 1195 0 R 1204 0 R 1213 0 R 1222 0 R 1231 0 R 1240 0 R 1249 0 R 1258 0 R]>>
+1191 0 obj
+<</Type/Pages/Parent 1433 0 R/Count 10/Kids[1174 0 R 1183 0 R 1193 0 R 1202 0 R 1211 0 R 1220 0 R 1229 0 R 1238 0 R 1247 0 R 1256 0 R]>>
endobj
1282 0 obj
-<</Type/Pages/Parent 1426 0 R/Count 4/Kids[1267 0 R 1276 0 R 1284 0 R 1293 0 R]>>
-endobj
-1425 0 obj
-<</Type/Pages/Parent 1427 0 R/Count 100/Kids[208 0 R 398 0 R 485 0 R 574 0 R 659 0 R 750 0 R 841 0 R 928 0 R 1017 0 R 1108 0 R]>>
-endobj
-1426 0 obj
-<</Type/Pages/Parent 1427 0 R/Count 14/Kids[1193 0 R 1282 0 R]>>
-endobj
-1427 0 obj
-<</Type/Pages/Count 114/Kids[1425 0 R 1426 0 R]>>
-endobj
-1428 0 obj
-<</Names[(attributes) 336 0 R (aut:1) 222 0 R (aut:10) 425 0 R (aut:11) 434 0 R (aut:12) 443 0 R (aut:13) 452 0 R (aut:14) 461 0 R (aut:15) 470 0 R (aut:16) 501 0 R (aut:17) 510 0 R (aut:18) 519 0 R (aut:19) 528 0 R (aut:2) 337 0 R (aut:20) 537 0 R (aut:21) 546 0 R (aut:22) 555 0 R (aut:23) 564 0 R (aut:24) 573 0 R (aut:25) 583 0 R (aut:26) 592 0 R (aut:27) 601 0 R (aut:28) 610 0 R (aut:29) 619 0 R (aut:3) 354 0 R (aut:30) 628 0 R (aut:31) 637 0 R (aut:32) 668 0 R (aut:33) 677 0 R (aut:34) 686 0 R (aut:35) 695 0 R (aut:36) 704 0 R (aut:37) 713 0 R]/Limits[(attributes) (aut:37)]>>
-endobj
-1429 0 obj
-<</Names[(aut:38) 722 0 R (aut:39) 731 0 R (aut:4) 370 0 R (aut:40) 740 0 R (aut:41) 749 0 R (aut:42) 759 0 R (aut:43) 768 0 R (aut:44) 777 0 R (aut:45) 786 0 R (aut:46) 795 0 R (aut:47) 804 0 R (aut:48) 813 0 R (aut:49) 822 0 R (aut:5) 379 0 R (aut:50) 831 0 R (aut:51) 840 0 R (aut:52) 850 0 R (aut:53) 859 0 R (aut:54) 868 0 R (aut:55) 877 0 R (aut:56) 886 0 R (aut:57) 895 0 R (aut:58) 904 0 R (aut:59) 913 0 R (aut:6) 388 0 R (aut:60) 937 0 R (aut:61) 946 0 R (aut:62) 955 0 R (aut:63) 964 0 R (aut:64) 973 0 R (aut:65) 982 0 R (aut:66) 991 0 R]/Limits[(aut:38) (aut:66)]>>
-endobj
-1430 0 obj
-<</Names[(aut:67) 1000 0 R (aut:68) 1016 0 R (aut:69) 1026 0 R (aut:7) 397 0 R (aut:70) 1035 0 R (aut:71) 1044 0 R (aut:72) 1053 0 R (aut:73) 1062 0 R (aut:74) 1071 0 R (aut:75) 1080 0 R (aut:76) 1089 0 R (aut:77) 1098 0 R (aut:78) 1107 0 R (aut:79) 1117 0 R (aut:8) 407 0 R (aut:80) 1126 0 R (aut:81) 1156 0 R (aut:82) 1165 0 R (aut:83) 1174 0 R (aut:84) 1183 0 R (aut:85) 1192 0 R (aut:86) 1202 0 R (aut:87) 1211 0 R (aut:88) 1220 0 R (aut:89) 1229 0 R (aut:9) 416 0 R (aut:90) 1238 0 R (aut:91) 1247 0 R (aut:92) 1256 0 R (aut:93) 1265 0 R (aut:94) 1274 0 R (aut:95) 1291 0 R]/Limits[(aut:67) (aut:95)]>>
-endobj
-1431 0 obj
-<</Names[(aut:96) 1300 0 R (aut:97) 1306 0 R (backends) 353 0 R (bibtex) 369 0 R (blobs) 378 0 R (boolean) 387 0 R (buffers) 396 0 R (builders) 406 0 R (caches) 415 0 R (callback) 424 0 R (callbacks) 433 0 R (catcodes) 442 0 R (characters) 451 0 R (chemicals) 460 0 R (commands) 469 0 R (containers) 500 0 R (converters) 509 0 R (coroutine) 518 0 R (debug) 527 0 R (dir) 536 0 R (directives) 545 0 R (document) 554 0 R (environment) 563 0 R (epdf) 572 0 R (experiments) 582 0 R (figures) 591 0 R (file) 600 0 R (floats) 609 0 R (font) 618 0 R (fontloader) 627 0 R (fonts) 636 0 R (global) 112 0 R]/Limits[(aut:96) (global)]>>
+<</Type/Pages/Parent 1433 0 R/Count 5/Kids[1265 0 R 1274 0 R 1284 0 R 1291 0 R 1300 0 R]>>
endobj
1432 0 obj
-<</Names[(gzip) 667 0 R (img) 676 0 R (interactions) 685 0 R (interfaces) 694 0 R (io) 703 0 R (job) 712 0 R (lang) 721 0 R (languages) 730 0 R (layouts) 739 0 R (lfs) 748 0 R (libraries) 758 0 R (lmx) 767 0 R (logs) 776 0 R (lpdf) 785 0 R (lpeg) 794 0 R (ltn12) 803 0 R (lua) 812 0 R (luatex) 821 0 R (lxml) 830 0 R (math) 839 0 R (mathematics) 849 0 R (md5) 858 0 R (metapost) 867 0 R (mime) 876 0 R (mplib) 885 0 R (noads) 894 0 R (node) 903 0 R (nodes) 912 0 R (number) 936 0 R (os) 945 0 R (package) 954 0 R (pdf) 963 0 R]/Limits[(gzip) (pdf)]>>
+<</Type/Pages/Parent 1434 0 R/Count 100/Kids[208 0 R 398 0 R 485 0 R 572 0 R 659 0 R 748 0 R 839 0 R 928 0 R 1015 0 R 1106 0 R]>>
endobj
1433 0 obj
-<</Names[(physics) 972 0 R (profiler) 981 0 R (regimes) 990 0 R (resolvers) 999 0 R (scripts) 1015 0 R (set) 1025 0 R (short_operators) 1034 0 R (short_prefixes) 1043 0 R (short_units) 1052 0 R (socket) 1061 0 R (sorters) 1070 0 R (statistics) 1079 0 R (status) 1088 0 R (storage) 1097 0 R (streams) 1106 0 R (string) 1116 0 R (structures) 1125 0 R (table) 1155 0 R (tex) 1164 0 R (texconfig) 1173 0 R (texio) 1182 0 R (token) 1191 0 R (tokens) 1201 0 R (tracers) 1210 0 R (trackers) 1219 0 R (typesetters) 1228 0 R (unicode) 1237 0 R (url) 1246 0 R (utilities) 1255 0 R (visualizers) 1264 0 R (xml) 1273 0 R (xtables) 1290 0 R]/Limits[(physics) (xtables)]>>
+<</Type/Pages/Parent 1434 0 R/Count 15/Kids[1191 0 R 1282 0 R]>>
endobj
1434 0 obj
-<</Names[(zip) 1299 0 R (zlib) 1305 0 R]/Limits[(zip) (zlib)]>>
+<</Type/Pages/Count 115/Kids[1432 0 R 1433 0 R]>>
endobj
1435 0 obj
-<</Kids[1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R]/Limits[(attributes) (zlib)]>>
+<</Names[(attributes) 336 0 R (aut:1) 222 0 R (aut:10) 425 0 R (aut:11) 434 0 R (aut:12) 443 0 R (aut:13) 452 0 R (aut:14) 461 0 R (aut:15) 470 0 R (aut:16) 508 0 R (aut:17) 517 0 R (aut:18) 526 0 R (aut:19) 535 0 R (aut:2) 337 0 R (aut:20) 544 0 R (aut:21) 553 0 R (aut:22) 562 0 R (aut:23) 571 0 R (aut:24) 581 0 R (aut:25) 590 0 R (aut:26) 599 0 R (aut:27) 608 0 R (aut:28) 617 0 R (aut:29) 626 0 R (aut:3) 354 0 R (aut:30) 635 0 R (aut:31) 644 0 R (aut:32) 675 0 R (aut:33) 684 0 R (aut:34) 693 0 R (aut:35) 702 0 R (aut:36) 711 0 R (aut:37) 720 0 R]/Limits[(attributes) (aut:37)]>>
endobj
1436 0 obj
-<</Dests 1435 0 R>>
+<</Names[(aut:38) 729 0 R (aut:39) 738 0 R (aut:4) 370 0 R (aut:40) 747 0 R (aut:41) 757 0 R (aut:42) 766 0 R (aut:43) 775 0 R (aut:44) 784 0 R (aut:45) 793 0 R (aut:46) 802 0 R (aut:47) 811 0 R (aut:48) 820 0 R (aut:49) 829 0 R (aut:5) 379 0 R (aut:50) 838 0 R (aut:51) 848 0 R (aut:52) 857 0 R (aut:53) 866 0 R (aut:54) 875 0 R (aut:55) 884 0 R (aut:56) 893 0 R (aut:57) 902 0 R (aut:58) 911 0 R (aut:59) 920 0 R (aut:6) 388 0 R (aut:60) 944 0 R (aut:61) 953 0 R (aut:62) 962 0 R (aut:63) 971 0 R (aut:64) 980 0 R (aut:65) 989 0 R (aut:66) 998 0 R]/Limits[(aut:38) (aut:66)]>>
endobj
1437 0 obj
-<</Type/Catalog/Pages 1427 0 R/Names 1436 0 R /Version /1.6 /PageLabels << /Nums [ 0 << /S /D >> ] >> /PageMode /UseOutlines /Outlines 1309 0 R /Metadata 1308 0 R>>
+<</Names[(aut:67) 1007 0 R (aut:68) 1024 0 R (aut:69) 1033 0 R (aut:7) 397 0 R (aut:70) 1042 0 R (aut:71) 1051 0 R (aut:72) 1060 0 R (aut:73) 1069 0 R (aut:74) 1078 0 R (aut:75) 1087 0 R (aut:76) 1096 0 R (aut:77) 1105 0 R (aut:78) 1115 0 R (aut:79) 1124 0 R (aut:8) 407 0 R (aut:80) 1133 0 R (aut:81) 1163 0 R (aut:82) 1172 0 R (aut:83) 1181 0 R (aut:84) 1190 0 R (aut:85) 1200 0 R (aut:86) 1209 0 R (aut:87) 1218 0 R (aut:88) 1227 0 R (aut:89) 1236 0 R (aut:9) 416 0 R (aut:90) 1245 0 R (aut:91) 1254 0 R (aut:92) 1263 0 R (aut:93) 1272 0 R (aut:94) 1281 0 R (aut:95) 1298 0 R]/Limits[(aut:67) (aut:95)]>>
endobj
1438 0 obj
+<</Names[(aut:96) 1307 0 R (aut:97) 1313 0 R (backends) 353 0 R (bibtex) 369 0 R (blobs) 378 0 R (boolean) 387 0 R (buffers) 396 0 R (builders) 406 0 R (caches) 415 0 R (callback) 424 0 R (callbacks) 433 0 R (catcodes) 442 0 R (characters) 451 0 R (chemicals) 460 0 R (commands) 469 0 R (containers) 507 0 R (converters) 516 0 R (coroutine) 525 0 R (debug) 534 0 R (dir) 543 0 R (directives) 552 0 R (document) 561 0 R (environment) 570 0 R (epdf) 580 0 R (experiments) 589 0 R (figures) 598 0 R (file) 607 0 R (floats) 616 0 R (font) 625 0 R (fontloader) 634 0 R (fonts) 643 0 R (global) 112 0 R]/Limits[(aut:96) (global)]>>
+endobj
+1439 0 obj
+<</Names[(gzip) 674 0 R (img) 683 0 R (interactions) 692 0 R (interfaces) 701 0 R (io) 710 0 R (job) 719 0 R (lang) 728 0 R (languages) 737 0 R (layouts) 746 0 R (lfs) 756 0 R (libraries) 765 0 R (lmx) 774 0 R (logs) 783 0 R (lpdf) 792 0 R (lpeg) 801 0 R (ltn12) 810 0 R (lua) 819 0 R (luatex) 828 0 R (lxml) 837 0 R (math) 847 0 R (mathematics) 856 0 R (md5) 865 0 R (metapost) 874 0 R (mime) 883 0 R (mplib) 892 0 R (noads) 901 0 R (node) 910 0 R (nodes) 919 0 R (number) 943 0 R (os) 952 0 R (package) 961 0 R (pdf) 970 0 R]/Limits[(gzip) (pdf)]>>
+endobj
+1440 0 obj
+<</Names[(physics) 979 0 R (profiler) 988 0 R (regimes) 997 0 R (resolvers) 1006 0 R (scripts) 1023 0 R (set) 1032 0 R (short_operators) 1041 0 R (short_prefixes) 1050 0 R (short_units) 1059 0 R (socket) 1068 0 R (sorters) 1077 0 R (statistics) 1086 0 R (status) 1095 0 R (storage) 1104 0 R (streams) 1114 0 R (string) 1123 0 R (structures) 1132 0 R (table) 1162 0 R (tex) 1171 0 R (texconfig) 1180 0 R (texio) 1189 0 R (token) 1199 0 R (tokens) 1208 0 R (tracers) 1217 0 R (trackers) 1226 0 R (typesetters) 1235 0 R (unicode) 1244 0 R (url) 1253 0 R (utilities) 1262 0 R (visualizers) 1271 0 R (xml) 1280 0 R (xtables) 1297 0 R]/Limits[(physics) (xtables)]>>
+endobj
+1441 0 obj
+<</Names[(zip) 1306 0 R (zlib) 1312 0 R]/Limits[(zip) (zlib)]>>
+endobj
+1442 0 obj
+<</Kids[1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R]/Limits[(attributes) (zlib)]>>
+endobj
+1443 0 obj
+<</Dests 1442 0 R>>
+endobj
+1444 0 obj
+<</Type/Catalog/Pages 1434 0 R/Names 1443 0 R /Version /1.6 /PageLabels << /Nums [ 0 << /S /D >> ] >> /PageMode /UseOutlines /Outlines 1316 0 R /Metadata 1315 0 R>>
+endobj
+1445 0 obj
<<
-/ConTeXt.Url (www.pragma-ade.com) /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300033002000320033003a00320037> /ConTeXt.Jobname (s-inf-03) /Author <feff00480061006e007300200048006100670065006e0020002d0020006100750074006f006d00610074006900630061006c006c0079002000670065006e006500720061007400650064> /Trapped /False /CreationDate (D:20111103233252+01'00') /Producer (LuaTeX-0.71.0) /Title <feff0043006f006e00540065005800740020004d006b00490056> /ConTeXt.Time (2011.11.03 23:32) /ID (s-inf-03.2011-11-03T23:32:52+01:00) /ConTeXt.Version (2011.11.03 23:27) /ModDate (D:20111103233252+01'00') /Subject <feff004c007500610020006d006f00640075006c0065007300200061006e0064002000660075006e006300740069006f006e0073>
+/ConTeXt.Url (www.pragma-ade.com) /Creator <feff0043006f006e00540065005800740020002d00200032003000310031002e00310031002e00300034002000310034003a00310035> /ConTeXt.Jobname (s-inf-03) /Author <feff00480061006e007300200048006100670065006e0020002d0020006100750074006f006d00610074006900630061006c006c0079002000670065006e006500720061007400650064> /Trapped /False /CreationDate (D:20111104142128+01'00') /Producer (LuaTeX-0.71.0) /Title <feff0043006f006e00540065005800740020004d006b00490056> /ConTeXt.Time (2011.11.04 14:21) /ID (s-inf-03.2011-11-04T14:21:28+01:00) /ConTeXt.Version (2011.11.04 14:15) /ModDate (D:20111104142128+01'00') /Subject <feff004c007500610020006d006f00640075006c0065007300200061006e0064002000660075006e006300740069006f006e0073>
/PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>>
endobj
xref
-0 1439
+0 1446
0000000001 65535 f
0000000002 00000 f
0000000003 00000 f
@@ -14866,7 +14899,7 @@ xref
0000011811 00000 n
0000004152 00000 n
0000024538 00000 n
-0000807407 00000 n
+0000808440 00000 n
0000012800 00000 n
0000012924 00000 n
0000013049 00000 n
@@ -14961,7 +14994,7 @@ xref
0000024160 00000 n
0000024286 00000 n
0000024412 00000 n
-0000807739 00000 n
+0000808772 00000 n
0000012029 00000 n
0000024637 00000 n
0000024682 00000 n
@@ -14973,7 +15006,7 @@ xref
0000042582 00000 n
0000024878 00000 n
0000043371 00000 n
-0000797335 00000 n
+0000798368 00000 n
0000043495 00000 n
0000051914 00000 n
0000043619 00000 n
@@ -15091,7 +15124,7 @@ xref
0000075163 00000 n
0000075287 00000 n
0000075324 00000 n
-0000790128 00000 n
+0000791161 00000 n
0000074996 00000 n
0000088659 00000 n
0000075446 00000 n
@@ -15151,7 +15184,7 @@ xref
0000101368 00000 n
0000101492 00000 n
0000101529 00000 n
-0000807883 00000 n
+0000808916 00000 n
0000101201 00000 n
0000111247 00000 n
0000101651 00000 n
@@ -15225,975 +15258,982 @@ xref
0000153230 00000 n
0000153267 00000 n
0000152939 00000 n
-0000196799 00000 n
+0000196807 00000 n
0000153377 00000 n
0000175118 00000 n
0000153430 00000 n
0000174870 00000 n
0000174994 00000 n
0000174835 00000 n
-0000218613 00000 n
+0000218412 00000 n
0000175203 00000 n
-0000197300 00000 n
+0000197308 00000 n
0000175256 00000 n
-0000197052 00000 n
-0000197176 00000 n
-0000808027 00000 n
-0000197017 00000 n
-0000220891 00000 n
-0000197373 00000 n
-0000219114 00000 n
-0000197426 00000 n
-0000218866 00000 n
-0000218990 00000 n
-0000218831 00000 n
-0000229338 00000 n
-0000219187 00000 n
-0000221474 00000 n
-0000219240 00000 n
-0000221152 00000 n
-0000221276 00000 n
-0000221400 00000 n
-0000221437 00000 n
-0000221109 00000 n
-0000231720 00000 n
-0000221547 00000 n
-0000229921 00000 n
-0000221600 00000 n
-0000229599 00000 n
-0000229723 00000 n
-0000229847 00000 n
-0000229884 00000 n
-0000229556 00000 n
-0000235210 00000 n
-0000229994 00000 n
-0000232303 00000 n
-0000230047 00000 n
-0000231981 00000 n
-0000232105 00000 n
-0000232229 00000 n
-0000232266 00000 n
-0000231938 00000 n
-0000238051 00000 n
-0000232376 00000 n
-0000235793 00000 n
-0000232429 00000 n
-0000235471 00000 n
-0000235595 00000 n
-0000235719 00000 n
-0000235756 00000 n
-0000235428 00000 n
-0000240365 00000 n
-0000235866 00000 n
-0000238634 00000 n
-0000235919 00000 n
-0000238312 00000 n
-0000238436 00000 n
-0000238560 00000 n
-0000238597 00000 n
-0000238269 00000 n
-0000242666 00000 n
-0000238707 00000 n
-0000240948 00000 n
-0000238760 00000 n
-0000240626 00000 n
-0000240750 00000 n
-0000240874 00000 n
-0000240911 00000 n
-0000240583 00000 n
-0000249071 00000 n
-0000241021 00000 n
-0000243249 00000 n
-0000241074 00000 n
-0000242927 00000 n
-0000243051 00000 n
-0000243175 00000 n
-0000243212 00000 n
-0000242884 00000 n
-0000251451 00000 n
-0000243322 00000 n
-0000249654 00000 n
-0000243375 00000 n
-0000249332 00000 n
-0000249456 00000 n
-0000249580 00000 n
-0000249617 00000 n
-0000249289 00000 n
-0000253769 00000 n
-0000249727 00000 n
-0000252034 00000 n
-0000249780 00000 n
-0000251712 00000 n
-0000251836 00000 n
-0000251960 00000 n
-0000251997 00000 n
-0000808171 00000 n
-0000251669 00000 n
-0000263419 00000 n
-0000252107 00000 n
-0000254352 00000 n
-0000252160 00000 n
-0000254030 00000 n
-0000254154 00000 n
-0000254278 00000 n
-0000254315 00000 n
-0000253987 00000 n
-0000269790 00000 n
-0000254425 00000 n
-0000264002 00000 n
-0000254478 00000 n
-0000263680 00000 n
-0000263804 00000 n
-0000263928 00000 n
-0000263965 00000 n
-0000263637 00000 n
-0000272840 00000 n
-0000264087 00000 n
-0000270373 00000 n
-0000264140 00000 n
-0000270051 00000 n
-0000270175 00000 n
-0000270299 00000 n
-0000270336 00000 n
-0000270008 00000 n
-0000275830 00000 n
-0000270446 00000 n
-0000273423 00000 n
-0000270499 00000 n
-0000273101 00000 n
-0000273225 00000 n
-0000273349 00000 n
-0000273386 00000 n
-0000273058 00000 n
-0000278522 00000 n
-0000273496 00000 n
-0000276413 00000 n
-0000273549 00000 n
-0000276091 00000 n
-0000276215 00000 n
-0000276339 00000 n
-0000276376 00000 n
-0000276048 00000 n
-0000288296 00000 n
-0000276486 00000 n
-0000279105 00000 n
-0000276539 00000 n
-0000278783 00000 n
-0000278907 00000 n
-0000279031 00000 n
-0000279068 00000 n
-0000278740 00000 n
-0000298761 00000 n
-0000279178 00000 n
-0000288879 00000 n
-0000279231 00000 n
-0000288557 00000 n
-0000288681 00000 n
-0000288805 00000 n
-0000288842 00000 n
-0000288514 00000 n
-0000308322 00000 n
-0000288964 00000 n
-0000299262 00000 n
-0000289017 00000 n
-0000299014 00000 n
-0000299138 00000 n
-0000298979 00000 n
-0000314670 00000 n
-0000299347 00000 n
-0000308823 00000 n
-0000299400 00000 n
-0000308575 00000 n
-0000308699 00000 n
-0000308540 00000 n
-0000316151 00000 n
-0000308908 00000 n
-0000315171 00000 n
-0000308961 00000 n
-0000314923 00000 n
-0000315047 00000 n
-0000808315 00000 n
-0000314888 00000 n
-0000319947 00000 n
-0000315256 00000 n
-0000316734 00000 n
-0000315309 00000 n
-0000316412 00000 n
-0000316536 00000 n
-0000316660 00000 n
-0000316697 00000 n
-0000316369 00000 n
-0000325448 00000 n
-0000316807 00000 n
-0000320530 00000 n
-0000316860 00000 n
-0000320208 00000 n
-0000320332 00000 n
-0000320456 00000 n
-0000320493 00000 n
-0000320165 00000 n
-0000332341 00000 n
-0000320603 00000 n
-0000326031 00000 n
-0000320656 00000 n
-0000325709 00000 n
-0000325833 00000 n
-0000325957 00000 n
-0000325994 00000 n
-0000325666 00000 n
-0000339441 00000 n
-0000326116 00000 n
-0000332924 00000 n
-0000326169 00000 n
-0000332602 00000 n
-0000332726 00000 n
-0000332850 00000 n
-0000332887 00000 n
-0000332559 00000 n
-0000347147 00000 n
-0000333009 00000 n
-0000340024 00000 n
-0000333062 00000 n
-0000339702 00000 n
-0000339826 00000 n
-0000339950 00000 n
-0000339987 00000 n
-0000339659 00000 n
-0000350623 00000 n
-0000340109 00000 n
-0000347730 00000 n
-0000340162 00000 n
-0000347408 00000 n
-0000347532 00000 n
-0000347656 00000 n
-0000347693 00000 n
-0000347365 00000 n
-0000356920 00000 n
-0000347815 00000 n
-0000351206 00000 n
-0000347868 00000 n
-0000350884 00000 n
-0000351008 00000 n
-0000351132 00000 n
-0000351169 00000 n
-0000350841 00000 n
-0000358336 00000 n
-0000351279 00000 n
-0000357503 00000 n
-0000351332 00000 n
-0000357181 00000 n
-0000357305 00000 n
-0000357429 00000 n
-0000357466 00000 n
-0000357138 00000 n
-0000362128 00000 n
-0000357588 00000 n
-0000358919 00000 n
-0000357641 00000 n
-0000358597 00000 n
-0000358721 00000 n
-0000358845 00000 n
-0000358882 00000 n
-0000358554 00000 n
-0000364236 00000 n
-0000359004 00000 n
-0000362711 00000 n
-0000359057 00000 n
-0000362389 00000 n
-0000362513 00000 n
-0000362637 00000 n
-0000362674 00000 n
-0000808459 00000 n
-0000362346 00000 n
-0000369182 00000 n
-0000362784 00000 n
-0000364819 00000 n
-0000362837 00000 n
-0000364497 00000 n
-0000364621 00000 n
-0000364745 00000 n
-0000364782 00000 n
-0000364454 00000 n
-0000377007 00000 n
-0000364892 00000 n
-0000369765 00000 n
-0000364945 00000 n
-0000369443 00000 n
-0000369567 00000 n
-0000369691 00000 n
-0000369728 00000 n
-0000369400 00000 n
-0000391483 00000 n
-0000369838 00000 n
-0000377590 00000 n
-0000369891 00000 n
-0000377268 00000 n
-0000377392 00000 n
-0000377516 00000 n
-0000377553 00000 n
-0000377225 00000 n
-0000399807 00000 n
-0000377663 00000 n
-0000392066 00000 n
-0000377716 00000 n
-0000391744 00000 n
-0000391868 00000 n
-0000391992 00000 n
-0000392029 00000 n
-0000391701 00000 n
-0000402997 00000 n
-0000392151 00000 n
-0000400390 00000 n
-0000392204 00000 n
-0000400068 00000 n
-0000400192 00000 n
-0000400316 00000 n
-0000400353 00000 n
-0000400025 00000 n
-0000408254 00000 n
-0000400463 00000 n
-0000403580 00000 n
-0000400516 00000 n
-0000403258 00000 n
-0000403382 00000 n
-0000403506 00000 n
-0000403543 00000 n
-0000403215 00000 n
-0000410645 00000 n
-0000403665 00000 n
-0000408837 00000 n
-0000403718 00000 n
-0000408515 00000 n
-0000408639 00000 n
-0000408763 00000 n
-0000408800 00000 n
-0000408472 00000 n
-0000427736 00000 n
-0000408910 00000 n
-0000411228 00000 n
-0000408963 00000 n
-0000410906 00000 n
-0000411030 00000 n
-0000411154 00000 n
-0000411191 00000 n
-0000410863 00000 n
-0000435091 00000 n
-0000411301 00000 n
-0000428319 00000 n
-0000411354 00000 n
-0000427997 00000 n
-0000428121 00000 n
-0000428245 00000 n
-0000428282 00000 n
-0000427954 00000 n
-0000443185 00000 n
-0000428404 00000 n
-0000435674 00000 n
-0000428457 00000 n
-0000435352 00000 n
-0000435476 00000 n
-0000435600 00000 n
-0000435637 00000 n
-0000808603 00000 n
-0000435309 00000 n
-0000445613 00000 n
-0000435747 00000 n
-0000443768 00000 n
-0000435800 00000 n
-0000443446 00000 n
-0000443570 00000 n
-0000443694 00000 n
-0000443731 00000 n
-0000443403 00000 n
-0000457516 00000 n
-0000443853 00000 n
-0000446196 00000 n
-0000443906 00000 n
-0000445874 00000 n
-0000445998 00000 n
-0000446122 00000 n
-0000446159 00000 n
-0000445831 00000 n
-0000461912 00000 n
-0000446269 00000 n
-0000458099 00000 n
-0000446322 00000 n
-0000457777 00000 n
-0000457901 00000 n
-0000458025 00000 n
-0000458062 00000 n
-0000457734 00000 n
-0000463658 00000 n
-0000458184 00000 n
-0000462495 00000 n
-0000458237 00000 n
-0000462173 00000 n
-0000462297 00000 n
-0000462421 00000 n
-0000462458 00000 n
-0000462130 00000 n
-0000466519 00000 n
-0000462580 00000 n
-0000464241 00000 n
-0000462633 00000 n
-0000463919 00000 n
-0000464043 00000 n
-0000464167 00000 n
-0000464204 00000 n
-0000463876 00000 n
-0000475203 00000 n
-0000464314 00000 n
-0000467102 00000 n
-0000464367 00000 n
-0000466780 00000 n
-0000466904 00000 n
-0000467028 00000 n
-0000467065 00000 n
-0000466737 00000 n
-0000490009 00000 n
-0000467187 00000 n
-0000475786 00000 n
-0000467240 00000 n
-0000475464 00000 n
-0000475588 00000 n
-0000475712 00000 n
-0000475749 00000 n
-0000475421 00000 n
-0000503214 00000 n
-0000475859 00000 n
-0000490592 00000 n
-0000475912 00000 n
-0000490270 00000 n
-0000490394 00000 n
-0000490518 00000 n
-0000490555 00000 n
-0000490227 00000 n
-0000506199 00000 n
-0000490677 00000 n
-0000503715 00000 n
-0000490730 00000 n
-0000503467 00000 n
-0000503591 00000 n
-0000503432 00000 n
-0000512373 00000 n
-0000503800 00000 n
-0000506700 00000 n
-0000503853 00000 n
-0000506452 00000 n
-0000506576 00000 n
-0000808747 00000 n
-0000506417 00000 n
-0000519413 00000 n
-0000506785 00000 n
-0000512956 00000 n
-0000506838 00000 n
-0000512634 00000 n
-0000512758 00000 n
-0000512882 00000 n
-0000512919 00000 n
-0000512591 00000 n
-0000522583 00000 n
-0000513029 00000 n
-0000519996 00000 n
-0000513082 00000 n
-0000519674 00000 n
-0000519798 00000 n
-0000519922 00000 n
-0000519959 00000 n
-0000519631 00000 n
-0000526517 00000 n
-0000520069 00000 n
-0000523166 00000 n
-0000520122 00000 n
-0000522844 00000 n
-0000522968 00000 n
-0000523092 00000 n
-0000523129 00000 n
-0000522801 00000 n
-0000527706 00000 n
-0000523239 00000 n
-0000527100 00000 n
-0000523292 00000 n
-0000526778 00000 n
-0000526902 00000 n
-0000527026 00000 n
-0000527063 00000 n
-0000526735 00000 n
-0000529436 00000 n
-0000527173 00000 n
-0000528289 00000 n
-0000527226 00000 n
-0000527967 00000 n
-0000528091 00000 n
-0000528215 00000 n
-0000528252 00000 n
-0000527924 00000 n
-0000531436 00000 n
-0000528362 00000 n
-0000530019 00000 n
-0000528415 00000 n
-0000529697 00000 n
-0000529821 00000 n
-0000529945 00000 n
-0000529982 00000 n
-0000529654 00000 n
-0000548129 00000 n
-0000530092 00000 n
-0000532019 00000 n
-0000530145 00000 n
-0000531697 00000 n
-0000531821 00000 n
-0000531945 00000 n
-0000531982 00000 n
-0000531654 00000 n
-0000559117 00000 n
-0000532092 00000 n
-0000548715 00000 n
-0000532145 00000 n
-0000548392 00000 n
-0000548516 00000 n
-0000548640 00000 n
-0000548677 00000 n
-0000548348 00000 n
-0000562083 00000 n
-0000548800 00000 n
-0000559627 00000 n
-0000548855 00000 n
-0000559376 00000 n
-0000559501 00000 n
-0000559338 00000 n
-0000563943 00000 n
-0000559713 00000 n
-0000562681 00000 n
-0000559768 00000 n
-0000562352 00000 n
-0000562477 00000 n
-0000562603 00000 n
-0000562642 00000 n
-0000808891 00000 n
-0000562306 00000 n
-0000565559 00000 n
-0000562755 00000 n
-0000564542 00000 n
-0000562810 00000 n
-0000564212 00000 n
-0000564338 00000 n
-0000564464 00000 n
-0000564503 00000 n
-0000564166 00000 n
-0000569170 00000 n
-0000564616 00000 n
-0000566158 00000 n
-0000564671 00000 n
-0000565828 00000 n
-0000565954 00000 n
-0000566080 00000 n
-0000566119 00000 n
-0000565782 00000 n
-0000571606 00000 n
-0000566232 00000 n
-0000569769 00000 n
-0000566287 00000 n
-0000569439 00000 n
-0000569565 00000 n
-0000569691 00000 n
-0000569730 00000 n
-0000569393 00000 n
-0000579773 00000 n
-0000569843 00000 n
-0000572205 00000 n
-0000569898 00000 n
-0000571875 00000 n
-0000572001 00000 n
-0000572127 00000 n
-0000572166 00000 n
-0000571829 00000 n
-0000583388 00000 n
-0000572279 00000 n
-0000580372 00000 n
-0000572334 00000 n
-0000580042 00000 n
-0000580168 00000 n
-0000580294 00000 n
-0000580333 00000 n
-0000579996 00000 n
-0000587821 00000 n
-0000580458 00000 n
-0000583987 00000 n
-0000580513 00000 n
-0000583657 00000 n
-0000583783 00000 n
-0000583909 00000 n
-0000583948 00000 n
-0000583611 00000 n
-0000589088 00000 n
-0000584073 00000 n
-0000588420 00000 n
-0000584128 00000 n
-0000588090 00000 n
-0000588216 00000 n
-0000588342 00000 n
-0000588381 00000 n
-0000588044 00000 n
-0000591874 00000 n
-0000588494 00000 n
-0000589687 00000 n
-0000588549 00000 n
-0000589357 00000 n
-0000589483 00000 n
-0000589609 00000 n
-0000589648 00000 n
-0000589311 00000 n
-0000594395 00000 n
-0000589761 00000 n
-0000592473 00000 n
-0000589816 00000 n
-0000592143 00000 n
-0000592269 00000 n
-0000592395 00000 n
-0000592434 00000 n
-0000592097 00000 n
-0000602802 00000 n
-0000592547 00000 n
-0000594994 00000 n
-0000592602 00000 n
-0000594664 00000 n
-0000594790 00000 n
-0000594916 00000 n
-0000594955 00000 n
-0000809046 00000 n
-0000594618 00000 n
-0000612452 00000 n
-0000595068 00000 n
-0000603401 00000 n
-0000595123 00000 n
-0000603071 00000 n
-0000603197 00000 n
-0000603323 00000 n
-0000603362 00000 n
-0000603025 00000 n
-0000622321 00000 n
-0000603475 00000 n
-0000613051 00000 n
-0000603530 00000 n
-0000612721 00000 n
-0000612847 00000 n
-0000612973 00000 n
-0000613012 00000 n
-0000612675 00000 n
-0000632385 00000 n
-0000613137 00000 n
-0000622834 00000 n
-0000613192 00000 n
-0000622582 00000 n
-0000622708 00000 n
-0000622544 00000 n
-0000640076 00000 n
-0000622920 00000 n
-0000632898 00000 n
-0000622975 00000 n
-0000632646 00000 n
-0000632772 00000 n
-0000632608 00000 n
-0000650380 00000 n
-0000632984 00000 n
-0000640589 00000 n
-0000633039 00000 n
-0000640337 00000 n
-0000640463 00000 n
-0000640299 00000 n
-0000669222 00000 n
-0000640675 00000 n
-0000650979 00000 n
-0000640730 00000 n
-0000650649 00000 n
-0000650775 00000 n
-0000650901 00000 n
-0000650940 00000 n
-0000650603 00000 n
-0000672927 00000 n
-0000651053 00000 n
-0000669821 00000 n
-0000651108 00000 n
-0000669491 00000 n
-0000669617 00000 n
-0000669743 00000 n
-0000669782 00000 n
-0000669445 00000 n
-0000674361 00000 n
-0000669895 00000 n
-0000673526 00000 n
-0000669950 00000 n
-0000673196 00000 n
-0000673322 00000 n
-0000673448 00000 n
-0000673487 00000 n
-0000673150 00000 n
-0000677411 00000 n
-0000673600 00000 n
-0000674960 00000 n
-0000673655 00000 n
+0000197060 00000 n
+0000197184 00000 n
+0000809060 00000 n
+0000197025 00000 n
+0000219628 00000 n
+0000197381 00000 n
+0000218913 00000 n
+0000197434 00000 n
+0000218665 00000 n
+0000218789 00000 n
+0000218630 00000 n
+0000221906 00000 n
+0000218986 00000 n
+0000220129 00000 n
+0000219039 00000 n
+0000219881 00000 n
+0000220005 00000 n
+0000219846 00000 n
+0000230353 00000 n
+0000220202 00000 n
+0000222489 00000 n
+0000220255 00000 n
+0000222167 00000 n
+0000222291 00000 n
+0000222415 00000 n
+0000222452 00000 n
+0000222124 00000 n
+0000232735 00000 n
+0000222562 00000 n
+0000230936 00000 n
+0000222615 00000 n
+0000230614 00000 n
+0000230738 00000 n
+0000230862 00000 n
+0000230899 00000 n
+0000230571 00000 n
+0000236225 00000 n
+0000231009 00000 n
+0000233318 00000 n
+0000231062 00000 n
+0000232996 00000 n
+0000233120 00000 n
+0000233244 00000 n
+0000233281 00000 n
+0000232953 00000 n
+0000239066 00000 n
+0000233391 00000 n
+0000236808 00000 n
+0000233444 00000 n
+0000236486 00000 n
+0000236610 00000 n
+0000236734 00000 n
+0000236771 00000 n
+0000236443 00000 n
+0000241380 00000 n
+0000236881 00000 n
+0000239649 00000 n
+0000236934 00000 n
+0000239327 00000 n
+0000239451 00000 n
+0000239575 00000 n
+0000239612 00000 n
+0000239284 00000 n
+0000243681 00000 n
+0000239722 00000 n
+0000241963 00000 n
+0000239775 00000 n
+0000241641 00000 n
+0000241765 00000 n
+0000241889 00000 n
+0000241926 00000 n
+0000241598 00000 n
+0000250086 00000 n
+0000242036 00000 n
+0000244264 00000 n
+0000242089 00000 n
+0000243942 00000 n
+0000244066 00000 n
+0000244190 00000 n
+0000244227 00000 n
+0000243899 00000 n
+0000252466 00000 n
+0000244337 00000 n
+0000250669 00000 n
+0000244390 00000 n
+0000250347 00000 n
+0000250471 00000 n
+0000250595 00000 n
+0000250632 00000 n
+0000809204 00000 n
+0000250304 00000 n
+0000254784 00000 n
+0000250742 00000 n
+0000253049 00000 n
+0000250795 00000 n
+0000252727 00000 n
+0000252851 00000 n
+0000252975 00000 n
+0000253012 00000 n
+0000252684 00000 n
+0000264434 00000 n
+0000253122 00000 n
+0000255367 00000 n
+0000253175 00000 n
+0000255045 00000 n
+0000255169 00000 n
+0000255293 00000 n
+0000255330 00000 n
+0000255002 00000 n
+0000270805 00000 n
+0000255440 00000 n
+0000265017 00000 n
+0000255493 00000 n
+0000264695 00000 n
+0000264819 00000 n
+0000264943 00000 n
+0000264980 00000 n
+0000264652 00000 n
+0000273855 00000 n
+0000265102 00000 n
+0000271388 00000 n
+0000265155 00000 n
+0000271066 00000 n
+0000271190 00000 n
+0000271314 00000 n
+0000271351 00000 n
+0000271023 00000 n
+0000276845 00000 n
+0000271461 00000 n
+0000274438 00000 n
+0000271514 00000 n
+0000274116 00000 n
+0000274240 00000 n
+0000274364 00000 n
+0000274401 00000 n
+0000274073 00000 n
+0000279537 00000 n
+0000274511 00000 n
+0000277428 00000 n
+0000274564 00000 n
+0000277106 00000 n
+0000277230 00000 n
+0000277354 00000 n
+0000277391 00000 n
+0000277063 00000 n
+0000289311 00000 n
+0000277501 00000 n
+0000280120 00000 n
+0000277554 00000 n
+0000279798 00000 n
+0000279922 00000 n
+0000280046 00000 n
+0000280083 00000 n
+0000279755 00000 n
+0000299776 00000 n
+0000280193 00000 n
+0000289894 00000 n
+0000280246 00000 n
+0000289572 00000 n
+0000289696 00000 n
+0000289820 00000 n
+0000289857 00000 n
+0000289529 00000 n
+0000309337 00000 n
+0000289979 00000 n
+0000300277 00000 n
+0000290032 00000 n
+0000300029 00000 n
+0000300153 00000 n
+0000299994 00000 n
+0000315685 00000 n
+0000300362 00000 n
+0000309838 00000 n
+0000300415 00000 n
+0000309590 00000 n
+0000309714 00000 n
+0000809348 00000 n
+0000309555 00000 n
+0000317166 00000 n
+0000309923 00000 n
+0000316186 00000 n
+0000309976 00000 n
+0000315938 00000 n
+0000316062 00000 n
+0000315903 00000 n
+0000320962 00000 n
+0000316271 00000 n
+0000317749 00000 n
+0000316324 00000 n
+0000317427 00000 n
+0000317551 00000 n
+0000317675 00000 n
+0000317712 00000 n
+0000317384 00000 n
+0000326463 00000 n
+0000317822 00000 n
+0000321545 00000 n
+0000317875 00000 n
+0000321223 00000 n
+0000321347 00000 n
+0000321471 00000 n
+0000321508 00000 n
+0000321180 00000 n
+0000333356 00000 n
+0000321618 00000 n
+0000327046 00000 n
+0000321671 00000 n
+0000326724 00000 n
+0000326848 00000 n
+0000326972 00000 n
+0000327009 00000 n
+0000326681 00000 n
+0000340456 00000 n
+0000327131 00000 n
+0000333939 00000 n
+0000327184 00000 n
+0000333617 00000 n
+0000333741 00000 n
+0000333865 00000 n
+0000333902 00000 n
+0000333574 00000 n
+0000348162 00000 n
+0000334024 00000 n
+0000341039 00000 n
+0000334077 00000 n
+0000340717 00000 n
+0000340841 00000 n
+0000340965 00000 n
+0000341002 00000 n
+0000340674 00000 n
+0000351638 00000 n
+0000341124 00000 n
+0000348745 00000 n
+0000341177 00000 n
+0000348423 00000 n
+0000348547 00000 n
+0000348671 00000 n
+0000348708 00000 n
+0000348380 00000 n
+0000357935 00000 n
+0000348830 00000 n
+0000352221 00000 n
+0000348883 00000 n
+0000351899 00000 n
+0000352023 00000 n
+0000352147 00000 n
+0000352184 00000 n
+0000351856 00000 n
+0000359351 00000 n
+0000352294 00000 n
+0000358518 00000 n
+0000352347 00000 n
+0000358196 00000 n
+0000358320 00000 n
+0000358444 00000 n
+0000358481 00000 n
+0000358153 00000 n
+0000363143 00000 n
+0000358603 00000 n
+0000359934 00000 n
+0000358656 00000 n
+0000359612 00000 n
+0000359736 00000 n
+0000359860 00000 n
+0000359897 00000 n
+0000809492 00000 n
+0000359569 00000 n
+0000365251 00000 n
+0000360019 00000 n
+0000363726 00000 n
+0000360072 00000 n
+0000363404 00000 n
+0000363528 00000 n
+0000363652 00000 n
+0000363689 00000 n
+0000363361 00000 n
+0000370197 00000 n
+0000363799 00000 n
+0000365834 00000 n
+0000363852 00000 n
+0000365512 00000 n
+0000365636 00000 n
+0000365760 00000 n
+0000365797 00000 n
+0000365469 00000 n
+0000378022 00000 n
+0000365907 00000 n
+0000370780 00000 n
+0000365960 00000 n
+0000370458 00000 n
+0000370582 00000 n
+0000370706 00000 n
+0000370743 00000 n
+0000370415 00000 n
+0000392498 00000 n
+0000370853 00000 n
+0000378605 00000 n
+0000370906 00000 n
+0000378283 00000 n
+0000378407 00000 n
+0000378531 00000 n
+0000378568 00000 n
+0000378240 00000 n
+0000400822 00000 n
+0000378678 00000 n
+0000393081 00000 n
+0000378731 00000 n
+0000392759 00000 n
+0000392883 00000 n
+0000393007 00000 n
+0000393044 00000 n
+0000392716 00000 n
+0000404012 00000 n
+0000393166 00000 n
+0000401405 00000 n
+0000393219 00000 n
+0000401083 00000 n
+0000401207 00000 n
+0000401331 00000 n
+0000401368 00000 n
+0000401040 00000 n
+0000409269 00000 n
+0000401478 00000 n
+0000404595 00000 n
+0000401531 00000 n
+0000404273 00000 n
+0000404397 00000 n
+0000404521 00000 n
+0000404558 00000 n
+0000404230 00000 n
+0000411660 00000 n
+0000404680 00000 n
+0000409852 00000 n
+0000404733 00000 n
+0000409530 00000 n
+0000409654 00000 n
+0000409778 00000 n
+0000409815 00000 n
+0000409487 00000 n
+0000428751 00000 n
+0000409925 00000 n
+0000412243 00000 n
+0000409978 00000 n
+0000411921 00000 n
+0000412045 00000 n
+0000412169 00000 n
+0000412206 00000 n
+0000411878 00000 n
+0000436106 00000 n
+0000412316 00000 n
+0000429334 00000 n
+0000412369 00000 n
+0000429012 00000 n
+0000429136 00000 n
+0000429260 00000 n
+0000429297 00000 n
+0000809636 00000 n
+0000428969 00000 n
+0000444200 00000 n
+0000429419 00000 n
+0000436689 00000 n
+0000429472 00000 n
+0000436367 00000 n
+0000436491 00000 n
+0000436615 00000 n
+0000436652 00000 n
+0000436324 00000 n
+0000446628 00000 n
+0000436762 00000 n
+0000444783 00000 n
+0000436815 00000 n
+0000444461 00000 n
+0000444585 00000 n
+0000444709 00000 n
+0000444746 00000 n
+0000444418 00000 n
+0000458531 00000 n
+0000444868 00000 n
+0000447211 00000 n
+0000444921 00000 n
+0000446889 00000 n
+0000447013 00000 n
+0000447137 00000 n
+0000447174 00000 n
+0000446846 00000 n
+0000462927 00000 n
+0000447284 00000 n
+0000459114 00000 n
+0000447337 00000 n
+0000458792 00000 n
+0000458916 00000 n
+0000459040 00000 n
+0000459077 00000 n
+0000458749 00000 n
+0000464673 00000 n
+0000459199 00000 n
+0000463510 00000 n
+0000459252 00000 n
+0000463188 00000 n
+0000463312 00000 n
+0000463436 00000 n
+0000463473 00000 n
+0000463145 00000 n
+0000467534 00000 n
+0000463595 00000 n
+0000465256 00000 n
+0000463648 00000 n
+0000464934 00000 n
+0000465058 00000 n
+0000465182 00000 n
+0000465219 00000 n
+0000464891 00000 n
+0000476218 00000 n
+0000465329 00000 n
+0000468117 00000 n
+0000465382 00000 n
+0000467795 00000 n
+0000467919 00000 n
+0000468043 00000 n
+0000468080 00000 n
+0000467752 00000 n
+0000491024 00000 n
+0000468202 00000 n
+0000476801 00000 n
+0000468255 00000 n
+0000476479 00000 n
+0000476603 00000 n
+0000476727 00000 n
+0000476764 00000 n
+0000476436 00000 n
+0000504229 00000 n
+0000476874 00000 n
+0000491607 00000 n
+0000476927 00000 n
+0000491285 00000 n
+0000491409 00000 n
+0000491533 00000 n
+0000491570 00000 n
+0000491242 00000 n
+0000507214 00000 n
+0000491692 00000 n
+0000504730 00000 n
+0000491745 00000 n
+0000504482 00000 n
+0000504606 00000 n
+0000809780 00000 n
+0000504447 00000 n
+0000513388 00000 n
+0000504815 00000 n
+0000507715 00000 n
+0000504868 00000 n
+0000507467 00000 n
+0000507591 00000 n
+0000507432 00000 n
+0000520428 00000 n
+0000507800 00000 n
+0000513971 00000 n
+0000507853 00000 n
+0000513649 00000 n
+0000513773 00000 n
+0000513897 00000 n
+0000513934 00000 n
+0000513606 00000 n
+0000523598 00000 n
+0000514044 00000 n
+0000521011 00000 n
+0000514097 00000 n
+0000520689 00000 n
+0000520813 00000 n
+0000520937 00000 n
+0000520974 00000 n
+0000520646 00000 n
+0000527532 00000 n
+0000521084 00000 n
+0000524181 00000 n
+0000521137 00000 n
+0000523859 00000 n
+0000523983 00000 n
+0000524107 00000 n
+0000524144 00000 n
+0000523816 00000 n
+0000528721 00000 n
+0000524254 00000 n
+0000528115 00000 n
+0000524307 00000 n
+0000527793 00000 n
+0000527917 00000 n
+0000528041 00000 n
+0000528078 00000 n
+0000527750 00000 n
+0000530451 00000 n
+0000528188 00000 n
+0000529304 00000 n
+0000528241 00000 n
+0000528982 00000 n
+0000529106 00000 n
+0000529230 00000 n
+0000529267 00000 n
+0000528939 00000 n
+0000532451 00000 n
+0000529377 00000 n
+0000531034 00000 n
+0000529430 00000 n
+0000530712 00000 n
+0000530836 00000 n
+0000530960 00000 n
+0000530997 00000 n
+0000530669 00000 n
+0000549147 00000 n
+0000531107 00000 n
+0000533034 00000 n
+0000531160 00000 n
+0000532712 00000 n
+0000532836 00000 n
+0000532960 00000 n
+0000532997 00000 n
+0000532669 00000 n
+0000560144 00000 n
+0000533107 00000 n
+0000549741 00000 n
+0000533162 00000 n
+0000549414 00000 n
+0000549539 00000 n
+0000549665 00000 n
+0000549703 00000 n
+0000549368 00000 n
+0000563112 00000 n
+0000549827 00000 n
+0000560656 00000 n
+0000549882 00000 n
+0000560405 00000 n
+0000560530 00000 n
+0000809924 00000 n
+0000560367 00000 n
+0000564973 00000 n
+0000560742 00000 n
+0000563711 00000 n
+0000560797 00000 n
+0000563381 00000 n
+0000563507 00000 n
+0000563633 00000 n
+0000563672 00000 n
+0000563335 00000 n
+0000566589 00000 n
+0000563785 00000 n
+0000565572 00000 n
+0000563840 00000 n
+0000565242 00000 n
+0000565368 00000 n
+0000565494 00000 n
+0000565533 00000 n
+0000565196 00000 n
+0000570200 00000 n
+0000565646 00000 n
+0000567188 00000 n
+0000565701 00000 n
+0000566858 00000 n
+0000566984 00000 n
+0000567110 00000 n
+0000567149 00000 n
+0000566812 00000 n
+0000572636 00000 n
+0000567262 00000 n
+0000570799 00000 n
+0000567317 00000 n
+0000570469 00000 n
+0000570595 00000 n
+0000570721 00000 n
+0000570760 00000 n
+0000570423 00000 n
+0000580803 00000 n
+0000570873 00000 n
+0000573235 00000 n
+0000570928 00000 n
+0000572905 00000 n
+0000573031 00000 n
+0000573157 00000 n
+0000573196 00000 n
+0000572859 00000 n
+0000584418 00000 n
+0000573309 00000 n
+0000581402 00000 n
+0000573364 00000 n
+0000581072 00000 n
+0000581198 00000 n
+0000581324 00000 n
+0000581363 00000 n
+0000581026 00000 n
+0000588851 00000 n
+0000581488 00000 n
+0000585017 00000 n
+0000581543 00000 n
+0000584687 00000 n
+0000584813 00000 n
+0000584939 00000 n
+0000584978 00000 n
+0000584641 00000 n
+0000590118 00000 n
+0000585103 00000 n
+0000589450 00000 n
+0000585158 00000 n
+0000589120 00000 n
+0000589246 00000 n
+0000589372 00000 n
+0000589411 00000 n
+0000589074 00000 n
+0000592904 00000 n
+0000589524 00000 n
+0000590717 00000 n
+0000589579 00000 n
+0000590387 00000 n
+0000590513 00000 n
+0000590639 00000 n
+0000590678 00000 n
+0000590341 00000 n
+0000595425 00000 n
+0000590791 00000 n
+0000593503 00000 n
+0000590846 00000 n
+0000593173 00000 n
+0000593299 00000 n
+0000593425 00000 n
+0000593464 00000 n
+0000810079 00000 n
+0000593127 00000 n
+0000603832 00000 n
+0000593577 00000 n
+0000596024 00000 n
+0000593632 00000 n
+0000595694 00000 n
+0000595820 00000 n
+0000595946 00000 n
+0000595985 00000 n
+0000595648 00000 n
+0000613482 00000 n
+0000596098 00000 n
+0000604431 00000 n
+0000596153 00000 n
+0000604101 00000 n
+0000604227 00000 n
+0000604353 00000 n
+0000604392 00000 n
+0000604055 00000 n
+0000623351 00000 n
+0000604505 00000 n
+0000614081 00000 n
+0000604560 00000 n
+0000613751 00000 n
+0000613877 00000 n
+0000614003 00000 n
+0000614042 00000 n
+0000613705 00000 n
+0000633415 00000 n
+0000614167 00000 n
+0000623864 00000 n
+0000614222 00000 n
+0000623612 00000 n
+0000623738 00000 n
+0000623574 00000 n
+0000641106 00000 n
+0000623950 00000 n
+0000633928 00000 n
+0000624005 00000 n
+0000633676 00000 n
+0000633802 00000 n
+0000633638 00000 n
+0000651410 00000 n
+0000634014 00000 n
+0000641619 00000 n
+0000634069 00000 n
+0000641367 00000 n
+0000641493 00000 n
+0000641329 00000 n
+0000670252 00000 n
+0000641705 00000 n
+0000652009 00000 n
+0000641760 00000 n
+0000651679 00000 n
+0000651805 00000 n
+0000651931 00000 n
+0000651970 00000 n
+0000651633 00000 n
+0000673957 00000 n
+0000652083 00000 n
+0000670851 00000 n
+0000652138 00000 n
+0000670521 00000 n
+0000670647 00000 n
+0000670773 00000 n
+0000670812 00000 n
+0000670475 00000 n
+0000675394 00000 n
+0000670925 00000 n
+0000674556 00000 n
+0000670980 00000 n
+0000674226 00000 n
+0000674352 00000 n
+0000674478 00000 n
+0000674517 00000 n
+0000674180 00000 n
+0000678444 00000 n
0000674630 00000 n
-0000674756 00000 n
-0000674882 00000 n
-0000674921 00000 n
-0000674584 00000 n
-0000681222 00000 n
-0000675034 00000 n
-0000678010 00000 n
-0000675089 00000 n
-0000677680 00000 n
-0000677806 00000 n
-0000677932 00000 n
-0000677971 00000 n
-0000809201 00000 n
-0000677634 00000 n
-0000684527 00000 n
-0000678084 00000 n
-0000681821 00000 n
-0000678139 00000 n
-0000681491 00000 n
-0000681617 00000 n
-0000681743 00000 n
-0000681782 00000 n
-0000681445 00000 n
-0000687237 00000 n
-0000681907 00000 n
-0000685126 00000 n
-0000681962 00000 n
-0000684796 00000 n
-0000684922 00000 n
-0000685048 00000 n
-0000685087 00000 n
-0000684750 00000 n
-0000694243 00000 n
-0000685212 00000 n
-0000687836 00000 n
-0000685267 00000 n
-0000687506 00000 n
-0000687632 00000 n
-0000687758 00000 n
-0000687797 00000 n
-0000687460 00000 n
-0000702629 00000 n
-0000687910 00000 n
-0000694842 00000 n
-0000687965 00000 n
-0000694512 00000 n
-0000694638 00000 n
-0000694764 00000 n
-0000694803 00000 n
-0000694466 00000 n
-0000704843 00000 n
-0000694928 00000 n
-0000703228 00000 n
-0000694983 00000 n
-0000702898 00000 n
-0000703024 00000 n
-0000703150 00000 n
-0000703189 00000 n
-0000702852 00000 n
-0000714809 00000 n
-0000703314 00000 n
-0000705442 00000 n
-0000703369 00000 n
-0000705112 00000 n
-0000705238 00000 n
-0000705364 00000 n
-0000705403 00000 n
-0000705066 00000 n
-0000720709 00000 n
-0000705516 00000 n
-0000715408 00000 n
-0000705571 00000 n
-0000715078 00000 n
-0000715204 00000 n
-0000715330 00000 n
-0000715369 00000 n
-0000715032 00000 n
-0000733550 00000 n
-0000715494 00000 n
-0000721308 00000 n
-0000715549 00000 n
-0000720978 00000 n
-0000721104 00000 n
-0000721230 00000 n
-0000721269 00000 n
-0000720932 00000 n
-0000753461 00000 n
-0000721382 00000 n
-0000734149 00000 n
-0000721437 00000 n
-0000733819 00000 n
-0000733945 00000 n
-0000734071 00000 n
-0000734110 00000 n
-0000733773 00000 n
-0000756922 00000 n
-0000734235 00000 n
-0000753974 00000 n
-0000734290 00000 n
-0000753722 00000 n
-0000753848 00000 n
-0000809356 00000 n
-0000753684 00000 n
-0000759511 00000 n
-0000754060 00000 n
-0000757521 00000 n
-0000754115 00000 n
-0000757191 00000 n
-0000757317 00000 n
-0000757443 00000 n
-0000757482 00000 n
-0000757145 00000 n
-0000761772 00000 n
-0000757595 00000 n
-0000760110 00000 n
-0000757650 00000 n
-0000759780 00000 n
-0000759906 00000 n
-0000760032 00000 n
-0000760071 00000 n
-0000759734 00000 n
-0000762245 00000 n
-0000760184 00000 n
-0000762041 00000 n
-0000762167 00000 n
-0000762206 00000 n
-0000761995 00000 n
-0000762319 00000 n
-0000781273 00000 n
-0000764771 00000 n
-0000764928 00000 n
-0000765108 00000 n
-0000765280 00000 n
-0000765444 00000 n
-0000765604 00000 n
-0000765772 00000 n
-0000765940 00000 n
-0000766112 00000 n
-0000766276 00000 n
-0000766457 00000 n
-0000766634 00000 n
-0000766807 00000 n
-0000766988 00000 n
-0000767165 00000 n
-0000767338 00000 n
-0000767519 00000 n
-0000767700 00000 n
-0000767885 00000 n
-0000768054 00000 n
-0000768207 00000 n
-0000768388 00000 n
-0000768561 00000 n
-0000768746 00000 n
-0000768911 00000 n
-0000769096 00000 n
-0000769265 00000 n
-0000769430 00000 n
-0000769595 00000 n
-0000769760 00000 n
-0000769949 00000 n
-0000770110 00000 n
-0000770275 00000 n
-0000770436 00000 n
-0000770625 00000 n
-0000770806 00000 n
-0000770963 00000 n
-0000771116 00000 n
-0000771281 00000 n
-0000771458 00000 n
-0000771627 00000 n
-0000771788 00000 n
-0000771965 00000 n
-0000772118 00000 n
-0000772275 00000 n
-0000772432 00000 n
-0000772597 00000 n
-0000772766 00000 n
-0000772927 00000 n
-0000773092 00000 n
-0000773249 00000 n
-0000773414 00000 n
-0000773599 00000 n
-0000773760 00000 n
-0000773933 00000 n
-0000774098 00000 n
-0000774267 00000 n
-0000774428 00000 n
-0000774593 00000 n
-0000774754 00000 n
-0000774919 00000 n
-0000775076 00000 n
-0000775253 00000 n
-0000775414 00000 n
-0000775583 00000 n
-0000775764 00000 n
-0000775933 00000 n
-0000776110 00000 n
-0000776279 00000 n
-0000776432 00000 n
-0000776633 00000 n
-0000776830 00000 n
-0000777015 00000 n
-0000777188 00000 n
-0000777357 00000 n
-0000777538 00000 n
-0000777711 00000 n
-0000777880 00000 n
-0000778049 00000 n
-0000778222 00000 n
-0000778403 00000 n
-0000778572 00000 n
-0000778733 00000 n
-0000778918 00000 n
-0000779087 00000 n
-0000779256 00000 n
-0000779421 00000 n
-0000779590 00000 n
-0000779763 00000 n
-0000779948 00000 n
-0000780125 00000 n
-0000780278 00000 n
-0000780455 00000 n
-0000780640 00000 n
-0000780793 00000 n
-0000780962 00000 n
-0000781123 00000 n
-0000781355 00000 n
-0000781649 00000 n
-0000781724 00000 n
-0000788445 00000 n
-0000788668 00000 n
-0000790272 00000 n
-0000790462 00000 n
-0000790718 00000 n
-0000790793 00000 n
-0000795841 00000 n
-0000796064 00000 n
-0000797479 00000 n
-0000797669 00000 n
-0000797994 00000 n
-0000798069 00000 n
-0000805604 00000 n
-0000805826 00000 n
-0000807550 00000 n
-0000809456 00000 n
-0000809604 00000 n
-0000809687 00000 n
-0000809755 00000 n
-0000810360 00000 n
-0000810957 00000 n
-0000811583 00000 n
-0000812227 00000 n
-0000812796 00000 n
-0000813473 00000 n
-0000813555 00000 n
-0000813675 00000 n
-0000813713 00000 n
-0000813896 00000 n
+0000675993 00000 n
+0000674685 00000 n
+0000675663 00000 n
+0000675789 00000 n
+0000675915 00000 n
+0000675954 00000 n
+0000810234 00000 n
+0000675617 00000 n
+0000682255 00000 n
+0000676067 00000 n
+0000679043 00000 n
+0000676122 00000 n
+0000678713 00000 n
+0000678839 00000 n
+0000678965 00000 n
+0000679004 00000 n
+0000678667 00000 n
+0000685560 00000 n
+0000679117 00000 n
+0000682854 00000 n
+0000679172 00000 n
+0000682524 00000 n
+0000682650 00000 n
+0000682776 00000 n
+0000682815 00000 n
+0000682478 00000 n
+0000688270 00000 n
+0000682940 00000 n
+0000686159 00000 n
+0000682995 00000 n
+0000685829 00000 n
+0000685955 00000 n
+0000686081 00000 n
+0000686120 00000 n
+0000685783 00000 n
+0000695276 00000 n
+0000686245 00000 n
+0000688869 00000 n
+0000686300 00000 n
+0000688539 00000 n
+0000688665 00000 n
+0000688791 00000 n
+0000688830 00000 n
+0000688493 00000 n
+0000703662 00000 n
+0000688943 00000 n
+0000695875 00000 n
+0000688998 00000 n
+0000695545 00000 n
+0000695671 00000 n
+0000695797 00000 n
+0000695836 00000 n
+0000695499 00000 n
+0000705876 00000 n
+0000695961 00000 n
+0000704261 00000 n
+0000696016 00000 n
+0000703931 00000 n
+0000704057 00000 n
+0000704183 00000 n
+0000704222 00000 n
+0000703885 00000 n
+0000715842 00000 n
+0000704347 00000 n
+0000706475 00000 n
+0000704402 00000 n
+0000706145 00000 n
+0000706271 00000 n
+0000706397 00000 n
+0000706436 00000 n
+0000706099 00000 n
+0000721742 00000 n
+0000706549 00000 n
+0000716441 00000 n
+0000706604 00000 n
+0000716111 00000 n
+0000716237 00000 n
+0000716363 00000 n
+0000716402 00000 n
+0000716065 00000 n
+0000734583 00000 n
+0000716527 00000 n
+0000722341 00000 n
+0000716582 00000 n
+0000722011 00000 n
+0000722137 00000 n
+0000722263 00000 n
+0000722302 00000 n
+0000721965 00000 n
+0000754494 00000 n
+0000722415 00000 n
+0000735182 00000 n
+0000722470 00000 n
+0000734852 00000 n
+0000734978 00000 n
+0000735104 00000 n
+0000735143 00000 n
+0000810389 00000 n
+0000734806 00000 n
+0000757955 00000 n
+0000735268 00000 n
+0000755007 00000 n
+0000735323 00000 n
+0000754755 00000 n
+0000754881 00000 n
+0000754717 00000 n
+0000760544 00000 n
+0000755093 00000 n
+0000758554 00000 n
+0000755148 00000 n
+0000758224 00000 n
+0000758350 00000 n
+0000758476 00000 n
+0000758515 00000 n
+0000758178 00000 n
+0000762805 00000 n
+0000758628 00000 n
+0000761143 00000 n
+0000758683 00000 n
+0000760813 00000 n
+0000760939 00000 n
+0000761065 00000 n
+0000761104 00000 n
+0000760767 00000 n
+0000763278 00000 n
+0000761217 00000 n
+0000763074 00000 n
+0000763200 00000 n
+0000763239 00000 n
+0000763028 00000 n
+0000763352 00000 n
+0000782306 00000 n
+0000765804 00000 n
+0000765961 00000 n
+0000766141 00000 n
+0000766313 00000 n
+0000766477 00000 n
+0000766637 00000 n
+0000766805 00000 n
+0000766973 00000 n
+0000767145 00000 n
+0000767309 00000 n
+0000767490 00000 n
+0000767667 00000 n
+0000767840 00000 n
+0000768021 00000 n
+0000768198 00000 n
+0000768371 00000 n
+0000768552 00000 n
+0000768733 00000 n
+0000768918 00000 n
+0000769087 00000 n
+0000769240 00000 n
+0000769421 00000 n
+0000769594 00000 n
+0000769779 00000 n
+0000769944 00000 n
+0000770129 00000 n
+0000770298 00000 n
+0000770463 00000 n
+0000770628 00000 n
+0000770793 00000 n
+0000770982 00000 n
+0000771143 00000 n
+0000771308 00000 n
+0000771469 00000 n
+0000771658 00000 n
+0000771839 00000 n
+0000771996 00000 n
+0000772149 00000 n
+0000772314 00000 n
+0000772491 00000 n
+0000772660 00000 n
+0000772821 00000 n
+0000772998 00000 n
+0000773151 00000 n
+0000773308 00000 n
+0000773465 00000 n
+0000773630 00000 n
+0000773799 00000 n
+0000773960 00000 n
+0000774125 00000 n
+0000774282 00000 n
+0000774447 00000 n
+0000774632 00000 n
+0000774793 00000 n
+0000774966 00000 n
+0000775131 00000 n
+0000775300 00000 n
+0000775461 00000 n
+0000775626 00000 n
+0000775787 00000 n
+0000775952 00000 n
+0000776109 00000 n
+0000776286 00000 n
+0000776447 00000 n
+0000776616 00000 n
+0000776797 00000 n
+0000776966 00000 n
+0000777143 00000 n
+0000777312 00000 n
+0000777465 00000 n
+0000777666 00000 n
+0000777863 00000 n
+0000778048 00000 n
+0000778221 00000 n
+0000778390 00000 n
+0000778571 00000 n
+0000778744 00000 n
+0000778913 00000 n
+0000779082 00000 n
+0000779255 00000 n
+0000779436 00000 n
+0000779605 00000 n
+0000779766 00000 n
+0000779951 00000 n
+0000780120 00000 n
+0000780289 00000 n
+0000780454 00000 n
+0000780623 00000 n
+0000780796 00000 n
+0000780981 00000 n
+0000781158 00000 n
+0000781311 00000 n
+0000781488 00000 n
+0000781673 00000 n
+0000781826 00000 n
+0000781995 00000 n
+0000782156 00000 n
+0000782388 00000 n
+0000782682 00000 n
+0000782757 00000 n
+0000789478 00000 n
+0000789701 00000 n
+0000791305 00000 n
+0000791495 00000 n
+0000791751 00000 n
+0000791826 00000 n
+0000796874 00000 n
+0000797097 00000 n
+0000798512 00000 n
+0000798702 00000 n
+0000799027 00000 n
+0000799102 00000 n
+0000806637 00000 n
+0000806859 00000 n
+0000808583 00000 n
+0000810498 00000 n
+0000810646 00000 n
+0000810729 00000 n
+0000810797 00000 n
+0000811402 00000 n
+0000811999 00000 n
+0000812625 00000 n
+0000813269 00000 n
+0000813838 00000 n
+0000814516 00000 n
+0000814598 00000 n
+0000814718 00000 n
+0000814756 00000 n
+0000814939 00000 n
trailer
-<</Size 1439/Root 1437 0 R/Info 1438 0 R/ID[<AC8114B72A0BCC8B10EEFDA8DD3B9878> <AC8114B72A0BCC8B10EEFDA8DD3B9878>]>>
+<</Size 1446/Root 1444 0 R/Info 1445 0 R/ID[<447CF4D660694BFF5ABDE13835426CBA> <447CF4D660694BFF5ABDE13835426CBA>]>>
startxref
-814781
+815824
%%EOF
diff --git a/tex/context/base/strc-ref.mkvi b/tex/context/base/strc-ref.mkvi
index 414dcbafe..581c1333e 100644
--- a/tex/context/base/strc-ref.mkvi
+++ b/tex/context/base/strc-ref.mkvi
@@ -136,7 +136,9 @@
\edef\currentreferencelabels {#labels}%
\edef\currentreferenceuserdata {#userdata}%
\edef\currentreferenceexpansion{\@@rfexpansion}% {\referenceparameter\c!expansion}
- \ifx\currentreferencelabels\empty \else
+ \ifx\currentreferencelabels\empty
+ \lastdestinationattribute\attributeunsetvalue
+ \else
\ifx\currentreferenceexpansion\s!xml
\xmlstartraw
\xdef\currentreferencedata{#text}% data, no text else conflict
@@ -176,12 +178,51 @@
\fi
},"\interactionparameter\c!focus")
}%
- % todo: optional
- \xdef\currentdestinationattribute{\number\lastdestinationattribute}%
- \begingroup\attribute\destinationattribute\currentdestinationattribute\emptyhbox\endgroup % todo
\fi
+ \else
+ \lastdestinationattribute\attributeunsetvalue
+ \fi
+ % will become obsolete:
+ \xdef\currentdestinationattribute{\number\lastdestinationattribute}%
+ % will become an option:
+ \ifnum\lastdestinationattribute>\zerocount
+ \dontleavehmode\hbox attr \destinationattribute\lastdestinationattribute{}%
+ \fi}
+
+\def\set_page_only_destination_attribute#labels% could in fact be fully expandable
+ {\ifreferencing
+ \edef\currentreferencelabels{#labels}%
+ \ifx\currentreferencelabels\empty
+ \lastdestinationattribute\attributeunsetvalue
+ \else
+ \ctxlua{structures.references.setandgetattribute("page", "\referenceprefix","\currentreferencelabels",
+ {
+ references = {
+ block = "\currentsectionblock",
+ section = structures.sections.currentid(),
+ },
+ metadata = {
+ kind = "page",
+ },
+ },"\interactionparameter\c!focus")
+ }%
+ \fi
+ \else
+ \lastdestinationattribute\attributeunsetvalue
\fi}
+\def\set_page_only_destination_box_attribute#cs#labels%
+ {\set_page_only_destination_attribute{#labels}%
+ \ifnum\lastdestinationattribute>\zerocount
+ \edef#cs{attr \destinationattribute\number\lastdestinationattribute}%
+ \else
+ \let#cs\empty
+ \fi}
+
+% \ifx\currentdestinationattribute\empty
+% \begingroup\attribute\destinationattribute\currentdestinationattribute\emptyhbox\endgroup % todo
+% \fi
+
\def\defaultreferencepage#text{[[[#text]]]}
\def\defaultreferencetext#text{[[[#text]]]}
diff --git a/tex/context/base/tabl-xtb.mkvi b/tex/context/base/tabl-xtb.mkvi
index bd63d0bce..827811b46 100644
--- a/tex/context/base/tabl-xtb.mkvi
+++ b/tex/context/base/tabl-xtb.mkvi
@@ -165,6 +165,9 @@
\set_checked_x_table{#settings}%
\fi}
+\def\x_table_get_buffer
+ {\ctxcommand{gettexbuffer("\x_table_current_buffer")}}
+
\unexpanded\def\x_table_process
{\setbox\scratchbox\vbox{\xtableparameter\c!spaceinbetween}%
\ctxcommand{x_table_create {
@@ -184,11 +187,8 @@
\let\start_x_cell\start_x_cell_reflow_width
\let\stop_x_cell \stop_x_cell_reflow_width
\settrialtypesetting
-% \doprocesstexbuffer\x_table_current_buffer\relax % we need to honor e.g. \asciimode
- \ctxcommand{getbuffer("\x_table_current_buffer")}%
- \relax
- \ctxcommand{x_table_reflow_width()}%
- \relax
+ \x_table_get_buffer
+ \ctxcommand{x_table_reflow_width()}\relax
\endgroup
\begingroup
\let\start_x_row \start_x_row_reflow_height
@@ -196,22 +196,16 @@
\let\start_x_cell\start_x_cell_reflow_height
\let\stop_x_cell \stop_x_cell_reflow_height
\settrialtypesetting
-% \doprocesstexbuffer\x_table_current_buffer\relax % we need to honor e.g. \asciimode
- \ctxcommand{getbuffer("\x_table_current_buffer")}%
- \relax
- \ctxcommand{x_table_reflow_height()}%
- \relax
+ \x_table_get_buffer
+ \ctxcommand{x_table_reflow_height()}\relax
\endgroup
\begingroup
\let\start_x_row \start_x_row_construct
\let\stop_x_row \stop_x_row_construct
\let\start_x_cell\start_x_cell_construct
\let\stop_x_cell \stop_x_cell_construct
-% \doprocesstexbuffer\x_table_current_buffer\relax % we need to honor e.g. \asciimode
- \ctxcommand{getbuffer("\x_table_current_buffer")}%
- \relax
- \ctxcommand{x_table_construct()}%
- \relax
+ \x_table_get_buffer
+ \ctxcommand{x_table_construct()}\relax
\endgroup
\ifinsidesplitfloat
\x_table_flush_float_split
@@ -219,8 +213,8 @@
\x_table_flush_float_normal
\else
\doifelse{\xtableparameter\c!split}\v!yes
- {\x_table_flush_flow_split}
- {\x_table_flush_flow_normal}%
+ \x_table_flush_flow_split
+ \x_table_flush_flow_normal
\fi\fi
\ctxcommand{x_table_cleanup()}%
\dostoptagged
@@ -433,6 +427,14 @@
\let\stopxtablenext\stop_x_table_partition
\let\stopxtablebody\stop_x_table_partition
+%D A bonus: you can use the following construct inside a macro.
+
+\unexpanded\def\startembeddedxtable#1\stopembeddedxtable
+ {\ctxcommand{assignbuffer("embedded_x_table",\!!bs\detokenize{#1}\!!es)}%
+ \processxtablebuffer[embedded_x_table]}
+
+\let\stopembeddedxtable\relax
+
\protect
% \continueifinputfile{tabl-xtb.mkvi}
diff --git a/tex/context/base/typo-mar.mkiv b/tex/context/base/typo-mar.mkiv
index 30aea9f61..c9218ace2 100644
--- a/tex/context/base/typo-mar.mkiv
+++ b/tex/context/base/typo-mar.mkiv
@@ -177,11 +177,15 @@
\fi
\doifelsenothing{#content}\donefalse\donetrue
\ifdone
+ \edef\currentmarginreference{\margindataparameter\c!reference}%
+ \ifx\currentmarginreference\empty \else
+ \set_page_only_destination_box_attribute\currentmarginreference\currentmarginreference
+ \fi
\edef\currentmargindatastrut{\margindataparameter\c!strut}%
\the\everymargindatacontent
\dostarttagged\t!margintext\currentmargindata
\ifcsname\currentmarginframedhash\s!parent\endcsname
- \setbox\nextbox\hbox\bgroup
+ \setbox\nextbox\hbox \currentmarginreference \bgroup
\the\everymargindatacontent
\dosetmargindataattributes\c!style\c!color
\setupcurrentmarginframed[\c!location=\v!normal,#textparameters]%
@@ -196,7 +200,7 @@
\else
\edef\currentmargindatawidth{\margindataparameter\c!width}%
\ifx\currentmargindatawidth\empty
- \setbox\nextbox\hbox\bgroup
+ \setbox\nextbox\hbox \currentmarginreference \bgroup
\the\everymargindatacontent
\dosetmargindataattributes\c!style\c!color
\ifx\currentmargindatastrut\empty \else
@@ -207,7 +211,7 @@
\let\currentmarginfirstheight\empty
\else
\dosetraggedcommand{\margindataparameter\c!align}%
- \setbox\nextbox\hbox\bgroup
+ \setbox\nextbox\hbox \currentmarginreference \bgroup
\vtop \bgroup
\the\everymargindatacontent
\dosetmargindataattributes\c!style\c!color
@@ -225,38 +229,38 @@
\dostoptagged
\fi
\ifdone
- \initializenextposition % we use positions at the lua end
+ \initializenextposition % we use positions at the lua end (will become pdf.h/v)
\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!bottomspace = \number\dimexpr\margindataparameter\c!bottomspace,
+ location = "\margindataparameter\c!location",
+ method = "\margindataparameter\c!method",
+ category = "\margindataparameter\c!category",
+ name = "\margindataparameter\c!name",
+ margin = "\margindataparameter\c!margin", % local normal margin edge
+ distance = \number\dimexpr\margindataparameter\c!distance,
+ hoffset = \number\dimexpr\margindataparameter\c!hoffset,
+ voffset = \number\dimexpr\margindataparameter\c!voffset,
+ dy = \number\dimexpr\margindataparameter\c!dy,
+ bottomspace = \number\dimexpr\margindataparameter\c!bottomspace,
\ifx\currentmarginfirstheight\empty \else
- baseline = \currentmarginfirstheight,
+ baseline = \currentmarginfirstheight,
\fi
- threshold = \number\dimexpr\margindataparameter\c!threshold, % overlap related, 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,
+ scope = "\margindataparameter\c!scope",
+ align = "\margindataparameter\c!align",
+ line = "\margindataparameter\c!line",
+ stack = "\margindataparameter\c!stack",
+ 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",
+ location = "\margindataparameter\c!location",
+ method = "\margindataparameter\c!method",
+ category = "\margindataparameter\c!category",
+ name = "\margindataparameter\c!name",
+ scope = "\margindataparameter\c!scope",
}}%
\fi
\endgroup}
diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua
index 9350da2b5..e0c234ecf 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 : 11/03/11 23:27:13
+-- merge date : 11/04/11 14:15:51
do -- begin closure to overcome local limits and interference