From 94124bc6ebef1359c1994f9ec64ac5161d2db276 Mon Sep 17 00:00:00 2001
From: Hans Hagen
Date: Thu, 5 Jan 2012 19:27:17 +0100
Subject: beta 2011.11.02 20:10
---
metapost/context/base/mp-mlib.mpiv | 21 +-
tex/context/base/attr-col.lua | 10 +-
tex/context/base/cont-new.mkii | 2 +-
tex/context/base/cont-new.mkiv | 2 +-
tex/context/base/context-version.pdf | 26 +-
tex/context/base/context-version.png | Bin 106314 -> 105046 bytes
tex/context/base/context.mkii | 2 +-
tex/context/base/context.mkiv | 7 +-
tex/context/base/core-con.lua | 30 +-
tex/context/base/core-con.mkiv | 5 +-
tex/context/base/core-fnt.mkiv | 80 +-
tex/context/base/file-job.mkvi | 8 +-
tex/context/base/font-afm.lua | 3 +-
tex/context/base/font-chk.lua | 213 +-
tex/context/base/font-con.lua | 47 +-
tex/context/base/font-ctx.lua | 8 +
tex/context/base/font-ext.lua | 90 +-
tex/context/base/font-gds.lua | 16 +-
tex/context/base/font-otf.lua | 7 +-
tex/context/base/font-tfm.lua | 5 +-
tex/context/base/meta-ini.mkiv | 7 +
tex/context/base/mlib-pps.lua | 58 +-
tex/context/base/mtx-context-arrange.tex | 15 +
tex/context/base/mtx-context-combine.tex | 8 +-
tex/context/base/mtx-context-common.tex | 2 +-
tex/context/base/mult-aux.mkiv | 2 +-
tex/context/base/node-res.lua | 7 +
tex/context/base/s-fonts-missing.mkiv | 79 +
tex/context/base/s-mod-01.mkiv | 110 +-
tex/context/base/scrn-ini.mkvi | 6 +
tex/context/base/status-files.pdf | 1563 ++++-----
tex/context/base/status-lua.pdf | 3324 ++++++++++----------
tex/context/base/supp-fun.mkiv | 38 +-
tex/context/base/task-ini.lua | 5 +
tex/context/base/typo-cln.lua | 18 +-
tex/context/base/typo-cln.mkiv | 7 +-
tex/context/base/typo-itc.lua | 64 +-
tex/context/base/typo-mar.lua | 24 +-
tex/context/base/typo-mar.mkiv | 46 +-
tex/context/base/typo-pag.lua | 172 +
tex/context/base/typo-pag.mkiv | 20 +
tex/context/base/typo-par.lua | 184 ++
tex/context/base/typo-par.mkiv | 105 +
tex/context/base/typo-txt.mkvi | 71 +
tex/generic/context/luatex/luatex-fonts-merged.lua | 56 +-
45 files changed, 3840 insertions(+), 2733 deletions(-)
create mode 100644 tex/context/base/s-fonts-missing.mkiv
create mode 100644 tex/context/base/typo-pag.lua
create mode 100644 tex/context/base/typo-pag.mkiv
create mode 100644 tex/context/base/typo-par.lua
create mode 100644 tex/context/base/typo-par.mkiv
create mode 100644 tex/context/base/typo-txt.mkvi
diff --git a/metapost/context/base/mp-mlib.mpiv b/metapost/context/base/mp-mlib.mpiv
index 329683f8c..eaef033a9 100644
--- a/metapost/context/base/mp-mlib.mpiv
+++ b/metapost/context/base/mp-mlib.mpiv
@@ -54,12 +54,11 @@ vardef transparency_alternative_to_number(expr name) =
fi
enddef ;
-% def namedcolor(expr n, v) =
-% 1
-% withprescript "sp_type=named"
-% withprescript "sp_name=" & n
-% withprescript "sp_value=" & v
-% enddef ;
+def namedcolor (expr n) =
+ 1
+ withprescript "sp_type=named"
+ withprescript "sp_name=" & n
+enddef ;
def spotcolor(expr n, v) =
1
@@ -157,6 +156,16 @@ enddef ;
defaultfont := "Mono" ; % was cmr10, could be lmmono10-regular, but is fed into context anyway
+vardef fontsize expr str =
+ save size ; numeric size ;
+ size := bbwidth(textext("\MPfontsizehskip{" & defaultfont & "}")) ;
+ if size = 0 :
+ 12pt
+ else :
+ size
+ fi
+enddef ;
+
pair mfun_laboff ; mfun_laboff := (0,0) ;
pair mfun_laboff.lft ; mfun_laboff.lft := (-1,0) ;
pair mfun_laboff.rt ; mfun_laboff.rt := (1,0) ;
diff --git a/tex/context/base/attr-col.lua b/tex/context/base/attr-col.lua
index 871ac3e03..6683e9a2d 100644
--- a/tex/context/base/attr-col.lua
+++ b/tex/context/base/attr-col.lua
@@ -9,6 +9,9 @@ if not modules then modules = { } end modules ['attr-col'] = {
-- this module is being reconstructed and code will move to other places
-- we can also do the nsnone via a metatable and then also se index 0
+-- list could as well refer to the tables (instead of numbers that
+-- index into another table) .. depends on what we need
+
local type = type
local format = string.format
local concat = table.concat
@@ -349,13 +352,15 @@ end
-- transparencies
+local a_transparency = attributes.private('transparency')
+
attributes.transparencies = attributes.transparencies or { }
local transparencies = attributes.transparencies
transparencies.registered = transparencies.registered or { }
transparencies.data = allocate()
transparencies.values = transparencies.values or { }
transparencies.triggering = true
-transparencies.attribute = attributes.private('transparency')
+transparencies.attribute = a_transparency
transparencies.supported = true
storage.register("attributes/transparencies/registered", transparencies.registered, "attributes.transparencies.registered")
@@ -393,6 +398,9 @@ function transparencies.register(name,a,t,force) -- name is irrelevant here (can
elseif force and not data[n] then
register_transparency(n,a,t)
end
+ if name then
+ list[a_transparency][name] = n -- not grouped, so only global transparencies
+ end
return registered[stamp]
end
diff --git a/tex/context/base/cont-new.mkii b/tex/context/base/cont-new.mkii
index 6c23cf5bb..e6c4667a4 100644
--- a/tex/context/base/cont-new.mkii
+++ b/tex/context/base/cont-new.mkii
@@ -11,7 +11,7 @@
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
-\newcontextversion{2011.10.28 22:32}
+\newcontextversion{2011.11.02 20:10}
%D This file is loaded at runtime, thereby providing an
%D excellent place for hacks, patches, extensions and new
diff --git a/tex/context/base/cont-new.mkiv b/tex/context/base/cont-new.mkiv
index 1f66ecf79..e69bb2250 100644
--- a/tex/context/base/cont-new.mkiv
+++ b/tex/context/base/cont-new.mkiv
@@ -11,7 +11,7 @@
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
-\newcontextversion{2011.10.28 22:32}
+\newcontextversion{2011.11.02 20:10}
%D This file is loaded at runtime, thereby providing an
%D excellent place for hacks, patches, extensions and new
diff --git a/tex/context/base/context-version.pdf b/tex/context/base/context-version.pdf
index 637928702..a1da50d5d 100644
--- a/tex/context/base/context-version.pdf
+++ b/tex/context/base/context-version.pdf
@@ -55,7 +55,7 @@ h f
0.000 0.700 0.000 rg 0.000 0.700 0.000 RG
10.070053 2.375809 m
87.534943 62.348938 l
-60.763657 35.427704 64.666656 -5.834824 95.250870 -19.224304 c
+58.287216 36.077240 62.418533 -7.599014 95.250870 -19.224304 c
10.070053 2.375809 l
h f
0 g 0 G
@@ -69,7 +69,7 @@ h f
0.000 0.000 0.700 rg 0.000 0.000 0.700 RG
6.996964 -6.113174 m
94.155334 -22.251892 l
-58.031265 -17.699509 24.317474 -54.247360 32.849838 -88.710907 c
+66.970764 -37.042160 45.038116 -60.818512 32.849838 -88.710907 c
6.996964 -6.113174 l
h f
0 g 0 G
@@ -83,7 +83,7 @@ h f
0.000 0.700 0.700 rg 0.000 0.700 0.700 RG
-1.345032 -9.998840 m
29.874359 -90.097046 l
-15.309891 -58.363571 -31.108002 -59.080185 -54.288406 -91.396378 c
+13.670990 -60.770996 -30.111328 -61.446930 -54.288406 -91.396378 c
-1.345032 -9.998840 l
h f
0 g 0 G
@@ -97,7 +97,7 @@ h f
0.700 0.000 0.700 rg 0.700 0.000 0.700 RG
-8.674164 -6.355164 m
-56.902374 -90.097046 l
--49.807724 -57.744019 -68.968475 -29.278183 -100.546051 -25.258499 c
+-58.992950 -61.206207 -75.207825 -37.116867 -100.546051 -25.258499 c
-8.674164 -6.355164 l
h f
0 g 0 G
@@ -163,17 +163,17 @@ stream
s-version
- 2011.10.28 22:32
+ 2011.11.02 20:11
www.pragma-ade.com
- 2011.10.28 22:32
- s-version.2011-10-28T22:32:41+02:00
+ 2011.11.02 20:10
+ s-version.2011-11-02T20:11:08+01:00
This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1
- 2011-10-28T22:32:41+02:00
- ConTeXt - 2011.10.28 22:32
- 2011-10-28T22:32:41+02:00
- 2011-10-28T22:32:41+02:00
+ 2011-11-02T20:11:08+01:00
+ ConTeXt - 2011.11.02 20:10
+ 2011-11-02T20:11:08+01:00
+ 2011-11-02T20:11:08+01:00
@@ -201,7 +201,7 @@ endobj
endobj
22 0 obj
<<
-/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.10.28 22:32) /ConTeXt.Jobname (s-version) /CreationDate (D:20111028223241+02'00') /Trapped /False /Title /ConTeXt.Time (2011.10.28 22:32) /ID (s-version.2011-10-28T22:32:41+02:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111028223241+02'00') /Creator
+/ConTeXt.Url (www.pragma-ade.com) /ConTeXt.Version (2011.11.02 20:10) /ConTeXt.Jobname (s-version) /CreationDate (D:20111102201108+01'00') /Trapped /False /Title /ConTeXt.Time (2011.11.02 20:11) /ID (s-version.2011-11-02T20:11:08+01:00) /Producer (LuaTeX-0.71.0) /ModDate (D:20111102201108+01'00') /Creator
/PTEX.Fullbanner (This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1)>>
endobj
xref
@@ -230,7 +230,7 @@ xref
0000006116 00000 n
0000006268 00000 n
trailer
-< ]>>
+< <87760E0AF8C9536F734AF6F658E056C3>]>>
startxref
6866
%%EOF
diff --git a/tex/context/base/context-version.png b/tex/context/base/context-version.png
index 6fcea3e5c..dcf05bb3b 100644
Binary files a/tex/context/base/context-version.png and b/tex/context/base/context-version.png differ
diff --git a/tex/context/base/context.mkii b/tex/context/base/context.mkii
index 866cd05c4..b6d1db2e8 100644
--- a/tex/context/base/context.mkii
+++ b/tex/context/base/context.mkii
@@ -20,7 +20,7 @@
%D your styles an modules.
\edef\contextformat {\jobname}
-\edef\contextversion{2011.10.28 22:32}
+\edef\contextversion{2011.11.02 20:10}
%D For those who want to use this:
diff --git a/tex/context/base/context.mkiv b/tex/context/base/context.mkiv
index 0f4e4ca33..5ac5ad90d 100644
--- a/tex/context/base/context.mkiv
+++ b/tex/context/base/context.mkiv
@@ -20,7 +20,7 @@
%D your styles an modules.
\edef\contextformat {\jobname}
-\edef\contextversion{2011.10.28 22:32}
+\edef\contextversion{2011.11.02 20:10}
%D For those who want to use this:
@@ -148,7 +148,7 @@
\loadmarkfile{supp-box}
\loadmarkfile{supp-vis}
-\loadmarkfile{supp-fun}
+\loadmarkfile{supp-fun} % close to obsolete
\loadmarkfile{supp-ran}
\loadmarkfile{supp-mat}
@@ -264,6 +264,7 @@
\loadmarkfile{page-lin}
\loadmarkfile{page-par}
%loadmarkfile{page-mar} % also commented code in anch-pgr.mkiv
+\loadmarkfile{typo-pag}
\loadmarkfile{typo-mar}
% \loadmkvifile{file-job} % why so late?
@@ -333,6 +334,8 @@
\loadmarkfile{typo-cap}
\loadmarkfile{typo-dig}
\loadmarkfile{typo-rep}
+\loadmkvifile{typo-txt}
+\loadmarkfile{typo-par}
\loadmarkfile{type-ini}
\loadmarkfile{type-set}
diff --git a/tex/context/base/core-con.lua b/tex/context/base/core-con.lua
index 4ddc9e0b6..4bd51770a 100644
--- a/tex/context/base/core-con.lua
+++ b/tex/context/base/core-con.lua
@@ -804,8 +804,9 @@ end
-- a prelude to a function that we can use at the lua end
-- day:ord month:mmem
+-- j and jj obsolete
-function commands.currentdate(str,currentlanguage) -- j and jj obsolete
+function commands.currentdate(str,currentlanguage) -- second argument false : no label
local list = utilities.parsers.settings_to_array(str)
local year, month, day = tex.year, tex.month, tex.day
local auto = true
@@ -831,7 +832,9 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete
elseif tag == "Y" then
context(year)
elseif tag == v_month or tag == "m" then
- if mnemonic then
+ if currentlanguage == false then
+ context(months[month] or "unknown")
+ elseif mnemonic then
commands.monthmnem(month)
else
commands.monthname(month)
@@ -841,7 +844,11 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete
elseif tag == "M" then
context(month)
elseif tag == v_day or tag == "d" then
- context.convertnumber(v_day,day)
+ if currentlanguage == false then
+ context(days[day] or "unknown")
+ else
+ context.convertnumber(v_day,day)
+ end
whatordinal = day
elseif tag == "dd" then
context("%02i",day)
@@ -850,7 +857,12 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete
context(day)
whatordinal = day
elseif tag == v_weekday or tag == "w" then
- commands.dayname(weekday(day,month,year))
+ local wd = weekday(day,month,year)
+ if currentlanguage == false then
+ context(days[wd] or "unknown")
+ else
+ commands.dayname(wd)
+ end
elseif tag == "W" then
context(weekday(day,month,year))
elseif tag == v_referral then
@@ -863,7 +875,15 @@ function commands.currentdate(str,currentlanguage) -- j and jj obsolete
auto = true
end
if ordinal and whatordinal then
- context("%s",converters.ordinal(whatordinal,currentlanguage))
+ if currentlanguage == false then
+ -- ignore
+ else
+ context("%s",converters.ordinal(whatordinal,currentlanguage))
+ end
end
end
end
+
+function commands.rawdate(str)
+ commands.currentdate(str,false)
+end
diff --git a/tex/context/base/core-con.mkiv b/tex/context/base/core-con.mkiv
index 427486c39..d8820050a 100644
--- a/tex/context/base/core-con.mkiv
+++ b/tex/context/base/core-con.mkiv
@@ -336,7 +336,7 @@
% [\the\normaltime=\the\time]
%D \macros
-%D {currentdate, date}
+%D {currentdate, rawdate, date}
%D
%D We use these conversion macros in the date formatting
%D macro:
@@ -456,6 +456,9 @@
\docurrentdate[#2]%
\endgroup}
+\def\rawdate[#1]% expandable and no labels
+ {\ctxcommand{rawdate(\!!bs\currentdatespecification\!!es)}}
+
%D \macros
%D {currenttime}
%D
diff --git a/tex/context/base/core-fnt.mkiv b/tex/context/base/core-fnt.mkiv
index c1acd07b6..641411f00 100644
--- a/tex/context/base/core-fnt.mkiv
+++ b/tex/context/base/core-fnt.mkiv
@@ -100,6 +100,8 @@
%D Given the following settings, the space is 1em by default:
+%D OBSOLETE:
+
\def\stretchedspacefactor{4}
\def\stretchedspaceamount{.25em}
\def\stretchedbreaktokens{.@/}
@@ -247,44 +249,44 @@
%D
%D \getbuffer
-%D \macros
-%D {setupinitial,placeinitial,checkinitial}
-%D
-%D {\em To be documented.}
-%D
-%D \starttyping
-%D \setupinitial[state=start] \placeinitial \input tufte
-%D \stoptyping
-%D
-%D and
-%D
-%D \starttyping
-%D \def\bpar{\ifvmode\checkinitial\fi}
-%D \def\epar{\ifhmode\par\fi\checkinitial}
-%D \stoptyping
-
-% to do: more fine tuning
-
-\unexpanded\def\setupinitial
- {\dodoubleempty\getparameters[\??dc]}
-
-\definefontsynonym[Initial][Regular] % prefered initial identifier
-\definefontsynonym[initial][Initial] % internal but accepted too
-
-\setupinitial
- [\c!state=\v!stop,
- \c!location=\v!text,
- \c!n=3,
- \c!distance=.125em,
- \c!command=,
- \s!font=initial]
-
-\def\AutoDroppedCapsCommand{\NiceDroppedCaps\@@dccommand\@@dcfont\@@dcdistance\@@dcn}%
-
-\unexpanded\def\placeinitial
- {\doifelse\@@dclocation\v!margin{\chardef\DropMode\plusone}{\chardef\DropMode\zerocount}%
- \doif \@@dcstate\v!start{\ifcase\@@dcn\else\AutoDroppedCaps\fi}}
-
-\let\checkinitial\CheckDroppedCaps
+% %D \macros
+% %D {setupinitial,placeinitial,checkinitial}
+% %D
+% %D {\em To be documented.}
+% %D
+% %D \starttyping
+% %D \setupinitial[state=start] \placeinitial \input tufte
+% %D \stoptyping
+% %D
+% %D and
+% %D
+% %D \starttyping
+% %D \def\bpar{\ifvmode\checkinitial\fi}
+% %D \def\epar{\ifhmode\par\fi\checkinitial}
+% %D \stoptyping
+%
+% % to do: more fine tuning
+%
+% \unexpanded\def\setupinitial
+% {\dodoubleempty\getparameters[\??dc]}
+%
+% \definefontsynonym[Initial][Regular] % prefered initial identifier
+% \definefontsynonym[initial][Initial] % internal but accepted too
+%
+% \setupinitial
+% [\c!state=\v!stop,
+% \c!location=\v!text,
+% \c!n=3,
+% \c!distance=.125em,
+% \c!command=,
+% \s!font=initial]
+%
+% \def\AutoDroppedCapsCommand{\NiceDroppedCaps\@@dccommand\@@dcfont\@@dcdistance\@@dcn}%
+%
+% \unexpanded\def\placeinitial
+% {\doifelse\@@dclocation\v!margin{\chardef\DropMode\plusone}{\chardef\DropMode\zerocount}%
+% \doif \@@dcstate\v!start{\ifcase\@@dcn\else\AutoDroppedCaps\fi}}
+%
+% \let\checkinitial\CheckDroppedCaps
\protect \endinput
diff --git a/tex/context/base/file-job.mkvi b/tex/context/base/file-job.mkvi
index 2b4ea5203..3c5a60c33 100644
--- a/tex/context/base/file-job.mkvi
+++ b/tex/context/base/file-job.mkvi
@@ -237,11 +237,14 @@
%D Relatively new (might move as it depends on setups):
+\newtoks\everysetupdocument
+
\unexpanded\def\startdocument % todo: dostarttagged\t!document
{\dosingleargument\start_document}
\unexpanded\def\start_document[#settings]%
{\setvariables[document][#settings]%
+ \the\everysetupdocument\relax
\starttext
\documentvariable\c!before}
@@ -252,8 +255,9 @@
\def\documentvariable#name%
{\getvariable{document}{#name}}
-\unexpanded\def\setupdocument
- {\dodoubleempty\setvariables[document]}
+\unexpanded\def\setupdocument[#1]%
+ {\setvariables[document][#1]%
+ \the\everysetupdocument\relax}
\setvariables
[document]
diff --git a/tex/context/base/font-afm.lua b/tex/context/base/font-afm.lua
index 400136d70..df7e47409 100644
--- a/tex/context/base/font-afm.lua
+++ b/tex/context/base/font-afm.lua
@@ -968,7 +968,8 @@ local function read_from_afm(specification)
if tfmdata then
tfmdata.properties.name = specification.name
tfmdata = constructors.scale(tfmdata, specification)
- constructors.applymanipulators("afm",tfmdata,specification.features.normal,trace_features,report_afm)
+ local allfeatures = tfmdata.shared.features or specification.features.normal
+ constructors.applymanipulators("afm",tfmdata,allfeatures,trace_features,report_afm)
fonts.loggers.register(tfmdata,'afm',specification)
end
return tfmdata
diff --git a/tex/context/base/font-chk.lua b/tex/context/base/font-chk.lua
index fd4e2e249..04b49b02c 100644
--- a/tex/context/base/font-chk.lua
+++ b/tex/context/base/font-chk.lua
@@ -9,32 +9,43 @@ if not modules then modules = { } end modules ['font-chk'] = {
-- possible optimization: delayed initialization of vectors
-- move to the nodes namespace
-local report_fonts = logs.reporter("fonts","checking")
+local format = string.format
+local bpfactor = number.dimenfactors.bp
-local fonts = fonts
+local report_fonts = logs.reporter("fonts","checking")
-fonts.checkers = fonts.checkers or { }
-local checkers = fonts.checkers
+local fonts = fonts
-local fonthashes = fonts.hashes
-local fontdata = fonthashes.identifiers
-local fontcharacters = fonthashes.characters
+fonts.checkers = fonts.checkers or { }
+local checkers = fonts.checkers
-local is_character = characters.is_character
-local chardata = characters.data
+local fonthashes = fonts.hashes
+local fontdata = fonthashes.identifiers
+local fontcharacters = fonthashes.characters
-local tasks = nodes.tasks
-local enableaction = tasks.enableaction
-local disableaction = tasks.disableaction
+local addprivate = fonts.helpers.addprivate
+local hasprivate = fonts.helpers.hasprivate
+local getprivatenode = fonts.helpers.getprivatenode
-local glyph = node.id('glyph')
-local traverse_id = node.traverse_id
-local remove_node = nodes.remove
+local otffeatures = fonts.constructors.newfeatures("otf")
+local registerotffeature = otffeatures.register
+
+local is_character = characters.is_character
+local chardata = characters.data
+
+local tasks = nodes.tasks
+local enableaction = tasks.enableaction
+local disableaction = tasks.disableaction
+
+local glyph_code = nodes.nodecodes.glyph
+local traverse_id = node.traverse_id
+local remove_node = nodes.remove
+local insert_node_after = node.insert_after
-- maybe in fonts namespace
-- deletion can be option
-local cleanup = false
+local action = false
-- to tfmdata.properties ?
@@ -59,17 +70,139 @@ end
fonts.loggers.onetimemessage = onetimemessage
+local mapping = { -- this is just an experiment to illustrate some principles elsewhere
+ lu = "placeholder uppercase red",
+ ll = "placeholder lowercase red",
+ lt = "placeholder uppercase red",
+ lm = "placeholder lowercase red",
+ lo = "placeholder lowercase red",
+ mn = "placeholder mark green",
+ mc = "placeholder mark green",
+ me = "placeholder mark green",
+ nd = "placeholder lowercase blue",
+ nl = "placeholder lowercase blue",
+ no = "placeholder lowercase blue",
+ pc = "placeholder punctuation cyan",
+ pd = "placeholder punctuation cyan",
+ ps = "placeholder punctuation cyan",
+ pe = "placeholder punctuation cyan",
+ pi = "placeholder punctuation cyan",
+ pf = "placeholder punctuation cyan",
+ po = "placeholder punctuation cyan",
+ sm = "placeholder lowercase magenta",
+ sc = "placeholder lowercase yellow",
+ sk = "placeholder lowercase yellow",
+ so = "placeholder lowercase yellow",
+}
+
+table.setmetatableindex(mapping,function(t,k) v = "placeholder unknown gray" t[k] = v return v end)
+
+local fakes = {
+ {
+ name = "lowercase",
+ code = ".025 -.175 m .425 -.175 l .425 .525 l .025 .525 l .025 -.175 l .025 0 l .425 0 l .025 -.175 m h S",
+ width = .45,
+ height = .55,
+ depth = .20,
+ },
+ {
+ name = "uppercase",
+ code = ".025 -.225 m .625 -.225 l .625 .675 l .025 .675 l .025 -.225 l .025 0 l .625 0 l .025 -.225 m h S",
+ width = .65,
+ height = .70,
+ depth = .25,
+ },
+ {
+ name = "mark",
+ code = ".025 .475 m .125 .475 l .125 .675 l .025 .675 l .025 .475 l h B",
+ width = .15,
+ height = .70,
+ depth = -.50,
+ },
+ {
+ name = "punctuation",
+ code = ".025 -.175 m .125 -.175 l .125 .525 l .025 .525 l .025 -.175 l h B",
+ width = .15,
+ height = .55,
+ depth = .20,
+ },
+ {
+ name = "unknown",
+ code = ".025 0 m .425 0 l .425 .175 l .025 .175 l .025 0 l h B",
+ width = .45,
+ height = .20,
+ depth = 0,
+ },
+}
+
+local variants = {
+ { tag = "gray", r = .6, g = .6, b = .6 },
+ { tag = "red", r = .6, g = 0, b = 0 },
+ { tag = "green", r = 0, g = .6, b = 0 },
+ { tag = "blue", r = 0, g = 0, b = .6 },
+ { tag = "cyan", r = 0, g = .6, b = .6 },
+ { tag = "magenta", r = .6, g = 0, b = .6 },
+ { tag = "yellow", r = .6, g = .6, b = 0 },
+}
+
+local package = "q %0.6f 0 0 %0.6f 0 0 cm %s %s %s rg %s %s %s RG 10 M 1 j 1 J 0.05 w %s Q"
+
+local cache = { } -- saves some tables but not that impressive
+
+local function addmissingsymbols(tfmdata)
+ local characters = tfmdata.characters
+ local size = tfmdata.parameters.size
+ local privates = tfmdata.properties.privates
+ local scale = size * bpfactor
+ for i=1,#variants do
+ local v = variants[i]
+ local tag, r, g, b = v.tag, v.r, v.g, v.b
+ for i =1, #fakes do
+ local fake = fakes[i]
+ local name = fake.name
+ local privatename = format("placeholder %s %s",name,tag)
+ if not hasprivate(tfmdata,privatename) then
+ local hash = format("%s_%s_%s_%s_%s_%s",name,tag,r,g,b,size)
+ local char = cache[hash]
+ if not char then
+ char = {
+ width = size*fake.width,
+ height = size*fake.height,
+ depth = size*fake.depth,
+ commands = { { "special", "pdf: " .. format(package,scale,scale,r,g,b,r,g,b,fake.code) } }
+ }
+ cache[hash] = char
+ end
+ addprivate(tfmdata, privatename, char)
+ end
+ end
+ end
+end
+
+registerotffeature {
+ name = "missing",
+ description = "missing symbols",
+ manipulators = {
+ base = addmissingsymbols,
+ node = addmissingsymbols,
+ }
+}
+
+fonts.loggers.category_to_placeholder = mapping
+
function checkers.missing(head)
local lastfont, characters, found = nil, nil, nil
- for n in traverse_id(glyph,head) do
+ for n in traverse_id(glyph_code,head) do -- faster than while loop so we delay removal
local font = n.font
local char = n.char
if font ~= lastfont then
characters = fontcharacters[font]
end
if not characters[char] and is_character[chardata[char].category] then
- if cleanup then
+ if action == "remove" then
onetimemessage(font,char,"missing (will be deleted)")
+ elseif action == "replace" then
+ onetimemessage(font,char,"missing (will be flagged)")
else
onetimemessage(font,char,"missing")
end
@@ -80,10 +213,39 @@ function checkers.missing(head)
end
end
end
- if found and cleanup then
+ if not found then
+ -- all well
+ elseif action == "remove" then
for i=1,#found do
head = remove_node(head,found[i],true)
end
+ elseif action == "replace" then
+ for i=1,#found do
+ local n = found[i]
+ local font = n.font
+ local char = n.char
+ local tfmdata = fontdata[font]
+ local properties = tfmdata.properties
+ local privates = properties.privates
+ local category = chardata[char].category
+ local fakechar = mapping[category]
+ local p = privates and privates[fakechar]
+ if not p then
+ addmissingsymbols(tfmdata)
+ p = properties.privates[fakechar]
+ end
+ if properties.lateprivates then -- .frozen
+ -- bad, we don't have them at the tex end
+ local fake = getprivatenode(tfmdata,fakechar)
+ insert_node_after(head,n,fake)
+ head = remove_node(head,n,true)
+ else
+ -- good, we have \definefontfeature[default][default][missing=yes]
+ n.char = p
+ end
+ end
+ else
+ -- maye write a report to the log
end
return head, false
end
@@ -94,7 +256,10 @@ trackers.register("fonts.missing", function(v)
else
disableaction("processors","fonts.checkers.missing")
end
- cleanup = v == "remove"
+ if v == "replace" then
+ otffeatures.defaults.missing = true
+ end
+ action = v
end)
function commands.checkcharactersinfont()
@@ -103,5 +268,11 @@ end
function commands.removemissingcharacters()
enableaction("processors","fonts.checkers.missing")
- cleanup = true
+ action = "remove"
+end
+
+function commands.replacemissingcharacters()
+ enableaction("processors","fonts.checkers.missing")
+ action = "replace"
+ otffeatures.defaults.missing = true
end
diff --git a/tex/context/base/font-con.lua b/tex/context/base/font-con.lua
index 93567cb2d..01707bd30 100644
--- a/tex/context/base/font-con.lua
+++ b/tex/context/base/font-con.lua
@@ -74,8 +74,8 @@ constructors.keys = {
noglyphnames = "boolean",
mode = "string",
has_math = "boolean",
- no_math_italics = "boolean",
- no_text_italics = "boolean",
+ mathitalics = "boolean",
+ textitalics = "boolean",
finalized = "boolean",
},
parameters = {
@@ -405,13 +405,13 @@ function constructors.scale(tfmdata,specification)
targetparameters.units = units
targetparameters.scaledpoints = askedscaledpoints
--
- local isvirtual = properties.virtualized or tfmdata.type == "virtual"
- local hasquality = target.auto_expand or target.auto_protrude
- local hasitalic = properties.italic_correction
- local autoitalic = properties.auto_italic_correction
- local stackmath = not properties.no_stackmath
- local nonames = properties.noglyphnames
- local nodemode = properties.mode == "node"
+ local isvirtual = properties.virtualized or tfmdata.type == "virtual"
+ local hasquality = target.auto_expand or target.auto_protrude
+ local hasitalic = properties.italic_correction
+ local autoitalic = properties.auto_italic_correction
+ local stackmath = not properties.no_stackmath
+ local nonames = properties.noglyphnames
+ local nodemode = properties.mode == "node"
--
if changed and not next(changed) then
changed = false
@@ -482,9 +482,12 @@ function constructors.scale(tfmdata,specification)
end
--
local italickey = "italic"
+ --
+ -- some context specific trickery (we might move this to a plug in into here
+ --
if hasmath then
- if properties.no_mathitalics then
- italickey = "italic_correction" -- context specific trickery
+ if properties.mathitalics then
+ italickey = "italic_correction"
if trace_defining then
report_defining("math italics disabled for: name '%s', fullname: '%s', filename: '%s'",
name or "noname",fullname or "nofullname",filename or "nofilename")
@@ -492,15 +495,20 @@ function constructors.scale(tfmdata,specification)
end
autoitalic = false -- new
else
- if properties.no_textitalics then
- italickey = "italic_correction" -- context specific trickery
+ if properties.textitalics then
+ italickey = "italic_correction"
if trace_defining then
report_defining("text italics disabled for: name '%s', fullname: '%s', filename: '%s'",
name or "noname",fullname or "nofullname",filename or "nofilename")
end
+ if properties.delaytextitalics then
+ autoitalic = false
+ end
end
end
--
+ -- end of context specific trickery
+ --
local sharedkerns = { }
--
-- we can have a dumb mode (basemode without math etc) that skips most
@@ -600,12 +608,17 @@ function constructors.scale(tfmdata,specification)
end
--
if autoitalic then
- local vi = description.italic or (description.boundingbox[3] - description.width + autoitalic)
- if vi and vi ~= 0 then
+ local vi = description.italic
+ if not vi then
+ local vi = description.boundingbox[3] - description.width + autoitalic
+ if vi > 0 then -- < 0 indicates no overshoot or a very small auto italic
+ chr[italickey] = vi*hdelta
+ end
+ elseif vi ~= 0 then
chr[italickey] = vi*hdelta
end
elseif hasitalic then
- local vi = description.italic -- or character.italic hm, already scaled !
+ local vi = description.italic
if vi and vi ~= 0 then
chr[italickey] = vi*hdelta
end
@@ -1122,7 +1135,7 @@ a helper function.
function constructors.checkedfeatures(what,features)
local defaults = handlers[what].features.defaults
if features and next(features) then
- features = fastcopy(features) -- can be inherited
+ features = fastcopy(features) -- can be inherited (mt) but then no loops possible
for key, value in next, defaults do
if features[key] == nil then
features[key] = value
diff --git a/tex/context/base/font-ctx.lua b/tex/context/base/font-ctx.lua
index 4a902c1e4..ffc774f3f 100644
--- a/tex/context/base/font-ctx.lua
+++ b/tex/context/base/font-ctx.lua
@@ -107,6 +107,7 @@ commands.resetnullfont = definers.resetnullfont
setmetatableindex(fontdata, function(t,k) return nulldata end)
local chardata = allocate() -- chardata
+local descriptions = allocate()
local parameters = allocate()
local properties = allocate()
local quaddata = allocate()
@@ -116,6 +117,7 @@ local csnames = allocate() -- namedata
local italicsdata = allocate()
hashes.characters = chardata
+hashes.descriptions = descriptions
hashes.parameters = parameters
hashes.properties = properties
hashes.quads = quaddata
@@ -130,6 +132,12 @@ setmetatableindex(chardata, function(t,k)
return characters
end)
+setmetatableindex(descriptions, function(t,k)
+ local descriptions = fontdata[k].descriptions
+ t[k] = descriptions
+ return descriptions
+end)
+
setmetatableindex(parameters, function(t,k)
local parameters = fontdata[k].parameters
t[k] = parameters
diff --git a/tex/context/base/font-ext.lua b/tex/context/base/font-ext.lua
index 5749d58b3..309d7814a 100644
--- a/tex/context/base/font-ext.lua
+++ b/tex/context/base/font-ext.lua
@@ -25,6 +25,7 @@ of neutral.
--ldx]]--
local fonts = fonts
+local fontdata = fonts.hashes.identifiers
local otffeatures = fonts.constructors.newfeatures("otf")
local registerotffeature = otffeatures.register
@@ -491,13 +492,14 @@ registerotffeature {
local function initializeitlc(tfmdata,value) -- hm, always value
if value then
- -- the magic 40 and it formula come from Dohyun Kim
+ -- the magic 40 and it formula come from Dohyun Kim but we might need another guess
local parameters = tfmdata.parameters
local italicangle = parameters.italicangle
if italicangle and italicangle ~= 0 then
+ local properties = tfmdata.properties
local factor = tonumber(value) or 1
- tfmdata.properties.italic_correction = true
- tfmdata.properties.auto_italic_correction = factor * (parameters.uwidth or 40)/2
+ properties.italic_correction = true
+ properties.auto_italic_correction = factor * (parameters.uwidth or 40)/2
end
end
end
@@ -520,25 +522,27 @@ registerafmfeature {
}
}
-local function initializenotextitalics(tfmdata,value)
- tfmdata.properties.no_textitalics = value
+local function initializetextitalics(tfmdata,value) -- yes no delay
+ local delay = value == "delay"
+ tfmdata.properties.textitalics = delay and true or value
+ tfmdata.properties.delaytextitalics = delay
end
registerotffeature {
- name = "notextitalics",
- description = "don't pass text italic correction to tex",
+ name = "textitalics",
+ description = "use alternative text italic correction",
initializers = {
- base = initializenotextitalics,
- node = initializenotextitalics,
+ base = initializetextitalics,
+ node = initializetextitalics,
}
}
registerafmfeature {
- name = "notextitalics",
- description = "don't pass text italic correction to tex",
+ name = "textitalics",
+ description = "use alternative text italic correction",
initializers = {
- base = initializenotextitalics,
- node = initializenotextitalics,
+ base = initializetextitalics,
+ node = initializetextitalics,
}
}
@@ -766,3 +770,63 @@ registerotffeature {
-- node = processformatters,
-- }
-- }
+
+-- a handy helper (might change or be moved to another namespace)
+
+local new_special = nodes.pool.special
+local new_glyph = nodes.pool.glyph
+local hpack_node = node.hpack
+
+function fonts.helpers.addprivate(tfmdata,name,characterdata)
+ local properties = tfmdata.properties
+ local privates = properties.privates
+ local lastprivate = properties.lastprivate
+ if lastprivate then
+ lastprivate = lastprivate + 1
+ else
+ lastprivate = 0xE000
+ end
+ if not privates then
+ privates = { }
+ properties.privates = privates
+ end
+ privates[name] = lastprivate
+ properties.lastprivate = lastprivate
+ tfmdata.characters[lastprivate] = characterdata
+ if properties.finalized then
+ properties.lateprivates = true
+ end
+ return lastprivate
+end
+
+function fonts.helpers.getprivatenode(tfmdata,name)
+ local properties = tfmdata.properties
+ local privates = properties and properties.privates
+ if privates then
+ local p = privates[name]
+ if p then
+ local char = tfmdata.characters[p]
+ local commands = char.commands
+ if commands then
+ local fake = hpack_node(new_special(commands[1][2]))
+ fake.width = char.width
+ fake.height = char.height
+ fake.depth = char.depth
+ return fake
+ else
+ -- todo: set current attribibutes
+ return new_glyph(properties.id,p)
+ end
+ end
+ end
+end
+
+function fonts.helpers.hasprivate(tfmdata,name)
+ local properties = tfmdata.properties
+ local privates = properties and properties.privates
+ return privates and privates[name] or false
+end
+
+function commands.getprivatechar(name)
+ context(fonts.helpers.getprivatenode(fontdata[font.current()],name))
+end
diff --git a/tex/context/base/font-gds.lua b/tex/context/base/font-gds.lua
index a0c50c35f..e7728d681 100644
--- a/tex/context/base/font-gds.lua
+++ b/tex/context/base/font-gds.lua
@@ -464,8 +464,8 @@ local function initialize(tfmdata)
local disableengine = mathitalics.disableengine
properties.italic_correction = true
properties.mathitalic_defaultfactor = defaultfactor -- we inherit outer one anyway
- if properties.no_mathitalics == nil then
- properties.no_mathitalics = disableengine
+ if properties.mathitalics == nil then
+ properties.mathitalics = disableengine
end
if corrections then
-- As we want to set italic_correction (the context one) we need a
@@ -477,15 +477,15 @@ local function initialize(tfmdata)
properties.italic_correction = true
properties.mathitalic_defaultfactor = defaultfactor
properties.mathitalic_defaultvalue = defaultfactor * parameters.quad
- if properties.no_mathitalics == nil then
- properties.no_mathitalics = disableengine
+ if properties.mathitalics == nil then
+ properties.mathitalics = disableengine
end
if trace_goodies then
report_goodies("assigning mathitalics for font '%s'",properties.name)
end
- local no_mathitalics = properties.no_mathitalics
- local quad = parameters.quad
- local hfactor = parameters.hfactor
+ local mathitalics = properties.mathitalics
+ local quad = parameters.quad
+ local hfactor = parameters.hfactor
for k, v in next, corrections do
local c = characters[k]
if v > -1 and v < 1 then
@@ -494,7 +494,7 @@ local function initialize(tfmdata)
v = v * hfactor
end
c.italic_correction = v -- for context
- if no_mathitalics then
+ if mathitalics then
c.italic = v -- for tex
else
c.italic = nil
diff --git a/tex/context/base/font-otf.lua b/tex/context/base/font-otf.lua
index cb309a39f..1c14dcab4 100644
--- a/tex/context/base/font-otf.lua
+++ b/tex/context/base/font-otf.lua
@@ -1930,9 +1930,9 @@ local function otftotfm(specification)
tfmdata.shared = shared
end
shared.rawdata = rawdata
- shared.features = features -- default
+ -- shared.features = features -- default
shared.dynamics = { }
- shared.processes = { }
+ -- shared.processes = { }
tfmdata.changed = { }
shared.features = features
shared.processes = otf.setfeatures(tfmdata,features)
@@ -1951,7 +1951,8 @@ local function read_from_otf(specification)
tfmdata.properties.sub = specification.sub
--
tfmdata = constructors.scale(tfmdata,specification)
- constructors.applymanipulators("otf",tfmdata,specification.features.normal,trace_features,report_otf)
+ local allfeatures = tfmdata.shared.features or specification.features.normal
+ constructors.applymanipulators("otf",tfmdata,allfeatures,trace_features,report_otf)
constructors.setname(tfmdata,specification) -- only otf?
fonts.loggers.register(tfmdata,file.extname(specification.filename),specification)
end
diff --git a/tex/context/base/font-tfm.lua b/tex/context/base/font-tfm.lua
index 354d77b68..257eee0a0 100644
--- a/tex/context/base/font-tfm.lua
+++ b/tex/context/base/font-tfm.lua
@@ -97,9 +97,8 @@ local function read_from_tfm(specification)
end
end
--
- if next(features) then
- constructors.applymanipulators("tfm",tfmdata,specification.features.normal,trace_features,report_tfm)
- end
+ local allfeatures = tfmdata.shared.features or specification.features.normal
+ constructors.applymanipulators("tfm",tfmdata,allfeatures.normal,trace_features,report_tfm)
if not features.encoding then
local encoding, filename = match(properties.filename,"^(.-)%-(.*)$") -- context: encoding-name.*
if filename and encoding and encodings.known[encoding] then
diff --git a/tex/context/base/meta-ini.mkiv b/tex/context/base/meta-ini.mkiv
index ddf345391..ad4bd768b 100644
--- a/tex/context/base/meta-ini.mkiv
+++ b/tex/context/base/meta-ini.mkiv
@@ -278,6 +278,13 @@
%D Since we want lables to follow the document settings, we
%D also set the font related variables.
+\unexpanded\def\MPfontsizehskip#1%
+ {\dontleavehmode
+ \begingroup
+ \definedfont[#1]%
+ \hskip\cldcontext{fonts.hashes.parameters[font.current()].designsize}sp\relax
+ \endgroup}
+
\startMPinitializations % scale is not yet ok
defaultfont:="\truefontname{Regular}";
defaultscale:=\the\bodyfontsize/10pt;
diff --git a/tex/context/base/mlib-pps.lua b/tex/context/base/mlib-pps.lua
index a2e343720..aa955ac1c 100644
--- a/tex/context/base/mlib-pps.lua
+++ b/tex/context/base/mlib-pps.lua
@@ -949,20 +949,24 @@ local value = Cs ( (
-- should be codeinjections
+local t_list = attributes.list[attributes.private('transparency')]
+local c_list = attributes.list[attributes.private('color')]
+
local function tr_process(object,prescript,before,after)
-- before can be shortcut to t
local tr_alternative = prescript.tr_alternative
if tr_alternative then
tr_alternative = tonumber(tr_alternative)
local tr_transparency = tonumber(prescript.tr_transparency)
- before[#before+1], after[#after+1] = format("/Tr%s gs",registertransparency(nil,tr_alternative,tr_transparency,true)), "/Tr0 gs" -- outertransparency
+ before[#before+1] = format("/Tr%s gs",registertransparency(nil,tr_alternative,tr_transparency,true))
+ after[#after+1] = "/Tr0 gs" -- outertransparency
end
local cs = object.color
if cs and #cs > 0 then
- local b, a
+ local c_b, c_a
local sp_type = prescript.sp_type
if not sp_type then
- b, a = colorconverter(cs)
+ c_b, c_a = colorconverter(cs)
elseif sp_type == "spot" or sp_type == "multitone" then
local sp_name = prescript.sp_name or "black"
local sp_fractions = prescript.sp_fractions or 1
@@ -971,19 +975,47 @@ local function tr_process(object,prescript,before,after)
local cf = cs[1]
if cf ~= 1 then
-- beware, we do scale the spotcolors but not the alternative representation
- sp_value = lpeg.match(value,sp_value,1,cf) or sp_value
+ sp_value = lpegmatch(value,sp_value,1,cf) or sp_value
end
- b, a = spotcolorconverter(sp_name,sp_fractions,sp_components,sp_value)
+ c_b, c_a = spotcolorconverter(sp_name,sp_fractions,sp_components,sp_value)
elseif sp_type == "named" then
---~ local sp_name = prescript.sp_name or "black"
---~ local c = attributes.list[attributes.private('color')][sp_name] -- string or attribute
---~ local r = attributes.colors.registered[r]
---~ local v = attributes.colors.value(r)
- b, a = colorconverter(cs)
+ -- we might move this to another namespace .. also, named can be a spotcolor
+ -- so we need to check for that too
+ local sp_name = prescript.sp_name or "black"
+ if not tr_alternative then
+ -- todo: sp_name is not yet registered at this time
+ local t = t_list[sp_name] -- string or attribute
+ local v = t and attributes.transparencies.value(t)
+ if v then
+ before[#before+1] = format("/Tr%s gs",registertransparency(nil,v[1],v[2],true))
+ after[#after+1] = "/Tr0 gs" -- outertransparency
+ end
+ end
+ local c = c_list[sp_name] -- string or attribute
+ local v = c and attributes.colors.value(c)
+ if v then
+ -- all=1 gray=2 rgb=3 cmyk=4
+ local colorspace = v[1]
+ local f = cs[1]
+ if colorspace == 2 then
+ local s = f*v[2]
+ c_b, c_a = checked_color_pair(format("%.3f g %.3f G",s,s))
+ elseif colorspace == 3 then
+ local r, g, b = f*v[3], f*v[4], f*v[5]
+ c_b, c_a = checked_color_pair(format("%.3f %.3f %.3f rg %.3f %.3f %.3f RG",r,g,b,r,g,b))
+ elseif colorspace == 4 or colorspace == 1 then
+ local c, m, y, k = f*v[6], f*v[7], f*v[8], f*v[9]
+ c_b, c_a = checked_color_pair(format("%.3f %.3f %.3f %.3f k %.3f %.3f %.3f %.3f K",c,m,y,k,c,m,y,k))
+ else
+ local s = f*v[2]
+ c_b, c_a = checked_color_pair(format("%.3f g %.3f G",s,s))
+ end
+ end
+ --
end
- if a and b then
- before[#before+1] = b
- after[#after+1] = a
+ if c_a and c_b then
+ before[#before+1] = c_b
+ after[#after+1] = c_a
end
end
end
diff --git a/tex/context/base/mtx-context-arrange.tex b/tex/context/base/mtx-context-arrange.tex
index d1a01c699..49920293f 100644
--- a/tex/context/base/mtx-context-arrange.tex
+++ b/tex/context/base/mtx-context-arrange.tex
@@ -25,9 +25,14 @@
% --marking : add cutmarks
% --addempty=list : add empty pages at/after (comma separated list)
% --printformat : 2UP, etc
+% --paperformat=spec : paper*print or paperxprint
+%
+% example: context --extra=arrange --printformat=2UP --paperformat=A4,A3,landscape myfile
%
% end help
+\input mtx-context-common.tex
+
\doifdocumentargument {paperoffset} {
\definepapersize
[offset=\getdocumentargument{paperoffset}]
@@ -41,6 +46,16 @@
\setdocumentargument{sided}{singlesided}
}
+\setuppapersize
+ [\getdocumentargument{paperformat_paper}]
+ [\getdocumentargument{paperformat_print}]
+
+% todo: autopapersize
+%
+% \setuppapersize
+% [A4]
+% [A3,landscape]
+
\setdocumentargumentdefault {textwidth} {0cm}
\setdocumentargumentdefault {backspace} {0cm}
\setdocumentargumentdefault {topspace} {0cm}
diff --git a/tex/context/base/mtx-context-combine.tex b/tex/context/base/mtx-context-combine.tex
index 3c48080ee..05e31d800 100644
--- a/tex/context/base/mtx-context-combine.tex
+++ b/tex/context/base/mtx-context-combine.tex
@@ -44,16 +44,16 @@
}
+\setuppapersize
+ [\getdocumentargument{paperformat_paper}]
+ [\getdocumentargument{paperformat_print}]
+
\setuplayout
[header=0pt,
footer=0pt,
width=middle,
height=middle]
-\setuppapersize
- [\getdocumentargument{paperformat_paper}]
- [\getdocumentargument{paperformat_print}]
-
\doifnotdocumentargument {bannerheight} {
\setuplayout
[footer=1cm]
diff --git a/tex/context/base/mtx-context-common.tex b/tex/context/base/mtx-context-common.tex
index a34e47747..2db0a5be2 100644
--- a/tex/context/base/mtx-context-common.tex
+++ b/tex/context/base/mtx-context-common.tex
@@ -29,7 +29,7 @@
\startluacode
local paperformat = document.arguments['paperformat'] or 'A4*A4'
- paperformat = string.upper(paperformat)
+ -- paperformat = string.upper(paperformat) -- no, as we don't want to uppercase 'landscape'
local f, t = string.match(paperformat,"^(.-)%s*[%*xX]%s*(.-)$")
if not f then
f, t = "A4", "A4"
diff --git a/tex/context/base/mult-aux.mkiv b/tex/context/base/mult-aux.mkiv
index 3b93bf172..8a0fdd25f 100644
--- a/tex/context/base/mult-aux.mkiv
+++ b/tex/context/base/mult-aux.mkiv
@@ -117,7 +117,7 @@
\expandafter\noexpand\csname named#2hash\endcsname
\expandafter\noexpand\csname check#2parent\endcsname}}
-\unexpanded\def\doinstallparametersethandler#1#2#3#4#5% we can speed thsi up for english
+\unexpanded\def\doinstallparametersethandler#1#2#3#4#5% we can speed this up for english
{\ifx#2\relax\let#2\empty\fi
\unexpanded\def#3{\dosetvalue{#1#2:}}% ##1 {##2} (braces are mandate)
\unexpanded\def#4{\doletvalue{#1#2:}}% ##1 ##2
diff --git a/tex/context/base/node-res.lua b/tex/context/base/node-res.lua
index 3247e153a..836a24b19 100644
--- a/tex/context/base/node-res.lua
+++ b/tex/context/base/node-res.lua
@@ -85,6 +85,7 @@ local glyph = register_node(new_node("glyph",0))
local textdir = register_node(new_node("whatsit",whatsitcodes.dir))
local rule = register_node(new_node("rule"))
local latelua = register_node(new_node("whatsit",whatsitcodes.latelua))
+local special = register_node(new_node("whatsit",whatsitcodes.special))
local user_n = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_n.type = 100 -- 44
local user_l = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_l.type = 110 -- 44
local user_s = register_node(new_node("whatsit",whatsitcodes.userdefined)) user_s.type = 115 -- 44
@@ -371,6 +372,12 @@ function pool.usertokens(id,tokens)
return n
end
+function pool.special(str)
+ local n = copy_node(special)
+ n.data = str
+ return n
+end
+
statistics.register("cleaned up reserved nodes", function()
return format("%s nodes, %s lists of %s", pool.cleanup(tex.count["last_allocated_box"]))
end) -- \topofboxstack
diff --git a/tex/context/base/s-fonts-missing.mkiv b/tex/context/base/s-fonts-missing.mkiv
new file mode 100644
index 000000000..ef45383a0
--- /dev/null
+++ b/tex/context/base/s-fonts-missing.mkiv
@@ -0,0 +1,79 @@
+%D \module
+%D [ file=s-fonts-missing,
+%D version=2011.10.30,
+%D title=\CONTEXT\ Style File,
+%D subtitle=Some Missing Character Info,
+%D author=Hans Hagen,
+%D date=\currentdate,
+%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
+%C
+%C This module is part of the \CONTEXT\ macro||package and is
+%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
+%C details.
+
+\startluacode
+
+ moduledata.fonts = moduledata.fonts or { }
+ moduledata.fonts.tracers = moduledata.fonts.tracers or { }
+ moduledata.fonts.tracers.missing = moduledata.fonts.tracers.missing or { }
+
+ function moduledata.fonts.tracers.missing.legend()
+ local c = fonts.hashes.identifiers[font.current()]
+ local p = c.properties.privates
+ if p then
+ context.starttabulate { "|Tl|c|c|" }
+ context.NC()
+ context.bold("name")
+ context.NC()
+ context.bold("character")
+ context.NC()
+ context.bold("node")
+ context.NC()
+ context.NR()
+ for k, v in table.sortedhash(p) do
+ context.NC()
+ context(k)
+ context.NC()
+ context.dontleavehmode()
+ context.char(v)
+ context.NC()
+ context.dontleavehmode()
+ commands.getprivatechar(k)
+ context.NC()
+ context.NR()
+ end
+ context.stoptabulate()
+ end
+ end
+
+\stopluacode
+
+\def\ModuleFontsTracersMissingLegend
+ {\ctxlua{moduledata.fonts.tracers.missing.legend()}}
+
+\continueifinputfile{s-fonts-missing.mkiv}
+
+\enabletrackers[fonts.missing=replace] % the sooner, the more efficient
+
+% \usemodule[art-01]
+
+% \definefontfeature[default][default][missing=yes] % automatically when enabled
+
+\starttext
+
+ \ModuleFontsTracersMissingLegend
+
+ ½ ⅓ ¼ ⅕ ⅙ ⅛
+
+ \startluacode
+ for i=1,1000 do
+ local c = characters.data[i]
+ if c then
+ context.char(c.unicodeslot)
+ context.space()
+ end
+ end
+ \stopluacode
+
+\stoptext
+
diff --git a/tex/context/base/s-mod-01.mkiv b/tex/context/base/s-mod-01.mkiv
index cca0e96e7..8f78f6107 100644
--- a/tex/context/base/s-mod-01.mkiv
+++ b/tex/context/base/s-mod-01.mkiv
@@ -2,8 +2,8 @@
%D [ file=s-mod-01,
%D version=very-old,
%D title=\CONTEXT\ Style File,
-%D subtitle=Documentation Paper Environment,
-%D author=Hans Hagen,
+%D subtitle=Module Documentation,
+%D author={Hans Hagen \& Luigi Scarso},
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
@@ -11,13 +11,20 @@
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
-%D This module looks like crap, is not documented, will
-%D change, and used to be called modu-*.tex.
-
-% now split in mkii/mkiv so we will cleanup
-
\unprotect
+%D Usage:
+%D
+%D \starttyping
+%D context --ctx=s-mod somefile.mkiv
+%D \stoptyping
+%D
+%D In due time there will be a \type {mtx-context-module} as well.
+%D
+%D Luigi Scarso coordinates the processing of modules so best contact
+%D him when you run into problems. Bugs in this style can be sent to
+%D Hans.
+
\setvariables
[document]
[ file=\jobname,
@@ -130,37 +137,46 @@
\stopsetups
-\unexpanded\def\startmoduledocumentation
- {\starttext
- \page
- \begingroup
- \startdocument}
+% In order to be able to typeset this one too, we need to avoid
+% direct backslashed names.
-\unexpanded\def\stopmoduledocumentation
- {\stopdocument
- \page
- \endgroup
- \stoptext}
+\starttexdefinition startmoduledocumentation
+ \starttext
+ \page
+ \begingroup
+ \startdocument
+\stoptexdefinition
-\unexpanded\def\startdocumentation % grouped !
- {\par
- \bgroup}
+\starttexdefinition stopmoduledocumentation
+ \stopdocument
+ \page
+ \endgroup
+ \stoptext
+\stoptexdefinition
-\unexpanded\def\stopdocumentation
- {\par
- \egroup}
+\starttexdefinition startdocumentation
+ \par
+ \bgroup
+\stoptexdefinition
+
+\starttexdefinition stopdocumentation
+ \par
+ \egroup
+\stoptexdefinition
\definetyping
[definition]
-\unexpanded\def\startcompressdefinitions
- {\blank
- \begingroup
- \setuptyping[definition][bodyfont=small]}
+\starttexdefinition startcompressdefinitions
+ \blank
+ \begingroup
+ \setuptyping[definition][bodyfont=small]
+\stoptexdefinition
-\unexpanded\def\stopcompressdefinitions
- {\blank
- \endgroup}
+\starttexdefinition stopcompressdefinitions
+ \blank
+ \endgroup
+\stoptexdefinition
\definetyping [PL] [\c!option=PL]
\definetyping [JV] [\c!option=JV]
@@ -216,8 +232,14 @@
\defineparagraphs [interface] [\c!n=2]
\setupparagraphs [interface] [1] [\c!width=4cm]
-\def\startexample{\par\startnarrower}
-\def\stopexample {\stopnarrower}
+\starttexdefinition startexample
+ \par
+ \startnarrower
+\stoptexdefinition
+
+\starttexdefinition stopexample
+ \stopnarrower
+\stoptexdefinition
%D Command references:
@@ -327,7 +349,6 @@
[\c!balance=\v!yes,
\c!indicator=\v!no]
-
\setupinteraction
[\c!state=\v!start,
\c!color=,
@@ -336,13 +357,6 @@
% modes
-\doifmode {nocode} { % \startmode ... \stopmode fails in the module documentation
-
- \unexpanded\def\startdefinition{\gobbleuntil\stopdefinition}
- \unexpanded\def\stopdefinition {}
-
-}
-
\doifmode {nocolor} {
\setupcolors
@@ -350,7 +364,7 @@
}
-\doifmode {single} {
+\doifmode {singlesided} {
\setuppagenumbering
[\c!alternative=\v!singlesided]
@@ -364,20 +378,10 @@
% bonus
\usemodule
- [abr-01]
+ [abr-02]
% another one
\dontcomplain
-\protect
-
-\continueifinputfile{s-mod-01.mkiv}
-
-\startmodule
-
- \macros{alpha,beta}
-
- \input ward
-
-\stopmodule
+\protect \endinput
diff --git a/tex/context/base/scrn-ini.mkvi b/tex/context/base/scrn-ini.mkvi
index e7684f02d..42d04cb08 100644
--- a/tex/context/base/scrn-ini.mkvi
+++ b/tex/context/base/scrn-ini.mkvi
@@ -167,6 +167,12 @@
\scrn_identity_synchronize
\to \everysetupinteraction
+\appendtoks % not interfaced i.e. english
+ \doifvariable{document}{metadata:author}{\setupinteraction[author=\documentvariable{metadata:author}]}%
+ \doifvariable{document}{metadata:title}{\setupinteraction[title=\documentvariable{metadata:title}]}%
+ \doifvariable{document}{metadata:subject}{\setupinteraction[subject=\documentvariable{metadata:subject}]}%
+\to \everysetupdocument
+
\setupinteraction
[\c!title=,
\c!subtitle=,
diff --git a/tex/context/base/status-files.pdf b/tex/context/base/status-files.pdf
index a28e52f54..5100ae1d7 100644
--- a/tex/context/base/status-files.pdf
+++ b/tex/context/base/status-files.pdf
@@ -1,21 +1,21 @@
%PDF-1.6
%
17 0 obj
-<>
+<>
stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550023001C00620032>-515<004B0051002F006D004800320062>-515<001C004D002F>-515<00620069007600480032006200560058>]TJ
-1 0 0 1 151.7827 929.3652 Tm [<00650079>-500<006900320074>-22910<003800790064>-500<004B004600420042>-21091<006A00650038>-500<004B004600420070>-17258<006B0039>-500<004B004600700042>-5873<006A00380079>-500<0048006D001C>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550023001C00620032>-515<004B0051002F006D004800320062>-515<001C004D002F>-515<00620069007600480032006200560058>]TJ
+1 0 0 1 151.7827 929.3652 Tm [<00650079>-500<006900320074>-22910<003800790064>-500<004B004600420042>-21091<006A00650033>-500<004B004600420070>-17693<006B0038>-500<004B004600700042>-5873<006A0038006B>-500<0048006D001C>]TJ
ET
q
1 0 0 1 0 923.1064 cm
-[]0 d 0 J 0.3985 w 0 0 m 1338.5507 0 l S
+[]0 d 0 J 0.3985 w 0 0 m 1343.7497 0 l S
Q
q
1 0 0 1 0 923.1064 cm
-[]0 d 0 J 0.3985 w 0 0 m 1338.5507 0 l S
+[]0 d 0 J 0.3985 w 0 0 m 1343.7497 0 l S
Q
BT
/F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-31985<0039>]TJ
@@ -36,11 +36,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 910.4995 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 910.4995 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 910.4995 cm
+1 0 0 1 1161.8245 910.4995 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -54,11 +54,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 896.072 Tm [<0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 896.072 Tm [<0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 896.072 cm
+1 0 0 1 1161.8245 896.072 cm
0 0 25.9878 8.3103 re f
Q
0 g 0 G
@@ -72,11 +72,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 881.6445 Tm [<006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 881.6445 Tm [<006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 881.6445 cm
+1 0 0 1 1161.8245 881.6445 cm
0 0 15.5934 8.3103 re f
Q
0 g 0 G
@@ -99,11 +99,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 867.217 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 867.217 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 867.217 cm
+1 0 0 1 1161.8245 867.217 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -117,11 +117,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 852.7895 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 852.7895 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 852.7895 cm
+1 0 0 1 1161.8245 852.7895 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -144,11 +144,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 838.362 Tm [<00520052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 838.362 Tm [<00520052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 838.362 cm
+1 0 0 1 1161.8245 838.362 cm
0 0 57.1782 8.3103 re f
Q
0 g 0 G
@@ -180,11 +180,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 809.5071 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 809.5071 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 809.5071 cm
+1 0 0 1 1161.8245 809.5071 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -198,11 +198,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 795.0796 Tm [<0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 795.0796 Tm [<0033>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 795.0796 cm
+1 0 0 1 1161.8245 795.0796 cm
0 0 41.5848 8.3103 re f
Q
0 g 0 G
@@ -216,11 +216,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 780.6521 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 780.6521 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 780.6521 cm
+1 0 0 1 1161.8245 780.6521 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -234,11 +234,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 766.2246 Tm [<0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 766.2246 Tm [<0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 766.2246 cm
+1 0 0 1 1161.8245 766.2246 cm
0 0 25.9878 8.3103 re f
Q
0 g 0 G
@@ -261,11 +261,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 751.7971 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 751.7971 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 751.7971 cm
+1 0 0 1 1161.8245 751.7971 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -306,20 +306,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.5029 722.9421 Tm [<0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.702 722.9421 Tm [<0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 722.9421 cm
+1 0 0 1 1161.8245 722.9421 cm
0 0 31.1868 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-87491<006B0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-87926<006B0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 708.5146 cm
+1 0 0 1 1161.8245 708.5146 cm
0 0 129.9461 8.3103 re f
Q
0 g 0 G
@@ -342,20 +342,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-78029<0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-78464<0065>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 679.6596 cm
+1 0 0 1 1042.5311 679.6596 cm
0 0 31.1868 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.5029 679.6596 Tm [<0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.702 679.6596 Tm [<0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 679.6596 cm
+1 0 0 1 1161.8245 679.6596 cm
0 0 31.1868 8.3103 re f
Q
0 g 0 G
@@ -387,11 +387,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 650.8046 Tm [<006A0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 650.8046 Tm [<006A0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 650.8046 cm
+1 0 0 1 1161.8245 650.8046 cm
0 0 181.9252 8.3103 re f
Q
0 g 0 G
@@ -414,11 +414,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 636.3771 Tm [<0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 636.3771 Tm [<0064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 636.3771 cm
+1 0 0 1 1161.8245 636.3771 cm
0 0 36.3858 8.3103 re f
Q
0 g 0 G
@@ -459,11 +459,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 607.5221 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 607.5221 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 607.5221 cm
+1 0 0 1 1161.8245 607.5221 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -486,11 +486,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.5029 593.0946 Tm [<0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.702 593.0946 Tm [<0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 593.0946 cm
+1 0 0 1 1161.8245 593.0946 cm
0 0 31.1868 8.3103 re f
Q
0 g 0 G
@@ -504,20 +504,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 578.6671 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 578.6671 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 578.6671 cm
+1 0 0 1 1161.8245 578.6671 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-87491<00520033>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-87926<00520033>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 564.2396 cm
+1 0 0 1 1161.8245 564.2396 cm
0 0 93.5639 8.3103 re f
Q
0 g 0 G
@@ -531,11 +531,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.346 549.8122 Tm [<00520065>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.545 549.8122 Tm [<00520065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 549.8122 cm
+1 0 0 1 1161.8245 549.8122 cm
0 0 83.1659 8.3103 re f
Q
0 g 0 G
@@ -549,11 +549,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 535.3847 Tm [<0052006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 535.3847 Tm [<0052006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 535.3847 cm
+1 0 0 1 1161.8245 535.3847 cm
0 0 62.3735 8.3103 re f
Q
0 g 0 G
@@ -585,20 +585,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 520.9572 Tm [<006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 520.9572 Tm [<006A>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 520.9572 cm
+1 0 0 1 1042.5311 520.9572 cm
0 0 15.5934 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 520.9572 Tm [<0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 520.9572 Tm [<0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 520.9572 cm
+1 0 0 1 1161.8245 520.9572 cm
0 0 25.9878 8.3103 re f
Q
0 g 0 G
@@ -621,11 +621,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.5029 506.5297 Tm [<004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.702 506.5297 Tm [<004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 506.5297 cm
+1 0 0 1 1161.8245 506.5297 cm
0 0 46.7801 8.3103 re f
Q
0 g 0 G
@@ -648,11 +648,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 492.1022 Tm [<0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 492.1022 Tm [<0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 492.1022 cm
+1 0 0 1 1161.8245 492.1022 cm
0 0 25.9878 8.3103 re f
Q
0 g 0 G
@@ -666,11 +666,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 477.6747 Tm [<0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 477.6747 Tm [<0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 477.6747 cm
+1 0 0 1 1161.8245 477.6747 cm
0 0 20.7924 8.3103 re f
Q
0 g 0 G
@@ -693,11 +693,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 463.2472 Tm [<0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 463.2472 Tm [<0033>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 463.2472 cm
+1 0 0 1 1161.8245 463.2472 cm
0 0 41.5848 8.3103 re f
Q
0 g 0 G
@@ -711,11 +711,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 448.8197 Tm [<006B006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 448.8197 Tm [<006B006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 448.8197 cm
+1 0 0 1 1161.8245 448.8197 cm
0 0 119.5517 8.3103 re f
Q
0 g 0 G
@@ -756,20 +756,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 419.9647 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 419.9647 Tm [<0052>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 419.9647 cm
+1 0 0 1 1042.5311 419.9647 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 419.9647 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 419.9647 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 419.9647 cm
+1 0 0 1 1161.8245 419.9647 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -792,20 +792,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 405.5372 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 405.5372 Tm [<0052>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 405.5372 cm
+1 0 0 1 1042.5311 405.5372 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 405.5372 Tm [<0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 405.5372 Tm [<0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 405.5372 cm
+1 0 0 1 1161.8245 405.5372 cm
0 0 20.7924 8.3103 re f
Q
0 g 0 G
@@ -828,11 +828,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 376.6822 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 376.6822 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 376.6822 cm
+1 0 0 1 1161.8245 376.6822 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -873,11 +873,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.346 347.8272 Tm [<006B0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.545 347.8272 Tm [<006B0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 347.8272 cm
+1 0 0 1 1161.8245 347.8272 cm
0 0 135.1451 8.3103 re f
Q
0 g 0 G
@@ -900,29 +900,29 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 769.8013 333.3997 Tm [<006A006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 769.8013 333.3997 Tm [<006A0039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 788.0927 333.3997 cm
-0 0 171.5308 8.3103 re f
+0 0 176.7298 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 333.3997 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 333.3997 Tm [<0052>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 333.3997 cm
+1 0 0 1 1042.5311 333.3997 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 333.3997 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 333.3997 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 333.3997 cm
+1 0 0 1 1161.8245 333.3997 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -936,20 +936,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 318.9722 Tm [<0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 318.9722 Tm [<0033>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 318.9722 cm
+1 0 0 1 1042.5311 318.9722 cm
0 0 41.5848 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 318.9722 Tm [<0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 318.9722 Tm [<0064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 318.9722 cm
+1 0 0 1 1161.8245 318.9722 cm
0 0 36.3858 8.3103 re f
Q
0 g 0 G
@@ -963,11 +963,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 304.5447 Tm [<006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 304.5447 Tm [<006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 304.5447 cm
+1 0 0 1 1161.8245 304.5447 cm
0 0 15.5934 8.3103 re f
Q
0 g 0 G
@@ -990,11 +990,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 290.1172 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 290.1172 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 290.1172 cm
+1 0 0 1 1161.8245 290.1172 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -1017,11 +1017,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 275.6898 Tm [<0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 275.6898 Tm [<0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 275.6898 cm
+1 0 0 1 1161.8245 275.6898 cm
0 0 25.9878 8.3103 re f
Q
0 g 0 G
@@ -1053,20 +1053,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 246.8348 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 246.8348 Tm [<0052>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 246.8348 cm
+1 0 0 1 1042.5311 246.8348 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 246.8348 Tm [<006B0079>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 246.8348 Tm [<006B0079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 246.8348 cm
+1 0 0 1 1161.8245 246.8348 cm
0 0 103.9583 8.3103 re f
Q
0 g 0 G
@@ -1089,11 +1089,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 232.4073 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 232.4073 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 232.4073 cm
+1 0 0 1 1161.8245 232.4073 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -1116,11 +1116,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 217.9798 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 217.9798 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 217.9798 cm
+1 0 0 1 1161.8245 217.9798 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -1143,11 +1143,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 203.5523 Tm [<006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 203.5523 Tm [<006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 203.5523 cm
+1 0 0 1 1161.8245 203.5523 cm
0 0 15.5934 8.3103 re f
Q
0 g 0 G
@@ -1170,20 +1170,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 189.1248 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 189.1248 Tm [<006B>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 189.1248 cm
+1 0 0 1 1042.5311 189.1248 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 189.1248 Tm [<006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 189.1248 Tm [<006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 189.1248 cm
+1 0 0 1 1161.8245 189.1248 cm
0 0 10.3944 8.3103 re f
Q
0 g 0 G
@@ -1197,11 +1197,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 174.6973 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 174.6973 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 174.6973 cm
+1 0 0 1 1161.8245 174.6973 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -1224,11 +1224,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 145.8423 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 145.8423 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 145.8423 cm
+1 0 0 1 1161.8245 145.8423 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -1251,11 +1251,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.5029 131.4148 Tm [<004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.702 131.4148 Tm [<004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 131.4148 cm
+1 0 0 1 1161.8245 131.4148 cm
0 0 46.7801 8.3103 re f
Q
0 g 0 G
@@ -1278,11 +1278,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 116.9873 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 116.9873 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 116.9873 cm
+1 0 0 1 1161.8245 116.9873 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
@@ -1296,30 +1296,30 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 769.8013 102.5598 Tm [<00520079>]TJ
+/F47 11.955168 Tf 1 0 0 1 769.8013 102.5598 Tm [<0052006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 788.0927 102.5598 cm
-0 0 51.9792 8.3103 re f
+0 0 62.3735 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1025.1976 102.5598 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1030.3966 102.5598 Tm [<006B>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 1037.3321 102.5598 cm
-0 0 5.199 8.3103 re f
+1 0 0 1 1042.5311 102.5598 cm
+0 0 10.3944 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1138.3341 102.5598 Tm [<00520052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1143.5331 102.5598 Tm [<0052006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 102.5598 cm
-0 0 57.1782 8.3103 re f
+1 0 0 1 1161.8245 102.5598 cm
+0 0 67.5725 8.3103 re f
Q
0 g 0 G
BT
@@ -1341,20 +1341,20 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 88.1323 Tm [<0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 88.1323 Tm [<0052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 88.1323 cm
+1 0 0 1 1161.8245 88.1323 cm
0 0 5.199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-87491<00520052>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-87926<00520052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 73.7048 cm
+1 0 0 1 1161.8245 73.7048 cm
0 0 57.1782 8.3103 re f
Q
0 g 0 G
@@ -1395,11 +1395,11 @@ q
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 1144.491 44.8498 Tm [<0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 1149.69 44.8498 Tm [<0064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 1156.6255 44.8498 cm
+1 0 0 1 1161.8245 44.8498 cm
0 0 36.3858 8.3103 re f
Q
0 g 0 G
@@ -1423,566 +1423,566 @@ Q
endstream
endobj
16 0 obj
-<>
+<>
endobj
15 0 obj
<>/ProcSet[/PDF/Text]>>
endobj
22 0 obj
-<>
+<>
stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<0062004200780032>-515<00510037>-515<0055002B0051006000320056>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550040>-515<0042004D002F0042002B001C006900320062>-515<00320074002B0048006D006200420051004D>-514<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<0059>-515<0042004D002F0042002B001C006900320062>-515<0042004D002B0048006D006200420051004D>-515<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<002B0051004B004B0032004D0069>-515<001C004D002F>-515<00620054001C002B00320062>-515<00600032004B005100700032002F00580056>]TJ
-1 0 0 1 127.1431 929.3652 Tm [<006B00790038005200790079>-500<006900320074>-8238<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12282<006B006B004E004E006A00330039>-500<004B004600420070>-14905<00520065006A007900330033>-500<004B004600700042>-4192<006B005200330038004E00330065>-500<0048006D001C>-515<00380038004E0065006A00650038>-515<0059>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 955.7478 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<0062004200780032>-515<00510037>-515<0055002B0051006000320056>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<00550040>-515<0042004D002F0042002B001C006900320062>-515<00320074002B0048006D006200420051004D>-514<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<0059>-515<0042004D002F0042002B001C006900320062>-515<0042004D002B0048006D006200420051004D>-515<00510037>-515<0048001C0060003B0032>-515<002F001C0069001C>-515<003700420048003200620063>-515<002B0051004B004B0032004D0069>-515<001C004D002F>-515<00620054001C002B00320062>-515<00600032004B005100700032002F00580056>]TJ
+1 0 0 1 127.1431 929.3652 Tm [<006B00790038005200790079>-500<006900320074>-8145<0039006B006B00380039004E0079>-500<004B004600420042>-515<0039003300330065007900380038>-515<0059>-12063<006B006A007900520064006B0038>-500<004B004600420070>-14727<0052006500390064006A0064>-500<004B004600700042>-4157<006B006B00790052006B00520039>-500<0048006D001C>-515<00380065005200520038004E006A>-515<0059>]TJ
ET
q
1 0 0 1 0 923.1064 cm
-[]0 d 0 J 0.3985 w 0 0 m 1226.7848 0 l S
+[]0 d 0 J 0.3985 w 0 0 m 1220.5569 0 l S
Q
q
1 0 0 1 0 923.1064 cm
-[]0 d 0 J 0.3985 w 0 0 m 1226.7848 0 l S
+[]0 d 0 J 0.3985 w 0 0 m 1220.5569 0 l S
Q
BT
-/F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-17313<00380052005200380065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 910.4995 Tm [<00420042>-515<00420070>-3090<001C004D002B003F>-17220<00380052005200380065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 910.4995 cm
-0 0 29.1874 8.3103 re f
+1 0 0 1 334.9718 910.4995 cm
+0 0 28.8189 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 910.4995 Tm [<0039006A006A00790064>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 910.4995 Tm [<0039006A006A00790064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 910.4995 cm
-0 0 24.7108 8.3103 re f
+1 0 0 1 614.4494 910.4995 cm
+0 0 24.397 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.1001 910.4995 Tm [<00650038006A0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8722 910.4995 Tm [<00650038006A0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 910.4995 cm
-0 0 3.7287 8.3103 re f
+1 0 0 1 981.4535 910.4995 cm
+0 0 3.6813 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 896.072 Tm [<00420070>-3090<001C006900690060>-41422<00640038004E0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 896.072 Tm [<00420070>-3090<001C006900690060>-41112<00640038004E0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 896.072 cm
-0 0 4.3343 8.3103 re f
+1 0 0 1 614.4494 896.072 cm
+0 0 4.2796 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 896.072 Tm [<0052004E006400380033>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 896.072 Tm [<0052004E0033006A006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 896.072 cm
-0 0 11.2736 8.3103 re f
+1 0 0 1 981.4535 896.072 cm
+0 0 11.1715 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 881.6445 Tm [<00420070>-3090<0023001C002B0046>-40906<005200330064006B0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 881.6445 Tm [<00420070>-3090<0023001C002B0046>-40596<005200330064006B0052>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 881.6445 cm
-0 0 10.6826 8.3103 re f
+1 0 0 1 614.4494 881.6445 cm
+0 0 10.5476 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 881.6445 Tm [<0039006A006A006A0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 881.6445 Tm [<0039006A006A006A0033>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 881.6445 cm
-0 0 24.729 8.3103 re f
+1 0 0 1 981.4535 881.6445 cm
+0 0 24.4153 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 867.217 Tm [<00420042>-515<00420070>-3090<0023004200230048>-17314<006B004E0065006B0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 867.217 Tm [<00420042>-515<00420070>-3090<0023004200230048>-17221<006B004E0065006B0033>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 867.217 cm
-0 0 16.9068 8.3103 re f
+1 0 0 1 334.9718 867.217 cm
+0 0 16.6916 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 867.217 Tm [<003900640064006A006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 867.217 Tm [<003900640064006A006A>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 867.217 cm
-0 0 27.2355 8.3103 re f
+1 0 0 1 614.4494 867.217 cm
+0 0 26.8889 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 867.217 Tm [<0052003300390033006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 867.217 Tm [<0052003300390033006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 867.217 cm
-0 0 10.5476 8.3103 re f
+1 0 0 1 981.4535 867.217 cm
+0 0 10.4126 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 852.7895 Tm [<00420070>-3090<0023004800510023>-41936<006A0039006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 852.7895 Tm [<00420070>-3090<0023004800510023>-41626<006A0039006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.2529 852.7895 cm
+1 0 0 1 614.5461 852.7895 cm
[]0 d 0 J 0.1934 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0881 852.7895 Tm [<006B00520038004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8603 852.7895 Tm [<006B00520038004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 852.7895 cm
-0 0 1.2332 8.3103 re f
+1 0 0 1 981.4535 852.7895 cm
+0 0 1.2149 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 838.362 Tm [<00420042>-515<00420070>-3090<0023006D00370037>-17313<006B0064007900790065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 838.362 Tm [<00420042>-515<00420070>-3090<0023006D00370037>-17220<006B0064007900790065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 838.362 cm
-0 0 15.4073 8.3103 re f
+1 0 0 1 334.9718 838.362 cm
+0 0 15.2139 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 838.362 Tm [<006B006A007900330064>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 838.362 Tm [<006B006A007900330064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 838.362 cm
-0 0 13.1745 8.3103 re f
+1 0 0 1 614.4494 838.362 cm
+0 0 13.0066 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 838.362 Tm [<00390039006A00790039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 838.362 Tm [<00390039006A00790039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 838.362 cm
-0 0 25.28 8.3103 re f
+1 0 0 1 981.4535 838.362 cm
+0 0 24.9589 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 823.9346 Tm [<00230074004B0048>-40906<00520039006B006B0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 823.9346 Tm [<00230074004B0048>-40596<00520039006B006B0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 823.9346 cm
-0 0 8.1178 8.3103 re f
+1 0 0 1 614.4494 823.9346 cm
+0 0 8.0156 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 809.5071 Tm [<00420042>-515<00420070>-3090<002B001C0069002B>-17312<006B0079006B00520039>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 809.5071 Tm [<00420042>-515<00420070>-3090<002B001C0069002B>-17219<006B0079006B00520039>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 809.5071 cm
-0 0 11.5327 8.3103 re f
+1 0 0 1 334.9718 809.5071 cm
+0 0 11.3867 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 809.5071 Tm [<006B006B00380064006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 809.5071 Tm [<006B006B00380064006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 809.5071 cm
-0 0 12.879 8.3103 re f
+1 0 0 1 614.4494 809.5071 cm
+0 0 12.7148 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 963.245 809.5071 Tm [<003300650039>]TJ
+/F47 11.955168 Tf 1 0 0 1 957.0172 809.5071 Tm [<003300650039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.9277 809.5071 cm
-[]0 d 0 J 0.4925 w 0 0 m 0 8.3103 l S
+1 0 0 1 981.6961 809.5071 cm
+[]0 d 0 J 0.4852 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 795.0796 Tm [<00420070>-3090<002B003F001C0060>-41422<006B0064006B0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 795.0796 Tm [<00420070>-3090<002B003F001C0060>-41112<006B0064006B0065>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 795.0796 cm
-0 0 1.5542 8.3103 re f
+1 0 0 1 614.4494 795.0796 cm
+0 0 1.536 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 938.6294 795.0796 Tm [<0040>-515<004E0039003800380065>]TJ
+/F47 11.955168 Tf 1 0 0 1 932.4015 795.0796 Tm [<0040>-515<004E0039003800380065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 795.0796 cm
-0 0 53.9529 8.3103 re f
+1 0 0 1 981.4535 795.0796 cm
+0 0 53.267 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 780.6521 Tm [<00420070>-3090<002B003F0032004B>-40906<00520039003800390038>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 780.6521 Tm [<00420070>-3090<002B003F0032004B>-40596<00520039003800390038>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 780.6521 cm
-0 0 8.3002 8.3103 re f
+1 0 0 1 614.4494 780.6521 cm
+0 0 8.1944 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 780.6521 Tm [<00520039003800790064>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 780.6521 Tm [<00520039003800790064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 780.6521 cm
-0 0 8.2783 8.3103 re f
+1 0 0 1 981.4535 780.6521 cm
+0 0 8.1725 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 766.2246 Tm [<00420070>-3090<002B0048002F0037>-41936<003300520038>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 766.2246 Tm [<00420070>-3090<002B0048002F0037>-41626<003300520038>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.3879 766.2246 cm
-[]0 d 0 J 0.4634 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.6793 766.2246 cm
+[]0 d 0 J 0.4597 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 766.2246 Tm [<006B006A00380052004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 766.2246 Tm [<006B006A00380052004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 766.2246 cm
-0 0 13.4189 8.3103 re f
+1 0 0 1 981.4535 766.2246 cm
+0 0 13.2511 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 751.7971 Tm [<00420042>-515<00420070>-3090<002B005100480051>-16798<0052007900640039004E0079>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 751.7971 Tm [<00420042>-515<00420070>-3090<002B005100480051>-16705<0052007900640039004E0079>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 751.7971 cm
-0 0 61.3301 8.3103 re f
+1 0 0 1 334.9718 751.7971 cm
+0 0 60.5566 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 751.7971 Tm [<003300380038004E0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 751.7971 Tm [<003300380038004E0038>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 751.7971 cm
-0 0 48.8379 8.3103 re f
+1 0 0 1 614.4494 751.7971 cm
+0 0 48.2213 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 751.7971 Tm [<005200330064006B0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 751.7971 Tm [<005200330064006B0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 751.7971 cm
-0 0 10.6826 8.3103 re f
+1 0 0 1 981.4535 751.7971 cm
+0 0 10.5476 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 737.3696 Tm [<00420042>-515<00420070>-3090<002B0051004D0069>-17313<0052004E005200790079>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 737.3696 Tm [<00420042>-515<00420070>-3090<002B0051004D0069>-17220<0052004E005200790079>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 737.3696 cm
-0 0 10.8979 8.3103 re f
+1 0 0 1 334.9718 737.3696 cm
+0 0 10.7592 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 737.3696 Tm [<005200390033006A0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 737.3696 Tm [<005200390033006A0052>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 737.3696 cm
-0 0 8.4607 8.3103 re f
+1 0 0 1 614.4494 737.3696 cm
+0 0 8.3549 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 722.9421 Tm [<00420042>-515<00420070>-3090<002B005100600032>-16797<0052006B00520038006A0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 722.9421 Tm [<00420042>-515<00420070>-3090<002B005100600032>-16704<0052006B00520038006A0052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 722.9421 cm
-0 0 69.342 8.3103 re f
+1 0 0 1 334.9718 722.9421 cm
+0 0 68.4664 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 722.9421 Tm [<00330038004E00790039>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 722.9421 Tm [<003300380039006A004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 722.9421 cm
-0 0 49.0166 8.3103 re f
+1 0 0 1 614.4494 722.9421 cm
+0 0 48.1337 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9432 722.9421 Tm [<006B0064006500790065>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7153 722.9421 Tm [<006B0064004E00790065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 722.9421 cm
-0 0 15.7503 8.3103 re f
+1 0 0 1 981.4535 722.9421 cm
+0 0 15.7211 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-71818<004E0033004E006A0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 708.5146 Tm [<002F001C0069001C>-71297<004E0033004E006A0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 708.5146 cm
-0 0 56.4521 8.3103 re f
+1 0 0 1 981.4535 708.5146 cm
+0 0 55.737 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 694.0871 Tm [<00420042>-515<00420070>-3090<0032004D002B0051>-16798<006B006A004E006A0038006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 694.0871 Tm [<00420042>-515<00420070>-3090<0032004D002B0051>-16705<006B006A004E006A0038006B>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 694.0871 cm
-0 0 136.5716 8.3103 re f
+1 0 0 1 334.9718 694.0871 cm
+0 0 134.8386 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 587.563 694.0871 Tm [<00650038006A0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 583.8562 694.0871 Tm [<00650038006A0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 694.0871 cm
-0 0 3.7287 8.3103 re f
+1 0 0 1 614.4494 694.0871 cm
+0 0 3.6849 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-61460<0052006A0064006A0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 679.6596 Tm [<00420070>-3090<0037004200480032>-60972<0052006A003300520039>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 679.6596 cm
-0 0 7.8368 8.3103 re f
+1 0 0 1 858.0484 679.6596 cm
+0 0 7.7821 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 679.6596 Tm [<006B006B00520079004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 679.6596 Tm [<006B006B00520079004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 679.6596 cm
-0 0 12.6163 8.3103 re f
+1 0 0 1 981.4535 679.6596 cm
+0 0 12.4557 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 665.2321 Tm [<00420042>-4635<0037004200480069>-17828<006B00650052006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 665.2321 Tm [<00420042>-4635<0037004200480069>-17735<006B00650052006B>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 665.2321 cm
-0 0 1.4886 8.3103 re f
+1 0 0 1 334.9718 665.2321 cm
+0 0 1.4703 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 650.8046 Tm [<00420042>-515<00420070>-3090<00370051004D0069>-16797<005200790079005200330052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 650.8046 Tm [<00420042>-515<00420070>-3090<00370051004D0069>-16704<005200790079005200330052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 650.8046 cm
-0 0 57.1599 8.3103 re f
+1 0 0 1 334.9718 650.8046 cm
+0 0 56.4375 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 650.8046 Tm [<004E0052006B006B0079>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 650.8046 Tm [<004E0052006B006B0079>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 650.8046 cm
-0 0 52.0485 8.3103 re f
+1 0 0 1 614.4494 650.8046 cm
+0 0 51.3881 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 944.7743 650.8046 Tm [<00390052004E00790038006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 938.5345 650.8046 Tm [<0039006B00390039006B0064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 650.8046 cm
+1 0 0 1 981.4535 650.8046 cm
0 0 239.1034 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 636.3771 Tm [<00420042>-515<00420070>-3090<003B00600054003F>-17313<00380039003300640065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 636.3771 Tm [<00420042>-515<00420070>-3090<003B00600054003F>-17220<00380039003300640065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 636.3771 cm
-0 0 31.3108 8.3103 re f
+1 0 0 1 334.9718 636.3771 cm
+0 0 30.9131 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.418 636.3771 Tm [<006A0065006500640064>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.7112 636.3771 Tm [<006A0065006500640064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 636.3771 cm
-0 0 20.9274 8.3103 re f
+1 0 0 1 614.4494 636.3771 cm
+0 0 20.661 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 636.3771 Tm [<006A0039005200650079>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 636.3771 Tm [<006A0039005200650079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 636.3771 cm
-0 0 19.4899 8.3103 re f
+1 0 0 1 981.4535 636.3771 cm
+0 0 19.2455 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 621.9496 Tm [<00420042>-515<00420070>-3090<003F001C004D002F>-17313<006B0052004E00390039>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 621.9496 Tm [<00420042>-515<00420070>-3090<003F001C004D002F>-17220<006B0052004E00390039>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 621.9496 cm
-0 0 12.5214 8.3103 re f
+1 0 0 1 334.9718 621.9496 cm
+0 0 12.3609 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 587.563 621.9496 Tm [<00520052004E0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 583.8562 621.9496 Tm [<00520052004E0039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.4973 621.9496 cm
-[]0 d 0 J 0.6823 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.7851 621.9496 cm
+[]0 d 0 J 0.6713 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 607.5221 Tm [<00420042>-515<00420070>-3090<0044001C0070001C>-17313<006B003900380079004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 607.5221 Tm [<00420042>-515<00420070>-3090<0044001C0070001C>-17220<006B003900380079004E>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 607.5221 cm
-0 0 13.9844 8.3103 re f
+1 0 0 1 334.9718 607.5221 cm
+0 0 13.8057 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.418 607.5221 Tm [<005200650038006B004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.7112 607.5221 Tm [<005200650038006B004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 607.5221 cm
-0 0 9.4312 8.3103 re f
+1 0 0 1 614.4494 607.5221 cm
+0 0 9.3108 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0762 607.5221 Tm [<00380079006B006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8483 607.5221 Tm [<00380079006B006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 607.5221 cm
-0 0 2.8677 8.3103 re f
+1 0 0 1 981.4535 607.5221 cm
+0 0 2.8312 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 593.0946 Tm [<00420042>-515<00420070>-3090<0048001C004D003B>-16799<0052006A004E004E006A0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 593.0946 Tm [<00420042>-515<00420070>-3090<0048001C004D003B>-16706<0052006A004E004E006A0038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 593.0946 cm
-0 0 79.8458 8.3103 re f
+1 0 0 1 334.9718 593.0946 cm
+0 0 78.8316 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 593.0946 Tm [<00390052003300330064>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 593.0946 Tm [<00390052003300330064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 593.0946 cm
-0 0 23.9009 8.3103 re f
+1 0 0 1 614.4494 593.0946 cm
+0 0 23.598 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 593.0946 Tm [<003800790052006B004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 593.0946 Tm [<003800790052006B004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 593.0946 cm
-0 0 28.6037 8.3103 re f
+1 0 0 1 981.4535 593.0946 cm
+0 0 28.2388 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 578.6671 Tm [<00420070>-3090<0048001C00760051>-41938<006A00650065>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 578.6671 Tm [<00420070>-3090<0048001C00760051>-41628<006A00650065>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.2602 578.6671 cm
+1 0 0 1 614.5534 578.6671 cm
[]0 d 0 J 0.208 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 963.245 578.6671 Tm [<004E00380079>]TJ
+/F47 11.955168 Tf 1 0 0 1 957.0172 578.6671 Tm [<004E00380079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.9532 578.6671 cm
-[]0 d 0 J 0.5436 w 0 0 m 0 8.3103 l S
+1 0 0 1 981.7217 578.6671 cm
+[]0 d 0 J 0.5363 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-71302<00520065006B006500390064>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 564.2396 Tm [<00480054002F0037>-70781<00520065006B006500390064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 564.2396 cm
-0 0 92.8051 8.3103 re f
+1 0 0 1 981.4535 564.2396 cm
+0 0 91.6266 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 549.8122 Tm [<00420070>-3090<0048006D001C0069>-41421<003300520039006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 549.8122 Tm [<00420070>-3090<0048006D001C0069>-41111<003300520039006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 549.8122 cm
-0 0 4.6444 8.3103 re f
+1 0 0 1 614.4494 549.8122 cm
+0 0 4.5861 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 549.8122 Tm [<0039006A0033006A0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 549.8122 Tm [<0039006A0033006A0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 549.8122 cm
-0 0 25.01 8.3103 re f
+1 0 0 1 981.4535 549.8122 cm
+0 0 24.6926 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 535.3847 Tm [<00420070>-3090<00480074004B0048>-40906<0052006B007900390033>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 535.3847 Tm [<00420070>-3090<00480074004B0048>-40596<0052006B007900390033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 535.3847 cm
-0 0 6.8736 8.3103 re f
+1 0 0 1 614.4494 535.3847 cm
+0 0 6.7861 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 535.3847 Tm [<004E00330033006A0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 535.3847 Tm [<004E00330033006A0064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 535.3847 cm
-0 0 56.3937 8.3103 re f
+1 0 0 1 981.4535 535.3847 cm
+0 0 55.6787 8.3103 re f
Q
0 g 0 G
BT
@@ -1991,322 +1991,322 @@ ET
0 0.8 0 rg 0 0.8 0 RG
q
1 0 0 1 170.0622 520.9572 cm
-0 0 27.6259 8.3103 re f
+0 0 27.2793 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 299.3417 520.9572 Tm [<003300790064006B0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 298.2217 520.9572 Tm [<003300790064006B0065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 520.9572 cm
-0 0 46.0614 8.3103 re f
+1 0 0 1 334.9718 520.9572 cm
+0 0 45.4777 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 520.9572 Tm [<0039006A0039006B004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 520.9572 Tm [<0039006A0039006B004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 520.9572 cm
-0 0 24.7801 8.3103 re f
+1 0 0 1 614.4494 520.9572 cm
+0 0 24.4664 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 827.1201 520.9572 Tm [<006B006B003800390038>]TJ
+/F47 11.955168 Tf 1 0 0 1 821.2863 520.9572 Tm [<006B006B003800390038>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 520.9572 cm
-0 0 12.8644 8.3103 re f
+1 0 0 1 858.0484 520.9572 cm
+0 0 12.7002 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9432 520.9572 Tm [<006A00330064004E0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7153 520.9572 Tm [<006A00330064004E0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 520.9572 cm
-0 0 22.135 8.3103 re f
+1 0 0 1 981.4535 520.9572 cm
+0 0 21.8577 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 506.5297 Tm [<00420042>-515<00420070>-3090<004B001C0069003F>-16799<00520079006500650038006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 506.5297 Tm [<00420042>-515<00420070>-3090<004B001C0069003F>-16706<00520079006500650038006A>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 506.5297 cm
-0 0 60.8558 8.3103 re f
+1 0 0 1 334.9718 506.5297 cm
+0 0 60.0823 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 506.5297 Tm [<006500390052006B006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 506.5297 Tm [<006500390052006B006A>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 506.5297 cm
-0 0 36.5864 8.3103 re f
+1 0 0 1 614.4494 506.5297 cm
+0 0 36.1231 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9671 506.5297 Tm [<004E0065004E004E0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7392 506.5297 Tm [<004E0065004E004E0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 506.5297 cm
-0 0 55.343 8.3103 re f
+1 0 0 1 981.4535 506.5297 cm
+0 0 54.6425 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 492.1022 Tm [<00420042>-515<00420070>-3090<004B00320069001C>-17314<00640052006A0065004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 492.1022 Tm [<00420042>-515<00420070>-3090<004B00320069001C>-17221<00640052006A0065004E>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 492.1022 cm
-0 0 40.7201 8.3103 re f
+1 0 0 1 334.9718 492.1022 cm
+0 0 40.2057 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 492.1022 Tm [<0039004E006B006B006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.7112 492.1022 Tm [<0039004E006A00330065>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 492.1022 cm
-0 0 28.0856 8.3103 re f
+1 0 0 1 614.4494 492.1022 cm
+0 0 27.8229 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 492.1022 Tm [<006B0033004E00390038>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 492.1022 Tm [<006B0033004E00390038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 492.1022 cm
-0 0 16.5164 8.3103 re f
+1 0 0 1 981.4535 492.1022 cm
+0 0 16.3048 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 477.6747 Tm [<00420070>-3090<004B004800420023>-41421<006A006B00330039>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 477.6747 Tm [<00420070>-3090<004B004800420023>-41111<006A006B00330039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 477.6747 cm
-0 0 1.8753 8.3103 re f
+1 0 0 1 614.4494 477.6747 cm
+0 0 1.8498 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 477.6747 Tm [<0039006A006B00380065>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 477.6747 Tm [<00390039005200650033>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 477.6747 cm
-0 0 24.6816 8.3103 re f
+1 0 0 1 981.4535 477.6747 cm
+0 0 24.8823 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 463.2472 Tm [<00420042>-515<00420070>-3090<004B006D00480069>-16282<0040>-515<006A0039007900330038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 463.2472 Tm [<00420042>-515<00420070>-3090<004B006D00480069>-16189<0040>-515<006A0039007900330038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 463.2472 cm
-0 0 19.4498 8.3103 re f
+1 0 0 1 334.9718 463.2472 cm
+0 0 19.2017 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 463.2472 Tm [<00390079006500640039>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 463.2472 Tm [<00390079006500640039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 463.2472 cm
-0 0 23.2076 8.3103 re f
+1 0 0 1 614.4494 463.2472 cm
+0 0 22.9121 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 938.6055 463.2472 Tm [<0040>-515<00330079003900330052>]TJ
+/F47 11.955168 Tf 1 0 0 1 932.3776 463.2472 Tm [<0040>-515<00330079003900330052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 463.2472 cm
-0 0 45.9228 8.3103 re f
+1 0 0 1 981.4535 463.2472 cm
+0 0 45.339 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 448.8197 Tm [<00420070>-3090<004D0051002F0032>-40906<0052006B006400790039>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 448.8197 Tm [<00420070>-3090<004D0051002F0032>-40596<0052006B006400790039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 448.8197 cm
-0 0 7.2494 8.3103 re f
+1 0 0 1 614.4494 448.8197 cm
+0 0 7.1582 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 944.7743 448.8197 Tm [<005200520079006500790038>]TJ
+/F47 11.955168 Tf 1 0 0 1 938.5345 448.8197 Tm [<00520052007900640039006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 448.8197 cm
-0 0 63.1105 8.3103 re f
+1 0 0 1 981.4535 448.8197 cm
+0 0 62.3881 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 434.3922 Tm [<00420042>-515<00420070>-3090<004D00510060004B>-17312<006B0039006B00380079>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 434.3922 Tm [<00420042>-515<00420070>-3090<004D00510060004B>-17219<006B0039006B00380079>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 434.3922 cm
-0 0 13.8348 8.3103 re f
+1 0 0 1 334.9718 434.3922 cm
+0 0 13.6597 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 599.8648 434.3922 Tm [<006B0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 596.158 434.3922 Tm [<006B0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1635 434.3922 cm
+1 0 0 1 614.4567 434.3922 cm
[]0 d 0 J 0.0146 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 419.9647 Tm [<00420042>-515<00420070>-3090<0054001C002B0046>-17312<00330052007900640038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 419.9647 Tm [<00420042>-515<00420070>-3090<0054001C002B0046>-17219<00330052007900640038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 419.9647 cm
-0 0 46.2584 8.3103 re f
+1 0 0 1 334.9718 419.9647 cm
+0 0 45.6747 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 419.9647 Tm [<004E0052006A0038006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 419.9647 Tm [<004E0052006A0038006A>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 419.9647 cm
-0 0 52.1251 8.3103 re f
+1 0 0 1 614.4494 419.9647 cm
+0 0 51.4647 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 833.289 419.9647 Tm [<00520039004E0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 827.4551 419.9647 Tm [<00520039004E0039>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 864.3091 419.9647 cm
-[]0 d 0 J 0.8537 w 0 0 m 0 8.3103 l S
+1 0 0 1 858.4698 419.9647 cm
+[]0 d 0 J 0.8428 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0881 419.9647 Tm [<006B00650064006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8603 419.9647 Tm [<006B00650064006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 419.9647 cm
-0 0 1.525 8.3103 re f
+1 0 0 1 981.4535 419.9647 cm
+0 0 1.5068 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 405.5372 Tm [<00420042>-515<00420070>-3090<0054001C003B0032>-16797<006B00640033007900790038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 405.5372 Tm [<00420042>-515<00420070>-3090<0054001C003B0032>-16704<006B00640033007900790038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 405.5372 cm
-0 0 158.6263 8.3103 re f
+1 0 0 1 334.9718 405.5372 cm
+0 0 156.6161 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 575.2372 405.5372 Tm [<006B00330052007900790052>]TJ
+/F47 11.955168 Tf 1 0 0 1 571.5304 405.5372 Tm [<006B00330052007900790052>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 405.5372 cm
-0 0 160.3338 8.3103 re f
+1 0 0 1 614.4494 405.5372 cm
+0 0 158.3053 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 833.277 405.5372 Tm [<006A006A00390052>]TJ
+/F47 11.955168 Tf 1 0 0 1 827.4432 405.5372 Tm [<006A006A00390052>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 405.5372 cm
-0 0 1.9081 8.3103 re f
+1 0 0 1 858.0484 405.5372 cm
+0 0 1.8826 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 405.5372 Tm [<00520038003900640065>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 405.5372 Tm [<00520038003900640065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 405.5372 cm
-0 0 8.8292 8.3103 re f
+1 0 0 1 981.4535 405.5372 cm
+0 0 8.7197 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 391.1097 Tm [<0054002F00370060>-17313<006A006B006500520079>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 391.1097 Tm [<0054002F00370060>-17220<006A006B006500520079>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 391.1097 cm
-0 0 18.607 8.3103 re f
+1 0 0 1 334.9718 391.1097 cm
+0 0 18.3698 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 376.6822 Tm [<00420070>-3090<0054003F00760062>-41421<0064006400390038>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 376.6822 Tm [<00420070>-3090<0054003F00760062>-41111<0064006400390038>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 376.6822 cm
-0 0 4.4182 8.3103 re f
+1 0 0 1 614.4494 376.6822 cm
+0 0 4.3635 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.1001 376.6822 Tm [<004E00390039004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8722 376.6822 Tm [<004E00390039004E>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 376.6822 cm
-0 0 5.3924 8.3103 re f
+1 0 0 1 981.4535 376.6822 cm
+0 0 5.3231 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 362.2547 Tm [<00420042>-515<00420070>-3090<0054006000510054>-17828<004E00790039006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 362.2547 Tm [<00420042>-515<00420070>-3090<0054006000510054>-17735<004E00790039006B>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 362.2547 cm
-0 0 5.1589 8.3103 re f
+1 0 0 1 334.9718 362.2547 cm
+0 0 5.0932 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 587.551 362.2547 Tm [<0052005200330038>]TJ
+/F47 11.955168 Tf 1 0 0 1 583.8442 362.2547 Tm [<0052005200330038>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.4937 362.2547 cm
-[]0 d 0 J 0.675 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.7832 362.2547 cm
+[]0 d 0 J 0.6677 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 347.8272 Tm [<00420042>-515<00420070>-3090<00600032003B0042>-16800<00520039004E006500790065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 347.8272 Tm [<00420042>-515<00420070>-3090<00600032003B0042>-16707<00520039004E006500790065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 347.8272 cm
-0 0 85.3623 8.3103 re f
+1 0 0 1 334.9718 347.8272 cm
+0 0 84.2823 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 593.7079 347.8272 Tm [<006A0033006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 590.0011 347.8272 Tm [<006A0033006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.2657 347.8272 cm
-[]0 d 0 J 0.2189 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.557 347.8272 cm
+[]0 d 0 J 0.2153 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 347.8272 Tm [<0038006B006400330079>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 347.8272 Tm [<0038006B006400330079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 347.8272 cm
-0 0 30.1141 8.3103 re f
+1 0 0 1 981.4535 347.8272 cm
+0 0 29.7347 8.3103 re f
Q
0 g 0 G
BT
@@ -2315,484 +2315,484 @@ ET
0 0.8 0 rg 0 0.8 0 RG
q
1 0 0 1 170.0622 333.3997 cm
-0 0 88.3211 8.3103 re f
+0 0 87.2011 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 299.3417 333.3997 Tm [<006A004E007900640039>]TJ
+/F47 11.955168 Tf 1 0 0 1 298.2217 333.3997 Tm [<006A004E007900640039>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 333.3997 cm
-0 0 22.2955 8.3103 re f
+1 0 0 1 334.9718 333.3997 cm
+0 0 22.011 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 333.3997 Tm [<0033006B006A00520038>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 333.3997 Tm [<0033006A006A00380079>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 333.3997 cm
-0 0 46.9662 8.3103 re f
+1 0 0 1 614.4494 333.3997 cm
+0 0 46.9553 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 833.289 333.3997 Tm [<0039006A0038004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 827.4551 333.3997 Tm [<0039006A0038004E>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 333.3997 cm
-0 0 2.4882 8.3103 re f
+1 0 0 1 858.0484 333.3997 cm
+0 0 2.4554 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0762 333.3997 Tm [<00640079006A0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8483 333.3997 Tm [<00640079006A0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 333.3997 cm
-0 0 4.0133 8.3103 re f
+1 0 0 1 981.4535 333.3997 cm
+0 0 3.9622 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 318.9722 Tm [<00420042>-515<00420070>-3090<0062002B0060004D>-17313<0033003900390065006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 318.9722 Tm [<00420042>-515<00420070>-3090<0062002B0060004D>-17220<0033003900390065006A>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 318.9722 cm
-0 0 48.1921 8.3103 re f
+1 0 0 1 334.9718 318.9722 cm
+0 0 47.5828 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 827.1201 318.9722 Tm [<00330079006400640064>]TJ
+/F47 11.955168 Tf 1 0 0 1 821.2982 318.9722 Tm [<00330052005200520065>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 318.9722 cm
-0 0 46.0906 8.3103 re f
+1 0 0 1 858.0484 318.9722 cm
+0 0 45.6966 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 318.9722 Tm [<005200520079006A0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 318.9722 Tm [<005200520079006A0065>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 318.9722 cm
-0 0 6.2972 8.3103 re f
+1 0 0 1 981.4535 318.9722 cm
+0 0 6.2169 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 304.5447 Tm [<00420070>-3090<0062002B00600054>-41936<003300390064>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 304.5447 Tm [<00420070>-3090<0062002B00600054>-41626<003300390064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.397 304.5447 cm
-[]0 d 0 J 0.4816 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.6884 304.5447 cm
+[]0 d 0 J 0.4779 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9432 304.5447 Tm [<006B0065004E00640064>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7153 304.5447 Tm [<006B0065004E00640064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 304.5447 cm
-0 0 15.3927 8.3103 re f
+1 0 0 1 981.4535 304.5447 cm
+0 0 15.1994 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 290.1172 Tm [<00420042>-515<00420070>-3090<0062005100600069>-17313<006B0079006B004E0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 290.1172 Tm [<00420042>-515<00420070>-3090<0062005100600069>-17220<006B0079006B004E0033>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 290.1172 cm
-0 0 11.5801 8.3103 re f
+1 0 0 1 334.9718 290.1172 cm
+0 0 11.4342 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 593.7199 290.1172 Tm [<0052006A004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 590.0131 290.1172 Tm [<0052006A004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1964 290.1172 cm
-[]0 d 0 J 0.0803 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.4877 290.1172 cm
+[]0 d 0 J 0.0766 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 290.1172 Tm [<006A006A006B0052006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 290.1172 Tm [<006A006A006B0052006A>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 290.1172 cm
-0 0 18.9499 8.3103 re f
+1 0 0 1 981.4535 290.1172 cm
+0 0 18.7091 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 275.6898 Tm [<00420042>-515<00420070>-3090<00620054001C002B>-17312<00330038006A006A0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 275.6898 Tm [<00420042>-515<00420070>-3090<00620054001C002B>-17219<00330038006A006A0039>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 275.6898 cm
-0 0 48.6883 8.3103 re f
+1 0 0 1 334.9718 275.6898 cm
+0 0 48.0717 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.4061 275.6898 Tm [<00330038006500520064>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6993 275.6898 Tm [<00330038006500520064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 275.6898 cm
-0 0 48.8524 8.3103 re f
+1 0 0 1 614.4494 275.6898 cm
+0 0 48.2322 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 275.6898 Tm [<006A00330079006B0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 275.6898 Tm [<006A00330079006B0038>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 275.6898 cm
-0 0 21.6972 8.3103 re f
+1 0 0 1 981.4535 275.6898 cm
+0 0 21.4199 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 261.2623 Tm [<00420042>-4635<006200540032002B>-16798<0052006A006A006A004E0038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 261.2623 Tm [<00420042>-4635<006200540032002B>-16705<0052006A006A006A004E0038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 261.2623 cm
-0 0 76.1135 8.3103 re f
+1 0 0 1 334.9718 261.2623 cm
+0 0 75.1503 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 246.8348 Tm [<00420042>-515<00420070>-3090<006200690060002B>-16798<006A00390065007900640052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 246.8348 Tm [<00420042>-515<00420070>-3090<006200690060002B>-16705<006A00390065007900640052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 246.8348 cm
-0 0 197.4602 8.3103 re f
+1 0 0 1 334.9718 246.8348 cm
+0 0 194.961 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 575.2731 246.8348 Tm [<006B004E003900390065004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 571.5663 246.8348 Tm [<006B004E003900390065004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 246.8348 cm
-0 0 168.0174 8.3103 re f
+1 0 0 1 614.4494 246.8348 cm
+0 0 165.8904 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 827.144 246.8348 Tm [<006B00650033006A0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 821.3102 246.8348 Tm [<006B00650033006A0065>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 246.8348 cm
-0 0 15.3125 8.3103 re f
+1 0 0 1 858.0484 246.8348 cm
+0 0 15.1191 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 944.7624 246.8348 Tm [<005200390033003800330079>]TJ
+/F47 11.955168 Tf 1 0 0 1 938.5345 246.8348 Tm [<005200390033003800330079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 246.8348 cm
-0 0 84.7785 8.3103 re f
+1 0 0 1 981.4535 246.8348 cm
+0 0 83.7022 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 232.4073 Tm [<00420042>-515<00420070>-3090<0062006D00540054>-16797<005200640052007900640038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 232.4073 Tm [<00420042>-515<00420070>-3090<0062006D00540054>-16704<005200640052007900640038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 232.4073 cm
-0 0 97.6137 8.3103 re f
+1 0 0 1 334.9718 232.4073 cm
+0 0 96.3769 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.418 232.4073 Tm [<00650039004E0039006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.7112 232.4073 Tm [<00650039003300520065>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 232.4073 cm
-0 0 37.0534 8.3103 re f
+1 0 0 1 614.4494 232.4073 cm
+0 0 36.5135 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0762 232.4073 Tm [<006A006A00640039>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8483 232.4073 Tm [<006A006A00640039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 232.4073 cm
-0 0 1.9264 8.3103 re f
+1 0 0 1 981.4535 232.4073 cm
+0 0 1.9008 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 217.9798 Tm [<00420042>-515<00420070>-3090<00620076004B0023>-17312<0033006B0033006A0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 217.9798 Tm [<00420042>-515<00420070>-3090<00620076004B0023>-17219<0033006B0033006A0064>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 217.9798 cm
-0 0 47.2654 8.3103 re f
+1 0 0 1 334.9718 217.9798 cm
+0 0 46.667 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 217.9798 Tm [<006A0052006A00640079>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 217.9798 Tm [<006A0052006A00640079>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 217.9798 cm
-0 0 17.8992 8.3103 re f
+1 0 0 1 614.4494 217.9798 cm
+0 0 17.673 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 963.257 217.9798 Tm [<004E004E0079>]TJ
+/F47 11.955168 Tf 1 0 0 1 957.0291 217.9798 Tm [<004E004E0079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.9641 217.9798 cm
-[]0 d 0 J 0.5655 w 0 0 m 0 8.3103 l S
+1 0 0 1 981.7326 217.9798 cm
+[]0 d 0 J 0.5582 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 203.5523 Tm [<00420042>-515<00420070>-3090<0062007600620069>-16798<0052006B0038006500520064>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 203.5523 Tm [<00420042>-515<00420070>-3090<0062007600620069>-16705<0052006B0038006500520064>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 203.5523 cm
-0 0 71.6734 8.3103 re f
+1 0 0 1 334.9718 203.5523 cm
+0 0 70.7686 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 575.2372 203.5523 Tm [<00520052006400790079006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 571.5304 203.5523 Tm [<00520052006400790079006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 203.5523 cm
-0 0 66.7589 8.3103 re f
+1 0 0 1 614.4494 203.5523 cm
+0 0 65.9125 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0762 203.5523 Tm [<006A003900390052>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8483 203.5523 Tm [<006A003900390052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 203.5523 cm
-0 0 1.9629 8.3103 re f
+1 0 0 1 981.4535 203.5523 cm
+0 0 1.9373 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 189.1248 Tm [<00420042>-515<00420070>-3090<0069001C00230048>-16798<0052005200380065006B006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 189.1248 Tm [<00420042>-515<00420070>-3090<0069001C00230048>-16705<0052005200380065006B006A>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 189.1248 cm
-0 0 65.9709 8.3103 re f
+1 0 0 1 334.9718 189.1248 cm
+0 0 65.1354 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 575.2492 189.1248 Tm [<0052006A006A0064004E006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 571.5424 189.1248 Tm [<0052006A006A0064004E006A>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 189.1248 cm
-0 0 76.3397 8.3103 re f
+1 0 0 1 614.4494 189.1248 cm
+0 0 75.3729 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 833.289 189.1248 Tm [<004E006B0033006A>]TJ
+/F47 11.955168 Tf 1 0 0 1 827.4551 189.1248 Tm [<004E006B0033006A>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 863.8822 189.1248 cm
-0 0 5.2975 8.3103 re f
+1 0 0 1 858.0484 189.1248 cm
+0 0 5.2282 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 189.1248 Tm [<00520052003800650039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 189.1248 Tm [<00520052003800650039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 189.1248 cm
-0 0 6.6 8.3103 re f
+1 0 0 1 981.4535 189.1248 cm
+0 0 6.5161 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 174.6973 Tm [<00420070>-3090<0069001C00620046>-41937<00520052004E>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 174.6973 Tm [<00420070>-3090<0069001C00620046>-41627<00520052004E>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1909 174.6973 cm
-[]0 d 0 J 0.0693 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.4823 174.6973 cm
+[]0 d 0 J 0.0657 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.1001 174.6973 Tm [<0065006500790039>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8722 174.6973 Tm [<006500330065006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 174.6973 cm
-0 0 3.7688 8.3103 re f
+1 0 0 1 981.4535 174.6973 cm
+0 0 3.8673 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 160.2698 Tm [<00420042>-4635<0069003F0060002F>-17312<00640039003800790052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 160.2698 Tm [<00420042>-4635<0069003F0060002F>-17219<00640039003800790052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 160.2698 cm
-0 0 42.5078 8.3103 re f
+1 0 0 1 334.9718 160.2698 cm
+0 0 41.9715 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 18.4707 145.8423 Tm [<00420070>-3090<0069005100460062>-41421<0052006B006A0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 18.4707 145.8423 Tm [<00420070>-3090<0069005100460062>-41111<0052006B006A0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.5101 145.8423 cm
-[]0 d 0 J 0.7078 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.7978 145.8423 cm
+[]0 d 0 J 0.6968 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 957.0762 145.8423 Tm [<003800390039006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 950.8483 145.8423 Tm [<003800390039006B>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 145.8423 cm
-0 0 3.1048 8.3103 re f
+1 0 0 1 981.4535 145.8423 cm
+0 0 3.0647 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 131.4148 Tm [<00420042>-515<00420070>-3090<00690060001C002B>-17313<0052006A003900390065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 131.4148 Tm [<00420042>-515<00420070>-3090<00690060001C002B>-17220<0052006A003900390065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 131.4148 cm
-0 0 7.6726 8.3103 re f
+1 0 0 1 334.9718 131.4148 cm
+0 0 7.5741 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.3941 131.4148 Tm [<005200390038006A0033>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 131.4148 Tm [<005200390038006A0033>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 131.4148 cm
-0 0 8.2965 8.3103 re f
+1 0 0 1 614.4494 131.4148 cm
+0 0 8.1907 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9312 131.4148 Tm [<006A0033006500390052>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7034 131.4148 Tm [<006A0033006500390052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 131.4148 cm
-0 0 22.0474 8.3103 re f
+1 0 0 1 981.4535 131.4148 cm
+0 0 21.7702 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 116.9873 Tm [<00420042>-515<00420070>-3090<0069007600540032>-16797<006A00380033005200380038>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 116.9873 Tm [<00420042>-515<00420070>-3090<0069007600540032>-16704<006A00380033005200380038>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 116.9873 cm
-0 0 204.3557 8.3103 re f
+1 0 0 1 334.9718 116.9873 cm
+0 0 201.769 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 575.2611 116.9873 Tm [<005200650039004E006A0064>]TJ
+/F47 11.955168 Tf 1 0 0 1 571.5543 116.9873 Tm [<005200650039004E006A0064>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 116.9873 cm
-0 0 94.1112 8.3103 re f
+1 0 0 1 614.4494 116.9873 cm
+0 0 92.9182 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 963.245 116.9873 Tm [<006500380079>]TJ
+/F47 11.955168 Tf 1 0 0 1 957.0172 116.9873 Tm [<006500380079>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.8675 116.9873 cm
-[]0 d 0 J 0.3721 w 0 0 m 0 8.3103 l S
+1 0 0 1 981.6359 116.9873 cm
+[]0 d 0 J 0.3648 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 102.5598 Tm [<00420042>-515<00420070>-3090<0069007600540051>-18342<005200390064>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 102.5598 Tm [<00420042>-515<00420070>-3090<0069007600540051>-18249<005200390064>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.1338 102.5598 cm
+1 0 0 1 335.0138 102.5598 cm
[]0 d 0 J 0.0839 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.43 102.5598 Tm [<0052004E006B004E0065>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.6873 102.5598 Tm [<006B00520079006A0079>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 102.5598 cm
-0 0 11.011 8.3103 re f
+1 0 0 1 614.4494 102.5598 cm
+0 0 11.8464 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 839.4339 102.5598 Tm [<006400520033>]TJ
+/F47 11.955168 Tf 1 0 0 1 827.4671 102.5598 Tm [<0052004E0039004E>]TJ
ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
-1 0 0 1 864.0865 102.5598 cm
-[]0 d 0 J 0.4086 w 0 0 m 0 8.3103 l S
+1 0 0 1 858.0484 102.5598 cm
+0 0 1.0982 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 102.5598 Tm [<0038006B0064006B0039>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.7153 102.5598 Tm [<006500790033004E0039>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 102.5598 cm
-0 0 30.0849 8.3103 re f
+1 0 0 1 981.4535 102.5598 cm
+0 0 34.3062 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 88.1323 Tm [<00420042>-515<00420070>-3090<006D004D0042002B>-17314<00380065006A00380065>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 88.1323 Tm [<00420042>-515<00420070>-3090<006D004D0042002B>-17221<00380065006A00380065>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 88.1323 cm
-0 0 32.1572 8.3103 re f
+1 0 0 1 334.9718 88.1323 cm
+0 0 31.7486 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 593.7199 88.1323 Tm [<003900650039>]TJ
+/F47 11.955168 Tf 1 0 0 1 590.0131 88.1323 Tm [<003900650039>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.2894 88.1323 cm
-[]0 d 0 J 0.2663 w 0 0 m 0 8.3103 l S
+1 0 0 1 614.5808 88.1323 cm
+[]0 d 0 J 0.2627 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 963.2331 88.1323 Tm [<006A00390064>]TJ
+/F47 11.955168 Tf 1 0 0 1 957.0052 88.1323 Tm [<006A00390064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.7799 88.1323 cm
+1 0 0 1 981.552 88.1323 cm
[]0 d 0 J 0.197 w 0 0 m 0 8.3103 l S
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-71815<006A0079006A00640064>]TJ
+/F47 11.955168 Tf 1 0 0 1 67.7259 73.7048 Tm [<006D006900420048>-71294<006A0079006A00640064>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 73.7048 cm
-0 0 17.3337 8.3103 re f
+1 0 0 1 981.4535 73.7048 cm
+0 0 17.1148 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 59.2773 Tm [<00420042>-4635<0070003200600023>-17312<0064006B0038006B0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 59.2773 Tm [<00420042>-4635<0070003200600023>-17219<0064006B0038006B0052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 59.2773 cm
-0 0 41.3805 8.3103 re f
+1 0 0 1 334.9718 59.2773 cm
+0 0 40.8551 8.3103 re f
Q
0 g 0 G
BT
@@ -2801,68 +2801,68 @@ ET
0 0.8 0 rg 0 0.8 0 RG
q
1 0 0 1 170.0622 44.8498 cm
-0 0 1.0799 8.3103 re f
+0 0 1.0653 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 293.1729 44.8498 Tm [<006B0064006A006A00520079>]TJ
+/F47 11.955168 Tf 1 0 0 1 292.0528 44.8498 Tm [<006B0064006A006A00520079>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 44.8498 cm
-0 0 155.9447 8.3103 re f
+1 0 0 1 334.9718 44.8498 cm
+0 0 153.9709 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 581.43 44.8498 Tm [<004E006500380065006B>]TJ
+/F47 11.955168 Tf 1 0 0 1 577.7232 44.8498 Tm [<004E006500380065006B>]TJ
ET
0.8 0 0 rg 0.8 0 0 RG
q
-1 0 0 1 618.1562 44.8498 cm
-0 0 55.0949 8.3103 re f
+1 0 0 1 614.4494 44.8498 cm
+0 0 54.3981 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 950.9193 44.8498 Tm [<006A0064003900330052>]TJ
+/F47 11.955168 Tf 1 0 0 1 944.6914 44.8498 Tm [<006A0064003900330052>]TJ
ET
0.725 g 0.725 G
q
-1 0 0 1 987.6814 44.8498 cm
-0 0 21.3871 8.3103 re f
+1 0 0 1 981.4535 44.8498 cm
+0 0 21.1135 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 30.4223 Tm [<00420042>-4635<0074003200690074>-16798<0052006B0065006A006B0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 30.4223 Tm [<00420042>-4635<0074003200690074>-16705<0052006B0065006A006B0052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 30.4223 cm
-0 0 72.0747 8.3103 re f
+1 0 0 1 334.9718 30.4223 cm
+0 0 71.1626 8.3103 re f
Q
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 15.9948 Tm [<00420042>-4635<00740069001C003B>-16800<006B0052004E004E004E0052>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 15.9948 Tm [<00420042>-4635<00740069001C003B>-16707<006B0052004E004E004E0052>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
-1 0 0 1 336.0919 15.9948 cm
-0 0 125.5242 8.3103 re f
+1 0 0 1 334.9718 15.9948 cm
+0 0 123.9334 8.3103 re f
Q
endstream
endobj
21 0 obj
-<>
+<>
endobj
20 0 obj
<>/ProcSet[/PDF/Text]>>
endobj
25 0 obj
-<>
+<>
stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<004D006D004B002300320060>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
@@ -3717,7 +3717,7 @@ Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 326.0144 238.413 cm
-0 0 11.9552 137.2247 re f
+0 0 11.9552 141.3839 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
@@ -4081,17 +4081,17 @@ Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 175.8057 25.1898 cm
-0 0 11.9552 41.5833 re f
+0 0 11.9552 49.8988 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 187.7609 25.1898 cm
-0 0 11.9552 4.1592 re f
+0 0 11.9552 8.3155 re f
Q
0.725 g 0.725 G
q
1 0 0 1 199.716 25.1898 cm
-0 0 11.9552 45.7425 re f
+0 0 11.9552 54.058 re f
Q
0.6 g 0.6 G
q
@@ -4220,27 +4220,27 @@ endobj
<>/ProcSet[/PDF/Text]>>
endobj
28 0 obj
-<>
+<>
stream
0 g 0 G
0 g 0 G
BT
-/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<0050002B00690051002300320060>-515<006B0033002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<0062004200780032>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ
+/F47 11.955168 Tf 1 0 0 1 0 868.7968 Tm [<004C005100700032004B002300320060>-515<006B002D>-515<006B007900520052>-515<0040>-515<0068003F0032>-515<006000320048001C0069004200700032>-515<0062004200780032>-515<00510037>-515<00370042004800320062>-515<006D00620032002F>-515<0042004D>-515<002A0051004D0068003200730069>-515<0055006900320074002D>-515<004B004600420042002D>-515<004B004600420070002D>-515<004B004600700042002D>-514<0048006D001C00560058>]TJ
ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 13.6418 673.7576 cm
-0 0 11.9552 23.3499 re f
+0 0 11.9552 23.0551 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 25.597 673.7576 cm
-0 0 11.9552 19.7686 re f
+0 0 11.9552 19.5176 re f
Q
0.725 g 0.725 G
q
1 0 0 1 49.5073 673.7576 cm
-0 0 11.9552 2.983 re f
+0 0 11.9552 2.945 re f
Q
0.6 g 0.6 G
q
@@ -4254,12 +4254,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 100.7013 673.7576 cm
-0 0 11.9552 3.4675 re f
+0 0 11.9552 3.4237 re f
Q
0.725 g 0.725 G
q
1 0 0 1 124.6117 673.7576 cm
-0 0 11.9552 9.0189 re f
+0 0 11.9552 8.9372 re f
Q
0.6 g 0.6 G
q
@@ -4273,12 +4273,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 175.8057 673.7576 cm
-0 0 11.9552 8.5461 re f
+0 0 11.9552 8.4381 re f
Q
0.725 g 0.725 G
q
1 0 0 1 199.716 673.7576 cm
-0 0 11.9552 19.7832 re f
+0 0 11.9552 19.5322 re f
Q
0.6 g 0.6 G
q
@@ -4292,17 +4292,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 238.9549 673.7576 cm
-0 0 11.9552 13.5255 re f
+0 0 11.9552 13.3532 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 250.91 673.7576 cm
-0 0 11.9552 21.7884 re f
+0 0 11.9552 21.5111 re f
Q
0.725 g 0.725 G
q
1 0 0 1 274.8204 673.7576 cm
-0 0 11.9552 8.4381 re f
+0 0 11.9552 8.3301 re f
Q
0.6 g 0.6 G
q
@@ -4335,17 +4335,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 389.1636 673.7576 cm
-0 0 11.9552 12.3258 re f
+0 0 11.9552 12.1712 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 401.1187 673.7576 cm
-0 0 11.9552 10.5396 re f
+0 0 11.9552 10.4053 re f
Q
0.725 g 0.725 G
q
1 0 0 1 425.0291 673.7576 cm
-0 0 11.9552 20.224 re f
+0 0 11.9552 19.9671 re f
Q
0.6 g 0.6 G
q
@@ -4359,7 +4359,7 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 476.2231 673.7576 cm
-0 0 11.9552 6.4942 re f
+0 0 11.9552 6.4125 re f
Q
0.6 g 0.6 G
q
@@ -4373,12 +4373,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 539.3723 673.7576 cm
-0 0 11.9552 9.2261 re f
+0 0 11.9552 9.1094 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 551.3274 673.7576 cm
-0 0 11.9552 10.3032 re f
+0 0 11.9552 10.1718 re f
Q
0.725 g 0.725 G
q
@@ -4397,12 +4397,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 626.4318 673.7576 cm
-0 0 11.9552 1.2434 re f
+0 0 11.9552 1.2288 re f
Q
0.725 g 0.725 G
q
1 0 0 1 650.3421 673.7576 cm
-0 0 11.9552 43.1624 re f
+0 0 11.9552 42.6136 re f
Q
0.6 g 0.6 G
q
@@ -4416,12 +4416,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 701.5361 673.7576 cm
-0 0 11.9552 6.6401 re f
+0 0 11.9552 6.5555 re f
Q
0.725 g 0.725 G
q
1 0 0 1 725.4464 673.7576 cm
-0 0 11.9552 6.6226 re f
+0 0 11.9552 6.538 re f
Q
0.6 g 0.6 G
q
@@ -4440,7 +4440,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 800.5508 673.7576 cm
-0 0 11.9552 10.7351 re f
+0 0 11.9552 10.6009 re f
Q
0.6 g 0.6 G
q
@@ -4454,17 +4454,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 839.7896 673.7576 cm
-0 0 11.9552 49.0641 re f
+0 0 11.9552 48.4453 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 851.7448 673.7576 cm
-0 0 11.9552 39.0703 re f
+0 0 11.9552 38.577 re f
Q
0.725 g 0.725 G
q
1 0 0 1 875.6551 673.7576 cm
-0 0 11.9552 8.5461 re f
+0 0 11.9552 8.4381 re f
Q
0.6 g 0.6 G
q
@@ -4478,12 +4478,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 914.894 673.7576 cm
-0 0 11.9552 8.7183 re f
+0 0 11.9552 8.6074 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 926.8491 673.7576 cm
-0 0 11.9552 6.7686 re f
+0 0 11.9552 6.6839 re f
Q
0.6 g 0.6 G
q
@@ -4497,17 +4497,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 989.9983 673.7576 cm
-0 0 11.9552 55.4736 re f
+0 0 11.9552 54.7731 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1001.9535 673.7576 cm
-0 0 11.9552 39.2133 re f
+0 0 11.9552 38.507 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1025.8638 673.7576 cm
-0 0 11.9552 12.6002 re f
+0 0 11.9552 12.5769 re f
Q
0.6 g 0.6 G
q
@@ -4521,7 +4521,7 @@ ET
0.725 g 0.725 G
q
1 0 0 1 1100.9682 673.7576 cm
-0 0 11.9552 45.1617 re f
+0 0 11.9552 44.5896 re f
Q
0.6 g 0.6 G
q
@@ -4535,12 +4535,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1140.207 673.7576 cm
-0 0 11.9552 109.2573 re f
+0 0 11.9552 107.8709 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1152.1622 673.7576 cm
-0 0 11.9552 2.983 re f
+0 0 11.9552 2.9479 re f
Q
0.6 g 0.6 G
q
@@ -4554,12 +4554,12 @@ ET
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 1239.2217 673.7576 cm
-0 0 11.9552 6.2695 re f
+0 0 11.9552 6.2257 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1251.1769 673.7576 cm
-0 0 11.9552 10.093 re f
+0 0 11.9552 9.9646 re f
Q
0.6 g 0.6 G
q
@@ -4573,7 +4573,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1290.4157 673.7576 cm
-0 0 11.9552 1.1908 re f
+0 0 11.9552 1.1763 re f
Q
0.6 g 0.6 G
q
@@ -4587,12 +4587,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 13.6418 454.6022 cm
-0 0 11.9552 45.7279 re f
+0 0 11.9552 45.15 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 25.597 454.6022 cm
-0 0 11.9552 41.6388 re f
+0 0 11.9552 41.1105 re f
Q
0.725 g 0.725 G
q
@@ -4611,17 +4611,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 88.7462 457.5684 cm
-0 0 11.9552 25.0486 re f
+0 0 11.9552 24.7305 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 100.7013 457.5684 cm
-0 0 11.9552 16.7419 re f
+0 0 11.9552 16.5288 re f
Q
0.725 g 0.725 G
q
1 0 0 1 124.6117 457.5684 cm
-0 0 11.9552 15.5919 re f
+0 0 11.9552 15.3964 re f
Q
0.6 g 0.6 G
q
@@ -4635,7 +4635,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 163.8505 457.5684 cm
-0 0 11.9552 10.0171 re f
+0 0 11.9552 9.8887 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -4654,17 +4654,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 238.9549 457.5684 cm
-0 0 11.9552 11.1875 re f
+0 0 11.9552 11.0445 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 250.91 457.5684 cm
-0 0 11.9552 7.5449 re f
+0 0 11.9552 7.4486 re f
Q
0.725 g 0.725 G
q
1 0 0 1 274.8204 457.5684 cm
-0 0 11.9552 2.2941 re f
+0 0 11.9552 2.2649 re f
Q
0.6 g 0.6 G
q
@@ -4678,17 +4678,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 314.0592 457.5684 cm
-0 0 11.9552 63.8767 re f
+0 0 11.9552 63.0653 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 326.0144 457.5684 cm
-0 0 11.9552 19.1207 re f
+0 0 11.9552 18.8784 re f
Q
0.725 g 0.725 G
q
1 0 0 1 349.9247 457.5684 cm
-0 0 11.9552 22.8829 re f
+0 0 11.9552 22.5911 re f
Q
0.6 g 0.6 G
q
@@ -4721,7 +4721,7 @@ ET
0.725 g 0.725 G
q
1 0 0 1 500.1334 457.5684 cm
-0 0 11.9552 74.244 re f
+0 0 11.9552 73.3013 re f
Q
0.6 g 0.6 G
q
@@ -4735,12 +4735,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 551.3274 457.5684 cm
-0 0 11.9552 3.7156 re f
+0 0 11.9552 3.6689 re f
Q
0.725 g 0.725 G
q
1 0 0 1 575.2378 457.5684 cm
-0 0 11.9552 20.008 re f
+0 0 11.9552 19.754 re f
Q
0.6 g 0.6 G
q
@@ -4754,12 +4754,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 626.4318 457.5684 cm
-0 0 11.9552 5.4989 re f
+0 0 11.9552 5.4289 re f
Q
0.725 g 0.725 G
q
1 0 0 1 650.3421 457.5684 cm
-0 0 11.9552 45.115 re f
+0 0 11.9552 44.5429 re f
Q
0.6 g 0.6 G
q
@@ -4773,27 +4773,27 @@ ET
0 0.8 0 rg 0 0.8 0 RG
q
1 0 0 1 677.6258 457.5684 cm
-0 0 11.9552 22.1007 re f
+0 0 11.9552 21.8234 re f
Q
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 689.5809 457.5684 cm
-0 0 11.9552 36.8491 re f
+0 0 11.9552 36.3821 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 701.5361 457.5684 cm
-0 0 11.9552 19.8241 re f
+0 0 11.9552 19.5731 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 713.4913 457.5684 cm
-0 0 11.9552 10.2915 re f
+0 0 11.9552 10.1601 re f
Q
0.725 g 0.725 G
q
1 0 0 1 725.4464 457.5684 cm
-0 0 11.9552 17.708 re f
+0 0 11.9552 17.4862 re f
Q
0.6 g 0.6 G
q
@@ -4807,17 +4807,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 764.6853 457.5684 cm
-0 0 11.9552 48.6846 re f
+0 0 11.9552 48.0658 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 776.6405 457.5684 cm
-0 0 11.9552 29.2691 re f
+0 0 11.9552 28.8985 re f
Q
0.725 g 0.725 G
q
1 0 0 1 800.5508 457.5684 cm
-0 0 11.9552 44.2744 re f
+0 0 11.9552 43.714 re f
Q
0.6 g 0.6 G
q
@@ -4831,17 +4831,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 839.7896 457.5684 cm
-0 0 11.9552 32.5761 re f
+0 0 11.9552 32.1645 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 851.7448 457.5684 cm
-0 0 11.9552 22.4685 re f
+0 0 11.9552 22.2583 re f
Q
0.725 g 0.725 G
q
1 0 0 1 875.6551 457.5684 cm
-0 0 11.9552 13.2131 re f
+0 0 11.9552 13.0439 re f
Q
0.6 g 0.6 G
q
@@ -4855,12 +4855,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 926.8491 457.5684 cm
-0 0 11.9552 1.5002 re f
+0 0 11.9552 1.4798 re f
Q
0.725 g 0.725 G
q
1 0 0 1 950.7595 457.5684 cm
-0 0 11.9552 19.7453 re f
+0 0 11.9552 19.9058 re f
Q
0.6 g 0.6 G
q
@@ -4874,17 +4874,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 989.9983 457.5684 cm
-0 0 11.9552 15.5598 re f
+0 0 11.9552 15.3613 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1001.9535 457.5684 cm
-0 0 11.9552 18.5661 re f
+0 0 11.9552 18.3297 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1025.8638 457.5684 cm
-0 0 11.9552 36.7382 re f
+0 0 11.9552 36.2712 re f
Q
0.6 g 0.6 G
q
@@ -4898,12 +4898,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1077.0578 457.5684 cm
-0 0 11.9552 5.7995 re f
+0 0 11.9552 5.7266 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1100.9682 457.5684 cm
-0 0 11.9552 50.4884 re f
+0 0 11.9552 49.9105 re f
Q
0.6 g 0.6 G
q
@@ -4917,7 +4917,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1140.207 457.5684 cm
-0 0 11.9552 11.0679 re f
+0 0 11.9552 10.9278 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -4936,12 +4936,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1215.3114 457.5684 cm
-0 0 11.9552 37.0067 re f
+0 0 11.9552 36.5397 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1227.2665 457.5684 cm
-0 0 11.9552 41.7001 re f
+0 0 11.9552 41.1718 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
@@ -4951,7 +4951,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 1251.1769 457.5684 cm
-0 0 11.9552 1.22 re f
+0 0 11.9552 1.2054 re f
Q
0.6 g 0.6 G
q
@@ -4965,22 +4965,22 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1290.4157 457.5684 cm
-0 0 11.9552 126.9011 re f
+0 0 11.9552 125.2928 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1302.3709 457.5684 cm
-0 0 11.9552 128.267 re f
+0 0 11.9552 126.6442 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 1314.326 457.5684 cm
-0 0 11.9552 1.5265 re f
+0 0 11.9552 1.5061 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1326.2812 457.5684 cm
-0 0 11.9552 7.0634 re f
+0 0 11.9552 6.9758 re f
Q
0.6 g 0.6 G
q
@@ -4994,7 +4994,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 13.6418 241.3791 cm
-0 0 11.9552 14.8856 re f
+0 0 11.9552 14.6959 re f
Q
0.6 g 0.6 G
q
@@ -5008,12 +5008,12 @@ ET
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 100.7013 241.3791 cm
-0 0 11.9552 3.5346 re f
+0 0 11.9552 3.4908 re f
Q
0.725 g 0.725 G
q
1 0 0 1 124.6117 241.3791 cm
-0 0 11.9552 4.3139 re f
+0 0 11.9552 4.2584 re f
Q
0.6 g 0.6 G
q
@@ -5027,7 +5027,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 163.8505 241.3791 cm
-0 0 11.9552 4.1271 re f
+0 0 11.9552 4.0746 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -5046,7 +5046,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 238.9549 241.3791 cm
-0 0 11.9552 68.2898 re f
+0 0 11.9552 67.4259 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -5056,7 +5056,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 274.8204 241.3791 cm
-0 0 11.9552 24.0913 re f
+0 0 11.9552 23.7877 re f
Q
0.6 g 0.6 G
q
@@ -5070,27 +5070,27 @@ ET
0 0.8 0 rg 0 0.8 0 RG
q
1 0 0 1 302.104 241.3791 cm
-0 0 11.9552 70.6569 re f
+0 0 11.9552 69.7609 re f
Q
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 314.0592 241.3791 cm
-0 0 11.9552 17.8364 re f
+0 0 11.9552 17.6088 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 326.0144 241.3791 cm
-0 0 11.9552 37.573 re f
+0 0 11.9552 37.5642 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 337.9696 241.3791 cm
-0 0 11.9552 1.9906 re f
+0 0 11.9552 1.9643 re f
Q
0.725 g 0.725 G
q
1 0 0 1 349.9247 241.3791 cm
-0 0 11.9552 3.2106 re f
+0 0 11.9552 3.1698 re f
Q
0.6 g 0.6 G
q
@@ -5104,17 +5104,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 389.1636 241.3791 cm
-0 0 11.9552 38.5537 re f
+0 0 11.9552 38.0662 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 413.0739 241.3791 cm
-0 0 11.9552 36.8725 re f
+0 0 11.9552 36.5572 re f
Q
0.725 g 0.725 G
q
1 0 0 1 425.0291 241.3791 cm
-0 0 11.9552 5.0377 re f
+0 0 11.9552 4.9735 re f
Q
0.6 g 0.6 G
q
@@ -5133,7 +5133,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 500.1334 241.3791 cm
-0 0 11.9552 12.3142 re f
+0 0 11.9552 12.1595 re f
Q
0.6 g 0.6 G
q
@@ -5147,7 +5147,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 539.3723 241.3791 cm
-0 0 11.9552 9.2641 re f
+0 0 11.9552 9.1473 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -5157,7 +5157,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 575.2378 241.3791 cm
-0 0 11.9552 15.1599 re f
+0 0 11.9552 14.9673 re f
Q
0.6 g 0.6 G
q
@@ -5171,17 +5171,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 614.4766 241.3791 cm
-0 0 11.9552 38.9506 re f
+0 0 11.9552 38.4573 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 626.4318 241.3791 cm
-0 0 11.9552 39.082 re f
+0 0 11.9552 38.5858 re f
Q
0.725 g 0.725 G
q
1 0 0 1 650.3421 241.3791 cm
-0 0 11.9552 17.3578 re f
+0 0 11.9552 17.1359 re f
Q
0.6 g 0.6 G
q
@@ -5195,7 +5195,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 689.5809 241.3791 cm
-0 0 11.9552 60.8908 re f
+0 0 11.9552 60.1203 re f
Q
0.6 g 0.6 G
q
@@ -5209,22 +5209,22 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 764.6853 241.3791 cm
-0 0 11.9552 157.9682 re f
+0 0 11.9552 155.9688 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 776.6405 241.3791 cm
-0 0 11.9552 134.4139 re f
+0 0 11.9552 132.7123 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 788.5956 241.3791 cm
-0 0 11.9552 12.25 re f
+0 0 11.9552 12.0953 re f
Q
0.725 g 0.725 G
q
1 0 0 1 800.5508 241.3791 cm
-0 0 11.9552 67.8228 re f
+0 0 11.9552 66.9618 re f
Q
0.6 g 0.6 G
q
@@ -5238,17 +5238,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 839.7896 241.3791 cm
-0 0 11.9552 78.0909 re f
+0 0 11.9552 77.1015 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 851.7448 241.3791 cm
-0 0 11.9552 29.6427 re f
+0 0 11.9552 29.2108 re f
Q
0.725 g 0.725 G
q
1 0 0 1 875.6551 241.3791 cm
-0 0 11.9552 1.5411 re f
+0 0 11.9552 1.5207 re f
Q
0.6 g 0.6 G
q
@@ -5262,12 +5262,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 914.894 241.3791 cm
-0 0 11.9552 37.8123 re f
+0 0 11.9552 37.3336 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 926.8491 241.3791 cm
-0 0 11.9552 14.3193 re f
+0 0 11.9552 14.1384 re f
Q
0.725 g 0.725 G
q
@@ -5286,17 +5286,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 989.9983 241.3791 cm
-0 0 11.9552 57.3387 re f
+0 0 11.9552 56.6148 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1001.9535 241.3791 cm
-0 0 11.9552 53.4071 re f
+0 0 11.9552 52.73 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1025.8638 241.3791 cm
-0 0 11.9552 1.5703 re f
+0 0 11.9552 1.5499 re f
Q
0.6 g 0.6 G
q
@@ -5310,22 +5310,22 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1065.1027 241.3791 cm
-0 0 11.9552 52.7767 re f
+0 0 11.9552 52.1083 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 1077.0578 241.3791 cm
-0 0 11.9552 61.0718 re f
+0 0 11.9552 60.2983 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
1 0 0 1 1089.013 241.3791 cm
-0 0 11.9552 4.238 re f
+0 0 11.9552 4.1826 re f
Q
0.725 g 0.725 G
q
1 0 0 1 1100.9682 241.3791 cm
-0 0 11.9552 5.28 re f
+0 0 11.9552 5.2129 re f
Q
0.6 g 0.6 G
q
@@ -5344,7 +5344,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 1176.0725 241.3791 cm
-0 0 11.9552 3.0151 re f
+0 0 11.9552 3.0939 re f
Q
0.6 g 0.6 G
q
@@ -5358,7 +5358,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 1215.3114 241.3791 cm
-0 0 11.9552 34.0063 re f
+0 0 11.9552 33.5772 re f
Q
0.6 g 0.6 G
q
@@ -5377,7 +5377,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 1326.2812 241.3791 cm
-0 0 11.9552 2.4838 re f
+0 0 11.9552 2.4517 re f
Q
0.6 g 0.6 G
q
@@ -5391,17 +5391,17 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 13.6418 25.1898 cm
-0 0 11.9552 6.1381 re f
+0 0 11.9552 6.0593 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 25.597 25.1898 cm
-0 0 11.9552 6.6372 re f
+0 0 11.9552 6.5526 re f
Q
0.725 g 0.725 G
q
1 0 0 1 49.5073 25.1898 cm
-0 0 11.9552 17.638 re f
+0 0 11.9552 17.4161 re f
Q
0.6 g 0.6 G
q
@@ -5415,12 +5415,12 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 88.7462 25.1898 cm
-0 0 11.9552 163.4846 re f
+0 0 11.9552 161.4152 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 100.7013 25.1898 cm
-0 0 11.9552 75.289 re f
+0 0 11.9552 74.3345 re f
Q
0.725 g 0.725 G
q
@@ -5444,7 +5444,7 @@ Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 175.8057 25.1898 cm
-0 0 11.9552 8.8088 re f
+0 0 11.9552 9.4772 re f
Q
0.6 0.6 0 rg 0.6 0.6 0 RG
q
@@ -5454,7 +5454,7 @@ Q
0.725 g 0.725 G
q
1 0 0 1 199.716 25.1898 cm
-0 0 11.9552 24.0679 re f
+0 0 11.9552 27.4449 re f
Q
0.6 g 0.6 G
q
@@ -5468,7 +5468,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 238.9549 25.1898 cm
-0 0 11.9552 25.7258 re f
+0 0 11.9552 25.3989 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
@@ -5492,7 +5492,7 @@ ET
0.725 g 0.725 G
q
1 0 0 1 349.9247 25.1898 cm
-0 0 11.9552 13.8669 re f
+0 0 11.9552 13.6918 re f
Q
0.6 g 0.6 G
q
@@ -5506,7 +5506,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 389.1636 25.1898 cm
-0 0 11.9552 33.1044 re f
+0 0 11.9552 32.6841 re f
Q
0.6 g 0.6 G
q
@@ -5525,17 +5525,17 @@ Q
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 464.2679 25.1898 cm
-0 0 11.9552 124.7558 re f
+0 0 11.9552 123.1768 re f
Q
0.8 0 0 rg 0.8 0 0 RG
q
1 0 0 1 476.2231 25.1898 cm
-0 0 11.9552 44.0759 re f
+0 0 11.9552 43.5184 re f
Q
0.725 g 0.725 G
q
1 0 0 1 500.1334 25.1898 cm
-0 0 11.9552 17.1097 re f
+0 0 11.9552 16.8908 re f
Q
0.6 g 0.6 G
q
@@ -5549,7 +5549,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 539.3723 25.1898 cm
-0 0 11.9552 57.6598 re f
+0 0 11.9552 56.9301 re f
Q
0.6 g 0.6 G
q
@@ -5563,7 +5563,7 @@ ET
0 0 0.8 rg 0 0 0.8 RG
q
1 0 0 1 614.4766 25.1898 cm
-0 0 11.9552 100.4193 re f
+0 0 11.9552 99.1468 re f
Q
0.6 g 0.6 G
q
@@ -5609,14 +5609,14 @@ stream
- s-inf-01.2011-10-28T22:37:19+02:00
+ s-inf-01.2011-11-02T20:15:29+01:00
This is LuaTeX, Version beta-0.71.0-2011062811 (rev 4315) (TeX Live 2011) kpathsea version 6.0.1
- 2011-10-28T22:37:19+02:00
- ConTeXt - 2011.10.28 22:32
- 2011-10-28T22:37:19+02:00
- 2011-10-28T22:37:19+02:00
+ 2011-11-02T20:15:29+01:00
+ ConTeXt - 2011.11.02 20:10
+ 2011-11-02T20:15:29+01:00
+ 2011-11-02T20:15:29+01:00
@@ -5634,31 +5634,32 @@ stream
endstream
endobj
30 0 obj
-[28[515]35[515]42[515 515]45[515]47[515]50[515 515]55[515 515 515]59[515]63[515 515]66[515]68[515]70[515]72[515]75[515]77[515 514]80[515 515 515]84[515 515 515]88[515 515]96[515]98[515 515 515 514]104[515 515 515 515]109[515]112[515]115[515 515]118[515]120[515 515]]
+[28[515]35[515]42[515 515]45[515]47[515]50[515 515]55[515 515 515]59[515]63[515 515]66[515]68[515]70[515]72[515]75[515 515 515 514]81[515 515]84[515 515 515]88[515 515]96[515]98[515 515 515 514]104[515 515 515 515]109[515]112[515]115[515 515]118[515]120[515 515]]
endobj
31 0 obj
<>
stream
- 51Ѫ
+ 51Ѫn
endstream
endobj
32 0 obj
-<>
+<>
stream
- GMOFIU+LMMono12-Regular H !"\P_ " *$ % % * GMOFIU+LMMono12-RegularAdobeIdentity2.004Copyright 2003, 2009 B. Jackowski and J. M. Nowacki (on behalf of TeX users groups). This work is released under the GUST Font License -- see http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt for details.LMMono12-RegularLMMono12Normal # * + - / 2 3 7 8 9 ; ? @ B D F H K M N P Q R T U V X Y ` b c d e h i j k m p s t v x y . . k^8rrp\ K
-=
-Uv1
j
<+x"W4x\q}qw}nRa*Fp|roonPQMwYzKgGDOɐ@j9tvbxzh\P`
ql7#B]_OiI}qnnytpnJ+GGD@fB1n=v}{z&z.6++ `/u%oyyb]a GK 4̎U\rt}TuZs6C辨b衞&_?T 7'
+ LJVAWI+LMMono12-Regular H !"\P_ " L$ % % * LJVAWI+LMMono12-RegularAdobeIdentity2.004Copyright 2003, 2009 B. Jackowski and J. M. Nowacki (on behalf of TeX users groups). This work is released under the GUST Font License -- see http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt for details.LMMono12-RegularLMMono12Normal # * + - / 2 3 7 8 9 ; ? @ B D F H K L M N Q R T U V X Y ` b c d e h i j k m p s t v x y . . k^8rrp\ W
+
+_
+(wS
7
^M6 DW4x\q}qw}nRa*Fp|roonPQMwYzKgGDOɐ@j9tvbxzh\P`
ql7#B]_OiI}qnnytpnJ+GGD@fB1n=v}{z&z.6++ `/u%oyyb]a GK 4̎U\rt}TuZs6C辨b衞&_?T 7'
vj_fwnpjslweZz|x~z W|q}biI}qnn:{bN!/+)̶@a~&5S]9@CQ̺PW\lx|QrJx8I I.')I<̽6YbXX,kAf%ۣ8 8=9QWt&keFS)4<URZ=