diff options
Diffstat (limited to 'docs/sqlmap')
-rw-r--r-- | docs/sqlmap/latex/ch1.tex | 43 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch2.tex | 151 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch3.tex | 714 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch4.tex | 306 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch5.tex | 941 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch6.tex | 119 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch7.tex | 3 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch8.tex | 413 | ||||
-rw-r--r-- | docs/sqlmap/latex/ch9.tex | 302 | ||||
-rw-r--r-- | docs/sqlmap/latex/diagram.pdf | bin | 0 -> 521561 bytes | |||
-rw-r--r-- | docs/sqlmap/latex/example1.png | bin | 0 -> 236887 bytes | |||
-rw-r--r-- | docs/sqlmap/latex/grid1.png | bin | 0 -> 275250 bytes | |||
-rw-r--r-- | docs/sqlmap/latex/grid2.png | bin | 0 -> 218210 bytes | |||
-rw-r--r-- | docs/sqlmap/latex/sqlmap.tex | 143 | ||||
-rw-r--r-- | docs/sqlmap/latex/sqlmap_tut.tex | 96 | ||||
-rw-r--r-- | docs/sqlmap/latex/tut1.tex | 257 | ||||
-rw-r--r-- | docs/sqlmap/latex/tut2.tex | 128 | ||||
-rw-r--r-- | docs/sqlmap/latex/tut3.tex | 227 | ||||
-rw-r--r-- | docs/sqlmap/sqlmap.pdf | 10097 | ||||
-rw-r--r-- | docs/sqlmap/sqlmap_tut.pdf | bin | 0 -> 129097 bytes |
20 files changed, 13940 insertions, 0 deletions
diff --git a/docs/sqlmap/latex/ch1.tex b/docs/sqlmap/latex/ch1.tex new file mode 100644 index 00000000..405256ef --- /dev/null +++ b/docs/sqlmap/latex/ch1.tex @@ -0,0 +1,43 @@ +\chapter{Introduction}
+
+\section{Overview}
+
+The SQLMap DataMapper framework makes it easier to use a database with a PHP
+application. SQLMap DataMapper couples objects with stored procedures or SQL
+statements using a XML descriptor. Simplicity is the biggest advantage of the
+SQLMap DataMapper over object relational mapping tools. To use SQLMap
+DataMapper you rely on your own objects, XML, and SQL. There is little to
+learn that you don't already know. With SQLMap DataMapper you have the full
+power of both SQL and stored procedures at your fingertips.
+
+The SQLMap for PHP is based on iBATIS.NET - DataMapper Application Framework
+from http://ibatis.apache.org/.The PHP version support most of the features
+found in iBATIS.NET exception the following:
+
+\begin{itemize}
+ \item Dynamic SQL.
+ \item Distributed Transactions.
+\end{itemize}
+
+\section{What's covered here}
+
+This Guide covers the PHP implementations of SQLMap DataMapper. The Java and
+.NET implementation offers the same services with some changes in the API.
+
+Since SQLMap relies on an XML descriptor to create the mappings, much of the
+material applies to both implementations.
+
+For installation instructions, see the section called the SQLMap PHP Developer
+Guide.
+
+A Tutorial is also available. We recommend reviewing the Tutorial for your
+platform before reading this Guide.
+
+\section{Support}
+
+Add Forum and Trac.
+
+\section{Disclaimer}
+SQLMap MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE INFORMATION IN THIS
+DOCUMENT. The names of actual companies and products mentioned herein may be
+the trademarks of their respective owners.
diff --git a/docs/sqlmap/latex/ch2.tex b/docs/sqlmap/latex/ch2.tex new file mode 100644 index 00000000..da135e9c --- /dev/null +++ b/docs/sqlmap/latex/ch2.tex @@ -0,0 +1,151 @@ +\chapter{The Big Picture}
+\section{Introduction}
+SQLMap is a simple but complete framework that makes it easy for you to map
+your objects to your SQL statements or stored procedures. The goal of the
+SQLMap framework is to obtain 80\% of data access functionality using only
+20\% of the code.
+
+\section{What does it do?}
+Developers often create maps between objects within an application. One
+definition of a Mapper is an ``object that sets up communication between two
+independent objects.'' A Data Mapper is a ``layer of mappers that moves data
+between objects and a database while keeping them independent of each other
+and the mapper itself.'' [Patterns of Enterprise Architecture, ISBN
+0-321-12742-0].
+
+You provide the database and the objects; SQLMap provides the mapping layer
+that goes between the two.
+
+\section{How does it work?}
+
+Your programming platform already provides a capable library for accessing
+databases, whether through SQL statements or stored procedures. But developers
+find several things are still hard to do well when using ``stock'' PHP
+function including:
+
+Separating SQL code from programming code Passing input parameters to the
+library classes and extracting the output Separating data access classes from
+business logic classes Caching often-used data until it changes Managing
+transactions and many more -- by using XML documents to create a mapping
+between a plain-old object and a SQL statement or a stored procedure. The
+``plain-old object'' can be any PHP object.
+
+\begin{mybox}{Tip:}
+The object does not need to be part of a special object hierarchy or implement
+a special interface. (Which is why we call them ``plain-old'' objects.)
+Whatever you are already using should work just fine.
+\end{mybox}
+
+\begin{figure}[!h]
+ \centering
+ \includegraphics[width=0.65\textwidth]{diagram}
+ \caption{SQLMap DataMapper work flow}
+ \label{fig:diagram}
+\end{figure}
+
+Here's a high level description of the work flow diagrammed by
+Figure~\ref{fig:diagram}: Provide a parameter, either as an object or a
+primitive type. The parameter can be used to set runtime values in your SQL
+statement or stored procedure. If a runtime value is not needed, the parameter
+can be omitted.
+
+Execute the mapping by passing the parameter and the name you gave the
+statement or procedure in your XML descriptor. This step is where the magic
+happens. The framework will prepare the SQL statement or stored procedure, set
+any runtime values using your parameter, execute the procedure or statement,
+and return the result.
+
+In the case of an update, the number of rows affected is returned. In the case
+of a query, a single object, or a collection of objects is returned. Like the
+parameter, the result object, or collection of objects, can be a plain-old
+object or a primitive type.
+
+So, what does all this look like in your source code? Here's how you might
+code the insert of a ``lineItem'' object into your database.
+
+\begin{verbatim}
+TMapper::instance()->insert("InsertLineItem", $lineItem);
+\end{verbatim}
+
+If your database is generating the primary keys, the generated key can be
+returned from the same method call, like this:
+
+\begin{verbatim}
+$myKey = TMapper::instance()->insert("InsertLineItem", $lineItem);
+\end{verbatim}
+
+Example~\ref{example:2.1} shows an XML descriptor for ``InsertLineItem''.
+\begin{example}\label{example:2.1}
+The ``InsertLineItem'' descriptor
+\begin{verbatim}
+<insert id="InsertLineItem" parameterClass="LineItem">
+ INSERT INTO [LinesItem]
+ (Order_Id, LineItem_LineNum, Item_Id, LineItem_Quantity, LineItem_UnitPrice)
+ VALUES
+ (#Order.Id#, #LineNumber#, #Item.Id#, #Quantity#, #Item.ListPrice#)
+ <selectKey type="post" resultClass="int" property="Id" >
+ select @@IDENTITY as value
+ </selectKey>
+</insert>
+\end{verbatim}
+\end{example}
+
+The \tt{<selectKey>} stanza returns an auto-generated key from a SQL Server
+database (for example). If you need to select multiple rows, SQLMap can return
+a list of objects, each mapped to a row in the result set:
+\begin{verbatim}
+$productList = Mapper::instance()->queryForList("selectProduct",$categoryKey);
+\end{verbatim}
+Or just one, if that's all you need:
+\begin{verbatim}
+$product = Mapper::instance()->queryForObject("selectProduct",$categoryKey);
+\end{verbatim}
+
+Of course, there's more, but this is SQLMap from 10,000 meters. (For a longer,
+gentler introduction, see the Tutorial.) Section~\ref{section:3} describes the
+Data Map definition files -- where the statement for ``InsertLineItem'' would
+be defined. The Developers Guide for PHP (Section~\ref{section:4}) describes
+the "bootstrap" configuration file that exposes SQLMap to your application.
+
+\section{Is SQLMap the best choice for my project?}
+SQLMap is a Data Mapping tool. Its role is to map the columns of a database
+query (including a stored procedure) to the properties of an object. If your
+application is based on business objects (including array or lists of
+objects), then SQLMap can be a good choice. SQLMap is an even better choice
+when your application is layered, so that that the business layer is distinct
+from the user-interface layer.
+
+Under these circumstances, another good choice would be an Object/Relational
+Mapping tool (OR/M tool), like [...]. Other products in this category are
+[...] and [...] . An OR/M tool generates all or most of the SQL for you,
+either beforehand or at runtime. These products are called OR/M tools because
+they try to map an object graph to a relational schema.
+
+SQLMap is not an OR/M tool. SQLMap helps you map objects to stored procedures
+or SQL statements. The underlying schema is irrelevant. An OR/M tool is great
+if you can map your objects to tables. But they are not so great if your
+objects are stored as a relational view rather than as a table. If you can
+write a statement or procedure that exposes the columns for your object,
+regardless of how they are stored, SQLMap can do the rest.
+
+So, how do you decide whether to OR/M or to DataMap? As always, the best
+advice is to implement a representative part of your project using either
+approach, and then decide. But, in general, OR/M is a good thing when you
+\begin{itemize}
+ \item Have complete control over your database implementation.
+ \item Do not have a Database Administrator or SQL guru on the team.
+ \item Need to model the problem domain outside the database as an object graph.
+\end{itemize}
+Likewise, the best time to use a Data Mapper, like SQLMap, is when:
+\begin{itemize}
+ \item You do not have complete control over the database implementation, or want to
+continue to access a legacy database as it is being refactored.
+ \item You have database administrators or SQL gurus on the team.
+ \item The database is being used to model the problem domain, and the application's
+primary role is to help the client use the database model.
+\end{itemize}
+
+In the end, you have to decide what's best for your project. If a OR/M tool
+works better for you, that's great! If your next project has different needs,
+then we hope you give SQLMap another look. If SQLMap works for you now:
+Excellent!
diff --git a/docs/sqlmap/latex/ch3.tex b/docs/sqlmap/latex/ch3.tex new file mode 100644 index 00000000..79b2c42a --- /dev/null +++ b/docs/sqlmap/latex/ch3.tex @@ -0,0 +1,714 @@ +\chapter{Working with Data Maps}\label{section:3}
+\section{Introduction}
+
+If you want to know how to configure and install SQLMap, see the Developer
+Guide section~\ref{section:4} . But if you want to know how SQLMap really
+works, continue from here.
+
+The Data Map definition file is where the interesting stuff happens. Here, you
+define how your application interacts with your database. As mentioned, the
+Data Map definition is an XML descriptor file. By using a service routine
+provided by SQLMap, the XML descriptors are rendered into a client object (or
+Mapper). To access your Data Maps, your application calls the client object
+and passes in the name of the statement you need.
+
+The real work of using SQLMap is not so much in the application code, but in
+the XML descriptors that SQLMap renders. Instead of monkeying with application
+source code, you monkey with XML descriptors instead. The benefit is that the
+XML descriptors are much better suited to the task of mapping your object
+properties to database entities. At least, that's our own experience with our
+own applications. Of course, your mileage may vary.
+
+\section{What's in a Data Map definition file, anyway?}
+
+If you read the Tutorial, you've already seen some simple Data Map examples,
+like the one shown in Example~\ref{example:2.1}.
+
+\begin{example}\label{example:3.1}
+ A simple Data Map (PHP)
+ \begin{verbatim}
+<?xml version="1.0" encoding="UTF-8" ?>
+ <sqlMap namespace="LineItem">
+ <insert id="InsertLineItem" parameterClass="LineItem">
+ INSERT INTO [LinesItem]
+ (Order_Id, LineItem_LineNum, Item_Id, LineItem_Quantity, LineItem_UnitPrice)
+ VALUES
+ (#Order.Id#, #LineNumber#, #Item.Id#, #Quantity#, #Item.ListPrice#)
+ </insert>
+</sqlMap>
+ \end{verbatim}
+\end{example}
+This map takes some properties from a \tt{LineItem} instance and merges the
+values into the SQL statement. The value-add is that our SQL in separated from
+our program code, and we can pass our \tt{LineItem} instance directly to a
+library method:
+\begin{verbatim}
+TMapper::instance()->insert("InsertLineItem",$lineItem);
+\end{verbatim}
+No fuss, no muss. Likewise, see Example\ref{example:3.2} for a simple select
+statement.
+
+\begin{mybox}{Info:}
+\textbf{A Quick Glance at Inline Parameters}
+
+Say we have a mapped statement element that looks like this:
+\begin{verbatim}
+ <statement id="InsertProduct">
+ insert into Products (Product_Id, Product_Description)
+ values (#Id#, #Description#);
+</statement>
+\end{verbatim}
+The inline parameters here are \tt{\#Id\#} and \tt{\#Description\#}. Let's
+also say that we have an object with the properties \tt{Id} and
+\tt{Description}. If we set the object properties to $5$ and ``dog'',
+respectively, and passed the object to the mapped statement, we'd end up with
+a runtime query that looked like this:
+\begin{verbatim}
+insert into Products (Product_Id, Product_Description) values (5, 'dog');
+\end{verbatim}
+For more about inline parameters, see Chapter~\ref{section:3.4}.
+\end{mybox}
+
+But, what if you wanted some ice cream with that pie? And maybe a cherry on
+top? What if we wanted to cache the result of the select? Or, what if we
+didn't want to use SQL aliasing or named parameters. (Say, because we were
+using pre-existing SQL that we didn't want to touch.)
+Example~\ref{example:3.2} shows a Data Map that specifies a cache, and uses a
+\tt{<parameterMap>} and a \tt{<resultMap>} to keep our SQL pristine.
+
+\begin{example}\label{example:3.2}
+A Data Map definition file with some bells and whistles
+\begin{verbatim}
+<?xml version="1.0" encoding="UTF-8" ?>
+ <sqlMap namespace="Product">
+
+ <cacheModel id="productCache" type="LRU">
+ <flushInterval hours="24"/>
+ <property name="CacheSize" value="1000" />
+ </cacheModel>
+
+ <resultMap id="productResult" class="Product">
+ <result property="Id" column="Product_Id"/>
+ <result property="Description" column="Product_Description"/>
+ </resultMap>
+
+ <select id="GetProduct" parameterMap="productParam" cacheModel="productCache">
+ select * from Products where Product_Id = ?
+ </select>
+
+ <parameterMap id="productParam" class="Product">
+ <parameter property="Id"/>
+ </parameterMap>
+
+</sqlMap>
+\end{verbatim}
+\end{example}
+In Example~\ref{example:3.2}, \tt{<parameterMap>} maps the SQL ``?'' to the
+product \tt{Id} property. The \tt{<resultMap>} maps the columns to our object
+properties. The \tt{<cacheModel>} keeps the result of the last one thousand of
+these queries in active memory for up to 24 hours.
+
+Example~\ref{example:3.2} is longer and more complex than
+Example~\ref{example:3.1}, but considering what you get in return, it seems
+like a fair trade. (A bargain even.)
+
+Many agile developers would start with something like
+Example~\ref{example:3.1} and add features like caching later. If you changed
+the Data Map from Example~\ref{example:3.1} to Example~\ref{example:3.2}, you
+would not have to touch your application source code at all. You can start
+simple and add complexity only when it is needed.
+
+A single Data Map definition file can contain as many Cache Models, Type
+Aliases, Result Maps, Parameter Maps, and Mapped Statements (including stored
+procedures), as you like. Everything is loaded into the same configuration, so
+you can define elements in one Data Map and then use them in another. Use
+discretion and organize the statements and maps appropriately for your
+application by finding some logical way to group them.
+
+\section{Mapped Statements}
+Mapped Statements can hold any SQL statement and can use Parameter Maps and
+Result Maps for input and output. (A stored procedure is a specialized form of
+a statement. See section~\ref{section:3.3.1} and \ref{section:3.3.2} for more
+information.)
+
+If the case is simple, the Mapped Statement can reference the parameter and
+result classes directly. Mapped Statements support caching through reference
+to a Cache Model element. The following example shows the syntax for a
+statement element.
+
+\begin{example}\label{example:3.3}
+Statement element syntax
+\begin{verbatim}
+<statement id="statement.name"
+ [parameterMap="parameterMap.name"]
+ [parameterClass="class.name"]
+ [resultMap="resultMap.name"]
+ [resultClass="class.name"]
+ [listClass="class.name"]
+ [cacheModel="cache.name"]
+>
+
+ select * from Products where Product_Id = [?|#propertyName#]
+ order by [$simpleDynamic$]
+
+</statement>
+\end{verbatim}
+\end{example}
+In Example~\ref{example:3.3}, the [bracketed] parts are optional, and some
+options are mutually exclusive. It is perfectly legal to have a Mapped
+Statement as simple as shown by Example~\ref{example:3.4}.
+
+\begin{example}\label{example:3.4}
+A simplistic Mapped Statement
+\begin{verbatim}
+<statement id="InsertTestProduct" >
+ insert into Products (Product_Id, Product_Description) values (1, "Shih Tzu")
+</statement>
+\end{verbatim}
+\end{example}
+
+Example~\ref{example:3.4} is obviously unlikely, unless you are running a
+test. But it does shows that you can use SQLMap to execute arbitrary SQL
+statements. More likely, you will use the object mapping features with
+Parameter Maps (Chapter~\ref{section:3.4}) and Result Maps
+(Chapter~\ref{section:3.5}) since that's where the magic happens.
+
+\subsection{Statement Types}\label{section:3.3.1}
+The \tt{<statement>} element is a general ``catch all'' element that can be
+used for any type of SQL statement. Generally it is a good idea to use one of
+the more specific statement-type elements. The more specific elements provided
+better error-checking and even more functionality. (For example, the insert
+statement can return a database-generated key.) Table~\ref{table:3.1}
+summarizes the statement-type elements and their supported attributes and
+features. The various attributes used by statement-type elements are covered
+in Section~\ref{section:3.3.4}.
+\begin{table}[!hpt]
+\caption{The six statement-type elements } \label{table:3.1}
+ \centering
+\begin{tabular}{|l|l|l|l|}
+ \hline
+ \textbf{Statement Element} &
+ \textbf{Attribute} &
+ \textbf{Child Elements} &
+ \textbf{Methods} \\
+ \hline
+ % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
+ \tt{<statement>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id \\
+ parameterClass \\
+ resultClass \\
+ listClass \\
+ parameterMap \\
+ resultMap\\
+ cacheModel
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ None
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ Insert \\ Update \\ Delete \\ All query methods
+ \end{minipage}
+ \\
+ \hline
+ \tt{<insert>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id \\
+ parameterClass \\
+ parameterMap
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ \tt{<selectKey>}\\
+ \tt{<generate>}
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ Insert \\ Update \\ Delete
+ \end{minipage}
+\\
+\hline
+ \tt{<update>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id \\
+ parameterClass \\
+ parameterMap \\
+ extends
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ \tt{<generate>}
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ Insert \\ Update \\ Delete
+ \end{minipage}
+ \\
+ \hline
+ \tt{<delete>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id \\
+ parameterClass \\
+ parameterMap \\
+ extends
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ \tt{<generate>}
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ Insert \\ Update \\ Delete
+ \end{minipage}
+ \\
+ \hline
+ \tt{<select>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id\\
+ parameterClass\\
+ resultClass\\
+ listClass \\
+ parameterMap \\
+ resultMap \\
+ cacheModel \\
+ extends
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ \tt{<generate>}
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ All query methods
+ \end{minipage}
+ \\
+ \hline
+ \tt{<procedure>} &
+ \begin{minipage}{0.17\textwidth}
+ \vspace{3mm}
+ id\\
+ parameterMap \\
+ resultClass\\
+ resultMap \\
+ cacheModel
+ \vspace{3mm}
+ \end{minipage}
+ &
+ \begin{minipage}{0.22\textwidth}
+ None
+ \end{minipage}
+ &
+ \begin{minipage}{0.2\textwidth}
+ Insert \\ Update \\ Delete \\ All query methods
+ \end{minipage}
+ \\
+ \hline
+\end{tabular}
+\end{table}
+
+\subsection{Stored Procedures}\label{section:3.3.2}
+
+????
+
+\section{The SQL} \label{section:3.3.3}
+If you are not using stored procedures, the most important part of a
+statement-type element is the SQL. You can use any SQL statement that is valid
+for your database system. Since SQLMap passes the SQL through to a standard
+libraries (Adodb for PHP), you can use any statement with SQLMap that you
+could use without SQLMap. You can use whatever functions your database system
+supports, and even send multiple statements, so long as your driver or
+provider supports them.
+
+%If standard, static SQL isn't enough, iBATIS can help you build a dynamic SQL
+%statement. See Section 3.9 for more about Dynamic SQL.
+
+
+\subsection{Escaping XML symbols} Because you are combining SQL and XML in a
+single document, conflicts can occur. The most common conflict is the
+greater-than and less-than symbols (><). SQL statements use these symbols as
+operators, but they are reserved symbols in XML. A simple solution is to
+escape the SQL statements that uses XML reserved symbols within a CDATA
+element. Example~\ref{example:3.6} demonstrates this.
+
+\begin{example}\label{example:3.6}
+Using CDATA to ``escape'' SQL code
+\begin{verbatim}
+<statement id="SelectPersonsByAge" parameterClass="int" resultClass="Person">
+ <![CDATA[
+ SELECT * FROM PERSON WHERE AGE > #value#
+ ]]>
+</statement>
+\end{verbatim}
+\end{example}
+
+\subsection{Auto-Generated Keys}
+Many database systems support auto-generation of primary key fields, as a
+vendor extension. Some vendors pre-generate keys (e.g. Oracle), some vendors
+post-generate keys (e.g. MS-SQL Server and MySQL). In either case, you can
+obtain a pre-generated key using a \tt{<selectKey>} stanza within an
+\tt{<insert>} element. Example~\ref{example:3.7} shows an \tt{<insert>}
+statement for either approach.
+
+\begin{example}\label{example:3.7}
+\normalfont \tt{<insert>} statements using \tt{<selectKey>} stanzas
+\begin{verbatim}
+<!��Oracle SEQUENCE Example using .NET 1.1 System.Data.OracleClient -->
+<insert id="insertProduct-ORACLE" parameterClass="product">
+ <selectKey resultClass="int" type="pre" property="Id" >
+ SELECT STOCKIDSEQUENCE.NEXTVAL AS VALUE FROM DUAL
+ </selectKey>
+ insert into PRODUCT (PRD_ID,PRD_DESCRIPTION) values (#id#,#description#)
+</insert>
+
+<!�� Microsoft SQL Server IDENTITY Column Example -->
+<insert id="insertProduct-MS-SQL" parameterClass="product">
+ insert into PRODUCT (PRD_DESCRIPTION)
+ values (#description#)
+ <selectKey resultClass="int" type="post" property="id" >
+ select @@IDENTITY as value
+ </selectKey>
+</insert>
+
+<!-- MySQL Example -->
+<insert id="insertProduct-MYSQL" parameterClass="product">
+ insert into PRODUCT (PRD_DESCRIPTION)
+ values (#description#)
+ <selectKey resultClass="int" type="post" property="id" >
+ select LAST_INSERT_ID() as value
+ </selectKey>
+</insert>
+\end{verbatim}
+\end{example}
+
+\subsection{\tt{<generate>} tag}
+You can use SQLMap to execute any SQL statement your application requires.
+When the requirements for a statement are simple and obvious, you may not even
+need to write a SQL statement at all. The \tt{<generate>} tag can be used to
+create simple SQL statements automatically, based on a \tt{<parameterMap>}
+element. The four CRUD statement types (insert, select, update, and delete)
+are supported. For a select, you can select all or select by a key (or keys).
+Example~\ref{example:3.8} shows an example of generating the usual array of
+CRUD statements.
+
+\begin{mybox}{Important:}
+The intended use of the \tt{<generate>} tag is to save developers the trouble
+of coding mundane SQL statements (and only mundane statements). It is not
+meant as a object-to-relational mapping tool. There are many frameworks that
+provide extensive object-to-relational mapping features. The \tt{<generate>}
+tag is not a replacement for any of those. When the \tt{<generate>} tag does
+not suit your needs, use a conventional statement instead.
+\end{mybox}
+
+\begin{example}\label{example:3.8}
+\normalfont Creating the ``usual suspects'' with the \tt{<generate>} tag
+\begin{verbatim}
+ <parameterMap id="insert-generate-params">
+ <parameter property="Name" column="Category_Name"/>
+ <parameter property="Guid" column="Category_Guid" dbType="UniqueIdentifier"/>
+ </parameterMap>
+
+ <parameterMap id="update-generate-params" extends="insert-generate-params">
+ <parameter property="Id" column="Category_Id" />
+ </parameterMap>
+
+ <parameterMap id="delete-generate-params">
+ <parameter property="Id" column="Category_Id" />
+ <parameter property="Name" column="Category_Name"/>
+ </parameterMap>
+
+ <parameterMap id="select-generate-params">
+ <parameter property="Id" column="Category_Id" />
+ <parameter property="Name" column="Category_Name"/>
+ <parameter property="Guid" column="Category_Guid" dbType="UniqueIdentifier"/>
+ </parameterMap>
+
+ <update id="UpdateCategoryGenerate" parameterMap="update-generate-params">
+ <generate table="Categories" by="Category_Id"/>
+ </update>
+
+ <delete id="DeleteCategoryGenerate" parameterMap="delete-generate-params">
+ <generate table="Categories" by="Category_Id, Category_Name"/>
+ </delete>
+
+ <select id="SelectByPKCategoryGenerate" resultClass="Category" parameterClass="Category"
+ parameterMap="select-generate-params">
+ <generate table="Categories" by="Category_Id"/>
+ </select>
+
+ <select id="SelectAllCategoryGenerate" resultClass="Category"
+ parameterMap="select-generate-params">
+ <generate table="Categories" />
+ </select>
+
+ <insert id="InsertCategoryGenerate" parameterMap="insert-generate-params">
+ <selectKey property="Id" type="post" resultClass="int">
+ select @@IDENTITY as value
+ </selectKey>
+ <generate table="Categories" />
+ </insert>
+\end{verbatim}
+\end{example}
+The tag generates ANSI SQL, which should work with any compliant database.
+Special types, such as blobs, are not supported, and vendor-specific types are
+also not supported. But, the generate tag does keep the simple things simple.
+
+\begin{mybox}{Note:}
+The SQL is generated when the DataMapper instance is built and can be cached
+afterward, so there is no performance impact at execution time.
+\end{mybox}
+
+The generate tag supports two attributes :
+\begin{table}[!htb]\centering\label{table:3.2}
+\caption{\tt{<generate>} attributes}
+\begin{tabular}{|l|l|l|}
+ \hline
+ % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
+ \textbf{Attribute} & \textbf{Description} & \textbf{Required} \\
+ \hline
+ table & specifies the table name to use in the SQL statement. & yes \\
+ \hline
+ by & specifies the columns to use in a WHERE clause & no \\
+ \hline
+\end{tabular}
+\end{table}
+
+\section{Statement-type Element Attributes}\label{section:3.3.4}
+The six statement-type elements take various attributes. See
+Section~\ref{section:3.3.1} for a table itemizing which attributes each
+element-type accepts. The individual attributes are described in the sections
+that follow.
+
+\subsection{\tt{id} attribute}
+The required \tt{id} attribute provides a name for this statement, which must
+be unique within this \tt{<SqlMap>}.
+
+\subsection{\tt{parameterMap} attribute}
+A Parameter Map defines an ordered list of values that match up with the ``?''
+placeholders of a standard, parameterized query statement.
+Example~\ref{example:3.9} shows a \tt{<parameterMap>} and a corresponding
+\tt{<statement>}.
+
+\begin{example}\label{example:3.9}
+A \tt{parameterMap} and corresponding statement
+\begin{verbatim}
+<parameterMap id="insert-product-param" class="Product">
+ <parameter property="id"/>
+ <parameter property="description"/>
+</parameterMap>
+
+<statement id="insertProduct" parameterMap="insert-product-param">
+ insert into PRODUCT (PRD_ID, PRD_DESCRIPTION) values (?,?);
+</statement>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.9}, the Parameter Map describes two parameters that
+will match, in order, two placeholders in the SQL statement. The first ``?''
+is replaced by the value of the \tt{id} property. The second is replaced with
+the \tt{description} property.
+
+SQLMap also supports named, inline parameters, which most developers seem to
+prefer. However, Parameter Maps are useful when the SQL must be kept in a
+standard form or when extra information needs to be provided. For more about
+Parameter Maps see Chapter~\ref{section:3.4}.
+
+\subsection{\tt{parameterClass} attribute }
+If a \tt{parameterMap} attribute is not specified, you may specify a
+\tt{parameterClass} instead and use inline parameters (see
+Section~\ref{section:3.4.3}). The value of the \tt{parameterClass} attribute
+can be any existing PHP class name. Example~\ref{example:3.10} shows a
+statement using a PHP class named \tt{Product} in \tt{parameterClass}
+attribute.
+
+\begin{example}\label{example:3.10}
+Specify the \tt{parameterClass} with a PHP class name.
+\begin{verbatim}
+<statement id="statementName" parameterClass="Product">
+ insert into PRODUCT values (#id#, #description#, #price#)
+</statement>
+\end{verbatim}
+\end{example}
+
+\subsection{\tt{resultMap} attribute}
+A Result Map lets you control how data is extracted from the result of a
+query, and how the columns are mapped to object properties.
+Example~\ref{example:3.11} shows a \tt{<resultMap>} element and a
+corresponding \tt{<statement>} element.
+\begin{example}\label{example:3.11}
+A \tt{<resultMap>} and corresponding \tt{<statement>}
+\begin{verbatim}
+<resultMap id="select-product-result" class="product">
+ <result property="id" column="PRD_ID"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+</resultMap>
+
+<statement id="selectProduct" resultMap="select-product-result">
+ select * from PRODUCT
+</statement>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.11}, the result of the SQL query will be mapped to
+an instance of the \tt{Product} class using the ``select-product-result''
+\tt{<resultMap>}. The \tt{<resultMap>} says to populate the \tt{id} property
+from the \tt{PRD\_ID} column, and to populate the \tt{description} property
+from the \tt{PRD\_DESCRIPTION} column.
+
+\begin{mybox}{Tip:}
+In Example~\ref{example:3.11}, note that using `` select * '' is supported. If
+you want all the columns, you don't need to map them all individually. (Though
+many developers consider it a good practice to always specify the columns
+expected.)
+\end{mybox}
+
+For more about Result Maps, see Chapter~\ref{section:3.5}.
+
+\subsection{\tt{resultClass} attribute}
+If a \tt{resultMap} is not specified, you may specify a \tt{resultClass}
+instead. The value of the \tt{resultClass} attribute can be the name of a PHP
+class or primitives like \tt{integer}, \tt{string}, or \tt{array}. The class
+specified will be automatically mapped to the columns in the result, based on
+the result metadata. The following example shows a \tt{<statement>} element
+with a \tt{resultClass} attribute.
+
+\begin{example}\label{example:3.12}
+A \tt{<statement>} element with \tt{resultClass} attribute
+\begin{verbatim}
+<statement id="SelectPerson" parameterClass="int" resultClass="Person">
+ SELECT
+ PER_ID as Id,
+ PER_FIRST_NAME as FirstName,
+ PER_LAST_NAME as LastName,
+ PER_BIRTH_DATE as BirthDate,
+ PER_WEIGHT_KG as WeightInKilograms,
+ PER_HEIGHT_M as HeightInMeters
+ FROM PERSON
+ WHERE PER_ID = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.12}, the \tt{Person} class has properties including:
+\tt{Id}, \tt{FirstName}, \tt{LastName}, \tt{BirthDate},
+\tt{WeightInKilograms}, and \tt{HeightInMeters}. Each of these corresponds
+with the column aliases described by the SQL select statement using the ``as''
+keyword �Ca standard SQL feature. When executed, a \tt{Person} object is
+instantiated and populated by matching the object property names to the column
+names from the query.
+
+Using SQL aliases to map columns to properties saves defining a
+\tt{<resultMap>} element, but there are limitations. There is no way to
+specify the types of the output columns (if needed), there is no way to
+automatically load related data such as complex properties.You can overcome
+these limitations with an explicit Result Map (Chapter~\ref{section:3.5}).
+
+\subsection{\tt{listClass} attribute}
+In addition to providing the ability to return an \tt{TList} of objects, the
+DataMapper supports the use of custom collection: a class that implements
+\tt{ArrayAccess}. The following is an example of a TList (it implements
+ArrayAccess) class that can be used with the DataMapper.
+
+\begin{example}\label{example:3.13}
+An \tt{ArrayAccess} implementation, by extending \tt{TList}.
+\begin{verbatim}
+class AccountCollection extends TList
+{
+ public function addRange($accounts)
+ {
+ foreach($accounts as $account)
+ $this->add($account);
+ }
+
+ public function copyTo(TList $array)
+ {
+ $array->copyFrom($this);
+ }
+}
+\end{verbatim}
+\end{example}
+An \tt{ArrayAccess} class can be specified for a select statement through the
+\tt{listClass} attribute. The value of the \tt{listClass} attribute is the
+full name of a PHP class that implements \tt{ArrayAccess}. The statement
+should also indicate the \tt{resultClass} so that the DataMapper knows how to
+handle the type of objects in the collection. The \tt{resultClass} specified
+will be automatically mapped to the columns in the result, based on the result
+metadata. The following example shows a \tt{<statement>} element with a
+\tt{listClass} attribute.
+
+\begin{example}\label{example:3.14}
+A \tt{<statement>} element with \tt{listClass} attribute
+\begin{verbatim}
+<statement id="GetAllAccounts"
+ listClass="AccountCollection"
+ resultClass="Account">
+ select
+ Account_ID as Id,
+ Account_FirstName as FirstName,
+ Account_LastName as LastName,
+ Account_Email as EmailAddress
+ from Accounts
+ order by Account_LastName, Account_FirstName
+</statement>
+\end{verbatim}
+\end{example}
+
+\subsection{\tt{cacheModel} attribute}
+If you want to cache the result of a query, you can specify a Cache Model as
+part of the \tt{<statement>} element. Example~\ref{example:3.15} shows a
+\tt{<cacheModel>} element and a corresponding \tt{<statement>}.
+
+\begin{example}\label{example:3.15}
+A \tt{<cacheModel>} element with its corresponding \tt{<statement>}
+\begin{verbatim}
+<cacheModel id="product-cache" implementation="LRU">
+ <flushInterval hours="24"/>
+ <flushOnExecute statement="insertProduct"/>
+ <flushOnExecute statement="updateProduct"/>
+ <flushOnExecute statement="deleteProduct"/>
+ <property name="size" value="1000" />
+</cacheModel>
+
+<statement id="selectProductList" parameterClass="int" cacheModel="product-cache">
+ select * from PRODUCT where PRD_CAT_ID = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.15}, a cache is defined for products that uses a
+Least Recently Used [LRU] type and flushes every 24 hours or whenever
+associated update statements are executed. For more about Cache Models, see
+Section~\ref{section:3.8}.
+
+\subsection{\tt{extends} attribute}
+When writing Sql, you often encounter duplicate fragments of SQL. SQLMap
+offers a simple yet powerful attribute to reuse them.
+
+\begin{verbatim}
+<select id="GetAllAccounts"
+ resultMap="indexed-account-result">
+select
+ Account_ID,
+ Account_FirstName,
+ Account_LastName,
+ Account_Email
+from Accounts
+</select>
+
+<select id="GetAllAccountsOrderByName"
+ extends="GetAllAccounts"
+ resultMap="indexed-account-result">
+ order by Account_FirstName
+</select>
+\end{verbatim}
diff --git a/docs/sqlmap/latex/ch4.tex b/docs/sqlmap/latex/ch4.tex new file mode 100644 index 00000000..a4cbc937 --- /dev/null +++ b/docs/sqlmap/latex/ch4.tex @@ -0,0 +1,306 @@ +\chapter{Parameter Maps and Inline Parameters}\label{section:3.4}
+Most SQL statements are useful because we can pass them values at runtime.
+Someone wants a database record with the ID 42, and we need to merge that ID
+number into a select statement. A list of one or more parameters are passed at
+runtime, and each placeholder is replaced in turn. This is simple but labor
+intensive, since developers spend a lot of time counting symbols to make sure
+everything is in sync.
+
+\begin{mybox}{Note:}
+Preceding sections briefly touched on inline parameters, which automatically
+map properties to named parameters. Many iBATIS developers prefer this
+approach. But others prefer to stick to the standard, anonymous approach to
+SQL parameters by using parameter maps. Sometimes people need to retain the
+purity of the SQL statements; other times they need the detailed specification
+offered by parameter maps due to database or provider-specific information
+that needs to be used.
+\end{mybox}
+
+\section{Parameter Map}
+A Parameter Map defines an ordered list of values that match up with the
+placeholders of a parameterized query statement. While the attributes
+specified by the map still need to be in the correct order, each parameter is
+named. You can populate the underlying class in any order, and the Parameter
+Map ensures each value is passed in the correct order.
+
+Parameter Maps can be provided as an external element and \emph{inline}.
+Example~\ref{example:3.16} shows an external Parameter Map.
+
+\begin{example}\label{example:3.16}
+An external Parameter Map
+\begin{verbatim}
+<parameterMap id="parameterMapIdentifier"
+ [extends="[sqlMapNamespace.]parameterMapId"]>
+ <parameter
+ property ="propertyName"
+ [column="columnName"]
+ [dbType="databaseType"]
+ [type="propertyCLRType"]
+ [nullValue="nullValueReplacement"]
+ [size="columnSize"]
+ [precision="columnPrecision"]
+ [scale="columnScale"]
+ [typeHandler="class.name"]
+ <parameter ... ... />
+ <parameter ... ... />
+</parameterMap>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.16}, the parts in [brackets] are optional. The
+\tt{parameterMap} element only requires the id attribute.
+Example~\ref{example:3.17} shows a typical \tt{<parameterMap>}.
+
+\begin{example}\label{example:3.17}
+A typical \tt{<parameterMap>} element
+\begin{verbatim}
+<parameterMap id="insert-product-param" class="Product">
+ <parameter property="description" />
+ <parameter property="id"/>
+</parameterMap>
+
+<statement id="insertProduct" parameterMap="insert-product-param">
+ insert into PRODUCT (PRD_DESCRIPTION, PRD_ID) values (?,?);
+</statement>
+\end{verbatim}
+\end{example}
+
+\begin{mybox}{Note:}
+Parameter Map names are always local to the Data Map definition file where
+they are defined. You can refer to a Parameter Map in another Data Map
+definition file by prefixing the \tt{id} of the Parameter Map with the
+namespace of the Data Map (set in the \tt{<sqlMap>} root element). If the
+Parameter Map in Example~\ref{example:3.17} were in a Data Map named
+``Product'', it could be referenced from another file using
+``Product.insert-product-param''.
+\end{mybox}
+
+\subsection{\tt{<parameterMap>} attributes} The \tt{<parameterMap>} element
+accepts two attributes: \tt{id} (required) and \tt{extends} (optional).
+
+\subsubsection{\tt{id} attribute} The required \tt{id} attribute provides a
+unique identifier for the \tt{<parameterMap>} within this Data Map.
+
+\subsubsection{\tt{extends} attribute}
+The optional \tt{extends} attribute can be set to the name of another
+\tt{parameterMap} upon which to base this \tt{parameterMap}. All properties of
+the super \tt{parameterMap} will be included as part of this
+\tt{parameterMap}, and values from the super \tt{parameterMap} are set before
+any values specified by this \tt{parameterMap}. The effect is similar to
+extending a class.
+
+\section{\tt{<parameter>} Elements}
+The \tt{<parameterMap>} element holds one or more parameter child elements
+that map object properties to placeholders in a SQL statement. The sections
+that follow describe each of the attributes.
+
+\subsection{\tt{property} attribute}
+The \tt{property} attribute of \tt{<parameter>} is the name of a property of
+the parameter object. It may also be the name of an entry in an array. The
+name can be used more than once depending on the number of times it is needed
+in the statement. (In an update, you might set a column that is also part of
+the where clause.)
+
+\subsection{\tt{direction} attribute}
+The \tt{direction} attribute may be used to indicate a stored procedure
+parameter's direction.
+
+\subsection{\tt{column} attribute}
+The \tt{column} attribute is used to define to the name of a parameter used by
+a stored procedure.
+
+\begin{table}[!h]\centering\label{table:3.3}
+\caption{Parameter \tt{direction} attribute values }
+\begin{tabular}{|l|l|}
+ \hline
+ % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
+ \textbf{Value} & \textbf{Description}\\
+ \hline
+ Input & input-only \\
+ \hline
+ Output & output-only \\
+ \hline
+ InputOutput & bidirectional \\
+ \hline
+\end{tabular}
+\end{table}
+
+\subsection{\tt{dbType} attribute}
+The \tt{dbType} attribute is used to explicitly specify the database column
+type of the parameter to be set by this property. This attribute is normally
+only required if the column is nullable. Although, another reason to use the
+\tt{dbType} attribute is to explicitly specify date types. Most SQL databases
+have more than one \tt{datetime} type. Usually, a database has at least three
+different types (DATE, DATETIME, TIMESTAMP). In order for the value to map
+correctly, you might need to specify the column's \tt{dbType}.
+
+\begin{mybox}{Note:}
+Most providers only need the \tt{dbType} specified for nullable columns. In
+this case, you only need to specify the type for the columns that are
+nullable.
+\end{mybox}
+
+\subsection{\tt{type} attribute}
+The \tt{type} attribute is used to specify the type of the parameter's
+property. This attribute is useful when passing \tt{InputOutput} and
+\tt{Output} parameters into stored procedures. The framework uses the
+specified type to properly handle and set the parameter object's properties
+with the procedure's output values after execution.
+
+%If the attribute type is not set and the framework cannot otherwise determine
+%the type, the type is assumed to be an StdObject. Section~\ref{section:6}
+%details the types and available aliases that have pre-built support in the
+%framework.
+
+\subsection{\tt{nullValue} attribute}\label{section:nullValueParameter}
+The \tt{nullValue} attribute can be set to any valid value (based on property
+type). The \tt{nullValue} attribute is used to specify an outgoing null value
+replacement. What this means is that when the value is detected in the object
+property, a NULL will be written to the database (the opposite behavior of an
+inbound null value replacement). This allows you to use a magic null number in
+your application for types that do not support null values (such as int,
+double, float). When these types of properties contain a matching null value
+(for example, say, $-9999$), a NULL will be written to the database instead of
+the value.
+
+
+\begin{mybox}{Tip:}
+For round-trip transparency of null values, you must also specify database
+columns null value replacements in your Result Map (see
+Chapter~\ref{section:3.5}).
+\end{mybox}
+
+
+\subsection{\tt{size} attribute}
+The \tt{size} attribute sets the maximum size of the data within the column.
+
+\subsection{\tt{precision} attribute}
+The \tt{precision} attribute is used to set the maximum number of digits used
+to represent the property value.
+
+\subsection{\tt{scale} attribute}
+The \tt{scale} attribute sets the number of decimal places used to resolve the
+property value.
+
+\subsection{\tt{typeHandler} attribute}
+The \tt{typeHandler} attribute allows the use of a Custom Type Handler (see
+the Custom Type Handler section). This allows you to extend the DataMapper's
+capabilities in handling types that are specific to your database provider,
+are not handled by your database provider, or just happen to be a part of your
+application design. You can create custom type handlers to deal with storing
+and retrieving booleans from your database for example.
+
+\section{Inline Parameter Maps}\label{section:3.4.3}
+If you prefer to use inline parameters instead of parameter maps, you can add
+extra type information inline too. The inline parameter map syntax lets you
+embed the property name, the property type, the column type, and a null value
+replacement into a parametrized SQL statement. The next four examples shows
+statements written with inline parameters.
+
+\begin{example}\label{example:3.18}
+ A \tt{<statement>} using inline parameters
+\begin{verbatim}
+<statement id="insertProduct" parameterClass="Product">
+ insert into PRODUCT (PRD_ID, PRD_DESCRIPTION)
+ values (#id#, #description#)
+</statement>
+\end{verbatim}
+\end{example}
+
+The following example shows how \tt{dbTypes} can be declared inline.
+
+\begin{example}\label{example:3.19}
+ A \tt{<statement>} using an inline parameter map with a type
+\begin{verbatim}
+<statement id="insertProduct" parameterClass="Product">
+ insert into PRODUCT (PRD_ID, PRD_DESCRIPTION)
+ values (#id, dbType=int#, #description, dbType=VarChar#)
+</statement>
+\end{verbatim}
+\end{example}
+
+The next example shows how \tt{dbTypes} and null value replacements can also
+be declared inline.
+
+\begin{example}\label{example:3.20}
+A \tt{<statement>} using an inline parameter map with a null value replacement
+\begin{verbatim}
+<statement id="insertProduct" parameterClass="Product">
+ insert into PRODUCT (PRD_ID, PRD_DESCRIPTION)
+ values (#id, dbType=int, nullValue=-999999#, #description, dbType=VarChar#)
+</statement>
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:3.21}
+A more complete example.
+\begin{verbatim}
+<update id="UpdateAccountViaInlineParameters" parameterClass="Account">
+ update Accounts set
+ Account_FirstName = #FirstName#,
+ Account_LastName = #LastName#,
+ Account_Email = #EmailAddress,type=string,dbType=Varchar,nullValue=no_email@provided.com#
+ where
+ Account_ID = #Id#
+</update>
+\end{verbatim}
+\end{example}
+
+\begin{mybox}{Note:}
+Inline parameter maps are handy for small jobs, but when there are a lot of
+type descriptors and null value replacements in a complex statement, an
+industrial-strength, external \tt{parameterMap} can be easier.
+\end{mybox}
+
+\section{Standard Type Parameters}
+In practice, you will find that many statements take a single parameter, often
+an \tt{integer} or a \tt{string}. Rather than wrap a single value in another
+object, you can use the standard library object (string, integer, et cetera)
+as the parameter directly. Example~\ref{example:3.22} shows a statement using
+a standard type parameter.
+
+\begin{example}\label{example:3.22}
+A \tt{<statement>} using standard type parameters
+\begin{verbatim}
+<statement id="getProduct" parameterClass="System.Int32">
+ select * from PRODUCT where PRD_ID = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+Assuming \tt{PRD\_ID} is a numeric type, when a call is made to this Mapped
+Statement, a standard integer can be passed in. The \tt{\#value\#} parameter
+will be replaced with the value of the integer. The name \tt{value} is simply
+a placeholder, you can use another moniker of your choice. Result Maps support
+primitive types as results as well.
+
+For your convenience, the following PHP primitive types are supported.
+\begin{itemize}
+ \item \tt{string}
+ \item \tt{float} or \tt{double}
+ \item \tt{integer} or \tt{int}
+ \item \tt{bool} or \tt{boolean}
+\end{itemize}
+
+\section{Array Type Parameters}
+You can also pass in a array as a parameter object. This would usually be a an
+associative array. Example~\ref{example:3.23} shows a \tt{<statement>} using
+an array for a \tt{parameterClass}.
+
+
+\begin{example}\label{example:3.23}
+A \tt{<statement>} using an array for a \tt{parameterClass}
+\begin{verbatim}
+<statement id="getProduct" parameterClass="array">
+ select * from PRODUCT
+ where PRD_CAT_ID = #catId#
+ and PRD_CODE = #code#
+</statement>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.23}, notice that the SQL in this Mapped Statement
+looks like any other. There is no difference in how the inline parameters are
+used. If an associative array is passed, it must contain keys named \tt{catId}
+and \tt{code}. The values referenced by those keys must be of the appropriate
+type for the column, just as they would be if passed from a properties object.
diff --git a/docs/sqlmap/latex/ch5.tex b/docs/sqlmap/latex/ch5.tex new file mode 100644 index 00000000..076f6f5d --- /dev/null +++ b/docs/sqlmap/latex/ch5.tex @@ -0,0 +1,941 @@ +\chapter{Result Maps}\label{section:3.5}
+Chapter~\ref{section:3.4} describes Parameter Maps and Inline parameters,
+which map object properties to parameters in a database query. Result Maps
+finish the job by mapping the result of a database query (a set of columns) to
+object properties. Next to Mapped Statements, the Result Map is probably one
+of the most commonly used and most important features to understand.
+
+A Result Map lets you control how data is extracted from the result of a
+query, and how the columns are mapped to object properties. A Result Map can
+describe the column type, a null value replacement, and complex property
+mappings including Collections. Example~\ref{example:3.24} shows the structure
+of a \tt{<resultMap>} element.
+
+\begin{example}\label{example:3.24}
+The structure of a \tt{<resultMap>} element.
+\begin{verbatim}
+<resultMap id="resultMapIdentifier"
+ [class="class.name"]
+ [extends="[sqlMapNamespace.]resultMapId"]>
+
+ <result property="propertyName"
+ column="columnName"
+ [columnIndex="columnIndex"]
+ [dbType="databaseType"]
+ [type="propertyCLRType"]
+ [resultMapping="resultMapName"]
+ [nullValue="nullValueReplacement"]
+ [select="someOtherStatementName"]
+ [lazyLoad="true|false"]
+ [typeHandler="class.name"]
+ />
+ <result ... .../>
+ <result ... .../>
+</resultMap>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.24}, the [brackets] indicate optional attributes.
+The \tt{id} attribute is required and provides a name for the statement to
+reference. The \tt{class} attribute is also required, and specifies the full
+name of a PHP class. This is the class that will be instantiated and populated
+based on the result mappings it contains.
+
+The \tt{resultMap} can contain any number of property mappings that map object
+properties to the columns of a result element. The property mappings are
+applied, and the columns are read, in the order that they are defined.
+Maintaining the element order ensures consistent results between different
+drivers and providers.
+
+\begin{mybox}{Note:}
+As with parameter classes, the result class must be a PHP class object or
+array instance.
+\end{mybox}
+
+\section{Extending \tt{resultMaps}}
+The optional \tt{extends} attribute can be set to the name of another
+\tt{resultMap} upon which to base this \tt{resultMap}. All properties of the
+``super'' \tt{resultMap} will be included as part of this \tt{resultMap}, and
+values from the ``super'' \tt{resultMap} are set before any values specified
+by this \tt{resultMap}. The effect is similar to extending a class.
+
+\begin{mybox}{Tip:}
+The ``super'' \tt{resultMap} must be defined in the file before the extending
+\tt{resultMap}. The classes for the super and sub \tt{resultMaps} need not be
+the same, and do not need to be related in any way.
+\end{mybox}
+
+\section{\tt{<resultMap>} attributes}
+The \tt{<resultMap>} element accepts three attributes: \tt{id} (required),
+\tt{class} (optional), and \tt{extends} (optional).
+
+\subsection{\tt{id} attribute}
+The required \tt{id} attribute provides a unique identifier for the
+\tt{<resultMap>} within this Data Map.
+
+\subsection{\tt{class} attribute}
+The optional \tt{class} attribute specifies an object class to use with this
+\tt{<resultMap>}. The full classname must be specified. Any class can be used.
+
+\begin{mybox}{Note:}
+As with parameter classes, the result class must be a PHP class object or
+array instance.
+\end{mybox}
+
+\subsection{\tt{extends} attribute}
+The optional \tt{extends} attribute allows the result map to inherit all of
+the properties of the ``super'' \tt{resultMap} that it extends.
+
+\section{\tt{<result>} Elements}
+
+The \tt{<resultMap>} element holds one or more \tt{<result>} child elements
+that map SQL result sets to object properties.
+
+\subsection{\tt{property} attribute}
+The \tt{property} attribute is the name of a property of the result object
+that will be returned by the Mapped Statement. The name can be used more than
+once depending on the number of times it is needed to populate the results.
+
+\subsection{\tt{column} attribute}
+The \tt{column} attribute value is the name of the column in the result set
+from which the value will be used to populate the property.
+
+\subsection{\tt{columnIndex} attribute}
+The \tt{columnIndex} attribute value is the index of the column in the
+ResultSet from which the value will be used to populate the object property.
+This is not likely needed in 99\% of applications and sacrifices
+maintainability and readability for speed. Some providers may not realize any
+performance benefit, while others will speed up dramatically.
+
+\subsection{\tt{dbType} attribute}
+The \tt{dbType} attribute is used to explicitly specify the database column
+type of the ResultSet column that will be used to populate the object
+property. Although Result Maps do not have the same difficulties with null
+values, specifying the type can be useful for certain mapping types such as
+Date properties. Because an application language has one Date value type and
+SQL databases may have many (usually at least 3), specifying the date may
+become necessary in some cases to ensure that dates (or other types) are set
+correctly. Similarly, String types may be populated by a \tt{VarChar},
+\tt{Char} or \tt{CLOB}, so specifying the type might be needed in those cases
+too.
+
+\subsection{\tt{type} attribute}
+The \tt{type} attribute is used to explicitly specify the property type of the
+parameter to be set. If the attribute \tt{type} is not set and the framework
+cannot otherwise determine the type, the type is assumed to be \tt{StdObject}.
+
+\subsection{\tt{resultMapping} attribute}
+The \tt{resultMapping} attribute can be set to the name of another
+\tt{resultMap} used to fill the property. If the \tt{resultMap} is in an other
+mapping file, you must specified the fully qualified name as :
+
+\begin{verbatim}
+resultMapping="[namespace.sqlMap.]resultMappingId"
+
+resultMapping="Newspaper"
+<!--resultMapping with a fully qualified name.-->
+resultMapping="LineItem.LineItem"
+\end{verbatim}
+
+\subsection{\tt{nullValue} attribute}
+The \tt{nullValue} attribute can be set to any valid value (based on property
+type). The \tt{nullValue} attribute is used to specify an outgoing null value
+replacement. What this means is that when the value is detected in the object
+property, a NULL will be written to the database (the opposite behavior of an
+inbound null value replacement). This allows you to use a ``magic'' null
+number in your application for types that do not support null values (such as
+int, double, float). When these types of properties contain a matching null
+value (say, $-9999$), a NULL will be written to the database instead of the
+value.
+
+If your database has a NULLABLE column, but you want your application to
+represent NULL with a constant value, you can specify it in the Result Map as
+shown in Example~\ref{example:3.25}.
+
+\begin{example}\label{example:3.25}
+Specifying a \tt{nullvalue} attribute in a Result Map
+\begin{verbatim}
+<resultMap id="get-product-result" class="product">
+ <result property="id" column="PRD_ID"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+ <result property="subCode" column="PRD_SUB_CODE" nullValue="-9999"/>
+</resultMap>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.25}, if PRD\_SUB\_CODE is read as NULL, then the
+\tt{subCode} property will be set to the value of $-9999$. This allows you to
+use a primitive type to represent a NULLABLE column in the database. Remember
+that if you want this to work for queries as well as updates/inserts, you must
+also specify the \tt{nullValue} in the Parameter Map (see,
+Section~\ref{section:nullValueParameter}).
+
+\subsection{\tt{select} attribute}
+The \tt{select} attribute is used to describe a relationship between objects
+and to automatically load complex (i.e. user defined) property types. The
+value of the statement property must be the name of another mapped statement.
+The value of the database column (the column attribute) that is defined in the
+same property element as this statement attribute will be passed to the
+related mapped statement as the parameter. More information about supported
+primitive types and complex property mappings/relationships is discussed later
+in this document. The \tt{lazyLoad} attribute can be specified with the
+\tt{select}.
+
+\subsection{\tt{lazyLoad} attribute}
+Use the \tt{lazyLoad} attribute with the \tt{select} attribute to indicate
+whether or not the select statement's results should be lazy loaded. This can
+provide a performance boost by delaying the loading of the select statement's
+results until they are needed/accessed.
+
+\subsection{\tt{typeHandler} attribute}
+The \tt{typeHandler} attribute allows the use of a Custom Type Handler (see
+the Custom Type Handler in the following section). This allows you to extend
+the DataMapper's capabilities in handling types that are specific to your
+database provider, are not handled by your database provider, or just happen
+to be a part of your application design. You can create custom type handlers
+to deal with storing and retrieving booleans from your database for example.
+
+\section{Custom Type Handlers}
+A custom type handler allows you to extend the DataMapper's capabilities in
+handling types that are specific to your database provider, not handled by
+your database provider, or just happen to be part of your application design.
+The SQLMap for PHP DataMapper provides an interface,
+\tt{ITypeHandlerCallback}, for you to use in implementing your custom type
+handler.
+
+\begin{example}\label{example:3.26}
+\tt{ITypeHandlerCallback} interface
+\begin{verbatim}
+interface ITypeHandlerCallback
+{
+ public function getParameter($object);
+
+ public function getResult($string);
+
+ public function createNewInstance();
+}
+\end{verbatim}
+\end{example}
+
+The \tt{getParameter} method allows you to process a \tt{<statement>}
+parameter's value before it is added as an parameter. This enables you to do
+any necessary type conversion and clean-up before the DataMapper gets to work.
+
+The \tt{getResult} method allows you to process a database result value right
+after it has been retrieved by the DataMapper and before it is used in your
+\tt{resultClass}, \tt{resultMap}, or \tt{listClass}.
+
+The \tt{createNewInstance} method allows the DataMapper to create new instance
+of a particular type handled by this callback.
+
+One scenario where custom type handlers are useful are the when you want to
+use date time values in the database. First, consider a very basic TDateTime
+class.
+
+\begin{verbatim}
+class TDateTime
+{
+ private $_datetime;
+
+ public function __construct($datetime=null)
+ {
+ if(!is_null($datetime))
+ $this->setDatetime($datetime);
+ }
+
+ public function getTimestamp()
+ {
+ return strtotime($this->getDatetime());
+ }
+
+ public function getDateTime()
+ {
+ return $this->_datetime;
+ }
+
+ public function setDateTime($value)
+ {
+ $this->_datetime = $value;
+ }
+}
+\end{verbatim}
+
+We can use a custom type handler to intercept result and parameter mapping
+that uses the say ``data'' as one of its property type. The handler can be
+written as follows.
+
+\begin{example}\label{example:3.27}
+A \tt{TDateTime} Type Handler
+\begin{verbatim}
+class TDateTimeHandler implements ITypeHandlerCallback
+{
+ public function getResult($string)
+ {
+ return new TDateTime($string);
+ }
+
+ public function getParameter($parameter)
+ {
+ if($parameter instanceof TDateTime)
+ return $parameter->getTimestamp();
+ else
+ return $parameter;
+ }
+
+ public function createNewInstance()
+ {
+ return new TDateTime;
+ }
+}
+\end{verbatim}
+\end{example}
+
+With our custom type handler we can use the handler in our SqlMaps. To do
+that, we specify it as a basic \tt{<typeHandler>} for all \tt{date} types
+mapped in our SqlMap files
+
+\begin{example}\label{example:3.29}
+\tt{<typeHandler>} in SqlMap.config
+\begin{verbatim}
+[Our SqlMap.config]
+
+<typeHandlers>
+ <typeHandler type="date" callback="TDateTimeHandler"/>
+</typeHandlers>
+
+
+[One of our SqlMap.xml files]
+ <parameterMap id="boc-params">
+ <parameter property="releasedDate" type="date"/>
+ </parameterMap>
+
+ <resultMap id="boc-result" class="BudgetObjectCode">
+ <result property="releasedDate" column="BOC_DATE" type="date"/>
+ </resultMap>
+\end{verbatim}
+\end{example}
+
+%3.5.5. Inheritance Mapping The iBATIS DataMapper supports the implementation
+%of object-oriented inheritance (subclassing) in your object model. There are
+%several developer options for mapping entity classes and subclasses to
+%database results:
+%
+%resultMap for each class resultMap with submaps for a class hierarchy
+%resultMap with extended resultMaps for each subclass You can use the most
+%efficient mapping strategies from a SQL and query performance perspective when
+%using the inheritance mappings of the DataMapper. To implement an inheritance
+%mapping, the resultMap must define one or more columns in your query's
+%resultset that will serve to identify which resultMap should be used to map
+%each result record to a specific subclass. In many cases, you will use one
+%column value for the DataMapper to use in identifying the proper resultMap and
+%subclass. This column is known as a discriminator.
+%
+%For example, we have a table defined in a database that contains Document
+%records. There are five table columns used to store Document IDs, Titles,
+%Types, PageNumbers, and Cities. Perhaps this table belongs to a legacy
+%database, and we need to create an application using this table with a domain
+%model that defines a class hierarchy of different types of Documents. Or
+%perhaps we are creating a new application and database and just want to
+%persist the data found in a set of related classes into one table. In either
+%case, the DataMapper's inheritance mapping feature can help.
+%
+%\begin{verbatim}
+%// Database table Document
+%CREATE TABLE [Documents] (
+% [Document_ID] [int] NOT NULL ,
+% [Document_Title] [varchar] (32) NULL ,
+% [Document_Type] [varchar] (32) NULL ,
+% [Document_PageNumber] [int] NULL ,
+% [Document_City] [varchar] (32) NULL
+%)
+%\end{verbatim}
+%
+%To illustrate this, let's take a look at a few example classes shown below
+%that have a relationship through inheritance and whose properties can be
+%persisted into our Documents table. First, we have a base Document class that
+%has Id and Title properties. Next, we have a Book class that inherits from
+%Document and contains an additional property called PageNumber. Last, we have
+%a Newspaper class that also inherits from Document and contains a City
+%property.
+%
+%Example 3.30. Documents, Books, and Newspapers!
+%
+%\begin{verbatim}
+%// C# class
+%public class Document {
+% private int _id = -1;
+% private string _title = string.Empty;
+%
+% public int Id
+% {
+% get { return _id; }
+% set { _id = value; }
+% }
+%
+% public string Title
+% {
+% get { return _title; }
+% set { _title = value; }
+% }
+%}
+%
+%public class Book : Document {
+% private int _pageNumber = -1;
+%
+% public int PageNumber
+% {
+% get { return _pageNumber; }
+% set { _pageNumber = value; }
+% }
+%}
+%
+%public class Newspaper : Document {
+% private string _city = string.Empty;
+%
+% public string City
+% {
+% get { return _city; }
+% set { _city = value; }
+% }
+%}
+%\end{verbatim}
+%
+%Now that we have our classes and database table, we can start working on our
+%mappings. We can create one <select> statement that returns all columns in the
+%table. To help the DataMapper discriminate between the different Document
+%records, we're going to indicate that the Document\_Type column holds values
+%that will distinguish one record from another for mapping the results into our
+%class hierarchy.
+%
+%\begin{verbatim}
+%// Document mapping file
+%<select id="GetAllDocument" resultMap="document">
+% select
+% Document_Id, Document_Title, Document_Type,
+% Document_PageNumber, Document_City
+% from Documents
+% order by Document_Type, Document_Id
+%</select>
+%
+%<resultMap id="document" class="Document">
+% <result property="Id" column="Document_ID"/>
+% <result property="Title" column="Document_Title"/>
+% <discriminator column="Document_Type" type="string"/>
+% <subMap value="Book" resultMapping="book"/>
+% <subMap value="Newspaper" resultMapping="newspaper"/>
+%</resultMap>
+%
+%<resultMap id="book" class="Book" extends="document">
+% <property="PageNumber" column="Document_PageNumber"/>
+%</resultMap>
+%
+%<resultMap id="newspaper" class="Newspaper" extends="document">
+% <property="City" column="Document_City"/>
+%</resultMap>
+%\end{verbatim}
+%
+%The DataMapper compares the data found in the discriminator column to the
+%different <submap> values using the column value's string equivalence. Based
+%on this string value, iBATIS DataMapper will use the resultMap named "Book" or
+%"Newspaper" as defined in the <submap> elements or it will use the "super"
+%resultMap "Document" if neither of the submap values satisfy the comparison.
+%With these resultMaps, we can implement an object-oriented inheritance mapping
+%to our database table.
+%
+%If you want to use custom logic, you can use the typeHandler attribute of the
+%<discriminator> element to specify a custom type handler for the discriminator
+%column.
+%
+%Example 3.31. Complex disciminator usage with Custom Type Handler
+%
+%\begin{verbatim}
+%<alias>
+% <typeAlias alias="CustomInheritance"
+% type="IBatisNet.DataMapper.Test.Domain.CustomInheritance, IBatisNet.DataMapper.Test"/>
+%</alias>
+%
+%<resultMaps>
+% <resultMap id="document-custom-formula" class="Document">
+% <result property="Id" column="Document_ID"/>
+% <result property="Title" column="Document_Title"/>
+% <discriminator column="Document_Type" typeHandler="CustomInheritance"/>
+% <subMap value="Book" resultMapping="book"/>
+% <subMap value="Newspaper" resultMapping="newspaper"/>
+% </resultMap>
+%</resultMaps>
+%\end{verbatim}
+%
+%The value of the typeHandler attribute specifies which of our classes
+%implements the ITypeHandlerCallback interface. This interface furnishes a
+%GetResult method for coding custom logic to read the column result value and
+%return a value for the DataMapper to use in its comparison to the resultMap's
+%defined <submap> values.
+%
+%Example 3.32. Example ITypeHandlerCallback interface implementation
+%
+%\begin{verbatim}
+%public class CustomInheritance : ITypeHandlerCallback {
+% #region ITypeHandlerCallback members
+%
+% public object ValueOf(string nullValue)
+% {
+% throw new NotImplementedException();
+% }
+%
+% public object GetResult(IResultGetter getter)
+% {
+% string type = getter.Value.ToString();
+%
+% if (type=="Monograph" || type=="Book")
+% {
+% return "Book";
+% }
+% else if (type=="Tabloid" || type=="Broadsheet" || type=="Newspaper")
+% {
+% return "Newspaper";
+% }
+% else
+% {
+% return "Document";
+% }
+%
+% }
+%
+% public void SetParameter(IParameterSetter setter, object parameter)
+% {
+% throw new NotImplementedException();
+% }
+% #endregion
+%}
+%\end{verbatim}
+
+\section{Implicit Result Maps}
+If the columns returned by a SQL statement match the result object, you may
+not need an explicit Result Map. If you have control over the relational
+schema, you might be able to name the columns so they also work as property
+names. In Example~\ref{example:3.33}, the column names and property names
+already match, so a result map is not needed.
+
+\begin{example}\label{example:3.33}
+A Mapped Statement that doesn't need a Result Map
+\begin{verbatim}
+<statement id="selectProduct" resultClass="Product">
+ select
+ id,
+ description
+ from PRODUCT
+ where id = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+Another way to skip a result map is to use column aliasing to make the column
+names match the properties names, as shown in Example~\ref{example:3.34}.
+
+\begin{example}\label{example:3.34}
+A Mapped Statement using column aliasing instead of a Result Map
+\begin{verbatim}
+<statement id="selectProduct" resultClass="Product">
+ select
+ PRD_ID as id,
+ PRD_DESCRIPTION as description
+ from PRODUCT
+ where PRD_ID = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+Of course, these techniques will not work if you need to specify a column
+type, a null value, or any other property attributes.
+
+\section{Primitive Results (i.e. String, Integer, Boolean)}
+Many times, we don't need to return an object with multiple properties. We
+just need a string, integer, boolean, and so forth. If you don't need to
+populate an object, SQLMap can return one of the primitive types instead. If
+you just need the value, you can use a primitive type as a result class, as
+shown in Example~\ref{example:3.35}.
+
+\begin{example}\label{example:3.35}
+Selecting a primitive type
+\begin{verbatim}
+<select id="selectProductCount" resultClass="integer">
+ select count(1)
+ from PRODUCT
+</select>
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:3.36}
+Loading a simple list of product descriptions
+\begin{verbatim}
+<resultMap id="select-product-result" resultClass="System.String">
+ <result property="value" column="PRD_DESCRIPTION"/>
+</resultMap>
+\end{verbatim}
+\end{example}
+
+\section{Maps with ResultMaps}
+Instead of a rich object, sometimes all you might need is a simple key/value
+list of the data, where each property is an entry on the list. If so, Result
+Maps can populate an array instance as easily as property objects. The syntax
+for using an array is identical to the rich object syntax. As shown in Example
+~\ref{example:3.37}, only the result object changes.
+
+\begin{example}\label{example:3.37}
+Result Maps can use arrays.
+\begin{verbatim}
+<resultMap id="select-product-result" class="array">
+ <result property="id" column="PRD_ID"/>
+ <result property="code" column="PRD_CODE"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+ <result property="suggestedPrice" column="PRD_SUGGESTED_PRICE"/>
+</resultMap>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.37}, an array instance would be created for each row
+in the result set and populated with the Product data. The property name
+attributes, like \tt{id}, \tt{code}, and so forth, would be the key of the
+entry, and the value of the mapped columns would be the value of the entry.
+
+As shown in Example~\ref{example:3.38}, you can also use an implicit Result
+Map with an array type.
+
+\begin{example}\label{example:3.38}
+Implicit Result Maps can use arrays too.
+\begin{verbatim}
+<statement id="selectProductCount" resultClass="array">
+ select * from PRODUCT
+</statement>
+\end{verbatim}
+\end{example}
+
+What set of entries is returned by Example~\ref{example:3.38} depends on what
+columns are in the result set. If the set of column changes (because columns
+are added or removed), the new set of entries would automatically be returned.
+
+\begin{mybox}{Note:}
+Certain providers may return column names in upper case or lower case format.
+When accessing values with such a provider, you will have to pass the key name
+in the expected case.
+\end{mybox}
+
+\section{Complex Properties}
+In a relational database, one table will often refer to another. Likewise,
+some of your business objects may include another object or list of objects.
+Types that nest other types are called ``complex types''. You may not want a
+statement to return a simple type, but a fully-formed complex type.
+
+In the database, a related column is usually represented via a 1:1
+relationship, or a 1:M relationship where the class that holds the complex
+property is from the ``many side'' of the relationship and the property itself
+is from the ``one side'' of the relationship. The column returned from the
+database will not be the property we want; it is a key to be used in another
+query.
+
+From the framework's perspective, the problem is not so much loading a complex
+type, but loading each ``complex property''. To solve this problem, you can
+specify in the Result Map a statement to run to load a given property. In
+Example~\ref{example:3.39}, the ``category'' property of the
+``select-product-result'' element is a complex property.
+
+\begin{example}\label{example:3.39}
+A Result Map with a Complex Property
+\begin{verbatim}
+ <resultMap id="select-product-result" class="product">
+ <result property="id" column="PRD_ID"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+ <result property="category" column="PRD_CAT_ID" select="selectCategory"/>
+ </resultMap>
+
+ <resultMap id="select-category-result" class="category">
+ <result property="id" column="CAT_ID"/>
+ <result property="description" column="CAT_DESCRIPTION"/>
+ </resultMap>
+
+ <select id="selectProduct" parameterClass="int" resultMap="select-product-result">
+ select * from PRODUCT where PRD_ID = #value#
+ </select>
+
+ <select id="selectCategory" parameterClass="int" resultMap="select-category-result">
+ select * from CATEGORY where CAT_ID = #value#
+ </select>
+\end{verbatim}
+\end{example}
+
+In Example~\ref{example:3.39}, the framework will use the ``selectCategory''
+statement to populate the ``category'' property. The value of each category is
+passed to the ``selectCategory'' statement, and the object returned is set to
+the category property. When the process completes, each Product instance will
+have the the appropriate category object instance set.
+
+\section{Avoiding N+1 Selects (1:1)}
+A problem with Example~\ref{example:3.39} may be that whenever you load a
+Product, two statements execute: one for the Product and one for the Category.
+For a single Product, this issue may seem trivial. But if you load 10
+products, then 11 statements execute. For 100 Products, instead of one
+statement product statement executing, a total of 101 statements execute. The
+number of statements executing for Example~\ref{example:3.40} will always be
+N+1: 100+1=101.
+
+\begin{example}\label{example:3.40}
+N+1 Selects (1:1)
+\begin{verbatim}
+ <resultMap id="select-product-result" class="product">
+ <result property="id" column="PRD_ID"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+ <result property="category" column="PRD_CAT_ID" select="selectCategory"/>
+ </resultMap>
+
+ <resultMap id="select-category-result" class="category">
+ <result property="id" column="CAT_ID"/>
+ <result property="description" column="CAT_DESCRIPTION"/>
+ </resultMap>
+
+ <!-- This statement executes 1 time -->
+ <select id="selectProducts" parameterClass="int" resultMap="select-product-result">
+ select * from PRODUCT
+ </select>
+
+ <!-- This statement executes N times (once for each product returned above) -->
+ <select id="selectCategory" parameterClass="int" resultMap="select-category-result">
+ select * from CATEGORY where CAT_ID = #value#
+ </select>
+
+\end{verbatim}
+\end{example}
+
+One way to mitigate the problem is to cache the ``selectCategory'' statement .
+We might have a hundred products, but there might only be five categories.
+Instead of running a SQL query or stored procedure, the framework will return
+the category object from it cache. A 101 statements would still run, but they
+would not be hitting the database. (See Chapter~\ref{section:3.8} for more
+about caches.)
+
+Another solution is to use a standard SQL join to return the columns you need
+from the another table. A join can bring all the columns we need over from the
+database in a single query. When you have a nested object, you can reference
+nested properties using a dotted notation, like ``category.description''.
+
+Example~\ref{example:3.41} solves the same problem as
+Example~\ref{example:3.40}, but uses a join instead of nested properties.
+
+\begin{example}\label{example:3.41}
+Resolving complex properties with a join
+\begin{verbatim}
+ <resultMap id="select-product-result" class="product">
+ <result property="id" column="PRD_ID"/>
+ <result property="description" column="PRD_DESCRIPTION"/>
+ <result property="category" resultMapping="Category.CategoryResult" />
+ </resultMap>
+
+ <statement id="selectProduct" parameterClass="int" resultMap="select-product-result">
+ select *
+ from PRODUCT, CATEGORY
+ where PRD_CAT_ID=CAT_ID
+ and PRD_ID = #value#
+ </statement>
+\end{verbatim}
+\end{example}
+
+\begin{mybox}{Lazy Loading vs. Joins (1:1):}
+It's important to note that using a join is not always better. If you are in a
+situation where it is rare to access the related object (e.g. the category
+property of the Product class) then it might actually be faster to avoid the
+join and the unnecessary loading of all category properties. This is
+especially true for database designs that involve outer joins or nullable
+and/or non-indexed columns. In these situations it might be better to use the
+sub-select solution with lazy loading enabled. The general rule of thumb is:
+use the join if you're more likely going to access the associated properties
+than not. Otherwise, only use it if lazy loading is not an option.
+\\
+\\
+If you're having trouble deciding which way to go, don't worry. No matter
+which way you go, you can always change it without impacting your application
+source code. Example~\ref{example:3.40} and \ref{example:3.41} result in
+exactly the same object graph and are loaded using the exact same method call
+from the application. The only consideration is that if you were to enable
+caching, then the using the separate select (not the join) solution could
+result in a cached instance being returned. But more often than not, that
+won't cause a problem (your application shouldn't be dependent on instance
+level equality i.e. ``==='').
+\end{mybox}
+
+\section{Complex Collection Properties}
+It is also possible to load properties that represent lists of complex
+objects. In the database the data would be represented by a M:M relationship,
+or a 1:M relationship where the class containing the list is on the ``one
+side'' of the relationship and the objects in the list are on the ``many
+side''. To load a \tt{TList} of objects, there is no change to the statement
+(see example above). The only difference required to cause the SQLMap
+DataMapper framework to load the property as a \tt{TList} is that the property
+on the business object must be of type \tt{TList}. For example, if a Category
+has a \tt{TList} of Product instances, the mapping would look like this
+(assuming Category has a property called "ProductList" of \tt{TList}.):
+
+\begin{example}\label{example:3.42}
+Mapping that creates a list of complex objects
+\begin{verbatim}
+<resultMaps>
+
+ <resultMap id="select-category-result" class="Category">
+ <result property="Id" column="CAT_ID"/>
+ <result property="Description" column="CAT_DESCRIPTION"/>
+ <result property="ProductList" column="CAT_ID" select="selectProductsByCatId"/>
+ </resultMap>
+
+ <resultMap id="select-product-result" class="Product">
+ <result property="Id" column="PRD_ID"/>
+ <result property="Description" column="PRD_DESCRIPTION"/>
+ </resultMap>
+<resultMaps>
+
+<statements>
+
+ <statement id="selectCategory" parameterClass="int"
+ resultMap="select-category-result">
+ select * from CATEGORY where CAT_ID = #value#
+ </statement>
+
+ <statement id="selectProductsByCatId" parameterClass="int"
+ resultMap="select-product-result">
+ select * from PRODUCT where PRD_CAT_ID = #value#
+ </statement>
+</statements>
+\end{verbatim}
+\end{example}
+
+\section{Avoiding N+1 Select Lists (1:M and M:N)}
+This is similar to the 1:1 situation above, but is of even greater concern due
+to the potentially large amount of data involved. The problem with the
+solution above is that whenever you load a Category, two SQL statements are
+actually being run (one for the Category and one for the list of associated
+Products). This problem seems trivial when loading a single Category, but if
+you were to run a query that loaded ten (10) Categories, a separate query
+would be run for each Category to load its associated list of Products. This
+results in eleven (11) queries total: one for the list of Categories and one
+for each Category returned to load each related list of Products (N+1 or in
+this case 10+1=11). To make this situation worse, we're dealing with
+potentially large lists of data.
+
+\begin{example}\label{example:3.43}
+N+1 Select Lists (1:M and M:N)
+\begin{verbatim}
+<resultMaps>
+
+ <resultMap id="select-category-result" class="Category">
+ <result property="Id" column="CAT_ID"/>
+ <result property="Description" column="CAT_DESCRIPTION"/>
+ <result property="ProductList" column="CAT_ID" select="selectProductsByCatId"/>
+ </resultMap>
+
+ <resultMap id="select-product-result" class="Product">
+ <result property="Id" column="PRD_ID"/>
+ <result property="Description" column="PRD_DESCRIPTION"/>
+ </resultMap>
+<resultMaps>
+
+<statements>
+
+ <!-- This statement executes 1 time -->
+ <statement id="selectCategory" parameterClass="int"
+ resultMap="select-category-result">
+ select * from CATEGORY where CAT_ID = #value#
+ </statement>
+
+ <!-- This statement executes N times (once for each category returned above)
+ and returns a list of Products (1:M) -->
+ <statement id="selectProductsByCatId" parameterClass="int"
+ resultMap="select-product-result">
+ select * from PRODUCT where PRD_CAT_ID = #value#
+ </statement>
+</statements>
+\end{verbatim}
+\end{example}
+
+\subsection{1:N \& M:N Solution?}
+Currently the feature that resolves this issue not implemented, but the
+development discussions are active, and we expect it to be included in a
+future release.
+
+\begin{mybox}{Lazy Loading vs. Joins (1:M and M:N):}
+As with the 1:1 situation described previously, it's important to note that
+using a join is not always better. This is even more true for collection
+properties than it was for individual value properties due to the greater
+amount of data. If you are in a situation where it is rare to access the
+related object (e.g. the ProductList property of the Category class) then it
+might actually be faster to avoid the join and the unnecessary loading of the
+list of products. This is especially true for database designs that involve
+outer joins or nullable and/or non-indexed columns. In these situations it
+might be better to use the sub-select solution with the lazy loading. The
+general rule of thumb is: use the join if you're more likely going to access
+the associated properties than not. Otherwise, only use it if lazy loading is
+not an option.
+\\
+\\
+As mentioned earlier, if you're having trouble deciding which way to go, don't
+worry. No matter which way you go, you can always change it without impacting
+your PHP code. The two examples above would result in exactly the same object
+graph and are loaded using the exact same method call. The only consideration
+is that if you were to enable caching, then the using the separate select (not
+the join) solution could result in a cached instance being returned. But more
+often than not, that won't cause a problem (your application should not be
+dependent on instance level equality i.e. ``==='').
+\end{mybox}
+
+\section{Composite Keys or Multiple Complex Parameters Properties}
+You might have noticed that in the above examples there is only a single key
+being used as specified in the \tt{resultMap} by the \tt{column} attribute.
+This would suggest that only a single column can be associated to a related
+mapped statement. However, there is an alternate syntax that allows multiple
+columns to be passed to the related mapped statement. This comes in handy for
+situations where a composite key relationship exists, or even if you simply
+want to use a parameter of some name other than \tt{\#value\#}. The alternate
+syntax for the column attribute is simply \{param1=column1, param2=column2,
+$\cdots$, paramN=columnN\}. Consider the example below where the PAYMENT table
+is keyed by both Customer ID and Order ID:
+
+\begin{example}\label{example:3.44}
+Mapping a composite key
+\begin{verbatim}
+<resultMaps>
+ <resultMap id="select-order-result" class="order">
+ <result property="id" column="ORD_ID"/>
+ <result property="customerId" column="ORD_CST_ID"/>
+ ...
+ <result property="payments" column="{itemId=ORD_ID, custId=ORD_CST_ID}"
+ select="selectOrderPayments"/>
+ </resultMap>
+<resultMaps>
+
+<statements>
+
+ <statement id="selectOrderPayments" resultMap="select-payment-result">
+ select * from PAYMENT
+ where PAY_ORD_ID = #itemId#
+ and PAY_CST_ID = #custId#
+ </statement>
+</statements>
+\end{verbatim}
+\end{example}
+
+Optionally you can just specify the column names as long as they're in the
+same order as the parameters. For example:
+\begin{verbatim}
+{ORD_ID, ORD_CST_ID}
+\end{verbatim}
+
+\begin{mybox}{Important!}
+Currently the SQLMap DataMapper framework does not automatically resolve
+circular relationships. Be aware of this when implementing parent/child
+relationships (trees). An easy work around is to simply define a second result
+map for one of the cases that does not load the parent object (or vice versa),
+or use a join as described in the ``N+1 avoidance'' solutions.
+\end{mybox}
+
+\begin{mybox}{Note:}
+Result Map names are always local to the Data Map definition file that they
+are defined in. You can refer to a Result Map in another Data Map definition
+file by prefixing the name of the Result Map with the namespace of the SqlMap
+set in the \tt{<sqlMap>} root element.
+\end{mybox}
diff --git a/docs/sqlmap/latex/ch6.tex b/docs/sqlmap/latex/ch6.tex new file mode 100644 index 00000000..09a2be6f --- /dev/null +++ b/docs/sqlmap/latex/ch6.tex @@ -0,0 +1,119 @@ +\chapter{Cache Models}\label{section:3.8}
+Some values in a database are know to change slower than others. To improve
+performance, many developers like to cache often-used data to avoid making
+unnecessary trips back to the database. SQLMap provides its own caching
+system, that you configure through a \tt{<cacheModel>} element.
+
+The results from a query Mapped Statement can be cached simply by specifying
+the \tt{cacheModel} parameter in the statement tag (seen above). A cache model
+is a configured cache that is defined within your DataMapper configuration
+file. Cache models are configured using the \tt{cacheModel} element as
+follows:
+
+\begin{example}\label{example:3.45}
+Configuring a cache using the Cache Model element
+\begin{verbatim}
+<cacheModel id="product-cache" implementation="LRU" >
+ <flushInterval hours="24"/>
+ <flushOnExecute statement="insertProduct"/>
+ <flushOnExecute statement="updateProduct"/>
+ <flushOnExecute statement="deleteProduct"/>
+ <property name="CacheSize" value="100"/>
+</cacheModel>
+\end{verbatim}
+\end{example}
+
+The cache model above will create an instance of a cache named
+``product-cache'' that uses a Least Recently Used (LRU) implementation. The
+value of the \tt{type} attribute is either a class name, or an alias for one
+of the included implementations (see below). Based on the flush elements
+specified within the cache model, this cache will be flushed every 24 hours.
+There can be only one flush interval element and it can be set using hours,
+minutes, seconds or milliseconds. In addition the cache will be flushed
+whenever the \tt{insertProduct}, \tt{updateProduct}, or \tt{deleteProduct}
+mapped statements are executed. There can be any number of ``flush on
+execute'' elements specified for a cache. Some cache implementations may need
+additional properties, such as the ``cache-size'' property demonstrated above.
+In the case of the LRU cache, the size determines the number of entries to
+store in the cache. Once a cache model is configured, you can specify the
+cache model to be used by a mapped statement, for example:
+
+\begin{example}\label{example:3.46}
+Specifying a Cache Model from a Mapped Statement
+\begin{verbatim}
+<statement id="getProductList" cacheModel="product-cache">
+ select * from PRODUCT where PRD_CAT_ID = #value#
+</statement>
+\end{verbatim}
+\end{example}
+
+\section{Cache Implementation}
+The cache model uses a pluggable framework for supporting different types of
+caches. The choice of cache is specified in the ``implementation'' attribute
+of the \tt{cacheModel} element as discussed above. The class name specified
+must be an implementation of the \tt{ISqlMapCache} interface, or one of the
+two aliases discussed below. Further configuration parameters can be passed to
+the implementation via the property elements contained within the body of the
+\tt{cacheModel}. Currently there are 2 implementations included with the PHP
+distribution.
+
+\subsection{Least Recently Used [LRU] Cache} The LRU cache implementation uses
+an Least Recently Used algorithm to determines how objects are automatically
+removed from the cache. When the cache becomes over full, the object that was
+accessed least recently will be removed from the cache. This way, if there is
+a particular object that is often referred to, it will stay in the cache with
+the least chance of being removed. The LRU cache makes a good choice for
+applications that have patterns of usage where certain objects may be popular
+to one or more users over a longer period of time (e.g. navigating back and
+forth between paginated lists, popular search keys etc.).
+
+The LRU implementation is configured as follows:
+\begin{example}\label{example:3.48}
+Configuring a LRU type cache
+\begin{verbatim}
+<cacheModel id="product-cache" implementation="LRU" >
+ <flushInterval hours="24"/>
+ <flushOnExecute statement="insertProduct"/>
+ <flushOnExecute statement="updateProduct"/>
+ <flushOnExecute statement="deleteProduct"/>
+ <property name="CacheSize" value="100"/>
+</cacheModel>
+\end{verbatim}
+\end{example}
+
+Only a single property is recognized by the LRU cache implementation. This
+property, named \tt{CacheSize} must be set to an integer value representing
+the maximum number of objects to hold in the cache at once. An important thing
+to remember here is that an object can be anything from a single string
+instance to an array of object. So take care not to store too much in your
+cache and risk running out of memory and disk space.
+
+\subsection{FIFO Cache}
+The FIFO cache implementation uses an First In First Out algorithm to
+determines how objects are automatically removed from the cache. When the
+cache becomes over full, the oldest object will be removed from the cache. The
+FIFO cache is good for usage patterns where a particular query will be
+referenced a few times in quick succession, but then possibly not for some
+time later.
+
+The FIFO implementation is configured as follows:
+
+\begin{example}\label{example:3.49}
+Configuring a FIFO type cache
+\begin{verbatim}
+<cacheModel id="product-cache" implementation="FIFO" >
+ <flushInterval hours="24"/>
+ <flushOnExecute statement="insertProduct"/>
+ <flushOnExecute statement="updateProduct"/>
+ <flushOnExecute statement="deleteProduct"/>
+ <property name="CacheSize" value="100"/>
+</cacheModel>
+\end{verbatim}
+\end{example}
+
+Only a single property is recognized by the FIFO cache implementation. This
+property, named \tt{CacheSize} must be set to an integer value representing
+the maximum number of objects to hold in the cache at once. An important thing
+to remember here is that an object can be anything from a single String
+instance to an array of object. So take care not to store too much in your
+cache and risk running out of memory and disk space.
diff --git a/docs/sqlmap/latex/ch7.tex b/docs/sqlmap/latex/ch7.tex new file mode 100644 index 00000000..37a6a0f4 --- /dev/null +++ b/docs/sqlmap/latex/ch7.tex @@ -0,0 +1,3 @@ +\chapter{Dynamic SQL}
+
+Not supported in this release.
diff --git a/docs/sqlmap/latex/ch8.tex b/docs/sqlmap/latex/ch8.tex new file mode 100644 index 00000000..7d7e3576 --- /dev/null +++ b/docs/sqlmap/latex/ch8.tex @@ -0,0 +1,413 @@ +\chapter{Installation and Setup}\label{section:4.3}
+\section{Introduction}
+This section explains how to install, configure, and use the SQLMap DataMapper
+with your PHP application.
+
+\section{Installing the DataMapper for PHP}
+There are two steps to using SQLMap DataMapper with your application for the
+first time.
+\begin{itemize}
+ \item Setup the distribution
+ \item Add XML documents
+\end{itemize}
+
+\subsection{Setup the Distribution}
+
+The official site for SQLMap DataMapper for PHP is http://... . The DataMapper
+is availabe as a source distribution in the form of a ZIP archive. To download
+the distributions, follow the link to the Downloads area on the web site, and
+select the the source distribution for the SQLMap PHP DataMapper release. You
+can extract the distribution using a utility like WinZip or the extractor
+built into newer versions of Windows.
+
+Under the distribution's source folder are eight folders that make up the
+SQLMap PHP DataMapper distribution, as shown in Table 4.1.
+
+\begin{table}[!hpt]
+\caption{Folders found in the SQLMap PHP DataMapper source distribution}
+\label{table:4.1}
+ \centering
+\begin{tabular}{|l|l|}
+\hline
+ \textbf{Folder name} & \textbf{Description} \\
+ \hline
+\end{tabular}
+\end{table}
+
+\subsection{Add XML file items}
+After unpacking the source distribution, you will need to add two types of XML
+files to your Web application, or library project (and Test project if you
+have one). These files are:
+
+\begin{description}
+ \item[SqlMap.xml] --
+ A Data Map file that contains your SQL queries. Your project will contain one
+ or more of these files with names such as Account.xml or Product.xml.
+
+ \item[SqlMap.config] --
+ The DataMapper configuration file that is used to specify the locations of your
+ SqlMap.xml files. It is also used to define other DataMapper
+ configuration options such as caching. You will need to include one SqlMap.config
+ file for each data source that your project has.
+\end{description}
+
+As expected, the \tt{SqlMap.config} file must be placed where the DataMapper
+can find them at runtime.
+
+\section{Configuring the DataMapper for PHP}
+The SQLMap PHP DataMapper is configured using a central XML descriptor file,
+usually named \tt{SqlMap.config}, which provides the details for your data
+source, data maps, and other features like caching, and transactions. At
+runtime, your application code will call a class method provided by the SQLMap
+library to read and parse your \tt{SqlMap.config} file. After parsing the
+configuration file, a DataMapper client will be returned by SQLMap for your
+application to use.
+
+\subsection{DataMapper clients}
+Currently, the SQLMap PHP DataMapper framework revolves around the
+\tt{TSqlMapper} class, which acts as a facade to the DataMapper framework API.
+You can create a DataMapper client by instantiating an object of the
+\tt{TSqlMapper} class. An instance of the \tt{TSqlMapper} class (your
+DataMapper client) is created by reading a single configuration file. Each
+configuration file can specify one database or data source. You can of couse
+use multiple DataMapper clients in your application. Just create another
+configuration file and pass the name of that file when the DataMapper client
+is created. The configuration files might use a different account with the
+same database, or reference different databases on different servers. You can
+read from one client and write to another, if that's what you need to do. See
+Section~\ref{section:4.4.1} for more details on building a \tt{TSqlMapper}
+instance, but first, let's take a look at the DataMapper configuration file.
+
+\section{DataMapper Configuration File (SqlMap.config)}
+A sample configuration file for a PHP web application is shown in
+Example~\ref{example:4.1}. Not all configuration elements are required. The
+following sections describe the elements of this \tt{SqlMap.config} file in
+more detail.
+
+\begin{example}\label{example:4.1}
+Sample SqlMap.Config for a PHP Web Application.
+\begin{verbatim}
+<?xml version="1.0" encoding="utf-8"?>
+<sqlMapConfig>
+
+ <provider class="TAdodbProvider" >
+ <datasource ConnectionString="mysql://user:pass@localhost/test1" />
+ </provider>
+
+ <sqlMaps>
+ <sqlMap name="Account" resource="maps/Account.xml"/>
+ <sqlMap name="Order" resource="maps/Order.xml"/>
+ <sqlMap name="Category" resource="maps/Category.xml"/>
+ <sqlMap name="LineItem" resource="maps/LineItem.xml"/>
+ </sqlMaps>
+
+</sqlMapConfig>
+\end{verbatim}
+\end{example}
+
+\section{DataMapper Configuration Elements}
+Sometimes the values we use in an XML configuration file occur in more than
+one element. Often, there are values that change when we move the application
+from one server to another. To help you manage configuration values, you can
+specify a standard properties file (with name=value entries) as part of a
+DataMapper configuration. Each named value in the properties file becomes a
+shell variable that can be used in the DataMapper configuration file and your
+Data Map definition files (see Chapter~\ref{section:3}).
+
+\subsection{\tt{<properties>} attributes}
+The \tt{<properties>} element can accept one \tt{resource} attribute to
+specify the location of the properties file.
+
+\begin{table}[!hpt]
+\caption{Attributes of the \tt{<properties>} element} \label{table:4.3}
+\centering
+\begin{tabular}{|l|l|}
+ \hline
+ \textbf{Attribute} & \textbf{Description} \\
+ \hline
+ \tt{resource} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Specify the properties file to be loaded from the directory relative to
+ the current file.
+ \vspace{-3mm}\begin{verbatim}
+ resource="properties.config"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+\end{tabular}
+\end{table}
+
+For example, if the ``properties.config'' file contains
+
+\begin{verbatim}
+<?xml version="1.0" encoding="utf-8" ?>
+<settings>
+ <add key="username" value="albert" />
+</settings>
+\end{verbatim}
+
+then all elements in the DataMapper configuration can use the variable
+\tt{\${username}} to insert the value ``albert''. For example:
+
+\begin{verbatim}
+<provider ConnectionString="mysql://${username}:..."
+\end{verbatim}
+
+Properties are handy during building, testing, and deployment by making it
+easy to reconfigure your application for multiple environments.
+
+\subsection{\tt{<property>} element and attributes}
+You can also specify more than one properties file or add property keys and
+values directly into your \tt{SqlMap.config} file by using \tt{<property>}
+elements. For example:
+
+\begin{verbatim}
+<properties>
+ <property resource="myProperties.config"/>
+ <property resource="anotherProperties.config"/>
+ <property key="host" value="ibatis.com" />
+</properties>
+\end{verbatim}
+
+\begin{table}[!hpt]
+\caption{Attributes of the \tt{<property>} element} \label{table:4.3}
+\centering
+\begin{tabular}{|l|l|}
+ \hline
+ \textbf{Attribute} & \textbf{Description} \\
+ \hline
+ \tt{resource} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Specify the properties file to be loaded from the directory relative to
+ the current file.
+ \vspace{-3mm}\begin{verbatim}
+ resource="properties.config"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{key} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Defines a property key (variable) name
+ \vspace{-3mm}\begin{verbatim}
+ key="username"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{value} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Defines a value that will be used by the DataMapper in place of the
+ the specified property key/variable
+ \vspace{-3mm}\begin{verbatim}
+ value="mydbuser"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+\end{tabular}
+\end{table}
+
+\subsection{The \tt{<typeHandler>} Element}
+The \tt{<typeHandler>} element allows for the configuration and use of a
+Custom Type Handler (see the Custom Type Handler section). This extends the
+DataMapper's capabilities in handling types that are specific to your database
+provider, are not handled by your database provider, or just happen to be a
+part of your application design.
+
+\begin{verbatim}
+ <typeHandler type="date" callback="TDateTimeHandler"/>
+\end{verbatim}
+
+The \tt{<typeHandler>} element has three attributes:
+\begin{table}[!hpt]
+\caption{Attributes of the \tt{<typeHandler>} element} \label{table:4.5}
+\centering
+\begin{tabular}{|l|l|}
+ \hline
+ \textbf{Attribute} & \textbf{Description} \\
+ \hline
+%
+ \tt{type} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Refers to the name of the type to handle
+ \vspace{-3mm}\begin{verbatim}
+ type="date"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{dbType} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Indicates the provider dbType to handle
+ \vspace{-3mm}\begin{verbatim}
+ dbType="Varchar2"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{callback} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ The custom type handler class name
+ \vspace{-3mm}\begin{verbatim}
+ callback="TDateTimeHandler"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+\end{tabular}
+\end{table}
+
+
+\subsection{The \tt{<provider>} element and attribute}
+The \tt{<provider>} element encloses a \tt{<datasource>} that configure the
+database system for use by the framework.
+\begin{table}[!hpt]
+\caption{Attributes of the \tt{<provider>} element} \label{table:4.3}
+\centering
+\begin{tabular}{|l|l|}
+ \hline
+ \textbf{Attribute} & \textbf{Description} \\
+ \hline
+ \tt{class} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ The database provider class that extends
+ \tt{TDatabaseProvider}.
+ \vspace{-3mm}\begin{verbatim}
+ class="TAdodbProvider"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+ \end{tabular}
+\end{table}
+
+\subsection{The \tt{<datasource>} element and attributes}
+The \tt{<datasource>} element specifies the connection string.
+Example~\ref{example:4.2} shows sample element MySql.
+
+\begin{example}\label{example:4.2}
+Sample \tt{<provider>} and \tt{<datasource>} elements.
+\begin{verbatim}
+<!-- The ${properties} are defined in an external file, -->
+<!-- but the values could also be coded inline. -->
+
+<!-- Connecting to a MySQL database -->
+<provider class="TAdodbProvider" >
+ <datasource
+ ConnectionString="mysql://${username}:${password}@${host}/${database}" />
+</provider>
+\end{verbatim}
+\end{example}
+
+\begin{table}[!hpt]
+\caption{Attributes of the \tt{<datasource>} element} \label{table:4.4}
+\centering
+\begin{tabular}{|l|l|}
+ \hline
+ \textbf{Attribute} & \textbf{Description} \\
+ \hline
+%
+ \tt{connectionString} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Data Source Name (DSN) connection string.
+ \vspace{-3mm}\begin{verbatim}
+ connectionString="mysql://root:pwd@localhost/mydb"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{driver} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Database driver name (mysql, sqlite, etc.)
+ \vspace{-3mm}\begin{verbatim}
+ driver="mysql"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{host} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ DB host name/IP (and port number) in the format \tt{host[:port]}.
+ \vspace{-3mm}\begin{verbatim}
+ connectionString="mysql://root:pwd@localhost/mydb"
+ \end{verbatim}\vspace{-5mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{username} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Database connection username.\vspace{2mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{password} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Database connection password.\vspace{2mm}
+ \end{minipage}
+ \\
+ \hline
+%
+ \tt{database} &
+ \begin{minipage}{0.7\textwidth}\vspace{2mm}
+ Database name to use in the connection.\vspace{2mm}
+ \end{minipage}
+ \\
+ \hline
+ \end{tabular}
+\end{table}
+
+\begin{mybox}{Tip:}
+ Use Data Source Name (DSN) connection string or specify the
+ necessary individual connection parameters.
+\end{mybox}
+
+\subsection{The \tt{<sqlMap>} Element}
+On a daily basis, most of your work will be with the Data Maps, which are
+covered by Chapter~\ref{section:3}. The Data Maps define the actual SQL
+statements or stored procedures used by your application. The parameter and
+result objects are also defined as part of the Data Map. As your application
+grows, you may have several varieties of Data Map. To help you keep your Data
+Maps organized, you can create any number of Data Map definition files and
+incorporate them by reference in the DataMapper configuration. All of the
+definition files used by a DataMapper instance must be listed in the
+configuration file.
+
+Example~\ref{example:4.3} shows \tt{<sqlMap>} elements for loading a set of
+Data Map definitions. For more about Data Map definition files, see
+Chapter~\ref{section:3}.
+
+\begin{example}\label{example:4.3}
+Specifying \tt{sqlMap} locations
+\begin{verbatim}
+<!-- Relative path from the directory of the
+ current file using a property variable -->
+<sqlMap resource="${root}/Maps/Account.xml"/>
+<sqlMap resource="${root}/Maps/Category.xml"/>
+<sqlMap resource="${root}/Maps/Product.xml"/>
+
+<!-- Full file path with a property variable -->
+<sqlMap resource="/${projectdir}/MyApp/Maps/Account.xml"/>
+<sqlMap resource="/${projectdir}/MyApp/Maps/Category.xml"/>
+<sqlMap resource="/${projectdir}/MyApp/Maps/Product.xml"/>
+\end{verbatim}
+\end{example}
+
+\begin{mybox}{Tip:}
+Since the application root directory location differs by project type
+(Windows, Web, or library), it is best to use a properties variable to
+indicate the relative path when using the \tt{<sqlMap>} \tt{resource}
+attribute. Having a variable defined in a properties file makes it easy to
+change the path to all your Data Mapper configuration resources in one
+location (note the \tt{\$\{projectdir\}} and \tt{\$\{root\}} variables in the
+example above).
+\end{mybox}
diff --git a/docs/sqlmap/latex/ch9.tex b/docs/sqlmap/latex/ch9.tex new file mode 100644 index 00000000..b1ebb522 --- /dev/null +++ b/docs/sqlmap/latex/ch9.tex @@ -0,0 +1,302 @@ +\chapter{Using SQLMap PHP DataMapper}
+The SQLMap DataMapper API provides four core functions:
+
+\begin{itemize}
+ \item build a \tt{TSqlMapper} instance from a configuration file or cache
+ \item execute an update query (including insert and delete).
+ \item execute a select query for a single object
+ \item execute a select query for a list of objects
+\end{itemize}
+
+The API also provides support for retrieving paginated lists and managing
+transactions.
+
+\section{Building a \tt{TSqlMapper} instance}
+An XML document is a wonderful tool for describing a database configuration
+(Chapter~\ref{section:4.3}) or defining a set of data mappings
+(Chapter~\ref{section:3}), but you can't execute XML. In order to use the
+SQLMap configuration and definitions in your PHP application, you need a class
+you can call.
+
+The framework provides service methods that you can call which read the
+configuration file (and any of its definition files) and builds a
+\tt{TSqlMapper} object. The \tt{TSqlMapper} object provides access to the rest
+of the framework. Example~\ref{example:9.4} shows a singleton Mapper that is
+similar to the one bundled with the framework.
+
+\begin{example}\label{example:9.4}
+A Mapper singleton you can call from your own applications
+\begin{verbatim}
+require_once('/path/to/SQLMap/TSqlMapper.php');
+
+class TMapper
+{
+ private static $_mapper;
+
+ public static function configure($configFile)
+ {
+ if(is_null(self::$_mapper))
+ {
+ $builder = new TDomSqlMapBuilder();
+ self::$_mapper = $builder->configure($configFile);
+ }
+ return self::$_mapper;
+ }
+
+ public static function instance()
+ {
+ return self::$_mapper;
+ }
+}
+\end{verbatim}
+\end{example}
+
+To obtain the \tt{TSqlMapper} instance, first configure the mapper once,
+\begin{verbatim}
+TMapper::configure('path/to/sqlmap.config');
+\end{verbatim}
+The \tt{TDomSqlMapBuilder} object will go throught the the \tt{sqlmap.config}
+file and build a \tt{TSqlMapper} instance. To use \tt{TSqlMapper} in your
+application, specify one of the \tt{TSqlMapper} methods (see Section ???).
+Here's an example:
+\begin{verbatim}
+$list = TMapper::instance()->queryForList("PermitNoForYearList", $values);
+\end{verbatim}
+
+\subsection{Multiple Databases}
+If you need access to more than one database from the same application, create
+a DataMapper configuration file for that database and another Mapper class to
+go with it.
+
+\subsection{\tt{TDomSqlMapBuilder} Configuration Options}
+If you find that you already have loaded your DataMapper configuration
+information as a \tt{SimpleXMLElement} instance within your application, the
+\tt{TDomSqlMapBuilder} provides \tt{Configure} overloads for those types as
+well.
+
+\section{Exploring the SQLMap PHP DataMapper API through the \tt{TSqlMapper}}
+The \tt{TSqlMapper} instance acts as a facade to provide access the rest of
+the DataMapper framework. The DataMapper API methods are shown in Example
+4.11.
+
+\begin{example}
+The SQLMap DataMapper API for PHP.
+\begin{verbatim}
+ /* Query API */
+ public function queryForObject($statementName, $parameter=null, $result=null);
+ public function queryForList($statementName, $parameter=null, $result=null,
+ $skip=-1, $max=-1);
+ public function queryForPagedList($statementName, $parameter=null, $pageSize=10);
+ public function queryForMap($statementName, $parameter=null,
+ $keyProperty=null, $valueProperty=null);
+
+ public function insert($statementName, $parameter=null)
+ public function update($statementName, $parameter=null)
+ public function delete($statementName, $parameter=null)
+
+ /* Connection API */
+ public function openConnection()
+ public function closeConnection()
+
+ /* Transaction API */
+ public function beginTransaction()
+ public function commitTransaction()
+ public function rollBackTransaction()
+\end{verbatim}
+\end{example}
+
+Note that each of the API methods accept the name of the Mapped Statement as
+the first parameter. The \tt{statementName} parameter corresponds to the
+\tt{id} of the Mapped Statement in the Data Map definition (see
+Section~\ref{section:3.3}). In each case, a \tt{parameterObject} also may be
+passed. The following sections describe how the API methods work.
+
+\subsection{Insert, Update, Delete}
+\begin{verbatim}
+ public function insert($statementName, $parameter=null)
+ public function update($statementName, $parameter=null)
+ public function delete($statementName, $parameter=null)
+\end{verbatim}
+
+If a Mapped Statement uses one of the \tt{<insert>}, \tt{<update>}, or
+\tt{<delete>} statement-types, then it should use the corresponding API
+method. The \tt{<insert>} element supports a nested \tt{<selectKey>} element
+for generating primary keys (see Section~\ref{section:3.3.3}). If the
+\tt{<selectKey>} stanza is used, then \tt{insert} returns the generated key;
+otherwise a null object is returned. Both the \tt{update} and \tt{delete}
+methods return the number of rows affected by the statement.
+
+\subsection{QueryForObject}
+\begin{verbatim}
+public function queryForObject($statementName, $parameter=null, $result=null);
+\end{verbatim}
+
+If a Mapped Statement is expected to select a single row, then call it using
+\tt{queryForObject}. Since the Mapped Statement definition specifies the
+result class expected, the framework can both create and populate the result
+class for you. Alternatively, if you need to manage the result object
+yourself, say because it is being populated by more than one statement, you
+can use the alternate form and pass your \tt{\$resultObject} as the third
+parameter.
+
+\subsection{QueryForList}
+
+\begin{verbatim}
+public function queryForList($statementName, $parameter=null, $result=null,
+ $skip=-1, $max=-1);
+\end{verbatim}
+If a Mapped Statement is expected to select multiple rows, then call it using
+\tt{queryForList}. Each entry in the list will be an result object populated
+from the corresponding row of the query result. If you need to manage the
+\tt{\$resultObject} yourself, then it can be passed as the third parameter. If
+you need to obtain a partial result, the fourth parameter \tt{\$skip} and
+fifth parameter \tt{\$max} allow you to skip a number of records (the starting
+point) and the maximum number to return.
+
+
+\subsection{QueryForPagedList}
+\begin{verbatim}
+ public function queryForPagedList($statementName, $parameter=null, $pageSize=10);
+\end{verbatim}
+We live in an age of information overflow. A database query often returns more
+hits than users want to see at once, and our requirements may say that we need
+to offer a long list of results a ``page'' at a time. If the query returns
+1000 hits, we might need to present the hits to the user in sets of fifty, and
+let them move back and forth between the sets. Since this is such a common
+requirement, the framework provides a convenience method.
+
+The \tt{TSqlMapPagedList} interface includes methods for navigating through
+pages (\tt{nextPage()}, \tt{previousPage()}, \tt{gotoPage(\$pageIndex)}) and
+also checking the status of the page (\tt{getIsFirstPage()},
+\tt{getIsMiddlePage()}, \tt{getIsLastPage()}, \tt{getIsNextPageAvailable()},
+\tt{getIsPreviousPageAvailable()}, \tt{getCurrentPageIndex()},
+\tt{getPageSize()}). The total number of records available is not accessible
+from the \tt{TSqlMapPagedList} interface, unless a virtual count is defined
+using \tt{setVirtualCount(\$value)}, this should be easily accomplished by
+simply executing a second statement that counts the expected results.
+
+\begin{mybox}{Tip:}
+The \tt{queryForPagedList} method is convenient, but note that a larger set
+(up to 3 times the page size) will first be returned by the database provider
+and the smaller set extracted by the framework. The higher the page size, the
+larger set that will be returned and thrown away. For very large sets, you may
+want to use a stored procedure or your own query that uses \tt{\$skip} and
+\tt{\$max} as parameters in \tt{queryForList}.
+\end{mybox}
+
+\subsection{QueryForMap}
+\begin{verbatim}
+public function queryForMap($statementName, $parameter=null,
+ $keyProperty=null, $valueProperty=null);
+\end{verbatim}
+The \tt{queryForList} methods return the result objects within a \tt{TList} or
+array instance. Alternatively, the \tt{queryForMap} returns a TMap or
+associative array instance. The value of each entry is one of the result
+objects. The key to each entry is indicated by the \tt{\$keyProperty}
+parameter. This is the name of the one of the properties of the result object,
+the value of which is used as the key for each entry. For example, If you
+needed a set of \tt{Employee} objects, you might want them returned as a
+\tt{TMap} keyed by each object's \tt{EmployeeNumber} property.
+
+If you don't need the entire result object in your result, you can add the
+\tt{\$valueProperty} parameter to indicate which result object property should
+be the value of an entry. For example, you might just want the
+\tt{EmployeeName} keyed by \tt{EmployeeNumber}.
+
+\subsection{Transaction}
+The DataMapper API includes methods to demarcate transactional boundaries. A
+transaction can be started, committed and/or rolled back. You can call the
+transaction methods from the \tt{TSqlMapper} instance.
+
+\begin{verbatim}
+// Begin a transactional session using Adodb transaction API
+public function beginTransaction()
+
+// Commit a transaction, uses Adodb transaction API
+public function commitTransaction()
+
+// RollBack a transaction, uses Adodb transaction API
+public void RollBackTransaction()
+\end{verbatim}
+
+\begin{example}\label{example:9.15}
+Using transactions
+\begin{verbatim}
+try
+{
+ $sqlMap->beginTransaction();
+ $item = $sqlMap->queryForObject("getItem", $itemId);
+ $item->setDescription($newDescription);
+ $sqlMap->update("updateItem", $item);
+ $sqlMap->commitTransaction();
+}
+catch
+{
+ $sqlMap->rollBackTransaction();
+}
+\end{verbatim}
+\end{example}
+
+\section{Coding Examples}
+\begin{example}\label{example:10.1}
+Executing Update (insert, update, delete)
+\begin{verbatim}
+$product = new Product();
+$product->setId(1);
+$product->setDescription('Shih Tzui');
+
+$key = $sqlMap->insert('insertProduct', $product);
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.2}
+Executing Query for Object (select)
+\begin{verbatim}
+$key = 1;
+$product = $sqlMap->queryForObject ('getProduct', $key);
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.3}
+Executing Query for Object (select) With Preallocated Result Object
+\begin{verbatim}
+$customer = new Customer();
+
+$sqlMap->beginTransaction();
+
+$sqlMap->queryForObject('getCust', $parameter, $customer);
+$sqlMap->queryForObject('getAddr', $parameter, $customer);
+$sqlMap->commitTransaction();
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.4}
+Executing Query for List (select)
+\begin{verbatim}
+$list = $sqlMap->queryForList ('getProductList');
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.4}
+Executing Query for List (select) With Result Boundaries
+\begin{verbatim}
+$list = $sqlMap->queryForList ('getProductList', $key, null, 0, 40);
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.5}
+Executing Query for Paginated List (select)
+\begin{verbatim}
+$list = $sqlMap->queryForPagedList ('getProductList', null, 10);
+$list->nextPage();
+$list->previousPage();
+\end{verbatim}
+\end{example}
+
+\begin{example}\label{example:10.6}
+Executing Query for Map
+\begin{verbatim}
+ $map = $sqlMap->QueryForMap('getProductList', null, 'productCode');
+ $product = $map['EST-93'];
+\end{verbatim}
+\end{example}
diff --git a/docs/sqlmap/latex/diagram.pdf b/docs/sqlmap/latex/diagram.pdf Binary files differnew file mode 100644 index 00000000..5e64e388 --- /dev/null +++ b/docs/sqlmap/latex/diagram.pdf diff --git a/docs/sqlmap/latex/example1.png b/docs/sqlmap/latex/example1.png Binary files differnew file mode 100644 index 00000000..b5241de6 --- /dev/null +++ b/docs/sqlmap/latex/example1.png diff --git a/docs/sqlmap/latex/grid1.png b/docs/sqlmap/latex/grid1.png Binary files differnew file mode 100644 index 00000000..845b9581 --- /dev/null +++ b/docs/sqlmap/latex/grid1.png diff --git a/docs/sqlmap/latex/grid2.png b/docs/sqlmap/latex/grid2.png Binary files differnew file mode 100644 index 00000000..dcafc33d --- /dev/null +++ b/docs/sqlmap/latex/grid2.png diff --git a/docs/sqlmap/latex/sqlmap.tex b/docs/sqlmap/latex/sqlmap.tex new file mode 100644 index 00000000..57faaab3 --- /dev/null +++ b/docs/sqlmap/latex/sqlmap.tex @@ -0,0 +1,143 @@ +\documentclass{book}
+%\usepackage{graphicx}
+
+\usepackage[pdftex]{hyperref}
+\usepackage[pdftex]{graphicx}
+
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{amssymb}
+
+\usepackage{fancyhdr}
+
+\newtheorem{example}{Example}[section]
+
+\renewcommand{\tt}[1]{\texttt{#1}}
+
+%---------- fonts Type 1 -----------------
+\usepackage{times}
+\usepackage[T1]{fontenc}
+\usepackage{textcomp}
+
+%------------------------Page set-up-----------------------------------------
+
+\renewcommand{\baselinestretch}{1.25}
+\setlength{\hoffset}{-1in}
+\setlength{\oddsidemargin}{3.5cm}
+\setlength{\evensidemargin}{3.5cm}
+\setlength{\topmargin}{0cm}
+\setlength{\footskip}{2cm}
+\setlength{\headheight}{14pt}
+\setlength{\marginparwidth}{0cm}
+\setlength{\marginparsep}{0cm}
+\setlength{\marginparpush}{0cm}
+\setlength{\textwidth}{15cm}
+\setlength{\parindent}{0cm}
+\setlength{\parskip}{0.75\baselineskip}
+
+%------------------------------------------------------------------------------
+
+\newsavebox{\fmboxb}
+\newenvironment{mybox}[1]
+ {\vspace{-2mm}\begin{center}\begin{lrbox}{\fmboxb}\hspace{2mm}
+ \begin{minipage}{0.85\textwidth} \vspace{2mm}\small \textbf{#1}}
+ { \vspace{2mm} \end{minipage}
+ \hspace{2mm}\end{lrbox}\fbox{\usebox{\fmboxb}}\end{center}}
+
+
+%---- change link style ----
+\hypersetup{colorlinks, linkcolor=blue, pdfstartview={FitH}}
+
+
+% Pages and Fancyheadings stuff
+%-----------------------------------------------------------------------
+\cfoot{\thepage}
+\fancyhead[LE,RO]{}
+\fancyhead[LO]{\nouppercase{\scshape\rightmark}}
+\fancyhead[RE]{\nouppercase{\scshape\leftmark}}
+%-----------------------------------------------------------------------
+
+%----------------- TITLE --------------
+
+\title{\Huge \bfseries SQLMap PHP DataMapper Application Framework --
+v1.0
+ \thanks{Copyright 2006. All Rights Reserved.}
+}
+\author{Wei Zhuo}
+\date{\today}
+
+
+%-------------- BEGIN DOCUMENT ------------------
+
+
+\begin{document}
+
+\maketitle
+
+\pagestyle{plain}
+\addcontentsline{toc}{chapter}{Contents}
+\pagenumbering{roman}
+\tableofcontents
+
+\chapter*{Legal Notice}
+\addcontentsline{toc}{chapter}{Legal Notice}
+
+Copies of this document may be made for your own use and for distribution to
+others, provided that you do not charge any fee for such copies and further
+provided that each copy contains this Copyright Notice, whether distributed in
+print or electronically.
+
+This document is largely based on the iBATIS.NET -- DataMapper Application
+Framework Developer Guide.
+
+\chapter*{License}
+\addcontentsline{toc}{chapter}{License}
+SQLMap for PHP is free software released under the terms of the following BSD license.\\
+Copyright 2004-2006, PradoSoft (http://www.pradosoft.com)\\
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+\begin{enumerate}
+ \item Redistributions of source code must retain the above copyright notice,
+this list of conditions and the following disclaimer.
+
+ \item Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+\item Neither the name of the developer nor the names of its contributors may
+be used to endorse or promote products derived from this software without
+specific prior written permission.
+\end{enumerate}
+
+\begin{verbatim}
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+\end{verbatim}
+
+
+\newpage
+
+\pagestyle{fancyplain}
+\pagenumbering{arabic}
+
+\include{ch1}
+\include{ch2}
+\include{ch3}
+\include{ch4}
+\include{ch5}
+\include{ch6}
+\include{ch7}
+\include{ch8}
+\include{ch9}
+
+\end{document}
diff --git a/docs/sqlmap/latex/sqlmap_tut.tex b/docs/sqlmap/latex/sqlmap_tut.tex new file mode 100644 index 00000000..728fc91f --- /dev/null +++ b/docs/sqlmap/latex/sqlmap_tut.tex @@ -0,0 +1,96 @@ +\documentclass{article}
+%\usepackage{graphicx}
+
+\usepackage[pdftex]{hyperref}
+\usepackage[pdftex]{graphicx}
+
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{amssymb}
+
+
+\newtheorem{example}{Example}[section]
+
+\renewcommand{\tt}[1]{\texttt{#1}}
+
+%---------- fonts Type 1 -----------------
+\usepackage{times}
+\usepackage[T1]{fontenc}
+\usepackage{textcomp}
+
+%------------------------Page set-up-----------------------------------------
+
+\renewcommand{\baselinestretch}{1.25}
+\setlength{\hoffset}{-1in}
+\setlength{\oddsidemargin}{3.5cm}
+\setlength{\evensidemargin}{3.5cm}
+\setlength{\topmargin}{0cm}
+\setlength{\footskip}{2cm}
+\setlength{\headheight}{14pt}
+\setlength{\marginparwidth}{0cm}
+\setlength{\marginparsep}{0cm}
+\setlength{\marginparpush}{0cm}
+\setlength{\textwidth}{15cm}
+\setlength{\parindent}{0cm}
+\setlength{\parskip}{0.75\baselineskip}
+
+\hypersetup{colorlinks, linkcolor=blue, pdfstartview={FitH}}
+
+%------------------------------------------------------------------------------
+
+\newsavebox{\fmboxb}
+\newenvironment{mybox}[1]
+ {\vspace{-2mm}\begin{center}\begin{lrbox}{\fmboxb}\hspace{2mm}
+ \begin{minipage}{0.85\textwidth} \vspace{2mm}\small \textbf{#1}}
+ { \vspace{2mm} \end{minipage}
+ \hspace{2mm}\end{lrbox}\fbox{\usebox{\fmboxb}}\end{center}}
+
+%----------------- TITLE --------------
+
+\title{\vspace{-2.5cm} \bfseries SQLMap PHP DataMapper Tutorial
+ \thanks{Copyright 2006. All Rights Reserved.}
+}
+\author{Wei Zhuo}
+\date{\today}
+
+
+%-------------- BEGIN DOCUMENT ------------------
+
+
+\begin{document}
+
+\maketitle
+
+This tutorial takes an ``over-the-shoulder'' Cookbook approach. We'll define a
+simple data access problem and use SQLMap to solve it for us.
+
+
+\section*{Legal Notice}
+
+Copies of this document may be made for your own use and for distribution to
+others, provided that you do not charge any fee for such copies and further
+provided that each copy contains this Copyright Notice, whether distributed in
+print or electronically.
+
+This document is largely based on the iBATIS.NET -- DataMapper Application
+Tutorial.
+
+\subsection*{License Information}
+SQLMap for PHP is free software released under the terms of the following BSD
+license. Copyright 2004-2006, PradoSoft (http://www.pradosoft.com) All rights
+reserved.
+
+\subsection*{Disclaimer}
+SQLMap PHP DataMapper MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE
+INFORMATION IN THIS DOCUMENT. The names of actual companies and products
+mentioned herein may be the trademarks of their respective owners.
+
+\subsection*{Remark}
+Original writing by Clinton Begin, Ted Husted and Gilles Bayon.
+
+\include{tut1}
+\include{tut2}
+\include{tut3}
+
+
+\end{document}
diff --git a/docs/sqlmap/latex/tut1.tex b/docs/sqlmap/latex/tut1.tex new file mode 100644 index 00000000..8f7a4a26 --- /dev/null +++ b/docs/sqlmap/latex/tut1.tex @@ -0,0 +1,257 @@ +\section{Test First!}
+
+Let's say that our most important client has a database and one of the tables
+in the database is a list of people. Our client tells us:
+
+``We would like to use a web application to display the people in this table
+and to add, edit, and delete individual records.''
+
+Not a complicated story, but it will cover the CRUD most developers want to
+learn first. :) Let's start with the people table that the client mentioned.
+Since we're keeping it simple, we'll say it's a table in an Access database.
+The table definition is shown as Example~\ref{example:1}.
+
+\begin{example}\label{example:1}
+The Person Table
+\begin{verbatim}
+Name Type Size
+PER_ID Long Integer 4
+PER_FIRST_NAME Text 40
+PER_LAST_NAME Text 40
+PER_BIRTH_DATE Date/Time 8
+PER_WEIGHT_KG Double 8
+PER_HEIGHT_M Double 8
+\end{verbatim}
+\end{example}
+
+\begin{mybox}{Tip:}
+ This example is bundled with a SQLite database file ``Data/test.db''
+ that contains the \tt{Person} table and some data, ready to use.
+\end{mybox}
+
+The first thing our story says is that client would like to display a list of
+people. Example~\ref{example:2} shows our test for that.
+
+\begin{example}\label{example:2}
+Tests/PersonTest.php
+\begin{verbatim}
+<?php
+class PersonTest extends UnitTestCase
+{
+ function testPersonList()
+ {
+ //try it
+ $people = TMapper::instance()->queryForList("SelectAll");
+
+ //test it
+ $this->assertNotNull($people, "Person list is not returned");
+ $this->assertTrue($people->getCount() > 0, "Person list is empty");
+ $person = $people[0];
+ $this->assertNotNull($person, "Person not returned");
+ }
+}
+?>
+\end{verbatim}
+\end{example}
+
+Well, Example 2 sure looks easy enough! We ask a method to ``select all'', and
+it returns a list of person objects. But, what code do we need to write to
+pass this test?
+
+\begin{mybox}{Note:}
+ Save the PersonTest.php into a \tt{Tests} directory. The unit tests are
+ written for the SimpleTest framework (http://simpletest.sf.net).
+\end{mybox}
+
+Now, to setup the testing framework, suppose you have the \tt{SimpleTest}
+framework installed. Then we need to create an entry file to run the tests.
+See the \tt{SimpleTest} documentation for further details on setting up tests.
+
+\begin{example}\label{example:2a}
+Unit test entry file, \tt{run\_tests.php}.
+\begin{verbatim}
+<?php
+require_once('../tests/simpletest/unit_tester.php');
+require_once('../tests/simpletest/reporter.php');
+require_once('../SQLMap/TMapper.php');
+require_once('Models/Person.php');
+
+//supress strict warnings from Adodb.
+error_reporting(E_ALL);
+
+$test = new GroupTest('All tests');
+$test->addTestFile('Tests/PersonTest.php'); $test->run(new HtmlReporter());
+?>
+\end{verbatim}
+\end{example}
+To run the tests, point your browser to the ``run\_test.php'' script file
+served from your web server.
+
+Let's see. The test uses a list of person objects. We could start with a blank
+object, just to satisfy the test, and add the display properties later. But
+let's be naughty and skip a step. Our fully-formed person object is shown in
+Example~\ref{example:3}.
+
+\begin{example}\label{example:3}
+Models/Person.php
+\begin{verbatim}
+<?php
+class Person
+{
+ public $ID = -1;
+ public $FirstName;
+ public $LastName;
+ public $WeightInKilograms = 0.0;
+ public $HeightInMeters = 0.0;
+
+ private $_birthDate;
+
+ //setters and getter for BirthDate
+ public function getBirthDate()
+ {
+ return $this->_birthDate;
+ }
+
+ public function setBirthDate($value)
+ {
+ $this->_birthDate = $value;
+ }
+}
+?>
+\end{verbatim}
+\end{example}
+
+OK, that was fun! The \tt{\$this->assertXXX} methods are built into
+\tt{UnitTestCase} class. So to run Example~\ref{example:2}, we just need the
+\tt{TMapper} object and \tt{queryForList} method. Wonderfully, the SQLMap
+DataMapper framework has a \tt{TMapper}class built into it that will work just
+fine for for us to use in this tutorial, so we don't need to write that
+either.
+
+When the \tt{TMapper->instance()} method is called, an instance of the SQLMap
+\tt{TSqlMapper} class is returned that has various methods available such as
+\tt{queryForList}. In this example, the SQLMap \tt{TSqlMapper->queryForList()}
+method executes our SQL statement (or stored procedure) and returns the result
+as a list. Each row in the result becomes an entry in the list. Along with
+\tt{queryForList()}, there are also \tt{delete()}, \tt{insert()},
+\tt{queryForObject()}, \tt{queryForPagedList()} and a few other methods in the
+SQLMap API. (See Chapter 9 in the SQLMap DataMapper Developer Guide for
+details.)
+
+Looking at Example~\ref{example:2}, we see that the \tt{queryForList()} method
+takes the name of the statement we want to run. OK. Easy enough. But where
+does SQLMap get the ``SelectAll'' statement? Some systems try to generate SQL
+statements for you, but SQLMap specializes in data mapping, not code
+generation. It's our job (or the job of our database administrator) to craft
+the SQL or provide a stored procedure. We then describe the statement in an
+XML element, like the one shown in Example~\ref{example:4}.
+
+\begin{example}\label{example:4}
+We use XML elements to map a database statement to an application object.
+\begin{verbatim}
+<?xml version="1.0" encoding="utf-8" ?>
+<sqlMap>
+ <select id="SelectAll" resultClass="Person">
+ SELECT
+ per_id as ID,
+ per_first_name as FirstName,
+ per_last_name as LastName,
+ per_birth_date as BirthDate,
+ per_weight_kg as WeightInKilograms,
+ per_height_m as HeightInMeters
+ FROM
+ person
+ </select>
+</sqlMap>
+\end{verbatim}
+\end{example}
+
+The SQLMap mapping documents can hold several sets of related elements, like
+those shown in Example~\ref{example:4}. We can also have as many mapping
+documents as we need to help organize our code. Additionally, having multiple
+mapping documents is handy when several developers are working on the project
+at once.
+
+So, the framework gets the SQL code for the query from the mapping, and plugs
+it into a prepared statement. But, how does SQLMap know where to find the
+table's datasource?
+
+Surprise! More XML! You can define a configuration file for each datasource
+your application uses. Example~\ref{example:5} shows a configuration file for
+our SQLite database.
+
+\begin{example}\label{example:5}
+sqlmap.config - a configuration file for our SQLite database
+\begin{verbatim}
+<?xml version="1.0" encoding="UTF-8" ?>
+<sqlMapConfig>
+ <provider class="TAdodbProvider">
+ <datasource driver="sqlite" host="Data/test.db" />
+ </provider>
+ <sqlMaps>
+ <sqlMap resource="Data/person.xml"/>
+ </sqlMaps>
+</sqlMapConfig>
+\end{verbatim}
+\end{example}
+
+The \tt{<provider>} specifies the database provider class, in this case
+\tt{TAdodbProvider} using the Adodb library. The \tt{<datasource>} tag
+specifies the database connection details. In this case, for an SQLite
+database, we just need the driver name, and the host that points to the actual
+SQLite database file.
+
+The last part of the configuration file ("sqlMaps") is where we list our
+mapping documents, like the one shown back in Example~\ref{example:4}. We can
+list as many documents as we need here, and they will all be read when the
+configuration is parsed.
+
+OK, so how does the configuration get parsed?
+
+Look back at Example~\ref{example:2}. The heart of the code is the call to the
+``\tt{TMapper}'' object (under the remark "try it"). The \tt{TMapper} object
+is a singleton that handles the instantiation and configuration of an SQLMap
+\tt{TSqlMapper} object, which provides a facade to the SQLMap DataMapper
+framework API.
+
+The first time that the \tt{TMapper} is called, it reads in the
+\tt{sqlmap.config} file and associated mapping documents to create an instance
+of the \tt{TSqlMapper} class. On subsequent calls, it reuses the
+\tt{TSqlMapper} object so that the configuration is re-read only when files
+change.
+
+The framework comes bundled with a default \tt{TMapper} class for you to use
+immediately to get access to the SQLMap SqlMapper object. If you want to use a
+different name other than \tt{sqlmap.config} at the default location for the
+configuration file, or need to use more than one database and have one
+SqlMapper per database, you can also write your own class to mimic the role of
+the Mapper class view by copying and modifying the standard version.
+
+\begin{mybox}{Tip:}
+ You can also call \tt{TMapper::configure('/path/to/your/sqlmap.config')}
+ to configure the \tt{TMapper} for a specific configuration file.
+\end{mybox}
+
+If we put this all together into a solution, we can ``green bar'' our test. At
+this point you should have the following files.
+\begin{verbatim}
+Data/person.xml % Mapping file.
+Data/test.db % SQLite database file.
+
+Models/Person.php % Person class file.
+
+Tests/PersonTest.php % Unit test case for Person mapping.
+
+run_tests.php % Unit test entry point.
+sqlmap.config % SQLMap configuration file.
+\end{verbatim}
+
+Run the tests by pointing your browser URL to the ``run\_tests.php'' server
+file.
+
+\begin{figure}[!h]
+ \centering
+ \includegraphics[width=0.7\textwidth]{example1}
+ \caption{Green Bar!}
+ \label{fig:diagram}
+\end{figure}
diff --git a/docs/sqlmap/latex/tut2.tex b/docs/sqlmap/latex/tut2.tex new file mode 100644 index 00000000..b5389138 --- /dev/null +++ b/docs/sqlmap/latex/tut2.tex @@ -0,0 +1,128 @@ +\section{Playtest second!}
+Now that we have a passing test, we want to display some results as web pages.
+The following examples utilize the Prado framework to display and manipulate
+the database through SQLMap. Since SQLMap framework and Prado framework solve
+different problems, they are both fairly independent, they can be used
+together or separately.
+
+\subsection{SQLMap and Prado}
+To setup Prado, we need to create the follow files and directory structure
+under our \tt{example/WebView} directory.
+\begin{verbatim}
+assets/ % application public assets
+
+protected/pages/Home.page % default page
+protected/pages/Home.php % default page class
+protected/runtime/ % run time data
+
+protected/application.xml % application configuration
+
+index.php % application entry point
+\end{verbatim}
+
+The \tt{application.xml} and \tt{assets} directory are not necessary but we
+will make use of them later. The \tt{application.xml} is used to define some
+directory aliases and override the data source definitions in the
+\tt{sqlmap.config}. This is because SQLite database files are defined
+relatively, otherwise we don't need to override the data source definitions.
+The example \tt{application.xml} is show in Example~\ref{example:2.0}.
+
+\begin{example}\label{example:2.0}
+Prado application.xml, defines path aliases and override SQLite database
+location.
+\begin{verbatim}
+<?xml version="1.0" encoding="utf-8"?>
+<application id="SQLMap Example" Mode="Debug">
+ <paths>
+ <alias id="Example" path="../../" />
+ <using namespace="System.DataAccess.*" />
+ </paths>
+ <modules>
+ <module id="SQLMap" class="TSQLMap"
+ configFile="Example.sqlmap">
+ <!-- override sqlmap.config's database provider -->
+ <provider class="TAdodbProvider">
+ <datasource driver="sqlite" host="../Data/test.db" />
+ </provider>
+ </module>
+ </modules>
+</application>
+\end{verbatim}
+\end{example}
+
+The entry point to a Prado application in this example is \tt{index.php}.
+Example~\ref{example:2.1} shows the basic \tt{index.php} content.
+\begin{example}\label{example:2.1}
+Prado application entry point, \tt{index.php}.
+\begin{verbatim}
+<?php
+error_reporting(E_ALL);
+require_once('/path/to/prado/framework/prado.php');
+$application=new TApplication;
+$application->run();
+?>
+\end{verbatim}
+\end{example}
+
+Now we are ready to setup a page to display our list of people.
+Example~\ref{example:7} shows the Prado code for our display page. The key
+piece is the TDataGrid.
+
+\begin{example}\label{example:7}
+Prado page for our Person list, \tt{Home.page}.
+\begin{verbatim}
+<!doctype html public "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+<head>
+ <title>Person</title>
+</head>
+<body>
+<com:TForm>
+ <h1>Person List</h1>
+ <com:TDataGrid id="personList">
+ <com:TBoundColumn DataField="BirthDate"
+ HeaderText="Birth Date"/>
+ </com:TDataGrid>
+</com:TForm>
+</body>
+</html>
+\end{verbatim}
+\end{example}
+
+Of course, we still need to populate that TDataGrid. Example~\ref{example:8}
+shows the PHP code for \tt{Home.php}. The operative method is \tt{loadData()}.
+The rest is supporting code.
+
+\begin{example}\label{example:8}
+\tt{Home.php} class for our Person list page
+\begin{verbatim}
+<?php
+Prado::using('Example.Models.Person');
+class Home extends TPage
+{
+ private function loadData()
+ {
+ $sqlmap = $this->Application->getModule('SQLMap')->getClient();
+ $this->personList->DataSource = $sqlmap->queryForList('SelectAll');
+ $this->personList->dataBind();
+ }
+
+ public function onLoad($param)
+ {
+ if(!$this->IsPostBack)
+ $this->loadData();
+ }
+}
+?>
+\end{verbatim}
+\end{example}
+
+If we run this now, we'll get a list like the one shown in
+Figure~\ref{figure:2}.
+\begin{figure}[!h]
+ \centering
+ \includegraphics[width=0.75\textwidth]{grid1}
+ \caption{A quick-and-dirty Person List}
+ \label{figure:2}
+\end{figure}
diff --git a/docs/sqlmap/latex/tut3.tex b/docs/sqlmap/latex/tut3.tex new file mode 100644 index 00000000..4e16ab28 --- /dev/null +++ b/docs/sqlmap/latex/tut3.tex @@ -0,0 +1,227 @@ +\section{Test, test, again ...}
+Of course, tweaking the Person List display is not going to be the end of it.
+Clients always want more, and now ours wants to edit, add, or delete records.
+Let's write some tests for these new tasks, as shown in
+Example~\ref{example:9}.
+
+\begin{example}\label{example:9}
+New stories, new tests
+\begin{verbatim}
+ function testPersonUpdate()
+ {
+ $expect = "wei";
+ $edited = "Nah";
+
+ //get it;
+ $person = TMapper::instance()->queryForObject("Select", 1);
+
+ //test it
+ $this->assertNotNull($person);
+ $this->assertEqual($expect, $person->FirstName);
+
+ //change it
+ $person->FirstName = $edited;
+ TMapper::instance()->update("Update", $person);
+
+ //get it again
+ $person = TMapper::instance()->queryForObject("Select", 1);
+
+ //test it
+ $this->assertEqual($edited, $person->FirstName);
+
+ //change it back
+ $person->FirstName = $expect;
+ TMapper::instance()->update("Update", $person);
+ }
+
+ function testPersonDelete()
+ {
+ //insert it
+ $person = new Person;
+ $person->ID = -1;
+ TMapper::instance()->insert("Insert", $person);
+
+ //delte it
+ $count = TMapper::instance()->delete("Delete", -1);
+ $this->assertEqual(1, $count);
+ }
+\end{verbatim}
+\end{example}
+
+Not the best tests ever written, but for now, they will do :)
+
+To make the new tests work, we'll need some new mapping statements.
+Example~\ref{example:10} shows the complete mapper document that we've called
+\tt{personHelper.xml}.
+
+\begin{example}
+The new and improved mapper document
+\begin{verbatim}
+<?xml version="1.0" encoding="utf-8" ?>
+
+<sqlMap Name="PersonHelper">
+ <select id="Select" parameterClass="int" resultClass="Person">
+ select
+ PER_ID as ID,
+ PER_FIRST_NAME as FirstName,
+ PER_LAST_NAME as LastName,
+ PER_BIRTH_DATE as BirthDate,
+ PER_WEIGHT_KG as WeightInKilograms,
+ PER_HEIGHT_M as HeightInMeters
+ from PERSON
+ WHERE
+ PER_ID = #value#
+ </select>
+
+ <insert id="Insert" parameterClass="Person">
+ insert into PERSON
+ (PER_ID, PER_FIRST_NAME, PER_LAST_NAME,
+ PER_BIRTH_DATE, PER_WEIGHT_KG, PER_HEIGHT_M)
+ values
+ (#ID#, #FirstName#, #LastName#,
+ #BirthDate#, #WeightInKilograms#, #HeightInMeters#)
+ </insert>
+
+ <update id="Update" parameterClass="Person">
+ update PERSON set
+ PER_FIRST_NAME = #FirstName#,
+ PER_LAST_NAME = #LastName#,
+ PER_BIRTH_DATE = #BirthDate#,
+ PER_WEIGHT_KG = #WeightInKilograms#,
+ PER_HEIGHT_M = #HeightInMeters#
+ where PER_ID = #ID#
+ </update>
+
+ <delete id="Delete" parameterClass="int">
+ delete from PERSON
+ where PER_ID = #value#
+ </delete>
+</sqlMap>
+\end{verbatim}
+\end{example}
+Well, waddya know, if run our tests now, we are favored with a green bar!. It
+all works!
+
+\begin{mybox}{Note:}
+Though, of course, things usually do not work perfectly the first time! We
+have to fix this and that, and try, try, again. But SimpleTest makes trying
+again quick and easy. You can changes to the XML mapping documents and rerun
+the tests! No muss, no fuss.
+\end{mybox}
+
+Turning back to our Prado page, we can revamp the TDataGrid to allow in-place
+editing and deleting. To add records, we provide a button after the grid that
+inserts a blank person for client to edit. The page code is shown as
+Example~\ref{example:11}.
+\begin{example}\label{example:11}
+Prado page code for our enhanced TDataGrid
+\begin{verbatim}
+ <com:TDataGrid id="personList"
+ DataKeyField="ID"
+ AutoGenerateColumns="False"
+ OnEditCommand="editPerson"
+ OnUpdateCommand="updatePerson"
+ OnCancelCommand="refreshList"
+ OnDeleteCommand="deletePerson">
+ <com:TBoundColumn DataField="FirstName" HeaderText="First Name" />
+ <com:TBoundColumn DataField="LastName" HeaderText="Last Name" />
+ <com:TBoundColumn DataField="HeightInMeters" HeaderText="Height" />
+ <com:TBoundColumn DataField="WeightInKilograms" HeaderText="Weight" />
+ <com:TEditCommandColumn
+ HeaderText="Edit"
+ UpdateText="Save" />
+ <com:TButtonColumn
+ HeaderText="Delete"
+ Text="Delete"
+ CommandName="delete"/>
+ </com:TDataGrid>
+ <com:TButton Text="Add" OnClick="addNewPerson" />
+\end{verbatim}
+\end{example}
+
+Example~\ref{example:12} shows the corresponding methods from page PHP class.
+
+\begin{example}\label{example:12}
+The page class code for our enhanced TDataGrid
+\begin{verbatim}
+ private function sqlmap()
+ {
+ return $this->Application->getModule('SQLMap')->getClient();
+ }
+
+ private function loadData()
+ {
+ $this->personList->DataSource =
+ $this->sqlmap()->queryForList('SelectAll');
+ $this->personList->dataBind();
+ }
+
+ public function onLoad($param)
+ {
+ if(!$this->IsPostBack)
+ $this->loadData();
+ }
+
+ protected function editPerson($sender,$param)
+ {
+ $this->personList->EditItemIndex=$param->Item->ItemIndex;
+ $this->loadData();
+ }
+
+ protected function deletePerson($sender, $param)
+ {
+ $id = $this->getKey($sender, $param);
+ $this->sqlmap()->update("Delete", $id);
+ $this->loadData();
+ }
+
+ protected function updatePerson($sender, $param)
+ {
+ $person = new Person();
+ $person->FirstName = $this->getText($param, 0);
+ $person->LastName = $this->getText($param, 1);
+ $person->HeightInMeters = $this->getText($param, 2);
+ $person->WeightInKilograms = $this->getText($param, 3);
+ $person->ID = $this->getKey($sender, $param);
+ $this->sqlmap()->update("Update", $person);
+ $this->refreshList($sender, $param);
+ }
+
+ protected function addNewPerson($sender, $param)
+ {
+ $person = new Person;
+ $person->FirstName = "-- New Person --";
+ $this->sqlmap()->insert("Insert", $person);
+ $this->loadData();;
+ }
+
+ protected function refreshList($sender, $param)
+ {
+ $this->personList->EditItemIndex=-1;
+ $this->loadData();
+ }
+
+ private function getText($param, $index)
+ {
+ $item = $param->Item;
+ return $item->Cells[$index]->Controls[0]->Text;
+ }
+
+ private function getKey($sender, $param)
+ {
+ return $sender->DataKeys[$param->Item->DataSourceIndex];
+ }
+\end{verbatim}
+\end{example}
+
+OK, we are CRUD complete! There's more we could do here. In particular, we
+should add validation methods to prevent client from entering alphabetic
+characters where only numbers can live. But, that's a different Prado
+tutorial, and this is an SQLMap DataMapper tutorial.
+
+\begin{figure}[!h]
+ \centering
+ \includegraphics[width=0.75\textwidth]{grid2}
+ \caption{Person List CRUD}
+ \label{figure:2}
+\end{figure}
diff --git a/docs/sqlmap/sqlmap.pdf b/docs/sqlmap/sqlmap.pdf new file mode 100644 index 00000000..d228a53d --- /dev/null +++ b/docs/sqlmap/sqlmap.pdf @@ -0,0 +1,10097 @@ +%PDF-1.4 +5 0 obj +<< /S /GoTo /D (section*.1) >> +endobj +8 0 obj +(Contents) +endobj +9 0 obj +<< /S /GoTo /D (chapter*.3) >> +endobj +12 0 obj +(Legal Notice) +endobj +13 0 obj +<< /S /GoTo /D (chapter*.4) >> +endobj +16 0 obj +(License) +endobj +17 0 obj +<< /S /GoTo /D (chapter.1) >> +endobj +20 0 obj +(Introduction) +endobj +21 0 obj +<< /S /GoTo /D (section.1.1) >> +endobj +24 0 obj +(Overview) +endobj +25 0 obj +<< /S /GoTo /D (section.1.2) >> +endobj +28 0 obj +(What's covered here) +endobj +29 0 obj +<< /S /GoTo /D (section.1.3) >> +endobj +32 0 obj +(Support) +endobj +33 0 obj +<< /S /GoTo /D (section.1.4) >> +endobj +36 0 obj +(Disclaimer) +endobj +37 0 obj +<< /S /GoTo /D (chapter.2) >> +endobj +40 0 obj +(The Big Picture) +endobj +41 0 obj +<< /S /GoTo /D (section.2.1) >> +endobj +44 0 obj +(Introduction) +endobj +45 0 obj +<< /S /GoTo /D (section.2.2) >> +endobj +48 0 obj +(What does it do?) +endobj +49 0 obj +<< /S /GoTo /D (section.2.3) >> +endobj +52 0 obj +(How does it work?) +endobj +53 0 obj +<< /S /GoTo /D (section.2.4) >> +endobj +56 0 obj +(Is SQLMap the best choice for my project?) +endobj +57 0 obj +<< /S /GoTo /D (chapter.3) >> +endobj +60 0 obj +(Working with Data Maps) +endobj +61 0 obj +<< /S /GoTo /D (section.3.1) >> +endobj +64 0 obj +(Introduction) +endobj +65 0 obj +<< /S /GoTo /D (section.3.2) >> +endobj +68 0 obj +(What's in a Data Map definition file, anyway?) +endobj +69 0 obj +<< /S /GoTo /D (section.3.3) >> +endobj +72 0 obj +(Mapped Statements) +endobj +73 0 obj +<< /S /GoTo /D (subsection.3.3.1) >> +endobj +76 0 obj +(Statement Types) +endobj +77 0 obj +<< /S /GoTo /D (subsection.3.3.2) >> +endobj +80 0 obj +(Stored Procedures) +endobj +81 0 obj +<< /S /GoTo /D (section.3.4) >> +endobj +84 0 obj +(The SQL) +endobj +85 0 obj +<< /S /GoTo /D (subsection.3.4.1) >> +endobj +88 0 obj +(Escaping XML symbols) +endobj +89 0 obj +<< /S /GoTo /D (subsection.3.4.2) >> +endobj +92 0 obj +(Auto-Generated Keys) +endobj +93 0 obj +<< /S /GoTo /D (subsection.3.4.3) >> +endobj +96 0 obj +(<generate> tag) +endobj +97 0 obj +<< /S /GoTo /D (section.3.5) >> +endobj +100 0 obj +(Statement-type Element Attributes) +endobj +101 0 obj +<< /S /GoTo /D (subsection.3.5.1) >> +endobj +104 0 obj +(id attribute) +endobj +105 0 obj +<< /S /GoTo /D (subsection.3.5.2) >> +endobj +108 0 obj +(parameterMap attribute) +endobj +109 0 obj +<< /S /GoTo /D (subsection.3.5.3) >> +endobj +112 0 obj +(parameterClass attribute ) +endobj +113 0 obj +<< /S /GoTo /D (subsection.3.5.4) >> +endobj +116 0 obj +(resultMap attribute) +endobj +117 0 obj +<< /S /GoTo /D (subsection.3.5.5) >> +endobj +120 0 obj +(resultClass attribute) +endobj +121 0 obj +<< /S /GoTo /D (subsection.3.5.6) >> +endobj +124 0 obj +(listClass attribute) +endobj +125 0 obj +<< /S /GoTo /D (subsection.3.5.7) >> +endobj +128 0 obj +(cacheModel attribute) +endobj +129 0 obj +<< /S /GoTo /D (subsection.3.5.8) >> +endobj +132 0 obj +(extends attribute) +endobj +133 0 obj +<< /S /GoTo /D (chapter.4) >> +endobj +136 0 obj +(Parameter Maps and Inline Parameters) +endobj +137 0 obj +<< /S /GoTo /D (section.4.1) >> +endobj +140 0 obj +(Parameter Map) +endobj +141 0 obj +<< /S /GoTo /D (subsection.4.1.1) >> +endobj +144 0 obj +(<parameterMap> attributes) +endobj +145 0 obj +<< /S /GoTo /D (section.4.2) >> +endobj +148 0 obj +(<parameter> Elements) +endobj +149 0 obj +<< /S /GoTo /D (subsection.4.2.1) >> +endobj +152 0 obj +(property attribute) +endobj +153 0 obj +<< /S /GoTo /D (subsection.4.2.2) >> +endobj +156 0 obj +(direction attribute) +endobj +157 0 obj +<< /S /GoTo /D (subsection.4.2.3) >> +endobj +160 0 obj +(column attribute) +endobj +161 0 obj +<< /S /GoTo /D (subsection.4.2.4) >> +endobj +164 0 obj +(dbType attribute) +endobj +165 0 obj +<< /S /GoTo /D (subsection.4.2.5) >> +endobj +168 0 obj +(type attribute) +endobj +169 0 obj +<< /S /GoTo /D (subsection.4.2.6) >> +endobj +172 0 obj +(nullValue attribute) +endobj +173 0 obj +<< /S /GoTo /D (subsection.4.2.7) >> +endobj +176 0 obj +(size attribute) +endobj +177 0 obj +<< /S /GoTo /D (subsection.4.2.8) >> +endobj +180 0 obj +(precision attribute) +endobj +181 0 obj +<< /S /GoTo /D (subsection.4.2.9) >> +endobj +184 0 obj +(scale attribute) +endobj +185 0 obj +<< /S /GoTo /D (subsection.4.2.10) >> +endobj +188 0 obj +(typeHandler attribute) +endobj +189 0 obj +<< /S /GoTo /D (section.4.3) >> +endobj +192 0 obj +(Inline Parameter Maps) +endobj +193 0 obj +<< /S /GoTo /D (section.4.4) >> +endobj +196 0 obj +(Standard Type Parameters) +endobj +197 0 obj +<< /S /GoTo /D (section.4.5) >> +endobj +200 0 obj +(Array Type Parameters) +endobj +201 0 obj +<< /S /GoTo /D (chapter.5) >> +endobj +204 0 obj +(Result Maps) +endobj +205 0 obj +<< /S /GoTo /D (section.5.1) >> +endobj +208 0 obj +(Extending resultMaps) +endobj +209 0 obj +<< /S /GoTo /D (section.5.2) >> +endobj +212 0 obj +(<resultMap> attributes) +endobj +213 0 obj +<< /S /GoTo /D (subsection.5.2.1) >> +endobj +216 0 obj +(id attribute) +endobj +217 0 obj +<< /S /GoTo /D (subsection.5.2.2) >> +endobj +220 0 obj +(class attribute) +endobj +221 0 obj +<< /S /GoTo /D (subsection.5.2.3) >> +endobj +224 0 obj +(extends attribute) +endobj +225 0 obj +<< /S /GoTo /D (section.5.3) >> +endobj +228 0 obj +(<result> Elements) +endobj +229 0 obj +<< /S /GoTo /D (subsection.5.3.1) >> +endobj +232 0 obj +(property attribute) +endobj +233 0 obj +<< /S /GoTo /D (subsection.5.3.2) >> +endobj +236 0 obj +(column attribute) +endobj +237 0 obj +<< /S /GoTo /D (subsection.5.3.3) >> +endobj +240 0 obj +(columnIndex attribute) +endobj +241 0 obj +<< /S /GoTo /D (subsection.5.3.4) >> +endobj +244 0 obj +(dbType attribute) +endobj +245 0 obj +<< /S /GoTo /D (subsection.5.3.5) >> +endobj +248 0 obj +(type attribute) +endobj +249 0 obj +<< /S /GoTo /D (subsection.5.3.6) >> +endobj +252 0 obj +(resultMapping attribute) +endobj +253 0 obj +<< /S /GoTo /D (subsection.5.3.7) >> +endobj +256 0 obj +(nullValue attribute) +endobj +257 0 obj +<< /S /GoTo /D (subsection.5.3.8) >> +endobj +260 0 obj +(select attribute) +endobj +261 0 obj +<< /S /GoTo /D (subsection.5.3.9) >> +endobj +264 0 obj +(lazyLoad attribute) +endobj +265 0 obj +<< /S /GoTo /D (subsection.5.3.10) >> +endobj +268 0 obj +(typeHandler attribute) +endobj +269 0 obj +<< /S /GoTo /D (section.5.4) >> +endobj +272 0 obj +(Custom Type Handlers) +endobj +273 0 obj +<< /S /GoTo /D (section.5.5) >> +endobj +276 0 obj +(Implicit Result Maps) +endobj +277 0 obj +<< /S /GoTo /D (section.5.6) >> +endobj +280 0 obj +(Primitive Results \(i.e. String, Integer, Boolean\)) +endobj +281 0 obj +<< /S /GoTo /D (section.5.7) >> +endobj +284 0 obj +(Maps with ResultMaps) +endobj +285 0 obj +<< /S /GoTo /D (section.5.8) >> +endobj +288 0 obj +(Complex Properties) +endobj +289 0 obj +<< /S /GoTo /D (section.5.9) >> +endobj +292 0 obj +(Avoiding N+1 Selects \(1:1\)) +endobj +293 0 obj +<< /S /GoTo /D (section.5.10) >> +endobj +296 0 obj +(Complex Collection Properties) +endobj +297 0 obj +<< /S /GoTo /D (section.5.11) >> +endobj +300 0 obj +(Avoiding N+1 Select Lists \(1:M and M:N\)) +endobj +301 0 obj +<< /S /GoTo /D (subsection.5.11.1) >> +endobj +304 0 obj +(1:N \046 M:N Solution?) +endobj +305 0 obj +<< /S /GoTo /D (section.5.12) >> +endobj +308 0 obj +(Composite Keys or Multiple Complex Parameters Properties) +endobj +309 0 obj +<< /S /GoTo /D (chapter.6) >> +endobj +312 0 obj +(Cache Models) +endobj +313 0 obj +<< /S /GoTo /D (section.6.1) >> +endobj +316 0 obj +(Cache Implementation) +endobj +317 0 obj +<< /S /GoTo /D (subsection.6.1.1) >> +endobj +320 0 obj +(Least Recently Used [LRU] Cache) +endobj +321 0 obj +<< /S /GoTo /D (subsection.6.1.2) >> +endobj +324 0 obj +(FIFO Cache) +endobj +325 0 obj +<< /S /GoTo /D (chapter.7) >> +endobj +328 0 obj +(Dynamic SQL) +endobj +329 0 obj +<< /S /GoTo /D (chapter.8) >> +endobj +332 0 obj +(Installation and Setup) +endobj +333 0 obj +<< /S /GoTo /D (section.8.1) >> +endobj +336 0 obj +(Introduction) +endobj +337 0 obj +<< /S /GoTo /D (section.8.2) >> +endobj +340 0 obj +(Installing the DataMapper for PHP) +endobj +341 0 obj +<< /S /GoTo /D (subsection.8.2.1) >> +endobj +344 0 obj +(Setup the Distribution) +endobj +345 0 obj +<< /S /GoTo /D (subsection.8.2.2) >> +endobj +348 0 obj +(Add XML file items) +endobj +349 0 obj +<< /S /GoTo /D (section.8.3) >> +endobj +352 0 obj +(Configuring the DataMapper for PHP) +endobj +353 0 obj +<< /S /GoTo /D (subsection.8.3.1) >> +endobj +356 0 obj +(DataMapper clients) +endobj +357 0 obj +<< /S /GoTo /D (section.8.4) >> +endobj +360 0 obj +(DataMapper Configuration File \(SqlMap.config\)) +endobj +361 0 obj +<< /S /GoTo /D (section.8.5) >> +endobj +364 0 obj +(DataMapper Configuration Elements) +endobj +365 0 obj +<< /S /GoTo /D (subsection.8.5.1) >> +endobj +368 0 obj +(<properties> attributes) +endobj +369 0 obj +<< /S /GoTo /D (subsection.8.5.2) >> +endobj +372 0 obj +(<property> element and attributes) +endobj +373 0 obj +<< /S /GoTo /D (subsection.8.5.3) >> +endobj +376 0 obj +(The <typeHandler> Element) +endobj +377 0 obj +<< /S /GoTo /D (subsection.8.5.4) >> +endobj +380 0 obj +(The <provider> element and attribute) +endobj +381 0 obj +<< /S /GoTo /D (subsection.8.5.5) >> +endobj +384 0 obj +(The <datasource> element and attributes) +endobj +385 0 obj +<< /S /GoTo /D (subsection.8.5.6) >> +endobj +388 0 obj +(The <sqlMap> Element) +endobj +389 0 obj +<< /S /GoTo /D (chapter.9) >> +endobj +392 0 obj +(Using SQLMap PHP DataMapper) +endobj +393 0 obj +<< /S /GoTo /D (section.9.1) >> +endobj +396 0 obj +(Building a TSqlMapper instance) +endobj +397 0 obj +<< /S /GoTo /D (subsection.9.1.1) >> +endobj +400 0 obj +(Multiple Databases) +endobj +401 0 obj +<< /S /GoTo /D (subsection.9.1.2) >> +endobj +404 0 obj +(TDomSqlMapBuilder Configuration Options) +endobj +405 0 obj +<< /S /GoTo /D (section.9.2) >> +endobj +408 0 obj +(Exploring the SQLMap PHP DataMapper API through the TSqlMapper) +endobj +409 0 obj +<< /S /GoTo /D (subsection.9.2.1) >> +endobj +412 0 obj +(Insert, Update, Delete) +endobj +413 0 obj +<< /S /GoTo /D (subsection.9.2.2) >> +endobj +416 0 obj +(QueryForObject) +endobj +417 0 obj +<< /S /GoTo /D (subsection.9.2.3) >> +endobj +420 0 obj +(QueryForList) +endobj +421 0 obj +<< /S /GoTo /D (subsection.9.2.4) >> +endobj +424 0 obj +(QueryForPagedList) +endobj +425 0 obj +<< /S /GoTo /D (subsection.9.2.5) >> +endobj +428 0 obj +(QueryForMap) +endobj +429 0 obj +<< /S /GoTo /D (subsection.9.2.6) >> +endobj +432 0 obj +(Transaction) +endobj +433 0 obj +<< /S /GoTo /D (section.9.3) >> +endobj +436 0 obj +(Coding Examples) +endobj +437 0 obj +<< /S /GoTo /D [438 0 R /FitH ] >> +endobj +440 0 obj << +/Length 374 +/Filter /FlateDecode +>> +stream +xڍR�J�@}�W�c�3{��c�T����ChclmHkſwҍ�h �a���9g�B�" �"S�%1�����䬇��=C����`@�wA��h=��B�@дࣼw8�P���g"�4� �0��!����*�T�U��|��bUp�.��)�h +endobj +438 0 obj << +/Type /Page +/Contents 440 0 R +/Resources 439 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +>> endobj +441 0 obj << +/D [438 0 R /XYZ 99.213 706.052 null] +>> endobj +442 0 obj << +/D [438 0 R /XYZ 99.213 688.052 null] +>> endobj +439 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +452 0 obj << +/Length 1098 +/Filter /FlateDecode +>> +stream +x��Ms�6�����<��ǩ3i�&��i����A��m,z$�N�}@A�بJ�63DK�컻xH,$R`�G +c%�PX",h����ŕ���� +D���3.�cS,������Ha?RZ˷�Eh��(����߷ۮ�v��峋�ǀA���9���ݕ��{�"Ro��d���@ބ)Č�'�
�)(A��<�L�\Q�l�N+4R� +
���y}�zW-����m�Ił"I�8��b��aHk3r�k�E�& +FN-zPg���CѶ��~Z*#����ޓ�u�R��0#��}�Rl��ĩ��l�^һ�jA0���m���.���u״�I�R#J�d�ҽ�A�8�I��U0������"�;_:��!��P�E��]EDY�����$��}�qBi�^��-䆏�@�}����B����5 $Ak4����f���� F��_�%X�����%����-�ؾެ�o*!ʽ{B��c�r}����˴J�} +�=
� +��I*�{�A��i�����ˑ���e��k +,��]�3�M'�rg�(�Z��>R +t; 2 +X����D@F��A&����W�>��q�]���{�"����>���ݹ����f��Y�� �۶pZD Nj� +F��k��s@W耮�����,v��y�7�8P�����n�~])�?������n������i$��#J��j}"����k�����4��쑓���'�b�̠���Qf� +k4u��՛Vendstream +endobj +451 0 obj << +/Type /Page +/Contents 452 0 R +/Resources 450 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +/Annots [ 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R ] +>> endobj +454 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 506.128 138.395 515.104] +/Subtype /Link +/A << /S /GoTo /D (section*.1) >> +>> endobj +455 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 469.369 153.608 480.248] +/Subtype /Link +/A << /S /GoTo /D (chapter*.3) >> +>> endobj +456 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 436.415 132.308 445.392] +/Subtype /Link +/A << /S /GoTo /D (chapter*.4) >> +>> endobj +457 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 401.559 169.219 410.536] +/Subtype /Link +/A << /S /GoTo /D (chapter.1) >> +>> endobj +458 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 377.472 176.951 386.319] +/Subtype /Link +/A << /S /GoTo /D (section.1.1) >> +>> endobj +459 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 353.365 219.65 362.212] +/Subtype /Link +/A << /S /GoTo /D (section.1.2) >> +>> endobj +460 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 327.201 169.618 338.105] +/Subtype /Link +/A << /S /GoTo /D (section.1.3) >> +>> endobj +461 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 305.151 181.782 313.998] +/Subtype /Link +/A << /S /GoTo /D (section.1.4) >> +>> endobj +462 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 268.372 181.942 279.252] +/Subtype /Link +/A << /S /GoTo /D (chapter.2) >> +>> endobj +463 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 246.188 187.322 255.035] +/Subtype /Link +/A << /S /GoTo /D (section.2.1) >> +>> endobj +464 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 222.081 205.304 230.928] +/Subtype /Link +/A << /S /GoTo /D (section.2.2) >> +>> endobj +465 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 197.974 213.254 206.821] +/Subtype /Link +/A << /S /GoTo /D (section.2.3) >> +>> endobj +466 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 171.81 310.439 182.714] +/Subtype /Link +/A << /S /GoTo /D (section.2.4) >> +>> endobj +467 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 137.088 223.167 147.968] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +6 0 obj << +/D [451 0 R /XYZ 99.213 688.052 null] +>> endobj +453 0 obj << +/D [451 0 R /XYZ 99.213 541.802 null] +>> endobj +450 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +470 0 obj << +/Length 1854 +/Filter /FlateDecode +>> +stream +x��mo�6���S��l`f�,(:t[[lk�n3��^���p��V����$�-�'W@4�"N���������Q��2k g"˩&T�����f7�Λ+��+¬��o.$���<'V;�;�'�%P3& Sy�й!�V�o�W�^�<��q�-�μ�I��?f����QEg?���~}]n���_��^-[��h"��:�Q�^�����B�d�P�~������g���&�Dr�}^�}=3�7a#W\ o"�:D�&?Q/��u�R� ����j���8_p�}�k~��߯J����^H;[R�w������m���n����9����s 8%J�,�8J�נÂG�eO��@�H�M�נ�����h�@��T%�iA�iA �X7��Z���ؕ�~�)b��?Q�^��9��`��%�&��M$�}C5�<�&�N��a�ES��U������D^�Ь'qN >�sCgwE����H��b<�
�KA��']�)��v$"���IIwIT�&9J��xyK���������X�8���,�O1�N�����N����2��Ӗ?,�}C5*��n�$��� +�����O�Iz��p3��o��L.�S��x5�4x��&����45R�)t���C�j��F�E�M-�0y2m���4�vu�^�mv7
���{ۼ8>�~���~WQ
��g�Ӹ�:
��'�=F�S�!��C��74��n*vPh�a8vN��3���r�xS���n��i�լ���1uJmU���s40��f�$��?y�D��1�d�oh�A��D��F�J�A���]���F;&��+����F�Ԝp�;a���[LhK-ς�Z�F���Z�0�Ko1����b9��a�)X1w[LY�Cs����V�Z�v��(a�ݔ�W����v���,�sNg����'W��1�d:
(7�PnN}TL��C��$�o���$�C�M����/����M"Z)7�Bփ�N� +��w-aECEօ5�i�H����e�Ӻ�8���t�{fj���9����{.ΰ�x�9��갺-��P��D8�`�pΰ@g�ɂ +l�A���`Q`��uh"���q7�Na�-���k<��L:�ۮ�ǘϪI���ǚ�,2��iБp����G KUK$���!�H��T"���?��O�ĉ<��m9X,2�,a^
5�o`9�h�Apx�y2��[�ci�@E��7T��'��1wSA����xs�5Tu����+��y�:<���><�7t~�3��wb��E��7T3ʒ�"�2� +� ��?8��F��=�H����!l�k��Ĺ��d���8P�NF����/>e�.~�-D9�o�hС�}�p(�s�KU�$�����<�$�n�I1�&���58��4H�rpN,��/FvC�s���2���*bh�
: +endobj +469 0 obj << +/Type /Page +/Contents 470 0 R +/Resources 468 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +/Annots [ 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R ] +>> endobj +472 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 676.874 187.322 685.841] +/Subtype /Link +/A << /S /GoTo /D (section.3.1) >> +>> endobj +473 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 650.95 321.547 661.854] +/Subtype /Link +/A << /S /GoTo /D (section.3.2) >> +>> endobj +474 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 626.963 216.93 637.867] +/Subtype /Link +/A << /S /GoTo /D (section.3.3) >> +>> endobj +475 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 602.976 235.839 613.88] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.1) >> +>> endobj +476 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 581.046 242.714 589.893] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.2) >> +>> endobj +477 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 555.375 174.869 565.906] +/Subtype /Link +/A << /S /GoTo /D (section.3.4) >> +>> endobj +478 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 531.015 266.803 541.919] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.1) >> +>> endobj +479 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 507.028 256.691 517.932] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.2) >> +>> endobj +480 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 483.041 244.388 493.945] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.4.3) >> +>> endobj +484 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 459.054 276.227 469.958] +/Subtype /Link +/A << /S /GoTo /D (section.3.5) >> +>> endobj +485 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 437.005 217.399 445.971] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.1) >> +>> endobj +486 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 411.703 277.175 421.984] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.2) >> +>> endobj +487 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 387.716 291.621 397.997] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.3) >> +>> endobj +488 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 363.729 259.242 374.01] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.4) >> +>> endobj +489 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 341.121 271.197 350.023] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.5) >> +>> endobj +490 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 317.134 259.242 326.036] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.6) >> +>> endobj +491 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 293.147 265.22 302.049] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.7) >> +>> endobj +492 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 269.16 247.287 278.062] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.8) >> +>> endobj +493 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 233.036 284.287 243.915] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +494 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 208.915 199.058 219.819] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +495 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 185.551 293.005 195.832] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.1.1) >> +>> endobj +496 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 161.564 243.391 171.845] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +497 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 137.577 253.264 147.858] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.1) >> +>> endobj +471 0 obj << +/D [469 0 R /XYZ 99.213 706.052 null] +>> endobj +468 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +500 0 obj << +/Length 1655 +/Filter /FlateDecode +>> +stream +x��]��6���W�2��V�lC)�0�n�P�aoJ/��;2����n}e[��>J��P&a/&Lξg+�e�%T�cIQ�D�QE�����&����Q�\V(�z�ͅ�3"D�,xF +e��TF��S3���*� -j��˻w�3����d�Wb5F���1K '|���w�s锂�<ׁk�f[����i����R�F�:���9���cYk��]}\愧*q�����W��<�; ��[�H��g +L��i��8��ȉ��,<SJ��X���|
쀧�(U�t�ќ�-��q�
5���tS��0�0�Fc�M#�������"�� +�X���/B�^:s )IQ�{a:��ui$M넙���˱�o��������\�x4�N����܁�q�i� +�Ep�&��r=4GGX�ŕ�֗,���O����wpq���0F�����Ss�t��Xt��~Ї���r��^��#P�p����@�9F�a��Q5�(H7�Q�J����Q���������� +:�W������u�o�@tA�TD�{��A`��c�ג�Q��H�}��v� ���0h+Iendstream +endobj +499 0 obj << +/Type /Page +/Contents 500 0 R +/Resources 498 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +/Annots [ 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R ] +>> endobj +502 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 676.939 259.242 685.841] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.2) >> +>> endobj +503 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 652.952 241.309 661.854] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.3) >> +>> endobj +504 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 627.585 241.309 637.867] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.4) >> +>> endobj +505 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 603.598 229.354 613.88] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.5) >> +>> endobj +506 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 580.991 259.242 589.893] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.6) >> +>> endobj +507 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 556.939 229.354 565.906] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.7) >> +>> endobj +508 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 531.637 259.242 541.919] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.8) >> +>> endobj +509 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 508.965 235.332 517.932] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.9) >> +>> endobj +510 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 483.663 271.197 493.945] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.10) >> +>> endobj +511 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 459.054 228.666 469.958] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +512 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 435.067 242.255 445.971] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +513 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 411.08 230.071 421.984] +/Subtype /Link +/A << /S /GoTo /D (section.4.5) >> +>> endobj +514 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 376.958 168.562 387.837] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +515 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 352.837 241.29 363.741] +/Subtype /Link +/A << /S /GoTo /D (section.5.1) >> +>> endobj +516 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 329.472 243.192 339.754] +/Subtype /Link +/A << /S /GoTo /D (section.5.2) >> +>> endobj +517 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 306.865 217.399 315.767] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.2.1) >> +>> endobj +518 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 282.878 235.332 291.78] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.2.2) >> +>> endobj +519 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 258.891 247.287 267.793] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.2.3) >> +>> endobj +520 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 234.904 225.459 243.806] +/Subtype /Link +/A << /S /GoTo /D (section.5.3) >> +>> endobj +521 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 209.538 253.264 219.819] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.1) >> +>> endobj +522 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 186.93 241.309 195.832] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.2) >> +>> endobj +523 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 162.943 271.197 171.845] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.3) >> +>> endobj +524 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 137.577 241.309 147.858] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.4) >> +>> endobj +501 0 obj << +/D [499 0 R /XYZ 99.213 706.052 null] +>> endobj +498 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +527 0 obj << +/Length 1876 +/Filter /FlateDecode +>> +stream +x��]s�D���+t������r��B ��Ҧܔ^�D�(vƖ���9+�Z��c�iKI2��]��s�����Gb �,ISHՄ*�\�<��5|����+�R
�G><�!lr�
I��}����W�� C���XBS�~v����I +_��oI�x���ۙ"�����X�*#���NR���"�k")VůsNg���>��b��e�6��T�K�
f�8y2?R���?2M?����O�_�$��`� �oo�ЃXD�)��V�dl� ijqn�&��qpW�zSV���m��l)��E��)�D9�t"�Z�:ӸO���"���h�H�.�lo*9�B
N��*
N�bS�?g�f��*M�ݏHe �:���5�$������$>,1�iu�����?P
�� wh���X�pP�&�jqP�y�_VCJ�[��^�JJl��䆔z
:.���3����O��xۢ�x�h�H�k���.Qt�&������wg��j��:��۶*N��I��H�m4�\w��Q��+-��W���@5�v +W,܁�V)C��8�^pet��lqU�!��-�r/d
%���G��t���j|<������-����v@���~.�����)���P�qH�(hH���QEg�7�jy3��FgsKg��_�����:�Is��4hb�'�x�X܂�X�h�H�.�|o0i + �8�^Ӏ�<��7�eqYT
���}�N�s6�A��Ir��F����5\u��+���q��q�?�sZ�I<�p�MiU݈���O��|�*n���s5�c��,�9]7o~a�����^�b������t+:|�6����>[.�<[�W>�>6"��nr�����\֙٧�~�[�0����)��pVG��i���5
~��5�C�gQ��w�q�#�1%��$ +9R
�WX���b�K��K���@;�D�Z�\̹���K��KX���W����6_UE>$�i"�H�`C"�ͨ^ԕ�d����|"��|"�����|"���LjΧ�4|��ϯ�F
��eq�nՐ���5/^�=PWYeZ/�옍-�\j�y�D��t:
�-W�0�I����v��x��x���SN≄;�| +kI�rϠi�dL+�ϗ�#�X.|9��}��j +ղ{�J�A�w��$^��q"fc���ۙX�CAԒ�o��5 �U'��g�d���<���y�-������艆B��k/�sx��t2p�")S��������9-��9��j'�@�oqX]HJ�g��&`H�4���
B�mI�.�M]����8��D�G��44�m!��{����%��?PM`:I ��B���>O�xy�"/�E��;?��O�@����\y07@bYn��Kw�(�^g��&�\[}��HK�eI���z�t~�*�����#2<�2��)dZ��v0���e�ĘtS�1�#nIE�;ks� q��}C0�yv���|y���ߝY߰��d4h��858���2�J���'/������y�!h
p-��&_TY�ڤP�M+C���6�Y�4�в�zlY�W#���j�,�T�6y����T ���=F�x k$9�r�g��}�K౼kYC���=�۳W�O��/�5ǃ
��(���l-A��8����żiQC���5�8l;�iJ��` +����������Ù!)7Ib�'�h�<BO4��'�P��R����RMR���nG���%�Vcۑ q����n����H����n��4��ݍ8
�C�'NB
;�� �Q���[��Խ�E�~꧋u��e�6��y��\��?y'����5hN[+��T:a�D�qP��[�p!�|���@�����h� +endobj +526 0 obj << +/Type /Page +/Contents 527 0 R +/Resources 525 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +/Annots [ 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R ] +>> endobj +529 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 675.559 229.354 685.841] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.5) >> +>> endobj +530 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 651.468 283.152 661.749] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.6) >> +>> endobj +531 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 628.756 259.242 637.658] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.7) >> +>> endobj +532 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 604.665 241.309 613.566] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.8) >> +>> endobj +533 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 579.193 253.264 589.475] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.9) >> +>> endobj +534 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 555.102 271.197 565.383] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.3.10) >> +>> endobj +535 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 530.388 229.693 541.292] +/Subtype /Link +/A << /S /GoTo /D (section.5.4) >> +>> endobj +536 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 506.296 222.2 517.2] +/Subtype /Link +/A << /S /GoTo /D (section.5.5) >> +>> endobj +537 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 482.205 326.169 493.109] +/Subtype /Link +/A << /S /GoTo /D (section.5.6) >> +>> endobj +538 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 458.113 230.499 469.017] +/Subtype /Link +/A << /S /GoTo /D (section.5.7) >> +>> endobj +539 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 434.022 217.339 444.926] +/Subtype /Link +/A << /S /GoTo /D (section.5.8) >> +>> endobj +540 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 409.93 247.625 420.834] +/Subtype /Link +/A << /S /GoTo /D (section.5.9) >> +>> endobj +541 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 385.839 261.343 396.743] +/Subtype /Link +/A << /S /GoTo /D (section.5.10) >> +>> endobj +542 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 361.747 307.679 372.651] +/Subtype /Link +/A << /S /GoTo /D (section.5.11) >> +>> endobj +543 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 339.594 257.129 348.56] +/Subtype /Link +/A << /S /GoTo /D (subsection.5.11.1) >> +>> endobj +544 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 313.564 379.778 324.468] +/Subtype /Link +/A << /S /GoTo /D (section.5.12) >> +>> endobj +545 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 280.823 175.197 289.799] +/Subtype /Link +/A << /S /GoTo /D (chapter.6) >> +>> endobj +546 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 254.694 228.546 265.598] +/Subtype /Link +/A << /S /GoTo /D (section.6.1) >> +>> endobj +547 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 230.603 308.437 241.507] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.1.1) >> +>> endobj +548 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 208.569 218.923 217.415] +/Subtype /Link +/A << /S /GoTo /D (subsection.6.1.2) >> +>> endobj +549 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 171.867 175.765 182.746] +/Subtype /Link +/A << /S /GoTo /D (chapter.7) >> +>> endobj +550 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 137.088 209.269 147.968] +/Subtype /Link +/A << /S /GoTo /D (chapter.8) >> +>> endobj +528 0 obj << +/D [526 0 R /XYZ 99.213 706.052 null] +>> endobj +525 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +553 0 obj << +/Length 1926 +/Filter /FlateDecode +>> +stream +x��[o�6���)�� +x��&2�����SC��9����XV��lw]�W˳�'?�<�t֙�Dp�yۃh��_0"� +���sE�W�!��q�~�> ��9�I8 �I��ԟ�*�8��UėgT���G3��� +R�i)���j�X̗7g�~�>����i5�<c����ܴ���Wϯ���\�uD2H�i�p�a�r�9 R8O R���"�ɉ�XENhZP�ChENc!l�%���)�ݺO�|[m���8=�Us@q�G��$��l�:�A��#���=4� RF� Rƾ�"��2���A�qr���٬��˗��;J���8����?J��Y�6�_�Ac����^l�(Oa�T�c�T�o����Iw#�ce��I���N�b(�x��jYSw��|��_!*��(�V�F�E +�C��1AV��<�T}C8y���
PA#aJ�
�i,y� ���u����j��dN��Y�jȕՠ�p� ��p��% RS RӾ� +�g�u��
�nV��/���$ۋ�[F5RR���2��q72x3��jZ��?��٢��6?# Ͻ����j�0��������[�^�9�^}C�C܍Y��ib!ё�i,s���хQAa�0]K�_oV@b5/�?���hqn��ʯ�����P2b�P�j�DZ*�4�5�X�:*�z�
5T�����TjX����j��8*?G��-�� +˶G�
s���g�T� +B!� �a)�MNpE�*������H9<�H9����U$��@��9l%Ca�X���1�d��>���@آ�D���Ɗ�j��=���&+�0q+�RT@�E��]]��HLȃ�.P�L��Hb�|#)�\C�q��9���i>�B�tF}|g.R`!�� ��"�ՠi +I��b/ͻ�:� +� D +�7t�A��� m6?0��A���pK��j��.S�F�%�4��*���j�L�R$���L��^� K�#K�o�!O��C+<�<�a9�8�#OO�k�P�`�d�yNI͕1r@�H�4x.�Rz/���]�b)�g�_�PèJ2��s�m��F`��ށ1���>����f5NR�V��6P����<���@�?�h�F�s�nk����-3���=�A�D�����%�!��c7�yrS�i��tW����YW���k�s��ܲm�n��:!�y}7dy]��zpm�����5hV�G��C�������
�9�Ĉ��M��I��;�e�;f��-��zj��n#{ZR�Y�)r��H�h�!S�C?d�J��մo��/y�s7?h�T�
N��;��5y��mc�Mc͑Qh�n��S�W��y8���*�ʂ����47$]���Q����Å��7t +�����]�|��z��\��f,�f,����W/��6���Goc�-��`����yX$Y�(�
�d5h��S��O��oKH��$ʾ�� �ƶ%���ٷkKVc��F��m���k?��kX�������`z[�n? +����~�5hl��c�ûv���o�.c��{���30�K�[��8����r��〈�����?����y�{��!nV��¥ ��0���?b���j�7�3��ˠ� ��ɝ�1("��o�B(B +| �4�
ɹ��a����H�=�H������ˣ��8 wǣ��xU��ޔ�(��uG���W"E�GdW�a@}����#�Դo�A0yss��x¤J�}D��i�L&�"xfu8�R�x+��߫F1endstream +endobj +552 0 obj << +/Type /Page +/Contents 553 0 R +/Resources 551 0 R +/MediaBox [0 0 612 792] +/Parent 449 0 R +/Annots [ 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R ] +>> endobj +555 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 676.874 187.322 685.841] +/Subtype /Link +/A << /S /GoTo /D (section.8.1) >> +>> endobj +556 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 650.95 277.522 661.854] +/Subtype /Link +/A << /S /GoTo /D (section.8.2) >> +>> endobj +557 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 626.963 257.757 637.867] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.2.1) >> +>> endobj +558 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 605.033 251.032 613.88] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.2.2) >> +>> endobj +559 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 578.989 288.043 589.893] +/Subtype /Link +/A << /S /GoTo /D (section.8.3) >> +>> endobj +560 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 555.002 248.243 565.906] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.3.1) >> +>> endobj +561 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 531.015 331.769 541.919] +/Subtype /Link +/A << /S /GoTo /D (section.8.4) >> +>> endobj +562 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 507.028 285.273 517.932] +/Subtype /Link +/A << /S /GoTo /D (section.8.5) >> +>> endobj +563 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 483.663 281.05 493.945] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.1) >> +>> endobj +564 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 459.676 320.003 469.958] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.2) >> +>> endobj +565 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 435.69 301.334 445.971] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.3) >> +>> endobj +566 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 411.703 334.111 421.984] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.4) >> +>> endobj +567 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 389.095 349.941 397.997] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.5) >> +>> endobj +568 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 363.729 271.446 374.01] +/Subtype /Link +/A << /S /GoTo /D (subsection.8.5.6) >> +>> endobj +569 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.216 328.984 261.553 339.863] +/Subtype /Link +/A << /S /GoTo /D (chapter.9) >> +>> endobj +570 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 304.863 277.264 315.767] +/Subtype /Link +/A << /S /GoTo /D (section.9.1) >> +>> endobj +571 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 280.876 247.147 291.78] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.1.1) >> +>> endobj +572 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 256.889 363.451 267.793] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.1.2) >> +>> endobj +573 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 232.902 434.155 243.806] +/Subtype /Link +/A << /S /GoTo /D (section.9.2) >> +>> endobj +574 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 208.915 257.368 219.819] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.1) >> +>> endobj +575 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 184.928 235.093 195.832] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.2) >> +>> endobj +576 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 160.941 224.034 171.845] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.3) >> +>> endobj +577 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 136.954 248.233 147.858] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.4) >> +>> endobj +554 0 obj << +/D [552 0 R /XYZ 99.213 706.052 null] +>> endobj +551 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +580 0 obj << +/Length 421 +/Filter /FlateDecode +>> +stream +x��Mk�@���{������ǵ% zhѭ�`����6$�>�tUٖ�.��tywޗуVh�>hRB6�z�Bf��X3���� +�|n�U��,���F`�n|�`S���N>]2I��i�L�ɒ��G�A���������e�R��_���g{=�h�Z��
)��`���BE$�!�nD��hq)����-ct�\(�����|Цs���H���B�����g0̚�C�9lk�j;]=Lg��ՈC�,f�bb�s!��^����"�,���+�tʂ�C���2��T[�.�)�,�5�dEҊ���o�yݐ�/������ÈK�k�f�e�e���!�^�.��Y���ga^��x�����!����&28tG�ի��ɒ.���T��Oo�nV�endstream +endobj +579 0 obj << +/Type /Page +/Contents 580 0 R +/Resources 578 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +/Annots [ 582 0 R 583 0 R 584 0 R ] +>> endobj +582 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 674.937 226.794 685.841] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.5) >> +>> endobj +583 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.074 652.964 216.632 661.93] +/Subtype /Link +/A << /S /GoTo /D (subsection.9.2.6) >> +>> endobj +584 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.16 627.116 209.19 638.02] +/Subtype /Link +/A << /S /GoTo /D (section.9.3) >> +>> endobj +581 0 obj << +/D [579 0 R /XYZ 99.213 706.052 null] +>> endobj +578 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +588 0 obj << +/Length 524 +/Filter /FlateDecode +>> +stream +x�mS�r�0��+8��� �0�4ɴ��Rnm2�F�!���Wˊ�m<�z���v�eQ�?U�,��iAS���I���<oXx�sAYUx��3<�yZE�E��zs��e�wm�mT��,�d�Q��"��A�q�EJ^�Ӎ����<�G��Hi��l!<�Q�)N2�����逴���jp�����([������l21�m@x��C9��#���ջ�32;m���M�Sv��^�њ� rҭ +Q\'�8�j��XN�<_�k}^ +2FN�Nژ���!�xF�^t�47] �F!�
�ق>D�UnT>%1��81�i�:8���Cxe��!p�7W�|�TP����N�t�����|s�fE��q���}�A蚅g���^��iy�S�mE���>���������U�}� r3?���O��X��7�Z_��?�8B]p����?�'+�j�ǠSƾނ�`�7@�ܰ���h�q�X�/]ئ2�9˯nex�|<���خ��l��NZ��j]�Ϲ�P�endstream +endobj +587 0 obj << +/Type /Page +/Contents 588 0 R +/Resources 586 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +>> endobj +589 0 obj << +/D [587 0 R /XYZ 99.213 706.052 null] +>> endobj +10 0 obj << +/D [587 0 R /XYZ 99.213 537.068 null] +>> endobj +586 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +592 0 obj << +/Length 126 +/Filter /FlateDecode +>> +stream +x�m�11F����:4&i���� +���IQ:��������x��1P?w.0�!U��+<;9%�JEv�� +��&�V�Ui�习�~�}��qpt+(�;f0��_6�����t�_����ÿ��} +endobj +591 0 obj << +/Type /Page +/Contents 592 0 R +/Resources 590 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +>> endobj +593 0 obj << +/D [591 0 R /XYZ 99.213 706.052 null] +>> endobj +590 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +596 0 obj << +/Length 1478 +/Filter /FlateDecode +>> +stream +xڅX[s�H~ϯ��I�"��)�O(D{�L&��DȄ*p���{��t*U������}}I�H�4�uAB�h&j��J�}� �~���1ER�k LNUIQM/<,������l><�:G����蟱��㬌'���4�]���8�j�0�Pm��7�q2�Tq��Tخ�THJ6S�1��|���y��qX0eⰌ#::eQ�U�̢�����?:s��O$u|N��T��M*W"�JH�HtE��_�G���"��Y��(*S��=�R�0�}�4��U_�����DS���G%����@,�p`Œ`%/���_���IP��6�����}"A[�$�&SY��eN + �L[B�NA� FT +����sփ6˫d���~���z����I��x2'�d�4�� +Gԇ���!��^@J�g����潀������ �,���4Ϊ��e�Ϣ'~o����iG~�1pu��zx��0�I��7�� a����jmn3�ِ�ȷ�u'Zˬ{�8�.�9qBۅt�C�,Lki^#{5��� sȏ|i��(��$UI�I��`�4�M�w��T���C�SM�E`ΦyH�5ͫ�3���ߓ� H��#���S� +�h^#k�i�� +�׆m���}u,��}l�
α���rl��0�س�A���/`t�f +k-q3��[ +���u����(BR5������+�YZ��\��+���
���:�tx�j�QB����x����]��s�=�(t�����0_p���s8||y���[�I�@H~�-2�)w�"�I�i �3A�5 ������ +endobj +595 0 obj << +/Type /Page +/Contents 596 0 R +/Resources 594 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +>> endobj +597 0 obj << +/D [595 0 R /XYZ 99.213 706.052 null] +>> endobj +14 0 obj << +/D [595 0 R /XYZ 99.213 541.802 null] +>> endobj +598 0 obj << +/D [595 0 R /XYZ 99.213 434.339 null] +>> endobj +599 0 obj << +/D [595 0 R /XYZ 99.213 396.481 null] +>> endobj +600 0 obj << +/D [595 0 R /XYZ 99.213 358.623 null] +>> endobj +594 0 obj << +/Font << /F71 445 0 R /F72 448 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +603 0 obj << +/Length 1108 +/Filter /FlateDecode +>> +stream +xڅV�o�6�_��R@͈�V�ҥ�R�[�h�n�D�ZdQ�(���wǣd'v������x_^ +�/������Rı�g2ݢ�9+��5ּ�`z��*�@;ѽ�����T��+'�{�@bF�S�q:ǡn7�%�����P�u��$ahy��z������5*����U�٨�WV{��l��(b�; +Q��33�A�n�P#����i9�)7�B�("g'�Y�� ;B$<MĬ�&D&��(���W�&��a�����V��<�%���q��7|�E^v�D���e�����M~Ю���� +�h�˒%&G/�A�W +endobj +602 0 obj << +/Type /Page +/Contents 603 0 R +/Resources 601 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +>> endobj +18 0 obj << +/D [602 0 R /XYZ 99.213 688.052 null] +>> endobj +22 0 obj << +/D [602 0 R /XYZ 99.213 481.777 null] +>> endobj +26 0 obj << +/D [602 0 R /XYZ 99.213 221.216 null] +>> endobj +601 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +606 0 obj << +/Length 857 +/Filter /FlateDecode +>> +stream +xڍUYo�8~ׯ�#D\R��Go�$��Gm-P�X]+�[���𰝭��0`����p��>���G��)I0�#�j=�ͽG#t�������.��� ��g���4?9NX��gt|)�Z��T�RL9�Z��I��O��ȥ�#�϶�,��EΚaL����g�)���}F�di�?��̉����|�]{Ey�ƹ^1Nb�k����k��;�`�g�7� �y��b�R�o��������Z�U�8☓��w)%i����Au�����?���`��l����w�f9��Z?Z��S5�a�GK�{�W���;�H�l�0���t������_3Ah�xT�qQ���)�S?����C�qι9�j�F���Ŭ�n�'J�pN���4F&a��M�hþ 㱚�<�Xt�� +6G�T� +|���.��&Ȼ���2�b���A6� ]���j���M������1:B�M]4�&�2$����"�!�P�xj�]��}2��匲�[�P}ښ|�Y���X�⭰=��i���� +pkwOdi��p���e�������١a��ݱ@�)&)���YR�s8C?�׳��(�l�jw)�ҏ�݊��e�b4��wbs{�������E�sD�+n�v�P���~�ؔ��pc���n_u���j�{\KGY8m�9g�Cᨛ��~�(p�ݜ�mux�����bS)�o%��m�u�����2 +#Y�G��vD�Na;+C���0G�3 �"k��E�RuN%�[��t���(j �ӊ���B��u�`�� �r�d^�����N��Mx������v�\=�>g��q�T�c��}�?2#�3endstream +endobj +605 0 obj << +/Type /Page +/Contents 606 0 R +/Resources 604 0 R +/MediaBox [0 0 612 792] +/Parent 585 0 R +>> endobj +30 0 obj << +/D [605 0 R /XYZ 99.213 584.59 null] +>> endobj +34 0 obj << +/D [605 0 R /XYZ 99.213 503.295 null] +>> endobj +604 0 obj << +/Font << /F72 448 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +609 0 obj << +/Length 1060 +/Filter /FlateDecode +>> +stream +xڍɮ�6���B� +Q(��9({Vĕ]��<gm[� r=��ӵ��`�,�cPDj��Ġ����I�$ +9�EX{r�S�B�� 0Uv��f�h����/�w����,5"e���0)8Kwh� �$*��̪�%)xE��?�ڻ!I z��*2^��N`�Ӏ�kT�#V���ԧm� r}��ȡ��U� gEع՝i<���ؙV=B����e�9Mɺ�7 `�F�l����xV��&�)���-�)�u����� +endobj +608 0 obj << +/Type /Page +/Contents 609 0 R +/Resources 607 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +>> endobj +38 0 obj << +/D [608 0 R /XYZ 99.213 688.052 null] +>> endobj +42 0 obj << +/D [608 0 R /XYZ 99.213 477.043 null] +>> endobj +46 0 obj << +/D [608 0 R /XYZ 99.213 368.643 null] +>> endobj +50 0 obj << +/D [608 0 R /XYZ 99.213 218.514 null] +>> endobj +607 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +614 0 obj << +/Length 1719 +/Filter /FlateDecode +>> +stream +xڥَ�6��_���@Đ�$Jyk� �I\�@�Z��JdIё��}g8�,�-X
�ù/�ß𲌅Bz�'�ǡ�V���ͫ�p�# 4O7��/U�e,K����d��8V�'c�̼M������͒)�)�RLD����u������
����a1�G ���:\1�����\P�A��DҋK�"b���ھ�<^]�!X�&���xL�����wg����f����%q�^�����{D�g2K�;�9Y�VQ�ܹZ}\��y��i_]rF,���Qv*%*�Y��C�M�
�h����7u>�MM��Ϋ��Ǣ�wO�V���eBXNM�;=�-Ч����-yS�B��k�k�f���a�>ݬE��D��6��8�� �`��t"��U��tw��V��#�uA�E�:��d �RE�+VB^Z�4�`@x��� +=h�t���'x��2��:���̈́U�+��
�]<{����Ns;�:{S��롬,�+�{]�d�ӵޑk�^�{m����M2��FG���t� H��(��n�g~�{K@����ԃ�j�O����1Ҏ�n����w��D����V����B%#�7ۯ&�܈�9 5}(����]ӝ�A�wƽ���M1vZ�䩿�iX(WE�s�k�uo���������!���$b�R�"?/vpF*�P��?� ՞F�վ��9��r��}ÁA�X�1�L���,�k�I@�R*YGۨ7 /�ޔ�F,���ă{�Bic�Y��/�'s[>R�M �3I�c2 +���'�T�����h��C����|�c_Z���\�B�)���ߔ$] +C�|�9���(R^�ϲ�WW8���녺V +�%�Lev=��(�IlI��U�X����Ax���-��%�!�#�U�ૐI�pg��0M4���n�) +8�%?����G��Oە���9�D5ܷ�D)��bIge�1'�4��3�p��MoBt������� U:E��:�vu�<���5����T������>� ���;��_���4�#:Pf���+�H� +�"��}��u?��� s�7�!�������0�V��������ݢ/��L���+�����_,��̼)��*�ݗ�X'��`j�L�TB��j�4�\x�pNz<�y��y��s%�>/����2iT₦N������&�#fȥu�Ʈ>K���cu�����J�у��Hr�y�d81A�s9���KA��j�endstream +endobj +613 0 obj << +/Type /Page +/Contents 614 0 R +/Resources 612 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +/Annots [ 616 0 R ] +>> endobj +611 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/PTEX.FileName (diagram.pdf) +/PTEX.PageNumber 1 +/PTEX.InfoDict 617 0 R +/Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] +/BBox [0.00000000 0.00000000 600.00000000 507.53613000] +/PieceInfo << +/Illustrator 618 0 R +>> +/Resources << +/ColorSpace << +/CS0 619 0 R +/CS1 619 0 R +>>/Font << /C2_0 620 0 R/C2_1 621 0 R>> +/ProcSet [ /PDF /Text ] +/ExtGState << +/GS0 622 0 R +>>/Shading << +/Sh0 << +/ColorSpace /DeviceCMYK +/Function 623 0 R +/Domain [ 0 1] +/ShadingType 2 +/Extend [ true true] +/AntiAlias false +/Coords [ 0 0 1 0] +>> +/Sh1 624 0 R +/Sh2 << +/ColorSpace /DeviceCMYK +/Function 625 0 R +/Domain [ 0 1] +/ShadingType 2 +/Extend [ true true] +/AntiAlias false +/Coords [ 0 0 1 0] +>> +/Sh3 624 0 R +>>/Properties << +/MC0 << +/Color [ 20224 -32768 -1] +/Title (Layer 1) +/Visible true +/Preview true +/Editable true +/Printed true +/Dimmed true +>> +>>>> +/Length 4330 +/Filter /FlateDecode +>> +stream +x��]_��
�O1�2�_�a �$�桸 �b�&M��<��/)i$Jù����>/ +w���(�������������_ߨ��g7� ����|�/'�B�zQ�R&}j��ѿNj��rz��[�����x�|�uZ��6.�
k�I��x�z�!�W.�'ϧ ���C�O:��X�����J&�h +� +����Fe�^x�!�F���h +��l�f� �A= +^ELA�&|�M�2MjNM����z��*��IZjҡ���Ԅ��i +��b:����wY�u�g1��YLʴ��!��\CǕ4cӁ� +l�OZ.��RJ��~���Qb��áH3���g���р�oY�g�]ޅ!(J�n$�>���]��O˳���_�
�>ޚ����{6PrRL ^����Ǧ��!O��z +r� +ݫ�3}>�H������K�#Ux;վ�-a瓄���/��]�2�0�G��^���i����3��9z�n���n_=�0Ԉ���6�\��2�<�=����0I"� }��Z\��'�&���߿�_f^Ȟ�J���Lo!�#H��f���@=R���=���II�yһ8�4�,�G+%P��Hg�U�G���N�w��͎���f��hHg�%����l����xr�������.o�j�$2o�Ї}l +��D�$P[�U�~ +�%(����Չ'rK@L&Jt��z�H�N����%a<�38�w��U%/���&�����F����B���W�fzkБ�8��I_F�yQ=#��� ��G\V�mty�Vc�$�y��>�cS.�!O�����ӃPD2�9�ŌTڄ5z�aG��Ƭ1���c�u{��܊CT�a���ה�J����L�z�ء6x�M�IҤ��,�F���(C��ͷ�kW�\"������G������7˟O>х&_\�}��s��}���W�|u��"��9����AX��W�M,�5h�6b*h�骁[�U�~(�ք�2�wj?�%���>�������=2�P�G��%L��?�G�`|Ĭ)�E �Ҽ��~���pB"�fu1��]B��T2v歵[U~�����ס��D(6��)`6�U����f�eu���;�簇xSi��b�J +�&�����Z��R'��戚;��O4Dv罈�Ry���Q +�l��� +� +��\tmU���^��1VB��{��Eq���>zG��q���p���\,o��o����)�<�@�o��� +��d����~�yEc +���Hw~�a&1�Q`�6����p�,����a�8V�hM�@��oB?�4' �E���~E�Y��T<Y +�cLT���`&��q�=���hV�T$[�l
."������P�4,����V�I6�UdWp��9\�X�3&�T��Q5��\j�ZZ� +��3�CN�������&dM �7)���1��Zb_.�'�r������~��{�YV�6�nd�%�k@1r�N����S������-%pp+�����I-����X��P�r���"�yؚ��Y��@v��:E�W�Ps\������b���;�e'@�qX
&N�$Q6Y�?WO�r�e�|�W5|������a(l�H��a��W��pa����$�0�d� +`qR����he���ʖ�]�U���&��d2�Y�)�&`�
+endobj +617 0 obj +<< +/ModDate (D:20060310121748+11'00') +/CreationDate (D:20060310121408+11'00') +/Creator (Illustrator) +/Producer (Adobe PDF library 6.66) +>> +endobj +618 0 obj +<< +/LastModified (D:20060310121748+11'00') +/Private 626 0 R +>> +endobj +619 0 obj +[/DeviceN [/Cyan/Magenta]/DeviceCMYK 627 0 R] +endobj +620 0 obj +<< +/Type /Font +/Encoding /Identity-H +/BaseFont /HZYKOU#2BTrebuchetMS +/Subtype /Type0 +/DescendantFonts 628 0 R +/ToUnicode 629 0 R +>> +endobj +621 0 obj +<< +/Type /Font +/Encoding /Identity-H +/BaseFont /XKYCEO#2BCourierNewPSMT +/Subtype /Type0 +/DescendantFonts 630 0 R +/ToUnicode 631 0 R +>> +endobj +622 0 obj +<< +/Type /ExtGState +/SA true +/OP false +/op false +/OPM 1 +/ca 1 +/CA 1 +/BM /Normal +/SMask /None +/AIS false +>> +endobj +623 0 obj +<< +/Domain [ 0 1] +/Encode [ 0 1] +/FunctionType 3 +/Functions [ 632 0 R] +/Bounds [] +>> +endobj +624 0 obj +<< +/ColorSpace 619 0 R +/Function 633 0 R +/Domain [ 0 1] +/ShadingType 2 +/Extend [ true true] +/AntiAlias false +/Coords [ 0 0 1 0] +>> +endobj +625 0 obj +<< +/Domain [ 0 1] +/Encode [ 0 1] +/FunctionType 3 +/Functions [ 634 0 R] +/Bounds [] +>> +endobj +626 0 obj +<< +/CreatorVersion 11 +/ContainerVersion 9 +/RoundtripVersion 11 +/AIMetaData 635 0 R +/AIPDFPrivateData1 636 0 R +/AIPDFPrivateData2 637 0 R +/AIPDFPrivateData3 638 0 R +/AIPDFPrivateData4 639 0 R +/AIPDFPrivateData5 640 0 R +/AIPDFPrivateData6 641 0 R +/AIPDFPrivateData7 642 0 R +/AIPDFPrivateData8 643 0 R +/AIPDFPrivateData9 644 0 R +/AIPDFPrivateData10 645 0 R +/AIPDFPrivateData11 646 0 R +/AIPDFPrivateData12 647 0 R +/AIPDFPrivateData13 648 0 R +/AIPDFPrivateData14 649 0 R +/AIPDFPrivateData15 650 0 R +/AIPDFPrivateData16 651 0 R +/AIPDFPrivateData17 652 0 R +/AIPDFPrivateData18 653 0 R +/AIPDFPrivateData19 654 0 R +/AIPDFPrivateData20 655 0 R +/AIPDFPrivateData21 656 0 R +/AIPDFPrivateData22 657 0 R +/AIPDFPrivateData23 658 0 R +/AIPDFPrivateData24 659 0 R +/NumBlock 24 +>> +endobj +627 0 obj +<< +/Length 97 +/Filter /FlateDecode +/Range [ 0 1 0 1 0 1 0 1] +/Domain [ 0 1 0 1] +/FunctionType 4 +>> +stream +H��6T��KI�P0�3 +endobj +628 0 obj +[ 660 0 R] +endobj +629 0 obj +<< +/Length 391 +/Filter /FlateDecode +>> +stream +H�\��j�@����l��\!5
���>��c*�q�·�d��B��9g<���ա2�£w7�5-�L�h�.�%~��`X��nh��g;6���z�+�O,�y����ŭ�a�M'ڰ��u�s�_e��Q}���F2�yQ��z�/�}mF�Qh�V�_�u�{�*>WK<
�`�v�h�MK�1gby쯂�G�L�o=Sh;��w�By���8��@GP(I@ϠC�l(�D� z=�����Y:�R��Y$f���7d��($P�P)P�P)P�n��SaN?` ځhҠ��$NB�O�O�O�O�NP�V�V�V�V�A�A�A�A�A�A�A�A�A�A�A�A�;h| ���%�d~�_{q�G/�=d��������z�_ +endobj +630 0 obj +[ 661 0 R] +endobj +631 0 obj +<< +/Length 234 +/Filter /FlateDecode +>> +stream +H�\�Ok� ��~�9�M�� ��B�C�~ +���J���BJ���x�Y� �ڏ�` +endobj +632 0 obj +<< +/N 1 +/Domain [ 0 1] +/FunctionType 2 +/C0 [ 0 0 0 0] +/C1 [ 0.4039 0.298 0.0314 0.00391] +>> +endobj +633 0 obj +<< +/Domain [ 0 1] +/Encode [ 0 1] +/FunctionType 3 +/Functions [ 662 0 R] +/Bounds [] +>> +endobj +634 0 obj +<< +/N 1 +/Domain [ 0 1] +/FunctionType 2 +/C0 [ 0 0 0 0] +/C1 [ 0.4039 0.298 0.0314 0.00391] +>> +endobj +635 0 obj +<< +/Length 1279 +>> +stream +%!PS-Adobe-3.0
+%%Creator: Adobe Illustrator(R) 11.0
+%%AI8_CreatorVersion: 11.0.0
+%%For: (Wei X Zhuo) ()
+%%Title: (diagram.pdf)
+%%CreationDate: 3/10/2006 12:17 PM
+%%BoundingBox: 4 163 583 667
+%%HiResBoundingBox: 4.8931 163.3535 582.9082 666.25
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%AI5_FileFormat 7.0
+%AI3_ColorUsage: Color
+%AI7_ImageSettings: 0
+%%CMYKProcessColor: 0 0 0 1 (Global Black)
+%%+ 0.46 0 0 0 (Global Blue)
+%%+ 0.8 0 1 0 (Global Green)
+%%+ 0.33 0 0.73 0 (Global Lime)
+%%+ 0.3255 0.4431 0.5373 0.1961 (Global Malt)
+%%+ 1 0.5 0 0 (Global Night)
+%%+ 0 0.5 1 0 (Global Orange)
+%%+ 0.43 0.28 0 0 (Global Periwinkle)
+%%+ 0 0.25 0 0 (Global Pink)
+%%+ 0.5 0.9 0 0 (Global Plum)
+%%+ 0 1 1 0 (Global Red)
+%%+ 0 0 1 0 (Global Yellow)
+%%+ 1 1 1 1 ([Registration])
+%AI3_TemplateBox: 298.5 420.3896 298.5 420.3896
+%AI3_TileBox: 0.3999 -0.0704 595.5999 841.8496
+%AI3_DocumentPreview: None
+%AI5_ArtSize: 600 500
+%AI5_RulerUnits: 2
+%AI9_ColorModel: 2
+%AI5_ArtFlags: 0 0 0 1 0 0 0 0 0
+%AI5_TargetResolution: 800
+%AI5_NumLayers: 1
+%AI9_OpenToView: -356 894.8896 1 1388 953 26 0 0 10 65 1 1 1 1 1 0 1
+%AI5_OpenViewLayers: 7
+%%PageOrigin:-2 -171
+%AI7_GridSettings: 72 16 72 16 1 0 0.8 0.8 0.8 0.9 0.9 0.9
+%AI9_Flatten: 0
+%%EndComments
+endstream +endobj +636 0 obj +<< +/Length 11614 +>> +stream +%%BoundingBox: 4 163 583 667
+%%HiResBoundingBox: 4.8931 163.3535 582.9082 666.25
+%AI7_Thumbnail: 128 112 8
+%%BeginData: 11463 Hex Bytes
+%0000330000660000990000CC0033000033330033660033990033CC0033FF
+%0066000066330066660066990066CC0066FF009900009933009966009999
+%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
+%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
+%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
+%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
+%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
+%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
+%6666006666336666666666996666CC6666FF669900669933669966669999
+%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
+%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
+%9933009933339933669933999933CC9933FF996600996633996666996699
+%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
+%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
+%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
+%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
+%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
+%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
+%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
+%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
+%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
+%000011111111220000002200000022222222440000004400000044444444
+%550000005500000055555555770000007700000077777777880000008800
+%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
+%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
+%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
+%524C45FD2DFFA8FFA8FD07FFA8FFFFFFA8FFFFFFA8FD07FFA8FFFFFFA8FF
+%FFFFA8FD07FFA8FFA8FD52FFA8FDFCFFFFFFFFA8FD2DFFA8FD25FFA8A8FD
+%0EFFA8A8FFA8FFFFFFA8FD54FFA8A8FD05FFA8FFA8A8A8FFA8FFFFFFA8FF
+%FF2752527D527DFD0452277D527DA87D7D27FD04527D52527DFD40FFA8FD
+%11FF2752527D7D7D5252FF7D7D277D52527D7D52527D7D7D27527DF85252
+%522752522752FF7D7DFD04522752527D52FD51FFA87D272727FD0452FF7D
+%7D277D5227277D525252A8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFFA8FFA87D
+%A8FFA8A8A8FD13FFA8FD0FFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FD
+%1FFFA8FFA8FFFD05A8FFA8FFA87DA8FFA8FFA8FD3CFFA6CEC8CEA6CEC8CE
+%A6CEC8CEA6CEC8CEA6CEC8CFFD6BFFA6C7A5CDA5CDA5CDA5CDA5CDA5CDA5
+%CDA5CDA5CDA6FD5EFFA8FD0BFFA6CDCDCDA6CDCDCDA6CDCDCDA6CDCDCDA6
+%CDC8CDA5CEFD0AFFA8FD5EFFA7CDA6CDCDCDA6CDCDCDA6CDCDCDA6CDCDCD
+%A6CDA5C8A6FD0BFFA8FD52FFA8FD0AFFCFFD14CDA5CEFD0AFFA8FD5EFFA7
+%CDACCDCDCDACCDCDCDACCDCDCDACCDCDCDACCDA5CDA6FD3AFFA8CFA8CFA8
+%CFA8CFAEFD26FFCFFD0ECDCCFD05CDC7CEFD22FFA8CFA8CFA8CFA8CFFD0F
+%FF7CFD0482A682A6827CA7FD19FFA8FD0BFFA7CDCDCD517C517C277C7C7C
+%A6A67C7C51A6CCCDA5CDA6FD20FFCF7CA6828282A682A67B82A8FD0CFFA7
+%82A7CFADCFADCFADAE8282A7FD24FFCFCDCDCDFD08277C512727527CCDCD
+%CDC8CEFD20FF8282ADCFADCFADCFADAD8282AEFD0BFFA87BADAECFA8CFAE
+%CFA7A7827CA8FD17FFA8FD0BFFA7CDCDCDA6A67CCDA6CD7CA6A6CDA6CDA6
+%CDCDCDA5CDA6FD20FFA77CADAECFA8CFAECFA7A77B82FD0BFFA78282CEAD
+%ADA7CFADADA7AD82FD24FFCFCCFD13CDA5CEFD20FF8382A7CEADADA7CFAD
+%ADA7ADA7FD0BFFA87BA7A7CFA7AEA7CFA8AEA782A8FD23FFA7CDA6CDCDCD
+%A6CDCDCDA6CDCDCDA6CDCDCDA6CDA5C7A6FD0BFFA8FD14FFA77CADA7CFA7
+%CFA7CFA7AE82A7FD0BFFA782A6CFAECFADCFADCFADCF82FD24FFCFCCFD13
+%CDA6FD21FF8382A7CFAECFAECFAECFADADA7FD0BFFAE7CA7A7ADA7ADA7AD
+%A7ADA7A7A8FD23FFCACDA5CDA6CDA5CDA6CDA5CDA6CDA5CDA6CDA5CDA6FD
+%0DFFA8FD14FFA782ADA7ADA7ADA7AEA7AD82A7FD0BFFA782A7CFAECFAECF
+%AECFCFCF82FD27FFCFFFFFFFCFFFFFFFCFFFFFFFCFFFFFFFCFFD23FF8382
+%ADCFAECFCFCFAEFFCFAD83FD0BFFA857ADA7ADA7ADA7ADA7ADA782A8FF7D
+%FD15FFA8FD15FFA8FD29FF7DA8FFA77BADA7ADA7ADA7ADA7AD82A7CBFD0A
+%FFA782A7CFAECFAECFAECFAECF82FFFFFF7DFD2AFFA8A8FD27FFA8A8FFFF
+%83A6ADCFAECFAECFAECFCFAD83FD0BFFA87BADA7AEA7CFA7AEA7CFA782A8
+%FFFFFF7DFD29FFA8FD27FFA87DFFFFFFA77CADA7AEA7CFA7AEA7CFA7A7FD
+%0BFFA78282CFADADA7AEADADA7CE82FD05FF7DFD13FFA8FD13FFA8527DFD
+%15FFA8FD0FFFA8A8FD04FF8382A7CFADADA7CFADADA7ADA7FD0BFFA87BA7
+%A8CFA8CFA8CFA8CFA782A8FD05FF7DA8FD26FF27A8FD16FFA8FD0DFFA87D
+%FD05FFA77CADA8CFA8CFA8CFA8CFA7A7FD0BFFA78282ADA7AD82ADA7ADA7
+%AD82FD07FF7DFD11FFA8FD14FFA8FD16FFA8FD0DFFA8A8FD06FFA78282AD
+%A7AD83ADA7ADA7AD83FD0BFFA882827C827C827C827C8257AEFD08FF7DA8
+%FD1CFFCFFD1FFFA8FD0BFFA87DA8FD06FFA77C827C827C827C827C827CFD
+%0CFFCFCFAECFA8CFA8CFA8CFA8CFFD0AFFA8A8FD1AFFCECEC9CFCECEC9CF
+%CECEC9CFCECEC9CFCECEC9CFFD19FF7DFD08FFA8CFAECFA8CFA8CFA8CFA8
+%FD24FF7DA8FD0CFFA8FD0BFFA7CEADCEA6CEADCEA6CEADCEA6CEADCEA6CE
+%ADCEA7FD17FFA87DA8FD24FFFD057DA87DA8FD0CFFA8A8FD17FFCFFD13CE
+%CFFD17FFA8FD0EFF52A87D7D7DA87DFD11FF5227525227275252FD0DFF7D
+%A8FD0AFFA8FD0BFFA7CECECEA7CECECEA7CECECEA7CECECEA6CECECEA7FD
+%16FF7DA8FD0DFFA8272752FD04277DFD12FFA8FFA8A8A8FD0FFFA8A8FD15
+%FFCFCDA7A7CEA6A7A7CEA7CECECEA7CEA77DA6CECECEFD15FFA8A8FD13FF
+%A8A8A8FD28FF7DA8FD14FFC9CE52512752F8272651527C51512751272727
+%CEA7FD0DFFA8FD06FFA87DFD40FFA87DFD13FFCFCEA77C52527D7C52527D
+%7CA77CA77CA75227A7CEFD13FFA8A8FD42FFA87DA8FD11FFCACEA7CEADCE
+%A6CECECEA7CECECEA7CECECEA6CEC9FD0DFFA8FD04FFA8A8FD44FFA87DA8
+%FD10FFCFFD13CECFFD11FFA87DFD46FFA87DA8FFFFFFA8FD0BFFA7CEADCE
+%A7CEADCEA7CEADCEA7CEADCEA7CEADCEA7FD10FFA87DFD49FF7DA8FD0EFF
+%CFFD13CECFFD10FF7DFD4AFFA8A8A8FD0DFFA8CEA7CEA6CEA7CEA6CEC9CE
+%A6CEA7CEA6CEA7CEA7FD0EFFA87DFD4DFFA8A8FFA8FD2BFFA8FF7DFD4FFF
+%A87DFD15FF7DFD16FFA87DFD51FFA8A8FD14FFA8FD16FF7DFD53FF7D7DFD
+%13FFA8FD15FF7DA8FD54FFA8A8FD11FFA8277DFD13FF7DFD54FFA8FFFFA8
+%7DFD11FF27A8FD12FF7DA8FD31FFA7AEA7AEA7AEA7AEA8FD1EFFA8A8FD10
+%FFA8FD12FF7DFD1BFFA7AEA7AEA7AEA7AEAEFD0EFF7CA782A782AD82A782
+%7CA7FD19FFA8FD04FFA87DFD08FFAFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8
+%AFA8AFA9FD05FF7DA8FD19FFAE7CAD82A782AD82A77C7CA8FD0CFFA782A6
+%CFADADA7CFADAD8282A7FD1FFF7DFD06FFAF84A984AF84A984AF84A984AF
+%84A984AF84A984AFFD04FF7DA8FD1AFF8382A7CFADAEA7CFADAD8282A8FD
+%0BFFA87CA7A7CFA8CFA7CFA7A7827CA8FD1EFFA8F8A8FFFFFFA984A984A8
+%84A984A884A984A884A984A884A984A984FFFFFF277DFD06FFA8FD14FFA7
+%7CADA8CFA8CFA7CFA7A77B82FD0BFFA782A6CFADAEA7CFADADADCF82FD20
+%FF7D52FFFFAFA8AFA9AFA8AFA9AFA8AFA9AFA8AFA9AFA8AFAFAF84AFFFFF
+%7D52A8FD1BFF8382A7CFADADA7CFADCFADADA7FD0BFFAE7CA7A7CFA7AEA7
+%CFAEAEA7A7AEFD21FFA8FFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8
+%AF84A984FFFFA8FD08FFA8FD14FFA782ADA7CFA7CFA7CFAEAE82A7FD0BFF
+%A782A7CFADCFADCFA7CFADCF82FD25FFA9AFA8AFAF847D7D84A97DAFA9AF
+%A8AFAFAFA8AF84AFFD20FF8382A7CFADCFAECFA7CFADAD83FD0BFFA857AD
+%A7ADA7ADA7ADA7ADA782A8FF7DA87DA8A8A87DA8A8A87DA8A8A87DA8A8A8
+%7DA8A8A87DA8A8A87DA8A8A82752A8FFA8AFA8AFA8AF5227275952F8F827
+%2784A8AFA8AF84A984FFA87D277DFD04A87DA87DA87DA8A8A87DA8A8A87D
+%A8A8A87DFD04A8FFFFA77BADA7ADA7ADA7ADA7AE82A7CBFD0AFFA782A7CF
+%AECFCFCFAECFCFCF82FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF
+%FFFFA8FFA8FFA8FFFFFFA87D7DFFFFFFA9AFA8AFAF847D59527D7D7D5259
+%A8FD05AF84AFFFFFA87DA8FFFFFFA8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFF
+%A8FFFFFFA8FFFFFF83A6ADCFAECFCFCFAEFFCFAD83FD0BFFA87BADA7ADA7
+%ADA7ADA7ADA782A8FD23FFA8AFA8AF7D7D84AF7DAFA8AFA8AFA8A984AFA8
+%AF84A984FD20FFA77CADA7ADA7ADA7ADA7ADA6A7FD0BFFA78282CFAECFAE
+%CFAECFAECF82FD19FFA8FD07FF7DFFFFAFA8AFAF7D275227522752275227
+%522752A8AFAFAF84AFFFFF7DFD07FFA8FD15FF8382A7CFAECFAECFAECFAE
+%ADA7FD0BFFA87BA7A7CFA7AEA7CFA7AEA782A8FD1FFF2752FFFFA8AFA8AF
+%7D7DFD0459527D7D59597D52AFA8AF84A984FFFFA8F8A8FD06FFA8FD14FF
+%A77CADA7CFA7AEA7CFA7AE82A7FD0BFFA782A6CFAECFAECFAECFADCF82FD
+%1FFFA852A8FFFFFFA8FFAFAFA9AFAFAFA9AFAFAFA9AFAFAFA9FFAFAF84AF
+%FFFFFF7D7DFD1BFF8382A7CFADCFAECFAECFADADA7FD0BFFAE7CADA7CFAE
+%CFA7CFA7CFA7A7A8FD1DFFA8A8FD04FFA8AFA8AFA8AFA8AFA8AFA8AFA8AF
+%A8AFA8AFA8AF84A8A8FD04FFA87DFD05FFA8FD14FFA782ADA7CFADCFA7CF
+%ADCFA7A7FD0BFFA78282A682A782A682A782A67CFD1DFFA8A8FD06FFA8AF
+%A8AFA9AFA8AFA9AFA8AFA9AFA8AFA9AFA8AFFD07FFA8A8FD19FF838282A6
+%82A782A682A7828282FD0BFFA77C827C827C827C827C8257CFFD18FFA8FF
+%FFFFA8A8FD06FFA9FFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8AFA8FD08
+%FFA8A8FD18FF837C827C827C827C827C827CFD10FFCFFD23FFA8A8FD25FF
+%A8A8FD1BFFCFFD16FFA8FFA8FD1FFFA8FFA87DFD0DFF7DA8FD0AFFA8A8FD
+%0CFF7DA8FD15FFA8FD05FFA8FD11FF7D27525252A87D52FD047DA8527DA8
+%FD17FF7DA8FD0EFFF8A8FD0AFFA8FD0EFF7DA8FD14FF52527D277DA85227
+%FD067DA8FD09FF7D7D525252FF525227522727525227A8FD16FFA87DFD0E
+%FFA8527DFD0AFFA8A8FD0DFFA87DA8FD13FF527D52277DA852272752F852
+%525227FD10FFA8FF7DFFFFFFA8FD17FFA8A8FD10FFA8FD0BFFA8FD0FFFA8
+%A8FD1BFFA87DFFA8FFA8FD2EFFA8A8FD11FFA8A8FD0AFFA8A8FD0FFF7DA8
+%FD4DFFA8A8FD12FFA8FD0BFFA8FD11FF7DA8FD4BFFA87DFFFFA8FD10FFA8
+%A8FD0AFFA8A8FD11FF7DA8FD49FFA87DFD0EFFA8FFFFFFA8FF7DFD09FFA8
+%FFA8FD0DFFA8FFA8FFFFFF7DFD48FFA87DFD08FFA8FFFFFFA8FD08FFA8A8
+%FFA8FFFFFFA8FD04FFA8A8FFA8FFFFFFA8FFFFFFA8FD09FF7DFD46FFA8A8
+%FD16FFA8FD0BFFA8FD15FF7DFD44FFA87DA8FD16FFA8A8FD0AFFA8A8FD14
+%FFA87DFD43FFA8FD18FFA8FD0BFFA8FD16FFA87DFD40FFA87DFD19FFA8A8
+%FD0AFFA8A8FD16FFA87DFD3EFFA87DFD1AFFA8FD04FFA8FFFFA8A8FFFFA8
+%FD18FFA8A8FD3CFFA87DA8FD1AFFA8FFA8277D527D5252277DFFA8A8FD18
+%FF7DA8FD3BFFA8FD1CFFA8FF7D5227FD04527D52FFA8FD1AFFA8FD39FFA8
+%7DA8FD1CFFA8A8FFFFFD06A8FFFFA8A8FD19FFA87DA8FD36FFA8A8FD1EFF
+%A8FD0BFFA8FD1BFFA8A8FD21FFA8A783A783A783A783A7FD0AFFA87DA8FD
+%1EFFA8A8FD0AFFA8A8FD1BFFA8A8FD08FFA8A783A783A783A783A8FD0DFF
+%CF8382ADA6AD82ADA6AD57A7FD09FF7DFD20FFA8FD0BFFA8FD1DFFA8A8FD
+%06FFA88282ADA6AD82ADA68257CFFD0CFFA857A7A7AEA7ADA7CFA7827BA7
+%FD06FFA87DA8FD20FFA8A8FD0AFFA8A8FD1DFF7DA8FD05FFA77CADA7ADA7
+%ADA7CF828257AEFD0BFFA782A7CFAECFAECFAECFA7A757FD06FF7DA8FD21
+%FFA8FD0BFF7DA8FD1EFF7DA8FD04FF8382ADCFAECFCFCFAECFA7827CFD0B
+%FFA857ADA7ADA7ADA7ADA7AEA782A8FFFFFFA87DA8FD22FFA8A8FD09FFA8
+%277DFD1FFF7DA8FFFFFFA77BADA7ADA7ADA7ADA7ADA7A7CAFD0AFFA782A7
+%CFAECFAECFAECFAECF82FD04FFA8FD24FFA8FD0BFF52FD21FF7DFFFFFF83
+%A6ADCFAECFAECFAECFAEAD83FD0BFFA87BADA7AEA7CFA7AEA7CFA782A8FF
+%FF7DA8FD25FFA8FD2DFF7DFFFFA77CADA7AEA7CFA7AEA7CFA7A7FD0BFFA7
+%8282CFADADA7ADADAEA7CF82FFFFA8A8FD25FFA9FFA8A9A8CBA8A9A8FD27
+%FF7DFF8382A7CFADADA7CFADAEA7ADA7FD0BFFA87BA7A7CFA8CFA7CFA8CF
+%A782A8FFA8FD25FFA8A8A8FFA8A9A8A9A8A87EA8A8FD25FFCBA77CADA7CF
+%A8CFA7CFAECF82A7FD0BFFA782A6CFADCFADCFADCFADCF82FD27FFA8A9FD
+%06FFA9FFA9FF7EA8FD26FF8382A7CFAECFADCFAECFADADA7FD0BFFAE7CA7
+%A7CFAECFA7CFA7CFA7A6AEFD26FFA9A8A8A8A9A8A87EA87EA87D7E7EFD26
+%FFA782ADA8CFA8CFA7CFAECFA7A7FD0BFFA782A7ADA7ADADADA7CFADAD82
+%FD27FFA8FFFFFFA8A9A8A87EA87EA87EA9FD26FF8382A7ADA7ADADADA7CF
+%ADAD83FD0BFFA857ADA7AEA7CFA7CFA7AEA782A8FD26FFA8A8FFA8A9A8A9
+%A8A8FD057EFFA8FD24FFA77BADA7AEA7CFA7CFA7AEA6A7CBFD0AFFA782A7
+%CFAECFAECFAECFAECF82FD27FFA8FFFFFFA8FFA8A8A8A9A8A9A8A9A8A9A8
+%FD23FF83A6ADCFAECFAECFAECFAEAD83FD0BFFA77CFD0482A6828282A682
+%82A8FD26FFA9A8FFA8CBA8A8A8FFA8FFA9FFA8A9A8A877FD22FFA77BFD04
+%82A6828282A67CA7FD0BFFA78282A7828282A7FD0482AEFD27FFA8FFFFFF
+%A9A9A8FFA8A9A8A9A8A87EA87E7EFD22FF838282A7828282A782827CA7FD
+%0DFFA8FFA8FFA8FFA8FFA8FFA8FD28FFA9A8FFA8FFA8A8A9FFA8A9A8A87E
+%A87E7E7DFD23FFA8FFA8FFA8FFA8FFA8FFA8FD0DFF7DA8A8A8FFA8A8A8FD
+%2BFFA8FFFFFFA9A9A8FFFFFFA8FFA8A97EA97E7EFD22FFA87DA8A8FFFFA8
+%FFA8FFFFFFA8FD0CFF2752F8FD042752522727527DFD26FFCBA8FFA8FFA8
+%A8A9FFA8A9A8A97EA87E7E7DFD22FFA8F852FD05275252272752A8FD0AFF
+%A8A8A87D7DA87D7D7DA87D7D7DA8FD26FFA8FFFFFFA8FFA8FFA9FFA9A9A8
+%A9A2A87E7EFD22FFFD04A87DA87D7D7DA87D7D52FD40FF7ECBA8A9A8A8FF
+%FFA8A9A8A87EA87E7E7DFD38FFA8527D7DFFFF527D7D527DA8A8FF7D7D7D
+%A8FD26FFA8A9A8A9A8FFFFFFA9CBA8A9A8A87E7EFD20FF7D7D52A8FFA852
+%7D527D7D7DFFFF7D7D7DFD07FFA8272727A8A82727522752F852A852F852
+%52A8FD29FFCBA8A9A8A9A8A87EA87E7E7DFD20FF7D272752FF5227275252
+%52F87DA827275252A8FD08FFA87DFFA8FFA8FFFF7D52FFFFFFA8FFA8FD2B
+%FFA8A9A8A9A8A9A8A9A9FD21FFA8FFFFA8A8FFA8FFFFFFA8527DFFFFFFA8
+%FDC0FFA87DFFA8FFA8A8FD79FF5227275227272752272727FD75FFA8FD04
+%7D52FD057DFDB6FFFF
+%%EndData
+endstream +endobj +637 0 obj +<< +/Length 15468 +/Filter [/FlateDecode] +>> +stream +H��W�o�� ���a�E,"EE]�M;������A(c+�^3����HJ��c���h���;�{|��/�7ga����!���ݻ��Y��sǐ���욶֤����3���q�K�,�Pչ�Y�\��"�_ί�N�:'���,�R'/�u�mg���t� 6��6u1r B���������TW�E�����`N&�ù��?es(2�ZnFe Lf4��0���U��U{]��l�X��nΝ�1���l
���$�R}u�2[�6ՙ��ղ��Y_ɯ�7�K-�WgY��n�����T�J�\�o�/�ݼ(%�r���o"^�;�������wC��.�@��m +��:Ħ,Fgct�k��V������P+��X��qΰ��*z_���|
��o������/�o[Y���Vy��:֍�_p��b��=w�`x��}>>���{�Z��&J�܅n�EB;n�� +����}�H�Σ�,5��4Ȼb���ͳ�Z����UQC"<��w'�v��&�r�f�ժr�]Qۥ|h�E�`�Yۚ +����C�č�6�l������ZV�Gx��}�~��}s���J�{�u� �EUT���_���R��y�md�֦*A1w��Jo� +���`�f�W�t�B�n��8>e����s�����+8cm%�,3�7j���Y��J�#!4��.�AG�d����
M>���z'����#�Pp�ԍ�-��QwS�V҉z:�]X���b"s1ʤ�ƽ2���*,��b���{Z�zۮl�]��.�R��� +����K� 6�U����`?ݨ�h٭ ��@>>Z����-h��O�L�I���פs�����V��}"�>Q��}�뱱=m�
��N.w�;63��ޅ`�gw*��
Xgw��ο5%}�3<qS��k��.�u|tb��Y����n��f��ŗ�8ˊ��7 U\-*k��T���=kt�����(��`���8������������0�t`^�x��=�������A�+Z�G��;�f��l��&k��D�-�O�\�'17Դ�"K��{�H�����ջ7�q{�ʢ��c2����b +�0�d;�>��^��R�V����q�jZm�k�u�^�n�*���Y�$����P�`&7נ�!�0"�"1��b+P�B�%(Es�0�S�a�9��p�#��xN��J<�'p�#�$$�IBR2��bJ(�wDo$�4��iBS:���=�Q���=߃��z�{��zs7=��L�1ƙ�ܼC��%,es�8�S�q�������l�߀p�8�pH���<�wD<`6�aY�����R��"`b +�`l�!
���<�CaFa&a�#�Df +�0��8J�4����I��,��8��z�q��i<�9�!�(�Kx�'" �0��8I�4�C"㔤4�R���OE�a�q��i:�#=������
�鄥�|���}�LKeZ,�r1vu�آI&��6�����.�&�3הLX(����N�Q��ˮEr� +����f���U�ʄ�J�2�$��/�
31K`k���S��5����U����H]#�y�P�P6�*eB-�t�9�� +�L��W��<�>T�
�s�B�CY_�w�2�WQ*"�����R��j�Ŋ�_��sU[YKSU[MA�]�>V|� �(Z/�(\��p�t�x�|����������Y�����%�Ed��Ȝ�)H@1�H]^s3��u7���O��Az�J']�V��0V`��->��l�
������{v�6��C[�l�4��'���|��ۮ�A�L��|,L��܌Hi`�:��i6f�2m�A)���$�Nd�_wi�����C6�<�eR�v���o����$pfۻ<���� ��-�s���C +��1xk��eڍ0� +6�E����s�;C:�l�4=,������.��V����� +C��(+��fYϭ��4��[٭�j�߀��՜���% �(����I��F��z��A�ٙ���I,z����vvmŲ1m��F�ۙ73nD��so*����_L�����vg���]���|�ͮ����۠��y��2�sW������[Oo>���E��lSDؾ��d���{=_�bf6��4�^�2�^�q��ڋY����t�*�w8~�]v���0nT�ʛ�=.�\�y���e��7�ǎGZ���]����|�}�U��B��1�E
�*(u�PM�����6�vn���o"��:&N�'�T���Erа � +��a$,��c��5��$��R��bū��{�X��վV�����u�#���O��2���-�зE�����[BJ�.vu�R�Ɏ���5��s��z��V������uc����o��<}��K=�߬Uf�k%�l��VX�h�y����l%m��V���� �v���v�v���v�j%6m�7P'+���KM�=k��)�Ê/��)TUbQ|����{ڟG��$Iq���2�&ɭ�<�$e͒��՛u!o�_����l��ֳ�a":�w�6����X�6a'�WW�<��1�%�T��/r�FO���N�i�ڮ/�'�o�c���mI>GU�xt����\���1��ק�Ͽ���t��ɍb���:��UC�Vk���j�!X��Q��}Ԩ�F9��a��Z���\U}F�_����2���(��RF�*���R��2����kh @a�:�`�(���B��;)`����{\���aٵ5u��Pݓ2ֻ~�Kvc��d�wu������ٍ� +zu�+�]��@W�9 p������QJ����R���Z}���:Km����
�������j�����R2��)4p�[�^����~���<�Mǿt +NJt�ω�&Q��׆���"��D6�7̸�ٖօi�"�t�{���=�f�M?�+Hup�p$p,�4p<"2zA������Md��+��R3�"Q<O�JI���$�$�+�����Ŋ������I�VN�<���vG��~��T�>vtP9r���J:�T�;�ܑ� +����
���u¤֩�M���,Sae>�0jNi��Ijb�,�pr��|@k�a�p̑���2��0M�f�f�C��1o�����m!�X!���"�!)M��1d�Ax��t���'1Ieg!�J���|����9��Q��B�ꅟ|�K���t��%a��i��KH���u +�U gam/�3�9X��}"�B�5��E(�C�v ۧm�j�A����e�&j<8e������/�cf�̮|SH�3�g����CqQ����GqRh�4�i��ਅ�fW�����
�^4�5�kv���e��F�M^��V���W��Ơ�>j+�j
j���7�/��8zpv��â���40��Ǟ�~ߖ�����������nJ`�� +�)�]�_0�v=�y���_���E��L�7u�'c�w������Nf�\�>p>��IsTr>R�s��Xp^e��o*�_&|�;�8V��to_�}��~��t'��"{亽��Tg��4���%ӗ���"�����$����jN�r?�x��S�����<Kwj:=���;���\2�Z�o��|ý~�^�=w���д��M]���{ݚ��)�G���n�����������Ϗ_��
?1O?}y�?����?>y��Ͽ}��˝Gv����& '6��C�r8�Zp����. o Ɂ�������yѐx��Y��؏�S缾_ U��w�11���)eb`0�S���`Z����=��N)�8��N)��>��N)�d]��yXɖ�����G,����X"i#b�<��-�H.�|�?E��fm +i��J�i��ɠ�PO
�PQ%��b�<� +i��W
�q��Y��4l�eН��J识[调{��@�ti�����Y-��A�=i Z�*�k�� +���J��Z0Pue[����k����;��'�
�&��-�_�j�s�-t�t��0����ai%m���������#�v��v,���
�h���ԑ�=��а�#����JZYMKkim �#m-/��YZ`I+�i�-��#�{�A�e4OK-i�5M�9�^;R�G$�nF����R+��ڑ:�5wS�6��!'���s8cUT��&�8�����Z�S-vM�{���%=o���XE�k7����f��"^q/|��Q����xD��ڨ�_/b8�g�W�{��<�b������^�/ϸ���z}y�}ż���3�+�#TM��y�2�cho~�j�?��P_��QU����e��2�׆.{T���l�GU�kC�]We��Zw�k�ຢ�����f��+8o���[w�+l�[r�� +"��S��M�X���Z�nq�+,�G@����/"���6��9��>�xe�U���3�!n(�o6�F�;��=`@Cq�����O{C�>@���&j�-FÛ��#��k�Ǝ�b��;B���&j�9-ƙ���֕�[m�rV����IRV'VU��*?%'s��I����w_��k�7����1u�T�P��|������\�f�0��E��#���\�ɮ�!�,��0ɭ��Ww3Ig�7�G2F��H�ŐY��Q���|��d�\>��������?����o���������?_=����o�/� fO��f� ������e���z�Aą�̗�����/�j@��:��T��\=��0B�ZR�2\mHu��� +q5⪄:���9�W/R1�f\�Hݸʡv|���� +r5�UDEH%�Z�U�*��a_Ug���J�JX�J{S�W�d�ؙ�� �"� 1_�FPDPFA7��(��5��"�Q&� E+�=�-�V�k&��/O6Omg�}"���y"�����Fw3��3�6fi1�O�ژ��֞0�1K�ѽ��jn�z�֜��4�[���ɉ~��X�2�R>� +���X�z���Y{�<��c�g�:e�]W.a''s[�n9��W�*2��<�3]�u�-��֊_#���5�³p�\s�Uגm�|;0��d2:T,�F;%O~��~Y=hg�[V%�)y�s��GRW'��gn`i� +kd���S�F����q����ma�tV{�$NK�����~�|������o��;��/�>ýN�����ǯ���������^_�w$2Q����,+[W��!e;e�.ǖ�]�&�ʅ�gJ���Q +��DM����/���[�^1�����*ev ���l�U�f�f
%k��)cu��YmǪ[V_�%�aٕ��1e����cgv�a+v�`G�"SCg�=~a����=���puZ�3�=�b�F�Z�� �+�F4���D=��(�3�VQ�,*��j��T�d��W/2�h! +>jpM�(��$,�Z�Q�HKͨȅ�(�Nն����IuYT�LH�Kd��Pc��>fp�ѐ�!�̚dNȍ����
�@���د�q-����M�vc��(Q݉�(�.��E A�E�h����=���ر��3������DK��|%�3������;�o������u�W��:b�+r�gbG�]��;g@�=�~ +) +6�MW�5a�(�(j�!& +�ը�RI�0�hUV��W9�倖5��UtK�+k���� +�F+:�J&Z�j�z����62sʹ��5�|E�T�҉��©Ɖ�E&Q:h�N�N�Ѿ����A�0P���������YK5�Ojj�g��P����F!90���IT2ɖ�Y��i��Ά��2�i�멤�j:PQ���u +i�4ΨԀ�FUç�Q��U5��)_�3j�+�S�Y�Ā��T�T��k��O�jK�Eu��w*eO��M�ず�ց+8������G�;�����wĿ#���G�߃x����?no��WZv��ڹ������ۛ��C�şr{.�/����/�� ����i���������W:��_6�ܧՇo�������s:����ۛ���V�Q�a
b���~�X&/�k�zM^��kI\]!�BY�7��V��LVJU$�BRJQJPJO$�ۛDNS!&WH)$:��9�P��O�ģ���Ӑn@6Y(�\�dM!��g���=�U�v���Z�ò�d�-Px�:ѭ�;)�ʛ�]W�7�-�D�#�>'26|o)<;��%j�>x}L]2�4�'�����'%mvu{��)}K�\"�L�M�r�ҹt�O�.�UbWj���b�x�J:^���ǿ���Na�+����;�'}�ڞ!1P�Dmfr�����2�p��F��U��q�"�-�'<B&.6>FNVi�-Rc$�H�E�e���d�<q�J��<�|� +X7�� +t�o��yE��P�8pU����C�v�A����W�S7��
@@��6;�R��_,A����h�R�(��U�Q����S%�T�`��5�Q���o���+��Ψp��b�̜��u�!+�|�,ǪX��3�̢wSX�U����7�K���!�Rd��I�?��cU�,KS�̚��+�ѣ���K���S�
�"?*��+��|�Y0�Y�Y5�Rg��K�\�}W}*�)ec�{#��J��XzX�Ѳ3�.8`H�n��A���զ���Vh��l� �4����V�Zfi�з���mh��]%�nC+��Ub�V��[������Z��Jv�-[�W�������ߵ�ޏK�0|��o}26�B������O���6�`z�'1�@5�{ק��dS�#���������T�ʳTU�TRl*#%o��X�8M?��Y�z���&�g���,�h����Xۙ5�4*�]��4L�K�O衱ç��c�TzUU�RJ��@3I�A� ��ӧ�&�+`yD���#�dT�UzU�$v�&��X��Y�ҍ�6��8��G�rĈth~����mGG+nt�O�tp���c:��&Θ��#~���?_c�*L��gLވ������=f�aZmo��;b�#��5�Lf�rBd2NB��o�ߎ{l��#���εܭ��c�� +pLV���x`d +p�`z\πm +�8�F<�ĂV4�E�f(�+hg��@CtdAK�$ASt�����N�1"3Z3�7�\�\ +�����e����q�\,.��ӻc�L�"�R%jJ�@w?p�d�>�� ��5����#:Oc�?�����@�i)pؘ�������O_�}���j��|��o�������۷�_� N_߿�^�H P�����d���a$��{<�H|�{����������,�//i��k.C���q��}���M����j�/��~�'�k,���1�RKTN����r��L�����H��?��f?TMǝ��3�i=U|*C|߆Y�㹤�%4i��n���4Fz�I���&�C�N+�D����������"�M��7K�Zx ��F�k;Y-�'I_�������t8�����-=�0<��ˍ�����g]�T&=�1���X�/�I�fg<�1��)�ߥ��q�C���;���������){Ũ�댬]��˓����il�w)F<���q 1
j�h�U +`�4��0ϓT���4VX��(��Eh� �}
�)��(�9�(�D(�C��)y�&o�$(�xq��1�;�#X�ӺZ"��c���Fo�P9.OzG�$�@��ē�E-z_�E�]�[ �<y�)�0���{�<^��ś�Mѱ����_/�(���&�(n��-x_P��<�z���r����凬^wQ��.��q�{D����ڽ[:ߵ��CIF��|m����]�p�PG ��/\��h��=��䝑�L +�L�܁�q���Vw���݁�L��}���o~��V��}��r���q��z<��� ��ē4�!���w�!����i��0�?�^����uȓ�}����%�y�����8�@��/1�4V&���К������a�n����vpVq
}��:LJ��өN��*-�{l ��Mv��J��$��$qgK��(¼��-��.����}���qRS8I#��C��B���dKN=y
��"�}IrL�R�yƎ<�Z"o\�9|��"���>QL{���wly�穎�����������w��Q�ܫ���Xx���f~��^,���Pqү��}�~��NHP0�#�M�!Y������=�w)1ʛ��,Әґ���H�(~bʬn��E��Z
$�&iK�$�(�Q��}&���6��x�'�(�cS<@�EiƤ�E��Wia��%?4]ƆVI�\�X_��Z ���^I(\�.��P�4S#i&i�D]�̢R�Q���c��4�'n����K�\/�q�28n�C�$�E{G��V����ø$�几�2�b�]Nf!��ʩ��&�ٔ��w����K��q^mَ� p+YA����E�����13�ܯ���EY�ʞ9��L�[n��Z�sZN�iY�ӟɲ���,ۚ-v�[�>bKn3�����r��y��ڥ{|(2tE�g^� +L���(4�:���U�:�릞���'�î�عpS��0ۓ�+F�M�T-��Mhy<��'���^��j�[�����3Q���c;*
L{dc{��}%�ԟ#9�&pE����,��MIe�.aJ�0.��o&2��ZK��� ��Y��>fJ��{�벓H$�S]�-�b��V�]��M�UI�w�_h8��*���J�*�j�ZӹD�`��8�3�>��z�s��M�^�����B��+����b�b�jC��F1�U�?��`t�@NW�~wf�b�BOn���'i8YuL��E��JU�<Э�A�Q����rUG���٦HR��g_$��"z��$�,{͜\."� +endobj +638 0 obj +<< +/Length 16815 +/Filter [/FlateDecode] +>> +stream +H��W;�$9��;��nA����`�5hgP��o�$*%����y�ŗ�� �W���ᕼ���_�q�r�4�������+�^"��[傽u��/c��͔R/g�7뮜_!�r9{�)z����1�ڿ�c���gq�S�ܫ���$g���d�]�?���܌�ڦ_�a^9]�#~ *�{O?�{��X#� ���鞇3��SD�9W�47���y��6Z�-�@K*5^\e�.9���29��젱X�_������Ў�?��Ǻmr<p���!�\�%+�+��;� Wq/S�<ּ��]��[���GS�4zn&h<e�X1�D +�ybGB�V��ak�ӈk�� +#p� ��0H�Aܨ�>6�ց�CO]<��j�{�G�]��|k�����6���z�D1�NW�t���6��;X��
���ں�]M�"⭦�
tc�j +ى��ET��h4"<�X�cBI�Eq����8)%�0�ιν�g2T�y�rwƬ197�j�/[���e*�F�U��I�e�lC�4���zL���Hxc�'
����c'���< v�a�l:l��BT�&}�SE�GF֬����w�Ӯ�Y�� +�������?�����XH�rH¸��n,-���/�xIX��)����-O���fV��o��_��H@��ҕ���~��6�J.��9z��}9��kz$�'�,�1�z%�]����Ch�kD�M��^�o+�-b�<am����S�3/
�0͝��G��̟e@����/o�ه�C��~�MSmuv���w�@F<Y���9�����N�T��f�T�&�wJ�� +v{͘���ֵ�mX����-��C7M�=!��x����ŀqR^�]S�F��:�����O\�P��<�X�1C���F+��@���CR�o����^sg���˵/i���������^ +���.2�6��6��`�uq3?m)Ibj/�zI�٬�y�3���tc��ņ+�)![z�2տ
����v +6Ti��쳿�+�bD��D��q�+Am^����8;�V���� ��{���[��GO���1o0�h���4�1#?���^:a/����Z����{�!����� +�;&|�#��bSM��!�֘{�eR)���dUk�$+O��>�t!�W��*��-WvG��،4�:�Vrh�cv��~�Ԩ)�Qi;$�A*Jn�J]���VůZ��>4[�:j�<���|�m*�B3��{��Ί��18�L��jL|�,@&���z���� �:slۡ}?�A(��1�1y�#��' +"nYoYM���r�ur��T���[�ZP墫�Tr+�EF�ws�m��W��:�oL�4�D��f�/Tu��'ڿ�C#��5��[�p/ +�# �T��v�W&5�e���a0��a(�$�7T�5��FO�����j#���. � +������|�}���v�Y��}�oK.�w'N/�����_w�W��ᄚc����� O����]�Y�#��N���n$qq
���m���%�뱧���kJ��ݯm*Y�o�ќ�d�#9�l۾<��4���S +������cL�|��C�>��\�'Jx�Ɓ[��V�5J"D�Qs5xbP�9�w!8Gt�zd�[�=���RՁݞ����/8W��|åx��<��Pi��9�鳀��i�h�MMc���l��i����� V=$I�3CD�G<d0>,FT��&�5e���5��5�PSb�h{TW2���\�C�y[m������EH�!�d&���g�ZK���C�<���!~��r�7��Tfb�!��� +I�*�O7�<�Q�3�)#�m�*#ٵ" ��X���q5�.k�wX���Z�i��/�z���C�n#�& "�6gsΛέ���>&@�qWˮ�[��H��ܝl���(��J��]G������&cK>�v������3��c��F�yf�+��qc�A���c��m������
�T��R���`���(.U�Tj2�D5�>3_�it!܄X�%?�X=g?���e���z`�/��6�=> +�8��Y%�V��[�Z
�<VW�@��$�`���9�?-LX.�3{��@0�o�VQ}:d�ط��G#�%�L�ј�
�<dPh��&�?�SQsw��l�1���aR�q��ݑqwV֤�T!#3s�Id��~�uI�D8k��10aZ�Y���m���'��J��c�ϾɈ��U�w"W<��}<���i��!:Q*��d��ep�Jʊ��Roܥ��H{�tq2s�xĉ$�W̡��E��]��ח�G��p*�.�֚�4E=��N�
��>s��Q:���4V����}=1l��_Oߺ�3.$g��*/t��9v("���4����=��K$����ϻ�t��"V�[E�����u9��*�?�9V9�i�����c�s��rNүk���OsY��b���8�<�&�������µ������KӼ?�Y�Su�EGz꩐�P�p�p:b��2.ʑ��yyJʒ�]� +�}�y
�W�̵W��֘И9��JǼ8w�Q�7�gk�!t���bZR;��V��V�f�m���|UB����@����b�>b��]�u�zOx\A�A}D~�Z�)V���^�C�*I[��ݣ�nR��,;�
Ƥ�ZՍ�z1��=��֍���"P�O�vm�):��@{�������9��Uw�(-5i� �2��H�#�ȹbV�}��:����3oVy&�-�L�"�RN�Ll?��K���ۻG���W��㪟�vҳFO��t53+�~���B̚�O�tb���v�Rp$�K��%ԬRp�̎��Եؚ�4�=�MW���Zg唺�#'Wc�ej� +��4|o+��h0�BET*4�q1Ck@��`�o����~���]@�)�c���0՟��y�ߋ�
�no~�nE�Ĵ�-��浅w��͓�bMW��nV�a��\�TC,��/3��a�ZQ�Y�Cߏz,dP���,!mbT5[r�Ys?R����Z�0\�N�c�s^�������Ҕ����؟�Z��Hh=ۡ�{ԃsq M��%��X��x.�ڜ�QM��oWooK�������+X�.% +�WH|�̒� +��) �jd��\[�6�̀�C6�=�?��6B����j���h|����z��s��C�f�l������1f�,Dj�)��ﵟ�v�>�ƃs����p��� bt�[(��u�}{��\��q9����^"��a�����$�}J6~�)���x�,i�ĤsW��`��1� +?vN��6�#��!�5�~fy���9��ٷ��Kv��䱔:���r���z�F����=�{��H�۶n�ֲS_�߹!�
��r�T�e\���R�I�G�{4fE#�`��A
��2�NϜ|Q�*�y9�K�X���,ޭ��[���G���\r�����m����K�o6j���q��B|�K�w������.#�T��9JK&T>��ٌK(v@vfK�� /��]�b���?����m[ګԋ��:�[������TrDZ���C�8�}�����D�h�&,%��y�a�G�3G��5W��PQ��!'��0 +;K�����G ̹�2�
��&3o�_�wL)�ɇt�d����X��4���]
{��1i����3bĹ�!��g��L���K f"z���ƹ�Py�*h����Bh��&44��{y���"���3�^��b��V�5���<��8���Ʋ �Պ��p�FR��0�*D�</:.��ߋѷ��J�Sv��@�����j�ˑq&����89ǚ�I��op{h���F~$=Z�aG��zKJ:��_�t�m��<����� +8G�����ߧw>K����x��+s��q�Y^�˴������jA��?���ǿ��6u�gU�-=yj�p��M�ߐ&��ţA��#j���f�~&�r�����1V��`=c��M����hN���|����^qv*�Gܽ����bj/y���vkU�sU�:ͭ칳�3q@��rÊ +����]���W�v�J0C�dܗJ�& Bg�(i��?J�}X�D?%�`�J��HI�FB�)3��CX���+]e0V�.��J��4I�_����%� #�YKd�3�4�9�-�OҬ���0vQW +�h����]������!�b�>�$��2AB5A� P�!�2 �u*�\g�Leh"L�P��D��K����F����}��T�S��2�
@!�TiH�n$;ԟ�cp?��e�K��|H���O���=��x�]�w���弖�+�� +��y@�3�� +d��Qc�ˡ�,/χ��^$�}(p�Y��sw.0d���;�L� �V�Y�0^#�g�S�x*O4Z�OJ���3��@�8:*H.���ڮi������� +�Zó�1Je����E]�q-��7yr ��/��^�=�^�g��W�*a�J��3P�I�y�F�H0t\���ta. +�pp�E��D\�\k��)�$)@z����;�k����{;��(ؔ�D?T�8����r]|����>+�͍n�
����p>:RΣ#�C�mD���^0_�����m��%��>�{K�[VT�v�.Y:-9ѓ��1 +�J��"�ғ{W��M,�Ww���ۯ�$7_m*�l�{�o#`C�� +��Pe�ּ�5�
,���80��� +%>���J\:;�X�gsq�5 �r�+w�u���$���a������zj��N=R8ps^+�{Qi�y��븗G��|�T������3�:�fuD4M�+9-�w�Z� ���>�Rb�: +�M���E��ۢ]��C��D� +2E�s��CDž�Ĉ�ΘE8�ݥ[P���ƨ�o� +�?>UU�/�TU�OHJU�y���2�(b�cQ��kdX�!͗�����E�VC~ף:��m�N��9�W�d���_53�]�*���v�5s>Υ5��p3 V����-B�P%���Jl��.�u*��O%a��w-�\{�"�|���)�ĭy����W����L�#O:�F��l�J�#k +>ڢ"�W>�8O�I��k���$RQ|V�բ2p^�?jz��i��{47}�&��Z��J4�c>�)V�סZ(r�X�q��Wvs�A���uvt��j��[�`4z�^��}˘�����̗�5H�7˥r�-�5 +�iL
�ںD�tg!y��8�����q6���V��|O��W��`+S�1ş븉�џ?F��;��^�c}���v�_f}T�ͬ%�>��&�W +3W�]�%�"��}{�jxds3�:d���:Q7��o���&3Z���{ �wF����LD�/�3e�]��_�j��#�Zi�O�jL�q�Jƪcs�ɪ��O��k �x�=�L�+V�y���%���Z��u��r8�9fdYl��ᤤI�uM�s�Zǁ����X�q*�\ˉ9���[�S�@�q���/m����q��sNgH����FW]�mI�0Ξ:�2��s�Pd��~v�:0��Ҫ {��[���y�f�����c���9w�a�B����u�L�rah#���8%�l9K�J��8��kL�B����$���8�q�/=�}}OtQ���Q��aĖ�0]1� +�ISS��S S/���c��l�Fb�G�/=����F�B��^���$b(�G��V>�� I
�ϸ^�W�avУ�t~�ս���7Yj +rŝӐ^��0,�ɣ�K��9�X�ᓝlry��4�SԜp�p��c��<}F&��Ra�7D�w9w|�[K����2/�A� +B���L�{ü�n"=�|6g8�V��hRW>U����}�)X���9���R��P3�d�Pz-j��# +.���{��9ƾ�DE�K�n�� ���5T�@�g�ʴ��v�c��W��::+:O�<��V\���&,�j���d!Z�g!PS��d�<j +�����n��]����cT[�t4���ԉ&���d�5�ک����-�nzo�/�� +" +���`S+S5m��D`����e�.�beA9:u�l �T�r�u��A���<x��7þdg�����k���qh��FOO�}4�JUM�� >l#�7�Af<�i$/6���Фj�k�Y��Z�3�,�s���Y�&u�J�lp3a�����Ak'���'�]�y�]-F�%�{��, �Fؾ0���O�� +�� +[I��a��/Y���\ο���r�[�41��m[��x�=<oI��$�s�r� ��b3'����u�RvO��R�� +*Uu���L��)�B�N���n��B#�l�h���=�J�QH<�A�����ďko%L�!U��/E��8��M:��Q����u��`Co�; +*W]��l�氰���9�%���Z+��~AO�c��d�Pa�Q�5��Ԛ��8SI �?JC�I���q��1�d���A_ݸe�I��I"��)�)����m��m�H�T0I9�L� +v>�c]���!�+%Yb,���m馡�jt������N�5�C���_}�H����=�������J��Eٌ��[8S�<�=]���t�!�}!'�;�OJ$�\[ג�� +�㮠�S:�r�k��x�)4��9ꃔ�� -}�i
r@a6�7��cOE�ͅw��k�Vt�_��67�-�n�yb�-�k��D�L�(�������Hx+FK�)��[��Ƣx���]m��sג�gg�K��t�6O�:V����d���1X5r�����aꑙg�^�i&���Y�S����]���J��q�w�� +c�m�c]�k��h
<��<c�$�&Z�&i�T$c��$��:��N�U +�7�@)�U�$;#k;�m�+F?�N�D}k��.�%c{�f�9EO���n��y�`��������T�W�%?����?&��?&�q��E0�;,j_��J�e.�]���/�����s�Z����他��V)Ϫ(��Q���U���M���S�n�H���m]�M�Ťujl�/ǹf皾Q������ E����|L�rq�Tе}�*sS�7�T�\��ҷ�H^ +�"�6W��F��$.Y��[���1��r��͢.8�������U@��{�R]���EEdbgWW�=iqgvw{��Ju���GE�i�F�kVsG[:ގsw�<�� +$=v�x�]�B���X$݇�*mGk�U�\��&������-g6�7����z��Q��A�m�Z���o֛XqK�3�.仃�jQ�uۢ�W�kb��]a�U��t��#|���wA�yr�ћ��U����4���It!M�S��^a_M$i/�B��P�D*�����<�D�Im�;j��i�KȺ��LE�1X�\6��mc=ѧ�iP6�v�F��Z@��ŝ��������!�DtCWR��ڱ��Dž�������C� +�\��K�rV�܈KT�p���N�6��~Iѣ��7�/�^u������.+�bj���8d�z�9���m�����;�x���|�z9|�M +&4n�ڃ"�.�Q"�K����F���˯���?��x�._�0�����y���/���1�Ƿ�(���R36Z�( Te w�NJ.�'癊P�}>�5+p��p=ɕ�ܺG�� +bu%�� +�ͤ�/�^��g^\w������R�gl~>�I�ٶY��D�qo��&'��'��O[0I>�Os &�C��Ь��ɇȕ��CA�z�P*}�����'��I� ���P� +M��5/`�����r;��5`�� Y�?� +ك;�L�r�����2sa�6��E�G��Z�?��gj4=��� +� +VFL�eD����OV��MK���m���'f�s���o_�5ݾ�������lCjת������sw.���?�#� +���PS2�=KKF��n/�/_�~ �I�`(�H9|�T�25�K�Yi3+�7#��N&�y�������������"(��"AOi�'٦nO5g��@�
\�t��d�+�ُdJٝg�qv�1���-v�Y�Z(�춒ɷs�6V�z��H��Y?���Շ��دF�S� +SOC�S�k�k)Wz�� .�= �Ҡ�1U�D$OP�mb![S�*z����ez���ѱ�V��!!4��@�$w���o�!�T��ҡ2���� +�ъ�^���YD�C'@���F:�ě��{�d�:�be@�G`-�*�X��^��$Y!�
k��-�뻢�q�U�R�fk�2��#���a{����h�:
�)cl���x��,�aI�W� +��ȂF���9V���1�O
�M1�iDZ!�d=�4t���zM�@K��zD +�3�(m����@��U36��{�(YjM*-��{qB{�`�֢��&U����b���(�4��k�q +ܬq��D}Y����t�K�b�5^�C��Zg6� +��dN��JL�N��PB5"p�r�Ӵ��'6Z9�V��ɮL)�!�T�.BUp���ޢj�j�X� +0��T�8EK �8�*�˱h�����j5X�����y}���ߜZ�\�t�Y� +��)W�������˚�N\#����� +-+�qV�u��y�P�r��]Mw�S�:��TE�ʚ�?��$�q��W�4r8T�� +�jT�:jۘ&��DtxH���A�* �*�e/�ax +`��Q���Ҙ
Zj����Om'��t�����N�i���]2��������g��_@�������nH��6Ĩ8�6�}f["�xx�,:>���pց�١Kk~28h3�gc�/6#>��WIj�e�0���8���O�j�T�"R�٪y�Dh[���)r&����VѨ~�@r�)"���D�!Ӂ�l�I�n�Z���8��Ȓ�Y'�!T���t���'���Q��3~FlӸ +G$�=O���E��65�[dc�rΦ�����üe�~_�5V�4e�G��R�h�P��!"�d��I�����,Z>�48�'G��E���@.$r/c��ϟ�^H���T`��F��Ht�f�or�#D2���Ӭ���d�y�$�k +%�\L�p��\+�vn��'�Q��z�Ld.H��� +9#(�"���_�5(�ޡ1%P7��` +endobj +639 0 obj +<< +/Length 25389 +/Filter [/FlateDecode] +>> +stream +H�dW��$9�7b���s3D�H}�Zkl�:��� ++�˪5����U.Q��}��5�(6����Z�7�k��O��>m�n�g�e��ֵ�T_p"�ڼY���'�8q��f5"�G3"d�� RFu�d����UG[Dd�:�H��>�����a!@��+�� +�2'�"1�/�/��:{r�Ό���ak�o��a�� +��� +�a>�]0�`~��=���c��}G�<�I�,e`�M�|~��Wɥ��,���N��ý�
�cb^��%V:����g_t8_ +���/z�M�Nd+l��s�(�52���
@V%�!g�y�I�p3�� :c�b���r[��2owR� 7���7�r������(q��!��9�F�i� ��
1��z1à�QT<]��謒e����m3���DH�H�Q($Q�?mmF�M����MF��.Rr�9�@�iz"�vS3F�=��5{h8�����'�-^r�I����h-�:����̨9�苌�l0�Kш�1�E��
lJ���%Ϥ����~�df�X��4�|�ě<�^��}c�0#A7�%3Zk�tPɰl; �
�5���̦��t�����FE����Yʺx��*���7~�!�O�#�bi?s}\��-�۔������6��IZ�Qn)����������Cb��ԥ%O6�}�� �!�f"��3��ϲt�>��ǖ`��)�Tfs!lUSȳ�1-c����L�zb��3c�[���'�|\��p����/�7M��9 +����釛� ßl�(2�+�
F��D���=�#�&��RP�s��4�� �=�07e���L�# _���b@s��b�.�� �2�5��e��0c1�m��V�D���[��Q�o7�^�F���n���1b&1����e������I�`t���尘��O2�kEI�� +��Ƀ�42A� ΅�w(��<7+I%�S��V��܇�c���c�CH�~��an*TL��En�2��A���� +3�ϹC����5��^�"�k���&h2<����Q�q�,�9�'R�͍�@L�l�*�;��O��g�jM���8m{�ą�ճL-�}G�7&�������(YAeP9��qB�\����V�/-g�UO���-sK1:���)���������!��22cw736�:.f}�ij���g�:�Â!���=I�V +^eO��7�R^@�[��6 +:Ԯ�쒡��[��}���q�얛{o�;���7�i?�մ0�avk�89`��=-O�ވ({�,��ʑ����t�M�)v�N%#�
�^L �#_=<�{�"�r)q��3�a>�gM|�o]�!ޕ1>%vĢΕ�R�����J +��s%$�,g��(�5�rQ��fқ�_�58�<���?� ��^�-W�%��
�Duo�g�Mϋ� �Z����j����9� ����[b.���<5��j�b;�� +`���
�I���I���̧)a����^x�}[. ����:��� +N�B���w +���X׆>��R�? �J�����<g����4� +����b��[[>J����=<����O�p:�9.�|�(�6�>���N��Y�hVѴ��_n��6������8�P�b�˲��Yj����/��f����M҇+�'�Ƚ� �Q�B,��M� +�k�;#�c�t�>{z�s���}ͳ� +0��z8��H�c� + �8�a&<��d[����q�J�>�>]��. +����Fa�kijc�㈤a� +p�����]m�} +Ι�E�� +�lj|�eG!�e�����E��u�J(�t@z+B �=( ���ϨVS8@: +? ��f_����V���V�C'cHp��J��ᅲҭ�e85�#U�����Q�5¢d%����gS�0s�������kzP��.%���/і��T|Iv��1^-�r�8�*u�~A����o�1��Nf��J���l֓(2�h�q���kB���}��<��@�㨏k�)�b��d��WPC�����Br4��x��Z��)��sv��Uj�L5�������q�Ibi��&Ze�K&����ˋ�_G}\�O��sv�*:��,�.�m,ͱ�O��M/˲J� +�.Ȼ߷$��Ya�!�^EY�ܛ`�����$SG�%�Uq�a�����2'?�EJ�uI|@�\�eI����k3/$ܺ�uu,�y� :٢��Ǘ3Ǻ��a���+������ҿ����Ε؆���*5�?g� 4�!��ZD�1ݴ�g���O^�[-Ͼ���������$ϻ��n��ߋЍ1���1��߳#���]���qf�?�� +A��m�X�`\1y +�`�Jf�r"���߁�b��Jav��Qv><���j✽��' +[|�,
���c#��y@���Df��(eo�Q���Z�oR!���^�1�m�MJ�킺�Uuv��,�ZBp��D�0c�2I33�?�e���4�M�>�H�گ5Ǿ����� +_X
~�8�����B���.���xv������I77���a�F'ֆ��89:�C��5F2v������U����hvg��nPP"����s�vaLL����J+K���h~X�T +��u.<I�L(�^�c"]��\�n�:.�i���8l�����֙U{�*9G>����r �0hfJB�)�I�#�j�p�FR����C�����'}>���Z� �4������������}�Q/��hiJ^$Tg�N��)�ę�o�k���憰UӺ$��ǧ�B7�<��^P�� +%�-C�h�t�dd���o�K��F_
̓Q +����<�9c^J9|c�sQ��!\���`�K}ąy���-��P{�����]�/��2n�\`M�er1˶k���K?=Ѫ}���{sah_�;��$�]Zi-Md��'��q�����%�@c-��TW�?q{@� +���f_})�0?m��\F?��#8T�>���\�C�8:�>Nh�t�j�^)��\���Zi��xD\�Ѥ�@>&�qq1ukփ�(<���¶���KC� +����mc�|x���!�`#hma�E�r(�5m���I��[�4.�
��O�6 +�g�J15���M�nѢ�����9���\v�����)C���7{pc�p}Y;����U���T�Zd��l\ʊhU��E*�����ES�8_��
�Y��u�����h�a��#+3n}���=Sp{�NԢ�Vı��jtڈ�E1�2�)BT/�7J�U�2t�`&�%J~m���SmlM���� +N�Ɓ�u?���:��C�i��z���4�
5��fř��!FeP�(�n�*o� )M +��Y4}Lwe+�\�qK
�݅�O�`�}tK�Y����r��empkX > +���AϦ +�3���ݺ]f�{��j9��V�B�r1��� +�@��B8�)IhK�L���Ì<:bS0�Y}��6��{���ݛ%+,���$7����,��_djB�/
0�L�lOv��b�Y*J�PF��T��^����s\]V8��P��x�����i���@6��O�Z�p��4�'�oe�SҪ>;9�2i|'Y�ݚV@�>���Y���l�dI���ì��9���2�K��K��
���D�2�s�H@�bv��+��l�cKE�L%��ֽ�~����8k ���w{�3�8�x�4u�@p�`R�lA������vkf��Z���jc(Jc<&�3�:�&�b)O�T����R�K�9��s����B�dk����+��y��k1������[�m|� XU=�����vp-�?0]s5�Xr~�!E���K�ws�g��ܖX'�����N�F��`�RL�X�O��O���TQ��\|m�R�هX�zV
��,^IyF�"�n,��@
l�j��sx�����DU�Ur�Cl;��5s�NVr_ʷX� +.�'W�C���P^��Sod��z�>���X� �)k����fj�C�fb� yYQ�����{<��T���܊�GUZ�dB��T���"TPP�]H�,�V>�x�r��*AA�x� � �g�tΎ\Bq��!�;�j�+Jg`�S��ńT"��d1s`��5F�*1Y�4]�[S4��O���hqk���f����4p{�A�e
M�n'o#�O��S�j�i�qd;�r�e
|948V��Gq���!������H��y�F:�e#{������ �Av���u{�ǯ��0�@RV��Փ�*ֲu�,��z�E + +s�8�L�~)��)�&�4?�t�8 +�����S4R�k���zM[���3���6����X���_^��Z&�dE-:��u�;D�Sc��L1W5 �c5W +����ݜa/�ƥ^�F�I���� ��Aw��;E�j;Č�%�/�C�LP>ˮע2�W�hXF��FΑ��6g��9�* +�m�,Q<��d�_��E<oЋҷ6�89 +b��wq�Z�oZ�Mz��Ȏ���H�Z^^��P���TyS㍒�~�nK����ED�� +8mc��'�c�¹Kr�r_�� \v��U���3�A��*ʝ�
P��� �>kr� +Iˤ��W�-��*���;L��Z�u������H�"��vz;�b�i�^�p���#�T��������Դ��)AB2ףW��U������V�~jM�TkV0)e����a�I�U:C��V��=��E �0M��¢��e��IQ�R�ܦe��PuLL���ǿ���^v�້�G�|F���r��� ���EE�j��㗝vx9�����˰�ڑ=/�:պ�H�bG�&u��(��o�{�M������{[Ck +��2,F��.�N�9���i1j
y�TG~Z�����W%>�F��~��ߒ�_> +�
ܖfyt�uM�� +*
�\9�{}9{|ܛd��ⵡ�$��e�_l�r_�r���E��+Qy��3������t��-��@�:�BIJ��8G[H��=��sG����D���V��`�ǤU@�tҲ��h����H���$2��M$8�i���H�A���� +�Ճo�����zoJ��A�!N[Ji;��V�b�5�����ݢL������Y���WX���~���1���gx(خ�ScJ�h��8�����S�3/����H�Ǧ��+{SGyF)^���ª��̔<���r8R�?C3Pe��
3��u0F]۬�Jw^���̡���ə�.bV�Uz+� +L�큤����1�2�pZ+ +���a�L^O����z���Ɂ��2[��ͽR�Ŝ����%��G�э]cы�x0��D�_����Σ�C��� t�g�4�a�jX�Z�����s}I;j�{�ݹ���:gy�xҌ%��#�ʮo�|��^"��o\�2��e6�ҏ�Y'�w +CFI��f�a܇���2��������<i�ZL�af�>�̆B&����*a¦z��=u��a`Γ�>���Қ��̘i�F�z��3`�L��)���#ӓ�MWѼ�ƞ�n�}��\h����T���J���խQ�o\S�S�!W�YY���rL���>�[ڪ��E� 4��@�&�-�44&�@/ $��p�x�+����* +CIζ��)Kj���Zy��>�XQ5f�7��u��L+��K�s������٣��T����4$�$��L�M)w�nN].��ơ�4�,��oRȥ[1�A�H���O�a.�nB�;�J�z1�B.�O�V�LryP�T���.���6�����:4nk�j�+�a���˴*
/Ȃ�Z���S�[��bvuܛ*ݢC�W�v��C@�/^[Qر�-9wY���d�2������1�m|��y;2h��;b<8\U�=*����9�í�AػY��^��`\㟗�}�Ə��-]SO��3!�A�h���a��*1�������J7m�;k&}��j;��?Ė��d���S�guw��O�)b_�E>�A��?3�1�(�����F
uc��]�Ce悃Y�ęDq\�Rx�2��,�����-&��|��Lܒ�A�+��S��%k��e�bĸ#c(Ӊ���^���=t�L�;��td�y�W�36sẆ��h���͇��L� [P �'rSG� k�t�n4�!o�V���%����wK3���������E=٦T��X�{(cP��}�lO ��qW^ƞF0�먅�� +��s}��g��Wԣw,8��Z���I�m��Y/.)f�cO���c9cG���_��"�e\���z��S�F v+�J�Ʋ���]~�%���$kd�s�<RC�%J��2�i=�S�B#jO��z��./a[���>[�/M�d˥� =�b��K�[�.ٲ;�7���U�%�L�e�&z�S-����{^��nmy� �k4�c,d�<Ϡ?1�\�K&r�G����π�������F�,�x��*���� +��{�J���k+�3z �c���(c��_��K��L�9i�2��Z� +@K߅�u�h�u݄Rh3��l+�w��`�7^wG1#rl��!�#�̓�SM��H��R�ى���LxS�9���J�|ҭS23ۨ��W���rAR�)��*[hɉN� +�E���3iՙ_��s���w�gI +T�Q�Wo^��P��}P�^�4�R7�b�����P���MW�Y���o��T�HFYލ +��Q�,�<��ܻ��*��z�PnT�T�՚J�L�^��d��n�
� ��퐔UmT\B�.�7T��3�Ө������e�u���s��*�v�@�Q��"f��q�*8EfͰ0 v8y�҃�9�pj�E�W��M890�8�fM����nL���a:R�Z�u�,jP�* ����PS��M�YS�:E�摰�C� +���O{X��5�2�F��G����]��dFv��mN�]�.���so�����I��Ӛ^םM�ߘ*h��q�Iޅ�J�Vq�j�ֶ/P&N���=y��<�a�����r�L��EJ��̬��}p�*a$l�(��J�m�Pj�fF}P��<hr +ɒ�y'�mǡ4'���i%�̘��jQ����`�ܘ��W�aX8�t7���^9�[B�kz����%s�r[>����:�T4��hW&�.��A�0(J���*�7 T5�t���c�T V�������#V+`
��2�W���������j]�W�߬D���h]U����8�D��q���Ƨ��7����Ǎ�4�A�6�|L /$�O�o.��bI�"�<���p�#ƅ +�Z#��z6����$�E��\��U� +Kw�ĉ�'5,�4����*^7�������X��aI������8�� +���T��r���(��w��#
�mD[�s�z�F�G��l=�*��;�Zǂ���)[��S����Z4H�[������,v���� +:�oZ=ֶؓ����!�^`9��C�u��+?pa��qlAGh�������.���et�ަ5�/��+��C�n+�|" �%I��{z| +��G1�_{�Ub(����j�����c�P��%�:����r8%S�A�q���hr��qY�.Vߧ���R,5"�/ +$�(}95+��إ�sk�tr$1:e�~�u0�p��<�l�?���+l$��L��
Ϭ��s~���M:�a�)���+td�>Iߏ?XIH�����T/JM'�,"}0�)e���"m���7��vN1x���4��@�9��8�}-L� z��� �f�Q�&*%I��d/s���,KǶ����w�EHD�@�>�㾏1��I3"�Ċ�F���k�v�c��
�R�eD�"{�3�r:���Z�c�xo���j�VTC��'c7R���� +�F���/?�Rc|�ܑ�[��5��2^���{�e~Rc�Hq-�0s��Q�fTa���Z�� +����C�x���WB^KSr��{H��k���t�]�'"-'��i�~"R֊6@E*��#,�.��9:� +o����mZ1V��y@~�GM����q�l���\u���+>�\�<JD�0ZЇ�*IGR�B�����N�� ������\�>�|���+5� ]�)��vb=.q����g��������"0���y-��fFs��W{}����U�QD� Q�O�Ҧ�� �L\�.ݢn� �l�����\��Pt9:>��ħ�����U%[܆5]H�y���)��H'�.�1-���橬.'��Rsg��&
��<��W�`ȩ�oX�&P;�Jݛ ;3:�w�ÏEa�k=��v�Ǜij*�+[H��P7�ˊfό�+�ׅ��cW%��Y�E�'���x�{� ��gP�$�Qs3\�E�}����Z���+�&�^��n��9b����~�a��h��zLC]����-�[���,�����b20)�� (�})MN8��ut3ų���;�0�ݕF�+Ľ�f +D����U_kƉ{J�7��8a��eE�%F�똗b�( +�,Et��tyM��m�@��iA9�1��3.���LQ���H���;5�<l�X'�yĻ*NW�s8s�R�u����q��>O���ҥ�F +�����vA�;s�*��� (=��T/}Ǘ���c㑔 ��U{�Erok��/���L����tK{�>�0v��n���d
�#����'���������[�%���ǭ
�ݦN����@�)�3��a*_�" +��x���|l�� ۶h��߅v��>W�d��C��t�e1l�V�^y�B�h��N�g6���}���l���oJa�i���?��ܲ训+:MX3�\��|��ͤ� ��),����KI��3ph
����2��<�Ȟu5yA5ө��;��Ƒ��ZP��ֆܲ�)��0o�0�w���/eT���oWJU54j`;��k�v���|�D�dX�8�L1�� +j�%*k�{8�&i���QĀ�#ߥ��b���xϺ���̬#��#P�vyV���'{��3^��SAE�G�I�t��'ՇzG4[h��]=�����X�|���O��N���C͓���qQg�����Byq?OM�����h�d]� �^K�IԲ~NuE���=�Яy=Vz�_wx��g��óڍ&ߵ�)�� +�;1�=�Qe�qn*�%�q��}��N��,��ʬ��eM�UBC���
AF��'T^���ޔi�M�!�o�������-JḞ=�bu�.御A#V�d�����I�m)L��R�կ�P��φ5�5�'1�vh�i4ch]-i0-;�ɫ�n�Um"��gIP Q��<�Kt��ye��moj%����W�K��gr�Ԡ��(��g�R������Uϧ��Y�VF�i�5UC�t +�Ku.�0<�]��짐ʮT��Qġq#_�C�� +ΪPVww+��E/Ӓ�&U;������y�9��I��&��gp֕˸o�<�};�ӷӑ�Ѵs���%��@��?�W<��X[A�%|�w ��T3���4�9O�����|��/a�r(�+B��&�g�(���c=�G��S�?A˜ +k�;�l� +}���d/�e��
��uR${��#'U]6�dV~�H/(����~S�.���z��:�H����k���jN�r�@��tH-(4�f�"�.}�Y>�����Q`YFzKe�������\�� +�O�t59�#�o5�i�P���⺨%�YBy�����$ŔS~�M�p���|�ͪ�CV����"_����D�U�k+� +�6�]����m�����wr�V
�ReW�����v$Ynx���"�H����-S1�ί���jk�=�*2�'@��Qc�܍&�+٭8����)J�L�T]$@�E�P}h_h�PM���ReF���Ra�WW�#i@�� +������ +3��f8��WU7�� +\V��E*Ee-��T3�r(I<
;A*xg��A5�����pYU&�+[�����NJ��z�j�K�,G1>9բ�Ō���}�K��(i���U��k��fhҧ 8��J�̊�M ��ǑIʱ�*�\ޒԻ��ܥ�P8�����q�ab@%��Ē��2��Лc
z +��9��į;�dF-8cNiC�Q}C�`x�h��<���ĉ�´>A}���"��1�*�Q�a�x�X1|x�5�:|�w��̢�Yŕ܂�,Uj�&��Q �Oǯ&Q+3�H?dá"�@�i�(Q����Em�4��N�����V���M3�Q#:'���R�����X@�+}}�%2:��)R��y.���øei���U�Z�FQ��Y�S�%7�A�Y��T���#�K����gy�A��-hN��� ++�Xk�����A�[1D�:����<�dִ��7�����Rd�M�AY�/�j� +��h��8Ly���ӭ߂�o��!@�������}�[nA(q���r���Z,������� ��|hk��J���
o�h]����� +��/����'4�#���J4�D�I�L����si
�:�b��)N!῾{��N�����Hl� +�u(���/�����IK�h�'�]< +�i��TE��A� i���)�#�h��܁��
K��1x��F���v� +�]|�L�Kz���� +�!�;��{�u��%w����Bן7��Ĝ�� +��M_ )��V��¾ +�Zx;��`�M�D���"�4a��>�Ehˢ���v�F��I��^��Ux��/�.Ґ��j�OO�y�v���0�I�u~��ۙP�^r@^�,��R����"�W�~fEW�s&J�k�׀V��k5� +)�u�F<݊��.R8UC&B�2NZ����5�M���Rŧ�������Y�))����G���<�<`�{M�:������hh)�P:.&�Ĩ�v��� �����#�21����)�R�&�F[;a�|F%i��IuL�~Ԏ�Ȱ���=�k�~'�xC2z�j#PĮMc\C-.��� +�i���D������t�&�C���*,6糖��R/N��N�W��1A�c��Bf��~P3�$i�T݂��"���CXJ/I��\���������~�/�©�f.�� ,����U@1�!N�ĕ��5td���r{��7�PF1) ��%��ʛ �����*�`��.HRM��̻ +1�0:^�Qr:*�J��B��w~8s�
LIEl@��Cی��e8����ۮ�2xq�W�}�'L%�v�;N1z�R�8uR㠫z�xy�uq +�H%��vtq?�x7Q�F�ө" lt��L5�B���jE���^:& KaN��K� �V�*8���tNr>TV0�nC�ii�߷}�xG�@}�O��2�*��/PV�F��\���F�%�bS9I�@��i�m�>��B�&����>W�0h����Pm���h�T�xFe,��1&�%\b�u�N�fy��� u3����{����-��g��]��������a:7�F=��4�)���-����rG-���IC�Ķ����t*���+WA�b�r�<�e8��]�~�����D?q�0ucf"鄩ӎ�V�v�$��w,;Ff��?at�x�J�0�D�t�����h�-�b��h��I�M�Xb�����&���C�g����wxP��h� ܯ۾�����0�N�D�N���o�2����6�o���cq��5䀻 o��m��z�=��A/�=l�$�f��m�D&�a��u�܍�o:`Rq·�$y�Y�������+�Eеh" +ͫ�7�"��X�C����I�5���*L�ܕ����ᘙ�i`���A�&��[TM�-�f!�6ԧ�Mr��qg�ڍ�d9T�VM/%�ER�5P�J8h���fR�B�C�P�bL�lh�\�A«*<�~�-χ�f3I_:'�ݢ��|���������CǼ��i���∼�Ȑ�G��E%�.�9�q� Hj
���t?�!i +�P�a���C-�U.0e��.VU�X��$�� +0���u��2tK�Ke%�a +=�,¿��܁�__:���@.�%�����Zr�AFV��&艇��UL�@[9TM��y�9m��<��; ����麦i�n����E'��,�K�D�#[�E_#�@h�:+�\�A�N�:�9�_��&,�š�%3�ez:�%+�0ᴒ;dKՂ7V�mX�)/,M���'p"�v��J�^�*�����8(��e�� + �#��l��Ňc��2g!:��Ѐ����^�٣m��-��3�zG�Qe�h�ʌ�5ۿ��K��q�>���4�V��W`! +/��i�BQ/4scS�j�un��Xz�N ����l!p��Y�뮵p��ڶ��ƧS��( +�v��w����O�2�M���k����f{������~Ս1-ū��~ ËK�#�:�#k���9^��R5o�RS��:�S���7���~9��j��-��;����gu��=J��^��ՓA�Am�1�;*P�ɠ����s����Ï���ՙ(� O�.M캹�;�b +=u�yaٛS����,�:�����g�4�����-=��5�XJ���5���W� +�So��>�|w�Q}}�f��,A')%e���RҼ���5�F�4���آl�W�=(����u�ph)ڛ���*�Q%�M���Tc���^g��Oא��Ю�D���C���=�pRG���\�H�I���m��4/6)�5�\MO�(N�9,���1.2�]d���i�;�YL<Q4���*� IO;J)l�4ۅ�,B�^�
jR�Q,Kͷ�+r h�-.�4�s:F�����X���e���� ׇ#Z�:=�5�]��#�� +��M����K���{�Qq�ԕi-�%-�~/��$�;A�<�ZB�*�V��Y�B�\��;`����Vꔛy�JPH��\Gn`(��F�<�X�~1I�BFZ�&�B~2��Ď�P3���\R���x��
�瀁��6Ҧ��r�c��Xs/�9Gފ^o�1Su+���n��?����G��3�R �A�����U�����iI�<��r�m�CD#ݙ�w��;h +�kܢ� +endobj +640 0 obj +<< +/Length 25253 +/Filter [/FlateDecode] +>> +stream +H�\����
E� +J������W#��� +��5�#H�X�@��� �v�1[�Q��r��K�~n��,]��W-��#L?��ۺ?�` +�5Z�f���v�1\��6���`�b�i ��~��z,�@�?�y�Hװ]�H��?�E���B��9�$,���9)<���
�^�K�)�G�q�j�F��@�a�3�@�h'w��=`�-�.�$ۀ�|㑇F'K��CcνEh.n�'�e��gP/��9=p�����t=����>1(xl^��92�]�[�T�t>�g�#AB=����F��1�K�&�r��jr������`���.�Ǟ�x��gp�`�j s��^<��|yx8%��Q}�f����P>N��&}ؤ +�lnĝ� +�� EQ��M +���C"�hl�eϚ08F�(b��w���i�l��eTl�~`T���l2Z���AVЅ|` ��$ ��KK��/4��������ȑ��d��Q&]�,Y���c2~UJ�!�PM*�N5��<��3���?(�c��4$Q��X�pS�h<2���P��:V Ew�?0v���E(A]6��Q�W��+��2�%-�Od�Q����=<�d�I�ҷ�&��VS�AR��ëa���'GFNf�%�V��
xy�,��)��i �RL��D��$�a��!1e�|u��Y��Љym���F�1��l>�� +hd�U�C�O�Ls��s�^�aK�� �<�]|G;�u��ٓ$�Pf"�xwI~��F���(:�Z��)�LuH��QT{6�_$"�C"� ��)c�R[f�t�x��"A�aR�w�v�n�!Q4�e>� +��
.wf���
�~w�Ͳ��>-I4�\��J�e.��d�q��?$J���fER���D�6 +�\��S�5��l=�3�?+��h��P.�
�?r�T�W�A��Nv�>�2O��bG�0�����!YY�奫K�;zБ^G�BK�����jm�ъE������7Q*}j���f�!FS�+��=rn�:*9<�ZR��tY=��e+
�*�K%�-�s�|݈�QF6�W�L�^�o��y _*Zx=:z�0ښ����e�98�\01��� GN-�Oek���B����:sD��(t���_ԽĔ��a8/�6��;|��tf�)��Bl�>xѰ�ި�a�U��c�P�\�y6,�3�RW{2�Q��$C�ҋ��E�ŷ�5�é`��Ud<?C����8 +v�TfOW�B��{!է���f�A�$��mjh:���gj��1r&uy��kK�r��_Ǡ�J���B��!�Z#�chq9�9�谦�Z���qaN���z"L�y�]�#��cQvh��������~P�P�N�ҹ�����cG�����@�����T|B�,�]�?�����g*��n�#o�yK�'���c�c�Dm��V��8X�%om��C��6��I��^�K=GU���� 3ݲ�.5�jGڃ�tu}��1�D_J;�g���i���:� +��#�껡�yh�c�S��2�*�EtE��:y���#�f��hI"��4a8n�j¼�'�����"z\M��Ћ�:O��34�\�9(l�K<�U.����9���q��-}h@E��Ee��z�Y�J�L�Y+�z5�����2I�7��U�2�<ܡ�2�Z˲���z�Fddo*�L����a�P�AWz��*焹� �Igm�h�W�E�a�r�} +�k��EP��`{�m�� �Bߵ���|! +�1�q���sx0H�"�p�>�8�!�>�-__ +U?f����no1�"#((1�0��;�����U��s�!j�ȯ�]��@���v�|�fT�i������U�WBY+�8�`���u�n��_y<X��ʎZe���/�.-(��չ?�*
�,�A�}��"��U�UUz���S|I],��]���X�%��U��bΤ��1%���w��U�'��#��<��C�A������߃����@������
-���3l�N��3���8��..�z�~��p8� @��Y�=@H��7A=�1v�N�ÎH��k���W=_0�a+��lR�����D.;�q�=b?�ĖW��A�`�&�s���p�X�AK +E�)R���<=����`�����i������,�]$TD�P��#�t��oE����� ���T'$�?gKk��W.5���GAb�(2��("<P$��U
����_d,�di%�̅b��D�3���FOg��@A'̾>��Ǧ
�fa+<��|!Qz��I[�J�?/�dh�.���ˢRw֙�y�#��X'A�D��E��2H�=TK�����jә�m�w<S�1⪎c%\�߁U�^ {1��j��V��B�/(Rw<Jx�9�:Vv<H�M�L��D�)��(�$����#\�A +�¹�ʪ_�H���E��i�~� �r�Km֜bPjy��������v
��KW��k(8oB�E�*� +�B��QG��~���!�S��?�8��{�ţ��F��cY���zb_�����%�u*|}���+�P����"HĻ)Z��)8ou�%��4�����A�7�FCeO�͚�m���������r,�<)4y���s-�$ֵ�\m�X��ز"��Wh��
$"B\����1�ޘ���fbQ�4�~c����X.��/Ʃ�t��8�z�XC�����bΐ�sp�WA_P�l��X����'j���=����7����}��I�2]X�1O| +�MW�)ȨXLZ'NeiS�M�%��9���ҥ��tp��O̠����ǩH�����*�~U������Z�F��9�髼6 |W�d�o�G�f:�(� �n���,P���5�گA����\tvW[��r�<�:��(��v�����Jp��46��9f�|uzvA;�f�t��:J�T�rM|Ǹ.�l+���4G,�H;����M�����<�͇��UG-�V����g�g{�9>�<sRP���4�6��� +�eA�w&���5R7?�q+n�7��n��:d���$.j{yZWO�!;��Ko-t��ϰ)9m�s�0!��*'�,������q��$2�t�g�1�ч�~�Χ�V�s\&�|=:�Z��k�5bBS��(�0�1��0��-�q���p�k�@;]��Dz�]�����(}F����L�8k����T����6s��a��
�i�z|2g.d�B�6M���ؽ�������@�n^�k��v�
~����;S<Яn+�v-�F�/8N�S�
vk`\�f�y\��e��: ��M�g5̈4?c��!��Q�ճa�,|�2��fN%�� +��)� +����n"��/��(���}e[�e+0*b��PY�od�0,@ՐT�{I�����/7�'��I��ζ������)��l6~�1�p��t����1�&�_7I�;��g������M_�<�dj�jk�>�O/�A/]:�v�K#�=�w�{���ܘ]�B��6l�n�㿛EG�w����fS������Ji������5� :�X�|"��n��lD��g'**%������� F�"_���s�4�����Q�dFT���g�-�pEx�g>�hg{!|}?m���s{��zN��4���O\�j}��B��K�
>�j�}AϽ�ι����d�Tڈ��l:Q�N�nu|�F#70�8�GƠ�� �v��T�)����� +��O +mL�gP+1½l�K�h���o��;�@ikxJ�Fk�Y�����A��,��!�چd���Z"f +Y +7)��8��$ɔ�<g+4�y��q;f���,i���~��J�`�#J�i��G��TтS��Y�b-������9D��a�=�?��}p�#h�����g��i���E +��,2�
3��k +��]VpD�Q��&z]X�Y�����eK|Q��:�@!,�[~h��1�EV�~H��T�NrDA +7dߡܗ#���aH�\����P�w�TX�X' +�=�T�nYm��e�G��e��O��7IB��n��P��9�sӜ���ra�B��{F�`�Pw�u8 +�SG�I�R9�9��CiW��t +�hT�\�g�8�ln������q$� +�L~Vg:W�[�R���[�K%9�}�C����l/��q6������9;�3ڰ����mj9h���ŷ��@�m��`��I���<��"-���E0
���nm0,�`�/M�Q��:���o��d59+��")�a4�=�\���x�<�K
�]�J����<\�i:�Zf���,7?��6�@�<n�d���r3���d�lS�1��ޚ����Jpd��E#�)�Z�dG +R�;(Z�dF5����n�̰�cuF��HYք��csQAj�P�V {2��P��{����=UZX� bV�6a�.d�$�#]Q�M���� +��QK�!{�*��A���c2��)[
1_h��Ֆ3�|:q�9ףӔ�)@NY�_L�B�.&3MKz��Q3�Q�k�����>��v+�
�.�����?�-�=�o�[9�*rer�U�\�V�l6{�NE����R�T�O�ha>\Ľ�y.��rF�C��@�����#~5�~u��zQc��h�wV4������f�Ì|�I�����T����٣'9~�j��8��m� +%��u����s�O!��?�Y��d(,N_ +� +��7M�y~�cr}��Yǵ*���jx��wk3Fm�yh�C���m ����|�x �{��^�$�%��W��fHH������̣|x +C"%p
J|�:��u# +52�G^�a%�0@��y��w�C@�)�c�@��,��p��r�"�$��� +E��'Z?@-���;1�g:�E��Uf��c�?�c(�m���wu�*�.>���B�Y�p�+�i�'��)�w'ұ�e�r=�K��t��;�&%��8k#���þ�u��Y�����u�F�Ҭ`CtI�~r*x�.�=d{�b�]��2�3�����f���{�W��� +<���sA:�u�2_D��$��E�
,�`܇��ᶡ#_��t�W�H9+:�����s���?��4���h�J���LYп�|I�x^?&�W>��me;�N����U��;�7�r_BN%�Z�a����o�����S�0��ϕ���1�0R�_6����\�v�����l��$f�܄9u�^ Q�y5�]@�RT�|�Iս����I�]S��ʾ�Xk��f�ˊ��s�^bK05�p�<_�rʎ������ڕ�f!���gܮN�<_�2�vp+j o� ��9ӿg +��Q.��]�q�o��TL�W^����f}���!-d���vDL�S'�p +&���9ٴC!��I���4����6��6q O���̩<�B6j��K +*� x��hޭ�s����v��:�>�C���0�?�Cr8F��K)d>�i1�����g�����������:M%�X!��=`ե��!�K�+.��ڎH�䑿�#� +Q���Z��roLޓ:o��'>\8�ZɐH-�s& �<�VnD;u��$�P��Ü�`�h|XإH�"�.�Ⱦ,밅��,���w�������5=}*��1�~� +vRTr>4,(��#e{ۀ�ٓAt�9�� �Vŷ�yF��W�H�L� +�@"ܝ�9��p>`|0A��f�ˁL�%a1�G��7�$`.��
�VU,OG݂��#���� +skK ޢx\� �0�0�����uj����Tm���5�b�s����}]>��c�zls66�3��M�7��j?�� +��a,�@U͘4@-9.�t�Ul�=� ^�%�A�Jr_ ލ�H_�I� +�8{Us��T9Y��O�fCHV�L6\ +����m*�٤��Bu�I�� +�8 � +˒ߑǎǒ֛�bUZ
]9Y�C��;�������r�s6�`UsD#@z�s�.�p#єK}�BE���A&Ԯ[��a�ݑ�5g��+,�M��mA���ۻ{W�U +��.F*9漏$��Q����]�� +!j +��*���R[IyB~ ��mi����+C��.�r�l��y/�#��Z3�ióA"�B*�J�we�[bV��IR!~�|aNޮ( S�_��s +Z�˓��6��!➼8k!#RДq�Y�)c +-��˸�d�i.N$Һ�\���kDԫc�;"��Y�!�`5����-�� +����������Ci"W��Jw�;Ι܋l��bl�L��!���#��h��!X��yӳ�� +6
�}��k%�L�z���/��dV�u��������]-"Z@ +�a�s|-��ZH�cff�n`b����?c{�t0��r�C���D��5�s�{�G�&5k0�����I�X'�-Pt�Cjᄶ�f��_�W�&B��O��.����%� +YȽ-ט+��o
��>�ƒ�7��|�����ңK�@1J��~tQ�qE���r,��'\0�3�Ե����6��x΅��s]��h�Y�{�q�g�p��5����G�ٖ��<�v�?��`
�Q�JG�噠��鉞(�0�J�7<���X$pyz]'�y�N�O"�kJ�`\�q�r�2++vPV��<9
+�J�o���3�ɒX�t��A��J�]�� +\�3��⬤�L��Y +9�|�o�E!+�5R~΅�S��г#\)|�JH-�q!=��g�˾�R{O�{2��k�qYK�p<,
�q�tGa�E9W����{���a&��%"7ҷ�R��o�*'���O�v0C�:�[˛�{�8m���$�ޚ���\�������J��"3mlxb��jp�;o �m̚%F��a����L`�uY"7���?x�%�m�<F�q`��,]HTu?�h�p��D��q!�Sur� +v3e���-l,
��Җ��S��E��y��j�M�e Y�)ˇ�}]b��MS�.n֚�1d�F���?�&zR�t�kXs-m�干�7��Y������G��(��D.�F��8��+�z�"�G�~�%0��a�/I׀�b<~���o`^���Ŀ�Ţ�Z:�Z� +t$qe���N�����2�o��g +|�d�D��v^$��֪�ր��;{���eX�I(�L�Ӽ��t 7��c�S��4���!�(e�w�����](;Z\����kw�� ڨ�p4�V��V�~���q���fo���h�~֪� +��Y�kx��4�����:�_'�o~��?��;Y4�Q��L��1��ac%���1E�Z�6�C�> �jD�u��|��{
H������/E��@j�/��8nP�H�,��H�Ggl ++�Q9� q_��**�� +� O@�eS������G�WD[ȩ���~���ϱ��ل����n��;ކ������%�WX +L� �pģr�+�Q�?�Ixao) ����W��B���0f/b�����y��+Rl +��;���/)�ӸLG�X��q^�8�7��穁�͊Y��V\D�,L +$1�Է��~{���ƀa=X��~Fc�h&���s +^�g�r[�Ee�A�ۢ�"h�C��}G�Y:�i8���(�p]�d����l��F�B�'��Q�Ѳa�HX�8�s�F1�n����� �a[�ގAG�kY.5�K��}>��J��j��p@��qxhoY��p��7�G��ڜ��7B�1�����")�� ��BͿ�K�E3�k��1�.g +C\�n
�$!�i,Z��Ƹ�w�_tg��Ӊ0(����Q�����"�%Y��;�E��U>��ޮzIi$�%�H�#9�J@N�2�hs^�A�<�WD�<�i��=�����ږ&����9�P!������w�'��.dz(蛪Z�jE�I��%�i�{��
ckm�o'�2�� j��f$�3�|��}�/h�,;)�3X�6W��ӅwJ0�+n[��pr@�x����H�s����d#�Յ
½l0L����#p�� +�+�}=6!��8�GS��s L��� +tzNDx���jۚ�pϥn��Q%�t����R�W���E
�i��#lh��6` +�5 +j�Ӡ4+B@��fI�oh � ��,��.;H'�~�`f��Mcp)�Dz���o <bg��E�J_V�U����0��ɬ|s1 +�7aDŽ*�Kk۵ٚ����e�1���Do�(\��=0��bΒ�{���M�<G�:�gt��� +�2%���AEr�Y+DA����ױ��C�F4��ļ+�z\M�:b%P7i!G@���>p�hzc8j��Э�5A��yB�*`uc:��fu��M}R�zn� +B-�dt`hל2IzꋵY���/A�8�-�^D�U�o
�2���UɤJ �D=Z2D���63㧜w&�8 ,CZt��.�/���?Ŀ���?�����������x�~�~{���?||�������������W���ihK��wTX�W~���������W���X>�ӟN��;}�J�o���9���M�������?����c��I��C�����3S�|3��������ϧ?y�4����+�GY㖆m���Mf�/���ZZām���A�aG���0����
�ם�v���$�q��x����O۵�q9~āb����V���&5��Tc��Ź��y�r�q�� $�,�Zx�6���yl����v|0��q����#���}�xܬKu3�>t�uo��/�K:��×#��@foڇE��֎
����*�Ї��Cɣ�ۇQM"/IZ��/c��H}�.Y����ˑ�'ou0|����7�/���ˡm�y|~,��Ѫ�$b��i���y⇑�ت�l���������`6ż��4h3�/&����������ii�d?���B!X���u�r�s�/�wu�@�к��n��v�y�y%��pnם �#��
��ah��/��{��������Α��?6�]`���D��O�� �M,N�BnXwDh��/��{�1h��C���&�1�a�P�Y�:~9��$S �J���� �eط��r�yh\�/G>?3`��;L.c��T�6���>w���ϝ�Oa�l�;�d����4O^�=y��7��������I�H��ם�g`'U㽐�j�jd� +X�N
��J�F��U3���Yc��Ҕ��u +�G�fM����'��\um�⾶�ӻA-���/'}�4��|V����^�V�1�)0�թ�I�Usa;�2�|2�w��jEP~�l4�� (H��ܭM�B�;�T�y5�$x5�����~Taf
�p7�;���{I>N��t�V3\���-�HH%�YL��(��eV�7TT�ּ]��@���Q��GT0\���n��G�%1���1���0�{�M��\Cb�3�5��w5ޚ^���w�b�%Z�H_�,�X_-_u���D����g{/��[����7�$�;��87�ɵ�:� +���(b�\���A�Vn.8�f��q�覘$���Uy� +m�+h9k�m�%�w=���[︲���[�q}K�A�n�{Fz�m_� +p����ef��v�hZc�*=��ˀ�DaF�,�n�� ��2��G���^l`�t@�/�Mj�����X�:?.��w�����������#�ctxk� +�����JEH!��lpb�|��б�$�~���3����P�'�-dg�����uA������N�h�a��F�aN���.�,�r^�G�<�}���ێ +?.Ŗ;Xcx���8u�$��<lQC�s)���>��+Ke�o��؏� Y�!/���o���" W�>�:K%����jP;��@0��{��-9-b1���-r_�#���r�D���#\��z<�̨��?���K�r����X� +�vlZ=���S�`6r{��W*���b��z�3� +m>��o��,'��-��:ǻ�
��?U-Ɠ�����<�t��(�o��q�w��011EK�٦С��@�mT���/�V¢~I�➋6=09I�F���|*]NN*�6��(v��ֆҥ��xY��<��[9m�� ( �R��e�*j3l>s9E�^P���?D��#�c�r��ks�V�O_�Ĵ��Z��7�Q��`P�4�"��0aP��DP��(�&��2�K���]�:k}�H�ܣ�%�sZ�p�dL��4n?[Wy���S��m֞X�DQ�ˆ)�Z�p�5��`kg��1�3��7�H����t�kYrb�{œa%�qڬ�`�K٨2�lڃ$�Y��͌�ˈYgɖ��VIC�w�~}�f뿺b�H�:9Swb�Җ���ŏ3�<Qg�̚�Q6��H��顆�.�iO}6:�@�y,~T:O��j�&f�w� 8�ŝ�"�qs~\3@���Y����&��aC����(��t��7��vLߴ��c����ޜ�l�m�г�U�#�2o�Ѳ�Gjfp}s��j�0IfӋ�U{�'U�r'+%��q +B����`;Fb��&���kzZ:qgJy��E��!"^iQ��QkѲ�w�ްP�;��3D��OTe/�~�At�"��C��ɳd7��b�|��F��k^Fmn2�yr��D�������F��[!Loͬ�&g�&¦!���ϒ�'7�Y{�GR��B�v�Ū�yfa�j�*�m�@< Bi����I���lP��D�����Gr݉2�,�y�9��ow���`3�w7�PT��p�O1"!��"�<DD$5j�%RL�VErCh>`W��
�a�E�hvH �aBy���a�Y��Y0�ĉͥ��f�W`�a�l�����YRH����m�nq`�T����5jQ����E��b�Kz
P`�������ߵTQ
�vy�_^߉ ��䫻=�l`Q�tH����t�w6�Z�Q8�S��0��hB��-$�h$լW�a?�R� +f +������H�&lp��L����l1�<��ǐlOO���g�v�%�6��`�Y����������Q�-$���S�oҍ��C��JK�>�HB�}��/&oņ=�c_[���i�.��8���<�������~>�n�^m���6���!=�I���< �Y���@��La$�P�G���j�@���|�O�ɤ(/���H��F��|`�Kp+��E@:z�ך��Q�Ǜ��;Q��)�kf���D֤1?v"dve����KS�
%)� ����u��ޫ�璣��#��K����U�����A�B%"�fM@��9�vuW�|$b�P�����ϱ�'q'����pR��� +��.=�f���CyK�qfa��8�D�l����$�Jb�+1@EV{�f( +Z��8)YC�U)��X���c&��>f��D�� ���J�r�1�Z&9�����m��{�Q��G�I�t�D!�`��J��� �Y��H!��i.bb�Ƕ����D1�el@�4�@d!.�D���5&\�Vk��nxA�ɔ5&X霌�Cg����8�.��3����D)�㸲��tC��u�a +�-:��%��א\̈!�� n��M���Ɓ�ڀ��m�#6��}���i�>6�i�BG���V'`B�C�B�M���GƵ�ߟ�f�h,�<xh�+m-QΠ��� (��6Q������z=%�
oK���q��/AQR����ٔU,_�AK� �f�-����l����FgO�����tpЌu���P��'Ɉm���B����x尻���z�����Վ|9���.�x���ZVt�A,d����!KE,VMJON��j|P + �c\D$_" "n�а8�Q�9
hN.�x�#ס8��wܣ��Hf4��XJH�P7Krs��0$<۲�Hc��)��N������4.����w*�n��+��h"�X�g> �=�a`�H +Д3�,(�
Y��a@����6X�1LX�-��� h�h]�P����uST��*�d� ]^���O�>����������~���~�>�}���ӯ�������O_}���@�����f��7CJ� L���/=�#����ѿ������翤Ƿ�h����˩��ut�^ﶸ��%۾����{�s�?�?���x����g�(*�� +��͌�s����ZY�r��~���� ���Vb���}���ٽY+�"�b;3�����h�ѽΕ�ɓ+e7��.ۋ�/Jf<o�Ѐ�c:��0�+�ז�bR�3��L�_.q 4����*j��f�;7�5V��8=0�=@ڌ� Ԭ-��QìsI��,��Ǒ�3@��D���u�Ũ�}?S�K+[w�i����$I>9�=�0��JI%��厖K���e7r��#�N=���X-�Ǝo_�g�1�������}{
�PsZ��.�Z�{�Ⅶ�6�,Δ���;=4� ��w���F�V�y�N�g���L[ �mC���������9����ƨs0^�e���ʄ�=�P�k�?Fm�86v�#�u�ǂn�A??fBye�p�����|��/�����q�h5�4��J�]J���d�fL�2����+��V�2Je7��ɴ�~7��Je7�no��(��K���1���ع���6�G�ﴁ�C�q�?r�w�8q^�ʹ�#ޣ��c����(ල�+���MG(F��e�c7�LR=�����t�ސ����
3��(5��4�X� +rw'���@%�,�>��
�q郍� �4�{�u`Xݾ��RK���B��!�b�}�X0%1���!*i��il��0u�
Ξ- +��Q�f�H�@�γ�k�}+����
o,��Ƃ�ik-ʱ.�u���Tn��X+6�}b����P��*� 9������1PA�Xj +�iі&�{aBb�&J#�qSC`_��B��ȥ��QӞX��4����!gB�`��R)N ��N��>LHV���. �z�-�q���̂��@�v�@��&�bw؛ +��/������^�@1�8��"�6AЛ�`�A3����K��5�ݔZq�R��� +���;�` ��k���0h���H, ����&b;���d�.M +]��n>�@ɐ4���Z=�F��i=�h,�${��&���-�%�T3�j����
%�2@L+E���]�ďЂ����-�y�2�d"xH���͎�|D��5�{���F�de
}���D 1�=DaVv�"��u�l ����.N4QՀetoY�B��^�Ȓ�Z� �yc�Aӻz��T?���ѝ1, @���0`�ǽ�Z"m��1�X��� +t�E��4��s��L�P*ޜ�x�� ��4�Z6��)0�H�Ѹ��uD�ym���a�$E�(��7�)����X������d����y-*��Vr)S��٘ +c�3����>��Uy
��uh)G�I�����2�N5�&���]I��Vגi�ϙ��]Z���A��L��T#Xe����668s�/�cm��]�)l,�t-#Y�b2�]�>Le�]�2�Pլ�\��,��tj �,�S��:��Th�A}����Y�D�n��]�*Te�ju~��2�⟫ �l�/;�a�4Qp�u/���QW���eJ��.gM��^�&�"��`�v���֝I��i�i�a�ߒ���faiɫ<�`/�Ƌ��*�&��U�K�����H>��UM�+�w���6GÚ;>����S�XK�d� +T;�h���;ќb�������Ds +}xMV��#�5�\?ӭ�d�IR�{��=�2Y�I� �GX
��<� ���ie��r�_���1����%�H9W���9=g��Y��=��Ez���.NjJ����3)ay���so�����z���rz3R��\�k��ʚ|�)mÐlt��\IB�R �ˋ�=���+�_�n���+�����H�7��os���+.��Ƀ�����Nv������n���Od�Od�w�/���;�r�|��Od�Od�Od�w������Nv9q���_ޜgNy��d��;�?�=��>�� [�ɾx}�n�Ȟ�d���^��P-=��y�x/ޛ�ӓ=�:͕�6�N�*��dO{�1��t����?{�PhҎ�u���:���s���'Ś�����>�X���4�J�N0D����#�`���\��J�\���gz�F0ӥ��{�~��x�ޓ�E��Z��g�j�d�j3�~�]�q�=���=U��� Ğy.^�< +��{�E��Xr�᪲�{xg٢�h�O�k�z�^�;��(�G,�k
����\J͇�� �ڳߴ� +������3��y0�fW��v�-b��2m̮�{��&f��}PdO �F���r��2�[��"�B�j^a[Jٺ���4Fz�����dM@ʼn���"C̀c�BFu6��X +M�a��T1F��n�k$�fv���~|�� !d���B���C +n̂Af�G��lY��A��@Ti�8����%h�D�*��8�[O"dTj'mu���*]��%�� +endobj +641 0 obj +<< +/Length 22530 +/Filter [/FlateDecode] +>> +stream +H��W��d�
�
�:ٴ!�%œn<��
pbl��wUQ�t߆g��b�!]=��b1�s��?�����������\>ޟ�
-1lOk1a��m>�+rr2ֈ�}���Wۏ�Z���?|a��s�����|�}f<x�u;;c��Xϱ�z`�=���g� ��:0v}�+���g3���qW��'��Ͻ�s����p�l-5i�?"��]'\�8�RO3�G���sk���}���f����07�X<�g&���,�5�^��� \�C�ـ�~F����Èhkg�׃�����?�ȷǿ����\_�����Ͱ� �HNی{o�p�U.�m�^�m����\ +N}3��o��㏸�N��Wp�m ױC�WܟX`@ +2���5��\ qd8GO'ٸ1�J ����V�80v�do +n3�16�w�8)�Mk�&A�)6� +�r\�'���`���u���DlHd���,�� �kq�
��Pw����`p~p*~�1dP;� ��䗭���.�rx;2��Ò1V�z$�j� +q��"��'�͇���͕g���a����ꯝ�1YU@� ��j[���)�M��"5�#�7
d�4ٵhFU�2�D������M��Y�����$
�+^5�+o1�3dj�T�۬��
����O�"��R���N��0�� ��d�6���<�f�4��Zz��XS���9�%rBS� -��P���0P�#����g��K���ٖz�=�m�ń�ؾS��N�,����)�f +�:��R���ɛ�8��0^�zIN��r���U,��!-�����G�~��}�-�be���Wu$�,��u�J���� Q&
�B17Q�fx��đ��5Lqb���˱.W +�N���8�l��5��%�(p�-�ں�[��k�2ڪ�J�?b�f����;��p��&��يzșJ�p��H�ˆ^76���Z�I��+/g���\���Ҏa��u"��xqrn`�y���;c�U���<�?�$*5����W� �o��P(��Ҹ��T^�/�\�/�2Z�`^-d�c�h�Q:��ת��\U��Ev������*@����iR)ҶD c� +QL��0n���@�����)����Fn +6�;(ơ��z�� �4$C���ߣ̚�>wU���q�5n��e +�ӺB�m�@�:�c��`���$��TE��Z!��Ua�
-��@���* +�ʕ<���k��o�`��d�T�M����;0��9g��YC���2�� +C�����Jp��V�<�Ŵ�b&��( +�g�}�!X9� +<{ѕ�'z�-���F�7��d��ga�e���7XkP�?����"���WR�tt��Icl�)�YV�N�0���1�p���� +�W.e!J�mv��f�A�������˥^����O���`��R\Ds�?������V�۾��ذ��*��ԞP��N��{���$1����m�~-��c�7a�9)�$[�qY��+��v* +���аb�+�Z�eszL�͕h���(/w%Iv#���~�����������,Vw�4�#k���*�Dk�#��QZ�9�zSC�*6��\��L,�a���xh#a��:ͣ:8��"��f�R~d^��E��^�e�u͛�����
���j3d� +��̤�_ +d
kd��TȒ�����B�u�G���T@Q�����M��f��^������(=?�-d�n�A��5$�������zm���k�6�ױ#�Yg�I�Н���Z��ė8�2қ�~���&���0
�������q�'L�=�z�tM�I�Q�BЌ��8�hd]�u��B2A�qώ�T�����C?2U��=\g�a�TyR��X֙aߣ�X'����ƒ6�:�r��j^���,��ڦ����"�ʯ�R�xI��H2dZ;H���2�\ �e���`���M�,���~�ͩ>�� +�"�ъ����qk/��D��������bHa�� _>�n��f\�L�?�v�8؛�S¤C���lj�C8�{�ϭb�cysJ<D��i���֩��*���^
���Z����.�~V����j&hb�����"���Yo&*��?�K�!5�����d�F +��ŵ��
��9'�$ +w�Z������aY߆T��UR�n�d���'��8���>*TG� +rp8�ٚ#uv�mq5��3��Zz�u +
�c�;i��D��A4~��ޜ<�Er��C|��
�V���`�K���&~�Xw�^��Pz?��E��~ +j�{��{��p����7v�0�C�0�,-pb}�sJ�#H�A�٪�J�)�o���hv���D��Y�3��7�we +ֺp~^O������⪵`��:n���o��
C��~�#�"�s��0hE�B-�^�WAZt^B-���*��<�0Wu��\g$S�1�R`���}j g�PeM̡�~ja�%�!R��B��t���
+t��p�q�#_kI��>b�9���f�K:�1rC6������J�z_��!!�\��\��b����Ʌ��Y�w#���"���HrɬͰ�rz�͚��CT�6���*�?�:��WTl��o��R���e�g<�R����ՠ�� +����4^qL��>f���SrX����m���m��H^��j�[�����|)F�xǝ<���E+�Kv��ZG�&֬-����fR��,��6C���̟{��E籝�M�@��P!��-*�����~��vY�٘g�������뾏�O�r���3Y������]ݨMit�@�����hj�v��'d����=�=.yC���, +/�P�!��*|>��L�O�>�����0_@�c�iC +yeSn5&3.B:� +R����W���L��捨��R�.HpI�s��`� �����ך�e7|6�`�4 �����:���������MtF +s�})�|��b�ד�=@f���O��-�=�Ȩ�9�nvZMgZ�>(���wܯM�(c�2���0�-#@}/�������H�햩W�_9s�QG"�LG�tW5�ݘ�͞Q�"6_E �r�^g��պ��7#��D�g���P;����kyN�M�a�9K�9�;*�Zk�>�5��U �Oz&���c/<�P +9�,f��'������5Z�z��)J +3��2ft�֞>����\kj��iO�U�,Ĵ�@��zG��)7h^�Z:\��Mk��k'M�`O�,�#�����;����Ӊn�h�K[�F������I���J&�� xAW�I�0e�?N5�����L���C��h�>NQ4rA�����ē%��/��Wւ$УۛZ������I3c��7b�gވ���L +*ߏX.�;���X��od2�8���Z�L(��@0����jS-�hy���69dn��"Ҡ3TV���˲"a\�A�)�c*Y�@�0��qШ>�Q�Y��jsЯh9�Fn߰�C|�q�qi?��ޡ��X���)�!W��^�TK��S���`Z��A���Q\:Y8�P�e^X�/Y&�U��,r3��ˊ@�a&U�b��pTO�E5F����b����aPa=� +�fAq�B��C���ܳ�������@\����O�u���� Qr���X�&��}�51s�dg��!R
����Rn u��!�̈�Gz�K%�/?鈎���)�B�����grT����;N�|�b|�:c�ł�p��mX�mZ�t�S9բȤ�)�f3�� ̐�=za��@����c�~1�M��*��w��s�!�9�(�U�V4k�{���=�@�Mk�(��'�VН�G��zmn����%��Nm���&�k=�|E�1"����N�j�5>A��n�뀳_,1��x��$�D�"0�:�p������P�;α�K�XbԥbK���)�����N��l�y�P6���2��
U0�w��������!���59z�RE\���J +��A�qoS�A�%?��װ��/G�,N��NUp�kΙ���pd����jMX���;ꟼ�M3T1���3٩�Wd=n������N���z��.�.6> �ۓt��~�Z���H��zT���;��"�����_f8��/�5������ve���A G�F�"-�X�z~���F�J��AaY�u�n$d�6�2�B�Y����2�9�#-�-�$e��)wh2��aHZ�t�r��W�p�������jrD�<��'�7��9zrC�����'u�#g�F^�3]�R_���HwNW�[��j3f�M -��h�e��O���E3G��ḡ�y���T�)�a�p���/bŖ��i�5D��k��`ʡ� +�/�� +�rTx��ۓ�?*��42�k�}T�q?��qD�*^�}�"^�(v����#�S̉Fp�<Ɏ�-R!Di�}pb����=_p��g��b���z*B���v���p�&�(�9$���1���Q�l�N���,������`�"std�&�?��ɜ?�T/[|����� ��=��'��q�n����y�����R���(q�5�o�w�@� el��e��Rw�8��=B�������G�S��0�����c~s�T��i�͈�SA��yTW�R���!������" �G�>b���&��u���=�l�=-�љ�ДH�W��$E���
���>ND���M���ޔl���]�`���U
��C����O�C4F�QR-��!�h�!�� +dR�-T����?[!�ث��41�'�\�n+r�gP����F��~l:�5��d���'q�Aw�ɭ.�FOWs��GQ]�k�z`�)�; +Mt��Ha�\ۘF��G��=N��N6�"$�.��<�����$t���ryg�)E��[��E +Ѝ�vId�[H��%�@�I��V�k��N�+��%8����JeK��o��I.���s\�+�D��F�lDj�Tpq�]���vh~��j�%�U���7gN;��l��Ah�+8w+.�K���T�p�ƻ +Bl�b1�a��8x�}���9Cdq��]E�7'#c��?c�EA�o/N�<l7�J:��L�ǒ�bi�k�`E|kpdl�6f�V�e�-X�`$
��w��G�VFI/���Cx���>��7ܢ��ʮz?7��)Q�/�O�ON�G`z�IJ��qJ$Ea�~}qJ�ޯ��_Ϙ4/aR�����a�GZ�x��@�����r���tվ�]SVD&��OW� �N���\�~A��^N�p� +�N[S����Jh�]�EpU�k����P������L�^����; +�k���*��p"�¾���l6gT�ə��&�E��ڥx��a0?�0]S=��-�F��zu���=6K�UL +���&�e�6�;�M��4mFN +%�Rc.%���;�,�vr&��`2rN�W��^_�>\���B���8/�[�.�iM�.*5k
=�$��)^�����QE#HdX��j����p��N���뾵X>8�Ngl�,�{�~�]7SK&K�W�d��[�z�+���+)�G� ���6qUu!�C�w[bL����R��z�Ȇ\��H:�}�E�I_S�I���J�t0�-������Na���Oo<��0�Ы��][0��
D����흛3�!1*x��&�|�˘�/���O�-�pc9���OWS�}u�o�M}M��{5��|��c�ͥZ!ᄐ�� +[.݆m��ʹN���(���5wԺU���N3��F.�Wt����g�m�B[�d�d�ʱP�+0�m,��4,c�B��F^�b���C��e�6*� +ge�v�æz@'�������kƿa���R��q��uL}�ت��W���=Ӱd�qh�)���qTd]�t���)�^�@�Ev�*�]�'��^��uAr���"����7|�w9ɷ��W��e�H��:�W:���ϼ��Uӓ�R�<EЇ�&�m�W�X�@�^��`�k�%�J>���2��CP#�����\��Ul�x��Xb8���SR���L3����ZR
�X$Dѐj��/���&�{2.ۨd������^�
KT5���5?��ly�h 6��IL�F �L-AmY�^Wb���pUY�l����O�*�*a�5j�Q�es�� 64k��,��R4��1_co;�@�规`�f���W�Q �P� +V�٤��^��@C^PHIJ�t,?��[*Ԕ4�"���v�?h�i;���CFM +U*bZ���r�,��4�u�[�R[j���x�`�?�n9��n^9LR��<���_nC����m��m��fS�a�1Y�3������ůW����E��О��[�$���-t}� +�vk�͒ +P,9Tit�e�YI������G�s�8|I����<����>��W �˙?BR� �a�X�f����"� ��*U`Uo1ݬ���Ql��l���*��&��'f�JĢ������ +&��z�o�V\��?c�����<�|���еd�c��!�n�"�I�
+Yo^��.�_aι���r�G6#�|��幗Ymź����}ɨ�/`�ժ'��D�5�ę0�ͥ�
X�)�4���f����ڃDy�Q +{{�#Ӆ5����>q};����|W�G��f�.�.�B� uԛ3�D�qt�'��Փe�E�uI�tj����Qd��ӳ+)����<S�t�My��s�&���?��*1����S�S�CK<��*ֹGƩ�����k��N���b�#���[ӓ@j�%}YF���R(�����_�郪n Ħd�X�q�$�C�c��P{�z�Ǚ�i�M{�t5�>/ף���}���98:�O���P7����5滇��4Xck�b����Y��2��A�b�t�����]����%ϯ��D���* �Z�f&Uכ�T"��e�3諲�]�;�[�8�Z�]����V�8���5\�;|�#s�ڈ���\M�Eq?#>i�B4�8���O]T?T�wՖ�z�6Py�yTZ����������������u3�4����/]��ض�Lu�*=n�&��d(;T��WN0��jnX��?K����g�P��,X�m��>0�Hl�e\#2n��m��B-��>]��e���s��
�ZΧ�eǑ�X��-nb�ڏ2j�RK��߮%y�osTݗ���(e�����8�Z�bC�j�|<g��wa����ϵ�8�\ IP��?��l��#A�b�};�#�#��]4����bɍyڪ,��,[�?b�d�<�~#&�;k���#k�d7=��̫b.�YfQWU|MUH��g| 5ҭX@0鼂�z��9`.���HDxŪ���x��/1��^��Ch�q�sV �>�S[[�7�{R#yb�}�[�5 ?�pRs�gg�J�~��O[i�zn�@z���ɒ#6|Auem{����s�]
!w�������c� ��cO�1�V�\l�x��Ԕ ?��z2��a�d���N��"Q�n� Ʃ��X&�����_������8��oY�P��O4Y�^�74�Q�˽1K�t��Z�5�R��ꉲ����k���C��&Z�*�I�d��Ĭ���>��Vs�$�O(�y�u0�$K�b1bNP��N��`Ȩym���U�1��G�������A���>��$�5�lMC��w_��5X�|�,d'��7�` +j�%8�2!(3�%�@��-�O �ԲdA_Ҽ��28�bA�ͮT�&,W��Mw-�u�IX�-��2M��4�NzX +��R)����[�G9�%֘i��w�1`"��Ю:�
��Hzǡ�2����� 6M����&8�s�wp��|<6�1=�U��a��v�*�uca#� �Nwl� +Jᴖb�R��]������I��X���i�U +6>E�~����Ѷ�"aR�x���&��X��t���ƀ�'ђ��ɓ����]�������}��˹�}ӌ:��'<-�
�j�٣L�NU�U�����'Xk㦖[ÂD�X@�1�B�#��ӱ��88��͊�_h�;�gJEcA�KH:�k�K�B���V�KȆ��#o + �h0��ja)������Ʀ +B7)�\[�1����Vw�~L"�'Bҙ�O63���_B
O�m��Dd7�Зj�D8@>jR��Z%$�q�[��ZqP�X��~�g8�%�_��Ń��8<djXчo�Y���#��*ד�w�A�lm<N؝_��'ѿ�=T^mPF��qSҼh�)�����sQ��,�0�g +{8�-�=Nߤ�/g��"k/����U�"�]�{�%^�s,�{���g�L�<Y�4�VB/=�f�|XE�i\({�/s���,N� �voD��-���wE$[�Q'w8�@>+[L�rdjO��Z���p�Ls9�b�S%Q�I�@�n����Az�+?��ڜr�$��x�������$�,�hsAV�/�)��_I���|-]�po�����=ɋ[��SbTK>��LA�ќ������|�G�8;FOcȲ�r�*��h-�f�;��g�F���� G����N�=l�{)�V +�r9�N8��*Ȍ���l��τ7m$�=�+��ɪz�S���$�1�I�7�V�3݆�� k�)� ��#�d(�g� +Z���Q�U����E<)9^O�f�ד�'O�x3 +gw��$�0�94���#�[F�V�x�N.{��|�����E�М^L�=�XL�F#Pn�Z����a�bɮ�X<S��^y!�'��yn�\���DpFDL��+v����uuҹ�,�{f���e�9��������ڞ�vs�y��ѹ`��)X�sXk���̵�AxMB�k��&I��C�7���~ϨX�.�}����n?��%yޱn����oR�#-K��2"`?��P1��e�І���}Cy���#a\c�{��������C�8 ��+c.���]i�����J�ƮR`�� +��tkZ�����oؽ~�c���@�6\_�}��%�i��E�,������?��MlG������"��˿��ݤ�]2��X��)O^�Dž��}��)� ��N���-�/u�ӄ=
b!�'W6�ݫ+�������ل�L6�s{@��}�x>e�fG.=
����o������c��x����Ϫc��
}���:�-��Y/�-Y�B��W��� `�|v���37�(B��@����~�lMLsi�Lc���{�7/_-�tԖAi�A]�6
��=M��d����@�)�z�u�ML��쪉-�iu�,8�p��(�oT��p���QƼq~�2�|�֖�������Z�?�K�E����+��ʭcL���S�á��i�k�#b������wZ. i}�%�0�Wi孽�����\�M,,� ��S���#�bk���F�������_��Aґ�T�%:��
���R���/BA�~?�N
��[&��v�nLTZ2zm=�w �H���! +���� +��!�U�[���\F�M�g�V��,(Px +p|�+��G"��NFx���p�aj:'HC"~�V S +��F��?�� +~�4��$���y����c�������K�� +��CeYU�p:��F0u!�<� +EU?�Qr��B�iԂ�S���mb�< �u�itrH5���^��U����ٵ��d�~/��HC�hP��58PK�U(��b܉3qSLO�N�&���j�ti��$�;ӆG�.&�%�F]L`e���:<���:����;nJ<��:����L"@cb�"@ +8�P� �īg�{G��X�8ܧɒ��ʫ }ƾB!I��#��,K��)>[֗Z� +N����i?���Ȭ$�(�s�=��<�K!YO*�<at���䉆��W+�����H���3*�q��$E��ȗ&��2�J5�*`~1tVkc�{u�� +{�ф��ExU*B@��UjǍz
d�ðԨa6EQ�6@N1SG��Gҡ���À��(e&ZBk���_ӾL$d\=����\ X2 +��ee�Z���m����e�Ad;W�:��?��3��ʰ�1���h���"O��$��Cخ�U��MJCG=�d駻l,v��ҫ���,��N$���J^��ۥ�C���Ze�����S��i�^����X�]�9%���T�(����ib�HV/������UF���W��\��cD�D^���U~�Mm��m]��y.ڀ�mZ���2�\�(�
��f�V���F�q���s��t�h�k+rW����(�*�m7Y�
��Fq���_p=��� +��y!+y��>w������¹��̇�ѫ6�@AKe{Q==�2v��A�.m����߫�.����E��.2g���n���AY��ݜ^<�_8� +� +�?�Jew����~�Ζc�0��3h��|���sÛ����.!�[$[E��U��+;0wu��na�IU�Es�!�uE���� +R8�3��y�u��j���_x&l����[Kf����d֩��#3a=�p�R�9Xj>���ģ�;��m�����y��XUe@c������l�!�!�bb�n~ A,�� +O�Y�F�$��،�r
h�0�`�Cm0��k�$i%�����)kB[�R���������F���涊KW5��6��n^��j-9��6�l�H.��9k�uҡ���m�4�a��"Y�m��2��&-퇾c�_Zgo���ۿ��G�� +Z�Ƶ�B���]/���P*X��ѡ0u������ b(�ed�x���t��)�9�g+�$�ܸݼ�~=\���
��_6�q7��B�̎���٘���G�D
2�Ƞ�ֹ�=��%�̾�X��8�u6��`@��&�"� + +��݂���F��0��\({������ɣ�Z��v"�{� �!�ݯ��j��L�Ѿ��@�ݲ��q�{�,�j������BKdi��4���$��Nn̮|���P����{��e9H`3��J�P4Y蚮�B�Rx���{�p\ׯ|�����B^��Z��-��^YE��I�}��7���?��!k^�Ʈ�����^�,��:����&d3��i;����P���M~�H,mk��?dI��*�s��u�`ǰt��O/ ͕,�d
���\n̚Kt�ɲ]����gT�Z.�����N��Բ/k��=ϩl�2��7�1b��5�r��M���3��>6���^�P��`¾�d��>�����j/��ujz�6ݨ��C��(/{�:r _E'p�l��J�ʱ�M���$g�W�6Rq�fHh4�w����9�*����6��!E��0bi�Ԫ�|D�M�Av/�ƙ4���#i�s�L X#g����/ꅙO��J�\g�U_��?�I~���_�Y��P��+=K�����zR��t� +����on��wb�V�.�`�V�{�1Y������Χ��Z��)s�{�Ot�1�\���&z��vj.: +:xA�7Z֯�[��5�*[»��&�u�ב+��ܹC��zv*gb�仐l1 +=ֲ�1P�x\��}�����Q A=6��z�uam[ć�)�cN�晊��1�v�y8h�Mav�����;����*u��?`w�+�FH�/0~v�?���ѵ [��K@��v�ߢx�*&6�W"���"�X��1�������Rک�� +���p��U�ݍsz��������GpZ8��X)�c8��?N9�����8N
be0YLd�ݦ�0z���ʝ��q<�J'D�3�����"�8�+9����د::��|�iuK��c����Ɯ���q�"����8�����4����C}DfXՆs8_1��%ޏ-��V�vI2W����Qܘ��@4
����*�҇G���K�>��Zxn���f���|���z��UK��ۢ(��$��BQ� +!�_�L�g�����w��>�(��w�������F����?|���+�B满ε
��4��;}��w���a|���6��$�n3;��{����^ 5sU�AXq��z�ۄ�s�=�0:�J�]��Ψ1�����a�k������26ѹ/M�t�I����ۦ��H�@�/��;de*���!�U�S��A������i�B��� +endobj +642 0 obj +<< +/Length 22178 +/Filter [/FlateDecode] +>> +stream +H��W��]��
�N��~0V:� +��'X�+����c��8ּv|Ѫy)U�++{�b���H�2�w��^HGܐHg��I&�1
E.n&��)� +pO��m_@���Z��PA�i�聛���,����Qd��l���|ʣ��´�^�E�P�v��YA��,'(��f��H�:>�*;���#��tʅ��Oi�Қ�ު
�� +�J-o��T� + ��&`��4���y +��_��)1�7fޑ��$*r�7����$��AU��Ut���hE�\gVUdW�"$!C�J�$�\0��A:8�A:k ک(��B�aB�a/L ?v�W0L�!��[3� �� +A:G�h��0�d�!�[Y����b��ͅ�z
93��ޏ�Em�1Et����G�z#ȖC# ?&#�˔p�����o���b�+I�����Gݻg�21,�U#�F�+��WD�>f��}i���ֈ��^�2
���x�s��u������T�q�+Xw�c�p�G�آE�m�EʠpH���U��*��c4�H/�b(Q5�chw��=��&�&�Z4p;ӠK2q{&���QAQpj��^J�=�>��a�X/>Ln�s:�� +��R�6�L��JPm�M1
�3�z� "nn�fm� N}�*,�P) +H-�"e�&�?� j�BX�Oy�#G�+��� 6��&m�c+B��r�� IVu?�)d�T�]$$`������=�� +��K���0a�!/�����l�HU��2��*�#�r���S�U�%MIf���E�~S�`�������Y�R�K���2 }����k�5�&5��2�ca����� +�7c�
L�8382��M'ܪ(�QE_�6#�Ԏ�Q������t�G8PېQd�`��.8��\��J;�98�A�L%5�ю8��� ���q�M5P�%�?����2�ƽ6�*����:DŹ�`66�I�y���m�b!|�#��·�TmU60NDA���
T �Y��x潹\�8TA6:�$�؊��<�Z=��Z�D^�x�9J����x�46CV���g+�p�y���\�Sb������~.�Ȗ��k>N�s��s�YNh�# H�b{N�Ϭ��vS��dj����'���0Y�O���r̮����m% +Łr��X,,2�R�1)-�`b�,��Z���DM���k/V����g��������r�^�Tֱ�%u��4��E� +��B*��b����68��J������6��u�O��5#����?�1
¤�y��p����@�n��H�x��� �Uz ��<g="�WI"����O����QC��_t�8+r����-Ƣ�@��x�v�U�H�#�vܪcC�e�e����cऊ��(K_���]��3��0�q�e�����2�~`W�|���]��17m���G� 3� I��x2
�1��Z�o��W��m���TfD�
]�'����(��!f��xqH��(��Y��A��@��`�5�#�A�/�K�]�7'�2 �����M2�Yp������1f_�^�����Z�vDG���3�&����f����up����)��;����s�(��K�0왪P�-�3_�"��n�}�Q������w�4W�o%9�R�b����Ӣ7�������T�Ql��hp��������G~��uW5�RP[ +��IA��"-�����Z +���d�O}W�0\�����D�Ğ�9r�<�4J�[�b�T��� ,���:(�B���2��4( ��%����fNm~�$�q��f��,��֔F�������k|
w!-��7�Ѻ�@&��������Wy���9Td�Cij +lX��t$��o�V����_<���QcUb�G
L�`v�nGT�Ԯ\����qLÓ,k^��s����9)��8Ar��-�g�.�`�-�:��(�/���܆C���m!�m0�z���(�����X +����C.S�Om;n}�`��K��o_�ᄷ �J����(�ZXߺ:� +IA�5 �V8� +A�8�z�i����v��D��upϜ��ڨ��[����+�Ѧ�����@� +/�O�+��J�ly����`�#<�̸)0|��)�N*m�R���c8r�:�� ���a��88��t�]JT����e��@f�<���i�`50�d��]���_H�~�n�L1���ת�� E�� �I;�>���CIY�J +��_Ea}Cl�Vy��������Lg���K����x/ 8e���+wI�O��v�� 4���(����-�x�Q,uV�S߷���3%��6WFl��`L����c��m��7T6�8k8����+�i.g��[��U�b +S���J�r�:8����0�v��Li��2����/�5���>��;U����a�6�m+F��C�#J������T���A�����=*{�x� �t�n�"㱇�~��>�*\�a<w�� +�M�aCA�1/�Hꢙ�����P��W���+��s8��xDKVof��Aio�G��=�AC��8��(R����gdc��<Ġ�e����(���1sA�eٶ����[8X~�{݇A�2�n9�ڢ�(�fd�z9Q�]5���m���x��-�@�ЎXa�Ō���>7�h*&��)ј���7[�R�r�9/�z3$gq��fqڜ� +P����Hm�vJ��r����|���O If��I�9�ɗ6<"��0NI2RL��s�y.� ��U,P�R��^��O٦���ԓ!��A֯�W�h��.1��eŐ�I�i�!J�<��KK �S荶��3f�T�F���VU��m�<k�b�����u%���
�4��y�ɦU5ה��#���t�m���h���a��;�ƒ�F��H���`�3`���r5��:�������h64i\z�N�?�G�2�F�X�#!%k�r�ӑUi��oF)�~春���AܣK���''�>�̐�܊��dj��9�z�7�'�<�rn�U��~TI���ʼ��9��,K��J����s$�l!�D�� ++�p��V��a���=h +�jd������t[N +f�*,\@#U��z
ݴI>�)�ɭ���GX)���`^�@ؼ�;c��9T����Y���x����<� �1ie07p���}��0���}ls�@���5#��� +3o <�Įm�{v�2�.<�f��L���I��r�w E[6d(���A�}f��D
S����d�����q=�7e����7AkՍ*A�<�ɾ�Bh[��z*�`l�tQ�)�Y��Vb�qi�o�����Pd���y�8�+���� ��� +4��}F���a'������� +����Z��Z�{�E�0��=�Q��2���U +`X�Gƪ6�*p�4q(N�R�r�h�u1֘|&��ŤfﮑXWuJ|>�3��[:�>N�k{Ƅ���ab�I�/�irP�MC�4�Iܱ�\<�t��G�sʷi�6���HtV��h�O+}��\KwY��Hw�ܥr�,}x���1K�Y�Fe�3��ҩ�� +�]($��H +A�Z�����L�+�\�B�nE�K���^|D����<y~�÷O�x�����O7���r��G��|g���˷����͏�GO�>�^?���������7\�{��������E���`�H���xT����si1����>�ݵ.���D,��9���:����@��dž 0�����o~f����K�կ������(�n�f�߅�*�bH�ȥ�L�Ә%�-E|��"v��ͮfu9w9� +�J~��Ͳ�ɠ��u���U%3Xʠ��C�x�nI0�y�0ɕu봘�P6�O&īK1���qZ���e]��L��5��b;�^��᙭2��+�ᵐzw���s]-J������yC�
���Tn�/(:�3P��6�["�52t��<=/ׁ�.�@���+@�OϢ(K�,u?���@pT��Mԗ%)MѨ:d�A�hjw�|�Y�}%�cQ��/���Ngހ�p�4y���>�p��14�� +��÷�����t�F:��}cI�����ٔ)�4��srۯ m���.����� +m��-5�{���|G��6jc�1;���%J�������c�=��MKA �nm�W�QB�d=�K�)�������k���A*s�� +P)�I.Uk[��'�ޛ�/N��������fOd׆��iN�;�\��۴���z,�o��|2p +t6��&�H�Z����(V�n�ti�����Z +T���Æ +����ܵ]�ʬ��X9���������o�1�=�l�e��֖�S�]�C����X1f����ۏ�t��=�ם�D���ҋ�|W�Y�'�W�����Ӈܷ��e��9�L_�a��@n���BO�#p�uDC� +���ْy��NT��Q�W��5{$�u�jp�,�1���z��#�1
L��� z�Wm�p�_��kx��(D��i���9��O�>��DCѴ��P�͑o.( +�c�c���a8� pf�a���k����v��"��܂�
w�g�g�Ej^� +YP�=�p��3���@3~,�n�aO���!(k⹅r���ɋ%��c�0/�]���(#�*&;x^[�V�F%������gZ�!Çpi�A
P{\��"h�;�L�X� +�ҦV�۷�͛�6ֆe�d�@D!���V�� �����,&yƋ[�ً*���j�5[<�LW! +ڞ���=�����L�X����%�-�Jn���Bb��\/ +�-���ۥ�A�;�VYf�XB�[�] +�N40n�=��c�������\��(��P4�|ޑZ�^#��� �0����2g�����<��(�\��5�ͅ`�ǖ����`9%d�7�T�����7�wB>���G�n�����t�_��t���Ų�?5#���r5�w��Ѿ4Q�v�>%�Ju����'%�g7
��2w_�F�S�o�3 p�d��3�oG�'��qפ�Y�[�a��Qx2�B{���B
��μ+�H�=���C�Ro�� + +����J�㞱�)f�!�8�kB}�=9C�5,�J m��a�����-������4��/Vf�)��_��ٳ�4��5eZ8�ܡ����/7�U�f~��y�?�\h�������dX���GS�d��v���n���'\|��F���f,l��8���?ͦ���՟r�0g<�)�&�t{HX�j!hG���R��f]mr�A�z�-{�8�)��-S���R4r[e��^n���l��]�P6���Ùsp
9�R +�+�_����q��m1�,�b�>Û��c�v��x[7��ŧf{�~����أF�?���irMO��\>��5g���vڤF�r��w�?|�4�Sv� +��?��<��6����ʂ[0Cji���o�җbʥ���hvJhv�����רIh�c�g]��V-�vXiǠX+)^˨Uuc�H�� +|�vߍ +�h +Dz�����@ؙ'֓�>d����y~�@p#�Hq��/&��m��"4\[1伕.[&߮�-�r���.��p���ý�KI�,,~Q��tAXS�#�N�����B����@H�Tu���������H�%���e��kx�i�WZm�Y��!���r%ƴ�eka�����A�,V�������,�a�L}���V/�FƲ������|��I>O� +v���F�F�8���Kޜ'���"�>^����I��@�V�A��� +�z� > +���x�e��ZVq%�\�yq�џ ��3K��\!�pN|,�'�Oֽ����vة���cT����o�-�pbC�mѓn{��Sv/W��l��c
p�t��/�.|���wK�w�v��_v��%�5�dmΊ�j ��z���P��ȉ�0�����/���b�����^�i����V����X|N���Vb���c�a@�������m9��� +�k���d���,�8@��d�GG��A��*��4"�\�Fy��E����f5~F��H���{��o�ɉ����������$m^����<I��t��ܰ�d����V7۱�^<$ ���m���q�-��qډ���aN����D`uM��kai�<���m���НL�Jp'�^��oF����"���`������iw�CW~A$����`�e+?�u1��q*��5��Xh�[����i��i���!늱G�089�}�l�+ +h�V�z�FEh`~vS�T��w�Q�<��}��sfW���S0߁� +�me��9"8�����1¯r?��z��� �#Jg��c�R'��v����7
�t�ʠ�=W�Z������;Ŗe��{���: ����e�!{��K����A"��@�E��q�~�C|�іv�X'��3A��UC)�2���$�c��I�As�d�}���^�X>�1�aaC` ��h��w +Va�Ҵy���;�Yr3?6�mF�!������A��Ү���X��uA�N��Q�kP>�+��u��"������G�1�eϟ�2���mwٙ�v��� +`z�kʕ`�R_Rw�7zKdB�>���?y3H�x��}�}�G���`��|�?�P�������bj�t�W�§�_��}�INt�������r�T`�z�Ӹ�dأ,�s��B�ɝIp|�2�eh�������;�����Y-�{�qxX{Q��v�mX���]��t��!�;j����3��"�m�
�.���5�E�[|�md}�H�������|�u�
��k�|�Y����0�����0��C��>b�t���慯μ�.��$��|��ࠁ���p�8)eA�v'�A����qg���kjᓕ�^�e��=$ 7�����e
pIW�}^'��o����[ÏM�z*�e�`^ +�3>*��_^���7Ƀ`�.jg�Y����k�<�M3��d��a�!�t?���-�k�- +�Y�k���M��J����\J�� +��Ą��a�%�5-�� jQ�����̷����Vw+������* ܝa�{�PlOƫ�UEMpu�`7R�r&Y��Rk�2���N_bS
��{��+W�'��.^'�"JKQ�9H�ƍ�|�̾F��b��������a;�0�3���'�E2t%�w�)�?����<Q)I�h�(~ub�.bǜ�@�E\Y� ���m�Y��n���g\9��q+�jdfG[� +�YM��6���Sޯ +3�U,�1f(�M*�a���jyO.(�9�9O��= �8ѽ�;|Cp��G8�TFe�����%�������[����KNf�g#�-;�Әῶ�F����g3�3�S��%�Z^�W����5�u��c�c�k��e�[��w�[U�ҌN���G�Y��1��6~��@�l�ז6{&�%_�N:q��Ck��)F�;�H����s�@8�&��ɞ
_���W�B�h�_����e0�?���%ůGQپ�z��ˀ2z�]?W���]b���DDo0��:�N� +e_M �!��U,�$�%� +3�n]v�,����p����W�\FՕ�"�ϳ3���a��J�fT
�`�� +�;��t�s7��4kÏ=XIv�ʕ� +�]� -Y<��4���H�X��f1p,9q����/����X�yYx����N۳��kI�^��]��%��Dso�h��C�W�n�G��M6��΄Ye<O�����2h@� �!�o��;d����ah�ʍs
*?���ơn�F��«��y��Am'�m��U�Ψ�r5�4s�\f�rov�H��a���MUV��E�C���DpM�h)����&;~��[���ή��ז�D0�=D���rp�����s���/<�+��x3���q�e������ԭ���+��VѲ�y�yZ�T���`/S)��7?����� +�g2���i�_/���ѳ=it*O�5���˦��O1��̡åsQYe��N����
�PTh-;���`�� +~ԍ]��k�XPdN&�t�{�H��6��P�{6�ζ��}|�A��o2��<�3��; ����K���Tmn8>x��7yz��Q��
�;�N� +�9���
�%�a�(��e�����%�.��.^��ߓ�D��`g/�6����)l��N�5�(cKu��:|r�w��5�܃A-9.���Yn `o�^���($�j\���wxjE��_�f~��n�i�{����nZ�o]� +��j���z����˺V���\��h��;��s��V�`���/���Z%���\)UȺK_��1>�`g�BԮ�`c�/�.cc�J�x2C���۵���pׂ.#������0Bt40~�a��{ozJ�
FZ�������d� ���I�����9/A�����h����A�s����n���ș�����l�������h?~mT�)���7|�lK�F�Kmhya�����Ӡ`�� +��&긪�_�R}\� +���{�<�8�tK�k^���8p�C��z��4��0~�&O���`���+>
���-h���Q�,0�g�beYa�f`�}+|?r�l�z��,-@Xv�E$@��pXY���²���X2H��>q�2Ԃ�BhOsJ-CB�(��~^+;��Gt�Esy��(��Sk�}<
IZ���/T�QB}�� +0 +endobj +643 0 obj +<< +/Length 21519 +/Filter [/FlateDecode] +>> +stream +H�dWK�]9 +�wD���H�z\�_J�H�㪙�O��7I~���k:�Ϣ��O���=Dԟ�* +�ǂ
V�zk������a �^�+�"p�-�/P|�7�
pN� D�-x�1�e��}���Ɉo_\�`|��t8���� +ٟ^T�����\z�� +=U/�f��Z/��|�-|�XL��HX헚�7���3�Ac��gq��XG�ˏF��E���T�%PWY��Qť�W,���q��[�~�y��G��ڽ�E�E�Q�� +�T;&6��g��0�7�aA'�s*�c��gv�*�K5�Ry��{'�A� +��D;�9�dpg��>| s��l���i�~r����U�O��h�~�aw�N�3��G���]��8��"�D�*����F`|���Fn�Zw�2h]� �P�{S�t�V4��퉃У���t��a �0Aj`_R�����Tf1����ik,����]9R^�'f`I��d�(��Ԓet���e56�jt��B=���a~�⬬9�'o9�G߬Y�! m���8C���o�z(�qL���M 7�@<Q�����\~q�U�?��U���LA7�}�(�����e=1LS�Ѥ���Xᱠ�C`�����k�dFͻ��s�:cQ���z@��q>ʅ 'ja�`�ܷ.�je<��xM��Ҹj��BHN���gX�5�wꭇ�cqn[≁�辜�
�u�
h�;��Y����x�+@�8��O韶n��C�P�?��;4:y�8������h'�$Ľ
spg��P����tz�^����@��"�L���Ԧ�t�İ}�4���0U)���nꍮ@�̪5��4"8n�S3�j��2�]rN�wr<f���yh�̦�����~ԙ���u�T�%j��(�t����R����,$ɬ� � K�\�}j�������7�Re�Y�� ~'���"�S5�~��5�!y�Ӳ�5$ �l%ܫ������n����y��[<�:Uu��>oZ��*���a,;&�zӕWm��i铀���?W��v\��͗�)�]�ؽ�hE>��`��5Ys���1�<�Qg�{���Z�y�L�3�2�����뤴G䕯ߨ� +�ύ�����L;K4N��˸�`-�����"\59� �y�$��y��M@��v$�HU;���Ez%h���WO�f��]����i�*=;�T?��}�om˩�q��WK'JE���zЎ!~9����W�E؝�����.j#p(�� +
`� +��"�.�dk;��z���V�Ih�S?1��K���Y`�h��xn;���+ו�»�y���:�VӔ�x��'Yv'2#\su<*�M�oT#ض�r1��)n=�Z��{g��]>�b��:��!�;)� +Ͱ�gE�p��:uH�:�0(� eg���h�y�e���!��3�p� +��"�9���)�|�qB�z�L�]�Ӂs��,x�,m��eت]�s�'�R�CP�(�Ϸ�f��Ń�ߨ-�;��]��3 +����Ϗ���8�r�����Gf�*����]��Ń��i��H�����`'od���إ���w�B�2�Y�pz�1���ܱ�.�q,�}5��-Ynt���8�;��91h!W����"@��pY$��^Dfp��7�����|�{�"/�2p����M�;N6=@�۬9�� +Jï٨_�vD#��4/5v1#����O�T�����F +�4Vz�W�][�{
&�[ +ӯ|�#���f>f��Ɓx?��PX�+l�ۿ*�3'����5�K��p��da7�3�X���dҜ�v�Gk+l(;6�r)if����t��o��]�wS��%��Dt^U�!�3����뙳�X#]�>P����2���+���'���z�:��5�/;N��0rg��G{�%p
q�Gm��k��4��A��Dw$���^�a-#��3)�,%��������q;V��+����>K�a֫6媒,T� +'�u�<���==�n�&c�2�w�=�[esw"���E~w�-;oQ�IJY�� +�������_��>|{�V�; *������n�LRzq\K�j�%Fӆ�����̼��F���38࠭i����m��]$�"-t!nB�}�Q�L��}��Z�~��#��u6�u[ �0u���V��� �n=�E�k�� +�� +E�ww��RG_��`�cWa +�3d�vR�O��TYʹ\�d�7Ӫ��#'�ԴA�a��g�uSD�A)g�h4�������k|�ϒ������y��z���F��f�+�Ģ͂ZǔG���쌁ݠ.jyz��$ZP����) �>��vYJU�P� +<�2��v�Rݥ�}-��;��'N�}Ȭ�T}9�3�(�n�E�ït4!��j��=aAϼZ��5<�K�E��o�m#����}��C/���[<�C
1�� �l��Z�� ?x̳R���� +\�������a����o��v�������@Gć��d%|`o5�Y����1?7FQ%D���3l���%$n�Բ���.YJnD��a�X�G�����˖F�L��.��M��oF�U�gC^�5��d����R��WM]��'Bsym�e��o�G����Gn�w`�ה�\���b4�9FpY'uk>�?�S�G��v�t��`�M���"?с9^�1���ĥP�S�W�� +g��Q��ǽ��.U��:w9 +2(7c5f��j��[���!,g��uȡ��v_yk�k��k)��� +�k~ +�� ���bX���U2���y�w��6�� +bEj�Op-��U�~�Q������m�J���5':{�*�/ +/��+�뵔��ѸK9#X�bHMUAb��p����[��C`��ck����s��V�?��FZ&���-W�������6�� �tp^�p�{�n�{���X ��������?�����0���?��������j�b������J'8�<҆i���'%��VY���9��� i��/�Lo�q��f�L:Ufh�G�p��^z� +������ş�d��8��U4��)A����O��o
����U3�����"�$�4���� sh�m�e��c��<l�nO��K�^(�g� +z�W��l~N;�g��������pU$��Uh�,%�]�u��L��q8� +�翈��Ӈ~��t\�W��!`�H�tNgo��j!x7�_���t����# +5�{ +����]������+�gf��kwNFj��?<�(D4����������/ {��7/K���a]%ĺ�'@�c�*\n-��O�P�&��G���?7��m�'���2�����=敜�ў�^����aͩ��^�|�,�i�Q���#_x�[� �Ȱ
�w ~�����U�a_��K���k�3�O�'�Ւ]ێ¦�!���E�U�;�n ��}�Iޫ^�8l�A8:`=���O��<��Pa_>ʼno[���V{v�6`�_��O�������'~���<�%�1� gN��4�m�3d;�,|�u�;̳{� ��z�GZM��-���i�����Sx�G�-�Q�ODž�bုʖmt�T���/��YТ�����Ӷ��c�o�����9b00k]k�K��=�,��?F���E���9�ʈRz>,^�e��W%`�������XߌЫ��4F_y�M��C����IO�~�H�H�L�+��Q3F��<B*�c��r9�2ǿ��}�I����Ѐ��GN�y��`���>�P�����)Ӯ�)=r�K#W�H���:<��6on5����\SW?`.��lo�ŕ����\��oe�پ�F�����n��u��<�n!�V�S�Yhsj�q%��C�e �M[���`�u�Kw��\ƪsJ��"�y��'iT��\p��������231�������>��!>[l-�+�=| �E�-��}�1�~X;c���(A��.xf�TI��eڃ:��g�ҋxm#��.���xb��������U5+9�j�c� +����dd<Љ�!� +�D���o��m����f#A�-��~:�a��.��ni;���۱���Y�v6
��â�؝�p����� +��6���������d°��$�{�z��p�9/�M�L�$x V��|r�\���}E�p�0��6����q�� +�ؒ:���X^���k*b��!�b�X &8�ۉ +�� +��>��K�nx���?�G���<6K*��u��8����fXW?�+��.�b�G�s���:;#�B��k??��n��Dҵv*\ez��AI�h��yFÀk}����d��)~>k���-[^B�]�{�X���r�C}��(���W��e�W��بF����%�k�a?]��>�C��b���Og��/�d��:�Ŭy!�9]Bm��}?�N�k��ޤ-��Q��Ã���)��<�t��`�fZj�4v�9ڤЬ��}X�yL�r�'��A����s*s�[��M�v{���s���i��}��9�7���0��X`��Ȅ�b��'K/,k �Y�8V�79x�<<�}vc����_��\�W7[A���-U�'��k�x�l^m���i +V/oԮɐ�{�FgQ����ɽ�.Rʜ�f�0��� +����I�:D�v�<R�1��vJ;��Ly�����aa[Z)�������qP�뱩8At4�;s
mWnb������1�Sv��ɘ�E���:
� +�����V�`{��,��O��y�NVf?}y�yTPX�l ����(p��u�/�x9y=Λ��nӶ��?n��0q�-ԷS����U��C�L=��y)^Q����=$�n��Nj�x�]¬�y�c�n��ic +]���铱={���ǣ���O��o�����ۛ��wn}���7w�g��ܼ�~�vkϟ>I������O>οi�[�^����3~������e��i{��}���4̿MZ�M'b�.Ҥ�����0uq|鹄�ܸ��l��ADu��FLڄ��=h����>_I9�è�����o +��}�&�`�⒘iFr'^�p&P�����R���[X`��� +��i�S���e1�O������+,��&��a .�m����
�B��l����62�Jy�~�L�~W�J�f���� +���/�|��4@�c����ܜSh(���0|�y_q�$a ��
���Kܣ�p����Ҧ���/�J�%p�MƇ�VV�-W + +fBh諌���
��t�R�9�BnN�4nVo�vU�O���}8ȼ;v���Xb����������`/��q�Đ���F��+��6@�h:�{UDJz*�y�^2�WIJ6Mx6���|�"��`V��,ǒ��z�6�Lc�ӵСΥz�T��bF��@��2���@BAƌ� + +��h���a����XQ؞��N������h����k<��HV����� +=/z�50v���!%D�f����!k�c�� k��Ň̉}I;��K:��"����B=a����~��F��sdC�Z���c�?d�5��Xvx[���˰��4R�A+v[�V +�[���eN[��v@��r3[�t���T��as�$����>m��u&�[6.�Jt��+���<�ˈ��)��6�_֬ +�^�%�E(��K� ��ګGH�J�P�Yy����7���v?P@�}8�c�R���a8l�"9��Px��%��f��U�k��W�}��4
1��)�2٦����{���
��1�\���0{2|@�Ŵ����R���VҠ�춴�~ua�u���^��k�Q�7Tٿo�}��W�>=����Ç��~���[���x���|���O<������o~xx+g_\~#'', +,ݪ��˝�-GS��=�����b�+�L�X���谊Y`q�j�\�P���� +��Lq)�/����9���ټ<qy�'��՟�w��������oo��7����?�?Ɵ{������xq�,\^�o~�y�Y�
�x �ϛ������؏�r���� +�w7��PBĤ��t���D�?���b�7����q���8��U�*�?(��#�!�(��v�Kw�xl���#��b60
))d�K�VU8^[�Õ
HP�� ���A�N4L�\
�g�GUe:0m �J� +� k�%��3&F7����,BA�'�Q�����(CZk�e�f�����1Ű�T����ק~�p��,�T�����ojH��U���/�� �z�Ad+� +��}�`��ԡ�C��Wc�5
�9U�x�UT"�a��{K��X���Z��,�]8
I�;���a���-��A������A�Rq͎���@�{a����=�I��l�I�JЛ|B��F��)�J��g�Y�
��g��I0��H{�PM2�+ +�q��4�w�?�Y��Fn[�R�&�n�B=��:���<�0����c�cE�e��>�C�$�u�z>a +�e�[��QZ� �>)�J#B�vX��E���Y��ߚ���sD�-��{��g$���<7�>��<���t,A���
{���t�rT2�T��:)Z?���L*s=��f}�Dnaz��t���,�E�e�x�øм*8�aF2�n'ѷ���)��xk��(����!���;�GZK|P�O��ɗ��B�&϶�=��T�*��Iڜz�Rt렁l=B6�$���P tG�l25��Τ�C��u��f-��l����SI�ٺwd�D�8 �K�j���������UHW$��/y1� +��3�(���̭��0�#Z����g'�C��(Z"�v����0_��N��04�R�������Yh�L�p6�܄ɚ�aLf'�T����a;�����l��T���6��o�z�
ݛ��� +H�q�|M� r�j�O��{����E҂G;�J�RrTԄ x(OII�y�IIL��(�31�:K�-�X�^���8�F���(�����g�)�4�ޏ�|S�Z��J����j�^�� �c(� +���������R��r/����M�T��:x:H���I_,�M�I��9�K�YV!`����]^wc��q�.��]�q!����ҁ�� �����y)Z���t` +r� �3dEf�Qƫ'��A�#���AÌ��)�VC&��X��lםy�{̺H/�����v��,������:R�w̻� +4дfk �h�累�H��6m�:D�Q +4�Щ�z +��|-�?]�#��t��[�(<�*�o�38^�5���n1?��8�nٙr'����L���Dž�xmǐ�����H|>z�w�>^LK鹌� x]G�U�]��Z�gq�%I%�� �w� +iJ��|�b�=���S�k�q�Vy&�;�CF�6�/��t z�^����n�2$�ǣx�D����q�u��*��H#E�U �1}U��S��Z���4��^SQ���y��T��@zmڦc�o��Qp,�i����J�^4�6�����^���*T��o�2�97��>F����A�����R���\e�c� +��4��W3�#�8�J�GX��k�d�O�t*�K�0��9 ���O�U��Ӑm�-�~���Y�P턿MV�pI6`>�� ���;� ��^�T`�w��_[N���Nk��S���ιL���)��ع�`?&��b�q�8ʴ��B⣲eߔ�WŪ![� '�z��h��t
��i}a
S�[Xx)+K�`v�>h�&��
a�e��y@��g����^�\�EX].�m3�%K���<~�����Fu]�%\�������x��:0�zK�b��X�u��L{��k��ʯ�r18���6v���i�_?�����+� +���<P���[����7�_ +L����S�po<��� i���X�u�p�P����vq�Ҕj����y{s +X��>��%�·
Ьx� �λ�F�A��W�� �"�_�S���֩1 +r��3�d +me70�Syu���?����&h�2�ʰ��+g_�1�C�I�ߌBpx�5�q���g�"�J]�����XR-;:@i�u��~H���vy�m4'��Yug�&ɵ��O&�w���c��s��a�Z� +=�O��ε BW�zd�8�Y�ƞenf�a��p�l��~��\6�*d������yI�X�[�`K��+�%=���x��ô�qOd���)�_�u���5���g�g�Q����œv/JfGu�>�� �-���D��f_!�0H/]�Q��Stx�Y�(C� +�*��`�P���rL�(ПN<���(A���y^����nX0ܭ�/&��S3d��̶u�k�T!��ӣix +�S�͌�k +ib
��|smx�Z|S���g����A?�� +�X�cZ��] +�wFVX�kTUh�b��fN"h���5�[C�E�E{�h���/R@��㋠c�kG/h��B[/8�7 +ج*�0KC�����b���!�K`�e��7R
\7�\� +U�_+�(? +D�JY!�S7���)7 +���E��V����~9��
W��V��� +�[n?�����,���j%:�����{g~uX
��������� +kR�?��yE@1W�J{����.vG�����|���
�5�������p���F�`֨�5s�FՓ~k�euҿB�a
l3j[O���M�����q��)��1���r�* +�/��|"��v�LՎ���bvs���e +��z$}�6��5qa�1c�-竏��>�b�L��k`\�_%�7nu�^،�I0
7��\��]�j�"^��T���SW��N�Ц�=P�a%�[�.�Vsf֣RҶ�d������� ��[�&����!��|��2��:l����-�������-�/J���h���R�qFD���od@ld +�:ٰ>�uh�^����qy8�lj�� 2A�]�/
��Y�Q[�s�`�-�>\΅Kw��GO��2�˾%�:��I��������}��������}�����4��},f��뿅�ޗ��1�hb}�+й5����s��qx��w+��U*�W%�L��ܘ¥� +���j�N>
�sz�!RJ����=(�N���)�t���VS�ݓ��I�H>�YV�"n~G�2��j@����"�_���XPM[�d�r�V��h��L� n���Xݘ�gXq��:��&�Y]!� ��*pM�����c��\��+ �c�a,���-#�Y| +�xZ���'�v� ��1�(@2`�/�W�9���:X� +p7' @�����½u�/��G���(����YT�(��j����@Q������b�0ŊP� +��~���w��$ic�.l8L� ���F/�:@��6>Y@8+9�� ��rFQ��F5 +DY2CS�!W?}��:�*���3���+��|
F@f�X~����v����S{NB;���i*Z� +endobj +644 0 obj +<< +/Length 22087 +/Filter [/FlateDecode] +>> +stream +H�LWɑ-9�O���� +�$�����a���o��U�$����]�G�������ٳH$p~����@�u +�*���g[a��
�c*7��(��a�ϥ�mu������U��~�����py��iۖ��s'x�%�A���p���^g�s�:�i��a�6@G/Ͻ[�.���쳬@_�
.�Ӿ.�(�6�rW���6J�<o�di�����g�����}v�Bdd��צ�z��A�^�e��m�h�J��� +��L$�D!�jc��6"6�\0�3AKuۆ�6�Enc���뼙�Qk����}K��<l��}�I^R�OF��kY�CU�����V18�F�e�ĉϾM���(��7ѕ����`��᧲�A� �W��͛Sx�i@q�ҺM� +L�L51�������(D�-ع��bú��]�зE����g8\��~�r�>�N\l��H��q�������ͬ�=���d���\�q�8� ��|�lI�Wޙ� ݊#N�'f�ka^���q�NnMT���8���~Z4W[8(���l�%-8x�X�Hpϭ�����;�Y��C�,f q��K��b����{~g� +���A��>.Nr¨�®NA/Y�z\:��o|�Ī��[��+ +Ȥ�.s�u�IԇA]�~Jo(|� +/��1;�-Mv���܌̪T���H�B�ә��Lg��>d�4he.���K7�����ɒ7 +2��}_o
9����Q�^ a.���*x��L*�Fae���8�,�WWC�Ԃ����Z�V*pq�@H��}xy kY�(����Py����V��A����-���Nk��z��5sx�����L�=�1bn������4;��4� �*aTq�X�W�bIie +�-s���5�"=ij�J
jӺ�[���
kL�W���N�T��GcQ;[�/:%3���w� ��@��Y>�}{@#!����+F�6��Q� +̍�9���7>����M�H�|����w/�5�[MgM����8n�����l�/�L�j� +��:poo����tЯW�m��MﶒL +��+�/fe���-�bPx� �����_=-����� +y���q�����]*=�އ�� +�}�{p��~�
�:��;ہ�h c�) +|�#ݲ�uN�%� ++�r�Jd�������㾥�,��%:����� +0hB�� +1���SQ9'����v,5�����k[g��n��i�w*��/���b< � +����%r�Q�ujS�_���&
i�-P�H�~�Z�`�]E��N�bG�ms���;����!�t�9��r���Z�C�|X�W��X��Ί�Ο{�z�*�e������r +����S���v./6��˯~��8�/�;�X R�:�^c�S�Fې�k���PN]��� v�"l�$vɢ}mVT�5E@�uS�ߟbz$EiH#J���b���"��E�kjM��v���^+��6���ȄDv�W�ֻ�!W+�I[�*5��o}���ux�������j}�������s +�M�Z�9� B.�s~���9]d�_�a��P,E�#� %؋Y�Ӊ��T;�"��J�/*�����\b� +!��ϊ��n +����?ʺ���J�e"Ỷ%|ge��k���C��Cy���h9�O��V-��%��������$�����9�@�p��d�a��&�cq\-X�l��/F�.<�uxtS�k���C�����\ԉד8�LM[+�\�����5�wC��`�"谣���ə�d�jt';*@�V�s8�U��"�������G�� � +����5�K�9�zRi�� +������
`H���L�x7���V E�����D�"��IQ�7��7���\���m�ʞ�wX�i~q�漚�� +������l��ϱs�_+�nnB�����ʪ��َ
�8˵�F�� +����6�)j���"���cǧ��h��%8Nj=+� ��d��O![�Lle���ߖ���E#W�l�-�h����;֧ +�Z�[*LE%G�z����{)�J�I��& +�N�<֯�K����,n2~W�X�_3��ɡ��3B���z����. +�K*� �9 +j.���Ǭ֯���,�\����� +s�@�0� +#'�u�䅳vY"S|24�M���v�/7���c�T_�*pK�����?����ǿ�����+�M��,3�r8�%��/�VxY����&�s����������}�5���~�7�q��-+���o�X�"w��y�����!��i�a��=������T��AS�;�2���z$FX� +��{7��R��$�_F����r@_���oܖ܅.X�Ez����`g���÷z�A���܊���u���m!� +D�3q[��
��ս��Xm�+έZ@(�&$��C�6�����â +�+����$aj!T���h]d�ڶ���ѷ`Ss������D����#1x7�(�k�'��j��%� +�Ī���Q�sh4
o��ڟ���^A(/˓،�8w.�����ޓ �^���a�Vq���O�\e:�h���\^��*�x�:_y�p����,�)�����%�X���>F�m6J�9C`��'�yȓ�U��.C;O�@���t�������]�P(��;+t�� +~_���vP4�j +�2�0��peT
3����~8nl� +�ʊ��S�U�s��i؞T�.��Z;�̕��v�q|�-t��}FK���)��t�d��DcZ����8� ��d�1m���<�ĴG����#Z{;I�W��sSZ�|s�"�H��S��b��j +{]M�Z3"�.NR�\ O�g������g�֘ºe��!dCɎ6?E�}���k�-guUf����2~UpH�癁�2���I +A���0� A��Y�t���^.pg&��c?|@�9@����_�G����.���bbp|o�0�s΄o�3z�lc���GF(}�s��"�G��
�'h�`%�N2�;%Q�H���b� +���%��n�OWC��6�{sX��mC/�_X�L�i*��z�=6r����.�p�C���ŽݟC����#��:�'��?«%G��]�O0�G��s�,}����^e$@3n=K�H��mD��=�9 + ������[�ˢZ�A� ���M��" +P$Hp��N~���8��D7y���B���N�����IF������k��T������\W����F���>pp�*�i�� +��;�f �1T(zQ�l�:��_F9"F-�a��U�4n�����#N�B���1�|�urQ!���þ�Tӻ�c-?W�,m����h|y�a=<fb�k�50�"�s���oM���s`H��n�h�~~ܡ���y�+r�z�Sm�%9���m۫��m��m8���tZ�&�/�'A>K��/xt��ƣ7yt1,ϣ?zvR�l�����>Y�7���&��>p���g�� +k�N8���*@ �0� ���\�v6>���<;��7��(��x4�8u��=�s����T�Nfڧ�����B�4}n�p�G����"8b�l鯌 +�s����]�{�i��QԽ�~�� ��1��
]�A��\���Q��q���T����:l�t�P��3>7�{n�p�Ş���'�(��]�Wi�j3��T��XM����` +[,�I��o?���e�f�'+�q<j��f +�a� + ��y:$��,3#4_}�����C��k���V�|�n����u͝ӷ�1r��|]a�
9-<@�J��䇻N�ZOF +���H������ �U���E�h�_��x`�E +hp�q���}x�������RP��Y +�Z� +� +&���,'��}K�T_g�a'a�s��0��`������N���0ãצt��z��k>O�������ۉ�Y�X�`�ᅬ��������^';dz���U��%>}����p��� +3A�]�&��:�$K��-D[��K�S�~��� �\��jq�e +�XM��hB7�[�Ù�Ff��2�\��4�k����^w�x�9"l��a���� ��{g�S�s3� &E��l�IN�KByō)Eo��{���,�W�V�,����Qd��J�{F���l +�fP��}��+�JU��~�+�m987W�n����D�L!�f�9�)��Z���x�U�M;�bt�殈`�+sh������fi9��YH_(�c��Sȭ��-F��8u����i��Z�l��I9����N +���2��ZA��f�]�7��1�q���y(��'F<�^���Ռ���~r�+¤�<�C;�X�k�%#����v4����}�q־<5�kz�3._K6$����aR����q�:�#��_~��-���C�s ���?'6��� +� +��R5שvm.m�ΉO�l�a�.ރ3�[��%��l:��}K�*���.EH�}�^���fv��P�6��vf���
�aW�R����p�M3oQ�uxb/d:�9��t�����r�غ��b��G���Gv�[V�v ��:����)��7� �R���ʂ�j�i�9����q�Q�p�XU����ʧ����ʭ�5AK%`�鳭��z�g*!�`iM +�?�g_�@SITzm˙>a��n#��F�
��90l�v��Siv��ɱJԁ+i�>q�� ��C�F)�YIf�M��$s�0A���mY� +�v��ΐ��5�Ѓk��Ƙ�]�"pg������U�7n�1]�"X/z�k%z���V�Lo�<T�%l' +R�"��+� Sn��P���#q���^KƱQ�n9'RMQۤ�X��$l�E���G�I����j� +_3]JK�yŋ�t�[+i��I�Z�G�z�*\ � � +��7���:ۋ��M`4+�+��s�׆�ʳ�.`3{ޢ�|t٪�_2*ș���P�N]�{�Oo������XƲyM�
b��e����oU(G��.�R`Ksx���и��)����17�Co��!�jr +�B.l�)�l ��"� ��(Pn�S�� +�;�m>]Ƨ%�4/_N�S]�e7-$��RF�%�s3��2}�D�HaG�<��1i�J�l�
�sKź���ë���y +�6��\��"�뾳�,6NCl��Pڠ�Xm6n�VOj�{�ݎQ�_ +A�H�ѭ����'���K��}�(���Ze+��� +Q+���h�_!�>��$�$Ҹkܵ�C���j�����E���ѳ*~O��.C��l�"<�#�꽚s�x^1o +'X[㜌Y6�#Sy\쁃ǚ$�̤�h�B��2����E["j�}S���b�KCu�q�.���d��5$.r& +�F+"�"�V�^|�l�|7�M�e=�/N�S��N�鼫:J��Hp�I*�e�.�Ch'-��R
G{�3���[�LD��[_������rC�Mb�4A�bX'h���;��1An rM��Hr#ԡj�b�0v B�@��C�R�d>n�b7�a��{�T���s{��Dh����Uݭ��Gm|j�_ߪ�
9��9��[�Y]T��9��3�=ڜ�R�S
e����
�a��N����Gr>{�!���������Z9 nS���U���D��{T,��2¸�_e�]����!|���`8���\�:Zw\�Ҙ��J��xm��ʕV���rNi�n�� +|��
�R'/�������ؕ�G�N3�/�OK�!a�:�g^+qޘ d3
�Ư������l����yK[��A��楅�R��+�%�j��SP��s���M[�����$��L�,v��6���?0s���5�]�Ix����nX|l]�YJW�6�j9��+,�oх�ɹ<-�]��p�|a��!8vڷ�c���.�[���
N֞[W�0r.JK�-�2�[�8 +�0�бĽr+c��^sl'ؼ� +G��UM+ +�����*��T�<�������=/���������S+��x�DYG�]`?Rzq�%
����]+�G�G�اWO�L?\��0:�P�q&��z���\b����?�N�8��� +���o=>=p�Y�ﬣks��V�%8���
��\j���7L��e>S3�";�bIqߐ���^�Ě4��9����ZR��̅�IơnnL�1��"�OSV��$�'h����~� +�,H9�]Y�^&wN�o��c#�d_���qq[�Ux
7��($�ЇOI����
^��;��==�rI�ê�Jaͷ��Gz��rz���L��������ĭ���ϵ�FgR�{���ON�-��}��*��*%S��`|�뜠 +�j�e�9d����&�G���w��3-+FWp��Wy�����U]v��C��] ��]���N�n�T6�n�+���E��ӧ�n�ϔ�����G�w.o즻bz�(+�:��N�����*�$Ӄ!�F���I���\�%��g�i��Ø����5��Hg�lU s6� +�k)�_�Dž���!ѐ~���Ppg�:����z��*3�����*�u#��I� wϝච7@���[�� )Pe�ې��:፝�s������[)ң�)Վ��{T�� ��-ŵ�� +�,HE�aT�Ԭ�;�6Rmr|�Z��͕�o��$��V��ƚ�n��eX9��" �h +�\
�
ʾ+����z��&��GM#�vxå���f�A���W�3<K�[�bmdua��Vf%<��_̑�<\)������Q�� 16��-=� +�[�d�PU��`����E;���*�9�jtz�b��7):�z��ˑu�0z�+/l�������q�1��e-DvE�������'7l�ދ�=�WF��'Zk}Q�$7f��a�s��SK��y�S����ww4�75H���w��(A��z�Vd +��qG���H�v#x{ݵ� �Veu;Z�����#ZP� 4v#V���9h
"�$'-;#�'Q�=�@ܦI{� +�I��e��ҫk$�[Ts�L�>I���%;4�r�w�KD������!�kɬ��ÒF��j�m�ck�V�5g�f(���o����L�/1���)4 \H��B��2�=�� +��R�SkX(�$�})��[r��C����8�y$AKE�ˎk]Y��D_�d;�#s>�][��s +7)��<�g���nI�l�;�<Vj����k�W�]�C*4���ए�^��kV�W������FK���+�`b��l��l�h�fJ�+�P����9�����8l�$wJ%8G��6*�i� i�����UxW�^t�q����9Y�5r����a`�~K9��_{ʘ�p!rQ]�Se���k�L������� +_f�6_�z��b��v6���R�wOg��@
�c}Mު��E�}���:��=5� �����nvf��8*�5Ċ--���f�\.ۣ�J6�Cɺy�0b
��� +CA�ٶaM?�o����b����-@ �;��c� �Z�f�m����]�;L�/h����b���YW�f�o/�CRڝ��]MP�,p�Xs<���@X�A���Й�%f�d�5�jF�P����m�W����yVSS�����; +endobj +645 0 obj +<< +/Length 12945 +/Filter [/FlateDecode] +>> +stream +H��W��\�
��?�19�A��(��
��n ����)������c�Ÿ�擨bU�������|��k}���ۿ|MyLo�c���G���£E$nK?6��;�ќ����#>~���Cɟ���-:���`��C7����*�����%�s�����
�6��Zƣ۬�S��u�b�ٍ�h1������È˵�=�B�I0�Z��"+�c蘹�Y�w�\��Ṡ��o��u��0��q�\Y`�`5�n>+�c���犬�2l$��(��;�>V��{U�>kS� �8�����B<�)'��'�Z�AP�� +�S{[ *�����\�:���Ek NP�`7�k��&XW���
옏� v������ϺJ�+N̫1�q��Z.}r��i�:�1Kb���C�.o��G'��!�Z�W��e;#�.�s��+�ƌ�)�cr�:A�|�36�Y,��α^c��tj����¨>���mUe\ܵ>w�B �ɲ�����X}.�JZ��Ĝ���y�p��=?����M�1�fZz�KI�>�y`t���S;?�&�`�Y�E$���^�ѸX�Y��Vٱ�+�
��em����f�V`� +QxT���o���->��Ϗ���3�-�~%�g�w|�!�;����p��(9��9~���GO�[��L��$����>봦�>攨������2
�L���\>���h -.��p?�.P�5�1V���ʃ+���u�A0,Y��}ٺ��qJ��wSvl�:[�.�C@.�;/����);0D���p$(֔ӽX�
ō�4c(�bE��F7�;y�{gzgco<��������;3����>Pܦ�ۜrj��)_������e�=�}� ��?p��E��%�
cJ��W� +�U���")x���z�ӗ�����x���Ϣ��FQ�'�����Bb!�q!�x�O��B.�FO�3�h�4����p�~�5�*H8)e�B����C���C��A�K�r�nh�L��,��픿уw���A�Ëe�U+m�y��6�����@X��C��-���S�{J0@�UB����5�3;��xdsЦ�g����o�Ra���&^��F��s ����XL䨡�A怆���)A�l�'� +�'��JA�zNߗ����������v�J�u�-�,��1�� =�|fqH]�k� +Kˎ0�_�/���>� +�����(>�G�G�#z����w@+6ȼ�x�z�Nxo +��5���R{@�_)����Ő�����J��u�mT������p+���\�W�9�k�I�֢�Rz��J�=�v�Kp����v�`24=����~�����^�鳸\b��t��(����������3��O +]���O�ɵ��6���¯�U`%QXx��/Rxp�B��
zn1�iI�!��e1Zd0f��=�C��,�i�����7w��v5�:��9��T�v`� +�a�#;�h�Xf'���j�� �s��\��yb-��y.P���`Xo_.B�hl|j-n����B�X6������\�bgi���= +Ь��y9��0�y/� +(`&���"8r-��*��`�Ap��Э�Zȃ2P��'H3�b8�Wѹ�ݷ�a���
��̝y=�Z�?�v���CM�*��<���eƼm���xG� +p� +{������ϻ.O\#���z#��
�>g��9��{������9սi5}r��s3S/ua��*�n��$t>s��@X�QX0ճ^3�9zISչ[��cKj����[V�������O��rC>,!��l��G �RQ-S�=YV��N~�����k�GI7����WK���
��zHvU�굴�,:$!���cc��sT:�����v6CsFW�O:������� +�1�py=��]�C,��"�v����/��r�;�5�I���ǿe|���ލ��Z�{c��t�y�z�e2� +����x܃c }VxlM
MZ%Ս��US7U�'g����M +Yh���,��?�����!�)�\y�C��6;O�hp�ˮ��.��XW���<�9.�/���Cj��a��6�U�c�E��� +P��%�=�_w�͕J�q��f|e>0�2�sY��ت�����m��]ƘT�}i|��~�~+=�Z�4�2��(��}�;h���V�;c}�s�*�}<0�f#��os�Eίr �S�)몆���ЮQ"e�{���4@�ݙoj��D�
ר��*�Ë>��9�2�r�b���'m�Ȕ�������� v.���sW�pԉ�|QN$v��aMv� +ݠ��#�4-۰�ݶ�0��nW��ت��S�V��]I�uSF�G�(��·��筚���Pl\�ɣY��RR�A*��fmdw%{J�ĈC�7[3yt@��� Ê\�)[����
�G!�0alړ��_&���A�}3� �O��M-� �̼O�Ж9O\BĶ�Z��ag�"n���:��3ˍ�5��^�n���3Yw?�����,I\�̉��\�ض���w��
ی�בSS�2�� +��W����C��ږ��9Z�E'�������}ەW�0��M\��
|Ds�<��p��74K",����+qi��f��d� +��j �F_��)�j �@�'#؋m��X��Q��5�K9\�z_�4�};�����j�U���s���.��w���ڧk��h�u��i�j�.�������+�:��S�Q �ҜL�y��Fޜk+��g~�.l���\e�����S�o�B`�rݏ3�zT�� �Zo��H��,��%G�F[ נ~kє���D�C��^0�&�����LG��������ft��_��A3�!�gy[ޗ��r��>�.p�Mrm���2I������u��Ƶ��B +�̜*5�֔�PWvy�8z�F�1i����z-���J���ou��5?M���ɚ���C���Å,����b;õ2��{$�e�S|�1�1������(�ZӃ�}�÷4_�z��p��%�qy�3���c��$YQZ:��@)W���-{u��Wj�(�L?1�6�Lo��B%)�J������� +�¯���U�%vndO�gx���f!7��-�m�BY�+�cJK�4�s�N��͡�E~ņK'����y��4�gŅ#S7աo9�f(/�;�T_��Av/�����4�M>��jyl� _���A�9�!=�.���}Y8�f[7�p��7m\GVw�q�G}��v�#Ŝ�z�!�Ԕ"[F;X�!���� +�:R��S��p�o�xYR�P��5wK,#og$���n�V"��",ϲ�U@IM����O`^1fj��N%N�0mu�q +ON/�0����V��v(�m��O��@�E�sgG�,X�a�QIo��v����ն�����qن�-�릚���x3���)x��,1�몙��Q��V��>��.��sh��]F�@��{�A��W-=ʒ�+.� R�S�[�l\e$�hrG��hݲ���uz��r�'�D�]WRYu*OU�dwN���n�.,����u�D�Y���o�Òʈ�Gx�cW�����$$�:�%L���S +]�gO'}����AQ�Uc$����GG�k��Ic��U�sx�=��8�*&� +�i+�T͚��V���
̕3n�ނ �^G�{�P Ս��-&���qk>�jk�NWnC}�&�e�XE�S�����K};�,9M�&����dž�zړB�o��ڵY�2�V;��+�E� +�[@�0[�KLHʊ�/��]�\���W�<V..�G�A�J���j{>*�ը�xi�[�M�1f��#�|f;K��z]����,��]��fQ[OA��C#�(��i�ʎ%�oՇL)#Dթ�W�2'��pJ�j�9�_�`�L�}*���Ž��0�v7�Kn���$U�e�U�C�w>C� ��$V��o��h���G���؈�''@:
��dl��N���e/�����udW����O���㌙<B�܆/9<n����lHZ=�p�]1�=� +Ԉ��0�:v�*/ϑ��t��.��u��B�9S�}�F�(^�� r,R��S���v�D�lm="L6���T����`�[8� *��kו��7Kk�;~�T���a��`��o�c�.� +3>���_�<��n��f2���G���>_���|�*�ƻ����g���^��hs~-���:հ^� +]l�� +�������fO��OGx�5=�=iɴ ���� +��'�JdF�&�h٠�5"C��d?"W$ ���%�e�p�����9����A�l��=��}p��e ��J=_�]7�n s8L�;���������X�N���
��zX�Q�>VX���y#���u��e\'�>A�kIjI�/����^%Z�R~��/����;�b +3�e�n`qx��|��.��.�|�}~�Ց�� +ȝ�cB�v�y.�/kd������/f2M��j �!�<0�!'����6N��ؠ�#=����V`����4�6� +8,�~����(4�{ +M5ՁK2�͙�![ +ڏ:G�`�J�Ξxu7bBl��C;�p
GG�rSW���_X���=5h�8|6���u��#\������8�s��U�9�ŵ�=�#փ7s��j�D'[#������Ec�ۖO6n!�K���>y�t��G�;��|a�Q1�ȧ#s=�N�&mq�m��A���s0� +4�="<9ӝ�h��\>i����Nn���s��r��bt�钇M]+E�r�l� +������������F��ɤFjpM�C����l�i��_7�������l ����җR��]��dΧf�2��lK)?��Ex]M�WھO�ZJ^��� +�+�2}�)��x��P
��P_6��iKt���+��ݣ�����'��eV�N3>7�a���)
��~�]�R���u�-��8)���2^ +�'�n:�ʐإ�we�a�z��89G1m�?���;��r31I����^�cӑ�jae�mϢ�mR��M#������Yt#X�ۋ���!�a��mz��p�/��MqR:�1�;��
}>��N���t���1j��e�q�8]榑9c +��Y�끱r&��\�Ip`S^�� ����D������r���qRk?w��١_�+�e6i�z��o#� +�n���b/7S�%�����+n+f�G�O�L����b��A�fd�Kۙ���A��e��\'�h���&�Ik�Y�M��W�tY,���!X]���w�#x�e�kgѷ��+�����<ba�I�>x��7�+��}�����0?g�v"����x�E#@M���l���^"������/������;��\�n&�u;>ө����Lݵ��S�7)���_0z�SA���x殁dF��fD5q6K���K���&҂�p�ͦ�`�JN�nNM+Ad��`�"��͡5�[o����˥�Đ����n�3K�L�����ڍ2��t������vqk���9����;��q�ܹ' +�y� +'���mq��S)�}c{E��H��Mq;-e>
�]�QEV��-�+�ӿ���g��d��Tȭ������&�']�'g���c�l{�֡8��R�o&u�X ��WЮU�>����]e��^cg�Ca��:O�P���;4i��q�?�����K_$b;�v;���'��z��u�l9N�z�'gI�wN�a��[+�y8�E�}��NȖ���gq�7� +� �/���Nbfj]
��Β�kdp�b���&�o����i'oS�V�0%�Ť���:�s��uN��涑�h\����Q��~�8=���~���7l�%����F��z����TT~�K=I��$�q�O4��F�ROR'�Ζ�� +������X��Ĉ�A$\�d�݄���G���~���u�������$%,\��Ow�=�$a�f3^� a�O���ъ��]]��:<8^~n|R}����>������H��&����2������o|8<(~<Cԏ���k&ןʅ=<��7�G_�}�����?�;L�PK`�� �$�!���#�#I���T��6um�{�F�$=vH`ϧ�$�Dvg�<|)�_��-���.$���,���D���6$�U�Y&Oi:��V�b|�Ķ���˛��6>�S�{DB�<´�q_��J �!&����q��%\�5gA���\[��#��T�>]��� +����Q`��C����%ˌ:�0Z�@b�Y���o���$�shiQ�O�:�ɀ��pd�ʈ�7|�6���R���,϶�����l7>�G�_>���Ε�q��9��(�z�Y� k?��g��,������~�[ǀ6��g��,����r�1�]!��bC��.u*E��g\Nj��ܨ��
���M�u�gg�ָ��|��=����ӆ�/X��%4(�K����������/,�y�,���)7A��8�S�8a�Js�E��_��[-Hw��P���(��~�)�Ђ�J~��J�\�������hkIh�M�S.>=;D�}iK�dH���L<2Q�.(�5�9��$~���a��+�����s�IT"_�~��O]�g�n��t�4E�NX[�2�0������p$yY9M�JC��T��� +wCb[�_���*>5+(�,�+�f��x.E&�b&o��U��H1yM� ?CX���"��:��R�ʋs1��SlJ.�HHDy�Y���|A�˫��&���5�%o\r�9���}s����3}�bG�$���NP�R����� +��/�F��h�}���m�oW��<�ؐ��2�F�� +FQ�[-D� "�qr?�b�S�J8 � �-�)���Ռ����6$�2�#_ +��W�H�5��-P�>�>��齺X3\�A�T�$�U��f�H�y$��pwm�� +endobj +646 0 obj +<< +/Length 3495 +/Filter [/FlateDecode] +>> +stream +H��]o�����?覀 +4ǒ%�ѕe5B�� �$8wƊ��.wy�K�ʯ��$��P��"HbY+�}vfޙ�����?]\i�V����Ө�}�T>��.|
���Ą{�+�t�3F�yb ��wbÍ|�b����qk���r������\�#Y��ׯ8r�D�>3�\��&��YE�7��������?U�)2.`��H0B��E2��VܜV
q"�KJ1ي�wV����%�*>��I%զ�s��I b<�4�tE��U_�{<��#%>W}�/�� +�S<�V9�� ��Q� ��'p�Y��Ԋ�W~t�߀^��3�{�W�� �M� +���''��Gb�F�H$������Sr��B�����/�nt�6Ъu� +#W����Ey�T>7# W:e 5
m�Yp���%RhfT����^v�k�S +�l���=��7O1�� B0�.g +9�?_�%�T��PU�T�%�()K�:x��b��$o@/�W�,���5��|d#������T�)���ѻ�zw��?�� ������a,�0�?Knb�LͿ�g�*��=5V���r �g�:CR��@:RXtF��/ӷ٧\�~݄u2�CFz��w#�����*���C� �I����A�3��e���ȶ;y�q �X�7�V@(� ���{��2�E� �ư�\�bn�g/�I?�K�D�0��T��WJw�|�^�m� ����i/Ri�
��bH�Nyi�>-w�hv�3�nǥn�;Ryw���%vʒ8�L����Td�0x�̫)���Lv��kT�L%ڃ+�QY���F��l��?�{��g�@�)����X$1�����@�^��ek��FK
G��ad _��=W�H�?R��%)��Y�Ħ^xJ(R��[ې�\�nm%X���nm���nm����4��Fxfa���8��G)4������x�}C�h'O�S��s�K����*wvZ<g���%����Tu�$N��N3;[�cƐM^�3����Z���qc���/�ly�)���"U��p�!�%�"���,����̓���oŒ�5����J��ͩ��X�.=�R��m�T����u�l���=W�H�?R��%)�-�3�mO�f�{-_hf��s8M����� +����v���5"%����^�������lq��J%I�աt�����wh����)������0��qL<����)/"�aYcꑂ�hv�3�ng�,��E�P�v���&<�ѳ����Tcc�@f_a��@q^�(��v����RD;�xɜ���M��x�1�OH��V}1�5�N��&�2Ï�����NW���R��Kw�6���cdg>��18G~Y��I��+�XkY<���c#|E�G�#�*�T\=_Q�E~Xk'JT��\P��J�W" +-��ˣ"���0��06²��#;�������l`]7S͢�{��N5�/I\�hghLs�`h�'g9�?_�H�ƸT����gQR���3��e ^�msL�#��xBw���Om�d��96�Ӛ#-�Ӛ#);�9�b8�9ހ^~��X���k�}��F*6MɅg���O�߫���ջ����VwU������Y,�0�?Knb�LͿ�g�*��=5V���r �g�:CR]�@:RXtF��/ӷ٧\��~mNYǜɱH���p��WS��23S���JD�DT���Ɵ�=g�3P.RޛW~���~���J�e�2��4��R� ED�ʪ�_�Ukh#�^��j����.7��55ʑ����r���YOS͢�{���,`�z�듺�i�l74"�&������W�h�
�&�vC{C���
�C���Z���ړ74ܼ_�P����ݛģ��}� ��=R �E� +j��E���I
��҇�#�`�G���ja�d���Yh�&n�I�����4N���}f+�SgH";u��d��yu����Q�:^��
7^���TRͲӔ�r��p\�eէD�e �fސ +��?���� +#W��,����2�M����f��X�JU�*E�ISwA�[db�x�r�������!��|��u>����� +��u�: �u��J�(&����SIİp��<���j31!�Te�͠�"5�M'� ��:<6�A*#ҟ���~�h�Kf@Y���D�� +endobj +647 0 obj +<< +/Length 16507 +/Filter [/FlateDecode] +>> +stream +H��W�n�H}7��� +NEBRI�����Z��Ow�&����v� +�� +"Z��60R�F.y��)\x0��R$DI��RcB��P�2T�!t� �R,�m�(̸<ZZZ�u�
o�� �v�;AsF8<� �
�<lL +�E�n�Ƞ��0
� EF)<���ҵ��$n�S�I,5bJ
M����t2�lP�F(̇��Z�j� +���8�8NL�v�D�9�gE+�`�¢w�Z�}��d;$�B�j!;�ĝ�z�<Pf�H�Rp�
:�g..�*�:����!8U! ���T����R0~u�1c�X�ń&O�7��J�W+'��U +��Lbu9��!������V0�����a�c\a-C����N�f
6��]T���v)q�1ju����~��`�r_G��H���YA��- +��4 +�� +�ڦ����L�P��|�ҭ�{q��pe�� Q��)��BZa� X����*�ہ����9*<bP�ε+�@�5|y��DM�?��A�b�8��3���GC/a�JXo���f�3º��Rɭr�#a� +�~O�0P���.�;un��� +Z���G���~L{AC�c��Q-�;ŶWtv��aa +�|Z���w�g�=�̼�e�h��~R4����}�8�Ml{��7y�݊96�*���6�Σ� +����F�0X@��'g[̐+�L�Z��.^R���Af���%߰ޗ멂��R�þ7���t���`�h]&
���Nᚚ�i���lx��N��M�]}�;�sۊg?��e4�� +<+��B��1N0R��R�d�GB?���V�Y�m<j�P)-���(
����W���_�Y{��|�>4K������@3�tE�}EQ��en��,U�Ef|�a7ƚ� +�g�ʺۀ�ך����X� +P���
�V:�z�ks�gYl���N0A�m��ɑ�� �{Z��4`cf���:�X�'E� +R@�hŏ�V��6 +��́�Y�q+�W(����IQ�6_�QL)*T����v�+#fZk���9!� r��6��x]��TJVF4Hn-�t��IRElXvS��[ ��Ǩ4ElE���;���^T�]7| +�գ���?p7_M��~�u�����m:8ȩ�nc&~=VF?+yƃ}jq���7����n/'���s���
rO���T�ԳO��elIf�к+u5�m��_T��_�?,]��I��4��55dUQ�vE?�m������@��{y��=R�j +�%npXl�Z.����O��a⩦���ɞֈ!+�e��~y�t>"PQu9("ԯ���}m�����@Ѥ �V���(/���LI�I�c(X�N� +<� +�&��am�v����i'�jm_��^DȨ]6}0��N(�����9揃�4��e���q8J�����,�gj�_@�e�)�ܹ���C7���Dk�
����T�w�U��5���� +�<�^tK���=Xh��݊|������nU +��|8����c�8be�g|�p���� +��m0g/z�鈠�!��zf�R�U��$����p�q�b���J���$~�X-G�:�`A�g�kp�Ko��3CDn�ܢM��>h�lRg��r|@�%�Qg`T,VěT}I�d@�Q��X@O�"q��9b +)�,Y���?�C��&��(W�GKV1YAv���͚4:���8�jX%Мr +�7�*����@�Ḛ�B�N�k��fC:AYտSb���� 3��}BL����RVGtů�]���ҙ刮&vK��:K���Wz!п��u<{~���/�zx���7�_�߽|�x�ZF��o��Ͼ�&�qs������W��~x���x{�����K.�
���/~�?}}�����o�������?�?|�����ۇ���
~㟿�{��Ƿ�����o���nCϾ~���������ϟ>��+���ǧO><}��O4�v|�?���c����ȿ�?�؏G=�=��;^=��������)˭d�ZK�[W��xnT��0�:� za*�>]+�?�X���H�MF�`N�vƐ�^7*�DeO5r��Ҝ +�ʨPh|I��d�m?�_�>�)�e��l��*�0"�0o�����S��#8���7>�K,�����D<qM�v�ap7U�q�-�R!�p��)K�! +�p��.`9ۈ +�g�w�0gi9�ڕzw�I���>�J�C��O�k���f�W�lW�@�<�����;�6F �"@�����w��->�䒵1���G-����G���� ��4�v~
x�7y*�8��Kycn3�~D���Y�Wm���]�ʥ���מ��B.��M#�Գ���q��y�sz�%��5c1d{)ڭ�
�Deahɽ�s=�ʀ�]q�����w�Y2��l%/% +��v��
�|J)�� +��On`pb�H�f + �}�S8�b���7/Y���ql�;ؔ?����"]��f>����[�����YGg�l�pև@��]�x��\�Z,����������臙��/�U�?�Y�W�#��}�QY�tqK���j��C�����E�:Y +�K����8+�#�mA�xa�@KEe1�sD�7X�]ab�#�"������Kf�����
z��8��/f����PB0\�a[���#VP�Lr�T'���n�sV~p��HbQ���\��<��.����!f� [}�!T��!PG�k��Ɗ�[`(48�]�*ಳ{P��EX2�[�\A�._ uL�'�GW��: +t���H��S��S�]>C�Y#�0��A0��U����M�mk7�)��D��'�;���=�A��}1��*F\ӓ�JJ��H���I��<red!�wN3ڞ)0�v��\T����n�/����}-�l���B���R�^��ԩo��:Y����yN����,}]q����������+R�J�D}��T*0Ϝ�s�]Y/k�=����V��{"�q�渤�M!�=F�s+�@1�����-Cp���Z�\d�̥x�,�5�9�yR�E����[j�F��Q��0s��09�SC�,Sb������xKy�/h��֦��Ϲ�E�y9q��F�G�h���7�}��<Ǖ#�������>���_��uvY\�pg.W����K#^�ڈ���Y��GsOc_����u7��C0���ʖ<�B +L�D��ιl"�M�l�����x�~g��ɐ�y� �����0�m���W� +^���; S�+R��-i�O��m���e��ٜaG5��
%m_OkN��r3��n���@�1��e�m���y � +�s6��ٮX�M�f]=@〨,�ۥ��#ZLO��
R�k�@���`�ؾe�M�a�'_�2�s�� +�$�"*\�u���V@d���K����$��LQ�a�k��k��5�)D������Ն��W�B���$�����d��|�����%�]o�3�~��)�m +��W��Ĩ�L��p�/�1�W��}�֨P'�ͬ��Z���J��{���%^�pL.|c�z ��Q�.[������U�g�b,UȘ��M�%]��}]!�b�Q3�RJܽ#�:�S ���6�'��]���½���&uW���N����I�����M���$�n����3���u?���)!���@z�;����&s! +1��ϴ�팲9�μBH���� +Ƴh���D<���OFH؟z�\���~>q�<���i�w�Ձ�c��%��l��<��%C�K�r�eK���^=�:lo���ch{�Ć��-�y��yVÖ +�j"�'c��Y~G����s�R�(��1 �uP># +�; +]�M�����q8k��sEi*����%������5z��>z����x$��6\�k��v~�-���=/��hg���`� +݇1\�ٺ������k'��08����a��a}t&R{|E)�*���GH���̬��zLv1���_<���x j���Ga��lv���䫘y/M[�{�??뀞hnoz������]Y��;�ok�u��E>����"��a�y��'O�4~֣��w��n�aC�^����P�u7L�F����_��-�/�z��.��u0�� ��A-���x�w��lnV���Y'�GlR���*gT0,��γ��>����Vc��8U�s�
Tzw��f+�z ;����;n'���+���]Z��5o*���B��[�xR�С�LT�]�X����v=@�<���]ͯ���Y�$��m,[$���(������s8Z����/��=���oPmڼ����'����u���� ��f�-+�ⵌ�����
em�+k�O�+�vX!�H[���Z��C%M�O�y����迅r�aF�Փrjr:k�GO�|��UV������r����-?s�����&>�:�>x��{\,!��?�ɧ�F��+���\0�Pš��Zf����3�X���%�^�/^�����`�;�匱��rޙ���E��轠�qa@�� 9�Ez3{�y��+�(J��܋B�nf���/���c��ڄ#�x[��
�YV�a9A��c�)��a̡�(�"����C�_����9�SQ.�ΰk��R�c,�߰8b� "�0�`I�aJ�`��;I����E5B�I��m$Ê�� +k�2:��^k\_��oMW�ފ�CȚ���[I^7, +)Ȼ���S|F@���܇r��q\��H�7�r�*�J�>�a�������CW����Z�BIU2�^�y�?���^��џ��P68#�=ZHgԢ>kA���VGxū�a�EUR��C�(L,7ikM�������Q�p����"��v.Z�0�B��p9�~FU�}䊻�&�'x�!��˿��-��0��GM/T��§GX��a8�P��a�:|=#�9���ߡ���"O[d�)v�Y�� �",�u�2$�+��zE�ڸ/m��P��#��v�yfo��<ei���˵XҢ���p@�[h�@����S���p�eL8+C�b+�����BM%2��N�)��-+����\�S����\���`�nY�l^�H_o�h��2S��Qwh qU�`�Rd�Z1и�G���qŊ���#,>b�L�I�j`��0���d+ +������v���3�p
����j�tυ�,2�yb4�h5�L>���0�6� +cm�m�Wܴ"��p��#��E�f|}�F��.;ǝ{����2�e�y��Zƪ�0`�17��W��zL"p��\`)��-��i�}E�u�gW�i��Pﴃ']C�r�"9�%�؝��:���y�����Z .���eԥ+9P���z%१;p�v��]Ⱦ�*[{@Txj���cu�}���?��+Le��'��yj��>>K���>E!v���x~ώ\\:����w(��FZշ +>�v����N\�_Fn����L����5��[E�R��/Lu��?��}�ޕ��O;r,n]��A��eh6g�>{�, +��XQ�'�`�)�R��~���#��lbJ����N�q?.�z>�ҡ/�1���� +���_Z�`R�N������U{f#��m 8�x�0;h딲��4a���]��k�{}���Sڷ��X)�l��x����Y�n�z
N�J�E�Y��
'q +;O龝�7(�2�����> �ڄQ�q�!]V����Xܢ{ǃ_���'�TL���㉪w]sA\�Q�� +�o�=��1u;�G]�p�=�����ȿ>�*�c����������
�"z��>(��{!����^|�o{ r`�y@��7����8�+�����k?s]��t��&8����H�شSV����y3 �gg~Y����w��F1N�ո��k��{˻�MS��P\k.O�A=�����Z�ژ!P��"3]�F�6�GuW������5����a�a��z�k�U�Dh6�S{ +�6�j!�k����#��Č��N,겂����[���x6��I�����PfmY��]�I��eC?3�����e� +T����c��mKrū�,��ѹp�v�4��v���Ħ�a]Q���M 2�eDŽ :�:��O���!Cr���aUt���.�;hy��]� h�t��#Q�|�X��t�d��l��~���v��l��Lv���- +���@z[��][qdӁ!�����W�fo���O8��������5_/N.q��*����9e�,fk�a���= ��`�bSB=DBfi������[MF�5�v-E��<l2Z +l�a����#0 +xW3�������_��XR����R��E/��� :���R0Q��|-f +endobj +648 0 obj +<< +/Length 18723 +/Filter [/FlateDecode] +>> +stream +H���K�^�
��z�r�)q��ـ���35лϑ(J�n���p�3����8��Ө�'J,���UB}R͓gj��AJ��y�1f�;�GJ��V�b�Q��8=!6��ߚ�u�ØD�}Naeb������aC0� �V�����u����QaH�� O�6�
K�v���g���w��@�,���e��I��Jl��������m�p��_�0�7�)���X��ӌK�g{��A��O.T���Ԗ���"NX�Xs�0�&.�� �q~Z�����<2=-��2���/����� +��\�A�ք��C�ۿ�7l�ʀ�A���!Đ�b(���� +sQ!s�,��n�s������H������Hx�O8��0'�;4��O��2����>���?-�υ���Dj-���R��}9�5}ړ���I��B.��S5M�A��2��F�87}OyZ +��D�Z�5=��j�K�����70���k��nK
���,W��~dA;�3+�j�'� ZW��P8Ϝj�ޓiĀ����Rh|�<��i��&4nW��ŦK7��&5�H�s_Kq�Z�����(/Df�%��2��a��>��TS}�"kq��J�b��zI�k8�a^$R��4�O���a/��r�tA|5D6�W]�Ö�1ۓ8� s���L��������]���F����</�n���塕1u�{S5c����%��Sx>Nw{X݈5ͦ��!�=H|o8>wBLl"�Po�I��J�k
tŀ�ۧ����=E&. +cL��ނ��·�*RcK��)��.z��6����ˁ�Z�����T�k +KS��e�ß�=�g$J�T� �����La�ƽ�f|�?7����#X5v� +Y�j�p�z;�h�ݮۖ�e����wX3�]Ɲ������U�g�j�xHQ���%<=�n73�Pqoد�/[k�Ʈ��q�.Hf-N��C�}ђ�m%��}?o��a��i�u���
"�!�����r�e��hs�S��ـ�9[��as�D��IUP�Ӕ�a��_���\!�3���ӄ+�������q;� _Wa�����hG�+���ʗ%���5
���Cݢk�/���d��)�����ͤ��������$n=��Һ���E����]:~�������L{���S��]�04��/6*g��Մ���0���W`���=�Ϲm7�u��B)5;�N��Z�*�Z���Cw�{����#p��^W�z�"(*<���ǎt�=W�m||nǰ�O)[�`��>���-X;� �Sv��Z�<�}Ci��1��:ڐ_��d��Z|,4�.����-J\�B��R��]�������l#[���崝��>ب�x���}3�P"��sdv�QK�~l#�%_3�LW?�
e���1ݦ/���TY��X��]�{�y�ԭ�P���lk��k��1!����-���K'� ^�.�<�4tWa��pk��w�9�����s�ذ�����&����x�S��C���Z�=�����]�ۆ#�~��_+��2'|)���������R�a�3W�(�|%�4^�j����G��dj�c1��e��z�It�Z�������ȯ�Ȗ���`{��"k���&b���K8�e�ؿ�ho��A
qI<!##n�s�)|N8[w��e&\��O�'\��q�@��f�^?x�ukϚmZ��i���w�����)�����`����ݸ����ㄱ�`��(Al� +�W]��i���)<Ѯ웞��?E���H�����w��~����%Iu�X�7���?��,��@��>G�zE0W����عH�{�J�ڷ� g��}�!q���4�����p����\����x�2.
�>D���辘!S�����lQ8.��B�h�H�3�0<T�A�t?���֤�v~��56=��v;� +xǶ����HG�҅�!�0�<�x
�rWSt�{��Ki�1���� A����,*�C|i�azC��4>�eLh'���� +eq��=M��Nc'�<�^5�nS
~�������E�)�_��][����W�b�j3h��K�7�?�����K|��
S�sB� !9��
R�ۃqD�)n
X(�"��c�a)vp)�Cd�n9�A4��,��R�������"��Nc�%u<1`�T&$�r_y�5iY��Db�L�:��
�SWȒ��&��ٷL�VD��s�4K�]0Q�, +�~�Q`�yO���AgPV4J����կ�����b�yd�H��d�%����+�;�_Ԁ-A;�@�������9����JG�J���H�l��~��nx�2t?@�0"�,���A�����$����G#�?k'��$����4���,�<�@Xɾ���q�� �M'�T��k����ԌX�&aE&��5���w�:��P7N�T"6�Id�M���j� +u��Ķ\ +��ڛ�:���y�r!�_�p}��ϒ������%mF,Ș���p��6�L��7����u��K4�`E��=r�������]6��������/)�I�_��9��n �Р�"27�. +���S���l�����{H[��e"��ES����-Ǵq�R���]Cf�̥�ŧ�r=�H*»���e�o���_���]kKz������t�30^ӿ�32`��Ϲ���x���,y�*���md�����^K �(<��ن���;����<�� +�����x ��ۣU߈��xK|���Ztd�<��K�d٩a�_z�;0�n��$��Z�#8v��� �{����ҏ���ΰq�7�7`��!���qo_�~G?�_�s��h�Q�gh)8�G 7�--��%w�u�貧�#Y�5�ّ��sI�ρ���]R='{�=Ƃ�)� m^Dl���C,���z +���)����<���e�^Q�6�U��/�0��v8���)�g��k�hɨ�z������l���?8xm�?��߂�5�ʪ�%:�������G�+8�|��5��A����{���j��8�g��b"���k�`���i��k�1�Pk���y�Mrظ%A���}�a�Nsa��>�<��m?o +�jJ2�R�[R����;��
;GCB�5�cS;��f��.�e�d�|dX楙0ip��O�Z!6��A9�C����y�v
k^�B=5�~H� :p�����!��ԝ!�/����ݬ,���g;���Y=�{
6�l��y�ΆQ���E�=(8#:�up8�U�\�7�m� +ϒ�_���2��+G�%���y�G�������Ga��)�S�ѽ��^Xj'�݅���`����宣G�C�|�}��70$����9�`�6���{(��T��?�gQ/���]��Y�)-�%�n��a�l���7ޑJ�����GC�i%e��1�B�鼧��(>s)r���0[����l���Ҵþ@��Q��+�O���ܒ�-��N�Ր��%M�R��^��ˀTvA1j���y<ޡ����^�qwo��a0Ge��dBجSb� +��vA� +ޭ��+ݎ\J�R�ì[��~Io�GL��0 ��uE?��Yh }�\��N�ý��V�N����Լ�B
%�F�)a���`{C���,��S�m�̭��� +[a�l!�~��2����bS�}��u���r���_�ۺ�ܕ�BkRR�K�ksX�v��Þ*�9���Î�~�Ʒ�ǻ�J-��*;~�y�9�l��P�������e��R�Ҿ��CU���wqɤ��Z����5��q�+�|���.���+[@&1(�ʑ6cֵ�%�W���E»�0�u�1�t�û���`�_�Bެ�~�-\zVvU��������E��kEw\R�a{3X��y�_.l.e.ѺD���6 +�GYE�ôѵe��x�0<���.��ƫ(�$�vS-�yY��:p�q8��B�E +3eUk�:�-��8/�K?���������3`<�v��v����%�!kL����y��H��sѻ��G�;D�[�.!�d��T6OuU�c�Y�Q�d�h�(b���1�X\��}8�����9k�{��-IT[�s����Ͼ�{㘛�¨{�17�ERW_4�i���Y>G�+p�����oqU����A� +֕�̘ +� l�hV������$�9�?>�{N^#���6�W�&��6{F�ៃp�$o�,�\NeR���V��=Kkn@�Xm���5��o�5�V�H�k� +q��=V�H[�K�=��q�2��<�c� +���K��ٍ�K�ʡ�p�}� ��eu��)�<D����7�ٰ�Gc�s̗
rY���oB�E�n�!�e3��NfХ��^��yS0O8�,�b1V�*��.�/���h�Z��!�$��zt��[G罴sp?�nB�돱a�3� +�����OB�w������u�Ì����!�.d:��ׅN!`B�Q�y�[�hB���{��ꢶ�lsl.�ea��o}��a'�a[0�e�!�-ς�C���4.K�.��s/暴���j���E~[÷@�V��1.��b+m6gS�{�ᚒl�|>������\VrX�d���n���^��'�Ե̊oR�_^����d�0���Lީ�)��� +�}���"��JJ�R=a2z�ڸ\��QҎa���vSv�-c�-ΰ�̃h�E� +���#F�+'@A�~��Pmj�ic�@��>6��Jy��ݠ;m\YA�ܙ���������lS:͞'!���n��B����"�n��K|L]��r�KBN�u�;���9ڛ�>���wl)��-��C���c���ls��лl�E��t�BݖsOy*~��������ɜ��A��R� ����B~��a��_�^B>����Ig�濅�!9�������\�X�"t¬cn�P�5�Sc�Í�
~%պ-� F+�D�C�ي
�(i��\��~.N��2`e[�C��qrY�m����><��B��b���O*�9K;:r�����ra���o&c�����r�/`�]�uPZ�7@�b)�b<���5��(rr��s����6�z��ɮ� +^� ���P�Vb&F�mC���+,���!� +
a4�����ھ45�_Kq����� +4u��{��i$=5TʋN��g3���a"�5Do�*/9�ݨ=z���}�B�]��;#���V~;XV~��/���� +&ּT��_k+���$I��|��{��T��F=/�����,�T�/�@�u^��0Ň��3c۫��V~],��� +YL
|_O&�i�A�O���k��;|Q$�Zt*F����>2 "�fc�Q��^| u�N�q�]M|$ +��p�.�v��+���up���.�F���|�����+4]�`�����h9�|Ē� +��JeH�a����']��TW�~��0�Ś�>��}�F�/^������U}�R��������&a�^�#e��/f
}�vF�Zo�C����}>�<�30���p���eb��A�Rw�����u� +-`+�#:��D?����s����c�#^�_ �h:�k�sg7X>�=l��y���� +b���z�@��{���J��6`�����`U��KOB']D���=X �8�}�y�Cd�:|+/�y Uy��q����EG~����|B�
�ͅ�;d~�0������T�^ypGhUm�C?9�4i ���{+f��4�X���D5w#T$G +�Ie���%Wh�Kpx���S<W�� +gKE��k*I�AɆ5�n�Y<�� +w�X��bz�Q/�<�V���by���pW�D.��]f;�bs3 +��R�W!�"����A$����x��w/L������y��U�.f�~<B���q>����`�lm.�%�F�p7���*&
��5����-*����\T������r�p4S]\��O����Fc� �ds���rX�k'( ӎ���K�N�@��8K�&����N8���V���B�V,F��H7n��ПQ^ ,� +��mHF�PW����ګ/��`���1��I���Y�ۥ���]֣�7\Y�
F������\h ��9֪��9'�b�|?;贵)[�1B���1B11�|ՠ,�xٴkʒx3�[R�guv9�pD3M]��aT���75����B�U��N
o��B�S6�i37� \��������� +�,���w����~�jeT�Dn��W��)���6���r�Rq��g�_���:-����;��wy�H�*�dr��s
h����j�f�F5k����_%ƾ�M�_��Ffd\���~�n�oc� +���u���c:"@Y�]�D��q��R���'�FO_[���3.� ���?��oVW�p}�Q#Dv���?�=}�qC&Ӄ�a +�¹�<���ԙgOk�ze�4���s�d0奕��/3n,���}�h����TeGB��֪�;7\!�~��YP�g^�d� +n|dk_8xk��4���JU��:�y��ZK��^<�pOv�X_�I�����m0=���3D��Cs�@c��8�*X�0:v,~/��8����erQ�1��O���'�op��~C�8*��-�S����h[On�j߂/)�p��`��.+��257X~�;�!���5Sg?)�*��۴��<��H��
a���@؍��
�� +����_w��m.�oa0��)�w��j5A��C�}���&������c���V�qń�9zX؟�]�����6�8l�Y�~�r(\AĘL��Z�6�m˹� ��D!�i���h;%7���' �xs�����=�����;�e�
Es�C��!���8z�����O���ttn�4��EQ���^�����խz��Ru"Sx8h.,��Գ�`c��8����\/ +G��8��&��ʋ� +Z�'�5 +����g��^Q~/���xC��:L5��p���'(����s�B�8Z"�f���b�m=��V\p����Geϛ�2���.�>Ð�(���u�d"f��E�ܖ�K��>ep��$M�Iy�1���c��o��9�:8�C*�>�פ�ECm�����0�[�R��VS�3+����%bK��ǣi�zZ%��iz'�9�����d0��a�� +Wh%�e�QT������Ü���/��7��]@�p��v�V��<��rm��BUW�4]��O'}�;8��9v�ϵ6딝1��ڷX1�;3
$�qQ���ʜq�'�Km�����C�d��f�a\��h��n�ئ�߆�Ub�)e� +H���p��HaMeF`��r���!0e����lV2�e�#�A�d�A���/�VL4"�� �����i�����c�����>k*I�}Q�P���tz�pT������qn*fN�0��=8�*}�n�1�{�K^��(t�T�8����n����?*Jv�/Xؒ��9>ߘ�m}�̤���؇�k���=�0�~�@�֗��
��GE�lIEu8,��A̲=B��ݥV�<rch�z߰V;��a�ܢt#����c>�rȑ���Y�).�/��/����as��6�3H%�����xC-iO�b29<$ԡnCD����� �E9��A��O�%��PG���yj��5%P��
W��o�o�����#���(�}� Y�� +m���
Ӡ�5w��d#�Q�~�B���>��n#��c�r�q�Mi�l���<�^�����mžZ�=l!>����E��9fy��̃?��.F<�:\R-�<@ +㏐H�i�u��Ыc���Qx�I��f̽�Mq/��>QH�#���y�^�'8�����^���z�t��µ~�z����� +�8��o�,�Dž�ַό܌r��T��{�]��= �S�Wty�Kimﳾ=|����N +���V{�ou���p�ݞ�ƭl�:�s��پ8Jl{�vP�H����ؒ�ƍˤ6�� %Ž�0���r��:�� +.̐�g>�������t1,�������q���|nD�}��)��sv�� N���3��G��ݡ�v�� M۸*��������ҟ��9��Km�����5$mT��u��t����ThWR�1D:.�-aEy?:���,f,�%n�[�/�g|�%�(�38a�=.
r�K>bไ^1�~�Y���u���/����Q���,�c8����P���Q�L�"���*���%Zj]{뻄^����L�GV���:aJ�-Xܔ�j1�R�(T��>�[r=J�r.�#�Ė�\��f���,��Oy�����xj�{����gP�Z��S���ּ���k�h~v����+�hʯ���39Zr���nl ++���P�!�� �s�,�!_�B�� ++ij��dKmwE�j�m[��ϼ ]
&8N�{ +�������?����~���[菉~�����#�/� �Y���2D8�۸!�.6��kA��\x +�,�.�m��F˄�{j"��q��C m�0�J���)�$V��y�y��C�L��j�A��F��W�����q,R�fnchzV!�ˠ:��a6��:o��N�8��e�sJS�9����uB�3�q\�G��',��L{+M�� +Sxd��<�3�5���"M�J8˺5J�E� +endobj +649 0 obj +<< +/Length 17107 +/Filter [/FlateDecode] +>> +stream +H���I�$9E�
���5pX�Q��w�/��d�Y�M"�RN�(���?:T?&6~�'V�'��>�*',ZR?�����Sʈ�\zZP��P�$Z*�������� ���g�@�[u��7��̕�p5 8FKH�d�,.�Y��͡��=�ˇ��ѧ�t����JnA>�l��j���:�ŵQ�Bt�+�OkFޟ�w�N�q|����j��u�L��3̀�)��%nN���õ0m� �ȱPU�9�1�p
h=���ֲ9/>�XXT���!�ZSqXԮ[NUvh[�tH<�o��u�naY(��-��>o�7��r��� ��~����_���� U�����M�&�Sj�oɈ�·�ШQ�S�a����U=
�Hc�)u� +c�ǂf�} +�܆O<@���S��%a�`5�ᲀ�%���0�=�C1Zf�z?��'>W|��G[{�y��|̰ +��W�:5�զ��Wm�V�����.Ǯ��+ +^F�� +oG3�$�mX(Lq�2ZZ�%"b���{p�z��TW�r��+Q����̴+yμ���x
����>e���g�GY���:ݥ����Q.>��,�F��?�4\�W�y����rF{#�Hާ��>��֔�+qNR~��:��d2�ݐ�K����z�0DQ�?��� �Y�%�:�����i��Mފ���(1�aȊ��ؖ�I-z����(u� +� �"]�?���\)�9��Z>���/q��o���
;b��><ȭ�� +��LJ�ͥ�O�c��7�W��}m6!~���|>�����B�/M,\!�'<�,�䶐�
��R���[�!�a�Z����kWU�f�*uF9�o��c�/���ގ�J��%��\�֘�ٻ�ڎ����u>[ə���P���m@)��ge�~�����o���
�`��=p�&�RA��N��-�Z]q +�[�!|��yx��3����z
e���j�ٗĨ��Ԁ�f/���Hi�V�����F����(/���!O�"��1����k����XQ-z���W,��?��'��`[��z�Z���7A6���>�{�!�[$Z_=f�>{�}�Ҟ�8Ljڝ�n|�D��N�B#Y������ү�Gg��@�1.��M��>����W�{���G��>���xZ@�qX}��������Z�7��힟�^ao��chֶ��4�����B�%~f/Ű� +�jnۇ��+���i<=T��×� R������qM������1�Sm,n����0D����މ�� e�0g���1���w��jV���w���Jb�^DE���x��ql'>9�R��;��'q���0X�(�\-7� +�g��.�����98�b�x��)�h�m���V�3�S�
q�� 묁@g-�R�;+#i�X�
�c�Ľ��p�U��ZVi(8jұo��`,��w?�]���m� +�IS�����K��Wwo���o.v���xv����� K��g��i�����N-lx�����`I:�a*�M?���
{W��02{�hӂ1 ���U�� �2�f�R���
S���D9�qe�5��k�KC݂�ǵ�۟�����P��n�2���
�ue�,�u��m@��ɮ�\�:�:�@Dv��o.:`��bC�O1�'����;(8,bG��l�_�a¼���u��=e�x��B��G(������!��_"
��9�iu�[����6�)�.��}}2x��d8$��9�����lg���B�<Ck��aQ��-Ŵq��9C�qk>�n.�����~�#�Ғc )��
9�ͱ�x�\|cn& V��U� ��=� Ch�D�Bb0��qĀ����c�X-VCK�D?�B�Sw����Iݣ���O=*RtA�X,���2��w���K5�H4�~���e잓`>ugH��Q(T��iaa���.<���A�;C�S5Z; cwm�b~�;vs�Ks�n�d�����f��M���%w ;��:C��_ ��n��Y_���lI�g8 �����4v� �3�L�ZM,kE;� ��;N��ۮ��һ�`���dK�WQ����>|��o�ATl}�d�j���d� ��X�ϻ�P�GL�� ʉ|��š�=S�Ŕ�AeCT0�ʑ���~��ii���{���(�?� +�s�97�,�_�����3<3���h� +\���\`A����s`uJYfx���� +V�ST��|,��+�{�-�v]pw<�f�5S�Z�補����?d��`<pU^|>)V"e
9K��xIɹl��3�z=f�h�C*�)>S�Rc��a�W��Sl�W�;P,�i�"�_m�`�{f�-F��`*���f�MZM
�K��Ӕ5m]-�e�*(�g�Z����>� )��e@��e�oi����Z������uڰ-r�z�m&~����H��~����i]9f +���8ӂ�1b��������}dS��l��?�u��iI=;G >� +NJr�s6��tȃ
y�:F�?��W�z�o���5�X�e��5�vPi,�����ɯ�uc+ӻҵ�o\� +��?�Sxu�)�?E<Cք<� �8k����>�u���}e�����a�%���zDԄk��Qlf)l�}諉ͼ:���f0q��������i0����.�9��;`��l��&G�t9�g�紂��uPkeH�C٩�\�)?������}Y�#�o�����O�ߴ�A��D�Ks�u���j+ +�e�88
kZd)#�v���-�u`QP,���-Ipl�� c�3����u�� ���U�d���5<x.�!`-}�:�n{<��!a��A�\��h�y�#���Ypj���+ȳy��?=�,XW9o%K�u��q�!�~ �gX���%`����A�E���Uô%�ߍg��|L�A�?y�F�!���}�ؕ�v�g�%��3 �??���.� +s*x�nG\K��e3%�\v�����x�tŌQ��6q�Cq0b��)o<$'�oV,s����Ӗk�'#�'����wQ"�f^n�'0����o���1��jL[9�0��|���m:��A�E�����|����*�r���qV�L��S�/=�9�+b�H��ç�c�̑��q(|���Tp_�r�V��e��U��yI +��ʛ�T)ns3jj�p(�-��ߚ�Z�"�樏�;����.�,<���p9��[x{x���>�8�P�ƥ�2ZH��)�&�vE�r?�/C��7�_��?���D#�����x�Z���}��;��Z��6��3[n�U TT����Y�=��BK��_�hVXZL/�}@����(�,Ud+�`˸������BRN�XHA��l7_C�Re6f��֤�� +�(���,���a�(�Ip^�~G�'� +Sj��{�K��*�`���o�od��K��"�kHyO�G�<��\��hmm����˷o�a=����l?o�>����+�eX�U�D�5#�,�D/����'��-L��9p��Yk���p[ !u~�1��Ӈ^E�H?F�1!���I]U�'���y��ԙ%�=���� +�?�a#�a4d�zr������*lj���!R��=�u�X&%�å9���xT��~��AwX�1��Đ����(xZPn>�p;�U�o������P�>-Ȁs�n�,��H<[9��ƚ�;�JLm�6����,q��w<�
��
9E-��ir���&��ڷ�a�-Qꄗ��Dd��P�x�o�ӡ!�!bRaɩ��pW��'�t��H�g[P���������vK��3�I ;v4YwX�n6/�5;b������4q�t�%�3f-�[0�y")aK;�`��H?�`�,��@r?�x�Rz~q��Ji0�uD��pC�?�����w�JV�{P�#���d�#�+��з�j�)�-�sWn^ze>���-� q�,\W{�_�c�kRŨ����y�kC�L�Q�ѳ��<�0�<����8∮ܴ�i�����VgW�>�ݘ�p9�ˏ���[(ϖh4?�?a;��]i��F�=j�,�CS�<4�>�����'�w)"S�� +��.�:4x�������Y������[��P��,��}�>|���Bl`x�"���S,�9�f+���_|S����oo�"�}x�9F��]"��-�V������$H���G�INQ���z�[�z�� +h���^@�g������]'�g�?ġ��^s>���Ң �[� +��]����AJ�;Θ�o>��j��ly�|s_�&�8ܟ^gi�Y&�n�e��s�U�vZf�_l +nm�[��n��%0���X`����1"���V)��s(���ts����x�J��0�h�7J?���&ji�-<rZ2�`|�J]��6h3
��kS|28������x���R����^X�~�8 5��� +��S�wo�Y9鮠�AG���w`�n�ZI�8{&��E��9�x %��1"왫�Z�A�k��g�s��o�|�!� +KNf��Y��$Ҩ�,�TQ��K��l��)G�$��-&g�4��Pc�AUZ>OFG~�e�}�W����ޘE���P�bA���q�"���3��A�)/��W���!��U.����_��K#�U�� ��`5�zh���f��?�ź)�t�p&�n�x��P��H��Tp_��ľ�����k#ø�vl�a���ೳ�ދ `+I`�-���~�=��s�����pnL�e��]�J��u$����<i���
A���&p��8��Ý:��@4��)9F�- +D�T���5K�Z鷃��W��ۙ��O�B.S��:� iX����*
z��1�F�z�����<J���:K���l҂3P�bs��o��7R��7�����Y��]���:r�I�s�K�N�b��+,��%�ׅ�p���d�r[���G�T�L��[�I7;��r[<� +ښ�(7��P�!w�Pը�u]�.I0[6�\�=s�#�ذp���~�g�^���Û��#k�����3��>�.����Eq>�e�v��e�� +ח�jwK���>�� ���s$V�'�\�B#]u-4K��{]�{!��_��-8�b��͂����5���Y��9�Gx��H��Ptn�{���>�����P���H��^f��O3�(���r~.`,����3�ܸZ��%�������s���Nw�u��Ơܤ�sk�~�%�w����i���2՝NR�a���'�1r����Xv��q��)�fwi������U��֩�!
�4ݨ +��_�/�7�k�yp�h��q���*�4V脘���湽*����;kPYٍ8�� +�ܭ�4����h��)D���$���^� .��=�<�,����e�(��
E�o-f�[�o���5FW�� k�J�J�&k��*�?���#qɘ�=a�k� +]��nx����+.���9F]}]������e�AL�a��Y}��w�}SE���<�"� ��]Ɗ}�OV�6In#�%��sn�ϵ��Q�����$=��r8��ff�~��?���������w��j4֭�W*� ��R���bx��� +B��qC�
�� +9��a;BH��#���������K��-PM�����]��<f�4���ʕ�(�b����3���:�
����4�:�_1ݰ@��8tD�W�7~�Z^It���8��$����Ĵ�j���`� +� e�U��e�
$�g�;`ɕ���0�7Zy�S�g���w`����S��|_�V=�����ne����E\u�ƪ�cRӲD��g��DWN��&�g�%-�ҫ�pK�g9�AI��*k#��:/nemw ��&��w�����]�^�_rv@�� +en�%{,dY����(׳��ŲIv��5���eƲTݰ�M��SS1n�uk�T���h��ͮɭۢu@]�nj�!V��ސ&����\�n��p�3�!��4!�V�Co12G��1r��e<�j�1#�݇!^U{/�;�ʼS!�+��|�t;�15�`�Q-�%0 ����[T���Tb�S�����<�[����R(�<W �y��=��gA�υTW�F���7)�����a�!/�p�(�ۃ�} +�fַ��9� +!K�yɞ����} +�㘢� +�tz\��a�-�;`T!���B����Y�}d��w�`pE�����?=N�Qݡ�S�Ճ�~+7����+`��0�U�Ć~Ҵ�o a$zx�5�=�zA��i�3��Ճ����[����n��p �'q��Zfw�k��R���a�ɺ륄���-06���ѥ׆v�V�rn"��|ٟN���� �S���1^,��0g�&�bT? +�~Mt�|�����N?��-pVC���&D���S����e�q���b�=�D�y�A��C��L'��]��W+�.��/���,�@�_�̄$���`��բ!'�.��� +� +湄5�����;�*���N��wPV���`\���<$��X�b�Cz@�PtP<�������XfK�oy,F�m��ۘj�{� e��Գ���ӕ�����z:D��"��B�l1Dt1J�r�B�]`Hu/��xq�����G=�-,�>�*��:x������pm��ѵ��W�M�l�FY8�X�*���{�G���QW�ȗ�#-ر��=�J(�rG�.|�5�x��z:v;�J�3��:]c�h�����w�W�[��[���[��k�+�^��F�?1�O|$�{z˴��%O����`�Vye�0E����r���z9c8��J�hZ���ZuVһ�wmY["���jI�lՑ[����sڻ�����};HB"��A�Ey�!�q�뒮�<�t|��d��1%��e�l�Dd�0c���oP�_�n��:��n�R���2��$,����"��.;`�n�j��a��H�N�Z]c�Ә� +�<�6jh�$����|�����t�⧇/�c<,�'a�Y�+�k��Oc[����D��Sࣃ�`9�ԣ�'�2����1�/�����p�t���`��<(~�n��+��UG�':����0�T4�m_��p*W�:^8(縌�H��5f�*e�����s�A��Mn��{�c����Άb� ����'������j��ߠ���d���v����!��8UyqUM��%�G��G����^j����THR���*9�����*���G@�x�b��:[8^*�||�-�\Z6z�o��:雲�>ky�U�b�%�'t�,k'�X�A,�{�a�HR^�8��Ř�>k����n����@l_y~&
F�js�l����a�����[�b�� +ݒW�Ȝ'��!�q
d4T���[���#���uս�� +S{А Y��AC�(�N!��:,�+j&��TV�bX�*�t*��)��@�\~.�/`o�y +Tlmj��l���\�b�cŀj�� +Z)V�( +�f��ܐ�WcTЈ�����껅�џ�T����;�;���?7L������k��^���@Πĸ�ܮR��~�0ZOW������轄�w�`���y�W=���'P�^���%����F�w���3�v�� ��l�g��!�̻�x�[b�W������M�=,�Τ�������V�]��Q-�a��η�Jt�v��-Oc��)O'C=�Z�����hnй5����u�1Ȯ�|c엱ќT�s�/���+�oad�����<o����Q��"�@�AR�Η��)t��Ӄ�PT'��y0�K������1�o֠��0��̓���8�uA�����8��^}M!�OE9�n5�h\U-{�Bb;�,���_�*(�}bpi��J�y�����Uvz����Y^�5��
&z�Pe�a��
��
��Z�<�ǎ��A6�Ϯj��=K�Ge�n��-��[��#���C�nc_�;�68�s���{B�~ߗ��1LSp��P���w?����2��~7�ow}jKm�����oB�����f����pݪ������b3�]�J�\`��3�.�/�r�ۃr����}5��>xX�`��)���p������&+�s�[��j������U�b�`����ꛣ� +K��ى��/���������~{0���qZ ����*7??��`�U!��dn��k,�F��2j�~z�|�e]`=2H�y逆 �� �yW�P�i��O��s��<���-��*/��L�:uz�6��B!=�R(�fЇ���B ���,Q���'���������#2���O���[�H�S-����6������0[��^0���C
�������<Y`YA=�K6C��R�(���t7�h�(�]���y�p*��qnu�1R.�Pu��9�l�h�\�U1R(����Gx��X��P47�9��Q����{8��x��?��s����^���x(r3I�L�s`0Zk +].�r̒�� +�Jv�Ps[<^JzV���L��mG9v�D���C��y�4�,��31L�s9p^b2���]
~���o8BO +c�Y`+y]����1Jc8e��F�@Oক�V�O��sdH�f/��c�CG;|\��R�L6�.��3*"�J�C����H��&)L�F�=��m0b؛5>�"MzVnM_���tz�����A�~nX�ޑNӓ�������b�C-tO-e��IZ��:��(z���g�H4�d����p���LR��]�����rԏyp�*熄���� +_E��:=�p�Ŕ̅���2��{_�PT���V������P�ܷ���z{`��}���J����O�tő� +���M�$���*{]4��Z ++PU�Z��>Z�4�n +ch�=�T�Y�jN�c����Nt��Qi���a��v���m��`�1t�u���"z缐���?ծ��<t�ض���� ��?V���ȗ�}��lI��i����?���7ȿuA���~_�/7h�)|�Ǭ�!���Y������c���A�c�@\�`�>}z=��2%�
c���x��l����{B=�����G�W�#:��ލ1�KQ5����r}�c����6X0�p̺QK?�ܸ�aƅ��y�>w8��0~�Ⱥ�26���
�O1̜��I`mV6{�e +����nnwXi��ع�;`��6��3�"9 +t�K�N>긍7��Cܸ�N2��rZfQ�Q��'��.Q^�"��x�fyC�����xw@L�s�Ao�kȽ$�CXv����,���+V�ޤsO�zs�J�6��X1���
G�m%�?©ƥ�L4O^�c�:T�{���D^d��ѽ�.)�i�0[�/ �����9ے`���lkE��Ǘ�mI�U�XR>��VB��L�a��Z�06�,�x�ؗf�������<����G���_|�x�@h!;_�^,v�b���cX��[r�ԂH���d�(1F��=fD�ѫ,�R�{G-hZ�r� +�� +endobj +650 0 obj +<< +/Length 21786 +/Filter [/FlateDecode] +>> +stream +H��WM� �
���K.�Tlٲ�@as�k��B,���!�>O�T媚I�4O�W������B��q0������������Tm�\X��|Tf����`��>~L�4�*}9�ц����Zԣu[�r����Y*�:��q�"�(s�O!��1������m�G`z�1�} +=py��� �j��1��Ko�σ���<d�S4��� ���p��}���ғ`G��5Ļ��o_��q\��G���r^��k��+��u
�;S:��h�H)��p�Kf�B���o��ɐ���"騕�`���VD$����ɍ�LɌ��GJ(>��~�����C�_�OO�ȳ�{;j���\U��q2\o�1�U����S�#���9�`���4�l�w����")�e�� ���q�����#U6�+O�1����o��w�lHYG~͖��{������\������`o#A��7��*;.�l��V;�v�x��Z�7nj�.��.���w~g�G)��;H���;i��l��u�g`��3�����(�@��� +�d��3�I%�P�č���y�tF�T���h �>�7�j���o?|���~������_����_~��?���>~g؟o��o��~�AըqT5���f������{Lqj��`���89�c�r�A49˼r�*�o��z���\�-���Y�3mHy��h�]�����Iu>1��Y���x��JK&���]ҽ� +��d��q2@��u�t�RB�{��K�b�i�U�RgJp��ș�-@Ę �T�K�o��X^�
G��6��a��qR\�U�A1R��g`4z��k�8�\�Rwu����� +l��\�����>9.�Z�� �Vz�h����g�8Ą�';�kg�T��m�f�v3PD�R�>m���ea�+n +�"�Q��:�����[z�=>�_"[�� +�����c�u�dz�CW��$:�� �s��[\��U!�}r�)Ϛ��OX�;SMw���$�Ny���A�(�r�m¼feR��e���%^��� ;��t��Vl�]��a3-��Ꭱ73�����[n\%�i�<7J0N��4@lc�(�<��`ܵ5��%ED��&�VP�^�
M�m��f�1�}b9H��`1ő +u0��$2^�z +�@�9`�)M�53b�L�A���(VG#9m�a����] ��6��)jsk
<��+�f�����ɗ�}��eY�k ԝ�7H��x~Ja�:+��厦����n�F�(ײV2%�|֕Z����� +�kt�'a��
+lE�!?Y�@4�Nt��:H�Iuf�t��e��j +�4���y�Ngu[�N�o�� +���UԳ��)֍��ʫ����7���v
�K ��]B��Dc\���2������t]���>C +���I�SEQ���"k�-����B.K +�Dx��]����AgǴ�l/J�9�3�uVЮ��Ɓ�6ꋣ +�C�~��xXN �\�n�8���s�*G�k|�:�����a3�[�������d,V��S|H��ﬥ���ո��3A��b�>�<������������[�:�t���D���� +)~]��8�zŖ��Oa�
�&(8��ϧ�Ah��� +X��g�]��hN�yk�����m�un����O�!�z8|6)�� +����f����<�8T��+�Nػ�8�vJ��|��� +v +>���9h b%�}������x�Vl���0pT��� zH&��_'f���藕��HH���b���JU��%&j[>Q�c�Q
F�.X����Q�W;�Z�:c��3kqa.[p`�ۉM�k}Q���' +p�]��L�4�ʔ�jЕ���L~���c��%-M7�ߏ�P���:���� �S}�Њ�e'�$���l�|���:�Oɓ��w� ����Y��b�{KM�jZZ���1�}Q��Lի����c�qh&[g0^�m� v�U�ߎ;4�/Y���� 8�$��f�rT�uf�c�.=!O�Brg˪����1;�R�R#��H�e����^��@߅�)��Xd�܃}���$�!���M�&)�fyv +��� Ↄ�o�ie�#O�+3�,����x,k��|?��N4��2'�[���Z�l���Q�њǁ�H� R��z�T���{8h�GPŜyon�Τ&�f3�|��4Fƾ0dA�� ��.�1}�W�-r�L2�9���8�Ȏ�f�.Y!�l�<���V1�����'�I�����M�.H�lp��}$�8�`�K���t<JFf��OC���C� +��B� +2���GX��5҇P�e�}m�t/w!���Zd� +�-�g�ڮ+�aX+[A�(����6�o����4�koN��A��A ���vP���4~��U�.�HR�"+@t�:�w��K^��[d��Şu�_����-�g�\����O�4#>�l1Q +[��[�}ѕ���s%3O
<0
��# +
-�X�(��U��[D`W2���1L�������O��}uD
c��~�9��@�l����`�,�Mz8��#�z(�"�HI����ٗ�3��#A<�dd�5 5�=YN:�V�{�{�=���F[']�����+jT�f�7���Hh1��r����u�#�����ւR�W�gه�S�5�l2\5��y�hf:�Np���U�FW��\Չj/��l�qڜ֞�1� �\�Y%(=(��2�pI��]#=���p���4�p+���/w
�U���ҹN�:�W��4b�O�܁n��F��
������� ��L>���������Ѷ�kJ~r����!��5T�f�G��,2�I�������D�I��ɦ���tE��W�S�����=~����Pr^|�-N��i���}�|���-"�:="��e�,2W����Mzm�g ��vuGb��S�BR�z��f��3�Q�J�^Z}�@|lj���GzI{k���%�3;!r�����&N�2v���z��2���>N��CO���O���}��F���������vGZ��Al����C�I�Ч0��t��
���p��S�h����C �N�lnS~�)$��O,��g��kU� +�L85,2By[Dg�SKS�����j,�ifF���Ƈ��L�2I^5�s� +ٜ�:�^�_�Ŕ�^Ho��5�s�8ZC��T��aa�O�K�`��z�����@���y�b��Ym�m��m��b�xwT�k�hD�(8�@n- +��5p�ໆ���E��[p�ڠN<boUkx�� +���ӻA�% ���'�me��_jE>���'����w
N�����P����dT���4F�����^"��I�O��k��N{cf<;��9#-\���<;�V���]r�f.Y��J�10;�L�pv�6���Jv�:�� +I�xRrA�%`&G�@�$z�� �"�vV�`u�"�n6�F/��v>�ћ��n!uR �䦋=��U}B0�L�x�I�i��L���$1cQT�oh����!˥�iꌢ�a.�ip�a��&Y�4��'��W@�Ґ �d�x����JG���d� +�Y�`\ +V~>�Jc� +��H��^��1���+�SA[�����
Da�ηY`��5�<����.dh�Q@���J�:�_iZ
o��賑�������p���R���r��(�=�ҹYV^2~h�5<�ؼzqN��`��H�B'�Y�4�kܴ������G�^��.�J���mk��&��,��Hh�Β��_�%y8^������1Y̩H\(��QU�zT�+�b;����S�����z'�M�aibŮ6�+;ք�X..���O[ ~�v350(1�A7���x�V$q�w4u��5�+��N�Бj��f�1p�эF8��)�M@,��J�调DÛ$J��nćpX�J�w���d��Z�02aA*�։i�5� 9�J4k4<� ,�(�)6�z��C��]�!7CK+�}(��-p�/���Ħ,�, ���zc��(�qP1Kp;P�[��m�XX�m0R����QD�N]�c�%�8Y��<V~s��UA��
���aE���X8�x�F�t��X�����^a�h�虳����jiS�5 �bV�1`0�:���tD�>$��O�+[Qn�X���~�?��g�R���!������]�m՚�+�t���M�N�)I�\�b�ʨ
�A��]��J ����S��Ym4�m��.1�i�Z�ƫ�O�� +ӟ����L7�}{~&}S�;u��8�q�;�E�d�F�R��"��#k�����+ew\(��H��A��5�M�U^�0L����Y�Lb��(&��4\L���t
�
��v|��P�=�����P��8n��C�؛3㦠 ����?��gY�/�5��Q
���x�}4b�=:`��j���|�c'cC���D_�x�����ҽ�]��r��&�I��tڦ^ۥ��z���J�+���9n5�Rc�;%�[��X�2i/��!�w�a���o�:���O?=�?LG���'��C������/�ۃ{��x%1�\dU9�q$��2�J�E7�2U+�_K���u��by�`�"� ��_�ոC(���l=IpR:3q&�*�Y#�o�μ�/�8%�� +����Y��dמ�� +��P% _eQ��Ua�`�a~ ��XJ��f>�>�[L�������c(�:s�� l�1���;�us~����}LS�7X�H�LBl0��Mu_�߭����0@��4h~f�ճ|�GV��;����V�F,����I塽��b5J���S�P���h��k�8;���IC����B���{ +Q���CVA_:x*��[�zn�����0(��8�Z��n Rֺ��I�z����Pa8�+��\����g�j��bF��
�T<��&�����ƃO���䕅���U��,J+���6���uk�ZX�P�
j������ӂzj��cg�H���ū_���jY��8����=�Qfd������\0ظ�h��+�xf���GfeUuM��`�u3"##��+����ۗϟ~��������������'�x�l�Ўl)B,c��*�S��_K�әޒ:
��)o��k�xMsD�Sg��oI
Q�����g|)� ���B�o����n�Ff} +�˫����7d�Y��S6���%<bI��N%�W�riLu%�o,h��7y_��Kz��#A��%5�_��n7aj�\�����[��'
I��d�h�� {���3�����"'���!�1d��!��Ґ�-V�C�
�E�b���-ϝF<�����'@�^~�N����S�_n�ϟŧ=���`�NF�����&0~�4J6 ��UL&��:;�|TD%�M3�APH�$��ʴ��� x�u�������b؇X&���&g�m����N`��Z�:�BK\�M�}��'@�P7�eUFP��Ss��L���S�@g���!2YY^�A�2�����ȅ]#�KKP�kdɐ����Ұx�3\�*R�D�m�����LՍ�K�8B O�¦��lŧh5���������ak����yK�̀�2O�⾟nj��Vq�O%��aU��&e�;#�gŮ� +��I�|)�!bU;��A�$q�:D���m
���<���lnP +}x>��̛�Dza�{ M����A�-�%h5�d�R��X�P�P�� ��3.J���@զ� W0�ZCk#C���p���2O��҉&�C�'ov�F*�����}�A�(ޖ��Y�݂���V0��1;����z�~�^�T#h�͞l +K�L�:t?5��lh�ǺF�� +M�+�� ���tG0� rvDh�}.W2[���t1J5��@8ҩf\�Z%*s����p!6B����^�?���]���(6�QNNZV�ֱ����AlKjy`�hB�8f�N���6�'�v���r�lZ��K6Ag���&�]�~�muB��}<u��f�7�0O�w��$�R�DV��Z�K�,~���aaC;t��JW��W�w�86�d>�C����,&�WA����aܪ�G:(�k�n�;�.�m�4���)�[�Ф��FH�!�g1�*�Tʈ��x�%A\햩����X���&���a���J�ih��T ��������OFxԐ8$���۰)�AQ��5κ��X�]-�;�A���>��I`Is5�IKl-�Ά�� +_m<�&����>]3�T�}�n0pB?��NP�c.P[-�8��O� ��X?�:���Ă�.<N��������J +I<�� �ǎ�QF�q� +�G�؏ ��x +�A�1BDB��!�G��{֪K�>���v���Uի�ҎZ�L(��<�ƒL��3�1�kh*�˼�t�^̚.�G +�[O:��r�v��'h39t��9���z�����x��Z�JS`�f3UΊX2G�_�� +2���:��=�a�}D��LVЄq�K��VBZW��И���`,�T�ʑ��� +��4{�)�Mr*���O@DSN�5!����f`l5�H�`�?n�<��U?��>�ȓ" +dE�H�0����0����6�ҽ�D +7(eگ�'�ƒ��Vk�LA�f,!n@��0�;�>r �a��x2��uB���+\(�$M��m�����=\F��Q�RԲ�ptyW�ٝ;"���xɺsN!��
*[�� �LT�wmHÇtI�ɨ5c|��1 +�o�P�6��6F�C�X�q6]�TD?T*жp���,�z� �'{�������8��>�����������w�no��}=~E[8�����x����w�ןo�ܼ?����������W/�_pٯ���o~�OY���������/��>�\�����wo�^�]�f/^o��?������_��u��
�����7�����������OW/�?�+~�����/��=?��G~��Ǜ�����_�~:��������x����;�H��qIE�E����5�I��9����Io +&�9� B�v�����2W��'I&3|fL]��!BT��b�R���mo�8�0�|8J�)%l��#���Qf.V��M!�n�$j{)�7Nva*�B���y/��Y�W�p�)�c-N�n����lj@���� +�CfF^9��E}���"1��Af��:�bqB�#���G^��5"�2�[��(�t�s�z���an)�ƇƼ�a���u���<�<�����SP���b�<8i3n�`/�H�>�6=�?\i������-l��pi\%�x�Hk�4�;�uF��f{�V'4F�0��m���r��h���<E�a���u�b����Us�*"N�1_�4kv�l�c���{]����#�˞��W�����2Lɵ[�ڳ�6�ye�7��r�Z��ú/Ȗo}ˍ����n� �J�G��I>�ꗙ���p�:��4#������PWp�l��0��w�s݉��d����SI��K�٥*&�B�QG#ǡY +Y�V�Т^��M��1.�ߠCn��Z/�U�,��&9/�.!_e�یVNSg#Tw�j����� +���!�c%])��v�Wu�uv�m���a�āu������\�#��Zp��B��52Yr�K]B��Gөd���c�~"?�F��1��9Y�+>��/~V����k�����.�:��GB´�$�#drB��cp�Lp�Y�#е)��ͺf�TNے +�b�X��A�'r~���2u��Sr{L!��}$�r(��ܦ)9�[��0F�P�isQr�::��PU6Q�b��c5�+�\�E/�ıB�Z�l��=�����+�ֳK
��b%+���V�����Q&�N+f�X��"RCd�!OE���j���M��{���JT-h��� +QV�"����Ӷ0j1���ku��y:�0�Ȑ���j��h��3�StR_�,ױ������"Qc��YSԕ����&���!��"�FN��Tb�ˠ��o��Ԩ��lf8�5���r -E����z`��5hwA�!Ze�G'u���&�ޏ&Pnz�A����ڋ���<V?5�J�!���k�-hqݜ7���['[�q���ʜ"�8K�ȏ��4�
�N�_�xJ�!m( +h#(�u^��6�b�]���P���$���"P4IwP��ڡ:�d��Z5����J0\���%�Z� ��ˑY�A�����K�u5DQ�j�g�e�ݪah��UiY"����eֵ��%�5R5�` ��D+~��^��5�n5� ��nQ�75:n?�cHR����1FK���B��D��@2W��d2f��MJ����t�[o��ߑ�� &����K��(�E�1p6:1��gU���C�-Б]g�z��U�����Cik]�`.N ��eR]خ�Q�t�*�2��59K!�m�h�j&���#RV���b7��Z�������)]T����p�dU�p��,.���s(��� FI% +�W�\�
cl�x=���81�d�D�P5e��kJ$��e2$��rS�P�J�`D�3m�~�zfS�C�[M�ڤ9�ͥ@�njZuS�Q�V�g6��9D<���׀�jj��#�Q��M��^�u�+��0$7[��g:̧ć��v +x~e��8u�N1L�T�3Z�S�i]V
����0Vׁ��>�V6�S�(ⲣ�-n�::b��n8�c�C�U�5�����1^�v��E_���M�������z��[��{�,T����#IӂUd�t}�;RS)viP5�(���eN%*�Mm� ӌO��_�%����s�c�U�R�A��7Ԃ����oBO�a�pl�q�Vb<u�i0Aw�:��q�Ԋ� N������.HՊm9����Lz=hl����ng�=F�-� +Q����]�Q8�h&�u���x��� +�k:M��]�k¦�F��w��*kA+ey�0��2*�OK�� +�P$W�G��йua(%�p���JP�$�!�w�J�{e���!8��_� �_����OK��I��{���*���7tU� sU���7� ��*d"�J�x?���Hh~�8���͵�^P�`�=�x����>�i��8uą��5 @�{�k��|�[I ��U`}0@sC%։�Z ���:���⻈VR^H�{�bL�,0*A�Új�`<��� �قm(�X�`�#��2�#��36�:�v�[�!Nx]���:O4���9���:�����4GN�T5�}��JU3���b�0�J�DO�x���i�l�ڔ�%Cme]�)ىB"�S�a%
& �t��0�`훳�嫸���'�kw���-nL�U��%����/ֳ�Q��h�`��b�h�%���ed���V��[(Ųfg��@�B��i��E'\�N;�;<v�г����÷O�n^\��\^_���$��������������g�/�}��z���͇�//��?�/w�/l���q��T�K��7��
����mɯq�"�zd��oJ�|N&��2���ď-���E�����@���W�߸D��|�w�i0z�5��}��9�d���)8�R��t�jC��~�%�!c�l#��z���!��̟��
r���Α�+��
"ܳ��O��1��� +xÝu�"|]"��,��l���|�;�Sk:2��X҈�ps��m�������ï��j���p�� �'�Qp�;$��S%�V�HD�F��Eϣ����ҁ>>�, �������,�����x1\�/����!�o��o���t9��v��ow�Cݗ���3���/�Y�;E��[��]�,�����z� 9�3����rY���x2�&�Dt�
qk0��\��I����� �eС~ɋ�/;�O2bIsį[�n� �i��o}�Ѽ��3�Ox�M�,oM�8t1��~��!�����+��^�Q|<�����i�!N����@�� +�bGw�O��a��eӶRM�y0���w��k���(
����")8��L����fZ������֗8�xt��3��J�����gl�<n���p~ɷ +���p�]c���Oq�^��jW5�F>+Ls�Qʚ{�T�a����]'�@�)�^T�h*�C��9�C8�Ә<b,yzl������oe��s1�fF@[mL���&�Y�҇�3sǙo[�uh���;K,���"(�9ux�Mx��'���C�O}gP�u����j���a�8Ʒ�S� �?��ի}{��Ic���o������!p�ճ��0>�4����)������[���l�X���\�q��쯞��=5P���<��!��K�FK��l[tg�Z� +����(Č��@����1�͂�|ͽM����-�{��ie��W��D�h���z +�G��N�xr�jƟ)�x�q����N�xٳ !��?�=���^곎�
�"��H��So:�-2���Q���)/�f�DE��M�З��&:2�8�O�k�7�@���A��KCQ�Q���2�Ԙ���~�N*N��b�-D���=�0�))����N^Y�}C-�yx��O�'>��w0#��4t]2�1�TKYٿ5ݶ�j�O�*];iXT.C�60�{ar�����J[ĵ�Ψ���}��A�rЁ��+�B��`�6挙��r��e�ЏZ8��9i)��7�O�'��~������0k�'�2r�Od-���W����ǰ ��3�D�\�u#u�V0�>5c�%�ǫ�X� ;E��K�� �zR'd��oK#V�"�R�����. ��=ʎak����R��%�Tj��^�ɿ.��� +M�� �S吗���IĊs�� +�?�x�)�N�ϗΠh��VÉ�~⬢ƿ楉��sf��>ث��0�F�[b�2 +�.ک��S�n琎_l���R�Pp�wַ=��,c^����%.3D;�5�%��j���P��v��Ft������7�*G���U5�~��}�m�e������ ;H�&X���(��j�6rrEe�
�]���������������H��4�ttorU� +~X���kL�M16��=Y�h�4,>'j|Q�{r��bYk� hu�j8����)ѓ^ �~��/�u�
�;���8m�\U��[��g�>n}��B���-{��mk���xm�5Ų�i��3DQ�w�����ơ��Ǟ:�XV+������-d�V��nU�3oaT��얱"N;�임�@���%*kd�R��Td��7PCn]�MJL��x�O�釿u�ݘ$on�dCS|� G����@e�����?̲ &{��I�-|��Vؖ� +endobj +651 0 obj +<< +/Length 23529 +/Filter [/FlateDecode] +>> +stream +H�\W;�%9��;�&!��H��=@���X�ϿA2��w��(=&���|�ew�G��/?��v\&������? +�w.�"�V���y\�6�g�1���@�c ��x�s�x���e���KP�= +P~��zw�cj�0�rۙF�k���xd,+_oX`�9�m�=��f`��W���҂ �(ɏ����>�s�,˲<�L�z�,�'b���@ �z7�2qPB�2�����K<�=.
�Q��g���A�ǭP�Ӳ�-��+_���:�J[���1�]��n������Pn�^S��ay� ]ϼG�
����g?�'s\֮dd��ϺBl�=C�VMQ�ݔ���1�Ct���א�!���e���k��S�!�ȶ6�::�Y�Z���1�,ȱ������=���̝���^<9¨3E���T��S�#�B�@
�m�������{�͌�s� +�|�̺[��ذ�%�k ��ʑ/P�X�~��)|�
e����U��iw��/1�U����*��s�*i����8O�����^�i�B�^�u�z� ;ƕ�MP���!7��ʮÀJ�p��Y��1�u���\e�=� +��Ip�8�s�;�z����)W��*���R�fS�/yT��"�T�`��*�,��$?^I%�����m�#R�[��돱��'���>=%�gA�LZ��~hf8S��Ǧ4�|�%BQ�$���U-K�sݙqq�=�g�SĖ��h����W�֑�S�FPi"W���������)��z9f�`H���)"�R�Lj���I�kn +f
Q������H�H�I�$��7ؒ)qmַ�&�0��vv@k�X���հq�M����(��S�$�}z_�k��M�\ޟ���mo���3'Z��u����ξ ��A�ɳ���gk��L�I�8' +�L0�������'��O�n��Y�
�Z +5��h�}EZ'w��q6auX�X�l�+�����<�b����]3�(�a�]�b;���?��ޢ�r
�����w!��B�� +�]�i� + wF�v��|���������; +U��p�"� +-8֕Q�m��oR7�M�[I�>j.d�����M���:��w���.�Uh�e5s��{���g�N����=��5 �ߔB�c�86/�a��j��1�}}F;N�R!+o=F���>�
˥�Cs+�7��=:v����'!/�$N��~�)X1���T��" �@U"�ܣ�.�����Дi +��+a��YE2~��#F��P��N����~�z��PPR�������iLrs!�诅6#�eG�V���f͵ +q���ZZ9$=QYyY���[�O�ɮr\َc������~��<�r�\�"2"��� ϭ��ʌ!����]� oR|����S_f\iH ef�?<:g�>`y�뾬M+IA��f{��X7Ԛ����6��)� +��ϊ)�5��v -���f�`��f���?�#Q��'��|��¶>|e?86�\ �k���-�i�I�A�%����PC��Û���pV�����z�͉�:�����~oy��~~e�@�y$x�� ��[��7ޒ13�Up�/xp���Dx��ɵ������ȶW�\J#oPA +�khoJAN�=OW�s������<ߌF�T��5��eÉ]�Wb�~J�r��>��D&�ys�� +���������lߎK�"��S +δy�ڡ���Aq���H��K}��_�o�S9)�`�}L�4$�; +#ƛ�x����/�S��khW��Dng
�����Fr�T��4xzxk��>?y +������;���1��8��4��.|�2�������g�S�!p����� f��<����-#^Q�Q�{@���>��*/�+r�ޓ +��q��Э����[b���R'�������(s3���|h���Wx��N]�{�ap��EɴB +�BY�A�8 �5��_�x-��c ��wH?�sv����1��R���`�',;�m��4׀e�Ĉ%#�9P�0�8��5���"����ez$�r�ٸg
���An��w�pңj���`�.E2?]�O��ߎ6����.� �k�R�yl����9c#��=�"n�̸�)���q0�kr��*�V� Ȩ��~�'�x��K����/��+�b�,�|���Ec[w�?rml������'$��
��
�L��|��~�9�8�9dVv3L�(�猗�s��89�řr��ۃN&x2J|/�J7E��|�L�yU�w=NC��iC���Al�7�+��J��lW���\�F�{����)�� +��I��H�SD,��ܯ�5X���_��*���ZZ�:��^���m���ʑ7!����*Y��l���}����|Bd�Win���8%�5+���g�w��������c(�t�LR:u=۟D^4��w�6vp��gR
�p*�W�^Ȃ�{Z:����x��P��$�=T�w,��E�c��,���F�5|���,2/�x��]���'ɺ)�� +�R�h?���T����1~!H��4Wڙ��(��ɜ�R2�v +x2��� +�X�II��L�L�E��9�Esif��$��p�v^��g��<!���{o�9�8|D�Bњ*ٗ"̹�yw�\�ps#/���!r*C:B�$���!�pMwْm)��=��^U���� �s���Z��j\�E����xg
��c�![�`�AJ�#�z�ېw0��F�:�r�"WHId��f�D��F��|�!�L4;��*�{�^� +�N0ѝY��iֹ�����F��셋�/��۩p��NЗ��+���k����¯\��EK&a��^N(��S/�X��{�#��^��ý�u?;��6� +���å�`�N�`{��9���b��*�����Q
��Mp�7��J�N�p"�������J�z������M��U�s �ٔ��:�v�c�0���%���v�92���l�ZX�$7e-��Y"����L�BXC��],1I���"�ֳ;Z�g�p �1ph�����!e�J��Ӷ8�� >u��J���5�����\N�'��Z���
_\�H������^K;�E?!l[��Zo��IT�GQP�!hz�Z�"f<)�#�Mr�g��&Mb {�Ӎ�X$��8��JZ��@cK��U�˒.F7���� ��h�N)�<�z�X��v�]j?Æ���� +�M
�#䥰{��^<9�r�2��YاE�<N��%�|��ԑ&� �1a�c�������~�t���&�0�-lh��'�۰]����8�g����Z�w�xWhM�O}�H`���y� Cǎ��CA5�߅�,P:h��L?�%�&O��Ťy����d@C���,G�>������R��+����Y�]l]�������V�e8��/��h�Cv�>[b�Zl��a��f��D(N�����'�M�A����x��H�o�/,�悦���x�5{�2��4�.C�
�������>"���`�VB��Py<����t�� c��{&5����å0K<?V�7=ݪ�i�Ke6E��}m�n�8��#!�������}�͇�߾}�������{Þ}����w?�}��۳�~z��?����}��?}���[?���{�o�~}��`�=}�w<�=���������ɸ={~���O��װ��`���w��?���=�����c�bM�ΑY�%���a�F,��Pg̗�[�h2{5b��V +|�1Vs�\Ө��� *0����T� ����ˊ�z<i��Z�U���HO�]����6��3~�x":w�@���讖UM�*:��DH������ȜLDB��#i��i�64M o��{�]���$tߩ�j_օ�8�f�����`���R�; +����Xr| +��N��?�c��VI�;yr��\O�������g١0Tc�[��d�-�~��.'H�$(�M�B��>~�h�� +!0H�{�+/cJD`<�X�2��&��kC���:]u�"x��%�5���K`5W����w���2V�0Ҡ������d��O'�)�|���s�Qo~JR0xB���m���н �vo��$ +<�Z5���p�}a�ײ4�=��a�.O;�ĭ�,��f�%��VE"�7KE�����A�4u���Ŧi�= +�!�V��C�c���^T�}�ֻ�c?�"��ݷG�������zط�N:d~�p죓���. +���Yw�a 2A�[���v2cQ��˴�S3���٘�pg������g�O8{_�}s^�H�t�-[�1���39#�-97#�<��cܵg�v��
��M&T@/]{���tQ�r�?��P�V��q�nC&Wv�D�n�쁱L��x�U�= +�(��9pg|�%~�gܑ�Wp�� 0�ƓK��8�6��d~<�d�������|��"ذ �ݱQ_q��yd�$�����iF��b]ߖ�:@if�"V��)�x��}���L
F����6t���jR�2>�
F�p�H`˞� +�6���A�x���Z7� +�<�v�V̝ƨ{ɒ�9�7=��e�U ��88�b�%O�|E�o��mu�8��� u55s
��G��Z�N8� ��D���C�D���S�]�:�G � +F�Uא�t�us���<S�7ؠ�%>XtC��S?�F����vÎ���1��Z�zHZ�O�z9���%��u,�aX �p �o��n`�� ���%R>�������zP$ph=Y*�é*��yn���G��u�z�'��;YXvM#��q�yp�_��V^�V� ٫���;W��������j�x�領��Z"�)1FG�r|'.ۇ[� +yEtF���t8��v���b ��Bz�)@�C��v"Q��6 +n"��q��Yop͠x�Qh��o�O�;�`�d���N��1�R؛b���,�Y�c�;ב�:��^�o䫐:����pxա�
H��E��,8�yr���fuI�t�}�o��X�~��P�p�u�7���J�96v���4�094`��Ҫ@(��.����'H`N]�Bf��M���$8�xF?������EآWP+P�����k��������\Ը��:r$B:��5Q�_�K鬃��$g�e�8��fmr4� +),(��e�,���Gu�p#��^I�}�� �w�>�\Lq�B��a$jMy�e�N��[w
+I\۷2K��M# �4��r� +�%���tC]T=.��w�˶km!�ts�8Vh�Z![���s�B +��|\��\�1�Ȓv�U�˵t?�-f+�������G�H�٠�.9��k�f�7�ƕ��p_Qwlk�� �X8b���N�p�ȉL
�.T3}�Ka�{��GK��O1ۢ����1&�. +\�ӥA� ���KI�W�3��� + `!�<m}�C���\�'�� +��a���T8�Ɉ3�.��p���*V�����s(����EӰ��J�q>�c�g��]�29Mt��
��� +!\,��-�¬e�]@\D���N���Q���RhV!�1�MmViu\�����#��k
x({�ʍU�T��*�����vF���=�������ST��P6�:D��#�B�Ҩ�8 +I�9S%���R��ן)Q��I�jd�h=T���{��`"D��a{BF�?�f sU�N����~]�T��b:��&H�C�IF�0���C�T��M�W>������Dk�7��!��6�'�pQ����lg������߁P����P'����zq�Cҩ������%��Q��`��@�b�B�l�P�/�T1�O���4I���w���L݇7��?���ݝiF<p�x]^K�t����n�����f��a���]�~��U9���7��vn��]�>�x�G��
�N�Uj�z#h\��|[�Sc�9�S����u,�q`����|�!�zƝ:6�qN�M���(VQ��L���D�����@<�сb���&����~�L_G���U2-� +�^����\�����'��"��p��Ց��a�8��\
�&�j������4&��XrF +����~Rk@OF7�U
=b `\�N(=4DG(�X�H��`�á��"6�'��X;N�v�m�\��#Z̺���zq����մ����D�`�0��>�ӜA��0��Rp<r��?{��J��M�Sp��#�Mqr���8U��9�7�����������?u�� +�-�)��nX��:ɑt<��JĚLy(;Jt�1���~2H���@!Fn��X�&l� ��������M5��]��WĘ�A<xt�cH�Ƒ r�x c/v���yq������ ���ƫ�| Wv#����+WJ���a(]5�����"Q`�Z��^��A��-%>�dʱ�ry���]wܰ����O���2�W�U~��.m䤅��?�$mؒ���������`�Q۩�d2W��X\*�tA�$�{�f�p�ώ��3�bXx�L����s���i��M�I"������泻�\4���(9|{e +A��5.N��0��G�3�-������Pʿ�]�{68������Z�#��� +A%���r}�n!wZ�'|E�����گ˒�mK�h
����ص���{*m�eRq<z�&{�LR2�zӌp�N�))K'�l��">Dup08\&�K|q
�����S+� HM�o��?��e�����[U]��`C��n8�E�p���sM�m�\���Q���-~�v����fE��Nv��h�4�`���i�c"�(�=ͪ��n��|�#wCDJ;�����8PV�a����!�K��وUW��-֪9� +���� +�K.�L�Y�#�֮ml�#? ���Ryaɧ�8���V_��F�4p٧�!���,��+��n�����j��l�����I�.$ȇ +Gʿgl��ysI��~�^{<S�QA4 +����C�D0��z��W�A�k�ǰg����� +�nAK�o���~a�>Cu �,Zp�Bк����R�lo�K���G!}��_C|�U���"��2h��b#�Uj�5��>} +��-Y)ց��gG�/bğr将���h�9auw�k�
eo,�{�)�0��i��yt�n��醞J�pe?��μN��\�d`2�~��īr����0�V���M��}��u��p����.�KD�R�ө"���y)�3As/���� +-f�Tuo@ K�\C��c~
\{]�`�W�1g��QOX�&��\W5|9vL�����h���S +xO~�2Lޠ���iB^�x�#���lQ�7���u�eX��`���sݤ �_g�p�yz����T�I�6m������%�45-�Vn7�1j�ǚKҢf;�����d +5��zM��k��A�� �c�eq��<��y_2~9On�@�4�}+�� +7d��~��%�/��ʡ��1|��C����g���e� 7%��@Es�����i0Y��Lp9�s�$څ7nJPt0YH�q�+��F��qve�ڛ� +Gͪ�S����Zs�H�oyR�~�'M��[Ҹ�;��n�S�!��\0���3��Z��)��-Sd'��ָ.m��_l �_��ch��l��h��y + +jz�i�������VޠE�] o{��������p�BK�=�M���4���-�@�����?CYhZ*
b�&n��s�.� ����j�U��hɰ6KζH��s쑢L���C�J�a�A�i6J���HD�Ƞ$�,�\Ҝ��1����ᓃi ���;n�h:W��{��@EO,����v^��Y0�t#(l��<;Խ�]��=���X����c��+`�����b~8bY���lr�� +�7tpV�6��
����H8���.�c��e�hrz�&dS?��Ȣ����|
δ���0$�úc���%�EPpD^m�*-��|�8f`��1P�X8�Ԏ"��K�
+<�vՊr����qOc;-�n}D��X3�B�
��,�� +���Ö��Ņ +ZCC8/ ���D��w��l�>*A�Cu� +ђ'=�ENQnfYQ�G�$��X�ѵF�S��Gvm�_�˥����s��p'�B�z?��>NBz�w�c�Mb+���}��k�:��dҜ^ԭծ���Qe���4'����=�-��9�Eo��I����>ͥ���*�u�x�[�0�>�S8YU<1�*w�^��u� 5E��<[p��nx�d[��^�8i1h�w�cqk��YW@>~��"oFq��+���\�8���i��X�KT�8g���6C�q +q�CĘ +��3������~��1���J��9R4@����C�Y8�MTvն'h�1͵^�/�Tf�iq*Ѷ�hb�N�P<ò�0w��ӊg/��"I��x���:-���MQ�:��#�q����Ԃ�.eE���x��&N�B�F�b�
Uo�#�w�&W"�a��4Uw��Yi.z��״p��$͡�^:�y]�|_��g8�,len��ĜX�Fn��RnR���mY�:y ��UEg�Q0k�.�W��%��q������7�!+�LA^�=.lTr ����#�C�3���<Mr|���v��JE���c���;�w����ᤫ�!�� +�[]k������VIP�%�F��tQ���<��e�����mg
x"�ۀ����2q��(:��p����'�T���և)m�m�Ył��~2I�|��Xb;���H����3�u��X[f�~�3>8�"-!@�"��up�l#Y:�[m�)��4�m�Fs�@�b�$�K�M$6���f|�&V�^�tpT��a����ƽ���q8��y�XTP���^���!,�]�頹H�m;P���9�*�K41&2�M4���� B�P�%�&�t- �H����q��� +���AFp���ȴ�V��t�S�YY�W�?GKΉ�]f-��P�٘��,��iqq�6`���I,}H�q Tr[�mFh[��j���:<�&N�3 '�����<� +(�_Kc?�-�D]"�E�%��:>�c065zm%����w�K���)�N��&�Ynb?bxۡg}�y���32rE=;,�3�3$�+���}S�Mc+�#�q'*��k�-n����0�d6R��N�"�Nw躏"kG�!w� D7�G�[��w�h1��V����<� z�� �,S��i�% k��v�c@_dG'�5�O��9�#26��?-&��I4Z6Zs��J'���%O��ob�� )��w3��N7���$�6s�D���5к��p�Z5rd`SBYO�$�w��`�W��b���ŕ��DdzM���x�y�9�b��;-U�$U�8W�u�[����W�g��@/ҫ�`I��֎GI�� + +&�hT�5��&��R��}�k����%����Xf�ɷ_ОV�h�V�jk��`x�,p�H�)=uw �ވ�F^�����n0�&f+�-xD��]*��9����Z�ɵLWe2���ݩ���(;ñl��sF.\�j�� �����DM�OB�=Z'�H�`_ �#6��\|�
�IG!X*�װ�'Bc�[3Y�vS�#�VCo� Sg� my��f)�o7g�
�L���Yn�F:�eb�(��a�n�L��,\�AW� +R��%�6Vf��jn��r�H� X�4���n +6ڮ���!k�p_��X|?#�Gf������$ȴ<�<�om�'^�A^/A��i� �դ��o'gW�!(����M���pp�M�'�CQ�K�����z^s��X�s����3|$�~�|P�Q?�g��Pl��a��9������$��!q~�`{����5�ݩ1R����y6;�mjf4S�c�
���1G!��*�w��@�=;�����Z+@I0��99t��#�6f3����D88i��X|�B�:���7����� �0n��Gΐ� N4�e���5g�m�iF�羣&���Y�(��>L,�UU"[�i1K�MJ��XF �o����X�ި�Je��@�n/�����(�c�#8�=��6��L"�n_��H��cC8��(�AW�
`��5;UUx�l<y �`؟�������ښ,v^9)��i~BoCF˟�_��t���!�/��JZ� +endobj +652 0 obj +<< +/Length 22819 +/Filter [/FlateDecode] +>> +stream +H�d�M�e�
���z�!s\�*��dew�Y%�ʘ��!؆aȿ��W:��g�4�:*}k�5��僨�u��=�\�z +.U (�4������i��k�5S�7�ȗ�hñ� �Bù��*��KXdm� �Tp��@Cw���ڻl�S�a]��4�Mڐ�6\�
�:��+a^��������|�<ְ܁�
�5�����)�d=����\�w��_?�0�����pRkp��p�n�C�M��spFt۬W����_ +a�c)A�ʺY���k�~L�/Eŭ�&|���ZVm�����(�9�K���9f�5��4�C\d?q�eO2@��3�2������Bl +
�1�Ji��4�1��kk�u��Ax_coC����;�*���eº��L� +��H���$�Ǎ)����8�����°��:���^��mC$�&�U����Nwm5�a��O�TJ������y-*�*b��ԟ��`cP:��W�!�h���z��4����?V�������K�~x������,oe�kT�:�,�c�r�A'���pg��C�^"[8&��H���;�d�ԠI�qWhnx'��#��ˑh|�L��[��;�Ed��Ż�3���f4z��'��TԾ���1 +���i�q���ZN~���t��D +�uζ!��+��}�l)�,|C��`i������M�q��j�I���O��hXx���C\|�j
S,=��� +N��8�E����T�Tip#�6a�P�'��ܑ�0�fqA�.���`q�Cp'��>G�t�w�q8����a�i�?߿��O�}���_>�}��ۯ?��˟�}�a�۷/������~����?�����?��/�?ǟ��Ƌ�r����0���>:����K�yP �]� +4�Ƽ�M3}5���w�S��Y�4x�Ѫ7�ŀ�ԕ�f*�o]B��̬�hg��a���BN�S�;���%)�q�S1�7���x�4Tq�^7���p�K�ϧ�7��� +z�,�2�<�!&^�.�!��������r�P~���Tr�����\�������T��=̈́�i��Ъ{h���s-9K���Q0ؾ|x�"�ѵ4n��%�S1��9"xż����.e�s������9�Rk%C2)f���1��*�1����̱���i�&F���#��U�076yAC�(ς�X@�����'��ک�5�!�<�%����6���s� �]��k�2C��h�3�C�>���w�\p�~pcw��s� +���8�C|��L�G�����RN�k�>u�p�����{lm0*8����2г~����s{Uc�H
� +��(�}�å�D�vv�J�R����K�{�a#�16ڄ�yhػ�p&�� 4�]�iK�nNkp��\���מ]�G*��ㅙn?x��6�~f�˫!���/��6�m�Wآ�oC�>TНMs2�i8�V�@�:���VU�奓0�z@�ڀ2z?I�}s� +�f=��q��
nn�w��:|7�?���x9l��)�O�ͣ���7f�'W�9�r0�÷na>�KX��4��P�p@���`MA�dF����hU�S��������7W���h�j�tR�2�P�z�q0�H���,���L!��5�K熯�!g���9�"�ދ�l桸%���Xk:k��uaA����A�=�O�^7�dz���J���������ћ^�����]Bα�I�
V(�qY���]������|L�Bwb����x��.^���Ki���p����-���O���\= +���fy`4{������Zˆ*�� +��c�Fu���r�솷#�x��o�57���*՝��߂���=U�b�^>hY��J�M��k����0�ƛ'gA�� ޑ����D�.-=�F@����]� \� �|R�ʑ����Eϛ��{)$�|�-۲�S�sj��S -KIa��F��ϻ�%l�zdY�lVR�P֕Ü�a=�fkVf���s���h����MG��* +c^�y�b܍ HH� +�r��4�k,�F��P<V$z洛��=��]�S<��ƶ�xI����*�~�����>]���J�.�Զ��K�wM�� +��Q�KJ�[q�G�(Nh�-|���`X���}��{�E8��7�Ϝ�N[NY3���5d�i�x/��n^\��Ȝ΄���5���m��,,�*D� X�Ӳ���T�|��?^��������×���{��a/^g��_�������^�}�����O�~y�h�_��hG��?+wXV�����w�O�*� +�P�>%^k�6�i�yD7$��m��'8j��}�=p����^�w��
��M +}f���eY=0�5�L\��ct$ }N +T~�C����ꟳ
�JI2�qx�(�Ci�k0D��[���[۫{V#$�m��WguSxmj�8e@��O��B�b�[�o���`cO�E8¹��P��8��~r��r��Xx�aRO�C�N�1�h�pw�c�bG�_���9��"<�4�w�o\�6+�rV�Z���H��$/`���>�����&+.6Gh=՜#3 +����i�h�ӿcN���l/�D\����n8��>��BA��@o�y��,�(\?��ueP�*+PZ19��
?��c��= +Z5P�&�K��7�����cu����y3��*��)���Y�a4{�@�[�]s�(� �>C�:I�X��f|�i�vz x�Ţ���/rA;�ϖ���?��yMI�*Ү�h��N�]u��|z��1,�$�ZѼo�T��*��zɠ{4��BI$�K���(g%g��50���=x��;�I�74d�6�T��j��nk_N�2��(�~n� ��~6,wَ%rRخ�'jTFx�m�d�R-!��OR��g�
FཷHa��Z�22�:��������� +����� +Ԉ��~y���ǯ���{�����>����~y�����y��܁����z��/5�6�یT>e��l%��Kޝ���-�=�2��{�nz������`MO�[�vŀ��3��@N�<���/f����P��V��5�)��/B��r\�|!Ud�������\w"�� +B�����X�MXa١Z���Z�%2���%X�%�x���3���n�`��2�4�����*��gmV�|`�NޡIіU��zZ���%�9=��cַb^K��z6�dXO'��zi�.�&�[��e�Qk������8)�?ė�Ƙ����HU`Ê�;9�GҢf���5��"�t����)��� +;f��2�ȗ"���?��N�!�FK�|⢊=Y,T�}F��nO"k�e��� 2��$G�MJ.��N�����uܧ��\^���Y�����7��R���`�da�7A8��V�0Vb!�l� +���J�*���jӇ���3��D_�x=|��?�W4Xr�#^��-i�v�4��|�Qp���F.�gx��u�a�{Wvi-��ϸ�-�4.���� .�,�U��b3pF��`$U�k4Ȱ���hG��ӵ�w6|k0��TN �&(4��L�=����Yikq�Y�aS��*(1� GB$�1���P��T�E!�)%��;�h:y>*�������[m� +I�\Z!.k�v\�-j�1,z((�B�Z�4B���e�I�#h̎��M�F���S�j�4N�ƒ9] ��;u{ؔ +i�E�;Q܇��+H���o����Ԫ��EN���D���N0�XtS0���@������+���
� �%�{$����\}D��0ȿH�d�1E����V�jj�9�b V�%�K=VD[7,�s�,�rl� �r<���DMi��<'s3f +�����|� 5?\���� ���`e��H���qSRB��$Tz���;O97/.Y�M܂X��4p+��$��q�z�L��泌�� ��߽�C+J�p�P8��H�[����j����h��ۼ���M<�-h���k�̀M@Pc�+�P<:����GƵ��!�X%wZ��f��LB�ɊL�}5�Gk��/ƪ��� d �e\s�܅�P�P�+Z��uTTV�vD{lU�K|.q<hU�Xh�f�nr�]B2VPc_Z�W��d�ޞB?2�%ڰm�嘆v��iY!�\kL_mA[��Z�����:�V`m�����Hz��1�z���\�D�:�����8D<此 Y��!Գ�9�WK%8;�[����L��D��+�܆q��{� ,wH??: +�;:5�4$(�_���й�>2.u��0��w&G�-C�Ϊ+��� ���$W�w�C��]�e��*A��!�ub�Ƞq��Ӹl�%���<Ӹ�;�#L�(8�3ræP��M�%� +x�)r�9A�3�GT�;h�``Ρ��d
x5��`L^e3��Sy�ɵ��b�*�2WС����A+�J�A��+h/�&���տm-��ҵ/Q�vݙܭѲ��8��f�~�I6\���O����������߽������=�M����^�n�}���7��y{���������?����n�V���'���Ξ[�i���
g*��ވo����x%;eױ����a�T����B|����P��S�Ö&�%��|����D|rs����.mW�*��W�o��´M��R�> +V3��X���<�Q#C�GY�?����/&�|���_����wz���?|6��6�����o�W}v���{������'����g�7�������_��?��k�� +RH='z��[d��.U�M,:.��� �C��'m�R'�z�f +�A՝`^� ⤏9�%���7�
á5�ɐAP���C��KOEr��4=��V�T��Tj/x=s��7�b�B뷿�)~�s�A/%3�h'�h�d2�<����l�Hk�U�H�Ut�r�xF^|�>�p0��]��.I*�G��pe�6Zۚ��RӾX�p�U.(�;�S��²rG���%���ӫW��NM˾������$}t�4�D�s+X�����٭v�l-�B����NlG�*@��D6�キ:���rvo(1o `ثھ_Cɉ��tk�5�2?8��Ů�z��y�7�!�����X��L�i�@A���G�X�U�J�}�l� �<\��Ν�R����������;�#������i[���i^ҠuU<�e0�ڜ�%���PS/^38�4��^^ �� +<�D��~��;�1���MW�h#Ok/�Es�lkU�Q6}=�7����\C���V�*�#�#���{/�Q{t������=��)=��DO@#��
Te>�`��V�(-NN��s�A��p �yyo�c����ֈO�����$�|�+��u����z���k�p�ڏ0��Z^T���E�g��M����}�)��#��� �(Y�@�X�:|�z�
V���h�QP��=g�~���s�~2Ɗ|c+e� +�l���Jev2R���O�E�S���V$'�]"��FY��i�R<��P?6��1�%J��Z}�*2�\i��e� +
�K���([�h9��Z4��9Ȯ��̳\^�&� �>��pS��Fz��?�)��X.��5Z,�sy��X�ǻK�Sx2���R��Hs(��|e���InN��6�)VK�`�<��E)��Nd��� X��*��-K!��J�J娞�0���*��u�m�X4�DS\;�~�2��Mv�$땫��� +��g�qW�8{��? a�z�ԍ�������s������j�6-G��,��hxo(��;,C�}� B�C�l��}�V�� +�k���h3��~����ә'�:��c8����@H������c�=��Sa����(��SR�e�<�O�C�A��b8T_�qs�;�z��E��-�f� �N����G���c��j��}�e�i'��1N��9�����zvj-x���UP����=�ݗ,�5+cq�\�.ٳ)��H0��$��(��aP1�E�@O��j����������x�f��A +�[�?���Cz��y|4]����~��~B��p3���(&rt��a{P>����Ep�_!�b5]���Q[�X����T#%���L:�i��p��w�r��j�{�܃�0m�Do�_Ѕ傠��Ŵ5���x�ό|,!C�ǀ +�h��^��
BԶ����5��|�m�D���o�����da� ���������c���'��A\c�x��P�窴�viy��N�9U�"!ȉ����hTSRzPϒ�e�s:�h�B]�N���k��;S(�E�����ȷ��Ɓ�New���d���b�j^u�. +���C���|���b.K;�������j�M/&ɟ������$�ՒA6J�ӵ�������'�_��8����XȞ�uK���~�����z +0j��6G�]��3?��b?;��6�3=.��bZ� ���8$4,�j�Е���w�U\Кx���P �Q��Q� +�GL�o+���'!6A���U�����-��W�JkU�} +R�a�����������ÏE�L]����g�u�=]y�=���~gT�pυ���E� �[���XL͏�
�lP�]� �����L9��7�,�������}ʉN�}���1}��b8{"��@��4\8�U{����l?|�����}� �T�Pp4� pUNd��#O�x���xm�/F�8�q��e�5ti|�@i���v���4�K�D�r���%��(���oV����fb8����%�M���=��el��rmCj�N�Gjϖ��E�
��u�6�se)ʯ��L9��ʁB��#ʹ�E�0!Pn��_��&�V�4Wx���B�������ϻ��߭�n���.��y�Q�L��;t���C��X��L.��RF��4���'��\�\����'a51���ږ`0c���흓�d�Z����hX�ܟ�|+�|���Q�ģ.� +��āۢ�����4�|M���3����ITV�e��댷\,���!ך�k"�����#SK\"�\M�e=Pז���>b�J���O�]v����j�O�u+˹ffB�=��FК=�j��Ca��I��76VT}� ���U��G�w�8\��5��S>���'������Qòb�$V��,�V��++{}����]Y��f�48z��>�磫eY1�0���E&�a�D�%18%��Ѹ�6Y��Z��z�\�Z B��GR=+�dtC�s/ +�O�0Q#����߈����`���n�z�!&#�j�55�M1{����a���!B�y�}|̺�y�5^���K�Jb�̫��X���ێa�MCl{,=��� +�l&���"SX�� �7��%?�� �7�j��n�;]�e1�*z���93�5�&��!@׀#�v���S{�����F�\p瓠���r��l
���ȑb�Z��_ +��m��bD|=E�ɹAM��ށ�V��q�����!�Eu���5�^�fG���[�� �M�y-6�j���%kQ�!���*ǑlǁW�G�FI��m{�o70^�u���")��K��|�`��)^�+�1�m�s��� +$۹��������7���v�O�g��'��i9gP���Ze�GM��$�;��"&A����R��~�X�*Y\G�
K�ǣlWs� ���@�ۨE��T�X�81��O�w9X�Q]ꆬ[�:�� +E\@��� +��K7pP\k���Y��sl�y��X>UN�zg�٪���T�m� +����� +[�֚������"��!�+��E���bt�0�mt�d���;��}:IR0{�(����gW�0��Gk���7���p9xC��ڗupZ������@�8��٫(��.��H�R� g{�6l�hB��^G�&A�r��h5�R8�@����Y�A��5q_�3��|����Ŀ��U ����2�g�>�Oy��� I�m�h;@^�e��*#t��a�|�=��nx��(r�����`�QAH���b�WjJ=V�2#����ˬ��n��i,o 4�
��(�I�����pI��S�7
I+���:��ɨ�m�#;G5����:0�D��u�6\�W��Dy�Ab臷��Z4���n3�̾b����H�P�Y"��4�lt.�Fך�*�T�~*c��L������#ޒ
j���KYVRu+���m ˰;o*���K��;��Q��2c:XA� ��}��Ō<��2�-���jK�䒵7
��w�'r_zS7����7�-���Ȃ190��܊�j��`E�^*պ��(�pr3t,#��@�!�+ؠI�WX6&W�m��^�*:W!- +�����X�x5N�F13 Aɺp��e�� ��}�� �Q�v$�Y��5qvKH6�d�[:@6�W�fǑ��@g���fhq����*���jP-?��+;H��?z��H�):\!)�t?�^Ծ�:&s�(}�u��6��Q����@Y���X=x~:Q )�/A1O�cbϣ�=�Xl��*��$l���S�M';���z�ZM<o:�)�Ĉ�ދ�,�fLcX"@K3堫��&�����4ͽ�����f���@!0�{:N~x\��(�L�O��.�J_B�6_ +�n)4o_�9��(�y[��'!���7�̌�F�C���#���W��A�G���YW:HtC��KxIZhO���ty�;n85��x��U��2f���k�"�ܒ`��)��C���A�[��Բ�Л^�A\[~E\+w�+AC��mh� +�).�FyWE��F�.X�(�K���_WVF�6�K=Y`M�i�ۅ&P4IA�0w�ބ�Ƈ�=���s�n�V���&�j���YBG�V�ٚT��6�%y��4X�{=���l�:��$�ٹ���V�Nݯ����F�YU%B�,�\#;�l���V���ټn�y��+G��d +�ޥCh��N��l]Y7�N����b"��wn.?~��W�=�D�yK>%�Y,�1|
�`H��d�>��=��`
2"{���\������>ٱa��}�ł�Q ?�K�k�eLi��K��]K�m�����1�5��'�+bas
ؖhzw�8H�O��H�ؽD� +n��L���;ap5�������0�".Oٜ*| d&p�s�ـG+��ɘ4��G�+2��0�6��d*��ժ���m�e�����~���+r-�N� dk����4-e��h*�5t��F�1ڳ?8��V7B
÷ɰP��b���� ſ��[�!�~��`;�Lv#$s-�9���S8��r��Oy���U}���A%�AvDA����i���^�{Z^�q���1J� +��}�-��G�[͑o��p��| +J�z�C|I�[wU+-�բޓMV�G-�_k�������ɺ��4���Qp���`�/CC#m�YJ��c!�Ɯl�8��I���[�3�m�q�vp{���+Ӣ��5�x+ +@������ףEo�yV�� +"܋�%@ھ��IYg�$ �H;c�F��������0%���y�5�q"�F��n�����Y���{����j٭츁��M +�ÞۆR�s�j[Ve��u���t$h�ҖG�N+~��<�G�'�����W0���{����Z��(ֱ��x-����]zPҴ,β�t� +����)?*�q} +��,�-c��� +˻|��CG�N���2g�@ClSC��j��%_���U�rl!��� NWM�8�;��S3�:�d���K��2op���c��j�W�/n�<|Ȁ�'��ɷ!�
� [Ņ��T�}�d��o}�q��e�z���iC-�T�Ü��.��~����(뢯C^���61[^�%��]���&@ZA��S�U�T�hY�#����#)�y�1����,��ܸY�
Bhu*n�N�Yf'�V�@%3Ҟ�U�U���[�Z��lN�A�N�!xW�4�~.�c�D�H�4�Z�������u\Z�yt<[�&�У�)�\eM�o�?���e��{�ڤ��Iս���% +�ũ�O��⁶�IU�N�]+A��s�����y�x୩��a�|ʋ��rm[@��S�g���ja+]Ug-1��d�-���%T�|��?k��Т�N.�}mE +V�&ۺ"r˘�2ؔ`KBȏ(�C��p��\�͓'?|�_�L��8̑8�����ט3�z���֒}n���Cl�p��@��<sX�F����!���s��͍N_��+[wǡ?����&x6��ͩO���|��m��Ô�B,q��Wh�h:̔
s0SZ�y�7](� �MѸF�רU�q�Қ1��!!)KT +����Й�ʲj��
�梣,t� +�
�_LกLp�)x��qg,z�<�l|��%��f���b� )-B�]E�� +�'?|�4����p�6�JIs$��lW��6�;�t����G�K�����XnT��d�U�V�W��̲U$T�̑|s��"��\K�X~���0�m���|r +���x��
��O�{[+G�UTz�LE�����S���G�y��,�۪!�EȒ���|?Ǹ5*Q�ok�����:�&����|�Y��9�俽��V^��IW=�:I1sI:R��Z�tt2��p<��&�i�'@5��`�_,ˊ��-m�+�ܵh~��p�Sqͽ�p�qh����ͺ���{:=��C���W��ܿ'7?<8����<��W�w��ctDh��3-o�_�}]�4cq�?Gu�3�zjPqh��xx��2���ԝ{w�n�1�S��g�،�Po�.����f��߯e#�'%��S��0���/�'?��rr��go��阼�wx�h����p����@�M�7�,��^4G�Od���,�rhvh�\�b������p�d��0ݗ4q̼�#سa�� +�2�:������"B��-�����R&�� +��g�����AFL��D�f�� i�:h���>�^α��X�-�a�m�tPNG%s7>�a�$�����O����Fo��Vp4Xf���[�)h�&ܴn:�&��'�;zݥbic�l��0���T�j��K7i�g��/���*9�SQ�e,�QƄ�� Vyze%3S���ߠ��g +Ǝr�j��/Z�O�Rq%��L����uD}M�3@Ќ[6{�fWT���>uɬ�T,3} +��*>�tV6�R@\:�pS��P� �~�3嬇Y:og���F��Z�bL`+�Wۦr��z����h���aW�U��}g���0�)g~�����f]���Ru�;Xd�t#:���ЈP�s�*����8�3�*TP5 +.:&���!�T�h���&�K�2�����֬�� ���} +;�����ɇ�_���=0Nf��:�M���_z�n��s�4���םV����00��s��ӊ���$��*٩K�ƪ�Y��n7h4�w���G�n7� +V�.tت�#�O_=�۾�/��?$��Q�ke��'��8X�p���WO��:��ꮺ73�RI���<�Ę���2^��Ō�%~RV��f=��É +l��=V�ʱB�#'.
�ft�|tp^�U������{��X����R��HW�骫[)/FO�d�|F眳�pZEsD��������!H���Rj�c�T�Tv�+;��P�t���B9�-E%��c`�����j$0p�e|��t.���<FQ�1�a�4�.y�m8�:��8f��n�43�8�㼥��"��̓,6Z{|>��������J�-����)IaYz2{z{�b�J���M�\�[/\Q?�*�Hm�<dbZ^+c�d�a�`K�(�`v!�Ӊ(��1��s{F��UE�+K�5�������� V���TCx��(�i.n��H�o`o���=�\���^��;'�J+l���?�C,�� +��C�--8C�:�B9
6=�Q���z퓭��*N�)�KsP̶?ZBx�'X�(�xG��w&�sm�Yo��(����ɒA�b|��|ל=�5_]�:d]��.ai����������������Kan�҆a$�%���L������k=SZ�^Kú�dP4�>~���~����gVCk�h+(����9A-��` +endobj +653 0 obj +<< +/Length 20710 +/Filter [/FlateDecode] +>> +stream +H��W��e� �]��d�����B��S�=���r6���t�vf�N��j.p8�N��h}�M��~]��w�/��/�.�QX:���,���nY���tG�^]d~��mP^m�8(/5[�����k�ń�G�ӆ��ESS4obS�0�s�F���T栾h�7�*aa�?F�4g�Bc&8zK2�LJ�떖I���>���
�R\>F������n�Z��
a�I���c�|!��e�ҋG�H/��Y�D�/p����h�{�W�x������%=^�_��~3�D�����gm
�]'�~z��_cX��Qe�Xu�pl���'Q|9�����_������D��������[t�eҌ\9�#A�u�xM���{X�,����1����-��s�_߾sGp�bQF�l5���rP_�E�~E4*+?U�����y�u� +����X���N�e�,�J�O�8A�������>��N���^��8�0G rߙ�5�]��u��u���LC�f����Q���Ki�y�<�d&h�e�-
�lv$H��}�y���.V��,@��|�p�n��#�*�`z��zYt�Y��V�(�̬��K)}h��<��Q����-���ⷯOG�9�ŗHv搸*�7x�����Qb#jf��q��e!����b9�:�@�<ٜ��Ҟj�lj9���j�ڵ���6��C�f�T�z�Z ���.��忾�5q��y D�֪g�������Z{t��J�@�P�R`G�'�����V.ڸ�4�=�$Ol�e������QК�1��E���ӢCc��ژ\�[NZ��F�c;�-G�s��;hh�5�(\�E���s�,�j�'Q���-&�I�13�~啍#���8ꂤ�Y[1�!�R�5�G�,��l��S���ҋ8�!M��I���p�f�m� ���+A �`o+A�0{�,|�y�l]�
9�_�����F%یg���bFR��O9mKr=�T�$�sP�(��9�068�ļ���-7z�1T�D�|y\4�/nA{.xj���y�m�q�G\}$��>B1�,A�Z�@M��c��`�C��`y�o�d��m����Tw[dT���Mp�@�v�UA2�0���Sky_�EZ"�z[��P�7R����Z=���h�n�;J]�d�j(�ӻ�o!ʘE���1�ed�%'���-&�\ʥ�؊M��IT��1ε��K4�|���f����Z��m�)$
���)��d::%m�ڜ�۠g,��l�2�n �K���o�4 +�-ht��r7��{_?���8��Q] +!g����;�b��l�#���I�
��ob�52
ڊE���f�(��l�ξyao����[� ��I���(�=�䨓|�����ǫnSQ(b'���=�K1+ƽ
[^ïͻr�����g:oZ�Z�ZBx+%�b�EO��o�ǻ��pLʹ-��G1��Gtoq��#�]�Q�.LW�����*%��[Q�ϓ��Sg+�-^m�A$�ҥO`P,57�=<`�E��?�K�SC&��9�9
�H�"Z5�{�7q�3wD��d��- +�i{��� +0�%�K�`N�J-�3�En�c�`ٜ�n�����mX9JZd&��娃.����蔬ľf�Ϻ�+�I%� Do���XSDz��s{A�i&a'.-٨�[��֚'f��cƈ�0�|@'�L�T�n��c�Z�R̳���1�b�^z���%�Ul�a���Ie�q�w�
v��|&���h'�멍�,���Wͩ
�`���+3c䦚�f�`S�J9�*��$�hN���v dG�(Vy�����,�ϫ�Y�pG�����OHJ���a����?PO9*�o�y[&��E��
��>�l,�����X'[1�s�ߍ�}�B����0���%aE�_�h���5�pm�nv�VZ����~��#��נ¾H>'Q��.A��!i�:V�DV�ژ��D봾��"7�� �$��s�O6�<��V.n��|,��$,�r��
��@ t�Exo*�������
���VL[*�H��[*'��c�3�,����Pۨ�D��a%x<�m�=��i�5v������8s|t'�MeN{�5 ���yoh�=���N�/����IY2=����}��̽�:(b jk��y�a��62�Q 3�!���y|�`��`��t��sz_�Y�$�)�����dKA��e����=R#�ʂO�=~|z�V�����+9�/������ҏ��:��Z{�}��^:-�T��-CPy�j���4�h��Y�Z��
�l X���st�R�,�-|S X6
>�������9�8@L��BxK�Dt7��NK�D�L�e~� +C�h���w��R���R��l�]2�KB<�5�{�1�SC�H$TNe>Xc�צ��M����I��+��_P�7|�'g��[���Wu1�/�G�����ǫgk -.���*�J�|���c���0�2c����7�K!o=�kU�ٍ |"h�1���G.��L���x˟���Rp�xo�N�m2E��&.R�kQ�;�11��#�xuugD��/� +L� �{�If�9A��5����������| +w�)ߖ����z��<2 +��3Î�}��?�w�N:���O���(]��ᄥB���Dfثչ���i�]
�8=���+H����3Mk :9sۉF|.��/��(doZ�c�����������t�g�(lP]��2dG�4ycʯ{%yMRF�I�@�Qя����Y���pf���ʰ��0h�����|d�ULd�I�� ��yp�/� 7�&����^�Cd
� f�d���438u�1Y<o +x��k�6X�A )�]�Y�]��`;�=�-3E��fQX��1(�����p���ݩ���v~?�o���-��WK� +j�T�U
_s1e� ��<���D��Jޙ��'X�5֚�f�C�w,rBS&]�k +*U0��-��,r��E9�a�,���; +��7�1�jw���A�e����5ͶR170���Jj���� N�?ځ+Vƌ"�T�>�Q����Hh= ��d�l����Pз�m��� s��) �ĩS@#�|X��s���;3N&�Ђ=,O�����;�Rm�/���mu��!�"�M� �uepñEЅ�9��� +Dp��~a�^���W�2:������%� ġ�S�9�[Ш9���� +``�^��Y��0��BwJY���|+�����-T�Y�_O��RB�M*�A��ЍLH���TyFv������v���GOV�����~�@z29��B���2����P����:�}�o�4��ܷآ=�w��%UW�u-F�v]�s���yi$Ǫ��k�\MA�w���.���t�������<{��?/�A���H�c�vGPWu�W�<�*Z +�� ���?��Sj���� +�1rn|��O�f}���MK�_���hb��1$u�8���%� O���w[=k���c�u)�a��a̅}X����S8?���o����{F0���Z7��B���[P�2��5ѐ��\���`��=�%������9��������ǿ�e�[��BF�@ݙ8(2�����8[B� H�~�A=3��w�EO0� +%J�]P�*t�-E;�l\7_��zN���K]vo��j{������D����b��}�?��g�?�^2��u⸶�Sh +)ҡf0��E�pf�u���u�;t�3�E$㝏к��[ �oP�*�i���r���+`Ϟ�D.#�-�[��Y�����BLǨކ� +��ȶ~�dqa�4�{��n��%���U
�^33S7M�� @�_� ��Vo���3��n� CȚ�"��i缄���vE3� �ăx��
�53(���?��u�ON`ěOy�m����$��9 2��/:r��|�Ij�;sb�h��~|��a�݊�9���6=C�;f��LF�#��&M>ݖ:L$N'����}�}5Y$�+�.G����V�VO)w1���]��3���J�l'�f$Ǚ�L�S��C`^)h�Вa�uЌ嶸���>��u� +��se�N�/��;C!z����7�\�r��Y`�T��r��(�@�����M5�I��q%��I���L4�;�Ҹ_��$�aBz�
ԭI + +�q �;=�� +Oҭ��B��i���E��;:�/dŻ���) �D��3�v
�TC�px��-��9I#������e$?�f�#���QW�gpD����V����^�59Kk�*Ϥ�WL4Gg�T�g&gf<f�#CʧP�������E˻:�^�R����;Oy�F��`��;���{|s�K��,�2����P�Fw�3=���̺�P�;Hz�cfpt��N�gf$l"�zK�Œ�Kh�Ar�8�j~����y����-�t� ���,�!p�
5��ټA +�/�xN YyN�V�`� �
�j�8�_e�roM̟ ��ո��(+%�V�o�YdZ�/X���|\�F��y����|�%�����(��4+������nr�R�Q�_� +������T�p4+�C�e�mR�=��G ��kv��&��8��Yf���3���^�u�(�R����j��-���eR�.D���$�ڵ����z��&�6^��9����v��� ҃xנ���s�������bg0�r��r�TԂ�uxS���[.W����~�Xa�@l��=.�TLEpHˇ%�%'<G�.f{��3����]�U�����|����GMj"������:�I�y�p�=��G˗v]a{���jաPi���J=
�t��A5n5�
��ĩ`�`�l�~���d����
_ժD��j����<3�+W��>U�3����+��@3w��������웱��sU��̢~qo�{[8/�IA_ړ�J�'��~Ur�h�T����_�ل���?�v�T�c����H��p�pQ�3V�+S�d�H1@���+������-��N�5HJ�4�x����K���1]�eo�o�@J����3'�㞣G?�����Hf�H���A\=6��]�؈$*�)���GK���&tӒ�Y�'�7�@>]�XY�7fA?5�"�������;��*1}uq� +��g��;� �TlS<h>'�`3���m|�r���y�63��9�,ȣ���\)ސ�����#�:=S��넿� 0`R
�����F0̠�.���0���l�~jt�sT�/���v@�hO�L�� +���֒_]H.}G�`�"8F�>륫��WuC
�����V��Kk�.4ϼ��#c/�qe����/�� +Ԙ����R e �SS�=�����t%j% +�(o��G�pb�p"��J�-4�K�ڿ]�fH�3TZ.G7�h�o����n�j8���KO��w�Gy?{�D��]3sfF�ue��a6����""�g�W�6��=�10-�ۯG�dn
��j�J�~V���W�S�V��;K��H� +a�!�ʒ���� +��n8�"�K�|�[H� ص�`.2�c��]�q?&Ef�
(��<"���s{(yQ�Y��np�:#���[���YV̟���;#;C�p�F +s���A�Ju���
+Me�pvHgΜI��Z,��z+e�+��V�t��2> ��JW�<9�8�ۦ~'t�x�'`���ce8�����!d�V*u�d���h�Z>(����x��a������nw��4�NX��w�����w�L�w��w������g��������l�{������Y������ˇ����������?�=]>,����{|�����������\^]������5��_�0�[����ы��?3��?�v�+�j'�����;��krӗ)L�O����.����^��Y�#l�D��2Zr�����ᧂ;��gM��10��u(@<b���G<f�Ijz�c6IQ<���LQH�l�Fn�9�R���3q�,�'�x���A=�x�x��i��6��,q�|04�FNm�r~�/y���$}�ڣK�s���ͻ����jzyr������ǻ�/�� R�p{�ӗ#�3@��X�s\v���zce`�]�`�d��=���-i +f�:�*|z +o}��V0~�Z�� �&�V�4|�����j�H��Q�=�=�7��h6��Z����������R�ʂZ��7 +�n�.�֪����4�l-C"��e- n'�(͒�m�`�H��h�Q� l�p��X�Y�:kh��_�g}~�?qF����p�!�m�/Z��ᆳ�I� +7��k�?m9��Kk{{�V���<+��8�W��z��b�,�S��ݶ�Lnǁ�?��`NM�����h�8Ȳv_��T( +��\�9;>�m������m�9�� +;�_~�+Aƒ��#�_}ܬ�[^�����$��R$��t�!�:�XB�u� ���=mH����o`В�c��u%� +5�����G--�;@bc>l��+!䶡���(u0+ �h�Q� +Lhǃ�@��Qt��Q��J)�a.sz(��GV�L(��|������V�l��>(]�&'վ&�����& �P�Ȏ�;hY��C�Ϟ�]GSxP�*�.b ]I!D5O�Q�+�siP�&G7�@Z�>t�9I7�gk���(�M�Á��9�Ʃ9Z�*'�qfm��7G)�(�cVsT�����HA�O?��HjWDZ�z�X��~8��<<Vb�$+)J�����I��j�9L�6�5˓h�IyŒ<m�_S�'
���G͙�G����,)�l+u +hݐ�dB�b���F��LP�T0�1�.��Nb��$��1�yI�� u���(���qn��p�<�K"�6��v=�Z0�)-�F�
S,��Ա)E (ډtp����)[rTcI�FkJP��Ix�LsW� +��ap�\� +�Ү�|@�1��s�)�]��@��]�r<�<�j4�S��)�.$�+�F" +�6���WЅ��!
=+����D��y�����G1�B0I�IsA�sg���6j��I�K
̶m��@�X!�����Iƈ�q���l�m!Gf`]��H��C�Q#�F�v#;$i5o���p��7m��U�9���6�j.́-�����v��o�����dӕ5��ae�j�"H
-Vt)l���^5g�A�<���y��n�$�ex�Л��[2�����L8� I@H�l�h&$:HA�r?GO�$Rx��(��JO뀴LC��f}���aY� +�N�4�`#�-͊�Ɯ�`���w�WX���%b�L�6�8|d�����g��,� +�X5p����Y��`�kz=L�.w��{.g +.z^M����E�˞��V���z_"@����q簴��ƛX�D+!h�*W;z��m+]D�����V���G< +��j�$
[��#��M<�U����&{�@ˍ��W� �͡A�:]�@��`WF���ah#�k��S����e���"�@(�)1=t6W�sz��Ǜ��k,�
G�1ڊꓱN��bR3G,����DV�R�=�K�Ӕs��ie&`Sv���\Ԉ��L]Pm(����Mm�N���~i��L��o>���3�J�NGm�b~�n��a�9|�"R��=�� �$��Z�K��^�2S�N5�()�B�:��>]�>�%V�CHB{��w�N�F*�v
�Z�梿���9��ֿ*����G�e�FL�-��2҇����r��>L������q��q`�YoaH���>�C�W����и:�����b�sT�)"��r�HV��R �Z��,�q���;GYwO�^�\��x>�\�����^�V���ڰ�5DX�t +n��PAp��tc�f���jU!6��Rz��u6q�em���Wo�,c�*��>��E�,��������qd�+��\�2J���I��Q�ea.M&k-����E��.��@�2װ�Jd*[�G)K��$�>��c�5:��H��kV�[h�y:�p���VJ����s�,i�彡�K[-4��E���v��7,�/ +`a/2F�r����ʙ�'����x`�%ې�x������B;4H���iWU�/�B���[�YL���������_B�59�9������X��$ ���S�x�/��1�ͱ��Oqz�x�+s{i��l�������e�}U@s𧾶��?�=��W�K��|�H���G��{d��7����\v���V�$�2�Gr�|nE��/j8K��� +ps}�^A��xW�j��,Dq�XG������5��t-\ +2�&�W3�Ҿ79�d�{�S���kET�6��{�TK�m^�L�Ъ|�� +���}�UC-�ey�ݣ�%O}�=���8]4 +zv=E=�@t�:���T�� +ۧ.:6-S��JZ�E�42�8f��Ac���<�'c���F�(��ci�(��J�=�j`�W�1��>���k*��q��ۇM��G�y��*>�`�a�����5=� +}}L�~� +>�\���&�ˈ��TC��U�j�} +�Iu��~����^M��8�>�����xaaF��f��C����Iͱ���r����W���O�����"T��e=,}k�r:�16�6֣Gum��P���{��r��R���!-�rIYݘu +ct��d+��������D�!����4KO:a�G�А+>��9:�SςD ��)�r2���b:;��N��z��������Lɸ��e��hicYc�1��Ha�RNҗ1,/,�;��+�Wc*-Z�M����,SèZN_s��Bn�9J����ɽV��"[��Ɛ�.YIr�*yP$�U�Pơ��n�u�XN,�V�����ck�N��9�R� E[���S�#UGO�����[�g�GFt�h~���k�dic�x1Z�^�1����Jp�:�O�)��*:�Oqjۗ=̞�˩R c-ٛHը��+Sa��E�3�~�e�N�Sk����c�O�6�c43��8�RE/��Mb�o��͋v##��/*��̦��[F�|�0
o��$#�Օ�OR�9�C�O��T��J�S�}ٷ�& +�"'c-&�U�K�M����b���.U<�.o�!���4Dz��7�w� ���Я>��ɑ(���>6]vOMnLY)*Z��h���5��k�ì)yèA���ṳɈ�������ʄQd#��R)��N��L�rf>
/:��i��)�)�
(&��`lY� �]c�&z3c�f�b��K��k�D�M,�|Euqƨ��<�Wo�{cD;���jEM�Y�P��K���xt�%���K��RZ�,��)LJ���*FtQp�+�/�q��%�f/y�-�`���� +�@��4.�Y�L4;!���=)X��?
��tAA�� ��a�OQ���8�P��z�t�3X^%���âN��J�H��d���63m�U<xl�Cm\7a,-�Y�(g�(G�(F� +��ơ�4��(j�DƗ;���j�D���}r\��e;e�BC��AT�e�X���j|Q$t�S<!P��-��V�(9@��I�7��Cr��#t�罚=�b��ccQc�a;e��C@�.��[��ۄV�Xw�/�}��f=8��+d�F��3s({��1Qx���u8����A��ԶS�Ƿ`WH;���uDz���)�%�a�m�]#ǂ���i�/��r�[{���÷5Ya��X=cJeO��\X2�R92��'��M%�*�)�,�
���E�0+ͭK!O(}�A��9V����Z����yy4+[՚A�� +R�����e��H��<I{��sՔU~�Lu�r��$c�\�bD�#�*F����dt�-��x|f�&v�!G��e��P Z8� +Ou��&Y +7�L>�:O����� }m 'T�4��� +D�����zL�eW�9�)�ы���]�� +�1i?4�"��^Ԙ��V�n7�$K�ڏQw����]���#M(�p�/����-)���1Y������9Ƞ�� ���������vL�ļ<�1�� 5�b��w3�,L��'�v�=Y�0�]�����@�JaV������1D�d��cR#WA1J�g�Gy�ɩhl�V���ā�Yݪ��u����s�]R��<��#�`�Lu�1�7y�0�u�ΌE|_0���ݏa���'��aLG��0�����0�o���Xk�I/�9�ԣz�ご�����d5t�R�1X��PWD����dMe���.}g"�u����:��"�l�d�S��|�����J�#��'��PQ�&�$�X��E1�8���*��H�h`t5��ә +߿�>���h��� +-tm����q-�4rA1��Ҍ�ȋ�����_0�O���FN<�O�U#Fa#��f]���YH�Bu�o�%Y��OX��'<�r�N-��'�U�UD��&��@k����`�}�����(tQkJ_�4�����nR�� `P�� �P
�gf�{�+Tc꾟l��v���ܙsϜ1�;���
0
}�p� �Z�A��o +fP�tG�z2���a�Clx��1�Cr�R2��T����x,Z��@���y�)H�hC!tP�҄=��6e0�U����@��:�b�$�,Eې�,�u"K8qֶ�!^�7�^�VƎ� +���o,��)�oH�4�u��S��S��w| +�RS +Y;Ũb�%#@�qJF���QœD��oyF�t"ׂd��@�j�?�Ĭ��=�"�`�DLg +���L ��ŷUFOƖt��|�<�P0G�]�ҕ$ +�kM�^:�2�6��x�*� +�5#��� +�+1fP�.�~�P��qLNF�/,����a��z�&���#]� ;�d�ť늆�ԝ�ԅ�"�}^ށ�k��Lx���`c"���wrV۳�\jX�S�@<��L"�5k��W6#Z���6T�����Šbyfʁ#�0�o�I�Ģ�A��x3�^Ą2�%��z1_�8 e"e�9�X���:��{�9�Z#J��R �|�$����o�Ӆ�����z�pn�Z��C<j�Nw6 +]1�S����� �s���d[��?�lf�2�z�J'W��)�j����o�l~�;�X����+�/O�����;�]:����̙[�<��06��P���?>y��v=�z���S7<�}�j�p�}�ǯ�/�~ �/�{�����7���8qm�����~(���O��[�(�P=�����n�����i���?��j������]'.}狚�j�����d���kհ��6z-c��n,W�&��R7o����#�K��m7cm��ov��8_ꓽk��ۇ��"�8v���O�\��ukU�[�ֻ�Q�%�*��{V}�w���f��~�~p���c�_Y�ٗ6�s�? +endobj +654 0 obj +<< +/Length 25748 +/Filter [/FlateDecode] +>> +stream +H��WiPS�Ό����蔠���%�-�� �X$"����M�-�&�b(��J&���Š ��R��}) @Ȼ7�f��x������9}��_�P�CVC_�G�O�Ԏ�E�D����M�;��!{�c�!+�+s�`zq��-?�J���WٶjP4u ��oܶ}����4�[�Ӂm-{���~�[de6� +mfm�7T��Ź^�J4S@X���@al�M����.��@O�"¢���*���ʖ`k�)+jVw�K���E*���tO�ɬ +��%f߇�K��Kq8&}ݶc��Z{�;�M3iP(ԙki�8���M�Ď`����P7A�Bi��W6�4VP�픥-=���~�FG�J�q�� +��-�u��V�����I�}^Z�(����yX��j��%��\K��YR���6��k* +�: ��e��j���v�-�XmiQ�<�~pzqa��!�����(J��͑�a1��d{�/&����]��Ym�W�ox#)3-�zMP��HDD�5�4���\�� +`{p���M)<��}�@���Iq�� �!p�oJ�W�ҳ%:Y�<Mw�E����4��K�3^C��w���S��m��$��]�~�x�0�<�)O�p�_[��B-������JM$0�SPlb�U�TD��tM�>�S�6������yq,.�[GI� �P�fڤ)�C������n���o\*%����������ǡgA�Apiטx�P3��9QH�+�-{Y�lJxr�� +���jR���{ +<���H�*��Og%� +����<���)Y1^�U6�X���h��<p��� 6�&���|)숥�7���6)���m�E�s��h)� �q̯���U��:H�ct�,�c�10(��'����f�U��Ϣ�CpJF�-���G��i�h�k�.��q^\,��R�vLla�>����![ν��\�)9�2��&��؇�I�ʦ�a�$'4� �W����v9��gL����uq&(.��ϡ�X}�0�WP�3䤜�?�L�~��vJ����!6w�}u��Ф�V�;. +�0T�jto� +����y4���K�}"���&eQc�a�I*{?�2�W���2�}"�8��*H��S�s��+���^�u�ڥ(Z-�ET i�"�dR|p��ɭ��<g���L�h��a�O��f{K�� h��Ֆ��.
���}��TzN��� ����d��9�&�xȟ�9�����:�U�
�Нɝ�̳�y������c��L�75��F�m��lZ��U��h�LtЬD��=2� ���3�oc~<�_�?e]�����(�,�ϩr���luv�5j�~�mID�G�ߺ�(D
/%�"(��P��� ��>@!Z�b�.y��U�y8@� +< ^ל��%�!��u��X��W��Āé�{�������O�)�1���j�ם���:'�#�ݖ������^6��N�\�&R^�N( �h�.�?مX{�����R�ߦ����"E�3��c9tZ&����~��Ӫ�T�XWى5�҅A�G��
�y�2+[:���\�p���m@N�М��u��k��8q.6&��<�G��&)���U��IQ:;�-�vSߛ����G�M�}��1v���n�[j��Y7��8�F�<�3����)��[�%%��B���U�+�!�u�7fG ͺy[Z4�coc���?�l��h���A�qJ�v�hҞuv7M����w<���� +W�;g��UÓ2`3kW����j[�����=���WG|����V��q^�o��:;�g���7�:��z�zq���� +�po�A��:�Z�J�`�%��� +wk���l�W�����ٷ���:^���j=�?(��5$�\Z�6���q��4�w6=��ox���J�����hP���gn�M�<wX7��+~�n�f|3��
��Fc�/y���������u�B� ̨~gY���}�G�9z5��O��ؔ���th��5C[~��.�f�Y����w���8q�ɚ��>S��RI}}�p-���s�30q���ȋ�̘S7j�>o*���F�+���~d�]��j�_���+��;k�fn���gr +�����i��2��=!��n����c���5Z�E17��P�6��;�V��w���`jl��-Z�%�θ�4Cs^�\-����m��X����2]���N��`}q��'ӥ����ì'>���i�<>�'��b������)��3�=��Q��䢶��[C�/ �5�w��F�t6�S�����5��LI��6�R���z�w����3�/0}Y����f,���<]R�~�����F�����w7b#]u�G|���7�j͋i�o)͊�D[�fnNʫ�0c��ܔ@7�1��瑼���)V����\q-eDz�h_,N���T��O�G^�7e��.��������=険}6���Xr����9{���n����Ɔ�������f��#��Z����E3����V�s��9�"���}>����A3�u6�_;���N$̣Ƕ،�ꦗz�����Ã}��u�n^L����{H�f/JȸU��ڥ4���&�
Lc#�A}�˶'u%73���Z8k$ls=�<{�N���O��;_��}=�fdtl�4.��46:<(�[?�*��w�XT��E�G���wo��� +��ZR^
7J�����h��]/;Z�4T�����J;���_̞,�l�.K�':.����3��w���W�[yyY齢����RE�[��2����e^�������r�x�8v�XJrbld��K�L��w��n��^��3//�eK�S��k����K�}�ua�9{oX��ή��7x�҅���`�*������3XI,�>���x�� b���Dx��]$�R�)1���Z���ٟ��8s�~�.�́�Bu�����݂v� +���{G���Yֻȩx;&A4A<7D�O^�i;|�Mp�Jb�V��A������3>����(�KsyD�LD�&y� �4)p<O���H2��b�D��p�,) +H +$�s<�%��8���^@���Zv2$�E;E����Q"P$E�@ő4b�։H^b��)���!5M"�&P)�4R�l�,)HgN�')���O�"�'��+�8 �:A�TFY��9 +�D��Y`.�8V�����@0��(aYhP" (N��L���Ȉ�R�тM͑�_�9H$���f��d8�L�i`�Y#�p�8 h��f��M���m�a� +c�%�u"0��w6� �@r,�ՂyN朦m�h���b`D&ݒ/!TG�NJPD�v�A�XF��8N�DE���$�,��N�J�J�����8p�+)N�Br' +爧,9X"3)�j�A��,v"���m^,�C9j +<���!�!9�*
P-�'�����H���,`Ђ���,���@M�%]�����m�jJ +k�d/É41n�e����(�4���.[lU6��T6�����f����F�,と���,�12F�A �������g�b<�Q�[1�HXV��%`� +�/�JN����c��k�jk������{������bx� #��&b�!f(3H3���n���<�x�!�dZ��`'͉���>�<c�p�ї�����y�|��j��/�"��p?@]g=l�xA�ZhY=���P� +(�x��\RC˲�zȽ�����ht��S�,`�|IX@䴠�j��A3������*Ae�+7\��8�ߏ&c23�V��0[l�L'I�cH8Z�b���C�D� q!!Ѕ�$���A�A�F�s��@O���: +\�Tp9lV�hq�2�y������i4�
d�A�v�Lk��a;p:j�fZ��f�Ö'��B��O����Ȑ����\k2jzA�Y��tk�[�W{`��z;��o�.7���U���4��)ԛ{}=L�e.�Zx�_�3G��lK�koFk�-��e��Ma�L�TB� 5�]�P)�L$9���i�h�ќ���� +U B�������g��""��g�x~%y�9�])b��y���/����{ +&d��(��%}��0�B�O�=I�UE��v`��SA,<�'��c�����̵!p�/@��� ��B�I�#WL�9�3���뀋�Xz��H�]5�(�v�BRsV�Qs�w���s����"������q���Ĭ�k������ +�Y���@�r�� +��-��v�Ɔ`��46_.c�h��莌�͑�Q2Sm��' 5�F<���~��L.fz���4&�df��̗��u< +�{&�;{&���_���v��0�ؓ�;2�l��U��z:v i��F�z�kl�1��gu��YLA </~CY,���3��is'�n�=���u�n��AÛ@�1\�iV�b�p�T��4k�5z� +��ÔS��o����{���2Ω +���Xv���h�_��fwI[J@mlb&��"��Vţ�z�a�*V��u(��YE>HJ
�.ƾ�1�
cG����m�H�����sek�� +��ҏ���=`j���p�;��)wP�Oص>S�z�ϕ��h|��_�R_��7�d��x"�y��L�$���a��0�2x<`��L�<��|\�2�3��N����3!�n�$ɘ|ii�H�~{��� +�FJг,���T���2�B�4�rUqx��W��ܩlcs0�D4-&��G�F4�(�v4*�b���"�ä`RE�#���?��)֞P�t��j/�s��I[�5ߪi�Ԋ 6��{�-�g�Ϋ�:�B�@l4�F��Gf��-�m���t�8kt�%KzŧR�� ���}�&�5Q$�yN J�[�����h�,�8vu���}�z���jY��sJ�e��-�e��0!���'��׀��&�<a���Z.giym#��PNn ŕ����B����E����74�����4=��c�C�]]�1�m%<�X�q��A�I�Q���Z�ۜ�@T�,�2<h�h1��5}
���=�U��p�K��Je�*T�ҠvG@��]��� +Ȏaz,���5Â?u̯��<D#��J�ʣU��B*x��1�v��zU�a�9&rIk?pn�D�+�(��ӱkS2/��|!����E� - >��-("/J�U!!�2v�z�mJz:o�}�n�5��G���.���������֠.-U� +w��3�[%�J�w�R�zYO��K����$<��8𭖵�P�š�U�ʅ��pE� \c�䢃���1O�h�w���sr%�Oa�j��Y���X\��V��n��\A��ǍaC3���EE�o�"w�.���r<����#x�G��2�L��{Cɛ-z9�X��m{J�L��t{[�X$�'J��/ogG?�jǍ���`f��;?wu-��O`#��n}���dY1?3.c�3��{ rV�H�PE�Dt�)�H���� ��ް`��<U֨;%o�0&�-��pV3C���t�'���1�H�����oy�y�}L�,��G���������������/?~������������?��h�_?c-�S4 +��cB + +�\�g3t6��&�����������l�,����d"�.��[��b��Sn+?��ϵ�̬�������u���v�Զ�2w�Oa�Ip�Xq��t���$i��Td��7�hȣB +���I����0c?�kr0�1�o�+�Oؗ��R4�2��n�n�鼱�R�� _q�ݮl<����TWo���=
?�@��vƳS�`S���m'�;.�|f�xG���}{��*$]�q��+����ƀ�ív��M!V���H�X�����m}>(����H�Gn� +i�� +�����?��n8w�S���zaΖZf?\�e�˪�ȅ�K������at�Nd�#��8��}�u�S�d�d�r��5��{r�>�|9�V�8��W����ɸ�OMm� �w i�f$'�����y���{m����?z�Қ7��������L9��S?�vfi_���{�#ON}ŷ�b:5������ߧa�۴��7X��_�?gg���מ;��(
�k��D�t~�82��d +�� +1Ɲ�)f��|�J��h���V��6I�Ө��?�i��ؾz�>Ec4��}hW��;�c�c$,i�5���bL�ɱ�(S��bz�jW��o�@�s�'b��&#t�Ʃ4�F�Q��d���3� KK���$�@Z?�$ӿ8��2�KL�<>!`"�P��|�g��R|���</�/Ơ��y�@ DJ/����ژ�&|12�"x|>A��B�狠R�C���V�pY�<>%�c1��8E�`MD�@�H�x8�$1�11݁J�Gi!"SH/�8NZ��}Q�� ]d�⋐%E�<!I �>X���'�c���P8�G�a� ��% H�'x1==� +�s�ā���!��&6I�ıӠ +��S�z�e�1�y�
X�O�@���<���<1�l+�B��ziD�E�V�d��& +�#��OL�B�Q�[�Y��4�Wȑ�!�i�]�ݠ�Z�R����ejI1�Եp���:�"�) A���Z�$
8��:8e�ռ(zEҀ\�fP�5 �TChs��h�K�4W�uC�s�J�첈[L�iɋ\kǍ�g+
�0I��iq�B�T��R�E�R�����dMaj7�C����Q�i6&gR� +��Ƴ�8��
ND
��Q��7 +1CULP��!�|�v3:v +�~(6/a�:mB� +wڕ��'+C�QIk,�(3<����E"gƐUaBn5ǒ��p,���,���$��J��±Ґ��!D��"V�A����V�)(�1s���✩?�M2��Js B:S�A�2����$һ(��U��F;
s���KK4�V�l)V�1�T�a���Ԇ-� +���n*�rn-�'
R�EP�TO�+l�%@������$$]��Z;/a�4,V�.{����zj9���{�a<;�G�KTۦs9�R1�Ζ4H��F�b@��A�w>�~;T�Aᛩp0WcT�A��*'IȓH��}i;LT*O���cp��1o�&<F��<��:� �p�����hwҀ` :pP�4�6� k��s�A��R't�
v�_���6$� +�J�z˽M�5��ŋM,N�-�l�4�H�*}O�w� +
��s�`6��Z�Ղ����Ϊ"67�s{�z<��<3Z�o�&��F�[���y��D����"RC2إ� ���Yf0
�M��85�ZS��`m�_�Y�v�@P�JFX_%�ё +��y���%�x��.w$5�Jc���I<��ב2�4/�+�!*N�q�IbY0�ȣS���@����2hhR��8�PP;�@nyL����y�e��4��)
�:;D��{':;d�kpjj���X��������lK�kZ�@a4�g +ږ�ߣ�KY�v:��zvv�",�Oj�� +�Mm�ύ7�2~��sQq���onϺg^>�~������=u��nn_O�w�q块�,����{�:J�{f,&����8��1.�s�nO��������7_��/>����<u�r�v�2�{��[�톙�B�6�����w?�0ߕ-g?���F��s/�Yf6,�v��|)"c��� +�`���2�?���3}MG�����|;��׆3? +��궒��/��T�o��"����2�Z�����Ye��I�6F��]��uu1ck�f`c��Á��i�D+���/�x\;�B��^i��M��I`j��m���[�Z6ܿwzA��#۾Ԧ��4sJ&���Dw��Pn���Q���T��#�`UZ�cO��oz+��j?����U�ݮ_9aEUy6�M���?��ٽ�W�o���ѭ�gN��<%$����%o����K5sbw���g�(���މ���qk.�KNjVgSE�����KO^�V��U��&����0�Z|�&��9qDoX4�7������9�9�/�Q�������W��֨�+�<�����G���p�#@mW�;���yWwww���ݿq�z��Q/{۬��K7�?���N������m:�F�8]��xt��5"=����#�JJ>�SV}���o��-�����_��>���y?�~����4<{ڰ������$��AC��T����_���,c��C� +�e�d�d��8o*v��}N�L�!��Q���%����ם_�_������k�;)��>�T��V^�uE!а����33����������Ao{rvQF^A��%�o��r|������4���v&OAδ��IyG��
��x'�o�_J^�Q��!g����%�.�v�lj����,m'�E����],����>QF�r���8�S_9���>��1 + +x`�.��j#r�`\��{L:�&�zDP�x
{�1F�y�2B�BR��K"� �C�ET�D�p1��1�!�,F�ۀ��HoGaa����11PJ����4�2��݈+����� +g$\�!t +��!#L��ZР��ؠ��t�:�ȁBÂ���`��&c�ĕ��Vz�5������4+1*����K +3+���F�T�@�iQ0¤CL�<AĜ &k� +�`��&u�y:#�cK;\[���On�y��b�N5)� +��;�����۵�2 +�Fl����p:I��Td"ھ�Ĵv���x�'���Gx�W��������k}��<��]��p>��=b�c�ܻ�n��/�KW������3�ң��J��Q~,�������L�� +�����ۇ{ROu��?� +�{7������' +E��nM>�l�����iJ��,���\1|�͋JG���(%����?sŎ�[�p��}Al�ze�P�}�U �Olʃ�~����}���io&�>��ۜ��m[��b�1 �r �v�Ҫ�7��i��c�'ޛ3J���x�A���/=�����ˡ���|���%B��D��#;7�;}��G����[W��rx�Mv�C`ץ���F�y��������ϙ�Xx���*]�T��sܚ���)�ơ�L��ӛ�z<��i_Ҽ{�K��f,��5��Np}`DžQ����U��"�.}�gC���Jўˑ����\��\8j\?���hI�5���Hk85y���W��gv̋��ҿ]�����u�| +O ��}' Ѱ��I�foC� +
ێ�^F�m�����G
��)X�eY`�験|u�3�=�չ3��_�CMGX��`�!�����&D\u���P���n��]3-���`^B�AT�h8�%1(�2�l��g���T'2-@ |&�D������f
p3�\u���b�� +-!��GҀ +�z�j�g��CPX�Xl!� Ύ:���`;���T�e�*�)r��cZTc�ezZ�����!4D��t� $�8��� +F���A>P'�V��"���PG<�MS�\��R �2aA���υ�� E�Iڂ1�Ed�o�N�l7�j�ヲ�i�--ݫnԆO$��íL��,��yMF��1M؝r�e�Zr��u�V� +�������=гL{�MRr�N�Ip#��d}H�_���>�eC�c7e� +�J��p;�/ +��ٶ���+�%�x|,n�z�N�}4Z���c�0<���g��j�*E���[6S� +���S�&���������7�dL��F + +��$X��,�A�ܸQ��O�3�C��4�]�q>�"}=>(�[��g���6=l=G���|�j������(�+����O���> +Gf)Յ����lD�� +��(���)�����d$G��&_���?2��� +m��:m������7����*��rw�h46JO�}��8Bj�)E7���X�V:��5��$)3F���v�~�VߔT<�:�P�,���%Or�t �-&{e��_�*E杋XK�%�q�����V�B�F(��]��l��?�clno~��E /p�a��{�l}���]5&# +�V?�f�h�y@V�j�ȇ�h6�Q�sG�����6H��*5ʆ?9����:�"�%E<�M����r` = +e5vʛ8+�D�7�!"'q�<�J�EG&\��&(�����R��X
���#�)̇���Ұ�F]7`�7�C���-���#l8����%R��)ŕ�{���ZW����>����
���Yf���f�����<P����06�X���D��!*����{6����h� +����F��0X����j"l��Vs��� +��8��Q�12ƹn��͟������-�gc:�Xtmg��P��)��(w�G���N=�w�]F��<,{�^^S�#7�X�xw�w7�^?�±�]����"�R�u�[�-%��z��Lxx�����!91K�����v��T����/1(�1��q��~�%������P)5�jE��:��% +endobj +655 0 obj +<< +/Length 11328 +/Filter [/FlateDecode] +>> +stream +H��W�o_G}���� %��ݙ��!P�Ԫ"B�qL1�vdW��9��ޟ�< !���]���9g�-_��i�������B�l�V�T�������"��5S-j�5s#3ʚZ��1<Ե�"��u*�V�W3��Ӱ��Ruy��*�#��5�2��vx�D����ל�XS�3�Բ^�iM�Z�<֒j��jnn�]yP��#ة�ŀ\�V4��V�9���ůʥ���=qs;��$ꚓg6�YZ���ƒ�Λ�CO�=�,����hn�安1��2C�J���?ScݪPw#�p�¨��*��DG�u�ו���1���0�E=�X�v]��ܘ<ZLdV��a�H�>��c�i��d����w�����H%�5{�Y�ui�p�y��?�^��ǯ^��������������+���on����\�^��x�n��?�?\.�._-_�_돳�����џ_���p������d�/j34:��o��'߄�B�&�%餻��������ϵ��m��j^�L-�6�0��8�����Ej�v,�_r����p48�0V�.3���7�[Su�m=�ou��uZ|.��>VƠ�`+jP�qPGjdly�EȈ3E�D�������E��>\e��Y��t�� Xú_Lu�<����;Sk�}���q���%��C�m��������%�}T��� +����u�=6j+)�5 �]�����0�m���VV��DӼn�M�6������/\8�#��F.̟E"�!��������8jF���z��d��8;�C|L�S�sc��"�zH�O9�L��#F-6~Eq#zI��>_=��֜�`���옴`�Z���%�0�&��)K��d<��s�c��/���q&�$�0�$q[>l�~i}������q�:V��8d:�2N|$"��})P�z���ᒞ̹��֤}I��uִ�8*d�e�PՒ����KqJ��E@���j��4�|jiz[By�U;�<ܜ'��1��S�s���i��#�6��T.��8)��(�6�ڎK�@�rh� ���H�ӽ&��{"l<M +99��mF���9�@���K�y%S��Dr�1�in�&�}$ �##Y.�qȠZ.(dA +�i�����S��$m_d������x㡍��������8z�[
�)Oc�JFU����44}����P�)%Z��H)q�O�
��I�@��R�y��������ۏ��n.���������˻ӿ��W�ۿ�zǏ��y�ç�߾���^�tu3M/��z��[��}u��嫳iy�?��|����-~ +2���jj)m��~������\����Xv� +E�Ã��1H`G�g7��N +���a��w[9��8l��l� +z\|J����h�(�ZŠ]7y�;�[Sr^��Z2]-Lk=��B'��Vj�w�ym�M��&t���6pF_Ԩ��{!�BS,��{/f�úyLKT|�[�q���b���#����$D��X-3Un&�/{D�t��m���P"Q0l![�WY_ڦ������=�B�(� +TX������^���}��dr�C���#۶(�F�"��ЧV6<uTs�D��ێ����<�Ŧ%�����|�d�0Z�8K�LޜF�2><>�LJ�Ƿh���ؙ��\���k6��xZ`o��0��� +�ji�^Ԁ�������$�H9{S�{Sr�a�e�ocy�>O1�9�I�M�o��\+_�]BP +:DLZ�az\G���e:](&�T��9HF�J�2H7��\0yy�0��l$G��x��U�2��M��C%�'\�� �� p"Ɠ긊a������M�*�)�&�`�G��AP/��NBCQ��C�!�^w�u��q����\Vm��(�|�ӱc�y�6$��٭�Q1��;.U�Z�l!vB2���j�e�7h`����E�!'���Rn.�
�q"o��
�x��i�"?lJo:_����J̯����YM��tC&э���.����%z�Y��d�n��QOMB���'l��u?�����ж�&UҴ�I0����(J����I���e��8wxJ��frnW�wf�':��
|�Y��8/{�l��ŌN�$��������;˯Թ|��/�����z<J��ڈ��^��ƏQ�/��U���0q����x%1�� +Ǎ{���_���и�ȅ��q[�4����W�duc�� ���*uޤ/8��
����t����;�w7m� +�3� +c�k�]�ͮތ�*����q#�ݕ���b��g�"Z���'#��w�nX�9^*�����.mFA�f/��~��?&Y����i��DWyHR� +��|۩F=��f]4f +% +Q��^?��%��UE�T�8�s�'�q8��������R�߆�_��U�h�"���-?�����AK��1u��s���Ҹ�-�� �K���h� �0O��& +�s��L¸��`�AdfS*�~�d����d��Kq�0�\c��W�{1z��5E@�Ȋ���l��s��7��O�(����R[B��p��(�D,�%j���ꔒ]�=�+ap�u�@:*Xn�bյc�)����uz�M(�4uȢ���@R�<Q
�.��:v�E��_Ւ��Ң�v�L �md��!|��
�D����j5�$���o5�o�t��`�K�4���ůU1�b�7�|^�$����A�ħ���{#���1�H�u<���7�(��no�F{ �V�B);ⴲR�:=Q��Ad4+.m&�n,M~�m���W��=)I$���m�R�T�uv�3y���A=�!cX�لe��9AT���������~�Rx�ih�{�d�,(�]�����%g��RJ�my��L���t�u,c|�n��>Ǝn�7s����Im�I��������"��YQ�|ߤ<�j�ZzU���No
۳�� +�vn���6�J +P`�W�Bk����cN�_�G�Zd��">�:�GZ�xӍ�M8�������˴0�����R�������f��S���3<��=hI����~��v�㉝�y�Ĭ<��n�|Aۭ B�Ґ�oZm�G5N��-�ylG�L��=aD+� B�l��*��`�����x[��pn����Ŵc�� +yެ���V�Wa�^ ��"+K�'Y +T��5��0VKY�GǪ"��VI'D���Z��R�u�nlh��1��\��]�C"�0^�"G��CCS;D��*Y�"U���E1
�I'�a+D����V�z]�� Qm���v�U��/Z��nC����SY�����^��r�Q���Ƨ^���~���㿲�Lk4)�3�3[\���i��d3�7�0��yQ���i�OOf���tl�~.�|��q1D$�7l��|�B:�.O���,u�r�k͉�N�}O�*�H��������]�xֽ����]��קi~&dz��q��>Q�}��x_�9���[��SR>����~�gb��ʊ���O���e^�xVy��j��=�n1Ɇ[b�&��z��k^�����J)�?濡��f���:������������ln�w��Ï��A��ݸ���z�?d���Ms=�k�>���:�@����&�Kr�孽��JYU�db���C�(��l"�PT�(e�����v�d�k� +]S$��N<�Q,"\�>~`�x��'x*�U��t�1;q��x|ӖX��N��/��i?S��Y����<���~(ʫ��#�����O0T���|�{V�_�����9��#H�i!�#�b��vϋ���)^���ns�Nz9���g����_��Lz\�����l\��Nx�l������
��Řy���
�_p1 +�X|�j���蚾��Oa=W +z����?r�ٸtg�{��y�fP���� �����ꑺGjBj���u��{��y��~�~:�e�7 쪷�7|�2=�X��Snvy4)�31�L�h6+�N�tr�Ŗ:^��������/N�veU��z�����y�$�;�R�t9N/�s1 ]_S��bm��t�;�'��ۼ�#�O܃O>wNL��|6=��l�lz�����G +9���ӓXm@��L��`E��y��V� ��G���٧�����C�ۘ�(�p�e�D��vN��rE,k̅ś��S�g��Ś\DN�r�5 >N,~�|b��p����c��Gr�|8M���6|�h����&G�*�az�+���4)!��I�@c�:�J��?�Z����r�fQ��Yi�Ǭ�SmCp����X�C����ڔA��7�.=�)�=���gg[����6��;/�ݧ�3Ȣ� +|�C�� X�;��)����R���=��8���ٓ3�?�=��������7�������Ӯ��wsx6� �o����E�B^^]�/oK������ΐh���㈚���*w��<=� +lA�ހ��-�ׄ:k��E�+J��m��,��I���6�vv՟1�n�B�k�!T�8��ϜA�.�Y�M�Y_[,N|�C��73
S3�/����q��q���+Rɰ�G����RH`���'?�0�u�@/��rX"�g�.�wT��������#R�:��3 v�u-א:Y�W��㾰x�0��Q�£�N`"�����L'��n:jWqF`�t�����A#��3=� �ͨ<�ս�S+��]D�*����j���(���t3�9 +#��g�-��{��S���!ך%-4�Iw�����*U�ʪ �K� �h{B,�/��EB�]�e +��4H̴D��F3O%z�T���1f�Z"Ӧ� �3a|i§�P�э���ۥr@����c�m�:������#�| n��1{ڄ#4�h|��i�m��O�F�uV���b�w��=5�܂�w*��P�ϩ;�T
����������K{�o��q��eCIht5�)X��1��e���%�W]�ڇ�[J����,N��4-�`�yL�@���(� +��G�O��L����d�-^��+��L��2H�&�_�m����2�͈�?M�+��_?p���;s(�Y +�_�XDl�bT��V>ڐ!ןP�Ⱦ�Z�.�5+~�5eJq�����~L�������H�u�_�\����zKs+�z��S��$��wm� K�1C�!�q|w���XM�k�6�C�u���r�W+��Fj����ӷ +�q8��p���D�=���Q�r���H���5[����iG
��!��a����IG�G9�� "
�s���E����.��������{�A +endobj +656 0 obj +<< +/Length 12786 +/Filter [/FlateDecode] +>> +stream +H��Wmo�8���x]��Z[�l�I�����n^��K�+Zbd6��������7�DI���m�Է�H#�3�y�Ù!A/(�Dԑ?��=�y�tqL��{�I
�dh$g��T9���<�b��Q��!������@��z;O�F��u�հ���o�ݱ��#[�`�˙���� +��⫂(b�$�bK��k��+"X�6�mr ����e����=)�aY8\FB�����P�'����nIac���<�|�$�KT�L�5T��|v�pǐP���G��>%��N=�dg6��n�t]�G��Qg��u��3
��ރ0t���k;?f�������oM-�>B-ytR�oF +t�?/QޤBm��]�9�^�SzM�����!P�%9�K������g����ܯ���Bd��'��#겭��Nz<
˶{�j����r�:V��R�K��s���=Z�T?s�V��+c���1�ƷRQ�<��R��硟P�����<�l>�,�WL&�S<��� ]����.��\���7i`-o�%�6ל�4�,a�0�l��9$�S~K^]
dl��o����a2��l9[�h8�4���}}>5m�i��m�%����d��
k�٭ +4�?��]7p +�D�;ް�Iy9K�Fb��.�ZGCo�U�0�*�r�x�`9?i���t�ƿ�+�F��~���4;����E?%ބ�Ϸ�V�:ꗽ��,�s\;�l"uz)�{<w1i�4 ��M�'�"�������A0�K�Pvw�u��II��2��������$���2��r��*�di5g����W���q�F_�u.��%g����nfkM��%G$&P�_qA?��Xc� +7�L�s'�tCg�u\�� +���2_�5Z +��f�U��_q�`����jE(&t3���."IaZC���Цn/(iS�� +���,�V|���f�[� j/�;��v����ry*0�����Ÿ�OFd����ܔ�9ld��WuV��Hg��^y2�U���~Uen�y�d�6s�=k�F����J��غ
�ܾ���������f�uO_P)uz���}��h��:���"��.]�Q��[L��\���y��y�M�Zf��S�����4��8��L�3�f=��@�k +MUD,��T=��՚ �hB���쳈3�y�A��E��#��HM�"�D���0V�#fso2�j�UJ<�+��x��|��@.f���jHY�8,��m���l:�L���.�xL���3.� ��<���P��B +m=��7@qJ<v//��]�NNv�P��>��m�ݼ��o4�ax@_��Ny�P���k:� +6K��,�c����R*6K��,�b����6K��,��Ni��a��>)��Tl�R�Y\��ʧb�RYLAe1��tT�QYLEe1��TTC�\��l�PYR9����c�'�������#F#��ݠ����,���2<J�����ǿ��9yG%���Z�',� �&;$0�A&��슔�z�;��=_�&;�x� +n~I�����eзq&q���ӷ�&r���s�&q���QLj)ĿUDX]�K���b��]H��Mv��QdUu�֨T@�{��h���BZ�^��˘9�*!�����k�?`��-�s��ӂW�^�ב�Q��L�Ӕ����Kg9S�t��S��ڭ\��Gm���l#D
����D˾gsq��%!c\%�$�O" �=drs��WMK$���66�:��#������7*D�ŭ��ä +��� +U��w�W���.��-�a|���B�� Q>;�7��Q��Е���%.Nxie9�q���J��2k��������?E=�_4h�����_�4`���[_Ƒs�B�=����#�Dp���F����(u��k*��DY�q�a0f�9&5Mg0FTK��p�z���o��c�^9����db�Հ�Rc7SŪ=B��1��X�����H���W��\˪��[I�U���䃩���������ڥ�J�����o
9� +�E�����<S{��\*��_Vs��G��[���������Ž�k��^_Z�G|�v|��e��Kםz��g=��Gs��Zǎ7�OK7��j�������mTj�rTѪ�u��}]�N��{+���$�N���m����[��vt����[�Wk��a�f�<��%2y8/6��ϋ�[��k~Z�]���(���Qm�%�:)�*٫�i~�_�T�X����n�5�,Wו�;����*"e���n�W�����k�ҮW��˥Nɼ����~��6i�t���ު~՚���� +�;uv'���J� +�X�{��m��0 �"=�Z���㋿ہ��9�������٬��<Tg�>����Uxԓ��^�E�0���/�筅Qz��[xԃ�UB�o$�L_JO�/�ޏ����z{cA��`U��P���>���+~7a��R�}���VXT�^nD-|]6I�0ա�8�ËX�߄G=Y:X��~uB���ʝ���:�c��f�c�:�SU��`EM +E)�*���
�8��?_70��q (�X$� 9��U�y�5F�����F�f�������j=MvEW��?������n3R�)#Q-�g��j_��]F��%j�j_�K�ɺG-�<o��bxj���$���8'˾�ư�[JW��L�b��B�؍��l��=@e<F_������Si���L����Qs�Hj�/א��(�Ţ�¬�e0�v=L}贠Q���8H����Q�ys\�WGj�i�14j�koJ�X� +c���-Xw[ì�C}a^��ZJ��A��WP�����2�E]��S ��1��ʃB0Ky��z ��H��9�����]��d�_yU�4C�({,D�����X<���PC�x���qv�cZA娄C�Qt�Ȍ��T��bw��g#�aC�5�c�e�荻N�p�6������� j�C�<'_c���-5�<:*�а/����H��"��5�m�O�5m�u��6�4N{��ݿ���G�M��d ٲ��ꠝ����^-7��&�=mWٯ���b���<��>��F,��Sҕ���l1�6�@��,?,C�����=
Vr��4�ѵ�)���������;���Z'9��i����#�����>�1�!��c̓z�A�·�5]�N����D��|}�=m ��{�j�<g�PzB$��|dm��ű��
�W�-[\����k)%�S�J5�Ǟ�<�K�a/��'�"�$�\�ƞ�|i2�C���9Op6gs�1N���8�7�)��CR��y�>o��4y�s�`w���^�Cg������7��Ռ�'²
&�+Ғ���]�=��o��G��7�W�a���'��]�+�9���֡��aCDYil]�� +C�������zX�q�%v�Ꮨ�����I�co��nY��.�����o��Vk��Q�JB�Ѣ])@��tOD�����۫�H����I��Ml���{ +d��z^ +��&P]��Q��[���N�3s�P1H��V�+���]W�ߐ����M����4��� +F�/����Χ5��h���ܽ�2�H]��Y��)`l��&>AҠ㉭c +β�)}�~�W|��J�������P�Y{���s%*�F�m6�}f� +�4������`W@2���*m3��(��IJ�vD�v�~��Ld��D.�핁;��Y�y#��K6i �@ߵ�`�v��J�*�=���6�0L���5�g���Ȉ���PDt��m4���MD�pd+_ +\>�"L<����Ȓ�I���EE%^ +R/�]U�V�Y�\�f��Vo- +���b�mmLԣ!���Ƽu3t~Ǧ"�O��c%���`Ӵ�}�� ���Ӕ�C����{L\,��y��}LF(\L���)�����(G�o$�8&Mm��k���=B����h~""IK���ߐֶ�DZ�`hD��V�|���
6����mb��B2k��;f����*�&E٘i1&��5�U���jnp�SFnT��� +�N���腻j����|p@<q��$���P(�҉�l[�P9fJ���t�L�`D�d�Bfu��~�蛩�.hY�����J�=:��#�S����j��}F9�EŇ���G�ˈ�֩ޜRf66JT���tG�Q +��Kw���S(A�(��$��o��i^��A�f�-4-����^[�a3��?֫�+q% +�@¾� AБUAQF�'*��ݝ@:Iwҁ|�q�pnߥnU��e"���9�ɞ��q�\B������y�}����i�9)tn�iZ~e���i�{�)f�V\�}382'��>�4#��r��ޑ�|��V��6M��Ļ���7_T|���f��vq[���e +��h���/�iH��i���̥���*�{��Ю�9�Mɟ��x��K��@p�i�������2�W�b�;��=��$VP*֡���H�y�X�4�^�19w��=����e��2}Vl�0lb+}��N�4��+G�~��B� +EV��pN6�Y��1�sfC�v��%{����Z�@9$I��E�J=�ެ���E��J�Xo@�s�� ��tz�rG��3j�Wt쁤�T�u.�H�h[8��:�Bj�{�qc�+�R���s�V���<1t���+5:<�X���um�ԅ��K�P
M�A�O[�ɽo ����A.�i�a�<��s�#�����}/0t����x��y&���4"ø�:wg|q;x��}�YHj����? +u�N�,,�G��*����e;U����Ec)�Z�j9�8�:�^�=��7�� ��]�T3����F&!<C&"P�,jq�[r�Bho��O��z3�20�)O��! �z�7$5(Ű0�H)�j�ís{Ӥ�x�H�Y<ݰZo��[�X-� �o��Ӓ��WfY_��%�L���Kt(��Å���������Ԫ'Ζ!^h
C[�os'��>K�uj���v^=����/�X3/y"�y
�5�x��_}�����{�b�?��M�$��?3��C��F���H���7�кX+{�����gP#K�p�#���٤9����&{�5�����:�$�}�ɷ���t�yY���HR9
�i��f������~W������[a ~��`��[���B.�L��=��ȱ<�;��J��V3���c����f?כBds؍��X
B��/��oC������\#3��)���S�͚��m���3�.���u���ԅڤ����K��#��O���>��Ϸ����فg����!A0��C���E�o�q�9A����ͮ}��;Kv�?�!bh��?O�m�r���t��;X�|��E���4�i�,i/@6�aHۅ/�LD@��3PMg�t�
^.4K�<�#_M�
�U���a�W3���"N���U�I@5��.{W���C| E�oqᎯ< ;���k�^ x�+��=뺔�&pͬ��6j�� +s���ߓ��6�sQ�ܵ��n�����PD�O�ԢA�"�b�����<$�x���Wj��(&['�$;xF�$�(�Y � ���I��Vݯ�̈́&߸�Hi>�Hk��(k<'�K��O��"٘E�PpoT���W#�@��ł$��s1b]0x��B��w�f���f�c0�z�x�Z﹟��,���C������,�й�z�0�9�S�=�_kZ��m����D`�y=��:����R�/�R��U�������3J��]�eR��hDH��0/xߐ�����Ҵ�ϵ���`�-�zU���A,Ӣ�d�e,'U=Y�2�kN���i���������@ +�t���дE�Rӻn�vk<M-�5���6�N��c�x�ڡ���úӚ�RC6s��i/�1j5d���0a��k���};Hh����n�zrV�?9��Vz��!
V��b�.^<qhƯj����j���|��k����|L$[�"TC$=�W��V!�I1_��t��
'���!6��^HVש�x�yx
R��>�fcV��gS�[7n6ZY�g#�HFGyNm�T�=�y���q&BA��<��]���8sF_��M�4y�bp�N��b5������>���<̆n�HҸ-�h�A�E�#�q[ޱ^���BƟL +��+�*��o��%��JPj15M��M��S�V1��������o�i���W+
�p�g�r�_8��`9�i���F>�U��gNn������!-+ϝ�_3��Rp�L�Ļ��3j��������/gI�:���A��<%�W�7[�)�^�AA��Q�/S<���8���uv�� k!1���Q ��>���A�y�8� :��� �7��ӕ����D�Z;aȌ�$��SJ +�W��֡��z���՟�,�E���i�B0$��1�����OR; +~�fr�HK�B�~�AHӞ�B�����Y��u�L�ۆy�O�K6&C�ִ�kMK�O^���+������$�H��WF��<'h��y��i��d�9�� +h�����L9����)cl��W_d3�|����[�.a�^���Yץ\7��Z�xX�d`!i<��z�pڣ�|��*�o�i��`=A���)H�6~��Y�̲�>+�nX��ގs�lMs�u�i~~��S��|���sR��!-�ڱ愞9�5�#WZ�5�}%-��n������3��zӴQ`x�Q�;$�#���PH
d7�1�.�jh�3g�ak
� 0�;&���o��`��c��&S:w�c������3j1�Ho���կ�#��T���%ŀA��g�J�Re��gAI��%�,�D�䖤���|ʮ[}�g�u��M�ԡ�¥:�^l�N'd�0�'+��YO�cQ�.�K�e�s?cQՆ&�|�;��0��s���ԡ9�
�b<J�:�Ob�Sy��*��0�On��3Ӭv��^A��Θ �߆ +6��0�;9�Gq$�A��8� +2���1P�tS�GAK��T$0E&�@���4Ԧ��ʰs �p���_�+m��q�C��b��z ���G/�iձ�̿��][J.���A�3wΧ#�����hm$�b���2]�p��-�5�C+�!�wZ�T���W#o��59~������]0�8v�B��� K�s�����&q��4/�9.�9�P���VS���
A�t�8�B�,ñ ��.�/��8�ɘ��1z��6
�$�����z�ՙ�:ɘx�$��.=�����vz� S?+a +'����>i�~��x���SkJcj���=����dj|5�+S�3�)��T��F�iC>+��C��;��)�nJ]Z����j��'M +Eq�}�w�Qǭq?t�{j�]k�?�Qg��'��)Obn?�Ƃ����7ȕ8��=��QP��AJ/m�L�[��"�0�e@��=+߹h��Ѐ5�T��N;O� +�"�O+TD߰�gs�c��[Y����hg*��J(T�]��tvQ��TI���~�����>��y�z�{sd^��f͍�Pћ�@~.r� ��gj��f58�����.���߁0ʧ�\e �>y��O��'�w���ֿ�W��U����V�����D~L��՟����|������a}?~��*�z�Y����Ao)��J�v*M4�Í��R��OP���9�3�a��&�CG�#'����v�7�zI5j��o�-y���v���w��%;Hk���W��a%ȎĂt��� ��$��n�K�clv +B� V�I��'�kv���/ɁM�EҾ̣�s��Q����%ȕ��O��$�0i� +����a��i���������QU���er�$!@6��7��:�������}�o���0H/�g��?��J�n\�@�L +6;2g�@q1��>�����E'R��,��I���'�k4;��bp��c�#XA��Zn��� ���`�A'����&�
F��\��C8K��!p�/�*�7����_�u��1����i=4Ԛ��ZZ��!4��w�q�v��wD�=�O�s��F�nYA�_�V듯?e�/� +-��qT� G�e����� ~|lm���M�x/�4v>wmD�(�Q}�g+���2"����`�}�%���hi]_�Uv(��$}H˧#N\�l�k�n�= 4cF�:g<��qg,���V� �6����f��n��4a#X�� +@����j�\p�ݽF`D�V��D��j^��v�P�����)=��P��W�����Dq[.fk��1���Θ �J&��7�*ʅ��:�.�/� +endobj +657 0 obj +<< +/Length 18826 +/Filter [/FlateDecode] +>> +stream +H��WiW�����z?�)� +��x��nr����I�0���Y��M�������e��+>�6_s�������������}]�09��M&q��z��T��dP���B�mYMB+
�&��y����7~���A�Ndh�
���I���5�٥��+�}t��:�����TiR�ټl�*/����bwO�7��>�I7�6?9�F�uVP�/\�l�Q�tmJ�i�|�e��%,��|����t�|���AS�+||�\�Q`�2��Z���nĦ@�S�wP�㚛 +A�fɕ�� +��9�9��.{�0��,��n���Ќ:G�!�Ќ�R�ߡ5��=�\�ܲ�������c=��v�0��=@e��� +�靛�D6Җ +��q~���,��l���x}�E ���@���PCKJuU�-��f�Ue.�WT{�v�h����2�Ų�v�2�ٲ�>7h�I��'�H93�����)ȑ"&AyY���P���1!!� +Klj�Q�cQ!��\��
��Z��0roJ�\�#WXG% +���kS&L�Wє��P���x�R�l|> +��Ϩ'['�ި���ƺ"���N_�(*�OGÎSE��H�m�/o����BМe07V0CY!�V�P�`���?�b�gc��Ðn���P'�=��ٚ �$��k�$7�=��ٓ +{AucZ�_���?MB�~����a
\!u:�Áɓ��Фno��崘7-�G�zq���P�AD�1�0qP��:�J*�.\r���1@"�㰎 R�Q�t ���L�N� +�_�&�'��ʹaH�� +�P�h>�T�P��z�����Nvm�����8�w���=��4�n���ٟ +@���!�r�����K�fcPț�;�44ӎ(V������^�������)����1��N}��6u��HR�3Q^Ȫ��K���k�RR�b_��9�z��Mq�ʡ<n.x����2jj��`yb�M�&����_IJ�v�7���%s�8rP�tͻ.�(����G�;���0F^�|�N�O�_�N��.����D���$N�7VJ=X"Yb}!�����ú��8Wj���d���4h�Ժ-��(5@ll�s�Ԉl�S8X^F���d�BJ=rװ�����T��U�J�r�Uj���)5h��I�{��� �RW���'��x$��l�>�73�I�Ϲ[�FN�S�<�.������ ę�z`@JY��Q%�q�˦5�Aշ3�}��`j�OGÎ�vK�#B0�U�9 +�;�V8��.�}L,p�Ax ��*W&�,�����C�4;���{�S*D����Y�@"��l�����&ߛ`�HMo�D�ڷE`ٲ�7:�v�6^k���gIgl�Y��R�۞�j)\�4e�{����
�P:�y� Ptp�7$_��=X�$�ҧ۷�S0�
�) +Db���<��߹v�_Q��P��:Y���V�٠��ݏה���w8��I�/�F]� f�o�Bn��pe �����耛]���M���(b�1:��f�Ft�
>@P����f_�?���Y�K^�&�R��d_�|�/�� u�ؤ��ڥ�NQ:p��(�Z���h�5J<� +)6��W�X�?�k|po����c�+��o�U�������� �Pyd�o�-���c���O{ڿE{0v,$���w��Xϵ���������SK�a�7��"�`.((?�;��v��J�yu(zufnVe�;��7;������$[�<1�
�C�ՙ�� +�P��P�/xrM�C�=���#1��V�?�l��,�!��(�!�a�9Ǘ�U���zX_�d�/ۼJqKj�����UgYl��A�ms���� +e��;nR�B�W�a^X8��G�f�I� +���>o�j�L_��!�:��wf� +��w-�������������,OJp*C� +X���X�r��؍��|۩8F�����;ר6'���5i�9����´� 'pËzs�Ы�4G��X�aУ��`��F��T�X녍B���-��|@�"R� Iز�u�R� �z㊤4E���d<���I��<�'b�"�{�� +m�f���hlT��S+����|���KdsC�3Y$�do�˥��4r)���1T��j��V����dD�(��l7dO"}�Q����;i�uq'��-��Q���q���t'�K�0�� +����l��g
Q3n�eC1�?�f�h� �UцF�ջ-�u�mh�n +�ap�_FH>�_��{�О���]��g0\;�s���9 �J����r��� +Vh'�e�7z�{iw�q��&ȧ�&�L�ɀ��\u9S�=����/��@���I`!U>������`�ѷV0E��F�?�'So��L�߃�9?)��`��V\��T��$A��� +o4�`Q����<n������.����Hm1Ψ�m���9 ¨��ʏ�[V��o
F�)k�+��eïUI�=;��Y��o��CYM�eCW�vkX�r"T,K���F�n�To������!��8}�y)�S���3k?��sg!6���V�e7�}&�-WH�G����Ν��{}��Ĝ� @pd���ֱ� ��,�W�ܲ�E��i������J���1 +؎z�,���\�F����Vv♮�H�N]�qu�^H�+���d|�2�9�/'��r�������ݷʹ�-�U��c���v��c��������-s'X*/�U��k��<�ܠ®-go���.5�������|��X�qt{��������T�R�Y=3��g��G���=G9���������G�1��E��8��pđ�gy3QŃ��r�S��0�fלyX�6+�|�u���(��U��ˏڢ<oF"�Aa�iz�����j�=�cg���F�4c��?����L�s˼%�C�F��B�6�灵,b ���2�0�j{�Y֕�����c�q�'�u��R��ˊ�MI6�&��\��c��M�Ϳ�<��p���3������_�D�����-@��,� +U�?�P"]N�B
�-h�Z �����s�������3lf��JE7E���\P��U���U�S�����F2�*���tj�*#��y�
4mˎO�kT�Vf�. a(?����W��c��C��/���S b�A])�ky& ��[̓�Յم����*S����
6� ���W���3zO��@^2�}�+ +� ��.��ݑz��}^c�z>�i�.�We�g}�C�I/�/}в�������z�}�{�H9?=��f)g�ۣl�� �Ų?p�(�S.�u��L�~���#�G�5��6u�,��u-�Wl>�/ +�j���q�)}��p��lܕ��W�v���2 @ �&��`#�����ou�u|��μ���rWsؠد�*�\7_m�q/Z.� +YF�3��H��z��P�j-��DSY����Gˉ�n��l���꣱�E�Z'4m��r�h�A�H]�C�;��d�up�IAi�/����|�J�F�75�4W}��pv�kqa���Ḃ"c�Ȯu2�G7SÊx9<?@��4X�.�����V�ה�� +c�R)J�Ln�<��%�:a���\0C#��Q��RۃeJ�b �>�mO����rq�]Q�X*���uH����?��b{w���>n��"�@|�ͥ{����؞��w���#�(:.�ޣ=�sk�=��A��w�Ƈ�ƺ�LB1�N�K +@㜵4�d�<T��l��} +�5�H��O�Ε�`���ReP�2_E�"��e��NW��uY���X���E�,�JPo��.8"���s��S���^lQ���e�}0ջ�u�y�%h~hxI�D��B�,�]@�H�h��[8�������Յ^7��U)�:��z�����_�Q�v�~����E�o�6�{k�?�y &(�a�4:���`� +�zS.g�"�F�^y��;D'ȡd�������alm�W��0�cb�g���r����|;zR�*v�r��TψRY���&gKC��(z�!����1������N_��J��2�G&X3k�μ�Ƭz6�zۘ���$7��;�i��[%!��^���)6^ep��Ɯw鮵l������NA�����JNra��E�`X:j-���-|�T�P#V�4�;2f�����C�A� -'r]�Q%����U��A�O���"U�9���Zx$fŶ*�z;�8DDo�.���� �Z8h�{���60c��%u6��G�H�ư?� ��l�L�w���z�,ႋ�:�[��~XF���e�qA���f�����!9�5�h-z����k^����b�����$�qؒ�(8��P�)E�'}�R��������ОL�ٻl��{�;k�T����V�9���W�nb�~2ݗ�X��~����ӕo�/[ +� +Gj��[��$e�c������iɞ2Z醟�dK���.7�Ԉ0��[�;t݈A)�<虄�Bǧ����a 9�A{�xD.��'����p�+*CJ��Ys���plj��H�zT�~�fF��b`+Z�g��h�sl�����(�f��^�6HB�t�����SY��
+�dz�Ľ"}+Ә��]ʭ��Rx<�o[ ICm���ay�(p�4iϵ�c�]be�g��4��<����B83�+�T�M[� +fS�#�:͖��"�O�G�%�"߅��m��c�X�����}l!���_��܌qm"��7���*��f�O �W��$�o�,j��C����` +����|o&G@nsI�2��$>�zb&�V�R�����C>FT�c���G���7?��sr$Zߕ��l�`�ڣ��?�}h,ۃy��3��Z��z��Ѣ��4.�\�E2���d�t�ಀ]j�����\�y����ZlEu]�b���� #<ƓZơ'�3�:W��j߹�>�{%@Il9�ڂ~r���~����y��� +{�S +.���F� +�Q#E�v����j�z���h����O�����̺��Ҫ�W�fpㅃ�=ִ�9� +�4#������/���ߥ��ˇN�����+�h���l?�@<y+gn"{3�r�_D�o�E�+��/��θ�3`ɀ��Q��� +�K;
2��3�@7��:-� +贻�(@~�o(�s�` ߿"��m)k�������[�a�R��A3s=w�%q +T��#輪./L�+{l�T��#�4���3�@7�x{V��k��0?�:'�2k�P���" mpHE�(`lt���:�� +�e�E�p�ڊj?�(�˲��.)����i�>�>`_y��I7?}D��MB�b�� =esc�Q����L=��}�s���� ����7<��V�u�O� �N�[���K��<���y�,���o $re+J��pj�&�>��
Z� +���Rr�Z��G��<L*Ҡ�b��,�ez>d��@�,B��:��vVOM�(w���U*�Lj�,s���ƻ�Rͣ�6 �08���*l�7- �o/��j�W��NR�l�R{�P7�`5��|��zbޭl��`.���&:MF*��y�'q�8�����[p����&���k���O`��T���#�) +\N�#b%2^�N�q��d�Y��Ʉ��!��އ�b��2i2i�o��'o��Kw6�آ��@�+��êR)�Z y&��B����W��7��#x�����q���kL*`�������Z��Z\۽"-.��e/��~I�5 �9< +7�F��{i�t����Z�����]R~oI����~��lt��[�ך���-k�V1��]Z.u�Y�ӥ���#��=�:���ԗ�D�y}���A� �6>C��4p����{�0�|:F/$�A���N��&�dp��i˶�]ӗ��J3xm���T+�>��=s���`�fl_��4��J{o�������K�k����$7:��$:PDz������νQA�uw��F��3g�\�KT��/��K�DŽ�%z2�G�},O�:�9)�w�:o�BD~95H��6 �]M)eo���տ-�IG˫C��
ǚ�y >ް\�����^�`� +�Y-�Z8���]��,��="2S�m�:c��|�m�w�P +�"Żg��Ϣ�� r��jK,��Ax��ƚ?7��ll�+��'��Bz���S�N��"��,�v5h�i3�$����/�����q��2�;2�Uc�#�� ����T�}o +a1P�!WUZ���|��#��{N���@"$��ss���h𬩇��n6�kpv��.f�0�e>�0<��/4�TD��TJ8��D�p���v��L/[��m�<����2�Ť}m`͐�>�T��KSQ�`C���@K��c~�l�?\��K�G��O=���?|��Ђ� +�/�!aTe��R�۩#_����y{�C���F��yᝑ��/Z��m�o�@[�������!1gvN.Kf}�P��A +�Tx�j�O���=!�4��;-�R��L1k=d� �An�����9�@��^�͖���������E�E�ÜC�����)U���P��t�i��=�I���K� +.V��p�9�S���U��I���R�H7Ǟ�U��~ݺ��4�ɻC�ss��_� a�R-!&�Ev� +���7.�H|S��y�"�h�_�ݦ +���sU��ҋ:3�Bh���Y���9���>{pUVc�̶s��0��r#!G�U� ��I���D|�%�$�(���i�]��K�Jn&䱟� � &K�d��^��R4'��U��A�����2]7�����K�P���n6j#�=�P��V�M���x��Z�
���?9�dB)��|u5�;z13=��qe?]�6;��7Z���pe{0⛢(�R}�eZ�[\o;�.g -�oө9V�%��� +�) 'l�E��TDj��\5[��G��mG�Җ���4Bl5h�M֤����pr��sM����@8:*��"��5Ҵ�������ۍ���K�F�}�
îj�ʟA�0
��p��%�E?��C#.G3ye:��MY��b�T�W�f��]��*f��Vs����.� 1�mL���"ҙ�N��j���L�%��1@�$���3�U�o��L@C����#;>F�+sso�㥰s�� ����
q�'�C�F#�~v��#�Ī�/���r��Y�<-�Љ��sj4!�a��
"���Ǟ ��� ��Ǧ���H�{�̎X��������'zYH�c$����A@˻���E�y?/��u�5v�<��NeP�8b�-.�1��s�dҔ/��5ƽD���5�2�Ǥ�����j�.k��Y���gk�� + '�����\Y��W�!y�ݾPV��N7�&���rMB�YFif�UvD�G��� +�Zeg/M���L�W���ɋ1uV��T�n�f�e���$�wD솸Z���Z�#�`�VeO��s�>
��p\���"�~��ƫ��mm���/<��Dl^�������]��@h-��6�`���D��G���߿h�ws�RnK� +{+�:�x#��@N&4a6�@aɲ�]Wz���H��B4{��2��:&��9��� �w�z�Fo�6�<�9q5���P��%S������92p��G�$��J��؎���6X�R���Z⬵_ʉ�Q�d���>zG]6������1��G��;Ʃj ������F���0����] M�¸ic)-�b�3MM�������0Ni�y.l81�Sz�ѴЃ-W)�W���`}P+�|���>�������"1[�6>?��b�HW�A38fd����2xo��]�*q�X +P�-#�� �C�㴀Q��ͺ�F@3d����E����g�@T �z� ++�� ���vvJ_
��Į>K#t 9M���g�5�Xtq���Eʴ�
��W��\�h�"�V[b������>]�G��RZ�o�p`6���|�pP]�&�3y�_���}G +�mỿ0�ӑB�5���;�����1����@���C5Af�#�gD +}�r�n�h�~�ZNS �E������n�f���a�3cL��3>cvv1�L=�0OԖt?�~�Al¤�*B"��9��g��y|�g�v4��w�w|��NcY�]�
Rhᬆ�~VM<(��$̒aI��� 4JJ�ܠ\��������Hh�y���
u�#�)��f)��-{s��mmѽ�'&l��$cv�T72��xw ���S���7$���?�M +D�X����·lm��������_��Kl��ף���B "�@h����r.�g�b���� �/r��r�7�@Ҭ>N]���_Ep������~�g�4�t��x,�]����*���m�[`��g�r{۽�K����wg�����ǧz���(S��&]�O +��朊�싍7����|�o��cʕ[���N���Tȯ��K�4�dGot����ީlH��Oȇ���PU�d +~�o�/u]!n�E�@5��!���}�|/]��Է�@g:�'
ײЈ+/�֒�S%�4ޑ�h2A՞�L��y��"�o��?T)����ns���S-ͻ��X�� �ҷ�/"�v
��a�F�0�����oJhUE��i�E->�h�M�x��I������X��>�$�� +�x͐>,)!
֎�\��W���7�y�-L��ǀ��R��1��)�|k9e�������&��&��c:; �A��¥�4�lP�]�S0� Zq�2�N:w*�����M��� +]�y7D�\�D5m���o�0ߒ-��C9oH�y��wɍs�)M1�y�������} _-�6���4�}�i�Kg�}����0���좫s�w�Rf�m�C����E�>kX�Q�p/YCͧێ؝B�'Φ8D����#������4BMV�6�Y��.����U.2�S$�l� +�I�4��:���Fn� +OOuP\ ����j� +� +3�U�=]/��s��Qq��d�,���{ND�� +ϜH/�w|������0]�-��1��������ҩ��ͷ�!ѣ*tn�#[�4D
����G�W��|��y +Ҍ��T`����I��L�%�>�8�gIf��$(|@�bA~N +%m��q�aze�w@����GCN�<V�%)ܨ�|���mw�`��V���Ղ2 ���&���о�g��d���ˇ��s�lvY�Ө�>�}�"�V�'ʍ
ED(���ݚB�9��ft�����Xs�}�@g���/Y��A�C ߫�!1+�����R\sk�^��$�Q��p76�|��YAR��^�N��[����Q��Μ1`Č�&��5;�G�_��y
�1sGl��ݣ� G2!�7林#ϠtIm���~�-�}i��/BGy~�>ˋd*N��.a%�C��b>����.�u����c��֠b��<��4�k[�-`�ϗ�ͩDv6���Q��l�M�V�=|��&�3^1\�^rL�L�A����h��|s-�w��Q��k=O�e����V�"S��8�Թ�%2P�;���g%��ƔLn���齲
�����ѹ=k"���H±�*�)�+����<�N��{�%��<������F�p<��H)ӭ��}�/�9A7p6i�ğ��s&�x~HI)�5S%��R�9��Sc- +xL����,L�+��w�7�=�ź#��K���z�3��l�i�X핌{�F�<�W~T�-P� >�^3@��T��z�l'j���� ζ��桧�K���0��� +)߱B�I�h���Wo�o�RV�JǒFr�a*��!�3u:��Vr!��ۅ�;�)�?6=���mx΅]�P=K��W�ू� ���N�{�pxxRt>΄�nj�Ł��V��0��A�s�˺�F:���&��?��+�Ȏ�,�B�V�~�)B���&�7��R`����(wb1-���% �e��-��ܯ`ݢ�d��V.����FW���A�U|�#Z�2o�����?���F���c(e�TA��������8%Z�Z��Q���(ޑ�W��@����_�:���% +U�W��ݤ�����q�rk��Tè#�t���@�D"%��|�f�f�'�� +�uLj�sY�u��YQ� �s-n�u��� (�0���\|�Oh��3�~{�"�A�{u(��� ��*~��F��|�<�V�)gG�R�Sd@T��ƈN�~j�"ri���z!�F:~a��n5�%�\��b��v�7d\��7m� a����b+����3��zw^�3>��{�h'�]�T��1��dR�q�����I�(a��ެ�a9�~X<����-H⻂��%]}�|Ȓj���=m� �b�?|��;���슆���3V�a6�r�yVjt�[�q�*00?�^|����f_y!e�f�4��d��dz�Ӿ�G-[^�Ԧ^x>�m���կM��Vf��F�����\�) t�4� +���͎�ˋ�_��̌�tH/ϗeHGs�u�X:��x�6(.(=�_���]�� +m�>����R(���m�'��ϋP�A�0 +��ǔ����3]�<����vv��2 �\<����e}�*߆i�S�f�˿�>���� +endobj +658 0 obj +<< +/Length 24362 +/Filter [/FlateDecode] +>> +stream +H��W�v�J}���#HBB e L0Ic�1&�&�����nw��}�-#���}��E�C2�H�LjK��#�����-%oi3��Ǖ�v,:'5����J.�7=7�?m���e�ڞ$N�vzsT�&���[����TA�W3�_iɢ�\�&��;ڼ�^�{��z�"���x� +j���y��p�Q�4���TV��+����m�j��۾?vcT����e���:v���-0�n��gT!ҧحw��Զ��gk�����NqpLaT3��!��sXg^ReH�')��}7�R0�p�+v�f~���Z)R��v4Y�N?O�"�� +��In�C�ڝB�01�Vr��n��G0�ȶx�\�'|��l�U����ۛ�22\`}�������K�Z� �8f�����N͠��c�K�&��ksex)t��r�iOk�@����|n�1U� ?��� f��Pyҋ..�WV�1�^ +O:T�ӵ�:͝}"g�\ړĴ�&ßx������xL���|�W����Q�2�ĕ���e.5�5�y��̊�t0}�9�Α��-�Q�����l�*f�;��a�퉷�#�u�� X�u�f��P?.�~gD�8侑X�[���J�"P;�1$��i��s(�,��n1,cݛ�x��/����Ff�G�6f����;�m�eZ��'���*O��+�B���g9�Xn�\Xe�p�e�����H+��� +�P�Ӛ4�y�ܽ�p�ⵙ���'��3��q\��:��9�c���8���6�Тv�?��}�2_������j�J�I��߫�A���|.&N2.��ݻ��������7�:���*��������d��G���3��S=�n`n�v�ϫ�Ef�I� +�ƯW�6 +�UT�X���)� #E 4�Wn@ ����A�p��9牽wC+7P���+qV#��,`������q�?�]���&G����^��N��p����9|P*��]�6��2��Y�V&�GŒ��;Ζ�r`��C�O�#TgxP8�;�P�+���3�;*�Z����3"I6Y&����-s}Z�����{�3�v9��x��_)2�Z.��N��l��Ա��F�!�z�g���DD-%s��A q"�&�b����^7L1W�C��X*�2grS�|6S"�&�k��F����� +�O�x>����tP�D|ŝ��y��kt��eO^���b����;b +�����) ��"k��uRaJ"��ssN���!�i�=���x��5D
�;��}�Xnx�8�Vͼ���c�F�X�(�
��3~s��F�$c�1�r�p�P�w.Z6��x}r8oJD=�F�ֈHӱ�C|Z]}���`��b��zy�%�D��0����N � �A����� MDw�}tUf���'��;7��l��Ʉ���'��"$0yk$q� +�� �Qn�tR�tn�.���m���A��U�K�#�U��C?�i^nM�p��'s��]r$V{���!�#��ҜN�`� X.�cok6�n��� A^)lV5��Բ���N�bj�Ł3 �y$���9�I��t���4T%�EA�C���ķ��}�@�4�a�oF�"p��N1���Nԕ֍U�J�T�B�x���4A�6��La���}p̭���]�4�\&J�����
�S����;~,�YK���k�+D���P!�
�I�2�N�KA�KG5z�
,��id`yeӋ�� �Ŕ�eu��@Wn���N��v�Fg��)�O�@�
�BϝXb��p��^��f�)�/#��t)�/{��71<K�f�oD��E�S��yI��oa$0lc��}O��')�>����p4�F��qX +my�+f&���Ʒ�k��{Wh�<�sZYPО�%��O|��pd��,�!�����^uZ"��=�8���ى$�1��q� +�5<�`�H�{t�KxW��Jh�0(7�X=�B �N���<�z�6�8>-`��\����`l�9�ȷ��(pdYf��r7u�xBq��9o�����6#$��y��8�͑1*BS�4t�åѣ��.�L�0'�o�͊:�=��� +݈w�R㾉���#CbEXhs\��f潖�|�=V+�WHKo%���
���8�&7)0�t�P����:Y������o��1�+�F̻�s���KW���=����m�J�|{1�wX�p�0Nl��x<+�|(��L��C�8.�`�$е����X�����M��EL[�+eƠjx�(M��|m�E���~d��Lȑ��Y�-��;m�-7��b +T���i)���N�KnFM)���>����cq����$�<�Df����z�:Zh5ι�jYϋ��_��u +�B�� +�`�� +;ʚKvɜX��©E·�ĺUQ���v�� +��YJ��?蠚w������7{��G���mё�����\��H��k'4^8*@�;�gts��9��I>>�q[G��D�|F�u߅
��Ǿ���RP�vE���q(7�p��/�I�ό��_uߖ'O%�h}8�[�e��ū���N�t��!�
�]�t�iY��Wk�k?���6�Ew�}#?�-)ƌ��O��oM��I8KԎ�@;-LA�ꁪ���k---���B�gs�C��.��\I�
rn�����I�!f3���;�)0F�B�P����x�h�Y�7ʗ@����1�Ռ���� +魣x5���z�4�db�ـ�7'�h����(z�!�6$^��h����v����3ݹ%�n��| �;ܮ�y��N�js������v�=//���7�n��Ooun
un��n�.��:4�J�'��p�j�F��:v"<1���J�"��79�Q���[�m��n)����b!J��q�{P�r��\O���뤖۰5<Xм����n���U��i���*E(%2�A��O*%t�S��Օޝ:#x�����~�[�pN�n4 �x���F��ޗ5�����%�ȱ@���6��O3��N��4��.�_����p;�����\K^�� H/� �^���QzQ����������Ã�ef�z�����<�S��wy�Mb��唧��X�$Ե;�a�Ϸ��� �vOZ��T�Y{��������L4g��������Œe��o>��>{�o���7��z�oB�y���0�9���ж��k�p�"����A5� +�*Vo�D���8� �5�:�&���N���Y�p�����p�_��k�n��*|���#��̄�Td�ߗ���
.!���Kr��D�H9�*֦t���4X+/�p�n� +��=�]�-{�!'�����v˪�"�X+��f�Y{�:�+���E|��3Z�W7�h�Dz��" +&�� �ֺԩ�׀:����3��R`���@����p�ثv�C���,�?"rV���ub��Ԫ�ui+��^}g�L�a匉�q�r�!��I�J��
�� _��L���~�;/-�а5S��=��a�xv&MY���h2�ܷ�`:�8�{Zx�}[�D������!�驯��f�R�T��w7�+�,�[��4Frv&w��̈́�h�C;}G�h���؍���v#����m�jL#v��#�h ;�$���j��ۂ�uŮ��n����^�=�Jl�6�M�/�g�����_��Ȅe��V����mv�n��N[Zb���Xf4��7�ֻ�P�\�� 7����M`u3�j�/�~oW��
�����8u�Mo���o��HW�?���G�v�w+qQJ8� ~Kr4�����~�-G� ��!M�RW���H�S/V�7�/-�FV��6+��ߵ�bdd;��V���_֍��P\yo�
��61�҂&}����0�v%X��5�Rk��\�1�H$eVl��^�K�G�±6ܹ> +� +4�z� +�j�����:��+1w�2�-�d�!��BX���`� +���f�\�d�R����9���4�I��I9�-��^��,�Dū��\��͘i���M0N��b��0����b��� �bҚ
�0�Ԏ.�K�Yݑ�SN;1Ĥ�d�`���mZ�=�*�\� +!>�U�fŭ*��x�:M��2�s�:��Y��A��>lŜ��M��\Mk�u!�d��b*Fa���{��#��OksC�@�$x���=3�����r�8�Q�������F �_�u~<���ѤR��D:��9 |�B��2��`�C[zl+S�����Y���h�B($A�~���� +�Į�v4m�9r��տ,?�d>�vN�Qbrv�>��Wu��رW�<8ʇ�qVN̂~�E�4���A��pp{_CҸ�r +�,�a��N��f��̽>{�꧃Ȗ��+G'���̄�Czy�d'0�VQl*=�4����]�>x�������5�� _\�&e��h�Y�} �;�� �<���p>�A�����e���;����nQ�1�?ʄl���! 7 +<F��b^�U�\����p��i��A�Lu[��w��B�Z�(�y +77����Z���7�8Gb��c�C����z.�\:�e-J��l�u�Y�B��{�TƄ�����UK3��)�i4i1�Bu����#�C�A�?�pB?�_��@6�8Wj���z�
��#(Հ�{48FTP1^�ϬmEz频t-Y2�f�� ^��7rǗ�ԫ����yNzܰ�E�U�߬�����]�*����w�`T��_QOw$�*��]�R5���*��@�kT�&zB)�Lj +3]M�/2�K�>j����n"j�6c��a�[��
ޡ��ȇ1�?R_�L}7��d�ԧ�K�T���1(��'�{E +�!�r�`:^�vgl��k�:2��mIcw�3�.�������u��~)Q>�oR�F�N�">eS�e��ie��{���^������ߕ)�&���є +�[��[���I�����l����_�m��Al�L�G�_Y�݃���Y�kj�!&��} +z���Ko���L<��H�j�x�Qbk�K�$��=�Dw��Y��X����;Y C�K�$&ȋPqj�(t�FLJiay��ӭ۵�n�� +��u�g��ʞD=� e�G�b(� ?}߹�oZ��Uu��6]㫞�(u�n�m�z��35rMj'H ҩ��U(��r��.q��au��O���ڄЩ����$�1���V�i��䘉Jӕ�7��sO��]ϡs=��~��I��`Z�y3��U�R�t����SW +>�ȉ���x���/�Ɠ�9Ph�L�d���٢/H�]C�f�O&E�ƈ� ����wmK�~�To��|Q�"�rҹ'�$!r22�vm� +V0(�%�,bSN?a�Sv����3n ��I
?�0���ej��_H!��PÄXz�;�V��Pÿ�B����7��A![�|�_�P�?W%'�x�K}B&>h�� +a͚�<�l���<|���^[����9��p��j�x�XTh�x�����reP_��flyP���_?�3=甑P� yԗ�MlSAq�r��J��q���YD��P�,�ٷ�Y����S���n���p]��@8�I�r蒝�5+��ֶ��L��{yR�dP��]��ن�Ѣ��]�/&�N�.�,
�Gq:����.��3]9[�I������
�s.�J���:��]X"LJ+�9��l���d�2d�I�Ҟ=7���}���;��l�:h����N����O<`M�8턚�ai�V�J��<p� �K�~���ڔT2m#yFMM߿ r��g�?{�o���œ��#4�P�9i�����A�S�YE��۰�� ?*X+F�S|3E^l�??�(Wv���"���\un�mn��=�o-�_�.q�-@�O��~Y�����yH�i��?���%5���l�u�;��ڕl�����Tf�<�>��K�y�:�Z�lw��w�JC&���{��8�&y'-_o��{�8�g֔�6>���E`�L8FL�;q��N䰪�b�i�P0��jj�ѥn�@p�V�f�I���l����/��V��^gn��$�mR���Z�V��d2&,P��AD�b�9g~�U������}�Ҫ�̡��OU`s��|ݟ�����h���;���-qy�~9���܂�,���l{�� +�9ժ��aS�
���-��B%
8�9Vn7s�>ܸ���� +4�\h�_ +�'����� +7RI�S�vs'&�1�*Rr�ȕQr�_!0^� �%9:�u����x5���4?p�w�H�h/9HU����1�2��@6��M�-�-h���F*d7���kOȒ�������a��mk0<�Qӎ���+�m˫)�����|�)���M·���v��ݗ�
xvR������u�S�n��hk��h/ϵԹ- +_K +R���9WB�-�~�>b@���,c��=�BD�u�d��ͽ��E��b���?(^�r�+�ݭ�v +�{f���Av��t�֦��'h���8}�D�?$�t}���3�[�0-�9��/��T�e��+�Sa������˻�&�i��`���6�d����B��7Kb�u�k�й�Kc�W-"�J�(l��$=�ˉ%�@���O��+v#�!��������φ���0���*��3�Zf��ښZ�|BZr"�2E��Y}QN2/�BʼBS�pt������HL`��1,�Ĭ���PM�>8�IjO��������~�M�
A4�9�r_7P4�Pp�)+����vy���{Ҏ���Ƹ_|B����7�iu��¢��W
�7�AS��?�xV>ۏa�4��<�߱o���>��Wl�3f���b�$F��H�{� +��
B����pAߖ���X�i~@)�����Y�*�A +z�@'z}�xF��'��N W�a>�iJ��|�gX��-�t�!� 4�Mæ��wb��d�r�n���� ��X�
�mMSE�Y�P��%�Q^�;ʪ��P��^��^�D}[Q��v�����,������lMI��������~�D����w�S ��^#Lh����{o)�p�n.W9�q���Bn�':���O[���5}��y�TQ����}<@�wŸg��o� ����Oݿh�X�q�n�-c��kP�j^���Q�nN��2ڠ��L�;.����+��%�b���B�?�}�����/�V�^?D�$[�s�/�A�*��Q8K�-B�vZ� +�V��y�,���h �&`2P������{�8��sk�����F�v/b���8�/c s���"�\����'a24v��p�O�>���,��e��>�n+�x.�O�KU��iP���Y�CM����$��(l"������,��7��̳�Gp�2����Q�a��?�x����r�%^�aq����O6wO��R�l +D�V0c)�_����c��N�G��x�\�s�n4�B;�N��45�����N�-�H�uH��\��h��VԠ|� +�x��)� ,Ҩm������u�M��i�V+%�$�x�K;I�*y��g���O����m�#����m��G�7j��m�Q�.�#�_&qRi�|.q���9/.�5b���~#��~:����/CЩ +���Q��g����L\ì6YS}�nQ0�0������.��[8��pڧ-q�L�� +��FFf^�V�JO��v��7�P�Fp0X��.p�B��OHxk&� ��z�kc%��S+(�-,�w�G,��>l�NB]�q�4��8��);����u�#u� +� +�t����7G#����Q_f[�sK~B Y��KB H��J/l���_������8pY+U5���v���,!�W��HÑ�x2��e�w;#�n��H���L&���V�~�P}K7�5�p�������4��V�d����v)��z�C���\ᩑu��C���H +���~�?RO�F�e4.9Y������#�)�p���ȇ�ZߗT��6Y��%�:jgf�.W3qm&�x��\�-߸��i���,�T�I�@CU��*r_G�\�sqϙ�̒(�'�I>BY�>m�~�f[J��Z=�����ý�>��������4���(:�3�cY�r�S�~�%A�n�ݴDd. +�pc�y���v^`{i�Ӽ�Kw^�Z���V�X�WX!�<�g�D�0�1x��>�(ʿ���#l���c�ꨤ�K�VH�Y�|ĩ�"N�}W���uJ��������'�����_pg9~�@ +@��N������A�؛Od��˜b�/h{�3� +�c�-���`�J��+MPg3D��u�9 +��v�r��x6j�NX?;��mc�U����id���-�9�7����n�վ�#)7���tiT:����`I�5Jܘ��TC�D7*=�0Q�=B$�9(�(�I�����������X%��&���FាU��S����~u��s��j3=;�
����#�Ϥ�R
�IgW�l���C��^)�u�@�δ2�ZY��B���]HH١�s7��Y�>S�{����hIɣ)؎:Zu���M�E�LTN^�Kq�I���g�����T�o�V�o�:��� +�+Ff �Z��OS��L� +����[�A�9^jvĻ^�{%�Q�$�k�
�fQB�Q��y��^SP��h{e���w���3j���6�Y�Syx��5��J�K��܋�v��ⱂ]���or��%�a`���cɮ��8Bi�pJ!�� +�?�[8Fe+a9�H;(+�����bxbQ7%y��HF[Ƌ!&�����Cm��5����E����^�����$��8y����b��)|A��ė[�j���,bf�.�Ecb�4�I�!EG5Yɇ��2��R�F�)�E;�������x�xF���^���Sq@F��Ǟ�Q���Ԛ/;�u���zR<iJ��jj��D�|$�o�(���~Sj(�gj�p�wn;ۖ0³ڵƻy������"?`�;�*h�L���*0p���M`_��C��8��i�\� U�+^}��0��g)>j�5��!�1Šy�>g���x��8�Xl�u/8ڦu�l�u����{������X)���t˄Nx)�2�t^(+�W�*����T~�R��[�����nF���58�R���#AՒa�FR�]����J,�?�'_�2���s�� ���i�}l��tk�^�uo>�DŽ��;Y��H�?�͈�d4*�_�k�ƾ�Px�r{�~�(��N|��ޱ�$�kG<t�z�n��p��<��h�5�g���u�q�o��i9r%��d��%���_���O�A��v���A�mP�)O�B���@V3����S���n�,����Ľ�{��ٹ3n�0�W��W�2<kUe���Ļ�E]p����=x�c�ijt������aѐ����<�~�T�A7Q�/�]G�'��b`��y�t���)A�����������|��S4�U�g�b���v}_Z>���� ��Q>���c�v}V�l�>���o� ;�RD~a��!=��7����v�Z���f:�Ы1Ʀ�fz��PJ��_� +bM$d���Y���H �n��9���� +������vK唼��.hX��%0�� .�h)7zp"zM���#��{n!1 +��N�UU���Ks���M[�;��ѕTodG�9��f蒇=��ݲ���K�����L����䮛&�ˤd�l2g3f�Ǟ��Z9�ܻz +\"�[�^���X형um�A��%��N��E���T�9�ܸ|4@��� Q��t�ҪyB���q�p����϶�-=�4��3�o�si��y���8������E�� +w*�N#E_Z�Q.��,�;��K�-p�UDkE�u,r()m�)�-�Xu�94���?<;P�U�۔�q�%� ���mh��{��ħ�q��$;h{�At�_in8�k� +��rE#�ʡ}Y*��02�M��D���%��?54fz���Q;��#�ӥ���|�W�Z�5Z�B��<�'���&L���t�Q�U�럯O�T 4o��Q�� +z��)������WF���θ��L +?ݳ/}>ĸ25 \��Ď�8�����YT�����rF�T���!��+�K��'u{��
W{���4� ���� Y.�U���L�����L��� ��[�����H遷]}���|�m5,<O�ʁ0|�3t�arÝ�_��D��a�*M�� R�^������%z��3�i��� �;��w$}kK����v��<����!̣|��&w�Qď��a.1�^n0�9�*gu�G��m~��.">a�Pݿ�3�6��s��ihO�B,�d�@�kc��8�{)T�$��>�� �c9f$K��F�7�u��F���������)���������3<{�/�����/+��S�7�|�����"�mO�����I��D_�
?h�7�����(��bF9c"Է'���>�>��6u��ҫ;M�U�e��Znr�B��W��U��\b ����LvmIzDﭦ�~!��ݙ��8'W�zf߸n.XP�� ��IѰB"��U�߀�*�0�`��n�[�\#�9��4~�i��p��m���ȥ��,%���M�2�8�}k�5�I&�&�� w�L���w���\r�h�XXlr��5Z�u����u7=�vqn�]�u��[�ङHZЉ�N1r��ĥ�}�n��je�NO�|ZkR�Vuf?®6t�?�˼�t���E)1�%A�$�*5���Ҫ1����I�U�<���~nI�}�Yg��"fSL��F`�n*����%�䂍lü�t �%�4���������ǯ�k��`��a��%^BQď4�����X[g�-x^����^����/��@O�
$�7A`���u7�,�{� +�W6Z�6oz��"]�s�nv���0�0�t�������̞t��NTGb�Q��Mz��o���n�۫Pv�g��=�L�U��R���K�Q��XsR:��D��߫�`y[y��9�SB��|�
B!7���x�f�K���q@��)�鰰���+���H��:�$-���|�y�� +h��6lǦ| ���h�G%�18{�
��Ҷ'<�3��6y��� 8�6�*H�C�)�yߍ�qi'���L�{�ͧ��9fOS(ε��Ƈn�y}Jg��H��|�+��xTo#�y�֟����\�gd��n�^Y��E:�_)rL���s�h���l��e~�7v
��Y��?�Iw�y�����U5���- +��Q��dV�n�Ͻ��箻|�)xã��T�:���g����U +��K3c���:�4��a{���V����҆��pp��嗍�Z�c���"E�&��� +���D���ʄ� �eT_O���yS(;���"Xg�Θ���i�*�1~�[�T�y(�Te�G����o���f��t`��*���z���~�Hþn��:��F�3q�?VoU�9�����d`��L����9܍h��@�9���b +������wS�A��?�(��Z�W��:~�f�P��7i��#��K3�ҷʭ�F4���k��������Tuh��r<��=�Qf��1 +��6-ȃ��h���9W��~�_�A8,s5���`}ӎ^CT��M{�[F#�E���P�>�k�I���,�vI(�F�xr�?A4�gشcD��~E���:~�H>�yJ�D~���� ��s*�,�I����S?j��ǃs~I�hp}�� +�!" +�BN)?$렒'�WD^��Qu��;�b����g�[��I�H� +8Tj_k�������,����v�V��<��Ļ4'E)���IN�yE��W�B��L����J��q��%0r"��E=�o��tLf���S�Æ��ڭ�K��{KU��T��4˾V:ebk����x�i�v���Df��@��wU����܁����Xܥiׁ��jJ����3s���jOS�t$ ++]���鉹T��wD�I���nZq�l]��)5�7�/"���)���OiQM�ЈbG#��eVВM�
�V�b�T�UH����� �Dk���>Ze�)O�� Jf6��|����r�������������!������� �iT�ێ��d� c +ءh���B2�U���4������Xݓ�߬a�&3�y��i�̥h�1_ӿF۠#Oh�5e�ө3��a�d877���L������Uq?��Z{b�)�v����y�z�4+�[�)Ye�ޔ���4�bФ{����Q��c���^"G�9���mzeE�b�I_l +�<113ɴ��X<(��3,Ne5*�-M�\Z�?���zB��w:�y@���֨x"gl�4Hza�g�a����Q��oΒ#�D�Q`wS�7#��z������m�:�*s{��+���\�x��;E���3a{�a�w +�<�m� +��^Q���2�� q
�_-ڿ +�7��Q̧ط +h���o{;�*h<y+�rg�fF����Q]_�>��O7x+TB���"KB
���:� +��"%O�t +endobj +659 0 obj +<< +/Length 12122 +/Filter [/FlateDecode] +>> +stream +H��W�r�Z|����H�BaK�I�l����B`�S������{�ԫ��$n��P�új��ꌖ���zқAZ ɑ�z� +�NF��B����Պ K#����In���1��
![7���z|K�-������aBHJ�L5C�C9��#�d#Aks�~�������nnӊb_�+��|�7��7�Չ�ԏq�L�4�� ��D!�uν#]�MSP���ڎ���M�̝�ֹ:i���&}�����z3'�JPs�d��D�,����p����*�ف��U�alq5#69Ժ���ە�q� +wl��������gbYZJ5�רp�3���C��7��blv���߉ܙ/o��Hp���; ������Vr��&��xrtR�ҳa�bϩ3�����V�CG�ϴr����D>,�9�#��P���&tmw���,|�!��G-� +�ry�5�.%��u�j�G�0(��ƭ +F����k��X���Vϩr1M �NF��%� ������J_���m��c������x���5S�.�^fCb����i�%6jl&)�k��@�<�;r�',�r�JM9�p�q�!�udoK-��j�Y�=$� +b���aU:|>[cR���k�g�d�����f�G����;�86����VN���7C��[�z�`��ɜW��PG-i�L1�/�=��_f+�� �i���OG���a�E��]Z~Ja������
�S:��7x<-K��c��z;D�ۚ�}\fS���5��dN���L��a㑹���s���7>����2��JGb����k��]Pi�=���O��1C7o�*;��w���T�bK�TE���~��o��aΚN�r<>��)���Əyz݄0�����Rw�3���Z�����Lv3��*|Q��_�\&n�DhV�nv������B��:���ek��-��q�Su���q�/}w�ohyα4��
(�HB�o9UzO\��y���x����������Z�I+@�0_Z�]5�Za�*W�?��~����nZu�ucm�aa�����j|����⥈�5�L^;���t���}�NL9`Ůd��>�c��-����;U�M=��RhE��R�ξ��F��0;Oѩ���u��#�>�>q���p�r�z�%��q�p| H+u���$��1yF^n�:���"����z���غ&�r�滖ɞ�(>9�0� +^c�������� +� �l�����@n j�Ae�+�+����4OD� �6��H��E�u�3� +� ���T?vƑ���{���lΚ�5�9��S�Sq�1y���hN���
��ۦ^�(o�2j�8S�Z5�6�xnj�i~ u5h�����L+m(���N�}�� +��9���0�^���Y#��-�qMh%�
Av����mjv�A�*0I^9F&M$��m��rщj�k��֊/����jz��|�m���*�@xa��a��뤄�2Ė$�(~x����a3�JT? �+q~������#�H7�#�Jd��!���etr�wB�n��s�}Qk�)z�ԁVx/o
0�Y(�E��n����f#M +P������ȡ����v���o��& �� +�wS �]ع~��t��z�N���K���^! ca����g�8 Ȇ"�NO����C�!t�F�t���D`���� P@�I|�6I�ù�[ +E���z0M���$[��5w�_�_q�E�T�g�4����e:�珡�W�U���$�?��Xrf�i��s�h-�I� b��c͝tP�@��g�#.f�C<K�m�;"QC���x�S���*�á0ݕ6o�3q����F\�zcd��Qd�<]�r�� t;8���;��I~&��f����S��b�����PC=!�껦慼q/#�� tG"�Sl���u��I�%S��+�Vz����Oa9¦gqQI�yXkT�ū����a��E��w�Ҩ�+l����N(3p �f�r;��f��0�6C�����5C������{N�<��sBXL<��sBh<l��9!th����='�Z��f�r��f�Bb��f�rO�P3tώ =�`3��a7'�^�C��='t5H�3C�� +�`3t� }w���1Mv1p+$s�A���j���j 9�iezЃ�-E�h��>&���4q�6�O�g-by�Q�֪'�DzP�N�`Ցc�U�pH��P���D��7O��%{�2�Cߪ裈T=��o��SH�=d�_��m���Mc�*�7F��_���b�Ǵ��ʉ�!�uK�A���R���Z;�"%�V�}�Gc�EJ9u�ϥ���!�Xe�g�%�t 'j��Yk��.
)�W�$?c6�,6�dl��"�x���J��_ګs=qd�>�#�29GE��I���na�������Ϩ��S�T��X���r2L� O|�9�[���?_�٩���
ą`Q�Q�C���<K1�ǖ���G�ʖ4�^6۾��#��ŚI[�L1�MڅRZ�&�.e�C�16�?䦂q"�̄g�&w\�;TU��1|fO/I�+b��m�[֘���oP��0)h�0+�Y�����,�~@y��|Ha��f��1�<�6�J���pw���upM���Q�m��]�1H�V�,w��2�������WK4�(��x��&j ����Ì����B�ظ�>�b_X�}M�Tկ��S$H[�N��̼3i��04�:>����(m�K�, +U�l,�7l}�>���g�PC �ψ>t+���+�1��:����a�MQx�&= 1@��TO2�S��,���h�J(t!#�-����Fv����q��u����`�����(�T��a��L�`ET�����:u�Jy��^ʞ�a5e�v +��-PPF���}�+y�0��t~љ*T���� +�%�w'��!hX�ϯV�nGܲ�l�;�(^�z��<D,p
�����q��~(�o��A{Lw,�Z3�)B:�����2������ ++mD�BX��`��r� ++�>~ZdO1r�&���z���%,3�1m��g�P{�V�b��bB��O`�S2����FN�L�Y`���߷ +�\�>Sہ�Ǜ��B��ҍ�$��<�(D&����K�+�=cuZ]���
�ț�Og��[L�Y���B?I�}$Om�ԗ}�}1��"=w����
V��z�g&���ºX�C1�A��Fh���Ў*R�KCA�E�]жњ +���3�G� +z��B�WDܿ�hRv�}{%A\h-?cEsŤ����{�5��e�`lby�,ff@nRv�<�C}�N��� /�%�KL�(�)�� !r�E,�^q�6'L�JꜮ(ZK����4B�����bb'^�cZ8�j�)Lw�!�Mt�����A���1)���Zȸ�A^݈�6ٖ���LME�P{J���Pv�G~�v��s�������g2�V+w/�zA��VQ�a�~y~�{Nn�,h�v�Y���L��99{�K���t�={ +|Q�S��,��,dveg/U��Q�$�E
E䔶�V���v������3�Gnq.�u��f�}���ڷ�F{>۹��W{<���d%y4����c<�d�:�$ݮV=������}��d2�o��z�::ءEk��^�^_g�[k���������N3���C�#+�ӥX��F1q�������ݙ�9-㜥�<_��|k:�[�0�sdz�,���W�.U��s!S)ě������]Lle<Y���҅%�[���0��&Y�@]k�ͣ�ʞ�_�'/w�!�d���[�d�� ~ou�Y�M-���uZh_V�?z��E�Uo��{�����f�f�\{�C�Y�3�?����o��`o�<6�`�
+i�۰��R���7/z�N��}0Ҭ��]>��i��>���F�d��p�)i,�@��il�42�Q���3t���#e�>1̔i�~7s�?��'���hZ7��ݠƶq|b�1�m/6e��a�ђM+eS�e;~�u<=��x�;�"�͚el�X�c�i�9��xӠv�r� +�DҨa +Q�+��"���bf.=M\TĂC�XpȠ2����X�=�9�T�ˋX��Fҁ�>�&��Gص@m+��#�A�`S����?c�@�p�<g-Ʊ����ޱ�ٰ�J�G�Hcp,���A��c,Xk�7ڗ�������tT�rl +�Y��4�<X�26�J������Ң�K,�Ģ�%�_bQ2٢���kM���̉i�) +������<�6x�q���U~� +(�Z#�S=��C��y)�x� �-�Cb�G ����g�����@|_�!Z�G��&g��E��C�gt +p�* B�zA�?��7'�R�5B9�uy���R�1s�)@���6��4�8� R�� -�,O@SCH�Đ4� +��yF�����p�Aș���a���o�=Q�Z#4S��CJ�y���ʋE��<�-J9�o�����v�p�|���P��0գH/��T�V�<#ڇ^�FF��9,�S�V�yk��mq���Fh�:4a������7��v�n8�u�8�֬��yee�uT�_C��a�G�Z���%*����h���V1��xr�M�*�{�]73�)��:���%��?�Y�=���ح*zL+E���]� +<��В�iI4����wn2�����������Fs��>:��2%n�lڔm�Q�ʭ�7Z�zX��U]X/��ͯ�[W���[�p���֤O�}�<�p��O�X�K��z����X�N��o��o���a}�L�������o��p�g�xmE7����W�^"f�GA}Lj��bw�}z�r�
��?
*�-sL�2%�K�Lh���i&�����?il�� ��S��cx=2���j�PF���Zăt�Z��τ�m��Vc�I�tKo�z +�3 /�#0{��h���pA�+��J������z�-�K�������H' +�S�����B"��X������ +�,�����w`a���R�6�6�'+汓oB.V������u���yӈkq��Ȩ!� �IJI����d1�xKt�E���ˌ���#�>`j��QZA�y]�e$�%5����f�ъHKz�*p Ejz=�/(+����#s�e��$�<��8�IZQ�'h��������kOܼ�D��tT +��=�ɜ��S��Z-�7A�����5���*�$u$1~���� F�_�/F���"N��-+��OGz�tM�)��]c0��iܘ>X)�a�J�$,�G�oy�*�t�5����H)��ayԝ��ӈI�����?Ӎ3�SA�������o���ʴo�i�h�38LF�T^��T#�
'ҳ�V�K�h
��4��FG�YT2Q�� +�\���� +Mޙ�`���
�����NC���.�pH�h�!�G��#r`��z+��](�7�W�bY�k#m���˧��/���x�y��>\��?��c��lqM8
k\\ +�5*����$ʠ�D7�0�a,؉ +H�� +�%�q��i˫dT�[6j��+�m�l����d��G����(�����W +.��=��D��*5H��l���}
��Cz@��w����\�i:�#�a��
Cd�߰Qz�qzك�S0/M�7�5�f�c�U��L�keL)�21��:���<��bњHKz]�[�,��.`ɀ�rJ%�z`,� +$3�����Gh=����:4G�F��\M.�����#�ƐO��O�g�'M�ʚ��J�Ձ�CH�QϬ�QG�h�.$�@�U��������A̔���J(�֬ȴV'&UfsTN��(��JM�T�:��\���)S�i�"�]�%*���y�_{�bL#@{0%]� *�<�M&+��%41|��rҐۤFП>�o +6Ӫ�1�:$3�A1g�I��G�q��Vc +�k�(�8�,D�&����RGb#��J2���(�K
�b�8��� +�+|��i��e`��Mm�Ya�$�N���(ާR��x���/<��_Gt�&��]�?90O��?���7l;�̇);�.�C�; +endobj +660 0 obj +<< +/W [ 3 [ 301] 15 [ 367] 17 [ 367] 29 [ 367] 36 [ 590] 39 [ 613] 43 [ 654] 47 [ 506 709] 50 [ 674 558 676 582 481] 68 [ 525 557 495 557 545 370 502] 76 [ 285 367] 79 [ 295 830 546 537] 83 84 557 85 [ 389 405 396 546 490] 91 [ 501 493]] +/Type /Font +/BaseFont /HZYKOU#2BTrebuchetMS +/Subtype /CIDFontType2 +/CIDSystemInfo 663 0 R +/FontDescriptor 664 0 R +/DW 1000 +>> +endobj +661 0 obj +<< +/W [ 19 20 600] +/Type /Font +/BaseFont /XKYCEO#2BCourierNewPSMT +/Subtype /CIDFontType2 +/CIDSystemInfo 665 0 R +/FontDescriptor 666 0 R +/DW 1000 +>> +endobj +662 0 obj +<< +/N 1 +/Domain [ 0 1] +/FunctionType 2 +/C0 [ 0 0] +/C1 [ 0.3922 0.3098] +>> +endobj +663 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +664 0 obj +<< +/Type /FontDescriptor +/FontFile2 667 0 R +/FontBBox [ -86 -262 1082 943] +/FontName /HZYKOU#2BTrebuchetMS +/Flags 4 +/StemV 92 +/CapHeight 715 +/XHeight 523 +/Ascent 943 +/Descent -262 +/ItalicAngle 0 +>> +endobj +665 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +666 0 obj +<< +/Type /FontDescriptor +/FontFile2 668 0 R +/FontBBox [ -21 -680 638 1021] +/FontName /XKYCEO#2BCourierNewPSMT +/Flags 6 +/StemV 40 +/CapHeight 571 +/XHeight 423 +/Ascent 1021 +/Descent -680 +/ItalicAngle 0 +>> +endobj +667 0 obj +<< +/Length 16052 +/Filter /FlateDecode +/Length1 27336 +>> +stream +H��UT�U�}wf +4P�^*0*">!�,|�ZKkn)>�L�Yj�i%�5�'�����������X�ݳ�잾��~����{� +a%W3���DI��}���0p�C{$`E�X��7�cԁ���+:�J���KW���<<�Z���i�η}��O=��IRk��u��v +��lx��G<ߣg��^���c0�������A/�N��4t���)�G��5�dFZzFf�K��q�sr�&Nʟ\0�p��3f�**~e���%��{����.���%K�x��eo�e�����λ+V��Z�f�{�ֿ�Ⴭ�>�H����O>ݺm�g;���Ͽ����_}�͞ʽ��8x��8v��'O�>s��\uM�
J��t�� +��EE�����W�S�R�*(���-���T�h���[���#�I�_ +��I�R/)J2HE�i��Q�R�Q�Uk����Q�q�xhZk|44~� M�Ƥ�ԕ�>����]�.�;����Y�J�}O|ñOq�{�b����� �Q��~�~79v��$9b�K=�c��]����8v���{Ccl\Wݧ����@�7��C/�nk�� +{����M�+��=_~�{m�PԖԖ��֖�nخ��d�VZ�e�I6���5Glεg�˪oT����ʯ�P=�:�:�jYՒ3תr���~T_8���1��
ˁG��'�b�xOl�w���f�҆�o$�b�و�ze��b����5��Rr���븁�����ո�w��p�b6a/��C�!�����D%��0� �'d���(>�����q|.� +^�Xdcr0�X�<L�1 ���L��|2�0�13�
�(�,~�^�\�gt�N��$wjE +R�:KUt�T�D�I^�L�TC�d���<��6�M>t�~�C��E�D?�O�3]�+t�~�kt�n�M�E��mn�I�����]�G����vTGɗ�S��q���������� ~�B)T�I8�DjȨ
i��hA�IG��pnD$p?P +-��h%<����E +��J��[�����������Y +�n��K�N�����C-N����7�ES֓��K})��Q@i�D�4�h%R
�aXA/S2��pA�4�F�h2���(�2(��hY�e�X��4�r(���Jh"M�|�L4� +i*6�c(��Sl�W�7��|��y�aX�_�k�-v�Kj��x��ȷ`;���V��ˌ�K��ؗ�W����o0��T�xvy������*yb�=�;�9�*��'s9���߀
:��r6k��N���{�/�(��e
�@�����_� ���t���$�H#Y(EwJQ�V�߂\�E��ߍ\���y&�Q(��bE�E1K칮}� +�����op��G��a{?������H���/�o���G�;��^/D���|D�Ю!����ZM'_o/Ow7�.�N*�B���X�$��d��6..�Nk��0?�0��bב%�CMz\SϚYOh�4�͚�)�B��`ɨ������'$3�РM��|�W�;w&�j�����$�I2ʱ�R����*�\c�1��!��pucԍ19@k���(r "�Y!��n++tFs�<8!�h�V�8x�q���bdg�/)۞3�K�;Kl�D�)�e�6Ü�,+�lT�0��Γ���@�A�v��KΔ����eg�4 Y���J����k�^y�cn�8�<oÎ�Kl>&�7���8C�O���2�iL�� �
������
J���.��$�j�7I��MZ��UFS�W`�Ӥ�`>}ǧ�咬�7��[�9�Tk04�[R��70�77�j�e}���ȶCB�������fH�d'&;L�d���F+9�h��%KM����� ���zc�:����{��}���w\̙���N]x���5* �~Gr1
�����Q��� +�i?�C�T�R��$2��U[E�A��h�R��@S\� +�����9��>��������vfv�T���o=�aY��m��MY=8���?��ݭ{1>����ĬW@� +I_�v)�ή���%Ԋj��_���s�͈��Uh�P�&��;\�.�Ҏn��xrև�*�D=��֟�.AS�s��B����Zk6im���\,�T]��VM���x����j5k�m'',j���3W�m��(�F�hc�Y�=�'�%I�!o�O��j�;��gw�j�k99c$�;fH�쩊X|f�,�p�0qz6V�CXyff����3ߜ�L����ə���́�ݴ���Wξ�:;��¬�{�"��m{g�;��V�ۗ�u��?������ +��d��=���]��������w�Կ{k����/����ĉay���.^�h|��ؤ�J��=���̨ˀ��U�[�q�ɪ�S2z֡x^��%���j�Y;.ސ�u�ºQ���,c�K�EX?R�WgGc$iKD���&9�"Q+�iL_�o�_��X���l}*a֔��O��b�}�jHm�ژZݵqSfCsS4p5����xns��˯�~�g��5�t
��~�G��A�&�>W0��y-)�-�bXH1�3}�3�aS�mYD�#��bg(��U�^�����+�U( �>+��5��N�q6S��p6<��\���YS,0�tg��T/+�s�������?�__s���K��v��̨��^�<�x.��c�,��[t� ��9jN�2�� +��h+\7�G���F�R��=�&dA�ȗ�H3�Rۇ��@J����m��1掹�]1�r����rĮ������7#9 ���r7d�����S,��s�z���(B:��<���~S6g64D��*�e�O���������ѭ�Ǵ��j�wK74���_�70� ����y�`6A@� qųM����z6�c���s��"<���-B����0�M���[��i�Z]�ȔL�A�u��2�R�.�K��QCi
Y�Bw�&ZFf=G�0L^��X-�,c8RL�����wv`��$#l3q�4y�<�<��+�i��</˪��ۈ��~�52&�yyYސw�db�ɬΪ���Y��սc��1��{��NQ
)&>��7�
�3�|Bo�}n�{�rv��#C�7�~���-ܻ?��F+7�������)�TRł�����%'��zB�@�'���7C�!=0tZ����^�i�������}��v��Ю� +A �2*'��u +���R��wS����O?�5��)Z��k!��������xp]��vV�+B�r��:��:�M���l���0>�ޙ��ݙ�ٷY�Y/k�6ޤ$6��.M���[l�m�[��j�!����TMS��~UHp#�M� +�Rh��6�
-q�n�#�D���K�9����@e�:;���̹���輎�A!B��e��s��IxYx��� +S�[Q�xg���qV;���0W�Bh��SLzL3���n�PWx���xр@� ��LS#hS��+��p)�� ��oj(pKSs+��Q�֜}w�9{.��#:�Rx��/�=�=mU��g���4�!��?iׁ^G��|�K����l +����6!�B2����,�l�A6� �e��2�`�M�=$�Ց���l�`��{$�¶��D�$�%,�]��G�f�0b�Z���*�"��4ث��E>�
�������cͱ��Y6X�7�y��d��(k�4=)<5eJ���R<P�U������H)�i�o|��ٞ#'μ���l>�j�*������O�>p=�趱0o�W�kgq�`�\t��jrf���²�"|�H�������Q��*{��\G��n�2� ����k� B��O�O�@ ����tj��������h�.8�0pޫ�lulSl{L�1O��nƴ��Ǜĺ+��YP�õ���Hk1���b0rL�s +(*KG�B�NWЌdO8m�D�is�m��3�`ҋ��-��n3%��HnH�&�ƃ��z>dA�CO���S"U�TvdM6f2Ŭ۪B5%6$F����zC�h�����z|�|�}ZS� ��רN���`h$�-����J�SW�9�1XP����<�P���|74}�>���)Ek�}�{�mm����������1��%�p(�F#0��5�{����>���o��:u�õ_�߿b�hC�m�*|���e��>��������_X��y-[����l[���_�>~M\V�)q%��<XGf/�v��Q�~���F0�l8�5 V�겸r�:c�e]��8�Ö��v��s�������� +��K7��m��a �@� ,�0�m��<��[����g5�h>*q�J��R#��h�F�F+��v�D\��W�E}�,رKTF`VT�ƪ�^i��Z�V�e��k�[����k��)�Fy/�x/��I�Np�ȏ�Ò��o��%�r@� +�=�~�ݏ�𗽜�i� +���R�Q( + +>.:f��wFo�+&�rΠd��>�|� ��$�3������<,����!�詤����&=e�cӬD��LG�#�h��#�G\<����D�"�i6�R _�U���ő�� +�d��^��������,��\�1ݙ�s�͂���g�͐fX���b�oli_X�w3,y慯;ֵ㙣lݭ;m�r=K^����g��E���/v�%1�@�Z�ǔ��[@Y�2qXg��?�_ԏ����{���F�6�K��R��Y�%�g�˳��)Е�L�Ւ@��-7�d���;�G]�f������3n���S�;t��MU�ϓ��g.ZV����qg�%�Y��Ͳv�=h�تm�v6՚M�dW��4'��M'l�{��?uZ�֩
h*��
�]�H!��*�.��S��Md�Q<Ů�L��K�]4(hO4���,��a���;X�*�!z��(~�A.�"~C�!�{B�C�ԍ�>#T�T`Ŧ��lWlY��웝��t��vg�ݲ�`[d���=�d04����'��5-x� 5=��Wz����r
R��� +I4�� 99�k���N}�������ξ�7�>�����|:�a�� ���kÓB�¼Q���g'�
�����h*l�M������d@ I�C�j\Kͩ�T�FG{V����eի6������w�v>�9[�y�t�w��N��30N���;�_^@��Z6��}Uݸ����ibI +���#{w��L�Xͭ�.����C/vm�����iM�d��_8�/�ަٵ���ӽq�s��k/~qg�x���zʏ�\�q�ʮ�?�k �TL�lb���\�Q�������^��LZ��x��/'CH! �I�۔� S +�]���d��N��0��>A�Pa +�a�ݢ��<&����;8\?�}��B=��?�Ȉ�+��
-�~��"�9~�|F��\I�a<M�`�_Ɔ]�3)M\W��Ud��]R��X;�qQf?]�9�8.k=�/��� +�-LI��Oep�D�J +a�%ϩR �����c[�-�+�)�;1���f���T�r~�<�7���ND�s�4�:�ڔkÁ�y�xZ/k����{�E���\����'�<8�a�n��Ï����dɷ���4ɒ^r�41�.ǀ���C`π#j�eT��h3z�>ëq�Wq���F-ZE�LUB�,` +���jw�B�P����l`�Q�P!�� +�'��"����h>�Q �qDw�1����Bެ�[z��}"g:�L�op�-:�L/d�]�����:T��W�A5g +C7njy��4�u��85ڤJi�օoU���U�����=-ύ�Rk�<�0����
������v�e�G[6�A�
-��&��U��*ɍ,xj|� +w6�����A��;��:$�.2@��Ar��!��4�v�KTBP}�Y$��. �����"'��Id�B�u����7DY� ��,}%�>����͜����St.:��S@U��� yZ:���:]��-n��A_H��"�m�V} 5�/��k�g��'��-�ހsk�;���u�;�Θs��y��_ӷ�@>v9j��G1)�Y;R�5}��FZ���k2f +aP�*j�0th��Eʯ?X�Z��P�bk�:bq���fpҁ��;wwS�.|9��w�=�;瞫.������n�J��m�����P(C#Bšc!u4�T�̵|�Vc;��lQcg�{���uQc�F�ۗ���y���%>V�/xee������p,;'������_}<���e.�YFe�6:��[q�������_��]�x�#r���=����"�+g���������"�n��a��9����@�FX+<���g�D):�> 6����\wn���Ql�XP +�h��QҰG�2"F���{+�c���D��+�&�O6 �����+[ +##�!�,�m���Ƒ��#���N_�2<���7�D��t^�a𩤊�g�c_7*���Ns$�.��M��;��:}�_���.�fby��e��숿Ծ�7�Li�Wq������em�S����g�-MlI�����EM<5����'���3$B��Y>�'�����a4��Q��C9�PJ�{��\�0q���ix�xb*�8}H�C�I����ϫɓAW��������v��/5����!S}%5�d��Ӊ4�`���ʊʪ�ac�:���&��=���ݺh��kV<���Ǻ��L����s��m��X����H��G�ⱈfVGD�4ڍ�#�N���lsT���9�N�c��&k�d���������ޢ��F�k��$���al��y������Ř���d>Ele/��z����v���<}������xyFK�/'��X�j���ҕ�Rb鲾�D:!E*�o��}������ɧ����C� +{���*�e��:���
S�?(_a.`���r���E)��i��*)��%-�T�P��>V\)�{ե%(�O��^^uل�-=(|��L߫��۫@K�_��;+�.g�s̱�&i6�t16���b9I��V�R��j���R�|��/dLT )ԄaQk�*��v������Rm�C��� +�%x�>d�Q�s���t�8�8�Uv)�5o�Y$*�����d� �/����=�o� �������+�gR�;L\�gr�;��{&��������X~E�c�h�QS�_���;�&Λ&S6��� +*I�<�c�qX�ʹ�'���o�9�'�?���uL\
�_=M������!ݾ�u%�g�W��� +��~!�� �s{ؚYssOs*+������Fہ����h�م>�ۇ9���M����3i^k���m�|�E�d���tB�8b9@M:��Ӑ�h��-eb�*�XWy��2KR����f9��l����^�Z>�s"@�����k'�SM��h�M��l:ר��X���w +C�̬���/ѓ����32�����g`0�y#�`n��v�G)Þ�?���'����}Y��g丱���lo�du�di� �PX�yR�:u.9�D9�"[P +Y~LE.N�S27�s��2�n_a�d�i�%�v�)b +m +e.�Ld �G.\�OA��n�FʬOh�˓�TUJ���2��$��/r��/��/��~�g�;](��X�w���J���3e4[�\��WV�k�J[�3gJB't���P��9��W@x��:�x&W�Wy]̱�Ф멍r��c+y�9/�ΖX���-z��9jU3fV��+�ȯzϨPv���#_^�)Tz�J�����_I�u��D�*�B�{Գ���R��}�E[�2^a$���,=aE{6_A�{��@gtԙ�|���(�#�J;S��e�.����o�=eD�CŻ7V��|TS���9���le��Xg,�u��X��"OP���鈱r�ee#=j�t�VZ�Ww��en��g����x-/��-M�-O*��t��W)�I�z�G��T�Y�\�5���B��|��V�mu&��>E�̱�旸�j^��z�lA��'6���*>4~+�"�X�V
�p1�"*��k��5JS�/�'YBY����Vt��X�c%1[������~Q?�.�Z<��{��_X�%Ӛ�[<\��U���F{D}�9F��he\�/�S��ͳh�g]�)eR��5-Ix���$�|��L�lEMP$��S��;�̭W����}S����}���yfMa�oGG�c�c����H-#��2.��=Cs�����xH�avQ����-Z}�q�������O�vN)G�R��I������R4�@M)Mk���.CC4Bc4AS�r3�o�D+�F��D\�v!�6ɒ�S��삮r+uG��=���G���'' w� \�����ä�!yjFc��c�㥸�����p��
��q�hf�i�dhHM3MΞ��˓,��/Z-��_(�q��sp�h�6��혇;p'�n,�=X�{q��x��X���0�R,�r���X���8��*<��Rp��Z��Ӵa=��s���/b6c^��؊W�
۱��5���o�M������{؍=؋��>�G�'E�'؏��� �s|�/qG���k�q�o��� ��)� ��~���+�����¯t0���F']t���
gq��;��?p� �8Va<���3�5X��X�uX��X�
x�� ���fl�l�Vl�6l�D^�vl�Lb2;2��ؙ]��]ٍ�ك���^��>��}ُ�9�9�Wr0�p(��0���(��^ͱ��8��r�����7r2o�z�F��g3�� +>�_ů���u�~��SX�i��Y<�s8�x��τ��v� +6�Jp�ތ:;n��]�MR�܆�8�B;�T>j]�/���҇*V��i��n�u�^��F�Jg�[�u]�<���j���F4��TEkY�T�4�44�Q�N��I�:�9��vu��i�_lx��P����f��<�ez]�n��Q���%N-���oqZ���JE���F\_H+���Qx�e��p���©-�69��(��2�
��/�u�}r�Z��v-�r�������6��ɨfZ���
-�ڎѰL�2Q]�}��Ub�ɾLy{b��sl���x��t��W�� +��]-<�����>�M��� +|�j!f.i����inW5|����x݈�θl��Vx٨5���֎�Y�u#xPv��l_C~��yL�'��r�n�F����'��b��mVL���<�� +�f%�F�+��z%5xIf�4"�'ت[�ÊQ�]���
�PO +5!TN��P�&�*�Jx�JV�SDEDQD����Q�"Ӵ�/-�E~i9-"�E䌈��3"rF�AFxd�GFxd�GFxd�GVxd�GVxd�GVx��%+<��#+<��y#rbDN�ȉ91"/�ʋ\�"���%/"�E伈���"rAD.�z£ < +£ < +£ < +£ <&�Ǥ���cRxL +�I�1٫���Z(E(��2Be��*'T^��P�C��'z�"g����h���+F��n�4���JO�γ�~��s�T�`��T�O�C|�/R�/�4�Q���L5_�g������lk�PҬk4��dx��s1�\fy._�g�u���g/b�Z�b�ǵ�&�n6��H첥�lh�����ns�+���oj��-�Aլu�� +O��S\�)Z��n�V7�r_zN���)p���)h�)X�����<~�O��?m���7��F����ax��`!g�o��iBFΪ�5��������ii��� �����|���]Y�7�J��oy�=��
]h�U�{خ��&G����oV`���,^
r��N��[���1 +�YE�u�L�BNI�o:P�~N�� +��5M�իQ�3��n=���Y�ډ�:��4���4�N�KN�Q +YN�G�L̲us��h�l��!vZ�^-�V�|��<|��Q���_{�i2i}K�M@� +X,� +�:$��Й�G�Ї��(��a� ` +�Gm�������gM������'� +endobj +668 0 obj +<< +/Length 18865 +/Filter /FlateDecode +/Length1 43174 +>> +stream +H��Wx��?�����ĥAJ�-��Gĵn�K)�|���m���QU���k��XmC�n���.m�e+c�Vz�Q�D���{O"��n{������|�=���?�|�H�,H��q�L�3��s�3�S|:���@���<o��N��Z����Em��$}D�oQfaVޮ��"��E<d�>������"�"ؗ����7D�����=�&�m���켢⣲s2�����{%�}'=#�`]���0`~p�Ȅ�ԏ���e��z��cE"��.�{���L�P8+�p_ٚ"��io��\%Ff���M1�ȭ[��#.�`ē��S$Qy�s$&3'�+��9Y^�ϛ�Q$��)J��SL��$9W��G�4����n���g�q`I����AI!�!�C�ԓ���"1�����W0�HC�����b� +v�`�vcv�hD跍�Tc�J4Qͦ�Bu�
�)4����5��>cq�����n3�)�0��u�:����c���}}��֧�a}�~֧�o}�$�髙��^�LS�t՜~':c3�0htU��d�$�ve$^z�b�F��(��F�&6 +4�V��ZEC4#���Z�'��)R?,#��<���zHS��a�z�P�z������a�z��[b��[Zí��V*�[9G+�j��rAZ��{j|�jF�f�j�V��GhE�Ը�J��$���b'N�!2�F��]�>P���5�;�f_�_ӌ�k��n�>����bk��;��.j�B-V���5��Y�����g5��yN�˜&��'7�5{��fR&r9��λ��5��j���z��dgR*������%g`[���9{p���bFr�A +�q�N�D�-S�E.�n-9'�r��4�}�YN����S6���Ȯ���y;��.��W�A��|~�[�~N�K�~�ۄ�ԧؗ>a���}�,������͟]�3��V\��^��;�U����[)�X�17v� +�$̈ �-�o<�?|c�Pn�L��g��h��vS��41-M���o�(��43���ic:�v>�1��f���&��6�Lo�@��1�f�lYۻ�7c��� +o#���a���/�c��A���k=��.Bx�uQ�,w��x�vC�Ě-y +��F���"�~�J�S�Z��Ӕ�b�]�]�2%v�p�y� LC�����EQ��ę�>�`ʆ�af�nW�K��9䬵�������ͪ>�w���D��z\�ߘ�-T��F�pDݺi��f�H�mnV�8��;T��d�d����X>��F?�|�BY�<�qJ�����G�-w���{�=�����wky��1f�y�<m��7�eŕ�{_߮vAAԶ��Zlj�q�:�L&�I&lj1�����#(��!"(*���� ��/Q�mpA���b= ���=I�Ǽ>��^-���:����jJ������mm��H{G�Dr�ZIm��ҧ�8i�$M��I��x)Mʔr��E�T��W�β�����I����r��K�/ϗ���r�Akp543
&C'�熡��#3JFgcS�������c�5�o��8ʓy�xP�⤸(nJ���tP�)�x%X Q(%VIV��-J�R�T�+��+�MS�����i�i�i�i\���I�kE��w��^��2UV��j/���_�V'�s�Hu�Z���Ƽ)�����`>��I|_ʗ�x:��Y<����2�V�Wջ*��Q5����w#C��x��I|)��5PG<D�֤�|:��R��JJ�M��.S�6W�[{FkM� ��� �~��]�O��dW��,;�w�{�Oij� ��a�!��xA��Q���0�Hq�w�RG<FIR���/�=눏2V���{EW;�� �^}G�T�P��j��r^�A���?�_��>�G;�'�?*�_�ă_�)�[�&h:�X�1�jg˄�bO뱵1R�[ݾڧ�[�Ά������a�5n�g�qn�����+y��X�,>�|>�?�ܟ+ +�r|_�ͳ�b^�EA�o���W��M��4��j�=�[w~Hu�/z��uu�_�y$�ͧ�?�R!Bi��MX� �!�D7!^�B�;<�%��� +/�"F`$n���w�.l��1��]� 6��+��n,@wl�Q�q/���x +?�5|�v|(j�#|�O�>�X�/�U�X���A�i`��0r 1���ؑ5dN�k̜�k2W憝�;k��я5g-XK��Z�֬
ӳ�LfQ�����2O�g^La&֎y3֞��0�m�uf4D�*�4\�K5���H��,+S�AV����®�h�k �:�욳ª��*.u[���C��?vx����ކU��Le\�@�P�$*!�?�"#��Q:��ʤ,�@ٴQT�ʥʹE�6�N;h���y�/|���P!��}��P�CTL���ct�N�I:E����st�.�E�D?��z����,t��TB6*�2*��t�n�-���t���/t�����CzD����zJ��9��J�[Xv�����l�mpP�J�a1<�[lͅH�{"�����b_Q�� �����=�O�(��i2-��"?��4 +��"�-�0 +�.�f��%MK�,�a�(Q�Y��x�Ckh-%Q2��fc���������ni�h�Υ�g%x%�b �V�'5��t��7h�Ԩ��K���n�͚�h�Ѫu}[�`��RL��}��v�ة�_������������n�_z��ӷ�{��������㣏?��g���}9��C���Я�}�G�5z̷cǍ�0�IA��L�6}��Y���3w���?, ]�8,<"2jI�Ҙe?���<nE|��U��MJNIM[��>#3k�&{㦜��[�n۾c箼��{ +�������W�ST�?�+�E�/���[�eE�pqY�%� ��R� ++�S��Vm��I�Ѵ�ĉm�Mjf�f��~E��j�dl��I��Ⱦ��[�J�?Px�s���sϗ�9{��>n��t[���������:/_�z���?���@W<�t�]�@W<�t�]�@W���+��@;)ﱢ����f��Sc=x�!)�e`���������������/��� +K�l�B�hGg!1EFb|�]^:-�D8e���WZe%�ɲx��.��.���#� ���h}#�B'�4Y�]e +��K&��f~[(�b��y�R>Cz��i#�I��\^.ʑ)�C1nɱ��B���s o#��*]G�Gr//��Dʦr����װd+�d,�e2���Պ� +�g� +�ɮ�/��V`��R�������?�� +��/ +5uC�濎�x:���>���� �x\�on�]�2?��S���Y�l#���Z�u��jK,��g6���W�{x#��U<���D�p��b���f�� ��KqC|�p%V���*�SaYf�e�ki�|l�c�Y�ۋ�~�KoVr� +��\�;��b����ĚqZ�(���g��C����A{���G�mP���_�b��,��sc\η� +~�� �d ���kb�g���,Z�_��|%�x.���M,�� + +RͱV���G&�����kt5^��_�����Z��Y��[�lje�:U����y�z����@�,O���0]�����v;6���5y���G�_]�� �)*ҭ��"S��2 +���lbq9,L�8Of��(�'hy=^�35��DO�2�����K����N���j�:is����r��ѭn}P��ּ
5�M���mGlTpD/ӖU,���o�1́s����?��!�w��>�MA��Z��[U��ߣ\����C����`>��#��8�o��t�G��M�[�ܯJ�3��>X��������N���&$���[��Q�^�f��$j���1M#)8͡x�ߟ��l�
�1lӐ��DṭDU/L���T��>�2S#mBW���ħ�N�WU�f`����e�H�>��2�ys�n�h���}�� +hw����w�:�v�LҌ��P�!�;zJ�"���)t� �g�:W��J���GŰm�?s*�o��n8�J�%���J���5���y��ȉ-39r��4D�a�D�zDr��Pۨ��L����~a�VXR�S=�@�m��F=��>^/��p�D"�x�s����_��o֫?8���#w���{�\r�\�r�%~\�Q$�!IeB$52��M1ġ% R&B��6�C�@�hqP$� +2��A��B�1
��g�w;��������ݷo�{���1?��ԫ;,�J����#ʊǣu�-�uh7�*��hYL�#3�G�g����h��Ɛ������6b�/PccY�_ָ�qe�ְ*�W���;B��欈[�C���;R������VA��y��o]\Yީ��.)oC@3{�c��+��Et��ʞ_�h>���/�!_g��A5��_����,qSU�����R�xEF +,cfY���(W�G)�d�ޱt��aq�.�>)ڭ�G�\1V� �1�;F;�Ե��t� +9ה�tJ�q%&�dJL+�q�����w¡.6S*��"E_Я����R�_�W��]j�KV�'��v�R*�T�Ǜ�M���&s�/×��3�sCy�1��!�y��f��-���le��#�OJ�p�9'B��:�yQ���"T(P声��Ǣ�o����?^��dWf��ԝ��d�����fuh����t*����D�q�e��NID���y�LuTi�
U�le�����N�g�\5�T��g<��J7�H�+8YI0�B�!����iS'OJ���0��P0K$'����L���o��?osa����� +3?��,�=֛W������W��������6wfQ`W��gγ"�Y��K��zK����+=�u�J����1�(BVr`k�j�uh�#N��,V_ķP]�3Z�]�U���b�;��V��(*�L�OZb�J��sw�K�)E&����n�y�G���h���kHa�X�����z�rwyX�W�D���~v��bR�J����85�3q-� +L¾�` +T4e���$UZ4e��i����ii�C_�5��p[�^��k�?�%O����&y����.g�Ū����W�������բg+�s��ߣ���v�&S�%]9_� +� ������rXZ�Q"�ĺ
�Q� j��!M22��k���>E3KW���=��vc�P�r����Z�. +]1����T ����.����R�Bֵഊv+���T�%��y��f]�p��wc�*�R��TTi��!��Q��ɫ���K�AIȉz��+���$�C{Q � �ЅL$8C�r����R�� �\�~ֆh#���~�����/rU���.�Sή�9%~O���g����a��9��Л�h��$J>;`���E��B�z���:�>�G�i���*��m�����U�O� Y�t��!�(�o�����Okzk�
�3�o��!� �,��)��3vBn+%i�s!ucL���4�ߐ:�k.����6c-|��^<�����G��g��O��4����2�9�wi�K��*<n!�í��8b����ގy��',��n�PD{ +���C��^��-�����#p8?f����d�l�gr�#?S��?�����_|��?7��ud:�3 W����9�<���3o�m�)(��EO�,e=7�}ƹ"3�?���?���1>��o75Ҹ���u�4�k��l�G�H�F�5Ҹ���u�4�k�q]#��i\�H�F�O���X>g<��O1�7Ƨ)��1~�YƏ���e=?��?G�G�3~�y���)��S�K���_c�㳌s,c)��R�r)z.��]h�����S�{eh0���p Xŷq��Hw�C �C�b7�n����=�l��=�i%|j{���l��+(��se��b�-�!���{u��e����]�����~�z^^B+dU�y��/!~�j��[��&c��Hﵦm��x70�=�^8˹�LU��Zw�F���,���.���ʊ�w�q�B�L��#)ګ��h����u�o#U�}�1}
)�x����ܬ���2�a��bp�Jj�'���Źnﺽ,F�{(�)����\:J�m� ���(�s'��6���H�љk2�����㮐ܯ�iu�BՓ�E��7��~�0_�~$9�6�C2�t\�A�q5��U|#��4��q���+0qQ�dJKltd�j��z�«T{]1���*�2G�7S���bв�S�;x� a�U�d;bmꁶ)�;H��b��|��N{�eG[�X���G�85�}^�>����ڮr��*�y��� v����Vǧ�)����� +�苹��\�������sȫ�H�3N��x�_��yEݠ�WU��Gҥ�{�a���ıV�2L��A�d�I4?�l��� ܗ�f�/�y^5S��30Ńǩ~�O�IZ�S��K�
�QgKG�x��qR1{_�kO�m?˃�0�r9����:h��a�� +Rg�v�k�K/�.)�>�o��. ���v���ï��e���p�����A H;UK�g�xn(b��*`�W�Ó�U�_�)�y����9��E�>]�M_�7e=1��2��?�����:f�����Dl�%��&Al�HZa�kr���>��{���d$�oǬ��F��g�Z�]��ǚ\�g"lq4�^5�E^�I�I��1��^'�5��N%�E
���dݵ��G�7�3�����)� +b��Ė[o�Hl�H�YMT-��Е�ؔ�rG���TX��7\'���.l�z۳��S��J���(���E9���i��"�=�eʺ)ʪp}��P��ھBUQa�v��^Z])�no����������X�������Y�O�'�
7*�$�h�-T�%z�1CA=�[���}4��hGRT���I� :�Lۯb6H:H�-<ב>���Pʦ�UA��b
�#EP!�QR�q�ۡ�Ee����t���0h�� +�VP��#g_��� �J[�jt3�e:����)�U/=a�mѱ��]���(�*-];�'����(0&S�hԒ�[s���f�W�_gY�Zu���'Bn��D9�hO�w�s�.�F�/��H鮨a.���"��F
���t��vW��X�V����^C��R���w�;m�'��|Ah�f���*�fǕ1��`�ć��.."]1��ňn�e;�_c +�6^�V�.���(B;�Z&���1+�_[X� ���-�͍���B������//�ūW��,�'J����8�ͤ�N�|5@O��Tʓ�
�uj_�Z�x�K +�br�t}�H�D�lԜ��E¶\��.z��詓����v��p��zb����Jͽ�[�r���/ +����@,�&�P#Ϯ��� �]W�؉t�&N&j���A[�ڊ= %�jJeWh�q��^%����T�M%�&,< gņjzŦ���,6���_���R���*-BoE�$�
��;7y����g"+�;ʷ���%߷y_�=�Oq���2g~��Q�癟�tټ;%�f�r�-�G�˞��goeof���%��f��
��3��V��Ni��0���E�� +`����9$�X�@F��1<�N�$��;G`��8 +��Y8_��|N�)8
g�y<�� +߷�z�u����zYo�c}����6��`bCm�
�6�F�hccm��� 6�&�d�bSm�Ͱ�6l�͵y�hl�-�ŶĖ�2[n+l���ն���z�`m�m�-�ն�v�a;m���=�d{m���v��a;bG��v�N�i;cg휝�v�.��j��ݰ�v�n��k��7?�=�'�Ԟ�so*_�+{mo쭽����>�'�l_�}����~�/�m���!2� *�!:b &b!6� .�!> !!1� )�!9R %R!5� -�!=|��ȈLȌ,� +?dCv�@N�Bn�A^�C~@ABa��� E1G �$J�4BPe�rCyT@ETBeTAUTCu�@M�Bm�A]�C}4@C4Bc4AS4Cs�@K�Bk�A[�C{t@GtBgtAWtCw�@O�Bo�A_�C�@�`�P�p��H��h��X��xL�DL�dL�TL�t��L��l��\��|,�B,�b,�R,�r��J��j��Z��z�n�&l�l�6l���.�����؇�8��8��8��8��8��8��8��8���˸����븁���۸�����x��x��x��x��x��x��x��x������������������������G#H�����Q���1���q��� l>23 �2�3S2S3
�2��t�З�����Y��~����������ü���,��,���g0�A,�b,�fI�bi���2��������ʬª�������ڬú���l��l��l¦l��l��l��löl���������®����������þ�������¡������ñ�����d�9�S8��8�38��8�s8��8������K��˸�+�����k��븞�����[��۸�;�����{��r�� +����o�o������� ����_�_�
����?�?�����������C��AI�EQM�C1K�GqO�@ �H��DI�LɕB)�J��Fi�N��#_ePFeRfeQV�)��+�r*�r+��*�� +�� +�_E�@�����J(X%UJ��2*�P�S�ʫ�*��*��������j��j��ꪞ꫁����������Z��Z��ڪ�ګ�:��:��������z��z������k�j�k��j��k�Fj�Fk��j��k�&j�&k��j��k�fz�>[s4W�4_�P��XK�T˴\+�R��Zk�V�^��ߤ�ڢ�ڦ�������y`����:��:��:��:��:��:��:��:���˺����뺡���ۺ�����z��z��z��z��z��z��z��z�����������������������������9�Et�\d�Eu�\t��t�\l��u�\|��%t�\b��%u�\r�H*�ڥqi]:���8_��et�\f��eu~.���rxZ��r�<.������+� +;�/.�����+�J�`W�SMi��x� u�\�+�*�����쪸�����j������ˍ�_V�3�5\.L�A�%��Ǎ��������眃-MK3�i`)�̜�03s.�����\M%]��������z��
���{½���ac�A��@�a�+n�Has���P@ ;�{�p�_�� +W��qN�]O�nK�N���D��w�tqs����2�2�Db�1^`8._�1>�u3Ch��*(��u�'��8�di�d�Ԙ�zҖ���SKs��9�F<� +K�_˸/_��v����k�D^��R�`�,�A�p�4��p��f��;0N�<��H�#�Y�`E�����J��k��R����+ը������܌C�2����\ߌ�T+
Q�FL1���Hc'Թhx��<4�$���f���W�R��)W���s�lX9��:J/��5���AX9��͍%��fж�|�XR� C�U卧�NI���l��9�m+�#�zR����(�+Y�:��o��re�#d�LZs9_�����.g�\�xJW�O�vǢn�P��b�#�%�#�'4 4��w�q�,G�#{-��"+-��&+m��&O��_��ɿ6Yn��6Y��Y���C��G�8:��!�8<����#�8y��#�8�E�iF�f�hF�f�hF���/}�O���r�,��r�,���,(�q�c@�ǀ8�1 �!q�cHC�ǐ8��1\ı�b9j��{�C�#�%�#�'4 D-�X��]Ħg��~�t�m�v;����Or1M#
g� +����Yf�9����q�p�ș�����OE�X�w;���O ��3r1w� L�u+W���Ȗ�s�ShR�ZǦa,"�c�X De���&�y����_��x��� +�r�����Hʤ����b; +3���^�]��$^%1�U��X!*2��`G'��(+ȇRP%�I�Z�l,'���I��Kr�=�uO��͚����y����_���E@:��`�zX%8�orȽPs��~� �X���X� +�c��gJ!�� ���k zY>���\ �#�V��07�Za��^����ԙ�D�R:�0. + +L"hqC)�P�7���鞣�P�7��
�|C)�P�7��
�P'�NƨdžR���o(�J��R���o(�J��R`B'x��<����(��P�C
5<��P�C
5<��P�C
5j0�`��P������͵����sݍ���Zw*휴��v]s�P�H���R���������4�Us1��Eq��� �$L0���7�[ͥ�������r������Z9]km\_]_���4��cQ&�H�$<A��^"LS�Ea$1� *L�`LXYo~��`sisC�g9�Xl�H?YĪ���D5&�1A��VL�b�[Fpa�}k�y��f�z됮� x�������ѵ�_KbG��c�\�9B�H<�<$h撛c撁��9�ߎ���[B[b��4p��T\�,&̓�j���Iܟ�����=3@���h�u�#32ݑ,�љN�[���N�[����z�0�g:Uou�>s��o�z/赭�\� +�@
��zv��5:��v�Z��Z4�"=L�F�i��C�H�B�\�`o���JRYT�~����m6G��H��h^�Iͻ�9�M�� 75���65��,75˹�,7���,75˹,7��t,�脷��q%{;nI'�
�wnZ��g3?�*�)ϔ����ʇ�G���'�ו[�s�� S�+*)�T~Q�%�3�T�j~�����/��{ʫ�j�b�|��������,TK�o%���_<����xm����=�?�>�ϑ��ç���&�=jO�uYd�TĶ*d�����oc���j��&"�(�"�(�"S��U����l��P�^=Þ�O��Ԋ��mk�r�R������]��ط�oT�=t_���}A�Hk�m�o��%���䑝��_�w��.��%V���9�eݡ��w(�#�;VA�S��m�P�^��}�b���/ۗڬ�~՞��{��'�-킴
i�d�ĩĩ�SO),�a+�k����5F����Jў��O�A�¿g_����y�B���1�;N�]{V�_��i��н�����tŭߤ��+R=�&��i�D�mj��=���[ԞR��Ȃ=M�9��v�f�(G�zj�m�蚢�-�-�y�ƾI�fW��4�J���U�2Wi{��=U�dWɞ�˥V�v��Ujݔg��M� �0a���P����� ���W���S�Oo�OUj���C�"���nR�����}|�>H���Ij
jԶ�ݣ�G�lMe=���Tq�nv=�c�U&=3���2��I6P_��H�1�5�(��1Zj~W�V�Gg�zL�)�gԄ�#$��1B��#r�9�9��lz�F(��1�rv�ڤ�EDG)2Jw�4g�ƎR�ق�!�/Rۦ�X�
ˇyX>�Ôk��N���h�l�n{�I�����toP���R��vG<!E�ORϔ�Mm�Z��5]ct��5J�0]Ct���v�>E�w��m�~O��>��6��������B�[�vp/��o�M����z�',�:~�|�~��e�[N���Y�uikҾR;9��g��Ǽ��y�����{���39��k��;�w�;�Ɲp� �>;�c�+�˖c�]ڷ�e�K�Z�r۱z�Z��*�_y8������ +������~��}��7D�ˊ;�R��"?�ܙ��uQk��'�T�M��YZ(�JI�G�����H�{�Ji�|�|��_~��[.�����2�i���;'�4�6P�,E��,:�e�ФB��؍d/-a��P�*]eAjE��π*E:��f�`Χ��&��º{�������^.�dJIAj)��&�}X�ɠ�I�M�uFA+�����.�� O�j���C�4��f�$��#dX�/z��X*/�^8;��E�����!ߩ��ʗ�����β|��G@ȫ��l�)���A�\\PX>�T77���zl�ѥ��7�IV����+����`�z��մ=?R��ǎ�:�G�Rt�1���tā&�v::Ɂ�hw��R@nݐ�I.7�%ݱ]�eJ�)M2G�̑d�b&1d�1f��d���=&� +endobj +616 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [385.804 235.584 400.25 246.488] +/Subtype /Link +/A << /S /GoTo /D (figure.2.1) >> +>> endobj +615 0 obj << +/D [613 0 R /XYZ 269.126 275.535 null] +>> endobj +612 0 obj << +/Font << /F72 448 0 R /F71 445 0 R >> +/XObject << /Im1 611 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +671 0 obj << +/Length 1586 +/Filter /FlateDecode +>> +stream +xڭXms�8��_�i�9g��%��GwP�@h��{`7V�cہ�����ʎ'�~��ڕiW��u��
?N?���o{̖n����[X�����@�-̯�����Y���d��υcB��?�?X�`(m�鿼�=Ƕ^>M^��>}��m��H�}W��X�ܗ�3����X���a�43!��P��N�}��hT���y�뽋Is���yR���>|��1��e�f<�?�����EO�(��i���9���>z�>�JW0a��iST��m2�(�����"b���g8r+2��2�*u������F��U�WZ?J�r35�TL'&f�Pժ�T^���Յ�.�2L}xD÷�*���(d��$�M�7������t�k� +�
��BϚ�i +�$ψ��p��Jb3��"������E��eTDU�q��Zr;�,�\�U[�j@yq/�z��st���4J�a�� m�D�#�E�H@�*A�}8R_V��R��l���q����o��GY>�Ui�'M�p��L�y���ҍ�0*2������iy�ÍA��P?
��J��)ܚ�4�Hn��8�N +ғx� \\��tk��М���6�&L"p���B��"_�.!?��<���7O!�Oȣ�h�l�x>=�[ޭ{���=����<X�_�59ꌆw�w<�����h���sq���q�Br&|�.��ŭ�k]݀�-t��9P���3�#X��r[�k��e�$��$���C�2����c�㪜ɲ�K�L"��c��XE�������R&��t��@�n�j0���;�ט�t�R6��@El��̍���h[�Up�ix +endobj +670 0 obj << +/Type /Page +/Contents 671 0 R +/Resources 669 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +/Annots [ 672 0 R ] +>> endobj +672 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.124 450.324 158.042 461.228] +/Subtype /Link +/A << /S /GoTo /D (example.2.3.1) >> +>> endobj +673 0 obj << +/D [670 0 R /XYZ 353.277 468.421 null] +>> endobj +669 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +679 0 obj << +/Length 2322 +/Filter /FlateDecode +>> +stream +xڅYm��8�>�"(8���,��pW�۷��^g��O�~��J�;���N���)�N�,���(R$��.�.��a�H��b�(ۛ`����7!S��d5�y�p��]*��'��a������~勇������/�,���R?�0���U"�W��~C�����3�ǽG�/#�[,Wq���#����D +�.�#� +y^6���=j=�)v�h���ٛ���ln2��p!N@]�m� +���N�V���>��ڃ�wC�1M
������;E)<ġM^6��r� +��zw��[Š��yʭ�K�]�;4�m���2�<�1�����9̬t'+ +S]�0��CB-�0h�݆V��E��n�F�)'<Rkl[���ꂝR7��cJ��I�@�c�3��ȴ�(����W|��m�!��B`�P�jo�&�_Y�v�� +Ю��4��buK��*�ɝ�����1����`z�˩u�e������Aw�%�\�i#"?�2�w�'2d�"��ڠ��-�#P���R���X"9��R��Р4��o�{�i�]S���j� �����l�יv!������ \"�{������ڑ����o�+ �|�s�4`=�j�C��<��B*�)̔#1,��l��ʽW��9�sP�(���e
�S�PpQ@��-;9B�_P�[�"X-�rO�N��j˧M=GM@L=��;E!fT� +qb��Ԓ�С����]ahp�CD�Ͷ�#Ԓ|���\�3b�aH�������l�j2
�x4l9�N��xd�ay�����#��^[�=��,]����d#A,X=�IRzw�CQ�t��L=(��� +yK�����,͚ڭfc ���p�0,��k����Gv���O�\�a~i��j, ���� C���:�*m��}H���&j���n XV_6e��i� +�1��4�*��ʽL.�"��4�� nBs��CQ8�/4!�7w��a�]��h�.�L��˱��}��8����4���c�x<><lA�t|�]�`�Y�_�����d����yG^�,8���E~�l�L�����^Um����=�G�km�����y�;�C�*��6L!.]��䇆e����a�Y�Ic�N��[Q�v��Z]��� +endobj +678 0 obj << +/Type /Page +/Contents 679 0 R +/Resources 677 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +/Annots [ 680 0 R ] +>> endobj +680 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [186.474 626.12 193.448 637.024] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +54 0 obj << +/D [678 0 R /XYZ 99.213 577.054 null] +>> endobj +677 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +683 0 obj << +/Length 961 +/Filter /FlateDecode +>> +stream +xڅVKo�8��WhOKkV�m��&h�M�K���H���$z%�n�}gHJVm�A +Y}!<X$!���r�Br|[ޚ�-2<�SE�=Lۓ��ƌO����|?��ݩ?�"-܁����E��d�)���ښލ +l<yi7�f؏�{c�W���
�n��;�|F%���;|tr;�w��T�Ҙf|,�
���t'ӭ%4Mb����/�B��ۻ�B��9��(�yR���{��'_v/���s
N/�$�rg9�f�|�¾r���XAY��O'�F��h<���G�0����e�1�� �T����F<$?�iQ�j��ԓ��^5VQ��������bpZ�.Z�i�k���ƌ(wf@N����!P���ܚQ�r�M`ߠ�"�M���l�"Qz(<�Y6�����v��eݭ��CG��$Vj�ˊ>C�4)�^`��<%�EN\�w ť�#+fg��ڏ(pھ���zн��%ջ������ֻ~7�uv��@A��ٖ��F,������:̋-����Kǖ�.M�,��4C5XG����YY�!9���d�L��m�� 9���yF�AWa�v�ԥyjpAIB��K݊��*������f{�qM�W6����ٍ��vgK��z�m� +endobj +682 0 obj << +/Type /Page +/Contents 683 0 R +/Resources 681 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +>> endobj +681 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +686 0 obj << +/Length 278 +/Filter /FlateDecode +>> +stream +x�}R�n�0����,u�c�i3��2��K3t�e�9 $��S����F[������"��J��*���Yd��
0r��?�&F��0ː�f����"rP��":x��.��؍X��b���6sO!:;�M�yjp`�/�,�Y��ZQ;$�����l_��ꆆƔBEm�4�c6�i,�k��Z��T��ϓ�����v{��Lh�-'��;�f��r��-���zW����4�'��b�w��&$�N�ۋ �����tY�71�T�@���^endstream +endobj +685 0 obj << +/Type /Page +/Contents 686 0 R +/Resources 684 0 R +/MediaBox [0 0 612 792] +/Parent 610 0 R +>> endobj +684 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +689 0 obj << +/Length 1145 +/Filter /FlateDecode +>> +stream +x�uV�o�6�_��Q@̑"��T4k�uHP3��h���ؒ!R����G�J��:��~w�L�dR�<�*)E�E�%��F$�p��FF ��\��W.Wy��u�ZX�[���k)�L�P�z;{ɫ�˲L���엝9z;��,L���'�˪D����g`��L˜
�S�?�ʏ���`�!���ْ�\�"Z*%ϔ +���J +!��ޏ����N��>�fI�k�4eV��-�Q;
�d�?R)��=���ߜ=�C��p���!�"k�����4Z�0}K7]������{H�s�F?�H|�H,ZNe��~8���ͧ�k�eg���K~�(�.���{[�q%�=OWJ��n��v[2&TLV��y�5M�����t($�E}�[(a�G�Jq�=G[ +5#��yVk�}��� +��/�������l�'p����S��=@�h{����
d1��*�t�]��@f$6X�w��[�y)t�4C���T4 +8]�i�����Y�5cw�C�j�Kvw"��noB�����]c�0S����8 ��-q6'�^��-"k�ό�۷Фh +;D�T��w6 +endobj +688 0 obj << +/Type /Page +/Contents 689 0 R +/Resources 687 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +>> endobj +58 0 obj << +/D [688 0 R /XYZ 99.213 688.052 null] +>> endobj +62 0 obj << +/D [688 0 R /XYZ 99.213 477.043 null] +>> endobj +687 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +693 0 obj << +/Length 1313 +/Filter /FlateDecode +>> +stream +xڍW[O�H~ϯ��J�%<������Ғ.�jv(��x +�(�� +�g�1"Qd�F��@�w>�]v���oi�Mu�=��6�C���y���:��s\�1$�1i�84�k�� >Y����!i�%�k"_1����J���s�k�����pal��� +͊��ESVY��v�1 #���n�Or)��ej! +C�3���f�܀��$W]HB���HL��P;�~8P�F�s�,Z����q�٘���u�
!�c��Z�z� +-�A��A穬J~�` +�ֈ��{6�L�v�4=:
�!��������E_>�JL��E�Rq]>7��r�2�0�to�%�g��Fh�m���1�q�ɽ��yْ�u����U�d�
����!%�ύ]�Fzm����/�ڼ� +ÚӔ��b^#�ɑ�B�&�����dž�s��V �R���k�E�=�`���4�IxP����J٪��촘�-�X�=�b�V +���k�C��t'��A[��!E��W��ZB��fA�������g���SW�endstream +endobj +692 0 obj << +/Type /Page +/Contents 693 0 R +/Resources 691 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +/Annots [ 695 0 R 697 0 R ] +>> endobj +695 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.124 614.29 158.042 625.194] +/Subtype /Link +/A << /S /GoTo /D (example.2.3.1) >> +>> endobj +697 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [264.212 133.442 286.13 144.345] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.2) >> +>> endobj +694 0 obj << +/D [692 0 R /XYZ 99.213 706.052 null] +>> endobj +66 0 obj << +/D [692 0 R /XYZ 99.213 688.052 null] +>> endobj +696 0 obj << +/D [692 0 R /XYZ 99.213 615.287 null] +>> endobj +691 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +701 0 obj << +/Length 2120 +/Filter /FlateDecode +>> +stream +xڥX�s�6���B�|0ձ`�A���Τy�:I���d:M�CKpĆ"�����o�HJ���u<c�o,~���G�JF�X�1 #6^�G���QG1s$��7��W��Q1��1"f F������OgQ���qL������-�$JnΈ� h3|�*<��MC�(�1�bGzҗD�w��3.E0��~�ɳ�D�����'Qι�uFq:$�&DR�(���(£��cL�B�^��K����~~�Kh��]���]W��'$�ޯӞ=RZ�R?L#˂ü'�K"��}j�G/o�|i2*"q$L�|��{8^Bf�8 + W�x�P���`�����ѻF���Z���!#!����<��˄$"T����X����QJ�'�Xq�M���WR��Y�(B!��EljMo�N���q,�tbc=/�, +��!�"��1H�w�l����Xh�5~�E�n�j +l�6]�Zo��d�& +o�uz�l{ǾJ�,���(�J�N7��qU��^�©�ygR��Uy9�Ѡ�\�i�٘�=YV}�W.�����.�x'�};G�Y��F<���; +��iL�;��adˋɼ�����Z��E=�4��p���,��,�G�i�*3���0 +������/t��f�:+��V�����;]!��d�|�<���H��Ĉ���1�!��7�������[�q�2'�D��K.o�IJ���g��(� ����c{_3���b9 %"QH��N��ŀbܗ(H�����O�Q8�Ӽ*qT� +��%�T���5.�w�V{� +ڼE
�E�?o�"�8���W�,���Yf��dJ��v�.|No���ʑ_�{�+i��UV|r�lq���ĥ��4�`�if-����Ջ�HW椄�֭�2i +��i%_��v��Y������G#���З��[��W<x�5]orݻ +�L���R�D(2���3��:�59�� +�GDF�(Hh��?�&����_�[�^�4My�1�(=V1AD�4�/��endstream +endobj +700 0 obj << +/Type /Page +/Contents 701 0 R +/Resources 699 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +/Annots [ 706 0 R 707 0 R ] +>> endobj +706 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [301.138 503.255 307.614 513.268] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +707 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [426.266 437.737 448.183 448.641] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.2) >> +>> endobj +702 0 obj << +/D [700 0 R /XYZ 99.213 706.052 null] +>> endobj +698 0 obj << +/D [700 0 R /XYZ 99.213 423.79 null] +>> endobj +699 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R /F61 705 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +710 0 obj << +/Length 2274 +/Filter /FlateDecode +>> +stream +xڍYm�۸
���³��3CJ��L�Nz����is��t:���H\[�,9����� @Y/���Y$� �V��*M���U,#!C��o�j=?�(Fl�a��x��ϱ�JE�ǧU���~rR�����q���/�4FT,�@(����D���~~�O�=Z�����'�Ё�7��b��υ"?I��w+����K��Ͽ�ϟ֛ � ��A�y9�H���wg�|���=��B�JD�RF�_�IE�����ys�8lͰy��B�����媀M��F� MV�@K��t���~T�������A�E+u�B_-ӥ#$�hi`z�_E|�Ȯ��!k���M�>;�J�������m�cޯ���o�'���{s��:o��k^)%R0�Fi�j=J�@����˛����
ۜ�j<���SX���$I�}�`�{r� l�o���z��Ի���J����wI�XH�Q�Bl[�h���8��CoF�E��Eڐ���# +!Q�p�}#b����3y9bC +K�myUSo1o"��D�=
�������.���`08����w̡�N.�L-t�pS]3��\�8D)�@�}^��]=*o�,�>^[�[�=ﲞ,�����XON0��c[�IJ��!ej�1{������X`GVV���mVL��$C ��S�s֮U�m�!@9��)�jX5 �F`�����c[V�f_�W��ؗ�q2ͱb/����u?����
;6V4^t�}K��*��BH�:����7��ћ|��3���*����^Ř�
�\2��1�-�lO&�0�9a�>�.Ê'���NQ��%�=��@�H��[S`CS�Fψ�eOm�'�B��� �V:�ZP�ol�CoF����"/o ���TS��-a�U�����W�xd\Y7� I�s�}}3�O� Nlyu��q&�\�'W�36�'b�a +t�0r�b�O�1�
ײ[ƩU1v��p��<�ˆ�Q�S[� '��XVU����VvR���pN5H�v�h�
.$���γ�皡�+��w����X`���6�0�X�I̲���-eHOȵ��|�ү�E�eY4��� +�tx�8�<����`�C��;r������<�j��c�e
>�\%<8�:�� ��ڸ�ck���䮡^�����#�6�]tG}%c��ռË�M�Р��;�[C9����X�tLN����ΜY[Qv9�R�� ќN����!&U�@t�q0O���H�� 뀷���
`Q�
��N5 +k`|f�5�����Y{�la@uf96�d/�*~�6Ca�|�������^�u$"q
�%����ڝ���5���b�j< +��H�0�m����ذ�V�
�� �9� ��x�ؓ�����!���vK�Uևcƨ��q +%��l.��]<�;�0ľ�6�=�w��M����~`H������ r��d��Q���~[Xj�?��y�endstream +endobj +709 0 obj << +/Type /Page +/Contents 710 0 R +/Resources 708 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +/Annots [ 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R ] +>> endobj +712 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [146.089 568.885 168.007 579.789] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.2) >> +>> endobj +713 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.486 515.086 158.403 525.99] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.2) >> +>> endobj +714 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [332.922 515.086 354.84 525.99] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.1) >> +>> endobj +715 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [360.581 476.232 382.499 487.136] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.1) >> +>> endobj +716 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [284.379 461.288 306.297 472.192] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.1) >> +>> endobj +717 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [357.732 461.288 379.65 472.192] +/Subtype /Link +/A << /S /GoTo /D (example.3.2.2) >> +>> endobj +718 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [426.196 266.876 448.114 277.78] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.1) >> +>> endobj +719 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [465.953 266.876 487.871 277.78] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.2) >> +>> endobj +711 0 obj << +/D [709 0 R /XYZ 99.213 706.052 null] +>> endobj +70 0 obj << +/D [709 0 R /XYZ 99.213 348.42 null] +>> endobj +720 0 obj << +/D [709 0 R /XYZ 99.213 199.13 null] +>> endobj +708 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +723 0 obj << +/Length 1942 +/Filter /FlateDecode +>> +stream +xڕXmo�8��_t�9̚eY~�;��ö�[W��6�9vΖ�u��(�~I���E�E>������$a>���'�y��y�kXy;�õ,n���r��M����b��B1A胘��"�/��X��s�����s����f{Ēw�������;������f�j�k�Tx�ǡ�w>� +֊خ.��h0bٓy�0��Y��˽�^�,�z���ť7_����<&�x��`P�̷���0�켘��>�e��mvr��x��㱼;<��0��Q�<���.�ӭҪ>Kw�'w�w�+avr�G5.X�}/��iNO2� +�l �B}m9>�B��v{��4(���a1χ�GI���8����}��E.�X�i�m���D��@��5�zZ+�U;�WeZXi�&���ZQ�C +�
�\�����t�6ʥ��渢+-?h#%��H� o5�M| I�/?ȇ[������;HI>yi����1�[���"�?K��5�v���OS�+t�I�b/�п&6*��ִ�]U[h�q<����t��0ĠI�N�H����4�p' +vd���s�w"�TO�N�*���Kg�4��w�1�kK�(1Llם��$�seB{|E���%t��A=��c�\�X$Ǥ�I��� 4O~�#���F�?!�m����w,Ӓ�,�A=\L�E??N5�I�d�endstream +endobj +722 0 obj << +/Type /Page +/Contents 723 0 R +/Resources 721 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +/Annots [ 725 0 R 726 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R ] +>> endobj +725 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [146.17 473.195 168.087 484.099] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.1) >> +>> endobj +726 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [364.714 458.251 386.632 469.155] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.2) >> +>> endobj +728 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [137.142 319.442 159.06 330.346] +/Subtype /Link +/A << /S /GoTo /D (example.3.3.2) >> +>> endobj +729 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [202.923 289.554 209.896 300.458] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +730 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [320.52 289.554 327.494 300.458] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +731 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [256.214 166.842 270.659 177.746] +/Subtype /Link +/A << /S /GoTo /D (table.3.1) >> +>> endobj +732 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [508.469 151.898 522.915 162.802] +/Subtype /Link +/A << /S /GoTo /D (section.3.5) >> +>> endobj +724 0 obj << +/D [722 0 R /XYZ 99.213 706.052 null] +>> endobj +727 0 obj << +/D [722 0 R /XYZ 99.213 459.247 null] +>> endobj +74 0 obj << +/D [722 0 R /XYZ 99.213 270.752 null] +>> endobj +721 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +736 0 obj << +/Length 1265 +/Filter /FlateDecode +>> +stream +x�ՙKo7���{�������:n^p��*zrP�m,@~DZ���pwI��`U�B[�����3�%%�(���Zg�*B%ˮn&4��3�&�Z�I�c��l��Ϛe�Xųٟ�PfЏ%��l��8=�?���f�X��4�ѩ�}��MO��x�������G("��4�I������1N���������z��������k�>����} +��4n_,���9��p���h���EϏ%\��g�Kg99��Ԅ�I��p��:���fL�� %ܚ�/S�f7�$�t��jr9�-�j�T�|j��E���JK�V�:=�1A�1Y�4`��`-y#o��0�
��?�ʼ`XN�G��~v���,���j^�7�m�ô����rU��tc��%��lGQ_��%aT +Nd@<�\[�� +s��,@+�SVQtՌZ�+`��5FS2b��Mة5�e�E�$�'�u4/C��М7��F��S��َ�õzgQ��Qb].v��V�z�9gt�P�=��<ke"����D��V�ij��j�$��*TaE��YT� +��HF<��1x6�CH�X� m ��S��[��zH�#�9M�)�$B��P�r�ȭ���m��bR(��f����t���~���~��&Yu@6�Ϭˉ�{S�B��HV<�Bb�<�)Vs�7eR0�7>��w����@S�:f�`��K +endobj +735 0 obj << +/Type /Page +/Contents 736 0 R +/Resources 734 0 R +/MediaBox [0 0 612 792] +/Parent 690 0 R +>> endobj +737 0 obj << +/D [735 0 R /XYZ 99.213 706.052 null] +>> endobj +733 0 obj << +/D [735 0 R /XYZ 267.578 686.279 null] +>> endobj +734 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +740 0 obj << +/Length 1824 +/Filter /FlateDecode +>> +stream +xڍXY��6~��p��1��sf��M✻�aw�N�����Ԗ\IN���~ (Y>r$3K +S'�UZ��;͚f�.O�E�������VTM��tʪeʦ)�[�b� +�5[ā�ˢ�5e�I�ă�9���Fw{�Ͳ-��SN��2�2���ee� ��J����9y]�;ZeW�?".�n�3�1�r��}����( ��!|[7��B��Π��.����Z��H=��wѥ\N2���cE� +@�Ϻ�f�J +��v�S�5���ȢCI�����3���83��T4���4PȽŝ�Ư')���=h�r<<x1�f'���CE�'ǚ����endstream +endobj +739 0 obj << +/Type /Page +/Contents 740 0 R +/Resources 738 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +/Annots [ 742 0 R 744 0 R ] +>> endobj +742 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [314.274 382.625 336.192 393.529] +/Subtype /Link +/A << /S /GoTo /D (example.3.4.1) >> +>> endobj +744 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [173.244 136.954 195.162 147.858] +/Subtype /Link +/A << /S /GoTo /D (example.3.4.2) >> +>> endobj +741 0 obj << +/D [739 0 R /XYZ 99.213 706.052 null] +>> endobj +78 0 obj << +/D [739 0 R /XYZ 99.213 688.052 null] +>> endobj +82 0 obj << +/D [739 0 R /XYZ 99.213 629.741 null] +>> endobj +86 0 obj << +/D [739 0 R /XYZ 99.213 485.81 null] +>> endobj +743 0 obj << +/D [739 0 R /XYZ 99.213 383.622 null] +>> endobj +90 0 obj << +/D [739 0 R /XYZ 99.213 241.509 null] +>> endobj +745 0 obj << +/D [739 0 R /XYZ 99.213 137.95 null] +>> endobj +738 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +749 0 obj << +/Length 1530 +/Filter /FlateDecode +>> +stream +x��X[o�H~ϯ�/�T��]*+���@���]Bn2m�M�����{f��q�P���U����7��ͭT���jaH�5���2m�X�=��P�0��`��O��LI��Z|�َC,���xv���������0���@��:6(�/
�c�����_��R��<k��Lxı�ٶa��N����1�Uة�;�z_Ky,'���aھ:v��˾%@��#�٭��6���ħ�B^���v�V�.As�Dq[��x.�\G����GK[B_
,b���d��0���� ����oZ]8�i8����f2p��W�l�z~@�pG�^9�"��[�ެ�a2șM@�a�ԅI�����,7�CӁ�ɻ���k�<�J^T����B&(Se(���k�U%zY�iv�s�� + +^֫J�N�@V)��vÅBޘ*�
x�}z2^�.e�����yt
U:��t�z<jI��$�+����/��������J�� #�+�O�v�ʽLfU���l:�i|�`���l� |�΄4�����:O'0� +�%Yռ�M9M��g�K^.�tS�yv*��瑜?�,2�$I��0M]��"/�;����_8�\`s<�&�8~��a���َ�-W�oWs,�,��[����W��U�%.v�&>,J��?/������E+z�l�4I١�#l9`���F�Q����m)�k���"�./���d��3�����`���B^;�"8� }��\/�pͰE-��]�:6���{����c +}�����J��g<Da�`nN>��w��y
�N��I&NR�=@��d��`����տ���+��бmg!���`�6��lV�"�@d�?�).�n��ox��>( +�מ>�r�:�?]Ӂ�'W�).= ͖(���/i^�g��0&\šu�E!�+��\A�?C��J��|�i�����������ZA�>s�����s�!^^�!�IC�+�[�_��%ᶄ<��h�(�����<E;��|
e\��[�suH��~���se5�G�B`$k�0��.�;�i����p���P�
�� �&���p,�f�-�?�_%_�m�DQl�bEPd\�Qo��jH�0�K�T7�C�LZ�7����R��\&WN% +��/ק�,���١ +vJ}�A�o� +�Ϳ
X�\-N�!�l�uK�j[^{>� +endstream +endobj +748 0 obj << +/Type /Page +/Contents 749 0 R +/Resources 747 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +/Annots [ 754 0 R ] +>> endobj +754 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [302 151.898 323.918 162.802] +/Subtype /Link +/A << /S /GoTo /D (example.3.4.3) >> +>> endobj +750 0 obj << +/D [748 0 R /XYZ 99.213 706.052 null] +>> endobj +94 0 obj << +/D [748 0 R /XYZ 99.213 271.212 null] +>> endobj +747 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +758 0 obj << +/Length 1240 +/Filter /FlateDecode +>> +stream +xڽWYo�6~�_!��hR<$��������
������j���#���I{�k#X#r���7����G<)QH�a�0��j��{ع��8�`C����(�$��z�a"���<���Y�����˂`>�<g�GHF�t(���O�:�9�C��֭��1��k���|px�#��v����g�ڻ FT��#�)�Մ��Ƚ���̀e��gOb��az<٦ή.C2H`��n�(F1���^cң(�+Y�m�h{4B"d##{ ��q�Y<&�x1�E��P�$��B��d�zU�u��OC}&PĥK��A�J���*R�ڷ�q���>[�3H1�bH3xg�~�W���V]�� b��;���.��If!������T�B�V�Ru3zc�����_e���`PB���"!m[��"M +}�2����ߴ��Jmc7>a��"�/e�������h�h���4����t+ �k�3�8��Ԣ
�2�U��YY$��;�mVWIU���9�V�`�EL'�Vv5�K +M��./�de�|�A�����yHZ+Uu���f�P��E��$0�mtנly�TI�����j�h�xl�o��A'U���f-�a�:�S�VU�,L��²���H���g�P6�9�׃*������%����[���8B��&-4]�u��nS��yceӲZH�cQ3ַS��4��e��ʵ�YѴ*I�� g2� �e�?�Fk��l�f/�����E^0����� ��� +endobj +757 0 obj << +/Type /Page +/Contents 758 0 R +/Resources 756 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +>> endobj +759 0 obj << +/D [757 0 R /XYZ 99.213 706.052 null] +>> endobj +755 0 obj << +/D [757 0 R /XYZ 99.213 594.206 null] +>> endobj +756 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +762 0 obj << +/Length 1836 +/Filter /FlateDecode +>> +stream +x��X[��F~��@���2a.�%Q6�6٤�&kKQ�FƳkT�n�_�3.��٦�Z���3���ˀ-����`j��\�X�z�Z���z�
�cH�͋�����B�Ԛ�X�1�|B��К/?�/�_�oY��@R3 +L���\�� +�rH�8���v���9|���{�����e����H + +�1yԟ(�4j;�Hw� 8���̦���Z=u�m�D��p9�*�@�`�?� +U�5 +=v*�yP4M�z>��
R
�� ��:�(�B��XU��)��`TwU)�EWbMu�TM��'u��幆:�Y����wp>b|�����ؠ�z����Qݘ��q1��3�b{��@��V-�{Z�p���uּmq;�3e���������M# �C�=��l��¶gp�B�)�:i�e!�u����ZާzM4���
���o�G&�<��]��Ϛ��ȫ��E����h�Z�!�w���~�̢/@�F�ZF���H�3��ݔ���L��ޝ��61�g��3���(�Y��ʅr��5�=g6�N�|�����&ExOn '�у�������yp=2~i��ڌ\&���/�����|��0��l����t/"�eC�R7����FǢ�e(��\$�2�Q�K��(=|w��[�R�iu}�7@��~V*�mEj�~7y��R��.���m�CF`v4k:��0C��-�+̇��/�����?�?endstream +endobj +761 0 obj << +/Type /Page +/Contents 762 0 R +/Resources 760 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +/Annots [ 765 0 R ] +>> endobj +765 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [386.768 151.898 408.686 162.802] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.3.1) >> +>> endobj +763 0 obj << +/D [761 0 R /XYZ 99.213 706.052 null] +>> endobj +764 0 obj << +/D [761 0 R /XYZ 283.582 307.307 null] +>> endobj +98 0 obj << +/D [761 0 R /XYZ 99.213 218.498 null] +>> endobj +760 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +768 0 obj << +/Length 2024 +/Filter /FlateDecode +>> +stream +xڍ�n��=_a�IV\^D��i��nҳ)zI��[����cK^I�4����"�f'����p�#����IB8��*B%_�wt�N�{�F�P������?�|��D����D���(�,V��X����J+F��埫���$1��H Lͽ�R���2J +��^u&�,������E���������$Y�.".��z{q�[G˞�ͭ9����&3���DJ�1(��5��aP��`T�P�$Zye��U���#mۺxXr�|��P +�������w�/C�ο�:w���%��czTY�����Z2|-������Lw��x�j��n +�Ӵi���}k�M��أݡi-���(�/�� +��PC�ͦB�=5V�L8@��}4�s&&tL��1���'j����:o�U���)�PD�#���>3ܔ�B!�8H�����F��ۢ�=������G1���H��U�&cn��,s�3���<����>}��mBW��ɣO1���Mĝm�"��1�O(7�ե���:>��G�-�T�0&~�I)��o/����vɂ�FvX������m�4�^�ڣK�0>i|jLyxh��3��.���f��KP��p�.�mQ��o��p���I� �����Ǐ��*��9z�<�H-'5��hY�me�ۻ_�~����OT�ۻ�������p����������ͯ� +�_]��߽y���9��sqM1F����b�ĩ��"M�%*b/df���'yrL�dff +[�x�{��<�!䈍��twӅ��W�aӸ"�A
�'B+`�(X�OK�)*������S��ZȔh�V�Ӻ��ˈv���˳�5�C�h�l�,���������c�� +��ΰ��M��cW�H���:7dv��<���"v���?����6�w=������X�&_W���()��/�i}��x�U��fE�s�� +`Mm2�L]�P3䬨�����.Hb}
Lb�Hr�XSY�9��U���0�8�T�T��]�˝C7�!�ծ2��Y�6��n�oQ��q���m�}�?��I�_m��#й%\�"c��Y�K���X(Ŕ�[��䏇���6yi!�G +endobj +767 0 obj << +/Type /Page +/Contents 768 0 R +/Resources 766 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +/Annots [ 770 0 R 775 0 R 776 0 R 777 0 R 778 0 R ] +>> endobj +770 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [293.947 557.273 315.865 568.177] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.1) >> +>> endobj +775 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [147.176 337.488 169.094 348.392] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.1) >> +>> endobj +776 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [319.435 253.802 326.409 264.706] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +777 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [219.256 166.842 233.702 177.746] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +778 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [185.2 151.898 207.118 162.802] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.2) >> +>> endobj +769 0 obj << +/D [767 0 R /XYZ 99.213 706.052 null] +>> endobj +102 0 obj << +/D [767 0 R /XYZ 99.213 688.052 null] +>> endobj +106 0 obj << +/D [767 0 R /XYZ 99.213 630.318 null] +>> endobj +771 0 obj << +/D [767 0 R /XYZ 99.213 545.328 null] +>> endobj +110 0 obj << +/D [767 0 R /XYZ 99.213 239.887 null] +>> endobj +779 0 obj << +/D [767 0 R /XYZ 99.213 140.008 null] +>> endobj +766 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +782 0 obj << +/Length 1968 +/Filter /FlateDecode +>> +stream +xڥX�n�F}�� ��a�}#��m�+ٱ���H�C,�J�b�dHNd�}����H�.h��ꪮ��s�H����$�Q��aDBɼ�azw����� 2�ܬ^�����$�����B��)Г��'�f����c�Q��$�Q*&TpP�o?����o��+�O������nmo""���|��'(���b���Z��Z����_���������_��|�o!�$F�ł{����5�o��F3=T��&V�癞�p);=}�nPr�n�Mwx�DR���������!~\��'�{�qHh�x��`F�}ޯnV�t�̻�3���@pX+/`���D��8�F�"aҧ +흷���㻯��g�A�8��M�E��Yv"S��n��'���M�m��Gc����a�P���$ ��9�*��C�f��>m#=4�"�Qd����hN��Շ+3���zX��5�����5��%,�C�O�����+9�����jڴ�Y�B~����^��S��[;3��~�>����q۞��]{��R6��$Bh�y�d��[��]]���|c�J�Gp�o���_�ߛ�����y��e��Uu��^�$�v�ï^v.��W��
BB/���178�&ܙ��� ��Ysܷ?�Ղ�(&R8LH۶ο�Y��l~��Ae^�QR������c�%=���ƌˣl!`e����<ߗk&��K�Ԍ�ƨҩ����m��̫ۺ<��hAqk�[�ku�y���u$}8��Dw�;}�r<�z`����(`vH�J�(�{W�����mk�U]V�@y� �֡�䖰Yœp"��[������+�gT6Q貄�'1 !EF�'���<i��!����Ɔ�1�HM*
o3�!sY����7�l"�d{{۵�?5�۲EUY���nn1�!:�/��
M+@[16} +��w,�'Ie s�U��"��S���W�֗�eh���("cu�Ԇ +G���YNh�crJ#��Q���R���d��.�S��D���`�U�(�!�2[C.�s�bU[j2H���,�9=%�@���./�^�Y +n������� +S��"$��q)o&ê8I�C�|���Iv.:�1�lm�6�T\r�_�kn�aV�G:�
|}o�G(:y���ACӔB�څ{P�?������w�H�H��L�vn'a�J1rpV^P�M�{�<UP�)�����4�R ��K�CqvR�^�3��c-�p` +�Ė�K +-{cA�;� +#�J5<7 +x�1ʈT�7k�����i/���Fl�D�cص��b[�` ��7?Qy���\�g#�����<iq��Cl���s5E����<�DX3#˱z�]�R�؈i�cU�54a�T����f^7v8xXS��VO�1_�^����W�
vKwe�<R��A7�!F +endobj +781 0 obj << +/Type /Page +/Contents 782 0 R +/Resources 780 0 R +/MediaBox [0 0 612 792] +/Parent 746 0 R +/Annots [ 784 0 R 786 0 R 787 0 R 788 0 R ] +>> endobj +784 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [276.144 508.362 298.062 519.266] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.3) >> +>> endobj +786 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [146.031 278.366 167.949 289.27] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.3) >> +>> endobj +787 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [194.936 209.646 214.861 219.757] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.3) >> +>> endobj +788 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [266.304 136.954 273.278 147.858] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +783 0 obj << +/D [781 0 R /XYZ 99.213 706.052 null] +>> endobj +114 0 obj << +/D [781 0 R /XYZ 99.213 584.928 null] +>> endobj +785 0 obj << +/D [781 0 R /XYZ 204.577 511.515 null] +>> endobj +780 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F105 774 0 R /F85 483 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +791 0 obj << +/Length 2221 +/Filter /FlateDecode +>> +stream +xڝYmo�F��_!�_( �r��R48���S�VM����E��*>����]R�H�����\�����<��3��,� �|��%�mvg���|<��b�H=���?�l�8��=�11 x<[�y|���G̯l�������_{H��YD$�
�zΩw>1���[�/�����|2�u'��B"8wr#5�D4贠�?��k'{$� ���q,G�"#�^��;��N��C�V����З[�Fҍ�]�߷�U���4��-�]� KH���쯿�Y +����'<�f�0� ����L0 �н�g�g�w��7p��� n~<�0tF)��t�6aD|�0DiA}�#�DA�Z5�\�˓�qN�K�(��6���n�|o��8Jm܇���gu?_���K��� �3��j,W��c����+JmM�6��g*}=_0�yO��~�%O=�9��NN�E|�)={������h�JR؊���j�6g�K�{-��V�U���(^� +��qp%���5�Ÿ6�$����侰�<��)�D���TZx�Y��(����d��]��M��Ovj�T�e=]�92�ؔ�~�[4�=+�l�S�.iZ�e�$n�fK�T*���N�2�[&ߗy^b������)L��&�*G�@�֒7�ub_�P�d���h�S���Ķ��ʁ�
�����Iߵm������ �Ι��B��l�dѣikr��cInIL��{�8�M!�X>���i�sH� +ؐ�8����Mu��\�[O������{+1i�s��>A�aus�����j9���Ս����;u���|��2AN��;��vu�����|}��6���=j�'�~^�>^����q��Ye[�*���,/���)V��P
�p"0>�����ȹ������Ͳ��B��>~����� &����;��9��"5X��mu8. �+��$�C�C��(n���Q/z��ű�/��Q��@�q9r4�k<Զl�?���b]jQ��C/�~פё��
���T�3�b������ ���5k��5�Hϡ��n��&�2��0��OL�
� +���'��H��l�:�-��� ?��4�a3ƽ�H'�"�Š=�v[�۷C�'AP�co�l���Zj�Q��Ԧ��We�6v �b(�@Va�I���:o�S���×Ğ��C��NeW$��'��bap���4*�J�����`�u� ��~o%
� +��6���G��q$��]̠�Pc�[����#_�wI��H�:=2�^%z_Z*��[U�y����@C6��XL!�Zc��*}j���n��ݿ�wBfx�Y��:_�v�������<���i�՛��eȜ/a��ʁc���f����r����ߚ�_�}]�,��0�g��y =Ҷ�Il���
7'�s�]�5vM�'��Wk��W�ȫ�elM�!
�R�Ǒ��85����w��i��� +k��ڧ����Ce��U3.�)��|�`)<��x��I�x���};�U�T?U�qcE�}������@wp,|��K?sԅR�Ja���"ڭ��vɑ]cqt����e��Q�\&�����cM�!5�g6��f3��Ck#�)���� +endobj +790 0 obj << +/Type /Page +/Contents 791 0 R +/Resources 789 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +/Annots [ 794 0 R 795 0 R ] +>> endobj +794 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [145.718 351.925 167.636 362.829] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.4) >> +>> endobj +795 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [216.501 223.407 223.475 234.311] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +792 0 obj << +/D [790 0 R /XYZ 99.213 706.052 null] +>> endobj +118 0 obj << +/D [790 0 R /XYZ 99.213 688.052 null] +>> endobj +793 0 obj << +/D [790 0 R /XYZ 99.213 600.466 null] +>> endobj +122 0 obj << +/D [790 0 R /XYZ 99.213 209.93 null] +>> endobj +789 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +799 0 obj << +/Length 1427 +/Filter /FlateDecode +>> +stream +xڕX[��F~��@�<`i=�;�6���%I�4M,�!��Y�kZ��ݬ����������Jf���e�s��a���xQ�(a^�%z�v��{X���X8Ȣ��y5��&�^�"ɼ��c�#LC�!�"o�|�_ο��X��@�D8�z��|!��4����+3�6㏭�фD�5�l��G����(C�$�������Ō_�����v�`��ȫ�� �ګ�������[���@ Q@"�|7�!&D��H�'��]��д�H +�����W�%�73�Xz0ƈD���q*`��|�i�[�ˮI�J�偠q�O�B�md�]�nӢ�� +�,�{���㴪������q�*�7�v������>U���CVo�[�R�z�v�t?��.�(#��\ՙ4����`��p���x�M�]Z/H��&�dp�x�X��sG��<�_6� �!�$�n�]�2�Mµ�RuV���G�L����H2�]q?f�D(���YU-R� f2N����.U��:b
c���A�I�kC:�qy(�e����2T�(�S�K�iwF���s��_3�&"����.�b+�>N�~SI�Q�)�=�)k�2�����>U�FkiU8�i�u��V���W���d����ե%~4"���e�7��(��q\�W��,�?@�sP���ܷZ��Jo���8����x(���B�~��A5����M'"�t�\�����A��cXڢ����g�K���T�6����]Q���tc8����z�/���%:Li�D�\[9��K���_!Qȥé��gw���.Z��ʪ�d�8zd�3��W�AW�P��Z?'\p�0�$�d�1�<�F��h�L�yn� +�=�D���>�w��� +s�h��k�%Ӟ�'E_� +endobj +798 0 obj << +/Type /Page +/Contents 799 0 R +/Resources 797 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +>> endobj +800 0 obj << +/D [798 0 R /XYZ 99.213 706.052 null] +>> endobj +801 0 obj << +/D [798 0 R /XYZ 99.213 675.933 null] +>> endobj +802 0 obj << +/D [798 0 R /XYZ 99.213 324.868 null] +>> endobj +797 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F105 774 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +805 0 obj << +/Length 1586 +/Filter /FlateDecode +>> +stream +xڥXmo�8��_ad_�ìJ��"`=��C��Mq8�����@bg~Y���G��c�I;ܡ@LI�C��H�̡��)�ϸѐ��w� u�`� ��e�z<�瓓���H"C�̗F�>�Hr���/.�yu��
Z:dԽ�}��3�#"#�ۏI +�~7���ع�&���? +s +�"�C�<�V�?�Q�q���$���I�����^�jy�$q�E�Ο���&�! �^eUm%A� +FbS=H$����ߵ�^��e~�����|����*U;�������|�S��y�k�4�Mp�������CV1�^���?Z�v�����f������A/laLD
e�'H���= -�����\��l:
e�$US��*��(���a��UR#�T�B�'���H^��c���۪�ru=Խ�j�� +),��:p�� +\��"%�BBi���E�;$Nݷz������N�M�d�����m�vG �&�A:��r���(>8#�d�/9��\lZn��>��=H-=˅w��ݏK��!Pע���<ՠ/=�g� +�VyZ��H���XB�� B����|_f�.�fp�c�)l�(�u˪r�l21ôٮ���er�F��g!?_��z�l�U�*-w��*�]��@�Hl��U�Y�V�ӛ��<s�[*��vj�6��G�R���z��^�e�҆ť�k��l��(䬺�+K��� +���zI�����j^�1'��'�[�c>�wy܁ha>��>�ǒ�`tv�endstream +endobj +804 0 obj << +/Type /Page +/Contents 805 0 R +/Resources 803 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +/Annots [ 807 0 R 809 0 R 810 0 R ] +>> endobj +807 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [173.244 571.653 195.162 582.557] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.7) >> +>> endobj +809 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [147.556 319.936 169.474 330.84] +/Subtype /Link +/A << /S /GoTo /D (example.3.5.7) >> +>> endobj +810 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.595 292.106 137.568 300.952] +/Subtype /Link +/A << /S /GoTo /D (chapter.6) >> +>> endobj +806 0 obj << +/D [804 0 R /XYZ 99.213 706.052 null] +>> endobj +126 0 obj << +/D [804 0 R /XYZ 99.213 646.297 null] +>> endobj +808 0 obj << +/D [804 0 R /XYZ 99.213 572.649 null] +>> endobj +130 0 obj << +/D [804 0 R /XYZ 99.213 277.041 null] +>> endobj +803 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +813 0 obj << +/Length 494 +/Filter /FlateDecode +>> +stream +xڅT�O�@��_��$e�_,�I59�yj�V%�cz��%p�F���rp'hC��y;3@6AJ%%X +�������^�a���=�)��xd�s5B��D"�=�-���u����S{#��=�tU��UV�H߲�s�e�*,/�tr��XmJ�L���zB��A��l��U �t����*?����SI���U����֧o&l�F��z?��� 3�����2�s�ֹ~�y���"��G�ڴf��_�{:�e�E�o���I���e��0[${���omWn\���"�endstream +endobj +812 0 obj << +/Type /Page +/Contents 813 0 R +/Resources 811 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +>> endobj +814 0 obj << +/D [812 0 R /XYZ 99.213 706.052 null] +>> endobj +811 0 obj << +/Font << /F72 448 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +817 0 obj << +/Length 1631 +/Filter /FlateDecode +>> +stream +xڥWK��6�ϯ��Ī%�ٞ�6-4E�]�(�4�6cį����חi�瑠h1�E���#�~��s����0a���م�{��y'Y"R��y�� V����6����)�� +E�h��a�%�2!�Ի/��?M?�a�8�����Wt&i����D(P���e��4v=���#Q�-�x��Uk�>;1���EN6�~-�D:���q�sy�߽���'3�ƶ�Hf��1��a/���σ-�H�e +��7�H��h�}ګ�7�ly�����NUc�>�"0��۵���9t2��������� �$#�G��i�E7@dt����t$ +�@"�_�H�H="O)�N���Z[��������o]h:R�,�۹9X0|�Ϫ]NZF[�b��5� >C��ߓT]���{�e��ᆧMGo�B��@yt�2��qD�T�p��%��0�D�5ő����եK;تF����UK�iZ|?H��c5n���UӃu5�sثПِ�n���Xa�|���GS1�Ǫ-8�K{ڭ���r��R�������⊾Ut��=kj]��O�kc>` +�q��\?<�cW=�p�qz�B����+�H������P*����<CHI��>���^�B���{:�ʽf��LdQ����n�f�Q�B����3!h!���uh���өHTt%`g�&^�qmA��(A �Z�\'Z�����M���VQ@�Dk�� �ۖ.�:�PY�Tu�_�?��+�mN�\]1�G��Z1Z�|�"%��L��c�%�rf���LUa��5��s$�>���*�P���@j�@��VJ!�pII��FA7�Ȅz����^ǀRJ���1of:����T1��`2��J
�@�͓l��~8g!h.�y� + +F��:�/��G)����},��"UӰ�"��3�kM͜��r+�2��T��ǀJ1�"<I\�/ E�/B��)D��g�`���E��Te�Lr�1,"x��o�E88Im�P� +endobj +816 0 obj << +/Type /Page +/Contents 817 0 R +/Resources 815 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +/Annots [ 819 0 R ] +>> endobj +819 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [425.732 166.707 447.65 177.611] +/Subtype /Link +/A << /S /GoTo /D (example.4.1.1) >> +>> endobj +818 0 obj << +/D [816 0 R /XYZ 99.213 706.052 null] +>> endobj +134 0 obj << +/D [816 0 R /XYZ 99.213 688.052 null] +>> endobj +138 0 obj << +/D [816 0 R /XYZ 99.213 293.478 null] +>> endobj +820 0 obj << +/D [816 0 R /XYZ 99.213 152.759 null] +>> endobj +815 0 obj << +/Font << /F71 445 0 R /F72 448 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +823 0 obj << +/Length 1763 +/Filter /FlateDecode +>> +stream +xڝX[o�6~���$ËD�[��k��E�z�7`H�B��F�"���4��;�H�uq�"�E��s��9G!�?�H�(aN�9�u��|���'�"<�Z�_W���B�H$9sVw
h$�L:�͵�zv�z�Q!�����8�ꛙǩ�J�.���+=���e����8�Y�۟yv��b��D@c.,��Xj^3~�H�Z*���&b���I��@���j�зS���|�$ >���=r��]5�4���z�g���f��&@��p���Rl��UM���# 2�L�o���(z;��I�<�#"��0�i +��`�e��@X�c��d��凋���6�g���A�k( TH�Ξ�'��tE���h�A=_�e�ʌ�xF�����,J��b&�3��C+f�}���1�����n�?{��R}Y����6*�J��1v�����Έk�8���$.�JE�$� +{.���Fk ��M[�|3�9�<��b�˘�m�o�z2����]ɚ0^��t���N�S�n�p����6>�n�*���X�
#+���~��f�4�+Jw�o��x�F��u� +���c��vb�rú���ީ�> +D]��T�#2��'#����".ͼU�ݘ``�� +�pP͕SMK�%`�+����{�@MS��t�5y�!��o����[�$�M���(��[�_��@*�A��xpBr�����d��a�s,B���🏥���%���7�endstream +endobj +822 0 obj << +/Type /Page +/Contents 823 0 R +/Resources 821 0 R +/MediaBox [0 0 612 792] +/Parent 796 0 R +/Annots [ 825 0 R 826 0 R 828 0 R ] +>> endobj +825 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [147.642 407.471 169.559 418.375] +/Subtype /Link +/A << /S /GoTo /D (example.4.1.1) >> +>> endobj +826 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [174.709 392.527 196.626 403.431] +/Subtype /Link +/A << /S /GoTo /D (example.4.1.2) >> +>> endobj +828 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [234.329 156.885 254.254 166.898] +/Subtype /Link +/A << /S /GoTo /D (example.4.1.2) >> +>> endobj +824 0 obj << +/D [822 0 R /XYZ 99.213 706.052 null] +>> endobj +827 0 obj << +/D [822 0 R /XYZ 99.213 393.523 null] +>> endobj +821 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +831 0 obj << +/Length 1518 +/Filter /FlateDecode +>> +stream +xڝX[��8~��ۦ�����+��j�V�7�!M<ӬҤ��0�~���4��P�H_���|�.]��G�ZF�2��%[��E�����)�H�����Y<{���&Z���β�M��M�1���#��3y�*��s��ȱ'��� щ�VD&w�]�)0y�?Nf����6'��R%',����ߟ�&% Mp�fܞ�J䷫��V�b�����ƍo-���f��sI�V�_?��t�f����cB�^��I%8����#/�pܩ9�I&������R��DZL*II��#�Py� )�$U�*�Y��Mo�w�!�r��A�g}ߖ����7ݹ�ה�$Y�9p`���̹
)�#e�C15�"4 5�ٛ�_�xG����w~�?�h5��P����P�����\,͋@�)�qk�ek +S�R3����=�o���] A8�͡/�:�,wr��Q�\���pTsv��>�-�L6g1O�
&G��ۅ�Ά�R鵺;��X�fEe��,Z/�.�H�i�.?�13�_�kp���X5Nű�~Wցw����zD,���}d{����'V�W���l#8�����F�D��\]��Dzϳ��n�E���B��w�;5h1��oV7���X'����ةq�&��F��� ��]������ACJ@�I�;k��=��:��c�y���2~J*�D���eUy������ud;�Z�1� +��p�UU$e�: +�"`���j�'�;�G�].\C���jp����m�~��ـ��Z�Z_�1��
���ޏ�҅�0��!�<�c�&�i/�}�T�$�b���2�!�j̴���39ֵ�}�r_VYHx��
+�{��.����WYבc��I��E�kH�S� l���z�D�%�3\u +��J7�.�w1���H")�NS�����[��<6ZF��*�������5W4`a��VF�~��ʪ�4&��m���������?o)���.Qhcu�=�$�*ˍEgZ�o�7h���o��6�e����W:�
�?4=�+�U�X7z�s��9���a�M�vd�A��(����#3�`�(qY}��u�8�NAǛ�+�V���䚦2��O�ɘ0&/�&�3ֶ\Rv1*&��z +����bɄ��v%�n�0=��[������� �s�I�����dU������T��F[7(�E,��J�5����G�T����qJ�����!��
���Ņ�sU +V|$:p�] l��s���r���S��~k����}c���Ӿܻ��Ҩ����_1�e�42���?����k��!�p(\��КG��� �������g~�7հG>>r�����K7��=����2'W�6���%�mrM���o��K5s�)�k�����W�S���e�����a + +?�K��endstream +endobj +830 0 obj << +/Type /Page +/Contents 831 0 R +/Resources 829 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +>> endobj +832 0 obj << +/D [830 0 R /XYZ 99.213 706.052 null] +>> endobj +142 0 obj << +/D [830 0 R /XYZ 99.213 688.052 null] +>> endobj +833 0 obj << +/D [830 0 R /XYZ 99.213 593.018 null] +>> endobj +834 0 obj << +/D [830 0 R /XYZ 99.213 516.16 null] +>> endobj +146 0 obj << +/D [830 0 R /XYZ 99.213 423.317 null] +>> endobj +150 0 obj << +/D [830 0 R /XYZ 99.213 320.457 null] +>> endobj +154 0 obj << +/D [830 0 R /XYZ 99.213 196.65 null] +>> endobj +829 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +838 0 obj << +/Length 2247 +/Filter /FlateDecode +>> +stream +x��YKs����W��ʜ��6�M"�jc[�}�} +D#5�<�D1���x��L6q�S$j&�"C�:[�a�F/��a[{u j`&��+k�}1�H>>4���� �����jb?[���7 +���C��� �� 穄(jz�|I����2��sY���f"��0Wf�0�V���������S�����qi�����م�J1 .p�
ڍ�²D{^B]Q����(4�5(l�{��'�o����o!5}�f�jz�g�i����狦�<d,�.��� l6��>5�ڗ��Fgj�X +�t*�����%��,w��5��)�M��T��8ТQ�}B +4cB`9gܹn"���s�LB��y�Jo�S[�CX���r�"���)�zjeO��y����螀�b�����$)z$T��̫�i�h;�dޫ�AZK*o����\�h��x��`ѣ]� +mZ���K}�z����.Nu͡`笷ڿ�5�i��G�H�z�#[�e��ҷ���Q���K��[Cs�� ��_�����#�h/�lsѳo!�&�0$C��'c��:\50����W��r>{��\u +� +Z��'v����@̎�ŋ ���_a�i� +_M����BA�䧯�I��(�Oa�/sp��ta���vL� U��B>d�O�����~JH){K��q(}_eSd���!�����v�,���*VRJ�r-X2���f*)��7B%� +�P[xIj��0lq�Ύ
� тqu�Ro_�f,�?��'�|���� +tP�"�C4V�@�Mm�O�� �A��a%\\�5T���P +endobj +837 0 obj << +/Type /Page +/Contents 838 0 R +/Resources 836 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +>> endobj +839 0 obj << +/D [837 0 R /XYZ 99.213 706.052 null] +>> endobj +158 0 obj << +/D [837 0 R /XYZ 99.213 688.052 null] +>> endobj +840 0 obj << +/D [837 0 R /XYZ 252.051 631.525 null] +>> endobj +162 0 obj << +/D [837 0 R /XYZ 99.213 536.004 null] +>> endobj +166 0 obj << +/D [837 0 R /XYZ 99.213 350.308 null] +>> endobj +170 0 obj << +/D [837 0 R /XYZ 99.213 241.889 null] +>> endobj +836 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +843 0 obj << +/Length 1783 +/Filter /FlateDecode +>> +stream +xڝX�s�6�_���w5�/Q���խ�v�e��v�h�����$9i�� (Y��&[{�$� +A��c�g�1�<�챠�0Ґ*2m^# 0��}���
�
bLC�n�:��1 h�P�8G�,�*x*)��}�� +�Qw���zy��g�,�h�!��{!���� ���,�k��d+7�nj��K��cHOO�7>�ʀ �dݐ +�j+4�@f�=��4T!OKb�&�����3��M�{�At�cgÉȡ@5خ�� �`�6��G��)<��������m�,���~�ɒ�PtZ Ԣ=q��Y�Q
b��<Ł�y̑��z�}�d{��~2l��ge;�\�X��a�$
%�sE�>���[��Iendstream +endobj +842 0 obj << +/Type /Page +/Contents 843 0 R +/Resources 841 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +/Annots [ 851 0 R ] +>> endobj +851 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [301.523 613.111 307.999 623.124] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +844 0 obj << +/D [842 0 R /XYZ 99.213 706.052 null] +>> endobj +174 0 obj << +/D [842 0 R /XYZ 99.213 587.854 null] +>> endobj +178 0 obj << +/D [842 0 R /XYZ 99.213 521.142 null] +>> endobj +182 0 obj << +/D [842 0 R /XYZ 99.213 431.495 null] +>> endobj +186 0 obj << +/D [842 0 R /XYZ 99.213 354.679 null] +>> endobj +190 0 obj << +/D [842 0 R /XYZ 99.213 219.024 null] +>> endobj +841 0 obj << +/Font << /F72 448 0 R /F14 847 0 R /F8 850 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +854 0 obj << +/Length 1246 +/Filter /FlateDecode +>> +stream +x��Xko�6��_!$_d fII���e���HS7q�+�b��Ir�����%��cA�CD���{H�s���/��9ĵ�#Lk�a���>" +1Q����m5z�&p�E�k��-' ($&B�Y��}1��z+P� +�\�ɟ�1���}.�K�{%�sѾn�6��<W����mı���*��qe�]��V���C$�"�kEȥ��\��x����Yǒ"�3|� +��S����"�:oGuBR��79�����m4_5�h�C���k��3�P��FnZ��ƈD��y�V�����CK>�-9�K��a%�)�A��b�'��v�?B;�e��x;Ԏ���%�f�mX^ˎ4����۸�7�.ӯLż�p)U�b(��ž�zTQs6&��[��/v�l��x��X%�W���su���[0!�<O,�L��#<���l�y��L��d��f5++�J���X�!/���/!#����[A���rQrr9�&�4$ט;ȧa'>L��ϥ� �{\�h����f_�H3�B<��]�����SDž�����goi� <(��{l`�*C��c
9\����I�W���e9Ov��D>R�e�EW�� +��������J���)^^��i1;Ӏ��l~sq�X�� +p��j]��:�+�O���I�~u�F� +B�^��z�!�����C�M�8f�&���^�5r;�����'K#�/*(���h�O_RTE�;��SxS�?����td�>;�!}�R�Nsy}�`n�uD�e-��\����U����֕��Wu����˾
l��5D�d�Mb>-���|�.v9���M�p�R˹�ѷ��M��88H�ɤ�J��;�0woҲ���J��J���W�
��������^�678z����p��:O���#mu�O6� +�a���������q�naPY<� K���? +endobj +853 0 obj << +/Type /Page +/Contents 854 0 R +/Resources 852 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +>> endobj +855 0 obj << +/D [853 0 R /XYZ 99.213 706.052 null] +>> endobj +856 0 obj << +/D [853 0 R /XYZ 99.213 660.989 null] +>> endobj +857 0 obj << +/D [853 0 R /XYZ 99.213 517.137 null] +>> endobj +858 0 obj << +/D [853 0 R /XYZ 99.213 373.285 null] +>> endobj +859 0 obj << +/D [853 0 R /XYZ 99.213 254.713 null] +>> endobj +852 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F105 774 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +862 0 obj << +/Length 1933 +/Filter /FlateDecode +>> +stream +xڥXmo����_A\�PE��wr�\�k��^�K[�P䂂i�)E�$u��}gwvIJ�堅s�}8���+�" +,2�p&��jB�v��a�o+��L0ݮ��>�!F�h�`�H�A�!Z�h����Fј���Z3߭���^O�I��<% +S��v-X��<���������? �HAR��4Q����t2n�a�sI��R���IR�s�w�3��}r�?��[�a<��|�a;p;���V�2���/��(/���D�4z�5%̘谒\�*����n�� ��H�֒#�DR3�d�&�S+&�IJ(:�i_��=9H�0I��h�nל��_�A���-^������%g�|���g}��%�%p�$RiJ�<��K3@Z�"��˫� �#�j�10Gѫb�K��ʣϥ"�4�b�rNI
�F�0yX���Q.1BG�2"��1�c��o�rA�N|�}���. ;���Y���h���;��q�z�>��g\>4�����o�}�g�L��5������W����BA:�W�G7�|�|�aq�����7m8T�c�x{6L
�[��;��5WqV� +�m�c��CQ�VUqY�N��]s8VŚ��w|��ko
c����O]ߖY��KQ?�{�P1�
4�Y��Cn�짜�$���O�q�)�!�t���B ��`̯{k��"�J�RP(/�C��X���������捔������yY�]�l��Z0��Bj�Cl1T��1l!�PT�z��͑��:�1F�ݬ��_t�i.�)�Io�*>�ٮ/w�u�i� �?�.�R���9>��Y���b���<.��=M�w +������<�4�������89���$��#�u_<���(�z�Kpw��8��g��~��R@cW��s����V�%���Z!y��BF�g^`s�հU�w��E5��;��Rx���]�ꊠ��0>�����*�۬}��Í�TQo5s��qj��8���B��Y�e �a�e^�$��bi�lAu���6�7���S9ε!��\אC�a�ۍ��#n'�%�7�l*��s����Ը6u�����u��}���7��O��/C���Ɇ� +�fP퓙3��(�`!30s}�� �E�5��,�T�d�T�C�d�bb�Č��|b�z�@ޜ���c� �:���i1/��1��tE�HӅ�E�& +�}�!�(Q �%�$��]giļ̒Ǽ��}#K +Y�(�o�jN��:�W( +Y6��R�=��P!3��$�Xmb6/��#����^endstream +endobj +861 0 obj << +/Type /Page +/Contents 862 0 R +/Resources 860 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +/Annots [ 864 0 R ] +>> endobj +864 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [268.854 456.988 290.772 467.892] +/Subtype /Link +/A << /S /GoTo /D (example.4.4.1) >> +>> endobj +863 0 obj << +/D [861 0 R /XYZ 99.213 706.052 null] +>> endobj +194 0 obj << +/D [861 0 R /XYZ 99.213 544.957 null] +>> endobj +865 0 obj << +/D [861 0 R /XYZ 99.213 457.984 null] +>> endobj +860 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +868 0 obj << +/Length 1278 +/Filter /FlateDecode +>> +stream +xڝWmo�6�~��H��C�Zo�
��$�R4k��>EQ8g_��g�l߲��Q���[�a���G�D>$��G�8&�rG! $s6�U����/+j����O�՛�sb��Yo�(�(��I�cg�~vϼ/���H�4H*8�ԫ�z~��S�/u�f|a�7������n��2p���}j���b�ƍы��3V�/X�h�V���PL�#;x�[��JX�o�{�p�|�)��)�*�*��`�_�^̵��D��:��$��������V�={$ ���?W��N +,z� +�#���q��V�I);/V��O�.\ܵDD�A��D�PA�ML�L��H�LDz>
��=������g�A���ή= RR'����f���� +���b�Pi7=6H���A� +��&�ۦM�l���s΄a���&/����ɸ��g
*ue�'�Y�63qF��Y��9ud,!{�r�G�?�t�� �A�)MMs��I]�Ջ�;��:T�c�B8��F�O�4�-"REυi��?�I'�s�e$|6TK�9�j��Cr��9҅�B�w��
�/Oߝ�g�u]���G����s�;1�<1~����Q1h��Y����(���p�Q������x�����|ɉ�J?�����Y=�zv��zy��w��j���)���B�J�t�����dk�f��_���7/%�n +endobj +867 0 obj << +/Type /Page +/Contents 868 0 R +/Resources 866 0 R +/MediaBox [0 0 612 792] +/Parent 835 0 R +/Annots [ 870 0 R 872 0 R ] +>> endobj +870 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [112.881 625.771 134.799 636.675] +/Subtype /Link +/A << /S /GoTo /D (example.4.5.1) >> +>> endobj +872 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [146.406 466.369 168.324 477.273] +/Subtype /Link +/A << /S /GoTo /D (example.4.5.1) >> +>> endobj +869 0 obj << +/D [867 0 R /XYZ 99.213 706.052 null] +>> endobj +198 0 obj << +/D [867 0 R /XYZ 99.213 688.052 null] +>> endobj +871 0 obj << +/D [867 0 R /XYZ 99.213 626.767 null] +>> endobj +866 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +875 0 obj << +/Length 1149 +/Filter /FlateDecode +>> +stream +xڅVYo�F~�� �D�fO@ 5��Ec��\?P��b�+<��wvgW"%ف4����fwHP�� M g"�iD��A^_��,\1��\�F _0n�D�4��"�����5f�$�D�}�YT����xo�Y7�~�ኆj���}$�����`E�CH���T����u�s�AJR�a���[����^&a* ��J"�-C�����<z3�cs���!Mvy��r���Iy?��DI��U�!�˝��¿�L�Y������JYS���MU6��G����|��:�Phw�u>:���t?����c{���e5l@c�a�$���l�v�` +�d�c���:R!Yo�Ǚ��� +�j8��\E� +RYwm?f�{|��8��Pؾ�j +8 +��8�:y���cβ����A�2Y���]jO�ZġSY�������X@(���QH?�_��cI"*�-���k;]���C�5�7�m]\��*�PW�T�~e�u�H����!��a�^�?���~�xa<�Q7 +r��r���{=91�q��ܟg�Rxendstream +endobj +874 0 obj << +/Type /Page +/Contents 875 0 R +/Resources 873 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +/Annots [ 877 0 R 878 0 R ] +>> endobj +877 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [132.162 455.011 139.136 465.915] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +878 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [339.953 356.381 361.87 367.285] +/Subtype /Link +/A << /S /GoTo /D (example.5.0.2) >> +>> endobj +876 0 obj << +/D [874 0 R /XYZ 99.213 706.052 null] +>> endobj +202 0 obj << +/D [874 0 R /XYZ 99.213 688.052 null] +>> endobj +879 0 obj << +/D [874 0 R /XYZ 99.213 344.491 null] +>> endobj +873 0 obj << +/Font << /F71 445 0 R /F72 448 0 R /F85 483 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +883 0 obj << +/Length 2064 +/Filter /FlateDecode +>> +stream +xڵYێ�F}�W�D�v_y1� +Iy�`?~O�(R�䁃��Q�X]U]��4�S�c�,#��yBcB��w3:��7?̘�Xz���w�'�L�<#Y,�w۹��H�@NFb���6���~�l �Õ&����˘G/��7�ˢ;�~i�o��� +CCحKE#bx�9(⌰�y^'������BP�;S�3Bî�gB3"��o�v�3���w��z�*+i�����G:���?�(Y:����l��I��J�s9{7�w/˽��n�Tx�D��<>�:����x')�.<�CY������_���2_�h�w��n>��A͒a��n_�K��ߴ�N����ͻ.�?�u��;=������s�o��t�A�w������^�ʫM���7�2o[R�.eBR�F[�|7!�Y��C�!F�BH��&�%C>���mz��;�&��[���Rp����n_�Ӝa��Jd�!P6��E��s��<p/�g5y*��
���鎑�q6�}�e���AF�-�-i�<q��j��([ݵ��6�:�?���wE]�{ʻ�)VN�C�[DF�8�����4�R�8�EZl�PNq�"#�ޔ��6��C�荷���z�T���hϘ��ੀ��Yi�v�䱊�uc�s����f:O���[��j�qJ����I�fw[ �%��A�&sP�e��vGF�xBݙ��{�.>P�u{r�-چ#�Zo�\_5���b�7��8���tsR�pRk���S�;���#>V7h+�VTpj��u&r��N���z(���*o�RFu�H^��B30�]���'oA���r�$��pA0r����f�H��ѷ��4�͍a�tk�]d�gБ�_�Cu��,jܣ� +T���<�����ӾF{N0�i�/������9o��a۾t{{�}M���.������bfr�l������4�o�+��ro�G��1��7F������I)���l��Ƀ�r��dXd|Vԩ�6Z����z��K +|��O���
2äl4��i˞��K�i��a,y����HP��8�zm-�.%I�[�� �|7#�XyB�;��];�?��Q[��W�A�S� +9�ԣ�U��!���p_��f$v�z���g*�)��z�5͂$Y��v���t<�sƯ��,���h��BN��S"�9|����"��A C��џ���A
�� 4��Դ)�0�e����;BS�=�wg�]4KǷ��fT�K��(�Ѷ�wf�#�I0����~d��h��TM�D��#�����C0��;��'��I�>�{�dJ�/a��~֢�Zo����8Qߎ�bW�y3�Mfț��f��mvX|av�{�W�1�x���NJ�ԩ{L���S���a������.�c@KBїmS]�4*�#�A� +q��h��E�o�1��˘��S�0��
h#�5���b�̀e3�=��(u��=���)rf*�>����e�D�*3�pnnc��Yv�?���RQ��ό�վ�9 �E{XMXH�~y\��3VZ{�En�����ܺu��aS�veA]=��p����.�1\`f�u���[Ճ�F�;�E������X
�\V�'��Q�1M�b'�fhF��K����{v�]��qO&��b�`�Sl5��PuQ�@"F�`������-�z���e��FkO��tB�������N������k���\"ZC���H�x 3@M'��0� +endobj +882 0 obj << +/Type /Page +/Contents 883 0 R +/Resources 881 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +/Annots [ 885 0 R ] +>> endobj +885 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [148.347 536.013 170.265 546.917] +/Subtype /Link +/A << /S /GoTo /D (example.5.0.2) >> +>> endobj +884 0 obj << +/D [882 0 R /XYZ 99.213 706.052 null] +>> endobj +206 0 obj << +/D [882 0 R /XYZ 99.213 396.037 null] +>> endobj +210 0 obj << +/D [882 0 R /XYZ 99.213 209.253 null] +>> endobj +881 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +888 0 obj << +/Length 1487 +/Filter /FlateDecode +>> +stream +xڥX[��F~ϯ�#���/B���z�'��I�W�|��ً'���;����|��LI0�#�1��(,4�W8�+��Hܑ�-�d�/�ճW�&ɒ̓S�%5If���C*֙�)���(ڼ~�J��9J����u��r� %��대��0܇�0� �fn� 0���a}�F���|7.O���;�!�3/i���?�o�����N��n3o�@Rp�/��p��0�^aČNAƈ�W� +�T�.W��������SKH ��f*���+�T������&[!zZ +'���R�aP���RCL�`D�ZLy�)%CR�ȤG�1d��p �E�m�ٟGtǭҍ6ݗ1̑=.��
��
�Sζ?��D�f�>�-A�����ߡ~��fFv;9�̛&�\(��˫��\�-�S +�Uz��%��3��}�������CQ�v;��`��y���o�}P
e��}�v<T��G��'6e�4��)���������ը�ۂ: �H���`�w>
!�jP�Ƨ����~��m��&|�%���������xnZ�|��n��w��oX���u}SA+߮�iO�OO2����G~���4/���>�rhZ`j�\��<��xX��*\�������>븡M�ǭ��n�!.G�3�&0U����}0�C�k��ԗy��#��fW���4�#Mo���?Vʠ +�SLQ�c������'&E���q��M��O'�-���@.�_��׆���sK��\ +endobj +887 0 obj << +/Type /Page +/Contents 888 0 R +/Resources 886 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +>> endobj +889 0 obj << +/D [887 0 R /XYZ 99.213 706.052 null] +>> endobj +214 0 obj << +/D [887 0 R /XYZ 99.213 688.052 null] +>> endobj +218 0 obj << +/D [887 0 R /XYZ 99.213 628.015 null] +>> endobj +222 0 obj << +/D [887 0 R /XYZ 99.213 496.758 null] +>> endobj +226 0 obj << +/D [887 0 R /XYZ 99.213 413.042 null] +>> endobj +230 0 obj << +/D [887 0 R /XYZ 99.213 314.589 null] +>> endobj +234 0 obj << +/D [887 0 R /XYZ 99.213 212.44 null] +>> endobj +886 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +892 0 obj << +/Length 1829 +/Filter /FlateDecode +>> +stream +xڍk�۸����D�H��T�.��!��n����Z������=��w�Cj%K�,k
��_�B��^�1�#/ ���zzp����E f8o�w�["��e*��O^JG �ɘ�2������t��AKX� V�xQ<��>P�����~�o��
��twb)��n�} C�!n8Cv�g<��(���6���Q�V,D�Bw�Êh�")��\�;��}?Yl��dJ�h�ϻ��B���a�(K�G�C2��],$@�]W���O-:S��r�1��l�?��e 3 +O2�$e!�G��E�$�j$Y���y[�u�9�Y�̩�������<�E�C�6n�y��zA�Ys��l1S���S&2� +�
/X00���nr�p(�5^�:�СU��K0<��ȈI�x���5�5�٪��f�N@=�,唠�7�x��^�
b1T��07m"�,5�-��J�2���R�%X�'�B!q��G�r��t���u�R�?�At�JU��b�2Z<]�I�ŭ�('�U���ɽQ&);�i�3�);ag�����`�NDYfg��w�pnLJ3!�|З�����`��ӳF�~As�r�um�cy��c�薛)�X��Ll�nP�zHh��
e�@8p��Ěi�!�`��P���=����M��}��a �^?�V6���_���3&(�6�zS�z����72�s*]v���è,��0�m��Ь���*lh ���=.2-1S��0{r�2f��z�E��K(ñM� �ÆbU�{�ʏ�7EJ.�#�ą�Bi,d�"�&��|^@��uw�k����BN� HI +�7�����YDԄʶ�*iq��i�-�M;��*�=姄��:�|pU��ߕuY�����7 �U_�Bpj��6\�ڦs�Ҷ^�;�������۳��/��9M���d`8��x��P,���v�F�� ����o6hDlz_�J};��YpP�0�.��)�>��-�з���<x�[nB@�� +<���T +p����e}N~��
�]�J���J��Y�]��㹭'�L��L]�C�6 +i�8��z�M=����4G��� +f�_��i�'º��z9���J�@B��K+�
��ͯ #�L#�V6�6'�7s�3���:ה3������,���f�(M�"j2�gFA��Df�lP@��Z: ��Fc���P����b�bwY�D��٭��QLeΠv������S� +L5*�[��N�x"���3���>]�Ŋ��(\�M���ڎ +Nاһ�+7i����t�Y<p.�y�1���wA�yx�����2˜�p���T��p��� ���Y�C%{75Y��oM)�*�����PV_�P�t"��Dꖑ�̴��cB�endstream +endobj +891 0 obj << +/Type /Page +/Contents 892 0 R +/Resources 890 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +>> endobj +893 0 obj << +/D [891 0 R /XYZ 99.213 706.052 null] +>> endobj +238 0 obj << +/D [891 0 R /XYZ 99.213 688.052 null] +>> endobj +242 0 obj << +/D [891 0 R /XYZ 99.213 581.055 null] +>> endobj +246 0 obj << +/D [891 0 R /XYZ 99.213 414.944 null] +>> endobj +250 0 obj << +/D [891 0 R /XYZ 99.213 309.232 null] +>> endobj +890 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +896 0 obj << +/Length 2276 +/Filter /FlateDecode +>> +stream +xڥYmo�8��_a�ԌH�z6\��!���Mܻ���l���d�kI��~��p��l���"�g�Ù�3����_βL(�gI�Ш�j{Ξ`���)�L2м]\\���Y&�X�_�M+`��Xg�����\�M�Ws��ŏ�?��N)��������Dd N��$�g������>��sO��X�6 e���P�T$2���~z ?�ځ�X��X�_jt��~D���x�y��M�����������E(t�Ξ� +�e��E����?��h�q��NʨHDa6qTr&�Ȍ�B��$!��"���PH�zi�����y�Y6Ӑg�y;�m�/�W*�֎M>"�j6�Zh\k;><�������G�,�&��54Vy�
,-}��L[� +ڍ��y�k�2� �7��cvR����G{\�֮Z��}l���4��c�M��� �����a���y.p��Z2��}Ѷֳ�OD��6G'���A�nW7Ek=�M����<���y��_�]���&Y^�xh�,��C����,k\��������|��9���U)�͟�4":������lMy$���b��E�S_j�i_v���ֺ��h��q4o�� l��>ڻ�V��<ZT-�p"AH�,���ᄺ�{C��ԝk�zYg���-4� ʼn�pp����`U�@�����i�6oW1���]ѐ�49;&����Q$#9�a!'�E"�(c��������{F�!�9} +6x�8�������[���V�3H�g��1x����[���.��_��=8F�R�h7�%�8�U
�pr�6�V� 4|a�� +���_g���Ć��J�����没X�����ow�=$:3"LfFK!cI(��OL�0�L<P��� C'�`����K>�/��U���P��H(
B�T(u��|@���"T�$$�]��'w*
���W�{��t�~���A�(=�>C���2ö��D�� +u�Oϛ�@�6?�F��L�ꃽ��E@�~��'��!O�;D2�(.i~U�Mss�W��C�����"n.���S�����姇��߽���~"�ϰY�f�/�"�Ds`��{���������[����&�>~~�������T-o.�xYxA�)s\�v�(�@�H����;�oxY��!�\��#(R��S��p��lΑ1*},�4��u�'�P"�ui��d��� {��w���
����ǽ���SB �*�Q�C�0�*wX�����#�%�j���`�` +kl-��_WA��̡�xe�P ٩��^��$)����
�j/��z>�b�B9�8r��tIZ.GM����3m�f��>㝁{�3��2�yG��� �x��W3�錫i�u~���e����WiVz���
�ᅻ>]�f�U��ۉm�[�H� _�X&c��\��0��7��?��ڊI1| ����A�uJs=�F�� +,�h�fձ}`���܂�1 +.|���c'�2�N>)�R��R��y��H�M��R�����ݿ��{��Y�8�o�qԱ���쳉�M�����y��5��
�"홠�� +�$�%� ݠ�endstream +endobj +895 0 obj << +/Type /Page +/Contents 896 0 R +/Resources 894 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +/Annots [ 898 0 R 900 0 R 901 0 R ] +>> endobj +898 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [394.074 528.008 415.992 538.912] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.1) >> +>> endobj +900 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [148.402 344.43 170.319 355.334] +/Subtype /Link +/A << /S /GoTo /D (example.5.3.1) >> +>> endobj +901 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [296.292 299.598 318.21 310.502] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.2.6) >> +>> endobj +897 0 obj << +/D [895 0 R /XYZ 99.213 706.052 null] +>> endobj +254 0 obj << +/D [895 0 R /XYZ 99.213 688.052 null] +>> endobj +899 0 obj << +/D [895 0 R /XYZ 99.213 529.004 null] +>> endobj +258 0 obj << +/D [895 0 R /XYZ 99.213 272.426 null] +>> endobj +894 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R /F14 847 0 R /F8 850 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +904 0 obj << +/Length 1742 +/Filter /FlateDecode +>> +stream +xڕXߏ�~�_����!)RѢ@{I{ .�%�<Ih���D+��|���ޏJ�m���+r8�_�o8�Xs���1L�t��q-�����Ȳ���e�����\f�t�{X+��Js�1,K�zw�!y��i�u`˙�=W΄J!ԯ��l3��9���"م�a�ݴwR�f�0�֛�� �|�<*�� #"/I����ۤ��TH����;���Z�չ�<�����)��eZ�x�s��O|}@l�^q��b��1��f��RRc��y����v�Ekٚv-���)n�G��`6{�ɦ,/���,e��<������hm�u~��C��\d�r��0t�~#yr�}d�&cy�M9�C�-��n�y�OqG�gǝ�</��� ֜y�hD��R
O~�-k�%㙌�{W�rXȼ�)_�1���jUi'�O*;����a��� �
2��]3�~�u�{c�[at@�V(f� +vt�?�C���� �=���}}��(Kj���wOU�Wچ���cup��F�����6e��۶��3}���y$��UP��} �z�5�:��6 +���zlp��ɒln�p~`�����T�m�� ���
#�@�O0ԃ�5Q^�&E� tt�ެ��vn��������M���CY:���6�)�3k7�T��*+.�,��Jm��s~���L�"�0{;�|W" +UL�2�M���8@(��1pD����0<K_rND<�� +�����4�T=�Ϝ�b����l�J[���/-YL��-�jw��� �����>7�0L��B�RA8 ���hÍ�-!��c:�� +y�� +t���B-���e;�{���؊�,ቂ + +ư��)�ߑ<O�/�"��=Dq+��� (4�S��]0B�K�D�qz"�i� F����8;�:P�ћb�#u{��h��VEV{�3"Ƴ�;��A��M +��R^�Q�@VOo-p����PH�J!����N��������L<�Ja�D&�v��yq�S���Z��d{:y��+ׁ��j�t][_|�o�_�+�v)SB}�����Gx��b�-H�[E����Q.ڝendstream +endobj +903 0 obj << +/Type /Page +/Contents 904 0 R +/Resources 902 0 R +/MediaBox [0 0 612 792] +/Parent 880 0 R +>> endobj +905 0 obj << +/D [903 0 R /XYZ 99.213 706.052 null] +>> endobj +262 0 obj << +/D [903 0 R /XYZ 99.213 688.052 null] +>> endobj +266 0 obj << +/D [903 0 R /XYZ 99.213 601.647 null] +>> endobj +270 0 obj << +/D [903 0 R /XYZ 99.213 469.951 null] +>> endobj +906 0 obj << +/D [903 0 R /XYZ 99.213 359.515 null] +>> endobj +902 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R /F105 774 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +909 0 obj << +/Length 1199 +/Filter /FlateDecode +>> +stream +xڥWmo�6��_�� 3GJ��ؚv[��[�a�"`d:&K�D������HŎ�A�"�w��=<�p�AQ�H�A�SƓ(�v�����4VNeu��S���y+�8(7#�` +��EP�߅�r���_�ǩ�����5�X��uVI���OЊ·��˕��k+y9�M^�e<sv�6eI��տ-����I��/3����p�?Z�W�����f�������ʉĉ�2�H��Ż<X�/��E`̙(�`��Q��͛����Ab��%�d�_�2)�r�i�ʭ���䈙���s|��=���3��L�����v��*�x���[FIxp.»n�ӑ`�w��M��2�Z
��=��+�����/�7[���"��Ӭ6��U��֭�3}��v)�P���f�I���������c��J��z��{��]��Zo��dA�AV���ꖾ�A�j�RO5���Q�̌�4aY���v�����>�g1ˊ|���u�w��k��Sa��1b3:3PZE1+��l�e��T�Z�J~m��J�9�\�\�G�I�ő�݃��4>�@��"�/9$���Ɓj��uRQ4ݫ����(�v�ה��t�$9��-TK�K��~�֗Iq_��"�;Ƭ��K+��a���#�a�{�V�d#�Mm,vD~{t�����P���y �JG`@��:�$Ţ7de� �kˡũwn�,��@���w�r=�ɟ}h1x{^��q�Yu�P���GǍq��˺�a ���e��`���,Y� �K��&8o���:ҵ7�q%��ի�z�f�rF4O�_+�}?�����R� +
c�h�)dJ< +endobj +908 0 obj << +/Type /Page +/Contents 909 0 R +/Resources 907 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +>> endobj +910 0 obj << +/D [908 0 R /XYZ 99.213 706.052 null] +>> endobj +911 0 obj << +/D [908 0 R /XYZ 99.213 137.95 null] +>> endobj +907 0 obj << +/Font << /F72 448 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +915 0 obj << +/Length 981 +/Filter /FlateDecode +>> +stream +xڭVێ�6}�W�>�@��U�&@��M��Ҭ�>l�A+�^���H26A���u�$ha����33g�ÏxR"J��aA�l���V~_�$`~IV��EԓH��K��q�D!�^�����o��!iT�g@�W�����O��[�'~b����]��3�B����@`i,�[C� "��Z�+�����c�0�����v �DL�:��J#WϒN�NS�B��^V�7�ۀ�/W1{�0����+N�"�^��Vv\v-�쮹�p���(8.��#��F1²� �cwN;���c�?jP�ҋ�8P"`Sy=��r��p;�$nm?��,zX��i�O~M��{eqC6"�������x���BU�|YuB�"dƲ�=ք�����Ȋ���`�{�:cf�5��{U6�"��iZ�i��� G�sC����I�晙?�n�<�T�S�5���o;ռS��h��{,�uS������|��S�Ku? +��#��'�L�>�F�����οM�O�FU���Lط� !ߞow�(�&-3uض1��>,ғ-�s���ĤW���M��8'RE��ψ����7��Zݿ +m��{�!o�|�1����S��z�����k�;�r�&����S�܆�9|^�l\}(^��:��
�<ؕ�{6wi�Jg
��Qe����l�3���>n��d�����5��T��v[ +���VA�%S^":�25���v�Qۭ-�>=�Ǝ�<�����c��1�p� +�8_�i��`�Rk!�=�-����wMll��?�mlh&A�^ �N�V:����k�$��O�7��v�W���������+�|w3SI���&<O�e)Z<��WO<�Ч��՝T���]��ťef�/���L̨�T�F[���>�W +�����u.f���
��L.�.�qG�]�xlHP������n�(endstream +endobj +914 0 obj << +/Type /Page +/Contents 915 0 R +/Resources 913 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +>> endobj +916 0 obj << +/D [914 0 R /XYZ 99.213 706.052 null] +>> endobj +917 0 obj << +/D [914 0 R /XYZ 99.213 309.806 null] +>> endobj +913 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F105 774 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +920 0 obj << +/Length 1341 +/Filter /FlateDecode +>> +stream +xڽW�n�8}�W���@�Pu� +?ۈ劎X�D/�>
�$�'psM5H[EqY4U�����V(VQH�}Ԥeih�EA$,tZ����O��A��iM�+T�^i�wɗ��Ie���և�>O�P��;�{fT���,~I����00�����~�!Q1�#<��}�2M/RP=iIJG4-�����Ф�bb|� +�����z{�U��i.YKN�GU�j�/2h#p�Mr���!V����z��F-DuD]�����.hy�I�-f�Zٮ�x�E칿�k#/����hf���:ҳ�u���r���,�(��#Yt
^���9��v�Hu6[���z���+��<���1�m��6��0�R%�~a�$��E�z��1i���0D"�J7��tY5�2���-o�g�1�Y�J���x�ÛQ�o�Z{���j�/1�|�\�X+���M6�]�O����.tW +��J���R�7������+Y�i�ͣ�ү�#G(jƐ˺�����#�H��.X}��u9e��\h>�#�J�b\i{$��nf�2p_�i[=��3�
�$��x�x�C�֘�I���Upx�"��ᵐQ�c������^��넷Յ��&T���^ժZ��F�Q>�"�2���D�=�1"l!��߮����b�&��B��G����rq�Z������ ;��&}�1G~�<E�ɟ�;���8�.�H�|И�_{CO� +endobj +919 0 obj << +/Type /Page +/Contents 920 0 R +/Resources 918 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +/Annots [ 922 0 R 924 0 R ] +>> endobj +922 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [255.497 474.375 277.415 485.279] +/Subtype /Link +/A << /S /GoTo /D (example.5.5.1) >> +>> endobj +924 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [215.844 259.632 237.762 270.536] +/Subtype /Link +/A << /S /GoTo /D (example.5.5.2) >> +>> endobj +921 0 obj << +/D [919 0 R /XYZ 99.213 706.052 null] +>> endobj +274 0 obj << +/D [919 0 R /XYZ 99.213 571.486 null] +>> endobj +923 0 obj << +/D [919 0 R /XYZ 99.213 460.427 null] +>> endobj +925 0 obj << +/D [919 0 R /XYZ 99.213 260.628 null] +>> endobj +918 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +928 0 obj << +/Length 1626 +/Filter /FlateDecode +>> +stream +xڍXmo�8��_ad�U�� +���w�a�uM���^�6�9vf�����ĉ�l(��#��(�q���O8I�<!������X��� +��{{w������x��z�Ks�09��O���7�_��:��Z�E?�ܙJɤ�
���d�ő�(�J���n�RZ�D�X��Fi�=eyNRQ�V5�}.��hBf
>���)�$�. �7j��?�2m��ͺ���MIJ3����8��oee���f �Lz�^b6U�QU�(�д������nS+�l����T�!TXDu���Tpܓ*[gu��~�E�n�Z��?<�Sp$ f�xxIC7E� ��s��MY�*-`�8�a>�<�j�Rxn���#2�}P�[��o�5�R�
�ħp+U7UA��>˯����x��IkXO�ɭ�M5��`�����Ob�~���ϔf�)�Q�f�\��理�f}��`���8��x�j,"��eU�A�����vR�zȘKU/�5�)7MDŽ���R�Sߝ}|�>����e�ײPv�
j�:�U��k�������f��U�Ă႖�I�$(�(��a�Tx�nE
B�-4�DZ��"���z_�ڶF�Tk�)����D[O�ά������8�Z�O�"8^��ā��"�EO;�^�;4iO,=�Ѐ�����ۄ9���zd�~'WB��8t��x'ȴ�!_b�˶�bZ�M��@��T0+�N:o1=���v*��x��L�pP�D�˔��mX��2"c��a7���창��f�BL��&6j���|L�U�lx]�MQ�i� +�K�|���<6m�9�Z��h�y���'��*�m�p��r~�c�ɒ!g�O�O3T>-�h�xC�s���|�+���we�<,��"�3s݁d�USZ�[���[*���M���JG��Tg�P���kT;�E�ڔZ%�ZO t��f�p�q��{�h��0�cC�l�$�=���,^]�.�nn�7��]�(�m��@}"K} +Y�S[<rA��F��ê�A�<@�iz�4��6������!�:�vO�@���YT,�:5q����J!�SlrJ���.x9��PiU�����"@�.
sj�MJ������:K�*5�"�̐�:-��5�R��6�V�]Bu�IH��ҝ&� +endobj +927 0 obj << +/Type /Page +/Contents 928 0 R +/Resources 926 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +/Annots [ 930 0 R 933 0 R ] +>> endobj +930 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [500.997 500.624 522.915 511.528] +/Subtype /Link +/A << /S /GoTo /D (example.5.6.1) >> +>> endobj +933 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [500.997 185.236 522.915 196.14] +/Subtype /Link +/A << /S /GoTo /D (example.5.7.1) >> +>> endobj +929 0 obj << +/D [927 0 R /XYZ 99.213 706.052 null] +>> endobj +278 0 obj << +/D [927 0 R /XYZ 99.213 597.112 null] +>> endobj +931 0 obj << +/D [927 0 R /XYZ 99.213 501.62 null] +>> endobj +932 0 obj << +/D [927 0 R /XYZ 99.213 383.94 null] +>> endobj +282 0 obj << +/D [927 0 R /XYZ 99.213 282.347 null] +>> endobj +934 0 obj << +/D [927 0 R /XYZ 99.213 171.288 null] +>> endobj +926 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +937 0 obj << +/Length 2200 +/Filter /FlateDecode +>> +stream +xڝY�o�6��B�'�Pk%�z��-p��)��\�w��,1��d�գY��7�!eZr�m�@��pf8����ÿ���$~��Q�����<�·E�)V�de��}�x��$t�'b�l�
�C`#�� gS��F�U仞���q��z���;u<�D��C8�
�}�����ީ���9�F��5e���X���1���}�\���h�7j���F-�Z��lq�m1Z+�9Z��Ͽ�NV�n�{L��3�}/��/x�(��j���ȋ�@ou��9�sI�B�K|朹��2�������4:�*�)�me7T��� +��@ݮ������$[}���^�%��#�4� +Y��ʎ�8"�\IT����"�B����U��*��;���A�3��YGs[m�n���[�Qi��g2�2\�4�����5MK��Rܧ�I�DA��~�V�k�E>�� K��TvmAp.y�D�s&@p�c3h/d�Y�����5[%ئ�U��½�\�B��W�شΙt�^:�7����{�]��)�
]2��hC��4�T�/�7��T��*��̤C��*���3�d����&�?��R�q�5Q�4/Z-b^$����h_�p�*���{�����8�YAIL��f�MC�|�F�C����]x)��/�y�/����c��I�������������Q�WJ>9�]�N�.>���"(����I�[�m���n���B��Zh�0x�odC����<a�r� +��[xyAJ� ��xl��09A8�R���n�`q�Lv��� uճ���?OO�H(�ǘq�%�-\Sg-��h�G ĸ!iV�u#&�4�Rsl�rl0���.#�W�����Ʉ�/G!]��R����F����Z*�!
��/@E�1.�����j(�mʴ&�IѼQ��X�Ue�VBRb�����Y�S)>X3͠��Au]�>QRA��<�*���!˕�C�õ�/�j��=�f�K)����z6;Z[��Nbqyj�Q������q���<uz�ٗ�����uB`l�~��������x�V��
�x���
UH h���&���2��삯C��o�nW�����E,N��Դ��T�u����k
X�5U1.�3�Q�9(���Ψ�%u�g�>{x+��z�+$B���߰Ln+�k�Es��~�����K��j%!���i��߄J3JI`+��J���fp���>Wt���'4Qr�� �
�h�>�D�l�D����>����F/ +ew�rg��|�:�
���&�
��Xq�sy�<�W�o�D2�ܙ{��o��TPɇ�₤���&�endstream +endobj +936 0 obj << +/Type /Page +/Contents 937 0 R +/Resources 935 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +/Annots [ 939 0 R 940 0 R 942 0 R ] +>> endobj +939 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [147.376 567.646 169.293 578.55] +/Subtype /Link +/A << /S /GoTo /D (example.5.7.1) >> +>> endobj +940 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [188.178 513.848 210.096 524.752] +/Subtype /Link +/A << /S /GoTo /D (example.5.7.2) >> +>> endobj +942 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [274.043 387.981 295.96 398.885] +/Subtype /Link +/A << /S /GoTo /D (example.5.7.2) >> +>> endobj +938 0 obj << +/D [936 0 R /XYZ 99.213 706.052 null] +>> endobj +941 0 obj << +/D [936 0 R /XYZ 99.213 514.844 null] +>> endobj +286 0 obj << +/D [936 0 R /XYZ 99.213 292.806 null] +>> endobj +935 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +945 0 obj << +/Length 1680 +/Filter /FlateDecode +>> +stream +xڵXmo�6��_!�&o+R%K��I�k�9.��-�Vb���饩���x��;]W"��9>w<�
���Lp��m�lO���6�`��k K�X-��ѓ�0BJ�X���1��AOȤ��{s:��x��|�(�3�:�g�XR�����ss�ڗ�=o�6��z�7�<�d(k��k ���%��J�;��c� +C��N8��i�y+ki�%>���Ju�Y�� +�i���ҷ��@��p*,^U�͕{J`��u&$�::\'������ +9��~�q�p����O$o��"��-�2�� e�QqI�!�Z�
�����s�6�9�6��tL�q��IR��>Sbr�fk�'�gj�N�%�i-�Ow�U�^�|��}h���fi�f�:M��y�0��2���l�Ch�LE��nlhմ����q���d)�6۳�l~�����ɳ#iℚU\,�d�$�T6�..�������oR��N(��:=_��4ADՄMi�F��q��1 �q<�_������cY��?*����]���C��#��&�t�}zf� +-IK`D�M�uKl� ��C��]�Rz�m�ˣ�0�X�r�Ϡ��[ţj��C� ��Ե�G�NB$U��V�FT1�v��W]����a�ٻ�9ڮz���ԙE����-��Ɔ".��deM� h�6� k�"�����:�Z�E���r��e�[s33�!�qU?����K�D���;�Ӥ��4���'h�pg��x-���
�*oK��9U��tB�Y��V8��
��B[�jzܡ�7?qj\+���`{6��Ç�(�ġ*���)���O�VYS��3Ɔ<'�<x�=c���>*z*O?c����3F�<���@v7ў(����r�4�}��9��SU�W7V�ԉhR��*,�YR������oԼ���)D>��ۘ�o�6�JDH�8��Ro'x��Յꨃ�?$(%8�JTC/p�v +�����j�>D]����@�5���!�bIQTNq��E�~�@���I�j��67���"Wկ�#?s���j���[��Q��n���g��^%�endstream +endobj +944 0 obj << +/Type /Page +/Contents 945 0 R +/Resources 943 0 R +/MediaBox [0 0 612 792] +/Parent 912 0 R +/Annots [ 947 0 R 949 0 R 950 0 R ] +>> endobj +947 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [224.966 645.049 246.884 655.953] +/Subtype /Link +/A << /S /GoTo /D (example.5.8.1) >> +>> endobj +949 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [147.307 277.929 169.225 288.833] +/Subtype /Link +/A << /S /GoTo /D (example.5.8.1) >> +>> endobj +950 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [202.4 151.898 224.318 162.802] +/Subtype /Link +/A << /S /GoTo /D (example.5.8.1) >> +>> endobj +946 0 obj << +/D [944 0 R /XYZ 99.213 706.052 null] +>> endobj +948 0 obj << +/D [944 0 R /XYZ 99.213 631.101 null] +>> endobj +290 0 obj << +/D [944 0 R /XYZ 99.213 218.498 null] +>> endobj +943 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +953 0 obj << +/Length 1875 +/Filter /FlateDecode +>> +stream +xڭko�6���~�%�w�蜴H�%i�ڢ�m&�jK�M��wǣd=\��� +�����5���.�:�QZ'z$�\�/�N�C�\s{�G1�έ�!π��7'N5�W�6�S
��x����|/2��q���`|҂aK����1hcrh�h�O����x �9�̉��=���(oF�� +�|=��nh���O��']����C�� d��'@#��<[V��x�бʕJiC�e\��J˂�j"<�jQ� +}.C�9.d9�@��l�V�������r����`�=�5�m�E��5� +����M�V��ea��f�+|ʀC��PC���J�vZm�*�+4���T@,Z��F��_���Z���
=p�?�}� �'��F~k0�Zί�����}�:yY���AĆ����9���!�x��x����{��E$�:N�@��!ނ%��\����x�.�X�1�N@�駝ˤ��Mi7�t�b�pHv1L����q��f����� �g�R��.|�
;�Ab}��jQ�`QO��DjzgA��i�j�B�%�L�aCe�-WE�.��� ���&��B�gC�{0wmB:"��:.��#��GOu0 +5d���S��Y<�>+]A����3����N8n�����rz�8}qq�7��W*W���~vB�c�<��+����ٽ���r]h9�F��͙t�'[*��I��v�Y`Z(W +%� +5-�x�^�]�YkA����މR��K(���T ˶|�l��ݎr��ԑㄴ`��<.�n.u����Z���*����o�$���p�RЃ�p�^c�-�A��'�:�C�!��e�����j����x�w��2�Jo�ܨ��2f�n-X�z���D@a����g`���� +��-z��j +A��G�Ce���Đ!V1�s�& +Ҿ�<D�'::Rru�Q��8M1�4%=5�^��ӥ*��M�ee�
��1V�u�S�P��S�PO�!��n#�^�iW0 ;����� ��c�r&x���5�v{�N=��c[�����<x2�a�p�{����F�-z5���_;�|c�`�N�������>��w��>(x��W��pdȠ���A9̯Kٙ��+::k���4 P�N�}}(��W�� +��_�;�=V�Y�A%\o�G��Op��_�p�$endstream +endobj +952 0 obj << +/Type /Page +/Contents 953 0 R +/Resources 951 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +/Annots [ 955 0 R 957 0 R 958 0 R 959 0 R ] +>> endobj +955 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [484.97 659.993 506.888 670.897] +/Subtype /Link +/A << /S /GoTo /D (example.5.9.1) >> +>> endobj +957 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [262.618 214.663 269.592 225.567] +/Subtype /Link +/A << /S /GoTo /D (chapter.6) >> +>> endobj +958 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.124 136.954 158.042 147.858] +/Subtype /Link +/A << /S /GoTo /D (example.5.9.2) >> +>> endobj +959 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [307.808 136.954 329.726 147.858] +/Subtype /Link +/A << /S /GoTo /D (example.5.9.1) >> +>> endobj +954 0 obj << +/D [952 0 R /XYZ 99.213 706.052 null] +>> endobj +956 0 obj << +/D [952 0 R /XYZ 99.213 646.045 null] +>> endobj +960 0 obj << +/D [952 0 R /XYZ 99.213 137.95 null] +>> endobj +951 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +964 0 obj << +/Length 2411 +/Filter /FlateDecode +>> +stream +xڝYmo�F��_!�J"�K.߂s����$��Q?ڢ�����UIʎ���3;C���W�;���B�I�?5�s?T�$
?���rsL���L �LPf#���g������ϓh2��� �u��N�'Q>��~�.����9���S�J}�#%�?��$��u�7�U�ܭߺ��pv`%�П���8�|�
F�=�P�*W��?9�?����( +L���Ϡ�j�����WE�3_}��]�9� *�u�N"�J(_�a �)w��<��4!=d:~6M���8Tɋtܩ +�ry��9�cP��x���+�DЅ�pk��(r}LJ��N�".%�Xb��$�LO�� #��h�nWP��W �(Ƚ��-���M���i�H,��h�`c*��_�,��H�NF6�=יޟ�|EޠL�;}.cQ���N��5#�8��N$ې�M�Vr�`gSޯeY,�{U=1����Y�h��L�2��r�@?�\
�y�tX�1lW׆�T4¨�Ñ�N�Ѕ��_�1֑](�A!��,μ��9)� +�G�(Y��!6�yJ�i�� +��B��/ex[�]�b���\��^!X��yȁ0��.��c٘n�Ԯ�%q�}��\:�a��#�C=T�(��NUB�}��%���*�-.��?<`gK25��������{�7�5)@t!WfkЍ��ފh�� ѧ���v�zF;�;�ʲ� +V�F���a]\\��-�I��SL\ɟ��B�rH����a3���N'���_�1��n�#���
l�G����Wh<S�m*�"Ic���$ߞ.mE�����MC~Z����͊~�2�QKq됆(��坭m�r��W$mP�r����
apP�1[� +~���C�XqӼ.��Kh�]���>�z��H��F����%K[wEYˌ3�!C�V)�. ʩbt_lM��*"���7gh<�T:Ar�6]��������1��\�r�# +$�)�}�S-qd�ȿ}Z��-Ɨ�"������,�o +�����K|�y(8��ȫ>�g�������('�^��V�����1��� ��� +endobj +963 0 obj << +/Type /Page +/Contents 964 0 R +/Resources 962 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +/Annots [ 966 0 R 967 0 R ] +>> endobj +966 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [460.473 316.251 480.398 326.264] +/Subtype /Link +/A << /S /GoTo /D (example.5.9.1) >> +>> endobj +967 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [132.939 302.552 152.865 312.565] +/Subtype /Link +/A << /S /GoTo /D (example.5.9.2) >> +>> endobj +965 0 obj << +/D [963 0 R /XYZ 99.213 706.052 null] +>> endobj +294 0 obj << +/D [963 0 R /XYZ 99.213 224.064 null] +>> endobj +962 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +970 0 obj << +/Length 1216 +/Filter /FlateDecode +>> +stream +xڵWmo�6��_!�_�bH�}X +�vZ�H7�
]1(��h�%W�����G�/R�l�`�����R��8���L +� +y��/��j���y?���&Ύ�����](��Łkͯ�$��,pck��l�#��6S�B�s3n�G_�H��1\� 7�����}��g��>U����]�F�FL�@�Lx��iu��s՞�6Y~�z���6�x��P�^�IHBeb��r&�3�D��ɼ忭���C��>��*�a��G�=�9ql��!������� n���ؾ����VC +q*vs�V)$$";��Y��\�&ō�k��S�n�&]�EC�?���Tϥ#��ߓ�:��U�C��/SR�ql�
ZY��Zf�#���U�гU�u�U�r?�E��Ӄ�.?��%k,���Ş�Ҝ$M3�9.�*Y���~�.�;Fl|�e��#�# ���*�y�^R�'�(�4K.Fe�Ӭnzt/Y,�ֲڸK���Z�W#��M�i�1ʫ�ӅFYA��n9�u�w��+dΗvyM��a�v�$���td̢Ȥ�uE`�Â�!��5�d�gB�1( +mn��Fn�c��$ܐ�я9��B6&�YU.7H��� +��@�Q�gwh�p8 +p�� x�\ + +endobj +969 0 obj << +/Type /Page +/Contents 970 0 R +/Resources 968 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +>> endobj +971 0 obj << +/D [969 0 R /XYZ 99.213 706.052 null] +>> endobj +972 0 obj << +/D [969 0 R /XYZ 99.213 631.101 null] +>> endobj +968 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +975 0 obj << +/Length 1538 +/Filter /FlateDecode +>> +stream +xڭXmo�6�~��K?̷Ϊ�wK�6ɺI�&�CW��$��r�ui�ߏe���鶢(p�(������8�V�0WxV�C��ʪ��a��L Lj8#�ً_#�JXz����y�|/= ��Z������[-�$B�� ������ ]�����_a/4}�����`��B:�;���po�L$�Ȓ���w�{>�8��3�&���.��&��;��%g���Ӏ���x}�}�ȭ�};��Kb�3��L�j�P�Y�����A��� +O�����D|�%|���v�| +��q +�sGp��6���n������^>D��Rf���S���Z�uN���%l�}t��x>K\2�x(��ЦodwEU�iKL�S=Hb�Cы�U���.��8�m3���g�������Jm[h�h-�n/nTܷ2U��Κ:����W� �����*Ҳ\��}/�[U���W�P$����nx~`�J�*깏 +p�B5*-1�|JFd�+�^b:��;���T^��-�ӢЎ����k��b<ժ�u��lc�"z�7��d���Ђ�,��P\�>Z�%����ҭ9Y�I�.�?O�}�����*����n��[@�(�ZtP�<��~�ã�{
H�2-����K���η�:�0� �)\7s�7 ����p�yn0=]��3��_���4�w/���/i�,�G��3�k\��ڏ�j���3��`^�`��7�~2
&P�Øő?��I�F���8�C�Aw�2�H��K{�+�a���xG�:����ӷs2=oH�%��H&+��`������Qv�t +މ�l����,���
&���Z�uvr���D�>��DvY[,�P4R��;9�9�>�Z����_�M]���NM(G�IH�������9��xo֙�� +endobj +974 0 obj << +/Type /Page +/Contents 975 0 R +/Resources 973 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +>> endobj +976 0 obj << +/D [974 0 R /XYZ 99.213 706.052 null] +>> endobj +298 0 obj << +/D [974 0 R /XYZ 99.213 688.052 null] +>> endobj +977 0 obj << +/D [974 0 R /XYZ 99.213 536.397 null] +>> endobj +973 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +980 0 obj << +/Length 2647 +/Filter /FlateDecode +>> +stream +xڝY{o���_��� +!��y}���/�AIv�)_��ȏ�����pz)��E�f~��P4%��3��5=O +��U?���Uw���׃P~ +�@=��b�r�
ib�s?˲�RE~Ev���C1��i�kU^<�Mm��Uז�L|���,���&�]�3��.��/�T����s?�+��w���]�w\���d�a��'"\��Y���%
5e0��SA���sx�|ӵ;Q̇�/������t��_�z���W���%�.�����W,O�i��+�٤-Z����F�Y99q���|�f�|`pO*�����dĽ?�睛l�q�����v:�4�@0v6��.ͽakh�y7��--����=�3ᰭz�U}?ʂ��j��
�F�3�S +'W��â�V��=�Z� ���"��'+��J�C�ߕ�Uͺ!xiJ�o���Q���զ��0z(�SD^���?�}dX� +��G��>�k��RH���x�Ѭ����[-2�[b�[��E�E~�%�V����E:�EY5L����#}g��7tImE�MD�xbo��a���O~�2�́K�/��m5ly�59��}5����_wՊ�����M�j����9�R���q���ڲ�Ri� +k��D��BE�a®��[E���o�5:ଋ�~@Q��̹���N�+3 ƒ@P��M�5g�g.&�wm�$�Fݴ#�mM����{�
��'W��r�I�ڱ>�/����)�i�r�1,�3(��4��c�%#b�}��t�SF8�vldoJvvi1�h��
s�kG��I +�~\-���
��`,�V�� j� $�I�QL��iL�?��n���5_p��[1�ꟃ�JEF@xKP������#@S�f�;���_d��(7-�k49�|8R�a��^���6���?q��`��V�yʵC۰N鳒�O8U���1��sU&R��d�{��I�0E�O�t#�� +5��02EWW��4��seE �\�q��-���%����=��{�����z�T��Nj&ক�ʶ��\����]g�-�G�0�~hO�tW�kh]v�p?���j��Yp��IoD�0�Z$�scO�b��֮����S%J'��:^}����mi�i�@ȁOx¡��*�I�g��E��lǺ�)�F<&7���Y�� +r!CBAM�6<[��\ +�ōo|6�Oa�/..���B���(O�Z%�O��i˩��Z�?�m-����t��އ�x��,��e"���3Cw��D�U�u+��a�ׅP�.[�.($���'u�;qA[�Ѓ̵�;ߢ%��+H��G���S�͛�� h�&�sec�ͧ�CJ?j���
UkN��sE�K����a %��h+ԝ +���q�Oc����K bs� +endobj +979 0 obj << +/Type /Page +/Contents 980 0 R +/Resources 978 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +>> endobj +981 0 obj << +/D [979 0 R /XYZ 99.213 706.052 null] +>> endobj +302 0 obj << +/D [979 0 R /XYZ 99.213 587.806 null] +>> endobj +306 0 obj << +/D [979 0 R /XYZ 99.213 239.049 null] +>> endobj +978 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +984 0 obj << +/Length 1651 +/Filter /FlateDecode +>> +stream +xڝ�n�6��_�9���)�6,ڤ�R�i�xC[���je��F��!)��eA�<"ύ��PLJ?�)a4pb?"~Ȝl>�p�Ϡx�'��ɳ�9)I����:� b���(H�i��=���>�h1Ic��`�N��xs��+���T�O5����EH����}�(\�l1JhJ
.r����ѿ/&��D������ӔahN�z_+���io�ަ!�B���e�����`��#�i��샒�3q��jt=z��³�A�]� '�O�Ǩ� ��;ń��Rv�x�,q�V�ݯ괨�s�[<Y5Kd9_T+<���D��I�ດ +�4,pY�V̋�h��1Le37x� +ȗ�?E�̈́��+����V���=j �������d�xʇ���\��ӉG���b���@�k���K#��1b�p� +�/#��p +q�xrP����b���o�)�����.Y3_4��
�B\�1K�B��@����j��ij�cQ�~��\V�)頣���fȭq�����XU�u^��*_[Qƈ�UB��q�\>�?�H�h�E�v��q�[.��է�Wo�?\��O���6�
G�^9Zvg�ӽ, !��yQw����\<��OQ�csz�=T��x������:��PȒVu�$�����38�*{@�M��e'@}u�M�ĹJYP��+�ez�} +��U���`��f��$T>���0�,giG�ј�0d4ñE���"we�3%�i�:�6ø!�z:��WO-�R��F��|���&�ءqL"��]� u��1���l +@ +�oU�H
fc�O��(ot\T7b �CtefR�C�j*�'+�lY�3�(��|�X ۢ*
�\H5��}��a2R�p`o͖�Y��u��豭FHͫ:�q��� �<�fe�#����E��;?���($ +�k?��x4H����a� YX�3a��N�jD�,zR��p��6��*�����`��n�Pv;�=�����L����Mm��9/d�;0�c3}S�c����raJ�4e.S�GsKC�~ �i�=����,�W�:g:�=U_8H��W���#5�PPȋ�G���S��=�[TC�G¿o+�0_����DW&endstream +endobj +983 0 obj << +/Type /Page +/Contents 984 0 R +/Resources 982 0 R +/MediaBox [0 0 612 792] +/Parent 961 0 R +>> endobj +985 0 obj << +/D [983 0 R /XYZ 99.213 706.052 null] +>> endobj +986 0 obj << +/D [983 0 R /XYZ 99.213 646.045 null] +>> endobj +982 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F14 847 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +989 0 obj << +/Length 772 +/Filter /FlateDecode +>> +stream +xڝU�o�0�_���!��#�4�@�
�V$��Ch��R�lm�����}I��i��}w����Y0��`ރ�9n����;�|�I�$�oɼe�>8�<x���6�h+ƃU��&�3�
@\E\e{boF�āwC�@�A�+J��y\/��\��S\G���������yǐ�qO"��[9M�.wa��TR<߁���!���q6T<z�<1�p|�o��O�{�Z��Y�S<?�` y���lR���Q�fA���\R�v���B4�u�qCJ +�C�r+w��h,;u���kt(������ �i�A����� �g�LK�
�H�Yv�}�������8�H8P�l��e5�B0Y����n)W@��^�8ˍ�B��0Q�#L����(PE��/���F�mrk +p�m]0���pu��+ˬC��W��n���%w�h�x�^s�z�5���|HĢ�W�D�ˊ����:,�31g��#����'��eS�`'�/��Ŵ�t����,�
�0���^M�v������!!Щ�)D�r�. +�I�x�2�Ö_V��2��_���ץ��/SR+5�D�\/.< �a.16��~N��e�3]ܑ�$R���������`�����G�i�L�[=�c�F�m���,����j&�X6�٪0+@ȶnެ"�����8���bY�]ͪy�h�?&�w�_X���>Ը���Nyq�填5Z˻���)��,0g���[](�B�}�>�8�I"�Ԣ�-#5h4��i-�@m�#endstream +endobj +988 0 obj << +/Type /Page +/Contents 989 0 R +/Resources 987 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +990 0 obj << +/D [988 0 R /XYZ 99.213 706.052 null] +>> endobj +987 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +994 0 obj << +/Length 270 +/Filter /FlateDecode +>> +stream +x�}�=O�@����!�w��xT@H@�SՉ +:0��q.�� +E�|���ul��t�!QD +�N��C+��V��H�bn���K%2�w��sR����on�C�,���Jh=��X}h����5�&�|S�ץw��swh�@
�,����Y�b+;)E}W�cˤvgN�殧3QA�V�s#i6y�زӀ1�q__f 8�n�����o�I�8�f��?�`^��a�t��Ё�����=���� Y��3T�,�����<z����~ +endobj +993 0 obj << +/Type /Page +/Contents 994 0 R +/Resources 992 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +995 0 obj << +/D [993 0 R /XYZ 99.213 706.052 null] +>> endobj +992 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +998 0 obj << +/Length 1394 +/Filter /FlateDecode +>> +stream +xڥWY��6~�_a�I"���"�IӢ�m�ާ��L���U�J����pHߛ-X��83�8������e$x<�Y�T̪���a���H#^f0���"�V��# o�7/��L�(���r㵤E�<�-o�r0j\�"eA��c���$Q^�x���,���pYm�?�k�hwB�ʨ$%x ����}��8 >/D�fR��uG_I��4r%���
���}����[me���Y��@��m�f�F-��rQ��I��a�<���5�qӏ��*�W� +��
!噎��qM�����[Y,$�r�FЉ�YwJj����@��d���������"a��-�X��-�V��D ��{B���d�A]k�e.)�ݠ.�Y�"
4D+l���`�e�j�i,i�j�v���v19��#,��oj��ai�;}��
���홏��LTB(wU3�-m%?cH�YB��K�H+P��<x#�`�W�3,@��!hh�%7M[���J�١t���@�E�f=�ŕw�c�0ܣ�9��E�{[lӣ��Tp=�lf���Д.�sT�� +�S�}g�(;r��w��ڦ<�-���P���YS�K�E��6T�'�K)!��*�[���A���\��w��o{��endstream +endobj +997 0 obj << +/Type /Page +/Contents 998 0 R +/Resources 996 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +999 0 obj << +/D [997 0 R /XYZ 99.213 706.052 null] +>> endobj +310 0 obj << +/D [997 0 R /XYZ 99.213 688.052 null] +>> endobj +1000 0 obj << +/D [997 0 R /XYZ 99.213 372.321 null] +>> endobj +996 0 obj << +/Font << /F71 445 0 R /F72 448 0 R /F85 483 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1003 0 obj << +/Length 2190 +/Filter /FlateDecode +>> +stream +xڍێ۶�}��H_�"fu�nM��MڤH�m�A���%�V#Y�.��|���e��.�VCr8w���
?o�����E�F�
�EVݸ���z�1ƊQV���o~�%��H�`��.�4a��TDA�X矜���o-i�X��d +zD�8�l��) ����yz���R���+��0�\��tPD����-�_��zD� +��|��mA�@��ͮ�[�SΈ��������wa[o�NUC�X0y� +8V=����k����pt�����b�
�)&箈|���Zb`�0ȋ.:J��$��ƁìT]��B� ����ݴ +���F5t=AF��
m�E��3T��(�Ä�����]B��.��B�l�U��m1�Tf +c�S��zΚ +:�,�+� +̋{簤8`S�G�L��ѼՍ]!��_�/�8������ۡŇ]G-�Wx�O�y/����rЄ��P4�3��~�Lܽ�# +|� +�������Ǒ�L�H�Z +���@a��~#6*���!�,��7�Кg�F�O�(��G3��̂uZ�� �1:���L�p��Z��H��+�������QB1c�d|e]:�J��@�ؤ�IWxn��8�ylR�(W&E,F�L�O1'�K��&�)������Q�?�v�!��`�Bz�ɟ�O(�_��yLF"(`(/��J��Ǽ�gendstream +endobj +1002 0 obj << +/Type /Page +/Contents 1003 0 R +/Resources 1001 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +1004 0 obj << +/D [1002 0 R /XYZ 99.213 706.052 null] +>> endobj +1005 0 obj << +/D [1002 0 R /XYZ 99.213 601.213 null] +>> endobj +314 0 obj << +/D [1002 0 R /XYZ 99.213 486.186 null] +>> endobj +318 0 obj << +/D [1002 0 R /XYZ 99.213 329.1 null] +>> endobj +1006 0 obj << +/D [1002 0 R /XYZ 304.77 187.998 null] +>> endobj +1001 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1009 0 obj << +/Length 1536 +/Filter /FlateDecode +>> +stream +x��XK��6��W>�@��!�R�
��v�$�f���@K\[�%e�����P��vӦ�X�y�pH~X�1��^��Ko��E�˪� �yƝ�ҩ,t~Z�?_ /
�Xz�[t�ܤA,So�����2b~`�@ǜ���/��*HWh-�*J �=],� +)��ՉC$<v�W������C���������>L�B��^���cv��26.��Clʧ���ˡ�/f,�i�����^5!e�Ѻ���~}��V�� �`�J����}:ݯ0��* X:nWm&�4�K?f*��WM�K��1��/�{��}�-ܷ��b�ʪ}�+]w�+��b����9Y=�6y�iyKi��۲owWu��g�B�s�!�c2eg����/:�;�·ÃUw1/�V��
�:��n�}�����O�D0��cW��=�}O��U�/�ϰ�7ş��(M}hTl���h�a��8v�xں'�'J�<+R��K)��W�I�����&֔���4�Κm
Y������9��o!�����B +�S�ij8�"���np=�#��xd;�S�+Wܞ
:�c�N�]��-����I�o4}[m��5�P5}���Ն����4zotEAߜ�͖t��U_�j�W��Ks뾛?tֵ���1��2�;�΅ډ���:����|��)Ƕ7�SuG�nG�"��R5@ʕv�c��v��`���rn)s�3b +j')A��bݚ�r2����tgFE8��l��S��*c_�P?�k����q��4�����3�V�2����)8Ŷk�B\Ǯ�lG�����M5x�
R�9�h?:��k�s��d�卹`���i��^�m���ÍJ�9d��E��p��"bp�<�zo���֞��W���L�X�d���,�C��O��-IU�L�.\]M\b��u�d��6��v-qP��ei���<nw�h��p^��S}�,�4��d3U�'�9������חd�
&�;�UP�0C!��o;]������(W��6�w_�p�IN��lk��t��W�%q7N�a���
�3wA�1���qG��������ir2�m��Vm��^u�)uKwt9�@
rm�K����^�{"�.��83�o��|ps�2��Ƿ+l���0� +�|:2�4���D +c)߱�W�0�n\/�A�3��g(,Σ(�l�gB(Ț��q�&(�덓��4�Hex;f�xJ,fEs8���8����D��D�8$�>��Ѳuz�A���'`n���;b�A0o�'<�'>�O�D!��ϚI��5�ŀ'ز(z(�{;d�Hݲ�%endstream +endobj +1008 0 obj << +/Type /Page +/Contents 1009 0 R +/Resources 1007 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +1010 0 obj << +/D [1008 0 R /XYZ 99.213 706.052 null] +>> endobj +322 0 obj << +/D [1008 0 R /XYZ 99.213 480.785 null] +>> endobj +1011 0 obj << +/D [1008 0 R /XYZ 99.213 355.007 null] +>> endobj +1007 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1014 0 obj << +/Length 396 +/Filter /FlateDecode +>> +stream +x�}S�R�@��W����=���RZ>�����(!e���
�D-��w��{�N^�Z�K3L��������D�8)9���`���Jk@�u,ii:}.�I:�h1ظe���D��tFF�x��C��:���,(��6a�Y +ƕ�l�u�Q��*�j�ʪ�O�4U�=���v�͗�J��U�z��/=?+�ԫ�ڣmY�ʅ�m��l��U�;*���8
L&� +�Rݻn|�)�����8PN�=�EZ3m���:u���|endstream +endobj +1013 0 obj << +/Type /Page +/Contents 1014 0 R +/Resources 1012 0 R +/MediaBox [0 0 612 792] +/Parent 991 0 R +>> endobj +1015 0 obj << +/D [1013 0 R /XYZ 99.213 706.052 null] +>> endobj +1012 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1018 0 obj << +/Length 230 +/Filter /FlateDecode +>> +stream +x�m�MO�0���>���8߹�$���!�X%�Umw�ߓ�nL0�[~��� xzޣ ��Z�zWq�H�UE3��F�&�W�L��{` +���YZ�� ��䢝C��浾۶��� �kۼ��ң�:�{80cP$Ɍ���]�.����� ��/��h
��O������7%��埶�X�!~ƶ�z��E�E8o7��$*RWן ����/��0�,�g��������)�]�endstream +endobj +1017 0 obj << +/Type /Page +/Contents 1018 0 R +/Resources 1016 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +>> endobj +1019 0 obj << +/D [1017 0 R /XYZ 99.213 706.052 null] +>> endobj +326 0 obj << +/D [1017 0 R /XYZ 99.213 688.052 null] +>> endobj +1016 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1023 0 obj << +/Length 267 +/Filter /FlateDecode +>> +stream +x�}Q;O1��+<�3����G��,��D���8i�@P�H�/���H������H�3���L��鈱C����ή"C�,�Wp�H,2��P�[�ve�Ps����YѬӛa�ϥ�����e�f��`:;��0z�X�/��A�����S���j�m�_�0��r��M3Z�zW�jY�d��<�j.j�#�K�+Ehs�O� ��c/]���j�ֳ�q��:�� !��r�wWɢ3�䪬�1Y��H�~�̳CG�e&�/$�tendstream +endobj +1022 0 obj << +/Type /Page +/Contents 1023 0 R +/Resources 1021 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +>> endobj +1024 0 obj << +/D [1022 0 R /XYZ 99.213 706.052 null] +>> endobj +1021 0 obj << +/Font << /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1027 0 obj << +/Length 928 +/Filter /FlateDecode +>> +stream +xڅVKo�0��W�h�*��k�m��a�>���s��V��ߏ�GZ7C�(��I�"?�%�" r�1�ʠ�=��
�>�Bɔ�2ye3N�b��A���|sv�*��,˒`s=��E�D������N�m�G�LyXD?7��G���чq�1 !��m;X�4ښ�%�nI�T��~ + KT���$q +�.�q�������0���L��d���Ӄ0��|���t���x� ��0��c���f���J��1Q�6N�M�
�Ƃ!R��b�����2�'D�DR��mNB��� u�1 [3��\E�d���iq���������?�7� +p��l�Gɗ�}�]u��[;�M"X��!�%ϠU�.rl�i���y���þ���Q�pR���FVF7������0v��.82r��g��Y�z~��b��}�|�����('W����ܴi��w��.% +]W�+����++`N�Wz�@�ߒ +hpM�o���K�u_�&�r�5pn��fXli.�M���#HL�|�ˀS�Ĺ�4�@_�4������۽X�
+�Ø�"2���/��pW_���Yd�ۀ������$x���B.hi��>b����G�� +�`����~����J]�F <�.�^�lA&@V-�����fc�X�Һ1��E�Q>G���̞֮�%�"�q�0M�32�;6��ڝ���� +��w�Y��{3��M�c/B�0%�Ɂ8�<O ��*� HlZ��s=D�Rcq�endstream +endobj +1026 0 obj << +/Type /Page +/Contents 1027 0 R +/Resources 1025 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +>> endobj +1028 0 obj << +/D [1026 0 R /XYZ 99.213 706.052 null] +>> endobj +330 0 obj << +/D [1026 0 R /XYZ 99.213 688.052 null] +>> endobj +334 0 obj << +/D [1026 0 R /XYZ 99.213 477.043 null] +>> endobj +338 0 obj << +/D [1026 0 R /XYZ 99.213 383.023 null] +>> endobj +342 0 obj << +/D [1026 0 R /XYZ 99.213 242.328 null] +>> endobj +1025 0 obj << +/Font << /F71 445 0 R /F72 448 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1031 0 obj << +/Length 2173 +/Filter /FlateDecode +>> +stream +xڭYms���_�o�fN(@ +�w��6�Ȍ�u +au��[���^�v�]Ps�p���4,���.W6M���������m��s�{�L���red"p�L�_l���m��!�x�{hś~�|X�.4߇��a�v����\,OE�s����,`4�x��x�4����Wo�Fs�1������b
���J +]�GhK��b���R-�������q-��5�[�f"�����#Y�I��i����*5E2<T�ȓu�]}�Ler�v���1IOJ}{�ʊڛ���y�;V�LJa:����@�[�i �f���d�"�����~O�7�ސ��<H��t����R�(�,\�x�W�*�ӷh��Iwԭ�{��A義�� �T +�䒧�@*�u���]U��5�4��Q������i_�$o7$��P���g�2Juϫ��M]�9.��h�ho���wO��w��r�F4��� +�,;�Ì^��/_]&��Ɍ}��*XM ��������b�����Og"�@L�������&:���*��� +NjR��Q�r����d�_���u���%�6�5 �ˡ1��ژfAZ������|�C~���C��U�V�2�y�[�e'.M'�yQ������m%� +�Xy}�:Ѓض&D�Q�����*�&��6Rɦ�7.�x��'wA����������_"�| +Iu�e��Dp���Xx����[@>_!�nW���Pe�im��\�X����K���M܁�`lLo&\���7���u��K��:��|�Blc��|(���� �Q�w3���s��)��3�ׇ�̳��C�%�;�J�Pz�����B��}��%L��K�⣒�I��F�|�T��g��W\�8#�>��@u�#~��8����
U+n�g��P����t�>Ϫ��vGm,��*k�s��B�=��Z�X�9Nr��R�k�|��o(G����V��"h4+�7�?8_��_�.)endstream +endobj +1030 0 obj << +/Type /Page +/Contents 1031 0 R +/Resources 1029 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +>> endobj +1032 0 obj << +/D [1030 0 R /XYZ 99.213 706.052 null] +>> endobj +1033 0 obj << +/D [1030 0 R /XYZ 198.293 648.887 null] +>> endobj +346 0 obj << +/D [1030 0 R /XYZ 99.213 597.378 null] +>> endobj +350 0 obj << +/D [1030 0 R /XYZ 99.213 379.359 null] +>> endobj +354 0 obj << +/D [1030 0 R /XYZ 99.213 239.818 null] +>> endobj +1029 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1036 0 obj << +/Length 1705 +/Filter /FlateDecode +>> +stream +xڕX�o�H���"�s$�ه��^�WZ�М�N�7٤~�i��]lj�"�ƻ��y켶b��' �B�#2����v^���Z�i����hv�qP��+��C 0 U2�/?y�dp��_�ѡ���ɗ�s<bI��e�b?ix�t��@9�N�����|7 +�gJ� +e�_����G���jĄ�P/
�{�t�����,�m~?�_k����a|?�F���b_$�Õ�%�����gT�l��n\~}�Eq�,�9,��n��<��L��r�ᝳ$N:����t����L�dk�@������.�B0@�~}���K��7#�T����d\�| +���`IPK�u�ڭ\�� і~�{��S�x��]�6��^2�C�m�����凨�Tp��q4�c���3���!��!�,�NN��C�������8��}��1�C�f(�tu̵#���D�_WD?��������ň��0�,pf�Ͽ� +{�LJ��� T�\���Q�-��^�p�����CZ��A��;�<ڕ�ױ������O�1���+��!}��c�.������$��uA�J*�& U���&������pX_UyNΧ����Va� +n0 +X���qb��x���`�p,(�ũI��a#��T���;��t(��!T�I�/��'�z�Z�5��_W��H�3I��ى�� ����1����>��+���|hYЈ'�����=4YP��H0~DK��+�Gl�G�v5��N~?�p_4��3X� K@|�11���}��"�؋Ʃ���Z�\� �v����(��p�@FZR�\�u���?@��?�s���ȫE��VM;ku� ++eFb��̜���}[���Q-i����x|tJs�\�=�f���4����h��������a��A7v�f����`�\W��-$^KOI��K�o�R�nu�(�c����O��l�{�����^�J�?w��'���*t�f� �Tn�V����
�vD��,dvN�A����[;�4Jz� +����}����}��1�i�H�x0Mbpq����(3�U�2]�G�ٱb����іe0f(x4��.4'��J��۽�endstream +endobj +1035 0 obj << +/Type /Page +/Contents 1036 0 R +/Resources 1034 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +/Annots [ 1038 0 R ] +>> endobj +1038 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [411.485 534.214 433.403 545.118] +/Subtype /Link +/A << /S /GoTo /D (example.8.4.1) >> +>> endobj +1037 0 obj << +/D [1035 0 R /XYZ 99.213 706.052 null] +>> endobj +358 0 obj << +/D [1035 0 R /XYZ 99.213 600.815 null] +>> endobj +1039 0 obj << +/D [1035 0 R /XYZ 99.213 507.38 null] +>> endobj +362 0 obj << +/D [1035 0 R /XYZ 99.213 219.121 null] +>> endobj +1034 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F85 483 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1042 0 obj << +/Length 1824 +/Filter /FlateDecode +>> +stream +xڭXYo�F~ׯ �<P@�ޓ�'Hs� �4�Շ"�-Q6JTHʉP��wf��l�{����7'�G�yIB8^DCB�� ��`�� ��% Z4��&��#�%$ �7[zBq"U|�ě->�/�_fo5YD��"¤ +N-��ԖsZ5fT.� +i�Q"�5� �L�#�ˆ�QѢ +b������p�B��ҦMS�SN�mp�Z� 8$^((�P�]g�2VJ�!�{T��H +�5����A:�g�X�G�K$��YUV��ͳ�U +�c�5�����G$�xmw�r���X��[���p�!y�ߌ��#^Ʉ��������g!��x��T�(�S�O$F��9��4߽t^�x1���=�]�n(��3Jx�$���}gc dR�^4|v�IDc��'w�G&D��hz̢��/MD��Y�+�C�RL�`-e A���#el���6X�S�Y��2:.�4�YG��Y=����>LIH8T�aa�8����X���3�+��>��!������S�vc��h��H���K�v�=��Ŧ4uqN�̏�
������5]i�_�yQ�]���_V��m�Wټ)+{K�D�l��2�g��i�J�J�o��$��(d�P(�AC2�grَ���h�� +endobj +1041 0 obj << +/Type /Page +/Contents 1042 0 R +/Resources 1040 0 R +/MediaBox [0 0 612 792] +/Parent 1020 0 R +/Annots [ 1044 0 R ] +>> endobj +1044 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [459.03 645.049 466.004 655.953] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1043 0 obj << +/D [1041 0 R /XYZ 99.213 706.052 null] +>> endobj +366 0 obj << +/D [1041 0 R /XYZ 99.213 631.471 null] +>> endobj +1045 0 obj << +/D [1041 0 R /XYZ 246.477 547.817 null] +>> endobj +370 0 obj << +/D [1041 0 R /XYZ 99.213 209.931 null] +>> endobj +1040 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F103 753 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1048 0 obj << +/Length 1771 +/Filter /FlateDecode +>> +stream +x��XK��6��W�T*.�$� +&Eg���8$�(����Lx1���[�'Ի���'�Q�$���4�\�������7�F6aā�"�P�|��Of��>1���G��/g_�o��WsE�0i���H�3����rXD8W��퀑"B�-� ���i��e��\A~��1�6\�N��W�M����4�n�}m���wC�Q��贈��D��_
�+��m��F+�r�\�[��$ˀ���|�B���̈́���)aJy�I�%�b��O>M~kyٹȳ��"%�.N�����hFUH��6�BUT��nP��m�t[[]֙���V= �����D���${0�~��bW.��t���33��dYl����eD��$���.�ɇV����U�/��EUO��]���%��f��ΐ��M9v��/zf�T�$l�K�Q"!�ȥ��;�CǑ�1������A�泄��"׳�C$D<���y]��bƩ��ueg�kۂEm�w��j�6�[3>�!Nx9B����}��L�D&^g?�M'`INW��+"����\ �`�S�^��{��@!�*)��!Wb�1��QpX#��"`��}�0�-
���蘝WCb���K]-�l[g�f�2Xp�( +��X��/��[ yt��I�Ҙ�Gq��-�+���H:���h���ёܸ5��<6�}��ev
�'\z��q�.;��<w�uaۅ�t�W��]��UV�e]�NJ�s +�x�cx�=�"�jS&��cDIٹ����ܓ +כyS�3(� "�D4U���_��*�eS�� +V֦b�@KK�t�SxnTZ��$�D$ǗI`i��w��X��T��g�q�*Kh��ZoV�%6��!��I�;�e�M��,�l%��� ���f�;�> +�@*���t��r:�`��l�,p�)�\�ɏ&;�ʀ_ �w*[|=Je4�mZ5O�vo��KƓX +T>���L�B_�=��c�f� +endobj +1047 0 obj << +/Type /Page +/Contents 1048 0 R +/Resources 1046 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +>> endobj +1049 0 obj << +/D [1047 0 R /XYZ 99.213 706.052 null] +>> endobj +1050 0 obj << +/D [1047 0 R /XYZ 252.454 591.036 null] +>> endobj +374 0 obj << +/D [1047 0 R /XYZ 99.213 399.786 null] +>> endobj +378 0 obj << +/D [1047 0 R /XYZ 99.213 210.922 null] +>> endobj +1046 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1054 0 obj << +/Length 1962 +/Filter /FlateDecode +>> +stream +x��Y[o7~ׯ�5� ;4�CM��$mSd�m��Kۇ�4������M���}?^��(�Z( +5<sxx��\H���%��D�QM���l5��{�|;bQ"�"iK����7O,�Z$ӛD(N�ʠ�-l2��<~1�u��ˈ͜TF�P�f�����������S���?yW��,����f�*:&�
:~�[�e��J���x�,.��?x̀��������xSd2ʿ��/��N�0q���-p����z�|�S�:�G����k@�J:g��+M� +N)ɠ>�#B�����*����q~�,&)��
�O�o��|��.�'���wEf77�{w[êZ;c�p<N�j���._ϗ���pA6J�bU�w�HD�LZ����=��r�e���Dhs�4<L�$VC�(t�Q��SŸ�A
%�ԭhe- AU�V �ht���f�?�G��01*;n��uL|Y����n�ج{�YM8x|VL[�K���c+Q�:ծ(=�-�4�v\'*l'���q. !mt=²�=�ځWC*)�����)�1�w�&��`���~�����ݞ:/������ +��h�� +'��m�%�F��x$Ldmt�d���Lm4R�Oszh� G�<�E�F������qvҒ��.�f��.Z0Bq$J�ͰS9�E�<kI��N颱[��1]tPv�DcB0�L<�EW��c�@F��Dޗ�=KY��ł�9\�2�8 +�Ư~�Ww�F^R�H��J��)7�}%�٢t��E��� +5ֿ�r7���v�f/�_��8ƶW,o7���苰{�V��^����W����ò����� +%x���o0S��3��
�~�`�;�k�s��C�+��r-�&�Ϣ����R�%b�4j����詢endstream +endobj +1053 0 obj << +/Type /Page +/Contents 1054 0 R +/Resources 1052 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +/Annots [ 1058 0 R ] +>> endobj +1058 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [406.22 395.281 428.137 406.185] +/Subtype /Link +/A << /S /GoTo /D (example.8.5.1) >> +>> endobj +1055 0 obj << +/D [1053 0 R /XYZ 99.213 706.052 null] +>> endobj +1056 0 obj << +/D [1053 0 R /XYZ 243.488 686.279 null] +>> endobj +1057 0 obj << +/D [1053 0 R /XYZ 252.454 530.081 null] +>> endobj +382 0 obj << +/D [1053 0 R /XYZ 99.213 439.633 null] +>> endobj +1059 0 obj << +/D [1053 0 R /XYZ 99.213 381.334 null] +>> endobj +1052 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1062 0 obj << +/Length 2342 +/Filter /FlateDecode +>> +stream +x��Z�o�6�_��a8ѤDRb��&N���h�{J� ke[W�j#i�����o�C��7Fn�F�hf8�ᐲXp�c�/�E�5��_$�3���'?� ��9���������_ft���E1R� �0�����2Zy�/��U
�_>_}��ž2�۾a��@�w���U �jz�f�o竑 �%r<�/ߢN��//-�n,���FRC&d#�����Jz��^~�C����쯛�/����z�Y����ɾi�LE�=��ʸ��^���BڮP����!x��*��3��g�?�����g�����L�I_�����췃,z���ROL>\2Jx�Y����Q��t(X�I�5L
��z�e|��+��GL?]y������f���N+zZ�ҵ�O����c�3�����qWžL���%��w�i�n�m=�� +����9��t^R�f=��W�9�� +�0��9��lb�Q� +l�]�`g��xW�71�B��;ʹr'N���sﺧv��및�?��F��>-��������6D͜��jp�s�Tt8�����u*Q��w��mJw���8��qN��o�Q��}�ڌ�q�e��GzWI�ޗ��DwO0.x%hX=�]�%1�:�.� 1q 5Å�ӝ�m�,A�>G�i�,n�U���f��ո"�SӈE.� +a���^��V<��.��pT�N��A7{����GVz����O��3����im$��[���uf�C���.�@��v*�3߂F�S� +�ɩ�F���A]���f��� +����@�}����p{�Q%�l�=��E��tjg�s\��oqQOcu�ubo
K���l�"3?�:0�R��p�����hLcUZӽ�cp�'5� +�r\UO���4�`��8���ײ�����qtS�}��D>���c���j�&t>
�y2��ڥIv��>Q`k���r`��|�{�� +
`/��c�C��9�I�B��+|��vB��M̿y���'�Ks0�SJw�;K�n��e�EZg%�E�@���xm�9~u��
T�/Kl�Ib�;A�ʦ5��Ӌ���w��U������HI9���b���~����w�E����qI>�H�b��ٟ�������#�<��|�?z[�}24�M��{\@�>l#E�����_��L>�=e�>��?\�vs��G�(`Rȣ{��eTf�Yt��j5��J&����_�(�sendstream +endobj +1061 0 obj << +/Type /Page +/Contents 1062 0 R +/Resources 1060 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +/Annots [ 1065 0 R 1066 0 R 1067 0 R ] +>> endobj +1065 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [494.815 423.501 501.789 434.405] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1066 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [136.09 324.871 158.008 335.775] +/Subtype /Link +/A << /S /GoTo /D (example.8.5.2) >> +>> endobj +1067 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [230.489 309.927 237.463 320.831] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1063 0 obj << +/D [1061 0 R /XYZ 99.213 706.052 null] +>> endobj +1064 0 obj << +/D [1061 0 R /XYZ 246.477 686.279 null] +>> endobj +386 0 obj << +/D [1061 0 R /XYZ 99.213 467.722 null] +>> endobj +1068 0 obj << +/D [1061 0 R /XYZ 99.213 310.924 null] +>> endobj +1060 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R /F97 676 0 R /F105 774 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1071 0 obj << +/Length 975 +/Filter /FlateDecode +>> +stream +xڥVێ�6}�WA$��y/E M�M���u��$�͵�j%E�wc��/��E��!93�9g84I0�H�5��%���ng8��ί35�Ot~^��H�h�K7 +(�? ����]�8��x��$��iID8�n�i��>��7�%��������q6Z�,/p��N��D$Rb�}�=^�3����/b�m��g�����I�_y�'�)�S��X +{" V��-(G�srUqL0�$�B8P�c��ziZ� +��0�4���"p�ȈJ���C��!'B�B.��r�y:l�`ڶ*Wf(�:,tM3 xv��0���ں��h��خ˨�:R�1�6���m�qZ���Y���g9�E�6S8�K?i����eg�=���W���RN:�_�Aei�!HC�]o�`� +�s�tG�[�W�:lIG����Arx�q�5�&y4����T�TU� +o̱�}kW�]��\&�����O��p9�� +endobj +1070 0 obj << +/Type /Page +/Contents 1071 0 R +/Resources 1069 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +>> endobj +1072 0 obj << +/D [1070 0 R /XYZ 99.213 706.052 null] +>> endobj +1069 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1075 0 obj << +/Length 1340 +/Filter /FlateDecode +>> +stream +xڭXێ�6}߯�[e fyѵoI��)`۸@��\���ʒ#J���w�!eY��(Dc�p�<3<-[Q��VYF8��ƄF|��jo~x`�,���M�C�l�yx�}�����8%q,V��)aI�����S�z�#d�?�?ᜐ$ib���&� ���.�=�?����<����#��N�� <�+��H�э'A��YOۃ��M��0^?����Y�(�RJ�Ȯ�ݪ�u�v}�weS�oL�ہ ���ESv�Bٌ0��h�E$����l���4ca"]��1�� +��>��}A��hY�U_�k�3����\BU�N�Fn�(����"�g�M�����9GѮ�
�ϻ};_\V�@�~(��?ͬlE��Y�L�s�/��K�B�3cK=e���gU��3�kvc��� +N4�h�3b#.ez�bY��(��t�������Vum��ܠ}�侬���:=9 +GY��е��"�ȓ�b!a��0!��^o�4xc�r���Q1�i*!�%��)�kN5s&��l�C�&O1���H�0���{c��h�����K�O���53-T��+��YH-@~�#�n�<�H>I���o��%ƍ2�.`R�aD���HI"�h��;�/�����>���K�J:���˸���1w�]:�G�w~f�cdyʠV��p$!�PYZG�%���#����k�XNa=�;�CC��;�z�f�mu�ҬP��2"^Ɲ�1��&�<��`�p-J�<�4=���Z�4p�#I�8�ֻ�M[؎̮�g��;8c�#M�Y��FUl2!�$L�E2��Ҷ��r����im.��\��u�j��Q+U\�N��z�}Ð˪�Rf���F���)4b�h���4Y��� +�A��_�� +Uwh +��� ;�� +�aW`�f8�|(��������X5o}�vD�v�����Sᬸ�8/�ދ� +�f�o�_AM�B(�(���c�Ƞ���_\�$kf�y�����}bp���:�1k���v���df�B��$x�,��S5k�9|*Ps�P���ȡ7#�\&.�Mw�4vh.��2�T�f9"�%��eQK�Ff$>��+\�YQ���kl<#Ʋ10��cYI���0GwS+�aM�E��>���p��D𭕉�T^���6$��g��=Cf��tpb��4���<�?����endstream +endobj +1074 0 obj << +/Type /Page +/Contents 1075 0 R +/Resources 1073 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +/Annots [ 1077 0 R 1078 0 R 1079 0 R ] +>> endobj +1077 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [449.35 235.584 456.324 246.488] +/Subtype /Link +/A << /S /GoTo /D (chapter.8) >> +>> endobj +1078 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [207.717 220.64 214.691 231.544] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +1079 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [228.006 151.898 249.924 162.802] +/Subtype /Link +/A << /S /GoTo /D (example.9.1.1) >> +>> endobj +1076 0 obj << +/D [1074 0 R /XYZ 99.213 706.052 null] +>> endobj +390 0 obj << +/D [1074 0 R /XYZ 99.213 688.052 null] +>> endobj +394 0 obj << +/D [1074 0 R /XYZ 99.213 302.248 null] +>> endobj +1080 0 obj << +/D [1074 0 R /XYZ 99.213 140.008 null] +>> endobj +1073 0 obj << +/Font << /F71 445 0 R /F72 448 0 R /F85 483 0 R /F103 753 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1083 0 obj << +/Length 1153 +/Filter /FlateDecode +>> +stream +xڝWYo�F~ׯ ��p�'��4v�� �Zy(����ł"eq�����/�J�B +�j#�iQy̑��:[\p"�Qؕ3n]N��P}Nh%�V�a��"���P�5�n���d�h�y&
._�өq�?כ���:�-
����ڕ4CH� ӂA����T�B�����B�υpK���އ�+\s�9��r�}N��r=쮖k z�I5z[Bۄv���ڹ꽹�e�x�砦�����&�>���O��^���{�ֲl�t�2� ���H���Jؒ�p��!A9�pf[�m�<�endstream +endobj +1082 0 obj << +/Type /Page +/Contents 1083 0 R +/Resources 1081 0 R +/MediaBox [0 0 612 792] +/Parent 1051 0 R +>> endobj +1084 0 obj << +/D [1082 0 R /XYZ 99.213 706.052 null] +>> endobj +1081 0 obj << +/Font << /F72 448 0 R /F71 445 0 R /F97 676 0 R /F85 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1087 0 obj << +/Length 1495 +/Filter /FlateDecode +>> +stream +xڵX�o�H�_��Y��k['�(�����$$��$N�ñ�������ǎ]J�t�d�w�{~3�)�(�1/� g��"4��b;��vތ��X�I���|��uȽ��Jx�������({��'?O���V��g�/�Z<$q��<&h
�>����_j��~~�+�~��o�J�?���qL)�B�|�ݸ��K���E�� +�����2ATY��Vu��@J�WCz��W��`@�u+¹��;'�an�6H�k����r�Wx^�]�� +gb���"pW�?����{J�R�.���apf'A �>��*��0 ���iiQ$[�a&���̼t�Fg��M'PZ�(�>��zK舷#JDy�@S���ێ$� +�w>���]fOyFj��.���@W1�0���B�Tj��0� + �:�u��S� +�*����>��kO= +���E� +&��\�5�q���y��|S��4���g��B����oz�B���CZ�A�� D���2T}YT�D�Y���9R��_a���C�0�~}Gs���� Y��L����C�����|�K�uZ=/y�V�eત�@�����;p��u濘��r����d�-�=�0'�M~��k|� =��4YcΖ�����%�t���>
�]ylڰ�����Mѷ�nZ��D�]�ћ$?`��͡����(�p9(q�b��Xc�1�9��N����i��k�,����]Q������}�� �Á��� ��*����!�/�}t�9\���։��߉0�$�?��ɑ������F ���SC�'b��?j��Sendstream +endobj +1086 0 obj << +/Type /Page +/Contents 1087 0 R +/Resources 1085 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +>> endobj +1088 0 obj << +/D [1086 0 R /XYZ 99.213 706.052 null] +>> endobj +398 0 obj << +/D [1086 0 R /XYZ 99.213 688.052 null] +>> endobj +402 0 obj << +/D [1086 0 R /XYZ 99.213 614.245 null] +>> endobj +406 0 obj << +/D [1086 0 R /XYZ 99.213 510.092 null] +>> endobj +1089 0 obj << +/D [1086 0 R /XYZ 99.213 429.287 null] +>> endobj +1085 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F103 753 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1093 0 obj << +/Length 1929 +/Filter /FlateDecode +>> +stream +xڵXݓ�6�_��>ȝ�ᗾ��v�K�n��%����,ѻ�ؒ+��m��)˖v����L,�~ +y�LE�GW�nH�Hf,��@�o��`�f�p[H��)�[�k�~�������p�V=
��4�ٱfaS�ͥ��ͽ)S�a(�7��P�gJ��7�e�48]�G9���q�x�3^�=�4����{5oѲ�s2@;��j�*�Y +n��Lh<1N��.�Ũ���ZHs���'2��˲��
���n.x_C1�"�2��YS�P��.A�N�3�`��qPdJ�
����:�AC�~���0HH��q7"s^��\�hBeћ'@ +s�%)�����{�0lA�`I恲��-��wDli?`f����U��˰��i�2?��
M�䂞F��ˮ��?��s������O7YbL|ZCQk��lt�5 +S���e�I&֑���WMo�� ���PA,��K��̠^3� +�Ory���)���؛���1�p��q&5> ��5|;7J�,�±=�ˉY��{F��O�($R +��[0*eJ{�g��i +�[��� +�]���.h����0\ +��U�Dg�c�UM��e.,�pr���L��-�v�j,�nKAD?�Z*Ζ���f�m�d�s�<;�d&�V��gᙈ/���Q'��X�x&_� X������mŽ9�7�)� ���Q� +}�]�$܂_l3��!#�=��c3 ]3��h���QW;i�ʿ̊\� +ho�[[���#s/�Ze
��6�;�P���&��8�▾��)n��g,�S;<"
�:���S��g �oLY�.�c�� �6&Z83�k肼_*ZXy�o;C3��o���#c��!�KtD�/��N�����O���n-!���\���+��^.����sO]��9�֝�����>��jB��� +endobj +1092 0 obj << +/Type /Page +/Contents 1093 0 R +/Resources 1091 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +/Annots [ 1095 0 R ] +>> endobj +1095 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [295.554 396.958 310 407.862] +/Subtype /Link +/A << /S /GoTo /D (section.3.4) >> +>> endobj +1094 0 obj << +/D [1092 0 R /XYZ 99.213 706.052 null] +>> endobj +410 0 obj << +/D [1092 0 R /XYZ 99.213 545.736 null] +>> endobj +414 0 obj << +/D [1092 0 R /XYZ 99.213 354.389 null] +>> endobj +418 0 obj << +/D [1092 0 R /XYZ 99.213 194.986 null] +>> endobj +1091 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1098 0 obj << +/Length 2690 +/Filter /FlateDecode +>> +stream +xڥYK�۸�ϯ����B� �M�����e{�;�I��{�$JbL�2�����(Q3�$5U"�Fw��C7F�B���4J�
c5[����f^_IG�p$���n���ʪY*�X�n7�&��IE������ �/L�U��0x9���gZnEjq�J�4*�F�����_i�-�?����B�(����=r�c!�g~Cb|��w����,q��?:i&l��I�5�zC���a��_��F)H�%���c���� +� +m̙|h�kgl�:� +��(9�cY���T�P��oqK��CP�@~�����EbFG���^�ۛ��o+�0F�y8$I�4a#% 95ψK,��G����K����^�~>D�����˿\��G8[CD�| +�&�;h�B��l)-������ǁ��3^u)���D�Ө��%ų�&"�z�~./�9X���>��O�����BI�bWG`��v�h� ����p��ܾ�.��U�ݢ�o>�&�v�W�'�j��y ����eWʜ{M=W&�k�c��.�xb���c��mQm���H$���/}�ܿ��wE�M�RX��`F����V;'�5���`�?��,�F� ��eĆ +J܃�� +[K7�9�&oA_n���p�P�2#C�Ԧ��<��`U7��PWkT������ޜ��Yu��]A�(M� q���Q�-��臇�u�Avdۜ���ވ�x�_X���)B��h�6p�ڤ�q<a���jڲa���-�Ʋ�(
t��Y{�&��]�����*���2V�HmfQ�)�H�xc+��.ÓV�%�O�;أ銬�>����,�n@�n���La�� �tj6��5��Y�f���Pmx/�C�X�g��@�_ +w (��g
�O)�P"x?`��us=������#�`���H� XO3!&]�h'�-C�܁�u�e�b���ժ+�{ծ�-X��Cc>k= +�2��u�
+P��ֳ�j��
�ЩY9ˇКw�z=���"������i�N�!E�RBvx=γ�� +3 +Eȴ����e�Ъ�Ip�,�IR�7�V�\���v��L�w���;;&��S���:��b��Pj��{g"��b�Ǝ����d�Pp�Eݷ�sL� LḈ�D(�s|lۺ�=[���:�vy)��r�N� �(ۚ[�]��<��;
�SzgF�,<�a�@ +�T$�fg���X���q�2�"�飶6�������]�=�,��!��l?~͊2[�� iz%y�y4f~=�=�@֣{��V=Y��z�F*��;�C�!ƌz��F�������.Ay����ȵ��!a�p�a�Nx������Q2Jq@x2W����8,r�U�9��*o�b �R�G�b�q(����O +r�x��� +wm~v�+m&�EE���}1ю�.B��a�lמU�/���eЊ�A��<��� +�/��p��$m�D����IHπ��E!��R�3&.�d����#�4ރ��j��+g�7q�^ + +8�2Ć�99�h�YY�iV�RD����8���i&���>�Q�%*4��*Q��owT�'�?�(gl�G|�cc�
J��3�bk�D2�$jd 칇EI#�W� 4����Eq_�p��s��u�",U +endobj +1097 0 obj << +/Type /Page +/Contents 1098 0 R +/Resources 1096 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +>> endobj +1099 0 obj << +/D [1097 0 R /XYZ 99.213 706.052 null] +>> endobj +422 0 obj << +/D [1097 0 R /XYZ 99.213 565.949 null] +>> endobj +426 0 obj << +/D [1097 0 R /XYZ 99.213 204.098 null] +>> endobj +1096 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1102 0 obj << +/Length 1747 +/Filter /FlateDecode +>> +stream +xڭX�n�8}�WE��@̐��[ m�6E�M[�a��m)�ZYruI�X��CJ��d�P�G�px8sf82s(�1'� g�ҀP���vF�[�y=cFcaT����٫�;1��Y�8�Dx>؉I���2�⾘]��j!�C��{`T;�/��'s�����?vk�-�{vu<_�����GqFB/2����K��^��zl�{p6�_�?��w��j�4�͂sm�zl�y$V�Z�z�?A�(u_N�Q���c���@����`L<!���ξвv��b���� +��ٗ��I�og�xq�܃L �cg;� +��u��O?�+��u�p�ڒ�w;�m7��SsL|���W����b��[�!<�2[���4�@��魪]J��uR-n�ֵ���o문E�<)��h��R���kWy�F�����e��g
�E�f� +�Фx�)~�������J��1������r�������ѿ�]�%�{��U�� +endobj +1101 0 obj << +/Type /Page +/Contents 1102 0 R +/Resources 1100 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +>> endobj +1103 0 obj << +/D [1101 0 R /XYZ 99.213 706.052 null] +>> endobj +430 0 obj << +/D [1101 0 R /XYZ 99.213 532.897 null] +>> endobj +1104 0 obj << +/D [1101 0 R /XYZ 99.213 313.681 null] +>> endobj +1100 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1107 0 obj << +/Length 989 +/Filter /FlateDecode +>> +stream +xڭWQo�8~ϯ��Iݕ��v'� $ +Q(�=�6�͑�l��� ����8�l�P T5����7��<I����i�( �s�#�7��a�G:D�A��t���,�~�R��O�
�ܤ������-�e�R�Ќ9��'��se�4����ؤ�k@��Su}������yoֳ�quvg�E�Y}�<=Vח�z��^��_I�٪�z���cr���!I�Fa��_`�IS�1�(��K��{���k��V�<G�!��i�a�Dːx� ���]F�����0�2���hn˗�.xTWey��?��l�d�vIE�}�#��/eL�t�$>L��Kv�,�غ +#�+�JZ���zP����l�+E3I&C4$~�9J)�+MC�F+�L` ��Q�CP�s��x<Kn0v(h�N8�Ȓ#z������Y�#�\lQ���^.B�B7��R�B�����0jw�X�vD�dWW�4p(�C��_��R/�@�Z-x,��G��\��AY3ا�Y�Ů5�kiwruS�h�շ}q2r]"I�泸�܋]g[��:Ww�6Nt�]�-�ܒr���dV��K�bU)u�t��W�1�M�c��J��E}����Z^�OH)�6R��Йr% +:~L齴9���i �"�*�.�[�&���YU���u��k1Q0Ω"�� �U� +̶����<(R������Х�:����6&xgo����y^���j�)�~����u�RU +�P1�f�� +endobj +1106 0 obj << +/Type /Page +/Contents 1107 0 R +/Resources 1105 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +>> endobj +1108 0 obj << +/D [1106 0 R /XYZ 99.213 706.052 null] +>> endobj +434 0 obj << +/D [1106 0 R /XYZ 99.213 631.429 null] +>> endobj +1109 0 obj << +/D [1106 0 R /XYZ 99.213 587.919 null] +>> endobj +1110 0 obj << +/D [1106 0 R /XYZ 99.213 463.914 null] +>> endobj +1111 0 obj << +/D [1106 0 R /XYZ 99.213 383.362 null] +>> endobj +1112 0 obj << +/D [1106 0 R /XYZ 99.213 228.091 null] +>> endobj +1113 0 obj << +/D [1106 0 R /XYZ 99.213 162.483 null] +>> endobj +1105 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1116 0 obj << +/Length 693 +/Filter /FlateDecode +>> +stream +xڍU]o�0}ϯ�C%i���+V�J]G�U�k���A���G����k�$����|�9��'E~i�ʐ"���4 h+7u��A���,�|����e/�Q�����de���*z��,La�Ja�����(�Ix #
{6�lܵ��*�����m��bABl2H��J(V,u�G��ݎ?�ƍϞ0��3��o�{;>��Q�]¥%����a)������#Č��[�Hӊ�k����'ɖ�/Pc&�A}u��6�m�Yuؕ���Q�O���w�L���S��4���H��"x�W�&Q���,� O�(N�h��>߅'f�RLte�T�
q�;���Y1Y�a���/�t�z-���u�/߯�
���7�3��|���B�K����p�) +7s���kgY��0S��vm�Ucʷ��s����`�(�(N�Lp�XjSYR�b<u8���O���f=������e�2_�A/JI8���Of�u>����e�
�4{��pmz��:�`��i֨���p�������Iٱ�� +endobj +1115 0 obj << +/Type /Page +/Contents 1116 0 R +/Resources 1114 0 R +/MediaBox [0 0 612 792] +/Parent 1090 0 R +>> endobj +1117 0 obj << +/D [1115 0 R /XYZ 99.213 706.052 null] +>> endobj +1118 0 obj << +/D [1115 0 R /XYZ 99.213 666.593 null] +>> endobj +1119 0 obj << +/D [1115 0 R /XYZ 99.213 570.952 null] +>> endobj +1114 0 obj << +/Font << /F72 448 0 R /F85 483 0 R /F71 445 0 R /F97 676 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +849 0 obj << +/Length1 744 +/Length2 1488 +/Length3 532 +/Length 2040 +/Filter /FlateDecode +>> +stream +x��R{8��F�gj3�F���:�3C�cƥĠA.�����\c�%� �FF(�m"ٕ�k�vi+���B�VcW䒶k�:������u���zֳ��{���e���kF���Bnl�g���$2p�X,a`�́(\��r�p!;���� +�(\:ĔqP)�˦�7�@^��P��A4sh0��B0�Y��� +g�/iZl�����D�%�F@&��f1 +G`�ز� �����o��b/ +s�~Ѩ��)L��� +��,W�M�Y�o(%!�=��p +�~fiF?���v���})�o�ʉҷ�Čm�ȣh��`�X�j�"og�Q���w7#�P����.�D���i4!��X�9)։JH��A�CȹH��B��ޕ�-m>o(�umO�2����w�����`. �yr��FZxL�SH�m�ޯ�^Np"����H�L=��@q|�|���� +�8kU�?+���R���� +J�Ǔ45��/��\�HJ���x��ޟg����v�-���XV���W�(��5�� 3W:��r����~�+�Q��X˹�s_c�c��L>/��'�xT���<05��*|N�T�߸BWS=i}��� %
�/w�.���~��ls}����XO���fY�S�}n�==q3�v�������Q��((�^uЋ� +tC7�_]YT��p��id����Gwݐ���Щ��9��5q�ny�t.[��"�~7&84���]"�n�Y :m�����aïH��x�b^j}�)�R�1��~$1�R�)x��B��`��lj�WB�+?u���4�� su�X7]���ۯ�v(�͌��n#&}Z�� �ڃ?P� Ckݕ{�pMu�:�OWf�V�GV���=�3�ؤ�����lw�$�Cձ�^���i�v�\uǁ/���d&#I�� [���u�:0�����lI��M�O�;��� .aN,��'<\�3�«e�]�O�q�RFB-mR��^��ʗ[��Ϗ������<J�*��ݭ���>A&n'���z�q�o����'�TQ�^�+�Z�sh�iOz�&�m�z��~��چ�{~> +|sn+W��9Q�2.{g_V�%� +������� +�]ft*i�K���]zS������>̨�D��<Y`��o�0K�
�����#��%]:�������۠M�>��P����f��YX�ݶ�s�-m�Vg�ghRB���.� X0JV�� X����)~wo +�Y��?l���OP��e3)�}��60endstream +endobj +850 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1120 0 R +/FirstChar 57 +/LastChar 57 +/Widths 1121 0 R +/BaseFont /VONUWE+CMR10 +/FontDescriptor 848 0 R +>> endobj +848 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /VONUWE+CMR10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [-251 -250 1009 969] +/Flags 4 +/CharSet (/nine) +/FontFile 849 0 R +>> endobj +1121 0 obj +[500 ] +endobj +1120 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 57/nine 58/.notdef] +>> endobj +846 0 obj << +/Length1 774 +/Length2 652 +/Length3 532 +/Length 1207 +/Filter /FlateDecode +>> +stream +x��R}PeK�Ug"�
{���� ���J8��$c�}�X��=���.<�I�oA�?�C0�4� +G"2�t2�t`F@�uJ�Z'���r��g��y�߳���p�V �����"4("Uq��" ��`!Ƒ�q0�(�4 +6�}��Мw�vC�E�!�����.x��y3�k��={�
-�`�?�]�c[��=q=�ê����^�Z��k�"���~��E`��7�h�,;� +�s�Қ�h�>,ϳW�μ�1����N�����&�<}(m!��ʂ�x�[��l�߿W���2�_8�����*<8�E�t�����:=$.���t[�F��_��E��Q��ɠ�����\�4���Q4�����j2&k������BF?�|�}��:A�Y�~˞����]���_G��=oU=��uvn�o���~i[�[b���+����W[���Vn�IhE +�X�㹅�W�O���1��o��<�nU5~��|��V�StVY�� ��H��e�}zٹe���*�)��e�Cs���ۖ���b����M鿾�X|���b鼗��R�gJk�z���x����v��Z�#�V�W<�}���o��z�(q�#����㳎�}:�Ӱ�cWb�p�X荘����˾�v�^xt���Y_}�y�Lu��r������ڞ[��/8�h���Z�)�����G�S��rsH�@[�����W\��2[�)��i�O�u)~u���0�/�n��>,�®*&v|r���WsN�6˨�GJ���/�B��X��bl +�7 +���endstream +endobj +847 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1122 0 R +/FirstChar 0 +/LastChar 1 +/Widths 1123 0 R +/BaseFont /TPOMFV+CMSY10 +/FontDescriptor 845 0 R +>> endobj +845 0 obj << +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /TPOMFV+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/XHeight 431 +/FontBBox [-29 -960 1116 775] +/Flags 4 +/CharSet (/minus/periodcentered) +/FontFile 846 0 R +>> endobj +1123 0 obj +[778 278 ] +endobj +1122 0 obj << +/Type /Encoding +/Differences [ 0 /minus/periodcentered 2/.notdef] +>> endobj +1124 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozenge/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +>> endobj +773 0 obj << +/Length1 1630 +/Length2 8647 +/Length3 532 +/Length 9496 +/Filter /FlateDecode +>> +stream +x��xeP�ݲnp�����B���2���A����<�&���K�����_��_��T�Ի��~�{=�V�5��*j,�S�,e�`e(��L���A��,�@KgeS[��A���r�@A�� (����f +b�����4T�����e��0u�����\��{; �L�?TP+ �dH)���+��4 +t���e +����mMܟs?��;�����[��f�#��������L���{w��'�uoboo��'���5��N@[VT��f��ܖ 0*��a�[@ +3�ٺ����;j�*�����CM�7El�,'+�_f��,�
h���Y,Ll���]lt��������� v��a�V 3�ox���`��,ן��$���ԙ��
��S�y����@���z1���7��$�
����`�����q�98��M�?4�Z�3�:�� + ����%�H��)��\�Eyɸa�۴o���A����T5N���\fq�T�h䉫�]o
e�}��q� +�ฯ���?z�@S���95Z'�(��(������˞7�����CH��W#O��֢����/�*ty�ܬx���Z�W�#�w1�28�pnT��e ���r8�ԯlE���<��~L +P�ύ��J��%l��D���'G�F>�~����ט��-��*�5��A�P�קͣ�ћJ|���WP��pl�ך?� +��G�mI2`p�;���?�y�0N���@�h���F'%F� +(��#��ܦ�J�,��h~�q��7D��a�W�y�I¯�S�<{A��s9e%z��ogK&ԙ|�Q�c]�9g�HcE5�ײ�*XV���K����㻇#rfw��Yj�h��꿺�g�wh��T1>�u'9�����YO�SI���y��=���Y��k��b,v��kO�5��J�,���Q�����i�x��[��%�:�h!��.��Di���o��c�\ ����o�F��e��
m=b�M+uG���Z]�� �%��n` +�Q����>"�2� +��~���3�l�
v�+┌W�lh�NJ�A�W� �H���v�AٻX���('t��8� ��n�7�R�$U�m���p����χ��)q?r��9k)��vD���]��=�l�E=���ծ���3*��jL��sN�h�=E���C*��g�9�[�zt��iew�4�$ї��X��v�K�4�&j_iG��ߓ3ޗ�� GG$p!#�6�g��˘f퀉��ͭ�:
����gk
����M���Z��l.�XN�N+�����f��xee�jE���C�2<��=)��]��ȧ�?�:��c���m�w(��E��e{ͩ�1jQ��L��I�u�;C'#��6w<�X�{�2��(�� +�\)��*�S�*�a�}|�j;^� ut�ʚmN5�/9�W�/Fmh�8,�]�,�d�i.6V�R�뽟�W�z�5�дol���!@�m���M|
+����� +g�jeM�� +�qʡ�^��秊�&ݛ=�M���DTRN����S���[�E�������*�Z*ߞx���i�=m"�/�����jc+<�(,�7�N�<���gWZ���H��O{�����~.Mğ,�"�U���S:�T�/�"[�������Y�6�p`5q����_SCXK��?���&1[_b������%q�q^���$�tyB>�D"�� �mkݬ�Q�fs^Ob�?]|�hŬ���Z7��F�[��ҏ2�nd�%�Mp�1%d\7����ۘm�YR�{O�o��T��d���K=����9���W��� J�+�ǥ�V�-����I1'����θ��a�k���y>2�c��@U���_�`�=|� ��2[�q�U��i*���]�S��R]�W + +m�w�&���bF�M$���C��v�u���2� +�ؽ:�{��O +�2���?v̽ +�2#O�,�i�+��6� +w:^�8BG]X��9��fNB2i���Y]ON�&��8�K/X/6����&�Z��L���~����E37�^2 ����'�'�Y\ �F�7�o���by�ps�>�FC
vﶄ�G�] +�dY���i�(��Ym8�֣�8{�T�m���ǺI4��@���Q$��h�FѪ.���,\�g[���}��f�*�ͮ�㊊%�h�_5C(�IGmv�}��� +��[��3�M�T�x��LgE����!a��c�5Jt�O�����d��}~�!�H���圌�H��I +$`�RJ�l���Z�[f �=�2�a����F}y1�x� +ܽ����i��W��ԟ�?(������й� +~�X�N�٭���r�?���O�ռ��"�3�]4�k'OhX�-$Ġќ~ӊ#6R�Aƍ�pw��EtJ�U����<��
i�g-Sj�5@�����}��X���dF�l3���\��C��/\\Y�.@˝�K��m��I�J�<���_�i^9��5u�O?%ڽLkYn�{������bܶdf�J+,�M>�`1gy2~�����9��(��W�?~��C��1 �M4L�WX��v���|!>+�Ͼ��/yh䍈㶈��%�F�z��=��3�!��Ӌ�����
��5mڢvg�af�ķ +v&� +��?�#V�P3a�o���̉�-�^��n���D�q�Wh�2�Kk���`YJ����,��P*;E�H
���*�ٿue�%�K�v�G�a$�"��ј��� +�$��u�Q%/��EtC\e��Y����}��4�=��Z��^���)1 +4���{V'���b����0{' ��7�y�`��ǥx���x��h�Ϡ0(7JQ�l�FFi��B.|���z�S2X��V%�u��е��QE<<^2�P識v$
�jwB��:���(��� V�&�1���t��Y�w"c��
+���F�y���ݝ>**=|n��MC��pN���!*p�zn��������_洌���N�QC�W{�_8p����D�^����P- +���f��|�D 0j9q��^zc+���TH�.�ǹ�l$�]��=/qgQ-���/Kx�N��V�>�����#�ѭ�k�3s�ϟ-�u�W` +��]��W���y����#�"�ظr����z6���|�Z��H����jc��;Q�y��U�ȸ�0ʢ|����mqs��=�O�qs�}���4�h�KF�jDW�zf�^�ml���������'fE��W;��l$�O,������)��B�!�!Q���I��������%�4&�A��Z�N�Y���ص�c�1K'��AqX�a�]~� 옪��U|{P�o=GDX�2\K��+�33�mr+��}L����l���+j���Kh��6�G��:��
WaB|��M����i"���C����!�����vy��4gե�h�������ȶ��d�xj��oC|fV�O�1���!1��'�ˣ��ۥ��eف`��9R���C�2�wy�9D�]�'
�9��$8`�x��D�;.�n�Q/הu_& +G�wa��+a����@�uz�v��G���߄-�Q+�/)��F 璉R�@Țaχg�0g~�=�d�������� B���:���A�&���z�%�_�ﳿz38��+�º���ى�n�,|��ڍj�9�(.�J��&�Q�u6D-��(��@��³�� JC�<d�*V�H�4�Y���owj�,F�#��v��J� |�p����T��I���^xm�8-\�e���f`��T�*,���p�k�m���J�A����|�Mg�q���; +?�i�ܡ�~#,�0
�P����~'n�����mժ�P�����=s��L��e��o@֢\�Z��J��,�m-��Z��NvKI��!Ƣ1m�H��I�
�4C�&�|#�eXɃ&E%]�9��_��@X��I��u���q��a��BЦP'�p��cg��6J�Z�z��iN:O;o^p���p�Ӛ��5��mr�[���x��#U8�Ҳv2�A�{�d�鍫f��vl�8�`q��U�U��x[�_]�F��6�u���U�*����5�_�=/Uǒ�����m� ��SP_!P1���\�,t:ף��z�.��l�o52��u��;�5���k�>�,��躜����裳��0�����k�"�<�B��&Ƕ�PF�L1�<����4}����(z>��8�r���a9���ވ���M���]t{�S�L�t���$�,y�gp7���x�<��#ۤ�DJR +g�1�>�%�b(?��L�Z�9������[���@�|`ŘPgXzЯфӇ��6�JU�_-��qp�d�G�KT$}8`
V�v����=7��/�Ԙ��>kqn����s���"��Sމ?�ۑ� =����c��M;>"�C�L�v�[kE�XxJ�l�|��M��$�إ#��<|꿳iL@8����G��䎘����.ނ�ͭ!�S��}��Y�Ƹ�����T۶��J",�Q%����P�$��ދ��FY+�(Y��{�QNգI�F���.�!���"�i�%�YA{k�2��>�>� +h�S4/g���^�!;'���z�w���̼*G*Z�3�N&y�ɰ�Nc�gg%Qi��q�<>nM���e�9����=����B��5:^�"�vh2�r?��Fu����A���O��M�;G���ol�endstream +endobj +774 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 60 +/LastChar 121 +/Widths 1125 0 R +/BaseFont /ATLWNT+NimbusMonL-ReguObli +/FontDescriptor 772 0 R +>> endobj +772 0 obj << +/Ascent 625 +/CapHeight 557 +/Descent -147 +/FontName /ATLWNT+NimbusMonL-ReguObli +/ItalicAngle -12 +/StemV 43 +/XHeight 426 +/FontBBox [-61 -237 774 811] +/Flags 4 +/CharSet (/less/greater/A/C/D/H/I/L/M/T/a/b/c/d/e/h/i/k/l/m/n/o/p/q/r/s/t/u/v/y) +/FontFile 773 0 R +>> endobj +1125 0 obj +[600 0 600 0 0 600 0 600 600 0 0 0 600 600 0 0 600 600 0 0 0 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 600 600 600 600 600 0 0 600 600 0 600 600 600 600 600 600 600 600 600 600 600 600 0 0 600 ] +endobj +752 0 obj << +/Length1 1606 +/Length2 10827 +/Length3 532 +/Length 11682 +/Filter /FlateDecode +>> +stream +x��weP�]�-�%���-x� +��m����L,_ +廙U\m߉�[�6����CX����������
��fps�z����a��Z� +h�����������v����\a
�]-�w�<ý<�'VF�Q�'s<��w�뎟��!�k��7�n'��h}���?w�:�#ZbG;�w�N��h2W���)42�;;����m$�F�&���Hk +�k�t��0�����H���;���a +���G���h�*��~ +���뷈_�dY�c��Å����-Y��F��fX�.��92c�4[Ud���T<�Ǹ�E��^/�\�bߙ�YU���~uH⚡� ��`-[��N̺#�������ug`k�W�����%��y�С"����@�.�}�?�Ų�� +��e/�.ku���*J�i�Ұ3�VlS*ݰ��p����?�6��f<SvUv�N7������ZS�_��g��)��&<�Tqˀ����-��n]V��^�� e��U��(G0}ҸG�g*��ˇ/oE� +���=���m�T4��5��vcBkփ�7E�e�_��txI�����ݟ��A��7��E^��K }{�.�nn��� +!�F6u�P����*�{]/�!>��WY�� .Ի9���2�L +����j4���h{Lw<�e�mYEU�=G5���]U�G��lh�m����dՍ�U�g\&�"����۾<�}�}o��ߜ��3���dc�bx��R'�n\��iL�Wd�v���ڋ�zG1%m%ў4`���K���af�-�d31a5��W��>D���N=fNT���1��^������GF��%��Y~R*�ʟ�S��GS��bW�_���Q��e�%DV�ς�x����x�e�YB��L�"(�G���t>���t�DYC蕀�})%UN������WB�X�!+�<Z�+��$W�䆚��!���:R��)��wГ���������ɣx��"��&yf{j�G�G4�t^"�Sٛ~����(cA�����7զ�ɫ��Xl��R==rJvש/)�<��~S�>�v�+�[��j��jd/H��ݛS{���&~x�Aj�G�����dٔXeg�?�|�)d9�+(��(�n>K���]B�\�7�`��JJ�����ڏ���
��`0оpGK�� ���a�mq!6x������ƔX��S���t$��-�!�R3i�V8gA�P���שů�lq�4��m6���==g_�p��[��ۭ;�H| #�$y���'"·� +J6$�ĔmX%������OJ
��"`�o�d +|Ф���m��)�u`�A��_�v�N�������Z�b���L�ۯ�7�J�ޠR�FygZ����H[? �C��@ + +m�Q7�6w��4�~�F�����3`nؾQK�T&*) +.y戾h��8��:X�L�I:�ԯ
B�dH�^Dl� +;��J�9�ƗrI�L�<QYU��q����
�3��mz�e\��}��#�x�c��~�~����&�JU��o��z�̩���Z�>�nX��J|VvB��z�nO�p�=�xr�j!.v!ۓk~��ej����r�%ڜ��x��C������ݍp}e�{��_���e�M^5b�z�N��"�a�w�~#�!H<_����)�K��S�9/�7]B6s+�jR�`9
�n���q����P��_!1�a�o�KR.i/
̩��ת��L�c���M��}��|K�̓�a��6��?���e��= +���E֤�d�b���M�j���~�[w������qB'g�� h�������$6�湡>��2�yp>T;�D�+�JX3����c� ^u�/���Bl���Xq��������S��7J~ۓ>p>��T;�<���$ ,��u����̤2EW��x�.����±�����2W�'�FlL�=,F���Qĉ����B�:�ȼ�7�) +�[��y�NIV�0�{@�>I�s +���O ၃��a�0�~�������ifǯ�]'�&��i��~�=ˋo!� <^�!�O7�'������}�� +d?���9����K:q��m��hEs��������ifլ�:U�� ����_ğ`J��[�<��Xhq�y���l��c6n�sC���v�m�"v)?�5�Їʠ�xI���į�l��4צ,z�;�=�)�L4٤�� �a� ���39�8�� +�q�=|�!z�Q��>��Zs��oO���/�$�D{���s�ʱ�fkK���+h�^:ٌ�FG��z��i�U�pUw}�rܳ>�a; Y��4|�/���e3��/��Ŷ5� w���cQ;h�`=�ч�g��ǯA��J����A����'���ҫK���utј���*��IM�_�5���䤍�[e�ic�Z�:X}��1�� m�ZO`��t�Ȍ���Ե���0�5P�7x=����@�+���*\M��fB��D��DN؝)��O�{�eT�ie�3q�"�Dz1��͂�����Y<��d=~�L��R��):$N�Gܑ@>JY�*F�&�ĩ���[�h��V~�H�
YC��g�i9_������?*���1����nF탃� ���i�̠�����a�x�8U�Po�1�'Z��0�������IÞq��-f�N�IK�W*�Q�Ku��'v8R�� op��.f�.I9�e=�\�9�J�+4{Q� �@B2��2!�_H�+>�C����Zk%:��Se,�)1>tco�d9�X<k�4^�Ah��E�]��wb���#+�QF�N̈n�%�O9���Sj���E��Q��OHc��Ȑʟj��,j�0
��6NJݧfqj���N���&�!�H+�-�,�hK+�n�-'� +,&�'��BBW�]�FȏZ�ې�.Qe멊78Kb�Jj�G����T
*�+����5pf*?�o��!�r4jH���G�ZK���h�N���pxK;��\ �a�f�?��WN�Pp����/߅�)^!��S���f��ǐ)y��\"�Z'��� ��.��߽IK�e��B����{sJ�ί(+�:�O'�i�ǖ�[\��w�R�?�_��T����r�k�b�K(<�Ѕv�:Ԫ�h��c+˅�*���ڞz�u�}�<e�ᙛz$���dԁ
$ˎ�L���.f_UD)l��i���vʇLH�ўy��#�A��a���6aeS.2k�̀v��V��>�f�Yo2*I��������Y���Gae�%��ol���Ro�RR�U��%�/��sZ����wT����e�O���A�q\آ��9�����;G���5[ +�7L�{���=�O��5��z�9�f��~ʊ1��N֬:n�����F���-ݧ�|^��e�j�:[AJs��י�_��q�j��0R�`E�w6��g�2|
�$�İ���|��|�њQEx�ˇ!�s��8{SKjh2�J:�b%���S�(�� +���KK�w�-Y�Z�ذjV%+�fJWF�CRg+�"�H!?�A�la�&��%��M~R�l�e��܇[��w^���+�r�&4`�R�����F�
0蹘Fek ������È���%A{2ﺎ�W�����,���}]�W�����/��1t$im>r�3�z]]�V-潩,@�$�mUM��g��lk��:[�������,1"s/���Q���e8C�d��Qt�)��s|���m��{ڟ +���~١���6���<)���4�W��d��ѻ���?V0���BC�%V�sB�dn�naS�#�rZ�]�흝�%~��+�N��D_��i�JS���L�e�V�^5���������3�ψ3��>ѐE�y�����&��8�X��G�W���˯'�K��ǒ���XY�����H�&Y���9�������@ى����[�N���C�nU�
�@��R�T{
��ݽ�I��I#�
�<q�$��ĵ\WgRv��h��F��i��{�\q4��`�
�%���:�M��!��JC����ߦ�o�F 6=�v?qNr�h�K ��d+��z�w�ۣ&!�)E�A��_��|���SD�i�%�������u<S��6�C<��Ŕ+��m����`�a�[������N�����%*͇�O���ݿ!=J��mԙɨk��%�7ҳl�|Z����Ԡ�W�C>r=�8/��4�U�� r\Z�-2�
Y�u*|��[&B�K`İ���W�Ԟ�9���]ӖG���d��T�uF`�oD݈*lLQ��~y��
�Q3o���,����M�G *ői +Ҏ�YR�&��M�VU� ��}:���-��D�����d?�[�Ů��g��:Z8z߁O��� 0��%�3�?+Um����O��g��4ђ㪙��o��1|q]£n4��ҍ����Zdcs>9��9j���x
S�B�魄�Wij��L���~�+5kG��͖v5ێ����\�P�uU�"�l<�ua���4V�A7�']fe���� +��.�w��F�yŠ���;1�A��<C�8��h�صMk���vgA*�an�������7Y��N+� ���Շ-ͱT*q�Wd����D���t�Iu/]�Y�`6���m��^l-�৻��5p�^��'��6z'x~�;������j1���2�0#�ҍ��l�,:#��읒l�'������ +�l��2��e �J�o�ݪ6fwT 6�猟K�@C4�٘�i�I�Rx$^�ӝ�QhwjAbSj���$���M�C�g�� �pH4�.Su�#�*+��jjU�A�.���1�����IL�<=�
#:��p�aO���+�%�[
K1
��$�����f\�+/XLW�\ʡ�� +G��g�O��i�Q[{����"{�ur��=��ۉ�)m0���#�Yp*����6?�tD�e&�/v�I�!&�~\ "*�f� +�-B�Ux1M��R��OY*���_��@r'��QHD?�<�=�Y�N�G\�m��+*�l�n'd+b�:�ZT�QplI?�R(������� +��Ei�%l�/8fp?F�M�Pa"W�ip�sK����f��?N�@����ll�@p�p�; ~��c��_��5��*�]��ђ�b"oz�!rI%�B1������&��W�k �,� �&2-��W4�w��� +7c�n����^İ�;l�����s3UG����Ǫ����$��Z0�~��v�e����ax��1���f�ı��Lfе�G�mq�8���Y!��(�d"� +g�='�դ���O*l���A�l|4�0�s��W�:���n��QP�i|����p�DZm���X�/�3Y������6��Y&��~c�=fd�P�ί�B�Ȑ��Cu�W��پa-� �P����\� �(���[���*�v��x!9�1��L���:�p�pE��!�`.���VcU +K�x�%��w~ɺ�.P#���?�x�+�4)u�i��ǁk���3� �N�Ī�Kƴ�w!0�w�Y�^��`$�G@�]��n�>^��x���^��B���E��K�safE�<ݴ`�X��v��IeQrt���~���^Q�ևV�%��M�����_�7�u�r�9�r�G�](�B�ҭ����ʵsM��������� )�������`Z55�=��oyũ9#-�{"�Q�u�WW���鳕A,�����?`m��-�����endstream +endobj +753 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 60 +/LastChar 122 +/Widths 1126 0 R +/BaseFont /WKKNMB+NimbusMonL-Bold +/FontDescriptor 751 0 R +>> endobj +751 0 obj << +/Ascent 624 +/CapHeight 553 +/Descent -126 +/FontName /WKKNMB+NimbusMonL-Bold +/ItalicAngle 0 +/StemV 101 +/XHeight 439 +/FontBBox [-43 -278 681 871] +/Flags 4 +/CharSet (/less/greater/B/C/D/H/I/L/M/S/T/V/a/b/c/d/e/g/h/i/l/m/n/o/p/q/r/s/t/u/v/x/y/z) +/FontFile 752 0 R +>> endobj +1126 0 obj +[600 0 600 0 0 0 600 600 600 0 0 0 600 600 0 0 600 600 0 0 0 0 0 600 600 0 600 0 0 0 0 0 0 0 0 0 0 600 600 600 600 600 0 600 600 600 0 0 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 ] +endobj +704 0 obj << +/Length1 736 +/Length2 1155 +/Length3 532 +/Length 1704 +/Filter /FlateDecode +>> +stream +x��RkTSWU����GNt!�!$�!<���(/)B��$Wn�
7�+JQ+�#��(� +�P; +�b)R�QZ +�X-��j58���s�9������>���R��{��C5�L:��E\��3H��!8$��*�@����2O+����gq��\�+�Tz�+4�=d�$�xJ�%b��$4$b��$0���A�h�� 5�� )��d),р 9���&�P8o�R����p5a +�&W +~�I�L_�UP�R��z˾�;s^���<�|J
M�o�����E?�e�xUY�p����.������ǷXk1���UU��i��S9{6���>o��1��������n����=O��9�N�IG��-l��<RYL[�qS9��!�&q��l��(6V΅7��$8�� +�Y_p�Uڎ�>b����'3ᠸe]�oh�۫C��7�����Gd8}��E�/��"3��u���YUG�X>�A���}�=��b<֓��a#Nv���=Vo��iJoB6]\�����z]f�Ӱ�%�v9��<��͕���'�tF�KsY��Y����M +*�B5���K�Լ���4w�"�fx}版+d'o�Xe5���Qi��\�ڪ���\J̹���u��U�SSO��Ni/TG-��? }bm(ydw$�` ���Pg����jQά�eg�#�����d��_ow�Q�q��j�i[ +�6��L{�,j���y����� ��5cہ�E�ti�}<�d���[� ���F���x��ĝe�BȽt��8%�i��,]�{��*�����G����1��M�v ��v�.��6�Y�YСM��b���~{6zn�7W'v� u[�{���y�2t�Ӎ����H���� ��`J1�B�Y2�endstream +endobj +705 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1127 0 R +/FirstChar 53 +/LastChar 53 +/Widths 1128 0 R +/BaseFont /EBVRIU+CMR9 +/FontDescriptor 703 0 R +>> endobj +703 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /EBVRIU+CMR9 +/ItalicAngle 0 +/StemV 74 +/XHeight 431 +/FontBBox [-39 -250 1036 750] +/Flags 4 +/CharSet (/five) +/FontFile 704 0 R +>> endobj +1128 0 obj +[514 ] +endobj +1127 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 53/five 54/.notdef] +>> endobj +675 0 obj << +/Length1 1647 +/Length2 14109 +/Length3 532 +/Length 14987 +/Filter /FlateDecode +>> +stream +x��yeP���&�n���-8�{pgpww.��58��� ��}�w��uv��~߯����z��[��*r%�O��v� I;��'V&> +� +@+TH�� ��$�\�m,M +}b�d�����I��d�d�lb03�y�����`S���%�^���݈���05Kk�_�����{�u�;fEe�����a�������j� �x�T�3���_Tbbv� +������=i%�g����0�����r�z�D�^��_�!���*K�r�N�[���n���:5��p��0��^1m��/�n4s�����D83eiu�`�w� ��{��ܔ?�ܨ{ +L�iU{��8��'��N�Tj�`8���8�M��-&+�J�jbi���E�mL+Iz�F�G�
st*Sb��ػp�D�� +E兜h?�5��j +�]���~X��`^b�0�Oj*}ޤ���r�k� RuHIW���݄<WoE�j�f���;�\�V�G��y�(ds|���חV�˽H��x��IK0Cz���}��!���� ɣU���їu��^����j�I�P�{cE�ۤ�;�Edn)>�g�!��e��X���=�9I�B���!��i$e���D�b2���f��)6� Lu��:�:¬�O ӳ��'��M�6�:��T��N�6Dm �g)���ϰ�Z�m����۴ర�*l��?[�_�eG��W+�5\�#����r����xɬ0]�^f%���&���<�����[wc��?*�3>2a������E;L�M�==@��ޏ�H��#�H�=.�R�7��Ա?��re�r��� +���Ҷ�������a,���T��+��x�ΓeQ������l�s�)M?�M�AĂ�SK��Ͼ��D�xVQqXvX44*B��H���C㼠�r>�����d��X��ԣ�NV��f$6॑V���
Na.ߝn���y�m{@�V +��2�Q��D��F�@�F�ţ�PM@��|^|6)�
&\���]*>���έNLfP�&~P=��r��2ۯ|�Y�*]�Ņ�$��/���!�+?Xx�PTM~W���C�|`��Ec�шʞ�Z�� +r�B\��P����̏/-�fV��n�TzT�"&����fF��Ez�f�R�¯ˉ9J/�X��:�`M����K����������;~T}���\ORn:Z�V�����e��~�XB�ۈ�3ڱ>�.��*�:)�-�p�ӭBa @E��V����uF;��|t�E�X]]!c���Cu�꒗H{��:�G���g-�hQn�*]Ҽ�����k㭶��@ �#�6�&�~x�빿�_`I�E����nk^P)�M| �]�-jȡ���t�#��!1�c�I]E�v��z�,oN����0�P��gh�k��;�&�3���/�YV �w�k1�����?~������EG)G�G?�9_���9�4m� ^!.5I�)�x�y�D�RJH�����o��闄k�F����kә�y*q(e�� +ғITo���wڌ�7V +.��ՙ�t + +��&��?��VSmK�(��Y,�?b�~��q5?�E.F?.,J%�� +ى�C?��+�R=�HO8w�3�!uD�kf�� ��8Q2����ƴ�T��B�7�،Cҡc�>��q{���e���E:p!�\���)I���K����"��d?�ܳ����0��S4<��1�|�<�i�eWG\4M�i�P���������~�p4=;U4���3џ^�r5I�S�����b�����DNSD?k�XS��PJ-U��P�[�v�eA*b&^uз��Ĉ��-#�G��=��] +܉��~
�t�z�?%c�6#��B����K����J05�,c�"��斩.�o�>���Pdo��>��-G������4��N�]�n'Q�:�?3���6{'o81ɫW��U~�}�k����U{�h]*�J�L7��Ym:xD8O��'m +3�#�p�Z�wŌ'��qEz�/w�U�߄JAwj�d����?:e5� +V�~/a�.e=8���� ��+�ї���-�/����wM�\�MM˕F�-�$�����J��B��|���u:�ڃ?�R+�j�t�Q�m%&!���8k����i��hW�s:�c�ۀ����H���R4}��(l��џ: S6H��u6ೄ}ص>Y�_f��t*�������dV8n��7㛨�.X96' +��œ�-�F)�(B88<k�$��vc��m5���a +3/�:�4���j}ׯs��r�~��SZC3o���:�Q����YP�.�.���� +��ja
*ߏ�?����Hpۚ�Ὡ��WA~��7Cw$�՛H��o;����)��,lhUϲ_�\6��F�1�Z�?-����߹�����qw����g?��"^�=o���)�y�;�y��i�Rl�L�
�E��Б��[�ۗ��j&��~&�@�|��%T��e���3���������y�Z�W�ا|��?J}�0�XC��K�P�`겎�%EX�l�>��]��"�@�$X�R�ief�Yv��T?��=h�FR�U��� $�g���*���U)�(��o�|*~��g +
��팋/���yj
��@x����� KeD!4��0�r)S�Yå.�Eu��q��KC�"�#��>����w3~*��YP�E�n��k�C�s���
��9i�N�D0���ǢZ��fhC� +����㔿k��T�0�� +&d�:��A��N�V�lo��ۯ���,���ՙ�ץr͵+�+�.�� +���OzB��{�O�I���||��O��etv=7�+%~��d@�_�Ѱap���3{c���B"7��`�x/;�^�s��I�%���[YM�{͊%}��L���H惆�b"�U&ʷ�gG�hc��s=j +Jn���y�\���f�S}�H�
���<�&s��M�9u �˼��بoG�
���n\�rF��fFof'�9xS��:?��6ݔTݑ���C��ajq��<ܓ�����[+����0]LP��1"�oE�;�\��A����ϻ}S�^�A� {��o�gz�U��څ��Ѡ%9z���8�Z����h�y������H�!���/�"e��E�m��nPX��n�ZSګ�G�F!�_�x?8M�M�q�&�X�ߌKeL�0b�PEfX��^��d�0���6Qp72؛'}5:Oz�����=G�mqb�C59J��`���ŕ���$C�U�f6g9���X���nwX���C�CtH.�Sd�o�s��� +��Ka��ä'����|x?�_�+�>&���5�)�M��X�!�6>`�1١��¬�<_L�o|��ݲ�~���L1�Q�����Gb���kL)�Ll�=�l�y�]D�t�eܴ3��\_�ߝ�o�Y��ȭ}�uIH��8H�i7��P���֝���Ϻiw� +_�-`ç�+ )�ҡ�}|���(�<�CU+�;��x֩���
����V�YW�wr�oA�p�3� +��zDbqpi�Ln�sVV���J�G��u�@C�����6L8�L?ِnX��NwL���l��M�Esg@ró�eQ�Ԓa���)��e
���ߛ�����(�C�̌J�ֿ��]���a���R����\P�n `LHb��&�Ek(x(.��ͦ:t�3ō +(�#�ˡW$#��2�F�3��p�a�ò]O����GI:�T?zzPfL��kĞ6?�Ӆ�m0���X��Ŏ"�(b?u�rO�ꍼ��t��ܒ 8Q�����]^X����_�`4G7��CJ��I�.S�����d��0��
#Y]n_O������k��v&�8�uY������_�J��O~e���&��B+�49�DV�:�~V���Ɵ2�D�F|WH��٭�]�p=�� +�Uɏύ�$�o?c�wcVA��p]�_ +�e�2&����ƅ�eøC*b��>�|h������\�!ؚ�s���!�����U�RVƗ��h.���A)|D���!�ÝC����3#Dǩ3��c�:�W��O��^t���@wս7�e�44�ॸ��d>J +8<�t6{ �V��ձ�V�p�;�5NY�?����o�����ʙ��X��o�цo�'"���H�h�qf[qcn�E�!��eG�ӯMH�]g7�9������1��o3�=�^����xSW=N�\+R��:0Cfn�\ÞD'��H>�9��+�e��<�y�����F@X��mX��6�q�4t� +���k�ו�i k�f,i���9�lY�t�3���Z�$�&�Bs�+�h��P$ެ�8����4��x� sf��1K�*#T^� �`�j*o��!3��c�泈P32�&��)\��9bֵ^��Iѽ߸YPx��-���}��`[��1,�8��e4�S'~�� �Ir*<��7�ڥ�_��0�%�@ڙ$��F4��[DE�dY`jHPhL�j�E����fu�V�dq�h�X�W�Ѥҹ�z*u�0f >k���lJ��8����M"̓���א�y\�MCIsM��O�T�b������5�J<[��;���� ����m� ���M�]C6SuE"4�3mrэ0�j:6�-� +�W����cϭt�k�g+9P��k�mC���2sqo�������c���|����ާu���r�o����`~�a�DA����Ùr�>�u�#�Y
,k�.�L�9�60�b#юWQ�!��Qb��J�*�iB�V�*��=KU(����.��u5{�a�D�fٸ��|L��
��:�R/���[G��ϐ1�Uu����*Q�������C����A,����� ��hC \�R��P�|�%�U7��*�>n� �V�~��?�W�ZVҔ@П" α�$���L +Λi��:No� +�"�*LZUK���2-Ƿ�n{�`7 +�� 'p��8[��]�S��9��m���!�5>�� +��F�`��^s9�p~E�.�0�1/�����0��L +�&JQ&.��� +O)�����{5��)���h��}���Lq��>N�{���j��e���M�!��P9�����y}����┮q�)���ӽ8�#���[�i�T +�� +��ٝn�9N��8S 5�yT؟����{d&�"���å_$-��f,�ZI�����Q�f����"8[9�˦�e�Ѕ_��d��&�����y�w./�Ii�j�F,����*���0�Z��V��8^w�s@j�
�H�:�Q<Jc.��3�n�o�֔��!��H�a��Fp��NºE��9�������AK��k�B��<��$��w=g��v�b�4�f?�(��I'(��+v�u�kſ:��5��EB�`É@�Sߊ��8��H���+7K�A��ӦȈ�Mh�k���g��gɬ$$����V��Y�Z]�q6�r-J
� ��w/jS�z��4wܯK��?t6m(�6`ɦ)D�>[���0��x���bBG;�Mh{�N��Z����pG���-XٓH�k�������9��S�>����⩦`(2{:ee���k
g`ZN'�>��Day� yZ��=ɬ���0�W
K����;�1�a���*O���b�T�Ў~]I���^��~��3hqa9u?�cԛUw$@���<K�Ȝ?E��{��J��d^f~Ji�(|�[:�Țmi?$e�un^r�%պ�L Ȩ{=rNZ���x+�|�X2&��3�z�����C�����<���T6.�>��7�l��O�[�������8)C���z2I��k��!���4���D�䓔��68x�m�g�v�Y��[Ғ]������dn߯X.��w�&_�3��:��wk�a�KI�)��}���GcH�rb}��ؔJ\?��$T���IaC�/s���*�����|�WWᑧ'ߔ{Ij��q����9��J
��b�@u�O6�����PK�~!���u +�D� +���ߨ��?^9�)o�J�HW�� +aJ��:�ŵ�0��}n�t�@����\B�EE6�� ���|2��`�j���]4�G��@v���|�w���~q�昚���cԪ�����ba��->}�\�j ���L��[�˙N5�9�c�e�^շj�-m�� �ɱn��n��� +����˅O���v�"a�s^��Ы�pN/Uf3�Z��~�����%��0^��hU��_j�ʈ�a��+kI k&���
s������t��h�[{ ��Ğao�`�!�Y�b�y�7F�Q�їd���tB�C�>���{�i&����J7a�&B
e� +��\Z-UZ��g۳8��џ�㱕� f����nQ���8!3��O�i�ڱ�|�ld4YQ@��N�L��d����S�)d�_��t��J�,�G��E�'�Ħ�0�[]ޅ�3<N�
窳ZXv<\�f�͋�w�C����-l>���E����O���WG=!��� +�g4T��r�K��8]uȰR���Y*�k^q�L.���~��\$�� ��~imsC�e~�,�>�'a�uj43��A��Œ.|H�s���� t�j
=d��B+��s9� +�'5�v�2ۦ$f
�����<~PX�W|:�|�
q:����+yE��TWo���2��̕Q�?�%�{p�g�궭��٠��=n-�fZY=c �LW6#�Ց�G��(ׄ�� B��χ�j;*+���;$�#�R�NЀ����� )n6uQ�$V�M� +J
�k;��w�W�~ߦ����.�3O��yu$@�+��m��3N���l�]��*���a� +���Zv +���DzZ +p��2�9$m�f�
�dy$�� Q���cJu�b-OV�&���=F5����.�xe
��K��L$����4��Ynԥ�[w � ���Z�;θG��3��b�J�1}7g�%]~Ƙ�?�����%������Q䣓G^��!9�c�~IQ"�P�����p���Зx0�G6��~���c������@:��6C����o�:)�����64nˊ��Y�b�֧�>��5� *W���&���_�xK�kz�s�۵�'WzR-u]̂��Br�;�C��P5�J�֟��@R�� ����se�*ƽ�-��O��g�|���/� +����pҭ��B�"�9�F��}��5�eo�k��3�흴�_�Za >���oF#��Ass]K.�7���1H��5��A�� +X��B�J=y>5�{: +L-/�"�g�?.i�q^M�{N^ ���W�ʖ�bb�Kw��]\�3��)��&����b'�K�g��^휾���X�D�L!.Q_�w�Ť��=��6�vB��2��Y47�.��%�����g�6��Yi�F8�� >���*�lj*�f{����#�g����L�6N +�yF�B����<� ^�������J��Ӗp�e��K��Z-MP��B�I/p4�fUZ��i}J���"_l2ܙ#{e-.��'�ۅ���+�)�zɂn�)��M=�=/Ɇ� +������� Da�I����}�
}A�ä�ČS1��mE�%d�o��F�Ֆ���x����{���u +�
�G�?���͛"���#�K��fz��3�b&8g�W?�+���ڮH�u=�$ʆ������tyVN'f�$݂���]�@]��{���<����s�5��*��gQU>��N��h���a����Ä[m��&�c&��'?�Z:y�����[�g��>z"�M�ItCP����C�R]�W�ƀ����O�p5u�7�Fr�J/Q����t��z%��p�{B�D%a�Y�+��v
�^�d�� +��h܈.���h�Ke�x��DII��})TT��E��DjL!t�/cE�9����o�o������zT���C�(�Q��'$Y�^��OW��~DR�!��8`E�9�-�(�Le�h�����.>Q�R���p�y>��2�SF 9W�g���n$M��1��5U� ��
�<��,��L֣�9i0cC��p���}��D.�_JO*u]�o�+��͌��v�B�ºh��D����[����ӎ�&su��t�v�:^Z����-����@(�}�(~O�C?����oM_U�<��xR�V3#�p�S�U|_���w�B�C�� �=�6�I'9�Аf9�f#��-]*�2ƪ�'<k[/��o�ŇF~ܸ��H0_��JH�g%K��V��7' O�~Y����� ! +��E�����?�.R�#��7|c�c�|�73�CՖ��;����?#w��� U�\{k��b�ba +^��.n�<_�8>#��p���>���
fߕ�!˥N��`/�{6>�f��G���D�u|�uSw]ī���T�H�l�X�m�����q?B
͙�x����%#����D"�z`y��E s���nf�~r�����͒H�\BTݜ�A�#.F�_�#waU�7�h%�>!������0����F��f +�ZB���.Qpfgf��_fJzr�Wo�d[�]�Pv�EM.9Hx�r�ԿS��Y�rT�aNt`9�`�u��v+ፖ��_d�/~��?��&6 #Gg;[#Gk�����2endstream +endobj +676 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 2 +/LastChar 148 +/Widths 1129 0 R +/BaseFont /OQNJZM+NimbusRomNo9L-ReguItal +/FontDescriptor 674 0 R +>> endobj +674 0 obj << +/Ascent 668 +/CapHeight 668 +/Descent -193 +/FontName /OQNJZM+NimbusRomNo9L-ReguItal +/ItalicAngle -15.5 +/StemV 78 +/XHeight 441 +/FontBBox [-169 -270 1010 924] +/Flags 4 +/CharSet (/fi/quoteright/parenleft/parenright/plus/comma/period/one/colon/A/B/C/D/E/F/H/I/L/M/N/O/P/Q/R/S/T/U/W/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/quotedblleft/quotedblright) +/FontFile 675 0 R +>> endobj +1129 0 obj +[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 333 0 675 250 0 250 0 0 500 0 0 0 0 0 0 0 0 333 0 0 0 0 0 0 611 611 667 722 611 611 0 722 333 0 0 556 833 667 722 611 722 611 500 556 722 0 833 0 0 0 0 0 0 0 0 0 500 500 444 500 444 278 500 500 278 278 444 278 722 500 500 500 500 389 389 278 500 444 667 444 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 556 ] +endobj +482 0 obj << +/Length1 1612 +/Length2 18281 +/Length3 532 +/Length 19200 +/Filter /FlateDecode +>> +stream +xڬ�eT]]�%�Cpw9�����pp8@pww܂� ����]o�����{������c�UUk֬���؛�\Y�Q���(�`������Pٙ����U�����FND**1g����^�����āf +G2���p�@����?6�#��YZ]NzfM��)u���=M������+��="���OT|n0(�Q�N9DB�^tp��DWm�dZ]^�yT����v��ʖ�+�m�ɰmB�I +��-{�ڸ�3Q�"I<ӹ��T`<�F��_�S6�A�Y�u��wP�����^5v?�{QsgO�t��}k�ۣba��Z�*�����_����~��K鿟�2h�>�7�5p���Wf:i +;�9n�*0i���j��U��\t����{����2���5J[�*����D��Y~V�!y����Պh>���/Or8e�gT\���0�����L�
{��� +ĩ���93=^y>����v� +?�X����AThOTqK���L����z$'2��hW9�od��j���QS���l�����ӂ�CҌ�V�H�Ge�$ߔ8�W{tiuN��g�{�V�buƇ�ː�A����1-+rZ���Α4�����/9(&�W�"����&���fn?�y,���czS>��vʘ<I`8�w���6�!2B�f�1z����3Q�� g�.����b�SO-p�� +F*Ὸ�G�_��Z�v[F��0�^02��DW�%DClY��jP���'�^d� p���}�WE. _�V�����ᓶ#ص���3��2��p~�S�nv��ɠU�1����Ҙ�s7�A����mV��вA +xJ�t^嵅n�4�g�T²3� ++��*��\Z��ؙ�Hj�j�'�L�հ���uhF?8s(��W����� �����+��똼��m�X^(�����ww���!�F�c +�6e�_@�NVf�8���qѱH�Nc��,��v�� ��$�L�P/�����X��f?~^P�Mj~z�L�ԝ+&����'!�iJ�/�U~u��ؼ�[��M3����iʶ�.(�Ͳ�?`���G��}4:L�سO!ǛBI�9���BU�7��[
����B�G��K";Z���z�{�hLN���ǡ������s5�ɮ 7����\��X<��풮��bI���4��V;y��p5�*,�Y����<TCt��.�G��N�v}�KP� +��_�,d��|v��U�R���,G&|UFk���n�y�d|��@L���/\����&3s�U�k���*����OF9��>�D�/����n�hv�J@}G}����2�C�tl��U*�@s��� �C +�R�^��O9G�G�205#�{��ج���~w>���Ǭ�����7*���<P�C,�B+�
��A����Aչr +�v;Dv�kL�|9�*��lB�M�W��dq>6L\�a���E�Ps$�Q�s�C�������1���`?Rq�b1�7ވ����-{��Ye=U�oV����;��op��ѕ��N�O�Bg��sf�{�W�����>Z����� ��=ůtcEo��id�<��� +�.I��d�j5(�Ҳ�?���>P=�u5�r.� +i��_?@E](pPdI +����3]�cB���mu����;I��f���{���]5��\KU�����xQy6�E���(¶أ&o�� +�o��̶��A[��+����R��_�b_e&b����7GB=m������J���)��a�ٱ��_.)�b��~E�ݢu����'����O�E�"\�a9��F��D�Q���l�c�� +Wg��a��W$�N���:�j���5=���L�^��b��5p7ņC +��9�,���R�{�O�'�qoU�џ^H-�}�(��f��H�{��h +���E�1�~ L��R"�s�ãeò/��47F�q�.��b�_��,�I��C �!� +�6=�X!��<��5�P��ө�zW(e�Jy��)�bC|y�꠩Ք\g�(��p��:���1���"��{�/!3J��c�8�C�I�Q�g@x$��K���.��t�����#F�̑�Iw��u |ـ|_�������_����yI�v� �Q�.#F��Ŋ���b�L?ӛ���#�:FЯz��^y�B�W�ը=G4�)ı_C���d_3�6�vh��!ޤa��Q�I�z����j�$�C���D#�%TW�, ��P4�!�� ג£��df��I&;�!�%ĸ��;V�d�0���ܰX��D�n�y'��:I�O�#������&k���q��ڮ�ҋ�bh��jh�"�Tf�_��%'1[� ��������X�[HX�;��&ir9m��H]��1��Y���zamԜ��DR��$A +���h�l*�GA�����q�n�1���L)K�X�#�?��w�J8�s.I +1��`Xr +�L�ȯq��o�N2D��3uh��uQ�$Gc�fya��<�<&��ߕ����w�@U��M�I��21�bl�=�[����x�$�!l!�|��=8��"��BT��>|�P�՝@eEK3�gT����ZI��i~}tz�#Ƕ����D�I/4sn�2�~���!�&�ʧ�JM� +Ćv$��J��m���ss����@�%#B�x�o��rx��.��T@���̩���d�.��q"Cv�x���,��W�Hs��)�u#aG�m����)q� ײ훚s��b0���0�W]Rc�w7�Z��[��פ�rx�p����Wybvћ��Nf�-�;;|�K\Ya�R3ݒ��S��
d��b=�~6 $�u�1�`D@מ�I�����_3A�{6�Vw�[��Y�OƮ��I�CR�jq�v�o�j��n�DF�8,a�C'�4�5�d��o]��t�;��F��x������z�+iL�����}�������k�<��n偭)��G�w�`&(WIT<���\�Bzf����^B�w��\�ա��r� ,��a
;�֙{��bĩ��ԟ:���ԋu�Ҿ���\�<��d���w�\Z��uX�|������S����[n柵�>�1�A��-bĬқVN�LG�s�}�UC���h�X�e�+ozJ
�,�6���rc���i�VE��������&0nC��R;z_�/�[�!�����̋��}��`�~�%!��f�V�K���w#�m�r";gXD��ċ8;�߆e�!UnBs`��.ր�1Buc�����ɓG�n;f���U��ᵬ(R��r��u����R����L���/H�"!�e���rw*+��d�>����L���c�'�� +y2�����ȸh�}�?��Ɔ��+:P����N�������9 +�g�W��n���� ����� �h��E����L��OJ��&"�~d��f�u���:2�GV$�� br +�mG�y��?l +�wz�.NZ��N�b]��B�!V�i3z�Z1�o��1����%Scbn��Fc+
����q�/�)���z/�=�-.�G$��������A�r�n?��g�#h��D������D��_�.�ȃ�t��y��D�,������
6r�䶐�� +�)̤hX�.��I��s��Y;�g��f���%���.���c!���c�Q�Q6��?�O���겳Q�^�ɳ�t�����$7��j��lw���߫&����҂2_߮y��BpE"����N��&Ԁ���8��B�e4����ȕ�'H��P���ND�g#�8�|t�60�&�wZ�
��Ix��R�zDsn[Q]������Ug9��1�u�}53TL���
��PhsrQ���K䯫�2I3R��v��Wj�;Z{�9nf�J�����������O�{f�:b�M�#�t�8��&<�qu��n!�9 "���&�#}>{ +�M!N�Ŀ������Ж�<]B83��'���"���2�K��T��y���d$��81��;j���R[B�,#zC��~,E7y������h~����c�ۈe�Ѕ��p/��㡪tW�<�Ю.`�⫼��A>���1V,��#�
?���� B{�,����-���B����L������y��L�H��|�jƛ��1+�īy)"�mz3�y�U��Cy�<���ɶ,ا��
w9*��GM ��`�uˊ\/k/=�C�]�B��Vۿd��Wi=��M +� +3j���.|?�? F?*Y�ҾxI1Y&��Z��s��q��_�KWt�K����^��rXX���P��1��6c��lRڀ�f���4E�^���tXj���'�võ(7��q}F�T:�Ń�Sc�$�-����W>O_�k_�i�|X��?B���L�6�� S5�|��J��S��ٽ���Ƀ�^C�3�9�.�d���������;��{i}� +�d����������>)e�֍��p[)��9�J��H���{
����^d.���� �te�cY���Z�I����X�j�.Fk�x���� ����*���!��`��R��7�q*�De����]6��9?f|��K�t��Nɰe>����p�E(ojL�J�hJ�'k�
qb獯�F&�+�5���41o+@��ϑ��n*�)�{P�vN�p彑�gC�k�n������7'(_�m�i�Y�*�/���
��]q�_���ɕ'\�,��
ϖ�����i$�m,-��tAN����R27MC���ŇL%�w.U
"�����o���Ύ� M��#��YsS�å{벭�&�h��nȾ��r �bL�%���M�@m�uI9!_�C&O䁫�hpY��o�@�,XY"�?<9�U�?�
�3v��n�0�zqd�� +���##�х�^�s�:s��#v���W���2"Q�^���R܁��� +�7ٺ�X|a��u��d����ue���^�f��(e�v�������^�����w��sh�,/[�� +��� a��}�)����4[��yV��-� +��Xȳ�H��+�J���w���J#�I���� <�:�& +R�*���ɍ��UE#�`�ӂ�7�Z��y��Q�{�/��gn
�Z�Cy����,|H�e�nj���ڧrQ��-\rq��:��_6�>[�(Ji��{ݠ"1]C>P1=%��`��%��$:��(M| h&ē��6_��`B����rB�Tu0�R��5N*�
��.��{ۆ�K�/�_��ۡ�17s�Q��T*
LZ��Gt=�3W���q�HrM����ɣ��j�w�_� +��W}������W�H�^�&���yɈbN|g��WS�L�eZu�����p����a;��o�<(�/�Ѱ=hy7+2�}���-�J�.��,;�e��3^�>~w�<�t]��B}��闺�1֦�� +k?d��l��qCم���E�@�r8�)1R�03es�T +@o֙/U�}=���|���H�L`X�0�\�`���Wb[�ː1�r���|���L�XZb����k�OK +"��l&��\cY�V��Ihp�N�R�e/���q��LB���E�����~��cz� +���]�̒!c:�b�d6����rb`�p�)P�}M�uUŷ[qq�9S�57�(���4ܻ.���_��Q/��Z�y$���x�''���-ž��J-�W9Ms
N{��+B��R1�O���0?SǡJ^3�o�>�d��~�v��"Z|��'��S��.����$�� ��}qH��]�odJM>������f���=Z��t���b�ܩrơ��1��P�K)M9�ˬ�%��@m +�{���&�pLƯ-�W�Ĉ�:�Û�:� �$��~Q[��S+ܽ"G�U���EQ�ܒ��`ĉ�XG���s��x��z�i-�˳vP��H��h� V��A�� +4��Lp�����Ϟ�A� ��]_�s�(M)���ǭ_����x`�|wFE6������)8�6�=Do�P��������#YHCfܥ�6��4h@�z�S�U�ǜ�R���I7t �`0�t�t�~���GLթo*�q���נ�?�:�����'f̬Qm��g�S�fv0w{. Da�H��[�t�5�vY�@���
���������9*�`�8$�qB�;3�,e�h�w��ƾ��krQx�-��-3��_IA�'��b�c[�/�5�ๅu����HR�:U��y�F����9w醬���m�,)$�|�s�Ŋ_Z�#-����g#nB�)�(� +P� +@-������O���bz�ޮ�l�~RڗF-{\)���4J8�M��y��U�z7��^��M�2��R�ɨ��-=7���s����FD?}�? #!� /7��n�fL�ܑR�X�%��'�U#�bA�54J���M�9�]9i�&)����9� +(�oݤF�7�~��h�ڈ��#a�������X\_B�)�x�<}|�[E7�
E²���b����j���L��+C��:�;D�1������[�&�nvǖ���x.I�����Z�;^��ȂŎ����>����h_�;���Nw�Wk"%��'�yB5E�z>`��n�X��F�x�p���IJ�L�O��xm*q`Ҵ�oJ���yV��myP���<7jp�ڏ��Z�IZE�^��Yg�9�쿼(��-\j�R��⺞�/w�_~��\����xg�v�ϰn��5�����]}+ �Є����S:�ۭ����.�!o)_ ���Qǃ�9�E= H��N +��~�亯*$@��mO� ��1TE����X��s���{��O����ce$���裸 �9����V�rB��K��ys'1���3Xb�%>�|�w`s$�DL"RB�»���
�:8q1r熉�,�VO*ʊa�d�Ӄ��Yt�'�f.�bhC|�'p�����j�o*��d?Vb! +�����A��R@v\��2uO�g3���.�0_/L��{��M�aDW*s�PA;�Ћ� ۡi���3�O\�~D6�� +�'�ز8�)�_M��a�Vn�r���Q}��'���ݑ2�.XqM�At!��>-u�烙����e��2(�E��~�z+w�-R;���2zŲ�!���(wg�P�q��W����,����Ί�( +eB����t��
HŌ0D�wm{� +*i�zBf|��p|G{��4s�҅+�H�M1bx&�~�_�_bR�܍��gGR�h���(���F�=LG9�;�D�/�0fJf��q~(��w���,s�jv��e��0�9�-&��pT�������k���%�^���C�� +��C��EӒ�y��^�x�+ꒇj
��〯Zc���ʂ�>E^���4&�G�l�Ɋ��)��ች��gʻCS��s��;�xi���l�[9o6'��Ѻx�o��vK'�z\�X��\RI(c�>�o��%��8o
��ޗ����j������?�0CZ � +�b(W +#�U�:����W�-�����?^_�{�KZU�e�����[h�Lߚoج��@�����a�_:�����u�X��}5�32��|Ft���}m�w����h�gwԿ&蕄�H�탵;�*ݓ�fkM�l}��v���tth�NAT�Kh��>?���Ǖ�XR:��w��k�sl�� �O��U1|�r)���.�{<�73j�Cg��gz֩ mX�9ʯ�њ��#w��ٹ!ܢ���RW"7т���H��-����2�<s��A�Q6�[��OR_ThB��D9�H<csUa�t��I(�n����1)�N&) �[t�R�go7�5����6t����E���u[BcN!��'���@_/:R���Y���ݦ�����k"'
o� +1ٟ�#�(�a%y��������H{�0w�d(��[LQ7���S��g�����fǸ��f��q�ȗ3HfwY#�H@'��i&B܁��g�!�;݀���Sٞ�#Q�Xb�g����AZ�����*��T�9���h3��*�~���YM��~���Ĭ�ѯ�ōIu? +���)Ss��݈�) +� +�x@6���ێDj�&]1t�a�LA +�\Lt� +}q�9�S� "@CV���7��G��R�j\=�T�AZ�u��]��.1柚ǘ���j�?2�ȱ��в��*X�I��_^j���%��g��wQ3��,m�y�0aP�Pa�@"6��'W+S��5P���Ѽ��ѣ�Y}ȏ[���O�$W���,�Hզ���&y����HtoP��^��G��Ƈ�t�ނ��"p6(�3R�.�/��<ޮ���-\�
�ɤ#;)0WR'��=^:��ff0� +m�W��@C���9�B|!�N)6[Rp�D���L@1������e/D`�I�)֭#R$��
T��iR��Pog��nR$!�d774�\�M�l߃�2-���W�'�FϹ�Ts,�ߋ{n�Ǭ���>��ތ�[ċ��M�{���N��8�V� +!qqӬ�KK�xD�BK�G JiP��F*P��-�k�_����I�ʩ�B��e�r�z9-��|k3;����߰�ޏu�ׯ�Np���<�(ս�1�ưy�m�~��A��Kċ)�����J8ڋ�D$�=+.�}����c��q����:���C]��?���VR1,�us��@U�� +�6���[��RI���~j��gX�泍H�)�_�R��Ôx��Ĩ�A�Ɉd&b��o�F��{q��k�)����OT�y0��t�S���N} +-,�M��:��K�Y��m�м,�wRt��ܻ�k��0���6�3)c3�����`��6O?\ +ŭ�
9����*��`��!:��mQ���[�����gxl��L�mOޡ8�%]�2&�����Ҙ��M}@�7^y,X��]}6��6��q/��5�mFs�p���Yd�a�SL�R\���p���^Շ���Bk���
B�.a�}���ĘAѫ��mP�,�:6�t�Z$�DW���&8.0��ċO�j@� +�ߣ�$r�#j����-�7���G��,M�9f�d� |m���q�%R�Z�N�p���9[��A�i��ϔ�?7t�)��H#�%��Ϥ_�D���L��20z��n�=팘(�"��U#�t+��P-�o�%i�S'�Nf���Q��Z��O�s�(>=!,�b��O +����1�Ws�琭����K����^A��!�m���P�g�F�i�+�t���u#c"ϣ�P��-19l�X���U�tT0��RC�x��r�����&�q��=?;]� +��j��N;�m[դ�IΠ����~�`;���c9:�̯ig���2��6�^d���嘾��9�%�O;ݺ_�}P�}e,�O%5)K��&�%��t�g��ѫ��=H���~��)��($sJ��%�UKKT�,�� +6���)yƤ��Jɣ7��gD�S!lL��$���*����=���,9�N��⾿r:��K�X�7K<��s�#%f�{� +��2���#z�p��r� +�zA��[ʈ���ڛ2���A�:��1}�@�v�Ў-py�)���d�I�X~��N��b��Z����aj��guM�V�}ت4J�4ۤ����g��a<��o+apPWte`N�-�T���.n��sṃ�^��@(�,}!'���ԛ�&Oʛ��3���[��i�p�� +�{��魴6�^�rJ�������� +�����6KubL��Ԑ2��,�㥶��#rF7�9�!����_��k}WĞk'ĺ�%F/��8�ē��V.nL��G��e:���
����6<pw��F��������(Z/��ؙb�0 3p����F# +!�1��M�Y��E�<s��p�1Ҍ��;
n:Q��|af�� +��%6��|�{� +t��:G��n˓�I��-�k�.��G��-�Cl.SVq�p�WL�UN����h +ۮ����9e�Mc�-R�!]�v�z�hG�!��\����U9�pT��T�g�F^��Ͽ^>�:��Z�R�Y�
�4�w�eO�Ҳ����Jb�$�6�ZF�aI�B���N�e���rB9�g|�#>��֩!H���
� +�FuB�R��C,{�l6Ѝg�Ru��z��\�!����~��_�gؒe�$}�tT�-��ޭ + ��0�IR2a�Ft�����"tz>�eRA#��ؑ2��o�A��99l������5���Ŝ6�[��Oo�fʨ�|l�/_��|�e�|�չ�^G��[�>�����9m��ېw�_.��i
�Jۃ{=��uK����U��M�f��GS/�C +������n�(�|�?���QX�t�}"�m!�7E�l���"���r �ln��S��O+�c�����-ш��c�1%��x��=�kt��-������"^���;hӸuR���3��I����� +uŢ�=[@Q����ѹ�����&J���V�y�֭1 +����_+��p;1;����(�������Y��B�O���3�C��ȼ�3���9� �0���T����髌'&ߓ1�����s�ڵ���k����P���K�C:�(��D�U4��+RF9~O���a +T�Y$���1����</q�ؤ)9��Q�n���n��X�|�Tm��BA�02�p�~���0#A���ߺ��@�Gr�{T*
.5�]��9R�{��9:&����vFg�@ﶡ��;�J�X>Uӭ�^��C�� +�ٔ�ƾ�E�gK����u:D���ЁCd��!̑,_w��o ��w�%�yU�/9�^����'z�i��!����A͞�!>M��'�g�w +5ʱV����_�Ƈ����Mh����N.<]��J�Z}�m%7�������zBO����u�����\��Ie9�*r=����-yg����DL��(-��0���5m� N�U)MH���F�p֛�)4KN�:-���,��u~U�cޏi���τa��-������� /��"�c'�R���v�7��#v�3x*�@�v�nOZ��a&:���Z�h!G��qv�=�)_ +q~�of�ٓ�`�+��r��K:$��cOia��1��i��.�ҧr,Z�)ꄆ���v߅���m�ȇ���&� O��}^�}�*�zhP��������8���=��0�\SϬ��F|U�P\q"i�� +0�o`9M!Kx��8R�f��8�_M*�)�n�1��1�D~e��'�ո'"��[�0���룣V�=A�R5��N�,��� W�ig��Ne��ħ|��T��KQ��BO0��J��/��C��9�ŝ�_+#w���U�̣��W.�G���!Ά�0�+�b+�O����p�Ax�(c�(�(e.7_)*W�����]�|��[RE��5�]e��aa�2����F�x�"ɉ�[��({ �\;UF��!�� +endobj +483 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 7 +/LastChar 125 +/Widths 1130 0 R +/BaseFont /IFUJHU+NimbusMonL-Regu +/FontDescriptor 481 0 R +>> endobj +481 0 obj << +/Ascent 625 +/CapHeight 557 +/Descent -147 +/FontName /IFUJHU+NimbusMonL-Regu +/ItalicAngle 0 +/StemV 41 +/XHeight 426 +/FontBBox [-12 -237 650 811] +/Flags 4 +/CharSet (/lslash/ogonek/exclam/quotedbl/numbersign/dollar/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright) +/FontFile 482 0 R +>> endobj +1130 0 obj +[600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 600 600 0 0 600 600 600 600 0 600 600 600 600 600 600 600 600 600 600 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 0 600 0 600 0 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 ] +endobj +447 0 obj << +/Length1 1630 +/Length2 20284 +/Length3 532 +/Length 21188 +/Filter /FlateDecode +>> +stream +xڬ�ctem�&��b�ضY�m�$;�m[����m��bUl~��o�sz���Ow�Xc�{⚸�=���DI�A���(ao������P +��������@���ICGG�_�L +��휁4 +��do�b���K-v��n/�p�Ci�ZQA@�}�F�O��[M(c�4�G��������h/�
UO�"������ +_����㪄��Ղ��a~'� �ODbNw��K���ݓ�-�! hޤ���c��
+� �"(t�n>����n��4�g��Ǧ)�+tЎ��W� �z�W9����+�A�=��D ��M�!?������J�fե�����$8��\$����YꏲE]a4���6J�X�\��Kx�P���9��������*1�u�d��}�#�>� +`J+y��/%����5�-Yxp�.�C����8�ahs��Q��y�:W�Q$^o�����{�ڛ�4� +m�V�3q���ꎪ��J��O���7#]��ϑ�v�N�c���V�2ȬN�n�?B�Gv������Ǜn���}ٶY�B�W�<;H��h���_������fEѶ��J���`�Lw���������nioho�/m�Q<�ea}�գ"���m�@n$J�S<|�� ��˚�̢�KI�rd���C�D`��rk~f�F��n �.'��-�XK���[��2FVtF�ab�i� +��z[ɔs6Lf��_��տw=��H��gO���B��%A��3��r�`���Y�a����4�3�S}%T�r�[��j�%Ў8QZW2�9��?<�F���t8�)���������+�LuB"���WhĚY]H%���g�7Ѩ�A{��\�o^lB�� ͼn'��8������h�I%o�s::W|yY�%��w�qٞ�G��ڵ�f� p ZqD8�`��wO��x7y�]��lL���m������]ZW���|.kU�st�o3{퇱'�`���2'NAQ֝��E�%��2�~� <�'hjr��3���LJ4�N��F���1O;�tΛ�-@�̅�g��e�=0�����U�zL���zٞb���}�qn,����2�6���3��|lh>����k�o�v8���G���w�ݾ_.cUo��T_�v>��8�4N�u0����w�ċ� +�2#Ԍ8���w��Q��7��!T3���Ir�|n8ϭ�gҒ��ԉp�?� ߲�l�ؑ�S\1 +�N��x0S��v{�EFE���H�ظ��=���-��1�����OM G`5�v��E����:�ۂV����YC��l\�N3����\:v�_<~��Uq���.�;X�7u]Ԋ��F���h �����;��M�P�������j�Ѕ]_/t�Y�Y�,:������8��&3$����l��¹#I�, +W#�!�1N��j�}m�z����ڥ&�;Kwo_$U +�5h��_0�6�[���F�:T%��v(�2�z���V���m0�I���i!����n������{j}n���xx��2X�5^Ņ�� +�nv�)x��>3v^��H�wC�"�����ɴ�&O���C���m������%)�a@�J�Z�k��o�%�AO�\�9}^\$i��ը�]�8��G����8�L�CW�BQ_�)��Z+�,���ܑ���x���s�f�$V=a]�S��y� +w|�9,2�^�����Ԉ;�)Y��?�B�5�s�PmWH�X�I��^8�к�X�L�)\��QX'^w%������E���4�.�*L��^�dғ|��4�/��|�s�i��t��x�)��έ�*�N���������dQGs�)�����%KA/��F���H��+���-3ɟӊk��r�CX�0)�S�)FZ���? ��v��>?����� #*�R��Z��� +q=��*&Ħeҳ�(�x��IY0Þy�<�ӉpR� +�U~^����ܖi����CѠ�^!Rd�(�o|w�U���q~-���6�E�L�"������q��dx�>�B��/��d���J�v^ #��q���"3��d�!�����>+Q�S7����h�u������:2�E�2 Nf0���ɸ#���#^ŗ� ��<��h�s��*�M����0R���GOk��H�>��R��u|M��t�j���?=���Z*���$wZ�iM�5�
��s�}G�X�|�#ߥ��z�{����N�5�� v�;`樂e��9\�G�=��7^v�ߗT�e���/"�M���.�G���\��!��]�C*ھ�j�1�T�,�cG1�dv`〪?���J�_`a����hD�Z�ˬn +}��Wh+����e�p�z�D02�Ť7��.)ƓI�`�SL��T�b!�/8����|�&���]�>n��mu��V@I#$�� +Z��������I��Kk��~�M+)gz����#�� +Z- o�פ�&��f�#K�űǸ4��?���W�_��u[��NH)���M����"���cM5=t�.��?�5u�]v�=JϤ�,�����w4Ŋg+,��Q���d��m�C�J����D;�-�^O�q�{�`�6���0��.��*�*?�똉:��a�K��nðp�CVS +���u�x���X�94�s�K7��7v,|kk�&��� +�'�4�:M���:����)Ո� +��٢��&��
��7{<`1b���ֻ��I +�"��E�c<�;�&�j�M��ר$0�=��4����##}���!�`� +DעyF��� +>i�d��C�K��~�p<�{�m_;���*�gg7�����j��v���l�8O|-"}�g�u��}�����r�Ǖ��J���/����/��շ#�c���ޯ�
�(Z��.��K/\���g��/K����`obt���
���C����j4Oa@h��$/3Mp_��]�#S�2�+����.�?��*�g��ZӈbK�&M�,<�a~�{�Yʭj���
w +�]�(�<��*Zk-bؘI�O���J��*+O�9�1�&�<��_�����ꕂ<�B�&{��.4��0V��g���
��y(F�ϻ�:"���.ӳ���.S� 2�H�����=:vUe�G)�$"���!Ciq�,���A-����S؞vb���3�:S�ZU\��Y�hr��ޭiH��}���^��ThRTC�u�F��~��;�:���Jț��z��yj�O�N���o�ĄFa�B���C +�NYi�%c �
�C�P̯WR㘛,�������>(
�]�?]3�e� +�4�����> +P�+�d���'�P�����,wR��QT�m[���mW����aL�/�Jو�gEY�QM2l9 ��#_�7Vβ1��b%�<� � ]2J�xy>M��X�̈́p�O��Z +ζ<Oh��M�H����t��� +L��f�B���.����/�C�����lg�FH����%�.�j)@��)&rG6�Ϣ���&Y�o�YY�O�7�J"�I[.������!~�N,�;1�W|��eu_6�q��ce��>��z���ʆ�#��H�`r7r���.d��t�pB��ox7 +���p��)'ԧ8֏������GS᮶?8�p�r�-���^�����G���5JY�f�Z"*3S�Y�c +����V>]t�t�>�b�$�E�����HI��7>�
|y���j�2��mJiM�IVZ!&���Ix*��>�:��sǥ�a[P&�l���țI��@c�A&�%���-2i�-t���}�|��Wz�G���l�7�c[��U�(��! +�D���%���<�Nhm��E7o:�qp��d1��ۣK]��'�s~d=x����a�ᠢڃ3�C��,��p3�7j �H��,��^�)��4�oE���=��[�$BS6R�\�<]��J,(P�KW�~�����A7V�窣Q�N�P
�!��?��k��)���q���$�P��1$�����o2hk��n_�˴�Tۋʟ;[�ﯶ:��9�������;}Ǎ��F�{L�������Ud+��@�w>�{���۹a�)m��7��S?kz��t���2{;�ը!�������dv(�R�)�3Z���S�I�v�.��iU��B���rĕp +�`�`��˞�G��=�Rv�=�H�j1" +��1�PC������=�7q���ދFqj��(�@�ɟ����I��e`��)P�1z�s� +k����*@���I]n�\e7^A<�J���Iv���u/mT�"2~ǘN�������^�U�a'a���YQ� rX�e�Xp�t5�Ə�I]�nI�x��r�`�ٟ�0j���X��}$���k7�h�v2��KS�����rC������B<p�����k-,�L���l#]�y|Z����K(�s�:�����qߛ����Œ'��I�t\-��;`�mr�l��$���{S#GB *��0&<��X%x(����[ +��ߒ�7�FВsRGt�G�:wU���MR2q��&�:_*�k6�����ɤM��}p��V��|���8�>�Ό�u�����&��G*�Pm"�f�<�H̢�T�Z��b"ʶ��#ᨧ�*1��/�M(�����}����>��B��bu��{1�����ө�bF��L��4�wpAu]hT�+)hk +����6�8�fB]�9��SO���u�!���PN����/#�I���q�y�\��q�:��ͽ�H;�r�Q��ɞd}�6F!��&~�m�B��e$-=�U�㤤_Z�`�8��|�������o�,}�q�2*��5��/`j~��iaA�E9������ƕ���Ȏ5�����H�W�x����A�ߒtph�k-�ք�J�7DÄ�E�P�[��/��A +G��R@'�O+��sk
����ދQ�u���*�E}w-Csj?W����F����AXʧV��E�1�2��5�U^�P.�-�ɏ(�zVr����a����1��w���{ʦ������LN�ß�>���S��U�`r��9�O�1xp�|y��4�Z}zr������x�m-V�H �Uw��Х���v������k ������0�W��cUt>�%~��a�Ǟq�u4�W'0Y�B��ފ`�e=�c�ab�h�e��,~�+A� +g��yi��F5p�Ih��6k���0��t&ӧ�&)�E�$�@&t��+ +�U�y4$��u��}�19�D�]�$E_��X�G�R��6��������a[��j#��Z�W�Șj(9�a}��~ŧ�'�42>`͘x|/G��������V҂�F��3�j�9�X���E'����_�����8�Rr���'D���G"����B�M��1ƩD�WF��=�9Mz����[���k"����5�$�~[����16��RW�6��MU��,V��`+b�]�&5Sƌ[@��o"?@�A�w�xOi��6)�G &�r���A\�M��oB��\a+��렁�;���/ؾ�7�
��&O.�7�W��mo��}��D$v.T��d��v��la�["����Psm�yJ���_D
b�#&u��Ϭ���z2��4}��n�Q2"ҽ�#y\���Re�W�� +2�0 +��;4!.�6�c�=%[h�q�7���nz��� +�n�*�|l���z��x�A�"�&�&�CfO�.�5�b
�{�s�ds�v�9f�!�b~D{���ʗ�v[<� �F� +xiI^P�jIe�y��"��ҸK��-�������ٖRh��f>��輫���־P¾Ji��M�P����j�F�om���ͅ�l��tdF V樂��͝d�,'��u��l���=�)3q?�ִ1G��;�`��d��8Y_�5ts�������$��s�Xv�����@��Ɇ14B��L�9��K�T�-:ri
�>e�nn��I9� rp�Z�j9w0��w�e�|�8��)yԧaH�[P�bfl���T�9������!&��jy:X�[\{�2M$:��� +i���e�\UۉY_VCRk +�N4Q<��;�}����j3~��uf,.F?�aٛ�WT=�wOoYѸg�N1� y~Fd�o5Λp�ѿ��EJ��"+���Q~��>�������� 10jXO���M���Bɚ�Ԋ���V*����q��[>��Jk68�x�����!4>��G�?Z!�p �-���jy�8`6N���`CB��F'�ܺ<~��� +��1D����4kQ��Tg�y���{Q�>zDiXY��pVZ�Gࠢl�x�S���d�D��2"��: �+��hf?I�u�aF������2#�A���\=;��:��I�:vG$E+�����n��_'���O3WkB��r�yv�͒G��4��.s�E���L���L�eAB� +n +Y����(i���*��|�i����wo������v�:ro�+X�*��A�>L2o+�^��)H� +�~�~�y^,��; �L�]p��^̂ϚCQ܍�H� +%���~�X�z}��N%� +bk}���R�sh.��/���y� +&K�=�>�0 +�7���hxa���n�����[�N�Z +�֬L�;�2/��U�N�R_��+[�&��&�Z�:F�}|�̘�2b����;�-L+>&����Fi���,�x��ǹ9���*.3Â���6��q8b�_:w�w(�\6B�0����1�R����,� +���9b2��H�Մ���#�O�*���V']�EL��)*��e�ß[�|ۺ� �n��r���%���Uɳ�ξ� U�3Z^����WyuRj�n��Y��^�T�0����eM�M5C��(:�e�;G�ߒ�!7]#�j�(��Ɉ`Z�~��p$��t����;1�@3����s�� ׁ3�I�Ym�n(m��-nx�0P}�_�ꔥ$�#Ð�,o,�(���ß��8����P�ǔ�]n/�u~%xH�����"G'���g +�>��Cr��V%�PП��(CΌ�Չz�ߓKڜ����O��K��insȄ��������)�����z��q���\�p�mU��~�"��ˉ�Z!I�g�~ +�}W_!�T�I�!Aei?%���
�����aT3�19 +K0�$���ӟ����������1�Ɇ� t:����>[�; &���9TDr�-��HUK�6ZA�,��}f�چ\���9b�J�6u��hI6�O^Ik|1c����`���j�43�\�Ȑ�n��:y����ᰲ�7@͙�Dҝʠ�d�f�����l�JT������;��q~Fc�L�$��Y��[[�U>6ӄ�Rp�����9��Skٕ�5<_IF���as�0�Fl�LHƄ���F7�A�9�)5�L�tMf�A� +�~�|�z�������b�c7��J7-/�d��+�ּ����q��Bu������IV�fk���9D;9�y�g]9�"���|A�k���]W�]2�YL��#0��_��3�a��<�Q:Z�����j�Y2%��F��U*�c�n��n����%�R��bO�1y�s)�&:d�M�����ъ�6��B���H��_�����.`.Y/�QY�_����*d�l��"a7�M�BN�U���s-�]ENd^QtN������n9\�� +';vao���Lo�\��p���T{��0����v[�n�Ei�7��GJ>@y�����C v��Xzo0�9J��K4��QN��ڧ8������A��p�Pr�����kg���p +�+u_��on�Չ��}�U������Ü�lGu�?Mh�y�$�Z���B������ +��`&Y����/( �Qr�,��(qb�9�q �����>jb=�=u��S�z�Ow�я�S�&7������O���v�P�o��7���O��� �;X�l۫纔(0C W�
A�#����D��E7�P��TA���Ÿ��><��Q���{��s
�3�n>Cw��z�M�k��<�~첚�|���m�����������k>��!��oR���Hhj�B���atj�4K�6�|�XS�|�M� +�;���{�9
�t��sK��r�y@�l�8ee���Ej.H�����W$W�6�s{�)�[ȤY�7���xR߶��>C��}.����e&�zLfl}�$�sz#p�U%r��q`\?�=�����_�F!�ݯ���XF� r�.f<mʓ�����8j,������p�n�W.��Ea,�Y9��ۼc�x�_L�#�� W䍓��L�a���)xE�!����$��|�S��F�K�JS�Y�[��bzub4n���͟�氅!:�\#B6��m +�Zq^q�Հ@���ޛ��Y�Jc�f:��J�ۏ٬��#hV�� �k2^��S�|D::�St�ߛ�C����)N��������0R��ā5|�=Tp�k��?��O��O���5F�z��14jسs@������m�
M;u(f���^1�Pc�a���f�a��mHg��J 6VᓬZ<��|�#�=�_���B�0��A6�S�&��a�v ��r�����N���Q�b +C� ���Ϲ+� +a�ǣ:FH5����?5R�E�h����>��$����[@3oK}��-Y��z{����
�zpv`ՀO@?����zK�J���HRK5���N�f�dnz���:q��v_�y eD��v�ꙡo�����k�,��B60 +D �V!��.��FN$У�VS�Y��?>G{�S�]Ch�&$��F���j�gUu�H�ֳ-�������Prg=e9��W��۬7z����\�p��]�NbV��EAb�a-�����
���i�,�}Ǯm�-@k���`2a}`9-�(f�s��m�(QO�����tC�+�q�j���qv��IR�4�K������ò�TQ]��Zh}/ +��R�8�;��;n�gn#D1ZA8��,|D kik�X� +$[�PQ4T��,|���R�����؎,�4b��2�L�_�C�zO��9�D��T�Ȓ[�h��w6�j�L�7<�]64�]���̂Z��4�z����h�;�+�>$�|_5U�R��kX��a��^�IFJ(Z+-1WG�`����a�:} ƗULσ��q�XN�WxiQ�3+}r/��\R�L5��y@�/�s2� R�
R��X����%���U���Y�?��*��TC/� +z���yO���
���@;�m�O�۬�z�x˺���� +~#1E�5�~��<�h�_��Ő'R{��D��#1���|oM�H.�]�MV5lg�cM�p�`�/�R� +endobj +448 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 2 +/LastChar 180 +/Widths 1131 0 R +/BaseFont /AWVPMQ+NimbusRomNo9L-Regu +/FontDescriptor 446 0 R +>> endobj +446 0 obj << +/Ascent 678 +/CapHeight 651 +/Descent -216 +/FontName /AWVPMQ+NimbusRomNo9L-Regu +/ItalicAngle 0 +/StemV 85 +/XHeight 450 +/FontBBox [-168 -281 1000 924] +/Flags 4 +/CharSet (/fi/fl/exclam/quotedbl/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/quotedblleft/quotedblright/bullet/endash/acute) +/FontFile 447 0 R +>> endobj +1131 0 obj +[556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 408 0 0 833 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 0 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 333 0 333 0 500 0 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 480 0 480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444 444 350 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 ] +endobj +444 0 obj << +/Length1 1626 +/Length2 16965 +/Length3 532 +/Length 17892 +/Filter /FlateDecode +>> +stream +xڬ�ctf]�&�v�ضmV��qǶ���Tl;Wl�N*����o�>=��ߟ��c����5�5��cS�(�2���%��\X�y���Ʈ�*����<� +@SK�_9�������N�����ā& +\,� +@-������l +t������_-0�03��������?p�[�3����R�/�L�Z"bJ�t����_����E���/��Y�����:�FT�������
``cg��{�p2��R�+���\�,= +j�{����T�׆26M�~�y.�:|����Ʋ��I^������nRvp�1�"f�iF{_-�oC|�d�8ܝ���_�E8���s�D@�V�A���g���ى��VWxzF����j`txh���� +�ñ&sw8�� +��߈&2?d�`�7ɜ����tf1��L-W��lӌ����,��j�HnT�4EO2��/�L`'�Rc;�W�,'Š����온�["���0L��_9�#1���%rZ4<�9�S�Uz6؛����B���'�q`JZ��[�0�!�J/�N2 �
g���;ԇ�P�'�(��j@\ϲ�~#��<Ȥ���X�V���~Yy�Ϣj2�8�}+�5^ݞ����IT}�n��擻_8��o ���ř��թE5p0B�'�J}�:�p�2p8�pi��OM�?2�Ib�9�g�YB�5d��$�E��P�����aj�F�y1;�-���dյ5П㦏3ڕ�)
Q�b��e]B���~��3�p����mG +�AC'+�R&M )���(��e��|��U?���F�G���Б��Cщx�ou�"O���vj�E��c\w���`��Q@6auA��Z]�|���Ć�O:���b�L#�]nQ?�����jɲ��!zwf�7����L� �j�+����s������ʣQ��^вoI洙��J"��a,�t�Z� {zI��@I�����|w5��T�7���Ii��;*������q��ڑ[N����n)�"���JB $�E�9�����CI�B���RN����T�0߇]��駩ư�H�M���ј0�y�\&ZF/���sx@,Ґw*I���C���iw�_����u\'h19 +����5�Ԏ@~�i,���)�e��WZ��Q������6�/����7 +�8T�u�Ex��h(H
f�:� ��������������}���4�b0���ʈݜ�nu��V[�Ip!>w�1�S�3����fkN�:�(�4��+���X�%q�/(�$\05��;-=F�p= Ӄ#~�c�֭�_�fy�"N��ᰛ9l�睊��2C"p��f���l��3c�n��Ϣ�>(��,G��`��p�Y#tw�S��H�T�HL��$�������|��}��L8Ȍ����l\��ؖ�� +Y�O�V����Ů���<C�ɗ_gax1�'���GM"Zt�cTBvs ��n�8
X��Gp +�)<2�x>2m�=��J�&�w�;�A���a;_�ҫ���C$BX�L���韁`qK��MC�V�/�v-P�$���3��/��E>7i�?� +���ȓa�Y�#��ܲ2y���� +�J��R ���hm��Ε�ջ�|����i˄�3pb�q8������'�
����W��?ue�6�lr�����)Ĵ�}M���ŏ��"���g�Y����y?�ӥ +1��B�#:�Rl��[���Z�0�������͎Ts]��˧h��qɠ�w��]B�03lP�F�VO)��MLJ�rc�+"^�+��d���7�U���F��#�__��|��f�H�-�J�����]%W�<l㌄��sW�A����x�����B�g�p�_��)�@sF���e��9������ +���L2�-����
h���H���P_[����^�i������-6�Y��x���.��&�;�Wm�i�
����_Z��DF���<]= ����qV�Q���du6��n& f��F��v���r.}npv��9�h�;}Y�&���6��[/�}"-FLҔ��n��u���Oe�(�3�t��7���S�i&fU�H͡�BDժ�B��-��Q�B >U�-�fk1e�O�j˰d���2g䮡�9[����cHZ�X�=�k!���7��*o����X';��g�V�/"� �<{�n�9z0�U� =Xub�z��f���n��sf�3 ��DT��P�R��W�o�|U\[��� ��_-�|� )��pi������}rpHj���AjD����|����3�e�v�N�z��/�����B8� +q3���OGp��&'���Msp���~�D��}�m� �4�R2��h����'��Gw�R���_ݸ�%�Z?c~�J+�t�=��=ٚJ�"��.ϰ���1���u=O���7�6�P���2P����V�&������hD�y�b����-��ͺd�Α9 +g��wب����[�M��� )Gk|B��"�������s%�J/�c���x?5���.��6��p���$U��x��rp������X��}(��%C������{���Z�!`藮�s���ju?M"������'�v�S�[w*�I�&{�l�x�a9��c+�\|BP��q�l�$�0%4���U��2�y݅�յ���� �6j�R���1ͱG�FW��o������W.�!�~Vr�C�̑���7k~��|����"��"����$CWcҜ��:hZ�F \�}~�rt#q�vG�x���>|����=�cm�MEM3�徦��/�y�����sp���� +:!��5��:���ׂC֜C����`y]P0�0n�UQӰ+�v�W�! +��p�d��s�:5����U�^hqahؓ}e�I�5�Ѱ�
�?㒸�G� q9t(�g�(hP����������G`&���y��^H�b�5]b����P+�Eij� �����#|^2�-֓
�Y`�O��� �El�V�xU��YrR��<MJ��1��5 +�,jeS��2|�'��Isz��fR*+�ue����)���A���0��U����Ή~J���v���Q�04G�B����v0v6�|8!>�����H��Ӵ�ro���(�M`�SmT6�"�v
�G;Z���Ĭ.�ƉVT��~X
����{���2��2�cl��$8|���g�-��d:B����$������Z���~� Bq�s��E��I����s5V�P��� �� �!�U0S�Λ:���uk(�����0a�<v��d��Ժ�d�`x� +���x0��"O�Yk�K�S,z]S���� +��B��71�1nxuWQ����z�t����E�h"�� +����5`J�s�.m�x�� +[�Y�ǬP�ȥ�j����N��R}�]%Qy�eF^a�z$mG�u�����Yؐ64�. +���d�N������C��N�o7<"(��$(����!OgH[V�*ּ���n(���K��ДQ%��*gcr�O/��4Z�� ;�gv(s��D�w�m9��Em�J��dl]x1��%!�/�Y|[�y+� +�`P���r�r�\�#EךAdP^y��[1ă�*\��6#+��#��l�7�"��oM�Z�|5��x�7�B�ZK���|�7�r�h[���C����l9�E�mkr��6�`Q���C6{�)PR(�q��-�C�`w����CG�5�p�4~a��C��jޚ�,N�`��z<����g��\e��bו��*tiZ�`0U�F���?G3wY��ğ#դ�P���"\�۸Lڜ|��{Z;�����X�����ܰN���<=������ȣ��ZV��¾���#{���I���:�|O�P�9�O8� 2���uO'�b˸0Q7�!Z�<HY�a�=�����U>�t�3&[��ׄ����ُS���V���KKl���e&�2�N"ُ�o]��O]E����2�p�'�2N��C)�b���;��BQ������>��{�ȓA~07sėʄK��`a�4������#���z����b��4;P +GPf��89�H�FX�$�5xzn�7v��Q�ž(W�J|�>�*���� ��Z2����W��%�7�f�Z�"a&w��b�L'o�ݔ�2�W��R�〃�%��J?�^p������?��������GQL:��lE�cd��B#��'���q��{��=Zi@��؎�!,��e��- ��Pk5n]{lgʴsa��K�q�+n +��h���$<�q���J��c�(�7Ux���+��J5�Z�o"ld�A��@^�7G��8-s@�\�4�w>�+uujNk�!���B[�?z�-�]$��?Y�\�8b�����^�&��E_���V�>��{.�>9��ݗ�g`}!�7sp�=���}�{H��ۡ�+�GJ�/�(�{����Ao�[e���a�,����T��f_��rX�l�/a;�hX�L>s=�?��RnΗ�J���G�.iB��oe�)�%BK��XJcl�{�c_Q*t��b�V�]���[��tl%�^.�g��lFx�T����n���*�{�NP��E�*���z���8sf�\3RJ� +�٥�&�V9���a�{~4[�Z]�y=�nW�g�35�1��uap�����r���J���jl�Ʒ�%��Ek��|̲7�*��y� +j +�[���u�5{���?�Вn�(9�A�sq�� Lf�~?Y$+Aq�x�#j6I�S[�,M���պ�5�y�wf���>J�V�b4�N�W�; P�����+7��c����$�F��p5Wo��ϠB��l}�N�>��.pγ�N�]2�b�ZA�T���x�.z,�N묬*���-��ƃ��'8�O�N�Ö��"�yqcFD��Yë��u��]�q� {c�+~��
WyD�x~�ӼF}���6̼E�/6�]��|��
�K�ݕX��.)t���~�u�F!|�dm���xd� P���t�=���W��+d��~ʰ�u�� +op��� +#����
L��bS�%${lj�\i ��$����/co�~�HcM"�����_��m�]0gR�]��X=���w�I()E����et�!9S����3z�"�EN2J~����6��!�mhΘ�M��-��p�p��ZƦUh�9���
2��#�o�qV�;��x�]*�U�D�
>p��'f��fs��d �"�&�UCH$�k�{xMT�g/�gn��ی��l6��_P��\�����`�ޞ�^.��DgA��O&�z<��{dЕǺ�g Mʳ���WϏ{0`�^�|2���7�ʦ&m��Sf�J4Aa��&"�x���|y{��G�@��t�qA�Y]�/�����(����uT�������JA��U�� �E���H0 ��~���0�+�m" +�4I̊��g���!Ÿ���kG ĺM=Lam~��A��%��v�`����c��J|E����=�u��W��r�FG��id��>�[t���n����~K���}8��5\����e9o�*�}�/
�?�+�Y��XOu�W��n�)q���Km�xW��$��A7NX$�@���E��K�`�"�#M��z�%�r�=�q�>ez���l_`9/��DE��;+��TCD��`��fG���r=wv��.Ýi�e��F����B62�0��g�F�� � �9t����� +�ʌB�p�~����Pc�W�����{��� �ɢ +,쉤�(_&J��~;XHA��{�jI�)ڵ�\�,�e��2$�r���)3��N6M��W:V4�w]T��YNccF�6 +��ڮc}��8��?�
k,*�w���Zc�T�U�~��t��Y͇ +��Cj���!6�٢��]����^�6Y3�L�Si� +�@����j���Þu�l�n���R6�Ve�N1*��G6���m{2q�ZMY�2����?Lv��dR�$Gg.�ך�ε����߭���t��>��>��C�+��i������< �)��F7鹍6F
~�f�?�Ө�\`u�]�Y��`MuW^������-��� �tJ +��^�3�^�bA���ï;l�S�1��2�:��-����a�ȱ���_Ui[,�&A<ۤY-�ovL�� /j��^y��z���x��b�>�?W%4YI`c�3�[���V�e��l���մwټb����qvF�l�7cSWn���]��W|�}��o�����V�F�t���o����Ā����m�.ru +g�������S�ժtvD��<���8����˙-�m +ʉr���w�M����]�jF^̵+@@s4u
���R
�D�R=��*v���X���B�r�]��i#]���^��Lc[gA7�X�8!��'�@�Z���k0�d�dR��w�kH�S)��W�����؏ׇ�O�m0z���f̧\�pl ��;��칇��y��d,F�#7��Q��-W2�;Wjk�(���d�<MH�+�]�e�팧�X#F����u��`0�#ؔ*\�/&��'hw���:I@W}W�<;Zƀ��U�+��ilc��G���9i���"nV��c �6��������v�`HXS��PA�o�v+U&[���Ίʲ�c +Ho�-�x��q5b�y�w!:����s�����O S���~s +�7�:ݹ/�5�}~A�+�h��W�
�g�2(��T������W�/2r53�Q=%S>v,g�Ƥ�%�����
�'8��wwtL�E(w.�'X���G6u���:��� �,%mx=e$f�P�2]?X��я���� �N�N�7�^���bud���vE..v�!�G�Z�h(YNw��حJ?��4���n(hю/��O3Bj���~%��Z��KC5;_�N�ȣl_���.ð�__�Z����@��Ŧ����Y�s´��8o�5}�f�!x����\�w�� +?-���]�pXZE][B�4BLVC�M��S�9h���:���DO겡�W�#�a7�|����w�Kq���`�Ȯ��^`-XR�Uf��D�6�LZ +Qs#�%v=�57I.U�T6dS��Ck��\Z�,������M����@��B7cm
w�r�1,��|ٙ�L�[V�W���Vh%�֑H� ��A��-K*f�� �\�F���#�tlV�)�F��꽭F��;���-���=�-� ��s�"&Y�-�S8��h��*�Ѿ.<49�, v6�u�G�ӻl�~?/�<��sn�j{�r�E��ܲ�q?Wz1i�z���1vC��G��(���5�$�۔3y)�ͽ?��a�@74$��]�ȗl�, ���n��5��(�%�Gc�|F ��h�����g�IYXQ8G�������j�3���?��r
���B��<f=�=���7i0�E�ft8�X����
٥C ���M�\R�)�6����הj��ρ�$an� +9t?�����Jr�0�%��3B[M_��"m��4� +�eN��e�a�8U9������!�=l��t|q�|
&yEi�����iK'�a� +��m`��%4�d+s�_�P\��b��X��4��m��{�Xx�?8�q蟖����մ�V�t݊v�4z���cV��K�_Nt�P��:��9�<��4�9"�}�(pM[u� +{��������K��yW����ќ�Y�7��(�a�#���5�����O����ܔ1��'W>9㯷���������p#Dl��ՊC5]�;�fJ.]���.{ڵ/ge�5���m�^ѷu���ӻ>�q���/���C��$Z�{3���=��X�lN�u�5r�e�����x��-�\�_�}��m���`�����W6(9���mk��{�T��ԭ�̾��L�3�|���o�k5��
�_�8ݳ<������YW*:�?˾z�Qi�)����X1�R�<���?pg�إ�o*�{�+��_�ܸ-�mE��;�]����Xͦ�U��ɳ��R^).?ޗ��f��0��)���\r�q�N9A��V/Ejx�}4�%�s��Lm��A���(��.,HH��\�Ѓiۦ�K�7����[������[�G-���� �f��+9yd��ھc���4}��s~Ϝ���>IntsL]��d���q�W��[V.e�<��f��L��?|��_Xz�~Uqp/(���Ѓ����k���y�x9�rҪ��N�Ҫ"�?.�)��4M����z���Hiv�\m��)�e|Ɯ�&��l��:��Y1S��1���$�,_>8�:,�rY@(�;C����禷�?r?��;������t!y=#�e?�.o�\|⟾������{2W�&,��{$��{ݯ��__��]����D��#G�Ĺ�%�_Z�-�daٯ���=�&��s�y8a����Zq1/�i�vBX����������'�~b���j4E�ن��k��o�i�ږ�B�S�����'�w�pxi���Ͷ��?b�����>A���i������g�VI����i�gΉu��k�6�ߧ��ԀB�5j��0 9'5��$?7�(� +endobj +445 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 1124 0 R +/FirstChar 2 +/LastChar 150 +/Widths 1132 0 R +/BaseFont /PXACOW+NimbusRomNo9L-Medi +/FontDescriptor 443 0 R +>> endobj +443 0 obj << +/Ascent 690 +/CapHeight 690 +/Descent -209 +/FontName /PXACOW+NimbusRomNo9L-Medi +/ItalicAngle 0 +/StemV 140 +/XHeight 461 +/FontBBox [-168 -341 1000 960] +/Flags 4 +/CharSet (/fi/exclam/ampersand/quoteright/parenleft/parenright/plus/comma/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash) +/FontFile 444 0 R +>> endobj +1132 0 obj +[556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 0 0 0 0 833 333 333 333 0 570 250 333 250 0 500 500 500 500 500 500 500 500 500 500 333 0 0 0 0 500 0 722 667 722 722 667 611 778 778 389 500 778 667 944 722 778 611 778 722 556 667 722 722 1000 722 0 0 333 0 333 0 0 0 500 556 444 556 444 333 500 556 278 333 556 278 833 556 500 556 556 444 389 333 556 500 722 500 500 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 ] +endobj +449 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [438 0 R 451 0 R 469 0 R 499 0 R 526 0 R 552 0 R] +>> endobj +585 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [579 0 R 587 0 R 591 0 R 595 0 R 602 0 R 605 0 R] +>> endobj +610 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [608 0 R 613 0 R 670 0 R 678 0 R 682 0 R 685 0 R] +>> endobj +690 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [688 0 R 692 0 R 700 0 R 709 0 R 722 0 R 735 0 R] +>> endobj +746 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [739 0 R 748 0 R 757 0 R 761 0 R 767 0 R 781 0 R] +>> endobj +796 0 obj << +/Type /Pages +/Count 6 +/Parent 1133 0 R +/Kids [790 0 R 798 0 R 804 0 R 812 0 R 816 0 R 822 0 R] +>> endobj +835 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [830 0 R 837 0 R 842 0 R 853 0 R 861 0 R 867 0 R] +>> endobj +880 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [874 0 R 882 0 R 887 0 R 891 0 R 895 0 R 903 0 R] +>> endobj +912 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [908 0 R 914 0 R 919 0 R 927 0 R 936 0 R 944 0 R] +>> endobj +961 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [952 0 R 963 0 R 969 0 R 974 0 R 979 0 R 983 0 R] +>> endobj +991 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [988 0 R 993 0 R 997 0 R 1002 0 R 1008 0 R 1013 0 R] +>> endobj +1020 0 obj << +/Type /Pages +/Count 6 +/Parent 1134 0 R +/Kids [1017 0 R 1022 0 R 1026 0 R 1030 0 R 1035 0 R 1041 0 R] +>> endobj +1051 0 obj << +/Type /Pages +/Count 6 +/Parent 1135 0 R +/Kids [1047 0 R 1053 0 R 1061 0 R 1070 0 R 1074 0 R 1082 0 R] +>> endobj +1090 0 obj << +/Type /Pages +/Count 6 +/Parent 1135 0 R +/Kids [1086 0 R 1092 0 R 1097 0 R 1101 0 R 1106 0 R 1115 0 R] +>> endobj +1133 0 obj << +/Type /Pages +/Count 36 +/Parent 1136 0 R +/Kids [449 0 R 585 0 R 610 0 R 690 0 R 746 0 R 796 0 R] +>> endobj +1134 0 obj << +/Type /Pages +/Count 36 +/Parent 1136 0 R +/Kids [835 0 R 880 0 R 912 0 R 961 0 R 991 0 R 1020 0 R] +>> endobj +1135 0 obj << +/Type /Pages +/Count 12 +/Parent 1136 0 R +/Kids [1051 0 R 1090 0 R] +>> endobj +1136 0 obj << +/Type /Pages +/Count 84 +/Kids [1133 0 R 1134 0 R 1135 0 R] +>> endobj +1137 0 obj << +/Type /Outlines +/First 7 0 R +/Last 391 0 R +/Count 12 +>> endobj +435 0 obj << +/Title 436 0 R +/A 433 0 R +/Parent 391 0 R +/Prev 407 0 R +>> endobj +431 0 obj << +/Title 432 0 R +/A 429 0 R +/Parent 407 0 R +/Prev 427 0 R +>> endobj +427 0 obj << +/Title 428 0 R +/A 425 0 R +/Parent 407 0 R +/Prev 423 0 R +/Next 431 0 R +>> endobj +423 0 obj << +/Title 424 0 R +/A 421 0 R +/Parent 407 0 R +/Prev 419 0 R +/Next 427 0 R +>> endobj +419 0 obj << +/Title 420 0 R +/A 417 0 R +/Parent 407 0 R +/Prev 415 0 R +/Next 423 0 R +>> endobj +415 0 obj << +/Title 416 0 R +/A 413 0 R +/Parent 407 0 R +/Prev 411 0 R +/Next 419 0 R +>> endobj +411 0 obj << +/Title 412 0 R +/A 409 0 R +/Parent 407 0 R +/Next 415 0 R +>> endobj +407 0 obj << +/Title 408 0 R +/A 405 0 R +/Parent 391 0 R +/Prev 395 0 R +/Next 435 0 R +/First 411 0 R +/Last 431 0 R +/Count -6 +>> endobj +403 0 obj << +/Title 404 0 R +/A 401 0 R +/Parent 395 0 R +/Prev 399 0 R +>> endobj +399 0 obj << +/Title 400 0 R +/A 397 0 R +/Parent 395 0 R +/Next 403 0 R +>> endobj +395 0 obj << +/Title 396 0 R +/A 393 0 R +/Parent 391 0 R +/Next 407 0 R +/First 399 0 R +/Last 403 0 R +/Count -2 +>> endobj +391 0 obj << +/Title 392 0 R +/A 389 0 R +/Parent 1137 0 R +/Prev 331 0 R +/First 395 0 R +/Last 435 0 R +/Count -3 +>> endobj +387 0 obj << +/Title 388 0 R +/A 385 0 R +/Parent 363 0 R +/Prev 383 0 R +>> endobj +383 0 obj << +/Title 384 0 R +/A 381 0 R +/Parent 363 0 R +/Prev 379 0 R +/Next 387 0 R +>> endobj +379 0 obj << +/Title 380 0 R +/A 377 0 R +/Parent 363 0 R +/Prev 375 0 R +/Next 383 0 R +>> endobj +375 0 obj << +/Title 376 0 R +/A 373 0 R +/Parent 363 0 R +/Prev 371 0 R +/Next 379 0 R +>> endobj +371 0 obj << +/Title 372 0 R +/A 369 0 R +/Parent 363 0 R +/Prev 367 0 R +/Next 375 0 R +>> endobj +367 0 obj << +/Title 368 0 R +/A 365 0 R +/Parent 363 0 R +/Next 371 0 R +>> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 331 0 R +/Prev 359 0 R +/First 367 0 R +/Last 387 0 R +/Count -6 +>> endobj +359 0 obj << +/Title 360 0 R +/A 357 0 R +/Parent 331 0 R +/Prev 351 0 R +/Next 363 0 R +>> endobj +355 0 obj << +/Title 356 0 R +/A 353 0 R +/Parent 351 0 R +>> endobj +351 0 obj << +/Title 352 0 R +/A 349 0 R +/Parent 331 0 R +/Prev 339 0 R +/Next 359 0 R +/First 355 0 R +/Last 355 0 R +/Count -1 +>> endobj +347 0 obj << +/Title 348 0 R +/A 345 0 R +/Parent 339 0 R +/Prev 343 0 R +>> endobj +343 0 obj << +/Title 344 0 R +/A 341 0 R +/Parent 339 0 R +/Next 347 0 R +>> endobj +339 0 obj << +/Title 340 0 R +/A 337 0 R +/Parent 331 0 R +/Prev 335 0 R +/Next 351 0 R +/First 343 0 R +/Last 347 0 R +/Count -2 +>> endobj +335 0 obj << +/Title 336 0 R +/A 333 0 R +/Parent 331 0 R +/Next 339 0 R +>> endobj +331 0 obj << +/Title 332 0 R +/A 329 0 R +/Parent 1137 0 R +/Prev 327 0 R +/Next 391 0 R +/First 335 0 R +/Last 363 0 R +/Count -5 +>> endobj +327 0 obj << +/Title 328 0 R +/A 325 0 R +/Parent 1137 0 R +/Prev 311 0 R +/Next 331 0 R +>> endobj +323 0 obj << +/Title 324 0 R +/A 321 0 R +/Parent 315 0 R +/Prev 319 0 R +>> endobj +319 0 obj << +/Title 320 0 R +/A 317 0 R +/Parent 315 0 R +/Next 323 0 R +>> endobj +315 0 obj << +/Title 316 0 R +/A 313 0 R +/Parent 311 0 R +/First 319 0 R +/Last 323 0 R +/Count -2 +>> endobj +311 0 obj << +/Title 312 0 R +/A 309 0 R +/Parent 1137 0 R +/Prev 203 0 R +/Next 327 0 R +/First 315 0 R +/Last 315 0 R +/Count -1 +>> endobj +307 0 obj << +/Title 308 0 R +/A 305 0 R +/Parent 203 0 R +/Prev 299 0 R +>> endobj +303 0 obj << +/Title 304 0 R +/A 301 0 R +/Parent 299 0 R +>> endobj +299 0 obj << +/Title 300 0 R +/A 297 0 R +/Parent 203 0 R +/Prev 295 0 R +/Next 307 0 R +/First 303 0 R +/Last 303 0 R +/Count -1 +>> endobj +295 0 obj << +/Title 296 0 R +/A 293 0 R +/Parent 203 0 R +/Prev 291 0 R +/Next 299 0 R +>> endobj +291 0 obj << +/Title 292 0 R +/A 289 0 R +/Parent 203 0 R +/Prev 287 0 R +/Next 295 0 R +>> endobj +287 0 obj << +/Title 288 0 R +/A 285 0 R +/Parent 203 0 R +/Prev 283 0 R +/Next 291 0 R +>> endobj +283 0 obj << +/Title 284 0 R +/A 281 0 R +/Parent 203 0 R +/Prev 279 0 R +/Next 287 0 R +>> endobj +279 0 obj << +/Title 280 0 R +/A 277 0 R +/Parent 203 0 R +/Prev 275 0 R +/Next 283 0 R +>> endobj +275 0 obj << +/Title 276 0 R +/A 273 0 R +/Parent 203 0 R +/Prev 271 0 R +/Next 279 0 R +>> endobj +271 0 obj << +/Title 272 0 R +/A 269 0 R +/Parent 203 0 R +/Prev 227 0 R +/Next 275 0 R +>> endobj +267 0 obj << +/Title 268 0 R +/A 265 0 R +/Parent 227 0 R +/Prev 263 0 R +>> endobj +263 0 obj << +/Title 264 0 R +/A 261 0 R +/Parent 227 0 R +/Prev 259 0 R +/Next 267 0 R +>> endobj +259 0 obj << +/Title 260 0 R +/A 257 0 R +/Parent 227 0 R +/Prev 255 0 R +/Next 263 0 R +>> endobj +255 0 obj << +/Title 256 0 R +/A 253 0 R +/Parent 227 0 R +/Prev 251 0 R +/Next 259 0 R +>> endobj +251 0 obj << +/Title 252 0 R +/A 249 0 R +/Parent 227 0 R +/Prev 247 0 R +/Next 255 0 R +>> endobj +247 0 obj << +/Title 248 0 R +/A 245 0 R +/Parent 227 0 R +/Prev 243 0 R +/Next 251 0 R +>> endobj +243 0 obj << +/Title 244 0 R +/A 241 0 R +/Parent 227 0 R +/Prev 239 0 R +/Next 247 0 R +>> endobj +239 0 obj << +/Title 240 0 R +/A 237 0 R +/Parent 227 0 R +/Prev 235 0 R +/Next 243 0 R +>> endobj +235 0 obj << +/Title 236 0 R +/A 233 0 R +/Parent 227 0 R +/Prev 231 0 R +/Next 239 0 R +>> endobj +231 0 obj << +/Title 232 0 R +/A 229 0 R +/Parent 227 0 R +/Next 235 0 R +>> endobj +227 0 obj << +/Title 228 0 R +/A 225 0 R +/Parent 203 0 R +/Prev 211 0 R +/Next 271 0 R +/First 231 0 R +/Last 267 0 R +/Count -10 +>> endobj +223 0 obj << +/Title 224 0 R +/A 221 0 R +/Parent 211 0 R +/Prev 219 0 R +>> endobj +219 0 obj << +/Title 220 0 R +/A 217 0 R +/Parent 211 0 R +/Prev 215 0 R +/Next 223 0 R +>> endobj +215 0 obj << +/Title 216 0 R +/A 213 0 R +/Parent 211 0 R +/Next 219 0 R +>> endobj +211 0 obj << +/Title 212 0 R +/A 209 0 R +/Parent 203 0 R +/Prev 207 0 R +/Next 227 0 R +/First 215 0 R +/Last 223 0 R +/Count -3 +>> endobj +207 0 obj << +/Title 208 0 R +/A 205 0 R +/Parent 203 0 R +/Next 211 0 R +>> endobj +203 0 obj << +/Title 204 0 R +/A 201 0 R +/Parent 1137 0 R +/Prev 135 0 R +/Next 311 0 R +/First 207 0 R +/Last 307 0 R +/Count -12 +>> endobj +199 0 obj << +/Title 200 0 R +/A 197 0 R +/Parent 135 0 R +/Prev 195 0 R +>> endobj +195 0 obj << +/Title 196 0 R +/A 193 0 R +/Parent 135 0 R +/Prev 191 0 R +/Next 199 0 R +>> endobj +191 0 obj << +/Title 192 0 R +/A 189 0 R +/Parent 135 0 R +/Prev 147 0 R +/Next 195 0 R +>> endobj +187 0 obj << +/Title 188 0 R +/A 185 0 R +/Parent 147 0 R +/Prev 183 0 R +>> endobj +183 0 obj << +/Title 184 0 R +/A 181 0 R +/Parent 147 0 R +/Prev 179 0 R +/Next 187 0 R +>> endobj +179 0 obj << +/Title 180 0 R +/A 177 0 R +/Parent 147 0 R +/Prev 175 0 R +/Next 183 0 R +>> endobj +175 0 obj << +/Title 176 0 R +/A 173 0 R +/Parent 147 0 R +/Prev 171 0 R +/Next 179 0 R +>> endobj +171 0 obj << +/Title 172 0 R +/A 169 0 R +/Parent 147 0 R +/Prev 167 0 R +/Next 175 0 R +>> endobj +167 0 obj << +/Title 168 0 R +/A 165 0 R +/Parent 147 0 R +/Prev 163 0 R +/Next 171 0 R +>> endobj +163 0 obj << +/Title 164 0 R +/A 161 0 R +/Parent 147 0 R +/Prev 159 0 R +/Next 167 0 R +>> endobj +159 0 obj << +/Title 160 0 R +/A 157 0 R +/Parent 147 0 R +/Prev 155 0 R +/Next 163 0 R +>> endobj +155 0 obj << +/Title 156 0 R +/A 153 0 R +/Parent 147 0 R +/Prev 151 0 R +/Next 159 0 R +>> endobj +151 0 obj << +/Title 152 0 R +/A 149 0 R +/Parent 147 0 R +/Next 155 0 R +>> endobj +147 0 obj << +/Title 148 0 R +/A 145 0 R +/Parent 135 0 R +/Prev 139 0 R +/Next 191 0 R +/First 151 0 R +/Last 187 0 R +/Count -10 +>> endobj +143 0 obj << +/Title 144 0 R +/A 141 0 R +/Parent 139 0 R +>> endobj +139 0 obj << +/Title 140 0 R +/A 137 0 R +/Parent 135 0 R +/Next 147 0 R +/First 143 0 R +/Last 143 0 R +/Count -1 +>> endobj +135 0 obj << +/Title 136 0 R +/A 133 0 R +/Parent 1137 0 R +/Prev 59 0 R +/Next 203 0 R +/First 139 0 R +/Last 199 0 R +/Count -5 +>> endobj +131 0 obj << +/Title 132 0 R +/A 129 0 R +/Parent 99 0 R +/Prev 127 0 R +>> endobj +127 0 obj << +/Title 128 0 R +/A 125 0 R +/Parent 99 0 R +/Prev 123 0 R +/Next 131 0 R +>> endobj +123 0 obj << +/Title 124 0 R +/A 121 0 R +/Parent 99 0 R +/Prev 119 0 R +/Next 127 0 R +>> endobj +119 0 obj << +/Title 120 0 R +/A 117 0 R +/Parent 99 0 R +/Prev 115 0 R +/Next 123 0 R +>> endobj +115 0 obj << +/Title 116 0 R +/A 113 0 R +/Parent 99 0 R +/Prev 111 0 R +/Next 119 0 R +>> endobj +111 0 obj << +/Title 112 0 R +/A 109 0 R +/Parent 99 0 R +/Prev 107 0 R +/Next 115 0 R +>> endobj +107 0 obj << +/Title 108 0 R +/A 105 0 R +/Parent 99 0 R +/Prev 103 0 R +/Next 111 0 R +>> endobj +103 0 obj << +/Title 104 0 R +/A 101 0 R +/Parent 99 0 R +/Next 107 0 R +>> endobj +99 0 obj << +/Title 100 0 R +/A 97 0 R +/Parent 59 0 R +/Prev 83 0 R +/First 103 0 R +/Last 131 0 R +/Count -8 +>> endobj +95 0 obj << +/Title 96 0 R +/A 93 0 R +/Parent 83 0 R +/Prev 91 0 R +>> endobj +91 0 obj << +/Title 92 0 R +/A 89 0 R +/Parent 83 0 R +/Prev 87 0 R +/Next 95 0 R +>> endobj +87 0 obj << +/Title 88 0 R +/A 85 0 R +/Parent 83 0 R +/Next 91 0 R +>> endobj +83 0 obj << +/Title 84 0 R +/A 81 0 R +/Parent 59 0 R +/Prev 71 0 R +/Next 99 0 R +/First 87 0 R +/Last 95 0 R +/Count -3 +>> endobj +79 0 obj << +/Title 80 0 R +/A 77 0 R +/Parent 71 0 R +/Prev 75 0 R +>> endobj +75 0 obj << +/Title 76 0 R +/A 73 0 R +/Parent 71 0 R +/Next 79 0 R +>> endobj +71 0 obj << +/Title 72 0 R +/A 69 0 R +/Parent 59 0 R +/Prev 67 0 R +/Next 83 0 R +/First 75 0 R +/Last 79 0 R +/Count -2 +>> endobj +67 0 obj << +/Title 68 0 R +/A 65 0 R +/Parent 59 0 R +/Prev 63 0 R +/Next 71 0 R +>> endobj +63 0 obj << +/Title 64 0 R +/A 61 0 R +/Parent 59 0 R +/Next 67 0 R +>> endobj +59 0 obj << +/Title 60 0 R +/A 57 0 R +/Parent 1137 0 R +/Prev 39 0 R +/Next 135 0 R +/First 63 0 R +/Last 99 0 R +/Count -5 +>> endobj +55 0 obj << +/Title 56 0 R +/A 53 0 R +/Parent 39 0 R +/Prev 51 0 R +>> endobj +51 0 obj << +/Title 52 0 R +/A 49 0 R +/Parent 39 0 R +/Prev 47 0 R +/Next 55 0 R +>> endobj +47 0 obj << +/Title 48 0 R +/A 45 0 R +/Parent 39 0 R +/Prev 43 0 R +/Next 51 0 R +>> endobj +43 0 obj << +/Title 44 0 R +/A 41 0 R +/Parent 39 0 R +/Next 47 0 R +>> endobj +39 0 obj << +/Title 40 0 R +/A 37 0 R +/Parent 1137 0 R +/Prev 19 0 R +/Next 59 0 R +/First 43 0 R +/Last 55 0 R +/Count -4 +>> endobj +35 0 obj << +/Title 36 0 R +/A 33 0 R +/Parent 19 0 R +/Prev 31 0 R +>> endobj +31 0 obj << +/Title 32 0 R +/A 29 0 R +/Parent 19 0 R +/Prev 27 0 R +/Next 35 0 R +>> endobj +27 0 obj << +/Title 28 0 R +/A 25 0 R +/Parent 19 0 R +/Prev 23 0 R +/Next 31 0 R +>> endobj +23 0 obj << +/Title 24 0 R +/A 21 0 R +/Parent 19 0 R +/Next 27 0 R +>> endobj +19 0 obj << +/Title 20 0 R +/A 17 0 R +/Parent 1137 0 R +/Prev 15 0 R +/Next 39 0 R +/First 23 0 R +/Last 35 0 R +/Count -4 +>> endobj +15 0 obj << +/Title 16 0 R +/A 13 0 R +/Parent 1137 0 R +/Prev 11 0 R +/Next 19 0 R +>> endobj +11 0 obj << +/Title 12 0 R +/A 9 0 R +/Parent 1137 0 R +/Prev 7 0 R +/Next 15 0 R +>> endobj +7 0 obj << +/Title 8 0 R +/A 5 0 R +/Parent 1137 0 R +/Next 11 0 R +>> endobj +1138 0 obj << +/Names [(Doc-Start) 442 0 R (Item.1) 598 0 R (Item.2) 599 0 R (Item.3) 600 0 R (chapter*.2) 453 0 R (chapter*.3) 10 0 R (chapter*.4) 14 0 R (chapter.1) 18 0 R (chapter.2) 38 0 R (chapter.3) 58 0 R (chapter.4) 134 0 R (chapter.5) 202 0 R (chapter.6) 310 0 R (chapter.7) 326 0 R (chapter.8) 330 0 R (chapter.9) 390 0 R (example.2.3.1) 673 0 R (example.3.2.1) 696 0 R (example.3.2.2) 698 0 R (example.3.3.1) 720 0 R (example.3.3.2) 727 0 R (example.3.4.1) 743 0 R (example.3.4.2) 745 0 R (example.3.4.3) 755 0 R (example.3.5.1) 771 0 R (example.3.5.2) 779 0 R (example.3.5.3) 785 0 R (example.3.5.4) 793 0 R (example.3.5.5) 801 0 R (example.3.5.6) 802 0 R (example.3.5.7) 808 0 R (example.4.1.1) 820 0 R (example.4.1.2) 827 0 R (example.4.3.1) 856 0 R (example.4.3.2) 857 0 R (example.4.3.3) 858 0 R (example.4.3.4) 859 0 R (example.4.4.1) 865 0 R (example.4.5.1) 871 0 R (example.5.0.2) 879 0 R (example.5.10.1) 972 0 R (example.5.11.1) 977 0 R (example.5.12.1) 986 0 R (example.5.3.1) 899 0 R (example.5.4.1) 906 0 R (example.5.4.2) 911 0 R (example.5.4.3) 917 0 R (example.5.5.1) 923 0 R (example.5.5.2) 925 0 R (example.5.6.1) 931 0 R (example.5.6.2) 932 0 R (example.5.7.1) 934 0 R (example.5.7.2) 941 0 R (example.5.8.1) 948 0 R (example.5.9.1) 956 0 R (example.5.9.2) 960 0 R (example.6.0.2) 1000 0 R (example.6.0.3) 1005 0 R (example.6.1.1) 1006 0 R (example.6.1.2) 1011 0 R (example.8.4.1) 1039 0 R (example.8.5.1) 1059 0 R (example.8.5.2) 1068 0 R (example.9.1.1) 1080 0 R (example.9.2.1) 1089 0 R (example.9.2.2) 1104 0 R (example.9.3.1) 1109 0 R (example.9.3.2) 1110 0 R (example.9.3.3) 1111 0 R (example.9.3.4) 1112 0 R (example.9.3.5) 1113 0 R (example.9.3.6) 1118 0 R (example.9.3.7) 1119 0 R (figure.2.1) 615 0 R (page.1) 441 0 R (page.10) 694 0 R (page.11) 702 0 R (page.12) 711 0 R (page.13) 724 0 R (page.14) 737 0 R (page.15) 741 0 R (page.16) 750 0 R (page.17) 759 0 R (page.18) 763 0 R (page.19) 769 0 R (page.2) 471 0 R (page.20) 783 0 R (page.21) 792 0 R (page.22) 800 0 R (page.23) 806 0 R (page.24) 814 0 R (page.25) 818 0 R (page.26) 824 0 R (page.27) 832 0 R (page.28) 839 0 R (page.29) 844 0 R (page.3) 501 0 R (page.30) 855 0 R (page.31) 863 0 R (page.32) 869 0 R (page.33) 876 0 R (page.34) 884 0 R (page.35) 889 0 R (page.36) 893 0 R (page.37) 897 0 R (page.38) 905 0 R (page.39) 910 0 R (page.4) 528 0 R (page.40) 916 0 R (page.41) 921 0 R (page.42) 929 0 R (page.43) 938 0 R (page.44) 946 0 R (page.45) 954 0 R (page.46) 965 0 R (page.47) 971 0 R (page.48) 976 0 R (page.49) 981 0 R (page.5) 554 0 R (page.50) 985 0 R (page.51) 990 0 R (page.52) 995 0 R (page.53) 999 0 R (page.54) 1004 0 R (page.55) 1010 0 R (page.56) 1015 0 R (page.57) 1019 0 R (page.58) 1024 0 R (page.59) 1028 0 R (page.6) 581 0 R (page.60) 1032 0 R (page.61) 1037 0 R (page.62) 1043 0 R (page.63) 1049 0 R (page.64) 1055 0 R (page.65) 1063 0 R (page.66) 1072 0 R (page.67) 1076 0 R (page.68) 1084 0 R (page.69) 1088 0 R (page.7) 589 0 R (page.70) 1094 0 R (page.71) 1099 0 R (page.72) 1103 0 R (page.73) 1108 0 R (page.74) 1117 0 R (page.8) 593 0 R (page.9) 597 0 R (section*.1) 6 0 R (section*.5) 833 0 R (section*.6) 834 0 R (section.1.1) 22 0 R (section.1.2) 26 0 R (section.1.3) 30 0 R (section.1.4) 34 0 R (section.2.1) 42 0 R (section.2.2) 46 0 R (section.2.3) 50 0 R (section.2.4) 54 0 R (section.3.1) 62 0 R (section.3.2) 66 0 R (section.3.3) 70 0 R (section.3.4) 82 0 R (section.3.5) 98 0 R (section.4.1) 138 0 R (section.4.2) 146 0 R (section.4.3) 190 0 R (section.4.4) 194 0 R (section.4.5) 198 0 R (section.5.1) 206 0 R (section.5.10) 294 0 R (section.5.11) 298 0 R (section.5.12) 306 0 R (section.5.2) 210 0 R (section.5.3) 226 0 R (section.5.4) 270 0 R (section.5.5) 274 0 R (section.5.6) 278 0 R (section.5.7) 282 0 R (section.5.8) 286 0 R (section.5.9) 290 0 R (section.6.1) 314 0 R (section.8.1) 334 0 R (section.8.2) 338 0 R (section.8.3) 350 0 R (section.8.4) 358 0 R (section.8.5) 362 0 R (section.9.1) 394 0 R (section.9.2) 406 0 R (section.9.3) 434 0 R (subsection.3.3.1) 74 0 R (subsection.3.3.2) 78 0 R (subsection.3.4.1) 86 0 R (subsection.3.4.2) 90 0 R (subsection.3.4.3) 94 0 R (subsection.3.5.1) 102 0 R (subsection.3.5.2) 106 0 R (subsection.3.5.3) 110 0 R (subsection.3.5.4) 114 0 R (subsection.3.5.5) 118 0 R (subsection.3.5.6) 122 0 R (subsection.3.5.7) 126 0 R (subsection.3.5.8) 130 0 R (subsection.4.1.1) 142 0 R (subsection.4.2.1) 150 0 R (subsection.4.2.10) 186 0 R (subsection.4.2.2) 154 0 R (subsection.4.2.3) 158 0 R (subsection.4.2.4) 162 0 R (subsection.4.2.5) 166 0 R (subsection.4.2.6) 170 0 R (subsection.4.2.7) 174 0 R (subsection.4.2.8) 178 0 R (subsection.4.2.9) 182 0 R (subsection.5.11.1) 302 0 R (subsection.5.2.1) 214 0 R (subsection.5.2.2) 218 0 R (subsection.5.2.3) 222 0 R (subsection.5.3.1) 230 0 R (subsection.5.3.10) 266 0 R (subsection.5.3.2) 234 0 R (subsection.5.3.3) 238 0 R (subsection.5.3.4) 242 0 R (subsection.5.3.5) 246 0 R (subsection.5.3.6) 250 0 R (subsection.5.3.7) 254 0 R (subsection.5.3.8) 258 0 R (subsection.5.3.9) 262 0 R (subsection.6.1.1) 318 0 R (subsection.6.1.2) 322 0 R (subsection.8.2.1) 342 0 R (subsection.8.2.2) 346 0 R (subsection.8.3.1) 354 0 R (subsection.8.5.1) 366 0 R (subsection.8.5.2) 370 0 R (subsection.8.5.3) 374 0 R (subsection.8.5.4) 378 0 R (subsection.8.5.5) 382 0 R (subsection.8.5.6) 386 0 R (subsection.9.1.1) 398 0 R (subsection.9.1.2) 402 0 R (subsection.9.2.1) 410 0 R (subsection.9.2.2) 414 0 R (subsection.9.2.3) 418 0 R (subsection.9.2.4) 422 0 R (subsection.9.2.5) 426 0 R (subsection.9.2.6) 430 0 R (table.3.1) 733 0 R (table.3.2) 764 0 R (table.4.1) 840 0 R (table.8.1) 1033 0 R (table.8.2) 1045 0 R (table.8.3) 1050 0 R (table.8.4) 1056 0 R (table.8.5) 1057 0 R (table.8.6) 1064 0 R] +/Limits [(Doc-Start) (table.8.6)] +>> endobj +1139 0 obj << +/Kids [1138 0 R] +>> endobj +1140 0 obj << +/Dests 1139 0 R +>> endobj +1141 0 obj << +/Type /Catalog +/Pages 1136 0 R +/Outlines 1137 0 R +/Names 1140 0 R +/PageMode /UseOutlines +/OpenAction 437 0 R +>> endobj +1142 0 obj << +/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords() +/CreationDate (D:20060414153230+10'00') +/PTEX.Fullbanner (This is pdfTeX, Version 3.141592-1.20b (MiKTeX 2.4.1986)) +>> endobj +xref +0 1143 +0000000001 65535 f +0000000002 00000 f +0000000003 00000 f +0000000004 00000 f +0000000000 00000 f +0000000009 00000 n +0000014321 00000 n +0000822345 00000 n +0000000055 00000 n +0000000081 00000 n +0000040268 00000 n +0000822258 00000 n +0000000127 00000 n +0000000158 00000 n +0000042595 00000 n +0000822169 00000 n +0000000205 00000 n +0000000231 00000 n +0000044236 00000 n +0000822043 00000 n +0000000277 00000 n +0000000308 00000 n +0000044296 00000 n +0000821969 00000 n +0000000356 00000 n +0000000383 00000 n +0000044356 00000 n +0000821882 00000 n +0000000431 00000 n +0000000469 00000 n +0000045550 00000 n +0000821795 00000 n +0000000517 00000 n +0000000543 00000 n +0000045609 00000 n +0000821721 00000 n +0000000591 00000 n +0000000620 00000 n +0000047006 00000 n +0000821595 00000 n +0000000666 00000 n +0000000700 00000 n +0000047066 00000 n +0000821521 00000 n +0000000748 00000 n +0000000779 00000 n +0000047126 00000 n +0000821434 00000 n +0000000827 00000 n +0000000862 00000 n +0000047186 00000 n +0000821347 00000 n +0000000910 00000 n +0000000946 00000 n +0000548061 00000 n +0000821273 00000 n +0000000994 00000 n +0000001054 00000 n +0000551323 00000 n +0000821146 00000 n +0000001100 00000 n +0000001141 00000 n +0000551383 00000 n +0000821072 00000 n +0000001189 00000 n +0000001220 00000 n +0000553432 00000 n +0000820985 00000 n +0000001268 00000 n +0000001332 00000 n +0000560408 00000 n +0000820861 00000 n +0000001380 00000 n +0000001416 00000 n +0000564037 00000 n +0000820787 00000 n +0000001469 00000 n +0000001503 00000 n +0000568303 00000 n +0000820713 00000 n +0000001556 00000 n +0000001592 00000 n +0000568363 00000 n +0000820589 00000 n +0000001640 00000 n +0000001666 00000 n +0000568423 00000 n +0000820515 00000 n +0000001719 00000 n +0000001758 00000 n +0000568543 00000 n +0000820428 00000 n +0000001811 00000 n +0000001849 00000 n +0000570729 00000 n +0000820354 00000 n +0000001902 00000 n +0000001935 00000 n +0000574883 00000 n +0000820240 00000 n +0000001983 00000 n +0000002036 00000 n +0000578142 00000 n +0000820162 00000 n +0000002090 00000 n +0000002122 00000 n +0000578203 00000 n +0000820070 00000 n +0000002176 00000 n +0000002218 00000 n +0000578325 00000 n +0000819978 00000 n +0000002272 00000 n +0000002317 00000 n +0000581470 00000 n +0000819886 00000 n +0000002371 00000 n +0000002410 00000 n +0000584542 00000 n +0000819794 00000 n +0000002464 00000 n +0000002505 00000 n +0000584664 00000 n +0000819702 00000 n +0000002559 00000 n +0000002598 00000 n +0000589128 00000 n +0000819610 00000 n +0000002652 00000 n +0000002692 00000 n +0000589250 00000 n +0000819532 00000 n +0000002746 00000 n +0000002783 00000 n +0000592341 00000 n +0000819400 00000 n +0000002830 00000 n +0000002886 00000 n +0000592402 00000 n +0000819282 00000 n +0000002935 00000 n +0000002968 00000 n +0000597099 00000 n +0000819217 00000 n +0000003022 00000 n +0000003067 00000 n +0000597281 00000 n +0000819084 00000 n +0000003116 00000 n +0000003156 00000 n +0000597342 00000 n +0000819005 00000 n +0000003210 00000 n +0000003248 00000 n +0000597403 00000 n +0000818912 00000 n +0000003302 00000 n +0000003341 00000 n +0000600075 00000 n +0000818819 00000 n +0000003395 00000 n +0000003431 00000 n +0000600198 00000 n +0000818726 00000 n +0000003485 00000 n +0000003521 00000 n +0000600259 00000 n +0000818633 00000 n +0000003575 00000 n +0000003609 00000 n +0000600320 00000 n +0000818540 00000 n +0000003663 00000 n +0000003702 00000 n +0000602701 00000 n +0000818447 00000 n +0000003756 00000 n +0000003790 00000 n +0000602762 00000 n +0000818354 00000 n +0000003844 00000 n +0000003883 00000 n +0000602823 00000 n +0000818261 00000 n +0000003937 00000 n +0000003972 00000 n +0000602884 00000 n +0000818182 00000 n +0000004027 00000 n +0000004068 00000 n +0000602945 00000 n +0000818089 00000 n +0000004117 00000 n +0000004158 00000 n +0000607373 00000 n +0000817996 00000 n +0000004207 00000 n +0000004251 00000 n +0000609491 00000 n +0000817917 00000 n +0000004300 00000 n +0000004341 00000 n +0000611475 00000 n +0000817783 00000 n +0000004388 00000 n +0000004419 00000 n +0000614215 00000 n +0000817704 00000 n +0000004468 00000 n +0000004508 00000 n +0000614276 00000 n +0000817572 00000 n +0000004557 00000 n +0000004599 00000 n +0000616189 00000 n +0000817493 00000 n +0000004653 00000 n +0000004685 00000 n +0000616250 00000 n +0000817400 00000 n +0000004739 00000 n +0000004774 00000 n +0000616311 00000 n +0000817321 00000 n +0000004828 00000 n +0000004865 00000 n +0000616372 00000 n +0000817188 00000 n +0000004914 00000 n +0000004951 00000 n +0000616433 00000 n +0000817109 00000 n +0000005005 00000 n +0000005043 00000 n +0000616494 00000 n +0000817016 00000 n +0000005097 00000 n +0000005133 00000 n +0000618748 00000 n +0000816923 00000 n +0000005187 00000 n +0000005228 00000 n +0000618809 00000 n +0000816830 00000 n +0000005282 00000 n +0000005318 00000 n +0000618870 00000 n +0000816737 00000 n +0000005372 00000 n +0000005406 00000 n +0000618931 00000 n +0000816644 00000 n +0000005460 00000 n +0000005503 00000 n +0000622138 00000 n +0000816551 00000 n +0000005557 00000 n +0000005596 00000 n +0000622260 00000 n +0000816458 00000 n +0000005650 00000 n +0000005686 00000 n +0000624480 00000 n +0000816365 00000 n +0000005740 00000 n +0000005778 00000 n +0000624541 00000 n +0000816286 00000 n +0000005833 00000 n +0000005874 00000 n +0000624602 00000 n +0000816193 00000 n +0000005923 00000 n +0000005963 00000 n +0000629814 00000 n +0000816100 00000 n +0000006012 00000 n +0000006052 00000 n +0000632326 00000 n +0000816007 00000 n +0000006101 00000 n +0000006172 00000 n +0000632507 00000 n +0000815914 00000 n +0000006221 00000 n +0000006261 00000 n +0000635756 00000 n +0000815821 00000 n +0000006310 00000 n +0000006348 00000 n +0000638424 00000 n +0000815728 00000 n +0000006397 00000 n +0000006445 00000 n +0000644623 00000 n +0000815635 00000 n +0000006495 00000 n +0000006544 00000 n +0000648227 00000 n +0000815503 00000 n +0000006594 00000 n +0000006655 00000 n +0000651360 00000 n +0000815438 00000 n +0000006710 00000 n +0000006752 00000 n +0000651421 00000 n +0000815359 00000 n +0000006802 00000 n +0000006878 00000 n +0000657034 00000 n +0000815226 00000 n +0000006925 00000 n +0000006957 00000 n +0000659780 00000 n +0000815122 00000 n +0000007006 00000 n +0000007046 00000 n +0000659842 00000 n +0000815043 00000 n +0000007100 00000 n +0000007151 00000 n +0000661872 00000 n +0000814964 00000 n +0000007205 00000 n +0000007235 00000 n +0000663327 00000 n +0000814870 00000 n +0000007282 00000 n +0000007313 00000 n +0000665263 00000 n +0000814737 00000 n +0000007360 00000 n +0000007402 00000 n +0000665325 00000 n +0000814658 00000 n +0000007451 00000 n +0000007483 00000 n +0000665387 00000 n +0000814526 00000 n +0000007532 00000 n +0000007585 00000 n +0000665449 00000 n +0000814447 00000 n +0000007639 00000 n +0000007681 00000 n +0000668094 00000 n +0000814368 00000 n +0000007735 00000 n +0000007773 00000 n +0000668156 00000 n +0000814236 00000 n +0000007822 00000 n +0000007876 00000 n +0000668218 00000 n +0000814171 00000 n +0000007930 00000 n +0000007968 00000 n +0000670522 00000 n +0000814078 00000 n +0000008017 00000 n +0000008084 00000 n +0000670646 00000 n +0000813960 00000 n +0000008133 00000 n +0000008186 00000 n +0000673077 00000 n +0000813881 00000 n +0000008240 00000 n +0000008283 00000 n +0000673203 00000 n +0000813788 00000 n +0000008337 00000 n +0000008390 00000 n +0000675473 00000 n +0000813695 00000 n +0000008444 00000 n +0000008489 00000 n +0000675535 00000 n +0000813602 00000 n +0000008543 00000 n +0000008599 00000 n +0000678237 00000 n +0000813509 00000 n +0000008653 00000 n +0000008712 00000 n +0000681669 00000 n +0000813430 00000 n +0000008766 00000 n +0000008806 00000 n +0000685368 00000 n +0000813311 00000 n +0000008853 00000 n +0000008900 00000 n +0000685430 00000 n +0000813193 00000 n +0000008949 00000 n +0000008999 00000 n +0000688948 00000 n +0000813114 00000 n +0000009053 00000 n +0000009091 00000 n +0000689010 00000 n +0000813035 00000 n +0000009145 00000 n +0000009204 00000 n +0000689072 00000 n +0000812903 00000 n +0000009253 00000 n +0000009335 00000 n +0000691684 00000 n +0000812824 00000 n +0000009389 00000 n +0000009431 00000 n +0000691746 00000 n +0000812731 00000 n +0000009485 00000 n +0000009519 00000 n +0000691808 00000 n +0000812638 00000 n +0000009573 00000 n +0000009605 00000 n +0000694919 00000 n +0000812545 00000 n +0000009659 00000 n +0000009696 00000 n +0000694981 00000 n +0000812452 00000 n +0000009750 00000 n +0000009781 00000 n +0000697149 00000 n +0000812373 00000 n +0000009835 00000 n +0000009866 00000 n +0000698635 00000 n +0000812294 00000 n +0000009915 00000 n +0000009950 00000 n +0000010457 00000 n +0000010691 00000 n +0000010003 00000 n +0000010569 00000 n +0000010630 00000 n +0000809174 00000 n +0000790985 00000 n +0000808999 00000 n +0000789797 00000 n +0000768312 00000 n +0000789622 00000 n +0000810128 00000 n +0000014441 00000 n +0000011954 00000 n +0000010776 00000 n +0000014380 00000 n +0000012190 00000 n +0000012342 00000 n +0000012494 00000 n +0000012646 00000 n +0000012797 00000 n +0000012950 00000 n +0000013102 00000 n +0000013255 00000 n +0000013408 00000 n +0000013559 00000 n +0000013712 00000 n +0000013865 00000 n +0000014018 00000 n +0000014170 00000 n +0000020430 00000 n +0000016460 00000 n +0000014526 00000 n +0000020369 00000 n +0000016768 00000 n +0000016921 00000 n +0000017073 00000 n +0000017225 00000 n +0000017383 00000 n +0000017542 00000 n +0000017695 00000 n +0000017854 00000 n +0000018013 00000 n +0000767316 00000 n +0000747822 00000 n +0000767144 00000 n +0000018172 00000 n +0000018325 00000 n +0000018484 00000 n +0000018643 00000 n +0000018802 00000 n +0000018960 00000 n +0000019119 00000 n +0000019278 00000 n +0000019436 00000 n +0000019594 00000 n +0000019745 00000 n +0000019898 00000 n +0000020057 00000 n +0000020210 00000 n +0000026241 00000 n +0000022263 00000 n +0000020528 00000 n +0000026180 00000 n +0000022571 00000 n +0000022730 00000 n +0000022889 00000 n +0000023048 00000 n +0000023206 00000 n +0000023365 00000 n +0000023524 00000 n +0000023683 00000 n +0000023842 00000 n +0000024002 00000 n +0000024155 00000 n +0000024308 00000 n +0000024460 00000 n +0000024611 00000 n +0000024763 00000 n +0000024916 00000 n +0000025075 00000 n +0000025233 00000 n +0000025392 00000 n +0000025545 00000 n +0000025704 00000 n +0000025862 00000 n +0000026021 00000 n +0000032069 00000 n +0000028295 00000 n +0000026339 00000 n +0000032008 00000 n +0000028595 00000 n +0000028754 00000 n +0000028913 00000 n +0000029072 00000 n +0000029231 00000 n +0000029390 00000 n +0000029550 00000 n +0000029703 00000 n +0000029852 00000 n +0000030005 00000 n +0000030158 00000 n +0000030311 00000 n +0000030463 00000 n +0000030617 00000 n +0000030771 00000 n +0000030930 00000 n +0000031084 00000 n +0000031235 00000 n +0000031388 00000 n +0000031547 00000 n +0000031706 00000 n +0000031857 00000 n +0000038143 00000 n +0000034173 00000 n +0000032167 00000 n +0000038082 00000 n +0000034481 00000 n +0000034634 00000 n +0000034786 00000 n +0000034945 00000 n +0000035103 00000 n +0000035256 00000 n +0000035415 00000 n +0000035568 00000 n +0000035721 00000 n +0000035879 00000 n +0000036038 00000 n +0000036196 00000 n +0000036355 00000 n +0000036514 00000 n +0000036672 00000 n +0000036823 00000 n +0000036976 00000 n +0000037134 00000 n +0000037293 00000 n +0000037446 00000 n +0000037605 00000 n +0000037764 00000 n +0000037923 00000 n +0000039419 00000 n +0000038742 00000 n +0000038241 00000 n +0000039358 00000 n +0000038890 00000 n +0000039049 00000 n +0000039207 00000 n +0000810246 00000 n +0000040328 00000 n +0000040095 00000 n +0000039491 00000 n +0000040207 00000 n +0000040792 00000 n +0000040619 00000 n +0000040413 00000 n +0000040731 00000 n +0000042838 00000 n +0000042422 00000 n +0000040864 00000 n +0000042534 00000 n +0000042655 00000 n +0000042716 00000 n +0000042777 00000 n +0000044416 00000 n +0000044124 00000 n +0000042936 00000 n +0000045669 00000 n +0000045438 00000 n +0000044501 00000 n +0000047246 00000 n +0000046894 00000 n +0000045754 00000 n +0000810364 00000 n +0000049262 00000 n +0000543136 00000 n +0000049130 00000 n +0000047331 00000 n +0000543074 00000 n +0000542922 00000 n +0000054568 00000 n +0000054724 00000 n +0000054804 00000 n +0000054867 00000 n +0000055016 00000 n +0000055168 00000 n +0000055292 00000 n +0000055394 00000 n +0000055542 00000 n +0000055644 00000 n +0000056423 00000 n +0000056653 00000 n +0000056681 00000 n +0000057145 00000 n +0000057173 00000 n +0000057480 00000 n +0000057589 00000 n +0000057691 00000 n +0000057800 00000 n +0000059132 00000 n +0000070800 00000 n +0000086345 00000 n +0000103237 00000 n +0000128703 00000 n +0000154033 00000 n +0000176640 00000 n +0000198895 00000 n +0000220491 00000 n +0000242655 00000 n +0000255677 00000 n +0000259248 00000 n +0000275832 00000 n +0000294632 00000 n +0000311816 00000 n +0000333679 00000 n +0000357285 00000 n +0000380181 00000 n +0000400968 00000 n +0000426793 00000 n +0000438198 00000 n +0000451061 00000 n +0000469964 00000 n +0000494403 00000 n +0000506602 00000 n +0000506983 00000 n +0000507148 00000 n +0000507239 00000 n +0000507315 00000 n +0000507530 00000 n +0000507606 00000 n +0000507825 00000 n +0000523967 00000 n +0000545265 00000 n +0000544915 00000 n +0000543249 00000 n +0000545047 00000 n +0000545203 00000 n +0000747002 00000 n +0000731714 00000 n +0000746823 00000 n +0000548121 00000 n +0000547778 00000 n +0000545376 00000 n +0000547910 00000 n +0000549372 00000 n +0000549260 00000 n +0000548219 00000 n +0000549914 00000 n +0000549802 00000 n +0000549444 00000 n +0000551443 00000 n +0000551211 00000 n +0000549986 00000 n +0000810482 00000 n +0000553553 00000 n +0000552921 00000 n +0000551528 00000 n +0000553371 00000 n +0000553061 00000 n +0000553492 00000 n +0000553216 00000 n +0000556373 00000 n +0000556433 00000 n +0000555864 00000 n +0000553664 00000 n +0000556312 00000 n +0000731404 00000 n +0000729419 00000 n +0000731243 00000 n +0000556004 00000 n +0000556156 00000 n +0000560527 00000 n +0000558911 00000 n +0000556557 00000 n +0000560347 00000 n +0000559099 00000 n +0000559255 00000 n +0000559410 00000 n +0000559564 00000 n +0000559720 00000 n +0000559876 00000 n +0000560031 00000 n +0000560189 00000 n +0000560467 00000 n +0000564097 00000 n +0000562660 00000 n +0000560638 00000 n +0000563915 00000 n +0000562840 00000 n +0000562995 00000 n +0000563976 00000 n +0000563151 00000 n +0000563306 00000 n +0000563458 00000 n +0000563609 00000 n +0000563761 00000 n +0000565726 00000 n +0000565788 00000 n +0000565553 00000 n +0000564208 00000 n +0000565665 00000 n +0000568663 00000 n +0000567790 00000 n +0000565886 00000 n +0000568242 00000 n +0000567930 00000 n +0000568482 00000 n +0000568086 00000 n +0000568603 00000 n +0000810600 00000 n +0000570789 00000 n +0000570384 00000 n +0000568774 00000 n +0000570668 00000 n +0000728922 00000 n +0000716945 00000 n +0000728749 00000 n +0000570516 00000 n +0000572394 00000 n +0000572455 00000 n +0000572221 00000 n +0000570901 00000 n +0000572333 00000 n +0000574943 00000 n +0000574469 00000 n +0000572553 00000 n +0000574760 00000 n +0000574821 00000 n +0000574601 00000 n +0000578447 00000 n +0000577145 00000 n +0000575041 00000 n +0000578081 00000 n +0000577309 00000 n +0000578264 00000 n +0000716461 00000 n +0000706667 00000 n +0000716284 00000 n +0000577465 00000 n +0000577621 00000 n +0000577773 00000 n +0000577927 00000 n +0000578386 00000 n +0000581593 00000 n +0000580634 00000 n +0000578586 00000 n +0000581409 00000 n +0000580790 00000 n +0000581531 00000 n +0000580946 00000 n +0000581101 00000 n +0000581257 00000 n +0000584724 00000 n +0000584033 00000 n +0000581732 00000 n +0000584481 00000 n +0000584603 00000 n +0000584173 00000 n +0000584329 00000 n +0000810718 00000 n +0000586665 00000 n +0000586370 00000 n +0000584863 00000 n +0000586482 00000 n +0000586543 00000 n +0000586604 00000 n +0000589311 00000 n +0000588456 00000 n +0000586790 00000 n +0000589067 00000 n +0000588604 00000 n +0000589189 00000 n +0000588760 00000 n +0000588915 00000 n +0000590197 00000 n +0000590024 00000 n +0000589450 00000 n +0000590136 00000 n +0000592524 00000 n +0000591993 00000 n +0000590282 00000 n +0000592280 00000 n +0000592125 00000 n +0000592463 00000 n +0000595203 00000 n +0000594465 00000 n +0000592622 00000 n +0000595081 00000 n +0000594613 00000 n +0000594769 00000 n +0000595142 00000 n +0000594925 00000 n +0000597463 00000 n +0000596926 00000 n +0000595328 00000 n +0000597038 00000 n +0000597160 00000 n +0000597221 00000 n +0000810836 00000 n +0000600381 00000 n +0000599902 00000 n +0000597575 00000 n +0000600014 00000 n +0000600136 00000 n +0000603006 00000 n +0000602356 00000 n +0000600493 00000 n +0000602640 00000 n +0000704436 00000 n +0000702949 00000 n +0000704275 00000 n +0000702637 00000 n +0000700315 00000 n +0000702475 00000 n +0000602488 00000 n +0000604886 00000 n +0000604469 00000 n +0000603143 00000 n +0000604581 00000 n +0000604642 00000 n +0000604703 00000 n +0000604764 00000 n +0000604825 00000 n +0000607495 00000 n +0000607024 00000 n +0000605011 00000 n +0000607312 00000 n +0000607156 00000 n +0000607434 00000 n +0000609613 00000 n +0000608978 00000 n +0000607620 00000 n +0000609430 00000 n +0000609118 00000 n +0000609552 00000 n +0000609274 00000 n +0000611597 00000 n +0000610967 00000 n +0000609738 00000 n +0000611414 00000 n +0000611107 00000 n +0000611259 00000 n +0000611536 00000 n +0000810954 00000 n +0000614337 00000 n +0000613866 00000 n +0000611722 00000 n +0000614154 00000 n +0000613998 00000 n +0000616554 00000 n +0000616016 00000 n +0000614449 00000 n +0000616128 00000 n +0000618992 00000 n +0000618575 00000 n +0000616666 00000 n +0000618687 00000 n +0000622321 00000 n +0000621460 00000 n +0000619104 00000 n +0000622077 00000 n +0000621608 00000 n +0000622199 00000 n +0000621764 00000 n +0000621919 00000 n +0000624724 00000 n +0000624307 00000 n +0000622485 00000 n +0000624419 00000 n +0000624663 00000 n +0000626375 00000 n +0000626142 00000 n +0000624863 00000 n +0000626254 00000 n +0000626315 00000 n +0000811072 00000 n +0000627755 00000 n +0000627521 00000 n +0000626460 00000 n +0000627633 00000 n +0000627694 00000 n +0000629997 00000 n +0000629301 00000 n +0000627880 00000 n +0000629753 00000 n +0000629441 00000 n +0000629875 00000 n +0000629597 00000 n +0000629936 00000 n +0000632629 00000 n +0000631814 00000 n +0000630108 00000 n +0000632265 00000 n +0000631954 00000 n +0000632387 00000 n +0000632447 00000 n +0000632110 00000 n +0000632568 00000 n +0000635817 00000 n +0000635020 00000 n +0000632740 00000 n +0000635634 00000 n +0000635168 00000 n +0000635323 00000 n +0000635695 00000 n +0000635479 00000 n +0000638485 00000 n +0000637688 00000 n +0000635928 00000 n +0000638302 00000 n +0000637836 00000 n +0000638363 00000 n +0000637992 00000 n +0000638148 00000 n +0000641508 00000 n +0000640551 00000 n +0000638596 00000 n +0000641326 00000 n +0000640707 00000 n +0000641387 00000 n +0000640862 00000 n +0000641014 00000 n +0000641170 00000 n +0000641448 00000 n +0000811190 00000 n +0000644684 00000 n +0000644110 00000 n +0000641619 00000 n +0000644562 00000 n +0000644250 00000 n +0000644406 00000 n +0000646325 00000 n +0000646091 00000 n +0000644795 00000 n +0000646203 00000 n +0000646264 00000 n +0000648349 00000 n +0000648054 00000 n +0000646436 00000 n +0000648166 00000 n +0000648288 00000 n +0000651482 00000 n +0000651187 00000 n +0000648460 00000 n +0000651299 00000 n +0000653545 00000 n +0000653311 00000 n +0000651580 00000 n +0000653423 00000 n +0000653484 00000 n +0000654694 00000 n +0000654521 00000 n +0000653669 00000 n +0000654633 00000 n +0000811308 00000 n +0000655315 00000 n +0000655142 00000 n +0000654792 00000 n +0000655254 00000 n +0000657157 00000 n +0000656861 00000 n +0000655387 00000 n +0000656973 00000 n +0000657095 00000 n +0000659965 00000 n +0000659539 00000 n +0000657268 00000 n +0000659654 00000 n +0000659717 00000 n +0000659902 00000 n +0000661997 00000 n +0000661694 00000 n +0000660077 00000 n +0000661809 00000 n +0000661934 00000 n +0000662764 00000 n +0000662586 00000 n +0000662109 00000 n +0000662701 00000 n +0000663389 00000 n +0000663148 00000 n +0000662837 00000 n +0000663264 00000 n +0000811429 00000 n +0000664002 00000 n +0000663823 00000 n +0000663475 00000 n +0000663939 00000 n +0000665511 00000 n +0000665084 00000 n +0000664075 00000 n +0000665200 00000 n +0000668280 00000 n +0000667851 00000 n +0000665597 00000 n +0000667967 00000 n +0000668030 00000 n +0000670708 00000 n +0000670165 00000 n +0000668379 00000 n +0000670459 00000 n +0000670302 00000 n +0000670584 00000 n +0000673265 00000 n +0000672725 00000 n +0000670820 00000 n +0000673014 00000 n +0000672862 00000 n +0000673139 00000 n +0000675597 00000 n +0000675230 00000 n +0000673378 00000 n +0000675346 00000 n +0000675409 00000 n +0000811554 00000 n +0000678362 00000 n +0000677753 00000 n +0000675710 00000 n +0000678046 00000 n +0000678109 00000 n +0000678173 00000 n +0000677890 00000 n +0000678299 00000 n +0000681794 00000 n +0000680925 00000 n +0000678502 00000 n +0000681542 00000 n +0000681605 00000 n +0000681080 00000 n +0000681233 00000 n +0000681389 00000 n +0000681731 00000 n +0000683169 00000 n +0000682990 00000 n +0000681934 00000 n +0000683106 00000 n +0000685555 00000 n +0000684689 00000 n +0000683268 00000 n +0000685305 00000 n +0000684844 00000 n +0000684996 00000 n +0000685148 00000 n +0000685492 00000 n +0000687081 00000 n +0000686902 00000 n +0000685668 00000 n +0000687018 00000 n +0000689197 00000 n +0000688769 00000 n +0000687193 00000 n +0000688885 00000 n +0000689134 00000 n +0000811679 00000 n +0000691870 00000 n +0000691333 00000 n +0000689323 00000 n +0000691621 00000 n +0000691470 00000 n +0000695043 00000 n +0000694740 00000 n +0000691969 00000 n +0000694856 00000 n +0000697274 00000 n +0000696970 00000 n +0000695142 00000 n +0000697086 00000 n +0000697211 00000 n +0000699012 00000 n +0000698456 00000 n +0000697386 00000 n +0000698572 00000 n +0000698697 00000 n +0000698760 00000 n +0000698823 00000 n +0000698886 00000 n +0000698949 00000 n +0000700203 00000 n +0000699898 00000 n +0000699124 00000 n +0000700014 00000 n +0000700077 00000 n +0000700140 00000 n +0000702863 00000 n +0000702838 00000 n +0000704688 00000 n +0000704659 00000 n +0000704778 00000 n +0000716740 00000 n +0000729204 00000 n +0000731628 00000 n +0000731603 00000 n +0000747397 00000 n +0000767883 00000 n +0000790420 00000 n +0000809658 00000 n +0000811804 00000 n +0000811924 00000 n +0000812045 00000 n +0000812135 00000 n +0000812217 00000 n +0000822418 00000 n +0000828179 00000 n +0000828220 00000 n +0000828260 00000 n +0000828394 00000 n +trailer +<< +/Size 1143 +/Root 1141 0 R +/Info 1142 0 R +/ID [<BE4289FB29A57A8BBA94EE46DDDC77F4> <BE4289FB29A57A8BBA94EE46DDDC77F4>] +>> +startxref +828634 +%%EOF diff --git a/docs/sqlmap/sqlmap_tut.pdf b/docs/sqlmap/sqlmap_tut.pdf Binary files differnew file mode 100644 index 00000000..36675fab --- /dev/null +++ b/docs/sqlmap/sqlmap_tut.pdf |