diff --git a/data/06othernets/01title b/data/05othernets/01title
similarity index 100%
rename from data/06othernets/01title
rename to data/05othernets/01title
diff --git a/data/06othernets/03oneoff b/data/05othernets/03oneoff
similarity index 100%
rename from data/06othernets/03oneoff
rename to data/05othernets/03oneoff
diff --git a/data/06othernets/05otheralgo b/data/05othernets/05otheralgo
similarity index 100%
rename from data/06othernets/05otheralgo
rename to data/05othernets/05otheralgo
diff --git a/data/07oneoffplus/00intro b/data/06oneoffplus/00intro
similarity index 100%
rename from data/07oneoffplus/00intro
rename to data/06oneoffplus/00intro
diff --git a/data/07oneoffplus/01idea b/data/06oneoffplus/01idea
similarity index 100%
rename from data/07oneoffplus/01idea
rename to data/06oneoffplus/01idea
diff --git a/data/07oneoffplus/02diffalgo b/data/06oneoffplus/02diffalgo
similarity index 100%
rename from data/07oneoffplus/02diffalgo
rename to data/06oneoffplus/02diffalgo
diff --git a/data/07oneoffplus/07questionmark b/data/06oneoffplus/07questionmark
similarity index 100%
rename from data/07oneoffplus/07questionmark
rename to data/06oneoffplus/07questionmark
diff --git a/data/07oneoffplus/08whyaesuck b/data/06oneoffplus/08whyaesuck
similarity index 100%
rename from data/07oneoffplus/08whyaesuck
rename to data/06oneoffplus/08whyaesuck
diff --git a/data/05otherdata/01intro b/data/07otherdata/01intro
similarity index 100%
rename from data/05otherdata/01intro
rename to data/07otherdata/01intro
diff --git a/data/05otherdata/02ldm b/data/07otherdata/02ldm
similarity index 100%
rename from data/05otherdata/02ldm
rename to data/07otherdata/02ldm
diff --git a/data/05otherdata/03quarkgluon b/data/07otherdata/03quarkgluon
similarity index 100%
rename from data/05otherdata/03quarkgluon
rename to data/07otherdata/03quarkgluon
diff --git a/data/08otheruses/00section b/data/08otheruses/00section
new file mode 100644
index 0000000000000000000000000000000000000000..2b410073bca3a2d677c18c555a4e3c1fd9836848
--- /dev/null
+++ b/data/08otheruses/00section
@@ -0,0 +1 @@
+<section title="Other Usecases" label="secuse">
diff --git a/data/08otheruses/01intro b/data/08otheruses/01intro
new file mode 100644
index 0000000000000000000000000000000000000000..44934f6283ede33991f5455bb84455d1e271ce10
--- /dev/null
+++ b/data/08otheruses/01intro
@@ -0,0 +1 @@
+This Chapter is based 4 Graph Autoencoder Applications, that were originally written as Hello World Style Programms for its Documentation<note ENTER LINK>. And, even though there are some quite interresting Insigths about Graph Autoencoder to be found here, this also means, that this Chapter can be skipped, without loosing to much Information. Finally, this also means, that each of those Applications are not optimized in any way, and maybe not even completely though through, since their main Goal is just to be a quick explanaition of the code structure and maybe to be some inspiration, but not to completely work through any Idea.
diff --git a/data/08otheruses/02nets b/data/08otheruses/02nets
new file mode 100644
index 0000000000000000000000000000000000000000..9f96ac06d0c5ddf120c9626a1c2d5e56df14b09e
--- /dev/null
+++ b/data/08otheruses/02nets
@@ -0,0 +1,24 @@
+<subsection title="Fraud Detection for Social Networks" label="nets">
+Social Networks provide Data that is naturaly described as Graphs<note Lets Users be nodes, while friendships provide edges>, so by training a network on those, with the hope of finding anormal events, we not only get a new possible usecase for graph autoencoder, but also an example code for a network that does not generate its own graph.
+
+The corresponding Tutorial can be found here (ENTER LINK) and the full code is found here (ENTER LINK)
+
+<subsubsection title="Datageneration" label="netsdata">
+Datageneration is often the most timeconsuming Part of new neuronal Network, and it would not be different here. So to save some time, we just generate a sample Network. This allows you to ignore privacy settings<you migth not know everything about every user: you would need to decide how to handle a friend about whom you do not know anything>, simplifies the problem a bit<note since an usual facebook user has a lot of information, and often enough hundrets of friends>, and allows you to clearly define the anomalous data points. That beeing said, this also means, that we could tweak the data in every possible way to make the results arbitrarily good, which is why this is the only subchapter that works with self generated data.
+This generated consists of 5000 randomly generated users with 4 attributes (a constant 1 (flag), #a#:an integer between 1 and 3, #b#:an integer either 0 or 1 as well as a normal distributed Value that depends on #a#<note a normal distributed value with mean #0# and standart deviation #1# added to #(2**a)/16# times another normal distribution with mean #1# and standart deviation #0.1#. This is done just to have some relation between the elements>. The correspondign connections are generated the following way: each connection has a probability, that depends on the difference in the person vector<note a factor #exp(-abs(x_i-x_j)**2)#> and on the difference in the node index<note another factor #exp(-0.1*abs(i-j))#>. This means, that more similar persons are connected more closely, and that friends of friends are more probably friends. Now we guess on average 5 connections for each person, with respect to the given probabilities, or 2 for the alternative datapoints. We choose this, since defining less used accounts as anomalies, allows us later to show a benefit of oneoff networks.
+Now for each person in this Network, we only look at the local surrounding of this person. This is done, by taking only the connection of the friends, or friends of friends of this person into account. This generates a lot smaller graphs, that we could feed into the Autoencoder<note you could ask yourself if this reusing of nodes does not result in a lot of overfitting, but as you see below, that is not the case, possibly because of the low number of parameters in the graph autoencoder>, but for simplicity we cut a bit on the size of those new graphs, as we allow for at most 70 nodes<note this keeps #0.9932# of all data points>.
+
+<subsubsection title="Training" label="netstrain">
+<i f="none" wmode="True">network plot for nets</i>
+To train this Network, we use a fairly simple setup, compressing the 70 nodes once by a factor 5, resulting in 14 nodes with 12 informations each.
+As you see in the training curve, the loss is basically the same for trainings and validation loss, and contains steps, as also seen before<note for example in Chapter (ENTER CHAPTER)>.
+Much more interrestingly, is the loss distribution
+<i f="none" wmode="True">loss distribution for nets</i>
+As you see, the reconstruction is not very good, as basically all events have a nonzero loss, but maybe even more interrestingly: there is some difference in the reconstruction of out anomal datapoints. This migth seems like you could use this to seperate datapoints, but there is a difficulty: If you use an autoencoder to seperate datasets, you assume, that a dataset, that the Network never saw, will be reconstructed worse, than a dataset that is trained on, but here the opposite is the case: the data that is abnormal is easier reconstructed, so any seperation is a bit weird: sure you could just look at something like #1-loss#, but you do not have any reasoning for this? Maybe, and even probably, only this kind of abnormal data will be reconstructed easier<note this is here probably the case, sine the abnormal data is less complicated, as it contains less nodes>, and by negating the loss, you would not get any useful seperation on other datapoints. So what can we do? Your first instinkt migth say, to just look at this distribution, and seperate accordingly: define everything as weird on the side that you need, but this would no longer be unsupervised, as you require information over the alternative datapoints, so as alternative: use OneOff networks: In their easiest version, they take the mean of the training peak, and define distance as difference to this peak, which would already solve this problem, and in their deep implementation they migth even improve this further. Anyhow why, this works quite well
+<i f="none" wmode="True">oo dist for nets</i>
+Please note that we dispence using any number here, measuring how good the reconstruction is, as we could improve it arbitrarily by chancing the data generation
+
+<subsubsection title="Whats Next" label="netsnext">
+Given this, you migth notice, that it is not though through completely. This is why we include this subchapter to give you some ideas on what could be improved further. The first thing you migth need, is to work with more kinds of anomalous datapoints, and not just neglected profiles. It migth also be a good idea to work on an actual social network, and if you do this, it would be interresting to just look at the users in the training set, that are reconstructed worst, as this would allow you to find abnormal users, that are not yet noticed, even when they are already fairly common.
+
+
diff --git a/data/08otheruses/03mol b/data/08otheruses/03mol
new file mode 100644
index 0000000000000000000000000000000000000000..966880881802b838b9afa61e9caf5f52300e2c88
--- /dev/null
+++ b/data/08otheruses/03mol
@@ -0,0 +1,23 @@
+<subsection title="Accelarating molecular science through pooling" label="mol">
+
+Our second example alternative usecase works on molecules: As they are usually described only by interactions between pairs of atoms, they are well described by graphs. Here we want to use this, to suggest, that the compression step in a graph autoencoder can accelarate a Network trying to learn a function from this molecule.
+
+The corresponding Tutorial can be found here (ENTER LINK) and the full code is found here (ENTER LINK)
+
+<subsubsection title="Datageneration" label="moldata">
+All our Datapoints here are random molecules, that come from chemspider.com, mostly since they allow you to easily download a complete description of a molecule, including not only all atoms, but also suggested connections<note you could also generate those connections yourself, but this would require a different algorithm instead of topK, more something that connects everything in a fixed distance (see Appendix (ENTER APPENDIX))>, as well as molecular mass, here given in #g/mol#, which is what use as the Network output.
+Every Atom is given by 3 spacial coordinates, that give the position relative to the other atoms in the molecule, and another Attribute detailing the type of molecule<note while writing this: onehot encoding this migth actually be a bad idea>. Every other Information given for each Atom is ignored, similar to information given about edges, except for the Atoms, which are connected.
+Those datapoints, get filtered a lot, since fewer events do not really matter as much faulty ones, if overfitting is not a problem. First, we only allow molecules constructed entirely from the Atoms H, C, O and N. Then we allow at most 50, and at least 25 molecules, of which between 10 and 25 are to be Hydrogen, and check if the downloaded file is consistent<note The molecular formula matches the distribution of atoms>.
+
+<subsubsection title="Training" label="moltrain">
+<i f="none" wmode="True">modelsetup(s) mol</i>
+We again use a fairly simple setup, consisting only out of a handful of graph update layer, and possibly a graph compression layer, comparing its effect
+<i f="none" wmode="True">training results mol 5/6</i>
+There are two things to note here: first, since the mass can reach order of magnitude of #1000*g/mol#, and since the difference is squared, this can reach very high loss values at the beginning of the training. This is also, why you see orders of magnitude of chance in the loss function. As you also see, the chance in loss is different between the compressing Network, and the noncompressed version: As both Networks require similar times to calculate an Training Epoch, the compressed Version requires more than 100 Epochs less to reach a similar result. That beeing said, therefore the noncompressed version reaches a sligthly lower minimal loss of #78# in comparison to #73#, even though it should be noted, that this difference is tiny compared to initial losses, and the compressing version has a bunch more parameters that could be tweaked to chance this.
+
+<subsubsection title="Whats next?" label="molnext">
+We dont want to call using a compression layer to pool graph networks generally a good idea, but if you have a network that takes an unbearable time, trying out inserting a compression layer migth be good idea. It migth also be interresting to optimize the hyperparameters of the compression layer, or even to alter the setup by for example using an abstraction layer. Finally, this is tested on a fairly easy setup, and it migth be possible to run this on a more complicated setup like particlenet.
+
+
+
+
diff --git a/data/08otheruses/04feyn b/data/08otheruses/04feyn
new file mode 100644
index 0000000000000000000000000000000000000000..322c035dafcac852b72dcb10b4ad73942dc78e5c
--- /dev/null
+++ b/data/08otheruses/04feyn
@@ -0,0 +1,17 @@
+<subsection title="High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs" label="feyn">
+
+Machine learning is usually only used on low level Data. Inputs that are easily generated but timeconsuming for humans to understand. So why not apply Machine Learning to highly abstracted Concepts? You migth ask why one would want this, we think of an theory evaluation method: If you have a number of predictions, this could classify weirdness in the sense of finding predictions that dont match the rest. In the best case you could also extend theories consistently: you can generate new inputs from existing ones. You could automatically bring structure to your predictions, by looking at the compression space of an autoencoder or you could use this to simplify complicated theories. So why dont we do this? two things come to mind: most predictions are not of vector form, and generating a lot of predictions is quite hard. Luckely both are solved by the graph setup: This graph Structure is way more powerful, to the point that ai often encodes knowledge in graphs (see (ENTER REFERENCE)), and since overfitting has not been a problem at all here, also the low number of training samples should not matter here<note There is a second price you pay, when you train on a few Datapoints: Not only becomes overfitting more probable, but you also loose generality, as density fluctuations of the different kind of training samples (where these types of samples are defined by the training itself, which makes them hard to filter out) start to matter more. Sadly we cannot really chance this to much>
+Now consider Feynman Diagramms: As they are able to encode all of Particle Physics in a finite set of graphs, they are at the same time very high level, while also still providing #O(100)# samples, which migth not be a good size for our training set, but should still be workable with, and finding anomalous Feynman diagrams, migth actually be an interresting way to solve the initial Problem of using graphs to find new physics
+
+<subsubsection title="Data generation" label="feyndata">
+Datageneration for Feynman Diagrams means more converting Data, instead of outrigth generating them. The problem is, that all Diagrams that you find, are usually given as Images, and writing an Program to read every Image into a Diagram is absolutely nontrivial, which is why we just converted those diagramms by hand<note you could actually use a graph neuronal network for this, build similar to the one from the next chapter (ENTER CHAPTER)>. You could actually ask yourself, it writing an image like autoencoder to work on those images would not be much less work. And even though we would agree, we think this would also work way worse, as you could not differentiate between an Image that just looks like a feynman diagram, and an Image that actually represents some physical insigth. If everything looks like a feynman diagramm, you can easily use the loss to differentiate those two cases, since a chance in loss now definitely represents a better reconstruction in the autoencoder we will train. Also by training on Images you could again more probably see overfitting, resulting in higher needed training samples, that we dont have.
+We use all diagrams from (ENTER REFERENCE)<note These diagramms are of relatively low order>, that match our filter of only SM diagrams and at most 9 lines, and represent each diagram in the following way: Each line becomes a node, and each two lines that meet in an edge, are connected. This migth seem counterintuitive at first, as we basically switch nodes and edges, but is actually neccesary, since each edge requires two nodes, and in a usual diagram, input aswell as output lines, only have one edge. Then each line(node) is represented by a 14dimensional vector, onehot encoding the particle type (gluon,quark,lepton,muon,Higgs, W Boson, Z Boson, photon, proton,jet), 3 special boolean values encoding anti particles<note for simplicity this variable is always zero for lines that are neither input nor output>, input lines, output lines and a fourtheenth value that is always 1 (flag).
+<i f="none" wmode="True"> Example Image of the conversion </i>
+
+<subsubsection title="Training" label="feyntrain">
+<i f="none" wmode="True">model plot feyn</i>
+Also here a fairly easy setup is used, but instead of the compression algorithm, we use the abstraction one, and the paramlike deconstruction algorithm replaces the classical one, to encode the abstraction of a factor 3 (reducing 9 nodes into 3). Therefore we add 3 Parameters, as well as a couple more graph update steps. One thing that migth be important later, is that we dont punish the resulting graph structure directly, even though the paramlike decomporession algorithm should make this possible, but only indirectly since a nonsencical graph structure will worsen the quality of the update step.
+<i f="none" wmode="True">training plot for feynnp</i>
+As you see, the training curve improves after the initial plateau first quite drastically, just to slow down later, and reach a validation loss below #0.05# at the end, which we are fairly happy with, since this means, that converted to booleans, only about 1 in 20 Values is wrong<note since the results are not booleans, this is only true for the average>. More interrestingly, you also see, that the validation loss is consistently lower than the training loss, which means, that at least also this Network does not overfit.
+
+
diff --git a/data/08anhang/01title b/data/10anhang/01title
similarity index 100%
rename from data/08anhang/01title
rename to data/10anhang/01title
diff --git a/out/label.json b/out/label.json
index 5c4ac88cef2e252a2ec20d6ea1eb3a546c6d04ce..d59d774a4c9c1aaba5bb480ee52f0096635009ce 100644
--- a/out/label.json
+++ b/out/label.json
@@ -29,7 +29,8 @@
       "../imgs/linear"
     ],
     "label": "linear",
-    "caption": "(mmt/q/02/linear) linear 2d sample data for ae"
+    "caption": "(mmt/q/02/linear) linear 2d sample data for ae",
+    "where": "..\\..\\write\\/data\\01intro\\03ae"
   },
   {
     "typ": "img",
@@ -37,7 +38,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "sample combinations of two image Inputs (something like cats and dogs)"
+    "caption": "sample combinations of two image Inputs (something like cats and dogs)",
+    "where": "..\\..\\write\\/data\\01intro\\03ae"
   },
   {
     "typ": "subsection",
@@ -57,7 +59,8 @@
       "../imgs/dia3"
     ],
     "label": "dia3",
-    "caption": "(mmt/dia3) a simple node edge explanaiton graph"
+    "caption": "(mmt/dia3) a simple node edge explanaiton graph",
+    "where": "..\\..\\write\\/data\\01intro\\05graphs"
   },
   {
     "typ": "subsection",
@@ -101,7 +104,8 @@
       "../imgs/defttetc"
     ],
     "label": "defttetc",
-    "caption": "(redoo yourself) Definitions of the 4 Fractions used to evaluate binary classification"
+    "caption": "(redoo yourself) Definitions of the 4 Fractions used to evaluate binary classification",
+    "where": "..\\..\\write\\/data\\02tech\\01binclass"
   },
   {
     "typ": "img",
@@ -109,7 +113,8 @@
       "../imgs/add3"
     ],
     "label": "add3",
-    "caption": "(mmt/add3, prob not perfect)some recqual with decision parameter implemented"
+    "caption": "(mmt/add3, prob not perfect)some recqual with decision parameter implemented",
+    "where": "..\\..\\write\\/data\\02tech\\01binclass"
   },
   {
     "typ": "img",
@@ -117,7 +122,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "a roc curve with the classical Plotting"
+    "caption": "a roc curve with the classical Plotting",
+    "where": "..\\..\\write\\/data\\02tech\\01binclass"
   },
   {
     "typ": "img",
@@ -125,7 +131,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "The other way of plotting a roc curve"
+    "caption": "The other way of plotting a roc curve",
+    "where": "..\\..\\write\\/data\\02tech\\01binclass"
   },
   {
     "typ": "subsection",
@@ -163,7 +170,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "some image, with nothing learned in pt"
+    "caption": "some image, with nothing learned in pt",
+    "where": "..\\..\\write\\/data\\02tech\\02evmod"
   },
   {
     "typ": "subsection",
@@ -201,7 +209,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "a sample output input image"
+    "caption": "a sample output input image",
+    "where": "..\\..\\write\\/data\\02tech\\06explain"
   },
   {
     "typ": "img",
@@ -209,7 +218,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "sample lpt image"
+    "caption": "sample lpt image",
+    "where": "..\\..\\write\\/data\\02tech\\06explain"
   },
   {
     "typ": "img",
@@ -217,7 +227,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "a sample Featuremap"
+    "caption": "a sample Featuremap",
+    "where": "..\\..\\write\\/data\\02tech\\06explain"
   },
   {
     "typ": "img",
@@ -225,7 +236,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "a sample Network Image, see below or probably just 900"
+    "caption": "a sample Network Image, see below or probably just 900",
+    "where": "..\\..\\write\\/data\\02tech\\06explain"
   },
   {
     "typ": "subsection",
@@ -305,7 +317,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "modeldraw of b1/00 (achte auf dense und das batchnorm vor compare ist)"
+    "caption": "modeldraw of b1/00 (achte auf dense und das batchnorm vor compare ist)",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -313,7 +326,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "compression pictograms"
+    "caption": "compression pictograms",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -321,7 +335,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "decompression pictograms"
+    "caption": "decompression pictograms",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -329,7 +344,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "training for b1/00"
+    "caption": "training for b1/00",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -337,7 +353,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "b1/00/simpledraw ml, auf cherrypick hinweise"
+    "caption": "b1/00/simpledraw ml, auf cherrypick hinweise",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -345,7 +362,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "roc curve b1/00...nett machen"
+    "caption": "roc curve b1/00...nett machen",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "img",
@@ -353,7 +371,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "b1/00/partialauc raspl"
+    "caption": "b1/00/partialauc raspl",
+    "where": "..\\..\\write\\/data\\03graphae\\02simpleae"
   },
   {
     "typ": "subsection",
@@ -379,7 +398,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "network plot for c1/200"
+    "caption": "network plot for c1/200",
+    "where": "..\\..\\write\\/data\\03graphae\\03goodae"
   },
   {
     "typ": "img",
@@ -387,7 +407,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "history for c1/200"
+    "caption": "history for c1/200",
+    "where": "..\\..\\write\\/data\\03graphae\\03goodae"
   },
   {
     "typ": "img",
@@ -395,7 +416,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "roc for c1/200"
+    "caption": "roc for c1/200",
+    "where": "..\\..\\write\\/data\\03graphae\\03goodae"
   },
   {
     "typ": "img",
@@ -403,7 +425,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "simpledraw for c1/200 7638, maybe also the before one?"
+    "caption": "simpledraw for c1/200 7638, maybe also the before one?",
+    "where": "..\\..\\write\\/data\\03graphae\\03goodae"
   },
   {
     "typ": "img",
@@ -411,7 +434,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "AUC feature map for c1/200"
+    "caption": "AUC feature map for c1/200",
+    "where": "..\\..\\write\\/data\\03graphae\\03goodae"
   },
   {
     "typ": "subsection",
@@ -491,7 +515,8 @@
       "../imgs/trivscale"
     ],
     "label": "trivscale",
-    "caption": "(mmt/trivscale)scaling plot for non norms"
+    "caption": "(mmt/trivscale)scaling plot for non norms",
+    "where": "..\\..\\write\\/data\\03graphae\\04scaling"
   },
   {
     "typ": "img",
@@ -499,7 +524,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "no norm split scaling, but no c add"
+    "caption": "no norm split scaling, but no c add",
+    "where": "..\\..\\write\\/data\\03graphae\\04scaling"
   },
   {
     "typ": "img",
@@ -507,7 +533,8 @@
       "../imgs/splitscale"
     ],
     "label": "splitscale",
-    "caption": "(mmt/splitscale, not perfect since shape and triv compare already) no norm split scaling with c add"
+    "caption": "(mmt/splitscale, not perfect since shape and triv compare already) no norm split scaling with c add",
+    "where": "..\\..\\write\\/data\\03graphae\\04scaling"
   },
   {
     "typ": "img",
@@ -515,7 +542,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "reconstruction comparison for weigthed losses"
+    "caption": "reconstruction comparison for weigthed losses",
+    "where": "..\\..\\write\\/data\\03graphae\\04scaling"
   },
   {
     "typ": "subsection",
@@ -553,7 +581,8 @@
       "../imgs/410simpledraw16"
     ],
     "label": "410simpledraw16",
-    "caption": "(410/simpledraw, maybe not the best image)L2 image, showing its Problems"
+    "caption": "(410/simpledraw, maybe not the best image)L2 image, showing its Problems",
+    "where": "..\\..\\write\\/data\\03graphae\\05losses"
   },
   {
     "typ": "img",
@@ -561,7 +590,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "Remember 3 Networks"
+    "caption": "Remember 3 Networks",
+    "where": "..\\..\\write\\/data\\03graphae\\05losses"
   },
   {
     "typ": "img",
@@ -569,7 +599,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "L1 image, working"
+    "caption": "L1 image, working",
+    "where": "..\\..\\write\\/data\\03graphae\\05losses"
   },
   {
     "typ": "img",
@@ -577,7 +608,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "Image like loss working well"
+    "caption": "Image like loss working well",
+    "where": "..\\..\\write\\/data\\03graphae\\05losses"
   },
   {
     "typ": "subsection",
@@ -591,7 +623,8 @@
       "../imgs/dist1"
     ],
     "label": "dist1",
-    "caption": "(mmt/dist1)double Gaussian Peak quality example"
+    "caption": "(mmt/dist1)double Gaussian Peak quality example",
+    "where": "..\\..\\write\\/data\\03graphae\\06caddition"
   },
   {
     "typ": "img",
@@ -599,7 +632,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "c addition example"
+    "caption": "c addition example",
+    "where": "..\\..\\write\\/data\\03graphae\\06caddition"
   },
   {
     "typ": "img",
@@ -607,7 +641,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "c addition on jets for 4 parts once with power -3 and one with power 0"
+    "caption": "c addition on jets for 4 parts once with power -3 and one with power 0",
+    "where": "..\\..\\write\\/data\\03graphae\\06caddition"
   },
   {
     "typ": "subsection",
@@ -633,7 +668,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "AUC map for non normated nets"
+    "caption": "AUC map for non normated nets",
+    "where": "..\\..\\write\\/data\\04aucsinv\\02simplicity"
   },
   {
     "typ": "img",
@@ -641,7 +677,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "Input size vs output size for each Feature and non normated nets"
+    "caption": "Input size vs output size for each Feature and non normated nets",
+    "where": "..\\..\\write\\/data\\04aucsinv\\02simplicity"
   },
   {
     "typ": "img",
@@ -649,7 +686,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "2d hist angular of qcd vs top"
+    "caption": "2d hist angular of qcd vs top",
+    "where": "..\\..\\write\\/data\\04aucsinv\\02simplicity"
   },
   {
     "typ": "img",
@@ -657,7 +695,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "scaling of zero comparison no c addition"
+    "caption": "scaling of zero comparison no c addition",
+    "where": "..\\..\\write\\/data\\04aucsinv\\02simplicity"
   },
   {
     "typ": "img",
@@ -665,7 +704,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "scaling of zero comparison with c addition"
+    "caption": "scaling of zero comparison with c addition",
+    "where": "..\\..\\write\\/data\\04aucsinv\\02simplicity"
   },
   {
     "typ": "subsection",
@@ -679,7 +719,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "invertibility of an old model"
+    "caption": "invertibility of an old model",
+    "where": "..\\..\\write\\/data\\04aucsinv\\03inv"
   },
   {
     "typ": "subsection",
@@ -717,7 +758,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE for standart norm networks, showing nothing useful"
+    "caption": "ABE for standart norm networks, showing nothing useful",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -725,7 +767,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE for better norm"
+    "caption": "ABE for better norm",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img2",
@@ -734,7 +777,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "invertible 4node network auc maps"
+    "caption": "invertible 4node network auc maps",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -742,7 +786,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "double roc curve for invertibility of normated networks"
+    "caption": "double roc curve for invertibility of normated networks",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -750,7 +795,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "1k Networks, loss vs auc plot"
+    "caption": "1k Networks, loss vs auc plot",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -758,7 +804,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "justification of the new compression size, auc vs quality for compression size 8 and 9"
+    "caption": "justification of the new compression size, auc vs quality for compression size 8 and 9",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -766,7 +813,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "comparison of reproducability for earlystopping and minepoch"
+    "caption": "comparison of reproducability for earlystopping and minepoch",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -774,7 +822,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE for better norm (just a copy)"
+    "caption": "ABE for better norm (just a copy)",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -782,7 +831,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "better norm pt0 dist"
+    "caption": "better norm pt0 dist",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "img",
@@ -790,7 +840,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE good norm"
+    "caption": "ABE good norm",
+    "where": "..\\..\\write\\/data\\04aucsinv\\04norm"
   },
   {
     "typ": "subsection",
@@ -804,55 +855,38 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "Invertibility as function of compression, showing also in accuracy"
-  },
-  {
-    "typ": "section",
-    "title": "Data",
-    "label": "secdata",
-    "file": "..\\..\\write\\/data\\05otherdata\\01intro"
-  },
-  {
-    "typ": "subsection",
-    "title": "Ligth Dark Matter",
-    "label": "ldm",
-    "file": "..\\..\\write\\/data\\05otherdata\\02ldm"
-  },
-  {
-    "typ": "subsection",
-    "title": "Quark v Gluon",
-    "label": "qg",
-    "file": "..\\..\\write\\/data\\05otherdata\\03quarkgluon"
+    "caption": "Invertibility as function of compression, showing also in accuracy",
+    "where": "..\\..\\write\\/data\\04aucsinv\\06aucs"
   },
   {
     "typ": "section",
     "title": "Other Approaches",
     "label": "secother",
-    "file": "..\\..\\write\\/data\\06othernets\\01title"
+    "file": "..\\..\\write\\/data\\05othernets\\01title"
   },
   {
     "typ": "subsection",
     "title": "Oneoff Networks",
     "label": "oneoff",
-    "file": "..\\..\\write\\/data\\06othernets\\03oneoff"
+    "file": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "subsubsection",
     "title": "oneoff math",
     "label": "oomath",
-    "file": "..\\..\\write\\/data\\06othernets\\03oneoff"
+    "file": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "subsubsection",
     "title": "oneoff quality",
     "label": "ooquality",
-    "file": "..\\..\\write\\/data\\06othernets\\03oneoff"
+    "file": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "subsubsection",
     "title": "oneoff outside of physics",
     "label": "oomnist",
-    "file": "..\\..\\write\\/data\\06othernets\\03oneoff"
+    "file": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "img",
@@ -860,7 +894,8 @@
       "../imgs/aucmapb"
     ],
     "label": "aucmapb",
-    "caption": "(534)AUC Feature Map for an on Top trained Autoencoder, using a good normation"
+    "caption": "(534)AUC Feature Map for an on Top trained Autoencoder, using a good normation",
+    "where": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "img",
@@ -868,7 +903,8 @@
       "../imgs/img_doublepeak"
     ],
     "label": "img_doublepeak",
-    "caption": "(c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak"
+    "caption": "(c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak",
+    "where": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "img",
@@ -876,7 +912,8 @@
       "../imgs/mabe3"
     ],
     "label": "mabe3",
-    "caption": "(multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff"
+    "caption": "(multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff",
+    "where": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "img",
@@ -884,31 +921,32 @@
       "../imgs/examples"
     ],
     "label": "examples",
-    "caption": "(752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample"
+    "caption": "(752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample",
+    "where": "..\\..\\write\\/data\\05othernets\\03oneoff"
   },
   {
     "typ": "subsection",
     "title": "Other Algorithms",
     "label": "other",
-    "file": "..\\..\\write\\/data\\06othernets\\05otheralgo"
+    "file": "..\\..\\write\\/data\\05othernets\\05otheralgo"
   },
   {
     "typ": "subsubsection",
     "title": "Support Vector Machines",
     "label": "whatssvm",
-    "file": "..\\..\\write\\/data\\06othernets\\05otheralgo"
+    "file": "..\\..\\write\\/data\\05othernets\\05otheralgo"
   },
   {
     "typ": "subsubsection",
     "title": "k neirest neighbours",
     "label": "whatsnvm",
-    "file": "..\\..\\write\\/data\\06othernets\\05otheralgo"
+    "file": "..\\..\\write\\/data\\05othernets\\05otheralgo"
   },
   {
     "typ": "subsubsection",
     "title": "Isolation Forests",
     "label": "whatsiforest",
-    "file": "..\\..\\write\\/data\\06othernets\\05otheralgo"
+    "file": "..\\..\\write\\/data\\05othernets\\05otheralgo"
   },
   {
     "typ": "img",
@@ -916,49 +954,50 @@
       "../imgs/img_circle"
     ],
     "label": "img_circle",
-    "caption": "(c4/16) A simple example of a shape, that an SVM cannot differentiate"
+    "caption": "(c4/16) A simple example of a shape, that an SVM cannot differentiate",
+    "where": "..\\..\\write\\/data\\05othernets\\05otheralgo"
   },
   {
     "typ": "section",
     "title": "Mixed Approaches",
     "label": "secmixed",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\00intro"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\00intro"
   },
   {
     "typ": "subsection",
     "title": "Compressed One Class Learning",
     "label": "mixedidea",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\01idea"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\01idea"
   },
   {
     "typ": "subsection",
     "title": "",
     "label": "mixedalt",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\02diffalgo"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "subsubsection",
     "title": "SVM",
     "label": "mixedSVM",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\02diffalgo"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "subsubsection",
     "title": "Isolation Forest",
     "label": "mixediforest",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\02diffalgo"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "subsubsection",
     "title": "k neirest neighbour",
     "label": "mixedknn",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\02diffalgo"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "subsubsection",
     "title": "oneoff",
     "label": "mixedoo",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\02diffalgo"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "img",
@@ -966,7 +1005,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "677 simpledraw"
+    "caption": "677 simpledraw",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "img",
@@ -974,37 +1014,140 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "comparison of all one class algos"
+    "caption": "comparison of all one class algos",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\02diffalgo"
   },
   {
     "typ": "subsection",
     "title": "???",
     "label": "???",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\07questionmark"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\07questionmark"
   },
   {
     "typ": "subsection",
     "title": "Why Autoencoder might not be so great",
     "label": "whynotgae",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\08whyaesuck"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
   },
   {
     "typ": "subsubsection",
     "title": "Reproduding vs Classifing Quality",
     "label": "nogaequal",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\08whyaesuck"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
   },
   {
     "typ": "subsubsection",
     "title": "General Problems",
     "label": "nogaegeneral",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\08whyaesuck"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
   },
   {
     "typ": "subsubsection",
     "title": "Autoencoder and losses",
     "label": "nogaeloss",
-    "file": "..\\..\\write\\/data\\07oneoffplus\\08whyaesuck"
+    "file": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "A simple old ABE nonorm focus on angular",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "a \"good\" abe",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "ABE nonorm like exp on trivial decompressor",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "ABE multi Network with particle/graph like, and logged x axis",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "ABE for oneoff that nice curve",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "partial Network addition, auc(gs) for factors=choch-3 und factors=1",
+    "where": "..\\..\\write\\/data\\06oneoffplus\\08whyaesuck"
+  },
+  {
+    "typ": "section",
+    "title": "Data",
+    "label": "secdata",
+    "file": "..\\..\\write\\/data\\07otherdata\\01intro"
+  },
+  {
+    "typ": "subsection",
+    "title": "Ligth Dark Matter",
+    "label": "ldm",
+    "file": "..\\..\\write\\/data\\07otherdata\\02ldm"
+  },
+  {
+    "typ": "subsection",
+    "title": "Quark v Gluon",
+    "label": "qg",
+    "file": "..\\..\\write\\/data\\07otherdata\\03quarkgluon"
+  },
+  {
+    "typ": "section",
+    "title": "Other Usecases",
+    "label": "secuse",
+    "file": "..\\..\\write\\/data\\08otheruses\\00section"
+  },
+  {
+    "typ": "subsection",
+    "title": "Fraud Detection for Social Networks",
+    "label": "nets",
+    "file": "..\\..\\write\\/data\\08otheruses\\02nets"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Datageneration",
+    "label": "netsdata",
+    "file": "..\\..\\write\\/data\\08otheruses\\02nets"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Training",
+    "label": "netstrain",
+    "file": "..\\..\\write\\/data\\08otheruses\\02nets"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Whats Next",
+    "label": "netsnext",
+    "file": "..\\..\\write\\/data\\08otheruses\\02nets"
   },
   {
     "typ": "img",
@@ -1012,7 +1155,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "A simple old ABE nonorm focus on angular"
+    "caption": "network plot for nets",
+    "where": "..\\..\\write\\/data\\08otheruses\\02nets"
   },
   {
     "typ": "img",
@@ -1020,7 +1164,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "a \"good\" abe"
+    "caption": "loss distribution for nets",
+    "where": "..\\..\\write\\/data\\08otheruses\\02nets"
   },
   {
     "typ": "img",
@@ -1028,7 +1173,68 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE nonorm like exp on trivial decompressor"
+    "caption": "oo dist for nets",
+    "where": "..\\..\\write\\/data\\08otheruses\\02nets"
+  },
+  {
+    "typ": "subsection",
+    "title": "Accelarating molecular science through pooling",
+    "label": "mol",
+    "file": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Datageneration",
+    "label": "moldata",
+    "file": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Training",
+    "label": "moltrain",
+    "file": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Whats next?",
+    "label": "molnext",
+    "file": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "modelsetup(s) mol",
+    "where": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "img",
+    "files": [
+      "../imgs/none"
+    ],
+    "label": "none",
+    "caption": "training results mol 5/6",
+    "where": "..\\..\\write\\/data\\08otheruses\\03mol"
+  },
+  {
+    "typ": "subsection",
+    "title": "High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs",
+    "label": "feyn",
+    "file": "..\\..\\write\\/data\\08otheruses\\04feyn"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Data generation",
+    "label": "feyndata",
+    "file": "..\\..\\write\\/data\\08otheruses\\04feyn"
+  },
+  {
+    "typ": "subsubsection",
+    "title": "Training",
+    "label": "feyntrain",
+    "file": "..\\..\\write\\/data\\08otheruses\\04feyn"
   },
   {
     "typ": "img",
@@ -1036,7 +1242,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE multi Network with particle/graph like, and logged x axis"
+    "caption": "Example Image of the conversion",
+    "where": "..\\..\\write\\/data\\08otheruses\\04feyn"
   },
   {
     "typ": "img",
@@ -1044,7 +1251,8 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "ABE for oneoff that nice curve"
+    "caption": "model plot feyn",
+    "where": "..\\..\\write\\/data\\08otheruses\\04feyn"
   },
   {
     "typ": "img",
@@ -1052,12 +1260,13 @@
       "../imgs/none"
     ],
     "label": "none",
-    "caption": "partial Network addition, auc(gs) for factors=choch-3 und factors=1"
+    "caption": "training plot for feynnp",
+    "where": "..\\..\\write\\/data\\08otheruses\\04feyn"
   },
   {
     "typ": "section",
     "title": "Appendix",
     "label": "appendix",
-    "file": "..\\..\\write\\/data\\08anhang\\01title"
+    "file": "..\\..\\write\\/data\\10anhang\\01title"
   }
 ]
\ No newline at end of file
diff --git a/out/main.aux b/out/main.aux
index 782eb69dea45b4b4f6fd41b04223c9bf965c9e8c..016c743930bfe296702340a34c043be71fba973c 100644
--- a/out/main.aux
+++ b/out/main.aux
@@ -251,79 +251,119 @@
 \newlabel{sec:aucfortt}{{4.4}{60}{Auc Scores for Toptagging}{subsection.4.4}{}}
 \@writefile{lof}{\contentsline {figure}{\numberline {4.17}{\ignorespaces Invertibility as function of compression, showing also in accuracy\relax }}{61}{figure.caption.57}\protected@file@percent }
 \newlabel{fig:none}{{4.17}{61}{Invertibility as function of compression, showing also in accuracy\relax }{figure.caption.57}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {5}Data}{62}{section.5}\protected@file@percent }
-\newlabel{sec:secdata}{{5}{62}{Data}{section.5}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Ligth Dark Matter}{62}{subsection.5.1}\protected@file@percent }
-\newlabel{sec:ldm}{{5.1}{62}{Ligth Dark Matter}{subsection.5.1}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Quark v Gluon}{62}{subsection.5.2}\protected@file@percent }
-\newlabel{sec:qg}{{5.2}{62}{Quark v Gluon}{subsection.5.2}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {6}Other Approaches}{63}{section.6}\protected@file@percent }
-\newlabel{sec:secother}{{6}{63}{Other Approaches}{section.6}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Oneoff Networks}{63}{subsection.6.1}\protected@file@percent }
-\newlabel{sec:oneoff}{{6.1}{63}{Oneoff Networks}{subsection.6.1}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces (534)AUC Feature Map for an on Top trained Autoencoder, using a good normation\relax }}{63}{figure.caption.58}\protected@file@percent }
-\newlabel{fig:aucmapb}{{6.1}{63}{(534)AUC Feature Map for an on Top trained Autoencoder, using a good normation\relax }{figure.caption.58}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.1}oneoff math}{64}{subsubsection.6.1.1}\protected@file@percent }
-\newlabel{sec:oomath}{{6.1.1}{64}{oneoff math}{subsubsection.6.1.1}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces (c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak\relax }}{65}{figure.caption.59}\protected@file@percent }
-\newlabel{fig:img_doublepeak}{{6.2}{65}{(c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak\relax }{figure.caption.59}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.2}oneoff quality}{66}{subsubsection.6.1.2}\protected@file@percent }
-\newlabel{sec:ooquality}{{6.1.2}{66}{oneoff quality}{subsubsection.6.1.2}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces (multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff\relax }}{67}{figure.caption.60}\protected@file@percent }
-\newlabel{fig:mabe3}{{6.3}{67}{(multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff\relax }{figure.caption.60}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.3}oneoff outside of physics}{67}{subsubsection.6.1.3}\protected@file@percent }
-\newlabel{sec:oomnist}{{6.1.3}{67}{oneoff outside of physics}{subsubsection.6.1.3}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces (752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample\relax }}{68}{figure.caption.61}\protected@file@percent }
-\newlabel{fig:examples}{{6.4}{68}{(752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample\relax }{figure.caption.61}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Other Algorithms}{68}{subsection.6.2}\protected@file@percent }
-\newlabel{sec:other}{{6.2}{68}{Other Algorithms}{subsection.6.2}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1}Support Vector Machines}{68}{subsubsection.6.2.1}\protected@file@percent }
-\newlabel{sec:whatssvm}{{6.2.1}{68}{Support Vector Machines}{subsubsection.6.2.1}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces (c4/16) A simple example of a shape, that an SVM cannot differentiate\relax }}{69}{figure.caption.62}\protected@file@percent }
-\newlabel{fig:img_circle}{{6.5}{69}{(c4/16) A simple example of a shape, that an SVM cannot differentiate\relax }{figure.caption.62}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.2}k neirest neighbours}{69}{subsubsection.6.2.2}\protected@file@percent }
-\newlabel{sec:whatsnvm}{{6.2.2}{69}{k neirest neighbours}{subsubsection.6.2.2}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.3}Isolation Forests}{70}{subsubsection.6.2.3}\protected@file@percent }
-\newlabel{sec:whatsiforest}{{6.2.3}{70}{Isolation Forests}{subsubsection.6.2.3}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {7}Mixed Approaches}{71}{section.7}\protected@file@percent }
-\newlabel{sec:secmixed}{{7}{71}{Mixed Approaches}{section.7}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Compressed One Class Learning}{71}{subsection.7.1}\protected@file@percent }
-\newlabel{sec:mixedidea}{{7.1}{71}{Compressed One Class Learning}{subsection.7.1}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}}{71}{subsection.7.2}\protected@file@percent }
-\newlabel{sec:mixedalt}{{7.2}{71}{}{subsection.7.2}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces 677 simpledraw\relax }}{71}{figure.caption.63}\protected@file@percent }
-\newlabel{fig:none}{{7.1}{71}{677 simpledraw\relax }{figure.caption.63}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.1}SVM}{72}{subsubsection.7.2.1}\protected@file@percent }
-\newlabel{sec:mixedSVM}{{7.2.1}{72}{SVM}{subsubsection.7.2.1}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.2}Isolation Forest}{72}{subsubsection.7.2.2}\protected@file@percent }
-\newlabel{sec:mixediforest}{{7.2.2}{72}{Isolation Forest}{subsubsection.7.2.2}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.3}k neirest neighbour}{72}{subsubsection.7.2.3}\protected@file@percent }
-\newlabel{sec:mixedknn}{{7.2.3}{72}{k neirest neighbour}{subsubsection.7.2.3}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.4}oneoff}{72}{subsubsection.7.2.4}\protected@file@percent }
-\newlabel{sec:mixedoo}{{7.2.4}{72}{oneoff}{subsubsection.7.2.4}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.2}{\ignorespaces comparison of all one class algos\relax }}{72}{figure.caption.64}\protected@file@percent }
-\newlabel{fig:none}{{7.2}{72}{comparison of all one class algos\relax }{figure.caption.64}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}???}{72}{subsection.7.3}\protected@file@percent }
-\newlabel{sec:???}{{7.3}{72}{???}{subsection.7.3}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}Why Autoencoder might not be so great}{72}{subsection.7.4}\protected@file@percent }
-\newlabel{sec:whynotgae}{{7.4}{72}{Why Autoencoder might not be so great}{subsection.7.4}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.1}Reproduding vs Classifing Quality}{73}{subsubsection.7.4.1}\protected@file@percent }
-\newlabel{sec:nogaequal}{{7.4.1}{73}{Reproduding vs Classifing Quality}{subsubsection.7.4.1}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.3}{\ignorespaces A simple old ABE nonorm focus on angular\relax }}{74}{figure.caption.65}\protected@file@percent }
-\newlabel{fig:none}{{7.3}{74}{A simple old ABE nonorm focus on angular\relax }{figure.caption.65}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.4}{\ignorespaces a "good" abe\relax }}{75}{figure.caption.66}\protected@file@percent }
-\newlabel{fig:none}{{7.4}{75}{a "good" abe\relax }{figure.caption.66}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.5}{\ignorespaces ABE nonorm like exp on trivial decompressor\relax }}{76}{figure.caption.67}\protected@file@percent }
-\newlabel{fig:none}{{7.5}{76}{ABE nonorm like exp on trivial decompressor\relax }{figure.caption.67}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.6}{\ignorespaces ABE multi Network with particle/graph like, and logged x axis\relax }}{77}{figure.caption.68}\protected@file@percent }
-\newlabel{fig:none}{{7.6}{77}{ABE multi Network with particle/graph like, and logged x axis\relax }{figure.caption.68}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.7}{\ignorespaces ABE for oneoff that nice curve\relax }}{78}{figure.caption.69}\protected@file@percent }
-\newlabel{fig:none}{{7.7}{78}{ABE for oneoff that nice curve\relax }{figure.caption.69}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7.8}{\ignorespaces partial Network addition, auc(gs) for factors=choch-3 und factors=1\relax }}{79}{figure.caption.70}\protected@file@percent }
-\newlabel{fig:none}{{7.8}{79}{partial Network addition, auc(gs) for factors=choch-3 und factors=1\relax }{figure.caption.70}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.2}General Problems}{80}{subsubsection.7.4.2}\protected@file@percent }
-\newlabel{sec:nogaegeneral}{{7.4.2}{80}{General Problems}{subsubsection.7.4.2}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.3}Autoencoder and losses}{80}{subsubsection.7.4.3}\protected@file@percent }
-\newlabel{sec:nogaeloss}{{7.4.3}{80}{Autoencoder and losses}{subsubsection.7.4.3}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {8}Appendix}{81}{section.8}\protected@file@percent }
-\newlabel{sec:appendix}{{8}{81}{Appendix}{section.8}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {5}Other Approaches}{62}{section.5}\protected@file@percent }
+\newlabel{sec:secother}{{5}{62}{Other Approaches}{section.5}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Oneoff Networks}{62}{subsection.5.1}\protected@file@percent }
+\newlabel{sec:oneoff}{{5.1}{62}{Oneoff Networks}{subsection.5.1}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces (534)AUC Feature Map for an on Top trained Autoencoder, using a good normation\relax }}{62}{figure.caption.58}\protected@file@percent }
+\newlabel{fig:aucmapb}{{5.1}{62}{(534)AUC Feature Map for an on Top trained Autoencoder, using a good normation\relax }{figure.caption.58}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.1.1}oneoff math}{63}{subsubsection.5.1.1}\protected@file@percent }
+\newlabel{sec:oomath}{{5.1.1}{63}{oneoff math}{subsubsection.5.1.1}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces (c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak\relax }}{64}{figure.caption.59}\protected@file@percent }
+\newlabel{fig:img_doublepeak}{{5.2}{64}{(c4/16) Two different widths of a Background Peak, resulting in different overlapping to the signal Peak\relax }{figure.caption.59}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.1.2}oneoff quality}{65}{subsubsection.5.1.2}\protected@file@percent }
+\newlabel{sec:ooquality}{{5.1.2}{65}{oneoff quality}{subsubsection.5.1.2}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces (multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff\relax }}{66}{figure.caption.60}\protected@file@percent }
+\newlabel{fig:mabe3}{{5.3}{66}{(multiabe 3)Auc as function of the Epoch, trained on qcd, once for a Graph OneOff and once for a Dense OneOff\relax }{figure.caption.60}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.1.3}oneoff outside of physics}{66}{subsubsection.5.1.3}\protected@file@percent }
+\newlabel{sec:oomnist}{{5.1.3}{66}{oneoff outside of physics}{subsubsection.5.1.3}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {5.4}{\ignorespaces (752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample\relax }}{67}{figure.caption.61}\protected@file@percent }
+\newlabel{fig:examples}{{5.4}{67}{(752/draw) On the Top: The 5 least 7 like 7th in the Training set. On the Bottom: The 5 most 7 like not 7th in the Evaluation Sample\relax }{figure.caption.61}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Other Algorithms}{67}{subsection.5.2}\protected@file@percent }
+\newlabel{sec:other}{{5.2}{67}{Other Algorithms}{subsection.5.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.1}Support Vector Machines}{67}{subsubsection.5.2.1}\protected@file@percent }
+\newlabel{sec:whatssvm}{{5.2.1}{67}{Support Vector Machines}{subsubsection.5.2.1}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {5.5}{\ignorespaces (c4/16) A simple example of a shape, that an SVM cannot differentiate\relax }}{68}{figure.caption.62}\protected@file@percent }
+\newlabel{fig:img_circle}{{5.5}{68}{(c4/16) A simple example of a shape, that an SVM cannot differentiate\relax }{figure.caption.62}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.2}k neirest neighbours}{68}{subsubsection.5.2.2}\protected@file@percent }
+\newlabel{sec:whatsnvm}{{5.2.2}{68}{k neirest neighbours}{subsubsection.5.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.3}Isolation Forests}{69}{subsubsection.5.2.3}\protected@file@percent }
+\newlabel{sec:whatsiforest}{{5.2.3}{69}{Isolation Forests}{subsubsection.5.2.3}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {6}Mixed Approaches}{70}{section.6}\protected@file@percent }
+\newlabel{sec:secmixed}{{6}{70}{Mixed Approaches}{section.6}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Compressed One Class Learning}{70}{subsection.6.1}\protected@file@percent }
+\newlabel{sec:mixedidea}{{6.1}{70}{Compressed One Class Learning}{subsection.6.1}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}}{70}{subsection.6.2}\protected@file@percent }
+\newlabel{sec:mixedalt}{{6.2}{70}{}{subsection.6.2}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces 677 simpledraw\relax }}{70}{figure.caption.63}\protected@file@percent }
+\newlabel{fig:none}{{6.1}{70}{677 simpledraw\relax }{figure.caption.63}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1}SVM}{71}{subsubsection.6.2.1}\protected@file@percent }
+\newlabel{sec:mixedSVM}{{6.2.1}{71}{SVM}{subsubsection.6.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.2}Isolation Forest}{71}{subsubsection.6.2.2}\protected@file@percent }
+\newlabel{sec:mixediforest}{{6.2.2}{71}{Isolation Forest}{subsubsection.6.2.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.3}k neirest neighbour}{71}{subsubsection.6.2.3}\protected@file@percent }
+\newlabel{sec:mixedknn}{{6.2.3}{71}{k neirest neighbour}{subsubsection.6.2.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.4}oneoff}{71}{subsubsection.6.2.4}\protected@file@percent }
+\newlabel{sec:mixedoo}{{6.2.4}{71}{oneoff}{subsubsection.6.2.4}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces comparison of all one class algos\relax }}{71}{figure.caption.64}\protected@file@percent }
+\newlabel{fig:none}{{6.2}{71}{comparison of all one class algos\relax }{figure.caption.64}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}???}{71}{subsection.6.3}\protected@file@percent }
+\newlabel{sec:???}{{6.3}{71}{???}{subsection.6.3}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Why Autoencoder might not be so great}{71}{subsection.6.4}\protected@file@percent }
+\newlabel{sec:whynotgae}{{6.4}{71}{Why Autoencoder might not be so great}{subsection.6.4}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.4.1}Reproduding vs Classifing Quality}{72}{subsubsection.6.4.1}\protected@file@percent }
+\newlabel{sec:nogaequal}{{6.4.1}{72}{Reproduding vs Classifing Quality}{subsubsection.6.4.1}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces A simple old ABE nonorm focus on angular\relax }}{73}{figure.caption.65}\protected@file@percent }
+\newlabel{fig:none}{{6.3}{73}{A simple old ABE nonorm focus on angular\relax }{figure.caption.65}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces a "good" abe\relax }}{74}{figure.caption.66}\protected@file@percent }
+\newlabel{fig:none}{{6.4}{74}{a "good" abe\relax }{figure.caption.66}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces ABE nonorm like exp on trivial decompressor\relax }}{75}{figure.caption.67}\protected@file@percent }
+\newlabel{fig:none}{{6.5}{75}{ABE nonorm like exp on trivial decompressor\relax }{figure.caption.67}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.6}{\ignorespaces ABE multi Network with particle/graph like, and logged x axis\relax }}{76}{figure.caption.68}\protected@file@percent }
+\newlabel{fig:none}{{6.6}{76}{ABE multi Network with particle/graph like, and logged x axis\relax }{figure.caption.68}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.7}{\ignorespaces ABE for oneoff that nice curve\relax }}{77}{figure.caption.69}\protected@file@percent }
+\newlabel{fig:none}{{6.7}{77}{ABE for oneoff that nice curve\relax }{figure.caption.69}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {6.8}{\ignorespaces partial Network addition, auc(gs) for factors=choch-3 und factors=1\relax }}{78}{figure.caption.70}\protected@file@percent }
+\newlabel{fig:none}{{6.8}{78}{partial Network addition, auc(gs) for factors=choch-3 und factors=1\relax }{figure.caption.70}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.4.2}General Problems}{79}{subsubsection.6.4.2}\protected@file@percent }
+\newlabel{sec:nogaegeneral}{{6.4.2}{79}{General Problems}{subsubsection.6.4.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.4.3}Autoencoder and losses}{79}{subsubsection.6.4.3}\protected@file@percent }
+\newlabel{sec:nogaeloss}{{6.4.3}{79}{Autoencoder and losses}{subsubsection.6.4.3}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {7}Data}{80}{section.7}\protected@file@percent }
+\newlabel{sec:secdata}{{7}{80}{Data}{section.7}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Ligth Dark Matter}{80}{subsection.7.1}\protected@file@percent }
+\newlabel{sec:ldm}{{7.1}{80}{Ligth Dark Matter}{subsection.7.1}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Quark v Gluon}{80}{subsection.7.2}\protected@file@percent }
+\newlabel{sec:qg}{{7.2}{80}{Quark v Gluon}{subsection.7.2}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {8}Other Usecases}{81}{section.8}\protected@file@percent }
+\newlabel{sec:secuse}{{8}{81}{Other Usecases}{section.8}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {8.1}Fraud Detection for Social Networks}{81}{subsection.8.1}\protected@file@percent }
+\newlabel{sec:nets}{{8.1}{81}{Fraud Detection for Social Networks}{subsection.8.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1}Datageneration}{81}{subsubsection.8.1.1}\protected@file@percent }
+\newlabel{sec:netsdata}{{8.1.1}{81}{Datageneration}{subsubsection.8.1.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.2}Training}{82}{subsubsection.8.1.2}\protected@file@percent }
+\newlabel{sec:netstrain}{{8.1.2}{82}{Training}{subsubsection.8.1.2}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.1}{\ignorespaces network plot for nets\relax }}{82}{figure.caption.71}\protected@file@percent }
+\newlabel{fig:none}{{8.1}{82}{network plot for nets\relax }{figure.caption.71}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.2}{\ignorespaces loss distribution for nets\relax }}{83}{figure.caption.72}\protected@file@percent }
+\newlabel{fig:none}{{8.2}{83}{loss distribution for nets\relax }{figure.caption.72}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.3}{\ignorespaces oo dist for nets\relax }}{84}{figure.caption.73}\protected@file@percent }
+\newlabel{fig:none}{{8.3}{84}{oo dist for nets\relax }{figure.caption.73}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.3}Whats Next}{84}{subsubsection.8.1.3}\protected@file@percent }
+\newlabel{sec:netsnext}{{8.1.3}{84}{Whats Next}{subsubsection.8.1.3}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {8.2}Accelarating molecular science through pooling}{84}{subsection.8.2}\protected@file@percent }
+\newlabel{sec:mol}{{8.2}{84}{Accelarating molecular science through pooling}{subsection.8.2}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.1}Datageneration}{84}{subsubsection.8.2.1}\protected@file@percent }
+\newlabel{sec:moldata}{{8.2.1}{84}{Datageneration}{subsubsection.8.2.1}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.2}Training}{85}{subsubsection.8.2.2}\protected@file@percent }
+\newlabel{sec:moltrain}{{8.2.2}{85}{Training}{subsubsection.8.2.2}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.4}{\ignorespaces modelsetup(s) mol\relax }}{85}{figure.caption.74}\protected@file@percent }
+\newlabel{fig:none}{{8.4}{85}{modelsetup(s) mol\relax }{figure.caption.74}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.5}{\ignorespaces training results mol 5/6\relax }}{86}{figure.caption.75}\protected@file@percent }
+\newlabel{fig:none}{{8.5}{86}{training results mol 5/6\relax }{figure.caption.75}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.3}Whats next?}{86}{subsubsection.8.2.3}\protected@file@percent }
+\newlabel{sec:molnext}{{8.2.3}{86}{Whats next?}{subsubsection.8.2.3}{}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {8.3}High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs}{86}{subsection.8.3}\protected@file@percent }
+\newlabel{sec:feyn}{{8.3}{86}{High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs}{subsection.8.3}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.1}Data generation}{87}{subsubsection.8.3.1}\protected@file@percent }
+\newlabel{sec:feyndata}{{8.3.1}{87}{Data generation}{subsubsection.8.3.1}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.6}{\ignorespaces Example Image of the conversion\relax }}{88}{figure.caption.76}\protected@file@percent }
+\newlabel{fig:none}{{8.6}{88}{Example Image of the conversion\relax }{figure.caption.76}{}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.2}Training}{88}{subsubsection.8.3.2}\protected@file@percent }
+\newlabel{sec:feyntrain}{{8.3.2}{88}{Training}{subsubsection.8.3.2}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.7}{\ignorespaces model plot feyn\relax }}{88}{figure.caption.77}\protected@file@percent }
+\newlabel{fig:none}{{8.7}{88}{model plot feyn\relax }{figure.caption.77}{}}
+\@writefile{lof}{\contentsline {figure}{\numberline {8.8}{\ignorespaces training plot for feynnp\relax }}{89}{figure.caption.78}\protected@file@percent }
+\newlabel{fig:none}{{8.8}{89}{training plot for feynnp\relax }{figure.caption.78}{}}
+\@writefile{toc}{\contentsline {section}{\numberline {9}Appendix}{90}{section.9}\protected@file@percent }
+\newlabel{sec:appendix}{{9}{90}{Appendix}{section.9}{}}
diff --git a/out/main.log b/out/main.log
index a9bae7116f35514244a9f5c1307db98c30e6740d..a9e4c4bd82113b50d68e79de8209b27d718b234b 100644
--- a/out/main.log
+++ b/out/main.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.14159265-2.6-1.40.20 (MiKTeX 2.9.7250 64-bit) (preloaded format=pdflatex 2020.2.7)  14 SEP 2020 21:06
+This is pdfTeX, Version 3.14159265-2.6-1.40.20 (MiKTeX 2.9.7250 64-bit) (preloaded format=pdflatex 2020.2.7)  20 SEP 2020 19:04
 entering extended mode
 **./main.tex
 (main.tex
@@ -548,6 +548,30 @@ LaTeX Warning: Label `fig:none' multiply defined.
 LaTeX Warning: Label `fig:none' multiply defined.
 
 
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
+LaTeX Warning: Label `fig:none' multiply defined.
+
+
 LaTeX Warning: Label `fig:none' multiply defined.
 
 )
@@ -669,7 +693,7 @@ File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
 )
 LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <12> not available
 (Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 84.
-<../imgs/linear.pdf, id=343, 433.62pt x 650.43pt>
+<../imgs/linear.pdf, id=391, 433.62pt x 650.43pt>
 File: ../imgs/linear.pdf Graphic file (type pdf)
 <use ../imgs/linear.pdf>
 Package pdftex.def Info: ../imgs/linear.pdf  used on input line 161.
@@ -696,13 +720,13 @@ LaTeX Font Info:    Trying to load font information for U+msb on input line 168
 ("C:\Program Files\MiKTeX 2.9\tex/latex/amsfonts\umsb.fd"
 File: umsb.fd 2013/01/14 v3.01 AMS symbols B
 ) [2 <../imgs/linear.pdf>]
-<../imgs/none.png, id=376, 220.57407pt x 148.30406pt>
+<../imgs/none.png, id=424, 220.57407pt x 148.30406pt>
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
 Package pdftex.def Info: ../imgs/none.png  used on input line 174.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [3 <../imgs/none.png>]
-<../imgs/dia3.pdf, id=393, 228.855pt x 305.22029pt>
+<../imgs/dia3.pdf, id=441, 228.855pt x 305.22029pt>
 File: ../imgs/dia3.pdf Graphic file (type pdf)
 <use ../imgs/dia3.pdf>
 Package pdftex.def Info: ../imgs/dia3.pdf  used on input line 205.
@@ -712,12 +736,12 @@ Package pdftex.def Info: ../imgs/dia3.pdf  used on input line 205.
 pdfTeX warning: pdflatex (file ../imgs/dia3.pdf): PDF inclusion: invalid other 
 resource which is no dict (key 'ProcSets', type <array>); ignored.
 >] [6] [7]
-<../imgs/defttetc.png, id=441, 853.1875pt x 518.93875pt>
+<../imgs/defttetc.png, id=489, 853.1875pt x 518.93875pt>
 File: ../imgs/defttetc.png Graphic file (type png)
 <use ../imgs/defttetc.png>
 Package pdftex.def Info: ../imgs/defttetc.png  used on input line 244.
 (pdftex.def)             Requested size: 435.32422pt x 264.78195pt.
-<../imgs/add3.pdf, id=442, 433.62pt x 289.08pt>
+<../imgs/add3.pdf, id=490, 433.62pt x 289.08pt>
 File: ../imgs/add3.pdf Graphic file (type pdf)
 <use ../imgs/add3.pdf>
 Package pdftex.def Info: ../imgs/add3.pdf  used on input line 257.
@@ -827,7 +851,7 @@ LaTeX Warning: `!h' float specifier changed to `!ht'.
 LaTeX Warning: `!h' float specifier changed to `!ht'.
 
 [31] [32] [33]
-<../imgs/trivscale.pdf, id=703, 578.16pt x 433.62pt>
+<../imgs/trivscale.pdf, id=751, 578.16pt x 433.62pt>
 File: ../imgs/trivscale.pdf Graphic file (type pdf)
 <use ../imgs/trivscale.pdf>
 Package pdftex.def Info: ../imgs/trivscale.pdf  used on input line 879.
@@ -838,7 +862,7 @@ File: ../imgs/none.png Graphic file (type png)
 Package pdftex.def Info: ../imgs/none.png  used on input line 892.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [35 <../imgs/trivscale.pdf>]
-<../imgs/splitscale.pdf, id=756, 433.62pt x 650.43pt>
+<../imgs/splitscale.pdf, id=804, 433.62pt x 650.43pt>
 File: ../imgs/splitscale.pdf Graphic file (type pdf)
 <use ../imgs/splitscale.pdf>
 Package pdftex.def Info: ../imgs/splitscale.pdf  used on input line 901.
@@ -849,7 +873,7 @@ File: ../imgs/none.png Graphic file (type png)
 Package pdftex.def Info: ../imgs/none.png  used on input line 915.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [37 <../imgs/splitscale.pdf>] [38]
-<../imgs/410simpledraw16.pdf, id=821, 462.52798pt x 346.89601pt>
+<../imgs/410simpledraw16.pdf, id=869, 462.52798pt x 346.89601pt>
 File: ../imgs/410simpledraw16.pdf Graphic file (type pdf)
 <use ../imgs/410simpledraw16.pdf>
 Package pdftex.def Info: ../imgs/410simpledraw16.pdf  used on input line 938.
@@ -869,7 +893,7 @@ File: ../imgs/none.png Graphic file (type png)
 Package pdftex.def Info: ../imgs/none.png  used on input line 985.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [42]
-<../imgs/dist1.pdf, id=895, 433.62pt x 289.08pt>
+<../imgs/dist1.pdf, id=943, 433.62pt x 289.08pt>
 File: ../imgs/dist1.pdf Graphic file (type pdf)
 <use ../imgs/dist1.pdf>
 Package pdftex.def Info: ../imgs/dist1.pdf  used on input line 1013.
@@ -968,97 +992,135 @@ File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
 Package pdftex.def Info: ../imgs/none.png  used on input line 1356.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
- [60] [61] [62]
-<../imgs/aucmapb.pdf, id=1071, 462.52798pt x 346.89601pt>
+ [60] [61]
+<../imgs/aucmapb.pdf, id=1115, 462.52798pt x 346.89601pt>
 File: ../imgs/aucmapb.pdf Graphic file (type pdf)
 <use ../imgs/aucmapb.pdf>
-Package pdftex.def Info: ../imgs/aucmapb.pdf  used on input line 1415.
+Package pdftex.def Info: ../imgs/aucmapb.pdf  used on input line 1390.
 (pdftex.def)             Requested size: 435.32422pt x 326.51103pt.
- [63 <../imgs/aucmapb.pdf>]
-<../imgs/img_doublepeak.pdf, id=1110, 462.52798pt x 346.89601pt>
+ [62 <../imgs/aucmapb.pdf>]
+<../imgs/img_doublepeak.pdf, id=1154, 462.52798pt x 346.89601pt>
 File: ../imgs/img_doublepeak.pdf Graphic file (type pdf)
 <use ../imgs/img_doublepeak.pdf>
-Package pdftex.def Info: ../imgs/img_doublepeak.pdf  used on input line 1431.
+Package pdftex.def Info: ../imgs/img_doublepeak.pdf  used on input line 1406.
 (pdftex.def)             Requested size: 435.32422pt x 326.51103pt.
- [64] [65 <../imgs/img_doublepeak.pdf>]
-<../imgs/mabe3.pdf, id=1166, 462.52798pt x 346.89601pt>
+ [63] [64 <../imgs/img_doublepeak.pdf>]
+<../imgs/mabe3.pdf, id=1210, 462.52798pt x 346.89601pt>
 File: ../imgs/mabe3.pdf Graphic file (type pdf)
 <use ../imgs/mabe3.pdf>
-Package pdftex.def Info: ../imgs/mabe3.pdf  used on input line 1455.
+Package pdftex.def Info: ../imgs/mabe3.pdf  used on input line 1430.
 (pdftex.def)             Requested size: 435.32422pt x 326.51103pt.
- [66]
-<../imgs/examples.pdf, id=1187, 542.025pt x 289.08pt>
+ [65]
+<../imgs/examples.pdf, id=1231, 542.025pt x 289.08pt>
 File: ../imgs/examples.pdf Graphic file (type pdf)
 <use ../imgs/examples.pdf>
-Package pdftex.def Info: ../imgs/examples.pdf  used on input line 1469.
+Package pdftex.def Info: ../imgs/examples.pdf  used on input line 1444.
 (pdftex.def)             Requested size: 435.32422pt x 232.1818pt.
- [67 <../imgs/mabe3.pdf>]
-<../imgs/img_circle.pdf, id=1227, 462.52798pt x 346.89601pt>
+ [66 <../imgs/mabe3.pdf>]
+<../imgs/img_circle.pdf, id=1270, 462.52798pt x 346.89601pt>
 File: ../imgs/img_circle.pdf Graphic file (type pdf)
 <use ../imgs/img_circle.pdf>
-Package pdftex.def Info: ../imgs/img_circle.pdf  used on input line 1495.
+Package pdftex.def Info: ../imgs/img_circle.pdf  used on input line 1470.
 (pdftex.def)             Requested size: 435.32422pt x 326.51103pt.
- [68 <../imgs/examples.pdf>] [69 <../imgs/img_circle.pdf>] [70]
+ [67 <../imgs/examples.pdf>] [68 <../imgs/img_circle.pdf>] [69]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1544.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1519.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
- [71]
+ [70]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1572.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1547.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1601.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1576.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
- [72] [73]
+ [71] [72]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1610.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1585.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [73]
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1595.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [74]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1620.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1606.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [75]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1631.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1615.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
  [76]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1640.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1626.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
- [77]
+ [77] [78] [79] [80]
 File: ../imgs/none.png Graphic file (type png)
 <use ../imgs/none.png>
-Package pdftex.def Info: ../imgs/none.png  used on input line 1651.
+Package pdftex.def Info: ../imgs/none.png  used on input line 1706.
 (pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
- [78] [79] [80]
-Package atveryend Info: Empty hook `BeforeClearDocument' on input line 1703.
 
 [81]
-Package atveryend Info: Empty hook `AfterLastShipout' on input line 1703.
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1717.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [82]
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1726.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [83] [84]
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1759.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1768.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [85] [86]
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1798.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [87]
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1809.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+File: ../imgs/none.png Graphic file (type png)
+<use ../imgs/none.png>
+Package pdftex.def Info: ../imgs/none.png  used on input line 1818.
+(pdftex.def)             Requested size: 435.32422pt x 292.70605pt.
+ [88] [89]
+Package atveryend Info: Empty hook `BeforeClearDocument' on input line 1859.
+ [90]
+Package atveryend Info: Empty hook `AfterLastShipout' on input line 1859.
  (main.aux)
-Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 1703.
-Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 1703.
+Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 1859.
+Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 1859.
 
 Package rerunfilecheck Info: File `main.out' has not changed.
-(rerunfilecheck)             Checksum: CC703BE35475EF39A7B2C21AAEBEB8C5;5997.
+(rerunfilecheck)             Checksum: 29E82BBAFC7E7E199DD03BFA26042A90;6950.
 
 
 LaTeX Warning: There were multiply-defined labels.
 
-Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 1703.
+Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 1859.
  ) 
 Here is how much of TeX's memory you used:
- 9561 strings out of 492484
- 141322 string characters out of 3130558
- 245951 words of memory out of 3000000
- 13332 multiletter control sequences out of 15000+200000
+ 9632 strings out of 492484
+ 142338 string characters out of 3130558
+ 246628 words of memory out of 3000000
+ 13356 multiletter control sequences out of 15000+200000
  11502 words of font info for 45 fonts, out of 3000000 for 9000
  1141 hyphenation exceptions out of 8191
  41i,13n,45p,3416b,395s stack positions out of 5000i,500n,10000p,200000b,50000s
@@ -1071,16 +1133,16 @@ onts/type1/public/amsfonts/cm/cmmi5.pfb><C:/Program Files/MiKTeX 2.9/fonts/type
 amsfonts/cm/cmmi7.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/
 cm/cmmi8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr10.
 pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr12.pfb><C:/P
-rogram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr6.pfb><C:/Program Fil
-es/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr7.pfb><C:/Program Files/MiKTeX 
-2.9/fonts/type1/public/amsfonts/cm/cmr8.pfb><C:/Program Files/MiKTeX 2.9/fonts/
-type1/public/amsfonts/cm/cmsy10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/pu
-blic/amsfonts/cm/cmsy6.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsf
-onts/cm/cmsy7.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/c
-msy8.pfb>
-Output written on main.pdf (81 pages, 1652962 bytes).
+rogram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr5.pfb><C:/Program Fil
+es/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr6.pfb><C:/Program Files/MiKTeX 
+2.9/fonts/type1/public/amsfonts/cm/cmr7.pfb><C:/Program Files/MiKTeX 2.9/fonts/
+type1/public/amsfonts/cm/cmr8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/publ
+ic/amsfonts/cm/cmsy10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfo
+nts/cm/cmsy6.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cm
+sy7.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy8.pfb>
+Output written on main.pdf (90 pages, 1696112 bytes).
 PDF statistics:
- 1545 PDF objects out of 1728 (max. 8388607)
- 390 named destinations out of 1000 (max. 500000)
- 751 words of extra memory for PDF output out of 10000 (max. 10000000)
+ 1689 PDF objects out of 1728 (max. 8388607)
+ 437 named destinations out of 1000 (max. 500000)
+ 847 words of extra memory for PDF output out of 10000 (max. 10000000)
 
diff --git a/out/main.out b/out/main.out
index 2c22b33a89cd99fb50ff588f98f9bb75e03c8a1c..225c288d58f9bf19d154b31f9aad4ecd9d8e4181 100644
--- a/out/main.out
+++ b/out/main.out
@@ -58,28 +58,40 @@
 \BOOKMARK [3][-]{subsubsection.4.3.3}{Using this normation}{subsection.4.3}% 58
 \BOOKMARK [3][-]{subsubsection.4.3.4}{Improving the Normation even further}{subsection.4.3}% 59
 \BOOKMARK [2][-]{subsection.4.4}{Auc Scores for Toptagging}{section.4}% 60
-\BOOKMARK [1][-]{section.5}{Data}{}% 61
-\BOOKMARK [2][-]{subsection.5.1}{Ligth Dark Matter}{section.5}% 62
-\BOOKMARK [2][-]{subsection.5.2}{Quark v Gluon}{section.5}% 63
-\BOOKMARK [1][-]{section.6}{Other Approaches}{}% 64
-\BOOKMARK [2][-]{subsection.6.1}{Oneoff Networks}{section.6}% 65
-\BOOKMARK [3][-]{subsubsection.6.1.1}{oneoff math}{subsection.6.1}% 66
-\BOOKMARK [3][-]{subsubsection.6.1.2}{oneoff quality}{subsection.6.1}% 67
-\BOOKMARK [3][-]{subsubsection.6.1.3}{oneoff outside of physics}{subsection.6.1}% 68
-\BOOKMARK [2][-]{subsection.6.2}{Other Algorithms}{section.6}% 69
-\BOOKMARK [3][-]{subsubsection.6.2.1}{Support Vector Machines}{subsection.6.2}% 70
-\BOOKMARK [3][-]{subsubsection.6.2.2}{k neirest neighbours}{subsection.6.2}% 71
-\BOOKMARK [3][-]{subsubsection.6.2.3}{Isolation Forests}{subsection.6.2}% 72
-\BOOKMARK [1][-]{section.7}{Mixed Approaches}{}% 73
-\BOOKMARK [2][-]{subsection.7.1}{Compressed One Class Learning}{section.7}% 74
-\BOOKMARK [2][-]{subsection.7.2}{}{section.7}% 75
-\BOOKMARK [3][-]{subsubsection.7.2.1}{SVM}{subsection.7.2}% 76
-\BOOKMARK [3][-]{subsubsection.7.2.2}{Isolation Forest}{subsection.7.2}% 77
-\BOOKMARK [3][-]{subsubsection.7.2.3}{k neirest neighbour}{subsection.7.2}% 78
-\BOOKMARK [3][-]{subsubsection.7.2.4}{oneoff}{subsection.7.2}% 79
-\BOOKMARK [2][-]{subsection.7.3}{???}{section.7}% 80
-\BOOKMARK [2][-]{subsection.7.4}{Why Autoencoder might not be so great}{section.7}% 81
-\BOOKMARK [3][-]{subsubsection.7.4.1}{Reproduding vs Classifing Quality}{subsection.7.4}% 82
-\BOOKMARK [3][-]{subsubsection.7.4.2}{General Problems}{subsection.7.4}% 83
-\BOOKMARK [3][-]{subsubsection.7.4.3}{Autoencoder and losses}{subsection.7.4}% 84
-\BOOKMARK [1][-]{section.8}{Appendix}{}% 85
+\BOOKMARK [1][-]{section.5}{Other Approaches}{}% 61
+\BOOKMARK [2][-]{subsection.5.1}{Oneoff Networks}{section.5}% 62
+\BOOKMARK [3][-]{subsubsection.5.1.1}{oneoff math}{subsection.5.1}% 63
+\BOOKMARK [3][-]{subsubsection.5.1.2}{oneoff quality}{subsection.5.1}% 64
+\BOOKMARK [3][-]{subsubsection.5.1.3}{oneoff outside of physics}{subsection.5.1}% 65
+\BOOKMARK [2][-]{subsection.5.2}{Other Algorithms}{section.5}% 66
+\BOOKMARK [3][-]{subsubsection.5.2.1}{Support Vector Machines}{subsection.5.2}% 67
+\BOOKMARK [3][-]{subsubsection.5.2.2}{k neirest neighbours}{subsection.5.2}% 68
+\BOOKMARK [3][-]{subsubsection.5.2.3}{Isolation Forests}{subsection.5.2}% 69
+\BOOKMARK [1][-]{section.6}{Mixed Approaches}{}% 70
+\BOOKMARK [2][-]{subsection.6.1}{Compressed One Class Learning}{section.6}% 71
+\BOOKMARK [2][-]{subsection.6.2}{}{section.6}% 72
+\BOOKMARK [3][-]{subsubsection.6.2.1}{SVM}{subsection.6.2}% 73
+\BOOKMARK [3][-]{subsubsection.6.2.2}{Isolation Forest}{subsection.6.2}% 74
+\BOOKMARK [3][-]{subsubsection.6.2.3}{k neirest neighbour}{subsection.6.2}% 75
+\BOOKMARK [3][-]{subsubsection.6.2.4}{oneoff}{subsection.6.2}% 76
+\BOOKMARK [2][-]{subsection.6.3}{???}{section.6}% 77
+\BOOKMARK [2][-]{subsection.6.4}{Why Autoencoder might not be so great}{section.6}% 78
+\BOOKMARK [3][-]{subsubsection.6.4.1}{Reproduding vs Classifing Quality}{subsection.6.4}% 79
+\BOOKMARK [3][-]{subsubsection.6.4.2}{General Problems}{subsection.6.4}% 80
+\BOOKMARK [3][-]{subsubsection.6.4.3}{Autoencoder and losses}{subsection.6.4}% 81
+\BOOKMARK [1][-]{section.7}{Data}{}% 82
+\BOOKMARK [2][-]{subsection.7.1}{Ligth Dark Matter}{section.7}% 83
+\BOOKMARK [2][-]{subsection.7.2}{Quark v Gluon}{section.7}% 84
+\BOOKMARK [1][-]{section.8}{Other Usecases}{}% 85
+\BOOKMARK [2][-]{subsection.8.1}{Fraud Detection for Social Networks}{section.8}% 86
+\BOOKMARK [3][-]{subsubsection.8.1.1}{Datageneration}{subsection.8.1}% 87
+\BOOKMARK [3][-]{subsubsection.8.1.2}{Training}{subsection.8.1}% 88
+\BOOKMARK [3][-]{subsubsection.8.1.3}{Whats Next}{subsection.8.1}% 89
+\BOOKMARK [2][-]{subsection.8.2}{Accelarating molecular science through pooling}{section.8}% 90
+\BOOKMARK [3][-]{subsubsection.8.2.1}{Datageneration}{subsection.8.2}% 91
+\BOOKMARK [3][-]{subsubsection.8.2.2}{Training}{subsection.8.2}% 92
+\BOOKMARK [3][-]{subsubsection.8.2.3}{Whats next?}{subsection.8.2}% 93
+\BOOKMARK [2][-]{subsection.8.3}{High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs}{section.8}% 94
+\BOOKMARK [3][-]{subsubsection.8.3.1}{Data generation}{subsection.8.3}% 95
+\BOOKMARK [3][-]{subsubsection.8.3.2}{Training}{subsection.8.3}% 96
+\BOOKMARK [1][-]{section.9}{Appendix}{}% 97
diff --git a/out/main.pdf b/out/main.pdf
index a8c05569b05ebba91a8036d7265a2ffaae8e32f2..0540b1cfa3e71ff3087d34921e08afe2a04452c5 100644
--- a/out/main.pdf
+++ b/out/main.pdf
@@ -364,156 +364,228 @@ endobj
 << /S /GoTo /D (section.5) >>
 endobj
 244 0 obj
-(Data)
+(Other Approaches)
 endobj
 245 0 obj
 << /S /GoTo /D (subsection.5.1) >>
 endobj
 248 0 obj
-(Ligth Dark Matter)
+(Oneoff Networks)
 endobj
 249 0 obj
-<< /S /GoTo /D (subsection.5.2) >>
+<< /S /GoTo /D (subsubsection.5.1.1) >>
 endobj
 252 0 obj
-(Quark v Gluon)
+(oneoff math)
 endobj
 253 0 obj
-<< /S /GoTo /D (section.6) >>
+<< /S /GoTo /D (subsubsection.5.1.2) >>
 endobj
 256 0 obj
-(Other Approaches)
+(oneoff quality)
 endobj
 257 0 obj
-<< /S /GoTo /D (subsection.6.1) >>
+<< /S /GoTo /D (subsubsection.5.1.3) >>
 endobj
 260 0 obj
-(Oneoff Networks)
+(oneoff outside of physics)
 endobj
 261 0 obj
-<< /S /GoTo /D (subsubsection.6.1.1) >>
+<< /S /GoTo /D (subsection.5.2) >>
 endobj
 264 0 obj
-(oneoff math)
+(Other Algorithms)
 endobj
 265 0 obj
-<< /S /GoTo /D (subsubsection.6.1.2) >>
+<< /S /GoTo /D (subsubsection.5.2.1) >>
 endobj
 268 0 obj
-(oneoff quality)
+(Support Vector Machines)
 endobj
 269 0 obj
-<< /S /GoTo /D (subsubsection.6.1.3) >>
+<< /S /GoTo /D (subsubsection.5.2.2) >>
 endobj
 272 0 obj
-(oneoff outside of physics)
+(k neirest neighbours)
 endobj
 273 0 obj
-<< /S /GoTo /D (subsection.6.2) >>
+<< /S /GoTo /D (subsubsection.5.2.3) >>
 endobj
 276 0 obj
-(Other Algorithms)
+(Isolation Forests)
 endobj
 277 0 obj
-<< /S /GoTo /D (subsubsection.6.2.1) >>
+<< /S /GoTo /D (section.6) >>
 endobj
 280 0 obj
-(Support Vector Machines)
+(Mixed Approaches)
 endobj
 281 0 obj
-<< /S /GoTo /D (subsubsection.6.2.2) >>
+<< /S /GoTo /D (subsection.6.1) >>
 endobj
 284 0 obj
-(k neirest neighbours)
+(Compressed One Class Learning)
 endobj
 285 0 obj
-<< /S /GoTo /D (subsubsection.6.2.3) >>
+<< /S /GoTo /D (subsection.6.2) >>
 endobj
 288 0 obj
-(Isolation Forests)
+()
 endobj
 289 0 obj
-<< /S /GoTo /D (section.7) >>
+<< /S /GoTo /D (subsubsection.6.2.1) >>
 endobj
 292 0 obj
-(Mixed Approaches)
+(SVM)
 endobj
 293 0 obj
-<< /S /GoTo /D (subsection.7.1) >>
+<< /S /GoTo /D (subsubsection.6.2.2) >>
 endobj
 296 0 obj
-(Compressed One Class Learning)
+(Isolation Forest)
 endobj
 297 0 obj
-<< /S /GoTo /D (subsection.7.2) >>
+<< /S /GoTo /D (subsubsection.6.2.3) >>
 endobj
 300 0 obj
-()
+(k neirest neighbour)
 endobj
 301 0 obj
-<< /S /GoTo /D (subsubsection.7.2.1) >>
+<< /S /GoTo /D (subsubsection.6.2.4) >>
 endobj
 304 0 obj
-(SVM)
+(oneoff)
 endobj
 305 0 obj
-<< /S /GoTo /D (subsubsection.7.2.2) >>
+<< /S /GoTo /D (subsection.6.3) >>
 endobj
 308 0 obj
-(Isolation Forest)
+(???)
 endobj
 309 0 obj
-<< /S /GoTo /D (subsubsection.7.2.3) >>
+<< /S /GoTo /D (subsection.6.4) >>
 endobj
 312 0 obj
-(k neirest neighbour)
+(Why Autoencoder might not be so great)
 endobj
 313 0 obj
-<< /S /GoTo /D (subsubsection.7.2.4) >>
+<< /S /GoTo /D (subsubsection.6.4.1) >>
 endobj
 316 0 obj
-(oneoff)
+(Reproduding vs Classifing Quality)
 endobj
 317 0 obj
-<< /S /GoTo /D (subsection.7.3) >>
+<< /S /GoTo /D (subsubsection.6.4.2) >>
 endobj
 320 0 obj
-(???)
+(General Problems)
 endobj
 321 0 obj
-<< /S /GoTo /D (subsection.7.4) >>
+<< /S /GoTo /D (subsubsection.6.4.3) >>
 endobj
 324 0 obj
-(Why Autoencoder might not be so great)
+(Autoencoder and losses)
 endobj
 325 0 obj
-<< /S /GoTo /D (subsubsection.7.4.1) >>
+<< /S /GoTo /D (section.7) >>
 endobj
 328 0 obj
-(Reproduding vs Classifing Quality)
+(Data)
 endobj
 329 0 obj
-<< /S /GoTo /D (subsubsection.7.4.2) >>
+<< /S /GoTo /D (subsection.7.1) >>
 endobj
 332 0 obj
-(General Problems)
+(Ligth Dark Matter)
 endobj
 333 0 obj
-<< /S /GoTo /D (subsubsection.7.4.3) >>
+<< /S /GoTo /D (subsection.7.2) >>
 endobj
 336 0 obj
-(Autoencoder and losses)
+(Quark v Gluon)
 endobj
 337 0 obj
 << /S /GoTo /D (section.8) >>
 endobj
 340 0 obj
-(Appendix)
+(Other Usecases)
 endobj
 341 0 obj
-<< /S /GoTo /D [342 0 R /Fit] >>
+<< /S /GoTo /D (subsection.8.1) >>
+endobj
+344 0 obj
+(Fraud Detection for Social Networks)
 endobj
 345 0 obj
+<< /S /GoTo /D (subsubsection.8.1.1) >>
+endobj
+348 0 obj
+(Datageneration)
+endobj
+349 0 obj
+<< /S /GoTo /D (subsubsection.8.1.2) >>
+endobj
+352 0 obj
+(Training)
+endobj
+353 0 obj
+<< /S /GoTo /D (subsubsection.8.1.3) >>
+endobj
+356 0 obj
+(Whats Next)
+endobj
+357 0 obj
+<< /S /GoTo /D (subsection.8.2) >>
+endobj
+360 0 obj
+(Accelarating molecular science through pooling)
+endobj
+361 0 obj
+<< /S /GoTo /D (subsubsection.8.2.1) >>
+endobj
+364 0 obj
+(Datageneration)
+endobj
+365 0 obj
+<< /S /GoTo /D (subsubsection.8.2.2) >>
+endobj
+368 0 obj
+(Training)
+endobj
+369 0 obj
+<< /S /GoTo /D (subsubsection.8.2.3) >>
+endobj
+372 0 obj
+(Whats next?)
+endobj
+373 0 obj
+<< /S /GoTo /D (subsection.8.3) >>
+endobj
+376 0 obj
+(High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs)
+endobj
+377 0 obj
+<< /S /GoTo /D (subsubsection.8.3.1) >>
+endobj
+380 0 obj
+(Data generation)
+endobj
+381 0 obj
+<< /S /GoTo /D (subsubsection.8.3.2) >>
+endobj
+384 0 obj
+(Training)
+endobj
+385 0 obj
+<< /S /GoTo /D (section.9) >>
+endobj
+388 0 obj
+(Appendix)
+endobj
+389 0 obj
+<< /S /GoTo /D [390 0 R /Fit] >>
+endobj
+393 0 obj
 <<
 /Length 2024      
 /Filter /FlateDecode
@@ -535,52 +607,52 @@ Lr
 8���~��>�8d^���aGAN8�kA���Ӻ2;�`S0 ���Fi����G=IC��Ƌ"�۽�'���ŽP�;i�(+�T�wö���j�QR|�H�+%��6�>�}w6}8 �F��x��v���;��dʊ���mr_���9��Jr���N5�ZN��<�	@�J�h�fK�h)Uz�A2������%c`���/���� sK՘_c~�L�У)?�G�|�(�J�J�h9�inƓ��*O��IЮ�+�X�T���=v��!c�P�f$���:�L|}Ѽ�����_� �o
 endstream
 endobj
-342 0 obj
+390 0 obj
 <<
 /Type /Page
-/Contents 345 0 R
-/Resources 344 0 R
+/Contents 393 0 R
+/Resources 392 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
+/Parent 399 0 R
 >>
 endobj
-346 0 obj
+394 0 obj
 <<
-/D [342 0 R /XYZ 55.693 823.059 null]
+/D [390 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-348 0 obj
+396 0 obj
 <<
-/D [342 0 R /XYZ 56.693 785.197 null]
+/D [390 0 R /XYZ 56.693 785.197 null]
 >>
 endobj
 2 0 obj
 <<
-/D [342 0 R /XYZ 56.693 785.197 null]
+/D [390 0 R /XYZ 56.693 785.197 null]
 >>
 endobj
 6 0 obj
 <<
-/D [342 0 R /XYZ 56.693 761.403 null]
+/D [390 0 R /XYZ 56.693 761.403 null]
 >>
 endobj
 10 0 obj
 <<
-/D [342 0 R /XYZ 56.693 345.919 null]
+/D [390 0 R /XYZ 56.693 345.919 null]
 >>
 endobj
 14 0 obj
 <<
-/D [342 0 R /XYZ 56.693 286.766 null]
+/D [390 0 R /XYZ 56.693 286.766 null]
 >>
 endobj
-344 0 obj
+392 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F20 350 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F20 398 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-355 0 obj
+403 0 obj
 <<
 /Length 501       
 /Filter /FlateDecode
@@ -590,26 +662,26 @@ x
 _�n���-�S������n��nI����nMb��B�_Dhlz�+.�u�"�0�_2E3��}��1T��%b4�5:ϝ
�4�:w�F��눅%^�/��Q��x*(��a�1O5w��PC"�4�:7��w��7쟘�3IS��2��.^T���`��+��T�?L����)a"��֚ޥ9�BX�`�`�c�J3@]ecg��7���K䚨�ˁ�Bs��5t{����P��؅R�g��~�ض{_Q����e����Mu&�U]��i���Z����Pu�t�O�{R�����R��d4��ټD�l�Ǿ����ƌ�p���J�g�>1>��m ���.D>�� t�����m];���އa�4T�`׆��DJl�)�fx'���|vG��y��
 endstream
 endobj
-354 0 obj
+402 0 obj
 <<
 /Type /Page
-/Contents 355 0 R
-/Resources 353 0 R
+/Contents 403 0 R
+/Resources 401 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
-/Group 358 0 R
+/Parent 399 0 R
+/Group 406 0 R
 >>
 endobj
-343 0 obj
+391 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/linear.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 359 0 R
+/PTEX.InfoDict 407 0 R
 /BBox [0 0 432 648]
-/Group 358 0 R
+/Group 406 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -632,12 +704,12 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 360 0 R>>
+>>/Font << /F1 408 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/M0 361 0 R
+/M0 409 0 R
 >>>>
 /Length 2548
 /Filter /FlateDecode
@@ -653,33 +725,33 @@ qnS<_
 l���]}|����?�=�����i_?�������(ǘ/�? Y�,�H>�&[�����?~x���ͷ���\
 endstream
 endobj
-359 0 obj
+407 0 obj
 <<
 /CreationDate (D:20200426120357+02'00')
 /Creator (matplotlib 3.1.2, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.2)
 >>
 endobj
-360 0 obj
+408 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 362 0 R
+/CharProcs 410 0 R
 /Encoding <<
 /Differences [ 97/a 100/d/e 105/i 108/l 110/n 114/r 116/t 120/x/y]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 363 0 R
+/FontDescriptor 411 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 364 0 R
+/Widths 412 0 R
 >>
 endobj
-361 0 obj
+409 0 obj
 <<
 /BBox [ -4.742641 -4.742641 4.742641 4.742641]
 /Filter /FlateDecode
@@ -691,21 +763,21 @@ stream
 x�3P��2P�b]=##3C�\.8�@!(��p�Hepq9q���x
 endstream
 endobj
-362 0 obj
+410 0 obj
 <<
-/a 365 0 R
-/d 366 0 R
-/e 367 0 R
-/i 368 0 R
-/l 369 0 R
-/n 370 0 R
-/r 371 0 R
-/t 372 0 R
-/x 373 0 R
-/y 374 0 R
+/a 413 0 R
+/d 414 0 R
+/e 415 0 R
+/i 416 0 R
+/l 417 0 R
+/n 418 0 R
+/r 419 0 R
+/t 420 0 R
+/x 421 0 R
+/y 422 0 R
 >>
 endobj
-363 0 obj
+411 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -720,10 +792,10 @@ endobj
 /XHeight 0
 >>
 endobj
-364 0 obj
+412 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-365 0 obj
+413 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -733,7 +805,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-366 0 obj
+414 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -744,7 +816,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-367 0 obj
+415 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -753,7 +825,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-368 0 obj
+416 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -764,7 +836,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-369 0 obj
+417 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -776,7 +848,7 @@ x
 "���}�
 endstream
 endobj
-370 0 obj
+418 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -785,7 +857,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-371 0 obj
+419 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -795,7 +867,7 @@ x
 ���f�W����7y
 endstream
 endobj
-372 0 obj
+420 0 obj
 <<
 /Filter /FlateDecode
 /Length 131
@@ -804,7 +876,7 @@ stream
 x�E��
!C�T��>��՞����0�AB�A";�0���6���Ѣ�7�6իc�,�zRV鐇��Pi0QąYLCaΘ�Ȗ2��M��l�T��v<��e�~�ma�,��U^��
?�K�w�U�BS0�
 endstream
 endobj
-373 0 obj
+421 0 obj
 <<
 /Filter /FlateDecode
 /Length 87
@@ -814,7 +886,7 @@ x
 ���W6xU�������l�1ؠe��ηI����
 endstream
 endobj
-374 0 obj
+422 0 obj
 <<
 /Filter /FlateDecode
 /Length 138
@@ -823,31 +895,31 @@ stream
 x�=�A1�y�?)vBX޳UO��_K��^��1BCo�j��
Nj�K���)��Jș`���g�zb8��������V}��F�%h�G�Siܖq�5�)�\�����W�4�ݴ��k8�߽����U�__�.�
 endstream
 endobj
-358 0 obj
+406 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-356 0 obj
+404 0 obj
 <<
-/D [354 0 R /XYZ 55.693 823.059 null]
+/D [402 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-357 0 obj
+405 0 obj
 <<
-/D [354 0 R /XYZ 56.693 789.929 null]
+/D [402 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-353 0 obj
+401 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im1 343 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im1 391 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-381 0 obj
+429 0 obj
 <<
 /Length 2321      
 /Filter /FlateDecode
@@ -866,18 +938,18 @@ Ztr%(9톴Yd
 ����^�@�k���&�N|(
 endstream
 endobj
-380 0 obj
+428 0 obj
 <<
 /Type /Page
-/Contents 381 0 R
-/Resources 379 0 R
+/Contents 429 0 R
+/Resources 427 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
-/Group 377 0 R
-/Annots [ 352 0 R 375 0 R 378 0 R ]
+/Parent 399 0 R
+/Group 425 0 R
+/Annots [ 400 0 R 423 0 R 426 0 R ]
 >>
 endobj
-376 0 obj
+424 0 obj
 <<
 /Type /XObject
 /Subtype /Image
@@ -885,7 +957,7 @@ endobj
 /Height 197
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
-/SMask 390 0 R
+/SMask 438 0 R
 /Length 4128      
 /Filter /FlateDecode
 >>
@@ -907,7 +979,7 @@ upp
 ����77�ݻw���vww�x�5-�����wtt�PTNN�	7��-J��Ξ=�*�^0!)))&UYY��*�y�OMM�t����h��������ŋfX__�V�cccU*uy����������YYY����Q��㊋����g͚���5��ā���W^amx�…�!�������m���0T��(�:;;�O�,a��7�|������k�J����	�@^]]]'N�

��p���]Ú7o�V����t�K_��s�M�P���<���j����������������������C�b�G
 endstream
 endobj
-390 0 obj
+438 0 obj
 <<
 /Type /XObject
 /Subtype /Image
@@ -922,10 +994,10 @@ stream
 x���
��� ��o7���������������������������������������������������������[����
 endstream
 endobj
-377 0 obj
+425 0 obj
 <</Type/Group /S/Transparency /CS/DeviceRGB /I true>>
 endobj
-352 0 obj
+400 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -934,7 +1006,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.1) >>
 >>
 endobj
-375 0 obj
+423 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -943,7 +1015,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.2) >>
 >>
 endobj
-378 0 obj
+426 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -952,39 +1024,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.3) >>
 >>
 endobj
-382 0 obj
+430 0 obj
 <<
-/D [380 0 R /XYZ 55.693 823.059 null]
+/D [428 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-384 0 obj
+432 0 obj
 <<
-/D [380 0 R /XYZ 56.693 601.137 null]
+/D [428 0 R /XYZ 56.693 601.137 null]
 >>
 endobj
-386 0 obj
+434 0 obj
 <<
-/D [380 0 R /XYZ 74.626 170.097 null]
+/D [428 0 R /XYZ 74.626 170.097 null]
 >>
 endobj
-388 0 obj
+436 0 obj
 <<
-/D [380 0 R /XYZ 74.626 110.322 null]
+/D [428 0 R /XYZ 74.626 110.322 null]
 >>
 endobj
-389 0 obj
+437 0 obj
 <<
-/D [380 0 R /XYZ 74.626 98.366 null]
+/D [428 0 R /XYZ 74.626 98.366 null]
 >>
 endobj
-379 0 obj
+427 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-396 0 obj
+444 0 obj
 <<
 /Length 1940      
 /Filter /FlateDecode
@@ -997,17 +1069,17 @@ Y
 ��&v�1`T��'�ۈ��	���U%��k�RF�'��)n�p�"�����H��i��5��[����ӓ�������W�C+�l_�R�~Q�κ�K�,���Y/�� Uٴ�ӥk�]������{�p��yێC{�	�h���>���.S���l~���)�E�\�}˼�Ó�$b0l�p�Z㡛a�[�|��M����ք:�5�	C�c]�g���P���I��Ϋ�x�hj-�9Q@<�"��P��۵TX�
`��T��+^%/*S�p���r���@5N���U�4�������K �C�;´�b��&T�,�?�͠z�I�p�7P�u��xn�����淢=��I�H�w��셹9^468'r��r��������oқ�:)����uH8�Q[$�٦�Fy'�+c��a+�ʠ��%�fю�s�鑧Ծ�G��RsJ&���ы��?�v��(���~Z���D��X���C�	��\�9�����s?�'�v%�%S��+ߏhW�h�%���N0M�:�v}��د+U*�b��k��9`��n�������_T���
 endstream
 endobj
-395 0 obj
+443 0 obj
 <<
 /Type /Page
-/Contents 396 0 R
-/Resources 394 0 R
+/Contents 444 0 R
+/Resources 442 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
-/Annots [ 391 0 R 392 0 R ]
+/Parent 399 0 R
+/Annots [ 439 0 R 440 0 R ]
 >>
 endobj
-391 0 obj
+439 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1016,7 +1088,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.4) >>
 >>
 endobj
-392 0 obj
+440 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1025,38 +1097,38 @@ endobj
 /A << /S /GoTo /D (Hfootnote.5) >>
 >>
 endobj
-397 0 obj
+445 0 obj
 <<
-/D [395 0 R /XYZ 55.693 823.059 null]
+/D [443 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 18 0 obj
 <<
-/D [395 0 R /XYZ 56.693 782.706 null]
+/D [443 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 22 0 obj
 <<
-/D [395 0 R /XYZ 56.693 630.734 null]
+/D [443 0 R /XYZ 56.693 630.734 null]
 >>
 endobj
-399 0 obj
+447 0 obj
 <<
-/D [395 0 R /XYZ 74.626 453.449 null]
+/D [443 0 R /XYZ 74.626 453.449 null]
 >>
 endobj
-400 0 obj
+448 0 obj
 <<
-/D [395 0 R /XYZ 74.626 429.539 null]
+/D [443 0 R /XYZ 74.626 429.539 null]
 >>
 endobj
-394 0 obj
+442 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-407 0 obj
+455 0 obj
 <<
 /Length 1045      
 /Filter /FlateDecode
@@ -1068,30 +1140,30 @@ x
 �r��懫�u�%(��Djz��ӡ��hl��V���6l�Y����,�{?���7Sʼ���zO���`\;Bp?"�!�HNA���ۏN���=�.G�k�b`�<�x��MeG�U'���9�y

�X�F���>�7��x�&0�B.�\6��s����=R�@;�ev��x������&��YL(�:⺈PB�H��$N��l^/���>'*�����(��؋s�[���=���'_�_�'Vjyjj�ij%iUv+vk�0���Ԣ\��4�H,��HŜ��*����|��'������t��w�а++G_�Mo���x�؛��imzr��b6U�y��̜�B��_�{W�ay���C���\G
 endstream
 endobj
-406 0 obj
+454 0 obj
 <<
 /Type /Page
-/Contents 407 0 R
-/Resources 405 0 R
+/Contents 455 0 R
+/Resources 453 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
+/Parent 399 0 R
 >>
 endobj
-393 0 obj
+441 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/dia3.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 411 0 R
+/PTEX.InfoDict 459 0 R
 /BBox [0 0 228 304.07999]
 /Resources <<
 /ExtGState <<
-/G3 412 0 R
-/G4 413 0 R
-/G5 414 0 R
->>/Font << /F6 415 0 R>>
+/G3 460 0 R
+/G4 461 0 R
+/G5 462 0 R
+>>/Font << /F6 463 0 R>>
 >>
 /Length 6687
 /Filter /FlateDecode
@@ -1134,19 +1206,19 @@ X
 |-w�P��{Y�x����v�UM���7k\z{�"r�/ wZe�J ��I��8L�#6Ոc�WI3��:6\.&u�aA���ë87� ���:��[%{3�T��j���Ö]�o��N�b��)��:>�HB��E�jx ��6�'E��yE��qkʨ���)�w�Ut�����ι{HQt�;}���J�GsAQӸ\y�я��|��ej�����O�TE���Ř�	.��Y^[h8D�K=��$������*3�t����a�B�+.;;�D�F&⠯�LH�a�v��>HF �<x�"�6$��0��,�7�M�3�z��KF��=|�r,�[e�ofՌ�)j��V@�o%�Fq;��'�}�w�4��6y~7�H8cdӓ���$�ݟ�_�����t���5ݯ�~M�k�_�����t���5ݯ�~M�_c�$�=�bs�P<z뿼Ϊ�#	�5�)����u�[��W�����\���΅7(�ɨ��8I�of��K�?�/�V�7�*�%x�]����ɻ+d@�����x���w(OR��K�r.��	���8��SJ�n~��7y�Ӕm)^���˟�?m���9�������aS��~��~���W��CP ��Ŕ�_?�i����~�/�^���~��W���rKw:�O߾�����+�����������qʧ��"���G9�LKE
.���䷴����/ ��UN<%�9�m�wO�������qci+QF�������_
���]��n_J���\�������
 endstream
 endobj
-411 0 obj
+459 0 obj
 <<
 /Subject (%3Cmxfile%20host%3D%22app.diagrams.net%22%20modified%3D%222020-04-21T12%3A34%3A53.937Z%22%20agent%3D%225.0%20\\\(Windows%20NT%206.1%3B%20Win64%3B%20x64\\\)%20AppleWebKit%2F537.36%20\\\(KHTML%2C%20like%20Gecko\\\)%20Chrome%2F80.0.3987.163%20Safari%2F537.36%22%20etag%3D%22gVSXA_lqxaPURHI3rrhz%22%20version%3D%2212.9.6%22%20type%3D%22device%22%3E%3Cdiagram%20id%3D%22Hq349aPmtoJwb7A8-fJh%22%20name%3D%22Page-1%22%3E5Vldc%2BIgFP01Pm4nhHz52Frbzs7sTnf60O4jk6BhFoNDsOr%2B%2BiUGDBCtqdXG3X1xuDfkAueenAs4gKPZ6p6jef6NZZgOfC9bDeDtwPeTKJG%2FlWNdO4LQqx1TTrLaBRrHE%2FmNlVN3W5AMl1ZHwRgVZG47U1YUOBWWD3HOlna3CaP2qHM0VSN6jeMpRRS3uj2TTORqWX7c%2BB8wmeZ6ZBAN6yczpDurwGWOMrY0XHA8gCPOmKhbs9UI0wo7jUv93t2ep9uJcVyILi8s7vPh1x%2FBMn4Q0XN0nd%2FR8egLrKO8IrpQC1aTFWuNgIwiwZbGzTInAj%2FNUVo9Wcp0S18uZlRaQDZROa8zMCErLAe9UbExF3i1d9JgC4WkEGYzLPhadlEv%2BIlCT9FHg7k0cqFcuZEG7UMq%2B9Nt4AYg2VAYvQOv4MLxgr6NF4x6Biy8cMBA4BAs6Rmw6MIBg3FgARb0jFd84XiB0CZY3DNeSQe8iuy6Kp3SKliBbYzq3jjTZXMfIDIiW%2FAUH9YGgfgUi0NFqg2wgWC4A0Ht45giQV7t6e6CVY3wyIhcSMP3oSMQkZOZepnqLbP%2BOoECV2mAE6jGoRVok%2BXtso9P%2FPCDiccrIl6M9k%2FZ9q5gHCr7tlqnp421YTxiTuTsMVe%2BHigU9UmhwHOLcngkhRwtgcAJdGYKacYez6FCTuDFNGoWhdpsSLSx1qdnDOzImLhX0YntRG93Ke9mDBzajIGfKzoAnEh1FEe07rypOSdkS%2FA36Evk6ot3JFvCnksU8M9Qo8Db9UkrknflRdBWJT9JDujSxjpjeYs70i%2FoVaz%2BlR0S6HIb0tAvpagsSfpxvTI4GJgMBCYle2Ig6KqAvdZLAA4wpysFgXPfBFwun5uC7Qum7yzDLRrK86iwiVcKzn7hEaOMN9I4IZQ6LkTJtKjYK6lQEeamOt2SFNFr9WBGsozuOyxztiiy6mi84dmEFUJd2foN7056HwO0uBhEinYQyd0gney8DLrcYB0Qha7fY28HFPfW8NjPp1UKOm43JXpobXSbVx3Ks3xg7fu1cZWX%2F%2BYDc48W283i6T8waTZ%2Fb9QJbP4jguM%2F%3C%2Fdiagram%3E%3C%2Fmxfile%3E)
 /Creator (diagrams.net)
 >>
 endobj
-412 0 obj
+460 0 obj
 <<
 /BM /Normal
 /ca 1
 >>
 endobj
-413 0 obj
+461 0 obj
 <<
 /BM /Normal
 /CA 1
@@ -1158,7 +1230,7 @@ endobj
 /ca 1
 >>
 endobj
-414 0 obj
+462 0 obj
 <<
 /BM /Normal
 /CA 1
@@ -1170,17 +1242,17 @@ endobj
 /ca 1
 >>
 endobj
-415 0 obj
+463 0 obj
 <<
 /BaseFont /Helvetica
-/DescendantFonts [ 416 0 R]
+/DescendantFonts [ 464 0 R]
 /Encoding /Identity-H
 /Subtype /Type0
-/ToUnicode 417 0 R
+/ToUnicode 465 0 R
 /Type /Font
 >>
 endobj
-416 0 obj
+464 0 obj
 <<
 /BaseFont /Helvetica
 /CIDSystemInfo <<
@@ -1190,44 +1262,44 @@ endobj
 >>
 /CIDToGIDMap /Identity
 /DW 0
-/FontDescriptor 418 0 R
+/FontDescriptor 466 0 R
 /Subtype /CIDFontType2
 /Type /Font
 /W [ 0 [ 633.78906] 40 [ 666.99219] 49 [ 722.16797] 71 82 556.15234]
 >>
 endobj
-417 0 obj
+465 0 obj
 <<
 /Filter /FlateDecode
-/Length 419 0 R
+/Length 467 0 R
 >>
 stream
 x�]��j�0E���Y�� �u�.�!$)x�u��4v�$dy`���0s�fF��\%�w�y�z���Iϖ#t8HE���n�x�B��]&�c�zM�
 �~�������>�fZ��}]Z��l�7��d��A`�^�ye#��}#|^�e�5��A("��N�q�L
H��G
ճ�����eRu=�3��'_�e���'�E*ϑ��H�"Q�]�_����,��\�S>4�M�gk��q�q�0�T�}��&�������
 endstream
 endobj
-418 0 obj
+466 0 obj
 <<
 /Ascent 770.01953
 /CapHeight 717.28516
 /Descent 229.98047
 /Flags 12
 /FontBBox [ -950.68359 -480.95703 1445.80078 1121.58203]
-/FontFile2 420 0 R
+/FontFile2 468 0 R
 /FontName /Helvetica
 /ItalicAngle 0
 /StemV 89.355469
 /Type /FontDescriptor
 >>
 endobj
-419 0 obj
+467 0 obj
 262
 endobj
-420 0 obj
+468 0 obj
 <<
 /Filter /FlateDecode
 /Length1 33752
-/Length 421 0 R
+/Length 469 0 R
 >>
 stream
 x��}|�E���y�y�M!$!���݄$�Pz�!$�&̈́f,$B@A�((; `�R�P��+�WP�"�
E)��?��1  �w���������L�9s�3��
@@ -1258,27 +1330,27 @@ _
 ��q���*<��S�G���sGB�}&�s�;��.�ܫ`B�dcw=9�� �1N8���pϬ
 endstream
 endobj
-421 0 obj
+469 0 obj
 12465
 endobj
-408 0 obj
+456 0 obj
 <<
-/D [406 0 R /XYZ 55.693 823.059 null]
+/D [454 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-409 0 obj
+457 0 obj
 <<
-/D [406 0 R /XYZ 56.693 789.929 null]
+/D [454 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-405 0 obj
+453 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R >>
-/XObject << /Im3 393 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R >>
+/XObject << /Im3 441 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-427 0 obj
+475 0 obj
 <<
 /Length 4071      
 /Filter /FlateDecode
@@ -1307,17 +1379,17 @@ R
 ����c��!m���P7{YW�2�eo��������v)B�?8Wx
 endstream
 endobj
-426 0 obj
+474 0 obj
 <<
 /Type /Page
-/Contents 427 0 R
-/Resources 425 0 R
+/Contents 475 0 R
+/Resources 473 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 351 0 R
-/Annots [ 401 0 R 402 0 R 403 0 R 404 0 R 422 0 R 423 0 R 424 0 R ]
+/Parent 399 0 R
+/Annots [ 449 0 R 450 0 R 451 0 R 452 0 R 470 0 R 471 0 R 472 0 R ]
 >>
 endobj
-401 0 obj
+449 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1326,7 +1398,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.6) >>
 >>
 endobj
-402 0 obj
+450 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1335,7 +1407,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.7) >>
 >>
 endobj
-403 0 obj
+451 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1344,7 +1416,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.8) >>
 >>
 endobj
-404 0 obj
+452 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1353,7 +1425,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.9) >>
 >>
 endobj
-422 0 obj
+470 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1362,7 +1434,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.10) >>
 >>
 endobj
-423 0 obj
+471 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1371,7 +1443,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.11) >>
 >>
 endobj
-424 0 obj
+472 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -1380,58 +1452,58 @@ endobj
 /A << /S /GoTo /D (Hfootnote.12) >>
 >>
 endobj
-428 0 obj
+476 0 obj
 <<
-/D [426 0 R /XYZ 55.693 823.059 null]
+/D [474 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 26 0 obj
 <<
-/D [426 0 R /XYZ 56.693 534.346 null]
+/D [474 0 R /XYZ 56.693 534.346 null]
 >>
 endobj
-429 0 obj
+477 0 obj
 <<
-/D [426 0 R /XYZ 74.626 198.821 null]
+/D [474 0 R /XYZ 74.626 198.821 null]
 >>
 endobj
-430 0 obj
+478 0 obj
 <<
-/D [426 0 R /XYZ 74.626 186.866 null]
+/D [474 0 R /XYZ 74.626 186.866 null]
 >>
 endobj
-431 0 obj
+479 0 obj
 <<
-/D [426 0 R /XYZ 74.626 174.91 null]
+/D [474 0 R /XYZ 74.626 174.91 null]
 >>
 endobj
-432 0 obj
+480 0 obj
 <<
-/D [426 0 R /XYZ 74.626 162.955 null]
+/D [474 0 R /XYZ 74.626 162.955 null]
 >>
 endobj
-433 0 obj
+481 0 obj
 <<
-/D [426 0 R /XYZ 74.626 151 null]
+/D [474 0 R /XYZ 74.626 151 null]
 >>
 endobj
-434 0 obj
+482 0 obj
 <<
-/D [426 0 R /XYZ 74.626 91.224 null]
+/D [474 0 R /XYZ 74.626 91.224 null]
 >>
 endobj
-435 0 obj
+483 0 obj
 <<
-/D [426 0 R /XYZ 74.626 79.269 null]
+/D [474 0 R /XYZ 74.626 79.269 null]
 >>
 endobj
-425 0 obj
+473 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-438 0 obj
+486 0 obj
 <<
 /Length 229       
 /Filter /FlateDecode
@@ -1440,27 +1512,27 @@ stream
 xڅ�1o�0�w���!���B�U��c�T*jK���k���t��=�އ��'1b��H�t�������9��U8�-,%�,� ێ{e���5��Ne�)eՍ/�ɗ���R�H^�����˙2^��C�8��hX|�
��!:]P��X���6�y��{M��}����U�]�P;K	b>����ʜ�?ɪ��pJ�Zl�ȒR�s5�KtI��W���ی@pdK�
 endstream
 endobj
-437 0 obj
+485 0 obj
 <<
 /Type /Page
-/Contents 438 0 R
-/Resources 436 0 R
+/Contents 486 0 R
+/Resources 484 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
+/Parent 488 0 R
 >>
 endobj
-439 0 obj
+487 0 obj
 <<
-/D [437 0 R /XYZ 55.693 823.059 null]
+/D [485 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-436 0 obj
+484 0 obj
 <<
-/Font << /F15 347 0 R >>
+/Font << /F15 395 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-445 0 obj
+493 0 obj
 <<
 /Length 845       
 /Filter /FlateDecode
@@ -1475,23 +1547,23 @@ l_
 ��̖h �$�F����͈s�T�	f�Mo��m]G�7�����6�&Zp7z�4���w�ӍE���H��!�~��UW\�S{�܄��;�tn��$֛�U�"%�3�y�>���zK�WN�����j�i���n�VH��j�Q�K����~�c����i.�fH�M���-X��hI�lzs���a��H��eUS��w�k�5�b�D��7��<��C�kG�O�6�*���
 endstream
 endobj
-444 0 obj
+492 0 obj
 <<
 /Type /Page
-/Contents 445 0 R
-/Resources 443 0 R
+/Contents 493 0 R
+/Resources 491 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
+/Parent 488 0 R
 >>
 endobj
-441 0 obj
+489 0 obj
 <<
 /Type /XObject
 /Subtype /Image
 /Width 850
 /Height 517
 /BitsPerComponent 8
-/ColorSpace [/Indexed /DeviceRGB 127 448 0 R]
+/ColorSpace [/Indexed /DeviceRGB 127 496 0 R]
 /Length 45422     
 /Filter /FlateDecode
 >>
@@ -1676,7 +1748,7 @@ PIR
 �߿3|�H�|o�"��G_�/e�`̑�ϐ ��TGL�����du�壿<"��(�r�0�3����?�c��+� >�`E� ;x�)�~��	���l��
 endstream
 endobj
-448 0 obj
+496 0 obj
 <<
 /Length 395       
 /Filter /FlateDecode
@@ -1688,39 +1760,39 @@ x
 �����������������ų����ɥ����û�����������jjj���xxx������~~~���   ���������```TTTHHH(((������DDD...\\\VVV���zzz&&&RRRfffvvvFFF***222XXXbbbrrr000���ttt"""|||JJJ>>>dddLLLZZZ444@@@PPP<<<888NNN$$$,,,hhhBBB666^^^:::)0�A
 endstream
 endobj
-446 0 obj
+494 0 obj
 <<
-/D [444 0 R /XYZ 55.693 823.059 null]
+/D [492 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 30 0 obj
 <<
-/D [444 0 R /XYZ 56.693 782.706 null]
+/D [492 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 34 0 obj
 <<
-/D [444 0 R /XYZ 56.693 758.912 null]
+/D [492 0 R /XYZ 56.693 758.912 null]
 >>
 endobj
-447 0 obj
+495 0 obj
 <<
-/D [444 0 R /XYZ 56.693 665.429 null]
+/D [492 0 R /XYZ 56.693 665.429 null]
 >>
 endobj
 38 0 obj
 <<
-/D [444 0 R /XYZ 56.693 353.276 null]
+/D [492 0 R /XYZ 56.693 353.276 null]
 >>
 endobj
-443 0 obj
+491 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R >>
-/XObject << /Im4 441 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R >>
+/XObject << /Im4 489 0 R >>
 /ProcSet [ /PDF /Text /ImageC /ImageI ]
 >>
 endobj
-451 0 obj
+499 0 obj
 <<
 /Length 983       
 /Filter /FlateDecode
@@ -1733,26 +1805,26 @@ L`q
 �BoZ.(�v���dp Bf��;����qC��S���.�=�
;�n�
 endstream
 endobj
-450 0 obj
+498 0 obj
 <<
 /Type /Page
-/Contents 451 0 R
-/Resources 449 0 R
+/Contents 499 0 R
+/Resources 497 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
-/Group 454 0 R
+/Parent 488 0 R
+/Group 502 0 R
 >>
 endobj
-442 0 obj
+490 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/add3.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 455 0 R
+/PTEX.InfoDict 503 0 R
 /BBox [0 0 432 288]
-/Group 454 0 R
+/Group 502 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -1770,12 +1842,12 @@ endobj
 /Type /ExtGState
 /ca 1
 >>
->>/Font << /F1 456 0 R>>
+>>/Font << /F1 504 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/DejaVuSans-minus 457 0 R
+/DejaVuSans-minus 505 0 R
 >>>>
 /Length 2815
 /Filter /FlateDecode
@@ -1794,33 +1866,33 @@ s
 M�qDk�T��+Ǐ��,�Oz��j9�xu�Ǟ��t��TuZ˯�G�a�T��5.��+�zO�t_G�˅��>���"ԅ!X��$�����w(�t��Zm����=<ȅ��L�c.�PW�a~��nt�_�15�S��	�in�#��������x^ ~������y��?���6wz�g{�����˦ԯtM��������o���gt��W?n��ֽ�����)�y�~��+l�;���J?�����������z��ç��7�ݾş�u�;�ʞ�>n�.�ߋ�O�В���Az�xM>�*�*�!9oYo�:�w��~n�:�Q��-��#Q�\�~n˸ �R�l9�-ӓ���?�ݖ]	w�[����Իyj��&m���B�7v�����D7��lv�|��s����K�>�x�&����Vеoxz��R��T�.8��[8
�O;�N�r�;��@ɗ��]D�PD灵�x���\??�t�b&_�"g'8q�?J8ב��ѵsj��u��u4�p�/�t��֑�ԁ��˸��x���/ա�
%����9�����}�7-,ڍ�����?^���|����?8ؾ��п?��&�����J�����ˡ�7>g8�H�Kh;�����������_�ן�|��7a��v�����Sg�
 endstream
 endobj
-455 0 obj
+503 0 obj
 <<
 /CreationDate (D:20200421164711+02'00')
 /Creator (matplotlib 3.1.2, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.2)
 >>
 endobj
-456 0 obj
+504 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 458 0 R
+/CharProcs 506 0 R
 /Encoding <<
 /Differences [ 32/space 44/comma 46/period 48/zero/one/two/three/four/five/six 57/nine 61/equal 97/a 99/c 117/u]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 459 0 R
+/FontDescriptor 507 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 460 0 R
+/Widths 508 0 R
 >>
 endobj
-457 0 obj
+505 0 obj
 <<
 /BBox [ -1021 -463 1794 1233]
 /Filter /FlateDecode
@@ -1834,26 +1906,26 @@ x
 
 endstream
 endobj
-458 0 obj
+506 0 obj
 <<
-/a 461 0 R
-/c 462 0 R
-/comma 463 0 R
-/equal 464 0 R
-/five 465 0 R
-/four 466 0 R
-/nine 467 0 R
-/one 468 0 R
-/period 469 0 R
-/six 470 0 R
-/space 471 0 R
-/three 472 0 R
-/two 473 0 R
-/u 474 0 R
-/zero 475 0 R
+/a 509 0 R
+/c 510 0 R
+/comma 511 0 R
+/equal 512 0 R
+/five 513 0 R
+/four 514 0 R
+/nine 515 0 R
+/one 516 0 R
+/period 517 0 R
+/six 518 0 R
+/space 519 0 R
+/three 520 0 R
+/two 521 0 R
+/u 522 0 R
+/zero 523 0 R
 >>
 endobj
-459 0 obj
+507 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -1868,10 +1940,10 @@ endobj
 /XHeight 0
 >>
 endobj
-460 0 obj
+508 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-461 0 obj
+509 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -1881,7 +1953,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-462 0 obj
+510 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -1890,7 +1962,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-463 0 obj
+511 0 obj
 <<
 /Filter /FlateDecode
 /Length 66
@@ -1899,7 +1971,7 @@ stream
 x�36�P0P07W�544U022P042QH1�2443s�`�9`���a$�r�`Zs�: �P�9\i�M8�
 endstream
 endobj
-464 0 obj
+512 0 obj
 <<
 /Filter /FlateDecode
 /Length 71
@@ -1908,7 +1980,7 @@ stream
 x��0�P0P040S047R076R015QH1�	���\0�0��,,�`AdA,#SS������Ȧ���2
 endstream
 endobj
-465 0 obj
+513 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -1918,7 +1990,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-466 0 obj
+514 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -1927,7 +1999,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-467 0 obj
+515 0 obj
 <<
 /Filter /FlateDecode
 /Length 320
@@ -1938,7 +2010,7 @@ x
 �R�ӿ����ccz�
 endstream
 endobj
-468 0 obj
+516 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -1947,7 +2019,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-469 0 obj
+517 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -1956,7 +2028,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-470 0 obj
+518 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -1967,7 +2039,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-471 0 obj
+519 0 obj
 <<
 /Filter /FlateDecode
 /Length 17
@@ -1976,7 +2048,7 @@ stream
 x�36�P0��C.���
 endstream
 endobj
-472 0 obj
+520 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -1990,7 +2062,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-473 0 obj
+521 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -2001,7 +2073,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-474 0 obj
+522 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -2011,7 +2083,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-475 0 obj
+523 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -2021,31 +2093,31 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-454 0 obj
+502 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-452 0 obj
+500 0 obj
 <<
-/D [450 0 R /XYZ 55.693 823.059 null]
+/D [498 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-453 0 obj
+501 0 obj
 <<
-/D [450 0 R /XYZ 56.693 789.929 null]
+/D [498 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-449 0 obj
+497 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im5 442 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im5 490 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-478 0 obj
+526 0 obj
 <<
 /Length 387       
 /Filter /FlateDecode
@@ -2054,39 +2126,39 @@ stream
 xڵR�n�0��7:Rcl���+���B�V1DB$�mE����i)E��%w�{�w~/J`�<dAo����$��!Ii�cP�DȖ�BDiԤ?�&�l�4���PJ!��I^��()�,\d�`�o���<�Tr	�.xY0X�����S�܁T�*m�-̃Y���]�*F�¤��v�%�ct��m	�)&�%�Km�7�	��4��y���V(@�Eq��V���߇����Hjc�CR�vq���z��j6�l|���CU�[w�nM�T����Z �tJ����(�u��sW�F��ǃ��}Gr��A]�ڵ��f��͚{��Z��ى��NXR�i��-'�w"��W�����ϟ�����N��􇉷L��V�O`���
 endstream
 endobj
-477 0 obj
+525 0 obj
 <<
 /Type /Page
-/Contents 478 0 R
-/Resources 476 0 R
+/Contents 526 0 R
+/Resources 524 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
-/Group 377 0 R
+/Parent 488 0 R
+/Group 425 0 R
 >>
 endobj
-479 0 obj
+527 0 obj
 <<
-/D [477 0 R /XYZ 55.693 823.059 null]
+/D [525 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-480 0 obj
+528 0 obj
 <<
-/D [477 0 R /XYZ 56.693 789.929 null]
+/D [525 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-481 0 obj
+529 0 obj
 <<
-/D [477 0 R /XYZ 56.693 428.246 null]
+/D [525 0 R /XYZ 56.693 428.246 null]
 >>
 endobj
-476 0 obj
+524 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-487 0 obj
+535 0 obj
 <<
 /Length 3006      
 /Filter /FlateDecode
@@ -2109,17 +2181,17 @@ JVD
 Y.gƯOи5QF���uE
���m����n�MM�8&e�����0"�E�i�+����~�����_�Z��8�H,��x�GE����U�Y�����l�B@�rtAi�<Ye��'��˻|U�E��;�c.�O��:'jQ4Kc@��i�M�9��J��(���nv6�J�H��?;
���]��U��Sa�r�Ȗ��H��b�,@W�?y��/<��G-��
 endstream
 endobj
-486 0 obj
+534 0 obj
 <<
 /Type /Page
-/Contents 487 0 R
-/Resources 485 0 R
+/Contents 535 0 R
+/Resources 533 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
-/Annots [ 482 0 R 483 0 R ]
+/Parent 488 0 R
+/Annots [ 530 0 R 531 0 R ]
 >>
 endobj
-482 0 obj
+530 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2128,7 +2200,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.13) >>
 >>
 endobj
-483 0 obj
+531 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2137,53 +2209,53 @@ endobj
 /A << /S /GoTo /D (Hfootnote.14) >>
 >>
 endobj
-488 0 obj
+536 0 obj
 <<
-/D [486 0 R /XYZ 55.693 823.059 null]
+/D [534 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 42 0 obj
 <<
-/D [486 0 R /XYZ 56.693 782.706 null]
+/D [534 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 46 0 obj
 <<
-/D [486 0 R /XYZ 56.693 599.518 null]
+/D [534 0 R /XYZ 56.693 599.518 null]
 >>
 endobj
 50 0 obj
 <<
-/D [486 0 R /XYZ 56.693 488.393 null]
+/D [534 0 R /XYZ 56.693 488.393 null]
 >>
 endobj
 54 0 obj
 <<
-/D [486 0 R /XYZ 56.693 373.781 null]
+/D [534 0 R /XYZ 56.693 373.781 null]
 >>
 endobj
 58 0 obj
 <<
-/D [486 0 R /XYZ 56.693 190.427 null]
+/D [534 0 R /XYZ 56.693 190.427 null]
 >>
 endobj
-489 0 obj
+537 0 obj
 <<
-/D [486 0 R /XYZ 74.626 88.194 null]
+/D [534 0 R /XYZ 74.626 88.194 null]
 >>
 endobj
-490 0 obj
+538 0 obj
 <<
-/D [486 0 R /XYZ 74.626 76.239 null]
+/D [534 0 R /XYZ 74.626 76.239 null]
 >>
 endobj
-485 0 obj
+533 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-495 0 obj
+543 0 obj
 <<
 /Length 1896      
 /Filter /FlateDecode
@@ -2199,18 +2271,18 @@ Zyo
 �����$�Y���������m������G����ݧ�۹7���Bpsd��ZzЬ��xoz�(E=���_3���!~)/�"�Â
 endstream
 endobj
-494 0 obj
+542 0 obj
 <<
 /Type /Page
-/Contents 495 0 R
-/Resources 493 0 R
+/Contents 543 0 R
+/Resources 541 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 440 0 R
-/Group 377 0 R
-/Annots [ 484 0 R 491 0 R ]
+/Parent 488 0 R
+/Group 425 0 R
+/Annots [ 532 0 R 539 0 R ]
 >>
 endobj
-484 0 obj
+532 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2219,7 +2291,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.15) >>
 >>
 endobj
-491 0 obj
+539 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2228,44 +2300,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.16) >>
 >>
 endobj
-496 0 obj
+544 0 obj
 <<
-/D [494 0 R /XYZ 55.693 823.059 null]
+/D [542 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 62 0 obj
 <<
-/D [494 0 R /XYZ 56.693 725.13 null]
+/D [542 0 R /XYZ 56.693 725.13 null]
 >>
 endobj
-497 0 obj
+545 0 obj
 <<
-/D [494 0 R /XYZ 56.693 562.905 null]
+/D [542 0 R /XYZ 56.693 562.905 null]
 >>
 endobj
 66 0 obj
 <<
-/D [494 0 R /XYZ 56.693 177.769 null]
+/D [542 0 R /XYZ 56.693 177.769 null]
 >>
 endobj
-498 0 obj
+546 0 obj
 <<
-/D [494 0 R /XYZ 74.626 104.427 null]
+/D [542 0 R /XYZ 74.626 104.427 null]
 >>
 endobj
-499 0 obj
+547 0 obj
 <<
-/D [494 0 R /XYZ 74.626 92.472 null]
+/D [542 0 R /XYZ 74.626 92.472 null]
 >>
 endobj
-493 0 obj
+541 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-507 0 obj
+555 0 obj
 <<
 /Length 4459      
 /Filter /FlateDecode
@@ -2292,17 +2364,17 @@ DJ
 ��>E�$�	�ւ�n��B&���p-�9U�ST�6��Ĝ'!C����8@��@�����D��Sf޷0cQ�%wK(v��gC���2C�F�~&ܖlR�I���L/z2cH��#'�P�?R�'aq��,��F���i^�,�E��a�\����	zH�=)�|����p$K�T?��a�!O����T&y�}�*@�*A���,�-~�*ܴ���ٹ���۪\�@��q�噤nc�m_�������/���\Y�c[H-��l�S)ܪ��B�H�X���*�e�aI�*I�*�6h�v^s@���Z�2�������P��Ą:���-e)��ɇ4
�Y[����1&���T�p髿F����ܧ�b(���B��[���Tdk�D4���6��=�W���9��Q�r����%���c5�b6���~�M¢F�b
X�[=���A�h|�I>~�y�>��=�S�
Γ���%Nr�@�O������B�0�sO�P�c�����gF�&U�%򹄲������CA.vf���BA.N�����.���G��g��?|Z�B�C��@t���[O�3dc�bͣ�o,o�:�z��e�:�쓊s<���>�;���!���I`a�(V��
S� �R�i&L��.;Ri⣯_��Tqh{��0�X�0`�k_��p_*�i���;�R���|�|�L��'�42�L�;���a:0�����`\F�=mJ��gy��
,x�Ӹ�z~��B�2|c�Ӂ]�C�.��7�#���dF]�-r��4�F��?E��3�D����=O�Fr��8D�9�dY�����ȟ/��σ��Μ	�@�ʩ�<���ϣ���Q�D���ݳ~����y�x��G3V/��c����)��T���L�����Ǜ������Gܡq3E���&�҇�;n�����qk�2!��Os�(�?�9�75z���Z���/��m8�
 endstream
 endobj
-506 0 obj
+554 0 obj
 <<
 /Type /Page
-/Contents 507 0 R
-/Resources 505 0 R
+/Contents 555 0 R
+/Resources 553 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Annots [ 492 0 R 500 0 R 501 0 R 502 0 R 503 0 R ]
+/Parent 567 0 R
+/Annots [ 540 0 R 548 0 R 549 0 R 550 0 R 551 0 R ]
 >>
 endobj
-492 0 obj
+540 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2311,7 +2383,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.17) >>
 >>
 endobj
-500 0 obj
+548 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2320,7 +2392,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.18) >>
 >>
 endobj
-501 0 obj
+549 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2329,7 +2401,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.19) >>
 >>
 endobj
-502 0 obj
+550 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2338,7 +2410,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.20) >>
 >>
 endobj
-503 0 obj
+551 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2347,48 +2419,48 @@ endobj
 /A << /S /GoTo /D (Hfootnote.21) >>
 >>
 endobj
-508 0 obj
+556 0 obj
 <<
-/D [506 0 R /XYZ 55.693 823.059 null]
+/D [554 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 70 0 obj
 <<
-/D [506 0 R /XYZ 56.693 722.806 null]
+/D [554 0 R /XYZ 56.693 722.806 null]
 >>
 endobj
-513 0 obj
+561 0 obj
 <<
-/D [506 0 R /XYZ 74.626 206.093 null]
+/D [554 0 R /XYZ 74.626 206.093 null]
 >>
 endobj
-514 0 obj
+562 0 obj
 <<
-/D [506 0 R /XYZ 74.626 182.183 null]
+/D [554 0 R /XYZ 74.626 182.183 null]
 >>
 endobj
-515 0 obj
+563 0 obj
 <<
-/D [506 0 R /XYZ 74.626 146.317 null]
+/D [554 0 R /XYZ 74.626 146.317 null]
 >>
 endobj
-516 0 obj
+564 0 obj
 <<
-/D [506 0 R /XYZ 74.626 110.452 null]
+/D [554 0 R /XYZ 74.626 110.452 null]
 >>
 endobj
-518 0 obj
+566 0 obj
 <<
-/D [506 0 R /XYZ 74.626 98.496 null]
+/D [554 0 R /XYZ 74.626 98.496 null]
 >>
 endobj
-505 0 obj
+553 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F20 350 0 R /F23 398 0 R /F24 410 0 R /F28 509 0 R /F22 510 0 R /F26 511 0 R /F25 512 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F20 398 0 R /F23 446 0 R /F24 458 0 R /F28 557 0 R /F22 558 0 R /F26 559 0 R /F25 560 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-523 0 obj
+571 0 obj
 <<
 /Length 1631      
 /Filter /FlateDecode
@@ -2404,18 +2476,18 @@ f33
 li���C?0�{�l�������baa�0��b��2�b��O����U��mP�����F'*��Xn��~�(>��2�8���������g���2s�`���uԙ~/MA�$`>�Š���Jv�E���a���tbPh`��I�h�6�P��UEn�������t|Ӯ�T����JS
�g�Y��Ѽע
 endstream
 endobj
-522 0 obj
+570 0 obj
 <<
 /Type /Page
-/Contents 523 0 R
-/Resources 521 0 R
+/Contents 571 0 R
+/Resources 569 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Group 377 0 R
-/Annots [ 504 0 R 520 0 R ]
+/Parent 567 0 R
+/Group 425 0 R
+/Annots [ 552 0 R 568 0 R ]
 >>
 endobj
-504 0 obj
+552 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2424,7 +2496,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.22) >>
 >>
 endobj
-520 0 obj
+568 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2433,44 +2505,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.23) >>
 >>
 endobj
-524 0 obj
+572 0 obj
 <<
-/D [522 0 R /XYZ 55.693 823.059 null]
+/D [570 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 74 0 obj
 <<
-/D [522 0 R /XYZ 56.693 722.806 null]
+/D [570 0 R /XYZ 56.693 722.806 null]
 >>
 endobj
 78 0 obj
 <<
-/D [522 0 R /XYZ 56.693 696.687 null]
+/D [570 0 R /XYZ 56.693 696.687 null]
 >>
 endobj
-525 0 obj
+573 0 obj
 <<
-/D [522 0 R /XYZ 56.693 667.264 null]
+/D [570 0 R /XYZ 56.693 667.264 null]
 >>
 endobj
-526 0 obj
+574 0 obj
 <<
-/D [522 0 R /XYZ 74.626 233.9 null]
+/D [570 0 R /XYZ 74.626 233.9 null]
 >>
 endobj
-527 0 obj
+575 0 obj
 <<
-/D [522 0 R /XYZ 74.626 221.945 null]
+/D [570 0 R /XYZ 74.626 221.945 null]
 >>
 endobj
-521 0 obj
+569 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F25 512 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F25 560 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-532 0 obj
+580 0 obj
 <<
 /Length 896       
 /Filter /FlateDecode
@@ -2481,18 +2553,18 @@ x
 #�˖�z��H�Ӝ"�i���sC�������u{;o|t�_� �f��!�kUbQ�BQ�@�f������)Ε��n?C�Z�G!O�t z�#l���p�xK���`��u�z������`��L�
�II4/t�x�Iq86���BV��a��ؐL_�d؆QءsO|v���ES�@��I�h��g`�;�]?�@�T����3kljO0܉}y4F��k3T[�|�$��aj��#at������p���)N'��.N�/`J�,��L� �TUX��R.��b�������z:�/쯽!�ns�o�(`Zu|D�ж,�G�a�<�����R��To�+ +�S~Z�;�x.�1�ԁ)�S.0咉 �=X�޻�{�MCYwt��h�S�{Z�݊��c�����ጢ�t��
 endstream
 endobj
-531 0 obj
+579 0 obj
 <<
 /Type /Page
-/Contents 532 0 R
-/Resources 530 0 R
+/Contents 580 0 R
+/Resources 578 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Group 377 0 R
-/Annots [ 529 0 R ]
+/Parent 567 0 R
+/Group 425 0 R
+/Annots [ 577 0 R ]
 >>
 endobj
-529 0 obj
+577 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2501,29 +2573,29 @@ endobj
 /A << /S /GoTo /D (Hfootnote.24) >>
 >>
 endobj
-533 0 obj
+581 0 obj
 <<
-/D [531 0 R /XYZ 55.693 823.059 null]
+/D [579 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-534 0 obj
+582 0 obj
 <<
-/D [531 0 R /XYZ 56.693 789.929 null]
+/D [579 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-535 0 obj
+583 0 obj
 <<
-/D [531 0 R /XYZ 74.626 356.565 null]
+/D [579 0 R /XYZ 74.626 356.565 null]
 >>
 endobj
-530 0 obj
+578 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-539 0 obj
+587 0 obj
 <<
 /Length 1904      
 /Filter /FlateDecode
@@ -2540,18 +2612,18 @@ F;Ο
 ����������@���{�(���Y�)�s�����+��������ů�
=G��/�)�Ά+!yuw_�lx�sD%&����Q��vF�#��A��C"�:����Q�p^��e�{{�{�\�r��3k�j����M�>v��c�
W�G��4?�b����t��dm���~�A�lo�����'~A����	UGN����W�.���]�n
 endstream
 endobj
-538 0 obj
+586 0 obj
 <<
 /Type /Page
-/Contents 539 0 R
-/Resources 537 0 R
+/Contents 587 0 R
+/Resources 585 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Group 377 0 R
-/Annots [ 536 0 R ]
+/Parent 567 0 R
+/Group 425 0 R
+/Annots [ 584 0 R ]
 >>
 endobj
-536 0 obj
+584 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2560,34 +2632,34 @@ endobj
 /A << /S /GoTo /D (Hfootnote.25) >>
 >>
 endobj
-540 0 obj
+588 0 obj
 <<
-/D [538 0 R /XYZ 55.693 823.059 null]
+/D [586 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 82 0 obj
 <<
-/D [538 0 R /XYZ 56.693 782.706 null]
+/D [586 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-541 0 obj
+589 0 obj
 <<
-/D [538 0 R /XYZ 56.693 752.984 null]
+/D [586 0 R /XYZ 56.693 752.984 null]
 >>
 endobj
-542 0 obj
+590 0 obj
 <<
-/D [538 0 R /XYZ 74.626 160.052 null]
+/D [586 0 R /XYZ 74.626 160.052 null]
 >>
 endobj
-537 0 obj
+585 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-548 0 obj
+596 0 obj
 <<
 /Length 2071      
 /Filter /FlateDecode
@@ -2607,18 +2679,18 @@ xڽX[s
 �:{C3���稁ن!$+��8"AC�m&�Xc,��Ps̿�Ћb\�Y�Cr�?��?/Sf
}X�P�$��w)sO���6ȷ-k�?�����/�7��zYUB��_H?�_�3�֔\��G�9@����!C+�A(R�d�DIr�ӕ��!�2eb
�`~2�J%�l'�
����k^��ul���f�#����  ��Yϥ�5a@���[#0BM]-��~7�.� �V���gM
 endstream
 endobj
-547 0 obj
+595 0 obj
 <<
 /Type /Page
-/Contents 548 0 R
-/Resources 546 0 R
+/Contents 596 0 R
+/Resources 594 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Group 377 0 R
-/Annots [ 543 0 R 544 0 R 545 0 R ]
+/Parent 567 0 R
+/Group 425 0 R
+/Annots [ 591 0 R 592 0 R 593 0 R ]
 >>
 endobj
-543 0 obj
+591 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2627,7 +2699,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.26) >>
 >>
 endobj
-544 0 obj
+592 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2636,7 +2708,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.27) >>
 >>
 endobj
-545 0 obj
+593 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2645,44 +2717,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.28) >>
 >>
 endobj
-549 0 obj
+597 0 obj
 <<
-/D [547 0 R /XYZ 55.693 823.059 null]
+/D [595 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 86 0 obj
 <<
-/D [547 0 R /XYZ 56.693 782.706 null]
+/D [595 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-550 0 obj
+598 0 obj
 <<
-/D [547 0 R /XYZ 56.693 752.984 null]
+/D [595 0 R /XYZ 56.693 752.984 null]
 >>
 endobj
-551 0 obj
+599 0 obj
 <<
-/D [547 0 R /XYZ 74.626 168.022 null]
+/D [595 0 R /XYZ 74.626 168.022 null]
 >>
 endobj
-552 0 obj
+600 0 obj
 <<
-/D [547 0 R /XYZ 74.626 132.156 null]
+/D [595 0 R /XYZ 74.626 132.156 null]
 >>
 endobj
-553 0 obj
+601 0 obj
 <<
-/D [547 0 R /XYZ 74.626 84.336 null]
+/D [595 0 R /XYZ 74.626 84.336 null]
 >>
 endobj
-546 0 obj
+594 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F20 350 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F20 398 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-558 0 obj
+606 0 obj
 <<
 /Length 3578      
 /Filter /FlateDecode
@@ -2700,17 +2772,17 @@ w
 +���X[��?�i������?!p�G�~�Z�ֳ�5�{SuRCB0���Fd!�+詔�$��穀h��gY)H>q�ݮ ��9qz���h�]Sa�צ��O�[kOE~���'�4�$n�
�H��@�@>V͆2��~8 Օ�+��p�3y��JN:��6�V�|�_̑�"�6���&2�t*X+������윬�p��'�(F�߄�^��r���c�l�I��$�9�V�{=�g�X����������u6������I��P�w�2<��?[�[���
���
 endstream
 endobj
-557 0 obj
+605 0 obj
 <<
 /Type /Page
-/Contents 558 0 R
-/Resources 556 0 R
+/Contents 606 0 R
+/Resources 604 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 519 0 R
-/Annots [ 554 0 R 555 0 R ]
+/Parent 567 0 R
+/Annots [ 602 0 R 603 0 R ]
 >>
 endobj
-554 0 obj
+602 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2719,7 +2791,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.29) >>
 >>
 endobj
-555 0 obj
+603 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2728,33 +2800,33 @@ endobj
 /A << /S /GoTo /D (Hfootnote.30) >>
 >>
 endobj
-559 0 obj
+607 0 obj
 <<
-/D [557 0 R /XYZ 55.693 823.059 null]
+/D [605 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 90 0 obj
 <<
-/D [557 0 R /XYZ 56.693 547.463 null]
+/D [605 0 R /XYZ 56.693 547.463 null]
 >>
 endobj
-560 0 obj
+608 0 obj
 <<
-/D [557 0 R /XYZ 74.626 167.937 null]
+/D [605 0 R /XYZ 74.626 167.937 null]
 >>
 endobj
-561 0 obj
+609 0 obj
 <<
-/D [557 0 R /XYZ 74.626 132.071 null]
+/D [605 0 R /XYZ 74.626 132.071 null]
 >>
 endobj
-556 0 obj
+604 0 obj
 <<
-/Font << /F15 347 0 R /F20 350 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R /F13 562 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R /F13 610 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-572 0 obj
+620 0 obj
 <<
 /Length 4053      
 /Filter /FlateDecode
@@ -2775,17 +2847,17 @@ o
 �6��Y�ݒW����L����)c8RWv�슜=W�5�R&P|�������6���bWZ#�w��=�tا�~T��)�r�R <���o��~���N�p���k��
 endstream
 endobj
-571 0 obj
+619 0 obj
 <<
 /Type /Page
-/Contents 572 0 R
-/Resources 570 0 R
+/Contents 620 0 R
+/Resources 618 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Annots [ 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R ]
+/Parent 631 0 R
+/Annots [ 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R ]
 >>
 endobj
-563 0 obj
+611 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2794,7 +2866,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.31) >>
 >>
 endobj
-564 0 obj
+612 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2803,7 +2875,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.32) >>
 >>
 endobj
-565 0 obj
+613 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2812,7 +2884,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.33) >>
 >>
 endobj
-566 0 obj
+614 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2821,7 +2893,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.34) >>
 >>
 endobj
-567 0 obj
+615 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2830,7 +2902,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.35) >>
 >>
 endobj
-568 0 obj
+616 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2839,7 +2911,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.36) >>
 >>
 endobj
-569 0 obj
+617 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2848,63 +2920,63 @@ endobj
 /A << /S /GoTo /D (Hfootnote.37) >>
 >>
 endobj
-573 0 obj
+621 0 obj
 <<
-/D [571 0 R /XYZ 55.693 823.059 null]
+/D [619 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-574 0 obj
+622 0 obj
 <<
-/D [571 0 R /XYZ 240.492 744.35 null]
+/D [619 0 R /XYZ 240.492 744.35 null]
 >>
 endobj
-575 0 obj
+623 0 obj
 <<
-/D [571 0 R /XYZ 258.886 503.752 null]
+/D [619 0 R /XYZ 258.886 503.752 null]
 >>
 endobj
-576 0 obj
+624 0 obj
 <<
-/D [571 0 R /XYZ 74.626 245.497 null]
+/D [619 0 R /XYZ 74.626 245.497 null]
 >>
 endobj
-577 0 obj
+625 0 obj
 <<
-/D [571 0 R /XYZ 74.626 233.542 null]
+/D [619 0 R /XYZ 74.626 233.542 null]
 >>
 endobj
-578 0 obj
+626 0 obj
 <<
-/D [571 0 R /XYZ 74.626 197.676 null]
+/D [619 0 R /XYZ 74.626 197.676 null]
 >>
 endobj
-579 0 obj
+627 0 obj
 <<
-/D [571 0 R /XYZ 74.626 149.855 null]
+/D [619 0 R /XYZ 74.626 149.855 null]
 >>
 endobj
-580 0 obj
+628 0 obj
 <<
-/D [571 0 R /XYZ 74.626 113.99 null]
+/D [619 0 R /XYZ 74.626 113.99 null]
 >>
 endobj
-581 0 obj
+629 0 obj
 <<
-/D [571 0 R /XYZ 74.626 90.079 null]
+/D [619 0 R /XYZ 74.626 90.079 null]
 >>
 endobj
-582 0 obj
+630 0 obj
 <<
-/D [571 0 R /XYZ 74.626 66.169 null]
+/D [619 0 R /XYZ 74.626 66.169 null]
 >>
 endobj
-570 0 obj
+618 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R /F28 509 0 R /F20 350 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R /F28 557 0 R /F20 398 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-589 0 obj
+637 0 obj
 <<
 /Length 3743      
 /Filter /FlateDecode
@@ -2928,17 +3000,17 @@ NQێ
 �a\�.�zBkf ���l�;$�FPYSȑ����t~�D�T5Э��Qs=;sħT_�1D�X%$�@������̅$:LM�����pI�-&8���~;J^D��ܸ�G!��"Ę��Ɯ��T�VIF��CO�%_�����z�9.G/.7��ПC���9�����lJ�4����4<�2�b#�)�0�#�CY@)��LE�o�X�ܛ#�M�v�6�j}Ko��/�r�TC��C���b��va̩R���ա
�?�X#�N�� f��e!!��?S
�Q�����1�׾W��O)(ޓ�G)r���;TMI.@w��3	%:����-�m��<������)
 endstream
 endobj
-588 0 obj
+636 0 obj
 <<
 /Type /Page
-/Contents 589 0 R
-/Resources 587 0 R
+/Contents 637 0 R
+/Resources 635 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Annots [ 584 0 R 585 0 R 586 0 R ]
+/Parent 631 0 R
+/Annots [ 632 0 R 633 0 R 634 0 R ]
 >>
 endobj
-584 0 obj
+632 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2947,7 +3019,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.38) >>
 >>
 endobj
-585 0 obj
+633 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2956,7 +3028,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.39) >>
 >>
 endobj
-586 0 obj
+634 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -2965,53 +3037,53 @@ endobj
 /A << /S /GoTo /D (Hfootnote.40) >>
 >>
 endobj
-590 0 obj
+638 0 obj
 <<
-/D [588 0 R /XYZ 55.693 823.059 null]
+/D [636 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 94 0 obj
 <<
-/D [588 0 R /XYZ 56.693 782.706 null]
+/D [636 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 98 0 obj
 <<
-/D [588 0 R /XYZ 56.693 755.565 null]
+/D [636 0 R /XYZ 56.693 755.565 null]
 >>
 endobj
 102 0 obj
 <<
-/D [588 0 R /XYZ 56.693 626.866 null]
+/D [636 0 R /XYZ 56.693 626.866 null]
 >>
 endobj
 106 0 obj
 <<
-/D [588 0 R /XYZ 56.693 299.053 null]
+/D [636 0 R /XYZ 56.693 299.053 null]
 >>
 endobj
-591 0 obj
+639 0 obj
 <<
-/D [588 0 R /XYZ 74.626 125.919 null]
+/D [636 0 R /XYZ 74.626 125.919 null]
 >>
 endobj
-592 0 obj
+640 0 obj
 <<
-/D [588 0 R /XYZ 74.626 102.009 null]
+/D [636 0 R /XYZ 74.626 102.009 null]
 >>
 endobj
-593 0 obj
+641 0 obj
 <<
-/D [588 0 R /XYZ 74.626 90.054 null]
+/D [636 0 R /XYZ 74.626 90.054 null]
 >>
 endobj
-587 0 obj
+635 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F21 383 0 R /F20 350 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F21 431 0 R /F20 398 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-596 0 obj
+644 0 obj
 <<
 /Length 2153      
 /Filter /FlateDecode
@@ -3029,44 +3101,44 @@ K
 ��0[ш�9��W6�����)q娯,����1d]��5#d��9�p�(��T�8��J;�����T0���^@| �̃���ͫ��/��D�
 endstream
 endobj
-595 0 obj
+643 0 obj
 <<
 /Type /Page
-/Contents 596 0 R
-/Resources 594 0 R
+/Contents 644 0 R
+/Resources 642 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Group 377 0 R
+/Parent 631 0 R
+/Group 425 0 R
 >>
 endobj
-597 0 obj
+645 0 obj
 <<
-/D [595 0 R /XYZ 55.693 823.059 null]
+/D [643 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 110 0 obj
 <<
-/D [595 0 R /XYZ 56.693 722.806 null]
+/D [643 0 R /XYZ 56.693 722.806 null]
 >>
 endobj
-598 0 obj
+646 0 obj
 <<
-/D [595 0 R /XYZ 56.693 688.966 null]
+/D [643 0 R /XYZ 56.693 688.966 null]
 >>
 endobj
 114 0 obj
 <<
-/D [595 0 R /XYZ 56.693 246.046 null]
+/D [643 0 R /XYZ 56.693 246.046 null]
 >>
 endobj
-594 0 obj
+642 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-603 0 obj
+651 0 obj
 <<
 /Length 2372      
 /Filter /FlateDecode
@@ -3087,18 +3159,18 @@ d
 �����P��ut�l�0
ȩ{Q��;8�8�"�6H�ʞxy�^8'��&�"?s[I���雮l��9��l<O�	{��%`IUȗ�R4���=����'~c��J��}�}f�8vf�Pk�F>n4cS�_U���A�
 endstream
 endobj
-602 0 obj
+650 0 obj
 <<
 /Type /Page
-/Contents 603 0 R
-/Resources 601 0 R
+/Contents 651 0 R
+/Resources 649 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Group 377 0 R
-/Annots [ 599 0 R 600 0 R ]
+/Parent 631 0 R
+/Group 425 0 R
+/Annots [ 647 0 R 648 0 R ]
 >>
 endobj
-599 0 obj
+647 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3107,7 +3179,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.41) >>
 >>
 endobj
-600 0 obj
+648 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3116,39 +3188,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.42) >>
 >>
 endobj
-604 0 obj
+652 0 obj
 <<
-/D [602 0 R /XYZ 55.693 823.059 null]
+/D [650 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 118 0 obj
 <<
-/D [602 0 R /XYZ 56.693 595.9 null]
+/D [650 0 R /XYZ 56.693 595.9 null]
 >>
 endobj
-605 0 obj
+653 0 obj
 <<
-/D [602 0 R /XYZ 56.693 508.93 null]
+/D [650 0 R /XYZ 56.693 508.93 null]
 >>
 endobj
-606 0 obj
+654 0 obj
 <<
-/D [602 0 R /XYZ 74.626 137.888 null]
+/D [650 0 R /XYZ 74.626 137.888 null]
 >>
 endobj
-607 0 obj
+655 0 obj
 <<
-/D [602 0 R /XYZ 74.626 90.068 null]
+/D [650 0 R /XYZ 74.626 90.068 null]
 >>
 endobj
-601 0 obj
+649 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-611 0 obj
+659 0 obj
 <<
 /Length 2037      
 /Filter /FlateDecode
@@ -3163,18 +3235,18 @@ eJEQ
 �4�\ZK�uR�e���Z]KTJ����5��M��qı�'��ZN����Џ�r���9l���1� JbyD�x
�xD-r^s�#(d��w:�{����K��n��…��T[�8�	L3A���M��)̀�4��>��vdNΕ��������v��2�g0~͑Nwq��!�G:�����0T#�8zR��0�s��(��X���%oa�"X��3��ZA]���ũ 35c��f�"-1��a%v��cU��c���!��.��=6T��3���T�3-�����Q����ߋw��?�h����G�	t�r�����y��S��ʲH*��uXd�Z��u=c�%�4�ǭ�2��~ï1	€>�%I�y�1-OZ��<t��L=J�QR.�?L��U�I9���G{��e_YZ��dኰ�w�8>������G�µD��
 endstream
 endobj
-610 0 obj
+658 0 obj
 <<
 /Type /Page
-/Contents 611 0 R
-/Resources 609 0 R
+/Contents 659 0 R
+/Resources 657 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Group 377 0 R
-/Annots [ 608 0 R ]
+/Parent 631 0 R
+/Group 425 0 R
+/Annots [ 656 0 R ]
 >>
 endobj
-608 0 obj
+656 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3183,44 +3255,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.43) >>
 >>
 endobj
-612 0 obj
+660 0 obj
 <<
-/D [610 0 R /XYZ 55.693 823.059 null]
+/D [658 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 122 0 obj
 <<
-/D [610 0 R /XYZ 56.693 782.706 null]
+/D [658 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-613 0 obj
+661 0 obj
 <<
-/D [610 0 R /XYZ 56.693 709.647 null]
+/D [658 0 R /XYZ 56.693 709.647 null]
 >>
 endobj
 126 0 obj
 <<
-/D [610 0 R /XYZ 56.693 369.674 null]
+/D [658 0 R /XYZ 56.693 369.674 null]
 >>
 endobj
 130 0 obj
 <<
-/D [610 0 R /XYZ 56.693 183.995 null]
+/D [658 0 R /XYZ 56.693 183.995 null]
 >>
 endobj
-614 0 obj
+662 0 obj
 <<
-/D [610 0 R /XYZ 74.626 82.426 null]
+/D [658 0 R /XYZ 74.626 82.426 null]
 >>
 endobj
-609 0 obj
+657 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-618 0 obj
+666 0 obj
 <<
 /Length 1987      
 /Filter /FlateDecode
@@ -3240,18 +3312,18 @@ U
 ��$����Ky�F������G�R?�HI���|���G����]C��-�:��"{���]�d��:1Oa���B�V�B����P�Ǻ�`��/��Ԗ
 endstream
 endobj
-617 0 obj
+665 0 obj
 <<
 /Type /Page
-/Contents 618 0 R
-/Resources 616 0 R
+/Contents 666 0 R
+/Resources 664 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 583 0 R
-/Group 377 0 R
-/Annots [ 615 0 R ]
+/Parent 631 0 R
+/Group 425 0 R
+/Annots [ 663 0 R ]
 >>
 endobj
-615 0 obj
+663 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3260,34 +3332,34 @@ endobj
 /A << /S /GoTo /D (Hfootnote.44) >>
 >>
 endobj
-619 0 obj
+667 0 obj
 <<
-/D [617 0 R /XYZ 55.693 823.059 null]
+/D [665 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-620 0 obj
+668 0 obj
 <<
-/D [617 0 R /XYZ 56.693 789.929 null]
+/D [665 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
 134 0 obj
 <<
-/D [617 0 R /XYZ 56.693 202.551 null]
+/D [665 0 R /XYZ 56.693 202.551 null]
 >>
 endobj
-621 0 obj
+669 0 obj
 <<
-/D [617 0 R /XYZ 74.626 144.319 null]
+/D [665 0 R /XYZ 74.626 144.319 null]
 >>
 endobj
-616 0 obj
+664 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F23 398 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-625 0 obj
+673 0 obj
 <<
 /Length 706       
 /Filter /FlateDecode
@@ -3296,39 +3368,39 @@ stream
 xڵTKS�0��W�(�Ԋd[��[x��j�(���ئ�Cʿ�J����b����j9�'����h|"$�i)2{$r�&:%�e��䞦Q���ߧg��Q�&���N��9rB��w����ë��[�t«ۋ(2Ӓ^GIN�ʠu"�����x6�=�	'�-0W,)���'Н�R���G6$��5�+�ct3⡘��0�L,ӂq�B0�U��#�*�)��LmIP�Ϛ�u��q�����"�,U�����Փ�Z[��J���Y*�\�9�u�2[�6nӬ�`���#JJ�]k_���5�	˺u�ƩM����m"��L$��	SI�y�F-8�9�ݺZ:Z]�HYӛ���+Ӗ�[e�
H�#��ꪋb��7�W�Hh�.>�޹y���]�t�[��ܻ5�`l0�S����Mb���0��,�`�3-�	m�jX:R�b�w(.�����`��,�I�]>ŀ��k�� s��W4�fX۶߹j�!Dx����k�_�e��E��b��u�֔��}��cu}akV��l�R+d|�N�Kb�a��maa��`���: ���#���[eyB]�y�瀗f�����>9���)!�]7\Z��i��{jz�=�u\�[�;�/�_C_v���}�t�	�*�Ϸ`d�)��$ɴ�{	&�X|,ex�k�OY&c-�~8E8�������ڛr�
 endstream
 endobj
-624 0 obj
+672 0 obj
 <<
 /Type /Page
-/Contents 625 0 R
-/Resources 623 0 R
+/Contents 673 0 R
+/Resources 671 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
+/Parent 677 0 R
+/Group 425 0 R
 >>
 endobj
-626 0 obj
+674 0 obj
 <<
-/D [624 0 R /XYZ 55.693 823.059 null]
+/D [672 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-627 0 obj
+675 0 obj
 <<
-/D [624 0 R /XYZ 56.693 789.929 null]
+/D [672 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-628 0 obj
+676 0 obj
 <<
-/D [624 0 R /XYZ 56.693 384.909 null]
+/D [672 0 R /XYZ 56.693 384.909 null]
 >>
 endobj
-623 0 obj
+671 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-633 0 obj
+681 0 obj
 <<
 /Length 1543      
 /Filter /FlateDecode
@@ -3342,18 +3414,18 @@ xڍW
 t�#�G7؋�`<S�(}:���������������I�����9�Y|Z-���5�9?U��{Թ@�c���j�,@E��w�\Ǘ=�<�}j�vhm����&����xf�n��r�O	S���_�3TX�����DzSMr��eGO�g����?�~h�9�j��zz��O==f��m�	�N�v��B��L(�_x��L��-�W��r�HՁ-9�:�R������FGP#͑$�ʄ��rNV���Byo7L�Éй�a]C�@.0\��Y���1 30#K��.�)X{�����й�+@�ѻ�(䞆"|��_�Пq@�: ȁ�����G)�e�j
 endstream
 endobj
-632 0 obj
+680 0 obj
 <<
 /Type /Page
-/Contents 633 0 R
-/Resources 631 0 R
+/Contents 681 0 R
+/Resources 679 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
-/Annots [ 622 0 R 630 0 R ]
+/Parent 677 0 R
+/Group 425 0 R
+/Annots [ 670 0 R 678 0 R ]
 >>
 endobj
-622 0 obj
+670 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3362,7 +3434,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.45) >>
 >>
 endobj
-630 0 obj
+678 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3371,39 +3443,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.46) >>
 >>
 endobj
-634 0 obj
+682 0 obj
 <<
-/D [632 0 R /XYZ 55.693 823.059 null]
+/D [680 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-635 0 obj
+683 0 obj
 <<
-/D [632 0 R /XYZ 56.693 760.705 null]
+/D [680 0 R /XYZ 56.693 760.705 null]
 >>
 endobj
 138 0 obj
 <<
-/D [632 0 R /XYZ 56.693 317.785 null]
+/D [680 0 R /XYZ 56.693 317.785 null]
 >>
 endobj
-636 0 obj
+684 0 obj
 <<
-/D [632 0 R /XYZ 74.626 227.175 null]
+/D [680 0 R /XYZ 74.626 227.175 null]
 >>
 endobj
-637 0 obj
+685 0 obj
 <<
-/D [632 0 R /XYZ 74.626 215.22 null]
+/D [680 0 R /XYZ 74.626 215.22 null]
 >>
 endobj
-631 0 obj
+679 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-640 0 obj
+688 0 obj
 <<
 /Length 632       
 /Filter /FlateDecode
@@ -3413,39 +3485,39 @@ x
 ���WG�_��n����E�	���ש,h���-m�X�'Ge�3�	'�0�LMf��ᑓ9��	g�d;E��.+�
�Kn��=w�g´����1g�ŀ���1kХ�����Z��*ݼ���"٫*�*yΜ�^,D	�����ޣ\��i�����t����?нi��[�`�gbOr>)�Vh��n����d�0�c�)&`CBZ�NӾ�ۺ]�5�Ώϛ��vN2)��sd9������a���1Ђ����<߹��0"���vi����)��V�����zC0T�X�gA�Ut���[ bE§�X1��B��^��}>L+4�:N���G���A���NE�Q1�^+�$�V�D�����I��9WH7����	B`U/W��m������x:נ}�������3#fX�/`��-���Z8��A�SR��D����Z�vk���	���7�̂�Jq?�S�O�˫��Ä����⋁{c�A9?�tB���E߭���5F*�>|9����0
 endstream
 endobj
-639 0 obj
+687 0 obj
 <<
 /Type /Page
-/Contents 640 0 R
-/Resources 638 0 R
+/Contents 688 0 R
+/Resources 686 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
+/Parent 677 0 R
+/Group 425 0 R
 >>
 endobj
-641 0 obj
+689 0 obj
 <<
-/D [639 0 R /XYZ 55.693 823.059 null]
+/D [687 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-642 0 obj
+690 0 obj
 <<
-/D [639 0 R /XYZ 56.693 789.929 null]
+/D [687 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
 142 0 obj
 <<
-/D [639 0 R /XYZ 56.693 449.956 null]
+/D [687 0 R /XYZ 56.693 449.956 null]
 >>
 endobj
-638 0 obj
+686 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-647 0 obj
+695 0 obj
 <<
 /Length 1744      
 /Filter /FlateDecode
@@ -3465,18 +3537,18 @@ C
 �\��gFZeK�p�‚�O��Za쏂��Y���8CRzڐ�C�G�(}3(�ZÊ�/�qYF��'ڌq�?�_�F���L�=�$��99�˚��4K	��ٳߝ�|���:
 endstream
 endobj
-646 0 obj
+694 0 obj
 <<
 /Type /Page
-/Contents 647 0 R
-/Resources 645 0 R
+/Contents 695 0 R
+/Resources 693 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
-/Annots [ 643 0 R 644 0 R ]
+/Parent 677 0 R
+/Group 425 0 R
+/Annots [ 691 0 R 692 0 R ]
 >>
 endobj
-643 0 obj
+691 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3485,7 +3557,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.47) >>
 >>
 endobj
-644 0 obj
+692 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3494,39 +3566,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.48) >>
 >>
 endobj
-648 0 obj
+696 0 obj
 <<
-/D [646 0 R /XYZ 55.693 823.059 null]
+/D [694 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 146 0 obj
 <<
-/D [646 0 R /XYZ 56.693 782.706 null]
+/D [694 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-649 0 obj
+697 0 obj
 <<
-/D [646 0 R /XYZ 56.693 755.309 null]
+/D [694 0 R /XYZ 56.693 755.309 null]
 >>
 endobj
-650 0 obj
+698 0 obj
 <<
-/D [646 0 R /XYZ 74.626 220.824 null]
+/D [694 0 R /XYZ 74.626 220.824 null]
 >>
 endobj
-651 0 obj
+699 0 obj
 <<
-/D [646 0 R /XYZ 74.626 208.869 null]
+/D [694 0 R /XYZ 74.626 208.869 null]
 >>
 endobj
-645 0 obj
+693 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-654 0 obj
+702 0 obj
 <<
 /Length 664       
 /Filter /FlateDecode
@@ -3539,39 +3611,39 @@ xڵT
 e �&$�ؔ��#W�����l;⚴�$�8.��ytP9���<�[�
 endstream
 endobj
-653 0 obj
+701 0 obj
 <<
 /Type /Page
-/Contents 654 0 R
-/Resources 652 0 R
+/Contents 702 0 R
+/Resources 700 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
+/Parent 677 0 R
+/Group 425 0 R
 >>
 endobj
-655 0 obj
+703 0 obj
 <<
-/D [653 0 R /XYZ 55.693 823.059 null]
+/D [701 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-656 0 obj
+704 0 obj
 <<
-/D [653 0 R /XYZ 56.693 789.929 null]
+/D [701 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-657 0 obj
+705 0 obj
 <<
-/D [653 0 R /XYZ 56.693 428.246 null]
+/D [701 0 R /XYZ 56.693 428.246 null]
 >>
 endobj
-652 0 obj
+700 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-663 0 obj
+711 0 obj
 <<
 /Length 2258      
 /Filter /FlateDecode
@@ -3595,18 +3667,18 @@ r!XԮ
 W��9��	�0�)e���O�^��}a�Y>{�=�*�Y��qW`�,��̞'�Ss`���Q�Zd�uP�Gkv�?���|���L[La��Q�^�r��ͩ;�9l�A��g��
 endstream
 endobj
-662 0 obj
+710 0 obj
 <<
 /Type /Page
-/Contents 663 0 R
-/Resources 661 0 R
+/Contents 711 0 R
+/Resources 709 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 629 0 R
-/Group 377 0 R
-/Annots [ 658 0 R 659 0 R 660 0 R ]
+/Parent 677 0 R
+/Group 425 0 R
+/Annots [ 706 0 R 707 0 R 708 0 R ]
 >>
 endobj
-658 0 obj
+706 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3615,7 +3687,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.49) >>
 >>
 endobj
-659 0 obj
+707 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3624,7 +3696,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.50) >>
 >>
 endobj
-660 0 obj
+708 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3633,49 +3705,49 @@ endobj
 /A << /S /GoTo /D (Hfootnote.51) >>
 >>
 endobj
-664 0 obj
+712 0 obj
 <<
-/D [662 0 R /XYZ 55.693 823.059 null]
+/D [710 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-665 0 obj
+713 0 obj
 <<
-/D [662 0 R /XYZ 56.693 745.595 null]
+/D [710 0 R /XYZ 56.693 745.595 null]
 >>
 endobj
 150 0 obj
 <<
-/D [662 0 R /XYZ 56.693 346.013 null]
+/D [710 0 R /XYZ 56.693 346.013 null]
 >>
 endobj
 154 0 obj
 <<
-/D [662 0 R /XYZ 56.693 319.894 null]
+/D [710 0 R /XYZ 56.693 319.894 null]
 >>
 endobj
-666 0 obj
+714 0 obj
 <<
-/D [662 0 R /XYZ 74.626 102.559 null]
+/D [710 0 R /XYZ 74.626 102.559 null]
 >>
 endobj
-667 0 obj
+715 0 obj
 <<
-/D [662 0 R /XYZ 74.626 78.649 null]
+/D [710 0 R /XYZ 74.626 78.649 null]
 >>
 endobj
-668 0 obj
+716 0 obj
 <<
-/D [662 0 R /XYZ 74.626 66.693 null]
+/D [710 0 R /XYZ 74.626 66.693 null]
 >>
 endobj
-661 0 obj
+709 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-672 0 obj
+720 0 obj
 <<
 /Length 3407      
 /Filter /FlateDecode
@@ -3696,17 +3768,17 @@ yi
 ����6A�/�&��������J���&�;Ѩ�J�$(�G?���B$��l���^	+OM._"�7�q(
�4-#T�3@���fh����	r��!�7��I�������S�Ajۯ��Rz�:��Ɩqm��s�Za�kM�W�6wq9����L��[d�w�ܺs(�f��|3��	ofV3od� >�g�+-6��b�����Վ��kRA�@��BM�អQ���l �:��*:��&)~�,a�����d	lȱ<�\6YW�n�zw�|�!��&�)����EÇ^��}��j��
 endstream
 endobj
-671 0 obj
+719 0 obj
 <<
 /Type /Page
-/Contents 672 0 R
-/Resources 670 0 R
+/Contents 720 0 R
+/Resources 718 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Annots [ 669 0 R ]
+/Parent 725 0 R
+/Annots [ 717 0 R ]
 >>
 endobj
-669 0 obj
+717 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3715,38 +3787,38 @@ endobj
 /A << /S /GoTo /D (Hfootnote.52) >>
 >>
 endobj
-673 0 obj
+721 0 obj
 <<
-/D [671 0 R /XYZ 55.693 823.059 null]
+/D [719 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-674 0 obj
+722 0 obj
 <<
-/D [671 0 R /XYZ 56.693 789.929 null]
+/D [719 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-675 0 obj
+723 0 obj
 <<
-/D [671 0 R /XYZ 56.693 602.532 null]
+/D [719 0 R /XYZ 56.693 602.532 null]
 >>
 endobj
 158 0 obj
 <<
-/D [671 0 R /XYZ 56.693 408.219 null]
+/D [719 0 R /XYZ 56.693 408.219 null]
 >>
 endobj
-676 0 obj
+724 0 obj
 <<
-/D [671 0 R /XYZ 74.626 73.192 null]
+/D [719 0 R /XYZ 74.626 73.192 null]
 >>
 endobj
-670 0 obj
+718 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F20 350 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F20 398 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-681 0 obj
+729 0 obj
 <<
 /Length 3005      
 /Filter /FlateDecode
@@ -3766,17 +3838,17 @@ q
 E��tG��e33�����z�>�4nm�u�������:2H�2v�%��������qg%|Gpk��W��G��%m�.a�s�K�u�>nh�������Ak��[�����=M{���C��jV�ƚ�����_-6+���_�9���Y
 endstream
 endobj
-680 0 obj
+728 0 obj
 <<
 /Type /Page
-/Contents 681 0 R
-/Resources 679 0 R
+/Contents 729 0 R
+/Resources 727 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Annots [ 678 0 R ]
+/Parent 725 0 R
+/Annots [ 726 0 R ]
 >>
 endobj
-678 0 obj
+726 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3785,53 +3857,53 @@ endobj
 /A << /S /GoTo /D (Hfootnote.53) >>
 >>
 endobj
-682 0 obj
+730 0 obj
 <<
-/D [680 0 R /XYZ 55.693 823.059 null]
+/D [728 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-683 0 obj
+731 0 obj
 <<
-/D [680 0 R /XYZ 56.693 789.929 null]
+/D [728 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-684 0 obj
+732 0 obj
 <<
-/D [680 0 R /XYZ 56.693 680.141 null]
+/D [728 0 R /XYZ 56.693 680.141 null]
 >>
 endobj
-685 0 obj
+733 0 obj
 <<
-/D [680 0 R /XYZ 56.693 490.154 null]
+/D [728 0 R /XYZ 56.693 490.154 null]
 >>
 endobj
 162 0 obj
 <<
-/D [680 0 R /XYZ 56.693 383.313 null]
+/D [728 0 R /XYZ 56.693 383.313 null]
 >>
 endobj
-686 0 obj
+734 0 obj
 <<
-/D [680 0 R /XYZ 240.492 302.864 null]
+/D [728 0 R /XYZ 240.492 302.864 null]
 >>
 endobj
-687 0 obj
+735 0 obj
 <<
-/D [680 0 R /XYZ 269.929 213.117 null]
+/D [728 0 R /XYZ 269.929 213.117 null]
 >>
 endobj
-688 0 obj
+736 0 obj
 <<
-/D [680 0 R /XYZ 74.626 134.795 null]
+/D [728 0 R /XYZ 74.626 134.795 null]
 >>
 endobj
-679 0 obj
+727 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F20 350 0 R /F17 349 0 R /F28 509 0 R /F24 410 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F20 398 0 R /F17 397 0 R /F28 557 0 R /F24 458 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-694 0 obj
+742 0 obj
 <<
 /Length 3602      
 /Filter /FlateDecode
@@ -3851,17 +3923,17 @@ l
 ���Z`uE�cFE!I{�8�>H�B����*�,`�pU����#��������I����tt�\
4��֩,��G�`�(�<Q�!i��4 �b���R���rғ<�aɤ*~�����<�o��k'<�g޼�t��d���B����ܤ��A'ln�$��DE�md����1��%As[gM���vv�O�p������
 endstream
 endobj
-693 0 obj
+741 0 obj
 <<
 /Type /Page
-/Contents 694 0 R
-/Resources 692 0 R
+/Contents 742 0 R
+/Resources 740 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Annots [ 689 0 R 690 0 R ]
+/Parent 725 0 R
+/Annots [ 737 0 R 738 0 R ]
 >>
 endobj
-689 0 obj
+737 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3870,7 +3942,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.54) >>
 >>
 endobj
-690 0 obj
+738 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3879,48 +3951,48 @@ endobj
 /A << /S /GoTo /D (Hfootnote.55) >>
 >>
 endobj
-695 0 obj
+743 0 obj
 <<
-/D [693 0 R /XYZ 55.693 823.059 null]
+/D [741 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-696 0 obj
+744 0 obj
 <<
-/D [693 0 R /XYZ 215.902 723.595 null]
+/D [741 0 R /XYZ 215.902 723.595 null]
 >>
 endobj
-697 0 obj
+745 0 obj
 <<
-/D [693 0 R /XYZ 235.835 575.317 null]
+/D [741 0 R /XYZ 235.835 575.317 null]
 >>
 endobj
-698 0 obj
+746 0 obj
 <<
-/D [693 0 R /XYZ 235.835 554.396 null]
+/D [741 0 R /XYZ 235.835 554.396 null]
 >>
 endobj
-699 0 obj
+747 0 obj
 <<
-/D [693 0 R /XYZ 271.42 516.918 null]
+/D [741 0 R /XYZ 271.42 516.918 null]
 >>
 endobj
-700 0 obj
+748 0 obj
 <<
-/D [693 0 R /XYZ 74.626 133.78 null]
+/D [741 0 R /XYZ 74.626 133.78 null]
 >>
 endobj
-701 0 obj
+749 0 obj
 <<
-/D [693 0 R /XYZ 74.626 121.825 null]
+/D [741 0 R /XYZ 74.626 121.825 null]
 >>
 endobj
-692 0 obj
+740 0 obj
 <<
-/Font << /F15 347 0 R /F28 509 0 R /F23 398 0 R /F21 383 0 R /F20 350 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
+/Font << /F15 395 0 R /F28 557 0 R /F23 446 0 R /F21 431 0 R /F20 398 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-706 0 obj
+754 0 obj
 <<
 /Length 1944      
 /Filter /FlateDecode
@@ -3936,17 +4008,17 @@ K
 oB�J���i�zlj�@�4΍(�g���D8te�;{VLRn3H�(�Zu��S��J�Jz�PͲ��K"p�[�%�e8��$�/=�$�����Ǡ�x���kо'����ىcO���!�q0~���!u2x�1���P@Rx�`m����De��?�9믐����{#��0Wµc(&�\	H��b+yd��`j�W@(��<
��wø�Y��t�[����c|fR�j����@b�R��(�bT�j��mS��^c@��v·����o{�4�����3��T��l�R;�&�� ,ʁ��&�|�™<C<�L@
W��d.��)P��AH�<�R:nP�FS4�&i�ʔk��6W�N�'*�G�5i;=�!gjf�=�۫b2��a��u�a����r[�gB�><��kV��S���	D7{�B�I�C��G����GtT^�|2�-�X*�W(���
 endstream
 endobj
-705 0 obj
+753 0 obj
 <<
 /Type /Page
-/Contents 706 0 R
-/Resources 704 0 R
+/Contents 754 0 R
+/Resources 752 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Annots [ 691 0 R 702 0 R ]
+/Parent 725 0 R
+/Annots [ 739 0 R 750 0 R ]
 >>
 endobj
-691 0 obj
+739 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3955,7 +4027,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.56) >>
 >>
 endobj
-702 0 obj
+750 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -3964,33 +4036,33 @@ endobj
 /A << /S /GoTo /D (Hfootnote.57) >>
 >>
 endobj
-707 0 obj
+755 0 obj
 <<
-/D [705 0 R /XYZ 55.693 823.059 null]
+/D [753 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 166 0 obj
 <<
-/D [705 0 R /XYZ 56.693 563.238 null]
+/D [753 0 R /XYZ 56.693 563.238 null]
 >>
 endobj
-708 0 obj
+756 0 obj
 <<
-/D [705 0 R /XYZ 74.626 473.292 null]
+/D [753 0 R /XYZ 74.626 473.292 null]
 >>
 endobj
-709 0 obj
+757 0 obj
 <<
-/D [705 0 R /XYZ 74.626 437.426 null]
+/D [753 0 R /XYZ 74.626 437.426 null]
 >>
 endobj
-704 0 obj
+752 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-712 0 obj
+760 0 obj
 <<
 /Length 901       
 /Filter /FlateDecode
@@ -4005,26 +4077,26 @@ xڕU
 WH**�L�C�_��������7q^�kZ�k��	��lMw�-��_��
 endstream
 endobj
-711 0 obj
+759 0 obj
 <<
 /Type /Page
-/Contents 712 0 R
-/Resources 710 0 R
+/Contents 760 0 R
+/Resources 758 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Group 715 0 R
+/Parent 725 0 R
+/Group 763 0 R
 >>
 endobj
-703 0 obj
+751 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/trivscale.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 716 0 R
+/PTEX.InfoDict 764 0 R
 /BBox [0 0 576 432]
-/Group 715 0 R
+/Group 763 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -4062,12 +4134,12 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 717 0 R>>
+>>/Font << /F1 765 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/M0 718 0 R
+/M0 766 0 R
 >>>>
 /Length 1513
 /Filter /FlateDecode
@@ -4081,33 +4153,33 @@ H
 [/Y�>�{�bM��L�@���|�!�T-�FV��!��{�@^�I�v��tTmƷ{h�RA7��YԸ�a;�u{�-�%���b����e���?n�-��x��jx:�ަ�����+�\����= ����c�;�;�>��6u\�yp9�����/�\~�{�)��O����8x��6V��Q�:��s�g���e�J� t�4���rS�7�]���9�KK�+��׊Z�q]��,z]ܬ��H!�U�7��0������Ѽ`�aH���%$E�����S�,��͸V��}~�l��g�x�f�Fo��Dys��}�rw���W�+����cg/�|�~��|���k��O����
 endstream
 endobj
-716 0 obj
+764 0 obj
 <<
 /CreationDate (D:20200423113453+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-717 0 obj
+765 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 719 0 R
+/CharProcs 767 0 R
 /Encoding <<
 /Differences [ 32/space 46/period 48/zero/one 52/four/five/six/seven/eight/nine 65/A 67/C/D 71/G 78/N 81/Q 83/S 87/W 97/a 99/c 101/e 103/g/h/i 107/k/l 110/n/o/p 114/r/s/t/u 119/w]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 720 0 R
+/FontDescriptor 768 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 721 0 R
+/Widths 769 0 R
 >>
 endobj
-718 0 obj
+766 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -4119,45 +4191,45 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-719 0 obj
+767 0 obj
 <<
-/A 722 0 R
-/C 723 0 R
-/D 724 0 R
-/G 725 0 R
-/N 726 0 R
-/Q 727 0 R
-/S 728 0 R
-/W 729 0 R
-/a 730 0 R
-/c 731 0 R
-/e 732 0 R
-/eight 733 0 R
-/five 734 0 R
-/four 735 0 R
-/g 736 0 R
-/h 737 0 R
-/i 738 0 R
-/k 739 0 R
-/l 740 0 R
-/n 741 0 R
-/nine 742 0 R
-/o 743 0 R
-/one 744 0 R
-/p 745 0 R
-/period 746 0 R
-/r 747 0 R
-/s 748 0 R
-/seven 749 0 R
-/six 750 0 R
-/space 751 0 R
-/t 752 0 R
-/u 753 0 R
-/w 754 0 R
-/zero 755 0 R
+/A 770 0 R
+/C 771 0 R
+/D 772 0 R
+/G 773 0 R
+/N 774 0 R
+/Q 775 0 R
+/S 776 0 R
+/W 777 0 R
+/a 778 0 R
+/c 779 0 R
+/e 780 0 R
+/eight 781 0 R
+/five 782 0 R
+/four 783 0 R
+/g 784 0 R
+/h 785 0 R
+/i 786 0 R
+/k 787 0 R
+/l 788 0 R
+/n 789 0 R
+/nine 790 0 R
+/o 791 0 R
+/one 792 0 R
+/p 793 0 R
+/period 794 0 R
+/r 795 0 R
+/s 796 0 R
+/seven 797 0 R
+/six 798 0 R
+/space 799 0 R
+/t 800 0 R
+/u 801 0 R
+/w 802 0 R
+/zero 803 0 R
 >>
 endobj
-720 0 obj
+768 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -4172,10 +4244,10 @@ endobj
 /XHeight 0
 >>
 endobj
-721 0 obj
+769 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-722 0 obj
+770 0 obj
 <<
 /Filter /FlateDecode
 /Length 88
@@ -4184,7 +4256,7 @@ stream
 x�5��
�0D{���8���R���[.�{��9��>G��-dC�xI9�>Q4Zo:�Hs��d3�3�}���d4I�!��r�Y)z>��~
 endstream
 endobj
-723 0 obj
+771 0 obj
 <<
 /Filter /FlateDecode
 /Length 232
@@ -4194,7 +4266,7 @@ x
 ] 3�o�g3�J��F��fa		�=؈ė��oY�f~'���Y)��Q�TEX!��Y�j��s#S�r&>��'�b���8Ύ�f01��h9f�=!�#n�4�Ui�[���Z�SE�Ⱥ���)�Z�[�=����-���� ��c�� _Ĝ�E'��~3尒4��#1����5��όO���}���>h��w/��̈́L��Hœ�Ƙ1T��$��?г>�0TG
 endstream
 endobj
-724 0 obj
+772 0 obj
 <<
 /Filter /FlateDecode
 /Length 160
@@ -4203,7 +4275,7 @@ stream
 x�=�K� C��BG���t�J
�l����}b"�'���$�l�{0�r��M���$q

�¦c��ɦu�J���~�w4f�t�-E�v!���"ܣ��<`1��J��0Ze������=D�������G7�(*K��Dw4�������e8$
 endstream
 endobj
-725 0 obj
+773 0 obj
 <<
 /Filter /FlateDecode
 /Length 244
@@ -4214,7 +4286,7 @@ x
 �csd#i]E���z�
�)��܄�9z���׵����̞���'�jhN��!����X�(ܨ2*�Si=��8��N��h=ٱ���S�\B^L�	���X�M,l�~T����7�o���B������x��?�X[�
 endstream
 endobj
-726 0 obj
+774 0 obj
 <<
 /Filter /FlateDecode
 /Length 75
@@ -4223,7 +4295,7 @@ stream
 x�5���0{�`��ɥ���	�h�������t�M���M�BQ��0�tf}qh�V^hJ����A����
 endstream
 endobj
-727 0 obj
+775 0 obj
 <<
 /Filter /FlateDecode
 /Length 251
@@ -4234,7 +4306,7 @@ x
 ".eEp�e��B��䵂ʂ�O�-�?c�z�c�Q%2/�Z�A�!tz�Q�H�gWل_��#�"�`'olN���<�����c���9���[p#V�(�3���=�sߏ����ȘQ�0\�����r9H�ؗ���?k�b�
 endstream
 endobj
-728 0 obj
+776 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -4243,7 +4315,7 @@ stream
 x�5RK�[AۿS��j��y������쬠��8��KQ�r�y��:����i�>ޅԂ�"���i�ǚ5Q�4b)�>��(!�S���Hfd2r ���>֛L9��is�(Iz-��v|Y�Aғ���u-��M�k"9�25�Ǟ�2�#A�, I��O�H3;g-y��x�/~���2���U2�	�`;�	�("��$���h�(�fƚۅ��"��=������D^	�,��z�2';
J�j��a���q�6J�S��]���g&a�氳R2
�qp/��${�1a�����ļ�]l\�̹&ӏ�(�H��\M��(����������?�7}�
 endstream
 endobj
-729 0 obj
+777 0 obj
 <<
 /Filter /FlateDecode
 /Length 89
@@ -4252,7 +4324,7 @@ stream
 x�=���0C{�`c~�>�T��ml�='a����~�־�#)��G��.2Ey�(��uT�$\�����p������q���[��Ӊ�
 endstream
 endobj
-730 0 obj
+778 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -4262,7 +4334,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-731 0 obj
+779 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -4271,7 +4343,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-732 0 obj
+780 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -4280,7 +4352,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-733 0 obj
+781 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -4290,7 +4362,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-734 0 obj
+782 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -4300,7 +4372,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-735 0 obj
+783 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -4309,7 +4381,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-736 0 obj
+784 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -4318,7 +4390,7 @@ stream
 x�ERKr�0��\ 3�g��NW����p:�<�	2=eH��6�d���Wd�Ր�F�D��)���򹼖�\�n�J�?��72ͮЪ�G�6�F5+#� C�zV���Q�d��v!�:S�p,�C��u�)�mA��#�o<���r��Ln���[��:[�m@	�s�`���	������)(U��I­�\';P�Ъt�7�9`Ò��ho��>��F����, ���f��1�H�'�N=q:őpI8�@�������/����	u:eM�ž���B��Rq�"n]E�lO�	�?*�3b���	�Ԓ����������枾�?�9������
 endstream
 endobj
-737 0 obj
+785 0 obj
 <<
 /Filter /FlateDecode
 /Length 163
@@ -4327,7 +4399,7 @@ stream
 x�E��u1CsU�x�:�?G���i��@�x�x�=	�r]�
?޶�4��2܍�e����@N�"W�I��3T���b���\/:"̒�@#|:��C[ۙ~:��!��**�na.��@�R�ԏ�Qꚡ�*+kjڿ�"��}\Ne��{��g+W�}��:�
 endstream
 endobj
-738 0 obj
+786 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -4338,7 +4410,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-739 0 obj
+787 0 obj
 <<
 /Filter /FlateDecode
 /Length 81
@@ -4347,7 +4419,7 @@ stream
 x�=̻�0�>S�B|�����[�D�|�!�
n���Kw�}�z���Ȁ�Sj\N��i}�}j��KՉ?�����k
 endstream
 endobj
-740 0 obj
+788 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -4359,7 +4431,7 @@ x
 "���}�
 endstream
 endobj
-741 0 obj
+789 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -4368,7 +4440,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-742 0 obj
+790 0 obj
 <<
 /Filter /FlateDecode
 /Length 320
@@ -4379,7 +4451,7 @@ x
 �R�ӿ����ccz�
 endstream
 endobj
-743 0 obj
+791 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -4390,7 +4462,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-744 0 obj
+792 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -4399,7 +4471,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-745 0 obj
+793 0 obj
 <<
 /Filter /FlateDecode
 /Length 236
@@ -4410,7 +4482,7 @@ x
 ���y+�����ՠ��������0��u�J�����*�}�$�]S
 endstream
 endobj
-746 0 obj
+794 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -4419,7 +4491,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-747 0 obj
+795 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -4429,7 +4501,7 @@ x
 ���f�W����7y
 endstream
 endobj
-748 0 obj
+796 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -4440,7 +4512,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-749 0 obj
+797 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -4451,7 +4523,7 @@ x
 )�\@>������,́,#��.Cc0mbl�`fbdY 1 ���r��
 endstream
 endobj
-750 0 obj
+798 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -4462,7 +4534,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-751 0 obj
+799 0 obj
 <<
 /Filter /FlateDecode
 /Length 17
@@ -4471,7 +4543,7 @@ stream
 x�36�P0��C.���
 endstream
 endobj
-752 0 obj
+800 0 obj
 <<
 /Filter /FlateDecode
 /Length 131
@@ -4480,7 +4552,7 @@ stream
 x�E��
!C�T��>��՞����0�AB�A";�0���6���Ѣ�7�6իc�,�zRV鐇��Pi0QąYLCaΘ�Ȗ2��M��l�T��v<��e�~�ma�,��U^��
?�K�w�U�BS0�
 endstream
 endobj
-753 0 obj
+801 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -4490,7 +4562,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-754 0 obj
+802 0 obj
 <<
 /Filter /FlateDecode
 /Length 88
@@ -4499,7 +4571,7 @@ stream
 x�5���0C{O����ɥJ�o��Ѐ�w���:A�)�.n�Wz���&���LC��`EՋZ-_nc�b*�?�$ �u�^8����{
 endstream
 endobj
-755 0 obj
+803 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -4509,36 +4581,36 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-715 0 obj
+763 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-713 0 obj
+761 0 obj
 <<
-/D [711 0 R /XYZ 55.693 823.059 null]
+/D [759 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-714 0 obj
+762 0 obj
 <<
-/D [711 0 R /XYZ 56.693 789.929 null]
+/D [759 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
 170 0 obj
 <<
-/D [711 0 R /XYZ 56.693 356.688 null]
+/D [759 0 R /XYZ 56.693 356.688 null]
 >>
 endobj
-710 0 obj
+758 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R /F17 349 0 R /F20 350 0 R >>
-/XObject << /Im6 703 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R /F17 397 0 R /F20 398 0 R >>
+/XObject << /Im6 751 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-759 0 obj
+807 0 obj
 <<
 /Length 669       
 /Filter /FlateDecode
@@ -4548,34 +4620,34 @@ x
 �E��2A�~��u9uQ�30>@oWMV!h{�`��;JNꜞ�B������?}������ڱ)+l?ṫ��;Q�h6%��N��Or�{!�}�4����k��ڭ�d�.�t����������q�z���r����MQ��ɔ�#�s�W<R��½���
��޿�"c�TG��۵}U!iW�c5x:�A.?\��*�;V�ØU�3ނ(IY"ޛgkq�)e�_���="w���u��_����ڼ*�O���	�L�
 endstream
 endobj
-758 0 obj
+806 0 obj
 <<
 /Type /Page
-/Contents 759 0 R
-/Resources 757 0 R
+/Contents 807 0 R
+/Resources 805 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 677 0 R
-/Group 377 0 R
+/Parent 725 0 R
+/Group 425 0 R
 >>
 endobj
-760 0 obj
+808 0 obj
 <<
-/D [758 0 R /XYZ 55.693 823.059 null]
+/D [806 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-761 0 obj
+809 0 obj
 <<
-/D [758 0 R /XYZ 56.693 789.929 null]
+/D [806 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-757 0 obj
+805 0 obj
 <<
-/Font << /F15 347 0 R /F20 350 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-764 0 obj
+812 0 obj
 <<
 /Length 367       
 /Filter /FlateDecode
@@ -4584,26 +4656,26 @@ stream
 x�uR�n�0��+�h���`�-m�&Q����4� ��@��kc��T=����{��Bf��G�)���?���g�� ��ۆ�9~-站aږ�g���I�C<2���_OV���d��7�wK�d�{o��A�j�1�M|�����C����B$c���\���9p�דn/h�h7Lo{B�G�1�"�r�#�*�6�������܁q)��͎ܼb���Y�*D-s�&�U��m�Ľar[�w*h��-5����MY|��Y��.8�\_\�C�;������wPD�i��K{a���^=Ȫ8���2�@Q��ʵpۉ����d�p.����Ht�%mN����(j|{�[+?�%@��
 endstream
 endobj
-763 0 obj
+811 0 obj
 <<
 /Type /Page
-/Contents 764 0 R
-/Resources 762 0 R
+/Contents 812 0 R
+/Resources 810 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 767 0 R
+/Parent 816 0 R
+/Group 815 0 R
 >>
 endobj
-756 0 obj
+804 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/splitscale.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 769 0 R
+/PTEX.InfoDict 817 0 R
 /BBox [0 0 432 648]
-/Group 767 0 R
+/Group 815 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -4641,13 +4713,13 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 770 0 R>>
+>>/Font << /F1 818 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/M0 771 0 R
-/M1 772 0 R
+/M0 819 0 R
+/M1 820 0 R
 >>>>
 /Length 2923
 /Filter /FlateDecode
@@ -4667,33 +4739,33 @@ x
 P�j{�{�b����~����/��`n���X�i��;�w��´��\��.��e�a��nk�g��G~p_w{�n�P���ί���/Y�=���ë��ן������W��������?T����vt[|�����/��/���^�?���w���7Z�x�:X�����c�#���h_�d�n����I�:t�a��o�Ҏe��^�Q������j��x������qJ���V����k�F�,��L����T��:�t��ŭ��d�]���q�������͛���n�{��w�ƭ<�}�}������l�<���ڰU
 endstream
 endobj
-769 0 obj
+817 0 obj
 <<
 /CreationDate (D:20200423113536+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-770 0 obj
+818 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 773 0 R
+/CharProcs 821 0 R
 /Encoding <<
 /Differences [ 32/space 46/period 48/zero/one/two 52/four/five/six/seven/eight/nine 65/A 67/C/D 71/G 78/N 81/Q 83/S 87/W 97/a 99/c/d/e 103/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u 119/w 122/z]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 774 0 R
+/FontDescriptor 822 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 775 0 R
+/Widths 823 0 R
 >>
 endobj
-771 0 obj
+819 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -4705,7 +4777,7 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-772 0 obj
+820 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -4717,49 +4789,49 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-773 0 obj
+821 0 obj
 <<
-/A 776 0 R
-/C 777 0 R
-/D 778 0 R
-/G 779 0 R
-/N 780 0 R
-/Q 781 0 R
-/S 782 0 R
-/W 783 0 R
-/a 784 0 R
-/c 785 0 R
-/d 786 0 R
-/e 787 0 R
-/eight 788 0 R
-/five 789 0 R
-/four 790 0 R
-/g 791 0 R
-/h 792 0 R
-/i 793 0 R
-/k 794 0 R
-/l 795 0 R
-/m 796 0 R
-/n 797 0 R
-/nine 798 0 R
-/o 799 0 R
-/one 800 0 R
-/p 801 0 R
-/period 802 0 R
-/r 803 0 R
-/s 804 0 R
-/seven 805 0 R
-/six 806 0 R
-/space 807 0 R
-/t 808 0 R
-/two 809 0 R
-/u 810 0 R
-/w 811 0 R
-/z 812 0 R
-/zero 813 0 R
+/A 824 0 R
+/C 825 0 R
+/D 826 0 R
+/G 827 0 R
+/N 828 0 R
+/Q 829 0 R
+/S 830 0 R
+/W 831 0 R
+/a 832 0 R
+/c 833 0 R
+/d 834 0 R
+/e 835 0 R
+/eight 836 0 R
+/five 837 0 R
+/four 838 0 R
+/g 839 0 R
+/h 840 0 R
+/i 841 0 R
+/k 842 0 R
+/l 843 0 R
+/m 844 0 R
+/n 845 0 R
+/nine 846 0 R
+/o 847 0 R
+/one 848 0 R
+/p 849 0 R
+/period 850 0 R
+/r 851 0 R
+/s 852 0 R
+/seven 853 0 R
+/six 854 0 R
+/space 855 0 R
+/t 856 0 R
+/two 857 0 R
+/u 858 0 R
+/w 859 0 R
+/z 860 0 R
+/zero 861 0 R
 >>
 endobj
-774 0 obj
+822 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -4774,10 +4846,10 @@ endobj
 /XHeight 0
 >>
 endobj
-775 0 obj
+823 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-776 0 obj
+824 0 obj
 <<
 /Filter /FlateDecode
 /Length 88
@@ -4786,7 +4858,7 @@ stream
 x�5��
�0D{���8���R���[.�{��9��>G��-dC�xI9�>Q4Zo:�Hs��d3�3�}���d4I�!��r�Y)z>��~
 endstream
 endobj
-777 0 obj
+825 0 obj
 <<
 /Filter /FlateDecode
 /Length 232
@@ -4796,7 +4868,7 @@ x
 ] 3�o�g3�J��F��fa		�=؈ė��oY�f~'���Y)��Q�TEX!��Y�j��s#S�r&>��'�b���8Ύ�f01��h9f�=!�#n�4�Ui�[���Z�SE�Ⱥ���)�Z�[�=����-���� ��c�� _Ĝ�E'��~3尒4��#1����5��όO���}���>h��w/��̈́L��Hœ�Ƙ1T��$��?г>�0TG
 endstream
 endobj
-778 0 obj
+826 0 obj
 <<
 /Filter /FlateDecode
 /Length 160
@@ -4805,7 +4877,7 @@ stream
 x�=�K� C��BG���t�J
�l����}b"�'���$�l�{0�r��M���$q

�¦c��ɦu�J���~�w4f�t�-E�v!���"ܣ��<`1��J��0Ze������=D�������G7�(*K��Dw4�������e8$
 endstream
 endobj
-779 0 obj
+827 0 obj
 <<
 /Filter /FlateDecode
 /Length 244
@@ -4816,7 +4888,7 @@ x
 �csd#i]E���z�
�)��܄�9z���׵����̞���'�jhN��!����X�(ܨ2*�Si=��8��N��h=ٱ���S�\B^L�	���X�M,l�~T����7�o���B������x��?�X[�
 endstream
 endobj
-780 0 obj
+828 0 obj
 <<
 /Filter /FlateDecode
 /Length 75
@@ -4825,7 +4897,7 @@ stream
 x�5���0{�`��ɥ���	�h�������t�M���M�BQ��0�tf}qh�V^hJ����A����
 endstream
 endobj
-781 0 obj
+829 0 obj
 <<
 /Filter /FlateDecode
 /Length 251
@@ -4836,7 +4908,7 @@ x
 ".eEp�e��B��䵂ʂ�O�-�?c�z�c�Q%2/�Z�A�!tz�Q�H�gWل_��#�"�`'olN���<�����c���9���[p#V�(�3���=�sߏ����ȘQ�0\�����r9H�ؗ���?k�b�
 endstream
 endobj
-782 0 obj
+830 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -4845,7 +4917,7 @@ stream
 x�5RK�[AۿS��j��y������쬠��8��KQ�r�y��:����i�>ޅԂ�"���i�ǚ5Q�4b)�>��(!�S���Hfd2r ���>֛L9��is�(Iz-��v|Y�Aғ���u-��M�k"9�25�Ǟ�2�#A�, I��O�H3;g-y��x�/~���2���U2�	�`;�	�("��$���h�(�fƚۅ��"��=������D^	�,��z�2';
J�j��a���q�6J�S��]���g&a�氳R2
�qp/��${�1a�����ļ�]l\�̹&ӏ�(�H��\M��(����������?�7}�
 endstream
 endobj
-783 0 obj
+831 0 obj
 <<
 /Filter /FlateDecode
 /Length 89
@@ -4854,7 +4926,7 @@ stream
 x�=���0C{�`c~�>�T��ml�='a����~�־�#)��G��.2Ey�(��uT�$\�����p������q���[��Ӊ�
 endstream
 endobj
-784 0 obj
+832 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -4864,7 +4936,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-785 0 obj
+833 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -4873,7 +4945,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-786 0 obj
+834 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -4884,7 +4956,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-787 0 obj
+835 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -4893,7 +4965,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-788 0 obj
+836 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -4903,7 +4975,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-789 0 obj
+837 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -4913,7 +4985,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-790 0 obj
+838 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -4922,7 +4994,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-791 0 obj
+839 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -4931,7 +5003,7 @@ stream
 x�ERKr�0��\ 3�g��NW����p:�<�	2=eH��6�d���Wd�Ր�F�D��)���򹼖�\�n�J�?��72ͮЪ�G�6�F5+#� C�zV���Q�d��v!�:S�p,�C��u�)�mA��#�o<���r��Ln���[��:[�m@	�s�`���	������)(U��I­�\';P�Ъt�7�9`Ò��ho��>��F����, ���f��1�H�'�N=q:őpI8�@�������/����	u:eM�ž���B��Rq�"n]E�lO�	�?*�3b���	�Ԓ����������枾�?�9������
 endstream
 endobj
-792 0 obj
+840 0 obj
 <<
 /Filter /FlateDecode
 /Length 163
@@ -4940,7 +5012,7 @@ stream
 x�E��u1CsU�x�:�?G���i��@�x�x�=	�r]�
?޶�4��2܍�e����@N�"W�I��3T���b���\/:"̒�@#|:��C[ۙ~:��!��**�na.��@�R�ԏ�Qꚡ�*+kjڿ�"��}\Ne��{��g+W�}��:�
 endstream
 endobj
-793 0 obj
+841 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -4951,7 +5023,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-794 0 obj
+842 0 obj
 <<
 /Filter /FlateDecode
 /Length 81
@@ -4960,7 +5032,7 @@ stream
 x�=̻�0�>S�B|�����[�D�|�!�
n���Kw�}�z���Ȁ�Sj\N��i}�}j��KՉ?�����k
 endstream
 endobj
-795 0 obj
+843 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -4972,7 +5044,7 @@ x
 "���}�
 endstream
 endobj
-796 0 obj
+844 0 obj
 <<
 /Filter /FlateDecode
 /Length 255
@@ -4981,7 +5053,7 @@ stream
 x�E�K� D���#���<��Ur��4�L6v����J#�,�y0����d������"��*�X�՝)�̵D���2r����
箜T��Q�:�:8��������,ʾ#�2l�96p�a���Vw��D������v�l���ƾ���N6��%�~�	L�M�u�@��)zr	��q��@���	�l���A�N�q����:Ý��W�w�;Lk��/1Ɋ��E���=���əcr�}C�\���A�����P�f�
 endstream
 endobj
-797 0 obj
+845 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -4990,7 +5062,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-798 0 obj
+846 0 obj
 <<
 /Filter /FlateDecode
 /Length 320
@@ -5001,7 +5073,7 @@ x
 �R�ӿ����ccz�
 endstream
 endobj
-799 0 obj
+847 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -5012,7 +5084,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-800 0 obj
+848 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -5021,7 +5093,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-801 0 obj
+849 0 obj
 <<
 /Filter /FlateDecode
 /Length 236
@@ -5032,7 +5104,7 @@ x
 ���y+�����ՠ��������0��u�J�����*�}�$�]S
 endstream
 endobj
-802 0 obj
+850 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -5041,7 +5113,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-803 0 obj
+851 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -5051,7 +5123,7 @@ x
 ���f�W����7y
 endstream
 endobj
-804 0 obj
+852 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -5062,7 +5134,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-805 0 obj
+853 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -5073,7 +5145,7 @@ x
 )�\@>������,́,#��.Cc0mbl�`fbdY 1 ���r��
 endstream
 endobj
-806 0 obj
+854 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -5084,7 +5156,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-807 0 obj
+855 0 obj
 <<
 /Filter /FlateDecode
 /Length 17
@@ -5093,7 +5165,7 @@ stream
 x�36�P0��C.���
 endstream
 endobj
-808 0 obj
+856 0 obj
 <<
 /Filter /FlateDecode
 /Length 131
@@ -5102,7 +5174,7 @@ stream
 x�E��
!C�T��>��՞����0�AB�A";�0���6���Ѣ�7�6իc�,�zRV鐇��Pi0QąYLCaΘ�Ȗ2��M��l�T��v<��e�~�ma�,��U^��
?�K�w�U�BS0�
 endstream
 endobj
-809 0 obj
+857 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -5113,7 +5185,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-810 0 obj
+858 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -5123,7 +5195,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-811 0 obj
+859 0 obj
 <<
 /Filter /FlateDecode
 /Length 88
@@ -5132,7 +5204,7 @@ stream
 x�5���0C{O����ɥJ�o��Ѐ�w���:A�)�.n�Wz���&���LC��`EՋZ-_nc�b*�?�$ �u�^8����{
 endstream
 endobj
-812 0 obj
+860 0 obj
 <<
 /Filter /FlateDecode
 /Length 74
@@ -5142,7 +5214,7 @@ x
 ��>�d�(]�iB����IO[����_m�վ*K{� j2�6|w�wN
 endstream
 endobj
-813 0 obj
+861 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -5152,31 +5224,31 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-767 0 obj
+815 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-765 0 obj
+813 0 obj
 <<
-/D [763 0 R /XYZ 55.693 823.059 null]
+/D [811 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-766 0 obj
+814 0 obj
 <<
-/D [763 0 R /XYZ 56.693 789.929 null]
+/D [811 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-762 0 obj
+810 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im7 756 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im7 804 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-817 0 obj
+865 0 obj
 <<
 /Length 1942      
 /Filter /FlateDecode
@@ -5191,39 +5263,39 @@ xڅ
 �i��o)9IC%#�)�ݣ���K�+����i�x
 endstream
 endobj
-816 0 obj
+864 0 obj
 <<
 /Type /Page
-/Contents 817 0 R
-/Resources 815 0 R
+/Contents 865 0 R
+/Resources 863 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 377 0 R
+/Parent 816 0 R
+/Group 425 0 R
 >>
 endobj
-818 0 obj
+866 0 obj
 <<
-/D [816 0 R /XYZ 55.693 823.059 null]
+/D [864 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 174 0 obj
 <<
-/D [816 0 R /XYZ 56.693 782.706 null]
+/D [864 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-819 0 obj
+867 0 obj
 <<
-/D [816 0 R /XYZ 56.693 492.959 null]
+/D [864 0 R /XYZ 56.693 492.959 null]
 >>
 endobj
-815 0 obj
+863 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-824 0 obj
+872 0 obj
 <<
 /Length 2296      
 /Filter /FlateDecode
@@ -5241,27 +5313,27 @@ W
 ����&�B�^�����[���]��݋K��a��v����m�����+���M�Rʺ�ݶapM���i�ݎ8�z���臑�i��o����({���<��O��N��9g�*>x�#r�D	6}�j�z�gYd��/�S�r���D����'�G`������Rih�ơ�nl��(0�{d.�sdD�Xy�rM�O"�ԧ
��?$g<-��dE�J��u�/�߅\[�\s'@�1�Q�wBLgO1�1�=ӓ��;�Sva��t=�la��3�4+�pv2Oɤ�����;�]�j��a=��H���N�FZΌ��EJ������1���Y:������ɔ�ܗNrj�U�P�P�+Jh[?����Hȯ�c�}Q�_~�X�ý地���_�3d@��q=�f�})�c��c�l,�����
3�
 endstream
 endobj
-823 0 obj
+871 0 obj
 <<
 /Type /Page
-/Contents 824 0 R
-/Resources 822 0 R
+/Contents 872 0 R
+/Resources 870 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 828 0 R
-/Annots [ 814 0 R 820 0 R ]
+/Parent 816 0 R
+/Group 876 0 R
+/Annots [ 862 0 R 868 0 R ]
 >>
 endobj
-821 0 obj
+869 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/410simpledraw16.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 831 0 R
+/PTEX.InfoDict 879 0 R
 /BBox [0 0 460.8 345.6]
-/Group 828 0 R
+/Group 876 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -5289,12 +5361,12 @@ endobj
 /Type /ExtGState
 /ca 1
 >>
->>/Font << /F1 832 0 R>>
+>>/Font << /F1 880 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/DejaVuSans-minus 833 0 R
+/DejaVuSans-minus 881 0 R
 >>>>
 /Length 2448
 /Filter /FlateDecode
@@ -5311,33 +5383,33 @@ x
 �����~u9�fW�
6�3$C�ͭ�
�� ����co�xJ������˫��\^�>�.���}�\~:�&z��o�X��W�}���i�s]������~��>R��S�ӡ����������Q~�[��-n"Ϟ�z`�oǻTXd�r��5�zc�v����s�hEah\��#\{XZ<�^qM`��
��Mm����)��l�7*Xim��F{�y� u�V����%V�����?w��`W�H��=��jg�Ym��ֽ�y��6]�a��ʐW���1�Z?�Ɨ���tE�:��v���/����\~���aD�`���3-l����@m �[����
����O��^-�ƥ5
 endstream
 endobj
-831 0 obj
+879 0 obj
 <<
 /CreationDate (D:20200823110917+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-832 0 obj
+880 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 834 0 R
+/CharProcs 882 0 R
 /Encoding <<
 /Differences [ 46/period 48/zero/one/two 52/four/five/six 56/eight 61/equal 91/bracketleft 93/bracketright 97/a 99/c/d/e 104/h/i 108/l 110/n/o/p 114/r/s/t/u]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 835 0 R
+/FontDescriptor 883 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 836 0 R
+/Widths 884 0 R
 >>
 endobj
-833 0 obj
+881 0 obj
 <<
 /BBox [ -1021 -463 1794 1233]
 /Filter /FlateDecode
@@ -5351,36 +5423,36 @@ x
 
 endstream
 endobj
-834 0 obj
+882 0 obj
 <<
-/a 837 0 R
-/bracketleft 838 0 R
-/bracketright 839 0 R
-/c 840 0 R
-/d 841 0 R
-/e 842 0 R
-/eight 843 0 R
-/equal 844 0 R
-/five 845 0 R
-/four 846 0 R
-/h 847 0 R
-/i 848 0 R
-/l 849 0 R
-/n 850 0 R
-/o 851 0 R
-/one 852 0 R
-/p 853 0 R
-/period 854 0 R
-/r 855 0 R
-/s 856 0 R
-/six 857 0 R
-/t 858 0 R
-/two 859 0 R
-/u 860 0 R
-/zero 861 0 R
+/a 885 0 R
+/bracketleft 886 0 R
+/bracketright 887 0 R
+/c 888 0 R
+/d 889 0 R
+/e 890 0 R
+/eight 891 0 R
+/equal 892 0 R
+/five 893 0 R
+/four 894 0 R
+/h 895 0 R
+/i 896 0 R
+/l 897 0 R
+/n 898 0 R
+/o 899 0 R
+/one 900 0 R
+/p 901 0 R
+/period 902 0 R
+/r 903 0 R
+/s 904 0 R
+/six 905 0 R
+/t 906 0 R
+/two 907 0 R
+/u 908 0 R
+/zero 909 0 R
 >>
 endobj
-835 0 obj
+883 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -5395,10 +5467,10 @@ endobj
 /XHeight 0
 >>
 endobj
-836 0 obj
+884 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-837 0 obj
+885 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -5408,7 +5480,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-838 0 obj
+886 0 obj
 <<
 /Filter /FlateDecode
 /Length 71
@@ -5418,7 +5490,7 @@ x
 �X�\0�0���247Cb�Be�X �r�`�����J��#
 endstream
 endobj
-839 0 obj
+887 0 obj
 <<
 /Filter /FlateDecode
 /Length 67
@@ -5427,7 +5499,7 @@ stream
 x�3�4P0P�4W�546T060Q073PH1�1s�,�lL�eb� �̀Ɓ%��9p�r���΃�
 endstream
 endobj
-840 0 obj
+888 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -5436,7 +5508,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-841 0 obj
+889 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -5447,7 +5519,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-842 0 obj
+890 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -5456,7 +5528,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-843 0 obj
+891 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -5466,7 +5538,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-844 0 obj
+892 0 obj
 <<
 /Filter /FlateDecode
 /Length 71
@@ -5475,7 +5547,7 @@ stream
 x��0�P0P040S047R076R015QH1�	���\0�0��,,�`AdA,#SS������Ȧ���2
 endstream
 endobj
-845 0 obj
+893 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -5485,7 +5557,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-846 0 obj
+894 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -5494,7 +5566,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-847 0 obj
+895 0 obj
 <<
 /Filter /FlateDecode
 /Length 163
@@ -5503,7 +5575,7 @@ stream
 x�E��u1CsU�x�:�?G���i��@�x�x�=	�r]�
?޶�4��2܍�e����@N�"W�I��3T���b���\/:"̒�@#|:��C[ۙ~:��!��**�na.��@�R�ԏ�Qꚡ�*+kjڿ�"��}\Ne��{��g+W�}��:�
 endstream
 endobj
-848 0 obj
+896 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -5514,7 +5586,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-849 0 obj
+897 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -5526,7 +5598,7 @@ x
 "���}�
 endstream
 endobj
-850 0 obj
+898 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -5535,7 +5607,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-851 0 obj
+899 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -5546,7 +5618,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-852 0 obj
+900 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -5555,7 +5627,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-853 0 obj
+901 0 obj
 <<
 /Filter /FlateDecode
 /Length 236
@@ -5566,7 +5638,7 @@ x
 ���y+�����ՠ��������0��u�J�����*�}�$�]S
 endstream
 endobj
-854 0 obj
+902 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -5575,7 +5647,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-855 0 obj
+903 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -5585,7 +5657,7 @@ x
 ���f�W����7y
 endstream
 endobj
-856 0 obj
+904 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -5596,7 +5668,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-857 0 obj
+905 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -5607,7 +5679,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-858 0 obj
+906 0 obj
 <<
 /Filter /FlateDecode
 /Length 131
@@ -5616,7 +5688,7 @@ stream
 x�E��
!C�T��>��՞����0�AB�A";�0���6���Ѣ�7�6իc�,�zRV鐇��Pi0QąYLCaΘ�Ȗ2��M��l�T��v<��e�~�ma�,��U^��
?�K�w�U�BS0�
 endstream
 endobj
-859 0 obj
+907 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -5627,7 +5699,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-860 0 obj
+908 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -5637,7 +5709,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-861 0 obj
+909 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -5647,14 +5719,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-828 0 obj
+876 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-814 0 obj
+862 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5663,7 +5735,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.58) >>
 >>
 endobj
-820 0 obj
+868 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5672,49 +5744,49 @@ endobj
 /A << /S /GoTo /D (Hfootnote.59) >>
 >>
 endobj
-825 0 obj
+873 0 obj
 <<
-/D [823 0 R /XYZ 55.693 823.059 null]
+/D [871 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 178 0 obj
 <<
-/D [823 0 R /XYZ 56.693 782.706 null]
+/D [871 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 182 0 obj
 <<
-/D [823 0 R /XYZ 56.693 688.743 null]
+/D [871 0 R /XYZ 56.693 688.743 null]
 >>
 endobj
-826 0 obj
+874 0 obj
 <<
-/D [823 0 R /XYZ 248.095 627.254 null]
+/D [871 0 R /XYZ 248.095 627.254 null]
 >>
 endobj
-827 0 obj
+875 0 obj
 <<
-/D [823 0 R /XYZ 56.693 477.638 null]
+/D [871 0 R /XYZ 56.693 477.638 null]
 >>
 endobj
-829 0 obj
+877 0 obj
 <<
-/D [823 0 R /XYZ 74.626 113.978 null]
+/D [871 0 R /XYZ 74.626 113.978 null]
 >>
 endobj
-830 0 obj
+878 0 obj
 <<
-/D [823 0 R /XYZ 74.626 102.023 null]
+/D [871 0 R /XYZ 74.626 102.023 null]
 >>
 endobj
-822 0 obj
+870 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F23 398 0 R /F20 350 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
-/XObject << /Im8 821 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F20 398 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
+/XObject << /Im8 869 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-868 0 obj
+916 0 obj
 <<
 /Length 2929      
 /Filter /FlateDecode
@@ -5737,18 +5809,18 @@ z@
 uW]p��=����L��֝�G��P>����V,�w���4�%�I��b��t��§��C��,�>�����
S����������;���i��=g�>$����L"%�u�W���j�$��|���a��c�H7�Y@�GZ��r��
	�Ǜ�ˋ7�9[X�Io/�}x�N�O�Q��
 endstream
 endobj
-867 0 obj
+915 0 obj
 <<
 /Type /Page
-/Contents 868 0 R
-/Resources 866 0 R
+/Contents 916 0 R
+/Resources 914 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 377 0 R
-/Annots [ 862 0 R 863 0 R 864 0 R ]
+/Parent 816 0 R
+/Group 425 0 R
+/Annots [ 910 0 R 911 0 R 912 0 R ]
 >>
 endobj
-862 0 obj
+910 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5757,7 +5829,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.60) >>
 >>
 endobj
-863 0 obj
+911 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5766,7 +5838,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.61) >>
 >>
 endobj
-864 0 obj
+912 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5775,54 +5847,54 @@ endobj
 /A << /S /GoTo /D (Hfootnote.62) >>
 >>
 endobj
-869 0 obj
+917 0 obj
 <<
-/D [867 0 R /XYZ 55.693 823.059 null]
+/D [915 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 186 0 obj
 <<
-/D [867 0 R /XYZ 56.693 782.706 null]
+/D [915 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-870 0 obj
+918 0 obj
 <<
-/D [867 0 R /XYZ 220.844 729.893 null]
+/D [915 0 R /XYZ 220.844 729.893 null]
 >>
 endobj
 190 0 obj
 <<
-/D [867 0 R /XYZ 56.693 598.052 null]
+/D [915 0 R /XYZ 56.693 598.052 null]
 >>
 endobj
-871 0 obj
+919 0 obj
 <<
-/D [867 0 R /XYZ 56.693 479.164 null]
+/D [915 0 R /XYZ 56.693 479.164 null]
 >>
 endobj
-872 0 obj
+920 0 obj
 <<
-/D [867 0 R /XYZ 74.626 148.747 null]
+/D [915 0 R /XYZ 74.626 148.747 null]
 >>
 endobj
-873 0 obj
+921 0 obj
 <<
-/D [867 0 R /XYZ 74.626 136.792 null]
+/D [915 0 R /XYZ 74.626 136.792 null]
 >>
 endobj
-874 0 obj
+922 0 obj
 <<
-/D [867 0 R /XYZ 74.626 99.98 null]
+/D [915 0 R /XYZ 74.626 99.98 null]
 >>
 endobj
-866 0 obj
+914 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F28 509 0 R /F24 410 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F20 350 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F28 557 0 R /F24 458 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F20 398 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-878 0 obj
+926 0 obj
 <<
 /Length 2598      
 /Filter /FlateDecode
@@ -5842,18 +5914,18 @@ W
 ���A>(�"2xY��GT�$��D��e���	"�hbn"�2=B�����<�Md�}���>�a�]�$���|�`+����P�IlZZ��/�;���5��ͨΎ�{�ϫ"LOèz|�4�����m��o�/�Ƈ�����LqYu's��1:��q��/g�EK&�v�L�1[�/x�p�qN�W��m�"o�XVb�������pP�Et�����<��sI�s�Pu/S�у��Ĕ��D��ܜ�#����s&�-W?D�f7�����b"�|X>�9c{��{l������s,1��?R��Y���u,��Mk�g�}/�7����N��p'ɣ;y��dR�����
 endstream
 endobj
-877 0 obj
+925 0 obj
 <<
 /Type /Page
-/Contents 878 0 R
-/Resources 876 0 R
+/Contents 926 0 R
+/Resources 924 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 377 0 R
-/Annots [ 865 0 R 875 0 R ]
+/Parent 816 0 R
+/Group 425 0 R
+/Annots [ 913 0 R 923 0 R ]
 >>
 endobj
-865 0 obj
+913 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5862,7 +5934,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.63) >>
 >>
 endobj
-875 0 obj
+923 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5871,39 +5943,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.64) >>
 >>
 endobj
-879 0 obj
+927 0 obj
 <<
-/D [877 0 R /XYZ 55.693 823.059 null]
+/D [925 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-880 0 obj
+928 0 obj
 <<
-/D [877 0 R /XYZ 56.693 630.693 null]
+/D [925 0 R /XYZ 56.693 630.693 null]
 >>
 endobj
 194 0 obj
 <<
-/D [877 0 R /XYZ 56.693 290.72 null]
+/D [925 0 R /XYZ 56.693 290.72 null]
 >>
 endobj
-881 0 obj
+929 0 obj
 <<
-/D [877 0 R /XYZ 74.626 114.597 null]
+/D [925 0 R /XYZ 74.626 114.597 null]
 >>
 endobj
-882 0 obj
+930 0 obj
 <<
-/D [877 0 R /XYZ 74.626 90.687 null]
+/D [925 0 R /XYZ 74.626 90.687 null]
 >>
 endobj
-876 0 obj
+924 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R /F20 350 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R /F20 398 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-887 0 obj
+935 0 obj
 <<
 /Length 3194      
 /Filter /FlateDecode
@@ -5927,18 +5999,18 @@ bB(
 ����5A)�M�ξ�^���G�xC��B�	���<� �L��Ў�ݿ"aOpC|�%[���{��N��2���H���%� (���!X�ې2p
/�,��T�V�&��Z6�j2ܫLzrw���j|��ԣO�r���^��b-���N�o� On�dS���
�v��>3��P@�?u}�c�ۑ6F^C�w:=�D���NJ�H�a5�H�٧X(��D���,rXf~�}�T���[4�ǃ�C����D��.k�	u�S���Hm��_�?z�P,V������C�����v��by=�;�&���8�a�FK�]�szhn�	��õ'��^������j�'ʤj:�#��/�6�
 endstream
 endobj
-886 0 obj
+934 0 obj
 <<
 /Type /Page
-/Contents 887 0 R
-/Resources 885 0 R
+/Contents 935 0 R
+/Resources 933 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 768 0 R
-/Group 377 0 R
-/Annots [ 883 0 R 884 0 R ]
+/Parent 816 0 R
+/Group 425 0 R
+/Annots [ 931 0 R 932 0 R ]
 >>
 endobj
-883 0 obj
+931 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5947,7 +6019,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.65) >>
 >>
 endobj
-884 0 obj
+932 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -5956,39 +6028,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.66) >>
 >>
 endobj
-888 0 obj
+936 0 obj
 <<
-/D [886 0 R /XYZ 55.693 823.059 null]
+/D [934 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-889 0 obj
+937 0 obj
 <<
-/D [886 0 R /XYZ 208.117 756.305 null]
+/D [934 0 R /XYZ 208.117 756.305 null]
 >>
 endobj
-891 0 obj
+939 0 obj
 <<
-/D [886 0 R /XYZ 56.693 479.759 null]
+/D [934 0 R /XYZ 56.693 479.759 null]
 >>
 endobj
-892 0 obj
+940 0 obj
 <<
-/D [886 0 R /XYZ 74.626 117.96 null]
+/D [934 0 R /XYZ 74.626 117.96 null]
 >>
 endobj
-893 0 obj
+941 0 obj
 <<
-/D [886 0 R /XYZ 74.626 94.049 null]
+/D [934 0 R /XYZ 74.626 94.049 null]
 >>
 endobj
-885 0 obj
+933 0 obj
 <<
-/Font << /F15 347 0 R /F20 350 0 R /F23 398 0 R /F28 509 0 R /F24 410 0 R /F21 383 0 R /F26 511 0 R /F27 890 0 R /F25 512 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R /F23 446 0 R /F28 557 0 R /F24 458 0 R /F21 431 0 R /F26 559 0 R /F27 938 0 R /F25 560 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-901 0 obj
+949 0 obj
 <<
 /Length 2329      
 /Filter /FlateDecode
@@ -6008,27 +6080,27 @@ w?{
 o�
 endstream
 endobj
-900 0 obj
+948 0 obj
 <<
 /Type /Page
-/Contents 901 0 R
-/Resources 899 0 R
+/Contents 949 0 R
+/Resources 947 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Group 904 0 R
-/Annots [ 894 0 R 896 0 R 897 0 R ]
+/Parent 956 0 R
+/Group 952 0 R
+/Annots [ 942 0 R 944 0 R 945 0 R ]
 >>
 endobj
-895 0 obj
+943 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/dist1.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 909 0 R
+/PTEX.InfoDict 957 0 R
 /BBox [0 0 432 288]
-/Group 904 0 R
+/Group 952 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -6046,12 +6118,12 @@ endobj
 /Type /ExtGState
 /ca 1
 >>
->>/Font << /F1 910 0 R>>
+>>/Font << /F1 958 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/DejaVuSans-minus 911 0 R
+/DejaVuSans-minus 959 0 R
 >>>>
 /Length 2840
 /Filter /FlateDecode
@@ -6065,33 +6137,33 @@ x
 �d�
 endstream
 endobj
-909 0 obj
+957 0 obj
 <<
 /CreationDate (D:20200421164659+02'00')
 /Creator (matplotlib 3.1.2, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.2)
 >>
 endobj
-910 0 obj
+958 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 912 0 R
+/CharProcs 960 0 R
 /Encoding <<
 /Differences [ 46/period 48/zero/one/two/three/four/five/six 57/nine]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 913 0 R
+/FontDescriptor 961 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 914 0 R
+/Widths 962 0 R
 >>
 endobj
-911 0 obj
+959 0 obj
 <<
 /BBox [ -1021 -463 1794 1233]
 /Filter /FlateDecode
@@ -6105,20 +6177,20 @@ x
 
 endstream
 endobj
-912 0 obj
+960 0 obj
 <<
-/five 915 0 R
-/four 916 0 R
-/nine 917 0 R
-/one 918 0 R
-/period 919 0 R
-/six 920 0 R
-/three 921 0 R
-/two 922 0 R
-/zero 923 0 R
+/five 963 0 R
+/four 964 0 R
+/nine 965 0 R
+/one 966 0 R
+/period 967 0 R
+/six 968 0 R
+/three 969 0 R
+/two 970 0 R
+/zero 971 0 R
 >>
 endobj
-913 0 obj
+961 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -6133,10 +6205,10 @@ endobj
 /XHeight 0
 >>
 endobj
-914 0 obj
+962 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-915 0 obj
+963 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -6146,7 +6218,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-916 0 obj
+964 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -6155,7 +6227,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-917 0 obj
+965 0 obj
 <<
 /Filter /FlateDecode
 /Length 320
@@ -6166,7 +6238,7 @@ x
 �R�ӿ����ccz�
 endstream
 endobj
-918 0 obj
+966 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -6175,7 +6247,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-919 0 obj
+967 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -6184,7 +6256,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-920 0 obj
+968 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -6195,7 +6267,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-921 0 obj
+969 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -6209,7 +6281,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-922 0 obj
+970 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -6220,7 +6292,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-923 0 obj
+971 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -6230,14 +6302,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-904 0 obj
+952 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-894 0 obj
+942 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6246,7 +6318,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.67) >>
 >>
 endobj
-896 0 obj
+944 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6255,7 +6327,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.68) >>
 >>
 endobj
-897 0 obj
+945 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6264,44 +6336,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.69) >>
 >>
 endobj
-902 0 obj
+950 0 obj
 <<
-/D [900 0 R /XYZ 55.693 823.059 null]
+/D [948 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 198 0 obj
 <<
-/D [900 0 R /XYZ 56.693 782.706 null]
+/D [948 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-903 0 obj
+951 0 obj
 <<
-/D [900 0 R /XYZ 56.693 550.743 null]
+/D [948 0 R /XYZ 56.693 550.743 null]
 >>
 endobj
-905 0 obj
+953 0 obj
 <<
-/D [900 0 R /XYZ 74.626 148.072 null]
+/D [948 0 R /XYZ 74.626 148.072 null]
 >>
 endobj
-906 0 obj
+954 0 obj
 <<
-/D [900 0 R /XYZ 74.626 136.117 null]
+/D [948 0 R /XYZ 74.626 136.117 null]
 >>
 endobj
-907 0 obj
+955 0 obj
 <<
-/D [900 0 R /XYZ 74.626 124.162 null]
+/D [948 0 R /XYZ 74.626 124.162 null]
 >>
 endobj
-899 0 obj
+947 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
-/XObject << /Im9 895 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
+/XObject << /Im9 943 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-927 0 obj
+975 0 obj
 <<
 /Length 2310      
 /Filter /FlateDecode
@@ -6319,18 +6391,18 @@ $?
 �7B<f��Hۏ�<���w��-e'�޳��\�7u��1�/��~ɟB�iص-�{ u�1D��<_�ώ�����I��r�_�1�/@_�������<�B<'E0��4���T���nՄ���HT��i5b����}�����J=VZ=(�R3]ڟߖ�9�ܲ�U�oI�bȉ�w �U�Z����LF8��R�F��֦�/‡M�#�;�����>6M���3��n����ȊԽi��d�gm{�ߟ��a��bx��^��In�����̱�<Ո�jM��cQ�1�7�^�X���!�i��%
���	�D�����]M�|�N�VH�ʢ�\T�)Wya
 endstream
 endobj
-926 0 obj
+974 0 obj
 <<
 /Type /Page
-/Contents 927 0 R
-/Resources 925 0 R
+/Contents 975 0 R
+/Resources 973 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Group 377 0 R
-/Annots [ 898 0 R ]
+/Parent 956 0 R
+/Group 425 0 R
+/Annots [ 946 0 R ]
 >>
 endobj
-898 0 obj
+946 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6339,49 +6411,49 @@ endobj
 /A << /S /GoTo /D (Hfootnote.70) >>
 >>
 endobj
-928 0 obj
+976 0 obj
 <<
-/D [926 0 R /XYZ 55.693 823.059 null]
+/D [974 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-929 0 obj
+977 0 obj
 <<
-/D [926 0 R /XYZ 261.694 759.352 null]
+/D [974 0 R /XYZ 261.694 759.352 null]
 >>
 endobj
-930 0 obj
+978 0 obj
 <<
-/D [926 0 R /XYZ 262.239 641.518 null]
+/D [974 0 R /XYZ 262.239 641.518 null]
 >>
 endobj
-931 0 obj
+979 0 obj
 <<
-/D [926 0 R /XYZ 269.743 576.624 null]
+/D [974 0 R /XYZ 269.743 576.624 null]
 >>
 endobj
-932 0 obj
+980 0 obj
 <<
-/D [926 0 R /XYZ 280.874 526.517 null]
+/D [974 0 R /XYZ 280.874 526.517 null]
 >>
 endobj
-933 0 obj
+981 0 obj
 <<
-/D [926 0 R /XYZ 56.693 432.281 null]
+/D [974 0 R /XYZ 56.693 432.281 null]
 >>
 endobj
-934 0 obj
+982 0 obj
 <<
-/D [926 0 R /XYZ 74.626 102.023 null]
+/D [974 0 R /XYZ 74.626 102.023 null]
 >>
 endobj
-925 0 obj
+973 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F23 398 0 R /F20 350 0 R /F28 509 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F20 398 0 R /F28 557 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-938 0 obj
+986 0 obj
 <<
 /Length 2357      
 /Filter /FlateDecode
@@ -6398,18 +6470,18 @@ xW
 ��N���M�U7�"��F.�.��f�3Z��$����k�������<)�/��H�Wج����&oǾj�;�$�#���Ƒ�k��If��9���6���_6���
 endstream
 endobj
-937 0 obj
+985 0 obj
 <<
 /Type /Page
-/Contents 938 0 R
-/Resources 936 0 R
+/Contents 986 0 R
+/Resources 984 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Group 377 0 R
-/Annots [ 924 0 R 935 0 R ]
+/Parent 956 0 R
+/Group 425 0 R
+/Annots [ 972 0 R 983 0 R ]
 >>
 endobj
-924 0 obj
+972 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6418,7 +6490,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.71) >>
 >>
 endobj
-935 0 obj
+983 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6427,34 +6499,34 @@ endobj
 /A << /S /GoTo /D (Hfootnote.72) >>
 >>
 endobj
-939 0 obj
+987 0 obj
 <<
-/D [937 0 R /XYZ 55.693 823.059 null]
+/D [985 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-940 0 obj
+988 0 obj
 <<
-/D [937 0 R /XYZ 56.693 587.355 null]
+/D [985 0 R /XYZ 56.693 587.355 null]
 >>
 endobj
-941 0 obj
+989 0 obj
 <<
-/D [937 0 R /XYZ 74.626 124.103 null]
+/D [985 0 R /XYZ 74.626 124.103 null]
 >>
 endobj
-942 0 obj
+990 0 obj
 <<
-/D [937 0 R /XYZ 74.626 88.238 null]
+/D [985 0 R /XYZ 74.626 88.238 null]
 >>
 endobj
-936 0 obj
+984 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F24 410 0 R /F22 510 0 R /F20 350 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F24 458 0 R /F22 558 0 R /F20 398 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-946 0 obj
+994 0 obj
 <<
 /Length 2113      
 /Filter /FlateDecode
@@ -6473,17 +6545,17 @@ q
 ����1[�E���$]0F��`
���0��&��$��͒�E��Љ��b޾;��㠽p��b��6�TIړ�S�M��MJ8����9J8ز�4�J�i��bn�S�����؏A�������:��`��ZI���M-$M��ν�C��Ax�
[Ø'~��ɩ�0��W�M��s��h�����㽑�з�#o`xsp)���MF��e��������υ���WY�^r,HIi�D���x���8*#fz���O����"��ӗ���g���}�x�@���X2����r}-S��z��u�;��?w7��O�.�].���h�.�i�a��f��Q/9�OU�x���GU���J��?U�ϔrRhb؂��4��,q�eI<mb?\fN�*L�s�q�]�K�1�h�df�@��C��#n�sp6P?jz�����8������#��@w
 endstream
 endobj
-945 0 obj
+993 0 obj
 <<
 /Type /Page
-/Contents 946 0 R
-/Resources 944 0 R
+/Contents 994 0 R
+/Resources 992 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Annots [ 943 0 R ]
+/Parent 956 0 R
+/Annots [ 991 0 R ]
 >>
 endobj
-943 0 obj
+991 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6492,28 +6564,28 @@ endobj
 /A << /S /GoTo /D (Hfootnote.73) >>
 >>
 endobj
-947 0 obj
+995 0 obj
 <<
-/D [945 0 R /XYZ 55.693 823.059 null]
+/D [993 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 202 0 obj
 <<
-/D [945 0 R /XYZ 56.693 710.685 null]
+/D [993 0 R /XYZ 56.693 710.685 null]
 >>
 endobj
-948 0 obj
+996 0 obj
 <<
-/D [945 0 R /XYZ 74.626 66.193 null]
+/D [993 0 R /XYZ 74.626 66.193 null]
 >>
 endobj
-944 0 obj
+992 0 obj
 <<
-/Font << /F15 347 0 R /F20 350 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-952 0 obj
+1000 0 obj
 <<
 /Length 1192      
 /Filter /FlateDecode
@@ -6531,18 +6603,18 @@ xڕV
 RP�*M�؟�2Ǟ͋��:*��r�|�mRb�[�Èo1��}U�pv������]�/߿�H
 endstream
 endobj
-951 0 obj
+999 0 obj
 <<
 /Type /Page
-/Contents 952 0 R
-/Resources 950 0 R
+/Contents 1000 0 R
+/Resources 998 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Group 377 0 R
-/Annots [ 949 0 R ]
+/Parent 956 0 R
+/Group 425 0 R
+/Annots [ 997 0 R ]
 >>
 endobj
-949 0 obj
+997 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6551,39 +6623,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.74) >>
 >>
 endobj
-953 0 obj
+1001 0 obj
 <<
-/D [951 0 R /XYZ 55.693 823.059 null]
+/D [999 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 206 0 obj
 <<
-/D [951 0 R /XYZ 56.693 782.706 null]
+/D [999 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
 210 0 obj
 <<
-/D [951 0 R /XYZ 56.693 755.565 null]
+/D [999 0 R /XYZ 56.693 755.565 null]
 >>
 endobj
-954 0 obj
+1002 0 obj
 <<
-/D [951 0 R /XYZ 56.693 650.319 null]
+/D [999 0 R /XYZ 56.693 650.319 null]
 >>
 endobj
-955 0 obj
+1003 0 obj
 <<
-/D [951 0 R /XYZ 74.626 262.617 null]
+/D [999 0 R /XYZ 74.626 262.617 null]
 >>
 endobj
-950 0 obj
+998 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-958 0 obj
+1006 0 obj
 <<
 /Length 674       
 /Filter /FlateDecode
@@ -6597,39 +6669,39 @@ b
 k�
�ߦ	� 4��o-^j�.�U@m����Eۂ<-����BoǦ�A�,���GSw��T�{h�ib٨��_b���X?�:�ǡ��=͙}��e�ԋz���������ޖ� ˦+���>���2!<�heA,Y:�?��tZ������+kv�yw!��~��N�u8
 endstream
 endobj
-957 0 obj
+1005 0 obj
 <<
 /Type /Page
-/Contents 958 0 R
-/Resources 956 0 R
+/Contents 1006 0 R
+/Resources 1004 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 908 0 R
-/Group 377 0 R
+/Parent 956 0 R
+/Group 425 0 R
 >>
 endobj
-959 0 obj
+1007 0 obj
 <<
-/D [957 0 R /XYZ 55.693 823.059 null]
+/D [1005 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-960 0 obj
+1008 0 obj
 <<
-/D [957 0 R /XYZ 56.693 789.929 null]
+/D [1005 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-961 0 obj
+1009 0 obj
 <<
-/D [957 0 R /XYZ 56.693 387.233 null]
+/D [1005 0 R /XYZ 56.693 387.233 null]
 >>
 endobj
-956 0 obj
+1004 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-964 0 obj
+1012 0 obj
 <<
 /Length 1331      
 /Filter /FlateDecode
@@ -6643,34 +6715,34 @@ e$Ib
 O�)g_�2�d��m/��RH���
�����X���/��BM��k�'��~2�4�bE}�XLl�П{�����	(yŰ�uF+g��ѓF���q|Y(H�?�ڶVS��מ�J<�oK8����1��6r���ӷD�t�zf>f�]���6;���%�ٰDz�I�5��ņ��j�
 endstream
 endobj
-963 0 obj
+1011 0 obj
 <<
 /Type /Page
-/Contents 964 0 R
-/Resources 962 0 R
+/Contents 1012 0 R
+/Resources 1010 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Group 377 0 R
+/Parent 1015 0 R
+/Group 425 0 R
 >>
 endobj
-965 0 obj
+1013 0 obj
 <<
-/D [963 0 R /XYZ 55.693 823.059 null]
+/D [1011 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-966 0 obj
+1014 0 obj
 <<
-/D [963 0 R /XYZ 56.693 674.03 null]
+/D [1011 0 R /XYZ 56.693 674.03 null]
 >>
 endobj
-962 0 obj
+1010 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-972 0 obj
+1020 0 obj
 <<
 /Length 2587      
 /Filter /FlateDecode
@@ -6685,18 +6757,18 @@ xڕXKs
 ��q��X3�E�Q��ȯ����!fA������X+�X*M�J5�Z�'ix�s�!�g�3RCR;~�ae������7��0����ER�+��;-�|�"� �`��i��e���:�%�6((H����w�E�_0>��(�2>?5��S������=�ֿ��)��
 endstream
 endobj
-971 0 obj
+1019 0 obj
 <<
 /Type /Page
-/Contents 972 0 R
-/Resources 970 0 R
+/Contents 1020 0 R
+/Resources 1018 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Group 377 0 R
-/Annots [ 968 0 R 969 0 R ]
+/Parent 1015 0 R
+/Group 425 0 R
+/Annots [ 1016 0 R 1017 0 R ]
 >>
 endobj
-968 0 obj
+1016 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6705,7 +6777,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.75) >>
 >>
 endobj
-969 0 obj
+1017 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6714,34 +6786,34 @@ endobj
 /A << /S /GoTo /D (Hfootnote.76) >>
 >>
 endobj
-973 0 obj
+1021 0 obj
 <<
-/D [971 0 R /XYZ 55.693 823.059 null]
+/D [1019 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-974 0 obj
+1022 0 obj
 <<
-/D [971 0 R /XYZ 56.693 789.929 null]
+/D [1019 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-975 0 obj
+1023 0 obj
 <<
-/D [971 0 R /XYZ 74.626 168.769 null]
+/D [1019 0 R /XYZ 74.626 168.769 null]
 >>
 endobj
-976 0 obj
+1024 0 obj
 <<
-/D [971 0 R /XYZ 74.626 156.814 null]
+/D [1019 0 R /XYZ 74.626 156.814 null]
 >>
 endobj
-970 0 obj
+1018 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F23 398 0 R /F24 410 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F24 458 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-980 0 obj
+1028 0 obj
 <<
 /Length 2151      
 /Filter /FlateDecode
@@ -6761,18 +6833,18 @@ q
 �gI�f'�Q�Udq��7��Y��阈Cul�V��'�M�V��/-�p�����q�k��g����Z�5����]
 endstream
 endobj
-979 0 obj
+1027 0 obj
 <<
 /Type /Page
-/Contents 980 0 R
-/Resources 978 0 R
+/Contents 1028 0 R
+/Resources 1026 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Group 377 0 R
-/Annots [ 977 0 R ]
+/Parent 1015 0 R
+/Group 425 0 R
+/Annots [ 1025 0 R ]
 >>
 endobj
-977 0 obj
+1025 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6781,44 +6853,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.77) >>
 >>
 endobj
-981 0 obj
+1029 0 obj
 <<
-/D [979 0 R /XYZ 55.693 823.059 null]
+/D [1027 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 214 0 obj
 <<
-/D [979 0 R /XYZ 56.693 782.706 null]
+/D [1027 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-982 0 obj
+1030 0 obj
 <<
-/D [979 0 R /XYZ 56.693 666.309 null]
+/D [1027 0 R /XYZ 56.693 666.309 null]
 >>
 endobj
 218 0 obj
 <<
-/D [979 0 R /XYZ 56.693 164.942 null]
+/D [1027 0 R /XYZ 56.693 164.942 null]
 >>
 endobj
 222 0 obj
 <<
-/D [979 0 R /XYZ 56.693 139.487 null]
+/D [1027 0 R /XYZ 56.693 139.487 null]
 >>
 endobj
-983 0 obj
+1031 0 obj
 <<
-/D [979 0 R /XYZ 74.626 67.275 null]
+/D [1027 0 R /XYZ 74.626 67.275 null]
 >>
 endobj
-978 0 obj
+1026 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-989 0 obj
+1037 0 obj
 <<
 /Length 2360      
 /Filter /FlateDecode
@@ -6839,18 +6911,18 @@ J`
 ��X�ŷYt�?���
 endstream
 endobj
-988 0 obj
+1036 0 obj
 <<
 /Type /Page
-/Contents 989 0 R
-/Resources 987 0 R
+/Contents 1037 0 R
+/Resources 1035 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Group 377 0 R
-/Annots [ 984 0 R 985 0 R 986 0 R ]
+/Parent 1015 0 R
+/Group 425 0 R
+/Annots [ 1032 0 R 1033 0 R 1034 0 R ]
 >>
 endobj
-984 0 obj
+1032 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6859,7 +6931,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.78) >>
 >>
 endobj
-985 0 obj
+1033 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6868,7 +6940,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.79) >>
 >>
 endobj
-986 0 obj
+1034 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6877,44 +6949,44 @@ endobj
 /A << /S /GoTo /D (Hfootnote.80) >>
 >>
 endobj
-990 0 obj
+1038 0 obj
 <<
-/D [988 0 R /XYZ 55.693 823.059 null]
+/D [1036 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
 226 0 obj
 <<
-/D [988 0 R /XYZ 56.693 679.597 null]
+/D [1036 0 R /XYZ 56.693 679.597 null]
 >>
 endobj
-991 0 obj
+1039 0 obj
 <<
-/D [988 0 R /XYZ 56.693 462.411 null]
+/D [1036 0 R /XYZ 56.693 462.411 null]
 >>
 endobj
-992 0 obj
+1040 0 obj
 <<
-/D [988 0 R /XYZ 74.626 102.023 null]
+/D [1036 0 R /XYZ 74.626 102.023 null]
 >>
 endobj
-993 0 obj
+1041 0 obj
 <<
-/D [988 0 R /XYZ 74.626 90.068 null]
+/D [1036 0 R /XYZ 74.626 90.068 null]
 >>
 endobj
-994 0 obj
+1042 0 obj
 <<
-/D [988 0 R /XYZ 74.626 78.113 null]
+/D [1036 0 R /XYZ 74.626 78.113 null]
 >>
 endobj
-987 0 obj
+1035 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1003 0 obj
+1051 0 obj
 <<
 /Length 3704      
 /Filter /FlateDecode
@@ -6941,17 +7013,17 @@ T
 �u�_M��7;�|���K���]�y�M�
 endstream
 endobj
-1002 0 obj
+1050 0 obj
 <<
 /Type /Page
-/Contents 1003 0 R
-/Resources 1001 0 R
+/Contents 1051 0 R
+/Resources 1049 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Annots [ 995 0 R 996 0 R 997 0 R 998 0 R ]
+/Parent 1015 0 R
+/Annots [ 1043 0 R 1044 0 R 1045 0 R 1046 0 R ]
 >>
 endobj
-995 0 obj
+1043 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6960,7 +7032,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.81) >>
 >>
 endobj
-996 0 obj
+1044 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6969,7 +7041,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.82) >>
 >>
 endobj
-997 0 obj
+1045 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6978,7 +7050,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.83) >>
 >>
 endobj
-998 0 obj
+1046 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -6987,53 +7059,53 @@ endobj
 /A << /S /GoTo /D (Hfootnote.84) >>
 >>
 endobj
-1004 0 obj
+1052 0 obj
 <<
-/D [1002 0 R /XYZ 55.693 823.059 null]
+/D [1050 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1005 0 obj
+1053 0 obj
 <<
-/D [1002 0 R /XYZ 253.533 329.904 null]
+/D [1050 0 R /XYZ 253.533 329.904 null]
 >>
 endobj
-1006 0 obj
+1054 0 obj
 <<
-/D [1002 0 R /XYZ 240.096 308.983 null]
+/D [1050 0 R /XYZ 240.096 308.983 null]
 >>
 endobj
-1007 0 obj
+1055 0 obj
 <<
-/D [1002 0 R /XYZ 230.989 285.287 null]
+/D [1050 0 R /XYZ 230.989 285.287 null]
 >>
 endobj
-1008 0 obj
+1056 0 obj
 <<
-/D [1002 0 R /XYZ 74.626 162.15 null]
+/D [1050 0 R /XYZ 74.626 162.15 null]
 >>
 endobj
-1009 0 obj
+1057 0 obj
 <<
-/D [1002 0 R /XYZ 74.626 114.33 null]
+/D [1050 0 R /XYZ 74.626 114.33 null]
 >>
 endobj
-1010 0 obj
+1058 0 obj
 <<
-/D [1002 0 R /XYZ 74.626 102.375 null]
+/D [1050 0 R /XYZ 74.626 102.375 null]
 >>
 endobj
-1011 0 obj
+1059 0 obj
 <<
-/D [1002 0 R /XYZ 74.626 90.419 null]
+/D [1050 0 R /XYZ 74.626 90.419 null]
 >>
 endobj
-1001 0 obj
+1049 0 obj
 <<
-/Font << /F15 347 0 R /F20 350 0 R /F21 383 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1014 0 obj
+1062 0 obj
 <<
 /Length 2001      
 /Filter /FlateDecode
@@ -7047,18 +7119,18 @@ t
 ��F��-��:�ъ�<���ߙݱ�e'.�/�J�$	ș3xt�� |^N���,��a�i܇�]6�cU�˳��m�5DZ��ۮ}��QsXjڳ���i�
 endstream
 endobj
-1013 0 obj
+1061 0 obj
 <<
 /Type /Page
-/Contents 1014 0 R
-/Resources 1012 0 R
+/Contents 1062 0 R
+/Resources 1060 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 967 0 R
-/Group 377 0 R
-/Annots [ 999 0 R 1000 0 R ]
+/Parent 1015 0 R
+/Group 425 0 R
+/Annots [ 1047 0 R 1048 0 R ]
 >>
 endobj
-999 0 obj
+1047 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7067,7 +7139,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.85) >>
 >>
 endobj
-1000 0 obj
+1048 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7076,39 +7148,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.86) >>
 >>
 endobj
-1015 0 obj
+1063 0 obj
 <<
-/D [1013 0 R /XYZ 55.693 823.059 null]
+/D [1061 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1016 0 obj
+1064 0 obj
 <<
-/D [1013 0 R /XYZ 56.693 633.018 null]
+/D [1061 0 R /XYZ 56.693 633.018 null]
 >>
 endobj
 230 0 obj
 <<
-/D [1013 0 R /XYZ 56.693 293.045 null]
+/D [1061 0 R /XYZ 56.693 293.045 null]
 >>
 endobj
-1017 0 obj
+1065 0 obj
 <<
-/D [1013 0 R /XYZ 74.626 234.813 null]
+/D [1061 0 R /XYZ 74.626 234.813 null]
 >>
 endobj
-1018 0 obj
+1066 0 obj
 <<
-/D [1013 0 R /XYZ 74.626 210.903 null]
+/D [1061 0 R /XYZ 74.626 210.903 null]
 >>
 endobj
-1012 0 obj
+1060 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F23 398 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1021 0 obj
+1069 0 obj
 <<
 /Length 364       
 /Filter /FlateDecode
@@ -7117,34 +7189,34 @@ stream
 xڭR�N�0��+�hb��]���D�P�m@B��І��
��E�ʍ���Ϭ=��7A+	�z���Y�$���a#0eKjH�0!��V[ҤB��6
#� ��ݨ;.kM���oƃ��A����4D�P$O�0J)rO�!�"�ǔ�Ӥt��3@7<�s�$J���ɔ��a}�,�s� 3֕KÀ�W�k?δ;&-2n+gά��'��$�2�<$��t�U���8��I�C(����_t�g��Ct.�].D��0t4TN��a/_���$�������e�_�m�����Xoh��:�u�/�;����ݓ�b��U����<t7)��uw<�E=K��{��[�?,�e^Y|�Ʈx�e�˺����G2�~
 endstream
 endobj
-1020 0 obj
+1068 0 obj
 <<
 /Type /Page
-/Contents 1021 0 R
-/Resources 1019 0 R
+/Contents 1069 0 R
+/Resources 1067 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
+/Parent 1072 0 R
+/Group 425 0 R
 >>
 endobj
-1022 0 obj
+1070 0 obj
 <<
-/D [1020 0 R /XYZ 55.693 823.059 null]
+/D [1068 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1023 0 obj
+1071 0 obj
 <<
-/D [1020 0 R /XYZ 56.693 789.929 null]
+/D [1068 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1019 0 obj
+1067 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1030 0 obj
+1078 0 obj
 <<
 /Length 1322      
 /Filter /FlateDecode
@@ -7155,18 +7227,18 @@ xڍ
 ��U"�`ei�{r�͙ԦRB~��$�Sڥ�0��Ԅ��)x���!��&$(i���WV�� ʴw
u��S��s�����q}�����'�#:Ԯ��5<������p�,���C������������EX��֖S1�!>	�vpM���#l�4��:j>~^��U7��(�=�¦	P�kc0f�����-��gf�yј�vp��ܑ���3����������'�h���n:��*���؅�g���.1I������co�$��=��
 endstream
 endobj
-1029 0 obj
+1077 0 obj
 <<
 /Type /Page
-/Contents 1030 0 R
-/Resources 1028 0 R
+/Contents 1078 0 R
+/Resources 1076 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
-/Annots [ 1025 0 R 1026 0 R 1027 0 R ]
+/Parent 1072 0 R
+/Group 425 0 R
+/Annots [ 1073 0 R 1074 0 R 1075 0 R ]
 >>
 endobj
-1025 0 obj
+1073 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7175,7 +7247,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.87) >>
 >>
 endobj
-1026 0 obj
+1074 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7184,7 +7256,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.88) >>
 >>
 endobj
-1027 0 obj
+1075 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7193,39 +7265,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.89) >>
 >>
 endobj
-1031 0 obj
+1079 0 obj
 <<
-/D [1029 0 R /XYZ 55.693 823.059 null]
+/D [1077 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1032 0 obj
+1080 0 obj
 <<
-/D [1029 0 R /XYZ 56.693 789.929 null]
+/D [1077 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1033 0 obj
+1081 0 obj
 <<
-/D [1029 0 R /XYZ 74.626 342.119 null]
+/D [1077 0 R /XYZ 74.626 342.119 null]
 >>
 endobj
-1034 0 obj
+1082 0 obj
 <<
-/D [1029 0 R /XYZ 74.626 318.209 null]
+/D [1077 0 R /XYZ 74.626 318.209 null]
 >>
 endobj
-1035 0 obj
+1083 0 obj
 <<
-/D [1029 0 R /XYZ 74.626 306.253 null]
+/D [1077 0 R /XYZ 74.626 306.253 null]
 >>
 endobj
-1028 0 obj
+1076 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1038 0 obj
+1086 0 obj
 <<
 /Length 655       
 /Filter /FlateDecode
@@ -7236,39 +7308,39 @@ xڵTKO
 -�z�klQ�6G���Qt1��C����ϱ��#�)
�� �5�F�4^$���y%��/VFI)<���2ϲ��7����]�8ո01.��$�δ�1��5ZC� 1	�`G$Px�Kh������Ƽ*�=|$b�vo�!��Q���½��/-�.�^V
 endstream
 endobj
-1037 0 obj
+1085 0 obj
 <<
 /Type /Page
-/Contents 1038 0 R
-/Resources 1036 0 R
+/Contents 1086 0 R
+/Resources 1084 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
+/Parent 1072 0 R
+/Group 425 0 R
 >>
 endobj
-1039 0 obj
+1087 0 obj
 <<
-/D [1037 0 R /XYZ 55.693 823.059 null]
+/D [1085 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1040 0 obj
+1088 0 obj
 <<
-/D [1037 0 R /XYZ 56.693 789.929 null]
+/D [1085 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1041 0 obj
+1089 0 obj
 <<
-/D [1037 0 R /XYZ 56.693 399.354 null]
+/D [1085 0 R /XYZ 56.693 399.354 null]
 >>
 endobj
-1036 0 obj
+1084 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1044 0 obj
+1092 0 obj
 <<
 /Length 1273      
 /Filter /FlateDecode
@@ -7282,39 +7354,39 @@ x
 @�p��
 endstream
 endobj
-1043 0 obj
+1091 0 obj
 <<
 /Type /Page
-/Contents 1044 0 R
-/Resources 1042 0 R
+/Contents 1092 0 R
+/Resources 1090 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
+/Parent 1072 0 R
+/Group 425 0 R
 >>
 endobj
-1045 0 obj
+1093 0 obj
 <<
-/D [1043 0 R /XYZ 55.693 823.059 null]
+/D [1091 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1046 0 obj
+1094 0 obj
 <<
-/D [1043 0 R /XYZ 56.693 688.476 null]
+/D [1091 0 R /XYZ 56.693 688.476 null]
 >>
 endobj
 234 0 obj
 <<
-/D [1043 0 R /XYZ 56.693 288.894 null]
+/D [1091 0 R /XYZ 56.693 288.894 null]
 >>
 endobj
-1042 0 obj
+1090 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1050 0 obj
+1098 0 obj
 <<
 /Length 750       
 /Filter /FlateDecode
@@ -7327,39 +7399,39 @@ xڵTKo
 UE��?��B�9
 endstream
 endobj
-1049 0 obj
+1097 0 obj
 <<
 /Type /Page
-/Contents 1050 0 R
-/Resources 1048 0 R
+/Contents 1098 0 R
+/Resources 1096 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
+/Parent 1072 0 R
+/Group 425 0 R
 >>
 endobj
-1051 0 obj
+1099 0 obj
 <<
-/D [1049 0 R /XYZ 55.693 823.059 null]
+/D [1097 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1052 0 obj
+1100 0 obj
 <<
-/D [1049 0 R /XYZ 56.693 789.929 null]
+/D [1097 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1053 0 obj
+1101 0 obj
 <<
-/D [1049 0 R /XYZ 56.693 403.678 null]
+/D [1097 0 R /XYZ 56.693 403.678 null]
 >>
 endobj
-1048 0 obj
+1096 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1056 0 obj
+1104 0 obj
 <<
 /Length 2161      
 /Filter /FlateDecode
@@ -7378,18 +7450,18 @@ ux
 ��r�^Q[�BR­G6��.N,�%���+0�fn<�Pv8�|��g�������:�O (O�J�^u�__<��>�p����Fn�0Tha[�F+��������;�4%
 endstream
 endobj
-1055 0 obj
+1103 0 obj
 <<
 /Type /Page
-/Contents 1056 0 R
-/Resources 1054 0 R
+/Contents 1104 0 R
+/Resources 1102 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1024 0 R
-/Group 377 0 R
-/Annots [ 1047 0 R ]
+/Parent 1072 0 R
+/Group 425 0 R
+/Annots [ 1095 0 R ]
 >>
 endobj
-1047 0 obj
+1095 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7398,39 +7470,39 @@ endobj
 /A << /S /GoTo /D (Hfootnote.90) >>
 >>
 endobj
-1057 0 obj
+1105 0 obj
 <<
-/D [1055 0 R /XYZ 55.693 823.059 null]
+/D [1103 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1058 0 obj
+1106 0 obj
 <<
-/D [1055 0 R /XYZ 208.178 725.237 null]
+/D [1103 0 R /XYZ 208.178 725.237 null]
 >>
 endobj
-1059 0 obj
+1107 0 obj
 <<
-/D [1055 0 R /XYZ 56.693 653.857 null]
+/D [1103 0 R /XYZ 56.693 653.857 null]
 >>
 endobj
 238 0 obj
 <<
-/D [1055 0 R /XYZ 56.693 253.61 null]
+/D [1103 0 R /XYZ 56.693 253.61 null]
 >>
 endobj
-1060 0 obj
+1108 0 obj
 <<
-/D [1055 0 R /XYZ 74.626 105.881 null]
+/D [1103 0 R /XYZ 74.626 105.881 null]
 >>
 endobj
-1054 0 obj
+1102 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F24 410 0 R /F21 383 0 R /F20 350 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F24 458 0 R /F21 431 0 R /F20 398 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1063 0 obj
+1111 0 obj
 <<
 /Length 507       
 /Filter /FlateDecode
@@ -7440,120 +7512,75 @@ x
 Iʃ����rW���$�8!D&�%̆��[��+��a™�4�q3B3ft��ϜR�0L+LI}2!u�Br�A���zs��C�/�5���$J{Y�ƾB�$���HѬuZ�q���u�ԃs^YX<�c[uע���ewx�+k!�
#v߹�c��f��vXT����EY�}Q�N��YO��UL��t8���p��	FtlU����a_�nM�:Vvl�~1����:NkB��%SBM�ڡ�t��@Y[D�E����f�]�n�i����e�{T��C���$�)w*$�2�u��C��IQɡ/��]�羛(��|�������+|H�~�7���e
 endstream
 endobj
-1062 0 obj
+1110 0 obj
 <<
 /Type /Page
-/Contents 1063 0 R
-/Resources 1061 0 R
+/Contents 1111 0 R
+/Resources 1109 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
-/Group 377 0 R
+/Parent 1114 0 R
+/Group 425 0 R
 >>
 endobj
-1064 0 obj
+1112 0 obj
 <<
-/D [1062 0 R /XYZ 55.693 823.059 null]
+/D [1110 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1065 0 obj
+1113 0 obj
 <<
-/D [1062 0 R /XYZ 56.693 789.929 null]
+/D [1110 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1061 0 obj
+1109 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1069 0 obj
-<<
-/Length 316       
-/Filter /FlateDecode
->>
-stream
-x��R�N�0��ot$b��/A�JHTd�:�4�iMJ;N#:�3�r~w�{��$��}�n���ȌQ�����f	����V�DqF�E��]�*�G):'�4��u5|s��u�`9�b��"'SIB��r�Vk	w��)�,��0���H3[xeK&�� 	�F�
-J$��"*�gE_�A�E��PNB�2A��q��੩���O^{�����8�\-��(�v�O�m:_��үb[|z�@�⻦�}}X�j���š뛶
�-�Uʫ��q���ӛ�;��(�ha�e/B�E����w8��i���%��p9��	��
-endstream
-endobj
-1068 0 obj
-<<
-/Type /Page
-/Contents 1069 0 R
-/Resources 1067 0 R
-/MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
->>
-endobj
-1070 0 obj
-<<
-/D [1068 0 R /XYZ 55.693 823.059 null]
->>
-endobj
-242 0 obj
-<<
-/D [1068 0 R /XYZ 56.693 782.706 null]
->>
-endobj
-246 0 obj
-<<
-/D [1068 0 R /XYZ 56.693 758.912 null]
->>
-endobj
-250 0 obj
-<<
-/D [1068 0 R /XYZ 56.693 699.759 null]
->>
-endobj
-1067 0 obj
-<<
-/Font << /F15 347 0 R /F17 349 0 R >>
-/ProcSet [ /PDF /Text ]
->>
-endobj
-1081 0 obj
+1125 0 obj
 <<
 /Length 2350      
 /Filter /FlateDecode
 >>
 stream
-xڥXY�۸~�_�G�b���U[�����Vy�ؓ�R�}�P��5E�<<��O_��3r�)�@��nt�Cqp�৫��\=}��@��LS��4�����<�����f[�e�����6[������w��o�������f��\��-��1of6���r����ӕ�q�f)q%*	���o����~	�ȔEpG�� )TT�0m��W��W���#��d�y��Q��Ys�t���u�4�>���V�£P5>(�L��	�`��(ϵ�)J��2|Яn�C���?��V�ģt�21俎�e�|Eu/���)TP����i:仫��^n
+xڥXY�۸~�_�G�b���U[�����Vy�ؓ�R�}�P��5E�<<��O_��3r�)�@��nt�Cqp�৫��\=}��@��LS��4�����<�����f[�e�����6[������w��o�������f��\��-��1o�7���r����ӕ�q�f)q%*	���o����~	�ȔEpG�� )TT�0m��W��W���#��d�y��Q��Ys�t���u�4�>���V�£P5>(�L��	�`��(ϵ�)J��2|Яn�C���?��V�ģt�21俎�e�|Eu/���)TP����i:仫��^n
 :;N�c����;ݞG����.B�4�j��dG�cT�YrT�����T�!��&�"�tҧ+���	1,���?��W'?v�{�y����]�m0U^�
_���N2t�3�S���4NM�"8��9s���l0$��p��z�ؖpv-�o��ݙ�c�Q��[������Y���	��	L2N���d��#o�/j��4��i���Q�6�&��,I��S}�8Up�XW��q��#�O� 3~C�B��U���i�w,@;�!0 ��x�>�\��U����lV;�+f53�5���<�$��Z��`L-<1$�$Ixk���`���ʔ?&�<J,�@���w?z�
 ��c��Qi�,�wm:�Z��!ڊ�̲`�� �����W�T�Jd\
ΝX%+Z�n=���:�?��T��g25�D�=�
_��
Ӭ\W��D����k�,y�0��+�IY)X��c���6�7���p_	#)���Q��^���m9��0�xaW�q����̏��c'4�����X7
 �1�7CU�	q�
��믛m���ly�}9#t,�#8p��D�����N�$���~���pey�E�"ש�e�j�
 Hl:~EyI�8��9��� .��A^���A�up1m���&�oc� �-��)��Ã�7�x�׸8�he�v��v3RĜ"i<��¢f����N�����`,�%�����<�P֎'���V`�L$��������T?�O��+a��j$2�}��~$��LiY�K~������t"�`!���#!0�0c�
 �-�ۓ㷁<��O��t��0��ߟ-u��B�?�q�og%:�X(|�>�[���X�X�!	8H#-�d��j)�d����F�|i�>��&?TdWc_�F=a�B�:�%��,Yv�{zޯO�v����̟�GĴ�ufM	�A�����ᣎ�W��Ns�|�f�f�;�Op�2
�������Y�A>�o��qg|h�l����|�k�.�b�hʊB����5�U\TPq~@�n/,dE�_��S N�x>�۟����14 a���P���u׋jMͱ�E�x�AJ�2�K�g�n{C�����o��������9d5�,�Q�<�<_9�0�C�%|G�(r8r6�:ដm�O�(\�%��^�K}]xD`*�i܏�(�BP�bg�c�m�넹�����e��
-�J������C7z������g��P�3�+�CAPq�,z?�C����A���[��J������"5y�A��P�2�
+�J������C7z������g��P�3�+�CAPq�,z?�C����A���[��J������"5y�A��P�2h%
 FI�q����,�W���eJL<���9
 0*�,��=�)Z�L}�od��L�\�v\J8���?0�z����xv�=���������G8'I������N$��}�^#Em���\g�%&��:D�(����)�pF��jyX$<�|ߝ#E�;>���ܗ0a{�r�����7ka���K2<H�M�K�
#�R����k���{o��/� ���ٛ&��T�P`%I�9|�=�<^~8<ơ���(����"T���aO��O�a8��0e���:~������c+��( ;��t��2�V*K.V�RQ
K.�aB��=}���
Wt�J������|�Z>ŠkI�ʈ������;āk ���f�ft8���Z;*�j������'�t��eB�Jh/f VR!�R�����U&
 �Ka�a?��DTؤT�J���>SN��G��9�����Yd}�w_�,D�;�1x����<�O
 �:�()��"v d/X~� J����OI����j)�/���9Y*h��4%��dі ��Ob
 �8Yz��I0wR��m�%|x�=���4�/aD�c��}����
-��؆��|��&&��Q��Q.��0��(���һ]=b��Z�0������\�n���Y`$,g�j�G@%Aq���a��נ_����y�TP6�2U�.On��Y4Y�)���x��I�,�^�q|)��Q��{-�}�6+?��3�`/x(�\��rQ���!�
+��؆��|��&&��Q��Q.��0��(���һ]=b��Z�0������\�n���Y`$,g�j�G@%Aq���a��נ_����y�TP6�2U�.On��Y4Y�)���x��I�,�^�q|)��Q��{-�}�6+?��3�`/x(�\��rQ����!�
 endstream
 endobj
-1080 0 obj
+1124 0 obj
 <<
 /Type /Page
-/Contents 1081 0 R
-/Resources 1079 0 R
+/Contents 1125 0 R
+/Resources 1123 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
-/Group 1084 0 R
-/Annots [ 1072 0 R 1073 0 R ]
+/Parent 1114 0 R
+/Group 1128 0 R
+/Annots [ 1116 0 R 1117 0 R ]
 >>
 endobj
-1071 0 obj
+1115 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/aucmapb.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 1087 0 R
+/PTEX.InfoDict 1131 0 R
 /BBox [0 0 460.8 345.6]
-/Group 1084 0 R
+/Group 1128 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -7626,7 +7653,7 @@ endobj
 /Type /ExtGState
 /ca 0.45
 >>
->>/Font << /F1 1088 0 R>>
+>>/Font << /F1 1132 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
@@ -7645,54 +7672,54 @@ A
 Z0����RB�߭���w�n/�ǘlȿ�%������߇���򚯟g����[��8�S��A��hC�\�2
�"����C-0B��aR ����o_�a�7�?�m�
 endstream
 endobj
-1087 0 obj
+1131 0 obj
 <<
 /CreationDate (D:20200826165151+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-1088 0 obj
+1132 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 1089 0 R
+/CharProcs 1133 0 R
 /Encoding <<
 /Differences [ 46/period 48/zero/one/two/three/four/five 97/a 99/c 101/e/f 105/i 108/l 112/p 114/r 116/t/u]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 1090 0 R
+/FontDescriptor 1134 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 1091 0 R
+/Widths 1135 0 R
 >>
 endobj
-1089 0 obj
+1133 0 obj
 <<
-/a 1092 0 R
-/c 1093 0 R
-/e 1094 0 R
-/f 1095 0 R
-/five 1096 0 R
-/four 1097 0 R
-/i 1098 0 R
-/l 1099 0 R
-/one 1100 0 R
-/p 1101 0 R
-/period 1102 0 R
-/r 1103 0 R
-/t 1104 0 R
-/three 1105 0 R
-/two 1106 0 R
-/u 1107 0 R
-/zero 1108 0 R
+/a 1136 0 R
+/c 1137 0 R
+/e 1138 0 R
+/f 1139 0 R
+/five 1140 0 R
+/four 1141 0 R
+/i 1142 0 R
+/l 1143 0 R
+/one 1144 0 R
+/p 1145 0 R
+/period 1146 0 R
+/r 1147 0 R
+/t 1148 0 R
+/three 1149 0 R
+/two 1150 0 R
+/u 1151 0 R
+/zero 1152 0 R
 >>
 endobj
-1090 0 obj
+1134 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -7707,10 +7734,10 @@ endobj
 /XHeight 0
 >>
 endobj
-1091 0 obj
+1135 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-1092 0 obj
+1136 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -7720,7 +7747,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-1093 0 obj
+1137 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -7729,7 +7756,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-1094 0 obj
+1138 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -7738,7 +7765,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-1095 0 obj
+1139 0 obj
 <<
 /Filter /FlateDecode
 /Length 133
@@ -7747,7 +7774,7 @@ stream
 x�M�A�0�~�����tzJ�-�6�팀��0<b�0%�z��U�Kp6��%E<j�TGc����ݡ���M��sӴ�t7Q*m�����}��U�$��[�.�$�Es�T0���KK�����f>3�
 endstream
 endobj
-1096 0 obj
+1140 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -7757,7 +7784,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-1097 0 obj
+1141 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -7766,7 +7793,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-1098 0 obj
+1142 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -7777,7 +7804,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-1099 0 obj
+1143 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -7789,7 +7816,7 @@ x
 "���}�
 endstream
 endobj
-1100 0 obj
+1144 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -7798,7 +7825,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-1101 0 obj
+1145 0 obj
 <<
 /Filter /FlateDecode
 /Length 236
@@ -7809,7 +7836,7 @@ x
 ���y+�����ՠ��������0��u�J�����*�}�$�]S
 endstream
 endobj
-1102 0 obj
+1146 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -7818,7 +7845,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-1103 0 obj
+1147 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -7828,7 +7855,7 @@ x
 ���f�W����7y
 endstream
 endobj
-1104 0 obj
+1148 0 obj
 <<
 /Filter /FlateDecode
 /Length 131
@@ -7837,7 +7864,7 @@ stream
 x�E��
!C�T��>��՞����0�AB�A";�0���6���Ѣ�7�6իc�,�zRV鐇��Pi0QąYLCaΘ�Ȗ2��M��l�T��v<��e�~�ma�,��U^��
?�K�w�U�BS0�
 endstream
 endobj
-1105 0 obj
+1149 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -7851,7 +7878,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-1106 0 obj
+1150 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -7862,7 +7889,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-1107 0 obj
+1151 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -7872,7 +7899,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-1108 0 obj
+1152 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -7882,14 +7909,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-1084 0 obj
+1128 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-1072 0 obj
+1116 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7898,7 +7925,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.91) >>
 >>
 endobj
-1073 0 obj
+1117 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7907,85 +7934,76 @@ endobj
 /A << /S /GoTo /D (Hfootnote.92) >>
 >>
 endobj
-1082 0 obj
+1126 0 obj
 <<
-/D [1080 0 R /XYZ 55.693 823.059 null]
+/D [1124 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-254 0 obj
+242 0 obj
 <<
-/D [1080 0 R /XYZ 56.693 782.706 null]
+/D [1124 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-258 0 obj
+246 0 obj
 <<
-/D [1080 0 R /XYZ 56.693 755.565 null]
+/D [1124 0 R /XYZ 56.693 755.565 null]
 >>
 endobj
-1083 0 obj
+1127 0 obj
 <<
-/D [1080 0 R /XYZ 56.693 708.767 null]
+/D [1124 0 R /XYZ 56.693 708.767 null]
 >>
 endobj
-1085 0 obj
+1129 0 obj
 <<
-/D [1080 0 R /XYZ 74.626 155.049 null]
+/D [1124 0 R /XYZ 74.626 155.049 null]
 >>
 endobj
-1086 0 obj
+1130 0 obj
 <<
-/D [1080 0 R /XYZ 74.626 119.183 null]
+/D [1124 0 R /XYZ 74.626 119.183 null]
 >>
 endobj
-1079 0 obj
+1123 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F20 350 0 R >>
-/XObject << /Im10 1071 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F20 398 0 R >>
+/XObject << /Im10 1115 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1113 0 obj
+1157 0 obj
 <<
 /Length 4581      
 /Filter /FlateDecode
 >>
 stream
-xڭ[[wܸ�~���G�D�䞓��3��f쌵��3����溛�4�c;�~��(E��	`�^�*|U@g��&������W�|��Ri��zs{��]�J�)�d��v��%qW7�/�w�?�����h��~���+�w��5����7�n��J'�P�k����?n�������^)6ۨq�̧V�����d���y���,6���ic�%d�����*��3�>K}�x�?u�S54]S�*i(�Iş�h����C5p�S���vn~o�#�����]
���}�H�ՕJ��t�\����U�u�sٱ�x���>~!1s�{���?�"�������5ڬ����Ԙ��XiʌYr�HK�67Q�k�0I��d%2���w�TV�ʔ�eSk7�??������&���?���K�p��|�-ri�e �`~*ށ���Ə<y�^h���;�����?�n�R%�v[3�N��%s�c��+ܓ=S��hI�|-�W=0�%�,9���8p'���~�COSUϙ��tZ|T��_�-K~u��F�̆�=��o��+�e$7U��]�k�kҥ��XR��ӇswW�!�5H���a��԰d8��T�oR�0n-f`�8�<�t���)S�kXB5H�fߢ�hĕ=����>��݅E5K���C��Wԧ ,P�г�`�獹�^�#yP�,	�}�P�C���\�#��E�:�/�2(l��م�?�ۦǭ_YN<	`�*a�Y�r����p��(S��J�yVhB��~��&o�T=<psPfn0��]ipPz}G�����IT2�c]��EXY��!\A��X�ҹe@�������t7��ɒM*���Ј@�UO͸<쒭����~����V=�-mW��ک�.OnY@�B��:��M��T4a����>����d"����|
R%��R�}��/G{�q���04M8=>�E^β��Ӿ�N=W�#j\]���\�����Ja�@��r:�"�hmR��9sE��;ڷ����||w�X+���O��=������������N����@#=��5�ѱ�]���Cu8'r�O�n8�Y�6��U����S�Vy��Nڢ�l*�J(}w�E�b� w�
-���z4�&Q�ΧH0����n޶���|�C�$�4�B�6_��f�U�0�o��6�x�ԋؗ���%�	��6��8���Y9W0�13`�����5��2횳���"�-��x=��<T���!�AOoLA���s��zB3��ܴj<��K2ʧCwd@:��B�q_
-�h��lD�@!y�+PNMۜ��L��f��Bs0wW2����q�V�l���Ӽ��L�
-��?����� ��S���
-�o�PW;Y̽�.�[�Lw���;aw�M���l��,����?�Dj�g,�A�83�(H���3pC�F�Y�gu�&��[n�Ȑ��Q�A ��R ��+�f��`wCĀ��3�}��*,\��Z�S��+N���\sb�ߝ#|�3�*y.y@dx�F��0��3d_�Ѿ0Q��;�X��K-V��8�L:��ż�y> >EB����W�K�%bT��6�����$��d�;�h�*'��*'؋��:��� �Ύ#��P�#��JX����E��^��Qj�Wᒻf���^�n���5a��/�942�����j���-�!F�9���*��w�S�?����C�`�=g���M{���L Q>ϒ[Tώ+��5ĝ� ��"��w�����~m	��FkL��n��:�b��^�#Lv�_�Zl"�f¾��7�#D�5�pn�8�`^K���ę,��&2)4��-yWW6wy�#��G�T�S5T��@_z�"o3'���?;��*)��(B�P�6�ޘ���Q���53F���K`����pE�����FQ�h%2���I�"�i
� �[.�K4ٛr�G18g2��@bVA��DX9V�%��S�[[�ʀ#c-^�4���Q�Z)��_�j�6�z�cV�`�a�K��^@?>u��c��b���:50b����ض����S���=܅
-���.�ff�o���d���*���4sXZ�,�|��1�vޢ,����.���Y�ɲսˋqn��<���eI�6�;-�_FR��"���T��H*EPu6S^�+�s�̦:���aeL�IѰ��yfP��ʔ�Acf�}!�t�,k�T�c���Ѱcy$ʛ��!uNIlN����s+��?��݌��Lýh��������GU+�U)?4{�6�t�~�	�g��Q���*�)"��9��
,S�d�Q���on�{��`]�qI�vG>	���W�!*�B��(�1�YI_�؂D��(�(��_�(�}�Su٢9�3�V�Υ��w�%3������Wp�����](��_��6��Z�s�?�:�%�:mX(�ݮ	W>
-^�������1?����H�d{.��|\�)������	
-z��]G�5t,z�6~�6@���qH�xe��V��uf�oeK�҅O���M�{��|^P�����j8j� Qy
-������}ɗhd��I3��n@�Ԁv���6�B��x���D�-���9ۛ/��?G�-�F!����1X�[�Ѱ��q���krE�(,�Oର�#y��~ �V�����W��X�к��a�k����ٴP����IlR�"�����tj�qKw+g��
-�Te~���#H�jUz��_7�
-.Pʧ�S���]�D��3Zi���x�J�9����V����eKȎX��Q��7�u3��x��ת0Ob
X��1N~�x�f���Mj��3 �d�B���Hn�Jψ�YZ��`�b�
�D �R
-���ï�VЦT/L��"��n@mo�_$�d�1�`���
�He0��(�`~�ItST�>�[3�����Ֆ��{n��}��$E�%G�6��4�#�X�&��
m��2:���aol��z��F+�����︌�~��X�G�h�A�6�4��~���I<�Sݍ'2��<~N@&����AZ����~'�>�Z\�
l�g���v��
-2�[)��l����� 8��ׇjG{��x�#3���[Rʷ/XM����c�'�݀��-{ۇZ��S4,#ce9�����wwǏ�FJ�_N��s�
_J`����r��]���r+X������I���S�E�k�`��t
-�[s~|m���!`ϵ:N�(��v�f�)	�S kHL���<LAB�/@#�fv�૙N=5��i���m�Z �h�����LB�S8��#� Am(B��P3����hʑ�(RIH�����+�M��ʂ�`P�v�؈�>0t���i��k�.�vӀ}'x����� �"Al��%��3ىr�(��������.�(�@wD_��beY���6�W1#O�㤑Ls�9/*mLP^h[�Jt�i	��߂T��A�ԣ;Qpӆ�I|�s�^���N��P�G�1��*�3<$�k�k^*j���y'�q�Ԣ�
-�f�����m�bd���`vac�6�9���NT��b/$��኎r� %�!/Aa���ZH�{V���H1m�v���Uq
-�Q���&D;�]��콳.xF��W9��?Dx���՗��� ~UQ��$ĝ����v�<�i� G�e��}���`��D�Hbs����R0}��á�S=�?c���D
-D/^`��"b��;��c(�=�PU��$,�(�A��W〨�N���J
-�F�7���ؔi�c��0�ȪDH���q��(��Ѕ�^;����{�c�qf|I�MO�g�׎CR�v.�a+MB���1@���41 ��1�����3��:|8�LO�+�i2;��?9;~H^~����o���~<9�+R7�C/0���7�!�ťC��ۅ
-�0q��Q|���:	�1�
"�v,�G@}dYL��D=���_Ep�Y��!��<�~�u��ˋx	�q�IJ��d�Y*�
-/�
- ��!�<V�����ћ"56~��*��*Ml�ѹA��!LЎ�����A��8�p��тvxv畉ˌ��=_���n����T�2\�T�㝄�����t��(��.C�W��Қe/��ݳ�
\v/1X�K��_"m	�6|Q�kCH���׆E)��"^X�>6f+��4-���!"W
-��¤��Eo3�b�p�o;���y|>��L�|��V��_Ɓ���XM�����A���z�
-�H�{.�S�Ύҩ�I�Wc@�g�l/}_K�<�8���ĀՄ�Mx��c�O૮���*��(l|-NϚ��˰�*��hD�@:�d���!p/މT�x��o,�x��M���n�)�õ�4-���πbI|�9%�@���wz�Y���	O8�E�-�I�@7�1j�t���f׍XF����v2�DK_wd�`�L�[����t������x\���}Ec�#��Sy�܋����5ƏF~��H�,���XI��|���X��1������S�y<��硃)�v��E�о��F�ר����J�q�
+xڭ[[wܸ�~���G�D�䞓��3��f쌵��3����溛�4�c;�~��(E��	`�^�*|U@g��&������W�|��Ri��zs{��]�J�)�d��v��%ɯnJ_&�n|��Ս�.y����W�'���k��ݏo>\�h�N�#���\י����՛�W��R0l�Q�(�O������/��6;(��&KMYl>Q���*-J�7^��U�/g�}��\���Χjh���U�P���??�<��&�j��jW����TG&wm�ϻR�m�p���+�lk�
+�l������c��JI}�B<b��¥��Ej��i�3�k�Y	y���1/�4Ҕ��J���mn��0ta����Jd�ձ�+����)77ʦ�:nV~8VM��M��T-�������7[�Һ�@|��6T�I�I�y���:�&P3`w�����\��J>4��f:1�F=K�24��W�'{�<D�ђ��Zh�z`�5J:TYr���q�N�s۵��3�����3C����8���[�8���1��
M{@�.=W�#&�,Hn�v;���ה/֤KNz��4=��Cnk��-���;.��a�p-ƩHߤ>a�Z���qy���5S�>װ�j��;E	�"�+{�mE�}ܟ��j�����T	��OA<X�P�g9�,�s�TG��Y
+d���>�6U˹�G:K�*u^_heP�n9�E��M�[���x��T�ܳ��*95����Q������8�Є�+���M��3�zx���"�`,i�6�
+���������G��d�Ǻ�%����=�C��<)�&�sˀ9��0nP	�%�T$�{��ī��qy0�%[$�*c���ٻ�zl[.ڮ,�=�S)�]�ܲ����u���4�h�8�;�}��S=��D�?�/3�&�J����{�R{_��^�"I�a"h�pz|J���ei�}]�z�NGԸ�����k��+��P�4��t`E��ڤ*ws抄�w�o��-�k���P=�VJɛ�n	{`ُ���n
�]3u۝���IρFz)k��c��fϙ��<pN�r���p@��m���B������靴E	�Tʕ<,P��(v�>�0A�.��#R��h�M&��%�O'�`b-�'ݼm���l��Ii��Jm��W�0��)`��.
m��<�	�/S��K>��=l~�q:)ݳr�`cf�Օ�k�14e4�5g��5E�[�Q�z��y���cC��ޘ�p���5��fB��i�x�d�O���&�t���.���/�&3,�وD�B�V����95������]���`�dl��R���f��wA�y1�1����@�Y�A&�W�9������v��{I\"�6&�H�}w��J�|��+ئ�Y2�(���Xȃ"qf�Q�@��g������y��Md[�ܦ�!?��t�@��@0	)V4��8��u���=2T�Og��mUX�5��Χ �W��끹�Ħ�;G��gU:�\8�����,=�a5gȾ�}a�(Ivp�Z1�Z�4T�qn�t��A�y��|@|����B� �>�KĨTy+l
+�J�I�9h�w�/:�:UN<�o�AUN��CuDu-A�y�F���9F������u�Bk�hԣ�<?��%w� ]ս�݀��k�Z�_�shd$1i%�՚��[ �C��sOrU��p�0"g\��@��{Β����O+9�@�|�%���W�u��j�;yA�!�E:Z#�'}�G��2��9��֘�M5��Z�u	�
L�4G�쎿x��  DR̈́}u	�o*rG��k��܀q@�����3Y�YMdRh^�[ �"l�,0�G��7�\%��j�U�6.���E�,f*NN5�vZ1URڋQ��$�mb�1EAq����kf�T��:�7*���jM	�+8��Z�Jd"}
"���Ef�,A<2�\2�h�7��b>p�dlǁĬ�Lʼn�
+r�NK.h�RU�[[�ʀ#c-^�4���Q�Z)��_�j�6�z�cV�`�a�K��^@?>u��c��b���:50b����ض����S���=܅
+���.�ff�o���d���*���4sXZ�,�|��1�vޢ,����.���Y�ɲսˋqn��<���eI�6�;-�_FR��"���T��H*EPu6S^�+�s�̦:���aeL�IѰ��yfP
G�)����B���#Y����{�<�|�a��H�77C꜒؜�c��5Z�V��Xٻ˟��{�4VU
���M	Hۏ�V8�&R~h�mB���2�r�#��7�=U�SDs�3X���2��E������n��.|�I9�hCTЅ��P�ch������#Q:�Qē��QX����Esg���K<`{��Kf��ğ���(���ͻP蓿T�m���� Tu�K�uڰPȻ]�|�X9����O�b~Ƀ���*��\6�/�'��2S��s��;R-���k�X�m��m�0�R=��L;�B1��>�`�ʖ�'��(������P�����#l����p��9@�����!039 �24�/��걓fV݀���*��l�����R�t:�[�S
Fs�7_8�#���[�BD	3c���\�aDZ�
+7��䊼QX֟�Ya
G�%�@ڭ�����I���uƭ�H+�<K���i���ە�ؤ�EP-S+�����V�<n���lKG���&����n�\��O
��  ���3�L���g��6-�+����sR=��?�*(�
+0B˖��.٣���n�f(���A�Ua��(��c��<0�i��v?����j?g@�3���z!��L��9��"��J�0$F��@��~
���_L��M�^"� oEn�������H��Rcb��;�?��`x�Ql���}�覨}&($�f���՟�-��I��V���I��K�Rm4�i�G#�2|M�)��@#$etd�&���8O���?�V`
z����q�� ��6��`��l�5h ���t���x�� �!N d��y���Lxߑ�����wm�Nb}����~1β��P�d�RpG���}#wA>p0�Վ�^��zGf)����o_���?.AǤOr��]�[����]��hXF��rޟ;����*�􍔾����>���I��I�ԁ��7���V�=��-�	ܓ^�˧�@׊#���L��������C��ku��Qm���*�Sv�@"֐�.�%Xy����^�F�%��$��W31�zj6cӮ=~Y۾�@��W%eљ�֧p�5G$A��P�><��f3`'Д#�!P����B��WF�\��E������}`�ՙ?>�dw�"]|���N�67d;A�E&8��HGK`�g��tQ�2�5%]a]�Q�Х�ʲP]Q-lx�bF����I#��Zs^Tژ�.�$жB��Fӄ; ���<7��3�Gw��
���v總����X�Bc^�UgxH�E�4׼T�,���NH�R�E%x�R��?��;��<?�����Zm"s�S����g�^HH�=(�AJ
+C^��6	�����=a�b�h�`�����@/7L�v`3�69�{g],�*�D��6r�}��r���/yC20@����I�;c)'���y���yA���_�����h��j�������;�`����C�z���彉�^���ED,�
+�w�kU��P�{*�IX�Q~����Q���ӕ4�o~�}�)��i�n�`~�U����G��Q\�ϽvL����f�R��������`���8��\�V*���98Ec����ib@<
+`�c��	2��g��u�p���BWN�dv.��rv�����ف'�%��xrDW�n�^:`�/�o�C��K��3p��5a�/�����3tHc"/D��X����Ȳ�p�z\�#:3���³s4B^;�x4���Ǘ�<8���e���"T6,0l^6 @�	7B�y�J7���%��7Ejl�.�IUrsU��b�s�&)C��y;�qWo�$Cq��bE�����+��{�����#�q5��e���^�;	k!-���.�Q&W]����5�^�׻g���^b��	�.
+�E	>�D��m���׆��uM�
�Rb�E���}l�V\-ziZ$;��CD�:��I�#�U)��f���
+�v�����|���������s9���j������A�<U�w9�,h���\&r�Н�SE��ƀx�,�^���y0qķ�3�-�	[��0����W]�M-UBwQ��Z��5EK�a�U(wш>(��t~��I�C:�^������Xz񜝛�"��R؇kqiZv�ߟŒ��sJz�9����d����pʋ�[�4�n�c��s�'�ͮ��*��3�!'0<�d?�����p��������t��=�m����"��.��G��r��)�k���ރ��Y~ف�����\��h1��cz%��w�$��x.�C+R��Z��8�}=���Q�)�����q�
 endstream
 endobj
-1112 0 obj
+1156 0 obj
 <<
 /Type /Page
-/Contents 1113 0 R
-/Resources 1111 0 R
+/Contents 1157 0 R
+/Resources 1155 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
-/Annots [ 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R ]
+/Parent 1114 0 R
+/Annots [ 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R ]
 >>
 endobj
-1074 0 obj
+1118 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -7994,7 +8012,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.93) >>
 >>
 endobj
-1075 0 obj
+1119 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8003,7 +8021,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.94) >>
 >>
 endobj
-1076 0 obj
+1120 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8012,7 +8030,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.95) >>
 >>
 endobj
-1077 0 obj
+1121 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8021,7 +8039,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.96) >>
 >>
 endobj
-1078 0 obj
+1122 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8030,85 +8048,91 @@ endobj
 /A << /S /GoTo /D (Hfootnote.97) >>
 >>
 endobj
-1114 0 obj
+1158 0 obj
 <<
-/D [1112 0 R /XYZ 55.693 823.059 null]
+/D [1156 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-262 0 obj
+250 0 obj
 <<
-/D [1112 0 R /XYZ 56.693 549.456 null]
+/D [1156 0 R /XYZ 56.693 549.456 null]
 >>
 endobj
-1115 0 obj
+1159 0 obj
 <<
-/D [1112 0 R /XYZ 74.626 177.833 null]
+/D [1156 0 R /XYZ 74.626 177.833 null]
 >>
 endobj
-1116 0 obj
+1160 0 obj
 <<
-/D [1112 0 R /XYZ 74.626 153.923 null]
+/D [1156 0 R /XYZ 74.626 153.923 null]
 >>
 endobj
-1117 0 obj
+1161 0 obj
 <<
-/D [1112 0 R /XYZ 74.626 141.967 null]
+/D [1156 0 R /XYZ 74.626 141.967 null]
 >>
 endobj
-1118 0 obj
+1162 0 obj
 <<
-/D [1112 0 R /XYZ 74.626 130.012 null]
+/D [1156 0 R /XYZ 74.626 130.012 null]
 >>
 endobj
-1119 0 obj
+1163 0 obj
 <<
-/D [1112 0 R /XYZ 74.626 94.147 null]
+/D [1156 0 R /XYZ 74.626 94.147 null]
 >>
 endobj
-1111 0 obj
+1155 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F24 410 0 R /F26 511 0 R /F20 350 0 R /F22 510 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F24 458 0 R /F26 559 0 R /F20 398 0 R /F22 558 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1123 0 obj
+1167 0 obj
 <<
 /Length 2380      
 /Filter /FlateDecode
 >>
 stream
-xڭ�v��u��`�α0Ed3��i�x2i;m��bzX�i@�q}��t:���q��>+�v^����~���Q��T��q䭟�8	�L{).뭷�o~�\e6���?���\�(���?,#����
-?�?�{X�"cU���B�+6����^�[/�X( zj���(�m��~�-��셁�R� �IU�f0������79�6l���C�Ql����ߜ:���s������W��˛H�+��(�@�pv�<d6TD;�A��
-,p@P�@�cLiƀ��1��,�(H����b��NL`u4&���ʄ��Ǿ�,��߳2�Š���O�Pv�����m�?V��
�vő�Z�y/�y��^d���y�g�������@f���	�ac���|�>���To�~#�?���g�Ӡ+6M��1@�Ì��Ut2��-.p����f�F"��iy������)�
�~���ʏ$b8���3��#K����}�N�&
-���r�+Z'uA��7��GG��o���<P:���Rȱ{$,�L��‡ۢ;U��,��|"Z̢��ݞ(`x@F~��I�A#�����$|�q�ʪ3p]���j�2�,������ą��@�Щ	ҘB�]*20Җ;&����-���`V�{5B�����6�1�7����D~D�vƂ����\��7�Ϩ��'��c�t��C=/R\�x�<�_�M�t�+�6�-X�;��N)�LI��	��,�Ȩ�^�p#ghx��!8<d��<e�8F�F��$ɬ�䑉�7'��Dz����y%����q����K�g�����X�G���v��6�y3�n˾�}��xE���f�F @����`�u}�i9��<cE�|��z8_���,�.΀��թ�H�[�{��4a�4��eM��,B�.��y��i��$(����v���b�OH�$x�d�0����a���M~�lyOB���?@��"#6����$x9|5�$RDo�1�X����'�A�;�nb:����_@����\$C$��%gWGkd�8؂䔔б]�T\�{>��W'�\r�.��B�/E�7�g�)c3W52�X� _u�*��TK�9�w��`�h_;^�9�J�W��B��8������n�"����!�$$ԫ�"r���nK0<��,�+�S7N$�A��ܕ�sW3O�ˆ
Y=Lw��2�t��
���h�VNܷ�|���@˝C�*��3�Y �����@�q������9�'�|<h�2.)����>�؟��B(�н��䝌(u���u�9By�9Z2��M��Sp�3�����Ů�k�&�!A�@���Exouحl��1�xB.��B�M||�}�īi���TO��@[~L�.�+��r���9#b�SUcBhvN�(�P��d�MW����bSv°��ё�&B����;^Ơ��IJ�C���nѹ#�W�u%�����T�~��
-�l�3aN��.B�u�������`��3���<���}�s޽_S�{�ܾ�+V<O�jQ*�^O��C��>e��S�����S�9��-���Vr!'N-� j�/,���p�89u6���K6h\���Ubկ+�[Ռ�@i�O�y7L��W��y&�X��<��C�I�Em�5�Yh7���s�!���c�sM$����mG���l�T�I<ב�F`����'���&}�"0�6�	��k�`�	����i1�j,�Jc)��T�+��:���H���/���@�slZ�XBJo��h�b�:h��s�捂OMUq���8So�
-+ e�]ɎS��Tw(��#;/)���Zglŀw&�'�r��l`��A<��X�L����j�A�1/�5�>�(52>��b|a:�%�n����AX�����{���no���܃K��}-��Y��*;r5�(	Bc�@Q2�����.)��;��>��lν�UJ�/�8||��i}-�$I�|K)I�-��$�[F_�"�D���I�:�^	�
-Q@���JQ�R��Kz/������T�ȉ�؛�_9.oR�B�D	���E%>�{tHꜥS.xBy��ѱŒ�Ka{�'q˽���T��F����l��lޚ��d�To\%JӀ�]Q�Sa�\�s�k�3���7,�%�>a�o�"o���U��2�7V�',d�v
-ƣ�-��
-��뽭��YG�Č��lPn�7-���Gm����5	4�kn��o{���<ho9���W���ϸ���a�0A���aO���}�-���"4��Q	�{�4tZ���P��%8a���/��,™Dd=y}4�AR,cq�I)�rHlQ^�ɜ.Fu�~Sg91�O���0�U�oN#���K�
+xڭ�v��u��`�α0Ed3��i�x2i;m��bzX�i@�q}��t:���q��>+�v^����~���Q��T��q䭟�8	�L{).뭷�o~�\e6���?���\�(���?,#����
+?�?�{X�"cU���B�+61���?/ޭ,�
=5P	m`��6��o����~��@g��L�Ϥ*H3V�����[6V���i��(��S�oN�S����{����+���M�Lj�VAZ�K8;�Q�
2*�� �J8 �H��1�4c@}��Ff�d$�GP1�T'&�:��reB��c_n�Q��Yta�R��'^(;��YǶy������W��Hj-ڼ��Fd/�_���3Oms��~_ ��~b��0�1	s�}�A�vms�������z��3E�i����� �aF�ÿ*:��8�z�G3@#a�Դ<����DyC���W?�V[�G1�
+W����Hz�����o�>F�y���c��-������Q	�hࣣ���7��|(��P~)��=t&tZx��mѝ�^P��r>-f���nO0< #�^�۠a`�ow>��xe���M�j�Nk��Iv{��`�BI
+g @��iL���.
i����ۃR�
��spq0+��!�z��	x�͘�rwj�"?"t;c���pc.Uś�g�UÓm�1T�h�).u<n���&q:�^�X��,�O�
+��R��N�Ws|dTp�d��34�h�2w{��A�^��F�d�{�������cY�}�Լ���G�ϸ��By��%Ɖ3\�[�C,�#@�o;t|��׼�o�e_¾�̎����er�L#��[t���ƺ�܀��D���n�\p=���FL�@g@W���TS�­�DV�0V�����N
!pWwx�<{_�4�~��r�Yp@;c�Uu1g�'$a�z2r�n�ȰQ��&?G��'�bu� �b���^}��G)�7�|��zAד� �G71\�r�/�nT�q.��
�F������52vl��rJJ��.�*.��=x��l.��	�y�b!ė�m������A,F���:�F�QG*�%��;�D�F����yŜ?y��+��C![r�DNG�	�r7`���R���Uv9~�u�%�j��r��'�ߍ� VS��ƹ+����eÆ��;ȋL`�\y��Ub�+'��|�^�L
���!Z�ř������`l��8P�M�q����ē}>
+�
+��?�ca~[O�O�j���
+�^�l�NF�:�[ڿ:�!����-�F�&���)����~���bW�5iא ���}~�"�7�:�V�_�O<!�c!�&>>��i�մ���'\��-?&R��J9���ٜ�驪1!4;�^n(|[2Ʀ+xFăm�);a�rJl���X��E�E����?/c�}[bYڡ]Zl��ܑ�麒JV\zh�S?�cY�ؙ0'V�N��!�:	�U���
+`JN0��D�?{���>�9�ޯ�[��_n��+���W�(A�'����A�2��ͩ������՜\�A�b+���vaP5��in�D��:Rs��%4.S��*��׉d���jFp��4�'ټ&���a��b�����ա�$ܢ���,
+���E�9אf�S�1ù&��JQ���#Ua�6�i�Ԥ��HW#�gw�?�|������}�����̊5K0΄bw��F5t���X��u�x��WxQJ��b$_`�JG�} �96�k,!�7��W�X1l4ɀ
�9r�F�����8Zp]H���E�����dǩ��t�;�ԑ��K_u�3�b�;��C9wu60I� �K~,�V&�P�T5ԠĘ��f�U����_1�0��^7f��� ,pgd|u�=��������a��%M�о��,I`�9��C��1g�(��dh�t�
+@��E�K6���*��R>�PŴ�B�$H���$��Nb�-��C�����?D�ݤY�{�{�(���{���k)��%�XPSf�M�T�R�DA��Ư�7)h!K���
+�Q�"���x�=:$u��)<������b����=ד��^}�P���M��k��Hq׉ci�Si�	o���
�y�7�	�i�Ѯ�驰c.�9�5Й�����z�0�7U���O�kd��+E��s;����W�S���V��ᬣ�b�ed6(7���b��6��y����5�V���pI�c��������+�����g�qk�Q� E�h���V@�>��p�p�
+�����	�=_:�]g�D�L��0�z��
+�f�L"���>� )�������
+9$�(�R�dN�:K�������M�O����7��[�|-K�
 endstream
 endobj
-1122 0 obj
+1166 0 obj
 <<
 /Type /Page
-/Contents 1123 0 R
-/Resources 1121 0 R
+/Contents 1167 0 R
+/Resources 1165 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
-/Group 1126 0 R
-/Annots [ 1109 0 R ]
+/Parent 1114 0 R
+/Group 1170 0 R
+/Annots [ 1153 0 R ]
 >>
 endobj
-1110 0 obj
+1154 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/img_doublepeak.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 1128 0 R
+/PTEX.InfoDict 1172 0 R
 /BBox [0 0 460.8 345.6]
-/Group 1126 0 R
+/Group 1170 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -8131,7 +8155,7 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 1129 0 R>>
+>>/Font << /F1 1173 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
@@ -8162,63 +8186,63 @@ Yj
 G���tш��t�O�e�w��_>�|�ϟ����o����~8�E���rR>�N�,��~�y-���<.�N�&��Bÿ����3��̧��/?}�|������i:D��Kq�k�;_gQ����"$��g��9��y���?}>����0�O4
 endstream
 endobj
-1128 0 obj
+1172 0 obj
 <<
 /CreationDate (D:20200826172205+02'00')
 /Creator (matplotlib 3.1.2, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.2)
 >>
 endobj
-1129 0 obj
+1173 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 1130 0 R
+/CharProcs 1174 0 R
 /Encoding <<
 /Differences [ 32/space 46/period 48/zero/one/two/three/four/five/six 56/eight 97/a/b/c/d/e 103/g 105/i 107/k/l/m/n/o 114/r/s 117/u 119/w]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 1131 0 R
+/FontDescriptor 1175 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 1132 0 R
+/Widths 1176 0 R
 >>
 endobj
-1130 0 obj
+1174 0 obj
 <<
-/a 1133 0 R
-/b 1134 0 R
-/c 1135 0 R
-/d 1136 0 R
-/e 1137 0 R
-/eight 1138 0 R
-/five 1139 0 R
-/four 1140 0 R
-/g 1141 0 R
-/i 1142 0 R
-/k 1143 0 R
-/l 1144 0 R
-/m 1145 0 R
-/n 1146 0 R
-/o 1147 0 R
-/one 1148 0 R
-/period 1149 0 R
-/r 1150 0 R
-/s 1151 0 R
-/six 1152 0 R
-/space 1153 0 R
-/three 1154 0 R
-/two 1155 0 R
-/u 1156 0 R
-/w 1157 0 R
-/zero 1158 0 R
+/a 1177 0 R
+/b 1178 0 R
+/c 1179 0 R
+/d 1180 0 R
+/e 1181 0 R
+/eight 1182 0 R
+/five 1183 0 R
+/four 1184 0 R
+/g 1185 0 R
+/i 1186 0 R
+/k 1187 0 R
+/l 1188 0 R
+/m 1189 0 R
+/n 1190 0 R
+/o 1191 0 R
+/one 1192 0 R
+/period 1193 0 R
+/r 1194 0 R
+/s 1195 0 R
+/six 1196 0 R
+/space 1197 0 R
+/three 1198 0 R
+/two 1199 0 R
+/u 1200 0 R
+/w 1201 0 R
+/zero 1202 0 R
 >>
 endobj
-1131 0 obj
+1175 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -8233,10 +8257,10 @@ endobj
 /XHeight 0
 >>
 endobj
-1132 0 obj
+1176 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-1133 0 obj
+1177 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -8246,7 +8270,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-1134 0 obj
+1178 0 obj
 <<
 /Filter /FlateDecode
 /Length 237
@@ -8255,7 +8279,7 @@ stream
 x�EQIr!��+��+�Nͩ��k,3IN`k1i��-x�!��́/�|M�4|72��:�pO�.ܗ˂g–�WT�w�/]�H}w��~fd{�H͐��:�B4&�!=#2�V,s��)�R�([�.ꕶN;���#�o�#��JvMl��:��˶.�:�$�vaqj�!"�uc5���N"v����0�Q$��g�q&�M�]9�y��V*9�>^�Ƅ�t��c�׶�i��_�>}�����?��\"
 endstream
 endobj
-1135 0 obj
+1179 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -8264,7 +8288,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-1136 0 obj
+1180 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -8275,7 +8299,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-1137 0 obj
+1181 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -8284,7 +8308,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-1138 0 obj
+1182 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -8294,7 +8318,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-1139 0 obj
+1183 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -8304,7 +8328,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-1140 0 obj
+1184 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -8313,7 +8337,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-1141 0 obj
+1185 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -8322,7 +8346,7 @@ stream
 x�ERKr�0��\ 3�g��NW����p:�<�	2=eH��6�d���Wd�Ր�F�D��)���򹼖�\�n�J�?��72ͮЪ�G�6�F5+#� C�zV���Q�d��v!�:S�p,�C��u�)�mA��#�o<���r��Ln���[��:[�m@	�s�`���	������)(U��I­�\';P�Ъt�7�9`Ò��ho��>��F����, ���f��1�H�'�N=q:őpI8�@�������/����	u:eM�ž���B��Rq�"n]E�lO�	�?*�3b���	�Ԓ����������枾�?�9������
 endstream
 endobj
-1142 0 obj
+1186 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -8333,7 +8357,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-1143 0 obj
+1187 0 obj
 <<
 /Filter /FlateDecode
 /Length 81
@@ -8342,7 +8366,7 @@ stream
 x�=̻�0�>S�B|�����[�D�|�!�
n���Kw�}�z���Ȁ�Sj\N��i}�}j��KՉ?�����k
 endstream
 endobj
-1144 0 obj
+1188 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -8354,7 +8378,7 @@ x
 "���}�
 endstream
 endobj
-1145 0 obj
+1189 0 obj
 <<
 /Filter /FlateDecode
 /Length 255
@@ -8363,7 +8387,7 @@ stream
 x�E�K� D���#���<��Ur��4�L6v����J#�,�y0����d������"��*�X�՝)�̵D���2r����
箜T��Q�:�:8��������,ʾ#�2l�96p�a���Vw��D������v�l���ƾ���N6��%�~�	L�M�u�@��)zr	��q��@���	�l���A�N�q����:Ý��W�w�;Lk��/1Ɋ��E���=���əcr�}C�\���A�����P�f�
 endstream
 endobj
-1146 0 obj
+1190 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -8372,7 +8396,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-1147 0 obj
+1191 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -8383,7 +8407,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-1148 0 obj
+1192 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -8392,7 +8416,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-1149 0 obj
+1193 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -8401,7 +8425,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-1150 0 obj
+1194 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -8411,7 +8435,7 @@ x
 ���f�W����7y
 endstream
 endobj
-1151 0 obj
+1195 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -8422,7 +8446,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-1152 0 obj
+1196 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -8433,7 +8457,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-1153 0 obj
+1197 0 obj
 <<
 /Filter /FlateDecode
 /Length 17
@@ -8442,7 +8466,7 @@ stream
 x�36�P0��C.���
 endstream
 endobj
-1154 0 obj
+1198 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -8456,7 +8480,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-1155 0 obj
+1199 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -8467,7 +8491,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-1156 0 obj
+1200 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -8477,7 +8501,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-1157 0 obj
+1201 0 obj
 <<
 /Filter /FlateDecode
 /Length 88
@@ -8486,7 +8510,7 @@ stream
 x�5���0C{O����ɥJ�o��Ѐ�w���:A�)�.n�Wz���&���LC��`EՋZ-_nc�b*�?�$ �u�^8����{
 endstream
 endobj
-1158 0 obj
+1202 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -8496,14 +8520,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-1126 0 obj
+1170 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-1109 0 obj
+1153 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8512,68 +8536,64 @@ endobj
 /A << /S /GoTo /D (Hfootnote.98) >>
 >>
 endobj
-1124 0 obj
+1168 0 obj
 <<
-/D [1122 0 R /XYZ 55.693 823.059 null]
+/D [1166 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1125 0 obj
+1169 0 obj
 <<
-/D [1122 0 R /XYZ 56.693 717.368 null]
+/D [1166 0 R /XYZ 56.693 717.368 null]
 >>
 endobj
-1127 0 obj
+1171 0 obj
 <<
-/D [1122 0 R /XYZ 74.626 119.648 null]
+/D [1166 0 R /XYZ 74.626 119.648 null]
 >>
 endobj
-1121 0 obj
+1165 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F21 383 0 R /F20 350 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im11 1110 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F20 398 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im11 1154 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1169 0 obj
+1213 0 obj
 <<
-/Length 4954      
-/Filter /FlateDecode
->>
-stream
-xڽ[[w�6�~���G���7�LN��I<��^[�=��y��i�1��4ٶ4�~�6�M]���~p�F�P��W([]��Տ�^^<��ʭ�JK�������i^�U�M֯.6��%��y�����O�ޟ��'/޽{�}��{��}�ӫg��z��w�P]�<6���~��g�.��㙂e���V�|j�]������l������Ԕ���ܮl�Ң�b����?�e�R�}�z����f`*�~��O�U�M�@�Ojn��k�3��uG�2��+������V+��>S���&�ƬljL����|�$ӧtZ���<�����1�+��\�̈́�j?P/�[������2��C˲�G1$��\��F:�M<Ҧ� ��ʈ,Q�&+ˆ��bF)XM�\3�e�K�J�H�DS�z�V�Ѱo�7����\"�H]V��>_mN�o�ο9;W���Ҭ�E�A���u��m�,��O�B�Z䯅cP��H�t�5���i��\��\�;t��/g"�X��"�l9�WJ�r�����C߄/��T���VZ��w�*����YWc�w����."�	�O��]W���f��Ҷ���=h��R�����,�FU�&̿��=���`�V�ʦ���~4{�s�����8g��qKS��[F�g�ָ��}�wk�%0꺒ff7�j+�o�tͶ�V�J��@��T��L`)
-��u�
<W �ƂD��O1u���;�3�3x�`x�?�h��&�����Vz���z��q����_�S�s�~���Z�����`Ik�N �f���'��>'f:8���|��~�@k���g�-�X��OwyudJlO��Z/��c�eR�#��A?��١�+�/	��*�_^�z������?s�ͫW��ַ���"������ �������W��"c��ʆ�%ڲ����E�����Qn��O���~��p@�3i����h��)F}?����5)�	�@�qO�K��4s��,�9���T�J�Q�s-�K�r��Z�:�`6���%
-c�M��o����ue��Y����\
�]?�Ȫ�P�+��M=��R'㮂�쮸�?����xM \%�ŗ����o��4:)�܁z*
'lk�:�s��m��'���s+R�O6=����y'P ��>��Ȑ�$����﹛�,��){�E܊�z�\����޴R�x�5�GvQu��d�X�k�,?�-�qː�?�#�~��띚�#���0��wO��9�*���ͼ�{5�\U&7K��A�!n���u
-�a�<��3�qT�GA����qa�YXdM�2�?��ҕMH��}�Uһ�;�f�_p����vu�	5+�Yİ��6�H4�Ǜ=�Ĭ��`k�B�i�q�\�Ѭ�N��*K��%(}R��乱��b	��u]Vk�ʧ+���T\�h�a���'P���Q��=����K=^��oUl2��e!v�(t�V;�i�^�2���aߎh
�˓�3�T*���_]�r-U�A����D�dNe�����;y��}�۶GNA�.�m�#m��|8�z�ud��B�$h��&-�t¼F�*`u�7R
����V�h�`�@J��� J�[�&�G���E-?;�ǁK��N
-�1��5�n S[s������������/
��5WX�r's��ǰb%���pyJ�����L�V(Ʀ]D.ii����Oۏ\@a��w�����Fl��?4��������AfY3�ZDQ�����j�h�ezT��z�?�H���qs3�6S�-���NGȍ��^3�|�}��\��#���@(��Q��̑�a��q��Z�@S�?h�*�2�2k���72<bV��?�9�sׄ926�����c]��Om$1��*,�$GXEm_�����lM6��j��*�M@�!C	��`�WbV�҆�!�]Wa`���377"ނ!�M���<�݀K��S��f��OL	X@�')�d�*�<�"A� �p���أ0���N~@�Ǜ�EJӠmJ�>7"���o[W;te�+�.}S}��M�+�z��`�f�^b]B�Z0��@�u��a�FHk��I.�]����0�'iyi#����_<v�\�Ih��P�msE氌䊦���������0��Q��c�	��"�Q�.EN�E�dʓNrA��~Ǖ��b��B#]<M�E&K�b�,��.C��a
�+�m�
-k.Ä�~q���>���t�����j���XD�x豍F�e$pKxIۃ�a�C�+qQX;�ƕ�ї�
"��� �"0e\�D/%8�iSf�F��YN�@�R_Jzq�͠�0*�l`�6��n��
SD�����n�z��*y����{1�Y0}μ�~z���*�C��(��-����M���xRNЍ+$	�t�cEl�*�l��^�r�&0D����!����M�����
Z�G�x�;�pe91�S�g'�������ş89�H�$���ܟ�lr����f�"-�j�[�@2'��ר[���5����U�3�2�g�[d9����0k��xn��W�ճ�,�;$`o���3��q���M�Os��NKk��>�YO�*X����<���/��%rN9�l8��z��px�pl��A��z��J��a�V�Ù���k/ګ~�s5Y��j��Y�/Ӻ�I'CRb�D1�)�U��>���쟉7��	P���,�P8�%6�O)���	�JDVK��+996���j�fƪT�\�����ށӦ��fk8/��Y@PU;�\��J����=Bnz�p!�7H�Ӯ�|�jJ1F�������̔�
-^��~�3�Eb�p�u����� <(Z��+Mj�?M���[r��8l9����r8O�B�Q�)sq�в/��Q63|�x
Ϥ�\k��S�‘t`���o6\!�ɝ�~�Zc�YcY�x#��t�L��.XqL�Fì��vO�R�S"~'\����*��iI虦c(��@�9�rag]}U�yb�s���$o�H�0y/�`Q)�d(O44���.tz����2��߉��9d��3�v�sv���^V}aG1
-̅�I��X���p7��1	ޝ"��i��i�����L�����R��z���cKf�n�q��4P���2�=��1YK�t^�����R��^�D3�x����c�SU8�
-����S���P�ʴ�u�n�Z��Is�Wt�e��Ž�q�Ͷb'fLH�B?���aǍ����*�
-�z�FQcԱQ�K��s��E�Q`�_��w��6D&���bB�M�`JG�tJ#@�;��ٍ�+TY!`�G]K*%����=�=񃊨�m���-���sa�2�A�<�m�5�bH��,?G��s�� ���(}�<�����;�T{���`��M����#t���Gywl��4�p��C��^LX�f7(1��
-}sϦ
(�ڞ�QN�w>%�N��h�h]>�l��sT�۴,���pq_?����mZ���9i�I��n+4o
-�^� ���?�=$�On���>]'�*څ5j~K�b}��t�@n�K�9��h9�d��d�>ȴ���4&��]����1M�ú�8��q ���r=!�W����#2�teN���0
-��������٨>�e�ն�)8�V(��YT�4��(�Y~0
R\R0���6�
-}}��j���%{��2b��.J����UH�S�3�&��M�b�&���݊�U�J�R�u��I* ،3aq�i���8���o$C�lC���ߪ�$��$=�Kwxy"��4��z,~j:��Xป�HA(�_ZO�ҕr���JSK�
-P�e���Kj���€^3�M5�W���TҌ~��@��<(T�s�^�)�w|;�e�,��__��
-`M��_����Nl�6��(/A-�	ո�����9����&|�šg2�̏����O6���
-�g���᳃���G�*�8�7��/����(��'鋅�g����e�������U�����b$)/R���(�"~Fd�.�4�a��%뭙�uȩۈ7P���#A\/�n��֢L�Z�/�S��BE���S�ٛ^ý��-F��3&���k��_q9a�0�v�r!J���0���N�I�w�!9��r��)���=(�w�����Y[�p$��q��m&� WV��[�EVŇXb��2ͳ#{��)zE�/�>B�k,����!�*�LD�GEԁ��E46y�뫅��_Hʭcz��'�k��V�a+��Щ�uf����Tf'ݍ�������rx��蔝>�Hϭ��K���
�O6_+p�Q4-hd�%y��܏�r��04a�&H_~aN����s���ݡ��,>�-����TȮ�w"E�iL
-�iV�=a��N����B0���3n�O����Lsx:���/x�?C�΢i|������ͭ�?�e�^_�|����~y�u�C�w��}�7�w^�����Y(�dwO���!���HI�4p�t]4���ާ��v��N6�A,y���Qɡ��19��
��� (�kX��@��f�x�?Fr����G���#8':1d��4�B����w��-c	����=�U����?��b���s팹1�NY1'�	�0�b����k:���t��e��N�����'���e����3vO���DQ��%�tM���l��l>7!gG�EnH��h�� �|��� �=)H�o�״k'�E	i�:����
-˳�v���a��AA��ʸ)���\�F�N�s3�a��
-�c�V�`O�Dg���w�U����b��ޞ��Ɛ�k�
-4J8���N^��	ܰ3sx+Q�7��ѥ�����|6�"���D�@��&��p����	��t�o׋T��U����
C�8�<�Q�-�%�K˜L�����~����ų��[��
+/Length 4953      
+/Filter /FlateDecode
+>>
+stream
+xڽ[[w�6�~���G���7�LN��I<��^[�=��y��i�1��4ٶ4�~�6�M]���~p�F�P��W([]��Տ�^^<��ʭ�JK�������i^�U�M֯.6��%���e���W��΍Γ�޽?�>y��������Շ�sm���;l��j����_��٫�g�x�`�l��U2�ZeW�����=[m�ﯫ,5e��B#�+[��(�خ><��g٣�{���)��������u�q�%�듚[���L%c��L��J�}�#,��ʧ�����I�1+�S�be)�2���)�y�:����beL�J�:�yj3�������4��u��L����߲,�GI�/W糑NFj���s��A�2"�G��Ɋ0����Q
+VS2׌s��u��<R/є�^��y4��Mjk�%�H/R�����W���[��o��U4��b}���i�:b�1K'�Ӭ�G��k��?9R�N��r>-��Kӗ�z��nT��L�� �Rdy�-��J�R����]E�&|v8'ܠJFg��Ң����PQ�ܴͺ�����tt�M�}��캺��4�5��u�-�A{��Z�}�$g�4��6a�
,�0���k�:W6�6?>��3��w�X���9{5�[�*O�uaDzvn�����}�^��+ifvCa��b��M�l+ne���	ԙM�)�����]���sRi,XA	�S�/��c=�9�������ii��M��h��a��'��G͎��5;E:����;ѩ���^�N���f��9a<~|�sbư���3��7x��W�
�&K�x�ڂ���t�WG�Ķ�t����<�Z&�1����#��Z�2y� ݯR���Y���k.^��3߼z��i}��.�����˟_��?^���{�A)2FP�lxZ�-���j\d*l�,5�&��d��]`)��=��q��`J�f9�b��#�j��*P����*T����4�M3ZͲ���OK��4e9ג�D(���0�e̠�f��ZO^�06��tk0�6���iXW&���k�}�����#��Z��"������s�-u2�*8��[��S�ZZ���U"_|�nZ!a�o����M��"�����p¶��9���F]}�Z��=�"UN�d�3���w�A����)M�?(����)H��o���\ĭȬ�ȅ;n��M+�P#xdU7
Lf��u���Aqɂ���w��L�:B���ީy92�z	#/�{�$x���R����W��U%`�q����F�;��Y��a�Pȣ�8�GE<q�L=�P���A6�D*��c�(]ل��n��X�1 �;o�������~�iWW�P�����E�iC�tA�~��cH�j�l�f.��fw���:�����d�_�B��'��J��,�p�Y�e�ƭ|�bXLmA�e��F��|j%y�c�-���5k�fQ�&pn\b(�B7m�C����!3qۮ�����<�?sL����a���u(�2QE!�QKK4L�T���aO.˓��Q�Ǿm{�����޶�0��χ��7\G�K.�I���PoR�K'�kT�V�J5(���[ݣE��)��f<�(�nI�`
~/��@�̓�.��;)���H��|�/��Lm����n��zD��4(��\a��ʝ�}�Ê��8�v��)=Dû[3mZ�t�v�P���Bˏ?m?r����˶������ު�3��e�DkEEN/����Q�?�]�4#e�<͌��)���l	�v�8Bn�T���h�{�ld����i�oB!d`��e�,K�͈�n�r���*�A#T�1�Y��|`8�����:�������&̑�)���v���j��xj#�p��Pa9$9�*j���Է7,`k��W#mT9o�J�T����6E1�
+��d�����l:N��d��\be�j76�~bJ�
+>I	�'�U�1��1���E��	�7mu�8���-��P�m�P���AI��ۺڡ+��]�t��$�h�pX���f��k7;��z
+�ւ����~��6BZ3wN�p�G��%]���@>I�K�
�D7����8�HB3�
+�l�+2�e$W4�/?�G��P�9����Oh���
+t)rr,�$S�t��>�;�Է[u����iz,2X��g�v�u�0�k(W]!nCV@Xs&d������1,Uo�kW�^W�ݴ�"b�#@�m4:,#�X�K��{u�^����a7���Ln��,W��)�
+$z)�Y�L�272��r""o��R�Ћ{�o
�QagS���u#Do�"2.���uu3�;��Wɫ7�ދ��2��s�}�Ӌw0 W���E�o�6~nO|ēr�n\!I(�#,+b_P�e���bh�05��!u�YXo��Ud�m��?zD�����+ˉ�Z?;�o��/�.�����@pG�$�$����g���܄43G�iYW{48�J�9�w(�F��J�L�)��t�0��a��yp<���"ˁ>_N�Y˘|�s�]츢���e��!{��/-��9����m*}�k�uZZ3���Q�z�W��\���%|Y���(��p�qfÑ��C���Ë�c#�b�� ��&8U�h?[�Ȱ����w\{�^�;ж�����mWs����O:��&�)M����$x�q�>g�L��~�L��\W\g���.��}J�>��M�P"�ZJ�_�ɱٜ�Wc53V�
+�J%���4�(��6�w0[ñx����ڡ��T����"p�{@<���A��v
�TS�1�%��%�`}f��$P��Þ!.K��H�۽�m=6��A��Z0��_iR��iJ�e�ڐ�D�8`�I��(W���yZZ�BM������x����k�kx&�Z�O<�2����߷}��
+aO�\8����#��˒����#d��'w��cB6fŵ{ʔB���;����p�6W��OKB�4C),��ɔ;��
+����ud'y�F�����{��JY'Cy���w'w�ӳ�M��)}ж�N���!�����뜳��(���B@��;�Q`.M:�
�"V�����N�I���=M[�N����H�g"�~ϔ����[2�v�׈��p��r8�X=x�i�m��Zz@��2��?�H�:���%�����K��k����T�u������bU�e�sv��L�+7����,��v���m�;1cB���%E0;n�
6�Vq5�0P�0��7�����_�]��,��2~��0�!2)6�m�S:b�[P�����n��X!��
+��8�ZR)1����TD�m���ni�F���K�!��n��1u�CJ�f���9⎞˄��F��s��G�0�߁���/��#�
�l�||,�+��P<ʻc�ܥ����������b�:7�A�iU0��Ә{6m(@���܌r���)wz�FCD��d�'��Z ݦe��.����A��h�:5��I3O"��p#X�!xSX���p�i���� �~r��M���:oT�.��Ps��}�[r|X�Õ��r��X��I_�F��)$+$$��A�m��Ф1���
+�\��h���KǡO�����	н�
�)��+c�pj��Q`<Nn��D�,Go�F��,��uHL��Bі΢ꦡG!���i�⒂L��T��SƀW˧8�,�c���+�wQ4��B��j��6�`�mr��}0��-@�V�:U�:��3�OR�f�	��`EH�U�s��/�#�fre��V�'��'��\���Y-���c�S�ɼ�*��݄D
+Ba���z򕮔�X._W���ZU��.�ͦ^R���Dh���j���f���@�A�������N���I.�fa�dX�B�
+��P�k������ubS���Gy	j�O�����t������ �}7����<;��f~�H��~��	P�?���D>�T��I��-~ٌt�FQ�>I_,\P�8+��-_$/�p$/����04O�#Iy�"��fFA�{�0"�tѦ9@���.�Xo���CN�F��
+>	�z�u�_��e��}Y�:�*Ru�_�������n�0�L��0Q�O^�����	3�q�K�QJ������$�t�Lr�3
��yL���MAĽ�Aٽ���v����#����'�o3� �ڰ�>8��,�*>�sT�i�٣�VN�+*|� �*\�`1�?���Va�c"Z<*��D,��ɣ\_-F�BRnu���?�_����[95�N�3��-�2;�n����>�Û%E���aEzn�|�\Z�Gn@�x���Z����1hA#�.ɫ��~<������	�6A���s�W$��Mn������g�o��\�Bv�0�)ZPLcR@O�b��5�pBȿ���??�q{~�g��`���)(�G�����uM��l��vln���/s���"��c��D-�˃�+�����3�����
�_�B�%�{�e
��FJ���#���_��H�>�'��<t�b	�S���Ju����l@H�/��@�\�re�K�D4K��1��$~<�
n��9щ!�����*UΟ����mK(��E��a�������K�-��kg̍�vʊ9�O`�a�5��X�	ެ�{7
.��p���6x�O<�]&�.c&N_��{��=%�|�(��k����e�g�	9;.rC�-7D[�	&૴'��IA�#��];I.J08HcHչd'�WX�Ŷ����
+�P�M�7x��r7��tpb�����U�B��{�'b8�p�d�k��Nn�$x��<5��^C�U�Q�� �w��4N�����[�"�)��x�.M��8�9i�7&z41����>LH�P�S~�^����4]]o��y�y���o�/	\�\`�-\f��ǿ�.�����
 endstream
 endobj
-1168 0 obj
+1212 0 obj
 <<
 /Type /Page
-/Contents 1169 0 R
-/Resources 1167 0 R
+/Contents 1213 0 R
+/Resources 1211 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1066 0 R
-/Annots [ 1120 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R ]
+/Parent 1114 0 R
+/Annots [ 1164 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1209 0 R ]
 >>
 endobj
-1120 0 obj
+1164 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8582,7 +8602,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.99) >>
 >>
 endobj
-1159 0 obj
+1203 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8591,7 +8611,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.100) >>
 >>
 endobj
-1160 0 obj
+1204 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8600,7 +8620,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.101) >>
 >>
 endobj
-1161 0 obj
+1205 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8609,7 +8629,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.102) >>
 >>
 endobj
-1162 0 obj
+1206 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8618,7 +8638,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.103) >>
 >>
 endobj
-1163 0 obj
+1207 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8627,7 +8647,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.104) >>
 >>
 endobj
-1164 0 obj
+1208 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8636,7 +8656,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.105) >>
 >>
 endobj
-1165 0 obj
+1209 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -8645,110 +8665,110 @@ endobj
 /A << /S /GoTo /D (Hfootnote.106) >>
 >>
 endobj
-1170 0 obj
+1214 0 obj
 <<
-/D [1168 0 R /XYZ 55.693 823.059 null]
+/D [1212 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1171 0 obj
+1215 0 obj
 <<
-/D [1168 0 R /XYZ 224.593 758.796 null]
+/D [1212 0 R /XYZ 224.593 758.796 null]
 >>
 endobj
-1172 0 obj
+1216 0 obj
 <<
-/D [1168 0 R /XYZ 189.291 691.548 null]
+/D [1212 0 R /XYZ 189.291 691.548 null]
 >>
 endobj
-266 0 obj
+254 0 obj
 <<
-/D [1168 0 R /XYZ 56.693 544.973 null]
+/D [1212 0 R /XYZ 56.693 544.973 null]
 >>
 endobj
-1173 0 obj
+1217 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 270.054 null]
+/D [1212 0 R /XYZ 74.626 270.054 null]
 >>
 endobj
-1174 0 obj
+1218 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 258.098 null]
+/D [1212 0 R /XYZ 74.626 258.098 null]
 >>
 endobj
-1175 0 obj
+1219 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 245.562 null]
+/D [1212 0 R /XYZ 74.626 245.562 null]
 >>
 endobj
-1176 0 obj
+1220 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 233.607 null]
+/D [1212 0 R /XYZ 74.626 233.607 null]
 >>
 endobj
-1177 0 obj
+1221 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 221.652 null]
+/D [1212 0 R /XYZ 74.626 221.652 null]
 >>
 endobj
-1178 0 obj
+1222 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 185.786 null]
+/D [1212 0 R /XYZ 74.626 185.786 null]
 >>
 endobj
-1180 0 obj
+1224 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 90.145 null]
+/D [1212 0 R /XYZ 74.626 90.145 null]
 >>
 endobj
-1181 0 obj
+1225 0 obj
 <<
-/D [1168 0 R /XYZ 74.626 66.234 null]
+/D [1212 0 R /XYZ 74.626 66.234 null]
 >>
 endobj
-1167 0 obj
+1211 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F28 509 0 R /F23 398 0 R /F20 350 0 R /F24 410 0 R /F22 510 0 R /F17 349 0 R /F26 511 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F10 528 0 R /F13 562 0 R /F9 1179 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F28 557 0 R /F23 446 0 R /F20 398 0 R /F24 458 0 R /F22 558 0 R /F17 397 0 R /F26 559 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F10 576 0 R /F13 610 0 R /F9 1223 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1190 0 obj
+1234 0 obj
 <<
 /Length 2289      
 /Filter /FlateDecode
 >>
 stream
-xڝXIw�6��W��~Ϣ	�knE^�^l��3�$�
ucĥM�V�_?��b��$3(���B�W��>�����^�~��@��ʲ$��Y�J$�E������*�������ͥN���ӧϛ�?��
-?��nn7�IZ�$�����6/6�m���^|�Ppl�唸�R�u{��oq�����8�U<��6HK�t�����_J^qTd�%��Q��� \����L�<� M���Ts���U��"집�1j��M���%KA:�^s*���Ȋ�$N�ǃc���������r`ӳ�<{^���`�w_q�vw��N�ڐ�g9��׌�����"���I�Z���1pʯ�Jk3��ÃR��?�t��d��&燐~ރE*�G���L����u{��9���eÐf*R�"��[�0P	f�6*�<p^vy�����[��B^��&��Sm}��謎Z����'&�G�q$��$���cbqNO�?�-D�%�)x���Hc|���SIJӫ.M͛���}����"�9&�5���ra��h�E%IƆx���`Q�"�#���2Uq�k��-�25��ȐE�G���}��QLAK�9ۨ|y�I	n�~aw�O��w4��Zν�9����9�'x����w���6ݎ����3�Qn~����5���s�e�9��D�����]��A�L��`���������&�@a� q�������'o�F�W#ݏ��H�#�+vN#)f|��?��5��,��<g�vj��~jv8�B��8�:?1��y���)#.p#o'�a�er��uD����lQ7	`���gPO3G6��/7/BQu���n����| =8r����Ύ����a��
+xڝXIw�6��W��~Ϣ	�knE^�^l��3�$�
ucĥM�V�_?��b��$3(���B�W��>�����^�~��@��ʲ$��Y�J$�E������*�������ͥN���ӧϛ�?��
+?��nn7�IZ�$�����6�7�m���^|�Ppl�唸�R�u{��oq�����8�U<��6HK�t�����_J^qTd�%��Q��� \����L�<� M���Ts���U��"집�1j��M���%KA:�^s*���Ȋ�$N�ǃc���������r`ӳ�<{^���`�w_q�vw��N�ڐ�g9��׌�����"���I�Z���1pʯ�Jk3��ÃR��?�t��d��&燐~ރE*�G���L����u{��9���eÐf*R�"��[�0P	f�6*�<p^vy�����[��B^��&��Sm}��謎Z����'&�G�q$��$���cbqNO�?�-D�%�)x���Hc|���SIJӫ.M͛���}����"�9&�5���ra��h�E%IƆx���`Q�"�"���2Uq�k��-�25��ȐE�G���}��QLAK�9ۨ|y�I	n�~aw�O��w4��Zν�9����9�'x����w���6ݎ����3�Qn~����5���s�e�9��D�����]��A�L��`���������&�@a� q�������'o�F�W#ݏ��H�#�+vN#)f|��?��5��,��<g�vj��~jv8�B��8�:?1��y���)#.p#o'�a�er��uD����lQ7	`���gPO3G6��/7/BQu���n����| =8r����Ύ����a��
 ډ���?�e_?2�it
����~�{�x���i�ø����B8'*(���Fs��L�4Һb=U\�x���W��`��jK��A:�h�$���8U�6�4�w�mA�J3�ސ�0M�E9I
��M�ZO�(Y������,@��l������:�6�/�}#�}g{�V}8�!t��2�,��Q��D��:�J������]�n������|�$2����(p
�1�%?�`b��	}`\�JlH���-�%�������)1�g	���]/B8���\ b�
U���m[I�t�*ԑ�@���h�.	z��E��C�{�X:�\N���*־
-�kA�"uT�"�d��l}�E��w;+�{nAO��'�j�D�I�\�|K��u�9� �@���Pj⸅1�D��f�����AA��ܣ"�:�m?X��T��3W�٣A^ʲ*ܙ�x;�u/ߥ�~�ip��~�Ɇ��g�ƌ�a��>N~�ys�����
f�WLЅ^����;�]�q�<�7n���\c
�;���Э���MT̢$ק�X���H�]qÎi|�=L6��Hy��͂�Hvcb?
��"%�5����v�����)*t~�M�`<��
r������v^$}FN:-�4V���`���)�
+�kA�"�h�"�d��l}�E��w;+�{nAO��'�j�D�I�\�|K��u�9� �@���Pj⸅1�D��f�����AA��ܣ"�:�m?X��T��3W�٣A^ʲ*ܙ�x;�u/ߥ�~�ip��~�Ɇ��g�ƌ�a��>N~�ys�����
f�WLЅ^����;�]�q�<�7n���\c
�;���Э���MT̢$ק�X���H�]qÎi|�=L6��Hy��͂�Hvcb?
��"%�5����v�����)*t~�M�`<��
r������v^$}FN:-�4V���`���)�
 0�q��$�L15H��HW���v5'��d9dRDb'	��{��o�> �%�f/Gˏ��	`�5�7/Q�%�@�?{��
 �L/OQ*�� ��%�;O��
 �N��I~����ʓ��%�Wo��r�ؓ`���5�:].|�p���2J@�>P鋎��s�������O0��eY�B_�”�NO��/e�̗V��Ҫ��
 T���]�8e�t;��F��{S���#���gy��V���7�ׅ�����'�
-�������;�BEe}=�;���/ruK9\i
-�ό������Y�p7�����aj톚��8l܃ .���p�#c30�5���z���1��b-����笙w��S݊0V*�'�\��y�)/�6vA[�)�W��ZZs=������aOz�L��T�� mI����ݾ3
�T�3��A�-�C؃�Fz��Qkfk�0�<�9
���\$�Q���|g��L��:n�Y!>�#��3R��s)v��,?vaC�ai�lNjҠ�dq�lx�cp�-EQ)I4�_1/!���L�;��k�˲�;�4�,5&��R��9[<:�1�-�o�t�-�4�v@~Y�ɻ?�����ڤ�T��r�8 �����sN�'ŭ$аr��5�u]�����aT����{�ɝ"K/���
�hz�#�/T�;��zM�|�Y�%�t�?]�$�8�X��Pʁ�L�Z|��5��&vn�Ap��̧�_VJ���zѝ/(�}d�U��/WL<�1c+�^䟓��쯔Uf�/�D�
+�������;�BEe}=�;���/ruK9\i
-�ό������Y�p7�����aj톚��8l܃ .���p�#c30�5���z���1��b-����笙w��S݊0V*�'�\��y�)/�6vA[�)�W��ZZs=������aOz�L��T�� mI����ݾ3
�T�3��A�-�C؃�Fz��Qkfk�0�<�9
���\$�Q���|g��L��:n�Y!>�#��3R��s)v��,?vaC�ai�lNjҠ�dq�lx�cp�-EQ)I4�_1/!���L�;��k�˲�;�4�,5&��R��9[<:�1�-�o�t�-�4�v@~Y�ɻ?�����ڤ�T��r�8 �����sN�'ŭ$аr��5�u]�����aT����{�ɝ"K/���
�hz�#�/T�;��zM�|�Y�%�t�?]�$�8�X��Pʁ�L�Z|��5��&vn�Ap��̧�_VJ���zѝ/(�}d�U��/WL<�1c+�^䟓��쯔Uf�/�G��
 endstream
 endobj
-1189 0 obj
+1233 0 obj
 <<
 /Type /Page
-/Contents 1190 0 R
-/Resources 1188 0 R
+/Contents 1234 0 R
+/Resources 1232 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Group 1193 0 R
-/Annots [ 1182 0 R 1183 0 R 1184 0 R ]
+/Parent 1114 0 R
+/Group 1237 0 R
+/Annots [ 1226 0 R 1227 0 R 1228 0 R ]
 >>
 endobj
-1166 0 obj
+1210 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/mabe3.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 1198 0 R
+/PTEX.InfoDict 1241 0 R
 /BBox [0 0 460.8 345.6]
-/Group 1193 0 R
+/Group 1237 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -8776,13 +8796,13 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 1199 0 R>>
+>>/Font << /F1 1242 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/M0 1200 0 R
-/M1 1201 0 R
+/M0 1243 0 R
+/M1 1244 0 R
 >>>>
 /Length 1700
 /Filter /FlateDecode
@@ -8794,33 +8814,33 @@ x
 h+T���k׳���|ĩ
q՟����u���5�M��T����u�0��G�wj���!d����=���\���xƠN�����`�(^�
6@�z�[Y)�|!8(K��ԕꆨ��
�

F���
�A�WD��
�Y�l�lx�Ri��2��kkJcC���y�H+w��ֆz����o
��CC^c֊]����梱��[���6�(��_�ӷ�oo?~��a�z���
 endstream
 endobj
-1198 0 obj
+1241 0 obj
 <<
 /CreationDate (D:20200826164856+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-1199 0 obj
+1242 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 1202 0 R
+/CharProcs 1245 0 R
 /Encoding <<
 /Differences [ 46/period 48/zero/one/two/three/four/five/six/seven/eight 97/a 99/c/d/e 103/g/h 110/n/o/p 114/r/s 117/u]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 1203 0 R
+/FontDescriptor 1246 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 1204 0 R
+/Widths 1247 0 R
 >>
 endobj
-1200 0 obj
+1243 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -8832,7 +8852,7 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-1201 0 obj
+1244 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -8844,33 +8864,33 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-1202 0 obj
+1245 0 obj
 <<
-/a 1205 0 R
-/c 1206 0 R
-/d 1207 0 R
-/e 1208 0 R
-/eight 1209 0 R
-/five 1210 0 R
-/four 1211 0 R
-/g 1212 0 R
-/h 1213 0 R
-/n 1214 0 R
-/o 1215 0 R
-/one 1216 0 R
-/p 1217 0 R
-/period 1218 0 R
-/r 1219 0 R
-/s 1220 0 R
-/seven 1221 0 R
-/six 1222 0 R
-/three 1223 0 R
-/two 1224 0 R
-/u 1225 0 R
-/zero 1226 0 R
+/a 1248 0 R
+/c 1249 0 R
+/d 1250 0 R
+/e 1251 0 R
+/eight 1252 0 R
+/five 1253 0 R
+/four 1254 0 R
+/g 1255 0 R
+/h 1256 0 R
+/n 1257 0 R
+/o 1258 0 R
+/one 1259 0 R
+/p 1260 0 R
+/period 1261 0 R
+/r 1262 0 R
+/s 1263 0 R
+/seven 1264 0 R
+/six 1265 0 R
+/three 1266 0 R
+/two 1267 0 R
+/u 1268 0 R
+/zero 1269 0 R
 >>
 endobj
-1203 0 obj
+1246 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -8885,10 +8905,10 @@ endobj
 /XHeight 0
 >>
 endobj
-1204 0 obj
+1247 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-1205 0 obj
+1248 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -8898,7 +8918,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-1206 0 obj
+1249 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -8907,7 +8927,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-1207 0 obj
+1250 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -8918,7 +8938,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-1208 0 obj
+1251 0 obj
 <<
 /Filter /FlateDecode
 /Length 245
@@ -8927,7 +8947,7 @@ stream
 x�EP��C1�=`�,{�wH�ۿ=JFp�!Z?�Z���K��o�GFA=���3���A΄�@���x��Fn�vpμ�3�9�Zp�ә�\��'�m��B�ITqT�qL�ύׁ��l�ӑ�!��KI%&�~S*��)[*��E�H䁓M4�,?C�b̠�Q�0���q��Gu��ٜ9-����L|X&�Q�)��2>'��\N}��䢥U���ޑ��"�ۡ��W%Q��է��<�������Y>
 endstream
 endobj
-1209 0 obj
+1252 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -8937,7 +8957,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-1210 0 obj
+1253 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -8947,7 +8967,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-1211 0 obj
+1254 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -8956,7 +8976,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-1212 0 obj
+1255 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -8965,7 +8985,7 @@ stream
 x�ERKr�0��\ 3�g��NW����p:�<�	2=eH��6�d���Wd�Ր�F�D��)���򹼖�\�n�J�?��72ͮЪ�G�6�F5+#� C�zV���Q�d��v!�:S�p,�C��u�)�mA��#�o<���r��Ln���[��:[�m@	�s�`���	������)(U��I­�\';P�Ъt�7�9`Ò��ho��>��F����, ���f��1�H�'�N=q:őpI8�@�������/����	u:eM�ž���B��Rq�"n]E�lO�	�?*�3b���	�Ԓ����������枾�?�9������
 endstream
 endobj
-1213 0 obj
+1256 0 obj
 <<
 /Filter /FlateDecode
 /Length 163
@@ -8974,7 +8994,7 @@ stream
 x�E��u1CsU�x�:�?G���i��@�x�x�=	�r]�
?޶�4��2܍�e����@N�"W�I��3T���b���\/:"̒�@#|:��C[ۙ~:��!��**�na.��@�R�ԏ�Qꚡ�*+kjڿ�"��}\Ne��{��g+W�}��:�
 endstream
 endobj
-1214 0 obj
+1257 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -8983,7 +9003,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-1215 0 obj
+1258 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -8994,7 +9014,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-1216 0 obj
+1259 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -9003,7 +9023,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-1217 0 obj
+1260 0 obj
 <<
 /Filter /FlateDecode
 /Length 236
@@ -9014,7 +9034,7 @@ x
 ���y+�����ՠ��������0��u�J�����*�}�$�]S
 endstream
 endobj
-1218 0 obj
+1261 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -9023,7 +9043,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-1219 0 obj
+1262 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -9033,7 +9053,7 @@ x
 ���f�W����7y
 endstream
 endobj
-1220 0 obj
+1263 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -9044,7 +9064,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-1221 0 obj
+1264 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -9055,7 +9075,7 @@ x
 )�\@>������,́,#��.Cc0mbl�`fbdY 1 ���r��
 endstream
 endobj
-1222 0 obj
+1265 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -9066,7 +9086,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-1223 0 obj
+1266 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -9080,7 +9100,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-1224 0 obj
+1267 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -9091,7 +9111,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-1225 0 obj
+1268 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -9101,7 +9121,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-1226 0 obj
+1269 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -9111,14 +9131,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-1193 0 obj
+1237 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-1182 0 obj
+1226 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -9127,7 +9147,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.107) >>
 >>
 endobj
-1183 0 obj
+1227 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -9136,7 +9156,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.108) >>
 >>
 endobj
-1184 0 obj
+1228 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -9145,84 +9165,84 @@ endobj
 /A << /S /GoTo /D (Hfootnote.109) >>
 >>
 endobj
-1191 0 obj
+1235 0 obj
 <<
-/D [1189 0 R /XYZ 55.693 823.059 null]
+/D [1233 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1192 0 obj
+1236 0 obj
 <<
-/D [1189 0 R /XYZ 56.693 731.814 null]
+/D [1233 0 R /XYZ 56.693 731.814 null]
 >>
 endobj
-270 0 obj
+258 0 obj
 <<
-/D [1189 0 R /XYZ 56.693 240.769 null]
+/D [1233 0 R /XYZ 56.693 240.769 null]
 >>
 endobj
-1194 0 obj
+1238 0 obj
 <<
-/D [1189 0 R /XYZ 74.626 153.646 null]
+/D [1233 0 R /XYZ 74.626 153.646 null]
 >>
 endobj
-1195 0 obj
+1239 0 obj
 <<
-/D [1189 0 R /XYZ 74.626 141.691 null]
+/D [1233 0 R /XYZ 74.626 141.691 null]
 >>
 endobj
-1196 0 obj
+1240 0 obj
 <<
-/D [1189 0 R /XYZ 74.626 69.96 null]
+/D [1233 0 R /XYZ 74.626 69.96 null]
 >>
 endobj
-1188 0 obj
+1232 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im12 1166 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im12 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1230 0 obj
+1273 0 obj
 <<
 /Length 2578      
 /Filter /FlateDecode
 >>
 stream
-xڕYYs�8~���QU#� HL�<8�s���ƚ�nM恖 ��tx8�߾ Q�����@���n86A�<{�8{�Be�RQ�eI�XY�,�R,V��a>����.���:���w���^��9�\����͓Ԩ$|��r�xlng-ޜ].�>�)j/%6Q��`�;��8XAߛ �ta�/4r�VE���n��}�p��đ���;ؕ	]�n�n(	���E�y�����MB'l�Lm]'���]����6��X�u��i�T�F����S\]�/��YbC'�V]���֏ֻw8�V������U�i�G2���6�rad����5��e���ۑ+7���t;&��Q3I.���u$�Z9f�u�2E�F���z蹱�ڝ���qG�����]v��%;J��oJ ���W��P,���%j�Ӧk�fJU�͊{�-㔻�
+xڕYYs�8~���QU#� HL�<8�s���ƚ�nM恖 ��tx8�߾ Q�����@���n86A�<{�8{�Be�RQ�eI�XY�,�R,V��a6����.���:���w���^��9�\����͓Ԩ$|��r�xlnf-ޜ].�>�)j/%6Q��`�;��8XAߛ �ta�/4r�VE���n��}�p��đ���;ؕ	]�n�n(	���E�y�����MB'l�Lm]'���]����6��X�u��i�T�F����S\]�/��YbC'�V]���֏ֻw8�V������U�i�G2���6�rad����5��e���ۑ+7���t;&��Q3I.���u$�Z9f�u�2E�F���z蹱�ڝ���qG�����]v��%;J��oJ ���W��P,���%j�Ӧk�fJU�͊{�-㔻�
 ��~��t�O����[�}~'�Ԭ����1��˫x��T�
 �������� ���Tx;����[�����F��p9��&��1�?`��o��i�4�f)�U�|�ܮgV�L��ϕ��̪�f��˶�e6��d�^�����њV�۲[!��U���%�S�a�q��W��C;�g­�h�K���7�eK����F��H����\Eyba���<�#t�dʏ(Ҝ��R
[�7ຎ
�we*�E�5?���q\����B�;>�
�FF�cMO��z��y,k�s�`dІ�ol��Q�?��B�����[!��ߗ���������%2��v�p�e;�"���a[����/�5�<Y��rSV
�4�ΌA�$��b�c=o	��SB�#�l@r�UY�%���6�%�*;��rp�iS
��.��띟��&��D�ր
 ��м+}�"yz*�꧋�f�Ymt�S���t�.�D��-���ֵΪe�(�``��W��-�,����r�ho9�����;7t�;�6�깫n{�J�M}:ڱ��O��3Dm
����5�}�
�\��n=��vfA
 ��5��k��ݸ�]���(VD�QQ4!w�[U��Ѣ�k�y}�s���.���I�F��/!�IT`��Ċ�.��4H#�-OV*���#=�1N�'�Ɍ# [JU�se#�xNs@N�+K�!
 c��	
�[β�^�ɥa!�Vw�L�F/�b���l�@l���W�.k�(*t+�F�"���#{��|���`%��(�"�=)��(��-�J:�il�����A�9����u�\�I�D��@��i?�~+�rgwlq���&x�$���hZĚFH�&�9!-Ic{x*�fE�����t�Hg���+^�
�Q�H����[#k%��`v?�����McpnA�*��&N��D��^�W�<�>�
~����)����~���������Ä<(�0�z����WJ���
 ���y�Gӎ�-s;G��sN��(�M�����&�'S$���tK�8���m���']"6�Ь�Ҡ�q@q:ASy��?�=�'O!��Mq|�A� ���@����W='υ��X
-�V	�%���P=���QM��d�����8+0�0���i�=<ri��<>�x\G׮�0T��躡��E���Je�����Ydc�,
����	��������C����e��d�o��I��<��j3vT&&a�X+K�l�䉯�Oq�5ծ�ז	�P)�=�n��@+��3�p*��`ˠ�!Q�X�PY�H����@�g*�H㟵�����V�:2��p��SBNe��~O���
-ڴ9�T
łMx	���o�y�	o��#���&~oؔNs�����($�ȣ�TAe͕�6Yx^o�@iןr���H��
+�V	�%���P=���QM��d�����8+0�0���i�=<ri��<>�x\G׮�0T��躡��E���Je�����Ydc�,
����	��������C����e��d�o��I��<��j3vT&&a�X+K�l�䉯�Oq�5ծ�ז	�P)�=�n��@+��3�p*��`ˠ�!Q�X�PY�H����@�g*�H㟵�����V�:2��p��SBNe��~O���
+ڴ9�T
łMx	���o�y�	o��#���&~oؔNs�����($�Ȣ�TAe͕�6Yx^o�@iןr���H��
 tñ+��
 ���ӣ��X2����yu�i�˩�k&����T��HyH��[�����;�Pq�}�Ё1��"��0�WO\+��']x\�̽^3��o���q��%4�B���}X�i@�~A�a�@�B2|��8�0f�� �wݽ�t���e)�C�5+��㒌���*���"z�2��	��9�T��kz�߀��C݂c���Y�0��0����/�O�P�L-�|>����i��G�;��s����kHGx�44,�%���`!��6�%u��`����=x�E�;zU�`�������=?�����n������I �K�݊�^7�)�@��H��<rj�"e�=,DJ��f��-�N�n`|�0H�Wqi��
-��(��3�q����X��|x+�U�H�7#E/}XUa�����{���8*�d94\�e��g)/z=-�&�̨�PDz��#�s'=	�T�y�U4;������rLcvR;~�v�|fG\�
)
���\�<~Ǟ�+G���y���
��-æ
�u�m�8l87M��&����{�WE�L���)0AY*V�� O�D���X�զO^XHNj<�)5M�TAI��\e����@���?	�Bw'$�cJ���4�:W�X����~�ǖ�M��s5�96�Qb:�(�7�?��,�ބ�8ƫ-K�7ADZz��ys�;��G)�����*Y(�R^Ii�d̙��9���ݜ�
+��(��3�q����X��|x+�U�H�7#E/}XUa�����{���8*�d94\�e��g)/z=-�&�̨�PDz��#�s'=	�T�y�U4;������rLcvR;~�v�|fG\�
)
���\�<~Ǟ�+G���y���
��-æ
�u�m�8l87M��&����{�WE�L���)0AY*V�� O�D���X�զO^XHNj<�)5M�TAI��\e����@���?	�Bw'$�cJ���4�:W�X����~�ǖ�M��s5�96�Qb:�(�7�?��,�ބ�8ƫ-K�7ADZz��ys�;��G)�����*Y(�R^Ii�d̙��9����O�	
 endstream
 endobj
-1229 0 obj
+1272 0 obj
 <<
 /Type /Page
-/Contents 1230 0 R
-/Resources 1228 0 R
+/Contents 1273 0 R
+/Resources 1271 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Group 1233 0 R
-/Annots [ 1185 0 R 1186 0 R ]
+/Parent 1279 0 R
+/Group 1276 0 R
+/Annots [ 1229 0 R 1230 0 R ]
 >>
 endobj
-1187 0 obj
+1231 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/examples.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 1236 0 R
+/PTEX.InfoDict 1280 0 R
 /BBox [0 0 540 288]
-/Group 1233 0 R
+/Group 1276 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -9235,21 +9255,21 @@ endobj
 /Type /ExtGState
 /ca 1
 >>
->>/Font << /F1 1237 0 R>>
+>>/Font << /F1 1281 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/I1 1238 0 R
-/I10 1239 0 R
-/I2 1240 0 R
-/I3 1241 0 R
-/I4 1242 0 R
-/I5 1243 0 R
-/I6 1244 0 R
-/I7 1245 0 R
-/I8 1246 0 R
-/I9 1247 0 R
+/I1 1282 0 R
+/I10 1283 0 R
+/I2 1284 0 R
+/I3 1285 0 R
+/I4 1286 0 R
+/I5 1287 0 R
+/I6 1288 0 R
+/I7 1289 0 R
+/I8 1290 0 R
+/I9 1291 0 R
 >>>>
 /Length 1716
 /Filter /FlateDecode
@@ -9263,33 +9283,33 @@ x
 ��(qhjY�������Tt845���pku�B�
'�`6n\�c4��~iܽ��t(?*��!��pqr�{Rc�.���̺;h��wi�MA�r��I7�&h�)ieV���<���!6�<�cJ�y6)̦�ı��<��fS����t�eS�[]��x{Ê+��;g�M;�_�m�	����2�L�(�5
 endstream
 endobj
-1236 0 obj
+1280 0 obj
 <<
 /CreationDate (D:20200826171306+02'00')
 /Creator (matplotlib 3.1.1, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.1)
 >>
 endobj
-1237 0 obj
+1281 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 1248 0 R
+/CharProcs 1292 0 R
 /Encoding <<
 /Differences [ 32/space 46/period 48/zero/one/two/three/four/five/six/seven/eight/nine/colon 76/L 111/o 115/s]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 1249 0 R
+/FontDescriptor 1293 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 1250 0 R
+/Widths 1294 0 R
 >>
 endobj
-1238 0 obj
+1282 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9300,7 +9320,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1251 0 R
+/Length 1295 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9310,7 +9330,7 @@ x
 ��|�:�(#�2�x�[�
)--5QTT��#�2���^�u:|�s\���
�Gq�燬G8#u���`brr���#�2��q�MMMAwuu�p_����E�#�2�(#N�C���KR��ttt��yPu�QF����O�iƕ���9�AݱUq�Gq�o=����l����Q�oTq�'�z
�>sskk+woTq�G	!�����
 endstream
 endobj
-1239 0 obj
+1283 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9321,7 +9341,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1252 0 R
+/Length 1296 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9332,7 +9352,7 @@ x
 �Ì!�B��*b��
 endstream
 endobj
-1240 0 obj
+1284 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9343,7 +9363,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1253 0 R
+/Length 1297 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9353,7 +9373,7 @@ x
 �t���YGf�aF�gj^__Ej�������><<�L�S�f�u�aF�B!��p��g
 endstream
 endobj
-1241 0 obj
+1285 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9364,7 +9384,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1254 0 R
+/Length 1298 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9374,7 +9394,7 @@ x
 �H���H��8��n�70'
�#d$��d6p��QR�\&I��$�̓>�AF2��5^b�j���Z����}$��d���~�EnnnH�7��,��PK7�G2�H��O�
 endstream
 endobj
-1242 0 obj
+1286 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9385,7 +9405,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1255 0 R
+/Length 1299 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9399,7 +9419,7 @@ x
 u�\ԯ��H���#�k�E>�\.SH$\�B:-�
̑=���9��V+�\.G�T*鷜�0G2�H��tޏ��(�$����[�s�#z$��Z�oٌ������#z$���������`�Go��kz�9��G�������������ޔ�
 endstream
 endobj
-1243 0 obj
+1287 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9410,7 +9430,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1256 0 R
+/Length 1300 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9422,7 +9442,7 @@ x
 �DfggE�����#3�0#���#���������G`a��+ﳧ����0�Ì0��������Opooo�οaa��+w���U�v��E��֯�a�!�+|�A�^
 endstream
 endobj
-1244 0 obj
+1288 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9433,7 +9453,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1257 0 R
+/Length 1301 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9444,7 +9464,7 @@ x
 �C�0�2)�p��
 endstream
 endobj
-1245 0 obj
+1289 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9455,7 +9475,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1258 0 R
+/Length 1302 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9469,7 +9489,7 @@ x
 �jQQQ��lnn‡���4┰�t��3�q�����~���z��{?���ڷ��=�}�Ìt�{�&��TWW�8;;+�}���ë���"///(��􈬬���{�G:�H��|�s�`xxXdrr2����C�}��#f��S����[����a���?C�#f�Ìt���uuu���el9ڷ333"WWW~���G:�Hǿ�U���Ƙ����q��c�w����D��C��#f�Ìt�[�D0���������`�0#�k{{;|uuU�~H`����q:�`�0#f��v����!<0��!�>�aF:N�����������שּׁ���b.F�	�#f�Ìt������"���(�Y������x�H�B!���/��ʝ
 endstream
 endobj
-1246 0 obj
+1290 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9480,7 +9500,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1259 0 R
+/Length 1303 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9492,7 +9512,7 @@ x
 �qΰ�t葎kϴuuu�+++"p�f��D�088(���ȕ�*�#z�C�t�{�ϼu���)�������/���gb~S699)���Ya��#���NM8a�����*�������RN�b�=ҡG:�S���.bff�>���үA&�#z��q��n���a�7���M1`��#z���z4<<�%�o�|��s֑=���ttz_D:���ՅQ��u�C�t葎{ss3tY��	?��C� ֑=�)�ޏ_�H&���{GG������M)GXG:�H�B!�B���C�
 endstream
 endobj
-1247 0 obj
+1291 0 obj
 <<
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
@@ -9503,7 +9523,7 @@ endobj
 >>
 /Filter /FlateDecode
 /Height 97
-/Length 1260 0 R
+/Length 1304 0 R
 /Subtype /Image
 /Type /XObject
 /Width 97
@@ -9513,27 +9533,27 @@ x
 �D��~}�߯g���D"!�Z�"�>�Gz�	�=6]t�emll���f���zomm�`�Xd��0�0�C�0�#[���D��u�3DD�Qoc��y��G���g+�\N�����n�^[[�)��Gz��G���6�WWWE���wwwUW*3aa�&൶��)¹C�����#=��#L��H����0��ggg"\���#=����o�S�����Q�G1��[���)8;�Gz��G�������ꑑ�i6�z������~�C�0���x<.bff����{_���Gz��G���쏏�upnnN�~�/!�?0�0�B!����\�	
 endstream
 endobj
-1248 0 obj
+1292 0 obj
 <<
-/L 1261 0 R
-/colon 1262 0 R
-/eight 1263 0 R
-/five 1264 0 R
-/four 1265 0 R
-/nine 1266 0 R
-/o 1267 0 R
-/one 1268 0 R
-/period 1269 0 R
-/s 1270 0 R
-/seven 1271 0 R
-/six 1272 0 R
-/space 1273 0 R
-/three 1274 0 R
-/two 1275 0 R
-/zero 1276 0 R
+/L 1305 0 R
+/colon 1306 0 R
+/eight 1307 0 R
+/five 1308 0 R
+/four 1309 0 R
+/nine 1310 0 R
+/o 1311 0 R
+/one 1312 0 R
+/period 1313 0 R
+/s 1314 0 R
+/seven 1315 0 R
+/six 1316 0 R
+/space 1317 0 R
+/three 1318 0 R
+/two 1319 0 R
+/zero 1320 0 R
 >>
 endobj
-1249 0 obj
+1293 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -9548,40 +9568,40 @@ endobj
 /XHeight 0
 >>
 endobj
-1250 0 obj
+1294 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-1251 0 obj
+1295 0 obj
 863
 endobj
-1252 0 obj
+1296 0 obj
 864
 endobj
-1253 0 obj
+1297 0 obj
 707
 endobj
-1254 0 obj
+1298 0 obj
 753
 endobj
-1255 0 obj
+1299 0 obj
 602
 endobj
-1256 0 obj
+1300 0 obj
 769
 endobj
-1257 0 obj
+1301 0 obj
 789
 endobj
-1258 0 obj
+1302 0 obj
 905
 endobj
-1259 0 obj
+1303 0 obj
 880
 endobj
-1260 0 obj
+1304 0 obj
 825
 endobj
-1261 0 obj
+1305 0 obj
 <<
 /Filter /FlateDecode
 /Length 59
@@ -9592,7 +9612,7 @@ x
 )�\@>���ehif�Y�@H�a����s`zr�����Z
 endstream
 endobj
-1262 0 obj
+1306 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -9602,7 +9622,7 @@ x
 �@V�!H���D!�$b�Y@�8��i��� ��-���D6
�G��
 endstream
 endobj
-1263 0 obj
+1307 0 obj
 <<
 /Filter /FlateDecode
 /Length 392
@@ -9612,7 +9632,7 @@ x
 /�1���%?ꒈ3L~�r]�Q�ljg�!�.6��Xr_���rњb�O�/ȴTX�VݣC�(�-�������װ�r�{d`J�n@�C�HYAa���P�l��( WԬ��tb�
��)��
���٠��������[�]�aP[[�xf��ޑ�3��qYk?=�Q2�QMg|��2R�������Cg�B'`$�I��p#��A1�q��Ol��)V��;���ޒ��{�,�\��L'��i���b��?lK�\�+�E��(~�Aq|X��d�Dw��#�h%���0�x�y�����Dh�DԎ=(�������ͱ�&{o����̨��vz���c�w����.��
 endstream
 endobj
-1264 0 obj
+1308 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -9622,7 +9642,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-1265 0 obj
+1309 0 obj
 <<
 /Filter /FlateDecode
 /Length 90
@@ -9631,7 +9651,7 @@ stream
 x�M�A� �"OPD��tz��_����N�E��5jK0�2kP)����U0\����2IL���{����q��I��qz���z��"X
 endstream
 endobj
-1266 0 obj
+1310 0 obj
 <<
 /Filter /FlateDecode
 /Length 320
@@ -9642,7 +9662,7 @@ x
 �R�ӿ����ccz�
 endstream
 endobj
-1267 0 obj
+1311 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -9653,7 +9673,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-1268 0 obj
+1312 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -9662,7 +9682,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-1269 0 obj
+1313 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -9671,7 +9691,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-1270 0 obj
+1314 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -9682,7 +9702,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-1271 0 obj
+1315 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -9693,7 +9713,7 @@ x
 )�\@>������,́,#��.Cc0mbl�`fbdY 1 ���r��
 endstream
 endobj
-1272 0 obj
+1316 0 obj
 <<
 /Filter /FlateDecode
 /Length 317
@@ -9704,7 +9724,7 @@ x
 Ұ��9�����9��e��,mh%�z���М��a�מ���E[{�
 endstream
 endobj
-1273 0 obj
+1317 0 obj
 <<
 /Filter /FlateDecode
 /Length 17
@@ -9713,7 +9733,7 @@ stream
 x�36�P0��C.���
 endstream
 endobj
-1274 0 obj
+1318 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -9727,7 +9747,7 @@ C
 ]V�~A�G�}�XTX ��Ip��P��v��H9���/�Y��	t�"��I̜b]:�>t,��6�˯�J�H+kL�w�Ii�"���Eo7o}=�@�.�^� AS�(i|Ъ�c(�e�w�4���<�3��}(~_K&�(�?
�_���osџ����a�`��Ś�}@*z`����y����T
 endstream
 endobj
-1275 0 obj
+1319 0 obj
 <<
 /Filter /FlateDecode
 /Length 248
@@ -9738,7 +9758,7 @@ x
 7zqxL���u5{�kOfP2+q��Su�ș�O���\�
ȹ�e���ƌ�#M!RH��&�3A���Q���~��#�aU#j�\K��s�4;�<9�GW����+����ET�<p��C����7�ҹ����^s��0X���M��7/��=������[
 endstream
 endobj
-1276 0 obj
+1320 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -9748,14 +9768,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-1233 0 obj
+1276 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-1185 0 obj
+1229 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -9764,7 +9784,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.110) >>
 >>
 endobj
-1186 0 obj
+1230 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -9773,79 +9793,85 @@ endobj
 /A << /S /GoTo /D (Hfootnote.111) >>
 >>
 endobj
-1231 0 obj
+1274 0 obj
 <<
-/D [1229 0 R /XYZ 55.693 823.059 null]
+/D [1272 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1232 0 obj
+1275 0 obj
 <<
-/D [1229 0 R /XYZ 56.693 558.464 null]
+/D [1272 0 R /XYZ 56.693 558.464 null]
 >>
 endobj
-274 0 obj
+262 0 obj
 <<
-/D [1229 0 R /XYZ 56.693 264.343 null]
+/D [1272 0 R /XYZ 56.693 264.343 null]
 >>
 endobj
-278 0 obj
+266 0 obj
 <<
-/D [1229 0 R /XYZ 56.693 147.407 null]
+/D [1272 0 R /XYZ 56.693 147.407 null]
 >>
 endobj
-1234 0 obj
+1277 0 obj
 <<
-/D [1229 0 R /XYZ 74.626 89.175 null]
+/D [1272 0 R /XYZ 74.626 89.175 null]
 >>
 endobj
-1235 0 obj
+1278 0 obj
 <<
-/D [1229 0 R /XYZ 74.626 77.22 null]
+/D [1272 0 R /XYZ 74.626 77.22 null]
 >>
 endobj
-1228 0 obj
+1271 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F21 383 0 R /F20 350 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R >>
-/XObject << /Im13 1187 0 R >>
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F20 398 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R >>
+/XObject << /Im13 1231 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1281 0 obj
+1325 0 obj
 <<
-/Length 2053      
+/Length 2054      
 /Filter /FlateDecode
 >>
 stream
-xڅXKs�6��W�H�D�7{ɤ����N��ͥ큦`	5�Q}�����"��b_���8�q�v������JEu�'��]�QQ�A���n���a���e��yw�q�I�"|����uR����5�\�����$Y�����fޢ^�y����f�e���8P�)qe*�~���q�����8J�*x$�>�*U5�����U����e��b�oA�2DE
+xڅXKs�6��W�H�D�7{ɤ����N��ͥ큦`	5�Q}�����"��b_���8�q�v������JEu�'��]�QQ�A���n���a���e��yw�q�I�"|����uR����5�\�����$Y�����fޢZ�y����f�e���8P�)qe*�~���q�����8J�*x$�>�*U5�����U����e��b�oA�2DE
 ڱ����-ϛ��k:�6�*���:��70ߣq{�=��C�����Q8����8����I9��p��)���0��ų�TT���F���ihn;��s7*���`����n�����*
�;�6�A�(]�`�i`�t���u#�ͰcʧϿȚCc ���D:�
�G�3N��~:��<����, ��k�K���
���y؛z�sЈ>N2B�UjW������Ix�D&�L���}OV�tO�m�y�!�@��L��涓󶠴��u��3��r �uiO.�!{�"
?L#H�q��V
j|�5I#�7�f�I����a��@��Z�����Q�Ϙ�z�L�֛<+�wz�}G
 ց�i��3;�^�}#��?�<>��`/9A��5S�iXU<�7��%W�<��T$����:�`g9 ~���x�����g;���e�}���~7o()�^\���$'��C���`��7�G�Lo���/h��cw�u��y�K���h<���]D��L8��S�!��{�	�,-��LVS�_0�-�:��oޓ��!*
-��.8gn*���Xe�Ab�*����I:���QvRI`Z�WҞ�:�ZƤVO�1ӗw�ʙ ���g��ΰ��X|K���K-��F���Krl/_V��T��bHK~�^��CO�a�vsj8�g#�7��Q�EqRiL	������Q�gއ6{�
-��O�ǚ��~���RR��|.i��}>��_�=.A�qY��@�S(���q����`SGe���Q�$h�C�_��'�j.�<;�0�P�-ܞB��������.�Xcc�Rfh9,bm5K��@3���{��B�J.5P��:G�Qe���yޱ�vs�GN��U��d�}���*!�ǽ�*�9|�Xapڱ�2Œ�T
-�B�{n��"/~�̧��8��$Z��_Ѓ���ǜ�����c�O;���o!��Q]ƊҺ��"�(Mk�Tr�5O/x6��`��2ʩ_�-��v�I�=��Ո�:���mG��<e������N�QJ=��.�E�ܖ`���oW�1x//�ۼ���^��kK�/����S�R�Q%�
�+?�y8h��c����/���gEj�Dj�D��k�L��K�S���鴧����8��_*����������#؃Gy_��އ�T�C$R�o
׃�/������m�
-��k�7�'�'T�l�.q0C$�;�ӛ���A?2Yz���'�o�4��3ǽ�-�"�_v������ί��XHm��q��e��v��D�	�o��	�')��x:8zM������,�	|�UJ�$]�TR�Q*Ŭ����S��-,����Z�=�ii�4Gx)�_-��(N7F���8ʊ�I�"��Ǫx�+	���r�[�TMచ���s�$����Mb�W��>����-�N-��r˪�5�R0��'�-U�<FQHI|��*�� �4S�@��!ݘ�~�g��Sz��{a��m���+�o�s�~��;���m�|�x|��6��,�tn� Rs;�3��ٵ�Nk���C�z<�2D�=x��$�1�[Za����g���*�F꽁F�*��=�_�8�`�f��{A�r��&�l�<YD���Gu�igc<K�P�W�C'�'0�p�0G�j|�錓:��ѳ��|���5�&�"�XC>���v�m��,uRG	�my��V�$0x�J�x%W9.	zV�Ɲ��?�3ɆS��q^Qc�ˇ���
xt�����ߩ������?�T
�8O���!Pॴ«Z@Ӈ�T�:/����7UPGu�t���$��B��p����X�L�����h_��5�"0
+��.8gn*���Xe�Ab�*����I:���QvRI`Z�WҞ�:�ZƤVO�1ӗw�ʙ ���g��ΰ��X|K���K-��F���Krl/_V��T��bHK~�^��CO�a�vsj8�g#�7��Q�EqRiL	�������<ʿ�L���f/U!���)�X�?t¯�5~RJJ���"�^��g��K��%H0.�@��y
+���4�ܟ�l�,s�8*��x�0�R�DU�%�g�����S�����"S`��EklU�-��E��f�>h��Wv/4\�Rɥ*��C�(�6���>�;vs�nN�H�it��5��﵃vR%�"���7T��"���+C;�=UF�q�J�R�p��´Vd���oc��T�a"�����B�^�z0�>��#W�zL�i'���-�u��2��XQZ�Q\�A�i��Jβ��E�Ϧul[F9�K�e5���2��P�Q]'��S��(u���P������6J�"��%����,���J2#���y��7�իWxm	ڀ���pp|�"Uʖ<J�d�w�!�2m�{̓�~�b�}���H͟HM�Hr
_��{�qix�Ԑ��>��t1�B�'�z���K���6�P����Yy�{�(﫱��p����w�D���z0�E��������P@^�qy-�u�D���
+���%f�q���Q`z3_@�6�G&K/6\�D��&5�x��Y������\��u�����75�"0����n��0a�
v8��$�@��G��~ 1�����7�o�J)��˔J�8J@������v
+X ��唸 ��C���0-m���/ž�e�B5����ƈGY�>�[$��XU��r%��Z�X�x����	V�y"�|n������"�I��j>��G��|���ҩŶZcY��^
+Ɠ�Ŀ�*���(
+�"�oyXE�]��f�(�=����xJw/,Ӹm�6�|E�
�~���}����-���o�uѦ|�%���-2Djn|Ft<����)c͔�x��W�R�H���P��1�uK+l��с��AqvR��H�7��P�G��+G�L�L{/��An6ݤ��'�����Nz ��b�gIJ��h��&��S��5�qR��5z��1�b����P�k�0>ݎ����N�(�-��ʗ�[	��*�%�@�
+׸�1�`&�p
+ "�!��+jt�z��n�>��;UTQV���甪����=ʠ���VxUh��
+[��`z��
+�.���t��CT(�n��}���؃)��{~\]�����",
 endstream
 endobj
-1280 0 obj
+1324 0 obj
 <<
 /Type /Page
-/Contents 1281 0 R
-/Resources 1279 0 R
+/Contents 1325 0 R
+/Resources 1323 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Group 1284 0 R
-/Annots [ 1277 0 R ]
+/Parent 1279 0 R
+/Group 1328 0 R
+/Annots [ 1321 0 R ]
 >>
 endobj
-1227 0 obj
+1270 0 obj
 <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (../imgs/img_circle.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 1286 0 R
+/PTEX.InfoDict 1330 0 R
 /BBox [0 0 460.8 345.6]
-/Group 1284 0 R
+/Group 1328 0 R
 /Resources <<
 /ExtGState <<
 /A1 <<
@@ -9868,14 +9894,14 @@ endobj
 /Type /ExtGState
 /ca 0.8
 >>
->>/Font << /F1 1287 0 R>>
+>>/Font << /F1 1331 0 R>>
 /Pattern <<
 >>/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
 /Shading <<
 >>/XObject <<
-/DejaVuSans-minus 1288 0 R
-/M0 1289 0 R
-/M1 1290 0 R
+/DejaVuSans-minus 1332 0 R
+/M0 1333 0 R
+/M1 1334 0 R
 >>>>
 /Length 943722
 /Filter /FlateDecode
@@ -12908,33 +12934,33 @@ z
 �u���U������~���g��%i�dU�����/��&P�~�%x�~>>]�Cɷ��?���?F�~>_�_Κ�h�|��:XgT`�|{�Ɖ+�������}�����'��A����.0��^���������xx�����W�ۏ~��翺<�^�����_�~��߾�o����/������o�R���_��O_�(�������֣3���������?�_��������?~�韾�͟~�������_/�[�_������o7��t���w��?���C����7Gզ�����������.�P���G~�����|�3
���t��?hF[����G���?ޛu,�=Q��>��������o�����W�濿�o7����7Է�������~�������N�_�����������������Ͽ�����ݥUa���6�������������_�_�q6�
 endstream
 endobj
-1286 0 obj
+1330 0 obj
 <<
 /CreationDate (D:20200826171806+02'00')
 /Creator (matplotlib 3.1.2, http://matplotlib.org)
 /Producer (matplotlib pdf backend 3.1.2)
 >>
 endobj
-1287 0 obj
+1331 0 obj
 <<
 /BaseFont /DejaVuSans
-/CharProcs 1291 0 R
+/CharProcs 1335 0 R
 /Encoding <<
 /Differences [ 46/period 48/zero/one 53/five 97/a/b/c/d 103/g 105/i 107/k/l 110/n/o 114/r/s 117/u]
 /Type /Encoding
 >>
 /FirstChar 0
 /FontBBox [ -1021 -463 1794 1233]
-/FontDescriptor 1292 0 R
+/FontDescriptor 1336 0 R
 /FontMatrix [ 0.001 0 0 0.001 0 0]
 /LastChar 255
 /Name /DejaVuSans
 /Subtype /Type3
 /Type /Font
-/Widths 1293 0 R
+/Widths 1337 0 R
 >>
 endobj
-1288 0 obj
+1332 0 obj
 <<
 /BBox [ -1021 -463 1794 1233]
 /Filter /FlateDecode
@@ -12948,7 +12974,7 @@ x
 
 endstream
 endobj
-1289 0 obj
+1333 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -12960,7 +12986,7 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-1290 0 obj
+1334 0 obj
 <<
 /BBox [ -3.5 -3.5 3.5 3.5]
 /Filter /FlateDecode
@@ -12972,28 +12998,28 @@ stream
 x�m�A� E�=E/�IKEe��k��L���q@L�4о<~Q���N���$	KN��zӐҺL��ղ(ǠQ-��u8���pct������x���6ޓ?��Y!F?��{C&\)1��/����^����~cZC�
 endstream
 endobj
-1291 0 obj
+1335 0 obj
 <<
-/a 1294 0 R
-/b 1295 0 R
-/c 1296 0 R
-/d 1297 0 R
-/five 1298 0 R
-/g 1299 0 R
-/i 1300 0 R
-/k 1301 0 R
-/l 1302 0 R
-/n 1303 0 R
-/o 1304 0 R
-/one 1305 0 R
-/period 1306 0 R
-/r 1307 0 R
-/s 1308 0 R
-/u 1309 0 R
-/zero 1310 0 R
+/a 1338 0 R
+/b 1339 0 R
+/c 1340 0 R
+/d 1341 0 R
+/five 1342 0 R
+/g 1343 0 R
+/i 1344 0 R
+/k 1345 0 R
+/l 1346 0 R
+/n 1347 0 R
+/o 1348 0 R
+/one 1349 0 R
+/period 1350 0 R
+/r 1351 0 R
+/s 1352 0 R
+/u 1353 0 R
+/zero 1354 0 R
 >>
 endobj
-1292 0 obj
+1336 0 obj
 <<
 /Ascent 929
 /CapHeight 0
@@ -13008,10 +13034,10 @@ endobj
 /XHeight 0
 >>
 endobj
-1293 0 obj
+1337 0 obj
 [ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 318 401 460 838 636 950 780 275 390 390 500 838 318 361 318 337 636 636 636 636 636 636 636 636 636 636 337 337 838 838 838 531 1000 684 686 698 770 632 575 775 752 295 295 656 557 863 748 787 603 787 695 635 611 732 684 989 685 611 685 390 337 390 838 500 500 613 635 550 635 615 352 635 634 278 278 579 278 974 634 612 635 635 411 521 392 634 592 818 592 592 525 636 337 636 838 600 636 600 318 352 518 1000 500 500 500 1342 635 400 1070 600 685 600 600 318 318 518 518 590 500 1000 500 1000 521 400 1023 600 525 611 318 401 636 636 636 636 337 500 500 1000 471 612 838 361 1000 500 500 838 401 401 500 636 636 318 500 401 471 612 969 969 969 531 684 684 684 684 684 684 974 698 632 632 632 632 295 295 295 295 775 748 787 787 787 787 787 838 787 732 732 732 732 611 605 630 613 613 613 613 613 613 982 550 615 615 615 615 278 278 278 278 612 634 612 612 612 612 612 838 612 634 634 634 634 592 635 592]
 endobj
-1294 0 obj
+1338 0 obj
 <<
 /Filter /FlateDecode
 /Length 304
@@ -13021,7 +13047,7 @@ x
 �pu�;�G�w5<�T���Q��!O���J�|<(!\{0F�S�@��\��^B����AjI�'<�uzO.n�d�T�NQ���3��J	=��X�};����8�~�F�ʌ�h!~�W'�%`�S&EdN�Xn�՞�(�s�s �ي�R�bW�;o,/�,Ȕ�2F�M�8x�~���y��x�l�s;
 endstream
 endobj
-1295 0 obj
+1339 0 obj
 <<
 /Filter /FlateDecode
 /Length 237
@@ -13030,7 +13056,7 @@ stream
 x�EQIr!��+��+�Nͩ��k,3IN`k1i��-x�!��́/�|M�4|72��:�pO�.ܗ˂g–�WT�w�/]�H}w��~fd{�H͐��:�B4&�!=#2�V,s��)�R�([�.ꕶN;���#�o�#��JvMl��:��˶.�:�$�vaqj�!"�uc5���N"v����0�Q$��g�q&�M�]9�y��V*9�>^�Ƅ�t��c�׶�i��_�>}�����?��\"
 endstream
 endobj
-1296 0 obj
+1340 0 obj
 <<
 /Filter /FlateDecode
 /Length 230
@@ -13039,7 +13065,7 @@ stream
 x�5QIn�0�����.��AO����	``hK��x���A��[֌����]�<	��'Q^�{�	.o��8�|�^Z9�O2 ���D�`�@����a�i'���ώH5YN_K�K�(O�~�J������.��kO8���'�O �[���WLc�D�.��A������|���!]���'�@;�綟�W��uu����)O�645I"�%��Ҹ[���{���TS�
 endstream
 endobj
-1297 0 obj
+1341 0 obj
 <<
 /Filter /FlateDecode
 /Length 227
@@ -13050,7 +13076,7 @@ x
 *��s��>�h][M
 endstream
 endobj
-1298 0 obj
+1342 0 obj
 <<
 /Filter /FlateDecode
 /Length 247
@@ -13060,7 +13086,7 @@ x
 �Z`��Q��+��	t��ĺ����v7C/�਺x}�K���{,|�B��L;wI#��fR����:=b}�@��e+������(\*
 endstream
 endobj
-1299 0 obj
+1343 0 obj
 <<
 /Filter /FlateDecode
 /Length 338
@@ -13069,7 +13095,7 @@ stream
 x�ERKr�0��\ 3�g��NW����p:�<�	2=eH��6�d���Wd�Ր�F�D��)���򹼖�\�n�J�?��72ͮЪ�G�6�F5+#� C�zV���Q�d��v!�:S�p,�C��u�)�mA��#�o<���r��Ln���[��:[�m@	�s�`���	������)(U��I­�\';P�Ъt�7�9`Ò��ho��>��F����, ���f��1�H�'�N=q:őpI8�@�������/����	u:eM�ž���B��Rq�"n]E�lO�	�?*�3b���	�Ԓ����������枾�?�9������
 endstream
 endobj
-1300 0 obj
+1344 0 obj
 <<
 /Filter /FlateDecode
 /Length 68
@@ -13080,7 +13106,7 @@ x
 )�\@����B.H�����%���[B4A��X�f&fI8"��ɴ�
 endstream
 endobj
-1301 0 obj
+1345 0 obj
 <<
 /Filter /FlateDecode
 /Length 81
@@ -13089,7 +13115,7 @@ stream
 x�=̻�0�>S�B|�����[�D�|�!�
n���Kw�}�z���Ȁ�Sj\N��i}�}j��KՉ?�����k
 endstream
 endobj
-1302 0 obj
+1346 0 obj
 <<
 /Filter /FlateDecode
 /Length 45
@@ -13101,7 +13127,7 @@ x
 "���}�
 endstream
 endobj
-1303 0 obj
+1347 0 obj
 <<
 /Filter /FlateDecode
 /Length 161
@@ -13110,7 +13136,7 @@ stream
 x�E�K� C��BG�G|�t�J■!M����@w'���/mK�>[	��x�6n5�u�V��h�R}��i�t�h6s+�fz���:����r����Gp�_�G�����d��f�)�|�Q]�d�cn�k���������]3�����s:�
 endstream
 endobj
-1304 0 obj
+1348 0 obj
 <<
 /Filter /FlateDecode
 /Length 214
@@ -13121,7 +13147,7 @@ x
 DpFj�taŲ�C��5=k����z�7hGt����4�C�ָ����R�
 endstream
 endobj
-1305 0 obj
+1349 0 obj
 <<
 /Filter /FlateDecode
 /Length 80
@@ -13130,7 +13156,7 @@ stream
 x�E��
�0D{�`~&f�(�� J�pO�{�:2S�a���,�S���`5�FR��죰n_u��zS���*Ovvq=���
 endstream
 endobj
-1306 0 obj
+1350 0 obj
 <<
 /Filter /FlateDecode
 /Length 49
@@ -13139,7 +13165,7 @@ stream
 x�36�P0P040�F�@���B�!H����	�Y@�8�&�+
���
&
 endstream
 endobj
-1307 0 obj
+1351 0 obj
 <<
 /Filter /FlateDecode
 /Length 157
@@ -13149,7 +13175,7 @@ x
 ���f�W����7y
 endstream
 endobj
-1308 0 obj
+1352 0 obj
 <<
 /Filter /FlateDecode
 /Length 332
@@ -13160,7 +13186,7 @@ x
 N��Kؖ��������ߗ��3�|
 endstream
 endobj
-1309 0 obj
+1353 0 obj
 <<
 /Filter /FlateDecode
 /Length 171
@@ -13170,7 +13196,7 @@ x
 �ȎPp��=���&�T)�8�T���	���b�SUh��V=�^����;�
 endstream
 endobj
-1310 0 obj
+1354 0 obj
 <<
 /Filter /FlateDecode
 /Length 210
@@ -13180,14 +13206,14 @@ x
 ��d�V�u�km�;a�BXȔy���)�K>:L�.��"�u%�ʚ �+�����`p&^�7`�i�5tႦ.�B��%�|u{�OxjrvC�`	j�MX�<��N��~��-䡒�ʞ����;�n�'jv"�r2Գ4�E<yE�p��w�4�fN��N?��`"^Y��D9KҎ��o���@�S�
 endstream
 endobj
-1284 0 obj
+1328 0 obj
 <<
 /CS /DeviceRGB
 /S /Transparency
 /Type /Group
 >>
 endobj
-1277 0 obj
+1321 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13196,60 +13222,60 @@ endobj
 /A << /S /GoTo /D (Hfootnote.112) >>
 >>
 endobj
-1282 0 obj
+1326 0 obj
 <<
-/D [1280 0 R /XYZ 55.693 823.059 null]
+/D [1324 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1283 0 obj
+1327 0 obj
 <<
-/D [1280 0 R /XYZ 56.693 661.909 null]
+/D [1324 0 R /XYZ 56.693 661.909 null]
 >>
 endobj
-282 0 obj
+270 0 obj
 <<
-/D [1280 0 R /XYZ 56.693 213.538 null]
+/D [1324 0 R /XYZ 56.693 213.538 null]
 >>
 endobj
-1285 0 obj
+1329 0 obj
 <<
-/D [1280 0 R /XYZ 74.626 69.296 null]
+/D [1324 0 R /XYZ 74.626 69.296 null]
 >>
 endobj
-1279 0 obj
+1323 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im14 1227 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im14 1270 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1314 0 obj
+1358 0 obj
 <<
 /Length 1906      
 /Filter /FlateDecode
 >>
 stream
-xڍ�r�6��������I����Ȯ3ͣ�ڙN�-�2�|(��}Q�T5��bw��]���m�g�Wg��T(i��� ͢���Q&V��s���E^�V�,ogs�d��Ǐ��$?���\���4�'&WI���2oϾ�ޞ-Wg��jJ�GF�`]�}���
�H���8��,T�(���Og�����y��Q�*ּoA�B��ݺ�A؄�a�Ӄ[���lZ&{�mʊq�R�܁iyh���]�v����?g�$l���F�(����C�3t1��p�)�-Y��Y�$}c;���z�,�mF=	�ϕ����ƍ�}�,4��ǯ��Q����ޟ2O�O�nG�ۮg�?f�Em��w%��5ֳ��Ft@�xԈC_9�	;�� �u�%�l����!p!�X��?
췾�/���u��h��I/�yTQ�4%*"��Ў��-m5���A(���e�����b�mŎ=:����}~x]�?��K����+ʪ̄7�(����W�{r�C���6��2�m�D�
�.���/q��M �g��,��붒��אF�
+xڍ�r�6��������I����Ȯ3ͣ�ڙN�-�2�|(��}Q�T5��bw��]���m�g�Wg��T(i��� ͢���Q&V��s���E^�V�,ogs�d��Ǐ��$?���\���4�'&WI���2oV̾�ޞ-Wg��jJ�GF�`]�}���
�H���8��,T�(���Og�����y��Q�*ּoA�B��ݺ�A؄�a�Ӄ[���lZ&{�mʊq�R�܁iyh���]�v����?g�$l���F�(����C�3t1��p�)�-Y��Y�$}c;���z�,�mF=	�ϕ����ƍ�}�,4��ǯ��Q����ޟ2O�O�nG�ۮg�?f�Em��w%��5ֳ��Ft@�xԈC_9�	;�� �u�%�l����!p!�X��?
췾�/���u��h��I/�yTQ�4%*"��Ў��-m5���A(���e�����b�mŎ=:����}~x]�?��K����+ʪ̄7�(����W�{r�C���6��2�m�D�
�.���/q��M �g��,��붒��אF�
 ��c�Y�u)�i�`��Ҳ�s�8��<�lA�sTY�r�;�
 ���g��V����csm�Hsն��5pn$}</%C��v(����8�"&e��\d�E�\$�n�Dw$�y�{WUV��[P�uXߍ�nF#y9t^�X�|�j��O%���(+8e��S(��
-"v� �*=����W[v
��k`9����g^<Q�w������' �j1n�x�A�`��ʡ�\�t��^���֜��ʃ2���C$��cD���q���,CQF`_�q14P+}�H��@Жށ�6�A�5��P�J jݟ�G���KH��/5|�e/ɳ�SG�����%[,�y�;��qb#D� ���9ڔ����P�@�DDb�w��v����e���?Yh)$X#���(%9(ɥ7��Ơ�JJ%a]>R�k��_b����@#wP��ǪOD�f��k��-u��Dnߗ=�Q�&���wn��]�$(W��\�V�ʅ3��HC���J{�}T�;�f�}�y�	J�Xf2%]PSTS!�������*�*VQ��_���������1�=�0���ޔ\?�����\M
+"v� �*=����W[v
��k`9����g^<Q�w������' �j1n�x�A�`��ʡ�\�t��^���֜��ʃ2���C$��cD���q���,CQF`_�q14P+}�H��@Жށ�6�A�5��P�J jݟ�G���KH��/5|�e/ɳ�SG�����%[,�y�;��qb#D� ���9ڔ����P�@�DDb�w��v����e���?Yh)$X#���(%9(ɥ7��Ơ�JJ%a]>R�k��_b����@#wP��ǪOD�f��k��-u��Dnߗ=�Q�&���wn��]�$(W��\�V�ʅ3��HC���J{�}T�;�f�}�y�	J�Xf2%]PSTS!�������*�*VQ��_���������1�=�0���ޔ\?�����\M
 
 �Q�D���R��,�9(����-�,�n-`*K�&:�F��
G	�(Ѵ]��QKn�/�Z`���z��^�G��Ѕ�d͘a$Z��]�Tw�/�ȋ����'‚�Fɑ>Ҋ`<����bHD(m�����7��<sK�yTn��h�slk˫�?���b[Ȓ�ڍ�AT�b�<��tai��ɋ�X�x�y�bQǶ�-����'l+y�Q�u�un�f�~���N�9zf����E�����������]����d8����g7CG=E� ��C;�q$��VX�����Sdj
 8�cRgz��/�Ф|��0#�#깙�)�b~t�ME�P�MY䋕?UN��@���)5����D�d�Tɟ��9���r����&�<�ƶ��Vኟ;@�:a����t���D%a���ێ:��w�6��aq�"��7���5�'�˦�'�a�T���=�i��*�h&�k���D>:��䠲�����Қ��Ȗ^�.^��xj����d��YQ���n���Nƫ
-xi�zF�����z���^��dA����P�'���ß�h$�v0GG����?�#�.~��WE�x��Ӄ?2����,�e���*;x���ZETdIF�1�����l��y��ZRV�}�!��	U��g&H$�<'#H�WO�e�\���y(hy	��pS�[z�s}A�$zd��{��}G�N2-]���`r�w�H���C�����v���ޡwy�����W��
+xi�zF�����z���^��dA����P�'���ß�h$�v0GG����?�#�.~��WE�x��Ӄ?2����,�e���*;x���ZETdIF�1�����l��y��ZRV�}�!��	U��g&H$�<'#H�WO�e�\���y(hy	��pS�[z�s}A�$zd��{��}G�N2-]���`r�w�H���C�����v���ޡwy�����鳽
 endstream
 endobj
-1313 0 obj
+1357 0 obj
 <<
 /Type /Page
-/Contents 1314 0 R
-/Resources 1312 0 R
+/Contents 1358 0 R
+/Resources 1356 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Annots [ 1278 0 R 1311 0 R ]
+/Parent 1279 0 R
+/Annots [ 1322 0 R 1355 0 R ]
 >>
 endobj
-1278 0 obj
+1322 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13258,7 +13284,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.113) >>
 >>
 endobj
-1311 0 obj
+1355 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13267,56 +13293,58 @@ endobj
 /A << /S /GoTo /D (Hfootnote.114) >>
 >>
 endobj
-1315 0 obj
+1359 0 obj
 <<
-/D [1313 0 R /XYZ 55.693 823.059 null]
+/D [1357 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-286 0 obj
+274 0 obj
 <<
-/D [1313 0 R /XYZ 56.693 621.685 null]
+/D [1357 0 R /XYZ 56.693 621.685 null]
 >>
 endobj
-1316 0 obj
+1360 0 obj
 <<
-/D [1313 0 R /XYZ 74.626 78.155 null]
+/D [1357 0 R /XYZ 74.626 78.155 null]
 >>
 endobj
-1317 0 obj
+1361 0 obj
 <<
-/D [1313 0 R /XYZ 74.626 66.2 null]
+/D [1357 0 R /XYZ 74.626 66.2 null]
 >>
 endobj
-1312 0 obj
+1356 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1323 0 obj
+1367 0 obj
 <<
 /Length 2012      
 /Filter /FlateDecode
 >>
 stream
-xڝ�r�F�_�G�ʄ1��P�\�#�ܪ�J�0�$"4�h��� �Ei]y!zzzz������_?m�oT�(�eq8��'^��N��H;��󻫗�Lg����^��@�Www�� u[��?��-WA���{���H��Z-��|Z�7������n���ɫ�����>9�f��D����K3�K����ŸI���@�щ�Z����$�RA�~.�k� ��ݫ�mL��{��ƌ"/�2�fl��:�.�Mulm׍�~�-ץ�:����z/�g�EƁ�1���ǃ,s+S�p��ݻ�Y*�����S\
}�vm�3����):��Gv;�������E�a�t�:��Q���<��i��Y���e����z�UFQ̪u��ۭ雖�ώo�����h/ӾB�D���?�)sQ*����s{�������;���}:�e�̂q�Â�ѶH��E��g�ļc�n�%��{�,o>3dZ!#�$��,ye��Xf+g��*�!b�b��L�E5�4r�窲}[؎���m�S����+�P���C���m�k�ʐ��+p��x���%��kX�ʠU�%�D��B�CA�C(���r�2Z�A���jƑ�0����l(��|��@�Y��m��-���b���_C'���9�(���^�M�J�n�� �oG���##��8�4��%�y0i����m��	�ȇh,�M[􇪓�������=�FΘ��r��*��V��r�3+˨��'\�]��nP�'�i��`J,/����%�lm�������~
-n��^�Fyh��UT�#+��_ʮp�)�
-:��b�]�kCV
�Խ��ch�p,�z^Ri�>�X"�8�/bRec��0�@d�C9�z���z�+"L��L	�RF��5�nQS�N�9/a����T��q�'��K����)�4H�D��A�Z5�*(ʑ@� ��7#6ptG|"�$����h�,X�&���������˨�Ꙕx�7C)˜�qF�v�ܑd�l�gǗ<�É��R�]��p�Ap�ΫWb��X=6#�r��p��m�z˸�鍐�;��KW�kS2lF6�;�x��d�h�Fa�VMףc&
����|���T`ˤݱI�b�J��/��xD���+�<�\��o��=
.-/���*χ��`XP.�Q{�M��P,�|��I����C��XM)�@-�dV\�3���T,6�(2x�RY�	t#)�'��[���5e�e=�j��ğC?�0��2��ÓtR��9�����ePw��1vh���4p�W��0�d�ܽ�Fh3�[�@�Y���������m�vؕ����.�4T(G���ւ�q#��O
-���a�iG�"��#�틼��$Y=�:��ݿ,N�����,&�/�5nϷ���L0��%':��0so�9T"`G�S]�
�+eWTGz��#�yoC��^$�(=4^�,��iɸ��p�l��a$�۞iM�zv��]�P�������6�9��)O�)Hbx-F !I��R��8��"�Z�S��qJO^D��,_����SL]�����6�<�?{
�xS+�G�kma�F=��/����^���6F� ��jT�r]�����R ��1$5�$�e��!���v_�Hg�&�5ٗ�������X{���9*�*���I�2b�O�+N�F\�ά75�Ov<""��PJ��W@/3>+��h��C+�Ep:̭7ӟ%���4�gUBOļ�?R`.5����B���M- l�����f�����\�:��¿CP̼�IxB�R}S�'E��>`l�n���N��a���!�T������P����T����'	��
���I@-d�Z��[x�:0W'���L@����������9��!������f}/{��`X�.�@(;�}��r*�j�%C��ݯ�,q[3�@�(A=��m�=vo_|����7Oƚi��������z������3�
+xڝ�r�F�_�G�ʄ1��7E�b�bG��U���aID8h��﷯��u������{�;{�w~Y��Y��Q�����q�lvN�xI:����l���d�����|�����U������2��ߖ�����o�U�~��!B�
�&n�/��|Z�7������n�S/R�Sԋ����-�}r|/�3�(k'ʔ���Vη�ׅ?�<uT�*�N$OS�Kc5I�T�����-������ص�X��=�EcF�F	��wVA�i <<%\���ؙ���~kו�{5�k�f/�g�EƁ�1���ǃ<wk]6p��ݻ�]*��25��S\�CPꚦ``k:9S�L3Xv;]�5����E9a���Ʀ���Q���0����Y���a�����UFQ̪���۝ڎ�ώ������^��
+��+#�f�E�X������B/����#�0�b��PV�A2�!�
+ԼF�"A���p���)����lY�|fHwBF6$I0LU��|K��Vζd�U�C&�bń�9�f�jY���um��4=�)2�[�n����#hW6[�����.uŋ�f�v�&���W�����-�?pK�n߲�F�<K�"m�ȇ���P�����;d� ��	���(�#%a��σ�2Pn�������̔ێ�:6$��ż㭿�^�	|�)P����"�����6�Qpߎ�lIG,���x�4��%�y0i�����Ɔ	�ȇh��mW������á��=�FΘ��r��T((���n��gV�QgO���$}Ӣ�O����QWX^p�1H4���bs	͡���d1@��)�,�&��᫨,+�8\ʮ��Q��x��.�!�q��B�1d1�q:/��c�~,U�{�1�r����y�x 2�a��ZI=��c�L�i)#��)�n�P�N�9/a���T���q�'��K����)�R�2����5$j8UP�#�A>�#nFl��$��D6I����Y��M`!)�=}��Q/��3)3�h�J���㌠�M�#���pώ/y&	�4'���A�PC�����ΫWb��Xc��t�H`��qߵc�e�VZ�ώ�xrƥ/���֖�����q1>�Q�u���IC*︢r�9;�=��2i�6	\�P���Ź�G�)�r�C9�;��������l4��b�taÂrA��ܣm"O䀒`X�N�ņ���\�jJQG�j�$��J�95�b�E����ʆO�I�t2ΰ���][U|P��s����N�93�LP*Cc'���[�ʺ)ȅ|��T%�pG{��C���g��2u���$vr���9�`po�	f�+cЗ�Cg���9�aW&v�N�$�P	���Z^Ǎ�&ooO
+���a��`���
eQ��}���C�k���_'xDqJJZ����ߋ-#�Q�	,^r�c�s��C%vp4�>շ���R�e}�����8b�G�6��D�"@�C��"?�搜[H:n�m�"��{30�nA��]�/Z*8�o�k)n���9���4��$��b�d.�����a�
+{*U~nG���ED���e��=����{c�k���������7�~���l6�3���
����/�j��R16�0EU�+���z)!/��CR�I�Av;B�~�F�E:C�4�����}�X��YH;Eĩ���Y��?�r8��.-&��ĸ��m����zS�d�&�Jڥ��`��Yy�D3z;a�/��an���,�|/�rxV%�D,j�#��0e����CH�������u���.����b�X�%��[.�;���a��' n)�7�~R$�����M0Q��P7̶�<$�*y������
+�����P3��$"�S'A�d(v�_9��G����d��	<"1�=�F�%j�'5�������vC,�����Y���ǫ;X�V1�4�c�8E������d`�ٻ�u�%�o�����%���1-�����^����X3M#�~}��_�^[]ߊ��D�3�
 endstream
 endobj
-1322 0 obj
+1366 0 obj
 <<
 /Type /Page
-/Contents 1323 0 R
-/Resources 1321 0 R
+/Contents 1367 0 R
+/Resources 1365 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Group 377 0 R
-/Annots [ 1318 0 R 1319 0 R 1320 0 R ]
+/Parent 1279 0 R
+/Group 425 0 R
+/Annots [ 1362 0 R 1363 0 R 1364 0 R ]
 >>
 endobj
-1318 0 obj
+1362 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13325,7 +13353,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.115) >>
 >>
 endobj
-1319 0 obj
+1363 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13334,7 +13362,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.116) >>
 >>
 endobj
-1320 0 obj
+1364 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13343,133 +13371,133 @@ endobj
 /A << /S /GoTo /D (Hfootnote.117) >>
 >>
 endobj
-1324 0 obj
+1368 0 obj
 <<
-/D [1322 0 R /XYZ 55.693 823.059 null]
+/D [1366 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-290 0 obj
+278 0 obj
 <<
-/D [1322 0 R /XYZ 56.693 782.706 null]
+/D [1366 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-294 0 obj
+282 0 obj
 <<
-/D [1322 0 R /XYZ 56.693 755.565 null]
+/D [1366 0 R /XYZ 56.693 755.565 null]
 >>
 endobj
-298 0 obj
+286 0 obj
 <<
-/D [1322 0 R /XYZ 56.693 540.855 null]
+/D [1366 0 R /XYZ 56.693 540.855 null]
 >>
 endobj
-1325 0 obj
+1369 0 obj
 <<
-/D [1322 0 R /XYZ 56.693 435.251 null]
+/D [1366 0 R /XYZ 56.693 435.251 null]
 >>
 endobj
-1326 0 obj
+1370 0 obj
 <<
-/D [1322 0 R /XYZ 74.626 104.834 null]
+/D [1366 0 R /XYZ 74.626 104.834 null]
 >>
 endobj
-1327 0 obj
+1371 0 obj
 <<
-/D [1322 0 R /XYZ 74.626 92.879 null]
+/D [1366 0 R /XYZ 74.626 92.879 null]
 >>
 endobj
-1328 0 obj
+1372 0 obj
 <<
-/D [1322 0 R /XYZ 74.626 80.923 null]
+/D [1366 0 R /XYZ 74.626 80.923 null]
 >>
 endobj
-1321 0 obj
+1365 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F23 398 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1336 0 obj
+1380 0 obj
 <<
 /Length 1387      
 /Filter /FlateDecode
 >>
 stream
-xڕWYo�8~��УĬxH,�l��i�$�x���flme+������3��T-�sxh�o'�*J���_�oxq�L��h~�ˌ�rw�t4_F�c=�m����Τ��������㫩۸�W��o�3�L"�kwP��{��ZL���O��ob���R�W�b3��%��p�>J�4y��_n"�s� ��f��$h�G4�:a:�9�Og��4���S��I4�(#[���,�=��l���-noaѱ�:��A�ŵ[[$�澱mk���X������s�^4�X8��r�“�xy�����ᚠ�B*/�`�r��ʿ3P2�PRy]��v�!c��g{;��j��D3�S&͸bJeȡ[�-W/��	W۲��#�8C�pE����
�����|ڮ�*<"���n8��k;|�k���ޝ���]8"ݦ<n�-�I�%g\�=R!墭��+]h��Q���G�jA����␝J�].���~��yG	�������N�C`���6+n�
-7,���"�&]�I�zTnI	�W��->]a �w��!��a�1�U~��c�[����,��>��"�#��%�7�x�]n�o�k���L�lψ6�@w���y���)�p�҄��jU7e�ބG]�"\��R<	�s49�I������>/��ά� Tu���Cy��D����l<�`���E��\�I�E�I$U%O{���Y�D��2n�ug���)�u�1���nƔ�fZʠ��1�
�^���/�N+���P�%��`���9e<��Q����T����� �2
��Ұtg���*��,�J�DZ#֘7�Jș�����Ҳ���B�xW����\ŭ���j�&�{�p?���+Z��K����;�;�;��@����cE�}$±D8�7sU����=/Dzlu���K�a3�Y���qjY�:܏�d*Y��.�����H� ��A��X~(�Co5ϐ�$�	�(*0s���)
-�K�;�&��<�Ph���М`*
-�d��~Ɣ�\��v�嶟3�����������4�胳��C��A:��Ȝc	u��� ~�]\I��xF��-�����f6��k����
�{��s����p#Y�H7��Lό��I%`��)^)H�zq�����Hd�H��@���+��8D��ƾ)W�&��`�%V@7�M���'�f�������
����!�X��*��ƅ��,���̘,Է0t���Q��}q��@C2n�v?���cC���S�����~��e0}_��&�J�����
-��O?)=�����h@,��p���*�X58cY����
-�����jN�g�����s$>]���C˯�n.�W���8��ө8
+xڕWYo�8~��УĬ(R�T`d۴M�&��{��>(6ck+[�$o6�~g8C�J��y1�����p��(x;�u>y�F&��"O�8��I*�\i̗��0��r��/�:=��؄g�ן�q^Mq�?�ޝ�Lg��#^�A���6
��~�����'�&�F��DFh���f��K,��}	�g��{�	t&E�Y7��&�@s3��1�0�d�E,�t&e��7|DE���l����#Ж�����ڮ�
�[Z��%bQo�۶vɜ=���p[��袱�����N
+����+pGkD���Pyebit�S�嘁J�@����%ow1���8��Q�Vk�̔I��d0�Zh��n]�XZM��GRo��V�t��������
�����|ڮ�*:b���n�9��k;z�k���ߝ����] ��nS6��$�J
+i�)1#墭��+1�����4נ��G�jA�R9k�!;�,fv����Z�Vb���'�!��X�
b�q��\�ir<V�1��3	T/��-+���ޚ���+
+�.�;�8,�hpՂ<~�ؚ�q׈�E6�GVqd�RD��d����$�6�ֻ�0�δL��x��t�z���-�w� ������jU7e���G_�"\��R:�C��R{i�8`���g%�u��n��/O���T9X���������
+�]�x�E��[��ErUr�!�-�UK��,�f[wv�lȝJƾn!^��fL�85�(�U�:�t.�A��PA��K���v�w-
TiŮfX>)q��#��";�X��<��W*tֿ����riX��}��J��e}�A�u8F�`My󬄜���ߥ�洬����PG$�?�~�鰵vC�\���L8o��8|��|�t�t9�|�tG�(�ߢ���t�����@8��\3wW%�j]��0�r,�Vtu^ڎ��"t���
+Ҳ�u�O�D��9]���=@�bA9T��P�Q��L	�5��(JNHDQ���Gb�Q�^J�4!�f�C�G���R1��I�z�gJY�p���q��-����vUW�W���ܖ��G�쓧��`�F�J(~tǗ���tq��V�3�7H^h���v0����]�,�gm���ܞ�l
F�JD�¹fz�e���tW1�&�+m<	W/.6q𺆁~?�{32;�2�GEfZ$�*	�㜌}S�v
��%U@ɋ�l����q��r�[TE���U���W*oZ(�Ry����C}�D�����������6�3���pS�����������������}�ޛ�#��i���+��nRz�ɉ:��)рX:��j�3���j&hƲ�q}	�d�1���՜[�4�!��w�D|�x;G�__�\�/�.G�p��V�/
 endstream
 endobj
-1335 0 obj
+1379 0 obj
 <<
 /Type /Page
-/Contents 1336 0 R
-/Resources 1334 0 R
+/Contents 1380 0 R
+/Resources 1378 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1197 0 R
-/Group 377 0 R
+/Parent 1279 0 R
+/Group 425 0 R
 >>
 endobj
-1337 0 obj
+1381 0 obj
 <<
-/D [1335 0 R /XYZ 55.693 823.059 null]
+/D [1379 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-302 0 obj
+290 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 782.706 null]
+/D [1379 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-306 0 obj
+294 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 715.085 null]
+/D [1379 0 R /XYZ 56.693 715.085 null]
 >>
 endobj
-310 0 obj
+298 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 647.297 null]
+/D [1379 0 R /XYZ 56.693 647.297 null]
 >>
 endobj
-314 0 obj
+302 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 565.064 null]
+/D [1379 0 R /XYZ 56.693 565.064 null]
 >>
 endobj
-1338 0 obj
+1382 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 491.839 null]
+/D [1379 0 R /XYZ 56.693 491.839 null]
 >>
 endobj
-318 0 obj
+306 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 151.866 null]
+/D [1379 0 R /XYZ 56.693 151.866 null]
 >>
 endobj
-322 0 obj
+310 0 obj
 <<
-/D [1335 0 R /XYZ 56.693 92.713 null]
+/D [1379 0 R /XYZ 56.693 92.713 null]
 >>
 endobj
-1334 0 obj
+1378 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F23 398 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F23 446 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1341 0 obj
+1385 0 obj
 <<
 /Length 2816      
 /Filter /FlateDecode
 >>
 stream
 xڍ�v�6��_�G��%x��I����u���i�����
%:���s):t���3��a� ~����⇟T(�y�w� /��N�
-AY�5�oa�Z�e�}��׫u��������
-]���q�a�N�:N�[�A�",��w�\\�]|�Ppl�񔸌2����o�A�_�8J�*�J�� �TT�0��.����eGe���(��j�T������K*lNM{�����/��W����=V�Ǽ;�u+�D�**�I�Bt�qo��.��7�Q�uzp�a�W�H?|�c���ձ_��G��6�l\�/q��fq���i��~���>9��6�
30��|>�p���f쎩�
+AY�5�oa�Z�e�}��׫u��������
+]���q�a�N�:N�[�A�",��w�\\�]|�Ppl�񔸌2����o�A�_�8J�*�J�� �TT�0��.����eGe���(��j�T������K*lNM{�����/��W����=V�Ǽ;�u+�D�**�I�Bt�qo��.��7�Q�uzp�a�W�H?|�c���ձ_��G��6�l\�/q��fq���i��~���>9��6�
30��|>�p���f쎩�
 �QY�e��1x���d�?�:����[<2�@D�*L����
 �j'+�O�kh�A}!��A+V�!�pD���h�=7����u�Һc��:�.�@�}�B%( J�@Ym�!�w��1?��x��CתQ�G�[�:cݸr�'ʖ����[�p`�A.����r�`d�A�G�x�[�
Ǩ�1d��r�,�>�m��@Aq�΢�b��z��7H�i7�'R3 _kT��V�"�»}k>�n���Mπ{o��������*�Bݝ�v#n/l|f�cm"���_�X��E�>��=D���]\)�Q�
F[�?5��"+G�{���9����1���@g�m
��F�Q�R�~�h�-�g���MUbX�+�6o4܎,���R��-Hn�4&�,�{"�uL������C�;ꎁȬ�@F�xG&AX�C�v���qI^���d3
 ��tx����eh{Al�i���FB1��u<?����2>��n�0Z�\
@@ -13483,20 +13511,20 @@ eȿ
 A��}���z'{�Ȧ4�cJM8����K� �p�X+��4�/ݘ�$u�b�gK��6�r��u��,~�@�F6�� 7�,�\.����n��8�Pa��ǵ?��K6��+��JC,2S����

�l$�`��bYLj�����6(�-��n���D$���R/�l�����?�=�5Z�F�V�I�b,f�p������ݘ�����v�u����5ͦ[�L!�p&,����;�#���+ˆZ�*��v�>ȶTd�-7_b���k���k���w��ߤ)us���c�5�!|nw��Ue�2��;��1��[Cͦč���x����3���T&{~�zc�[���t@z�τЗK7~-Z&���~
 n����.b��~x�����I���1�VQ=�~�P�e�z�xqz��Ág�.�fR���!��$W �n�b֘E��7"�~8�}��+�Aw�|:>�vYQ���|z$°���{Q"^ߓ=I}�r�SKK.INJ�&P[4��H��+�g@q�<�����Yby`tR�4�m[�\��	'��FZP�]6x���H`l8{��ߏ��t��1��@�E���J�	�#B]��3����͋bC�D𑟪>4d
 ���6dAq����E ����-���������嘶qLdD���A����AcjGȖ"x/�SW�]>
�Vx�{}6�ô8��s��</�G��I��+�$� u��o6a&N�� X�?q��)T��������kd��﷎#A2��4x�G-�魄��Y�m�%�׌%���v2�4�j*�b
-
���<-���]��Y��P]��O��^�b���R+;.Ea&��2�2�����?�8�"���u#.iA%T{�������c��
+
���<-���]��Y��P]��O��^�b���R+;.Ea&��2�2�����?�8�"���u#.iA%T{��������e��
 endstream
 endobj
-1340 0 obj
+1384 0 obj
 <<
 /Type /Page
-/Contents 1341 0 R
-/Resources 1339 0 R
+/Contents 1385 0 R
+/Resources 1383 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Annots [ 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R ]
+/Parent 1279 0 R
+/Annots [ 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R ]
 >>
 endobj
-1329 0 obj
+1373 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13505,7 +13533,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.118) >>
 >>
 endobj
-1330 0 obj
+1374 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13514,7 +13542,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.119) >>
 >>
 endobj
-1331 0 obj
+1375 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13523,7 +13551,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.120) >>
 >>
 endobj
-1332 0 obj
+1376 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13532,7 +13560,7 @@ endobj
 /A << /S /GoTo /D (Hfootnote.121) >>
 >>
 endobj
-1333 0 obj
+1377 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13541,71 +13569,72 @@ endobj
 /A << /S /GoTo /D (Hfootnote.122) >>
 >>
 endobj
-1342 0 obj
+1386 0 obj
 <<
-/D [1340 0 R /XYZ 55.693 823.059 null]
+/D [1384 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-326 0 obj
+314 0 obj
 <<
-/D [1340 0 R /XYZ 56.693 782.706 null]
+/D [1384 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-1343 0 obj
+1387 0 obj
 <<
-/D [1340 0 R /XYZ 74.626 481.386 null]
+/D [1384 0 R /XYZ 74.626 481.386 null]
 >>
 endobj
-1344 0 obj
+1388 0 obj
 <<
-/D [1340 0 R /XYZ 74.626 457.476 null]
+/D [1384 0 R /XYZ 74.626 457.476 null]
 >>
 endobj
-1345 0 obj
+1389 0 obj
 <<
-/D [1340 0 R /XYZ 74.626 445.521 null]
+/D [1384 0 R /XYZ 74.626 445.521 null]
 >>
 endobj
-1346 0 obj
+1390 0 obj
 <<
-/D [1340 0 R /XYZ 74.626 421.61 null]
+/D [1384 0 R /XYZ 74.626 421.61 null]
 >>
 endobj
-1347 0 obj
+1391 0 obj
 <<
-/D [1340 0 R /XYZ 74.626 373.79 null]
+/D [1384 0 R /XYZ 74.626 373.79 null]
 >>
 endobj
-1339 0 obj
+1383 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1352 0 obj
+1395 0 obj
 <<
-/Length 937       
+/Length 938       
 /Filter /FlateDecode
 >>
 stream
-x�}UKs�6��W�H΄0A���GN�6��3�&9�E�!	��f�����xz����~�]�!9y�z�Y]\3I�����TTU���%4����D�Y����͟�i��\��ݧE��������e�)�
-Q�<�s��NW%Z�_7�W�����9a�(���	��W���d��$��*�w��Q2ZV@v����*��otX�T����+���Js�
-?H/*XE�D�Б��M_��"}�)F�d'Q^@�IA+ƉР�*��m�1B��4\rͩ�� ����7k�v�c�̽�u�]&���fh�Ό�s�|�JA����w�/mo�L��L�S84��5�ON��^������ۨk����g�����������D��=z�ڞV�6eP�������j�9m�&D]f���H8+(�dLS)ᆘ�B(��8���`g�-S���=�n![�X�@3J |4�l)H�7P\��,���p�@��g3 �,�Q�	o��xPlpj�1��j_E�<��z��s�D_��j��ѴC������D�A���⏫WA<D�_&<�!���yj�"��`�v?����z�����\K+�\Mi����U�6��ı	y���`D�x��_4DP��豂?��������f~�o�+��BÅ�����k3�T}�H�A���%dd-S
չ���'&p�`:���:���2.�:ۛ�q�i�sv1rݜ�p�K0�����qO��� ���!��͌;
���7����W�s��8b�-����isH��C�����f\|0�aMb���!&
��M$l#\�Npv\��&�E��3�^?럗2.%ժ����U�}%?�d���D���t}�
-Z�[�EIa�=�݋�T�R���G��uNzS���<�:����P+�K.���f}���nn{�8��?����
+x�}UKs�6��W�H΄0A���GN�6��3�&9�E�!	��f�����xz����~�]�!9y�z�Y]\3I�����TTU���%4����D�Y����͟�i��\��ݧE��������e�)�
+Q�<�s��NW%��_7�W�����9a�(���	��W���d��$��*�w��Q2ZV@v����*��otX�T����+���Js�
+?H/*XE�D�Б��M_��"}�)F�d'Q^@�IA+ƉР�*��m�1��(�f�K@Σ9��c���!q�f���v쑹���N�˄2; ��ҙ�}��[)ȟT�N���୐ɗ��q
+��3öF��)��+w�21r{uMX���T�����7����^W�h2�G�^��*٦���]=�p>��QM;��Є�ˌ0��	g���i*%�T��������eꞐ���-d+KHbF	��f��#��ʃ�S�%<N���lD�%1J;�m;��
N�>F�S��ȟ��[8q.����+�@Y��<�v�w�`Q�`����� h�2|C�q�*������˄�6�6x<O-XĴ��n�'<���\/���#\�kiœˡ�"��w߿�ц�v�86a"�����h���+���y=V�gs�ӼrZ�qvbB�LB�o�mq%�]h���}m�����6�������e��:7\��nL���x��@��؂Q��Yg{�<��#
~�.fB���av	&1󣱷2��)�����_:����q��2_�����C����w� UG�ø��?1?m�5v���݌��3�Il[<<Ĥ�^���m��	a��+�Ԅ��HPt��g���Cƥ�Z�����
+���Ǘ̿�(�2��UAx�()l�g�{q]��V�P���h�ΩbAo��'W�8��a�|�e��ݬ�Q������b/�'������
 endstream
 endobj
-1351 0 obj
+1394 0 obj
 <<
 /Type /Page
-/Contents 1352 0 R
-/Resources 1350 0 R
+/Contents 1395 0 R
+/Resources 1393 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Group 377 0 R
-/Annots [ 1349 0 R ]
+/Parent 1399 0 R
+/Group 425 0 R
+/Annots [ 1392 0 R ]
 >>
 endobj
-1349 0 obj
+1392 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13614,54 +13643,52 @@ endobj
 /A << /S /GoTo /D (Hfootnote.123) >>
 >>
 endobj
-1353 0 obj
+1396 0 obj
 <<
-/D [1351 0 R /XYZ 55.693 823.059 null]
+/D [1394 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1354 0 obj
+1397 0 obj
 <<
-/D [1351 0 R /XYZ 56.693 789.929 null]
+/D [1394 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1355 0 obj
+1398 0 obj
 <<
-/D [1351 0 R /XYZ 74.626 356.565 null]
+/D [1394 0 R /XYZ 74.626 356.565 null]
 >>
 endobj
-1350 0 obj
+1393 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1359 0 obj
+1403 0 obj
 <<
-/Length 1029      
+/Length 1030      
 /Filter /FlateDecode
 >>
 stream
-x�}UKs�6��W`r�f"�x��[�ȩ��ulu�3I0�H�T\���bAYv=���b��o�[�l�R�q��fqv.���H���LƳR�E:g��}M����������J�<yw}}��E��7�y���v���LUr��u��%�Y~�|Z�7��ܦL��9�B��[|����>����`A�c��(aٲ�ŗE#����"�9��R��/s����2IQ��Б��%�]t�}�ӗ��XE'�/� (���tDI��7��8���/˕V&�������	}�7�f�`[$.`�2k���Rty.c��y0,D���x�ޢ?�L�&*���S3����w�7�m�G�N;-�.��I���ٶ��r��NA-`�'	��[*�]_9(d�I6��#��sc�]���eԻpU�ɕ;16�{�Z!��c8������ ����%$��?�sz٢�G��G���4ER���s�E*���J��7�։ɸ�Ӱ'3. W�B��
-�6��>O��`��|��Y��V(���$�<�,�)���D*�@���Ї+#�0��&���H���#:hzR�5����+�2ݿ�q���!��@���x�62��#�M
-��S�d�
-
��JE�	��q�%=E�?ݸ���i@��G�2�S!�Rgɾu�G�~����O&���fc�&����f� ,@�]�j�{�^t0)=�|KM��ڬo���x�����ן/�~��x��
-�WJ?��@~��(����Pn�n�	ۦwv�>7y�sTi�H����ǐ/�S����=�'ϧ�6�GeYq�UMS���!M)�d���7D����7D�0$�:>"ah�,�G����$��)
�!ͳ>:;/X��Lf�y$�W�.�Dԋ��$�;Z�M�MLBI5t����-�n�� w�A�V=q5
��a:�<��i:���̶~���*���jVt4�z
-l�
��.�9������gr��(�.NJ,.ez�gh��:�0V��M07��mM�����9����b�m�ƿ��tƿX�,G
+x�}UKs�6��W`r�f"�x��[�Ȯ��qlu�3I0�H�T\���bAYr<���b��o�[�l�bv5�}=��	�I"��KR���(�[W�k��EVD׫���%������\���9n������|!u��fcQ7�2=���8[�g�����8z�3��fe;��=f�}d1WEΞ�f�t.x^��a��/�8D>�'�y�3PӅ�q�
�3^d*#��?���YBG:��pt�j%�Ѓ�/��X'�/� (��	�舂���7�!��r��|�U��ͦಈ��R3��#�{�5[���R�ty&C��90,Dt@��=m��oџ��mۘ��;�M����4́����
+3iRl?�a�m�-�n�S��IO���eە�
+i�D��R�x���Bs�Sʨ�Oઈ�{blxt$5*.�|ƃ�pd��UӁ�U=��sHu����A�4��ݱ4yT���q�E*��J��Ր։ɰvc�#36 ��B)�
+�Ƨ�'N���\��̈́,�mJ�oiwe��%ɣ��H*]O��M��+"�0��:���H������?m����Y���S�_˸nwCJ�#T��H�axwl��e@�X ـ�B�R�kB�3μ��ȁ8����=���>
`��`V`�e�X�4�5ָ���cX��(���P�^=mz
�����º����I�H�[��˛���&\�/���q������.��Rʓ_)�L~�I꽣d�~��B�i�ލ$l�Κ�<�B��J�@�$�l	<�|������3���=��;�<J�Ɋ���h��4iJ��#sV����$<K��{CDC2Q�G�팥�(�����!��7dr�G�9+x���7���J���z�d>wK몮p��I()�v�=��!�4�0�8�
+b�'�ƞ��O��'��uk�=�q�����wW��;SN���^G���~��?�Z�轸�L.����%܆I�ť|/cC����T����۩	�&rඩh==qt�4o�<4A��
}[��_“��@x,D
 endstream
 endobj
-1358 0 obj
+1402 0 obj
 <<
 /Type /Page
-/Contents 1359 0 R
-/Resources 1357 0 R
+/Contents 1403 0 R
+/Resources 1401 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Group 377 0 R
-/Annots [ 1356 0 R ]
+/Parent 1399 0 R
+/Group 425 0 R
+/Annots [ 1400 0 R ]
 >>
 endobj
-1356 0 obj
+1400 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13670,55 +13697,56 @@ endobj
 /A << /S /GoTo /D (Hfootnote.124) >>
 >>
 endobj
-1360 0 obj
+1404 0 obj
 <<
-/D [1358 0 R /XYZ 55.693 823.059 null]
+/D [1402 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1361 0 obj
+1405 0 obj
 <<
-/D [1358 0 R /XYZ 56.693 789.929 null]
+/D [1402 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1362 0 obj
+1406 0 obj
 <<
-/D [1358 0 R /XYZ 74.626 356.565 null]
+/D [1402 0 R /XYZ 74.626 356.565 null]
 >>
 endobj
-1357 0 obj
+1401 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1366 0 obj
+1410 0 obj
 <<
-/Length 1727      
+/Length 1728      
 /Filter /FlateDecode
 >>
 stream
-xڅWK��6��W�(�ĊH�s�l�M����c;�N�W�m6z8"g�}�l�F�^$@���q���������+�BDU���vdy�WIP")-��m�),֛��·7]�\oY�W��}X�2�c�������z#�*N�wHP{��yX��/�oV׷�o+�Ɓ8�Q*ҠnW������q�Tep"�6HK������*��O�IaG������fQU$3\��$E/��4���7�^��������M6�]<(�8U�p��]����arH�=[o�$��_�?��뇖������#��Y�`��0q��=��~ /?�O�)2d�{TH��q�C?6[�D��]c������Z��K���<�i9��=��3M��~7�{�;�e�Wӱf�zس��Z��y���k�e��2T�~l�4��c�i��9����2���"���=z�yb��|�D@�NT�� �G��gR�`j�h;�4|���Q���W:�F�ʴS:�i�^�M&����⇇rতJ(B��J2.�@���>ǘ�6�1G�B�Q����^h�
+xڅWK��6��W�(�ĊH�s�l�M����c;�N�W�m6z8"g�}�l�F�^$@���q���������+�BDU���vdy�WIP")-��m�)�כ��·7]�\oY�W��}X�2�c�������z#�*N�wHP{��yXd�/�oV׷�o+�Ɓ8�Q*ҠnW������q�Tep"�6HK������*��O�IaG������fQU$3\��$E/��4���7�^��������M6�]<(�8U�p��]�����;$��g�M�d���k�g�w���rc���<��q�A�1��w�&nuݷ�A[�����	6E�L`�
+�z�@<.C{��f��"��蕴k��8�}c!CwX�Py	w0�G7-G�'�u�ix��&~�s��L�j:�,�]{a=Zk�=/��uͽWұ�WR��ۏ���QDY�i��9����2���"���=z�yb��|�D@�NT�� �G��gR�`j�h;�4|���Q���W:�F�ʴS:�i�^�M&����⇇rতJ(B��J2.�@���>ǘ�6�1G�B�Q����^h�
 ȊXfSU%`6J�X!���	�I$Ax3�֛<IÿץdG�5�G��W��c�����fǔӁ�L��a���/����?G�H�؀#��[�,���+aҘ���yB��+��e·Q5"`��sQXń��텿jl�#���kq�f1�i�P��p�I���������gp��8�i'qCv-�'�r����~��ī����Z��'�2�՚9NSف�^{]���4��8N���X0��Q�FN\��:E.߲g@�P,`������Se��zWU`A8˒�-��*!�<"��=`���,���i2U( @
 k50�C�
��zu]8��r����^]�eڭ|i���'�Q��|�P0&ʽ_�h?A���qb� l&��J|��d�CTNyX�7�!µ��Q*��tu�ڙ�-A���\���}7���e�9��X�zn���Z��������'�.d��s���wP��8�	�ռV���{r�D�U����G
 �V\:���
 ��t�.��s ��j�Y�V|If��0�z6�O�%u��O�]��#C3�6���^���
 �&Z�Oѩ���]$T��HI�����X8@�%�(�m
7уft0Ѻ~��v��\kH�W���*�$������s��V\�&c���S׵�j�_:��:����?��P�#�pdB#I�����D��
ۉa��
-��T�����0J�;��m/k�g�%X(u�����7s��=���B�i��H�#��4�Q1n�ՠ��P��K�*5Um`��c���Ș�ن�����.�-1����g�g$������O�
��a���3hٺ�,�)�09q��y�%�����uIVMCC�>�rx�(�'��� �wS�>V����E����5�u�i��/��46'i�m(4����G-�g��8�<N(��rl�j}t����=��G[�g�������񂠆����o0�?iv��i1g���������SR��q�=%EO�,9�%��V9�
KlisIx�JQFB&�৯ʠ��\���Jx�JxSE���e�VCŤ�CBS��L�B̄sx�	|ђ\�2�sD<��8���h♶If�I���3E��Б�Ťh����3kĂ%����/�Y��y8
+��T�����0J�;��m/k�g�%X(u�����7s��=���B�i��H�#��4�Q1n�ՠ��P��K�*5Um`��c���Ș�ن�����.�-1����g�g$������O�
��a���3hٺ�,�)�09q��y�%�����uIVMCC�>�rx�(�'��� �wS�>V����E����5�u�i��/��46'i�m(4����G-�g��8�<N(��rl�j}t����=��G[�g�������񂠆����o0�?iv��i1g���������SR��q�=%EO�,9�%��V9�
KlisIx�JQFB&�৯ʠ��\���Jx�JxSE���e�VCŤ�CBS��L�B̄sx�	|ђ\�2�sD<��8���h♶If�I���3E��Б�Ťh����3kĂ%����/�Y���8
 endstream
 endobj
-1365 0 obj
+1409 0 obj
 <<
 /Type /Page
-/Contents 1366 0 R
-/Resources 1364 0 R
+/Contents 1410 0 R
+/Resources 1408 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Group 377 0 R
-/Annots [ 1363 0 R ]
+/Parent 1399 0 R
+/Group 425 0 R
+/Annots [ 1407 0 R ]
 >>
 endobj
-1363 0 obj
+1407 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13727,73 +13755,68 @@ endobj
 /A << /S /GoTo /D (Hfootnote.125) >>
 >>
 endobj
-1367 0 obj
+1411 0 obj
 <<
-/D [1365 0 R /XYZ 55.693 823.059 null]
+/D [1409 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1368 0 obj
+1412 0 obj
 <<
-/D [1365 0 R /XYZ 56.693 789.929 null]
+/D [1409 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1369 0 obj
+1413 0 obj
 <<
-/D [1365 0 R /XYZ 74.626 226.463 null]
+/D [1409 0 R /XYZ 74.626 226.463 null]
 >>
 endobj
-1364 0 obj
+1408 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R /F11 517 0 R /F20 350 0 R /F13 562 0 R /F10 528 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R /F11 565 0 R /F20 398 0 R /F13 610 0 R /F10 576 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1372 0 obj
+1416 0 obj
 <<
 /Length 1185      
 /Filter /FlateDecode
 >>
 stream
-x�mVKs�8��W�H�Ċޔ��$�&Mk��v�3m��؜��Ht����v���� x/��\���i�za�iy峗f~V�^�P½r��`|8*x����;��∳����0��|�~�o'��(J� f��D݌q>�U~L��� ����O��[Ճ�o
�/^��E���K��� +o1�>������A-)B?(�Ap�<�p$�(
-��$J�#AtyWG�M������:�x9��0H��H���VXP
-�j��\B���(�S6��P>k�ؾҊ4fR#��)n�ߤ����;�i����;�U�7n�ĊfM��v��e߬�M��*�����
-��<�
0�a[��;�h��d���Y1�UV���Ъm�#4cKѫ���w��VыZ���"cլ�'�C�.+Y�
�8���k�#��I���Z�D��#���OS([��I�QD��X�J�4��a(Ep!�l+��c�J���j5�3�k�3c������"�5�NJr[Q�_���do�/��R&�WuR�߉��uȯ\Y�����Pm+vZv��e�g��Y9y$���v8
-��@:����Q�� �aH�yX-���fC�+<n�IhP��
-��l	�ə�W�F
-{D��x;�i]0���Fvi�.�!�p����2 JNJ�9�s���U�Q��]���2�G�܀펈��-*��OՐǚZ�`k	�4
-3�?��AT���V���1���kd2;(|`��Wb���]-��#�66.�!޿(e��W��t���d��^+,4�8{��?�Xo�^~ք����R���4b��5dX⪶7W".\#��5�_NZ���Z�ܙ���i��Ä��0{+��xr1Ib�j~zW,�|!�Q8��~�QnnM�s�`�Vm��`0jj)�ge'���M]ef"��a@!#_���n�<?6����D$}�]�h3(Pc���b|
��"ڜ�L�0��y�KCT����"�J�=�6��H��J�=N�DvP�,����Q<����ޯ��=Qcե���Dbj�D�)o-z5YX�9j����\,�I���������.�D=Mh�ϐH�@`�w&Ԙ�&���S���KcЗ���)Ԫ��xn"��t�A�W^(���t�+�v�c��/@��M�~�v�f
-l~zZ��cd���L$�~&���?^���
+x�mVKs�8��W�H�Ċޏ�9��I��i���L�m36�zE����/@����E>��� (��:����]����}7���)��8q�<t2���)7���'y��ow�7�I�l���82�#����b9�Q������4�*���r�2�����/^�F~��я_����s�<s^�f�D��f9���}y��v�3�MA-�}�˵Ap��i��‘Ԣ���4&Q�ZD�wu�ܴ����|L��ɉ�3�����؉R��sJ�Ln��I���x�1�^��3���$��P�b���7�J�#q�{%ו����3X%�qA,o6��j�P��͈�䠫�9��$���!�����l�R��.�=2	�vL��Q�Eŕl�M؊rͫ�`�D�.d"O�R6k�I�з�J�dC6Vj}
JtD�<�����NL�f�!:?u���Gn%�~�W��:���,`J�D��lǑ���J��j�3����Cы����"�5�NJ������9A��8_핡t0��߼S�_�!��!z�[�ڎwJ���$�{ż,���~�O|��%��z7�G�}�/�r��RgVNˠ���m��R��	(�}�Nb���d�ثd#�9����D��N�.�OM#��EĐi8M��t�cYĬ�-�[��(ԉ(�ʬFY�\��#�M���#�+Ni���S6䱦V��F@�D�ČA��D�s��S��1z��s�Lb��l�"�J�1�ˣE6pc����E���Ĭ���V_w��{1(��Fg��g�];�Ϛ���c
+:�FBw���K\��J��m$T����IK�F��\	�{}�B;@B;��r�`��Q�`��7O.&I�]�N�*�%��gu���)���d��Yj����
+����x�fr	j�ضQ�'��0��%�u`�F�̧�&����S�&J
+Ԙ�1�_���֧9"�+p��R�p�����@�-Ef,����À�3=(I6�O$/���bqO�Guih|<���?�Gb�[�^K���Cͬt�,��2/�'��x�_����l�u� ꩠ�z:G"���{b�Pc1/�ѧ&/�+�*�/{��U�e#��Dh��6%��5�>4�PxG���V�u�c��/�n�i�N�a'�R�ֿ���1��Gj:�s?���As��
 endstream
 endobj
-1371 0 obj
+1415 0 obj
 <<
 /Type /Page
-/Contents 1372 0 R
-/Resources 1370 0 R
+/Contents 1416 0 R
+/Resources 1414 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Group 377 0 R
+/Parent 1399 0 R
+/Group 425 0 R
 >>
 endobj
-1373 0 obj
+1417 0 obj
 <<
-/D [1371 0 R /XYZ 55.693 823.059 null]
+/D [1415 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1374 0 obj
+1418 0 obj
 <<
-/D [1371 0 R /XYZ 56.693 789.929 null]
+/D [1415 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1370 0 obj
+1414 0 obj
 <<
-/Font << /F15 347 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1379 0 obj
+1423 0 obj
 <<
 /Length 2248      
 /Filter /FlateDecode
@@ -13801,29 +13824,33 @@ endobj
 stream
 xڍ�r�6�������w�%�v�ę����a��`
 �8�&�8���� R��\��o_���y�����w�*��
-�4�����fAV�^�KI�=l�_�|�.�����7߮�q��W���WQ����	~�����ZGI��=.�A��ϋ�o?\�<\|�P@6�ԑJ��J���������^�e�=f�%�
-����r��"���.,� ��TAX҅@,(�8g���H�A��V�;��ݵ��m�>���"��3TEd���T�*��w����W�$N��7��m?�^ߙ��P�<�{m��+9]M��_CZ}�o�T�9pGA����x��<�~�[^�{�@�Gs	`��6�6?M��-�}�b��VP`�������n!��³;]w�j��S}�y�1V'�T���2G1�xy�� H�$Kw�8�#`��h
-hy�:eI����_�X�S�aP��#3߀1a������^h����g��'��|q˗z��FXţ�ᩀt��<�~B�$��5�c�֍x�2&Q�WfX)�j7�]�o�'��덑#dc�}��H��v��ѐZ���O�Y�@'8��'�|k�0V����=غj�
<�k^��KTL�?N���5��8E��L�ƚ���u3�'��xw¨S�����d{�`W1@:����vBy K����hu����O��M<'׃�Rƥ�T`;L���8�Z`���з����B~^Ix��P�~?k����uw���פ�й8���x��t�s�֚�yVw<��B6O��t�a��4��
���z�#;���p��Wk����Nzx6���g,CC����s��Z����G�V�
-�1@����I����T�a�0t������\(A��+�|�`�íqO8#*n�g+L�8�1��������C<	Bۏ�C���m�3�5�y�a.�A����(���e�-o {WF�|����F{N��q��RҠ�-'*��$��ʫ������#�қK�۳p6g���s�����?�1�cn+G�I�Z���<'�h!���� ? �u'[$��!��"��h�w�`���aZ��ؼ8����8���V!tu���&%A�>��+̍���z	P���5��W�i�ܦ�|1����u#(V7O�!N4_�s
-W�j�r��X����45
-�E�8��0��.��qz����K�R&=��S���[*ѯ�~̥�D�����,���8d�Tb����N(J��*�Ug+�5R��6`��\s`A����8X�,����`�JX�5LÛ�7�e���{��x��?���3�U��Pn1pAZ&ŠD
-�L��N�9���`SN�if��XNlX@��I�Q���sf�>���gٻy��W�ytF-E$��K��{G=f,R�A�@�n�^x�8-����BP�7�إ�Vƹ���kMu`JL��`wUY����1����;xrD���M*|qD*^?��BE�����#`<iG�? ^�5B��ۃ㚣��0�*�����}��)�(ʃ,{�R���.��S@��W�0J����E�$��JY�M�w���+�CS�P��A��7l�J2r�~"�y���˦��0r�(U�M-����r��=���
5�)5~����0���u��6�ǰ4'_�P��\����|3r��V�0@T���_v���<�L'�|J/����,;�U|�jlQG*_��X�{V��'h�n�d�O<uOc�Kǚ��l�3��q�n�a(���ێQ���9��d�X�Ub�w1�E���X���>�� ����=�2r�"����.�N���3N��X9ё�wF�-��l\J�����Hb�K�q�-*�e�KtAf�r�K����@Ri�Q�w?�Ty� ������P�z̢ R���4(��$}��-�2(3��
-��D��� S�˙�,��C;v��8'J�Qi�����)-����ڷLo���,�89��;��pO
-����G�[^���������@������gklM�J���UR"�H����-��{R��d�g��F%�~zs�	�*v�?����2��FƢm-Sz���L�W�^��:a���ţ�"=�X정,��;���)�L�y�8��T��K�57;)��3�,P����_=@�\洅ܚj7�Þ���V��q,��=8��
�H��%���Iubb��h����\D��ҹ�
+�4�����fAV�^�KI�=l�_�l�.�����7߮�q��W���WQ����	~�����ZGI��=.�A�����o?\�<\|�P@6�ԑJ��J���������^�e�=f�%�
+����r��"���.,� ��TAX҅@,(�8g���H�A��V�;��ݵ��m�>���"��3TEd���T�*��w� 
+ɂ��j�ĩ�������;����gv�-#tu%��i��kH���᭕J�8.�(�#����#�����z�vo��h.,�v����I7�E�/�@��=c�
+�̟�}�!�\��M#�Xxv��.X�Sp�/=�5�
+�$��q�Z�(#F@^/��)�$c�N�td�<M-��:@��#ɰ����~j6�Q�z�c�0&�?wr�`��������]�$P�/n�R�:�k�x3<��������Oh�D��FwB`�ۺ�OP�$
+��+�[�淫"���cp�wc�1r�l���o��<�ݎ�>R�3~��	�6���p�ėo���
+4����[W�A��Gt��u��I����:��� �1�Hxނ��XS���n������Nu*��:^��l��*H'��\��N(d�3BU}{���5�<��ib���D��z�@ʸ4�
+�a�����@3��ֹ��\��+	�*��gm?w��N�O����:G��5� p�Nv�Z3t#��GQR��	��N�#L;�f�20��Voyd���;�j-������IO���T���e(�c�p\ku������jØ@<���;i1��C�
+0̀�N������%��c���s�5���g䠀@�m�l�)�=f���{�R��qh�'Ah��"{���u��0/0��0�S��e8�L����M�d�*��O2��hω��"�0Y�BJ���D�ޒ$�Wy����|\zs��q{����,��~���Q�g�5ft�m�0iPk`��$-�����d��d��C�2�_Q����.a�y�<L����U'���*��Θ��Qפ$����p���b�:#P/*�������@��9
��4�/���1���n���8ĉ�kzN�jY�\Np��rݝ��Fa��g��4]���"6N�8\c��z�ZʤG�]�y
+�r�uK%������� 7r��wU���J��26]�	E�?We��l�F�p�f�֖k,�ӓ\k����^,]	���ix�����}u��>�v�{F��\���-F��.HB�D@X�H��i4۩9���lʉ8-���ˉ
�2�  �3ʰut��ǣT0�,{7O��J<�Ψ%����yI�c/�njE�B"b?H�ލ�O���1���_X����T���87>0C"8Br���L����*+=>�>��<C>O�Hy9�iB�/�H����'�:�\�(;y�y����'�����F��?t{p\st�FZ�!�s���w{#E`Ey�e�Bj������}
+`�*F	1s1����S)˰)��x�yh**9h3�Ɓ�WIF��O�0#O��\r��TC��ʹ�嚂Tn���?���f5�Ư��Fp��n������JR���X|�oF.��
+�J1S9������#�'���d�O������eg���]�-�H�+���r�J��-�
������i�A{�Xs�~���xF6:�\íb6eyX}�!�t�?'V�,+`�J��.��  1��߇pD�r�=s�GWCF�Zx��倃��I�rx�i�+':���H����K)�ܕ\�XI,{�3��c@���~�.��X�q�}u"��H*��4����*� O��$�c�{�*P�YD*�T�e���w��WeP�Q�(Pyd*u9����ch���D�3*-����a�V>�%� R���-[;�E''>�|agT�IA��2��(|�k�p�3�v\���9��`�l���C6BI��JJ$��i�["��|O�cq���ب��Oo.9��#VŎ�2��!T�1����X��eJ��2�����K�/C]'���x��T�����t�U0=%�I5O�٢B�
+Y��f'Ef��Jy9����˜��[�C�}س���*v;�eܺG'������0�NL̐�
����h�?����
 endstream
 endobj
-1378 0 obj
+1422 0 obj
 <<
 /Type /Page
-/Contents 1379 0 R
-/Resources 1377 0 R
+/Contents 1423 0 R
+/Resources 1421 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1348 0 R
-/Group 377 0 R
-/Annots [ 1375 0 R 1376 0 R ]
+/Parent 1399 0 R
+/Group 425 0 R
+/Annots [ 1419 0 R 1420 0 R ]
 >>
 endobj
-1375 0 obj
+1419 0 obj
 <<
 /Type /Annot
 /Subtype /Link
@@ -13832,381 +13859,1136 @@ endobj
 /A << /S /GoTo /D (Hfootnote.126) >>
 >>
 endobj
-1376 0 obj
+1420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [394.507 174.282 409.7 188.738]
+/A << /S /GoTo /D (Hfootnote.127) >>
+>>
+endobj
+1424 0 obj
+<<
+/D [1422 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+1425 0 obj
+<<
+/D [1422 0 R /XYZ 56.693 789.929 null]
+>>
+endobj
+1426 0 obj
+<<
+/D [1422 0 R /XYZ 74.626 154.323 null]
+>>
+endobj
+1427 0 obj
+<<
+/D [1422 0 R /XYZ 74.626 142.368 null]
+>>
+endobj
+1421 0 obj
+<<
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1433 0 obj
+<<
+/Length 2753      
+/Filter /FlateDecode
+>>
+stream
+xڝYݓ۶����'��h���L�su���ֹ8ׯI� �5E�IЗ�_��I���q�X,��b��P������wW/ߨ�S*(�4���^�Y{��ܻ�y?��f[������r���ܿ��}��
+��
6������o�QR���}0(��y������wW�Lzj�%̃D%^u�����A��^�e�=���K
+%�����wW���}��"rKJ�%)�ɂ2�s�I�T�)w%�#����)��`��ͱ�I��YV,�9t&9��-��>���#�?m�I�����nؤ�E�>����3�n�Q~m�}!���1L������^]ٮ�\��cǑ�Loc���!QP
Ҋ��Ұ�V�A�D�y$��D��?�ď�J���
+����Q[�ۣT�	�׭ƭ0���7���m�,��7z�y�F�r���y`��V�6<֍�<غiX������P��[�6�2�3UI�$�n`�ttݢ��6~b�2h9�}Ԧ��W,��M��h8d��gS(2v��=��f�j;[W�U��K�CB�$ۇ%�V�wl�5M�m/<�L��Cw2L=�!e�/X��(r�XL���vpRܮ�8�2-��-S�|_�xkzn���~w����������n�}�>�3�~u���,�(���(t'·`���`/�;������a�Lub��'斛	�Gfx��	�B��\����h\K �K:ȕ��N���V]oЮ�;������du�~��a����B�ۅLZ=|�;�Lߩ�@�����$�Ox7L?L
+Ȟ�m�7�=�C�{8�c������7���̠)� 3����E�c��.Q-�����G��b�v�/��e	�I�^ @je�X�V7�c�zQع��.cy9	2�U���[�Ġɨ@퍶��ƨC2�~�ߚ������`,)��K�����QaPwg��wN%:ؼ�x��-�dt[����K�"p?��'�]Ȁ���<q���I�� L|�^
+pE�]���`�3��.,HQ���PcO�螇S�/�ȿ���@�l?V�`j��Ŗ�u�s`����a���#�"�u+��a��!4�R�M��Q���ie�	���=��-hecp��(��[�u�I�G����B���aD8� k���/lhk{<e�F�99g�[y�l�
+k;�f/��Q���+�C��r�\�B8�q���K�84���s\"(�.��!��I����Fus0���O)=.2��[o%H�S
+�t80�1R���c�B���S��ºo�=倜b\�!f)��p/�`aJ@�@�4���c7�2��%��{Sٵ��l0�j���J?0���Y���Ӣ3-&^��i&wwlv��fl���H����7��=�4lHN[�d�$`���o�[&��;�8ƥ~���<����+8i���AH{;�
+�@��`�o�1���I�[�A�(?��܏x`
����2t�.*��'�k�-��ϡ00p�Y�0�H>>d9,[�����N�@j����V���Ł�nD���I|Qc�Ǐ�{,B�����
+R�pô���vױE�@Y��\��6&��S�2L
+��b)_KQ
+���n���v�ՔJ9�`j�xB�!G�®y�B
+3�]�n	F~�X���
DJZ��
+�:c��q`��*�{m
3n��tU��X�$I��y�-��P��A��p��y�ֳ8t/��y��j�$?�'@R��a+��-V�Y�dk���)�8��c�v��@�3���H��0�"�<X��sJ���Ij�y��ȩO��Q_��4X��L7{���ɍ��v�/���)+��S.3(`D��%������S��מYT~�E�P����B����I���EA�O�IP��Y���ʠ̢�<
+��g� SS�j���`��`��K�t�)�����a�D�$����v��t̀�t7��1�8�L��!��̈́e�4����9�0sNFu8�{:(�l�:�Vۮ������[@\��c�i+	
+\;$�xA{�'z%ĒB��`]Ƌ	5�%�P��ěM��3�fa�s�f�����i7s=c���(^e����;����@��90ӎ�{mIq��Q����y�Ku�y�ZU�<sh&R�I�F�f�{g��\P�T�`Vֳ������j�=���ʧ�t�=��q>�:�SS5YLB�l6�_�7�$�K
Lu�3�+����2� s�)��(w�a��1�u�$�ϫ�g��9��bu5���R��X���8~(�	����΁���~!���-V �~B9gd�ں���B*�a�l��s
+��?'bpH�"��n*.8so�I��e�)�f�������3��.1��/�)d1�]�M����09���r�#�_�S��5+�$开BP�}��cok�"�
+*'�����sZ����hP��C��E�WNW+/�g��5P��^8>�@�2�p���%2������=0���U�Уj�bv����s��/�8�v��4�n
>�,|�])vh
+u��n��^6���VE;���\��`Z�S]v17�<k^X�4H#�o%��}	Y?�*$�����B]OOSՄ�0�Ah��ŽǠ|��.��4�Ε�*�=��
��(̔@^`��P���"�ܢ���E���G��Ѽ|z��,ȐD��n�z��N�=��-Ng�X
�
+|�V�!k��t�u����-j]�iKx{j�
+endstream
+endobj
+1432 0 obj
+<<
+/Type /Page
+/Contents 1433 0 R
+/Resources 1431 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1399 0 R
+/Group 425 0 R
+/Annots [ 1428 0 R 1429 0 R ]
+>>
+endobj
+1428 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [428.83 304.958 444.023 318.75]
+/A << /S /GoTo /D (Hfootnote.128) >>
+>>
+endobj
+1429 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [499.807 218.283 515 232.075]
+/A << /S /GoTo /D (Hfootnote.129) >>
+>>
+endobj
+1434 0 obj
+<<
+/D [1432 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+1435 0 obj
+<<
+/D [1432 0 R /XYZ 56.693 789.929 null]
+>>
+endobj
+1436 0 obj
+<<
+/D [1432 0 R /XYZ 74.626 183.215 null]
+>>
+endobj
+1437 0 obj
+<<
+/D [1432 0 R /XYZ 74.626 87.574 null]
+>>
+endobj
+1431 0 obj
+<<
+/Font << /F15 395 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1442 0 obj
+<<
+/Length 2695      
+/Filter /FlateDecode
+>>
+stream
+xڝْܶ�}�����E���<(�d��(���J�������!�<$��>}�C�a����h􉉃]�]�����+�JEe�&��C�fQV�@�Ƀ�m�K�]oʼ�q�����$��y��:)�^��������כĔ�� ����¼����wW\)`j��Q&�W��[��!�#]�ZyL����	~���*���yGy�X�uӀi�>
#BY�8۷����n`�nQ��5���_�4�6�0Ȥl��:(�;�ܡn���O���xE���wO�	|�
��4��Dn�ɸ�	:�(��9��ߘ8C^�׏��kZ<t=�=��4�� ������٫D/U��&Jr
܉k�k]C�¯�s�m�ÿ�'	�T&AiP��t����NDl]U���us♡kX���9�}w߸�
)g��e��Z�h�ۊLRw^���=v�;F�(��.�i�1h��u�P*�t�#�\��ؐ��#�;�:�$��VH���
+|��Á�>�o�3��	��x�H3:���V�b�X���+_�Ԉ����$d�8'j�٥�C�h���Q�l�jR	Mw<ٻ�k������M��
+<0���`��o	P��n�{�1����8�?b����$��BH��<*�X���D�6��4�0	�t,{9�<�v��$�,6Dכ,V���,ɯ�2���E���'��t��'�������ޤ&
�@��G��[�{kϣ�^iO�%M���u��Ѣ��h����a�M͖a�+5x�]�yr��tCˁՐ�!B��D8\x_�v��?�):PTS�3�FwbR�^��3
+�p��P����@�#�B�߲�f�\4z�C��;*�EL��OeN$J�R;��;V���I�Ig�MMzXɐ_b�{���~�d�FP���`��p|���p��뻗oe���o`����?b<ƿ��Sy���ZD�۵D5��$T	�=t�D�Y����������!i4F:29�~��8�!�<
Yw& ���`<z��㞑 ��I�|au$����a���`��~��N�9ڊc�@90@��t�S�B�:2.�َs���oNB��ȧ�
+�q|0��qX
+�R������L���[�q�|��,hR&�t�/��*R��*� �C����s����s?⿗R>�H�
+�q�w�L�1��2�c�GV��j�#�`C�
!�&��О�����eЁ[�x�֍�Bg�J��OHd/���x��:^a�ݬ�PM�p%�����O#ۺk+ Z�͘���p��c����m9@qփ)/��@��%���!L��Wu?���j!\�7�2r_����9=�R�Vp���
�k���C �������=���Ģ�E��Ex�Rzf"���ŗ4%I�,ʥRHJ�-����f�$�Ta4�L�׻=��0����,�W�h�h*����sM��s!��E��T�o*Mt7�Nץ��ji�'Fa@�Xi�22:[�э�„��N��KN\p?/�����=99G�N�ß���� �G$Z	��\N48�rR������O&�;,�����J�f�:�\��������j���$��͠@��*�+BP�[��D���_(��4�[���$��Bx/N�{:�B�ꥨ\RZ{5눲;YMFS<j�|�+���&2q��'�^����ʲ��E���DL�z79Oݎ���H�3�"܊?�B~�!_“��o_.FI�%4P�D���.���-�΍�����N�~Yx�����������6�"��
w�9옹��B�m�݂�#1�Ό/ �:�Y؝��ʕJ����a��񁝆���dRm.n���sB-s����%x�����k
"��_2�q,Eɢ���9
+j�F�ef%���y�)�l���O˕@8q��m7'j�>��y��)!i�����"W{��$r �݌��ROR)*
+Y>��������l)0$�#�;:�(|- �AN�S1��rV�H�/�c�j������V��h�x�!qX�+'�> v��}?)��.��4���b:z~B��� ����Tu_5�-2���I+:7~R+͎��?e����k?����	�~\D��qM��{"�ྥ�m�N�X�Ŏ�E���Eg�|�s3��uXe�K� 7���K��L�<��K,���Ai��C�%Q�"��,[=�<{UeTfIF�/��J@�Q�|H�C���ZL�i|�8�uU�<	p`9��
+*�����BS-���K�ul(���XI�sAZH�>��Rx�����ċˠT�IW�p�����i�5|����bZS���H�<����LA�H���܃�}Й��xd%UB��/٥6�@����u��ߝ�ޖ�F)�=�"�fU�~�v�
+�wMb���iQ
��{�K�o8ڻ��4���F���דi����b
+���v�q���330�G��P��"!;��I�'��>�>��ֿ��|A�źZ�����̡��h�u���u!x���I�z�0l?����vwÏyq�?�R8/���@$BIU�q�(���Ĩ"��"�Q�$|V��'#S�Jbd�8�R��X�ÊU�R�'ͧ���!���*��"��k��\�2v��)���7KQ�/X6��A	��.�X������>k�AQ�:g1�
+endstream
+endobj
+1441 0 obj
+<<
+/Type /Page
+/Contents 1442 0 R
+/Resources 1440 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+/Annots [ 1430 0 R 1438 0 R 1439 0 R ]
+>>
+endobj
+1430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [250.331 709.647 265.524 723.439]
+/A << /S /GoTo /D (Hfootnote.130) >>
+>>
+endobj
+1438 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [511.932 526.293 527.125 540.085]
+/A << /S /GoTo /D (Hfootnote.131) >>
+>>
+endobj
+1439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [131.977 497.401 147.17 511.193]
+/A << /S /GoTo /D (Hfootnote.132) >>
+>>
+endobj
+1443 0 obj
+<<
+/D [1441 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+318 0 obj
+<<
+/D [1441 0 R /XYZ 56.693 606.575 null]
+>>
+endobj
+322 0 obj
+<<
+/D [1441 0 R /XYZ 56.693 394.329 null]
+>>
+endobj
+1444 0 obj
+<<
+/D [1441 0 R /XYZ 74.626 126.006 null]
+>>
+endobj
+1445 0 obj
+<<
+/D [1441 0 R /XYZ 74.626 102.096 null]
+>>
+endobj
+1446 0 obj
+<<
+/D [1441 0 R /XYZ 74.626 78.137 null]
+>>
+endobj
+1440 0 obj
+<<
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R /F10 576 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1450 0 obj
+<<
+/Length 316       
+/Filter /FlateDecode
+>>
+stream
+x��R�N�0��ot$b���A�JHTd�:�4�iMJ;N#:�3�r~w�{��$��}�n1D�����R#L����&�7���e|)�w�U<�,:'�4��u5|s+�u�`9�b��"'SIB��r�Vk	w��)���y�܁�(l�`�l��UP$�0տ�IA)NAU�gE_�A�E��PNB�2A��q��੩���O^{�����8�\-��(�f�O�m:_��үb[|z�@�⻦�}}X�j���š뛶
�-���U�t�8{�����M��M�0��Ƣ��T�;��4y���k�����+_��
+endstream
+endobj
+1449 0 obj
+<<
+/Type /Page
+/Contents 1450 0 R
+/Resources 1448 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+>>
+endobj
+1451 0 obj
+<<
+/D [1449 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+326 0 obj
+<<
+/D [1449 0 R /XYZ 56.693 782.706 null]
+>>
+endobj
+330 0 obj
+<<
+/D [1449 0 R /XYZ 56.693 758.912 null]
+>>
+endobj
+334 0 obj
+<<
+/D [1449 0 R /XYZ 56.693 699.759 null]
+>>
+endobj
+1448 0 obj
+<<
+/Font << /F15 395 0 R /F17 397 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1462 0 obj
+<<
+/Length 3905      
+/Filter /FlateDecode
+>>
+stream
+xڝ�r�6����#U%1��553U��v�I9�X�9$9@M����p��|��
l�E[�\����6�
�6��ڼ�����W�t��:,�$���m�4L��g��r�k�_^Y�x��˟/�M���{�͋w/�]^Gi%�O�Q؝��\_�~���˛�?.4�6z�Wea����p���jS����"�<���&�u�Ь7�.�}��f���N��Y��,��ZF?{�:Y�һ��]�H���6@A�	���W=��~���w����6%7c����q��pr0^�`h���b#J�͋㱮�v�ڦ��9y0�����B�9�]��[ןd����5ܱ��w��[�
+��q�)����<�-j�5���"���B�৮�u�p�{�v<��-��p(4š����v"؟_�\"���"Sy�Y�@qhL�icd-�\ڄ��z� ��Ε^4%0*΀��?
�7��q��m�6�o���1E����G hF��J$^1y��\?T�V�"x���n�#3"�[bF;��c��80����!��nY�s׎M��6 ��G�}˭�� 6R�8�EQp��"�IcM���m���;��������IA�*����5����� �=\
�y�gț��@j�JL���u@��B�f�h'g�(�VHq֟g��w�E.��c��&� ���v`H{�C�'^X�W�Ll��OܡKg�j�����D�Ks'"L���	�m{8�np@�
+A^_�AIv�A�,�VoQ:&AE�:�s��._��f� ��~�-��d@˟?�U��{�����6���L됱r0�l�J��C7n��sk$����'$�>�<6�r)q�j�cՑ��d"� 4���-f��>����'��mX���M�l(&�ؖ8�&��a�z�jq�.�8��X����
+��K6�1l+�޺����}��D�Nţ��J{D��=����z�@�-�>T(�}k�-�Ъd~cAZ�|�J�o�JDP2��L2a���19�1������I{��gK��A�2�"*"�u'�C(
+-ȑ�$n2�&&��^h"I(N�>�>�lְ�r��=N�]R~���t���d�۠a����}9y���~yڇjRQ��� ;�H����W��,98ቨc+Wm'�F��[�7�"4�!��N[
�G���;�B�����i&U���!л0r~/�[��\��J˦H@�����,YtE1�K�b9|C�K���蜅w^NIܠ�~t|q&�Ln�Lt��b��l�����
Ŵ��o��@���?x4�ƺ�s3	]2��!��z$Ґ��N���'c��F�:K&c5�+4�t	͞0:g���S1�Qt� �Yph�р���ۂ��|䈿�Ǟ$M@�Ʈm�u�`�|�3]$%\6�/���Ǻ\Sҵ(���(I���+l��|Gy2;D
�lk4ȷ'����������t�q�{t�=���;);[�r��vy��ȧ�#w4o���t���oTT;�K��Ǯ�p	G��'�n����߈�b��f
+�
�=	b�O��h6ws���c�8Xv,sN:�j�R�-�5vbφ�;D2A?j����r�4�#
+��}{��	1�X�'b{�]���x��H V�@��Z1�:Š.Lg�&���J�(�/�����tɄI-�k��x�B������~Abv8A��v��hA�0���ɔ�4��/lG�'
+J�\�Ȼ3I��	9���D������4[��0g�qߊ�O�,2KU�YC�S*Ă�|︽e�����8{/ "	��	�P��w���=s��Y�����= .�3$������@:�U���I�Ů�j�z<�)�J���3�>�M�ϰ�h�}<�~�t�Z>e��f�$v�H��H�pW�q�[����KL����`^~��B���(5�,��R�[�q{ �S�8���J�Z1�0@�;N&�����3��C�ih~bw胯؏�����sXȐ��kS�Ke�ל}�Sua�8�����.�rAf:K�"�ɵ�*~�
+3=�w��^�&_����#���lmş����Q1�a�""DP��'q@C�I�P���\�m��ତ~����)��q]$aZ�l|��d�N�8�	=myYfÛ�UË�.7���Q����$B�k8��y",pd��q��ᤷ�F�;�zC�
+�p�ϊ%�s����O�¬��rx�Cif{ko���4"��x�P29A�JCᬘbT���t1O�=��/��j;p��\4V�Qg�h�e�eaG��}z6
¿<T������ܫ��TЭ�Cޏ�#*��<:�)f����Y��
F�Ì��'om;�›��T�e�`�R��*�<���YTOí0��jH�k_C�3�D�G����f��H��TJ�����	�rU�v�pR�ʲ��fS2	�N�d2K�a�nt�l�Jy�\:+a���L��
+��n-������`ϵ��s�TEL������P�]5Ui��vV����(�nO���|[��o ��y�Y/c6dYj
+~0X-�1]�.L6;��㊛�~	M� 9��~�܎�g�ܲ�-��(��)�d*�?by��r	�����=�Z��km��a�c+a{۸�>gER�x�Z��Cc&�Ԝٸ��L��j���0_$�Y4SU�7h���=w��H�9ߒ��~?v"P+��L=��@k�/:�4��T��ܡ�u1�h{?�y�D=sGS�`6G�����&�]���U�O'А�I�|V�Je�-��/c�qi
"��J8���;K���u+n���Iqn���q�?�hsEY
+Z<��q��D++�A+���7=/�IB���W����N1�F�r�Rr��ty[
^=���㸽��8o+�f(��(L���5$Ubˣ���F��^�!rv�d<N��?g�$gd�J�Ve�G���g���,L,��_}��O_{B��Q�u����S��Lo��v�A�[d0�.Da��Γ0V����W���4J	�(�5`h�T����Kc�r�k�_�Eyh��{��{���'�ֿH�'�[,VcX X{%����Z��@쫣�<?�I����<�t�,��'<z\���~��' e��)`�ɐ�Xn���k���l�ЁLO�W2���T����["���~Gu�~��̖>���p�&b�M�_�ϒ?�pI���q��"���*��F0m/�Ҍ��}��~��Z&��?���S�8
V3�L��1��<M�h�!_P����CB�O��N�����"����J�X�yD�K1#+ �P�'&,Q�3�򜁖�s3�$j��¢r��TxL�
�͓�Yč7�A`Qr��(��؄Ȁu;�I�ӈ�	��Y�-x�3�չz��\t�\����?F�I�,��jGS�Q�it��a��"c|�B�
���&
s�$�-'3���8��z�n�a���Y���������N9줔��Q�R0M����=��^��'���0����^�vT��$�f6�D��4��_���i3aE����TA�0Q�.c���{��_�4�N���6�t�*�����8��ȮI֥Wd���7�B�N�ֳ�E�P9�'3D���V^�"��J��.���%
+s�?&���L��k�i�I�p�>�	�>)�O��\��l���2��%�(��|���;7�_���~O�
+�K�[`���	d�FN�O���=���e'\�w�+y���y��'�'ŵ�r��.�Y2R�C$Li||"I�	��Lo'�murZ8�q[;�n�L�?�0�H��rv@b�n��%H�mgn�8Q�l�В�MP`6.�����i�W�b�X=�U�t��[P�1�;
+h�':TF?����<���5����e5�S"q�����!
+endstream
+endobj
+1461 0 obj
+<<
+/Type /Page
+/Contents 1462 0 R
+/Resources 1460 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+/Annots [ 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R ]
+>>
+endobj
+1452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [302.747 726.7 317.941 740.491]
+/A << /S /GoTo /D (Hfootnote.133) >>
+>>
+endobj
+1453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [394.641 597.642 409.834 611.434]
+/A << /S /GoTo /D (Hfootnote.134) >>
+>>
+endobj
+1454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [79.219 414.288 94.412 428.08]
+/A << /S /GoTo /D (Hfootnote.135) >>
+>>
+endobj
+1455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [78.293 342.059 93.486 355.85]
+/A << /S /GoTo /D (Hfootnote.136) >>
+>>
+endobj
+1456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [396 327.613 411.193 341.405]
+/A << /S /GoTo /D (Hfootnote.137) >>
+>>
+endobj
+1457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [134.52 313.167 149.714 326.959]
+/A << /S /GoTo /D (Hfootnote.138) >>
+>>
+endobj
+1458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.051 212.046 136.244 225.838]
+/A << /S /GoTo /D (Hfootnote.139) >>
+>>
+endobj
+1459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.296 199.925 158.49 211.392]
+/A << /S /GoTo /D (Hfootnote.140) >>
+>>
+endobj
+1463 0 obj
+<<
+/D [1461 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+338 0 obj
+<<
+/D [1461 0 R /XYZ 56.693 782.706 null]
+>>
+endobj
+342 0 obj
+<<
+/D [1461 0 R /XYZ 56.693 638.738 null]
+>>
+endobj
+346 0 obj
+<<
+/D [1461 0 R /XYZ 56.693 509.016 null]
+>>
+endobj
+1464 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 193.748 null]
+>>
+endobj
+1465 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 181.793 null]
+>>
+endobj
+1466 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 169.838 null]
+>>
+endobj
+1467 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 157.883 null]
+>>
+endobj
+1468 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 120.554 null]
+>>
+endobj
+1470 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 108.121 null]
+>>
+endobj
+1471 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 96.166 null]
+>>
+endobj
+1472 0 obj
+<<
+/D [1461 0 R /XYZ 74.626 72.256 null]
+>>
+endobj
+1460 0 obj
+<<
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F23 446 0 R /F7 433 0 R /F8 435 0 R /F10 576 0 R /F11 565 0 R /F13 610 0 R /F6 1469 0 R /F9 1223 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1476 0 obj
+<<
+/Length 798       
+/Filter /FlateDecode
+>>
+stream
+x�}UKS�0��W�h�`��-�7J����{��DI<��Z���Ð�L/�j��]�n� ����et~E3D)VY�P�FY�s�QaUB�r���"I�T��fv���������b>�')����	�q���Z�䡼�fe�;��D}��H,�@�6� h�[D0Wzv�-Ņ�A��GD���\�$Xf4p��$�X���P�]�m��.`6�* �D&0���XI.�Û�L�*��&!'L�[�>�@�������D��X�	.0���sUo��TWL?$��Y���V����ã7�~����	����%?}QJ3�)a��d�ˤ`q�4�G[<+�x���K_�hx<�����io�P���U=�o�⏦nwM�0z���y���ݠ���l!J{Y�;@Z�@��᪅e��x9B)���tJ"��f�k�oF�H��%_*�Wz�"����NރM�~h+ :�}g�RWKKf�����/��%����?��1_���Ը��O6T;�<�[ӛ@�6��\T�^V�+��!N@ի6Hk�)���W��럒NM��l~^ga-QL~��G�%\aF�{u3>�jL�Zw^Z���D�V�c3l���]ì0�$#�vTD�as)0��'J=j����� 8=��`���yq\�/{�~~��~�Ax*P�z���M��y9��F�|�A�c��6�P/����v�?[������%������t�D�����3�`�rA0��F�WRX�,w�a����9@:?����O�ߥ���V;(�?�"�}-����\��������9H�/��=
+endstream
+endobj
+1475 0 obj
+<<
+/Type /Page
+/Contents 1476 0 R
+/Resources 1474 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+/Group 425 0 R
+/Annots [ 1473 0 R ]
+>>
+endobj
+1473 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [521.134 369.134 536.327 382.926]
+/A << /S /GoTo /D (Hfootnote.141) >>
+>>
+endobj
+1477 0 obj
+<<
+/D [1475 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+350 0 obj
+<<
+/D [1475 0 R /XYZ 56.693 782.706 null]
+>>
+endobj
+1478 0 obj
+<<
+/D [1475 0 R /XYZ 56.693 752.984 null]
+>>
+endobj
+1479 0 obj
+<<
+/D [1475 0 R /XYZ 74.626 348.512 null]
+>>
+endobj
+1474 0 obj
+<<
+/Font << /F15 395 0 R /F17 397 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1483 0 obj
+<<
+/Length 1743      
+/Filter /FlateDecode
+>>
+stream
+x�}]s�6�ݿB��]��%J}�u[ҵw[�&{ص}�-��"��>��~�����ۋD���o�i�����⧻�Ս�#!�*�etw�ERTYT"H�讉���rU�*�x�����*�E�����oo�o�+Y(��,��뭡�2[~�����[|_�(�đo�%T��/�|K��>Di�Ue��1��*ERV���ŧEʲ�`X��4U�$�<C�,�t�	��GRT���H鰄���{���O/�X�%��-l&�<I�Hi@���N}�G"_/W*���
�tܴ�ط�il�%�{��šq�|�z�Y�����/ђ��X�"�KY�n��`�+XUE<��z�qn�6t�*d�2�u#~�'M��ց��)|AdfX3ͺ�M�u�+��aQ��qw5�~ �����:������$���B%J��.��z`-\d��s;��X�`�[	��oI��f[���U�]�8��gH�~MEvs���ޜ�xnN��{����Qz�Kmݾ+enX���G20K9$'"��y��m�nG�����烮}X��B���=m��5�C��9�xt��#ٯ�GFjX MiM/��=���|$��W�`�b3u�wؼ�t������"��ѓZ��H֧�lLOGx��τ�7�����<;���io�d��㹬D��Z��j�#X�n�NO������Pp��|�>���Z��_{u��,��ŦAh�|! ����A��H�tX%JP09���zW ��[KlAR{�_N�y�BE�)��G�{�`ڑA��g�C�4�(��e��k�z�'��
�o:q�WƗ����dj��K��G�c�Sb�
+͆�u;���δ}���CR��c�MH$��{Fv��Y3k$��x��p(P����FVdФJP�+�5MSF��hB&�T'e�mģ>oD�J󀊩�RD:��4�$���koVI^�s��6kr����7gY�;X�|�y�\墈;+�^��4D1+ڰ{�ݺ^C?)E̘�v|0���r_n�yPyը���1�.�˩w�y��#��0�������`��"��Tx�2�E��,��/�<���%�D�jF�
+�M���amͶ��E��5�YAE8U&
+]��ގ�풪�O~�
T������<�Ɯ�DqnB�dx{.��`�W�#�'_wS3�S/d���_nb��KT���N����w{P
+z�vTw!�$T��;8���<�a��v!R�Z�,�I:�C5ԃ���M4rh�A�!��'�X�'*�=�%�z�19�C���
++�
+l�����e^+N#��(���9���`�$���S��G;�ڜA� 	�
({�}j{�l�=�'O��ة��A,ƭ;���й�\���AE���RӐ*�3��Ъ�ȁ�������yg^S����l{���
+��сD��@�c���D����%�h��a��N�;�M��'�1+�1�����USte��LK���.P)�f�v�*�c^\�yM�9�fp���.���u�3{�"�f�`����������#�r6�#h��*��S[a��͟D���z,`8y�K���;G�pA��ݼ�����7�:��
H�M���.��%��L��YT��˳�ٿHuT�����R�D�[�Y�}֑�nʨJ�B<Z(!��'�8���QC����Ch�Sh��U��j�9�P�����p~Eg�t�����!5�c�����j^���3����d�
+endstream
+endobj
+1482 0 obj
+<<
+/Type /Page
+/Contents 1483 0 R
+/Resources 1481 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+/Group 425 0 R
+/Annots [ 1480 0 R ]
+>>
+endobj
+1480 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [174.207 319.404 189.4 333.196]
+/A << /S /GoTo /D (Hfootnote.142) >>
+>>
+endobj
+1484 0 obj
+<<
+/D [1482 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+1485 0 obj
+<<
+/D [1482 0 R /XYZ 56.693 789.929 null]
+>>
+endobj
+1486 0 obj
+<<
+/D [1482 0 R /XYZ 74.626 212.107 null]
+>>
+endobj
+1481 0 obj
+<<
+/Font << /F15 395 0 R /F20 398 0 R /F23 446 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1492 0 obj
+<<
+/Length 1613      
+/Filter /FlateDecode
+>>
+stream
+xڍ�v�F����z�b8��[�8[���V_icr$���u���6��(m/"�0���]��~�\={��@����$�l����:
*$ee�i��a�Z�e�ۼ��u�N�"�����w7w�uRdI�_%e�w�O�l�i���fs�ו���@��e��,h����⠅��A�u<�d����>���p����VqT[V�(�I!\�eZ2�	��D�Q��QVz������7}�掵\�>��B̒���$�J`R5��e�[��G���ZgiN�
+��v�ch;Y�p4n��}�u�VyeE�\&�y�=�-IZ���r{�zļ�;���i��q�`�q�=�*[��g�{c�5�yp�bEN&�~dd7����(�Ԛfgg��uӈނse��g>f����=sp�3Hk��o솃���>;�$���w�j��O��^�D�Ax�dž�@
+I��N3�3��ڛ
+�/�SC>T����S"���R��C��2o�g'��W�I�B���cF��c0�C`0�sAD�C�s{f��w�&N;rt�;٘��Ӳ�{�z$�x��8a��0�j�7{V���q�Ç��72�M��+8&4�2��e*
��Aٽ>8��L%���a��4"��7�N�a�k����B�Gr!)
<���/�DX����[�3�X���Ufg��C���%�>��ȏip�@����O�*��_��d�V��1����[������4�~Z��%�
=u԰���̀�;(������fכƁ��B�{3S���#U�}CP����=
3#d��u~E�4�CN$O@S��1� VոE�Ϭ���L��p��8�%8�꒝���=&�vbq��V(ӹKQ`�TDI]������̎�P�/�r��%�j!��q�;U·fӌ�VcY�r��8���wTjE��D5b�g��D-��%B���2S�}��9�guK+j���ߏ�0G��shnQ���<\��We�j�;Ra��"fN���{��¨�k�5�}�wUw�?{N�0��i�gQ��9�EE��Od�?o�k|��(�G���1:7?���f* М���~{!���[�-
+H8�e�|�8��:��p��I~T"}�:P����}��B}��3�R��3�9�tU��:�b�5sc;i1m��B��v���zFӋ?3U��Z٘�O�5a����n�i�fV�*���=c';+��n;ٳ����	���͗J�`�v3�G5��^8,]xC�?�������S��Xv�Jћcd�Ղ%�90ԍ̢%�ԋ��'�>��O��k�����4|/�a�d*�`�ӎ�MI[-#�n��i�����Tb�k���^�4���p��C6�|=엛��Z�ĩq$2|ʈl���{J'B�y|s��,��7�?I���Λ�]��9y�����o�UY�b���b��x���a��y��7��M��l?�!i������A�3x-D����|��1����60䑤ě����6����h��,��h��:4��T^��^@O� T�i��ǻ<�Z~��~�-�j>�۬��<8H�-Tx��hw��*�u��Z��؟��'
����pt
+endstream
+endobj
+1491 0 obj
+<<
+/Type /Page
+/Contents 1492 0 R
+/Resources 1490 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1447 0 R
+/Group 425 0 R
+>>
+endobj
+1493 0 obj
+<<
+/D [1491 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+1494 0 obj
+<<
+/D [1491 0 R /XYZ 56.693 789.929 null]
+>>
+endobj
+354 0 obj
+<<
+/D [1491 0 R /XYZ 56.693 404.792 null]
+>>
+endobj
+358 0 obj
+<<
+/D [1491 0 R /XYZ 56.693 264.776 null]
+>>
+endobj
+362 0 obj
+<<
+/D [1491 0 R /XYZ 56.693 135.054 null]
+>>
+endobj
+1490 0 obj
+<<
+/Font << /F15 395 0 R /F17 397 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1497 0 obj
+<<
+/Length 1710      
+/Filter /FlateDecode
+>>
+stream
+xڕWY��6~��У��u�C�l��4��<�-�%GGv��wʖ�E��X��s�A�����œBBD��2X��Fi��YI���C�/WEV�oׯ��/WJ��߷�Ϟ�^�.W2M��-e���n����o��ŗ��Eq N��Y��$�>�A	{o�8REܑ�!Hr��up��k���,��L������rn��,MݷL�cU�~�%/�m����ڦ'��֮�F�	:����b�*E!#)� ���Y�H�?ˆ~k�P�V��:ӣ
"�[�<�u�M���R�mm�cm:�9�����v�������
/]����jn���(K1���,��f�Ks��t�L��ֻ�ۢ�=��g�y�D%Iʢ-�S�5�<��2��ư��;�uw��v��َ�q��*�2��Ja���S��Բ���U�t�p6xʟQ,��֙�y[��Y���Z$`ۜ�z6=�/]=�%��ʁh&"�lm��Y��`-��H�@uLR�2�1�3��^�R��)�o����sP�����ծ���I-E��M��F�7��<)��N�Y�rq���kL��)��͘��u�k�ĵ�<7̛U<.A�	k���=����+��VM��#+��wG݅[�-9�l��\4�y��y�A��
V�/�mYQe�X��~k���l+� 9�9I����L��<Nْ�C��}������#�^7]VY��c,�z��(����t�qi�X;q�������j�W�,
+�ɌΚ�~`9�a����,���Xs��d�p���c��}��;���[�ܹ�?Ǯ���=�����.`&�/b"�^�F��� ]�T���y	Y�n��s�`���]G5�N���s�y�ꊿ���-�큸����Sɧ�Q�Q\23s5 D�������o�A/��5�?!5�N�c���).7.gL�d+���`e��Ypi#����y�ū��k+�\=�%�s�`��YT/�=8h�.9&Mݢ�%%�~b���<@\z��װP��E`XL`��	�1��R+��(���"�%~�`Y��@$Xt�5�s�0}M�W�LT
+g�8���20^e,p&i���x+�&���>��yC�y,�t����L�##��q$b��
+������f�(�
�
�GQZl����c��~'�0'S�/TK� `��2���08�0�zv�g$o���r| ���&�����������"��O�f�A����r���q�
a8�Fֆg�<�K��H�6d	��p�&�-���Y���� �+�B�cϰ/��E��m�}7�KYDy�4���iu��L� �2̱HR���JFJʋ)�ɋ<(�"�)5��4Ca��a�aI/1�նk��@&���8���%e����wu��w��
+P�'X#�8/�s�IWg����
+��"�!�䡿��U�9ªs�(��{�Jh�4�++�#�sh��MJA�.M{�`e6x�Eʻֳ��f�,�|
� 8�R��b7<���h�W`<=���ݟe�o��w%޽��y��_�]�_��<�:�A$R��0��|�KT{;� �ޟ��̏O���}��a��G�Y����U��Gc;�~�Qj�D��1>H���{�V��s��=�M���)������S�p��x����='��"p���D��c�9k�����
+endstream
+endobj
+1496 0 obj
+<<
+/Type /Page
+/Contents 1497 0 R
+/Resources 1495 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1503 0 R
+/Group 425 0 R
+/Annots [ 1487 0 R 1488 0 R 1489 0 R ]
+>>
+endobj
+1487 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [247.916 766.766 263.109 781.222]
+/A << /S /GoTo /D (Hfootnote.143) >>
+>>
+endobj
+1488 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [113.077 724.093 128.27 737.885]
+/A << /S /GoTo /D (Hfootnote.144) >>
+>>
+endobj
+1489 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [286.109 654.188 301.303 665.655]
+/A << /S /GoTo /D (Hfootnote.145) >>
+>>
+endobj
+1498 0 obj
+<<
+/D [1496 0 R /XYZ 55.693 823.059 null]
+>>
+endobj
+366 0 obj
+<<
+/D [1496 0 R /XYZ 56.693 638.455 null]
+>>
+endobj
+1499 0 obj
+<<
+/D [1496 0 R /XYZ 56.693 606.243 null]
+>>
+endobj
+1500 0 obj
+<<
+/D [1496 0 R /XYZ 74.626 230.662 null]
+>>
+endobj
+1501 0 obj
+<<
+/D [1496 0 R /XYZ 74.626 206.752 null]
+>>
+endobj
+1502 0 obj
+<<
+/D [1496 0 R /XYZ 74.626 194.796 null]
+>>
+endobj
+1495 0 obj
+<<
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1507 0 obj
+<<
+/Length 1980      
+/Filter /FlateDecode
+>>
+stream
+x�uXY��~ׯ�#U5��}�*�r����$�(q�l?`DHd
-z,�z���*/�h4���T������o�͇OQ�EQPeY��^�y�x%�������~�}������ۧo�8�������/O/��8O����6.|uԼ[��_w�m�v�ϛ.
+�h�A�޾���k�հ��IUz���{ie��{���	EW7:�e��VQV$.�")��2��8��"㭴pS�������n��;���-w|�`\��U�O�q��C��/��4�|;�vh�#��f�a�~�x�}`��Z�=FI$Y�[P��]�鞪��m\���Q
\jd.�a��^�(����%��m�O�>��Q�v�;��LzeD�^
<����}
K�ZO�3ܡ��ڹ���� ���Q�i�&Ea��Oqx�h�sZ�3��0��+Ys� �pL����+:�X�#�DA���,�|5�l�bz�L/��%�e�5��y��".tqQq��0Fz:K�c�l�h���R_u�YIYQr_�Ex�W(����v�TKK�B�b���=� �H_����3#���
�zf���jff�E\N�]�U�W*�QX�؁�n�ȩF@��k���8��i��_�uq�B%)�Ԛg����f$���f\��8�ˉ"�%�x�2Q�j��N��"�r�؟��
�	�X��iӛh�)v�@�@CiN����J���X�iN���5چ�77
+Ӥ?��$�M۷��xa�^!�{���NYa��q�EA`k�3V��Ě�/����0xC�*Hh���5����}H(�Ɔ����/0M�p�L�duq)�%�:����N�
+a����bAX�Eh�PƑK-`�F�X�8���8v���6�q�+�,���@P�h��h����n\bL8=ĥW��7r\p�Ǝ�D���b���Z3�ڎ<	flY��u��8#^�ˣZW�\��|gjc�,�j
fאJ"eǶT~絎�^4�c�����2t�6�Сz�Z��kw�%@h��z��+���R%'a�R�ʽ��t
YJ��_H��q,��Vo4���ۂ5x�ȣV�58�ZT�ҽ�4@�EЧ�JQ=d���_�{�xQ.��OT�p&T� P�)�jB���l�&���
+!��@�?..�Wr�x2���N
O��s�AzμT|�q\ADʹ�����_g�H�.o^�O�8Yx[��p��\�0+Qhr(6�%3 �^;t�̄��h@_r%��'��E����X�).*��^j���R�\{� �
�F/p�?�a�>�������:@/�7L�q<�����p	����$��إ���/�Ѝ�WyC�_�Mp�A�p/'t+�r?���ꉧ�g��!'^�.���Qx��?u�R�ȬD�j���N�f�ڨ�χ�r���~���J*-K�5��h$h���NX8�ʜyM9=0:�4ˣ��.`t)I�+�)��]�7̓�n�`�DF�k���`�t��\�r��
+����Jܮ�/
�4_�/
r\0�9����k�.!�P���������������7��O[t����WҲ~l�Q��#�%�OHoF��N�%yP�>��S%	�����U�	`��<;��J�Iq�O�p0�q�eg)v��
+����G����n��O��u�Kq��L��xfHE�8�ɨ=��4&��I]u���,"G	�xN�5|���I�������\����8����%\��GP2C܌���0��b��Xwe����'����өڕ�po�7�����qT��3�@s�O�|����K��j���|dޘ��8��o+Ԃ��1��˲���1}e���q�Hﱐ�7��5��w[z��h��8+�^��F��Nɡ�>` ��#���%
��x8R�7q�Q����-�'ڑ���M
+��!S�xZu
+p�p�slm;�~u���v���'Fû��z￘���O�
+n
+endstream
+endobj
+1506 0 obj
 <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [394.507 174.282 409.7 188.738]
-/A << /S /GoTo /D (Hfootnote.127) >>
+/Type /Page
+/Contents 1507 0 R
+/Resources 1505 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1503 0 R
+/Group 425 0 R
 >>
 endobj
-1380 0 obj
+1508 0 obj
 <<
-/D [1378 0 R /XYZ 55.693 823.059 null]
+/D [1506 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1381 0 obj
+1509 0 obj
 <<
-/D [1378 0 R /XYZ 56.693 789.929 null]
+/D [1506 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1382 0 obj
+370 0 obj
 <<
-/D [1378 0 R /XYZ 74.626 154.323 null]
+/D [1506 0 R /XYZ 56.693 291.55 null]
 >>
 endobj
-1383 0 obj
+374 0 obj
 <<
-/D [1378 0 R /XYZ 74.626 142.368 null]
+/D [1506 0 R /XYZ 56.693 163.655 null]
 >>
 endobj
-1377 0 obj
+1505 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
+/Font << /F15 395 0 R /F20 398 0 R /F23 446 0 R /F17 397 0 R >>
+/XObject << /Im2 424 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-1389 0 obj
+1515 0 obj
 <<
-/Length 2752      
+/Length 3524      
 /Filter /FlateDecode
 >>
 stream
-xڝYݓ۶����'��h���L�su���ֹ8ׯI� �5E�IЗ�_��I���q�X,��b��P������wW/ߨ�S*(�4���^�Y{��ܻ�y?��f[������r���ܿ��}��
-��
6������o�QR���}0(��y������wW�Lzj�%̃D%^u�����A��^�e�=���K
-%�����wW���}��"rKJ�%)�ɂ2�s�I�T�)w%�#����)��`��ͱ�I��YV,�9t&9��-��>���GP�i�M��н�u�&}g,Z�m����w���k[w��Տa�U�p��B��v���
-u;8��gz����X
��j�Vt<����*�$�@<�#�'Z݈���&~U�V��o��2�E��N8�n5n�����o>�hd���͋7�h�0��w�����nd���M�L��:M��y�)��J�$�x�u{�+����孴���A�Y�6]��b�n
-lF�!�?�B�ɰ�T�Qt5C�T�ٺ2����\2b$�>,ٵҿc3���i*��`h{����`����a�
)�|���G���z`�XԴ���v��A�i�h����
-�[�s����������-4�v���i����[��eIG�_�@�;A�p>�L/�{�%ؙd�nLJ`�smw081��Lp<2Ã�Op���g�'~F�Z:��_�A�ldv�ܴ�z�v�!���揜'����FC�W����.d�����q�g�N"��϶7'i|»a�aR@��o۵����R�É�L/��֟��}`MA��ϴL-B3.v�h�����n?�w(����.K�N��R+c�����@�Ջ��ݍt��I�Yp���x%�$MFjo���O7FE�a�#����o��cI�]*�����
-��;�U�s*����5�#��o�'��4�\B��q^ 8i�B\�����Hb�a��R�+
-�2,���뀟��paA�"6�{�F�<�"1E�����`���SCV.�������s4`.����1���[Q��Ԝ�q���$h5>�N�N+�N����t���nA+��DDLݢ��L�?�0M���� ©Y�pe$aC[��)��6R��9���sgCVX��4{�
���`��_����
-¡8��^ı�!g��A�8�`�v1
	TN��.6�����5DxJ�q�����z+A2�R�Á9�1����������rgM�}��)���1K����{�S������q����p��,/I�ߛʮE�g����	U#�W�����_��mן��i1��]M3��c��^�6ccE�� �@�F��4��)�aCrڊ'cXo%Ct�-+�2v�1�1.�[�4�4L
\�I3Mf�fB�۹WPj|�~{����H��"B8D��5�~�k8dg0l���tQ��?1_3o�$�}��)��ς�YG��!�a�� >�fpzRw/���P��/\�u#
-0��N���=~$�c��F�W� �������-���g�@����`0�1��p�aR�K��X�R�NGv[�-��K��T��S���92v�sR�A�t�H0"�+���"ׅoo *P�ڍT8��4藈cuUA��kk�q��?��$I��Cm��Z4
�$��$̓��š{	��̓� VK$�!�8��[�n�J�b'[�
��N��YE��#ȟ�������E
-,��90%���<�SJ4��HR3�{?t
�DN�xʌ���S�إ�f�ٳ��Nnԇ��|-@MYqϭED��r�A#r,f(��.�Ϟ
-���̢�(�(�[�,��*?��wz�Ƚ�M
-t�,
-"�x*O�"O����7�Wee�Q8>���V;@����^����H��-6G�
S%�%��G-����c����4�a���g��E�On&,��Y��́��Cp2�É��A	�f�׉��v�@�\�\ ,]��z�L[IP���� ����>��(	 ��4�2^L�Y.���&�l�ğ�0�h7۝c06;�.��,L�����
�F�*�0w�Ptݙ䜎��'/ȁ�vL�k�H��T�����_����kԪ��C3��LJ7z4#�;�L���J������-& �P<�PK���MEP>����|�� �q׹����bJg�A�r��$�\j`�{���^@�ĕy�KO��F��SKu���ѯ;`@'�|^�=��`���p��I4����(��8]%��C�H����0vw�υ�I-�n�%��9#���-LR�����g���S$��9�CBؠiήpSq��{[�L�^�(sLq5s�@�U��!��t��m!N!���or-�l��1x^��Y�b�2ݮYA&)���r�O{[�)UP9��'���ӲП�F�"4z/b�r�Zyq>+eg��������9τ��w.����?��>�Z�U�8�K�\v���4~)@�ɴ`M�vk�1d9���J�C�@P���6p�����}��*�y@���Ӛ�겋��X�Y���X�A�+T�K��yT!i�^���zzx��&d��
Bs.�=��vv�~�!w�,U����l�Fa��k������Y��ŧ-2t-�=ڴ������gA�$
-<uSՓ'wr�!�}nqB8;�rh0�pV�K6��Yd��v�n�P���HX�+��j�
+xڍZIs����W�UI0���Kjlkl���3R*��>@d��4������"s�ݯ���ۚ��	6�^}�p���0ل�_$I�y�o��O�x��d����'/��-����ỻ�׷q�z����������m��(�~��2�<Xͳ�_�~u�p��U���M8�d�	�f{���`����7���g�6&��@���_��*�$�Y�Y
+�?�ivUs�*iC���j;Tm�l8���vms �S9l��#u3L��l?�׷IRx�7�������n��ʌک܎�N�eݷ���M��]e{���
�oL*m�x�c.�8�/_� X���e#��mlWVz�}�FՀ�q襻�ړ���Z��^�؞(�c��y8o���Y��ih��j[���@;����Ѝ�a����yN��ؽ��y�����	"�5"�kh���	�/wRȉ�'����AF�s��#۽�)u�		Z����*m'Sk��$N�	�H�6�q�z���ӹ��/%�jpk�;�@�
Vga����RM�X53RM�=S[�۵z���@
+��g��Rs���%Ѱ,��;U͎u*�N-+2z^_��+Y�h4�Na��;��{�����
��/�n��z3��|������J����.r,��O���?F��O�+'n���v8JW(A�BŁk-$��tս P
B�@v�<���a<IGF�K�&܄��_�}�$*�r���uS΂�
+�t������T�]Z�
+���ѲH�' ���2���ɵ�T�*��T鴟�$�K��w�h���ۻ�wᄒ<�ߍ��d��ohѿ��ڎ���J��c�KC�.s´D
+uK��;��cmO
+�ٰP���,i$�����J7#%��Q�O���)�{�]Y5�}��}�r�G���PЀ�x�Xi ��R�dwP��[��(�d~�!y�0���H7Ə�BM�k�G�v�a��Y��],y7�j
+q-b��{K&߾4'`%�$�J(��ԓ�����L/���iɕ�D���l��5���n�8m�ھ��6P�dwp2�!A�:�ն@�=f@�Ş@��v���TT�Ԡ���A�G�_1ί�$[*�RE}�ޱ:�U[�u��cU_4W����~R��nA�SG
+��+Q�%،7�A�w�#sS�~�E��DO�V&a�b<U�A����xd�k�S��Ъ�b���՟:�,?���\J{�-<����8�����N�:6Qs‰:l'���:I����$�0T��2(D�l����Kz�޳� �*�?�}�;)x1�>�P����V�l;�#�(}�
+���oߪ;R0�"�`�P��@�Z5v�z���ݝў7Θ	 �yBr�������ʖJj��3����Ш0D��M9��M&��6��[D���Nв���PT'�Z���7�0p�%�X�����Kz9]D�Y$�$�����c'3�{	źC�R��^���&g|B��""x��EVɀ�J�M�R��#a�Z�^�nB����P�7I��
+!h��Xy���F��e��'�@ȵ����UJ:�o|�Z�u��;[�+���]>F��红��R�3zٵ|��s!1@�fb]�;���ӥ�������0S�L�_G
+f����s�	<�^����bˣ0�vБ�����s砳�;h2}�8h]‘���/!��!5g�ý�I�5�Sq��z#�j�|p�f��Ț�y�r�++�u���zʞ2�|'�̽Vw�g�����/�����%�Ήc�I)=�}�s)���4��u��R,
7�<�%�S{F�ȡ�>s*FpJ���L��Kk%�̲c������u]�*u�� ds%!��r(/�D�8�ɂ�ਨ�x9�Y�
���u�y�Y0<���唡ZÀ�^����^��OV�`���X-�ǏMfU� ��R¯56+<'�hq�pi�0��¸��J`�������^�G���X�M�6���7b�f�aLj3Xa˾�L
���y{4��:Q���,e�Y��k�i�$X]D�(�Ai<e\	Gs<J�����Q'��pJs���cφ@e1KY`ay�L�~���XL��	8$����I��."|� �VR�IV�f�ܾ$��z7Cc��s'�˔���O|�.y�C��F�E��#���/�t���MYA���ņ�����I����W(�_�O'L�=���Ak�ghOդ�����ߏ��g�����lǡ0���ZR�WuX�>ӑ	'2�L7�lG�Kne0Y�w1@��+��shjQ�XCB,h	O"����4� �M��
��c4���Q��Rȧ��è@!���A�z4�l)Tz;I�\�1���}[�rW%���/��4M��r�����R*IA��_@%�}�{�p��Q�VF��L��IY
+����bZ)��n��t�)��L4v�ȍ�m$�Rt�}�o�ᶝ.��G��U����˳�\*F�%M�zJR��`�.��D3�ޕ���#�tl�~�(����%j]��K�/+=����q��nm_�5aTW��@���̓�:��Xul�L���&_�z#Y��e��2�(L&	�4gG'��� ����ֹ�-Ӵ�W顱�e�?Y"��2ۆ��QH��4�����=R:�D�Z	��N�������MP��Ohv��6��@\0HW�7ijJD�#N��O}�Qdz�8/*\*����bQp�Ƕ��m,���ڞt$F�;���<��m�諶ǘ���WЙʎ�0�;t�2p�\���R4�+~[�Ed�SI���\�,��L=��Wr�
+�Ja}%o>��[���~"N�<N�	W�I?�J�n䑤jX=	��<܎���iC>{d^��@GM�����J���a���xkQJ*˔��nk't�$�yJ�	�_�y�5Jr?�?����%����o��&��?�M�Qh�S�y�*:�6�~�F)�5�M��~��<P͝B�H�×�|���|'�sWmu�s\S#{}Iz�N�o��C��mV��•J�,��ֿ���{�9/e#�F�Ĩ��4r{�>�F�Ij�T�$]h$�	�ۣ@� ����:9�G_jd5��%'&�j`�`��B��'��T��3�8�1��M�։���*1���s���{��c����l ��ٸI:��
Z�x��ؼa�ke��bp�����Җ�.XE�T�z+��Ԭ
+F	=�?���h*����ꮭ| !9�.��i9{z�YR�"'�� \�/w�VɦP\�A�ܥ�&u<�/����S(3�U���W)W��K������>��~lV�O^�Y!���"s�=�Rs��A�{' �;��$m�]���Tx�uEˢt#�FwZ_���t���[���I��|�i��t#�)�N<��*C����{�#:.?�$O��5�]WT�����K��ٺtѨS�zʼ��_�wB��[w�����E�ı�[a;[�ظrFŏ�>�L�����
+�?m�ڪ'�:	��1����T��\��8��!�^x��^���Y��G
 endstream
 endobj
-1388 0 obj
+1514 0 obj
 <<
 /Type /Page
-/Contents 1389 0 R
-/Resources 1387 0 R
+/Contents 1515 0 R
+/Resources 1513 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1394 0 R
-/Group 377 0 R
-/Annots [ 1384 0 R 1385 0 R ]
+/Parent 1503 0 R
+/Annots [ 1504 0 R 1510 0 R 1511 0 R 1512 0 R ]
 >>
 endobj
-1384 0 obj
+1504 0 obj
 <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [428.83 304.958 444.023 318.75]
-/A << /S /GoTo /D (Hfootnote.128) >>
+/Rect [174.293 651.864 189.486 665.655]
+/A << /S /GoTo /D (Hfootnote.146) >>
 >>
 endobj
-1385 0 obj
+1510 0 obj
 <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [499.807 218.283 515 232.075]
-/A << /S /GoTo /D (Hfootnote.129) >>
+/Rect [303.24 497.401 318.433 511.193]
+/A << /S /GoTo /D (Hfootnote.147) >>
 >>
 endobj
-1390 0 obj
+1511 0 obj
 <<
-/D [1388 0 R /XYZ 55.693 823.059 null]
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [350.961 381.17 366.154 395.626]
+/A << /S /GoTo /D (Hfootnote.148) >>
 >>
 endobj
-1391 0 obj
+1512 0 obj
 <<
-/D [1388 0 R /XYZ 56.693 789.929 null]
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [292.533 280.714 307.726 294.506]
+/A << /S /GoTo /D (Hfootnote.149) >>
 >>
 endobj
-1392 0 obj
+1516 0 obj
 <<
-/D [1388 0 R /XYZ 74.626 183.215 null]
+/D [1514 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1393 0 obj
+378 0 obj
 <<
-/D [1388 0 R /XYZ 74.626 87.574 null]
+/D [1514 0 R /XYZ 56.693 578.348 null]
 >>
 endobj
-1387 0 obj
+1517 0 obj
 <<
-/Font << /F15 347 0 R /F21 383 0 R /F7 385 0 R /F8 387 0 R >>
-/XObject << /Im2 376 0 R >>
-/ProcSet [ /PDF /Text /ImageC ]
+/D [1514 0 R /XYZ 74.626 259.427 null]
 >>
 endobj
-1399 0 obj
+1518 0 obj
 <<
-/Length 2695      
+/D [1514 0 R /XYZ 74.626 211.606 null]
+>>
+endobj
+1519 0 obj
+<<
+/D [1514 0 R /XYZ 74.626 187.696 null]
+>>
+endobj
+1520 0 obj
+<<
+/D [1514 0 R /XYZ 74.626 175.741 null]
+>>
+endobj
+1513 0 obj
+<<
+/Font << /F15 395 0 R /F21 431 0 R /F23 446 0 R /F17 397 0 R /F7 433 0 R /F8 435 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+1523 0 obj
+<<
+/Length 544       
 /Filter /FlateDecode
 >>
 stream
-xڝْܶ�}�����E���<(�d��(���J�������!�<$��>}�C�a����h􉉃]�]�����+�JEe�&��C�fQV�@�Ƀ�m�K�_oʼ�q�����$��y��:)�^��������כĔ�� �����"����wW\)`j��Q&�W��[��!�#]�ZyL����	~���*���yGy�X�uӀi�>
#BY�8۷����n`�nQ��5���_�4�6�0Ȥl��:(�;�ܡn���O���xE���wO�	|�
��4��Dn�ɸ�	:�(��9��ߘ8C^�׏��kZ<t=�=��4�� ������٫D/U��&Jr
܉k�k]C�¯�s�m�ÿ�'	�T&AiP��t����NDl]U���us♡kX���9�}w߸�
)g��e��Z�h�ۊLRw^���=v�;F�(��.�i�1h��u�P*�t�#�\��ؐ��#�;�:�$��VH���
-|��Á�>�o�3��	��x�H3:���V�b�X���+_�Ԉ����$d�8'j�٥�C�h���Q�l�jR	Mw<ٻ�k������M��
-<0���`��o	P��n�{�1����8�?b����$��BH��<*�X���D�6��4�0	�t,{9�<�v��$�,6Dכ,V���,ɯ�2���E���'��t��'�������ޤ&
�@��G��[�{kϣ�^iO�%M���u��Ѣ��h����a�M͖a�+5x�]�yr��tCˁՐ�!B��D8\x_�v��?�):PTS�3�FwbR�^��3
-�p��P����@�#�B�߲�f�\4z�C��;*�EL��OeN$J�R;��;V���I�Ig�MMzXɐ_b�{���~�d�FP���`��p|���p��뻗oe���o`����?b<ƿ��Sy���ZD�۵D5��$T	�=t�D�Y����������!i4F:29�~��8�!�<
Yw& ���`<z��㞑 ��I�|au$����a���`��~��N�9ڊc�@90@��t�S�B�:2.�َs���oNB��ȧ�
-�q|0��qX
-�R������L���[�q�|��,hR&�t�/��*R��
-�(�"@�9�Zד��~�/�|��$L�n�(P��c��e��T��W�+F��<BPMD�#�=���1�
-"��<�]�΄7�j����^���
�eG=t�„�Y	f����JDM>�F�u�V@�&�1%�'���
-��q
��r��S^vÁK C�\���~�A8�B�>o:9d�~_�Esz�/�����3d#ֲ=x�.@`0���{��}�E�豋�r���D��+<�/-hJ��Y�K����[\��͊I
-��h�"��w{aT}Y>�b��T8w"���B�R�T�T��n��K���6?*N�€B��dedt�6
-.<$P�'�	)	�^�9����~^�zU�{r
-r�����?����Ac%�H�"���hp�ҏ�}#�)�" L�wX��%������uB�`3L�mw����I�כA�6��U<W�(���B�����P��i����I|m��^���t����KQ����j�ew����x�Z��W�(�Md8�
-=OP����h�e�=�Z������nr����:g�E�\��C�$�'[߾\���+Jh����a�;]&ae[F�L��+;�z�����=N#�]q)w��smdE���s�1s���D�v�).�Gb��=^@�u�>�;�!>v�+�X�=���hg�;
�E!ɤ�2\�z;�+�5�Z�����K���-��D��{�d��X.��Eo+�s�&���.�JZ��%�S��@;`�+�p���nN�0�}�71�S"B�ɝ�E���H6�@
-�1\神�RT�|.o��=	6�R`HDG�9v"t6Q�Z@h���b:��b�r_�\�§�DZ
-ҭr)�f�C�,`WN�}@�
�~R��]�=i:�ٓ�t���D��A����j�/Zd޹��Vtn��V ����f-e3�~ZI������Fo�*��D4��}KI=����|�݋87���� (�f���F�bAnHI�bU�Dy��Xz�̓� &�� K�D8DeY�z>y��ʨ̒��_���L���J)뵘���q�몔x(��r��Tnf+��k��Z}ɗ*���PB=q���'�8���}���$�ѷ���A��=��d�v[s3���Rk��M���Ŵ�P�
��$y~k�	�����,U����3���J��p-_�Km��>h)��
-9�;�-/8�R�{6E�ͪ������ȃ!�Ң�V�䗜�p�w��i �K��h9`O�'�(�'8��\�����`�]�gf`J��	V��}DBv"��Ob	}�}�.�!k���u��U1��U�Cђ�|���8B ��_�H�&��a�~���O��/(��,�E! �p^0(���H���$�>P=U�QE��E��2I����OF����&�pq�H�,��@��%CO
-"�O5�C00��S!UeE�����pe� �S`O�o��_�l���tm3\��6ћ���}�2�?�����1�
+xڵRMw�0��+t�E�zK[�M.mbz��A�敯n����\{b�YͬfE�Q�9��W7L"ƈ���t�dB#=BB�4G�X��QM�l�(�	���|��n�a��%�r���yV��)�6i�3``D;�RE(���'�r��%���e꬐Ќhe���}@�Y��"�)Q�&#�L�`F���ox-'�3C���PK	��m�ѧ����f���e%3�9��!����M�?vK $yF"�x��Vm9�
+�V�Ț����˚:���u]_����4`u9Jĸ$�jŒp�����0b@�44w���z��$��M���f����^��d˹�#F)���h�m��k�8v��-�����i=@�W�$�I(��erN�h5>r끝-���!g��G{7[������A))~>+�~p6����Ų�Ț��\?m{bl�o�b8T����|3ȿ���u"&����}��f��7�3l��C���v�*����8w�A��.*��G�;ז6s�'�zYi��-=�XCG��x|�a��
 endstream
 endobj
-1398 0 obj
+1522 0 obj
 <<
 /Type /Page
-/Contents 1399 0 R
-/Resources 1397 0 R
+/Contents 1523 0 R
+/Resources 1521 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1394 0 R
-/Annots [ 1386 0 R 1395 0 R 1396 0 R ]
+/Parent 1503 0 R
+/Group 425 0 R
 >>
 endobj
-1386 0 obj
+1524 0 obj
 <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [250.331 709.647 265.524 723.439]
-/A << /S /GoTo /D (Hfootnote.130) >>
+/D [1522 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1395 0 obj
+1525 0 obj
 <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [511.932 526.293 527.125 540.085]
-/A << /S /GoTo /D (Hfootnote.131) >>
+/D [1522 0 R /XYZ 56.693 789.929 null]
 >>
 endobj
-1396 0 obj
+382 0 obj
 <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [131.977 497.401 147.17 511.193]
-/A << /S /GoTo /D (Hfootnote.132) >>
+/D [1522 0 R /XYZ 56.693 450.247 null]
 >>
 endobj
-1400 0 obj
+1526 0 obj
 <<
-/D [1398 0 R /XYZ 55.693 823.059 null]
+/D [1522 0 R /XYZ 56.693 419.16 null]
 >>
 endobj
-330 0 obj
+1521 0 obj
 <<
-/D [1398 0 R /XYZ 56.693 606.575 null]
+/Font << /F15 395 0 R /F17 397 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
 >>
 endobj
-334 0 obj
+1530 0 obj
 <<
-/D [1398 0 R /XYZ 56.693 394.329 null]
+/Length 1303      
+/Filter /FlateDecode
 >>
+stream
+xڅVKs�6���Q;�ER����N��6m��%Ɂ���l�⚤��@P��=�  ��#�d��ɇ�O���-+Ʋ�,y��$e�U�HTu��/i�\�u�~Z�z�y��J���������rū���K^�r�h�i���7��ÂA�<aG�y��H���˷<�a�c�g�m��`�O��eM��-�Z���k]�Y]2�U����괇dx[�~y5��f$���6�f,ɂ��y�[�O���ii���z�xw�>�-WX�5�g�UccOh:�����V�W�]a��+VdEQ�%��4���Z<��ig�àH��� m�<��`:���kΫ�Ü�"�4*��;:8����џ����>8���|�%���İP�+��<���!���Y{3;p��4j�C��[E�*7
>��6��=u~�Ѱ�Vu~x^6SA�z��٥��;rst����xg�֫�����~:Ͻ��4l��~�ǚ���CO�^���TCuM�_�z?�+j����>3B��L���w=v�DI�`Aw�[���	��y��O�
+���XG5�����$���I�`:���Ú�a���1̐����������:��5�İ�Y�����EX��mϓ_�Ɖ9��du�
V�@Q�b�h��q*ɭ��Nz˚wPEQ��'z��W���x�� �A=������%<ks�ƚG�}� 
+eŢN4q
+{AE,/��Bì���ܢ0(Z���@ѥ� i��|x����BUƘ_sVX�i�0iw�V:�;9��T���b+�X��e{�P���
!�'��4ih9��LǞ�V��v4�4<.K��ACo��v�Jb&%�P(����-]���+����;��l�g�y��4�������N�'|�z�e����"pQ���m��x�n�z�K8��o�8�̑6I{%G~�w̯�������^�q���jE����ՠ��6��9�A�4����0��Ԝܓ5Ф���F4~����,��9�Z��X^&E&DCGge~�����~`��l�a�I7��V^�EMロ,08�g�B~�=p$gH�(z�PG@b���D���m��hGĬ�)�2jg`�k�]��E���%�v#��7	g}�<4�1tH?����]�i1��_��C�cr�~'eOM���h��3ڱH!���V���?����,��OX�N*|샊g~�e�5�h���&i���U��O��U,��R"|I�P�O�#m�-
+tFX>��9�b��3G�QX�?��q
+��S��#�֓qV�9��
+endstream
 endobj
-1401 0 obj
+1529 0 obj
 <<
-/D [1398 0 R /XYZ 74.626 126.006 null]
+/Type /Page
+/Contents 1530 0 R
+/Resources 1528 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1503 0 R
+/Group 425 0 R
+/Annots [ 1527 0 R ]
 >>
 endobj
-1402 0 obj
+1527 0 obj
 <<
-/D [1398 0 R /XYZ 74.626 102.096 null]
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [489.802 319.072 504.995 332.864]
+/A << /S /GoTo /D (Hfootnote.150) >>
 >>
 endobj
-1403 0 obj
+1531 0 obj
 <<
-/D [1398 0 R /XYZ 74.626 78.137 null]
+/D [1529 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-1397 0 obj
+1532 0 obj
 <<
-/Font << /F15 347 0 R /F23 398 0 R /F21 383 0 R /F17 349 0 R /F7 385 0 R /F8 387 0 R /F10 528 0 R >>
-/ProcSet [ /PDF /Text ]
+/D [1529 0 R /XYZ 56.693 702.922 null]
 >>
 endobj
-1406 0 obj
+1533 0 obj
+<<
+/D [1529 0 R /XYZ 74.626 66.181 null]
+>>
+endobj
+1528 0 obj
+<<
+/Font << /F15 395 0 R /F23 446 0 R /F21 431 0 R /F7 433 0 R /F8 435 0 R >>
+/XObject << /Im2 424 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>>
+endobj
+1536 0 obj
 <<
-/Length 181       
+/Length 182       
 /Filter /FlateDecode
 >>
 stream
-x�U��
-1E�|�-��q&��$��-d��X�����V��FA�j���Ђ0Uä��`6�{�t��LK�W���F��%�A]��ٺ��9ׅ�k9�J.�i��I�g:��0��aߩ͖���d�pvp�M�y=c����,Ʋw?�"d��W��z=�^��å9=�:�gf�'�
6
+x�U�=�0����wL�]�����:H��8��"��?�X��t��w<<�35�j8ef���G��!G��� 6��
�]��d9�o�AN�r�Y��S��-t�lj�Cq��#1�W���t[�LJ<��+\ɦi�`�V��,Ʋw?�"d��W��z]��I�u{kίN��3��	6
 endstream
 endobj
-1405 0 obj
+1535 0 obj
 <<
 /Type /Page
-/Contents 1406 0 R
-/Resources 1404 0 R
+/Contents 1536 0 R
+/Resources 1534 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 1394 0 R
+/Parent 1503 0 R
 >>
 endobj
-1407 0 obj
+1537 0 obj
 <<
-/D [1405 0 R /XYZ 55.693 823.059 null]
+/D [1535 0 R /XYZ 55.693 823.059 null]
 >>
 endobj
-338 0 obj
+386 0 obj
 <<
-/D [1405 0 R /XYZ 56.693 782.706 null]
+/D [1535 0 R /XYZ 56.693 782.706 null]
 >>
 endobj
-1404 0 obj
+1534 0 obj
 <<
-/Font << /F15 347 0 R /F17 349 0 R >>
+/Font << /F15 395 0 R /F17 397 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-1408 0 obj
-[533.6]
+1538 0 obj
+[680.6]
 endobj
-1409 0 obj
+1539 0 obj
+[533.6 588.2]
+endobj
+1540 0 obj
 [963 379.6]
 endobj
-1410 0 obj
+1541 0 obj
 [892.9 339.3]
 endobj
-1411 0 obj
-[585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 530.4 539.2 431.6 675.4 571.4 826.4 647.8]
+1542 0 obj
+[339.3 339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 530.4 539.2 431.6 675.4 571.4 826.4 647.8]
 endobj
-1412 0 obj
+1543 0 obj
 [639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.6 494 437.5 570 517 571.4 437.2 540.3 595.8 625.7 651.4 622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 750 758.5 714.7 827.9 738.2 643.1 786.3 831.3 439.6 554.5 849.3 680.6 970.1 803.5 762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 298.4 878 600.2 484.7 503.1 446.4 451.2 468.8 361.1 572.5 484.7 715.9 571.5 490.3 465.1]
 endobj
-1413 0 obj
+1544 0 obj
 [804.5 698 652 566.2 523.3 571.8 644 590.3 466.4 725.7 736.1 750 621.5 571.8 726.7 639 716.5 582.1 689.8 742.1 767.4 819.4 779.9 586.7 750.7 1021.9 639 487.8 811.6 1222.2 1222.2 1222.2 1222.2 379.6 379.6 638.9 638.9 638.9 638.9 638.9 638.9 638.9 638.9 638.9 638.9 638.9 638.9 379.6 379.6 963 638.9 963 638.9 658.7 924.1 926.6 883.7 998.3 899.8 775 952.9 999.5 547.7 681.6 1025.7 846.3 1161.6 967.1 934.1 780 966.5 922.1 756.7 731.1 838.1 729.6 1150.9 1001.4 726.4 837.7 509.3 509.3 509.3 1222.2 1222.2 518.5 674.9 547.7 559.1 642.5 589 600.7 607.7 725.7 445.6 511.6 660.9 401.6 1093.7 769.7 612.5 642.5 570.7 579.9 584.5 476.8]
 endobj
-1414 0 obj
+1545 0 obj
 [826.4 295.1]
 endobj
-1415 0 obj
+1546 0 obj
 [611.1 611.1 611.1]
 endobj
-1416 0 obj
+1547 0 obj
 [458.3 458.3 416.7 416.7 472.2 472.2 472.2 472.2 583.3 583.3 472.2 472.2 333.3 555.6 577.8 577.8 597.2 597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 791.7 791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000]
 endobj
-1417 0 obj
+1548 0 obj
 [682.4 596.2 547.3 470.1 429.5 467 533.2 495.7 376.2 612.3 619.8 639.2 522.3 467 610.1 544.1 607.2 471.5 576.4 631.6 659.7 694.5 660.7 490.6 632.1 882.1 544.1 388.9 692.4 1062.5 1062.5 1062.5 1062.5 295.1 295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 826.4 531.3 826.4 531.3 559.7 795.8 801.4 757.3 871.7 778.7 672.4 827.9 872.8 460.7 580.4 896 722.6 1020.4 843.3 806.2 673.6 835.7 800.2 646.2 618.6 718.8 618.8 1002.4 873.9 615.8 720 413.2 413.2 413.2 1062.5 1062.5 434 564.4 454.5 460.2 546.7 492.9 510.4 505.6 612.3 361.7 429.7 553.2 317.1 939.8 644.7 513.5 534.8 474.4 479.5 491.3 383.7 615.2 517.4 762.5 598.1]
 endobj
-1418 0 obj
+1549 0 obj
 [622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.8 772.4 811.3 431.9 541.2 833 666.2 947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6]
 endobj
-1419 0 obj
+1550 0 obj
 [583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4]
 endobj
-1420 0 obj
-[446.4 446.4 569.5 877 323.4 384.9 323.4 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5]
+1551 0 obj
+[446.4 446.4 569.5 877 323.4 384.9 323.4 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 323.4 323.4 323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 692.5 323.4 569.5 323.4 569.5 323.4 323.4 569.5 631 507.9 631 507.9 354.2 569.5 631 323.4 354.2 600.2 323.4 938.5 631 569.5 631 600.2 446.4 452.6]
 endobj
-1421 0 obj
+1552 0 obj
 [767.4 826.4 767.4 619.8 590.3 590.3 885.4 885.4 295.1 324.7 531.3 531.3 531.3 531.3 531.3 795.8 472.2 531.3 767.4 826.4 531.3 958.7 1076.8 826.4 295.1 295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2 295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 295.1 826.4 501.7 501.7 826.4 795.8 752.1 767.4 811.1 722.6 693.1 833.5 795.8 382.6 545.5 825.4 663.6 972.9 795.8 826.4 722.6 826.4 781.6 590.3 767.4 795.8 795.8 1091 795.8 795.8 649.3 295.1 531.3 295.1 531.3 295.1 295.1 531.3 590.3 472.2 590.3 472.2 324.7 531.3 590.3 295.1 324.7 560.8 295.1 885.4 590.3 531.3 590.3 560.8 414.1 419.1]
 endobj
-1422 0 obj
+1553 0 obj
 [777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 761.9 689.7 1200.9 820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 500 500 611.1 500 277.8 833.3]
 endobj
-1423 0 obj
+1554 0 obj
 [656.3 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 812.5 875 562.5 1018.5 1143.5 875 312.5 342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 875 531.3 531.3 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.8 312.5 937.5 625 562.5 625 593.8 459.5 443.8 437.5 625 593.8 812.5 593.8 593.8]
 endobj
-1424 0 obj
+1555 0 obj
 [816 761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 707.2 571.2 544 544 816 816 272 299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 761.6 272 272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2]
 endobj
-1425 0 obj
+1556 0 obj
 <<
-/Length1 2243
-/Length2 16971
+/Length1 2261
+/Length2 17061
 /Length3 0
-/Length 18289     
-/Filter /FlateDecode
->>
-stream
-xڌ�P�[ӆC��0���Cpw�ww
<�[pw�ܝ܂��a�W�����Ω�b�Zݽ�ﵺ�
-%U3{����#3/@L^T���������
-GA�r��g�B������������}M����Q�� �j`a�p�p�23X��y��h��7v��2�v@g8
-1{O'����{���P���Xxx������@��v�ycK��{FSc���)���?[P�[��8�21���3�:3�;Y���A.���3��
h�K2@���oi�p�5K�����.��N@���
�h���jgt�g�J��v�r���=�߇`ad��v���k#����Ʀ����v� ;�9�P��ct�p�ۙ��hl�l�o�f�16yw��tc���2��]��9�:�\��A6id�k��c��3���ڹ8��U�8�	h�~�L��\k;{w;���9����/f�L�v GW����}ޗ���Y�]����\�<��#��aj��W5O��F����5�z;�;���e�}A���/8ogc7 ������O���d�0Z�������4��߿�����~,��>�����af�v6����b&eQY-9
�K��QT������``�`������8������1��u0����3������s�O�n���
��R��\ ��O��1s0���a���������v�m��[������v�9��؍mA6���x�\W��)������	����ۘ�_�����,��Y���AΒ ������_��u���dT�w��h0�03���t�Z�?>��{�o�}x�7������_S���	0vr2��c~o%V�7��8�=��b�����{�]�/���	����0����/�0��!.����0��!������$��X�LR���������{v�?��]��g��C����{v���{v�?��]��gW�C��U�;�I��ע���k��C�h��x����Wf��+3�/�u�Lf���ڀ���c�W3�qx/�������2������n���/����?�{w������+��eY��u��߅����wav2��ڽ��?�����߃����^����A8�?��qT��V&�?������?>�z����]���"��U��;�?V����s��'&K'�?�]����?�u��ߏ����������d���{���3���NNﯱ��������	z�M��M�B��B:�kD��v'f)v5Si���:]���h�3�֝nE���PV�%�o�W�_��Z����۟|�
�U�w�ᖦ�~L���0�	���8�hZC��w�P�:�r#)�߻��(�9����W�)�\6���E/�x�"�$k�ʅ����y��v-g�X&���8���[g�5�a��W��s.9�!�
��4���A���wɷX���o�͂��Ǝ�$���e����8�
�ʐ���bM��(D�ۨ�t���sϼ��9+w��`yEU�e:��v9Qb
O�O�!
-����:?H^�\���1��7CՐ��/��j����m�x������wrR�&[�ZM�DPm
-�`��x�Œ$���$[s�Gڛ� 8~i��Y���u�n/��~��#�`���a���j��!Kfe���t+^�^����O�d���5�_��DMЄ�*����C긪K���#��Z�-���y'�Kg>��6�5K�.�:
�d��Y��|H&.~ƒUΦ�X��86u�-ÈŹX5Gȟ��+?|L�(�C�[�4�����L�!جc�{k�?�H����^�v�
��@��?������(VD�1�w���G����†�9'"tic���[*��|W��i��Y���m��:�o��J���Vik(�F��i�FN�ղ4f>hfH|b9��Wi.ʠ������gn��d�K�v�'[ž����"w�`�]e������H��_�1M=�ʰ
-�pR��Ӄ��u�#9��9dΥ׃��y=�Ju�1����;iW$F�.Vc��c�"��qIk��@.��j��f��#6f�|���� ��1Ŷ	���ֳ
S��K�z�{�p��ˬ��b.����qi�cRG���7?��_�'1�=��|�!�#T+{ā)�����LE��)�⩃/�%���#�*?���KB�&��?~_��N&w8GO$�"%\�����ҹ�-�\�ӧ;���h@릍��A�62tѮo�l�� _��!��P��[�6��"���X�p��Ҕ��zWt��xTς_A�H�g�A��^�����L��4�@�h��$����[�(� �����!�	�M;澈Lܺq�ncP�B� �\7�y^�n�x���s!��E�I�u�h�éJ.����g��p�q��k�o��4mQ��d#�Ĝ�PP��F����Rri/=�)z�=�����A�N����_���_�A���`�*ښ�G�d���ɹp����8�t���D�SmR�����N��ؚ�d�8�����A�-P\�z:��3g~���on�=�Z�?<���S��y�����8��״�� �9�Ib���2�j$�dncʻ�Q������0pڒ��2��mh[���y�		��n�Z�ڞ�t����mnn*"����X
-�y�$��p����yH�t��<lހ�$�h��#��Ʀ-D.0>����t�{��32
I�"G�P�{nwVLNS�+��:�J(4�5�t�Z��]��ɺ�*:����bk�O�J"�_�-M��?=��$|C�u��l���T0��	g�!t%rٽ�C�;x�0i>�Fb�m,16���kL��L,�_Ru���:f4�0f-�1����wR������ug �c�'_+�i-L �
-��j~萈�v�h8� ��uބp� ��J�,���2<9�.*�����Ii���v�3ķ�V)��e�"K���Y���٣ܒ,���s:=[�	b�'N��>k\���@R(���L�n�9�����[ٔ_`���7cY	L�hf�6��Yd1��\��u%I`etq���C���Y��!*m�>av���Af�9�8�j+���w�~��U}�G��Iip�7�co��օ��x�(����3+�8�ߒ���v�S�0��;}6�%�"$-��qQ	����\�p��*g�,�P�Eʕ-�5qz��~����S�}yW��fDC��(F@�����$K���Qp����g�KO���ܟ%�ݾ1���Xԧ��0fZ]�zL��)�'߀���i�\9�c>���Z���Y��#<�l{�
S7T{��sKvG�Ȁ��Ϯ5�RO뉞������kʯ$x&M��%��n���8�0W�-ʲ�4��`���f���x�����$<PYX)A��$֧�����[6I�XIkt���[�N��̝�[�	
�ܒ��"+���
���\�z\5C���?�˥+�Jy��5k,�6���O'�k<�A_i��\k�z\�0l�nv��x���9�'bݫ�@��BV�M�=��}ҌP���ǤmC�Q���ʙ_�K�1���}�G�34'�]E�=tѿ�
-���΀�X��”��^xtp�%�X��5��(��?t䠊ѿ�o��Q'r�Y\l��T-4�g2�<!�H���?�7i��Z�z�&�[���O���k�C6d �!v&w�*�!��c�Z���}����Z\���L�2~[�co�74�S`��ZW�5k�n|����L��%��h���˟����W�9{�xW��eSVH?eMV#�!�Z�Y'DQJ�ǹ�dj����	3�/+MY���m�1��*ρ[
KRX�(5����{��W�j�����6���4�']eb�+�^��t�̕���[)0jϰ�B��a�L #�D l���)���ϲCE��&Gm�;�:�2��|=4Οw�ڲ���&V�ͪg�$a	��"N��F���g��!�� (!#Uލ#^��ʏ��a�{�-��r�/������t�R�*��>��`�ntm.s�?v��a���	�	/���C�c���W��5 (��K4��L�+����翔�}&�҂l�r�x�w�[:��n8Κ�{&= 9�5ǡ� W�����@/Ćֳ���|�I���fLr)�y�l��~8iص;�$��)q]��~��I�N�T��ds{���I��f\(���O�=��:���2Wc.G�6�hӶ�4 ���ǘG�}�����b����1�:I 9��@��#,����'ݳ��Ic�6U7���&��O����}�ga(�#�~z����Y}꘳8��KcֶB�i��U����m���l�:�y6���{��]Rm3����2�y�]GEc���F��1B�7�|WGXPR���D�>w���M֮Tg�(/�)��`���!k�
�D���}�i��E�&=��
��!;�SОy��jM$�s5�CX�f4�L�I�e�%��L��ڎq��r��٥�*������yW�`�_���2�K&xI����B��9�c��w�th����?�3���ag���x��k/�ǜ^[).%�p�-P�r�֢(��}�~���[YE��8��	�_�݁ZE�
�N#0��%
��L�o2�����1�iXӓ~�%쐓� r>L{���<��oU5�I�ݨk�w؜�Qx@�Z4̡��Zq�����a��&$Xۈ՝y"��R��LQ�5i�Kf*2�aȣ�yV�c���]�8v������Cɿ刍�e�z�
�?��'�\�r��]�u2�5���mw#5f��W��n:h,�@��p�d���רiq�11⅚�cE¨�Lg�u�-��>yH��u�û=V�i�j��v��tC�(��c�qپmx��mT���{�gyXYbp��$�0�����؅o��H����ҶS�o�j����鸛�/�J��'��tT��H���L?5�-�Ƈφ�"��Ǭ��U}g^Od½ঢ়�"�v"7��aK����2�E��Tf,�i�x�Te�~yXd�:�@�����fFm�oJVB�Q�26JF	ˏZЏg���hͭw���&���3\�c_�Ba&�Xe���"�rk�
�e��Mh?����+��m<���U���K�U��";aI'�r�ɯ����hp�<�K�˽�ݛ�3�+we]:�H��|�8��Ma��m[;�u+y;	si[�)�j���
�H��}��
-��%oY�(�����EI���d0#���Eo�{�����R�vəL�)LU�6�:H>�o_���``pG�* ��e��4!S��B(�]�}nB���KI�y���̰U��+��8���oI%��	��/�$c���"O뒆z0c��n�����x{E�_�3�� �p�R5��6�SX�!���Ǚl�jΕ��z�]���G�(d����K��� ��6�M������a=�tL6���~^�w{��]
-����蚦�N�S�C#����iЛ���}�p!PS�����?�o���q���o c���6.ճ�k&�+B1ɡ��@H�rH�E0�%�]5C�gY0CBzy6��@Ze'��Ư{8\���E�Ԗ�`��*�dAUY�a�?&��v�3ȧ�_�m�#�TF�y��W��NE/lsDP���(\c���!UsJ�ĉ��s��{P��:X�}�2���}mXO���6Y�=�7��ۡq��
�$��.�i*��P��o�箸��bl�����w��3�}����Z���qX��Gx}F�:8���?=��Y;]�I��I��^�]��UFT����{�n�h�
-7�n8�a7�P=����p���i��v��I�h|wя_3C�j �]`آ
t]���um��]�Z�T�=}�N!�&���j��rO]��r�3gܒb����Ɯ�k��
-�}8��T��3���;3Q���i�i��F�,��hat�'�)��2t$�D�<d�u׈qӪ%�V�y��Dk7<ȱ�Q.E�|�ٗ�&H����ͥ=�@���R��ZS�2p�����A)Q��7�Z����"�@���Yڧ(	.�o~%��\�d�Q�=��ml�ϲ=.��ٞXé0�7o;��=rN^�Xy�)ޭ(c���ګ���O҄iI3���0���Yf���3pDw=�������,X���=���l:\瀞�>:��zn��O��Lj^eɼ��S8�KK7%
-���&g��Hɓԍ�<��aIÖo.�v�Gy�zx�f��\ܮ^��x{_��*I�5�(�/X��J���X{+n�/���zp�r���N}�����c����ȡ��*���[M�g��G~i�0��Oaˍj�_���x���':���ک���!Ffߜx�,[&���
-�:g(�e��WG=R�\=��.�M����ȓu
��U����E���ʛ�)w����7D@O5����E6�D� �ƗA���e �7��$e�z#GP�IRGA$��O��m�ЋE$�)N��<b�)�YU��mR���)+UTG���kz�m��	%���qB$Y�j
*i����<V\v|t�>H��_����U�V0�sH�&�mR�H�����3,1l7}8�(��s:�;��.�U�
9��o�A���A�0��esՌ�?�T�9�unrD\�n�y����V��ll�E�:b�q��S$d�/����xMs����ጘő��F��&0]�@��%`<!��x��#1T�w_���Z����6�L��U����_�T�\��.4Dl��w)����[�B�0Κ�5y,��m�r)_*N����
-r�ԩ��"¥��,��XG7g�)U|�H!�z��|��/�]��;b�@�T��(�x�:�c�Q\/��h|�_�*
-�#&�ʥH��2�cJ�I���W��%p5oĒƱ���>9��U�&)di��]TbD�ǰ=�Nu��؁s�U{���Mq~�j���P7�Q������ψ�E�a��������^mb�0�rI�FFw���A��`7%�$7hր'��?�x��44�.��ئ�S4�,3�
�LpG�:��a�H��
-�j��Guj��$��:���
-�R(���hq�>��m:^�`����<���Q�ZƤ����V2 :8u�"N/;0�I.���8 ���bY$>
-��~N&����Е���G���M��G)=	~��brt���0,xG���B��s��TcN����^�ȣCG��ǥ�KL��;�<'����VX�i��??��^~�j�nN��6�R�96�J^ʹ7.�٬�V]�f��	!����1�5
-���������*g�я��4�SI���E9	�9��
lVE�9��`��>p͸��t�J��W���[ơ�~��X����vy��~�!1�Ck�m���w�cdž�1���o�����术!hp���L6���Q�$�.��JU':Uܞ�Lؼ�#ǁf���`Z����F���?ܥ�5�B��q������w�e������ԃ!�ձQ�����X����^�ղ�t�*�+pZ�'�41x�W���2gQ���Y���b��U�$�����M��	XM�{$�T&����T�—����t��e!B�l��B�F7D`4_����>.��[�����<�|�ظ�!�2�o��2����z2�u�S�Z��Z��B'���0.8ò�uh�L��"�~�E����T\�m�|��ꊽ\;k�1X<��,_�6Q�W�w+�QI�d3x�(}�$���־���b4�ri����z����HSU�6
-[:4�9�U�����=��u*Z?�����FkM���$A�gԍwm>�hQ�l�NHP�ĴЀ"؞Ppޏ�Z����Ji@�z��CLsN����y��z8�Dpw�v���ؽ�H,yP	�
-η>ז�yk��U]��>��l�l��=��hڜ�E*�������i���S�W��hlK��B$%�������hm{���S�H�w�����
-��y���v�H"��DG�����[?�S-\8���7�?�G�eӭAl1I�*ES8�Qv��.'>�z
�kj��ƒ�8���ܤ�?�0�(X����Dm���c�^�_
<�w�g0�i�d�k�VI6C�Kl��>��Ma���cj=3*e�U
-/�赩�B����Qҿ����~d��1#	ZG�6��Ǡ5�!�KM�-��{c_X��]��{���9ٚ{�)����PQ�]��ٶ�B@ ��;x�J�UKw����A�D�%|;\�2*��A��.��*=j%�&�<ԡ��������1{�w�5DU�:�A���1��p%7����E8pA�2����Lúe(�8q.�3�f�:�K�
-mM�ˁ��_���
-"c�bg�����T��[����%�N�?�q�2J��5@�;릪��O`�睪�]J �X��c���d�7�s[lh�a�g�ݎ	W�~F36V��'�6�;����f�,��Ji,ƃVt����n�ط�7=`Vv(�~��J��ʹoSl�"� �
z�zQ�hDt�S�O�=<�yM��Z9G�:�Y���+@�����T������Ac�u�|+����䫼+Tx��ʐi����F�CG�3WUH������6�?�����z����v��@ai�A|��!�h���zd����ۖn2�����/]�2BY|`;�#y�͂K'^���r��T���3#1
=E�����uEܯ�*�8@Ա�5ohQe@2�0;���'Z�����w`n��j����E9{��#�<E�PA<9y��ʲ��]/.Q�Lӝ�A�~�(!g�%���O8K*���N �H�Z��,k�2���f>�V/j�����|�>t�sj���3_m��̻��Q�bU���f/=�r��f���������v��t�Ej�Z���@Ϸ��Y�|�C�G�W��v�!�an�c��Œ��,[_r!`U߷g�5�J�������ɏ����1��UZ�U�Gg��1�p���%�����A
�ڭ�Ȫ��[����+݁�ȹSg$̈́��hm�1����qn���������O=����M�sg��C~�d6��:��Eb��3����7�n��x��Sn�i��?�!<���jY�d��U1�4t��%t�/�3��x8�@}��NR�_WƭA�!��1<�[��{0��;J��xyǡ_նE�!� 
n����J>vnƄ�"�oKyL�h��&�MJIūҼ����.BX�����%N�K�ǘ���MWcWOq�����1�ة2���c�R�"���8�?��p���+;��H��މY������.��A�ngR��gS�D�X,"��м
-C(f9�t͔��-ͳL�M��z\��RT���}�)��m�}8�ԆE7�����������^}����=E��~��Rع�"h4؛�ZՅG+
V;��3�� 0�)�F�����oU̇g���"�'�o�m�ah����ٱ��d���8�Ԍk:��dWPɌ'�<�
-�TE������e����m��㎨�l�<���Y��DP��r��i���[B�;ِ�7�L���=����4�i�ʒ[9��Pi��2\tQ�Ԥ���� Ki�
-6d��j�ӛ�
jn���J���l�)���\.��M��p�ޭ��\�9�!ݘ!Lʢ<�(;Zx�i>\�qj��T�8�G��f�@��O� ���}��ʨH���s�t�V�ڹ�8���$l�@|���	�/Q�>--�VO�n�E�^�i ��H�o�t.��4��郕0n�,onX_�nr�Z�M�D�c�	�S�t��q&fuyؗ��6�E�S���ܚv*���ap��*��g,H]�r���(���A����M�?����S�*匜Zc����'�'�SE�%�R]���^����)C2]rg��ZF���1�GAJ��pw��~�i!m��{XB��y\CE��f2GZ���[C���e�i���B��*:q�L��ْ����yK��ZKQ���\�9��"�l��%j,�
-0!ť��.�8���8-$�J��J��C�ޭ���(���^�7�C�~���c�?�����ݼs^D�ф�#C�<p�7-�%�ۖ�h翏=�b�'�������&M}m�*�ti�rp�#^^��ҕqM�_V%�T�f!+�������Q
-%�~�_E.^�͕�C()��������$HnL�|Ƭ��"��CL�B�����Ҟ�Lq����?�����;�A�� ��Wp�a�=H���]���>�}Ծ��r��")F������}�e��@S�$]�y*�pƒsB�e>{�G�n:���(+q�K�􁇄
s�.��U����L��m)���y��>U��h�]~�[��Zp'�;��Ð:ĵ|��/���VH+�r��"ޑZ�='u�}�M���f��^����P��W��i�qRp8\����c���%�e�矆1�^>s)C�S�Zf�|U�)����ѻ}�W��A%��d��蔝O�ѨF�q��]�ǒ�A��#�S ��/3x��ܝ�#���S�W_v�V��ߺ맩��>�Jq����뭱��|G�*�)�jT��ͧ�V��C_X��N���|u�`�����Z���^S�m�ֺ?�B�߁��L���3A�J�y����s�����ƅQ��Z7��K:$�H���q��ҙ@n��T/���bJ_��xR�L�L�7	�XY`��W?JQ��3FS���;j�Ŏ����I)�S������P��%_�ժtye�L���e6���ʷ��������,�z����\�+C�uȒq�n#�-)X�1ZfѤ$_��3�F�����v�8�M;�Jq�+��#_컷�?3l�eR�)i��Ah'�$y�J���?��a�!I:`XЀU�E%��x�'.U��i���`4A�연5
�/�ALF2�]My�Bϳn8���#?6�n �|M�����K6&\Av�w_�G=r\��l謙qM| ͔�������5���Y�,�V'��3$�8�7����F�$��U`���R��ת"���)�<$i��Ϟ�D�vm���Ԙ�ˆ�|&
<�S����q�S�%�y;��3�	�N�5|b�0��Y{��l~ef��r����땢�����L����oLB�
-��<���F`G�]<�E������im��'��n�ǒ8�w�������U�G
y�ɋۚw�&@�3�׉z�o�����(ͅ���t�a���S;�Xa�V�ϒ�mF#mO;Frٲaa"�C߃���u�����l��`�I���V�d��
-�dW�Ľ}�q�QqZ<:��/�1I�n�]Ʒ	.Ewv{ȃv+�G[̅Hb�C'�6�6�Hx�d�xY�{��5VA�܆��3XYq鬝k�3`�ԟ�3���g����1���>���'�=_���z�y\��=yi_�u��మ�Y�9�![I-䊛�~��$W%��U�6tjÖ�'��.$i����(����f�V�	�wA�#�L2����:��L�'S0��3C	/|6����	�)ۉ��tԪ�"���M7� I0�{b�<em�䯣��K�[�8 Q/��D{�ȸ�y���(�U�ǘ�#C�e�
������(e+˖ڮ��S�᚝�'-�A����ZB+�?�F&`��g�CT�]�6�ϭ%o1/�q�<2}����C����@*�\��͗��pU��-�!�9���5�F>��j�f�!�W��	�m��	+,��u�L���`�� ��P�v�S{0��lt2,�+g)0Y����ȓ�ܹ}&�{�Ya=R�v~~��Ƀ@IsJ��m�yh���:��\]�c��d�+������%�4I3P[�?�"3'5�"M>۞CBA^�)��(g-�l�^J���qYXJ�]�h��}��7�ty��1�1*;*kHQ���{���4����4����KU���c���9�(����l���r5Q�3��!5�~52�œ�j�b�ЦN:�c�n���8��1��x�gv2;Q��Ks�ߴ&�tS��~x8;{{T���ٮ�1,��kZk5�p���:�X�x
p_�
6tPf
-�t�{�� 7��稗��D����<�-���ϴ��-�F���G`%�f����9���79�_��e��Ûّ\���3�� �r$��<|{�c?߫uF����֟,X7*v�ם�@7���Yk���~H�'�R��UY>��u�Bu��T:�WU1/l2?����a�v��6�6�y?��f���_��)���(6B�g�W������<��(3�FzEs|��J�>������%���
�^���I�J�YLx�Wڟ���N5e���Θ`q�����&Rb�:r��TPD\]^���΋��x
-������~w1p�J��&4�O'5�Æ�w�K{��i~��)�sz��$��s�T3h�ndHcS��x�z����	KN�{o�4�)���HhLR��c�B�9�6��9�����a�G� �'��%].Է�s|�����nu>B���_*;Bū��Pŕ+�XF��S�´���ɃE������p3}T��@6�-��v �i�؆�I��(cf�����qӺ�v�}i2@�R�dHJxK���Fž�ԏ��F4�o�q�c��e#}E7J��>m톻�QT����9�j
-�:��x��Z8VXm�o֢ioa��洁�+;�o�����ڊ�K���t�����O	ԍ3<3�N�#1��b!z$5�qT�п!I���G�~�)WO�/�`���T�n��=xH��_?�|<�61]ps�n�%���|���*����G�gI�����xb�)�b�'�I�?����i2g����i�wV~��.�p:.�瘿�\�@�7t�3bb�͟�o���D1�ju��]U����I���`����F��e�%̂�s�\�:0���`F�k�)!�q^��Y9��n�լ�.�C�Ȅ��;E%�������Z�5�r ���:M�g��uH,/ZD���"W�klo��n�&�-���JB%��i������~dq�)'����-�Ag<�j�5/�O�:zFd�hi{�n���
2}�Nt�X8�ܾ��'Xq<
sD��m�k�!�	�Ya[ֶ�lDf,��^;w� �/�X�xP��_K�]n�`�Ñ�?�o~I�?g��^f�����
р_���{$rX�!F��,�8Z�S ��Ea�W�@#��KoT@�f�b�PH�_^Nƹ�W���jD���5��}�j4�:����j�-��8e��{iȀ�Asė
-���'����a���JdE��Ʉp��2��17G�V(��>�q�Q�sK�C1Cw�k���� ��朏����C��~�����9z���S�ދ-
-]~�8'7���.��<T�4/�2b%P��"jY�����������Cą^4_�� �"pQL��Ps���=�
X—]���S$�~;��:`����c�$:�$��U��$i�
���X^\�EH]߯�9���k�C�'� ��
-<UN˴[�p{���)m�Oo]�\w��ǎ^ߖ�`uߴHY�s�>�̊�O����f���$s�b�\<�j�S@S�}���������Q�d�?�O�(,vq��`�<�N
-��<k���(�������u7���e���a�B{�ᦪq�倞E>��v��W��hw�
�b�pu��J��jA�V.��z���9�M�	�c����?���@���(^��]_Y�̬�&�1�r1a�!�(�kzl��_}$����j/\G���n� ^H)���%�#�g$ЅFm�:���?����*E�Pґ�@�3n�!`��Ͳ��m�ƶ)?.@WT�A���Y)\�&`P����˘	O�B���
>���NA��h�S���>�q��[�Z�������J�I�KRiP�0�m/-�v��u�a �-��<���@����e_Ӧ��E�h�3���a5�'-���l{S��s~W��K|��o��R��Z���H
-�U�B��ݻ�p���*��"X�~� (�do��Yhb����E�v�z��C�Δ')�sl*��!�	?}0��Q&�Ҡ@
-�� 8·D�I�=Z��ޔ�
-����q��$��`ا�㯘���'Em=g�Ԃk��{%�^�(�
ԁZ%��R��-<Z�TUI(�_:�n��~�n��P��>��obӦ�S~��Y�Q�
-����/SQ��o��V���8w�g�:=h�TۜR��n>5���K��8l�GRx�xX�@��S�1e�ALB�%
-	��/���m&~wP;ȡx+˜�|�ۃ��`������VX�3LYS��*C�|b�rq7�@�$�j���)�rLz-��nr.%d�T�b*<F�K�:~��G��/
?�N&��
-_0c�s���$ԝ�W\C�Xd�H�r�������Ĝ,��Zȇ�p	̓vCj�5m�:��+Tڹ	��U����D�a|�>�
-�v{���);�(��
sD�e�;O�v���!8U�\|<v;Wj�]��N)F^o�GN�AO��sez�l�����U�H:o��o<<MèCi�0��Ѐ������&%t�x���Y���elLZ`���w�˽oF���٧�?�S��j�c)|!*^������9�%��u.,��5���1�
��z[�A?�H�ggJ[EU�IS{"��j�>H_��tΘ-ؼ�O(�!�2�M>��D?�͕����Zk������'�����4���xu�u�n~j���|��!�Vf{�ؔ\*�l럟�?`��Z�}��5M��yy�����Ҧe��ڎ�,m��R��^ra`�!y'UR�ic�#
L^|sGf�Kԇ:y������V8ZēO>��Tވ><����D�$q��G<��i�Pr�˻?�����%\�>se,�����_�gf}��T����ī�%[�w�Y�I�Z��Q��F��Nۺ�-4��:E�&�V�V��8 �0RѯI�1�b�k�	�������5��?�{lv�����Z�/�J�b.
CM��|8GBj�1�)����r��L�<�I��:��
-��tz|Z?�����+���I(�?���KP>�Yɠ9�aLm�*�X������G�"��;q�	����(2�uu�U�_
?	\�OT01]O�%g.�4q*�8�fB��>F�lF��J�}ĵ��]o��$͛�Ǟ�9��~�c�E*�Umu7�e��;`n�2mw�ض�r���Oˉ^Xy�0X'&�
��X]{m�|�'IR�~���RK�A��`<Lضt�e�b������!�3�}��k�����\�4��Z���J
-��D�N�%���8�W&Y7�R���T�3�r�2(�AȽwaR&��i���H�3Q�J�_�L�$������I\9v�N��,��à��M��!G.�:Y�����nыS�	���C�I†�׉�l���Jf(�.�{D�,ƿ��G��	^%�_�F�i�x���|IE5���+�F�O^���z�˪���koCW�����it\��/�<���.}Z��?16P��L����C3=�殳"y�Q�$
ү�̪��g�AgzSҒ���{1A�0�|7�w����\�>R$kc8S���f��m�Esft���͗mM�&,>�ݨ�Wb���yr�]^�0E���v��1�P�Mx�>�|x�>��>��
-�m2a+G��Ž]�.(ʷơ��V�`�D��n��d�qV�K�V�?�cU��>h�Zc,%����=ؙ̴��G����)������g��>���L�������[n��ٟ���90�@z��=�
_�e'��t�\L��f�4�.��P�Y(�:��e&���fX�4I��6��y\r��V���&�a)L\_g�_�%�g1��fķW��"0$���Ʊs��$s���}�e]s(Zn*�pc����O��ak8�[mוE�
-���O�W���i~��'E���������Eg���=�Ly�v_[p��q�i�p6T�a����2bCE�P����iw�]�=¨&|[���n���Wo�s���E��64�r�Ω;��q[���΃;�J����vqI�K�����͞y!�����PN���UJ@�,��@�\,ؖ��)�M���e]`�ۍw�>Q-�u�ο�����VÐ�⮮W����5��j���b�u���ܜ�pW��-��bζ�~=7uʕ%�����d/���m^~���g%�s˗�u���u~��$u���A�ہ�d���jӲlӎ��nL�R�t���W?�X]ȰysW�,��mV�e\w�nd���6�'���F"������֮�2���I�ـ1��N�i��v�}�Ԧ[]4Q�Ugkw��4�p�J��ns�1) S���29��_u�T$4k��i�ѣ
��2I��zyjv�����"`���j����hH-���s�����=x�����TK.|v@��j������=9n��Cs��)��%�|�~�8:�%D��R@�}��/��
-+�S��wQy��;=i�;~���	"�Č%���
-�*�ˡ��n�eS������.y�8�~M$�o�Dw*#��Ȃ_q$Z����[��J������c��{�
S'h�u�W�Ԭ�������cMM�_J71�5H�+Y������>P�q�,'�-��n�\��ȱb��x�r)c�O�������NL�1�lFjF������㲁����xv->��h��M@�%��a{�Ds�%G%n7����;�S��_	�M����_$������(�f�<�eA�	ЦLfI6d
�C�5`uqo��U3�Zxe�9^;u�����I�1�1�K�C��u�=�3�Wr�����"YF�#-���H)�.-2�Uo�2��Y�]��̚��̟}!B&ZIW�x�WF.�K	��s��22��Y�?`*4lgw�����
6�(�(uzQ�[�H�Z��[����Q?���:T�6s��9)^�2���?�Q�":�L�Y��R�a��]%j��k�q�C^�W\nD�2�fXP}qZ�$�����"བh&dh-�<���%P����F�)4M�O���]�Nb���|(��J�D<���� �2�k��U��C�?S0��R�Q�D�Ľ�?�&/p`c�U�����O�aaY;�,"H����K2��>���h��J���I���N$K�]������	s��7����2���>M�0�R���	�S�eX�c
-�y�X?c@Y�K�Y�\��nT'�Z|o ��(�ʗCP\_���Ɲ`�ܥ�����������W�CW
ޗm��O6�H������i
-�����R�Z  &r�b��˄gV(W����O?��̍xq]Z&9�R��#~@�r���u�(�&Wy���	�͘�K]Y���W��<�|:�o&q��
-�
�T��Yt����e�>=�iW��cʞ-�\$�O�6���1{�(i��
-�5�(r�I�l��o�s�wd^�Ee@�W�d^+�5�5m�c�Wn�0��/��G;����������2f
3��@�����hu���^�徚r;���WF	��j0!J����U��-���~G��
-�^ieP'5l�����rL�����{%}�A��Hr�	+�>J����fY�,fɆ
o�&��t���fJ[/�-�ǖ�s��'a������ֽ&|[$�1���g��n�ߩd��!�Ҭ����h��9���X+��*$���W�g�?`���~����OK�����!���(�2��E��C�o��R��4[�5'���O��[u�^K���&�]�"�^"��pƟ��P�-h�Dn�s��4q�x?�����P���5ׄJBW�8}�N&&��̞��g��jf1E��A�bT�C�֌J�"o��w�nST��Ϧ����?h��"�U�T!�1"n{�q�&��j��T���aj�d��EU�����Ħ[	��ECV��4���4�q�>]�N�,��qY 4_q)|�j�hR-Y��o�H.�Ŀ�
�6i"�M�|�I
ಪ���X���ʢ=W�&)���v��L�؍������"Y8K�9�G:p�UJaž����<��+D�c#UB���9)��`��;��[�e�*1�<b���r�^�ϯ$��*� �W���*��@3Td1QJB���Z��
-��ʼ�|�9�⣁�	jO�:�fr��_Qp�F����̨I�̕^5'mk#C���{�
-endstream
-endobj
-1426 0 obj
+/Length 18384     
+/Filter /FlateDecode
+>>
+stream
+xڌ�P�Ҁ��<�38w
���0��������=��!��\�>�}����-�`��ޫ{MAF$�D+`lk��q�e�c���32���`�Ȕ͝���9�%S:8���p�CC�h��q&l���(ck�t�02ٸٹ�L��Q�u���d����6@GX2![;wsS3��8���4�0rr���m�:���d�̀����J�F�@'��qA�c��d�EO���Jg`�Hg�`�KEp5w2(�.@c�_%d
���.���lf��/��������q`en�q�0q�1:�>��$�rv@�)K�K�����������92���������������`bnȉJ�9�9��l��R4�r���7p10�20�P�;u��������h�`n��H�hn�W����h�������5���������F}w����Z�غ�x��L�m�M�*��َ^����(!�o��#�?g�@'�+;'�h�����@��������=�l��&e���M�`=
\��'g���?�K����cs#'�!�������c�ɿ������Z��`��翟t>&���������WL/�!. #C���+�uxҲ2h�X��̜�vV�����70�wl%lLl��J��O�I���3@�����/Yۏ�(��6+���/���������)������ߌD�����S�K��Gn`mn��o���uv��ۏ]����j���������I8|삀����h�(j�4�7w22�׸��\�E�2���:�����h���c��,?�Ǐ��[�X��
)bcdk�ז1���a>F���������@���@Ogc��a�(�`b���׍����:����;�^�q�������������@/�������@/�>�K������#����.��>����8>������
+�#������X����#�?������E����A�#3�?������#��Ch�G��;�7�~d�/~\!�����G&�C�������9�_���m����C������?�����B-���Z�?J��Gf�����aj�1����n��3ƶ�#�H����v���?Z��mKo�g��"g��߫�G磞T��Q�㟜�"��Y~�;~<�>��i��sE�d���GC?�tr����G�������?�t��m}X�#Ӈ{���V��������G�c�����n@#إy[#� �ڠ��j\Wڽ�3d{j)T��K�O�ЉTUw�#�ȫ;"���˄���-�С��
+m�^/zq�S{m������u���h����^��T�-�[@�$ɲ�9�sQ\����JW�B����ؤ�^J�i�T"���f�r3簈��h�a��\�!���͠dM�J�Q�z�D1xjn2E?�y��+39vc�bkb�ߢ�M�{
+&Ib.x�H�D����7�v س�u-�Nl�b���*Eڙ
+�1R�&�m��Չ��]�^4�ʨ���y���Q1���7h�t*����݊ 薒��0�0i�m;wp��g�����/�"�a��V����i'�å�Ą�
��e�S^�I����fDY�P��?Ԇ+Q�-yAqK����,�j6$�<��d�-���?�Ãm.�+�9-�j���,�${l F���I��r���2
Q���e@l�j٫�
��r)p�CMo������J����6�4��5%Q:y,���M��lH",|ΘYƬ��F76y�%I���P9�ϓ��-3rB���E�].0��#	~;�$��IӢ��,w��:E�͵��r���4v�or[{KM�N��RuZ�\v/�����3"��ߕ��cO�L�|�})\g����{��|����_}����vуw��ñղ��T�_��J�����ǗrZ{�g#t�����	!��gawi��=T��Z!`.?��/p���S���n#D���E�0�n��Z��炕\�C��£�ζ��*�2�V:C���Y�#�����A�<>�k�
+m�(C�$�]Bu��r~/[��%]Q�!��RS3����6(�&�$@B�:D$��&5�h��.�A��D>�bq"��_���fy��itzE7(87h�O��}B����@��#��@ᔡW�b���O����H�A�㨹�K�]i/�v��D����לu�����W�%��:���`,Uh�ԟ�p��h;�l�to���.%�
+k�V%�T�Ϊ-K%�5T���67��(;�\���1�Ǖ=��������@F�^������J=Z�*�i��<�\=�=�a9�gv�y
+eՆ~ `�a����t'�=�0��u�S��J�+˘k��}>��U�Y�iW�աR:�+k�.�i�����Q6ʂ�����0T"N=^��*o����
+^�������=��v| �
+�$�)�#��glx^q�JݲaP�*��(�>T��IbY�hzA���P�L���i���㙌 5�%'7��egc�|ѿ8��5A�c�H����7Si���Zq�9]���t�S�dž�>�@Sr�`���䮫��B����\���CU�H�E�u6!k/���a�&�W��,Y}i�����k��ųa�Kl�n}�Z��1$�S7du�x[��f�ʘ�����	`JD�6۱����0N}�ɬ�	�LT���?�lh�F`!�&u����/�D���O�8�����roA�09����/�L�Rm2O-g����������I�c�-���Ax��"/���jf��+��l.�Р�T`}�q����@�?��%����o�H�����S�����~C��Y|)�䊢���@�>���.s^��O%�����to�F`�+-15K�z�tK~�W�J ��5�v��*'�ZɎ�!8C��мkM㘋�Ф�ڈ�~^7�Ӓ�u��G���1i�%�3��ۨ�����L�n�eI�Ijmk�qB<I�g6����ب������P���}��������������J��1$y��
��/�^��'&R��7�D�QE�J6��;>$Q�z������h�6� B��e���~4�Z U0�����E���.�\L��ՠ	s�Ժ6ą�CSWWz�A�H�>�h�����\��WC�_>g/zk��^�$�xX/ ��=��O�����d�J;��Hu������]톬q��"<��b�]��z�C��s���H���?��h�}kӒ���2�1�6g���z��ƌj�˘N���_܅�e�?+q�/^(D��e:�܈�h���&��,��kkL�S�`H�*����ش�V��?�p�� ��%�%��:ѫ��/�Ot�v�c�\��4+HyR-}��&�n��f�<Z�L�[J�1�"���~7��*�#��$f뒊B�&�W��0D,��1���~�?�"Ô^�2�cBZ����P��֫�V���;|�"����Z�#�-�0x[)6k�Og��9�h����k`���Ѭ�owY~7{�I;��c<(KBiqA�����G��>DȠiE���4??�6�6��/��K�E�3�E����-x�s��݁�Y���H����|x�!�T��1�� ��;|d��ֹ����E`7���X�P�7,k4�4.OA�;�;a���4b��Y̻@��"m9'Ʀ�dX�,f:{�"�6��o�oU���UFN9�J�Q2eT����'��ӳ��zg�
S�*v\����t���o'�`�Y��
+)���5o�~(ε�o��eb�̉*�Y�l@sӸ r��/v
+����6�����
+#Fy��ح{:�l�YP�Q2��b�zXƳ6C���5�ujk�����!�Uzf���*��$�\z��������d~���6Ix���x�6���l�{ͺ�E9�����=c)s�S.H7�c}�Fo̺p��ocd�-�����qO�bE�0U�ޗ��m�4@��+qmsI��G�|�9��@"�G�x4�l��+n�����a�f6;��9�H��H��0�_Q�,���/M�M�r�b"�F�*QJ���]qE8�n'Heۂ�yr_�߿[�C��;���8�,�T՟d�I��|1��N'U���	O�njҽ�ƞt�F���n@t����0��+�H�sf�an3}��XW�*	@\�^�D[�pkg����k'�/�X�B�{�h�t[TA��%�J�l֒,��E	@j]�1�*�9��gF����r��įI!'���M������5q��ʴ]Q�V%��<�ߍ���$��i�`���!�d�?7|ҵ���a3:���˰\{WL��|S������{;bY�?`�k�s�ʟ
�9�:�Z�U�M�n$?��v�I��跜E����p�^c@�y+�x��o��/4Z:S���#�V%���������3����{K|Y����u�K���lgIFy��N�19�V�	bl�V�x4�	$��e06�5�i=�~�Z7a�+��N�y���k&��m]�(ٴh��8j�?LJ^��2f6r�H�2���4�����cP�3���������rj�ᭅ��J���� �`=�<W�{q�x�9K�r�L?J;��٘w��޼E�W��,�VTo*���V6}6��F?��e}��)-q%��.)�)����9�K��ve���˭ʉ>\���,���i�,�i��O��,�*��ﺖVB���H��dxo�T�d6�js�r� h2ȩ��#h�>ך��%˄������YB���_�Kt�K��nͳ@A�X4ӓTAfu����Ug@�����*o۩LA��Z`��h�$U��L����g��p��B1"�aT ��ܛ��s��L�}�8����۲x�vp�M���&A���
c��vն�w�V8*��ܟ�^RX}3��4��O�ir� t�]f��fx��gqǡ�7Q8K�k�T�m[��|�mө_���.M
+�������⯑������1��:%��S�P�)ǐ����y�O��u>�Ҟ�� ��f�T\�J��k�x�?����7���PM+O�LJi��?�3@�@I�c�P��pn�����l��BvRu����~5��0�E^�-!�b�ܞw�b\5u�;�ca�c����8&z�n��y���ݖc�/�@[�4\{��o�u��r�گۻ�$?��vUТ����k�Kݲ�w�cmC�a!c#b"o
W�(�_�QQ��X�ћ� �Y���)�΅�ӟ/HT:�)��'�~~@� @wg���#?ܛ̷GJo��Cf�X��e�N�%p�*-�
�#�pU�YO9�(������$0_V���Y���1��}�����4�S	������R��V�Xd�������hL� a6Ҕq���W��[MOπ���uB� ,�S��!�F�O�=���L�|�|c
w��fˎU�=B�@�r#~�f����H�&�g���x_*��v�B�!����|��=��i���:e!3��QՌ�b&Q�aF�������j�r�;�)+v���p���6OJg9jx�	ד��=
+{�h[p7�� �̢��KJ>��.~�`��nUO�3&(�1"����U�B���roHv?v����?Kz&�F�0��"WpC�1�D�;�!n��8��.�nQ��R����NXT
+�@�c�<M{{�j}�0,4���3D6�e�+��Z-��χ汽}��:�����l�ꦼMY)�	�� ��"�cp�MU^�lrq;7{͞m5e�&㺧Γ�5�����|���D����kt��m=g�E���`����G"D$���f�2ͥ"�ʐ�W+ͭ4�kY#��)e�O���≐y�K�@�](�G�Zo?�S�DlW@��I'\x������<����
���]�ꀔj��2����Z���F��)lS��aur�_��b�:��6g�ƙjt��bA=ĪN_�����e���&zJ��K��t��w8�lb���ǂ�/���g�
h��-�"� 5����@5�6��,++�T�W(s�� ��<u�8̳�/��ok۲d�
+P���Xk�}���"�\��_Ha�q/���k�$�
+a�|�ӫL�J�-�
+�1g=�
���槥:�SKX�<�ߦ�6�cǤ��͢��R:���\�Ft3�1@�W���8z��j��O��P�A�z�T�y��kQ[͡�T��u�mT�i��b�a�H/�؜�4*�I}�;���V6<r(�oc5
+�6I��g�[I�s8R!�h��m�l�?�:8�&M��l����8[o��JQ��u��H��&y3%h���e���4�<�:P�2���z6���������@g��/i�<=Wۍ��\t��>�0��!K
ʟ@�qe9��|�R�w��?-��Q�þ�v���yw�,5k����γ�&����YuK�vv7�%�T0�䘴y$M��+�h}s
	S��1>8=V�L}[7���lp�Z[#E$�9�i�N���w���+�;��,f�r+�W�FTKF �n�G��cc׃A ��&L����XM���֝ڰ
Z�RJ������}�y��9���a\ I�z	*q����4FXjtt�6@�p�;������#��%�W��:��g� n��f;��9���,s����.���Ľُ�N�z%_�Mi��B̀'&��Z3T���*�:�o:��.�[�a75ۭ1�����v3Z���'����)�����o"�Rn���uО��"XS @���
���dt��Л�~}�3��� ������_QDŽq}�ڡ'�􆄣LhTrq�O��U�.=4�#�<שj��Ց
F�?o�EP�3�ӱ��&-�?)��;����bW��
+����4�ef<ݚ� W�B$��y���"�,r&�G�֬ ��/���vF�=&�Yz�T�Y�(�!$U�&K��0	ѦO��^�N1�7�٤�C�,�7H��<�[�Q>c#�Ԃ<�����T��D;��v��cO�'�ʼn�v�]��>2lC;:k��>�1#��Ʃ�q�ų�����Q*���f����[��֡�P9�(���']��F��H� �)h um�US�`�qF��9�`	t,���1&�5�ł�`UJ����2���
+��/��Ba��G�T���0,�s�\�7v�2b��*IÊ�1�$@T`�O�X�����Qx�b��1�T�Kq@���y����>$;�*�^�i�p�}�����HG!��������Z��g��\�E�8͘Ov�5;�/`��t��㜧2
+j����V��z�,��
@�B暋�dž>����g�|=�	vs���|�s.w�j�e�<���[Yh3�e�4�� ij�Zm�������2rȌ.�
+�m
+kGtW��mIN�r�q����Da��S�-����Y@LF���&C������_@b���yq􁱂vk7l�_�U��	)� 6h)n�g��W�B��ڹߞ!�(J���H�O�k+J�����!�[��#XL�9j��J��{"ϟ������+qx���n��|��K˾G�ƕx�hU���8�"ն��j��[g�fl�dg7W�*L��� �(d�
+�ʜ;��K��4O��8�X�W!2ض�}*6����D�>@�	�妍e]��3&{��Od��|Knb�j�r�����+�d�flՀ&���C���z��;	�/}����-����vQ��9��;�_��L�\�+�gI�/؄3�l���-��1���8?/%&��B�����Z�}9�6%f���QC����Dk�lR��� ;��e�מ�h�?�d
+w��E�W���N8�}e@Y�D[ğl����9��p(���}���
+5w��σ�7x]#rcw�	Z4 v�zp��1S9W�r���$�i	l�Q�S��3W��!m�4��\l��1�@'���+�c�����S5g;�H)�/��N�zv���������
+�ޝ��R��,���̿��6�/-�3�g#ƽ	%A��a�����ET[�ȸ��P!E,��k�7�v+'i�l���}�����b�ԥD~��9ַ����:�A[�a�����	5���X��'�Mvl��Xa�K��J'����J1������'�ݑR���@�.�*�g�E��@hCQ��@��O+��:���@ʯF�2��8���y��<�tㆤs��2}V�R���\�6i���Q^�m�d�`�Vw�y^�a���k�H^�SH��]"<�{o#��z5��vf�Pڶ�0g���h�nA#z��1	s��x�U��h�*��j�1��'T������+0��ibf�(ǂ�%��� ��3�
MM��9&���p���Z�Y��#�Z�:����2�/�H��:�R
l��2�y����+���,�7���n��rC�l=D�eˏ}�1D��^t7̍�f��9V����C4�x����/�#C�v<�����|��۝�����Us�� �嗬�\�+�Ӭ�Ɛ��|�V;�E�?�c��3s
+��`��|��Ӊ32]»/T�Q2zW�oG-IO��ku�}�&�'c���z�
+�V5���_��?�<��������	�Xu�`�t7��:��&��{�{A-֢����+|p����s��ㅬ��~�sCo�%#A��f08/Fq�iKI//h�qͽ�#ZS�	4�<KH�p�L'�o�� ��G`�!-������2�f�f��HT�b��"}����:��RN�l,�wI�������t��S|�LݲF���2��7��p���!.�K#Kp�T)��ǐS�����3Z����b�p�D�� ao����j���i�գ�-��B,�cŋE���!a\�k)hg/{-R�3�dG�D-�]4vG1!��S�NS��-�҇�Xe�
��U��ޫ�
�q]%���
+����Y
��x���gUl��n;k}~��L�cr�L��9�Qyn�'��1k���-��Z���Y��[J��Ctx{~���Vz��:��ǬQ;�K�xp�O��t����!1�y��#M�}��8=h�Eh��M�y�����H�����xk{����4ɉ
+`�4j�r=O��|Wq����"Vw���
�)mзv'��
]%͖��F���VkT?�"S����}Ω��[�ij�cY����rz�O��Ѫ�ߐ�M_�ѐ�V~�kA�H-q�xaw�T��b�*����K4N��XR����%��14B]D"#���n���%%��9%(z�(Wb艪������G�����4y<��vo���~���Z���V�^IZ����
+�'<n�Q!�FV���aI0��%�aS��D^�H^�wϷ>L���`h;l�ժQ �b�����I�@�Z�PV\��J�i�����|��x4G��'<Z����r��u��<����p.~?jƒq(K�L	{�29�=��Mp���{��C�u�������y$c	��RY��
i����3o��P�9��Ѣ�M���ce��7~���0v��~"����0&ib�]fOn�*�w[jL~ʴ�C��&�������3�����b��L��<I�v�����k�H���E���
+�����)1��T�Of9u`=ON����`�_ܤlO�����q�B�n��N]������;sBG��'��sM(�O��C�<[�Ru�׵	�������l�SQC0�Þ��A2!���{�9���[d��%�'{K{%�+n5g�4�&�J�k�Uv�O�B�Pc���wmw�r���Q"†`��
+�y��A��`Q�J���و����_4�Tͺ�.Ò�;c0�y�t���ˏ��y_���#��qN��
+��䰶��[3;�e!�&����NpѦ�5����8�!�G�n*j��X֦8��-�ɷ]��X��w����|���B�s��"Q��-ej��{��Bf���|� ܱ=���o�6���x.�g!���c)Y�G�3��eV��Q�_����5���ڊ�Qt����擰�THNu�Mk�t~�&�����?�2���Hm���Bt���,7ɜ/8H�[��d*I	�S.5����ф�3�٣���'ԑv@�Y�����N�NE��o���n�O���IYg:T�,¢�XN:[h��=��%����`�x��[�����g�#Bu{��F�O�Ѝ ��f������1��;������e�{�jZ���%v������	e����g��?�X~��F��F��%���7��c�]����=}�ǣ�C���P0�x�k�+��6z�^��Ra�v+e�ƍ�����!/[��Cʁ�Zܚs��͓2��}�W�
�1>\�K��&���_��@P�^@�t���Q!?#�f&?�l��`�J��՝yW#�G�
+og���X� M��_��7�P���]j�/�Vs�ۜŻ�kq���~��ljCj�~�_"�be�����ԫ�G~y>��#�(�j�{�O�|c���h���Ӗ��Q��0]��ޝB�kI�N��?�Ul�Q�󜕽���<4c�����fm�p:��sω�[��ip�npWA��S^�yv7VM:5�L�A!.���+�r������R�\�U�Qe�[l�0p='����y�ʯ�dbJ����s.fWqD�V�Iſ�I�odDe�|���h6=�Y���z��C��iX'�'xX�f��"q:�g	������J,1Y�p+��3�'�TD�a����7��]��~�� ͠Z���ށVSfb6�{��$5��O�)�,r�)
+<�=�oI�%V�!��j�M�:�͚���QCb&v��.ۿ�Lwl�Yp��Q��T�Y[�X�TUW?�N�}�ͫ�J�5K
+�#d�U5��*	"I�Wuں�(宵����uŅ�yRb
+e��ʣ�;I�X�Ήּ�3h���_E�2����5�Uvu�����YgG}MI���a�C3`/�[�L�[�Xm�(J"�5��&�H&�p�M��T\\�֕�+v�D��‰a����r�0ꩁ��5����L�!��(.��SH��N<�iQoC�$�\q4�@i�36g�ǿ��#���k�5����{�]�Ԭl�J{
+'*��Z>�HO��9���0�gi���p�-�������,��Y{��H�U������dd���X{�HVA���O����tT����r���u�i�_�뿭%&*twΤH��F�]�o#<��=��C/�@d���-Εv2��eæ������fx�M�`
$�$UznGA�jw��ҍ�')�_��Ś�}��v1�V����6�讌�$���=��r��Œ��xD����`7<o�DL6����6_g=���2�,odE@�����'sT��z��*1����p�@Č��hګAdwa�J�&�qU�̵�l��
QΕ���VӤƉ����n݄�O��6��E{�7��\)�࠻�a���6#�J_U���M�N�p=>��1�${�_E�\]:"WA/�_���;A⅁�k�:��pU��-�D�իD~�Y?�F�E����]�!���h[�}�����e��?�.��g���}ڑ/�j闭X�)�����"��{���`B6���$ehcI��5H���M�
#x�{��=�hտ���}U�������v8f�zC�Z���w��\�P�X�p]�Eg��!�%'d���n��)��q���k���?Vd�c{$j��Kk�17�b.˸��–�a��p/gʵ���B=��|�nrɎ��<f<�6��D�+��!9���k��:�$�y��(%B�t��3�(���b_�MQ<�G�9mƙj�����`Vʸo�/��<׶$Ng�8h@?�L��4�?������9J.Gٕi#r0�9P숙^}*_�^Dh<z��<��~�âj=�������c�7.��?2l�g_���DP��p�w�3�3�1�h
+$�0�R��x����
+���
7����sܑ�B&& 3Iw�Z�pj��n���K,Q��3u�1l�0K��9�JA�D���_ �Kq�h���<�6�d�����=/̀��T`6�.gn�vj�ܔ++�nt#�UԔ2���j����d�N�'X�^(DXhl=c�\p�2�۸ڧ݂���GO���y��%m�i|t�����e0�ԅ�6^�]I/�q����D��Lj�`�C��(l�l����B+qm�O�s�O��I�i~w�k�Z���c4]�Tb^1^u�Yi�˓q�D05�X�(�9$��l�e�bC���ʦ
+���s؂4|��<ʨ�ނ!��s񱏅���us��&ePb=p�L��W�}'f���ML�2�x�]
+iԬ�Å�������jh���L�5vO���G�+�*_�ğߒ}Fg/˚-���v�a4mqn����[����{h<@"��2tܮ%��|���T=��h���!��25�Xt��zs5�%O�(U�|��vg�	^�,��f�)��'������l���vٞ��s"�7���\/ʷ�>�'q0�a�0)FN��w�(]�9_�g��o`����9Io�l�m��ei��J�
鐫T�q�g7�
+�PR�Ex�2���oa�^b�i������|�b Yp�Kî��1�鏛O ���Yj3�qS�3�UO��+����X��S.�/+#���R_
+3s�	�7��[�	Ǐ�'�ق[�$�l
+����3�X��P�_;�9�dL��'��pH���p':�̌O�Q3̎}���eCHF�Ӣ`v +���l��&����Sx��Bm��A�g����!4~�0�jw�M�}H��r
�3�)G�s�e
+�������
+��#ff�邐�6冺�+�uB"`|4���*٣b}S|n姏����W�Z9
��ݶ�Б`����wܑeP�H�D
���OH����-
+'�ހK��w�]�6f	@��]�.]�g^�X���/��h�T�R=�N�r�[©��e��@a��ԁH�����O��K}l�G	b7�:���s�5ʊ���j��&B_��`�J���o?ɀ`9�{"�Qf�����#8�v0�n���Տ�Bu���p�)���m��+��B��4E�����;iٳc�v��S1DU*�B
+�u�-�kP��N��}
F�~���g������n�)����Ŀ�+`�yXYG~��6
+�8޹���u9�,�p�J�V�;Ś(vݍHol[.DJW����U�ۥlә`����H��Bf��S�pމ(�3,]FV)(��pj_�c�9�G�L��B22)\}s��#����)Ʉ��Sd(���O���0~}/�g�PXW�6��q�uD���{K����A���/�r����JhN��/�f'����!b�Ƿ��ԯ\C��5���~�㯆��mNM�C��즽+sv�	v�.�q��U�T�P����"�~��G��
��Gn��{w8'����$�Hx�7N�«؅̛�H� ��b=���7���Tr* ��1H�q�Zf�o�utq��L���z^�L0'k6����$Arț�O-�01�Hl�W�N�|V�S�6��D��M��u1I1O�DAӚ���擬m���R���KG�W��i����E�-��YS=Z	���#0�%>�	��ڞv�C�b϶�uqn��km�
+=1Wҹf^t���,)������K]��uL�d�]��:��-�U2Hޙ�1�0K+���Ae"�������S���'bMT�����;�&�c=�Fz�q�G7\�ԋVZY/�6��2Fz���4�){�D��ʆ���9,"�#P�nѨl��Euٹl������B�SjW�C81ޤSB�ٛx�T�<	Ol~�%��0�U �8vx��Y�DU�r�����y(����%���|�!3ǩ���f�m@%A���H�_��L�F�lH��P�
��]UH�>��"2�u�A��E:֏�C�	Z��y���1��{�')�
"�0'�3�`�`q`@�M����pf�՚qy�U�kP�WO_r�+�iQz�b�#p��ƻ�X�_s�1����Z�@�&HH
�$�C"���;�̑��ט^VZS�u��EB���DO@���Mf��"�[�i�6��Ե���qa�<�e�DZ�n�r����X�WV�D����P!}x'wB^�ףy��)l��jevQ%�US�d�9�+E#�I84n�	"��7F�b�"�Z���㹔Z�kKt{5�uf�����2ܰ�DT�=�,�;~Գٲ��{"V�0�|�U?�Ҍ��`�m8	W��m����OM�Nl�+%E�HI�����SOUE��ܓ�?�&[���v[��s��%)����W0*�J��	iYs9
+i��-0[�*Nt�p�v��#����6��w1v�,�,����Y��*an����<�Τў߄���C�ҸI����������ś��<�(��jq�����Oc����q#�$w?s�S���=�N̄&M8A(���Q���p|����mR몕"�2��w���lL�䣱Y�H������!�А?�l���F��ٴ�g�9衔:����|�/�����	Ģ���|h���e�QG��-��p�<z���>�G��}�^Hu-����2v���Vi�=��e��
+��{�0�f��T�Kd��̸�w�w�%g�
��ǥP�Dq#]z���Sl���|�04q�@�ޘB*�Y��&Jr�u��د�h��Ŭ7vu��u~��7R���~ǿ,ɩ�b��S�XyC
+�Pg����"�n�7��N�V���7����K��	X\�0~Z��P�gX��Z�2�[�99���0�<�(:�鋇�f*�C5(��D��*������l퐎���F6`f�I��O,�%:��^j�������Z��˚qI��|c�C�X�����j����H����nd��i�LCN��6�%�8��R�3��!���kc�dȱN-c}���Z�$B����,	T��B�o�=/^��f��0��I�yY�W��Y&��vLo����e�^v껪S��qw"�Z!U��sj7��e(N������9ߺBr;0Y3T�03
+Z|�_��auV�8]����U__j-�[>�O��?B&%vOO���W"����D4�kO$o��kĺᜑ�?��������,G��x�WH�{t���Q���΋�
+h|�z���rfp�r'�K��w���Z[�7��X�t{�#�v��rD��{��K4�PN�J�yу�L�q���1����{�ӹ
+���q�-ڤ;����ȬE,F��F�"���})�C��l��/F	J7h(�
��J-AQ�A��A�K'-��~��%q!r��!�L�ݲ�|�=q���:�ߠ�ɯ�K��r��o:�x��1�*'��VTaw"@�I��^�L�z�2SR���~s�l=����pN�lɥ񂅒�Qr�T�쨠�P}���]�Ur�ϊ��-�����f�^_��"
+���kp۸��	�ЋjFp�
+2�p��N�`���$g|[�ER�/�x<�i����&�ܡ�h[8����B\���Q��Y�.��<Z5y;?�� �>#�D��_�
c�j��0�l��q p�8I�8�q����s���Z+�ͳ>nw�*8����T�����e|u��֑��q��XRe��5���9��Lζ2�Q�I�dxq���\�b�u@��ʓ���5>�{��
��ͩl����%÷�v�E��X-�a.!݂�,���'�0J�tR���l���N>Ս����v�`��7e]U(<׃�r�
+�T��>uJ2��i�~����%_�+��)�đt�����yͯ��b�dy3�
������$���C�	�x�!�X��j><Lm�!��Ƭ�4�����1��f�
+���ْ�=�w0���l��dP�59j?��ń\�wQ�Y�J���椂��S5;�H;����
iQ�_���K�24��(%��w#�>隗�^}2�����QA��D�ndҥnv����|'k w�Z;�X�:���y�:e™�\�_��K\y:��I��J�$�����{Q��)��<B�>�M�3��A
+:'l�M/��[�}w!-G0��n%����y떻�_�����N2���X>D�Ν�S\�-�&��K�iki���$甦m�0���M��/B>h1撉⻒`/������o���9�c�4�� ��-��#��_����}�<��3����F��+'l>�c�e?l�7$?��,;����L��2��:��w�y�n�:좀$s���.�]��O�W;�F7	x�3+��Ռ�M��@P%ڱ�_8ͽJ|�P!O-�!R������!J���#�y��g�\�H�,����φ7��,��d��Rzk����^�AM�%��M8���51�G5��j��A'OM�>Y���T?Pۇ,��r�睗S7�82��+lnl����{Cmσ}af\{�΃Ã�yX��
�A{djxU9�%��=($���J1�;h�2�<��e��pxy��;X�K�o@�W.t?���1�2Z�a�F�t޻����{�:&e�3�j�ӆ�Ѻ,ab=Y���;�[vP!�������|�#�_=�n��2U��ϠL5��l��aI�"T��{�KZy͢[�qh��XY��,�0�ڷ�.%�l��ʐ�C�Όc� SS�3���k��a#��H�Ʀ[b��g����D߉�Ccbg��L�O���G7���.��\�������MD���X�81c��a����(��57ޖ%H�x��
+�:e���������<�)�9e����'@����8f��(L���fsY�y�ȭa6h��o)��9d/k�\fR���Y�EȿZHq"$lݭ\��YD�����	R�D�A�@0ݾ6N���/̟��
+N
+_��栿�W��O�:)�8"�$�2	W��rN�/Z�@��m�1��YĢU
_��;G��qk�����*����,���cՀ�5mڋ�k�aNE�Eȿ�U����S�2Š��e������Uݽd}s+��ci��k��+�#ɧ��Y-A��f��-�^}���Rǥ�T+���}��TC4��R�]��|���>g�Z�b}V�;��_K�Mw��-M����p5꘤O)��
F٧�v�CWٍ0$;*ڞC��я>6�z�$��}�6K��-�GC��`��_6��*o�w��o��n�H���k����ɱ�A��cd����^������Ɋpq����<�C
+���������2��Y�j[��:�
�~��6�e�]�m樿;�:y�O�?�E3��[?ҩ ���̨�`�5/��(K~�ÑUW�����a;Ĉ���\(|��Ҭc�&���J8�D��e+A�ř����D����q�"�k�`�z��5V	��Ӷ�b<�=k*��8���������
�R�C�����M-�N)��AƂ8Xc�/���G⡍H d���:�$�X�ס�i䷮����Xź��]�Z�^�T&|
o‹T4�V,��fmעK��Ԧ���!��i�.�O-�	䚏~ƛ���T�=L����vV-���1Md�T���8]�i3�������_��,�����D�+�|��w
:$ha���oG�=s�p�w�˜��0����.��ג�#���д�P+����l�����l)�|t���Uq0�&K}�a��g�3�������*����#��}��iq�;22c����^(��P
+q{��Y�S/a�E:>7H=r™e��
+��'55�o�	0���o2�q�탣^8:4@ؙ+
+yH���_�.�_5�c�p�qv�������2�BI(�e�Q��t�LŠ )�iE��&��]�Ӛ(�g���O��l�I8����C��u�V���j��N�DU���?�]�tP�$��[�DG*�y�d��%��&�����_��f������H�8j]�~q�-�"�L���(�~��f�ۨG#j�ԎW����~d�ڤ�_�b�qzй���ě|���@�6<��M��>1���[��Q9�zw7>��l^L�>ã3Ԧ+�'F5�%�C�>��/d�0;�)��}!��P���S?��6TJs�����1�ZM��p��;b�@��竆
��U�k��}��7�JT2�$&�
t%�l�V0J	�@��ǡ�'|�Ҕ�mV���8t�)�hDQđ܅�W��
+kvPG��ko'�=E�)��F�wXs���ұ;�*d��R";� xͳo|�sD�L�lV���V�_�)�
+Ri�.�YB���e�)U���[
ņḧ���8��TXt�g{�3�ƒ����8]*��d߲
+���Z�׺/��9���<J�&�]�	�
�)����8�mR^ړ\_gB�hqK��!��e��k
+endstream
+endobj
+1557 0 obj
 <<
 /Type /FontDescriptor
-/FontName /QBKXLV+CMBX12
+/FontName /EYHAMM+CMBX12
 /Flags 4
 /FontBBox [-53 -251 1139 750]
 /Ascent 694
@@ -14215,11 +14997,11 @@ endobj
 /ItalicAngle 0
 /StemV 109
 /XHeight 444
-/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/a/b/c/d/e/eight/f/ff/fi/five/four/g/h/i/k/l/m/n/nine/o/one/p/period/q/question/r/s/seven/six/t/three/two/u/v/w/x/y)
-/FontFile 1425 0 R
+/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/a/b/c/comma/d/e/eight/f/ff/fi/five/four/g/h/i/k/l/m/n/nine/o/one/p/period/q/question/r/s/seven/six/t/three/two/u/v/w/x/y)
+/FontFile 1556 0 R
 >>
 endobj
-1427 0 obj
+1558 0 obj
 <<
 /Length1 1694
 /Length2 7300
@@ -14271,7 +15053,7 @@ c
 /��Tf����p��IwJ�CC�g�p�Ձ���ZDO룒�*ہ^,�����v���x�WB��g��W�BV����t.���w�6�+d^�P<*�*yS9�+��W��}�8�񇨒E���)����ɽ��3j��'��"�����U�
 endstream
 endobj
-1428 0 obj
+1559 0 obj
 <<
 /Type /FontDescriptor
 /FontName /CUOUIH+CMEX10
@@ -14284,10 +15066,10 @@ endobj
 /StemV 47
 /XHeight 431
 /CharSet (/bracketleftbt/bracketleftex/bracketlefttp/bracketrightbt/bracketrightex/bracketrighttp/parenleftBig/parenleftbig/parenleftbigg/parenrightBig/parenrightbig/parenrightbigg/radicalbig)
-/FontFile 1427 0 R
+/FontFile 1558 0 R
 >>
 endobj
-1429 0 obj
+1560 0 obj
 <<
 /Length1 1721
 /Length2 9749
@@ -14339,7 +15121,7 @@ E6
 ����c�;Dvk���͓td�l��$,��.�2f]���NZ�8��n���6">ixt5��2#�)+BHo�&�-+K��B�H=n�s9���#L�#���#$
 endstream
 endobj
-1430 0 obj
+1561 0 obj
 <<
 /Type /FontDescriptor
 /FontName /ZEKNPC+CMMI10
@@ -14352,10 +15134,10 @@ endobj
 /StemV 72
 /XHeight 431
 /CharSet (/O/a/alpha/b/c/comma/e/f/g/i/k/l/n/p/period/pi/sigma/slash/t/x/y/z)
-/FontFile 1429 0 R
+/FontFile 1560 0 R
 >>
 endobj
-1431 0 obj
+1562 0 obj
 <<
 /Length1 2006
 /Length2 14999
@@ -14433,7 +15215,7 @@ X騝OK
 Ɔ� �^�}|_���W�|����Iq{�Um���/�N'ꁢz̦��T"y�w@����H��v'P��׶S�L�(��8Ua]|)�0��ӒÝw�"�Y���Ft^�g��T{��\�v���U��D9���B~lM�=�W���b�^���	��;�>SU�3e��BB7f�g6Qk����s�-�b���r��.)�V~<�B�9�A�T�H,������Y��H�.W��|�}c�?s&���s�+;��Ņ/��k�J���V�w�rƆ�Q��r�N�e���+�ܵaFᥛ��X-Y�U4�C1��Q��ԝ��
 endstream
 endobj
-1432 0 obj
+1563 0 obj
 <<
 /Type /FontDescriptor
 /FontName /ZCTCBY+CMMI12
@@ -14446,46 +15228,45 @@ endobj
 /StemV 65
 /XHeight 431
 /CharSet (/A/C/G/K/O/R/U/X/a/alpha/b/c/comma/d/e/eta/f/g/i/j/k/l/m/mu/n/o/p/period/phi/q/r/s/sigma/slash/t/u/v/vector/x/y/z)
-/FontFile 1431 0 R
+/FontFile 1562 0 R
 >>
 endobj
-1433 0 obj
+1564 0 obj
 <<
-/Length1 1385
-/Length2 6193
+/Length1 1400
+/Length2 6370
 /Length3 0
-/Length 7144      
-/Filter /FlateDecode
->>
-stream
-xڍTTTm�&�K���H�Ѝtw�0�3��R�tIJ"�"��J#)�ݥ4��������uΜ���������01h�q��­!�p���$�ih� ?7ć�ĤE8C��q�!�P8L���!`�'F qp������Bb��b ���w��^P[@�P�� �LrpWw��y̿^V6�WTT��W: �q�ڀa���qA�hv��6P��%X%W1ooon��7��^����"�]���b���@~Oƍ��;@=~���vo�;@:��6�2�fq��z*ꀖ+����	���������d�,��J���]\�0(���:C�-Eun�c'������=��|���F~uet�0r�?�yظC]�P�#��,��e����Cx���O��A^����:���0�?�fk�s[OW���"��t����� �A��0�����6<?����B~y�����];�����������wOH�������l�6�b���]������w�>�@H������Y �e�9��
��_]CmSc���;&+��\|� $]Da�K�?�h�������������"��_{�!��q��,�	G���Mrs� ����S�W����U�/��gC������#v�:�� I�@
-@���?�F�ߢՀ�B=]�3���#� �G���W�$���P�>��jC6�)��o�Sj�PD���mAf�@�C���	���@��w�������ه�n�Sw|�B���샋\=��x���<��l��G S�������yA�����um<�ݑ����ٿ�
�<���NO�m�C�C��+eh���%0�ύ���-��
-#�����^�U���U�t��)�v�j~��j
}���)��=�u���)�X��ٽ�D�Qr�Re�Ċ�;Q�ic�?�<����c"�g�n�J�f&{�(�֬��S囗��D
w�u
�=�k�ߩX��]�CVbͣ�43�I|��M� ^���%�m�y���v� A� �sO^���p6��:��k'㮟���mg�[�y������[ǫz���u��'9q�I�����'J#`�d�y?>��c0�\	���k�=���k�:�&pp�:�sZ2y�/��pnl�NThh\}���
�KI<֋�7��y'OH����1�G# �[e��3%c+·F�+F���Iy�`�ӻ�Ϭ���t��.io'��N��yQ������H\�_k���
������ƙ��}�bt���o�r%&2Z��D�r�=B��ݛe"�VT�|=05�G�#Lt����'W8y�ϸ��J�+!�T�"�da�}o�*���Ћ*�wx��ְP�CM���<�q5��?��wKٹƓ�_IM��0�S�S���31���3hG���w��J%��n�����w}���a+΃������/����f
?��x�+�<���r!��z���&�����w͇f
-:S7���~�.��,�+�M�o8���M���� .M�lf\�4�!��=g�Ɋ���1u\\g�S�S�y"_�n+�>T�WR"��$�;c���7ST�38c�U�|�\��!2�!]�>61��R����Cf��P!�*Xɋ�Nf���A�������9@��3�Zol5�Pi_��
��m��/F,ͦk~����
-T˛׬8���
-/(�Wֆc�����h(")��C����p��S�l�܅��`��cy6��0��!4|�KB��0���F*�}��P�.�Oע~D��`�Y=�N"#�l,L�ݕ���e�70�m���i���ju�k��2r���eJy;_9��~-���~��>��;�L����Ѫ-nǫ�$y�A9V��6��-C��TP��g��6���o�18����;��<(H���l�l�ϛ�4�p�V
B�/d24[Ba`�D��bʢз��C������°��'���*%�C�>�Р���N+�Өya����O���D��S�
-(���D���,��y�,��~��%��.J+��j^��Gʫ�ZI�:�:
-k�;A('�f]Lr��Q�ۅG�#���q��p��-c�IJ�	���&H��@qK�ۥ�+�U�}BG��*;�i��!st�%��/�^�M��Z֦&N�T��|}�:&�qLSGz���D��/�}���D�qf9���0��e�1�>?�Y��:�dYl��x���T<y�usta��L���TE�OC��=+/�]��ِ��S�������&U��s�S�V��v���4�Z�|� �J�T�v׳͕ˆ\ʗ!�]��B4ج�*��\I̸"�x{}:�t��(3��$l����}\�e�j�i`=����|Lƺ��o�L�}�pG�+�Z���� �3M6_j���q��i��ք�m�Q�����A/��j�jJ{'\�ڬ�?�W����+g����
������֭��4�lN�w�?t�����h�j��k�ԮU�������SL�ӴK0`�N5�e��"1{�J�W���-�ݕX{�xn��b`��
�כsWIW"Τ��
-|��%�:��0�������^����4KW��y�����U�Mz�Z��ϕ?�~M�U����-Q��Jɵ�o{N-\T�S]�CH��sOy��k~�����U�THH[��sk�glVU��jN)O<$kG<Q
��䚪$����r���Ce�_����f�6u�띦�QH��?%��T�7T�cX�䩭ظh��k50�ۏ�QG,g�p";ׯsϔA����"��pZ�HX�k�,U�} �0��ݎ��c��b%����)���;�eIQ����Yd)��hV�B#��WD-��|�cŊzF���
����"iL,S�Ef���L�3���ˆ.-���1�fP������}�F�7}�uhS�a���2X��_ks���fk�ZRh�}�A��.}�>����_o�>Eggƭ�l;��4v�$:'l��j�b3&E�ݾI��~B`����@��ጹ�P�6�h��f��+؜G��\j�W
-�o�0�31:^|}b-���]��z`I��eݜH�
����j5�F�n��މL�`|�:�+N�^��x�߷�Y�mW������=�|�M�)�Ɂ'w��]6�۪����u[����'0��4Y2�nO�����	�ʒ�'j;��8m���|��ArP[(�f���c֫����5JCMV�='�Lw����.3֧�$&��
�q�nH��6�~�&ޒ��g6w(H�2�x٦�:��;9�C�f耫�^Ï�2E�*W��K���y��Z�
M~u�zt�N؅�DBf��2�pDq�%��Gb�Wo\�Э��\`���#�b���c3t�v�c�88�.?0��Ք;��') ��#�;��䎑�?����ϴ)���~8_��0}�ֺp:1qn�K�t垞Q����ExYx�ۖm�la��wH�h��S�H�Y������ʀj��ұB|�w�ޮ�̋���r;U�>�E�ݭ�8�(���ǃ6��/P�?��ؗ�Q=f���.9�.r9�W	�dzo1�l[���N0b����W�2�JĦQwߔ�}b��_D}�K^5c������x�=Ǥ"�n&����Tk�')�0������t� �[��s�C�5/���-:��b��b*�%�F�b��cC�;����q$R�}�j�(����:�o:�[7�+	��Ѳ��/)���2yUjb42�je��1ǖ�j�ٜ��������w��.,N
7�w}q;~�^�"�P1~��|ߪ+�T�>]y���8�ԭ{�u��
-�x����N�{�.'���=��j��57x��{���2�^O��5lӲ�~gIю�J
-�L��)���)<"r�/Y��}���B/b���̜pZ���6�~��a7� �_�>}����o��cdV�
���W��.#`������J2�f�~o1�JE�k�'��e,�A�H�[L�D�����)M�d����ܚ܄��0�JX�
-���y6ޞ�\%�@�Uq�_������u�b�Kq4��Ea��
��$������vE6�296�NN4q;��Z+�u{����\����WU��.�i��0�a��=�����(}4��ٴx��Ьd� �=��)�=7���C�6D���5�;�Qw��K�q}�ث6ǀ�����D�4=5.�lD���7�@�_����sk��2%�~�'\'��IΊ��G�7���IE�s��Gߤ�'��I?c?vI��I�ˬo̒�>\iѨ[�nV���
ut��42/���ýJr��jv������_����Z��/L�1+}ΐ{���O����?���L�)�wB���P��S���BocB̎�}���G�5*����H�!f��*S�5��&�2�D�I��
-�܎�__�Z)�����U/��k=}uV���ƥ�̃�h0��v�~�]�`;=�{�0��U����m�T�L8�y�	��A��%1:З>�ń���Ί/?%'�]k� ��r���8D������V}�_�d�rÑ8;w�4)�:c]�H�u8�Sʔf�Q��]�2:3������hR�xm�1�vogf�ˬ�5}`��Bv�B��)x�Q0�+�;OR/�Kt��M�Ţo�-Խ
-Q�YkI�\�"���d�⛮e?n����UM���O6�W*u�_�n]�/�i�[֟y���|rj�`@�x��{x�t�jX��h���د�q<Ͼo�~L49�F���i�z ������8&�5�u$N睁�	.��X�qUI�Y���K����ҙ���}�J�,�8;ꎔۧD�6t%���k�������y��g��<s��
W�F�F������7|�.��(Zf/;�F���]���χSe��4�4/�e�p�"�|�rcKe �ҙV���5֜ɫ c�v�ѓ/���<O���KǙH����m��L�5�c��L�b�"i�����-Z����kⵙb	Jf� �w
.[낺��^n�a3�5��czh*;(Wf��l�R�G3�|#�E�UQ�s�L/DM� �a�kw�t7�IDB�o�C1��ǻ��f����
ވ��� �`�����h��Ǭ��9�8�<[�<A�ۣan#�Y�(<O���ē���Jm$��2.D<�Ԝ��<����J�QS;��,z�%q���X����&�������3
-���\�������E�Y�+�az`��#�+NQnϗlY�+vQ.��+�**Bڍ�Zcwn׹V�>�t�Hx�򁧲(������S�H�˝p_BK�	Eu�U
^��1l��I��C�%����Y-+>JƇ�Z%Xm�2
-h���ߧ�d���E
-4HT�Qo�OmYr��~�#vb�`��-M.[��p��T�p���;`G��H&{Mޫ��I�q��r4>g�����t��^��3yHa�I^R���I&��zd���ӂ����������5�m1�s���4���{��.���|33d>2�~����s;�����=���
-���!�,��ƃZ��j���Ā�.z�g�W�\G͎�Ԝ�bRt0���F�MR�^eT����*[+K2�����W�-g���Tu��ձ*���_z�Ǘ�U>M���O�ݒ�s�~����9d��w��UX�5V��O��V�wr���W�����X��s��.l�"e"e���r�~�:'��xG���Ї��غ�IЉ���գ"����X�
�8����H�얋m��Qv��vG,W�!���:8����*����K��9�G���ŗVA?�����QW�ts)��4�4yā�o9�_�8����f_�v�Hs��4�4 *M~~�2�ɓ�E?��Gw"]S
p��;(�f]R��‘s�o����<�\1ɢ����N�u�=�`��EC��F�U�#]����K���j��f*�ʡh^(�Sj����|��ƽ�;�3�?���#q=��y�?g���P��Ȉ�ɫSv�~�˜��q���%,A�ז��=�x��Aэ�oS�~�K�w9�?z�X,x� ����(ơ���"�c�:������<I4��TcO(4�����.՝�0\'8%�q$"!��{�9+/{O�>�g3]_r�i%�.���W�0�A�ʨ����
-�>ن��f25����	�š;<������I�	w�h�|cJ���a��Ϲh"�:��4P�}8{WP2��jhǕ�-�i&�R'q��mQ��?F���b��Eǡ0|��'�d���2ٴ�ƖOh�<lC�
-����J��`E*��co�>J�y�3�H���I����1�0��
�ޭ�9���%��}=�[�8•����z�=e̓����s�|�]:��^����u��u̮�Ĩ�(�^���UՂ-���8G��
��UP8w}/v���ى�Ƃ�Т=+��
��1�(��##,��Rϔ�v/DϒJS8H��:
Q�8lpK��+~�q�k�$���!;�����b�M>���p-�?oUv����%r?�+��������A]�*�CA��1�Bʑ(��.`U�]����
-|Mf¤7��=�N�m����:ƥm�������3�e�����QC���O,?{�8���T�#SNq���Hr�Q8��}�y��S�$t�4�[�j���I�C�nT�Hb��e|e%4o�s<��j��R|0/��gf���a��C�#����n�;�݂rE�y������r�	��mx�iF��˙^�n]<�$<�d1dN��d���Ԕ�6��ۘ�u�酬�4֙���������@F��_H諸�Ѣ_-=SK�S��"���r+v��h�5;JNJ�$l1��"/m@F����4����qq-H��3��V��)͙��Oo�ܾ�y����nԥ��J��8$Km��_*�2�%�*����QL��-�,������핹�.�����YY���n��s�Ȍ�H��/�U���q}L�����2Rz��-�,�{<��f�d��R�6�_��U�����_�߽z����1�1��)���]y���~��%߅���]�{��I����տ_�ܐ^5�u��������U��1��
-h�R�h<H<�'�Q��I+��s��
-endstream
-endobj
-1434 0 obj
+/Length 7325      
+/Filter /FlateDecode
+>>
+stream
+xڍtTT��6)]JI@��S�I`�A�!�A��i�iTI鐔�P�?ƽ���߷���Y���{?{�{��y#����
�
+���9y�x�*��?6#�>����f4��A`P��x�
+�>y�ӀAUwG�������xxD����� �
��� `7l��0goW��=q̿^kV�WTT��w: �v�X���nvB�h
r�`�0��%X$��pg1nnOOO.����N������]���l��9��Lƅ���C����`�pO�+@8!�`�"�jv�z*ꀖ3�������������f�*��NY[Ü�APo���8�-Eu.���Am~A�n0D>�qY!��;��:�1���ܬ]!�p7.7����Aܲ��1��	��a��O�
+�F\�7���>��<��
[����6���P��;XE�/�����yD��Ex��������U^���;��ˍ������"���Cl��?l_7������}�w��6//`��V`;�?�n���|W�`ʃ�/�����7s�l`PG����[W^]�D�����������_~a��O�AWQ@����*� ��.x������<�E\ӿ:��K����`�YL�`-`���xy���o��N��1�W�����!EwG��a����#r�8z� H�G@�����F�?����@ܝ�;�!� �C���W��G�����hC���(��o�Kj�(X���mAd���W�/�g����B 7������#���>��0�_��@�� ol��� �ˋ�
��7�n.(�H3��0W�_k���!�|M!�����c��]]}�f��ٿ�{���g�`��!5!�U�������O�8�,0��
+cOW��^��S{�8�ūh��QS��"{q���Z-m���'���U����D��9�A#R�Q��X�k7�6u4�',i�n=F?�ΙdO&ⷊª���>U�}�NJ%j��M�dէ�.���9�S|�j�Yd�f&��ćK�$�J�����y�.����A�G���D
+�}T����y�79����}�����t�.��]�h�د��ӱ�te7�wa��+%=�̍�O�J���h6U]$���(
D��'��@y����u,f]��}�=��t��@�����Ȑ��� -�[��x���o�*�O�E����G�����7�1]�J'V��$W��%���@Lg�wb���S
+{.�D�vv��Mu�d��,|}�7�lf$��Ok����;0�Y��Q��0���ltT �7_����?&�r:�����m,�NT���5 -�g�StT�����X�'�\L8��U�=�n�N��?�<
+A*?�"Ki����PQ����)�Z�>��F��bo+;ֺ�)��uc%}J|��Iv�f�D�r0��ij+�����p��I�R���q�����U�aɼ2ŗ�;�_����|�/�4���|)��~�k�[Q��:@�)Zd|����w�UȈ&4~z�6~�L��U.+.f�@��¾#��te_m����6��������"���K��o��B)�^�7�1�����U�t�4Us?��(e	~�T��OL�~��k���F��"�W�R�`��U9tXa�s�FZX���a.Pc�Ck]物F{����/`���W�-�r˹`�}��&���,�E+��d��#���Z#�|���IOB~�r��QXo����d��gq>�7Ƒ�7��!�SL�n�x �}��P�.R@Ӧ~Lʢ`�[�v	'��z����J7��2��֑��T��xXO���D��:5՝
+؏��Y��<K���~��i\b��{�k]�
g��e�j����Q�ve`������d���*��x��:�F�7�A��h�88��ěR>*Lx<��y�q�?�nd�¥�lW�hh��DG��W���T��v�	��ZD�z[8���,n�V����� 	!��M���wT6�xA�恑�?�'l&��:*��4ۿ�j_�ٶ��T�gP=q�[��T�=�v����:#���ZIC{:�]Eu;�<H�
�=��M�#�v���=�r��pB�+guǰ�����K��DrIG�#ۯx�U�cJG��2'�qe@�)*������Ta-+�g���5|�:ƃq�3�z����˯<���J�E	�r����e8{��g�/|qv�Q�q|3̼ܼ�6�޵#��d������2��"į���܏��g���H6a��g�g�n����O�4������܉�R�W����C��/�R)�����Z
�h�#{��۳�+D��"#�Bh�ϓD��%0�E�5d���4U
+K�4F:]�Q��f�S�;h��P_L�Z��,�+4�wc9���̿4:�Dc��`�9�dz� =��fGsd��EIk����ږڲ�)��+���ա}���Y,�H�GN�F������/�[�E�f�{�]xm��u��ZwZ�?|;ɴ�-%}�fns�P���
�f�C���1�L���d�����I�;M��]b6��ׅR��\U2��H{�DC����D�t��6��[��A�27�Ӧj�X�=p?�:�u�,X���8�G�6n�#{���u��'J�_+9�
�,���
+����7Hq�'���9u�S�Z�Jw$�����e����P{���M�n��0q��qK�g�ez^:�PM��ū�����1��[���R�I���K���3�j��]q�Un^�p�ܷ�D��#���?���۽oB'oz��q�^k8�z,,�3^���1�Vz[�jK����;�1�y�r�
+���
+�h[QI��0%�(��]	!UF�7�Q�d��c_�d��S�C�Du6}�{����|P��$,G8�?c�2���Hh�O�Ԡ)%i�h�v���^nY�/}�
$������\N��r�?xK�(4ݽr#{�!s�6���s�`�>Cckʥ�l3��S����螲��{�U��!)���m�5�s<�vk�^Rp�5�LI*�\��Z���_\p�0d}��{�ը��/`0`lt����JH���nC��h"(���[�
_յ�ͮk�`�[�S����`u5>�Z��
�f��
��;�8c�m�},|U-��7����nf���6�;�7Pu�=�H�������ԴO����a�n����8��8k���t��FtXW �f���kگ�E�;6�
���u�3����Fk�ȯ27f�%�F�
�:[5%	��k��x���%��N�	Ҵ
�_uh�����MO�=H7��VG-���<G��P��O���|��J�%eAM�FT=�n襅DBV��7��8(���9��Kb�[oR��e��B`���-�|���m+d�n�}�0(��  ��݄+}�+�?�=����������{����3�y݃0��1�Q�B�
�8|��D�<��5#�tw���6��̧#�<vi��p�h�ij�����V��?�5��&�p
�z�μ(B}����r>��f����D�/7�h��@�߼��>�z�V	�LrU�j��$'��h>�lS����7f��=�0���j��Qo0ߌ�]b�
+�oxC�S~
C�����x�}��b�^Fܬ�o�iV4�Sa>��5�&N��"lwN+�G��6�]e�4�!��)b*6��FS�b��#��E!��H�$��}�<��-�P�ho��ڛ��
�������@W�+��p���Ն�h�tXiZ9(�L1�kڣ��֧,*���Ta
`��Ӳ���'_�L�n.oc&/;k^�*�Or^X�$�H��T��h��<p�]xS%���!�]�y<��*��
+br����,^{�#h����>���Ln���a����{�N\���4���������#&Oq������|z�D��=k�ٚ�����W���3M2������ی�fH{,nc󪬘�>�d��������U��Y���K�W+����>�\�`�ļ�F'I4��x�ڒ��O\5_YbťɅ���~=�l�e�����{���u�)�B���Q��+�m��f�{S]@z$:�ˈ�JB�<��C��H����i6������%>.���m'�0ޏ�>���yZ����};g�6��};N�db:+��22/98�n��fy��L�b��qd�ϙ��a�g9��{�/y5��ew8��%�WA�H4M�S��ȁ��yR���l��XQ��+Q
+<�<=N;�V��?Ҽ5�	�O*v�[�?=�.#<e���3��S=:e�.���|��*s�F���n�����`����}yl��AW��p<\oP��Ǵ\M��y�+{d��:�4�Ϥ�9�q6��>	z�w�߂4���w�X?�z;B���TZ'�d=��w��>�H�Q)���� l�t9�2~P˶h�+kH0��J�������űB���wh�rqg�֋��P:VNen4�!W�[�#��{�ٙ=���슻#�}���N�0�����K&}��+b4<_\��G�J9*�����8W���@۫!��`��CKo�Z�]A��Y�Mœ�y6�i�7�z������Sg4Ïۯ�q��|Ceⰵ�9�O���2D��cͭ��V�g�֙�
]J���?
��V��<�᪦T7)>vJ�em�O��u�*�z[���
+�ޣG#+�r#�q�����z��D����J���f|��v)O=۶�Y���YK&*Zvs��ɳC�3â��A�̫�E�XS���+^N����{֟�r����7p��8�����;
'ե1�	��W����2Y�)?�@�]#a��ʉ�'��)�UI19��f7|bx�G>h=���4��ҫ�Zר���@Y[]�l+�V€�#��I��4�U���	mX�ӑ�}g��0���&��֥���L����B.�it�=:��T�_c�=
+3�m��>�"WQ���E�L��d'^�����,_S<��h��!� ���DW��ۦ�_>�!\�+� c�	�B��ar�1N�+;���3H?gGfr�dw���d�5��6�۴Y58&L���T���6{���"��'�$�ٗ`Y<�%r�ρo
+�F���
��	�&Bc��j_|��p‚+���u�-��i���3��1"��BJ:E���,d"Oj3AG�a)����,��7�
N�V�����|Vq���g�k�b5�mnsq�Ƀ�籤��q�8�._���D5���\�Փ�yD^=����r��zp�6��i�k~�IEEH����f�N�s��4��G����U�I��4���Պ�8�����l���VTgX���ۜ���W�J��*�..��kY�1H7|h�`���,��;�mL�I�X�h-��B�ئ�ٶ�x��%vj�d��%C"WeOw�z�X�6���"�P/�X_�ߝ������y~����yk��=�)&������0��,8�����@�9M�	������E+»�����/)w�,��ea:�
n���{�&��'�.�V-�(6#��*�O�U?5G��lX���3���5��f�&r~\�����ǀi׌p�$*t��@�:���_d�zy�	�,d�m;��>^JS�d���l<�#;�£W�4���9[~���+o��Ќ�T�s=�aROQ�DY� �kI���+R^!|����b���N��bee�Յr�A�:űx{���χ�֘��i�S�}d;˧��
[1>��q��].m�B�m'��㜺c�ǘ]1�}P�d�ү�Ȟd+?�P�[�/�f<?k�^,���������J��G��@����-\�ϥ���n���m���r���@������AYr�5�w��dZ>ͩXTm
��OuXd������Q���a�ED�b�y�{v�1�x��;:�<
��C�>ˊ��S���M��֭4�}�,P~��H��Q>Kd��ٜͮtʣ�o7["��X��$>i���b#���glJ��W��q����+�|o,�E��q�3l���ޥn�,���q�{��\���/���� ʮ���<�k�&������"Q��Lc_($�����6ٕ3E����<��I�=��:?gG��ƽ�f ����@�P�l�m� �Yd�LPX���\Sp�y+��bc
+PT{�WN~�U;�?�5�OtY�	�P5��2������=r�7G�*R։�}-�ä�M�.��PQ�t3���
�)����ؘ����%qHt_�)&I���)0��̣0�Z�.���wB"фl$y3�0"��*07a����:��$��$P:i�>k���c�Uq�/���罙�O��cK}W�b9����ƅO���;~�t�,�
++DM�=��|r��,1n9d:�zT�a��y����C�(���U߃
#�<St~���p/�xߒ�e�y}�3R2��C�Q�T��ޥ���of��@�nAC�<vk���V�ʟ8쮚G'��gOH�WM�Zr�A�AƟy�ڇ8�7J���+;�~e�q�XE]F��e�mP?��k_�f���l���k�X��P!xD��[��2�L�zj+�Uϰ���0|�G~|��
3��1��l�H&�F��gG9ÇI�޲���D���C���pR2���ڂC�LB_�d_R8�}PM�`\|��M�r���߬3���ƣ��vH�F��������:�H��w�e+���t%Ը扸���o/)��*\�a�Y�0P��nT0f�i_>��?�d6dJ��d�Ö^jF�m����	_?�܋K9�Y�s�s+��x	Q���>��qE��e�:Zƶ�go��Ϊ�-7�����
�������d��!�ǟ���(f��������Q(�wBx/��kϵ�`X/��ct�����"����Y�W�.���ٚ��j��z���{&G��,&Fn�	�a�������V�ESj�x}H� ��|�{)��r�՗��`@��
�y`�-Y�g���_�*ir�n��r͉��5�:�I(�ox��vj�O�J��~@�Nd�X�_p�'�:��.�}G)�Cf���BJ��-p������#Vk�R��[�=[L�9ٯ�qB�X}┴����1oO(.]�6�1�$9�\�Րp�ґ?Ǘd�Fy]A�%���a~b���L��@�o��Bx�G��M?��e��HW����Rf�
�������O���JLݳ��.\�v�o1�T�4�J<����C��Պ:ʫ�'#1k�RИ��۶�K
be��PоAw��%�������4���jf6
+endstream
+endobj
+1565 0 obj
 <<
 /Type /FontDescriptor
-/FontName /RVPZIX+CMMI5
+/FontName /RDLHZT+CMMI5
 /Flags 4
 /FontBBox [37 -250 1349 750]
 /Ascent 694
@@ -14494,11 +15275,11 @@ endobj
 /ItalicAngle -14
 /StemV 90
 /XHeight 431
-/CharSet (/i)
-/FontFile 1433 0 R
+/CharSet (/i/j)
+/FontFile 1564 0 R
 >>
 endobj
-1435 0 obj
+1566 0 obj
 <<
 /Length1 1462
 /Length2 7099
@@ -14540,7 +15321,7 @@ WZ
 2q��3��&S�2X���`�i�Q�	�Tˍ�ֆ3��9�L���|���I7-F��{�����`���w^��1��d�o���V��
 endstream
 endobj
-1436 0 obj
+1567 0 obj
 <<
 /Type /FontDescriptor
 /FontName /GMGWMG+CMMI6
@@ -14553,44 +15334,59 @@ endobj
 /StemV 85
 /XHeight 431
 /CharSet (/T/alpha/d/e/j/t)
-/FontFile 1435 0 R
+/FontFile 1566 0 R
 >>
 endobj
-1437 0 obj
+1568 0 obj
 <<
-/Length1 1506
-/Length2 7635
+/Length1 1555
+/Length2 8082
 /Length3 0
-/Length 8654      
-/Filter /FlateDecode
->>
-stream
-xڍtT�m�5)!�)C34�4HwJ0�3�� �4H�twIH�t* �� !%)���������-��}�>�>������Z�<26+�"����r���"�H����`H'�_a\�������A�
-A���!�;�:P�p��`aq��8����ED���!�0�:/@����.>n0;{��k��`������D��d��n0k�A�C���h
q�"�aP��?Z�K�#�.�||^^^�gw^���$7����@ݡn�P�/��
�3�2^\ @���'���EzAܠ����
-w�����@��w/�*�4]��?d�?n�_g������_�`���kk�����laNP���/��
��m~!Nz�'���#��P��@��%���
�t�u�9�������)+�m���P8���|�07��ݱ����YG8������ml���p�Ӈ�\=���Q�B���H�HTD@��u@����~���q��N����� \��w"�0[��?\?w�'�t���g������+���w��0����|7�7�t�=0�����Ofw��A��|����_>e}-��\�;'+����<�B �,��=�������K����gڻc��Ğ����������εP���&7	���~��g��.��9�W�����=������4������8Ü|�"ܙ�y��ꈻ5��7��giա60���*#!w� ��33X�$�'sW�yCm�`Hk�?�����jN08T���m����+w�_֎w��;_�IA��
��a��:�s�5�����	 nnܻ��CB�?�݂�@�;��G �J�w���7�_�,*������D�|��_�������������9�
���7�ܝ ����޿�?Y{���)���;��¿�*P�7�w~a�0ġ>���V�֋gm\s/�̈�g��٧0i�������Z�8�V4w�Ґu={�e��o����G���A��U���	�t��)�aJ�a����>-�h�n)�>] �?[���D/V�RE��v�����,5
-:1��d�ՠޚ�1[Ίs��o1���L���	^5D_�?�ҿ�R�^�g	C+<��Ī1��Op�S⹝A�g��TV��d�#�4~-��p#0�f�y�źG�Þg��WY2�!��„.Y�ڣ�k?ꎂ>�3�S��k��ؗ~�`��P�DW��[A��_�{�{�g��2����2V��஍�����c�5b�I2)��.q�v�(*�n�ɍ�
�Tc�'U���T� P�����Q��|u���B�{/�Z��Ĵ0�u��;���ۘ�T^/U)���^�Z|�|j�Ȑ��y�pJVu�?7�e��Kw������J���5Et�m�Iv�Oϕ�5|9�H�fK���ܟ(k�d�"YCw}�G�3��S�%0�+v`�D��񐻿PM�W�@1��0�AM���+�,ܿ���[#-�Bq��^�r���ȄG)]�V˕�9ؙ~ʗ(����:�x���1�ʟ��������`�hmVDeKH�Me�i��%?�w_�jA>��|��������#b���WV��L�WO��jE�YO��^�Ӱ�ݬOxҝ]�Y$��]�	,<+�Yl�#�e{g��
���uk�!q�L�_.p(�!.�bpY�΋�k�V��us��fvxIP��ŽN���/��"�����;����G�n������ڙn���P�Q��g,�.1�L-�4B�SPD�Q����F��-5�h.��%��ͭ��?;,�
��K��#!Lj!KV�����ޚcZ��ϻ���H^��	�7!�B�"��r~(��η0cy�������M7�m��t[YO�ᐖ7�ݾ��lګ)#����kNQ�LX�^���'F�bڞh6�7"r&e��Y�͘��QY�WQ��|@���P.%	Z3YGN^��e��%^�����7�
u3v��v(,C-��^
�Y)3-0�8�����
g6�zG�}}<�W�o�IJ�e��D��,��:B���k��-��jӓ��ך�MSg���@ج���+2����0Rݯ��~���:�1?��ș=�~$��|K*N���I��U��������s��Gd�@����s�s�3�-�o�1��֨��nw�m	�i�4;AIM���`�C����:J�b\t9rW
-r�)K�����<��1�R]L��n_�^��߷��؂A8�P��pya��
<�s?���
8DK�Z�~�\�M�ٶ�N�/��Kվ,���N�T���QQJ���:��*�0ʯ��$��~���{��E�N��	��r�Ǥ]F��
-�{���FH���N��V�~������A��s��J֙Ӹ7�MI����5�[ OqbX���I7��<CNx2�c��:
��C(�+=zfǶ�
է�Gp���t�{^�2��vT���X���x
����~����ԓA#9�H>�8�}G��	1E��^ ��Z���/�]�"%mC_���\֤�+‘����cKb#+�v|3��M�6�œgl��Y4���)��Y'J r�v�0�J�L!LjP(��~��ئ���B��J`U�{4*�Z�)��d���[�V��\Bދh>���2dK��hV�["em���u��΢�16�̜���mSd>�-C��%�j
�P:�H,ۢO:#i��f���k=.~<:-(�B)��$]�������6�����tV�n���/�_�F���@��w8"�o��U���NnqU8��������2��)�;B�x[��?ɘ��)BQ��
/Gz�C� K���ޠM	�	���оVU8�E��um�B�j;e0}O��^g�y�*,�CL�w��Q�∋�=Ѩ���K��O�a䛼�)˯�W��R�V�Z�(�W�����q���'a����h���kƤֈ�\7~	���ɞ��-�e����U�����NIe�|�t��O�/�<���6��._K&DNkNVzy2����87cc:D�����s˔�ٴ	��~�mT�x�q�'_a�(�����2����Gh��9�:����o�CT5��g��;���U�ž~�l�����Z��A�Cj9̞�׍���iIBO�cs,����]2w<��I�Sk���mГ�9�7V��.un�v!4R��It=L��^X�M�}���Q1�:pF�1&�eW
-g$߄��?��G�>�����Ob����Wl
cO;��F�]�
����x0F�F��8#����	��uN���7�����.Ry�h�H5�l����4��NA=z���V;�� �…U�D���6B���U�A
-F�:��7�����j�ٵ��<ߊb�[�9v�����K��#��jԓQ��2�$�9�ǻ�{��/���ذ6���|�(��K�����s�h��[�3Ze^�)V��;�
-5��#�KZ<�>��'Ik�hF77�B�;9%G���փ�m�6E줏\\{���<�7�w�+���A�z�Ċc�Tv;�#G��_���CYr'���8��)vS<��O؄2�G7��%F�+-u�ωd���f#�����#��k|>Զf��[�g���k�	�A�=(��O���-�n0�nN����+f>1<�����q��:󨆈2#5�k]��0?���~I~N�RW3�&y���˪��7��>��~�]ž�Q��w�9��U���𞽗��%\Z�w&}�`As������lR�̈b�UPG���ѽs�Z�vk��U��9���>e`-zNQ}�*ɴYK��4��M���0� ����co]$�Ƥsw�/��8�jc9��"�����Д�DTe҅�n%��I��$�W�H��*]�٨c���B�Ak���)��ӛ��`u���9l�l ��?r�%�ƺ�20qY�¾{ɾ����ajxW����Ç����_!0VG6P�^ZS�^�^��q�Q�uxNँ�Z��h@��j,p�Lx̩@���^n����Ӏ�=Kw�o�/-71L'���o6Gv;W?~H���m�����\�΁�P�Τ��+��4U�+W��V����U��ހ�!Z��10�/(q�@�,u�-r��C}m�Q�鲊���ԗD�9�u��V�<7��:3_f-&�|��Gז0\�M�s E��[����N�q9/Ъ��"�f����$��2�Z�p�&��8b�y�i�~D�86~�,��Lk蚅u5�N,Q&��I���L}��U��a���y�+�:cED�e���;n~d2��xh���<~�0jx�T�P��פ'hݦ~�m��<.�C��BC�߫��j����R���k��Ч0�����WQ-��t���wnW��������IE�QܡJu¼�Yq~<c�%NA�ؼ�sE��Dt�}�	sY��=GݖM��e4��ik�B��g��
�V5U{+j�
�^X�uM#(�����r%l�!���=������)�i�����7|����hp��~P%0�`���bU��3�����2W?~�CK�G1��~P/���db�Ň~ g��+��=����s5h�����dUd.231�����§�X5C2��f��9.t�^���ΐ�i�O+vቁ�yk�q��\�O����_Y���0�[��I��v�_b�b�浡�[�||2}�3/����xγ�N�.~�n�/��~!��Z�Ι�������E��ykc�C�d„�����+M���o�Q��Ӻ�=};c����ݍ�Xݷt)�K��cd�7`�����EF��j{�L}�b5,�����U��KX�;�*�+־E���up�$�����(�h�T]�ݣ�azt�**��+@y���|��w[��)�e�z��o���+�h���*?	������=�,M��}�d�����9gB���7��~̇Gc=�$r���+���_W��Z���ϝ��3�|^K.}a~?�Ƿ-'���LhbP|[�N�}���(�V�i�B*��d_�sX�M��]@��HmNN��i�ʫ����=��sx<��v��>�2a"��J��$���$o�󚫧�[~�9������*l�q}m��T�ޱr7�#��Z*�r�>���K/m&���E�x���U�v���Ѓ�8�>�‰�I���x��XYY���%�1޵RF�H둶x��+z2���_�++��}X\��؏�"�B�N��+����„���k{!�E106_��L�]�s�>S��:�?=�+z~dZAJ�I�/.�s1�]�~}v1Yj�:
8�{I��,B�B����EsQ{%�����!ա8Ag.��p����������̭Qj���5QKd�%����c2��Â����4�(����5]�b���EiKX9���*sc�p����
-�6�>y�1�Ҳ�{9_�-���غ����tL#�f���zNTJ$��0�F�m��+�v��	� +��]��.1H@؞�Z�>,|��GK�}:�9_t�pp#Щ4��������p��U1m$�pߗ"mI�c⒟4zo�m���,4�N�a�0���8ġ��]/�H�|�����R��D4�icp�PC�=�H_��K�e[���b�H		g��\�s���]H`�����u'oXP���ڣ>�cJ,��|�1P5�I􍅁Hb%�0�s����TkߥʊG)�"&��p���L48b��9���q��X7|��#f����w��{17[�M�`���c�|i"���W�“3n8��?�=|H�vB��/pS����q����J���$օ�.��Z��I�X-��ܥZ]XyoC�{�Qڇ[p����]˘�|%;�z����ϊݜ�d��˙IU
-�Q��<xI�/�Z�y
��ɟm�t���~�I�4$����C;��+עj��<$��Sg��@�U��WL�K?����H��HW��sj%��=�S��iD6�[���u�a��p۫�j�\[ތ*��Siѧ�IL7O&���Ʌ�f�2�N
-�����R�<h�Ü��%j���m�徵'��?�N9=Kz�:�2�a�G��K����9����5��qe��&lk��6�MKI�Ǿ@�h����\��w�y5�̀m�0�j��;�n&Pp�yx?���b�"^O�����}|��A�WJ-K[2���n]�͕.ȏ�s�>�>&�t;9��8ܩ�K�҉�ܸNd�Y[�Xb����:����&�jO��
-�m��z��&M�I�r��a�k�,}L�:���!�(��ϯ�2��9v��M�a.m<G���2���Hh
-z�S|;t�s��������#m{��M���]e�����
-���F�"t((���t�k�J2�w���W�zl��G�w�H;�5x@Mj�D�y�j��"��s7��:j+Mj���h_t�@�DQ��[�T\�]��lsq�Q�6uW�t.��f�M�ȎD>��D\�I�PfHҢ�=����ǧ���5M�J��ad�N�;��I�N�38u|�o�s2�I�t�⪯��&�� �gR=���D(�d����0nn�4L7�L���*�|Q���cB�͏�Zj,D麖[�'̋4�-FZ�5�7L��$]�V\WQ�D�͚N��IT���j�^�|o:r��C������Z�J�ǫ��Qc	�A��n��1�7f��rvPJ���1�yrHW=�w���k񜶼z��4� wL���N�޸�h�W]�aj+[Yt5��B��wt��YI��ɳJ�>6������pE\��yk�y���m�d��i��o[�a�
�E�E9�E�o�8R.xDP�S�R'�L���@G��DSG�V�KjP���.�h̶��>���T�`�����В����Zq	muʞ�k��D���o��	�H���Y����ҍ�U@w�#U[P͏�.s��$d�o�{*F3
-�B/0�Rl�No�ڣ_Z]Mt�϶Q���~�\oC
��ښ��%�QΣr0|�a�m
,E�G[�.12A�B;��ãIqSy�8[����c�4��|oC�d��s��X�q���%v�EhJ�5��5�n�8��?�h���.��Ak�׆#��KH��M�f�1�!4�[c�+\Ȩ��f~L1��f6!E�8��G�2W���K����y֕�P�PFYw;���U=
�j�;�n���cm���I��(�4�Z����ʫ����v�`6:T|�=T���ݦ���G���N-)9���lB=��}]�Z]ۮG/I���i�n�bZj�|�M�xf)O��K泆w�F�$p��f�cW(/�f����$M����B[��C3�
-�bl���;J��^{wK�]����[�'�R/NYkav<�Yi�h�AO)���k��t�RU ��uj�b9��7��D���"��*6���<��wE��>�Tg��:�в�2���{r}x�E����f���nժ�P�>��A�LJ�L��SU{�֊�/�t{DRM��PЫ��S7�1��ޡa�/��-m�d��=�HvPz���Y^)nq����^Bwb2Ř�B�W����x�����%�ލq����vS�2yE�ǫZ钨v.�҈�5d��:hf0O����,�!s�Q�}���
ѽ�Tن�Յ
���	���QF�K���O!�7DTF��� �I�O��S����<hb�[��c�.5�["k�o��/�7I���E��D��"r�R���O�_q�����ҩAcV����Jc�6Ə�O?�L�L���L7�s>�'N�_%θ�Sf��]O
-t�n1W6�<���L����s!�;NMJ��	��zG�C��N��4Z��%��'K��s�Y�&��j7%oι�t?0
��-��x���ٞ5��|+��/��%xb'���ܧ�L1��k����q�����R�ѹ]z����Ozr�����>Fnnp�7��<ƛ���y��S�̔.�/��,��.��;���{�BjYxBLrd��
ګi�Y�pj��M��h}��;zݩ�t�Ee�bdb7�m/��J$������vM������a^N���
�qՐN��cΒe;��[�������M�&��{���ʄt�%��P�d���cp��a���fQ�q��2r��/�_jvo�b=߼�i�E�f���0�6'wq�s�~O��=M�R���n�/=q�Z�2���M�V�>��0w�.�+]�
5cei�f���R��Eo�-VAH������yY�����pd�RM�vj�����Y�{����5'w�lἂY�R���Jhۊ���u�̋w
n�
-(���s�?���JO��Ib�P�Q�������-���x�8�Ɨ����=m#�n��@��L#��yJ�L�`|�~+��0~G���TN��=4]+����%2�`�g�Ql�D��n��Q���C����/�%|*��Q6���2F�͉'*+w�*n�Uw���@�e��ctq�]�w��B��x>')�m[���i[@@[M��3e��)�%1��m�.�ӫ��4�6;�*�J�8t>�|#I*�D��h�RT6�������
-���2�CzKlj�\�PK�ƚ���ۆn��˃��������#�}��J�b��� z�q�m�2N���-���ݳ�
-endstream
-endobj
-1438 0 obj
+/Length 9121      
+/Filter /FlateDecode
+>>
+stream
+xڍ�T�[6LJ�H��1twHw)51����H��t	H��4(Ҡ����t|��}�9����}k�zf_w�;�{3�h�pH[:Z@ap '�@VMMI������̓�����C�c2�C\\��0�Ⱥ@@���`��(�������PP�����-�CG��j	P�(;� ����N^.Pk��5�9��,���� �ow���
+��j �
���F0����B�^�
+�,f�;�pqyxxp�\9]�%X�P�
@�
+qq�X~P9@�TƉ��е�����8Z�=@.���
+��\<�`�����%U����X��;�����������W (�3vtp���0k���PP�{�� ��/C����?��Y<��P���
+��<W��	���
+��U"ׯ0]��Y�::8@`pW�_��A] ���{q����������,�~a��ĥ�:�A���2ya�-�����B��B<��3��	���^��	�[	�%~������	`�P�jy���q�C�p7���?�F�@ �
+�, �P�����?�a�.PO���ܿ~�=�<���f������ri*��H������:GO�����
������߿�h��e�����������C�����_`�k9X������Z��o�s�s�>��g��v��c��(�7��oB
+n����̿��5�j����i��������55��YZ5�%����Jp��"Hì�������#��*@=!��P8��e���~��=�tt��z[����G��_`�������T ׇe���/yX��!;Z��;~�����0���>,�%��7�\�0G���f?����1��t�~#aA���W~\���<�.�@^���? ?��(���p��
���/�P:=������.W{����><>���:�vsqyh�o�>��?��3�xB���3�`�PۆЎ�:i
+��q1ԃ�C��bStx����j�Nn΂J��|P�Զ[]��"������F/�3j�����3�g�S)>甴3x-i2OE^��#hR�<~�!iiݯÀ����;���HX� �֡����,G��RXoM�j1���Jʔ���-�8*]=�VE��3٣������~��� e���C�p8��� �Z��R!�M�k�ݬ'>�2�X^L���%nd��D�;l�m�����V��H	m��s�1�����M�IВ�)��0)rУ���C���{���:�)k��*qzk��:W0��i�,��O<M��p-��h+��b�����!�e�
+��^�/u��%��ֻ��t-I$�XI�dn�>�
2H~���rDJ��͵=2�#l��D��~K�edUT�qji��Qu�\-��Oq�g�����u�.��9a�eΫ(�6f�$W����Y�FϚ��7Ev�l�K�s��++�~��|"]�)����4k��)�����s�.Ɣ�O�$��:�H葁=�A�(��bU�>M3��8^�����<nah�o�����Ԛ��"L����Ė{���Ӻq,�pW���ѳ�|�������?����H�bk��b��	}q��@�-mFǪ���˪
+�̐�e�Wo�bQ!�Wp!�Ou�N������a�M�oZכ�'µ�����Zh�D�Hw��7\f)<H>ה����#_�F��s2��';
+E���w����>����=�C�[ӿ����_t���w����΍x�� _ViM���Û������g�^�uƤx^�=��7�'�֦��qJy�Ea�M���e��g��4A=D~�6=s�e���D���>s�.�_��s�ER>!BI%|�r}�+��5�3G��A���-{��Hugh@�BI���!Q�e5��kP����Mf����h���}U�mF��V�v�M��GSV
�5*F�
ڜ�&���5�8����Z�H��w[��/��s�Lh-R��9`��h�[.�y����oZ�GΚ;�r^��\#���@n4zGӍ��م+�
+1+��t�(�.��;ه��v����3��%�ؽ=���)�g% �1�x���$��6R��r�����1d���3��f�¦����)��Y!o�<B����p���Cf�	Nm�؟�7Dtn�?^��|K-M�i�OϤF��B�=w������CPSt��`-�8�|�B�x\vF�t��Z��F:/�b�}][�o�&���GDIBڃ��,K�LLd��aU��ӌc)e9�ɸ��>.�*�㡕��]
+�g��8�Յ]��m�qϽS�%,��p��6
+_�,�X��*�g�2�!��G<iǪ ���3UCŗ��G�Y:�X����y�3(J��a����ƻy��҃Ȱ)�p~Y
+���������ȱY�Lw�S�R>�H	\������*�#�ob�՞c|��Ҏ�����/����撐}o�}v�F����4%<��L?w�7�����Vϙ�^�$'��
�P!gw�ܑ.���p�3a9����:�_���+�d�'������|���BJ?4�e��'H��>�#�ĞV��c���x��5�;@�u�����z'�
�����=�T����J���o�|8��$㴡t0��Ο%#��J]����B���.�#��o�H��Z��n��v�v4�*�
���j��re*^M�4�<^G��;��l���_����]%�	�58�,�[�dh,Ոz;UTf�h�g.�s�	�g�R��#ha�y�G�2�֊�Z!O:���3fE)e�5ŇKG������G�*=��#@����S\�$qG^`~Gi1��p�hG-|�	V�c���[I�~ҳ>u��V��)R��ĝ��G��9F�ٚ��(m�#C䇽I�s
}Z6����ɽ-�2�R<ֿǨ��#1{;|[W���AL��V|�ρZ}^�M���U�wJ$O��*�H(zF-��5�I�'o���� ����;VIS��d�µ���%�wv�,B�O�?Obo5z�ɾE%SO��4�b� 0ɜ�=_��!��	88��ծ�,��7���E�+�v�ջm@}S�����”���lL�5I�U��d���q%�<�v6c�4��>:X���s�[�9��;u3�}���[�$;��Ym��C����� e[�a�s���(,�G�i�O5;�CJ��o���B+�6�}.��9��b�B,�ci���g���Sޟ���)c�w����ѵ[d�\9ջ�Y��>UO�D(�-�����֗B���ɰ~0�@օ��)�1R������&����=�Ea�ͧ�׬��ğw�}:�t'ֱ��xĆf́22O:2_���ǜ�����k¨/I�trH��]��S��	��7ѕT�["�߭��b����􃈝_;/�k9*���i�OCIP�1�%\�3#PW߬���[�s�)$�T\���i��$�����` �����s�:�y*�� W���H2�m�Xw{��7��D\ڠC�R��*�,�P��f�f��'�IP:�:Ӗx AaEcB97���j��c��:7Ҷ�i-��I/ل��y�o8�uk�Q
AJ��
+c���]����q�
z�Wv$
}K��i��tgLG�X1o�.Rbp�-wI�	f��Ag#�y!F��#���\^dV&��;����AW
=���Lor���Ox�P�oO1o�+g��{����m�=.�j@Btp��:��O�����#~}B�����Q��pG*��;���b������_9����m����y�Q�j��oyؕ�M��Ɏ�=�����}v�hF���,����2)�I�K�l�*sp���YƟ��$�0��6/�������S?ǀ��|����s��w���v������iB/�$	=C?���7�6=�~эػ��w֢,��B%|�A�Κ�>%{:��/�� ���a3���Tc��p8�΢y����e���Emɸw^����b�ټ[��G<��;N���XJ�j��m������(�vLܝM�{�	u�F��vŒ�s�gok�y��\n��M����$Hi�E�v��I����9\
�5&�o�O�0}����YSh���iU/$�2c5ַ����Mm&�V�
+��')�~g�dSͷ��ݨ+��VPB5E�QPmC��*��h͵����C�m���9��>j�B�r�
����w5��3_g�&
+5���F�6�Q�M����]�[�;�8
��*	�qH��pA:���Š'��/���4m�ZM�u	���BS��Ȭqt�
+R��ְ
3p
�v��lw�'��f�Q3��{�n�#���R�P�)8�2�1qrŌƉz��q:��(��%�Q��j(co%�9�;c���]9'�!��Omaa_�2?�P�j1�a�?��n��*~Yt��	B��Őz��zpi]����^Br
C%%B)�T!=��骼<�1�!��U4�gA]��"4�1����Qچ�~G���x�$�lӸ�1y!Mǽ�쎁B%]k'z�	�YP�vK�'G�9G�]n���ˆ�yxK��hZYFkݧ�)�-/v���˕i������Q�c��'hW�KlPF�G�Px�\��]i�{���Q���Ջ�uz/����r��dTOgn���A�}�K�f;��Q���)������\jA)�3OF<�~^bB���,Q(
��Z0LDJ΃��m�0M;��m�9
+��o�L+b�E�}�$K�e����f��m,��M�a�?�s��9���F���K;,嚱��d7�i_�l�_A���\�l]�6֋:��K~���	O��`4�N9I߷���9г6r����J��yO�ָ|h0F(f5���ݗ(1T�W=�����ʥ�rX-�-�Q&�<�S�G��="%���}6��\��X�[c������
��'/�m{��>�.��s���TY�d�OQk�ȣ�.�y{�}������2�Ӝ|tc��͌����
��[�����z�*��������\o�(�Y7��
_�7Afܹ<����}~��O���gg��6Q+�o��e�Ba��P(юWJ������-?�S�e�iFi�j���N��n�/����(E�as$�e�h~�E�Ӿ������r���Z��b��T�W6�E�r��+;/�j͞��a=^w�Y�3��A�����ؙeo��Tc��^=u��(��%>v�`g���JlOA�����x������GB�">�������-���<*B���3?��}���������0��E��?Ʃl���6�a姵/��͖�B���z�%��/����]՞�R�<b�G��%%/��|�Y���F�4���n��ٗ�{��#5���N�ޖtTq��9��%=��z0/�~d���������΍�5Z�|��k�
+�S�&՘�ݽ�0�~s���!i�X��"�6:X��5#���N�Trի�Lf�||�o��?u���4�J��+�@�Һ��Y,*�����̏N���`V�����g��Q��3�2�W�snlĔ��';Z���9E�����E	�䊩ub�
+�/{u����FK�6js)���~SJE(���DK���T��Or��?T���_/�6L����R�#��M@`~�Y^�B��ð}���I�d���G=��r�fM���8!E�i��ʂ&�E,-4�Fj�UpU<Ϟ����%�V������i(3�
b��Ul�Zz��@�ТP���`J�0�u����\�Щڂ�Y�Yl���Hc��Pp�!;]��b���3bcI��w�&���g^�u���):3[�&��u]K�x�u�B����^T�h� ŗ��B3��6�q����F)��DG����j.j����:5@j��m�xN6Jy��#б�vh�`T��f���y�Y��JT�^�_��N{b��#܆J�Ը��G|�
+g�&m��d�mE��1���� �X�Wh��BgD���њ�!q>S�SȘK�8����|�ĭ����e�����^�s�!�,f�A���1S�]����
+-9��^)!�Tڻ瓷z�D��Th'��t�N0��n�.4��
+춇b���ZV���:^�`��0|�|9��<�2�iV�8�b���t,f��g:��L�F���bC��?>#C�/�qK<�Q����Ւ]/����@}���`��J��<���_�u�Q�V8��Te��4AuQI���%��|���j��D8���w:j�kݠ�B����v�ֲ�S	���i�&R^%<��'���)D&N�	T��4z��;Y�P7x��'k0��u-{��L0�����A�vy:b��)�}��k,
��qY��-X'Ò������>���]�䦠�$T�ݰ�}b�&/n��n�������L�<;����ʋ�9�R  �1�Pl��F�h�Y��
+I���$�r��yQ׋�4��ވ�:|����N�٤:�~Ǟ�Uw,Hw�BqC��Z�ω�)`�q�.e		t[g�[��JJx&���5��b�r�Ձ�I�R�s���\b��\}�T���J���ǹ��ش�ta�s��<�g��1���4_�gf�yp�Ke�<�o*�H�3^ײ�2��0��~�
+V��<^�谍c���R��=Kv-��$���ͬa���7I&��v�m���y9y:?��&�húx�=B��Q�i��r˯�����vFp������P*�C����Q���*P^=�;�wi7�Mʄ�d��tWkn�ݤ�&�ž� �jiIy�~B��$ys������Z����Z���ۈ��)��2��:ňaW���N�"��MY�()r�R
��b���P1{j`�E����s�}l�ӽǾ"z�Nv���eڋ�11�я�t�m%Y�B�V1�2!�T/�l$�<]P)�y_='˸�d�Ĺ�ه#ᡡ�~�vKrt)I#0����R��!]��!��H�J�^��z�5Y}�b����C�H{�[ⴕ������bf���-�����X+|̲]|�[/d��z�z̦��'4���ӹ�X^�q�4���$�^�m���r,;��8�ņ���a%�*j�_��yU��!"y���@_\%�r,=�7P�����,C+��I&�m��~a��>�?@�uݯ��M�S������_Bt����Ǟ|#&ΝG�d����d�`�Oȓ�S]��
%EzI�X��,��bL6q�8[��)�ǫ�ԍ$���-}]'~�[),#k�Ġ+ʅN�YB��7��`�~!�aqXG��@�%8����Xr�j4K�G��FVV3v�'µڼWЩ�%h�1���.��(�gN!P�X�2��M\H�?�2
&�>�p�$F����n�/�W}����/��i��5w�&Σ�w��K]���5ď7��F�YS�L��6�a�՞ȖLHH����٘��7,�C=�O�TwJjT]�?ؘ(��K3����+tm<�\�6�U����_!��2�f��!g Y!@��.�d}�9�׀�Dd��%O�����#w�ZC�W��S�&��w�/�c%��>�+T�1ܘ� ��l~�5tھL��ء47��$�����cR"z{K��}���o���{�ݦp��܁���ǃya���	�
+��o+�ԃ3�I�{�vSX�g�j�qÜk�)Z��H�W��T��T��P~��c���A�}���=d$�Y,q6�ى�V�gX\��Fyq����Ђ�/+9=�G..C�q��E��12l���#��+mVh!+�F�W/Y��p�X� ^5ԝ�憞s�{�%�y����o{rc�]�C��c�X�2���R�i��h9Wg����J�BɈ�MԎ�)�{'�Ъv�I�"�e��o��M�ƸC
-�˪��/b-���{�SU����嵜U�q��CyQ�}�d�Z�\s�t�0����fo�����$�@yK��Vw���v���/��~0��|99�-ٓ�w��͙|�V��n�o��K�}X#"]��W�}J_��L�7l�����a����@4��R8�FX��(T��]��<*0��v�i��>��6���j/(y��0��=<�ey?nң&=^�s���p�>Lؗ_��?F'�����#�~J���W�B;1nz��nMϼ�u��d#�k��2*~T�R���є�q�)T)%��:���VѮ�tD��b�j.E��{/IK���<u���}��/3��������[�
+���{%}��%e1�·)�4�$if�Vu���]�dEue>X(j��kT�y�:��_�._��Zy��F`��cEO�"$4��9�[�~�S��!���]o��_�#�&o
+�����1{\q�Q�v�Ͼ�kȬ?�}�H�uH#���E�U���#�g����C�L`nw��]�q�0C"ƙ3���Vz�}��s��,�eE[ �|D8����X�S��z�Z|˭�-�Y�<[
+�9���ވ8���R���
�;A�`����w�����I��|�X���S�WE�k��E9'8W�2:׃��3�����S���ӎJwR�O_��JX&��q��'?���/G�j��N�����K8Y>f��S�B�ȩ�D+2a���,l?�5����G�(��U*.�b��Z����x�Ǖ�Ӧڴ�hQ�ܱW���ޭ[�4�ʵ6�5��[G-X�!}�9ϩn��I�Zt�aJ��?d"3�<Mʎ��"�8��MY;�(����6�OT)Шڶ%"{)@��4y�D���+~
+���c���ݠ~������/�a�&o�!����M]����c��<�Ĥˢ��l���,�މg��N��}����
+�K�2fV�$��8�J�R��c�c�_��Lm�vp�Qn����p1a��-�R�0�>ד��p��03)� �2歋���[R�]n�U?羿��(�α�]�V��k�	�_�V���h5y�Ѓ�/x�(�w9FmOg%W�x]Uݨ݌p���%]���-5��[K3K<cN3я���g���?R�2��[>�c����L,'���d�j�g7wwǰ�#T��	N<�'�ɜr��>��?�������v�Q2�1v8����"��!TB�̨�+�B�2�9������gP"�n a-`ޒ�#��
+z‹Ҏ(U��&V��,$�b�Z��y��B
+endstream
+endobj
+1569 0 obj
 <<
 /Type /FontDescriptor
-/FontName /IUPJFG+CMMI7
+/FontName /PIEBAN+CMMI7
 /Flags 4
 /FontBBox [-1 -250 1171 750]
 /Ascent 694
@@ -14599,11 +15395,11 @@ endobj
 /ItalicAngle -14
 /StemV 81
 /XHeight 431
-/CharSet (/T/a/d/f/g/l/n/slash/x)
-/FontFile 1437 0 R
+/CharSet (/T/a/d/f/g/i/j/l/n/period/slash/x)
+/FontFile 1568 0 R
 >>
 endobj
-1439 0 obj
+1570 0 obj
 <<
 /Length1 1703
 /Length2 10271
@@ -14663,7 +15459,7 @@ DSm~mYGA
 M�9��Ჭb=y/`D?��^YQ��Axe�0f��X����h|���j���ִ���T(��uvz}�Ј�ѝ��	�Gu�noSK�e�}Z����n�̲�ȫ��|�ǩ~��5�E��4G8��&�i�5h�@U�$���iLss�~�p*t�ŝS�H7��"�3;���A�
 endstream
 endobj
-1440 0 obj
+1571 0 obj
 <<
 /Type /FontDescriptor
 /FontName /YFMOEH+CMMI8
@@ -14676,10 +15472,10 @@ endobj
 /StemV 78
 /XHeight 431
 /CharSet (/H/R/T/a/alpha/b/c/d/e/eta/i/j/k/l/mu/o/p/phi/s/sigma/t/x)
-/FontFile 1439 0 R
+/FontFile 1570 0 R
 >>
 endobj
-1441 0 obj
+1572 0 obj
 <<
 /Length1 2511
 /Length2 22619
@@ -14784,7 +15580,7 @@ Q
 ��J��0H����p�ڒ'��j��0�
�^X�*��!��g�A�I��2o��r-�5��{��J	�)�ܼ�~����v2�o�����[?
/�>�
g;f�mD���M���pκ!C�����mE�j�3N/(d��cR$n�&��h8��??D
 endstream
 endobj
-1442 0 obj
+1573 0 obj
 <<
 /Type /FontDescriptor
 /FontName /BFVRQE+CMR10
@@ -14797,10 +15593,10 @@ endobj
 /StemV 69
 /XHeight 431
 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/asterisk/b/c/colon/comma/d/e/eight/equal/f/ff/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/question/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero)
-/FontFile 1441 0 R
+/FontFile 1572 0 R
 >>
 endobj
-1443 0 obj
+1574 0 obj
 <<
 /Length1 2698
 /Length2 21167
@@ -14900,7 +15696,7 @@ Izw
 ��5��A��`?����U~U�+�O>a
 endstream
 endobj
-1444 0 obj
+1575 0 obj
 <<
 /Type /FontDescriptor
 /FontName /UUSBSP+CMR12
@@ -14913,10 +15709,62 @@ endobj
 /StemV 65
 /XHeight 431
 /CharSet (/A/B/C/D/Delta/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/b/bracketleft/bracketright/c/colon/comma/d/e/eight/equal/exclam/exclamdown/f/ff/ffi/ffl/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/question/questiondown/quotedblright/r/s/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
-/FontFile 1443 0 R
+/FontFile 1574 0 R
 >>
 endobj
-1445 0 obj
+1576 0 obj
+<<
+/Length1 1357
+/Length2 5962
+/Length3 0
+/Length 6901      
+/Filter /FlateDecode
+>>
+stream
+xڍVT�]�鐖@Jj�i�����bf����NA@�A��A:�	E���~����w�{׻ּ��x��g?ϻ��U׀_�aQA���B@)�Cm}Q�("�
+sp��ΐ?VbcC�����!BclJ 4&Lh�;�D�BbRB�R@ @��W )Py�����
�"�x�p�F��h�)�Z��<�!IIq������ 4�9r �0���2P4�UJP���S��@ ��<ah(@�� = v�_��\ � ��Ba�?f�=����0gGa��v$�s6�@]��
+��	�����j�BB���+��;#\\Apo�`s��tT��^h>�n�+�B`�A �3��p@EA����Ww(0�F	�`ο:���de��C���F��O	���1��-�{�Np�'�������Ղ������QW�+c"����AD�@������x�����
�]!��B�̘��}]��{L�=�"�E�< �4�������	�``4�������1C���1�G¼��@���_ϿW�n�!����������������RTDx|����~aQ �����q����(� �_U���U��#�����ҿ
+��k��	��O�Gc!��	n�1?B�o��N������ �֣���������?� ���_~_���k#0
+��g�	�\�!v0w�����A
(���}�0�
+�b�C�����n�K`�08D������0���*�棁�����?�T��v��%,*�!� ob̈1;Q��F�v��
+�hL
+�Ӟ?��$�5O� ���H�`�;�����cN�����!/�xv
+�q�
+i:�P`��_��ȱn��w��~NF��S���<VH��XXS�>���s�S�� �!A����u���z#��ڞ����nf�����~�n~ƁN8�حYn�d��ԧ�]�^����Cϧ��6��4I~��GEZLp��͘�g�G�3ޣ��E>qt�������8^b��Q"y�f���g�>�%�¨6��f��8GTCc�����tӾ�y=3^�2yw^��KY��~U������m����b���PYTKc�dӹU�h��])�a�l�W���Пb�?���y��B��A��)��=�E���l�yXt���<��_Y�K�W�O�Q���;�8��[Ү��O�;v�M��k�K�u�T�N�8���rqW?\�x���� �iDhc���־J�2ڷ���ਲ਼|6=���ׁۨ�g���1�,�M3���0v�ê�]_pFWXL�|a� �`'Il}<���u�.�'6��`�K1��$nU\J�\��P����뱈�>������+P�;敽�^@��r+s���z"�`�噚��<�_A�u^8
m���Qug�#.��;���Z>]����l�<ȷa����{����}���>Ӗ���+s�"���w����'��M$b�x�Ol���
�����
���+SI�P�*���g{�3��?���u���ms��}[���x|�8vP�4�����y��Z>��ˀJ`�WE�b\M�g��E��T��|���;W��J:
��`g� �/�w���_�����h��)�C��;`*����X��������#�p��$��ʡ�nz��S���9��%���zp�ߤ2w�/{��E�WLt_��xR&�U�4��i�`CE���3�]ee#��C�hk�h��0��MܑZ5�tRO��Ftzy���c��s̑F�q�tu|߁�)�po��ۄC1��k�r��ш�L1���"c�Z�G��3�\8�ͪ7���yşS���!E��;���v��!��zw�_�cz��'��K��K��7g����ZJ~��߅��xl��|����t��׻	e]�Oε���i��HQ��XD4��:睺ɰ��g�?/�	��s���~K�W;qJ_X��S���s6�o|3l�����}@��wX�%��?8t�+J,?��7��v<D�EV����.�P��@\�{D	��O�'/�g���Y��xu̔��Ҍ�K`(տ����r(]�o��� ��@��nv!�T��d��Ma���ѹSϋ��֪={��(�WO�o���Ko���LF	
�4���$Wy=Ѻ��0��5G$�	ߐ���9]���+2>;$(��&�~w�]�����I(��z߁�����z�L�����E�v����A���R�QwJ����3�5<���X7fYr�''Y��!��F�%aFlU3��y��T����f�����bL;٥���e&�Wzv����QN�IL�^!��b�I�V,��Ш�����9M,'���(��}=����^5��%�����	�����
ԉ����+��宦����[ ���d�X�>���ؙ� �����h^�s�e��5������ n�"��(�3����^��9��`&�����͇�W&��O�۩�#W��Zb�֤�ꮟ�8.����WҨ��ud�K�j�ws�V<P~]k���X"����\$���k1rl2�(���?��)Ǻ�-*� tt�Q}�H�ӪU������:�緪�щ�qe����G�'��yP�B=#�dp>��-ܺu��,e�pg���ֲƱ|M��pqG�$���]S�\��'������G�qg%O(d�?2�j�M�E#)
+���� �.g���aÑsG�S��l[/�Ǒ#��J��(��FT��<>�rԜ)�Q���i�ȥ>�V�r���Z�j��g|�߁m뗙/g@o>0w7��(��DME=�ĔX���@:.��ږ.a��%�7w=M7�'g��l��Z1�ܟ�é4��^�"��ˈ�C��Kl�u>���t�9+ʞo<�r]3�:y��9�y��E�˞�6�i�i,e�����&ee�u%��t��T<@�$�LZp��',�Qv�����g4�d�K��{h�����~���r3�'������*�m�Vo91m�ϒ���
��yE��-��#�>�tz~�`[��sV�\[k�Ĉb쮐΅s�,_"�j�r��2x����Wa�BAT��v�h̤����%K�Prц�tݚ��U�-r�o���;��?r���Q������f��2FA!ά�
+=N�&�N}I���M���2�w�Qp}cs�ռ/( +A����݃6�6��r�k"�4�xy-f�vh�h���h�-�d#���9U���n��u�O=d
+��զ���k��~F&�8̻޺B�0��ܾ��6aY�u������M-a�%=?�a��twr��P	�~e]'�"��">,�<�층{Mﺫ��qh�	�&���yW�*���ϙ�=GL�./�_ʜl��H�ޝ���P��z��$�B���~Z��`D��t%�e��0>���s�s�������t��9�7�&"�a�;n�����>�t#��GbA!�J�S�W4���K1�P����?Z�+�6�=B��NN�g�5O��a'7w�&VZ�{��lk>�ehTPdl+<d��o�y�J=
+����?�}Z�K6P��RT� un�d�Hݒ��Hlhƻ�c)�:w�mY�����M�a���g�,_اo�t� 3���ODP����5qٯ���.�xAn#Y7�n���v���l��S�>:�NQs"N7+Ǫ���d��ү�v���gy�jZ��G@��w����ᣃV����C�'��=8����R��\��.+hm��+ b>
Ao'���T���+,A�����)�>U����Ѥ��S5H���zF'�ߑo��q�����?�Svi�R�tQFS>�:p(8o7,���?���-����tc>���G�;y'�n	�ުzQ	ϻ����j���3��m/�,�i%��f�>���'bpת+8zd�	��&?�f��u_}S�-Y�T�5�d�9��ݷi�-�5L��K�̵(�ք�ca�i�7>��u��B�'O�&�2�aVvO��,�i�8��e��!�����&Murl��ԉ�������yQ�v=j0{��3��1"��$�ZM[y7M��u2��-keݰn�2����E���%�����*!� ~��}��n,�G�.[��U�k4vn��(gA��Ϗh�mI1�a�2��$��à��:��b�ۑ�@��۾d^s�5�A�/����[Γ	T
�X��=��,R�@�&�@��Ys�w
+�0;�0'�����w2�yBqu��0�Zj�K�E�ut�+��j6UF&�qɍ#ӻ�U��0�d|;<�e��	��^��gU[|�\�~����݊��uȁ��-�8�/[�$�r��B�pJ_��`n�H&��Dy
+�]��!h�F!��\��臭��
+�a>,����D�G�jl�6�8��]�9t�6M�fu���h^�M9J2豉�jƲ��}�^ܵ`O��4���.��41���B�b��$���\���|A�.�n"�5`wΙ���kP�Do�!��|������n˟bW� ��{ض]E/E:���̋h�/<��k6�(N+�~�X���o.ק�����$�Rzr&Ӻ�����,��<V��z�����F�
C���|'m����l�ڼ�q�6�F�j
+<R�kF>��O���r'��JoH��L��HJO7ɦ^g�.U;�%�O:��SضmXW�R��֝�{����u�>
��Lu~���4j��қf�QPo:��۔ͬ��e*��ِ�M��,sXM�����[�(�gy�
+OZ�g(N�����-�RE�뼸�@���cSfS�1/��j�&�ȸ&'hVO�����xiv�O�A��]>��K5��\�Yt�V��������׋0E>�a3�Uϳ��|vA8*�zCo|[e�0�L��3)����"�B����I�����v��i���q�=��������5��Ⱦ��	�HGˆi�ۇ
PE��3;pBeman9F������9�Μ��r��Z�ք�@!��J����ŎL�F��9������d('��/ĝ ����m��g��<�Q=��MU )�L��j�3�y�.��c[
,o&�V�D����jzW;�h���~
�����02�Y��!%����������}JG�N��o1!5m�����L��B��e^�.�o=���#���0��EM��-���֗<< =ɶ/'�#Ҹ�]���)��BN΅_�����\kp
~p3M6�k�h'��X<)�3�~w'����$���� �,^�s8~�i'��������+���	iy6��.G@ک���<�Oo���b5E͏�n�W}S���Z�au������.?m���|s��r��t�sG�R��p;�.N��O���եx�B��	��o��יvi��s�z7C���F[��d�U).��
+	8�E�Y$���~K���;��X���(U���&�D�HU�ZFL#^��lx���:O7����(��呠T�^z?z�lնt�L��Ͻē�+#�����\�֥v'pJ�.��zYo�wQPXY��sRtJ_�H�nT��mwF���
+>�7�&shtN��{C�é�ܘ]��^��n�k��7�:����;w��媳�wo�[�mr9�f�_5��'�6~�*�#����y��q��A�v!;��K�=����YA�!l����ô�O�u
+�=5�̍��@s���-e������y'K���:z�_T�6���s��(q|��<e���*V_�sz���F�	�Ǝ�ӄ����Bު����ܻ^��_?�
# �~��{.�=��w�.�_��M(-�CxF��6�j
��;T�b\�!�Z>�o�>i�w�&ϯ~/W4�
�����e�ƅ�ʙI0Yz)�/�c,+�:��b�M��K���"���g�
+��L�p!�[T&�
�3G�${9՞�^�m�-/
[���Z�R(8�"ʆ�W\�J�"��x�R�����O�6�?E׮2~	�6�ӵ	N娣��I���dQ�������dԈ���k�Mz��B�����ކ���e�-�դ�;���<����;ؽ�h��uZI�o<΢)���y0��!6���fLso����Ŧ(�����/'�M*�^�e��wU�����Lܩzٲ�6��v��" �$����^d��0���b��',��D�-�����C�zq�g��>���R�[��?yy��^_8	��c�E.l����܍i���9Mq�wnT?��d{��?�)�Az�z\��#�,>ʬ�4T������\>���C�AÝ��e�����I�Cf�<g��u�d��)um�
�T�rC��m�>�
+�~�f��g�GOf����65��?_���������g�f8���p�5�˳y{X)h�n��x׏�{�)�@~�fM��j5ɽMe����-#mL�šPp��v�8z�&�%���}"�D�=���������w�%�*������]���IJ��.O���u&qd�*�ؑ��g����"B^�J���g�"�T�?��-a��f2�EC���g�ӵ8>N�i��+���S���Q��*/1;��d��Vͺul4w^,���>�֖߆��%
+k�v:*���~�'�Wt̝�\^��s�`:��)@��9+�H1�7t;5��RbHV���vD09�<K%�P?�Ua�L4� ��D��C�m�f)&�m����i�q���5c/m�oo�d�?K�I���t3{��!#ˣCw���gJm�z���E�G�+�	���RM�K�,��]�Z���j񛛎Ga1�[lq&6�/��dp�-)Vw�϶�vg	�[�R�6�w�c\�>o1Tg���zh��R]��ej\n^=R�c3Kc��b]��r�	i��]�$��S�o��l�m���h<r��i�?LD�׬���>5o�(��R������ճzX
+endstream
+endobj
+1577 0 obj
+<<
+/Type /FontDescriptor
+/FontName /THGOAZ+CMR5
+/Flags 4
+/FontBBox [-10 -250 1304 750]
+/Ascent 694
+/CapHeight 680
+/Descent -194
+/ItalicAngle 0
+/StemV 89
+/XHeight 431
+/CharSet (/two)
+/FontFile 1576 0 R
+>>
+endobj
+1578 0 obj
 <<
 /Length1 1391
 /Length2 6286
@@ -14951,7 +15799,7 @@ pMy֟ˬ
 �匈��7�y]��~�Jcג�&�-��)�v_j��
`�~3],�e,�GL_X�fF����p�i{.$�z^�F�9e�9�_��?
O�Y7r<N���p���{z/����rKL�A�Cg`bb[47��x�V0϶|�A���:7�eTpy]{�9�e'�R�IY�#��yMb�*:��ϵ�d\J��T��s�&�69��f�Կ<��.sv�f\����3�f�� �������%~�	TR|��̤��2���[�����Ʀ��Y�%����;�ZS(��9ڵ����fcķ=F(����G͕b�|'#�܋�'{�^޽&B����9����
��r^��Hؤ�U�ƹ�t-�Y�%�<����jq󖃾vI��fE�w�u�O�lj�yD!\��8K<�^?���\]B +,"���s�l
 endstream
 endobj
-1446 0 obj
+1579 0 obj
 <<
 /Type /FontDescriptor
 /FontName /YPSQTS+CMR6
@@ -14964,54 +15812,62 @@ endobj
 /StemV 83
 /XHeight 431
 /CharSet (/one/three/two)
-/FontFile 1445 0 R
+/FontFile 1578 0 R
 >>
 endobj
-1447 0 obj
+1580 0 obj
 <<
-/Length1 1573
-/Length2 7817
+/Length1 1616
+/Length2 8333
 /Length3 0
-/Length 8864      
-/Filter /FlateDecode
->>
-stream
-xڍ�T�6��t
-��HH334(���1C��"
��t�4� -�� �!���|��{�=�����5kͼ�ٽ�g�kXj�pK� ����7�$
-�Q��@|< /�.��	��cч���p���˸A�<P����L
({:�|���(XH��@"�1D��d��`6�5�2u�c�A������=PY�s�A�`!����)g�b�Yy�C�Q!VN����W�'�.�@���7���;��N���
�hCݡn^P��v�V��ߍ���t�a�`�������`(���	���P�:J��
(����.�_��y�����W ����pv�����v�[��!����������2�rrG�����`NV�(�߅[䥴�V������s�p�q�9���+j�rp��3����>Y����/���:��p䟳-nc��O���	U�������A=� HH���>{�຾.��J�/U����E��
��BQ?xHw+/(�����oſ%<0`�x���v08�?�Q0�����y7���"�����d��
�������*�)��r�n�o��4����p�
-��`0//@u�wM+�_U���U��"�"�EM�?{�u�l-;�߱�(�Bl��$�������4������_Q�/��z�=��~k�~��?Z+g���_z_==P�WC�6�����?���y:��V��
-�Rp;���s���@m4a�?T����Z0'��p��zP��`�t���8�
w�����wJ98a�k�xVnnV�x�+FI�$��6P���y����^�����>QN�?-��?�hC��o� <����@8���~���2�tA�(p'��?����n��Ǐ������Ox���zq�F�Qj��Q�<�ݠ�U#*��7⟠������A<�P%x�&4j����MP��77��<ux��Z�֛{cDl�e� ��9���yI���^���v&�4�M�yM��Tr����\�ђ��z�m�=�ъ7;F�a���Tm/=.��������3G��;�,����D��d���|j{��§7�6�U��>q�Ћ1}V<ɒg�5Eň��M��q�ȇx��l�^��-�r<'^���B��2�ˋ)��
-]^�Njfjc*z��{C㏐���ʔ3Ȓ�/���EQ|�;���Wq�����k$�1nڭ����o�s)DV�'�޼�*Z�.��u
:��Jr���/��������y]��U�� e��4bb���Gn����N��+�	����{m��h9�`�ٲ�J�r�T���	z�qm������h�1��F͂�����()i>q��~��t�/�@w���n�캇�{���+a�B"(m��@$�c\�hd� 2�=;!y�9Y'�=F�Ǟ���$���o{�'�:��9�%�걞B���7z����7S4+�Zw��������Zİ�Ё~v���2���g�A��%�q�.0��&K�é�u�Ό�.�r=v��N��������Φ�ݘY���OV̇_I�x�ڐ�����9K��6ֱ���'��.��^.jYYW�x�3'<K�i5�p�1I�rB)�Y���z;`�)�,�†n�-{i�}f%��[��W�JL��j�F��}G��}z�$���\�$3^R�:|�:/f/5_�42�%J������j�B����0�������%l�=�hVI�!{i�m�Ė�l��;�
-���L��͈l���[{�l��q\����h�g��6�6 �~g%{S;M�Χ޾u���}��j�j���_�,�D5�:��k��T}��.��OeV�޹�a���0��z���kӴ�T�;<���O�2/��}�F%)�c�������S�>�2�e��!�'���&̿&\�Ͼ/��Jd�8���.�v{7�Z�#ԎZ�K�x)[�
-u�J�&�zQN�S˝�[��#��`>����".���n�25�h���T繼����d�}�ا�|E׃gk6!������
�"�.���*w��O'��?��U��rx?k��y����Sr]n8�H���:L���难D�B����=i�2g�x/��+�}����蛫8a0�������|�(W(L�@r��ٻ���}�t�C�ֻ��T�8Ssb���+�B�lf�^CVM��yl)('��3��UY���XR�!q��.��݌�5q�X����3����L���?����Wy�1��&D
-�f>�"o�`.�V'�W�灌;��d6���f���$d�n�E�����Q|��NCn�C������s��rb�G8
-�n����%Di���P��"���=�Ҝn��q����\��./����u� �'�*ރ��1��HW>si�R֬E�2*�B�~{8h���v�Ί�����7�{)ƽ�
I���xx���G�����ܾT��d�{�ض�i��OR's{�~�Y,ɫ�e6��8wB��K��	st5�֗j�X�q��4�b��
-nH�o��;�r�����i\�i�Hd��Y�ϴ���:?u���&9�7YF�H키�#gas�T-���
�v�n	'���f�c�w�f	�O,~�wY���"��Q笳��D6��'��c\�4�Jn���� ~�ٳ���[�;�S	�_���,�:�O��L����Ŵ��.�㝉n�Yk�,�|c'=P|�{R�}^n�5��m�=��'����h��=����9*&ZH퉦�bX	��K΋:���]SX�\���A@ZBSۯ�ʐ)mD*9G���/�|̜���8�Γ;b�
-
-xl��2p*������dT'���y�a��L�"�!�3�w6���)V]���L� Wsl���z��s����]�Fh�a����D�0�0��ȣ�J�c{��T�o�Q`nA��|}������s?��0�e��I�������Nh�'���.}F\����#- _��D�����,�N]Fʳs�H�MDE�����KvLf�������M%�k�A�]����\���C_��(�ݷL�}�}��i�Ȅ�ħ�I[eIfcm��E4�r�W.8�W�W��*�k%3c���LP}=�}�F_�Y�������p�|����_�#�R��ч��@�ۻ|��^�)<��R�y�g��}��Ib�''x�4�\71����V���2f�~�)
|f`.w����Z�uTm$Yr��_"pY�M҈Tj{9�.N6�{w+�-bL�nq/�A�W�S�B��]�v$i5^����W`��W9�14��+�&am=��x������
-}r��Qu��(A��x8��7��8��g���e�A�9�0G�}-Š����D�~�P�K�ѝ7��O4���fQ��~��d�I��X;��鿑���HhZ�z�!�U���T�Y!eѧ��h�_p?�-E�>w�"��'��Ί�e�I���Ȫ�6cc>�y��	^��$�a~nOw�g�WzQ�sЛ�l1'e�]ې�����"_��ݏ��a�[&�UboUd6-\>H�
ڊkƇ�\���x��3�^��yx��~y �c�6ɿ̢���R\�O�Q�7��x�5a��k:#4�F;���|:ҳ�S��~��9��N��Km��*+�<@!{�zQy̴Qu�Љ��R�M�\J�eC��L�����✥J�h�ߪ��/D�}�(L!�*S�?7Ό�k}_�'�݀�䰞\���(�|�٬N��)�MG�Q���F��E�@uA�F��ء�GQ	�W�ZS���`�q�F/���\B������������m.�*���r�h���-��b4��=)�iG�ә��L�[�u�iK�������1%�D�����x\vG#<������"�a�/������R�#��^�L�j!�Q1'�dU��nWE���j{��0b2��Ry���OD�v�`�/���<E������(EPY0՛���2��h�o�Q*��Q���������O����n�O)�d�1}X8a�_��������z�,�����m�L�m�ZշA�6[��1������>��!Z&���b/f��	-�^\���x�O��@�u�  �����u�`����$3���5�v�M�f��`��.$���L��e����+�hjH���n6[�;u`b�դ���F*ش2��a,e����.�F|�9:�UԠ�՞�U�B���X ]--�����9�\h�K��q�^e�!"�7X�����ީ���)d�;,��1N��3�Zlq>�����"3��'ަ���kC#=Y�-���Y>=hQ����+lO�������EO7�T���v~z�N�4	KK�=�Jz�,Qz�����t3�at�B�)4e�����f�>g�57p�@�+J�%XP7/���
-�HF�(��zzp���ִy�K��^*�}��}(���(����>��?x�@�*���7"�*�Oc�H7Y�l6����sP�6�/��²�y��C�`=����v�eq��c<�Z����Q�F��$�q
-̻�s�O'R4��U8��q�/�೨|�Ͽ�1�'&������.A�'�N�$�jJ�%yQܖ�kpv�k�����v�YF�~t�c��
-���Xo��E�����ߣ0���+�;5.)�qnQ�q"�[�aE���.�A�\��Y����K�w�.jY�>�1�����*�+xO�1�[��U�u�%��=���L���
��$봌�1[��g��co9�����������.�
VSM�;����4��踑c,�G��z/��czɼ���	�
G�Qp�!Co�WJ�z����x�b�{��W���#}��c�_m���{۔0�}��NJ�K�;2�?j���[���<�y�Lޣ�
-dLۅM���|��Rt�[I�� \�%DX#ј��sX��خ>�_0]�8d�t~dl���1vmS�����DCo��-��!��"���(�ҽ��9��;]�E]�O��H���Z~nI�t̻�=x!���eU
-Y(�Ş}�<U�?�ཆw����jnX`�c%�yx~�ip�S��A��
��pǧ��J�Q��nN�"��xPP��H�����QqVs�X��'�O��c,�J�HY����1dC�W�&D�T���:Yi�[ʾ4��Ⱦ�j�#�-{E��Kp�I��צa�r�V�G���Yn��ø�b�%��n2�pw�)ڳУ�a���Q���29��'�oGʭ��}��"Vi9�E�ǹ�͚\���'�m��5V jJ*(�_��"�����H�3��*���Ws�-(bxx�S�b��O�\8��g(]pc���#9K��֣�I����J��X%2�Cњ)�=�f\�q�B�;��Kc�T����_�ٳo?U)Y�X+S��{Y�rXj�
-�ÏR��N_��?�0Vo����r�!��֧6b���l����M�|�6f�*�
-����#���?%�z�;�J3���.�
-%Ж�y��+qm+�R�,�-�G�7�Oe��C�ʳ�`��M�<��FJy�>?����i2���D�z��V5���u��
�gh)m7cO���X��2��hȱ퀵X���FR���dg�Y�i�&�}!p�`7����BG���5��9�΄�p��%�&�g]d1���-�/�A�5]�S2�*zdž�x���8�0�]�S9�։zo�}W*��퉭����	s�`�]\�MR�!0��,�n�Ym�����
3vmB	�=P&ts�I����ue$!�7_���4S��5�������CfU���	^�k!���X�웰�6AL!�G�M�2xVY�&c�
-���SuI�\��İ���K�Թ���7��/i�Ƃ�;*c�'�C�lx*����j�$(́�h=xk���
W�6�S����-�G��5��b,3f&}�{��xG����ast��3ܑ��@���7&�b��y�\e��q$S�|���B�V����˛]:]Ac�oWc����^���~|9����$�@P]��6�IƇ|��)�2�+��t�~<�ʗ�*�ڧ�+|և,�4��ej6
{��l��	�5?@��n�Dy���}w%��̟zǜ�W�o�U��A���RL����)[^*8�.��<z�XY*Ih�GJ�~��i�瞢"�,K��q���	}�^>u|���g�"cw�s�L	[�ݜ+���)�����ɟ|�4B�[v�Y}�)�v�1-�T�kLϏ擂lA���5��'����ya��!��D"M�i.]�Ɇ7����~���1��T˴�[;�i��{���2��w��P�V-�d�EP�=7���2�]��lBZW�&�b�%g��r����[g�vej�����|w�Ŝn�z-#�iM�`EL�{��l7�G�t���%/�L|�0b���.kx�^�0�&�?j���f�6<�]�߷K�1yz�=�_�&���P��;L=�j{�+)i���lG��Coi��[r����
u�t��ݭ�_�:F��G�|����'}��rH��hi�#9��D�K�^�;�)��F�g|���Ѳ:貦�9�Z�|-�{�i	�2qe�O�;�̩|R����\��t��;�uǏ�#����J<:ji��КCJg|Db-���6��Oڹ�O/K]xL��j���%�Fl�f�SK̗�������!T��ܩ�{���q���W9<�r+^~
-�q�4[��=I��ӝ>����;w\9�w.�N;Xm0N1ƅE��+�>��\�8���z/|�Z����P;}���1��O}2ғ�I�@���fuw��W�jntD���z�q.G-����u6���3fn������K�?��HU*}�n� F����c�ĸv��-�)�
������5�NE�qVD��!�&��O\ѧI�2ί�F*��)�{^�}�!���~�)g\������7�i3?ű�1��Չ2���?���ɟ�g���x��mZ���8R5ѵ o�q�ik����g��A�~�Y�Ľ���j��z��+�#�Ǝ�.l�O�3"Z�3�{�g�y��
-/h��~T	���՗�kW`�zX�!۪���)�_eJ�xi61�]�^#Xn�I�e���T(f��~�Q��3�]s�2=��]�Y4��s���rR�2,���y�U_��NJ��-����8W~s���Ia?�+���e.����+�X!�[�Q��V�2D��M��j��������B\�J6
Nf⧥�-���&K��n�t�ȭW�Q�PFy��х���u��u�bz�n�Y�Ye= %�x�Û�'�h�Jn��<T�u��[�����k`w}��\z`39���!��x���>}V���⍱��O�^��I�����l���X���T�7�5MՃx�T�)�Z���_Ɍ� ܏>�)N>���tZ�V�|����rb4��p���WNG=��0,1�m�2��H�ɔ��J��#Y���c��8|D<+^�{[ںT���.�v��+���b�c��/���2ܴ���M�!omq�o�Of.I��0�pzI۪�VVB/!���=�g�[\9Ő��I�d�e�8o��nW؅X�����&�.�&
�Z�����CL��n
-+C����)}��ď*U��y6oEEt����Q�V�
-djM�>�m*[Gз�����x��a��Oœ6�x�-]�6�����Y�����n��ꏕK��T�3^c~c`�c�/�!�Xx%�E���V�5IW�N�乢�-�;��GYn�EΗ�.MM$$jr�B��W���_[��`�"���~|��,�k�H���ۊ��y��uT�s�>TJ�T�m(H����Q�ꐁ�|�N6���ks��~&�"���s�v����GI�4�Ȉ��I�9���+��i���V�V��S
/�
�UܳR�`��fL�`^<���ƪ�0|0I��%҂i9C�Vmh�	�����`IO13]l���frҺ�.�y@͝H���hRM��|
z�o��F~P�E�dR?.��������Qa��LO�HL{t<O��g���8�������VS���&�ҡ��$���<����Yh#�Et�td�L!K�'*9�]���^}���KO}A�����U�@���2pZ�T��~�[ހU^2O�(�ܑ#�*Yu�0p�!1@������|�����4w��:��v}��,摩�� �WO�CU��GU�i��q6�A�E��p��t�ly���ȬI���A����t�h���Y��9��k�����yv~4��*�?���-��#)�������ur�]�8��V�a�G��]=���`ES�.�]Wmm�Ҭ�
-]���e�4Ѷ!
o&�$���F��F����W+�m�k 딥�c)��T	kj>�M���]�b�'��g�\���m�l�|��Ka�*2ʝ��bOd��X�'.�p��k1�:�����[g�����}�E8�����E��H�ՉUQu��r�}���o��h�y�#���I2��U%���~1,$CA�94��~�9�D7�X�RI
@�z���L>�'�X�:�����h�VI2�Jq��7���������r�I?�˫<!�����K|8ޘ�ʰ����<\e��4�7��
-4G�\�0vOF��8�qa����=c�T?9��e�"]=W}$\_�:�&��d�D�������$�ls����E���R�7��Ӿ�+���𲽍�$�}�ñ��b���Zy�"z��`z���C=Jo�HJ��+d&�OU�åb嬳6į�s�3�\}ua*�!͵��3��Z����p����Lt3�D�O[�[u�$/�n�|+IW�MJWY����"7�5��
-}���b�;tN˖�j��m:J��Ҍ>�
-endstream
-endobj
-1448 0 obj
+/Length 9402      
+/Filter /FlateDecode
+>>
+stream
+xڍ�T�k6LI��HH�)Hww��03��
JK������4H����H���JH�z�s����Z߷f��g_��}�{=�~W׀O�iUF"P|`~�PAK_	�@��vvC�
��C=�`H���<�S���fZHP��
�E%�b P��!�S��9�����H����t���99��Y��������x���PO�=Ԃ���ptF{���i�����S��r����������N�\�@_����z�@���jC��ߍ�؁��0�?����р���B;x#��@tn���&P���c��ǀ��h�`~�����������G��!�	�s�u�5�Q~(^ �����D�C| 07���w���������=a�(/~/�ۯ~�AY	᠀�á��W}�0O�=z�������E�yv�!����.`��yxC���@C�0'(
+(���A@��g�,�+���;���F��t:�[����@��
+DyzC��[�o	�`�(��	���
C������-@h⁁�_������r@"���1�}�Fr�
+�*<��[%/���	��E@@0XP(�~�w]�*@���!�@�?Ţ����}�:}ο���X�H4c�@�n	٣����4������_Q�/��z����~k9��?Z�����Wo��ZH� ����g]��0o��j�P��!���"�K�uЅ���P�n�k��`�.���B�A��ѡ���}ix���[E/ͿS*!���KPD����G��D��`�:@�~3(��@��.@t{�@G�'��y�� ��?�}����:���v�F���04�����������o@X(��opG�67��?�������'�������7����E~IP���7"�F�k��r���W��P��r�{�z��5[{oOtE���G�?��k
+���>O#�<t�~�r�V���o}Dj�}�$��/�g��9	^כ�%����.��5%�c�Y����Z��w�z�A�6)���̀�1���/��jz��e7��<���]��0����<���P���������
EM��m�� �,����(�2�d�=���-.��	�����t��d�"w�Y=���X�(�|Y0�l*`ᕡ�W�9-�1����@��tu�O��E�����űB�V*!ӫb�����U2��w7�V~�6"xUb*g�_n\�V�V�c�ll^��s�C�����)�Y�/_�)��>��*��z�^J��)�g����,��]z��(bf=be�ڐ^G��|X<g�]XYg.@#L�R�����!�Wݺ�����U�u `����#7��:�W�	,߭�y�,��{��62aφ�b�ﰤ"dN�G�LbR�rRӧ�);�G���	�v�oĥ��>6��[�(ɀ��0�{X&�7�>���u�^'d[�^�����j�N�}g��i�[=R��Áw�\��)g�>�N���ﭗR�$w��\Sm]����vd�u*Uq!���ՙ��k;�w�u4F�&��+��a��J��x�[с*jF(Q�$C������[�h+�ԯk����Ҹ���unx���j��k�̈́ZV�4;��V�D(`�cn���
WY�m65����'�j�5|Z��[�~�#$]~�;��-�sٔ�K��a��Wg���f�.��J���&#��}�-R��m�W�G����]��L�ԁ�[���o�{�1��N��q�T�sv�?u�:�(���z��)V�'�*
��&�Km�r�[��
+w4�p5�ѿ��������.|���;:�[���� Z���CM�����=�D�'#�4f���U��EUE��3<�_�}�jZ�H��k?�rƝ]�5?9��C��ܗx��S�~�
+]���"�8�O�����OXM%:���)��yʉ}4.��W���2�\�/#����!��X���L�"���/?��Oiw�v<���:��[ٲR�a6�
+���?�������o�SS�`�8Z
E+�x�#"��	F�	�Υ�.g]*����'͵?0�k�p������<�~��ǚ^��#^N��P�#w�빮?	�XL�uܛAy/{�O�<.�髷~!p�.\Ick
7l���$���/Y�����o�~�i�i��qi%�l��6ȴM��&��y~�Sd���5��Upy:��'������]��K��'!���ͨ����񒴛G����&�>8�m�*����Q��"_6��ЂDe�ʯ�_D��y}0̽r�w�w��8K��K@nc�3M,0L���sa��9H)��a�G��[5�v*����Y��J��g�e�hV)ɳ~M.�oW1m�|w�<��|���\N�УN@V����W�@o:M���1�;xs.��B&��e/8�(i͊0���i���$�o�3���+���^��i1I�D����ϭ��y}�\۩�u^o�����i���n�*����3���˜��^�~8�碷S?3V�؝kE�sPpï��./�]�����h��k
+��y�����8&0K�$f�Z��-L��ui��
+×2��M�uFV�ݞ;��b��GW�	��ª]�v�~�;���_ �_B�J�0K�!6oN::���*���P�j䙴J�{����V�{�7��UN�V,��Cl ��,|����4%|��'��v:s߹��T_��Mʙb�*m7?��)�i�+�Z�Q��I�]#_�1������;rg�i�"�[m��p~�(��rw7�|������uou�;�$��ϝ�>��c=!���f��;MohOx`y_�;do�B��GE!L�Z��E�06A�m�	�ːC��휌���x�ޖ�P����-����s�?�4�9�m�j��06��O�/F��Q���9U��d�WXK�8[�:6�~�?�4�����ֲ^ȤT����Ɨ#MrC�>����k'Dt16��z/$��0\R���.IL�G*r�bɶ-E$�M�Ɓ.qX�YKN�V�X&u��捥)k�a�;y
+�/���Yrb�]Xy�V��-�M�?
�O�,O�k%�9-���U�>q�7�8��	�T�2wx��
��C�m8���V���i��I ��VJߖ��{@}EFN��K:z�G�	�rk[���'�_�҆�T.=_9�$^�D���,8�DzrB0@'�c��$��mdaK�ѵ��@��<3[������q!�-�[3�ҳw��"�e[d
�j��3XҔC��6#��c
+�;��r�R�g2{�-�,�1�o�N6�!�?=������h�����i�ݐp��Q0�'4���kr��As�}/U��|8�H0��0��[�$1��ٚ}��h���zP�sо�L��C���&���D�Ċ��k�A���e���6�Ӵ��oO���S)�������Ɛ�Çqiɚq��q�
LNj�K�y�pZ*\i�N�	3�A)�DBGV-�����i�G�:YYd��ԙ���xzA�g�W�r!7���))+Sc�Y�x�W��w�X�jV�UR_l��{�(�0��+.�Y����&SPM'�g��g!{������iA�6�w(h���]G9_+������9��fBg,�N!_��g^���1�x���gdm!�8=
������X����e�Y�!�����҅�.h�^�(�W���\y�3�$�����Y�'~@�~O,�(-L)�$[*(/��-hw۸;�̈́�h��J�����N�U�� k����W�?1��%�f���i:93c�F$d��=�j�L,I�?���Μ��ULC����%y|�s���oxE���X<��FD��;s*)�c��g���T������
(��jv�{q#�u�d�HY<9I���DE{�c�3��尖a�j�ǜ��+�"Țm�_}��\��p���!�CZ��ލ�L�U|��N�?�O�p����W��
��Y�����l�:�<���t�p�ws�z����(-X��_��DL����c����}��P���>\�G_���R�>�;u;�>�}�U�NP�j�4l��Pb�*��Sh�+l��}#Y&IJ��*a���n-,�mqK��q{�po���K���6�I^��Y��g�!�]�m��H��ƞlۇ�a�}��ԲmT[��DE!�ξwY��~�#9f-�Tf5��4����9�#��^T\�G.��ܨ��(�r~�y��=G�ZV&P��v";א���ۍo�ݏ���d�{�&V�aF^z�$oX�>N�k'��<O�n,���lx�y�70Qv92�Ν2��艺<��&ۋ�[G�R�
+]7��eU�v�98}�x_&�TvL�+�
\�l����ծƫ�v����)k#Pt�w-۶Ϧ��N�X��	�洭�J��/pI
+���'��o,�Gc�ziy�K��������\	(>f}mI
���~�����mV�Έ�a���l�O������u]q�.�_�,?0����2
+���%ѻ��5&
+�?]c�T�ɞ&��m��9�L�Щ���	'f�Q�;�'dט�-��d2KJ2�u���Q��=�Y�Ŕ~"Uq��KpN�K�����V�IV�n\��;*�%�9�ژ$�{�
+n�P�F�"��Z���K�<6i��ї�`��lv��a�$��A�)e���g5}�f4Io��xK�{�?Dts�opO{��J+��•��ǟ�V�3�/��E�cs���S.z�?�L�Z�㚹C�NU��k���<�܆�t4�a�I��pIL@�m>�Ն�PmSp-`���3
+|x��RV/��9�{�?���ۥ�—���{���(9�%�S�Pʜ��ީ���9c��b����3`Yhʧ�4�Ad`�m˳m�������ô��N+���W��v�l����m϶j��,���h��̝�����Գ�ʩ����3��	P�@��R�+ƾ<≵)�� �,׊٩ZܹgJ�H֣\c�#�]Z�;p֝���c�/��~��o�I�ԫ�Y�5��~���"�C������ষQ�=�*��O�wP^ċ�Q�7}�J�~fc��ҍ������`L
+��y˳Q�Mԟ
+��^>ٗQ�;���M�g�����M��in��r��*�*&Z����^5��R��*�{D�E4����an�
+�f�{���/<�{��
�Ie�ֱx*�#���Nd;M��"��ʕf%��G* �����Wx(���87�/&���S������D_!�J_��8{9ER��89l��l��	2U-c~ˣ5����ݥ�%t�O�s����̶@B�����S��<���v��i���畐�$5J���5Kj2
+l�&�q�"U������j�zӗ�󝹶B�GFJ���5�	Au�b�5bn[�|	��X����k�)A�����F}?��.�}l%Ux����h
+�@2�$��ĭ�i�)}A~���bv��_�����&��ݢѠp$�����d.��K����DȌF�i����e�o�8l�ć1�˩o�f&��)u�����}jR�R�젥����#n�`-c�b�n]"�*�c�����:�=��Y"ZO��1���vDbYe���
+:	|2َ�2��3מj����#�B#{I�Q3��2�������c0QOv珌�}�J�ޱ�9��&(˄�{��~�t�G:�����m�=��x�(
QT c+mZusJn�J������d\c�Zf�(���:��դ��Q�p��nb��ee1'Þ�P���g��9kr��Y��Y�CVovӃR}��"g��\I�9W�rZEq�Ŕ߹*l,c�g�E�6h��*�U������Ma�+>�KK9�}�[A�������
+6;�ݔl�����4r8�"r��T�k��$ЯIB��&����7�>���N��|�k��t_����ect{�pey��I���D@0!�՚]|ұR�#���N�t��\�fH�����CFCQs��c��d��(��B�ٳ����O�j@�����,��uO	,��<]�����x�ƺ&�pE�n�]�^��\ˡ~��>�Wj���b��	��q�{?<�q��3������f>5]�U�q�h�t*��<2Ie�_�W��5T����}��f��G��ʣȞ�cb��X�_�W[�P��Dx��&^��������
+����983y-��L/������&�e[�VO�~�����lZ�#��8�
+&Yys�*����{�x̠e���َbT���>��"x��#6��
+m�v��nZz�����
���ͽ�x{��ч�����2�lN�N�����ղ93�w�`��@5ܽM�N(�t������h!����@�L󝼮�E��	�<E��������1���4q��oh;I���}
��#l��
+���@1ӷ�=6�n��&����wLRx͎���;���u�#��fǣ<��YG��e'�|~&[�޺H
+��W�����3�^��E������hl��c-��)��,��'�`$I-�yAC��ǐU��sŜ��o�Ϋ�!�o%N�"A��ܖ����ES�UL�Є|��z�E4��[{x/.|�4��o���R'Z�O'D>���������~����2w~�/{FU�.!��2f��V�SK"l�󱬃{�6�S{ڎB/����&M����j/��՟�{bU)>��я�����������Jfc�!�����f�k�^�qt�%1�[�tn��l��Ш�l�E&�.X�r�$U��=kݶ��|M }fc_<u��E5+��]�FO���Fw�$���Mo���b2�	W���en�$��s�s�=�5�F�*F�0��ʞQ
+W�i}?׊�o�*h�%0�����c��~�J�i�->�.d��ǃf�av�-	C�Ϩ
:]�P������[�G�Xϓ�o5���JT��t�b��|���,�� A���c20����aD�K�{&��&�;�e=�	��9�&�V?�*s�I�?�Ɖ�՘�lF>��cl���;H�ìp��+#�On����B���
+Q�mӆ�����O1LH�e��|��o-<��$��ᶈ�>Io���e�|���
Y^��.IB��y���W�˩R�p�B/���a�i@2� A����T?d�%���O���c�q�8���S�+Վ���̾O��W��ugW�/&e~�ݷ�����	���O!@���ӡ_=_��K��������
G��-�oS���=��gP�<���yEYӥ��f�%�I�@|G��{
+�
��
U>�8�ʮ%~�;�g����	��.je�:בg�YTm�ңDd��/�6��8�w��5�(�y%��M�� ������⠃c6���:Kwc�H���e]4���ح��`G;�����/����MϘ$�֠�M�Yu���]2ď���S�Z?�S���I�G�Z�z��i�A*�HΝ�/����AK���lrZ�?�nQ��X�׻�K��
l���Y].�z�D�l�����4|hj�f����$���yb-)�@[�������Dg�o�FR��&ƍ�־x�9��4�	���?�e�s���<u4���oaS}}�+4�,�����>'AY�-O�ʆd'�&?���P�q�������o2�F�XJ�u��J��W�V�Y!p�Ļ�~��.mP�OI��V��
+)k�]BU�H&u��p����կp/.%�Xb�q�S߫6@DIx�47���
��v��Q;P[��K���2�F��D#����זG�*p����o��`��!��$�o������s����	�{`�;:�����n��:k��n�]��G<pa|�t���5�0�^��չ����K��7m�1I�6^4R:�?ax��\Jkɮ�Q���D<�]z[��cV��m�B/������e�'J�t3�Rr�JLš]<<� �ݱ<���ʻ�En�:%��ם�I;�@��3���)C�a,Y�Ϫ�(�-j9K�����M"Ğ�������(�oq&��|g�W��~�5�m��Q�$E�EC'�)��6nE���/��+�?�:O�N����&���GKT?��t�d��$\��+,��L����"�.�[��I��e��6yPO�]���S��B�}0ŻJ�)8Zh1�`^��vl~��1bA;���E�%a;M��G�ံ��͓�I���lո�<MN��
˾5�
+��h����'��)�����~����oB�D�d�Xv�FF�pv:��7A(�[��c�.71'��K\�X�Uh�/x��Lrs��������V�������,VWY���wg��+�{�����b�%N���'���1�.���r[v��E��B�����b��q�O�ɛ�|��z\GnS�j��/{�w8{(��)�^��>�����+��@a�Csy�=+���Y]u��A��1gh**��XO�Z\�U��v���(�����ew�;��ǫ�8�h�F��[���$�|M���Z"q���{�h����o�mbQ<U6���WWk�[\/0�A�QΜ�,��O��
�:�ӽ��M��!����c������O=��M�ZE�zH���و��g��;t�Sڭo����#������̍c�-��O6�iC��̶yQ9��Ajw��	Y��3�O����N�I�=X<�ߗ3���?Ď�_�4�ӂ�l�	����~!�}-�B5gG��܀�aR�gi��Y]J��P��k�����P�Ht�x���ܟ}#s#FԠ���b���G������o^��KH����ĝ�6��9t�~�U���S
+J1lF>��Z�3�l�"9_�T�q�B&�OO�2�&s���z�%��>�旲�M��-	n���}����}�K̚��˪4���gu�xH����3C���?�e�"�%���
���V��P)h$���¬�G<Ţm��o�(~�f�d�9�����<�.�XM�������^��H�(��F��vd�W�@��v��i�$X�����?�&�o����_��%T�F�/�Y}oD��\s�����V���u�F�*��_Yv�e2J��bYEqzn��&@zo"�n�#n=Q\~6\/’�;΂u�;{���pZ�ֿ����\k� ��&_�^��OSe�dӖ�/),�f�;+��҇�+̫�߸?�ܥ<K����M����/��|p�a���5n��$���Llt���}�JZ����^r
+sx�ܤ��#�٧^9�8�fL�7�ӵ2�����T9q	;��V�!���h��B&�M�
|*��*�Ʃ��^���#d\�(�Z���]r���
+Wt72�.#�����:�SWdh/�{�O�Z�����C����u�OJ������O1T
+endstream
+endobj
+1581 0 obj
 <<
 /Type /FontDescriptor
-/FontName /IZMGNT+CMR7
+/FontName /UAVCFG+CMR7
 /Flags 4
 /FontBBox [-27 -250 1122 750]
 /Ascent 694
@@ -15020,11 +15876,11 @@ endobj
 /ItalicAngle 0
 /StemV 79
 /XHeight 431
-/CharSet (/eight/five/four/nine/one/parenleft/parenright/plus/seven/six/three/two/zero)
-/FontFile 1447 0 R
+/CharSet (/a/b/eight/five/four/nine/one/parenleft/parenright/plus/s/seven/six/three/two/zero)
+/FontFile 1580 0 R
 >>
 endobj
-1449 0 obj
+1582 0 obj
 <<
 /Length1 1631
 /Length2 8640
@@ -15077,7 +15933,7 @@ r?
 8�0���`�h|��C�r��eSuD@�q4G���"y��h/iU3Y���ط{9���؟7�$��u0�:��Ek�����x�Ҹ�5u�OS��~�i��A�X�n���~!}����-Q ���.�c�����DZ��Ea�	�PC%Wp�5�9*C��Z�I��� "���=_Sɱ��n�����Z�7C���&ep;M�\r�����m�4Q�,�e�c=������%���{\��$T;��F���$sD	a����N�I���d;Q�5DF���g��ke�J��蹇q�-�F�6����w�=j��dE�A}�F�N]�o���a&۬C��q�����;6`��Jx�у�}7	!Uy�� #Q��t��yT����+���f,�Z
 endstream
 endobj
-1450 0 obj
+1583 0 obj
 <<
 /Type /FontDescriptor
 /FontName /DRPNXR+CMR8
@@ -15090,10 +15946,10 @@ endobj
 /StemV 76
 /XHeight 431
 /CharSet (/Phi/a/b/eight/five/four/nine/one/parenleft/parenright/plus/s/seven/six/three/two/zero)
-/FontFile 1449 0 R
+/FontFile 1582 0 R
 >>
 endobj
-1451 0 obj
+1584 0 obj
 <<
 /Length1 1484
 /Length2 6532
@@ -15136,7 +15992,7 @@ $s
 �^�4$����.�B�D�[�o����8e�͜P�f��0z�FZ/ED��E��$��b��
 endstream
 endobj
-1452 0 obj
+1585 0 obj
 <<
 /Type /FontDescriptor
 /FontName /ZBHNDU+CMSY10
@@ -15149,10 +16005,10 @@ endobj
 /StemV 40
 /XHeight 431
 /CharSet (/bar/bullet/lessequal/minus/periodcentered/radical)
-/FontFile 1451 0 R
+/FontFile 1584 0 R
 >>
 endobj
-1453 0 obj
+1586 0 obj
 <<
 /Length1 1396
 /Length2 5975
@@ -15196,7 +16052,7 @@ $H0
 v�r�r;���p�#UTsjc�f������i�
 endstream
 endobj
-1454 0 obj
+1587 0 obj
 <<
 /Type /FontDescriptor
 /FontName /WNQTFW+CMSY6
@@ -15209,10 +16065,10 @@ endobj
 /StemV 52
 /XHeight 431
 /CharSet (/minus/periodcentered)
-/FontFile 1453 0 R
+/FontFile 1586 0 R
 >>
 endobj
-1455 0 obj
+1588 0 obj
 <<
 /Length1 1397
 /Length2 5975
@@ -15256,7 +16112,7 @@ G^?
 m�����9�p���Ay���0������T�U�(��VG��7�;�%����WL��c�
��y�
 endstream
 endobj
-1456 0 obj
+1589 0 obj
 <<
 /Type /FontDescriptor
 /FontName /LRHHVH+CMSY7
@@ -15269,10 +16125,10 @@ endobj
 /StemV 49
 /XHeight 431
 /CharSet (/minus/periodcentered)
-/FontFile 1455 0 R
+/FontFile 1588 0 R
 >>
 endobj
-1457 0 obj
+1590 0 obj
 <<
 /Length1 1397
 /Length2 5973
@@ -15311,7 +16167,7 @@ J
 %���MV̋�s#ET�#����}�~��2�?w�*UjAo�����Y��M�Ms?K@q��%rȄ@���������Ϟϓ�Q�;4��&C�AO�+�j�o<��ۖ_N<�d���������.����<o�
 endstream
 endobj
-1458 0 obj
+1591 0 obj
 <<
 /Type /FontDescriptor
 /FontName /AJDEWR+CMSY8
@@ -15324,360 +16180,491 @@ endobj
 /StemV 46
 /XHeight 431
 /CharSet (/minus/periodcentered)
-/FontFile 1457 0 R
+/FontFile 1590 0 R
 >>
 endobj
-349 0 obj
+397 0 obj
 <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /QBKXLV+CMBX12
-/FontDescriptor 1426 0 R
+/BaseFont /EYHAMM+CMBX12
+/FontDescriptor 1557 0 R
 /FirstChar 11
 /LastChar 121
-/Widths 1423 0 R
+/Widths 1554 0 R
 >>
 endobj
-509 0 obj
+557 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /CUOUIH+CMEX10
-/FontDescriptor 1428 0 R
+/FontDescriptor 1559 0 R
 /FirstChar 0
 /LastChar 112
-/Widths 1416 0 R
+/Widths 1547 0 R
 >>
 endobj
-517 0 obj
+565 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /ZEKNPC+CMMI10
-/FontDescriptor 1430 0 R
+/FontDescriptor 1561 0 R
 /FirstChar 11
 /LastChar 122
-/Widths 1412 0 R
+/Widths 1543 0 R
 >>
 endobj
-398 0 obj
+446 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /ZCTCBY+CMMI12
-/FontDescriptor 1432 0 R
+/FontDescriptor 1563 0 R
 /FirstChar 11
 /LastChar 126
-/Widths 1418 0 R
+/Widths 1549 0 R
 >>
 endobj
-1179 0 obj
+1223 0 obj
 <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /RVPZIX+CMMI5
-/FontDescriptor 1434 0 R
+/BaseFont /RDLHZT+CMMI5
+/FontDescriptor 1565 0 R
 /FirstChar 105
-/LastChar 105
-/Widths 1408 0 R
+/LastChar 106
+/Widths 1539 0 R
 >>
 endobj
-512 0 obj
+560 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /GMGWMG+CMMI6
-/FontDescriptor 1436 0 R
+/FontDescriptor 1567 0 R
 /FirstChar 11
 /LastChar 116
-/Widths 1413 0 R
+/Widths 1544 0 R
 >>
 endobj
-528 0 obj
+576 0 obj
 <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /IUPJFG+CMMI7
-/FontDescriptor 1438 0 R
-/FirstChar 61
+/BaseFont /PIEBAN+CMMI7
+/FontDescriptor 1569 0 R
+/FirstChar 58
 /LastChar 120
-/Widths 1411 0 R
+/Widths 1542 0 R
 >>
 endobj
-410 0 obj
+458 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /YFMOEH+CMMI8
-/FontDescriptor 1440 0 R
+/FontDescriptor 1571 0 R
 /FirstChar 11
 /LastChar 120
-/Widths 1417 0 R
+/Widths 1548 0 R
 >>
 endobj
-387 0 obj
+435 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /BFVRQE+CMR10
-/FontDescriptor 1442 0 R
+/FontDescriptor 1573 0 R
 /FirstChar 11
 /LastChar 122
-/Widths 1419 0 R
+/Widths 1550 0 R
 >>
 endobj
-347 0 obj
+395 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /UUSBSP+CMR12
-/FontDescriptor 1444 0 R
+/FontDescriptor 1575 0 R
 /FirstChar 1
 /LastChar 122
-/Widths 1424 0 R
+/Widths 1555 0 R
 >>
 endobj
-510 0 obj
+1469 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/BaseFont /THGOAZ+CMR5
+/FontDescriptor 1577 0 R
+/FirstChar 50
+/LastChar 50
+/Widths 1538 0 R
+>>
+endobj
+558 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /YPSQTS+CMR6
-/FontDescriptor 1446 0 R
+/FontDescriptor 1579 0 R
 /FirstChar 49
 /LastChar 51
-/Widths 1415 0 R
+/Widths 1546 0 R
 >>
 endobj
-385 0 obj
+433 0 obj
 <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /IZMGNT+CMR7
-/FontDescriptor 1448 0 R
+/BaseFont /UAVCFG+CMR7
+/FontDescriptor 1581 0 R
 /FirstChar 40
-/LastChar 57
-/Widths 1420 0 R
+/LastChar 115
+/Widths 1551 0 R
 >>
 endobj
-383 0 obj
+431 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /DRPNXR+CMR8
-/FontDescriptor 1450 0 R
+/FontDescriptor 1583 0 R
 /FirstChar 8
 /LastChar 115
-/Widths 1421 0 R
+/Widths 1552 0 R
 >>
 endobj
-350 0 obj
+398 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /ZBHNDU+CMSY10
-/FontDescriptor 1452 0 R
+/FontDescriptor 1585 0 R
 /FirstChar 0
 /LastChar 112
-/Widths 1422 0 R
+/Widths 1553 0 R
 >>
 endobj
-890 0 obj
+938 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /WNQTFW+CMSY6
-/FontDescriptor 1454 0 R
+/FontDescriptor 1587 0 R
 /FirstChar 0
 /LastChar 1
-/Widths 1409 0 R
+/Widths 1540 0 R
 >>
 endobj
-562 0 obj
+610 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /LRHHVH+CMSY7
-/FontDescriptor 1456 0 R
+/FontDescriptor 1589 0 R
 /FirstChar 0
 /LastChar 1
-/Widths 1410 0 R
+/Widths 1541 0 R
 >>
 endobj
-511 0 obj
+559 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /AJDEWR+CMSY8
-/FontDescriptor 1458 0 R
+/FontDescriptor 1591 0 R
 /FirstChar 0
 /LastChar 1
-/Widths 1414 0 R
+/Widths 1545 0 R
 >>
 endobj
-351 0 obj
+399 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [342 0 R 354 0 R 380 0 R 395 0 R 406 0 R 426 0 R]
+/Parent 1592 0 R
+/Kids [390 0 R 402 0 R 428 0 R 443 0 R 454 0 R 474 0 R]
 >>
 endobj
-440 0 obj
+488 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [437 0 R 444 0 R 450 0 R 477 0 R 486 0 R 494 0 R]
+/Parent 1592 0 R
+/Kids [485 0 R 492 0 R 498 0 R 525 0 R 534 0 R 542 0 R]
 >>
 endobj
-519 0 obj
+567 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [506 0 R 522 0 R 531 0 R 538 0 R 547 0 R 557 0 R]
+/Parent 1592 0 R
+/Kids [554 0 R 570 0 R 579 0 R 586 0 R 595 0 R 605 0 R]
 >>
 endobj
-583 0 obj
+631 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [571 0 R 588 0 R 595 0 R 602 0 R 610 0 R 617 0 R]
+/Parent 1592 0 R
+/Kids [619 0 R 636 0 R 643 0 R 650 0 R 658 0 R 665 0 R]
 >>
 endobj
-629 0 obj
+677 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [624 0 R 632 0 R 639 0 R 646 0 R 653 0 R 662 0 R]
+/Parent 1592 0 R
+/Kids [672 0 R 680 0 R 687 0 R 694 0 R 701 0 R 710 0 R]
 >>
 endobj
-677 0 obj
+725 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1459 0 R
-/Kids [671 0 R 680 0 R 693 0 R 705 0 R 711 0 R 758 0 R]
+/Parent 1592 0 R
+/Kids [719 0 R 728 0 R 741 0 R 753 0 R 759 0 R 806 0 R]
 >>
 endobj
-768 0 obj
+816 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [763 0 R 816 0 R 823 0 R 867 0 R 877 0 R 886 0 R]
+/Parent 1593 0 R
+/Kids [811 0 R 864 0 R 871 0 R 915 0 R 925 0 R 934 0 R]
 >>
 endobj
-908 0 obj
+956 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [900 0 R 926 0 R 937 0 R 945 0 R 951 0 R 957 0 R]
+/Parent 1593 0 R
+/Kids [948 0 R 974 0 R 985 0 R 993 0 R 999 0 R 1005 0 R]
 >>
 endobj
-967 0 obj
+1015 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [963 0 R 971 0 R 979 0 R 988 0 R 1002 0 R 1013 0 R]
+/Parent 1593 0 R
+/Kids [1011 0 R 1019 0 R 1027 0 R 1036 0 R 1050 0 R 1061 0 R]
 >>
 endobj
-1024 0 obj
+1072 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [1020 0 R 1029 0 R 1037 0 R 1043 0 R 1049 0 R 1055 0 R]
+/Parent 1593 0 R
+/Kids [1068 0 R 1077 0 R 1085 0 R 1091 0 R 1097 0 R 1103 0 R]
 >>
 endobj
-1066 0 obj
+1114 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [1062 0 R 1068 0 R 1080 0 R 1112 0 R 1122 0 R 1168 0 R]
+/Parent 1593 0 R
+/Kids [1110 0 R 1124 0 R 1156 0 R 1166 0 R 1212 0 R 1233 0 R]
 >>
 endobj
-1197 0 obj
+1279 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1460 0 R
-/Kids [1189 0 R 1229 0 R 1280 0 R 1313 0 R 1322 0 R 1335 0 R]
+/Parent 1593 0 R
+/Kids [1272 0 R 1324 0 R 1357 0 R 1366 0 R 1379 0 R 1384 0 R]
 >>
 endobj
-1348 0 obj
+1399 0 obj
 <<
 /Type /Pages
 /Count 6
-/Parent 1461 0 R
-/Kids [1340 0 R 1351 0 R 1358 0 R 1365 0 R 1371 0 R 1378 0 R]
+/Parent 1594 0 R
+/Kids [1394 0 R 1402 0 R 1409 0 R 1415 0 R 1422 0 R 1432 0 R]
 >>
 endobj
-1394 0 obj
+1447 0 obj
+<<
+/Type /Pages
+/Count 6
+/Parent 1594 0 R
+/Kids [1441 0 R 1449 0 R 1461 0 R 1475 0 R 1482 0 R 1491 0 R]
+>>
+endobj
+1503 0 obj
 <<
 /Type /Pages
-/Count 3
-/Parent 1461 0 R
-/Kids [1388 0 R 1398 0 R 1405 0 R]
+/Count 6
+/Parent 1594 0 R
+/Kids [1496 0 R 1506 0 R 1514 0 R 1522 0 R 1529 0 R 1535 0 R]
 >>
 endobj
-1459 0 obj
+1592 0 obj
 <<
 /Type /Pages
 /Count 36
-/Parent 1462 0 R
-/Kids [351 0 R 440 0 R 519 0 R 583 0 R 629 0 R 677 0 R]
+/Parent 1595 0 R
+/Kids [399 0 R 488 0 R 567 0 R 631 0 R 677 0 R 725 0 R]
 >>
 endobj
-1460 0 obj
+1593 0 obj
 <<
 /Type /Pages
 /Count 36
-/Parent 1462 0 R
-/Kids [768 0 R 908 0 R 967 0 R 1024 0 R 1066 0 R 1197 0 R]
+/Parent 1595 0 R
+/Kids [816 0 R 956 0 R 1015 0 R 1072 0 R 1114 0 R 1279 0 R]
 >>
 endobj
-1461 0 obj
+1594 0 obj
 <<
 /Type /Pages
-/Count 9
-/Parent 1462 0 R
-/Kids [1348 0 R 1394 0 R]
+/Count 18
+/Parent 1595 0 R
+/Kids [1399 0 R 1447 0 R 1503 0 R]
 >>
 endobj
-1462 0 obj
+1595 0 obj
 <<
 /Type /Pages
-/Count 81
-/Kids [1459 0 R 1460 0 R 1461 0 R]
+/Count 90
+/Kids [1592 0 R 1593 0 R 1594 0 R]
 >>
 endobj
-1463 0 obj
+1596 0 obj
 <<
 /Type /Outlines
 /First 3 0 R
-/Last 339 0 R
-/Count 8
+/Last 387 0 R
+/Count 9
+>>
+endobj
+387 0 obj
+<<
+/Title 388 0 R
+/A 385 0 R
+/Parent 1596 0 R
+/Prev 339 0 R
+>>
+endobj
+383 0 obj
+<<
+/Title 384 0 R
+/A 381 0 R
+/Parent 375 0 R
+/Prev 379 0 R
+>>
+endobj
+379 0 obj
+<<
+/Title 380 0 R
+/A 377 0 R
+/Parent 375 0 R
+/Next 383 0 R
+>>
+endobj
+375 0 obj
+<<
+/Title 376 0 R
+/A 373 0 R
+/Parent 339 0 R
+/Prev 359 0 R
+/First 379 0 R
+/Last 383 0 R
+/Count -2
+>>
+endobj
+371 0 obj
+<<
+/Title 372 0 R
+/A 369 0 R
+/Parent 359 0 R
+/Prev 367 0 R
+>>
+endobj
+367 0 obj
+<<
+/Title 368 0 R
+/A 365 0 R
+/Parent 359 0 R
+/Prev 363 0 R
+/Next 371 0 R
+>>
+endobj
+363 0 obj
+<<
+/Title 364 0 R
+/A 361 0 R
+/Parent 359 0 R
+/Next 367 0 R
+>>
+endobj
+359 0 obj
+<<
+/Title 360 0 R
+/A 357 0 R
+/Parent 339 0 R
+/Prev 343 0 R
+/Next 375 0 R
+/First 363 0 R
+/Last 371 0 R
+/Count -3
+>>
+endobj
+355 0 obj
+<<
+/Title 356 0 R
+/A 353 0 R
+/Parent 343 0 R
+/Prev 351 0 R
+>>
+endobj
+351 0 obj
+<<
+/Title 352 0 R
+/A 349 0 R
+/Parent 343 0 R
+/Prev 347 0 R
+/Next 355 0 R
+>>
+endobj
+347 0 obj
+<<
+/Title 348 0 R
+/A 345 0 R
+/Parent 343 0 R
+/Next 351 0 R
+>>
+endobj
+343 0 obj
+<<
+/Title 344 0 R
+/A 341 0 R
+/Parent 339 0 R
+/Next 359 0 R
+/First 347 0 R
+/Last 355 0 R
+/Count -3
 >>
 endobj
 339 0 obj
 <<
 /Title 340 0 R
 /A 337 0 R
-/Parent 1463 0 R
-/Prev 291 0 R
+/Parent 1596 0 R
+/Prev 327 0 R
+/Next 387 0 R
+/First 343 0 R
+/Last 375 0 R
+/Count -3
 >>
 endobj
 335 0 obj
 <<
 /Title 336 0 R
 /A 333 0 R
-/Parent 323 0 R
+/Parent 327 0 R
 /Prev 331 0 R
 >>
 endobj
@@ -15685,8 +16672,7 @@ endobj
 <<
 /Title 332 0 R
 /A 329 0 R
-/Parent 323 0 R
-/Prev 327 0 R
+/Parent 327 0 R
 /Next 335 0 R
 >>
 endobj
@@ -15694,27 +16680,28 @@ endobj
 <<
 /Title 328 0 R
 /A 325 0 R
-/Parent 323 0 R
-/Next 331 0 R
+/Parent 1596 0 R
+/Prev 279 0 R
+/Next 339 0 R
+/First 331 0 R
+/Last 335 0 R
+/Count -2
 >>
 endobj
 323 0 obj
 <<
 /Title 324 0 R
 /A 321 0 R
-/Parent 291 0 R
+/Parent 311 0 R
 /Prev 319 0 R
-/First 327 0 R
-/Last 335 0 R
-/Count -3
 >>
 endobj
 319 0 obj
 <<
 /Title 320 0 R
 /A 317 0 R
-/Parent 291 0 R
-/Prev 299 0 R
+/Parent 311 0 R
+/Prev 315 0 R
 /Next 323 0 R
 >>
 endobj
@@ -15722,25 +16709,27 @@ endobj
 <<
 /Title 316 0 R
 /A 313 0 R
-/Parent 299 0 R
-/Prev 311 0 R
+/Parent 311 0 R
+/Next 319 0 R
 >>
 endobj
 311 0 obj
 <<
 /Title 312 0 R
 /A 309 0 R
-/Parent 299 0 R
+/Parent 279 0 R
 /Prev 307 0 R
-/Next 315 0 R
+/First 315 0 R
+/Last 323 0 R
+/Count -3
 >>
 endobj
 307 0 obj
 <<
 /Title 308 0 R
 /A 305 0 R
-/Parent 299 0 R
-/Prev 303 0 R
+/Parent 279 0 R
+/Prev 287 0 R
 /Next 311 0 R
 >>
 endobj
@@ -15748,27 +16737,25 @@ endobj
 <<
 /Title 304 0 R
 /A 301 0 R
-/Parent 299 0 R
-/Next 307 0 R
+/Parent 287 0 R
+/Prev 299 0 R
 >>
 endobj
 299 0 obj
 <<
 /Title 300 0 R
 /A 297 0 R
-/Parent 291 0 R
+/Parent 287 0 R
 /Prev 295 0 R
-/Next 319 0 R
-/First 303 0 R
-/Last 315 0 R
-/Count -4
+/Next 303 0 R
 >>
 endobj
 295 0 obj
 <<
 /Title 296 0 R
 /A 293 0 R
-/Parent 291 0 R
+/Parent 287 0 R
+/Prev 291 0 R
 /Next 299 0 R
 >>
 endobj
@@ -15776,28 +16763,27 @@ endobj
 <<
 /Title 292 0 R
 /A 289 0 R
-/Parent 1463 0 R
-/Prev 255 0 R
-/Next 339 0 R
-/First 295 0 R
-/Last 323 0 R
-/Count -4
+/Parent 287 0 R
+/Next 295 0 R
 >>
 endobj
 287 0 obj
 <<
 /Title 288 0 R
 /A 285 0 R
-/Parent 275 0 R
+/Parent 279 0 R
 /Prev 283 0 R
+/Next 307 0 R
+/First 291 0 R
+/Last 303 0 R
+/Count -4
 >>
 endobj
 283 0 obj
 <<
 /Title 284 0 R
 /A 281 0 R
-/Parent 275 0 R
-/Prev 279 0 R
+/Parent 279 0 R
 /Next 287 0 R
 >>
 endobj
@@ -15805,35 +16791,36 @@ endobj
 <<
 /Title 280 0 R
 /A 277 0 R
-/Parent 275 0 R
-/Next 283 0 R
+/Parent 1596 0 R
+/Prev 243 0 R
+/Next 327 0 R
+/First 283 0 R
+/Last 311 0 R
+/Count -4
 >>
 endobj
 275 0 obj
 <<
 /Title 276 0 R
 /A 273 0 R
-/Parent 255 0 R
-/Prev 259 0 R
-/First 279 0 R
-/Last 287 0 R
-/Count -3
+/Parent 263 0 R
+/Prev 271 0 R
 >>
 endobj
 271 0 obj
 <<
 /Title 272 0 R
 /A 269 0 R
-/Parent 259 0 R
+/Parent 263 0 R
 /Prev 267 0 R
+/Next 275 0 R
 >>
 endobj
 267 0 obj
 <<
 /Title 268 0 R
 /A 265 0 R
-/Parent 259 0 R
-/Prev 263 0 R
+/Parent 263 0 R
 /Next 271 0 R
 >>
 endobj
@@ -15841,39 +16828,36 @@ endobj
 <<
 /Title 264 0 R
 /A 261 0 R
-/Parent 259 0 R
-/Next 267 0 R
+/Parent 243 0 R
+/Prev 247 0 R
+/First 267 0 R
+/Last 275 0 R
+/Count -3
 >>
 endobj
 259 0 obj
 <<
 /Title 260 0 R
 /A 257 0 R
-/Parent 255 0 R
-/Next 275 0 R
-/First 263 0 R
-/Last 271 0 R
-/Count -3
+/Parent 247 0 R
+/Prev 255 0 R
 >>
 endobj
 255 0 obj
 <<
 /Title 256 0 R
 /A 253 0 R
-/Parent 1463 0 R
-/Prev 243 0 R
-/Next 291 0 R
-/First 259 0 R
-/Last 275 0 R
-/Count -2
+/Parent 247 0 R
+/Prev 251 0 R
+/Next 259 0 R
 >>
 endobj
 251 0 obj
 <<
 /Title 252 0 R
 /A 249 0 R
-/Parent 243 0 R
-/Prev 247 0 R
+/Parent 247 0 R
+/Next 255 0 R
 >>
 endobj
 247 0 obj
@@ -15881,18 +16865,21 @@ endobj
 /Title 248 0 R
 /A 245 0 R
 /Parent 243 0 R
-/Next 251 0 R
+/Next 263 0 R
+/First 251 0 R
+/Last 259 0 R
+/Count -3
 >>
 endobj
 243 0 obj
 <<
 /Title 244 0 R
 /A 241 0 R
-/Parent 1463 0 R
+/Parent 1596 0 R
 /Prev 207 0 R
-/Next 255 0 R
+/Next 279 0 R
 /First 247 0 R
-/Last 251 0 R
+/Last 263 0 R
 /Count -2
 >>
 endobj
@@ -15971,7 +16958,7 @@ endobj
 <<
 /Title 208 0 R
 /A 205 0 R
-/Parent 1463 0 R
+/Parent 1596 0 R
 /Prev 95 0 R
 /Next 243 0 R
 /First 211 0 R
@@ -16230,7 +17217,7 @@ endobj
 <<
 /Title 96 0 R
 /A 93 0 R
-/Parent 1463 0 R
+/Parent 1596 0 R
 /Prev 31 0 R
 /Next 207 0 R
 /First 99 0 R
@@ -16378,7 +17365,7 @@ endobj
 <<
 /Title 32 0 R
 /A 29 0 R
-/Parent 1463 0 R
+/Parent 1596 0 R
 /Prev 3 0 R
 /Next 95 0 R
 /First 35 0 R
@@ -16442,2065 +17429,2275 @@ endobj
 <<
 /Title 4 0 R
 /A 1 0 R
-/Parent 1463 0 R
+/Parent 1596 0 R
 /Next 31 0 R
 /First 7 0 R
 /Last 27 0 R
 /Count -6
 >>
 endobj
-1464 0 obj
+1597 0 obj
 <<
-/Names [(Doc-Start) 348 0 R (Hfootnote.1) 386 0 R (Hfootnote.10) 433 0 R (Hfootnote.100) 1174 0 R (Hfootnote.101) 1175 0 R (Hfootnote.102) 1176 0 R]
+/Names [(Doc-Start) 396 0 R (Hfootnote.1) 434 0 R (Hfootnote.10) 481 0 R (Hfootnote.100) 1218 0 R (Hfootnote.101) 1219 0 R (Hfootnote.102) 1220 0 R]
 /Limits [(Doc-Start) (Hfootnote.102)]
 >>
 endobj
-1465 0 obj
+1598 0 obj
 <<
-/Names [(Hfootnote.103) 1177 0 R (Hfootnote.104) 1178 0 R (Hfootnote.105) 1180 0 R (Hfootnote.106) 1181 0 R (Hfootnote.107) 1194 0 R (Hfootnote.108) 1195 0 R]
+/Names [(Hfootnote.103) 1221 0 R (Hfootnote.104) 1222 0 R (Hfootnote.105) 1224 0 R (Hfootnote.106) 1225 0 R (Hfootnote.107) 1238 0 R (Hfootnote.108) 1239 0 R]
 /Limits [(Hfootnote.103) (Hfootnote.108)]
 >>
 endobj
-1466 0 obj
+1599 0 obj
 <<
-/Names [(Hfootnote.109) 1196 0 R (Hfootnote.11) 434 0 R (Hfootnote.110) 1234 0 R (Hfootnote.111) 1235 0 R (Hfootnote.112) 1285 0 R (Hfootnote.113) 1316 0 R]
+/Names [(Hfootnote.109) 1240 0 R (Hfootnote.11) 482 0 R (Hfootnote.110) 1277 0 R (Hfootnote.111) 1278 0 R (Hfootnote.112) 1329 0 R (Hfootnote.113) 1360 0 R]
 /Limits [(Hfootnote.109) (Hfootnote.113)]
 >>
 endobj
-1467 0 obj
+1600 0 obj
 <<
-/Names [(Hfootnote.114) 1317 0 R (Hfootnote.115) 1326 0 R (Hfootnote.116) 1327 0 R (Hfootnote.117) 1328 0 R (Hfootnote.118) 1343 0 R (Hfootnote.119) 1344 0 R]
+/Names [(Hfootnote.114) 1361 0 R (Hfootnote.115) 1370 0 R (Hfootnote.116) 1371 0 R (Hfootnote.117) 1372 0 R (Hfootnote.118) 1387 0 R (Hfootnote.119) 1388 0 R]
 /Limits [(Hfootnote.114) (Hfootnote.119)]
 >>
 endobj
-1468 0 obj
+1601 0 obj
 <<
-/Names [(Hfootnote.12) 435 0 R (Hfootnote.120) 1345 0 R (Hfootnote.121) 1346 0 R (Hfootnote.122) 1347 0 R (Hfootnote.123) 1355 0 R (Hfootnote.124) 1362 0 R]
+/Names [(Hfootnote.12) 483 0 R (Hfootnote.120) 1389 0 R (Hfootnote.121) 1390 0 R (Hfootnote.122) 1391 0 R (Hfootnote.123) 1398 0 R (Hfootnote.124) 1406 0 R]
 /Limits [(Hfootnote.12) (Hfootnote.124)]
 >>
 endobj
-1469 0 obj
+1602 0 obj
 <<
-/Names [(Hfootnote.125) 1369 0 R (Hfootnote.126) 1382 0 R (Hfootnote.127) 1383 0 R (Hfootnote.128) 1392 0 R (Hfootnote.129) 1393 0 R (Hfootnote.13) 489 0 R]
+/Names [(Hfootnote.125) 1413 0 R (Hfootnote.126) 1426 0 R (Hfootnote.127) 1427 0 R (Hfootnote.128) 1436 0 R (Hfootnote.129) 1437 0 R (Hfootnote.13) 537 0 R]
 /Limits [(Hfootnote.125) (Hfootnote.13)]
 >>
 endobj
-1470 0 obj
+1603 0 obj
 <<
-/Names [(Hfootnote.130) 1401 0 R (Hfootnote.131) 1402 0 R (Hfootnote.132) 1403 0 R (Hfootnote.14) 490 0 R (Hfootnote.15) 498 0 R (Hfootnote.16) 499 0 R]
-/Limits [(Hfootnote.130) (Hfootnote.16)]
+/Names [(Hfootnote.130) 1444 0 R (Hfootnote.131) 1445 0 R (Hfootnote.132) 1446 0 R (Hfootnote.133) 1464 0 R (Hfootnote.134) 1465 0 R (Hfootnote.135) 1466 0 R]
+/Limits [(Hfootnote.130) (Hfootnote.135)]
 >>
 endobj
-1471 0 obj
+1604 0 obj
+<<
+/Names [(Hfootnote.136) 1467 0 R (Hfootnote.137) 1468 0 R (Hfootnote.138) 1470 0 R (Hfootnote.139) 1471 0 R (Hfootnote.14) 538 0 R (Hfootnote.140) 1472 0 R]
+/Limits [(Hfootnote.136) (Hfootnote.140)]
+>>
+endobj
+1605 0 obj
 <<
-/Names [(Hfootnote.17) 513 0 R (Hfootnote.18) 514 0 R (Hfootnote.19) 515 0 R (Hfootnote.2) 388 0 R (Hfootnote.20) 516 0 R (Hfootnote.21) 518 0 R]
+/Names [(Hfootnote.141) 1479 0 R (Hfootnote.142) 1486 0 R (Hfootnote.143) 1500 0 R (Hfootnote.144) 1501 0 R (Hfootnote.145) 1502 0 R (Hfootnote.146) 1517 0 R]
+/Limits [(Hfootnote.141) (Hfootnote.146)]
+>>
+endobj
+1606 0 obj
+<<
+/Names [(Hfootnote.147) 1518 0 R (Hfootnote.148) 1519 0 R (Hfootnote.149) 1520 0 R (Hfootnote.15) 546 0 R (Hfootnote.150) 1533 0 R (Hfootnote.16) 547 0 R]
+/Limits [(Hfootnote.147) (Hfootnote.16)]
+>>
+endobj
+1607 0 obj
+<<
+/Names [(Hfootnote.17) 561 0 R (Hfootnote.18) 562 0 R (Hfootnote.19) 563 0 R (Hfootnote.2) 436 0 R (Hfootnote.20) 564 0 R (Hfootnote.21) 566 0 R]
 /Limits [(Hfootnote.17) (Hfootnote.21)]
 >>
 endobj
-1472 0 obj
+1608 0 obj
 <<
-/Names [(Hfootnote.22) 526 0 R (Hfootnote.23) 527 0 R (Hfootnote.24) 535 0 R (Hfootnote.25) 542 0 R (Hfootnote.26) 551 0 R (Hfootnote.27) 552 0 R]
+/Names [(Hfootnote.22) 574 0 R (Hfootnote.23) 575 0 R (Hfootnote.24) 583 0 R (Hfootnote.25) 590 0 R (Hfootnote.26) 599 0 R (Hfootnote.27) 600 0 R]
 /Limits [(Hfootnote.22) (Hfootnote.27)]
 >>
 endobj
-1473 0 obj
+1609 0 obj
 <<
-/Names [(Hfootnote.28) 553 0 R (Hfootnote.29) 560 0 R (Hfootnote.3) 389 0 R (Hfootnote.30) 561 0 R (Hfootnote.31) 576 0 R (Hfootnote.32) 577 0 R]
+/Names [(Hfootnote.28) 601 0 R (Hfootnote.29) 608 0 R (Hfootnote.3) 437 0 R (Hfootnote.30) 609 0 R (Hfootnote.31) 624 0 R (Hfootnote.32) 625 0 R]
 /Limits [(Hfootnote.28) (Hfootnote.32)]
 >>
 endobj
-1474 0 obj
+1610 0 obj
 <<
-/Names [(Hfootnote.33) 578 0 R (Hfootnote.34) 579 0 R (Hfootnote.35) 580 0 R (Hfootnote.36) 581 0 R (Hfootnote.37) 582 0 R (Hfootnote.38) 591 0 R]
+/Names [(Hfootnote.33) 626 0 R (Hfootnote.34) 627 0 R (Hfootnote.35) 628 0 R (Hfootnote.36) 629 0 R (Hfootnote.37) 630 0 R (Hfootnote.38) 639 0 R]
 /Limits [(Hfootnote.33) (Hfootnote.38)]
 >>
 endobj
-1475 0 obj
+1611 0 obj
 <<
-/Names [(Hfootnote.39) 592 0 R (Hfootnote.4) 399 0 R (Hfootnote.40) 593 0 R (Hfootnote.41) 606 0 R (Hfootnote.42) 607 0 R (Hfootnote.43) 614 0 R]
+/Names [(Hfootnote.39) 640 0 R (Hfootnote.4) 447 0 R (Hfootnote.40) 641 0 R (Hfootnote.41) 654 0 R (Hfootnote.42) 655 0 R (Hfootnote.43) 662 0 R]
 /Limits [(Hfootnote.39) (Hfootnote.43)]
 >>
 endobj
-1476 0 obj
+1612 0 obj
 <<
-/Names [(Hfootnote.44) 621 0 R (Hfootnote.45) 636 0 R (Hfootnote.46) 637 0 R (Hfootnote.47) 650 0 R (Hfootnote.48) 651 0 R (Hfootnote.49) 666 0 R]
+/Names [(Hfootnote.44) 669 0 R (Hfootnote.45) 684 0 R (Hfootnote.46) 685 0 R (Hfootnote.47) 698 0 R (Hfootnote.48) 699 0 R (Hfootnote.49) 714 0 R]
 /Limits [(Hfootnote.44) (Hfootnote.49)]
 >>
 endobj
-1477 0 obj
+1613 0 obj
 <<
-/Names [(Hfootnote.5) 400 0 R (Hfootnote.50) 667 0 R (Hfootnote.51) 668 0 R (Hfootnote.52) 676 0 R (Hfootnote.53) 688 0 R (Hfootnote.54) 700 0 R]
+/Names [(Hfootnote.5) 448 0 R (Hfootnote.50) 715 0 R (Hfootnote.51) 716 0 R (Hfootnote.52) 724 0 R (Hfootnote.53) 736 0 R (Hfootnote.54) 748 0 R]
 /Limits [(Hfootnote.5) (Hfootnote.54)]
 >>
 endobj
-1478 0 obj
+1614 0 obj
 <<
-/Names [(Hfootnote.55) 701 0 R (Hfootnote.56) 708 0 R (Hfootnote.57) 709 0 R (Hfootnote.58) 829 0 R (Hfootnote.59) 830 0 R (Hfootnote.6) 429 0 R]
+/Names [(Hfootnote.55) 749 0 R (Hfootnote.56) 756 0 R (Hfootnote.57) 757 0 R (Hfootnote.58) 877 0 R (Hfootnote.59) 878 0 R (Hfootnote.6) 477 0 R]
 /Limits [(Hfootnote.55) (Hfootnote.6)]
 >>
 endobj
-1479 0 obj
+1615 0 obj
 <<
-/Names [(Hfootnote.60) 872 0 R (Hfootnote.61) 873 0 R (Hfootnote.62) 874 0 R (Hfootnote.63) 881 0 R (Hfootnote.64) 882 0 R (Hfootnote.65) 892 0 R]
+/Names [(Hfootnote.60) 920 0 R (Hfootnote.61) 921 0 R (Hfootnote.62) 922 0 R (Hfootnote.63) 929 0 R (Hfootnote.64) 930 0 R (Hfootnote.65) 940 0 R]
 /Limits [(Hfootnote.60) (Hfootnote.65)]
 >>
 endobj
-1480 0 obj
+1616 0 obj
 <<
-/Names [(Hfootnote.66) 893 0 R (Hfootnote.67) 905 0 R (Hfootnote.68) 906 0 R (Hfootnote.69) 907 0 R (Hfootnote.7) 430 0 R (Hfootnote.70) 934 0 R]
+/Names [(Hfootnote.66) 941 0 R (Hfootnote.67) 953 0 R (Hfootnote.68) 954 0 R (Hfootnote.69) 955 0 R (Hfootnote.7) 478 0 R (Hfootnote.70) 982 0 R]
 /Limits [(Hfootnote.66) (Hfootnote.70)]
 >>
 endobj
-1481 0 obj
+1617 0 obj
 <<
-/Names [(Hfootnote.71) 941 0 R (Hfootnote.72) 942 0 R (Hfootnote.73) 948 0 R (Hfootnote.74) 955 0 R (Hfootnote.75) 975 0 R (Hfootnote.76) 976 0 R]
+/Names [(Hfootnote.71) 989 0 R (Hfootnote.72) 990 0 R (Hfootnote.73) 996 0 R (Hfootnote.74) 1003 0 R (Hfootnote.75) 1023 0 R (Hfootnote.76) 1024 0 R]
 /Limits [(Hfootnote.71) (Hfootnote.76)]
 >>
 endobj
-1482 0 obj
+1618 0 obj
 <<
-/Names [(Hfootnote.77) 983 0 R (Hfootnote.78) 992 0 R (Hfootnote.79) 993 0 R (Hfootnote.8) 431 0 R (Hfootnote.80) 994 0 R (Hfootnote.81) 1008 0 R]
+/Names [(Hfootnote.77) 1031 0 R (Hfootnote.78) 1040 0 R (Hfootnote.79) 1041 0 R (Hfootnote.8) 479 0 R (Hfootnote.80) 1042 0 R (Hfootnote.81) 1056 0 R]
 /Limits [(Hfootnote.77) (Hfootnote.81)]
 >>
 endobj
-1483 0 obj
+1619 0 obj
 <<
-/Names [(Hfootnote.82) 1009 0 R (Hfootnote.83) 1010 0 R (Hfootnote.84) 1011 0 R (Hfootnote.85) 1017 0 R (Hfootnote.86) 1018 0 R (Hfootnote.87) 1033 0 R]
+/Names [(Hfootnote.82) 1057 0 R (Hfootnote.83) 1058 0 R (Hfootnote.84) 1059 0 R (Hfootnote.85) 1065 0 R (Hfootnote.86) 1066 0 R (Hfootnote.87) 1081 0 R]
 /Limits [(Hfootnote.82) (Hfootnote.87)]
 >>
 endobj
-1484 0 obj
+1620 0 obj
 <<
-/Names [(Hfootnote.88) 1034 0 R (Hfootnote.89) 1035 0 R (Hfootnote.9) 432 0 R (Hfootnote.90) 1060 0 R (Hfootnote.91) 1085 0 R (Hfootnote.92) 1086 0 R]
+/Names [(Hfootnote.88) 1082 0 R (Hfootnote.89) 1083 0 R (Hfootnote.9) 480 0 R (Hfootnote.90) 1108 0 R (Hfootnote.91) 1129 0 R (Hfootnote.92) 1130 0 R]
 /Limits [(Hfootnote.88) (Hfootnote.92)]
 >>
 endobj
-1485 0 obj
+1621 0 obj
 <<
-/Names [(Hfootnote.93) 1115 0 R (Hfootnote.94) 1116 0 R (Hfootnote.95) 1117 0 R (Hfootnote.96) 1118 0 R (Hfootnote.97) 1119 0 R (Hfootnote.98) 1127 0 R]
+/Names [(Hfootnote.93) 1159 0 R (Hfootnote.94) 1160 0 R (Hfootnote.95) 1161 0 R (Hfootnote.96) 1162 0 R (Hfootnote.97) 1163 0 R (Hfootnote.98) 1171 0 R]
 /Limits [(Hfootnote.93) (Hfootnote.98)]
 >>
 endobj
-1486 0 obj
+1622 0 obj
 <<
-/Names [(Hfootnote.99) 1173 0 R (equation.2.1) 574 0 R (equation.2.2) 575 0 R (equation.3.1) 686 0 R (equation.3.10) 929 0 R (equation.3.11) 930 0 R]
+/Names [(Hfootnote.99) 1217 0 R (equation.2.1) 622 0 R (equation.2.2) 623 0 R (equation.3.1) 734 0 R (equation.3.10) 977 0 R (equation.3.11) 978 0 R]
 /Limits [(Hfootnote.99) (equation.3.11)]
 >>
 endobj
-1487 0 obj
+1623 0 obj
 <<
-/Names [(equation.3.12) 931 0 R (equation.3.13) 932 0 R (equation.3.2) 687 0 R (equation.3.3) 696 0 R (equation.3.4) 697 0 R (equation.3.5) 698 0 R]
+/Names [(equation.3.12) 979 0 R (equation.3.13) 980 0 R (equation.3.2) 735 0 R (equation.3.3) 744 0 R (equation.3.4) 745 0 R (equation.3.5) 746 0 R]
 /Limits [(equation.3.12) (equation.3.5)]
 >>
 endobj
-1488 0 obj
+1624 0 obj
 <<
-/Names [(equation.3.6) 699 0 R (equation.3.7) 826 0 R (equation.3.8) 870 0 R (equation.3.9) 889 0 R (equation.4.1) 1005 0 R (equation.4.2) 1006 0 R]
+/Names [(equation.3.6) 747 0 R (equation.3.7) 874 0 R (equation.3.8) 918 0 R (equation.3.9) 937 0 R (equation.4.1) 1053 0 R (equation.4.2) 1054 0 R]
 /Limits [(equation.3.6) (equation.4.2)]
 >>
 endobj
-1489 0 obj
+1625 0 obj
 <<
-/Names [(equation.4.3) 1007 0 R (equation.4.4) 1058 0 R (equation.6.1) 1171 0 R (equation.6.2) 1172 0 R (figure.caption.1) 357 0 R (figure.caption.10) 534 0 R]
+/Names [(equation.4.3) 1055 0 R (equation.4.4) 1106 0 R (equation.5.1) 1215 0 R (equation.5.2) 1216 0 R (figure.caption.1) 405 0 R (figure.caption.10) 582 0 R]
 /Limits [(equation.4.3) (figure.caption.10)]
 >>
 endobj
-1490 0 obj
+1626 0 obj
 <<
-/Names [(figure.caption.11) 541 0 R (figure.caption.12) 550 0 R (figure.caption.13) 598 0 R (figure.caption.14) 605 0 R (figure.caption.15) 613 0 R (figure.caption.16) 620 0 R]
+/Names [(figure.caption.11) 589 0 R (figure.caption.12) 598 0 R (figure.caption.13) 646 0 R (figure.caption.14) 653 0 R (figure.caption.15) 661 0 R (figure.caption.16) 668 0 R]
 /Limits [(figure.caption.11) (figure.caption.16)]
 >>
 endobj
-1491 0 obj
+1627 0 obj
 <<
-/Names [(figure.caption.17) 627 0 R (figure.caption.18) 628 0 R (figure.caption.19) 635 0 R (figure.caption.2) 384 0 R (figure.caption.20) 642 0 R (figure.caption.21) 649 0 R]
+/Names [(figure.caption.17) 675 0 R (figure.caption.18) 676 0 R (figure.caption.19) 683 0 R (figure.caption.2) 432 0 R (figure.caption.20) 690 0 R (figure.caption.21) 697 0 R]
 /Limits [(figure.caption.17) (figure.caption.21)]
 >>
 endobj
-1492 0 obj
+1628 0 obj
 <<
-/Names [(figure.caption.22) 656 0 R (figure.caption.23) 657 0 R (figure.caption.24) 665 0 R (figure.caption.3) 409 0 R (figure.caption.30) 714 0 R (figure.caption.31) 761 0 R]
+/Names [(figure.caption.22) 704 0 R (figure.caption.23) 705 0 R (figure.caption.24) 713 0 R (figure.caption.3) 457 0 R (figure.caption.30) 762 0 R (figure.caption.31) 809 0 R]
 /Limits [(figure.caption.22) (figure.caption.31)]
 >>
 endobj
-1493 0 obj
+1629 0 obj
 <<
-/Names [(figure.caption.32) 766 0 R (figure.caption.33) 819 0 R (figure.caption.34) 827 0 R (figure.caption.35) 871 0 R (figure.caption.36) 880 0 R (figure.caption.37) 891 0 R]
+/Names [(figure.caption.32) 814 0 R (figure.caption.33) 867 0 R (figure.caption.34) 875 0 R (figure.caption.35) 919 0 R (figure.caption.36) 928 0 R (figure.caption.37) 939 0 R]
 /Limits [(figure.caption.32) (figure.caption.37)]
 >>
 endobj
-1494 0 obj
+1630 0 obj
 <<
-/Names [(figure.caption.38) 903 0 R (figure.caption.39) 933 0 R (figure.caption.4) 447 0 R (figure.caption.40) 940 0 R (figure.caption.41) 954 0 R (figure.caption.42) 960 0 R]
+/Names [(figure.caption.38) 951 0 R (figure.caption.39) 981 0 R (figure.caption.4) 495 0 R (figure.caption.40) 988 0 R (figure.caption.41) 1002 0 R (figure.caption.42) 1008 0 R]
 /Limits [(figure.caption.38) (figure.caption.42)]
 >>
 endobj
-1495 0 obj
+1631 0 obj
 <<
-/Names [(figure.caption.43) 961 0 R (figure.caption.44) 966 0 R (figure.caption.45) 974 0 R (figure.caption.46) 982 0 R (figure.caption.47) 991 0 R (figure.caption.48) 1016 0 R]
+/Names [(figure.caption.43) 1009 0 R (figure.caption.44) 1014 0 R (figure.caption.45) 1022 0 R (figure.caption.46) 1030 0 R (figure.caption.47) 1039 0 R (figure.caption.48) 1064 0 R]
 /Limits [(figure.caption.43) (figure.caption.48)]
 >>
 endobj
-1496 0 obj
+1632 0 obj
 <<
-/Names [(figure.caption.49) 1023 0 R (figure.caption.5) 453 0 R (figure.caption.50) 1032 0 R (figure.caption.51) 1040 0 R (figure.caption.52) 1041 0 R (figure.caption.53) 1046 0 R]
+/Names [(figure.caption.49) 1071 0 R (figure.caption.5) 501 0 R (figure.caption.50) 1080 0 R (figure.caption.51) 1088 0 R (figure.caption.52) 1089 0 R (figure.caption.53) 1094 0 R]
 /Limits [(figure.caption.49) (figure.caption.53)]
 >>
 endobj
-1497 0 obj
+1633 0 obj
 <<
-/Names [(figure.caption.54) 1052 0 R (figure.caption.55) 1053 0 R (figure.caption.56) 1059 0 R (figure.caption.57) 1065 0 R (figure.caption.58) 1083 0 R (figure.caption.59) 1125 0 R]
+/Names [(figure.caption.54) 1100 0 R (figure.caption.55) 1101 0 R (figure.caption.56) 1107 0 R (figure.caption.57) 1113 0 R (figure.caption.58) 1127 0 R (figure.caption.59) 1169 0 R]
 /Limits [(figure.caption.54) (figure.caption.59)]
 >>
 endobj
-1498 0 obj
+1634 0 obj
 <<
-/Names [(figure.caption.6) 480 0 R (figure.caption.60) 1192 0 R (figure.caption.61) 1232 0 R (figure.caption.62) 1283 0 R (figure.caption.63) 1325 0 R (figure.caption.64) 1338 0 R]
+/Names [(figure.caption.6) 528 0 R (figure.caption.60) 1236 0 R (figure.caption.61) 1275 0 R (figure.caption.62) 1327 0 R (figure.caption.63) 1369 0 R (figure.caption.64) 1382 0 R]
 /Limits [(figure.caption.6) (figure.caption.64)]
 >>
 endobj
-1499 0 obj
+1635 0 obj
 <<
-/Names [(figure.caption.65) 1354 0 R (figure.caption.66) 1361 0 R (figure.caption.67) 1368 0 R (figure.caption.68) 1374 0 R (figure.caption.69) 1381 0 R (figure.caption.7) 481 0 R]
+/Names [(figure.caption.65) 1397 0 R (figure.caption.66) 1405 0 R (figure.caption.67) 1412 0 R (figure.caption.68) 1418 0 R (figure.caption.69) 1425 0 R (figure.caption.7) 529 0 R]
 /Limits [(figure.caption.65) (figure.caption.7)]
 >>
 endobj
-1500 0 obj
+1636 0 obj
 <<
-/Names [(figure.caption.70) 1391 0 R (figure.caption.8) 497 0 R (figure.caption.9) 525 0 R (page.1) 346 0 R (page.10) 479 0 R (page.11) 488 0 R]
-/Limits [(figure.caption.70) (page.11)]
+/Names [(figure.caption.70) 1435 0 R (figure.caption.71) 1478 0 R (figure.caption.72) 1485 0 R (figure.caption.73) 1494 0 R (figure.caption.74) 1499 0 R (figure.caption.75) 1509 0 R]
+/Limits [(figure.caption.70) (figure.caption.75)]
 >>
 endobj
-1501 0 obj
+1637 0 obj
 <<
-/Names [(page.12) 496 0 R (page.13) 508 0 R (page.14) 524 0 R (page.15) 533 0 R (page.16) 540 0 R (page.17) 549 0 R]
-/Limits [(page.12) (page.17)]
+/Names [(figure.caption.76) 1525 0 R (figure.caption.77) 1526 0 R (figure.caption.78) 1532 0 R (figure.caption.8) 545 0 R (figure.caption.9) 573 0 R (page.1) 394 0 R]
+/Limits [(figure.caption.76) (page.1)]
 >>
 endobj
-1502 0 obj
+1638 0 obj
 <<
-/Names [(page.18) 559 0 R (page.19) 573 0 R (page.2) 356 0 R (page.20) 590 0 R (page.21) 597 0 R (page.22) 604 0 R]
-/Limits [(page.18) (page.22)]
+/Names [(page.10) 527 0 R (page.11) 536 0 R (page.12) 544 0 R (page.13) 556 0 R (page.14) 572 0 R (page.15) 581 0 R]
+/Limits [(page.10) (page.15)]
 >>
 endobj
-1503 0 obj
+1639 0 obj
 <<
-/Names [(page.23) 612 0 R (page.24) 619 0 R (page.25) 626 0 R (page.26) 634 0 R (page.27) 641 0 R (page.28) 648 0 R]
-/Limits [(page.23) (page.28)]
+/Names [(page.16) 588 0 R (page.17) 597 0 R (page.18) 607 0 R (page.19) 621 0 R (page.2) 404 0 R (page.20) 638 0 R]
+/Limits [(page.16) (page.20)]
 >>
 endobj
-1504 0 obj
+1640 0 obj
 <<
-/Names [(page.29) 655 0 R (page.3) 382 0 R (page.30) 664 0 R (page.31) 673 0 R (page.32) 682 0 R (page.33) 695 0 R]
-/Limits [(page.29) (page.33)]
+/Names [(page.21) 645 0 R (page.22) 652 0 R (page.23) 660 0 R (page.24) 667 0 R (page.25) 674 0 R (page.26) 682 0 R]
+/Limits [(page.21) (page.26)]
 >>
 endobj
-1505 0 obj
+1641 0 obj
 <<
-/Names [(page.34) 707 0 R (page.35) 713 0 R (page.36) 760 0 R (page.37) 765 0 R (page.38) 818 0 R (page.39) 825 0 R]
-/Limits [(page.34) (page.39)]
+/Names [(page.27) 689 0 R (page.28) 696 0 R (page.29) 703 0 R (page.3) 430 0 R (page.30) 712 0 R (page.31) 721 0 R]
+/Limits [(page.27) (page.31)]
 >>
 endobj
-1506 0 obj
+1642 0 obj
 <<
-/Names [(page.4) 397 0 R (page.40) 869 0 R (page.41) 879 0 R (page.42) 888 0 R (page.43) 902 0 R (page.44) 928 0 R]
-/Limits [(page.4) (page.44)]
+/Names [(page.32) 730 0 R (page.33) 743 0 R (page.34) 755 0 R (page.35) 761 0 R (page.36) 808 0 R (page.37) 813 0 R]
+/Limits [(page.32) (page.37)]
 >>
 endobj
-1507 0 obj
+1643 0 obj
 <<
-/Names [(page.45) 939 0 R (page.46) 947 0 R (page.47) 953 0 R (page.48) 959 0 R (page.49) 965 0 R (page.5) 408 0 R]
-/Limits [(page.45) (page.5)]
+/Names [(page.38) 866 0 R (page.39) 873 0 R (page.4) 445 0 R (page.40) 917 0 R (page.41) 927 0 R (page.42) 936 0 R]
+/Limits [(page.38) (page.42)]
 >>
 endobj
-1508 0 obj
+1644 0 obj
 <<
-/Names [(page.50) 973 0 R (page.51) 981 0 R (page.52) 990 0 R (page.53) 1004 0 R (page.54) 1015 0 R (page.55) 1022 0 R]
-/Limits [(page.50) (page.55)]
+/Names [(page.43) 950 0 R (page.44) 976 0 R (page.45) 987 0 R (page.46) 995 0 R (page.47) 1001 0 R (page.48) 1007 0 R]
+/Limits [(page.43) (page.48)]
 >>
 endobj
-1509 0 obj
+1645 0 obj
 <<
-/Names [(page.56) 1031 0 R (page.57) 1039 0 R (page.58) 1045 0 R (page.59) 1051 0 R (page.6) 428 0 R (page.60) 1057 0 R]
-/Limits [(page.56) (page.60)]
+/Names [(page.49) 1013 0 R (page.5) 456 0 R (page.50) 1021 0 R (page.51) 1029 0 R (page.52) 1038 0 R (page.53) 1052 0 R]
+/Limits [(page.49) (page.53)]
 >>
 endobj
-1510 0 obj
+1646 0 obj
 <<
-/Names [(page.61) 1064 0 R (page.62) 1070 0 R (page.63) 1082 0 R (page.64) 1114 0 R (page.65) 1124 0 R (page.66) 1170 0 R]
-/Limits [(page.61) (page.66)]
+/Names [(page.54) 1063 0 R (page.55) 1070 0 R (page.56) 1079 0 R (page.57) 1087 0 R (page.58) 1093 0 R (page.59) 1099 0 R]
+/Limits [(page.54) (page.59)]
 >>
 endobj
-1511 0 obj
+1647 0 obj
 <<
-/Names [(page.67) 1191 0 R (page.68) 1231 0 R (page.69) 1282 0 R (page.7) 439 0 R (page.70) 1315 0 R (page.71) 1324 0 R]
-/Limits [(page.67) (page.71)]
+/Names [(page.6) 476 0 R (page.60) 1105 0 R (page.61) 1112 0 R (page.62) 1126 0 R (page.63) 1158 0 R (page.64) 1168 0 R]
+/Limits [(page.6) (page.64)]
 >>
 endobj
-1512 0 obj
+1648 0 obj
 <<
-/Names [(page.72) 1337 0 R (page.73) 1342 0 R (page.74) 1353 0 R (page.75) 1360 0 R (page.76) 1367 0 R (page.77) 1373 0 R]
-/Limits [(page.72) (page.77)]
+/Names [(page.65) 1214 0 R (page.66) 1235 0 R (page.67) 1274 0 R (page.68) 1326 0 R (page.69) 1359 0 R (page.7) 487 0 R]
+/Limits [(page.65) (page.7)]
 >>
 endobj
-1513 0 obj
+1649 0 obj
 <<
-/Names [(page.78) 1380 0 R (page.79) 1390 0 R (page.8) 446 0 R (page.80) 1400 0 R (page.81) 1407 0 R (page.9) 452 0 R]
-/Limits [(page.78) (page.9)]
+/Names [(page.70) 1368 0 R (page.71) 1381 0 R (page.72) 1386 0 R (page.73) 1396 0 R (page.74) 1404 0 R (page.75) 1411 0 R]
+/Limits [(page.70) (page.75)]
 >>
 endobj
-1514 0 obj
+1650 0 obj
 <<
-/Names [(section.1) 2 0 R (section.2) 30 0 R (section.3) 94 0 R (section.4) 206 0 R (section.5) 242 0 R (section.6) 254 0 R]
-/Limits [(section.1) (section.6)]
+/Names [(page.76) 1417 0 R (page.77) 1424 0 R (page.78) 1434 0 R (page.79) 1443 0 R (page.8) 494 0 R (page.80) 1451 0 R]
+/Limits [(page.76) (page.80)]
 >>
 endobj
-1515 0 obj
+1651 0 obj
 <<
-/Names [(section.7) 290 0 R (section.8) 338 0 R (subsection.1.1) 6 0 R (subsection.1.2) 10 0 R (subsection.1.3) 14 0 R (subsection.1.4) 18 0 R]
-/Limits [(section.7) (subsection.1.4)]
+/Names [(page.81) 1463 0 R (page.82) 1477 0 R (page.83) 1484 0 R (page.84) 1493 0 R (page.85) 1498 0 R (page.86) 1508 0 R]
+/Limits [(page.81) (page.86)]
 >>
 endobj
-1516 0 obj
+1652 0 obj
+<<
+/Names [(page.87) 1516 0 R (page.88) 1524 0 R (page.89) 1531 0 R (page.9) 500 0 R (page.90) 1537 0 R (section.1) 2 0 R]
+/Limits [(page.87) (section.1)]
+>>
+endobj
+1653 0 obj
+<<
+/Names [(section.2) 30 0 R (section.3) 94 0 R (section.4) 206 0 R (section.5) 242 0 R (section.6) 278 0 R (section.7) 326 0 R]
+/Limits [(section.2) (section.7)]
+>>
+endobj
+1654 0 obj
+<<
+/Names [(section.8) 338 0 R (section.9) 386 0 R (subsection.1.1) 6 0 R (subsection.1.2) 10 0 R (subsection.1.3) 14 0 R (subsection.1.4) 18 0 R]
+/Limits [(section.8) (subsection.1.4)]
+>>
+endobj
+1655 0 obj
 <<
 /Names [(subsection.1.5) 22 0 R (subsection.1.6) 26 0 R (subsection.2.1) 34 0 R (subsection.2.2) 50 0 R (subsection.2.3) 70 0 R (subsection.2.4) 74 0 R]
 /Limits [(subsection.1.5) (subsection.2.4)]
 >>
 endobj
-1517 0 obj
+1656 0 obj
 <<
 /Names [(subsection.2.5) 90 0 R (subsection.3.1) 98 0 R (subsection.3.2) 110 0 R (subsection.3.3) 138 0 R (subsection.3.4) 150 0 R (subsection.3.5) 162 0 R]
 /Limits [(subsection.2.5) (subsection.3.5)]
 >>
 endobj
-1518 0 obj
+1657 0 obj
 <<
 /Names [(subsection.3.6) 166 0 R (subsection.3.7) 178 0 R (subsection.3.8) 198 0 R (subsection.3.9) 202 0 R (subsection.4.1) 210 0 R (subsection.4.2) 214 0 R]
 /Limits [(subsection.3.6) (subsection.4.2)]
 >>
 endobj
-1519 0 obj
+1658 0 obj
 <<
-/Names [(subsection.4.3) 218 0 R (subsection.4.4) 238 0 R (subsection.5.1) 246 0 R (subsection.5.2) 250 0 R (subsection.6.1) 258 0 R (subsection.6.2) 274 0 R]
+/Names [(subsection.4.3) 218 0 R (subsection.4.4) 238 0 R (subsection.5.1) 246 0 R (subsection.5.2) 262 0 R (subsection.6.1) 282 0 R (subsection.6.2) 286 0 R]
 /Limits [(subsection.4.3) (subsection.6.2)]
 >>
 endobj
-1520 0 obj
+1659 0 obj
 <<
-/Names [(subsection.7.1) 294 0 R (subsection.7.2) 298 0 R (subsection.7.3) 318 0 R (subsection.7.4) 322 0 R (subsubsection.2.1.1) 38 0 R (subsubsection.2.1.2) 42 0 R]
-/Limits [(subsection.7.1) (subsubsection.2.1.2)]
+/Names [(subsection.6.3) 306 0 R (subsection.6.4) 310 0 R (subsection.7.1) 330 0 R (subsection.7.2) 334 0 R (subsection.8.1) 342 0 R (subsection.8.2) 358 0 R]
+/Limits [(subsection.6.3) (subsection.8.2)]
 >>
 endobj
-1521 0 obj
+1660 0 obj
 <<
-/Names [(subsubsection.2.1.3) 46 0 R (subsubsection.2.2.1) 54 0 R (subsubsection.2.2.2) 58 0 R (subsubsection.2.2.3) 62 0 R (subsubsection.2.2.4) 66 0 R (subsubsection.2.4.1) 78 0 R]
-/Limits [(subsubsection.2.1.3) (subsubsection.2.4.1)]
+/Names [(subsection.8.3) 374 0 R (subsubsection.2.1.1) 38 0 R (subsubsection.2.1.2) 42 0 R (subsubsection.2.1.3) 46 0 R (subsubsection.2.2.1) 54 0 R (subsubsection.2.2.2) 58 0 R]
+/Limits [(subsection.8.3) (subsubsection.2.2.2)]
 >>
 endobj
-1522 0 obj
+1661 0 obj
 <<
-/Names [(subsubsection.2.4.2) 82 0 R (subsubsection.2.4.3) 86 0 R (subsubsection.3.1.1) 102 0 R (subsubsection.3.1.2) 106 0 R (subsubsection.3.2.1) 114 0 R (subsubsection.3.2.2) 118 0 R]
-/Limits [(subsubsection.2.4.2) (subsubsection.3.2.2)]
+/Names [(subsubsection.2.2.3) 62 0 R (subsubsection.2.2.4) 66 0 R (subsubsection.2.4.1) 78 0 R (subsubsection.2.4.2) 82 0 R (subsubsection.2.4.3) 86 0 R (subsubsection.3.1.1) 102 0 R]
+/Limits [(subsubsection.2.2.3) (subsubsection.3.1.1)]
 >>
 endobj
-1523 0 obj
+1662 0 obj
 <<
-/Names [(subsubsection.3.2.3) 122 0 R (subsubsection.3.2.4) 126 0 R (subsubsection.3.2.5) 130 0 R (subsubsection.3.2.6) 134 0 R (subsubsection.3.3.1) 142 0 R (subsubsection.3.3.2) 146 0 R]
-/Limits [(subsubsection.3.2.3) (subsubsection.3.3.2)]
+/Names [(subsubsection.3.1.2) 106 0 R (subsubsection.3.2.1) 114 0 R (subsubsection.3.2.2) 118 0 R (subsubsection.3.2.3) 122 0 R (subsubsection.3.2.4) 126 0 R (subsubsection.3.2.5) 130 0 R]
+/Limits [(subsubsection.3.1.2) (subsubsection.3.2.5)]
 >>
 endobj
-1524 0 obj
+1663 0 obj
 <<
-/Names [(subsubsection.3.4.1) 154 0 R (subsubsection.3.4.2) 158 0 R (subsubsection.3.6.1) 170 0 R (subsubsection.3.6.2) 174 0 R (subsubsection.3.7.1) 182 0 R (subsubsection.3.7.2) 186 0 R]
-/Limits [(subsubsection.3.4.1) (subsubsection.3.7.2)]
+/Names [(subsubsection.3.2.6) 134 0 R (subsubsection.3.3.1) 142 0 R (subsubsection.3.3.2) 146 0 R (subsubsection.3.4.1) 154 0 R (subsubsection.3.4.2) 158 0 R (subsubsection.3.6.1) 170 0 R]
+/Limits [(subsubsection.3.2.6) (subsubsection.3.6.1)]
 >>
 endobj
-1525 0 obj
+1664 0 obj
 <<
-/Names [(subsubsection.3.7.3) 190 0 R (subsubsection.3.7.4) 194 0 R (subsubsection.4.3.1) 222 0 R (subsubsection.4.3.2) 226 0 R (subsubsection.4.3.3) 230 0 R (subsubsection.4.3.4) 234 0 R]
-/Limits [(subsubsection.3.7.3) (subsubsection.4.3.4)]
+/Names [(subsubsection.3.6.2) 174 0 R (subsubsection.3.7.1) 182 0 R (subsubsection.3.7.2) 186 0 R (subsubsection.3.7.3) 190 0 R (subsubsection.3.7.4) 194 0 R (subsubsection.4.3.1) 222 0 R]
+/Limits [(subsubsection.3.6.2) (subsubsection.4.3.1)]
 >>
 endobj
-1526 0 obj
+1665 0 obj
 <<
-/Names [(subsubsection.6.1.1) 262 0 R (subsubsection.6.1.2) 266 0 R (subsubsection.6.1.3) 270 0 R (subsubsection.6.2.1) 278 0 R (subsubsection.6.2.2) 282 0 R (subsubsection.6.2.3) 286 0 R]
-/Limits [(subsubsection.6.1.1) (subsubsection.6.2.3)]
+/Names [(subsubsection.4.3.2) 226 0 R (subsubsection.4.3.3) 230 0 R (subsubsection.4.3.4) 234 0 R (subsubsection.5.1.1) 250 0 R (subsubsection.5.1.2) 254 0 R (subsubsection.5.1.3) 258 0 R]
+/Limits [(subsubsection.4.3.2) (subsubsection.5.1.3)]
 >>
 endobj
-1527 0 obj
+1666 0 obj
 <<
-/Names [(subsubsection.7.2.1) 302 0 R (subsubsection.7.2.2) 306 0 R (subsubsection.7.2.3) 310 0 R (subsubsection.7.2.4) 314 0 R (subsubsection.7.4.1) 326 0 R (subsubsection.7.4.2) 330 0 R]
-/Limits [(subsubsection.7.2.1) (subsubsection.7.4.2)]
+/Names [(subsubsection.5.2.1) 266 0 R (subsubsection.5.2.2) 270 0 R (subsubsection.5.2.3) 274 0 R (subsubsection.6.2.1) 290 0 R (subsubsection.6.2.2) 294 0 R (subsubsection.6.2.3) 298 0 R]
+/Limits [(subsubsection.5.2.1) (subsubsection.6.2.3)]
 >>
 endobj
-1528 0 obj
+1667 0 obj
 <<
-/Names [(subsubsection.7.4.3) 334 0 R (table.caption.25) 674 0 R (table.caption.26) 675 0 R (table.caption.27) 683 0 R (table.caption.28) 684 0 R (table.caption.29) 685 0 R]
-/Limits [(subsubsection.7.4.3) (table.caption.29)]
+/Names [(subsubsection.6.2.4) 302 0 R (subsubsection.6.4.1) 314 0 R (subsubsection.6.4.2) 318 0 R (subsubsection.6.4.3) 322 0 R (subsubsection.8.1.1) 346 0 R (subsubsection.8.1.2) 350 0 R]
+/Limits [(subsubsection.6.2.4) (subsubsection.8.1.2)]
 >>
 endobj
-1529 0 obj
+1668 0 obj
+<<
+/Names [(subsubsection.8.1.3) 354 0 R (subsubsection.8.2.1) 362 0 R (subsubsection.8.2.2) 366 0 R (subsubsection.8.2.3) 370 0 R (subsubsection.8.3.1) 378 0 R (subsubsection.8.3.2) 382 0 R]
+/Limits [(subsubsection.8.1.3) (subsubsection.8.3.2)]
+>>
+endobj
+1669 0 obj
 <<
-/Kids [1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R]
+/Names [(table.caption.25) 722 0 R (table.caption.26) 723 0 R (table.caption.27) 731 0 R (table.caption.28) 732 0 R (table.caption.29) 733 0 R]
+/Limits [(table.caption.25) (table.caption.29)]
+>>
+endobj
+1670 0 obj
+<<
+/Kids [1597 0 R 1598 0 R 1599 0 R 1600 0 R 1601 0 R 1602 0 R]
 /Limits [(Doc-Start) (Hfootnote.13)]
 >>
 endobj
-1530 0 obj
+1671 0 obj
 <<
-/Kids [1470 0 R 1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R]
-/Limits [(Hfootnote.130) (Hfootnote.43)]
+/Kids [1603 0 R 1604 0 R 1605 0 R 1606 0 R 1607 0 R 1608 0 R]
+/Limits [(Hfootnote.130) (Hfootnote.27)]
 >>
 endobj
-1531 0 obj
+1672 0 obj
 <<
-/Kids [1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R]
-/Limits [(Hfootnote.44) (Hfootnote.76)]
+/Kids [1609 0 R 1610 0 R 1611 0 R 1612 0 R 1613 0 R 1614 0 R]
+/Limits [(Hfootnote.28) (Hfootnote.6)]
 >>
 endobj
-1532 0 obj
+1673 0 obj
 <<
-/Kids [1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R]
-/Limits [(Hfootnote.77) (equation.3.5)]
+/Kids [1615 0 R 1616 0 R 1617 0 R 1618 0 R 1619 0 R 1620 0 R]
+/Limits [(Hfootnote.60) (Hfootnote.92)]
 >>
 endobj
-1533 0 obj
+1674 0 obj
 <<
-/Kids [1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R]
-/Limits [(equation.3.6) (figure.caption.37)]
+/Kids [1621 0 R 1622 0 R 1623 0 R 1624 0 R 1625 0 R 1626 0 R]
+/Limits [(Hfootnote.93) (figure.caption.16)]
 >>
 endobj
-1534 0 obj
+1675 0 obj
 <<
-/Kids [1494 0 R 1495 0 R 1496 0 R 1497 0 R 1498 0 R 1499 0 R]
-/Limits [(figure.caption.38) (figure.caption.7)]
+/Kids [1627 0 R 1628 0 R 1629 0 R 1630 0 R 1631 0 R 1632 0 R]
+/Limits [(figure.caption.17) (figure.caption.53)]
 >>
 endobj
-1535 0 obj
+1676 0 obj
 <<
-/Kids [1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R]
-/Limits [(figure.caption.70) (page.39)]
+/Kids [1633 0 R 1634 0 R 1635 0 R 1636 0 R 1637 0 R 1638 0 R]
+/Limits [(figure.caption.54) (page.15)]
 >>
 endobj
-1536 0 obj
+1677 0 obj
 <<
-/Kids [1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R 1511 0 R]
-/Limits [(page.4) (page.71)]
+/Kids [1639 0 R 1640 0 R 1641 0 R 1642 0 R 1643 0 R 1644 0 R]
+/Limits [(page.16) (page.48)]
 >>
 endobj
-1537 0 obj
+1678 0 obj
 <<
-/Kids [1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R]
-/Limits [(page.72) (subsection.3.5)]
+/Kids [1645 0 R 1646 0 R 1647 0 R 1648 0 R 1649 0 R 1650 0 R]
+/Limits [(page.49) (page.80)]
 >>
 endobj
-1538 0 obj
+1679 0 obj
 <<
-/Kids [1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R]
-/Limits [(subsection.3.6) (subsubsection.3.3.2)]
+/Kids [1651 0 R 1652 0 R 1653 0 R 1654 0 R 1655 0 R 1656 0 R]
+/Limits [(page.81) (subsection.3.5)]
 >>
 endobj
-1539 0 obj
+1680 0 obj
 <<
-/Kids [1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R]
-/Limits [(subsubsection.3.4.1) (table.caption.29)]
+/Kids [1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R]
+/Limits [(subsection.3.6) (subsubsection.3.2.5)]
 >>
 endobj
-1540 0 obj
+1681 0 obj
 <<
-/Kids [1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R]
-/Limits [(Doc-Start) (figure.caption.7)]
+/Kids [1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R]
+/Limits [(subsubsection.3.2.6) (subsubsection.8.3.2)]
 >>
 endobj
-1541 0 obj
+1682 0 obj
 <<
-/Kids [1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R]
-/Limits [(figure.caption.70) (table.caption.29)]
+/Kids [1669 0 R]
+/Limits [(table.caption.25) (table.caption.29)]
 >>
 endobj
-1542 0 obj
+1683 0 obj
+<<
+/Kids [1670 0 R 1671 0 R 1672 0 R 1673 0 R 1674 0 R 1675 0 R]
+/Limits [(Doc-Start) (figure.caption.53)]
+>>
+endobj
+1684 0 obj
+<<
+/Kids [1676 0 R 1677 0 R 1678 0 R 1679 0 R 1680 0 R 1681 0 R]
+/Limits [(figure.caption.54) (subsubsection.8.3.2)]
+>>
+endobj
+1685 0 obj
+<<
+/Kids [1682 0 R]
+/Limits [(table.caption.25) (table.caption.29)]
+>>
+endobj
+1686 0 obj
 <<
-/Kids [1540 0 R 1541 0 R]
+/Kids [1683 0 R 1684 0 R 1685 0 R]
 /Limits [(Doc-Start) (table.caption.29)]
 >>
 endobj
-1543 0 obj
+1687 0 obj
 <<
-/Dests 1542 0 R
+/Dests 1686 0 R
 >>
 endobj
-1544 0 obj
+1688 0 obj
 <<
 /Type /Catalog
-/Pages 1462 0 R
-/Outlines 1463 0 R
-/Names 1543 0 R
+/Pages 1595 0 R
+/Outlines 1596 0 R
+/Names 1687 0 R
 /PageMode/UseOutlines
-/OpenAction 341 0 R
+/OpenAction 389 0 R
 >>
 endobj
-1545 0 obj
+1689 0 obj
 <<
 /Producer (MiKTeX pdfTeX-1.40.20)
 /Author()/Title()/Subject()/Creator(LaTeX with hyperref)/Keywords()
-/CreationDate (D:20200914210633+02'00')
-/ModDate (D:20200914210633+02'00')
+/CreationDate (D:20200920190413+02'00')
+/ModDate (D:20200920190413+02'00')
 /Trapped /False
 /PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.7029 (1.40.20))
 >>
 endobj
 xref
-0 1546
+0 1690
 0000000000 65535 f 
 0000000015 00000 n 
-0000010080 00000 n 
-0001605374 00000 n 
+0000011266 00000 n 
+0001643510 00000 n 
 0000000060 00000 n 
 0000000105 00000 n 
-0000010139 00000 n 
-0001605304 00000 n 
+0000011325 00000 n 
+0001643440 00000 n 
 0000000155 00000 n 
 0000000185 00000 n 
-0000010198 00000 n 
-0001605220 00000 n 
+0000011384 00000 n 
+0001643356 00000 n 
 0000000235 00000 n 
 0000000265 00000 n 
-0000010258 00000 n 
-0001605134 00000 n 
+0000011444 00000 n 
+0001643270 00000 n 
 0000000316 00000 n 
 0000000346 00000 n 
-0000029571 00000 n 
-0001605048 00000 n 
+0000030757 00000 n 
+0001643184 00000 n 
 0000000397 00000 n 
 0000000433 00000 n 
-0000029631 00000 n 
-0001604962 00000 n 
+0000030817 00000 n 
+0001643098 00000 n 
 0000000484 00000 n 
 0000000509 00000 n 
-0000059352 00000 n 
-0001604889 00000 n 
+0000060538 00000 n 
+0001643025 00000 n 
 0000000560 00000 n 
 0000000596 00000 n 
-0000107721 00000 n 
-0001604764 00000 n 
+0000108907 00000 n 
+0001642900 00000 n 
 0000000642 00000 n 
 0000000672 00000 n 
-0000107781 00000 n 
-0001604653 00000 n 
+0000108967 00000 n 
+0001642789 00000 n 
 0000000723 00000 n 
 0000000763 00000 n 
-0000107902 00000 n 
-0001604579 00000 n 
+0000109088 00000 n 
+0001642715 00000 n 
 0000000819 00000 n 
 0000000847 00000 n 
-0000123471 00000 n 
-0001604492 00000 n 
+0000124657 00000 n 
+0001642628 00000 n 
 0000000903 00000 n 
 0000000942 00000 n 
-0000123531 00000 n 
-0001604418 00000 n 
+0000124717 00000 n 
+0001642554 00000 n 
 0000000998 00000 n 
 0000001031 00000 n 
-0000123591 00000 n 
-0001604294 00000 n 
+0000124777 00000 n 
+0001642430 00000 n 
 0000001082 00000 n 
 0000001131 00000 n 
-0000123651 00000 n 
-0001604220 00000 n 
+0000124837 00000 n 
+0001642356 00000 n 
 0000001187 00000 n 
 0000001216 00000 n 
-0000123711 00000 n 
-0001604133 00000 n 
+0000124897 00000 n 
+0001642269 00000 n 
 0000001272 00000 n 
 0000001297 00000 n 
-0000126521 00000 n 
-0001604046 00000 n 
+0000127707 00000 n 
+0001642182 00000 n 
 0000001353 00000 n 
 0000001378 00000 n 
-0000126641 00000 n 
-0001603972 00000 n 
+0000127827 00000 n 
+0001642108 00000 n 
 0000001434 00000 n 
 0000001465 00000 n 
-0000132549 00000 n 
-0001603885 00000 n 
+0000133735 00000 n 
+0001642021 00000 n 
 0000001516 00000 n 
 0000001550 00000 n 
-0000135383 00000 n 
-0001603761 00000 n 
+0000136569 00000 n 
+0001641897 00000 n 
 0000001601 00000 n 
 0000001639 00000 n 
-0000135443 00000 n 
-0001603687 00000 n 
+0000136629 00000 n 
+0001641823 00000 n 
 0000001695 00000 n 
 0000001727 00000 n 
-0000139875 00000 n 
-0001603600 00000 n 
+0000141061 00000 n 
+0001641736 00000 n 
 0000001783 00000 n 
 0000001818 00000 n 
-0000143076 00000 n 
-0001603526 00000 n 
+0000144262 00000 n 
+0001641662 00000 n 
 0000001874 00000 n 
 0000001907 00000 n 
-0000147751 00000 n 
-0001603452 00000 n 
+0000148937 00000 n 
+0001641588 00000 n 
 0000001958 00000 n 
 0000002000 00000 n 
-0000158793 00000 n 
-0001603324 00000 n 
+0000159979 00000 n 
+0001641460 00000 n 
 0000002046 00000 n 
 0000002094 00000 n 
-0000158853 00000 n 
-0001603209 00000 n 
+0000160039 00000 n 
+0001641345 00000 n 
 0000002145 00000 n 
 0000002182 00000 n 
-0000158913 00000 n 
-0001603131 00000 n 
+0000160099 00000 n 
+0001641267 00000 n 
 0000002239 00000 n 
 0000002273 00000 n 
-0000158974 00000 n 
-0001603053 00000 n 
+0000160160 00000 n 
+0001641189 00000 n 
 0000002330 00000 n 
 0000002364 00000 n 
-0000161820 00000 n 
-0001602923 00000 n 
+0000163006 00000 n 
+0001641059 00000 n 
 0000002416 00000 n 
 0000002491 00000 n 
-0000161942 00000 n 
-0001602844 00000 n 
+0000163128 00000 n 
+0001640980 00000 n 
 0000002548 00000 n 
 0000002572 00000 n 
-0000165134 00000 n 
-0001602751 00000 n 
+0000166320 00000 n 
+0001640887 00000 n 
 0000002629 00000 n 
 0000002660 00000 n 
-0000168032 00000 n 
-0001602658 00000 n 
+0000169218 00000 n 
+0001640794 00000 n 
 0000002717 00000 n 
 0000002750 00000 n 
-0000168154 00000 n 
-0001602565 00000 n 
+0000169340 00000 n 
+0001640701 00000 n 
 0000002807 00000 n 
 0000002834 00000 n 
-0000168215 00000 n 
-0001602472 00000 n 
+0000169401 00000 n 
+0001640608 00000 n 
 0000002891 00000 n 
 0000002925 00000 n 
-0000171019 00000 n 
-0001602393 00000 n 
+0000172205 00000 n 
+0001640529 00000 n 
 0000002982 00000 n 
 0000003009 00000 n 
-0000174740 00000 n 
-0001602262 00000 n 
+0000175926 00000 n 
+0001640398 00000 n 
 0000003061 00000 n 
 0000003102 00000 n 
-0000176062 00000 n 
-0001602183 00000 n 
+0000177248 00000 n 
+0001640319 00000 n 
 0000003159 00000 n 
 0000003193 00000 n 
-0000178614 00000 n 
-0001602104 00000 n 
+0000179800 00000 n 
+0001640240 00000 n 
 0000003250 00000 n 
 0000003277 00000 n 
-0000183307 00000 n 
-0001601973 00000 n 
+0000184493 00000 n 
+0001640109 00000 n 
 0000003329 00000 n 
 0000003372 00000 n 
-0000183368 00000 n 
-0001601894 00000 n 
+0000184554 00000 n 
+0001640030 00000 n 
 0000003429 00000 n 
 0000003464 00000 n 
-0000187757 00000 n 
-0001601815 00000 n 
+0000188943 00000 n 
+0001639951 00000 n 
 0000003521 00000 n 
 0000003556 00000 n 
-0000191649 00000 n 
-0001601723 00000 n 
+0000192835 00000 n 
+0001639859 00000 n 
 0000003608 00000 n 
 0000003661 00000 n 
-0000199340 00000 n 
-0001601592 00000 n 
+0000200526 00000 n 
+0001639728 00000 n 
 0000003713 00000 n 
 0000003740 00000 n 
-0000214435 00000 n 
-0001601513 00000 n 
+0000215621 00000 n 
+0001639649 00000 n 
 0000003797 00000 n 
 0000003840 00000 n 
-0000235185 00000 n 
-0001601434 00000 n 
+0000236371 00000 n 
+0001639570 00000 n 
 0000003897 00000 n 
 0000003934 00000 n 
-0000250227 00000 n 
-0001601303 00000 n 
+0000251413 00000 n 
+0001639439 00000 n 
 0000003986 00000 n 
 0000004012 00000 n 
-0000250288 00000 n 
-0001601224 00000 n 
+0000251474 00000 n 
+0001639360 00000 n 
 0000004069 00000 n 
 0000004091 00000 n 
-0000254487 00000 n 
-0001601131 00000 n 
+0000255673 00000 n 
+0001639267 00000 n 
 0000004148 00000 n 
 0000004186 00000 n 
-0000254610 00000 n 
-0001601038 00000 n 
+0000255796 00000 n 
+0001639174 00000 n 
 0000004243 00000 n 
 0000004265 00000 n 
-0000258407 00000 n 
-0001600959 00000 n 
+0000259593 00000 n 
+0001639095 00000 n 
 0000004322 00000 n 
 0000004359 00000 n 
-0000274294 00000 n 
-0001600867 00000 n 
+0000275480 00000 n 
+0001639003 00000 n 
 0000004411 00000 n 
 0000004441 00000 n 
-0000283988 00000 n 
-0001600789 00000 n 
+0000285174 00000 n 
+0001638925 00000 n 
 0000004493 00000 n 
 0000004538 00000 n 
-0000285886 00000 n 
-0001600657 00000 n 
+0000287075 00000 n 
+0001638793 00000 n 
 0000004585 00000 n 
 0000004633 00000 n 
-0000285947 00000 n 
-0001600578 00000 n 
+0000287136 00000 n 
+0001638714 00000 n 
 0000004685 00000 n 
 0000004715 00000 n 
-0000295463 00000 n 
-0001600485 00000 n 
+0000296702 00000 n 
+0001638621 00000 n 
 0000004767 00000 n 
 0000004812 00000 n 
-0000295585 00000 n 
-0001600353 00000 n 
+0000296827 00000 n 
+0001638489 00000 n 
 0000004864 00000 n 
 0000004923 00000 n 
-0000295646 00000 n 
-0001600274 00000 n 
+0000296889 00000 n 
+0001638410 00000 n 
 0000004980 00000 n 
 0000005025 00000 n 
-0000299062 00000 n 
-0001600181 00000 n 
+0000300322 00000 n 
+0001638317 00000 n 
 0000005082 00000 n 
 0000005133 00000 n 
-0000307431 00000 n 
-0001600088 00000 n 
+0000308713 00000 n 
+0001638224 00000 n 
 0000005190 00000 n 
 0000005230 00000 n 
-0000313962 00000 n 
-0001600009 00000 n 
+0000315244 00000 n 
+0001638145 00000 n 
 0000005287 00000 n 
 0000005343 00000 n 
-0000318188 00000 n 
-0001599930 00000 n 
+0000319470 00000 n 
+0001638066 00000 n 
 0000005395 00000 n 
 0000005440 00000 n 
-0000320056 00000 n 
-0001599797 00000 n 
+0000331994 00000 n 
+0001637933 00000 n 
 0000005487 00000 n 
-0000005511 00000 n 
-0000320118 00000 n 
-0001599718 00000 n 
-0000005563 00000 n 
-0000005600 00000 n 
-0000320180 00000 n 
-0001599639 00000 n 
-0000005652 00000 n 
-0000005685 00000 n 
-0000331568 00000 n 
-0001599506 00000 n 
-0000005732 00000 n 
-0000005768 00000 n 
-0000331630 00000 n 
-0001599388 00000 n 
-0000005820 00000 n 
-0000005855 00000 n 
-0000337743 00000 n 
-0001599309 00000 n 
-0000005912 00000 n 
+0000005523 00000 n 
+0000332056 00000 n 
+0001637815 00000 n 
+0000005575 00000 n 
+0000005610 00000 n 
+0000338169 00000 n 
+0001637736 00000 n 
+0000005667 00000 n 
+0000005698 00000 n 
+0000363845 00000 n 
+0001637643 00000 n 
+0000005755 00000 n 
+0000005789 00000 n 
+0000379308 00000 n 
+0001637564 00000 n 
+0000005846 00000 n 
+0000005891 00000 n 
+0000402145 00000 n 
+0001637446 00000 n 
 0000005943 00000 n 
-0000363420 00000 n 
-0001599216 00000 n 
-0000006000 00000 n 
-0000006034 00000 n 
-0000378883 00000 n 
-0001599137 00000 n 
-0000006091 00000 n 
+0000005979 00000 n 
+0000402207 00000 n 
+0001637367 00000 n 
+0000006036 00000 n 
+0000006079 00000 n 
+0001356712 00000 n 
+0001637274 00000 n 
 0000006136 00000 n 
-0000401720 00000 n 
-0001599019 00000 n 
-0000006188 00000 n 
-0000006224 00000 n 
-0000401782 00000 n 
-0001598940 00000 n 
-0000006281 00000 n 
-0000006324 00000 n 
-0001356286 00000 n 
-0001598847 00000 n 
-0000006381 00000 n 
-0000006421 00000 n 
-0001359092 00000 n 
-0001598768 00000 n 
-0000006478 00000 n 
-0000006515 00000 n 
-0001362201 00000 n 
-0001598635 00000 n 
-0000006562 00000 n 
-0000006598 00000 n 
-0001362263 00000 n 
-0001598556 00000 n 
-0000006650 00000 n 
+0000006176 00000 n 
+0001359518 00000 n 
+0001637195 00000 n 
+0000006233 00000 n 
+0000006270 00000 n 
+0001362627 00000 n 
+0001637062 00000 n 
+0000006317 00000 n 
+0000006353 00000 n 
+0001362689 00000 n 
+0001636983 00000 n 
+0000006405 00000 n 
+0000006454 00000 n 
+0001362751 00000 n 
+0001636851 00000 n 
+0000006506 00000 n 
+0000006526 00000 n 
+0001364905 00000 n 
+0001636772 00000 n 
+0000006583 00000 n 
+0000006606 00000 n 
+0001364967 00000 n 
+0001636679 00000 n 
+0000006663 00000 n 
 0000006699 00000 n 
-0001362325 00000 n 
-0001598424 00000 n 
-0000006751 00000 n 
-0000006771 00000 n 
-0001364479 00000 n 
-0001598345 00000 n 
-0000006828 00000 n 
-0000006851 00000 n 
-0001364541 00000 n 
-0001598252 00000 n 
-0000006908 00000 n 
-0000006944 00000 n 
-0001364603 00000 n 
-0001598159 00000 n 
-0000007001 00000 n 
-0000007040 00000 n 
-0001364665 00000 n 
-0001598080 00000 n 
-0000007097 00000 n 
-0000007123 00000 n 
-0001364790 00000 n 
-0001597987 00000 n 
-0000007175 00000 n 
-0000007198 00000 n 
-0001364852 00000 n 
-0001597869 00000 n 
-0000007250 00000 n 
-0000007307 00000 n 
-0001368969 00000 n 
-0001597790 00000 n 
+0001365029 00000 n 
+0001636586 00000 n 
+0000006756 00000 n 
+0000006795 00000 n 
+0001365091 00000 n 
+0001636507 00000 n 
+0000006852 00000 n 
+0000006878 00000 n 
+0001365216 00000 n 
+0001636414 00000 n 
+0000006930 00000 n 
+0000006953 00000 n 
+0001365278 00000 n 
+0001636296 00000 n 
+0000007005 00000 n 
+0000007062 00000 n 
+0001369395 00000 n 
+0001636217 00000 n 
+0000007119 00000 n 
+0000007172 00000 n 
+0001387868 00000 n 
+0001636124 00000 n 
+0000007229 00000 n 
+0000007265 00000 n 
+0001387930 00000 n 
+0001636045 00000 n 
+0000007322 00000 n 
 0000007364 00000 n 
-0000007417 00000 n 
-0001387438 00000 n 
-0001597697 00000 n 
-0000007474 00000 n 
-0000007510 00000 n 
-0001387500 00000 n 
-0001597618 00000 n 
-0000007567 00000 n 
+0001388913 00000 n 
+0001635912 00000 n 
+0000007411 00000 n 
+0000007435 00000 n 
+0001388975 00000 n 
+0001635833 00000 n 
+0000007487 00000 n 
+0000007524 00000 n 
+0001389037 00000 n 
+0001635754 00000 n 
+0000007576 00000 n 
 0000007609 00000 n 
-0001388348 00000 n 
-0001597538 00000 n 
+0001394684 00000 n 
+0001635621 00000 n 
 0000007656 00000 n 
-0000007684 00000 n 
-0000009839 00000 n 
-0000011132 00000 n 
-0000010318 00000 n 
-0000007734 00000 n 
-0000009958 00000 n 
-0001594242 00000 n 
-0000010019 00000 n 
-0001592932 00000 n 
-0001594815 00000 n 
-0001595386 00000 n 
-0000026125 00000 n 
-0000018803 00000 n 
-0000010998 00000 n 
-0000010416 00000 n 
-0000018681 00000 n 
-0000018742 00000 n 
-0000018613 00000 n 
-0000014230 00000 n 
-0000014385 00000 n 
-0000014730 00000 n 
-0000014927 00000 n 
-0000015060 00000 n 
-0000015260 00000 n 
-0000016313 00000 n 
-0000016691 00000 n 
-0000016992 00000 n 
-0000017311 00000 n 
-0000017452 00000 n 
-0000017570 00000 n 
-0000017805 00000 n 
-0000018036 00000 n 
-0000018241 00000 n 
-0000018401 00000 n 
-0000026277 00000 n 
-0000021475 00000 n 
-0000026054 00000 n 
-0000026431 00000 n 
-0000026889 00000 n 
-0000021305 00000 n 
-0000018903 00000 n 
-0000026585 00000 n 
-0001594672 00000 n 
-0000026646 00000 n 
-0001594529 00000 n 
-0000026707 00000 n 
-0001594097 00000 n 
-0000026768 00000 n 
-0000026829 00000 n 
-0000025796 00000 n 
-0000029202 00000 n 
-0000029356 00000 n 
-0000031193 00000 n 
-0000029813 00000 n 
-0000029055 00000 n 
-0000027034 00000 n 
-0000029510 00000 n 
-0001593369 00000 n 
-0000029691 00000 n 
-0000029752 00000 n 
-0000058215 00000 n 
-0000058366 00000 n 
-0000058520 00000 n 
-0000058674 00000 n 
-0000053750 00000 n 
-0000031074 00000 n 
-0000029948 00000 n 
-0000053628 00000 n 
-0000053689 00000 n 
-0001593952 00000 n 
-0000038191 00000 n 
-0000039826 00000 n 
-0000039867 00000 n 
-0000039947 00000 n 
-0000040028 00000 n 
-0000040169 00000 n 
-0000040444 00000 n 
-0000040784 00000 n 
-0000041026 00000 n 
-0000041047 00000 n 
-0000053605 00000 n 
-0000058827 00000 n 
-0000058982 00000 n 
-0000059137 00000 n 
-0000059832 00000 n 
-0000058028 00000 n 
-0000053876 00000 n 
-0000059291 00000 n 
-0000059412 00000 n 
-0000059473 00000 n 
-0000059534 00000 n 
-0000059594 00000 n 
-0000059655 00000 n 
-0000059712 00000 n 
-0000059772 00000 n 
-0000060444 00000 n 
-0000060264 00000 n 
-0000059954 00000 n 
-0000060383 00000 n 
-0001595504 00000 n 
-0000061561 00000 n 
-0000109289 00000 n 
-0000107962 00000 n 
-0000061442 00000 n 
-0000060516 00000 n 
-0000107660 00000 n 
-0000107841 00000 n 
-0000107184 00000 n 
-0000118873 00000 n 
-0000109155 00000 n 
-0000108091 00000 n 
-0000118751 00000 n 
-0000118812 00000 n 
-0000118683 00000 n 
-0000112625 00000 n 
-0000112780 00000 n 
-0000113171 00000 n 
-0000113341 00000 n 
-0000113568 00000 n 
-0000113768 00000 n 
-0000114821 00000 n 
-0000115199 00000 n 
-0000115503 00000 n 
-0000115642 00000 n 
-0000115786 00000 n 
-0000116107 00000 n 
-0000116270 00000 n 
-0000116664 00000 n 
-0000116817 00000 n 
-0000116939 00000 n 
-0000117330 00000 n 
-0000117420 00000 n 
-0000117832 00000 n 
-0000118154 00000 n 
-0000118399 00000 n 
-0000119758 00000 n 
-0000119441 00000 n 
-0000118973 00000 n 
-0000119575 00000 n 
-0000119636 00000 n 
-0000119697 00000 n 
-0000123100 00000 n 
-0000123255 00000 n 
-0000126152 00000 n 
-0000123891 00000 n 
-0000122953 00000 n 
-0000119866 00000 n 
-0000123410 00000 n 
-0000123771 00000 n 
-0000123831 00000 n 
-0000126305 00000 n 
-0000131717 00000 n 
-0000126822 00000 n 
-0000125990 00000 n 
-0000124013 00000 n 
-0000126460 00000 n 
-0000126580 00000 n 
-0000126701 00000 n 
-0000126762 00000 n 
-0000131871 00000 n 
-0000132026 00000 n 
-0000132181 00000 n 
-0000132334 00000 n 
-0000135013 00000 n 
-0000132913 00000 n 
-0000131546 00000 n 
-0000127006 00000 n 
-0000132488 00000 n 
-0001593078 00000 n 
-0001594386 00000 n 
-0001595244 00000 n 
-0001593662 00000 n 
-0000132609 00000 n 
-0000132670 00000 n 
-0000132731 00000 n 
-0000132792 00000 n 
-0001593223 00000 n 
-0000132853 00000 n 
-0001595622 00000 n 
-0000135167 00000 n 
-0000135684 00000 n 
-0000134851 00000 n 
-0000133139 00000 n 
-0000135322 00000 n 
-0000135503 00000 n 
-0000135564 00000 n 
-0000135623 00000 n 
-0001593807 00000 n 
-0000137038 00000 n 
-0000137376 00000 n 
-0000136884 00000 n 
-0000135907 00000 n 
-0000137193 00000 n 
-0000137254 00000 n 
-0000137315 00000 n 
-0000139660 00000 n 
-0000140057 00000 n 
-0000139506 00000 n 
-0000137521 00000 n 
-0000139814 00000 n 
-0000139935 00000 n 
-0000139996 00000 n 
-0000142550 00000 n 
-0000142705 00000 n 
-0000142860 00000 n 
-0000143379 00000 n 
-0000142380 00000 n 
-0000140228 00000 n 
-0000143015 00000 n 
-0000143136 00000 n 
-0000143197 00000 n 
-0000143258 00000 n 
-0000143319 00000 n 
-0000147382 00000 n 
-0000147535 00000 n 
-0000147933 00000 n 
-0000147235 00000 n 
-0000143576 00000 n 
-0000147690 00000 n 
-0000147811 00000 n 
-0000147872 00000 n 
-0001595102 00000 n 
-0000152428 00000 n 
-0000152583 00000 n 
-0000152734 00000 n 
-0000152889 00000 n 
-0000153042 00000 n 
-0000153197 00000 n 
-0000153352 00000 n 
-0000154115 00000 n 
-0000152241 00000 n 
-0000148107 00000 n 
-0000153507 00000 n 
-0000153568 00000 n 
-0000153629 00000 n 
-0000153691 00000 n 
-0000153752 00000 n 
-0000153813 00000 n 
-0000153874 00000 n 
-0000153935 00000 n 
-0000153995 00000 n 
-0000154055 00000 n 
-0001595740 00000 n 
-0000158268 00000 n 
-0000158423 00000 n 
-0000158577 00000 n 
-0000159217 00000 n 
-0000158113 00000 n 
-0000154289 00000 n 
-0000158732 00000 n 
-0000159035 00000 n 
-0000159096 00000 n 
-0000159157 00000 n 
-0000162003 00000 n 
-0000161625 00000 n 
-0000159391 00000 n 
-0000161759 00000 n 
-0000161881 00000 n 
-0000164764 00000 n 
-0000164918 00000 n 
-0000165374 00000 n 
-0000164602 00000 n 
-0000162149 00000 n 
-0000165073 00000 n 
-0000165193 00000 n 
-0000165253 00000 n 
-0000165314 00000 n 
-0000167817 00000 n 
-0000168336 00000 n 
-0000167663 00000 n 
-0000165545 00000 n 
-0000167971 00000 n 
-0000168093 00000 n 
-0000168276 00000 n 
-0000170742 00000 n 
-0000171141 00000 n 
-0000170588 00000 n 
-0000168520 00000 n 
-0000170897 00000 n 
-0000170958 00000 n 
-0000171080 00000 n 
-0000174310 00000 n 
-0000172416 00000 n 
-0000172099 00000 n 
-0000171312 00000 n 
-0000172233 00000 n 
-0000172294 00000 n 
-0000172355 00000 n 
-0001595858 00000 n 
-0000174464 00000 n 
-0000174922 00000 n 
-0000174148 00000 n 
-0000172524 00000 n 
-0000174618 00000 n 
-0000174679 00000 n 
-0000174801 00000 n 
-0000174862 00000 n 
-0000176123 00000 n 
-0000175806 00000 n 
-0000175093 00000 n 
-0000175940 00000 n 
-0000176001 00000 n 
-0000178244 00000 n 
-0000178398 00000 n 
-0000178858 00000 n 
-0000178082 00000 n 
-0000176257 00000 n 
-0000178553 00000 n 
-0000178675 00000 n 
-0000178736 00000 n 
-0000178797 00000 n 
-0000180091 00000 n 
-0000179774 00000 n 
-0000179029 00000 n 
-0000179908 00000 n 
-0000179969 00000 n 
-0000180030 00000 n 
-0000182721 00000 n 
-0000182876 00000 n 
-0000183030 00000 n 
-0000183610 00000 n 
-0000182551 00000 n 
-0000180212 00000 n 
-0000183185 00000 n 
-0000183246 00000 n 
-0000183429 00000 n 
-0000183490 00000 n 
-0000183550 00000 n 
-0000187421 00000 n 
-0000187878 00000 n 
-0000187282 00000 n 
-0000183794 00000 n 
-0000187574 00000 n 
-0000187635 00000 n 
-0000187696 00000 n 
-0000187818 00000 n 
-0001595976 00000 n 
-0000191251 00000 n 
-0000191895 00000 n 
-0000191112 00000 n 
-0000188026 00000 n 
-0000191405 00000 n 
-0000191466 00000 n 
-0000191527 00000 n 
-0000191588 00000 n 
-0000191710 00000 n 
-0000191772 00000 n 
-0000191834 00000 n 
-0000195899 00000 n 
-0000196053 00000 n 
-0000198970 00000 n 
-0000196637 00000 n 
-0000195752 00000 n 
-0000192069 00000 n 
-0000196208 00000 n 
-0000196269 00000 n 
-0000196331 00000 n 
-0000196393 00000 n 
-0000196455 00000 n 
-0000196516 00000 n 
-0000196576 00000 n 
-0000199124 00000 n 
-0000200761 00000 n 
-0000199523 00000 n 
-0000198823 00000 n 
-0000196798 00000 n 
-0000199279 00000 n 
-0000199401 00000 n 
-0000199462 00000 n 
-0000214496 00000 n 
-0000200627 00000 n 
-0000199645 00000 n 
-0000214313 00000 n 
-0000214374 00000 n 
-0000214245 00000 n 
-0000202952 00000 n 
-0000203107 00000 n 
-0000203565 00000 n 
-0000203827 00000 n 
-0000204257 00000 n 
-0000204457 00000 n 
-0000205510 00000 n 
-0000205671 00000 n 
-0000205977 00000 n 
-0000206211 00000 n 
-0000206529 00000 n 
-0000206677 00000 n 
-0000207002 00000 n 
-0000207414 00000 n 
-0000207576 00000 n 
-0000207954 00000 n 
-0000208258 00000 n 
-0000208577 00000 n 
-0000209043 00000 n 
-0000209364 00000 n 
-0000209527 00000 n 
-0000209939 00000 n 
-0000210176 00000 n 
-0000210317 00000 n 
-0000210471 00000 n 
-0000210589 00000 n 
-0000210824 00000 n 
-0000211218 00000 n 
-0000211506 00000 n 
-0000211659 00000 n 
-0000211969 00000 n 
-0000212091 00000 n 
-0000212322 00000 n 
-0000212728 00000 n 
-0000212869 00000 n 
-0000213260 00000 n 
-0000213350 00000 n 
-0000213555 00000 n 
-0000213800 00000 n 
-0000213961 00000 n 
-0000216357 00000 n 
-0000215654 00000 n 
-0000215398 00000 n 
-0000214648 00000 n 
-0000215532 00000 n 
-0000215593 00000 n 
-0000232867 00000 n 
-0000216223 00000 n 
-0000215775 00000 n 
-0000232745 00000 n 
-0000232806 00000 n 
-0000232677 00000 n 
-0001596094 00000 n 
-0000219971 00000 n 
-0000220126 00000 n 
-0000220590 00000 n 
-0000220852 00000 n 
-0000221114 00000 n 
-0000221590 00000 n 
-0000221790 00000 n 
-0000222843 00000 n 
-0000223004 00000 n 
-0000223310 00000 n 
-0000223544 00000 n 
-0000223862 00000 n 
-0000224010 00000 n 
-0000224335 00000 n 
-0000224747 00000 n 
-0000224909 00000 n 
-0000225287 00000 n 
-0000225591 00000 n 
-0000225892 00000 n 
-0000226211 00000 n 
-0000226677 00000 n 
-0000226998 00000 n 
-0000227161 00000 n 
-0000227573 00000 n 
-0000227810 00000 n 
-0000227951 00000 n 
-0000228105 00000 n 
-0000228223 00000 n 
-0000228552 00000 n 
-0000228787 00000 n 
-0000229181 00000 n 
-0000229469 00000 n 
-0000229622 00000 n 
-0000229932 00000 n 
-0000230054 00000 n 
-0000230285 00000 n 
-0000230691 00000 n 
-0000230832 00000 n 
-0000231223 00000 n 
-0000231313 00000 n 
-0000231518 00000 n 
-0000231840 00000 n 
-0000232085 00000 n 
-0000232246 00000 n 
-0000232393 00000 n 
-0000249858 00000 n 
-0000235307 00000 n 
-0000234990 00000 n 
-0000232967 00000 n 
-0000235124 00000 n 
-0000235246 00000 n 
-0000250013 00000 n 
-0000237993 00000 n 
-0000250594 00000 n 
-0000237831 00000 n 
-0000235454 00000 n 
-0000250166 00000 n 
-0000250349 00000 n 
-0000250411 00000 n 
-0000249790 00000 n 
-0000250472 00000 n 
-0000250533 00000 n 
-0000241061 00000 n 
-0000241216 00000 n 
-0000241652 00000 n 
-0000241822 00000 n 
-0000242169 00000 n 
-0000242369 00000 n 
-0000243422 00000 n 
-0000243800 00000 n 
-0000243944 00000 n 
-0000244084 00000 n 
-0000244388 00000 n 
-0000244689 00000 n 
-0000245008 00000 n 
-0000245474 00000 n 
-0000245618 00000 n 
-0000245939 00000 n 
-0000246102 00000 n 
-0000246339 00000 n 
-0000246480 00000 n 
-0000246598 00000 n 
-0000246833 00000 n 
-0000247121 00000 n 
-0000247274 00000 n 
-0000247584 00000 n 
-0000247706 00000 n 
-0000247937 00000 n 
-0000248343 00000 n 
-0000248734 00000 n 
-0000248939 00000 n 
-0000249261 00000 n 
-0000249506 00000 n 
-0000253963 00000 n 
-0000254117 00000 n 
-0000254271 00000 n 
-0000257977 00000 n 
-0000254913 00000 n 
-0000253793 00000 n 
-0000250783 00000 n 
-0000254426 00000 n 
-0000254548 00000 n 
-0000254671 00000 n 
-0000254732 00000 n 
-0000254793 00000 n 
-0000254854 00000 n 
-0000258131 00000 n 
-0000258588 00000 n 
-0000257815 00000 n 
-0000255136 00000 n 
-0000258285 00000 n 
-0000258346 00000 n 
-0000258467 00000 n 
-0000258528 00000 n 
-0000262248 00000 n 
-0000262402 00000 n 
-0000262860 00000 n 
-0000262086 00000 n 
-0000258811 00000 n 
-0000262556 00000 n 
-0000262617 00000 n 
-0001594960 00000 n 
-0000262679 00000 n 
-0000262740 00000 n 
-0000262800 00000 n 
-0000273769 00000 n 
-0000265702 00000 n 
-0000273924 00000 n 
-0000274079 00000 n 
-0000277333 00000 n 
-0000274599 00000 n 
-0000265532 00000 n 
-0000263122 00000 n 
-0000274233 00000 n 
-0000274355 00000 n 
-0000273701 00000 n 
-0000274416 00000 n 
-0000274477 00000 n 
-0000274538 00000 n 
-0001596212 00000 n 
-0000269064 00000 n 
-0000269219 00000 n 
-0000269567 00000 n 
-0000269737 00000 n 
-0000269886 00000 n 
-0000270086 00000 n 
-0000271139 00000 n 
-0000271460 00000 n 
-0000271623 00000 n 
-0000272017 00000 n 
-0000272170 00000 n 
-0000272292 00000 n 
-0000272683 00000 n 
-0000273095 00000 n 
-0000273417 00000 n 
-0000280703 00000 n 
-0000277919 00000 n 
-0000277179 00000 n 
-0000274788 00000 n 
-0000277488 00000 n 
-0000277549 00000 n 
-0000277611 00000 n 
-0000277673 00000 n 
-0000277735 00000 n 
-0000277797 00000 n 
-0000277858 00000 n 
-0000280858 00000 n 
-0000281255 00000 n 
-0000280541 00000 n 
-0000278103 00000 n 
-0000281012 00000 n 
-0000281073 00000 n 
-0000281134 00000 n 
-0000281195 00000 n 
-0000283772 00000 n 
-0000284109 00000 n 
-0000283633 00000 n 
-0000281439 00000 n 
-0000283927 00000 n 
-0000284049 00000 n 
-0000285671 00000 n 
-0000286130 00000 n 
-0000285517 00000 n 
-0000284244 00000 n 
-0000285825 00000 n 
-0000286008 00000 n 
-0000286069 00000 n 
-0000287373 00000 n 
-0000287056 00000 n 
-0000286301 00000 n 
-0000287190 00000 n 
-0000287251 00000 n 
-0000287312 00000 n 
-0000289148 00000 n 
-0000288893 00000 n 
-0000287481 00000 n 
-0000289027 00000 n 
-0000289088 00000 n 
-0001596330 00000 n 
-0000292112 00000 n 
-0000292267 00000 n 
-0000292666 00000 n 
-0000291950 00000 n 
-0000289282 00000 n 
-0000292422 00000 n 
-0000292483 00000 n 
-0000292544 00000 n 
-0000292605 00000 n 
-0000295249 00000 n 
-0000295767 00000 n 
-0000295095 00000 n 
-0000292863 00000 n 
-0000295402 00000 n 
-0000295524 00000 n 
-0000295707 00000 n 
-0000298536 00000 n 
-0000298691 00000 n 
-0000298846 00000 n 
-0000299365 00000 n 
-0000298366 00000 n 
-0000295925 00000 n 
-0000299001 00000 n 
-0000299123 00000 n 
-0000299184 00000 n 
-0000299245 00000 n 
-0000299305 00000 n 
-0000303475 00000 n 
-0000303630 00000 n 
-0000303783 00000 n 
-0000303938 00000 n 
-0000306995 00000 n 
-0000307149 00000 n 
-0000304597 00000 n 
-0000303309 00000 n 
-0000299523 00000 n 
-0000304093 00000 n 
-0000304156 00000 n 
-0000304220 00000 n 
-0000304284 00000 n 
-0000304348 00000 n 
-0000304410 00000 n 
-0000304472 00000 n 
-0000304535 00000 n 
-0000307619 00000 n 
-0000306829 00000 n 
-0000304746 00000 n 
-0000307305 00000 n 
-0000307368 00000 n 
-0000307493 00000 n 
-0000307556 00000 n 
-0000308527 00000 n 
-0000308263 00000 n 
-0000307817 00000 n 
-0000308401 00000 n 
-0000308464 00000 n 
-0001596450 00000 n 
-0000310217 00000 n 
-0000310373 00000 n 
-0000310528 00000 n 
-0000310998 00000 n 
-0000310040 00000 n 
-0000308636 00000 n 
-0000310683 00000 n 
-0000310746 00000 n 
-0000310809 00000 n 
-0000310872 00000 n 
-0000310935 00000 n 
-0000312234 00000 n 
-0000311907 00000 n 
-0000311170 00000 n 
-0000312045 00000 n 
-0000312108 00000 n 
-0000312171 00000 n 
-0000314024 00000 n 
-0000313698 00000 n 
-0000312343 00000 n 
-0000313836 00000 n 
-0000313899 00000 n 
-0000317842 00000 n 
-0000315305 00000 n 
-0000314978 00000 n 
-0000314146 00000 n 
-0000315116 00000 n 
-0000315179 00000 n 
-0000315242 00000 n 
-0000318312 00000 n 
-0000317683 00000 n 
-0000315440 00000 n 
-0000317998 00000 n 
-0000318061 00000 n 
-0000318125 00000 n 
-0000318249 00000 n 
-0000319363 00000 n 
-0000319099 00000 n 
-0000318510 00000 n 
-0000319237 00000 n 
-0000319300 00000 n 
-0001596575 00000 n 
-0000320242 00000 n 
-0000319870 00000 n 
-0000319472 00000 n 
-0000319993 00000 n 
-0000322929 00000 n 
-0000331193 00000 n 
-0000331349 00000 n 
-0000336903 00000 n 
-0000337057 00000 n 
-0000337213 00000 n 
-0000337368 00000 n 
-0000337524 00000 n 
-0000331881 00000 n 
-0000322760 00000 n 
-0000320328 00000 n 
-0000331505 00000 n 
-0000331692 00000 n 
-0000331124 00000 n 
-0000331755 00000 n 
-0000331818 00000 n 
-0000324821 00000 n 
-0000324977 00000 n 
-0000325367 00000 n 
-0000325617 00000 n 
-0000325818 00000 n 
-0000326872 00000 n 
-0000327251 00000 n 
-0000327556 00000 n 
-0000327876 00000 n 
-0000328084 00000 n 
-0000328406 00000 n 
-0000328570 00000 n 
-0000328712 00000 n 
-0000328831 00000 n 
-0000328985 00000 n 
-0000329296 00000 n 
-0000329419 00000 n 
-0000329651 00000 n 
-0000329857 00000 n 
-0000330270 00000 n 
-0000330593 00000 n 
-0000330839 00000 n 
-0000356225 00000 n 
-0000340942 00000 n 
-0000338119 00000 n 
-0000336723 00000 n 
-0000332060 00000 n 
-0000337680 00000 n 
-0000337805 00000 n 
-0000337868 00000 n 
-0000337931 00000 n 
-0000337994 00000 n 
-0000338057 00000 n 
-0000361979 00000 n 
-0000356570 00000 n 
-0000340782 00000 n 
-0000338320 00000 n 
-0000356381 00000 n 
-0000356444 00000 n 
-0000356156 00000 n 
-0000356507 00000 n 
-0000346873 00000 n 
-0000347029 00000 n 
-0000347450 00000 n 
-0000347818 00000 n 
-0000348019 00000 n 
-0000349073 00000 n 
-0000349452 00000 n 
-0000349764 00000 n 
-0000350069 00000 n 
-0000350371 00000 n 
-0000350691 00000 n 
-0000351158 00000 n 
-0000351480 00000 n 
-0000351644 00000 n 
-0000352057 00000 n 
-0000352199 00000 n 
-0000352354 00000 n 
-0000352473 00000 n 
-0000352803 00000 n 
-0000353039 00000 n 
-0000353328 00000 n 
-0000353482 00000 n 
-0000353605 00000 n 
-0000353837 00000 n 
-0000354244 00000 n 
-0000354636 00000 n 
-0000354727 00000 n 
-0000355140 00000 n 
-0000355463 00000 n 
-0000355709 00000 n 
-0000355871 00000 n 
-0000362134 00000 n 
-0000362291 00000 n 
-0000362446 00000 n 
-0000362602 00000 n 
-0000362759 00000 n 
-0000362915 00000 n 
-0000363072 00000 n 
-0000366786 00000 n 
-0000363984 00000 n 
-0000361772 00000 n 
-0000356736 00000 n 
-0000363229 00000 n 
-0000363292 00000 n 
-0000363356 00000 n 
-0000363482 00000 n 
-0000363545 00000 n 
-0000363608 00000 n 
-0000363671 00000 n 
-0000363734 00000 n 
-0000363797 00000 n 
-0001593515 00000 n 
-0000363860 00000 n 
-0000363922 00000 n 
-0000378291 00000 n 
-0000378447 00000 n 
-0000378602 00000 n 
-0000401285 00000 n 
-0000401438 00000 n 
-0000382127 00000 n 
-0000379132 00000 n 
-0000366608 00000 n 
-0000364237 00000 n 
-0000378757 00000 n 
-0000378820 00000 n 
-0000378222 00000 n 
-0000378945 00000 n 
-0000379008 00000 n 
-0000379071 00000 n 
-0001596700 00000 n 
-0000369100 00000 n 
-0000369256 00000 n 
-0000369658 00000 n 
-0000369921 00000 n 
-0000370184 00000 n 
-0000370504 00000 n 
-0000370705 00000 n 
-0000371759 00000 n 
-0000372138 00000 n 
-0000372443 00000 n 
-0000372745 00000 n 
-0000373065 00000 n 
-0000373532 00000 n 
-0000373854 00000 n 
-0000374018 00000 n 
-0000374431 00000 n 
-0000374669 00000 n 
-0000374905 00000 n 
-0000375194 00000 n 
-0000375348 00000 n 
-0000375659 00000 n 
-0000375782 00000 n 
-0000376014 00000 n 
-0000376421 00000 n 
-0000376563 00000 n 
-0000376955 00000 n 
-0000377368 00000 n 
-0000377691 00000 n 
-0000377937 00000 n 
-0000404454 00000 n 
-0000401967 00000 n 
-0000381958 00000 n 
-0000379298 00000 n 
-0000401594 00000 n 
-0000401657 00000 n 
-0000401216 00000 n 
-0000401844 00000 n 
-0000401906 00000 n 
-0000384434 00000 n 
-0000384590 00000 n 
-0000384983 00000 n 
-0000386076 00000 n 
-0000387170 00000 n 
-0000388107 00000 n 
-0000389090 00000 n 
-0000389922 00000 n 
-0000390921 00000 n 
-0000391940 00000 n 
-0000393075 00000 n 
-0000394185 00000 n 
-0000395240 00000 n 
-0000395499 00000 n 
-0000395700 00000 n 
-0000396754 00000 n 
-0000396776 00000 n 
-0000396798 00000 n 
-0000396820 00000 n 
-0000396842 00000 n 
-0000396864 00000 n 
-0000396886 00000 n 
-0000396908 00000 n 
-0000396930 00000 n 
-0000396952 00000 n 
-0000396974 00000 n 
-0000397107 00000 n 
-0000397249 00000 n 
-0000397716 00000 n 
-0000398038 00000 n 
-0000398202 00000 n 
-0000398597 00000 n 
-0000398886 00000 n 
-0000399040 00000 n 
-0000399163 00000 n 
-0000399570 00000 n 
-0000399712 00000 n 
-0000400104 00000 n 
-0000400195 00000 n 
-0000400608 00000 n 
-0000400931 00000 n 
-0001356003 00000 n 
-0001358717 00000 n 
-0001356410 00000 n 
-0000404294 00000 n 
-0000402159 00000 n 
-0001356160 00000 n 
-0001356223 00000 n 
-0001355934 00000 n 
-0001356348 00000 n 
-0001348783 00000 n 
-0001348939 00000 n 
-0001349320 00000 n 
-0001349491 00000 n 
-0001349754 00000 n 
-0001350017 00000 n 
-0001350258 00000 n 
-0001350459 00000 n 
-0001351513 00000 n 
-0001351892 00000 n 
-0001352204 00000 n 
-0001352509 00000 n 
-0001352811 00000 n 
-0001353133 00000 n 
-0001353546 00000 n 
-0001353688 00000 n 
-0001353843 00000 n 
-0001353962 00000 n 
-0001354198 00000 n 
-0001354487 00000 n 
-0001354641 00000 n 
-0001354764 00000 n 
-0001354996 00000 n 
-0001355403 00000 n 
-0001355649 00000 n 
-0001358873 00000 n 
-0001359276 00000 n 
-0001358564 00000 n 
-0001356576 00000 n 
-0001359029 00000 n 
-0001359154 00000 n 
-0001359216 00000 n 
-0001361670 00000 n 
-0001361827 00000 n 
-0001361982 00000 n 
-0001362637 00000 n 
-0001361493 00000 n 
-0001359399 00000 n 
-0001362138 00000 n 
-0001362387 00000 n 
-0001362450 00000 n 
-0001362513 00000 n 
-0001362575 00000 n 
-0001368126 00000 n 
-0001368283 00000 n 
-0001368440 00000 n 
-0001368595 00000 n 
-0001368750 00000 n 
-0001364913 00000 n 
-0001364278 00000 n 
-0001362809 00000 n 
-0001364416 00000 n 
-0001364727 00000 n 
-0001369344 00000 n 
-0001367946 00000 n 
-0001365048 00000 n 
-0001368906 00000 n 
-0001369031 00000 n 
-0001369094 00000 n 
-0001369157 00000 n 
-0001369220 00000 n 
-0001369282 00000 n 
-0001596825 00000 n 
-0001370645 00000 n 
-0001370991 00000 n 
-0001370486 00000 n 
-0001369467 00000 n 
-0001370802 00000 n 
-0001370865 00000 n 
-0001370928 00000 n 
-0001372407 00000 n 
-0001372753 00000 n 
-0001372248 00000 n 
-0001371137 00000 n 
-0001372564 00000 n 
-0001372627 00000 n 
-0001372690 00000 n 
-0001374867 00000 n 
-0001375213 00000 n 
-0001374708 00000 n 
-0001372899 00000 n 
-0001375024 00000 n 
-0001375087 00000 n 
-0001375150 00000 n 
-0001376942 00000 n 
-0001376678 00000 n 
-0001375411 00000 n 
-0001376816 00000 n 
-0001376879 00000 n 
-0001379549 00000 n 
-0001379706 00000 n 
-0001380113 00000 n 
-0001379381 00000 n 
-0001377051 00000 n 
-0001379861 00000 n 
-0001379924 00000 n 
-0001379987 00000 n 
-0001380050 00000 n 
-0001383261 00000 n 
-0001383416 00000 n 
-0001386905 00000 n 
-0001383820 00000 n 
-0001383093 00000 n 
-0001380259 00000 n 
-0001383569 00000 n 
-0001383632 00000 n 
-0001383695 00000 n 
-0001383758 00000 n 
-0001596950 00000 n 
-0001387062 00000 n 
-0001387219 00000 n 
-0001387750 00000 n 
-0001386743 00000 n 
-0001383966 00000 n 
-0001387375 00000 n 
-0001387562 00000 n 
-0001387625 00000 n 
-0001387688 00000 n 
-0001388410 00000 n 
-0001388162 00000 n 
-0001387899 00000 n 
-0001388285 00000 n 
-0001388496 00000 n 
-0001388522 00000 n 
-0001388552 00000 n 
-0001388584 00000 n 
-0001388965 00000 n 
-0001389607 00000 n 
-0001390253 00000 n 
-0001390285 00000 n 
-0001390323 00000 n 
-0001391020 00000 n 
-0001391698 00000 n 
-0001392390 00000 n 
-0001393014 00000 n 
-0001393140 00000 n 
-0001393808 00000 n 
-0001394459 00000 n 
-0001395103 00000 n 
-0001395772 00000 n 
-0001414183 00000 n 
-0001414563 00000 n 
-0001423033 00000 n 
-0001423432 00000 n 
-0001434411 00000 n 
-0001434699 00000 n 
-0001451055 00000 n 
-0001451390 00000 n 
-0001458655 00000 n 
-0001458877 00000 n 
-0001467082 00000 n 
-0001467318 00000 n 
-0001476093 00000 n 
-0001476335 00000 n 
-0001487832 00000 n 
-0001488110 00000 n 
-0001512294 00000 n 
-0001512752 00000 n 
-0001535565 00000 n 
-0001536103 00000 n 
-0001543461 00000 n 
-0001543693 00000 n 
-0001552678 00000 n 
-0001552972 00000 n 
-0001562806 00000 n 
-0001563110 00000 n 
-0001570769 00000 n 
-0001571041 00000 n 
-0001578099 00000 n 
-0001578340 00000 n 
-0001585394 00000 n 
-0001585636 00000 n 
-0001592690 00000 n 
-0001597048 00000 n 
-0001597168 00000 n 
-0001597291 00000 n 
-0001597380 00000 n 
-0001597462 00000 n 
-0001605483 00000 n 
-0001605694 00000 n 
-0001605919 00000 n 
-0001606142 00000 n 
-0001606367 00000 n 
-0001606589 00000 n 
-0001606811 00000 n 
-0001607029 00000 n 
-0001607239 00000 n 
-0001607450 00000 n 
-0001607660 00000 n 
-0001607871 00000 n 
-0001608081 00000 n 
-0001608292 00000 n 
-0001608501 00000 n 
-0001608710 00000 n 
-0001608921 00000 n 
-0001609131 00000 n 
-0001609342 00000 n 
-0001609553 00000 n 
-0001609770 00000 n 
-0001609985 00000 n 
-0001610202 00000 n 
-0001610417 00000 n 
-0001610631 00000 n 
-0001610844 00000 n 
-0001611073 00000 n 
-0001611324 00000 n 
-0001611574 00000 n 
-0001611824 00000 n 
-0001612075 00000 n 
-0001612325 00000 n 
-0001612577 00000 n 
-0001612832 00000 n 
-0001613089 00000 n 
-0001613343 00000 n 
-0001613597 00000 n 
-0001613806 00000 n 
-0001613977 00000 n 
-0001614147 00000 n 
-0001614318 00000 n 
-0001614488 00000 n 
-0001614659 00000 n 
-0001614828 00000 n 
-0001614997 00000 n 
-0001615171 00000 n 
-0001615346 00000 n 
-0001615523 00000 n 
-0001615698 00000 n 
-0001615875 00000 n 
-0001616047 00000 n 
-0001616230 00000 n 
-0001616437 00000 n 
-0001616658 00000 n 
-0001616883 00000 n 
-0001617110 00000 n 
-0001617337 00000 n 
-0001617577 00000 n 
-0001617838 00000 n 
-0001618103 00000 n 
-0001618370 00000 n 
-0001618637 00000 n 
-0001618904 00000 n 
-0001619171 00000 n 
-0001619438 00000 n 
-0001619687 00000 n 
-0001619810 00000 n 
-0001619937 00000 n 
-0001620063 00000 n 
-0001620189 00000 n 
-0001620320 00000 n 
-0001620455 00000 n 
-0001620581 00000 n 
-0001620696 00000 n 
-0001620819 00000 n 
-0001620954 00000 n 
-0001621082 00000 n 
-0001621209 00000 n 
-0001621335 00000 n 
-0001621426 00000 n 
-0001621466 00000 n 
-0001621598 00000 n 
+0000007690 00000 n 
+0001394746 00000 n 
+0001635503 00000 n 
+0000007742 00000 n 
+0000007797 00000 n 
+0001394808 00000 n 
+0001635424 00000 n 
+0000007854 00000 n 
+0000007888 00000 n 
+0001396832 00000 n 
+0001635331 00000 n 
+0000007945 00000 n 
+0000007973 00000 n 
+0001401638 00000 n 
+0001635252 00000 n 
+0000008030 00000 n 
+0000008060 00000 n 
+0001401700 00000 n 
+0001635120 00000 n 
+0000008112 00000 n 
+0000008178 00000 n 
+0001401762 00000 n 
+0001635041 00000 n 
+0000008235 00000 n 
+0000008269 00000 n 
+0001404448 00000 n 
+0001634948 00000 n 
+0000008326 00000 n 
+0000008354 00000 n 
+0001407260 00000 n 
+0001634869 00000 n 
+0000008411 00000 n 
+0000008442 00000 n 
+0001407321 00000 n 
+0001634751 00000 n 
+0000008494 00000 n 
+0000008618 00000 n 
+0001411997 00000 n 
+0001634672 00000 n 
+0000008675 00000 n 
+0000008710 00000 n 
+0001413337 00000 n 
+0001634593 00000 n 
+0000008767 00000 n 
+0000008795 00000 n 
+0001416081 00000 n 
+0001634513 00000 n 
+0000008842 00000 n 
+0000008870 00000 n 
+0000011025 00000 n 
+0000012318 00000 n 
+0000011504 00000 n 
+0000008920 00000 n 
+0000011144 00000 n 
+0001630903 00000 n 
+0000011205 00000 n 
+0001629593 00000 n 
+0001631621 00000 n 
+0001632192 00000 n 
+0000027311 00000 n 
+0000019989 00000 n 
+0000012184 00000 n 
+0000011602 00000 n 
+0000019867 00000 n 
+0000019928 00000 n 
+0000019799 00000 n 
+0000015416 00000 n 
+0000015571 00000 n 
+0000015916 00000 n 
+0000016113 00000 n 
+0000016246 00000 n 
+0000016446 00000 n 
+0000017499 00000 n 
+0000017877 00000 n 
+0000018178 00000 n 
+0000018497 00000 n 
+0000018638 00000 n 
+0000018756 00000 n 
+0000018991 00000 n 
+0000019222 00000 n 
+0000019427 00000 n 
+0000019587 00000 n 
+0000027463 00000 n 
+0000022661 00000 n 
+0000027240 00000 n 
+0000027617 00000 n 
+0000028075 00000 n 
+0000022491 00000 n 
+0000020089 00000 n 
+0000027771 00000 n 
+0001631478 00000 n 
+0000027832 00000 n 
+0001631334 00000 n 
+0000027893 00000 n 
+0001630758 00000 n 
+0000027954 00000 n 
+0000028015 00000 n 
+0000026982 00000 n 
+0000030388 00000 n 
+0000030542 00000 n 
+0000032379 00000 n 
+0000030999 00000 n 
+0000030241 00000 n 
+0000028220 00000 n 
+0000030696 00000 n 
+0001630030 00000 n 
+0000030877 00000 n 
+0000030938 00000 n 
+0000059401 00000 n 
+0000059552 00000 n 
+0000059706 00000 n 
+0000059860 00000 n 
+0000054936 00000 n 
+0000032260 00000 n 
+0000031134 00000 n 
+0000054814 00000 n 
+0000054875 00000 n 
+0001630613 00000 n 
+0000039377 00000 n 
+0000041012 00000 n 
+0000041053 00000 n 
+0000041133 00000 n 
+0000041214 00000 n 
+0000041355 00000 n 
+0000041630 00000 n 
+0000041970 00000 n 
+0000042212 00000 n 
+0000042233 00000 n 
+0000054791 00000 n 
+0000060013 00000 n 
+0000060168 00000 n 
+0000060323 00000 n 
+0000061018 00000 n 
+0000059214 00000 n 
+0000055062 00000 n 
+0000060477 00000 n 
+0000060598 00000 n 
+0000060659 00000 n 
+0000060720 00000 n 
+0000060780 00000 n 
+0000060841 00000 n 
+0000060898 00000 n 
+0000060958 00000 n 
+0000061630 00000 n 
+0000061450 00000 n 
+0000061140 00000 n 
+0000061569 00000 n 
+0001632310 00000 n 
+0000062747 00000 n 
+0000110475 00000 n 
+0000109148 00000 n 
+0000062628 00000 n 
+0000061702 00000 n 
+0000108846 00000 n 
+0000109027 00000 n 
+0000108370 00000 n 
+0000120059 00000 n 
+0000110341 00000 n 
+0000109277 00000 n 
+0000119937 00000 n 
+0000119998 00000 n 
+0000119869 00000 n 
+0000113811 00000 n 
+0000113966 00000 n 
+0000114357 00000 n 
+0000114527 00000 n 
+0000114754 00000 n 
+0000114954 00000 n 
+0000116007 00000 n 
+0000116385 00000 n 
+0000116689 00000 n 
+0000116828 00000 n 
+0000116972 00000 n 
+0000117293 00000 n 
+0000117456 00000 n 
+0000117850 00000 n 
+0000118003 00000 n 
+0000118125 00000 n 
+0000118516 00000 n 
+0000118606 00000 n 
+0000119018 00000 n 
+0000119340 00000 n 
+0000119585 00000 n 
+0000120944 00000 n 
+0000120627 00000 n 
+0000120159 00000 n 
+0000120761 00000 n 
+0000120822 00000 n 
+0000120883 00000 n 
+0000124286 00000 n 
+0000124441 00000 n 
+0000127338 00000 n 
+0000125077 00000 n 
+0000124139 00000 n 
+0000121052 00000 n 
+0000124596 00000 n 
+0000124957 00000 n 
+0000125017 00000 n 
+0000127491 00000 n 
+0000132903 00000 n 
+0000128008 00000 n 
+0000127176 00000 n 
+0000125199 00000 n 
+0000127646 00000 n 
+0000127766 00000 n 
+0000127887 00000 n 
+0000127948 00000 n 
+0000133057 00000 n 
+0000133212 00000 n 
+0000133367 00000 n 
+0000133520 00000 n 
+0000136199 00000 n 
+0000134099 00000 n 
+0000132732 00000 n 
+0000128192 00000 n 
+0000133674 00000 n 
+0001629739 00000 n 
+0001631191 00000 n 
+0001632050 00000 n 
+0001630323 00000 n 
+0000133795 00000 n 
+0000133856 00000 n 
+0000133917 00000 n 
+0000133978 00000 n 
+0001629884 00000 n 
+0000134039 00000 n 
+0001632428 00000 n 
+0000136353 00000 n 
+0000136870 00000 n 
+0000136037 00000 n 
+0000134325 00000 n 
+0000136508 00000 n 
+0000136689 00000 n 
+0000136750 00000 n 
+0000136809 00000 n 
+0001630468 00000 n 
+0000138224 00000 n 
+0000138562 00000 n 
+0000138070 00000 n 
+0000137093 00000 n 
+0000138379 00000 n 
+0000138440 00000 n 
+0000138501 00000 n 
+0000140846 00000 n 
+0000141243 00000 n 
+0000140692 00000 n 
+0000138707 00000 n 
+0000141000 00000 n 
+0000141121 00000 n 
+0000141182 00000 n 
+0000143736 00000 n 
+0000143891 00000 n 
+0000144046 00000 n 
+0000144565 00000 n 
+0000143566 00000 n 
+0000141414 00000 n 
+0000144201 00000 n 
+0000144322 00000 n 
+0000144383 00000 n 
+0000144444 00000 n 
+0000144505 00000 n 
+0000148568 00000 n 
+0000148721 00000 n 
+0000149119 00000 n 
+0000148421 00000 n 
+0000144762 00000 n 
+0000148876 00000 n 
+0000148997 00000 n 
+0000149058 00000 n 
+0001631908 00000 n 
+0000153614 00000 n 
+0000153769 00000 n 
+0000153920 00000 n 
+0000154075 00000 n 
+0000154228 00000 n 
+0000154383 00000 n 
+0000154538 00000 n 
+0000155301 00000 n 
+0000153427 00000 n 
+0000149293 00000 n 
+0000154693 00000 n 
+0000154754 00000 n 
+0000154815 00000 n 
+0000154877 00000 n 
+0000154938 00000 n 
+0000154999 00000 n 
+0000155060 00000 n 
+0000155121 00000 n 
+0000155181 00000 n 
+0000155241 00000 n 
+0001632546 00000 n 
+0000159454 00000 n 
+0000159609 00000 n 
+0000159763 00000 n 
+0000160403 00000 n 
+0000159299 00000 n 
+0000155475 00000 n 
+0000159918 00000 n 
+0000160221 00000 n 
+0000160282 00000 n 
+0000160343 00000 n 
+0000163189 00000 n 
+0000162811 00000 n 
+0000160577 00000 n 
+0000162945 00000 n 
+0000163067 00000 n 
+0000165950 00000 n 
+0000166104 00000 n 
+0000166560 00000 n 
+0000165788 00000 n 
+0000163335 00000 n 
+0000166259 00000 n 
+0000166379 00000 n 
+0000166439 00000 n 
+0000166500 00000 n 
+0000169003 00000 n 
+0000169522 00000 n 
+0000168849 00000 n 
+0000166731 00000 n 
+0000169157 00000 n 
+0000169279 00000 n 
+0000169462 00000 n 
+0000171928 00000 n 
+0000172327 00000 n 
+0000171774 00000 n 
+0000169706 00000 n 
+0000172083 00000 n 
+0000172144 00000 n 
+0000172266 00000 n 
+0000175496 00000 n 
+0000173602 00000 n 
+0000173285 00000 n 
+0000172498 00000 n 
+0000173419 00000 n 
+0000173480 00000 n 
+0000173541 00000 n 
+0001632664 00000 n 
+0000175650 00000 n 
+0000176108 00000 n 
+0000175334 00000 n 
+0000173710 00000 n 
+0000175804 00000 n 
+0000175865 00000 n 
+0000175987 00000 n 
+0000176048 00000 n 
+0000177309 00000 n 
+0000176992 00000 n 
+0000176279 00000 n 
+0000177126 00000 n 
+0000177187 00000 n 
+0000179430 00000 n 
+0000179584 00000 n 
+0000180044 00000 n 
+0000179268 00000 n 
+0000177443 00000 n 
+0000179739 00000 n 
+0000179861 00000 n 
+0000179922 00000 n 
+0000179983 00000 n 
+0000181277 00000 n 
+0000180960 00000 n 
+0000180215 00000 n 
+0000181094 00000 n 
+0000181155 00000 n 
+0000181216 00000 n 
+0000183907 00000 n 
+0000184062 00000 n 
+0000184216 00000 n 
+0000184796 00000 n 
+0000183737 00000 n 
+0000181398 00000 n 
+0000184371 00000 n 
+0000184432 00000 n 
+0000184615 00000 n 
+0000184676 00000 n 
+0000184736 00000 n 
+0000188607 00000 n 
+0000189064 00000 n 
+0000188468 00000 n 
+0000184980 00000 n 
+0000188760 00000 n 
+0000188821 00000 n 
+0000188882 00000 n 
+0000189004 00000 n 
+0001632782 00000 n 
+0000192437 00000 n 
+0000193081 00000 n 
+0000192298 00000 n 
+0000189212 00000 n 
+0000192591 00000 n 
+0000192652 00000 n 
+0000192713 00000 n 
+0000192774 00000 n 
+0000192896 00000 n 
+0000192958 00000 n 
+0000193020 00000 n 
+0000197085 00000 n 
+0000197239 00000 n 
+0000200156 00000 n 
+0000197823 00000 n 
+0000196938 00000 n 
+0000193255 00000 n 
+0000197394 00000 n 
+0000197455 00000 n 
+0000197517 00000 n 
+0000197579 00000 n 
+0000197641 00000 n 
+0000197702 00000 n 
+0000197762 00000 n 
+0000200310 00000 n 
+0000201947 00000 n 
+0000200709 00000 n 
+0000200009 00000 n 
+0000197984 00000 n 
+0000200465 00000 n 
+0000200587 00000 n 
+0000200648 00000 n 
+0000215682 00000 n 
+0000201813 00000 n 
+0000200831 00000 n 
+0000215499 00000 n 
+0000215560 00000 n 
+0000215431 00000 n 
+0000204138 00000 n 
+0000204293 00000 n 
+0000204751 00000 n 
+0000205013 00000 n 
+0000205443 00000 n 
+0000205643 00000 n 
+0000206696 00000 n 
+0000206857 00000 n 
+0000207163 00000 n 
+0000207397 00000 n 
+0000207715 00000 n 
+0000207863 00000 n 
+0000208188 00000 n 
+0000208600 00000 n 
+0000208762 00000 n 
+0000209140 00000 n 
+0000209444 00000 n 
+0000209763 00000 n 
+0000210229 00000 n 
+0000210550 00000 n 
+0000210713 00000 n 
+0000211125 00000 n 
+0000211362 00000 n 
+0000211503 00000 n 
+0000211657 00000 n 
+0000211775 00000 n 
+0000212010 00000 n 
+0000212404 00000 n 
+0000212692 00000 n 
+0000212845 00000 n 
+0000213155 00000 n 
+0000213277 00000 n 
+0000213508 00000 n 
+0000213914 00000 n 
+0000214055 00000 n 
+0000214446 00000 n 
+0000214536 00000 n 
+0000214741 00000 n 
+0000214986 00000 n 
+0000215147 00000 n 
+0000217543 00000 n 
+0000216840 00000 n 
+0000216584 00000 n 
+0000215834 00000 n 
+0000216718 00000 n 
+0000216779 00000 n 
+0000234053 00000 n 
+0000217409 00000 n 
+0000216961 00000 n 
+0000233931 00000 n 
+0000233992 00000 n 
+0000233863 00000 n 
+0001632900 00000 n 
+0000221157 00000 n 
+0000221312 00000 n 
+0000221776 00000 n 
+0000222038 00000 n 
+0000222300 00000 n 
+0000222776 00000 n 
+0000222976 00000 n 
+0000224029 00000 n 
+0000224190 00000 n 
+0000224496 00000 n 
+0000224730 00000 n 
+0000225048 00000 n 
+0000225196 00000 n 
+0000225521 00000 n 
+0000225933 00000 n 
+0000226095 00000 n 
+0000226473 00000 n 
+0000226777 00000 n 
+0000227078 00000 n 
+0000227397 00000 n 
+0000227863 00000 n 
+0000228184 00000 n 
+0000228347 00000 n 
+0000228759 00000 n 
+0000228996 00000 n 
+0000229137 00000 n 
+0000229291 00000 n 
+0000229409 00000 n 
+0000229738 00000 n 
+0000229973 00000 n 
+0000230367 00000 n 
+0000230655 00000 n 
+0000230808 00000 n 
+0000231118 00000 n 
+0000231240 00000 n 
+0000231471 00000 n 
+0000231877 00000 n 
+0000232018 00000 n 
+0000232409 00000 n 
+0000232499 00000 n 
+0000232704 00000 n 
+0000233026 00000 n 
+0000233271 00000 n 
+0000233432 00000 n 
+0000233579 00000 n 
+0000251044 00000 n 
+0000236493 00000 n 
+0000236176 00000 n 
+0000234153 00000 n 
+0000236310 00000 n 
+0000236432 00000 n 
+0000251199 00000 n 
+0000239179 00000 n 
+0000251780 00000 n 
+0000239017 00000 n 
+0000236640 00000 n 
+0000251352 00000 n 
+0000251535 00000 n 
+0000251597 00000 n 
+0000250976 00000 n 
+0000251658 00000 n 
+0000251719 00000 n 
+0000242247 00000 n 
+0000242402 00000 n 
+0000242838 00000 n 
+0000243008 00000 n 
+0000243355 00000 n 
+0000243555 00000 n 
+0000244608 00000 n 
+0000244986 00000 n 
+0000245130 00000 n 
+0000245270 00000 n 
+0000245574 00000 n 
+0000245875 00000 n 
+0000246194 00000 n 
+0000246660 00000 n 
+0000246804 00000 n 
+0000247125 00000 n 
+0000247288 00000 n 
+0000247525 00000 n 
+0000247666 00000 n 
+0000247784 00000 n 
+0000248019 00000 n 
+0000248307 00000 n 
+0000248460 00000 n 
+0000248770 00000 n 
+0000248892 00000 n 
+0000249123 00000 n 
+0000249529 00000 n 
+0000249920 00000 n 
+0000250125 00000 n 
+0000250447 00000 n 
+0000250692 00000 n 
+0000255149 00000 n 
+0000255303 00000 n 
+0000255457 00000 n 
+0000259163 00000 n 
+0000256099 00000 n 
+0000254979 00000 n 
+0000251969 00000 n 
+0000255612 00000 n 
+0000255734 00000 n 
+0000255857 00000 n 
+0000255918 00000 n 
+0000255979 00000 n 
+0000256040 00000 n 
+0000259317 00000 n 
+0000259774 00000 n 
+0000259001 00000 n 
+0000256322 00000 n 
+0000259471 00000 n 
+0000259532 00000 n 
+0000259653 00000 n 
+0000259714 00000 n 
+0000263434 00000 n 
+0000263588 00000 n 
+0000264046 00000 n 
+0000263272 00000 n 
+0000259997 00000 n 
+0000263742 00000 n 
+0000263803 00000 n 
+0001631766 00000 n 
+0000263865 00000 n 
+0000263926 00000 n 
+0000263986 00000 n 
+0000274955 00000 n 
+0000266888 00000 n 
+0000275110 00000 n 
+0000275265 00000 n 
+0000278519 00000 n 
+0000275785 00000 n 
+0000266718 00000 n 
+0000264308 00000 n 
+0000275419 00000 n 
+0000275541 00000 n 
+0000274887 00000 n 
+0000275602 00000 n 
+0000275663 00000 n 
+0000275724 00000 n 
+0001633018 00000 n 
+0000270250 00000 n 
+0000270405 00000 n 
+0000270753 00000 n 
+0000270923 00000 n 
+0000271072 00000 n 
+0000271272 00000 n 
+0000272325 00000 n 
+0000272646 00000 n 
+0000272809 00000 n 
+0000273203 00000 n 
+0000273356 00000 n 
+0000273478 00000 n 
+0000273869 00000 n 
+0000274281 00000 n 
+0000274603 00000 n 
+0000281889 00000 n 
+0000279105 00000 n 
+0000278365 00000 n 
+0000275974 00000 n 
+0000278674 00000 n 
+0000278735 00000 n 
+0000278797 00000 n 
+0000278859 00000 n 
+0000278921 00000 n 
+0000278983 00000 n 
+0000279044 00000 n 
+0000282044 00000 n 
+0000282441 00000 n 
+0000281727 00000 n 
+0000279289 00000 n 
+0000282198 00000 n 
+0000282259 00000 n 
+0000282320 00000 n 
+0000282381 00000 n 
+0000284958 00000 n 
+0000285295 00000 n 
+0000284819 00000 n 
+0000282625 00000 n 
+0000285113 00000 n 
+0000285235 00000 n 
+0000286859 00000 n 
+0000287321 00000 n 
+0000286704 00000 n 
+0000285430 00000 n 
+0000287013 00000 n 
+0000287197 00000 n 
+0000287259 00000 n 
+0000288574 00000 n 
+0000288248 00000 n 
+0000287492 00000 n 
+0000288385 00000 n 
+0000288448 00000 n 
+0000288511 00000 n 
+0000290359 00000 n 
+0000290096 00000 n 
+0000288683 00000 n 
+0000290234 00000 n 
+0000290297 00000 n 
+0001633137 00000 n 
+0000293331 00000 n 
+0000293487 00000 n 
+0000293895 00000 n 
+0000293163 00000 n 
+0000290494 00000 n 
+0000293643 00000 n 
+0000293706 00000 n 
+0000293769 00000 n 
+0000293832 00000 n 
+0000296485 00000 n 
+0000297013 00000 n 
+0000296326 00000 n 
+0000294093 00000 n 
+0000296639 00000 n 
+0000296764 00000 n 
+0000296951 00000 n 
+0000299791 00000 n 
+0000299947 00000 n 
+0000300103 00000 n 
+0000300634 00000 n 
+0000299614 00000 n 
+0000297172 00000 n 
+0000300259 00000 n 
+0000300384 00000 n 
+0000300447 00000 n 
+0000300510 00000 n 
+0000300572 00000 n 
+0000304750 00000 n 
+0000304906 00000 n 
+0000305060 00000 n 
+0000305216 00000 n 
+0000308276 00000 n 
+0000308431 00000 n 
+0000305876 00000 n 
+0000304579 00000 n 
+0000300793 00000 n 
+0000305372 00000 n 
+0000305435 00000 n 
+0000305499 00000 n 
+0000305563 00000 n 
+0000305627 00000 n 
+0000305689 00000 n 
+0000305751 00000 n 
+0000305814 00000 n 
+0000308901 00000 n 
+0000308108 00000 n 
+0000306025 00000 n 
+0000308587 00000 n 
+0000308650 00000 n 
+0000308775 00000 n 
+0000308838 00000 n 
+0000309809 00000 n 
+0000309545 00000 n 
+0000309099 00000 n 
+0000309683 00000 n 
+0000309746 00000 n 
+0001633262 00000 n 
+0000311499 00000 n 
+0000311655 00000 n 
+0000311810 00000 n 
+0000312280 00000 n 
+0000311322 00000 n 
+0000309918 00000 n 
+0000311965 00000 n 
+0000312028 00000 n 
+0000312091 00000 n 
+0000312154 00000 n 
+0000312217 00000 n 
+0000313516 00000 n 
+0000313189 00000 n 
+0000312452 00000 n 
+0000313327 00000 n 
+0000313390 00000 n 
+0000313453 00000 n 
+0000315306 00000 n 
+0000314980 00000 n 
+0000313625 00000 n 
+0000315118 00000 n 
+0000315181 00000 n 
+0000319124 00000 n 
+0000316587 00000 n 
+0000316260 00000 n 
+0000315428 00000 n 
+0000316398 00000 n 
+0000316461 00000 n 
+0000316524 00000 n 
+0000319594 00000 n 
+0000318965 00000 n 
+0000316722 00000 n 
+0000319280 00000 n 
+0000319343 00000 n 
+0000319407 00000 n 
+0000319531 00000 n 
+0000320645 00000 n 
+0000320381 00000 n 
+0000319792 00000 n 
+0000320519 00000 n 
+0000320582 00000 n 
+0001633387 00000 n 
+0000323355 00000 n 
+0000331619 00000 n 
+0000331775 00000 n 
+0000337329 00000 n 
+0000337483 00000 n 
+0000337639 00000 n 
+0000337794 00000 n 
+0000337950 00000 n 
+0000332307 00000 n 
+0000323186 00000 n 
+0000320754 00000 n 
+0000331931 00000 n 
+0000332118 00000 n 
+0000331550 00000 n 
+0000332181 00000 n 
+0000332244 00000 n 
+0000325247 00000 n 
+0000325403 00000 n 
+0000325793 00000 n 
+0000326043 00000 n 
+0000326244 00000 n 
+0000327298 00000 n 
+0000327677 00000 n 
+0000327982 00000 n 
+0000328302 00000 n 
+0000328510 00000 n 
+0000328832 00000 n 
+0000328996 00000 n 
+0000329138 00000 n 
+0000329257 00000 n 
+0000329411 00000 n 
+0000329722 00000 n 
+0000329845 00000 n 
+0000330077 00000 n 
+0000330283 00000 n 
+0000330696 00000 n 
+0000331019 00000 n 
+0000331265 00000 n 
+0000356651 00000 n 
+0000341368 00000 n 
+0000338545 00000 n 
+0000337149 00000 n 
+0000332486 00000 n 
+0000338106 00000 n 
+0000338231 00000 n 
+0000338294 00000 n 
+0000338357 00000 n 
+0000338420 00000 n 
+0000338483 00000 n 
+0000362404 00000 n 
+0000356996 00000 n 
+0000341208 00000 n 
+0000338746 00000 n 
+0000356807 00000 n 
+0000356870 00000 n 
+0000356582 00000 n 
+0000356933 00000 n 
+0000347299 00000 n 
+0000347455 00000 n 
+0000347876 00000 n 
+0000348244 00000 n 
+0000348445 00000 n 
+0000349499 00000 n 
+0000349878 00000 n 
+0000350190 00000 n 
+0000350495 00000 n 
+0000350797 00000 n 
+0000351117 00000 n 
+0000351584 00000 n 
+0000351906 00000 n 
+0000352070 00000 n 
+0000352483 00000 n 
+0000352625 00000 n 
+0000352780 00000 n 
+0000352899 00000 n 
+0000353229 00000 n 
+0000353465 00000 n 
+0000353754 00000 n 
+0000353908 00000 n 
+0000354031 00000 n 
+0000354263 00000 n 
+0000354670 00000 n 
+0000355062 00000 n 
+0000355153 00000 n 
+0000355566 00000 n 
+0000355889 00000 n 
+0000356135 00000 n 
+0000356297 00000 n 
+0000362559 00000 n 
+0000362716 00000 n 
+0000362871 00000 n 
+0000363027 00000 n 
+0000363184 00000 n 
+0000363340 00000 n 
+0000363497 00000 n 
+0000367211 00000 n 
+0000364409 00000 n 
+0000362197 00000 n 
+0000357162 00000 n 
+0000363654 00000 n 
+0000363717 00000 n 
+0000363781 00000 n 
+0000363907 00000 n 
+0000363970 00000 n 
+0000364033 00000 n 
+0000364096 00000 n 
+0000364159 00000 n 
+0000364222 00000 n 
+0001630176 00000 n 
+0000364285 00000 n 
+0000364347 00000 n 
+0000378716 00000 n 
+0000378872 00000 n 
+0000379027 00000 n 
+0000401710 00000 n 
+0000401863 00000 n 
+0000382552 00000 n 
+0000379557 00000 n 
+0000367033 00000 n 
+0000364662 00000 n 
+0000379182 00000 n 
+0000379245 00000 n 
+0000378647 00000 n 
+0000379370 00000 n 
+0000379433 00000 n 
+0000379496 00000 n 
+0000369525 00000 n 
+0000369681 00000 n 
+0000370083 00000 n 
+0000370346 00000 n 
+0000370609 00000 n 
+0000370929 00000 n 
+0000371130 00000 n 
+0000372184 00000 n 
+0000372563 00000 n 
+0000372868 00000 n 
+0000373170 00000 n 
+0000373490 00000 n 
+0000373957 00000 n 
+0000374279 00000 n 
+0000374443 00000 n 
+0000374856 00000 n 
+0000375094 00000 n 
+0000375330 00000 n 
+0000375619 00000 n 
+0000375773 00000 n 
+0000376084 00000 n 
+0000376207 00000 n 
+0000376439 00000 n 
+0000376846 00000 n 
+0000376988 00000 n 
+0000377380 00000 n 
+0000377793 00000 n 
+0000378116 00000 n 
+0000378362 00000 n 
+0000404880 00000 n 
+0000402392 00000 n 
+0000382383 00000 n 
+0000379723 00000 n 
+0000402019 00000 n 
+0000402082 00000 n 
+0000401641 00000 n 
+0000402269 00000 n 
+0000402331 00000 n 
+0001633512 00000 n 
+0000384859 00000 n 
+0000385015 00000 n 
+0000385408 00000 n 
+0000386501 00000 n 
+0000387595 00000 n 
+0000388532 00000 n 
+0000389515 00000 n 
+0000390347 00000 n 
+0000391346 00000 n 
+0000392365 00000 n 
+0000393500 00000 n 
+0000394610 00000 n 
+0000395665 00000 n 
+0000395924 00000 n 
+0000396125 00000 n 
+0000397179 00000 n 
+0000397201 00000 n 
+0000397223 00000 n 
+0000397245 00000 n 
+0000397267 00000 n 
+0000397289 00000 n 
+0000397311 00000 n 
+0000397333 00000 n 
+0000397355 00000 n 
+0000397377 00000 n 
+0000397399 00000 n 
+0000397532 00000 n 
+0000397674 00000 n 
+0000398141 00000 n 
+0000398463 00000 n 
+0000398627 00000 n 
+0000399022 00000 n 
+0000399311 00000 n 
+0000399465 00000 n 
+0000399588 00000 n 
+0000399995 00000 n 
+0000400137 00000 n 
+0000400529 00000 n 
+0000400620 00000 n 
+0000401033 00000 n 
+0000401356 00000 n 
+0001356429 00000 n 
+0001359143 00000 n 
+0001356836 00000 n 
+0000404720 00000 n 
+0000402584 00000 n 
+0001356586 00000 n 
+0001356649 00000 n 
+0001356360 00000 n 
+0001356774 00000 n 
+0001349209 00000 n 
+0001349365 00000 n 
+0001349746 00000 n 
+0001349917 00000 n 
+0001350180 00000 n 
+0001350443 00000 n 
+0001350684 00000 n 
+0001350885 00000 n 
+0001351939 00000 n 
+0001352318 00000 n 
+0001352630 00000 n 
+0001352935 00000 n 
+0001353237 00000 n 
+0001353559 00000 n 
+0001353972 00000 n 
+0001354114 00000 n 
+0001354269 00000 n 
+0001354388 00000 n 
+0001354624 00000 n 
+0001354913 00000 n 
+0001355067 00000 n 
+0001355190 00000 n 
+0001355422 00000 n 
+0001355829 00000 n 
+0001356075 00000 n 
+0001359299 00000 n 
+0001359702 00000 n 
+0001358990 00000 n 
+0001357002 00000 n 
+0001359455 00000 n 
+0001359580 00000 n 
+0001359642 00000 n 
+0001362096 00000 n 
+0001362253 00000 n 
+0001362408 00000 n 
+0001363063 00000 n 
+0001361919 00000 n 
+0001359825 00000 n 
+0001362564 00000 n 
+0001362813 00000 n 
+0001362876 00000 n 
+0001362939 00000 n 
+0001363001 00000 n 
+0001368552 00000 n 
+0001368709 00000 n 
+0001368866 00000 n 
+0001369021 00000 n 
+0001369176 00000 n 
+0001365339 00000 n 
+0001364704 00000 n 
+0001363235 00000 n 
+0001364842 00000 n 
+0001365153 00000 n 
+0001369770 00000 n 
+0001368372 00000 n 
+0001365474 00000 n 
+0001369332 00000 n 
+0001369457 00000 n 
+0001369520 00000 n 
+0001369583 00000 n 
+0001369646 00000 n 
+0001369708 00000 n 
+0001371072 00000 n 
+0001371418 00000 n 
+0001370913 00000 n 
+0001369893 00000 n 
+0001371229 00000 n 
+0001371292 00000 n 
+0001371355 00000 n 
+0001633637 00000 n 
+0001372835 00000 n 
+0001373181 00000 n 
+0001372676 00000 n 
+0001371564 00000 n 
+0001372992 00000 n 
+0001373055 00000 n 
+0001373118 00000 n 
+0001375296 00000 n 
+0001375642 00000 n 
+0001375137 00000 n 
+0001373327 00000 n 
+0001375453 00000 n 
+0001375516 00000 n 
+0001375579 00000 n 
+0001377371 00000 n 
+0001377107 00000 n 
+0001375840 00000 n 
+0001377245 00000 n 
+0001377308 00000 n 
+0001379978 00000 n 
+0001380135 00000 n 
+0001380542 00000 n 
+0001379810 00000 n 
+0001377480 00000 n 
+0001380290 00000 n 
+0001380353 00000 n 
+0001380416 00000 n 
+0001380479 00000 n 
+0001383691 00000 n 
+0001383846 00000 n 
+0001387335 00000 n 
+0001384250 00000 n 
+0001383523 00000 n 
+0001380688 00000 n 
+0001383999 00000 n 
+0001384062 00000 n 
+0001384125 00000 n 
+0001384188 00000 n 
+0001387492 00000 n 
+0001387649 00000 n 
+0001388180 00000 n 
+0001387173 00000 n 
+0001384396 00000 n 
+0001387805 00000 n 
+0001387992 00000 n 
+0001388055 00000 n 
+0001388118 00000 n 
+0001633762 00000 n 
+0001389099 00000 n 
+0001388727 00000 n 
+0001388329 00000 n 
+0001388850 00000 n 
+0001393379 00000 n 
+0001393534 00000 n 
+0001393691 00000 n 
+0001393845 00000 n 
+0001393999 00000 n 
+0001394152 00000 n 
+0001394308 00000 n 
+0001394465 00000 n 
+0001395372 00000 n 
+0001393172 00000 n 
+0001389185 00000 n 
+0001394621 00000 n 
+0001394870 00000 n 
+0001394933 00000 n 
+0001394996 00000 n 
+0001395059 00000 n 
+0001395122 00000 n 
+0001631047 00000 n 
+0001395185 00000 n 
+0001395248 00000 n 
+0001395310 00000 n 
+0001396612 00000 n 
+0001397020 00000 n 
+0001396453 00000 n 
+0001395573 00000 n 
+0001396769 00000 n 
+0001396894 00000 n 
+0001396957 00000 n 
+0001399163 00000 n 
+0001399507 00000 n 
+0001399004 00000 n 
+0001397179 00000 n 
+0001399318 00000 n 
+0001399381 00000 n 
+0001399444 00000 n 
+0001403915 00000 n 
+0001404072 00000 n 
+0001404228 00000 n 
+0001401824 00000 n 
+0001401374 00000 n 
+0001399679 00000 n 
+0001401512 00000 n 
+0001401575 00000 n 
+0001404762 00000 n 
+0001403738 00000 n 
+0001401946 00000 n 
+0001404385 00000 n 
+0001404510 00000 n 
+0001404573 00000 n 
+0001404636 00000 n 
+0001404699 00000 n 
+0001633887 00000 n 
+0001411308 00000 n 
+0001407383 00000 n 
+0001406996 00000 n 
+0001404934 00000 n 
+0001407134 00000 n 
+0001407197 00000 n 
+0001411465 00000 n 
+0001411621 00000 n 
+0001411777 00000 n 
+0001412311 00000 n 
+0001411137 00000 n 
+0001407531 00000 n 
+0001411934 00000 n 
+0001412059 00000 n 
+0001412122 00000 n 
+0001412185 00000 n 
+0001412248 00000 n 
+0001413461 00000 n 
+0001413073 00000 n 
+0001412447 00000 n 
+0001413211 00000 n 
+0001413274 00000 n 
+0001413399 00000 n 
+0001415127 00000 n 
+0001415472 00000 n 
+0001414968 00000 n 
+0001413583 00000 n 
+0001415284 00000 n 
+0001415347 00000 n 
+0001415410 00000 n 
+0001416143 00000 n 
+0001415895 00000 n 
+0001415631 00000 n 
+0001416018 00000 n 
+0001416229 00000 n 
+0001416255 00000 n 
+0001416287 00000 n 
+0001416317 00000 n 
+0001416349 00000 n 
+0001416748 00000 n 
+0001417390 00000 n 
+0001418036 00000 n 
+0001418068 00000 n 
+0001418106 00000 n 
+0001418803 00000 n 
+0001419481 00000 n 
+0001420173 00000 n 
+0001420797 00000 n 
+0001421251 00000 n 
+0001421919 00000 n 
+0001422570 00000 n 
+0001423214 00000 n 
+0001423883 00000 n 
+0001442389 00000 n 
+0001442775 00000 n 
+0001451245 00000 n 
+0001451644 00000 n 
+0001462623 00000 n 
+0001462911 00000 n 
+0001479267 00000 n 
+0001479602 00000 n 
+0001487048 00000 n 
+0001487272 00000 n 
+0001495477 00000 n 
+0001495713 00000 n 
+0001504955 00000 n 
+0001505208 00000 n 
+0001516705 00000 n 
+0001516983 00000 n 
+0001541167 00000 n 
+0001541625 00000 n 
+0001564438 00000 n 
+0001564976 00000 n 
+0001571998 00000 n 
+0001572220 00000 n 
+0001579578 00000 n 
+0001579810 00000 n 
+0001589333 00000 n 
+0001589633 00000 n 
+0001599467 00000 n 
+0001599771 00000 n 
+0001607430 00000 n 
+0001607702 00000 n 
+0001614760 00000 n 
+0001615001 00000 n 
+0001622055 00000 n 
+0001622297 00000 n 
+0001629351 00000 n 
+0001634012 00000 n 
+0001634132 00000 n 
+0001634256 00000 n 
+0001634355 00000 n 
+0001634437 00000 n 
+0001643619 00000 n 
+0001643830 00000 n 
+0001644055 00000 n 
+0001644278 00000 n 
+0001644503 00000 n 
+0001644725 00000 n 
+0001644947 00000 n 
+0001645172 00000 n 
+0001645395 00000 n 
+0001645620 00000 n 
+0001645840 00000 n 
+0001646050 00000 n 
+0001646261 00000 n 
+0001646471 00000 n 
+0001646682 00000 n 
+0001646892 00000 n 
+0001647103 00000 n 
+0001647312 00000 n 
+0001647521 00000 n 
+0001647732 00000 n 
+0001647942 00000 n 
+0001648156 00000 n 
+0001648371 00000 n 
+0001648588 00000 n 
+0001648803 00000 n 
+0001649020 00000 n 
+0001649235 00000 n 
+0001649449 00000 n 
+0001649662 00000 n 
+0001649891 00000 n 
+0001650142 00000 n 
+0001650392 00000 n 
+0001650642 00000 n 
+0001650893 00000 n 
+0001651145 00000 n 
+0001651402 00000 n 
+0001651657 00000 n 
+0001651914 00000 n 
+0001652168 00000 n 
+0001652422 00000 n 
+0001652679 00000 n 
+0001652909 00000 n 
+0001653080 00000 n 
+0001653250 00000 n 
+0001653421 00000 n 
+0001653591 00000 n 
+0001653762 00000 n 
+0001653932 00000 n 
+0001654105 00000 n 
+0001654280 00000 n 
+0001654457 00000 n 
+0001654631 00000 n 
+0001654805 00000 n 
+0001654982 00000 n 
+0001655157 00000 n 
+0001655334 00000 n 
+0001655510 00000 n 
+0001655695 00000 n 
+0001655902 00000 n 
+0001656123 00000 n 
+0001656348 00000 n 
+0001656575 00000 n 
+0001656802 00000 n 
+0001657029 00000 n 
+0001657281 00000 n 
+0001657543 00000 n 
+0001657810 00000 n 
+0001658077 00000 n 
+0001658344 00000 n 
+0001658611 00000 n 
+0001658878 00000 n 
+0001659145 00000 n 
+0001659412 00000 n 
+0001659628 00000 n 
+0001659751 00000 n 
+0001659878 00000 n 
+0001660003 00000 n 
+0001660129 00000 n 
+0001660260 00000 n 
+0001660396 00000 n 
+0001660522 00000 n 
+0001660638 00000 n 
+0001660754 00000 n 
+0001660877 00000 n 
+0001661012 00000 n 
+0001661152 00000 n 
+0001661241 00000 n 
+0001661369 00000 n 
+0001661507 00000 n 
+0001661596 00000 n 
+0001661696 00000 n 
+0001661736 00000 n 
+0001661868 00000 n 
 trailer
-<< /Size 1546
-/Root 1544 0 R
-/Info 1545 0 R
-/ID [<6DBF6EF79A23E729FF04FE5823C14A02> <6DBF6EF79A23E729FF04FE5823C14A02>] >>
+<< /Size 1690
+/Root 1688 0 R
+/Info 1689 0 R
+/ID [<80E14474E4111516C5AB5683017347E3> <80E14474E4111516C5AB5683017347E3>] >>
 startxref
-1621875
+1662145
 %%EOF
diff --git a/out/main.tex b/out/main.tex
index b9f39eceda4de60bd6201084d8ea893b827ee579..5a4411a32972a4565ed694beeeed30da242a58de 100644
--- a/out/main.tex
+++ b/out/main.tex
@@ -1370,42 +1370,17 @@ SEE ABOVE
 
 
 
-%from folder ..\..\write\/data\05otherdata
+%from folder ..\..\write\/data\05othernets
 
 
-%from file ..\..\write\/data\05otherdata\01intro
-\newpage
-\section{Data}\label{sec:secdata}
-
-
-
-
-%from file ..\..\write\/data\05otherdata\02ldm
-\subsection{Ligth Dark Matter}\label{sec:ldm}
-
-
-this chapter is missing, since it is still beeing worked on
-
-
-
-%from file ..\..\write\/data\05otherdata\03quarkgluon
-\subsection{Quark v Gluon}\label{sec:qg}
-
-
-this chapter is missing, since it is still beeing worked on
-
-
-%from folder ..\..\write\/data\06othernets
-
-
-%from file ..\..\write\/data\06othernets\01title
+%from file ..\..\write\/data\05othernets\01title
 \newpage
 \section{Other Approaches}\label{sec:secother}
 
 
 
 
-%from file ..\..\write\/data\06othernets\03oneoff
+%from file ..\..\write\/data\05othernets\03oneoff
 \subsection{Oneoff Networks}\label{sec:oneoff}
 
 
@@ -1481,7 +1456,7 @@ This apparently unused Potential led us to try them out on more classical evalua
 
 
 
-%from file ..\..\write\/data\06othernets\05otheralgo
+%from file ..\..\write\/data\05othernets\05otheralgo
 \subsection{Other Algorithms}\label{sec:other}
 
 
@@ -1512,16 +1487,16 @@ An Isolation Forest\footnote{(ENTER REFERENCE)} works quite different to the Alg
 
 
 
-%from folder ..\..\write\/data\07oneoffplus
+%from folder ..\..\write\/data\06oneoffplus
 
 
-%from file ..\..\write\/data\07oneoffplus\00intro
+%from file ..\..\write\/data\06oneoffplus\00intro
 \newpage
 \section{Mixed Approaches}\label{sec:secmixed}
 
 
 
-%from file ..\..\write\/data\07oneoffplus\01idea
+%from file ..\..\write\/data\06oneoffplus\01idea
 \subsection{Compressed One Class Learning}\label{sec:mixedidea}
 
 
@@ -1534,7 +1509,7 @@ One Question you could ask yourself, if you want to train your Autoencoder on th
 
 
 
-%from file ..\..\write\/data\07oneoffplus\02diffalgo
+%from file ..\..\write\/data\06oneoffplus\02diffalgo
 \subsection{}\label{sec:mixedalt}
 
 
@@ -1579,14 +1554,14 @@ Oneoffs seem to be the way to go here, and will be used exclusively for the rest
 
 
 
-%from file ..\..\write\/data\07oneoffplus\07questionmark
+%from file ..\..\write\/data\06oneoffplus\07questionmark
 \subsection{???}\label{sec:???}
 
 
 This Chapter is missing since it is still beeing worked on
 
 
-%from file ..\..\write\/data\07oneoffplus\08whyaesuck
+%from file ..\..\write\/data\06oneoffplus\08whyaesuck
 \subsection{Why Autoencoder might not be so great}\label{sec:whynotgae}
 
 
@@ -1673,10 +1648,191 @@ talk about the mean guessing nets
 
 
 
-%from folder ..\..\write\/data\08anhang
+%from folder ..\..\write\/data\07otherdata
+
+
+%from file ..\..\write\/data\07otherdata\01intro
+\newpage
+\section{Data}\label{sec:secdata}
+
+
+
+
+%from file ..\..\write\/data\07otherdata\02ldm
+\subsection{Ligth Dark Matter}\label{sec:ldm}
+
+
+this chapter is missing, since it is still beeing worked on
+
+
+
+%from file ..\..\write\/data\07otherdata\03quarkgluon
+\subsection{Quark v Gluon}\label{sec:qg}
+
+
+this chapter is missing, since it is still beeing worked on
+
+
+%from folder ..\..\write\/data\08otheruses
+
+
+%from file ..\..\write\/data\08otheruses\00section
+\newpage
+\section{Other Usecases}\label{sec:secuse}
+
+
+
+%from file ..\..\write\/data\08otheruses\01intro
+This Chapter is based 4 Graph Autoencoder Applications, that were originally written as Hello World Style Programms for its Documentation\footnote{ENTER LINK}. And, even though there are some quite interresting Insigths about Graph Autoencoder to be found here, this also means, that this Chapter can be skipped, without loosing to much Information. Finally, this also means, that each of those Applications are not optimized in any way, and maybe not even completely though through, since their main Goal is just to be a quick explanaition of the code structure and maybe to be some inspiration, but not to completely work through any Idea.
+
+
+%from file ..\..\write\/data\08otheruses\02nets
+\subsection{Fraud Detection for Social Networks}\label{sec:nets}
+
+Social Networks provide Data that is naturaly described as Graphs\footnote{Lets Users be nodes, while friendships provide edges}, so by training a network on those, with the hope of finding anormal events, we not only get a new possible usecase for graph autoencoder, but also an example code for a network that does not generate its own graph.
+
+The corresponding Tutorial can be found here (ENTER LINK) and the full code is found here (ENTER LINK)
+
+\subsubsection{Datageneration}\label{sec:netsdata}
+
+Datageneration is often the most timeconsuming Part of new neuronal Network, and it would not be different here. So to save some time, we just generate a sample Network. This allows you to ignore privacy settings<you migth not know everything about every user: you would need to decide how to handle a friend about whom you do not know anything>, simplifies the problem a bit\footnote{since an usual facebook user has a lot of information, and often enough hundrets of friends}, and allows you to clearly define the anomalous data points. That beeing said, this also means, that we could tweak the data in every possible way to make the results arbitrarily good, which is why this is the only subchapter that works with self generated data.
+This generated consists of 5000 randomly generated users with 4 attributes (a constant 1 (flag), $a$:an integer between 1 and 3, $b$:an integer either 0 or 1 as well as a normal distributed Value that depends on $a$\footnote{a normal distributed value with mean $0$ and standart deviation $1$ added to $2^{a} / 16$ times another normal distribution with mean $1$ and standart deviation $0.1$. This is done just to have some relation between the elements}. The correspondign connections are generated the following way: each connection has a probability, that depends on the difference in the person vector\footnote{a factor $e^{- \operatorname{abs}^{2}{\left(x_{i} - x_{j} \right)}}$} and on the difference in the node index\footnote{another factor $e^{\left(-0.1\right) \cdot \operatorname{abs}{\left(i - j \right)}}$}. This means, that more similar persons are connected more closely, and that friends of friends are more probably friends. Now we guess on average 5 connections for each person, with respect to the given probabilities, or 2 for the alternative datapoints. We choose this, since defining less used accounts as anomalies, allows us later to show a benefit of oneoff networks.
+Now for each person in this Network, we only look at the local surrounding of this person. This is done, by taking only the connection of the friends, or friends of friends of this person into account. This generates a lot smaller graphs, that we could feed into the Autoencoder\footnote{you could ask yourself if this reusing of nodes does not result in a lot of overfitting, but as you see below, that is not the case, possibly because of the low number of parameters in the graph autoencoder}, but for simplicity we cut a bit on the size of those new graphs, as we allow for at most 70 nodes\footnote{this keeps $0.9932$ of all data points}.
+
+\subsubsection{Training}\label{sec:netstrain}
+
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{network plot for nets}
+\label{fig:none}
+  \end{figure}
+
+
+To train this Network, we use a fairly simple setup, compressing the 70 nodes once by a factor 5, resulting in 14 nodes with 12 informations each.
+As you see in the training curve, the loss is basically the same for trainings and validation loss, and contains steps, as also seen before\footnote{for example in Chapter (ENTER CHAPTER)}.
+Much more interrestingly, is the loss distribution
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{loss distribution for nets}
+\label{fig:none}
+  \end{figure}
+
+
+As you see, the reconstruction is not very good, as basically all events have a nonzero loss, but maybe even more interrestingly: there is some difference in the reconstruction of out anomal datapoints. This migth seems like you could use this to seperate datapoints, but there is a difficulty: If you use an autoencoder to seperate datasets, you assume, that a dataset, that the Network never saw, will be reconstructed worse, than a dataset that is trained on, but here the opposite is the case: the data that is abnormal is easier reconstructed, so any seperation is a bit weird: sure you could just look at something like $1 - loss$, but you do not have any reasoning for this? Maybe, and even probably, only this kind of abnormal data will be reconstructed easier\footnote{this is here probably the case, sine the abnormal data is less complicated, as it contains less nodes}, and by negating the loss, you would not get any useful seperation on other datapoints. So what can we do? Your first instinkt migth say, to just look at this distribution, and seperate accordingly: define everything as weird on the side that you need, but this would no longer be unsupervised, as you require information over the alternative datapoints, so as alternative: use OneOff networks: In their easiest version, they take the mean of the training peak, and define distance as difference to this peak, which would already solve this problem, and in their deep implementation they migth even improve this further. Anyhow why, this works quite well
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{oo dist for nets}
+\label{fig:none}
+  \end{figure}
+
+
+Please note that we dispence using any number here, measuring how good the reconstruction is, as we could improve it arbitrarily by chancing the data generation
+
+\subsubsection{Whats Next}\label{sec:netsnext}
+
+Given this, you migth notice, that it is not though through completely. This is why we include this subchapter to give you some ideas on what could be improved further. The first thing you migth need, is to work with more kinds of anomalous datapoints, and not just neglected profiles. It migth also be a good idea to work on an actual social network, and if you do this, it would be interresting to just look at the users in the training set, that are reconstructed worst, as this would allow you to find abnormal users, that are not yet noticed, even when they are already fairly common.
+
+
+
+
+%from file ..\..\write\/data\08otheruses\03mol
+\subsection{Accelarating molecular science through pooling}\label{sec:mol}
+
+
+Our second example alternative usecase works on molecules: As they are usually described only by interactions between pairs of atoms, they are well described by graphs. Here we want to use this, to suggest, that the compression step in a graph autoencoder can accelarate a Network trying to learn a function from this molecule.
+
+The corresponding Tutorial can be found here (ENTER LINK) and the full code is found here (ENTER LINK)
+
+\subsubsection{Datageneration}\label{sec:moldata}
+
+All our Datapoints here are random molecules, that come from chemspider.com, mostly since they allow you to easily download a complete description of a molecule, including not only all atoms, but also suggested connections\footnote{you could also generate those connections yourself, but this would require a different algorithm instead of topK, more something that connects everything in a fixed distance (see Appendix (ENTER APPENDIX))}, as well as molecular mass, here given in $g / mol$, which is what use as the Network output.
+Every Atom is given by 3 spacial coordinates, that give the position relative to the other atoms in the molecule, and another Attribute detailing the type of molecule\footnote{while writing this: onehot encoding this migth actually be a bad idea}. Every other Information given for each Atom is ignored, similar to information given about edges, except for the Atoms, which are connected.
+Those datapoints, get filtered a lot, since fewer events do not really matter as much faulty ones, if overfitting is not a problem. First, we only allow molecules constructed entirely from the Atoms H, C, O and N. Then we allow at most 50, and at least 25 molecules, of which between 10 and 25 are to be Hydrogen, and check if the downloaded file is consistent\footnote{The molecular formula matches the distribution of atoms}.
+
+\subsubsection{Training}\label{sec:moltrain}
+
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{modelsetup(s) mol}
+\label{fig:none}
+  \end{figure}
+
+
+We again use a fairly simple setup, consisting only out of a handful of graph update layer, and possibly a graph compression layer, comparing its effect
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{training results mol 5/6}
+\label{fig:none}
+  \end{figure}
+
+
+There are two things to note here: first, since the mass can reach order of magnitude of $1000 \cdot g / mol$, and since the difference is squared, this can reach very high loss values at the beginning of the training. This is also, why you see orders of magnitude of chance in the loss function. As you also see, the chance in loss is different between the compressing Network, and the noncompressed version: As both Networks require similar times to calculate an Training Epoch, the compressed Version requires more than 100 Epochs less to reach a similar result. That beeing said, therefore the noncompressed version reaches a sligthly lower minimal loss of $78$ in comparison to $73$, even though it should be noted, that this difference is tiny compared to initial losses, and the compressing version has a bunch more parameters that could be tweaked to chance this.
+
+\subsubsection{Whats next?}\label{sec:molnext}
+
+We dont want to call using a compression layer to pool graph networks generally a good idea, but if you have a network that takes an unbearable time, trying out inserting a compression layer migth be good idea. It migth also be interresting to optimize the hyperparameters of the compression layer, or even to alter the setup by for example using an abstraction layer. Finally, this is tested on a fairly easy setup, and it migth be possible to run this on a more complicated setup like particlenet.
+
+
+
+
+
+
+%from file ..\..\write\/data\08otheruses\04feyn
+\subsection{High level Machine Learning and Feynman Diagramms, or how I learned to stop thinking and love the graphs}\label{sec:feyn}
+
+
+Machine learning is usually only used on low level Data. Inputs that are easily generated but timeconsuming for humans to understand. So why not apply Machine Learning to highly abstracted Concepts? You migth ask why one would want this, we think of an theory evaluation method: If you have a number of predictions, this could classify weirdness in the sense of finding predictions that dont match the rest. In the best case you could also extend theories consistently: you can generate new inputs from existing ones. You could automatically bring structure to your predictions, by looking at the compression space of an autoencoder or you could use this to simplify complicated theories. So why dont we do this? two things come to mind: most predictions are not of vector form, and generating a lot of predictions is quite hard. Luckely both are solved by the graph setup: This graph Structure is way more powerful, to the point that ai often encodes knowledge in graphs (see (ENTER REFERENCE)), and since overfitting has not been a problem at all here, also the low number of training samples should not matter here\footnote{There is a second price you pay, when you train on a few Datapoints: Not only becomes overfitting more probable, but you also loose generality, as density fluctuations of the different kind of training samples (where these types of samples are defined by the training itself, which makes them hard to filter out) start to matter more. Sadly we cannot really chance this to much}
+Now consider Feynman Diagramms: As they are able to encode all of Particle Physics in a finite set of graphs, they are at the same time very high level, while also still providing $O\left(1\right)$ samples, which migth not be a good size for our training set, but should still be workable with, and finding anomalous Feynman diagrams, migth actually be an interresting way to solve the initial Problem of using graphs to find new physics
+
+\subsubsection{Data generation}\label{sec:feyndata}
+
+Datageneration for Feynman Diagrams means more converting Data, instead of outrigth generating them. The problem is, that all Diagrams that you find, are usually given as Images, and writing an Program to read every Image into a Diagram is absolutely nontrivial, which is why we just converted those diagramms by hand\footnote{you could actually use a graph neuronal network for this, build similar to the one from the next chapter (ENTER CHAPTER)}. You could actually ask yourself, it writing an image like autoencoder to work on those images would not be much less work. And even though we would agree, we think this would also work way worse, as you could not differentiate between an Image that just looks like a feynman diagram, and an Image that actually represents some physical insigth. If everything looks like a feynman diagramm, you can easily use the loss to differentiate those two cases, since a chance in loss now definitely represents a better reconstruction in the autoencoder we will train. Also by training on Images you could again more probably see overfitting, resulting in higher needed training samples, that we dont have.
+We use all diagrams from (ENTER REFERENCE)\footnote{These diagramms are of relatively low order}, that match our filter of only SM diagrams and at most 9 lines, and represent each diagram in the following way: Each line becomes a node, and each two lines that meet in an edge, are connected. This migth seem counterintuitive at first, as we basically switch nodes and edges, but is actually neccesary, since each edge requires two nodes, and in a usual diagram, input aswell as output lines, only have one edge. Then each line(node) is represented by a 14dimensional vector, onehot encoding the particle type (gluon,quark,lepton,muon,Higgs, W Boson, Z Boson, photon, proton,jet), 3 special boolean values encoding anti particles\footnote{for simplicity this variable is always zero for lines that are neither input nor output}, input lines, output lines and a fourtheenth value that is always 1 (flag).
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{Example Image of the conversion}
+\label{fig:none}
+  \end{figure}
+
+
+
+\subsubsection{Training}\label{sec:feyntrain}
+
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{model plot feyn}
+\label{fig:none}
+  \end{figure}
+
+
+Also here a fairly easy setup is used, but instead of the compression algorithm, we use the abstraction one, and the paramlike deconstruction algorithm replaces the classical one, to encode the abstraction of a factor 3 (reducing 9 nodes into 3). Therefore we add 3 Parameters, as well as a couple more graph update steps. One thing that migth be important later, is that we dont punish the resulting graph structure directly, even though the paramlike decomporession algorithm should make this possible, but only indirectly since a nonsencical graph structure will worsen the quality of the update step.
+\begin{figure}[H] 
+  \centering
+\includegraphics[width=0.9\textwidth]{../imgs/none}
+\caption{training plot for feynnp}
+\label{fig:none}
+  \end{figure}
+
+
+As you see, the training curve improves after the initial plateau first quite drastically, just to slow down later, and reach a validation loss below $0.05$ at the end, which we are fairly happy with, since this means, that converted to booleans, only about 1 in 20 Values is wrong\footnote{since the results are not booleans, this is only true for the average}. More interrestingly, you also see, that the validation loss is consistently lower than the training loss, which means, that at least also this Network does not overfit.
+
+
+
+
+%from folder ..\..\write\/data\09fazit
+
+
+%from folder ..\..\write\/data\10anhang
 
 
-%from file ..\..\write\/data\08anhang\01title
+%from file ..\..\write\/data\10anhang\01title
 \newpage
 \section{Appendix}\label{sec:appendix}