More underscore cleanups; it appears that \usepackage{underscore} in
authorMonty <xiphmont@xiph.org>
Thu, 11 Aug 2011 07:30:43 +0000 (07:30 +0000)
committerMonty <xiphmont@xiph.org>
Thu, 11 Aug 2011 07:30:43 +0000 (07:30 +0000)
unreliable in several environments like \mathtt and \emph

svn path=/trunk/vorbis/; revision=18067

doc/01-introduction.tex
doc/03-codebook.tex
doc/04-codec.tex
doc/05-comment.tex
doc/07-floor1.tex
doc/08-residue.tex
doc/09-helper.tex
doc/10-tables.tex
doc/Vorbis_I_spec.html
doc/Vorbis_I_spec.pdf

index b1e4c6f..b522730 100644 (file)
@@ -517,7 +517,7 @@ transform orthogonality.  Pay attention however to returning the
 correct data range; the amount of data to be returned is:
 
 \begin{Verbatim}[commandchars=\\\{\}]
-window_blocksize(previous_window)/4+window_blocksize(current_window)/4
+window\_blocksize(previous\_window)/4+window\_blocksize(current\_window)/4
 \end{Verbatim}
 
 from the center of the previous window to the center of the current
index 987b436..2da74af 100644 (file)
@@ -41,16 +41,16 @@ byte 1: [ 0 1 0 0 0 0 1 1 ] (0x43)
 byte 2: [ 0 1 0 1 0 1 1 0 ] (0x56)
 \end{Verbatim}
 
-16 bit \varname{[codebook_dimensions]} and 24 bit \varname{[codebook_entries]} fields:
+16 bit \varname{[codebook\_dimensions]} and 24 bit \varname{[codebook\_entries]} fields:
 
 \begin{Verbatim}[commandchars=\\\{\}]
 
 byte 3: [ X X X X X X X X ]
-byte 4: [ X X X X X X X X ] [codebook_dimensions] (16 bit unsigned)
+byte 4: [ X X X X X X X X ] [codebook\_dimensions] (16 bit unsigned)
 
 byte 5: [ X X X X X X X X ]
 byte 6: [ X X X X X X X X ]
-byte 7: [ X X X X X X X X ] [codebook_entries] (24 bit unsigned)
+byte 7: [ X X X X X X X X ] [codebook\_entries] (24 bit unsigned)
 
 \end{Verbatim}
 
@@ -63,9 +63,9 @@ byte 8: [               X ] [ordered] (1 bit)
 \end{Verbatim}
 
 Each entry, numbering a
-total of \varname{[codebook_entries]}, is assigned a codeword length.
+total of \varname{[codebook\_entries]}, is assigned a codeword length.
 We now read the list of codeword lengths and store these lengths in
-the array \varname{[codebook_codeword_lengths]}. Decode of lengths is
+the array \varname{[codebook\_codeword\_lengths]}. Decode of lengths is
 according to whether the \varname{[ordered]} flag is set or unset.
 
 \begin{itemize}
@@ -83,7 +83,7 @@ according to whether the \varname{[ordered]} flag is set or unset.
 byte 8: [             X 1 ] [sparse] flag (1 bit)
 \end{Verbatim}
 
-  The decoder now performs for each of the \varname{[codebook_entries]}
+  The decoder now performs for each of the \varname{[codebook\_entries]}
   codebook entries:
 
 \begin{Verbatim}[commandchars=\\\{\}]
@@ -118,16 +118,16 @@ byte 8: [             X 1 ] [sparse] flag (1 bit)
   codewords per length.  That is, beginning at entry zero:
 
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [current_entry] = 0;
-  2) [current_length] = read a five bit unsigned integer and add 1;
-  3) [number] = read \link{vorbis:spec:ilog}{ilog}([codebook_entries] - [current_entry]) bits as an unsigned integer
-  4) set the entries [current_entry] through [current_entry]+[number]-1, inclusive,
-    of the [codebook_codeword_lengths] array to [current_length]
-  5) set [current_entry] to [number] + [current_entry]
-  6) increment [current_length] by 1
-  7) if [current_entry] is greater than [codebook_entries] ERROR CONDITION;
+  1) [current\_entry] = 0;
+  2) [current\_length] = read a five bit unsigned integer and add 1;
+  3) [number] = read \link{vorbis:spec:ilog}{ilog}([codebook\_entries] - [current\_entry]) bits as an unsigned integer
+  4) set the entries [current\_entry] through [current\_entry]+[number]-1, inclusive,
+    of the [codebook\_codeword\_lengths] array to [current\_length]
+  5) set [current\_entry] to [number] + [current\_entry]
+  6) increment [current\_length] by 1
+  7) if [current\_entry] is greater than [codebook\_entries] ERROR CONDITION;
     the decoder will not be able to read this stream.
-  8) if [current_entry] is less than [codebook_entries], repeat process starting at 3)
+  8) if [current\_entry] is less than [codebook\_entries], repeat process starting at 3)
   9) done.
 \end{Verbatim}
 
@@ -148,10 +148,10 @@ VQ)
 
 The lookup table type is read as a four bit unsigned integer:
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [codebook_lookup_type] = read four bits as an unsigned integer
+  1) [codebook\_lookup\_type] = read four bits as an unsigned integer
 \end{Verbatim}
 
-Codebook decode precedes according to \varname{[codebook_lookup_type]}:
+Codebook decode precedes according to \varname{[codebook\_lookup\_type]}:
 \begin{itemize}
 \item
 Lookup type zero indicates no lookup to be read.  Proceed past
@@ -160,32 +160,32 @@ lookup decode.
 Lookup types one and two are similar, differing only in the
 number of lookup values to be read.  Lookup type one reads a list of
 values that are permuted in a set pattern to build a list of vectors,
-each vector of order \varname{[codebook_dimensions]} scalars.  Lookup
+each vector of order \varname{[codebook\_dimensions]} scalars.  Lookup
 type two builds the same vector list, but reads each scalar for each
 vector explicitly, rather than building vectors from a smaller list of
 possible scalar values.  Lookup decode proceeds as follows:
 
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [codebook_minimum_value] = \link{vorbis:spec:float32:unpack}{float32_unpack}( read 32 bits as an unsigned integer)
-  2) [codebook_delta_value] = \link{vorbis:spec:float32:unpack}{float32_unpack}( read 32 bits as an unsigned integer)
-  3) [codebook_value_bits] = read 4 bits as an unsigned integer and add 1
-  4) [codebook_sequence_p] = read 1 bit as a boolean flag
+  1) [codebook\_minimum\_value] = \link{vorbis:spec:float32:unpack}{float32\_unpack}( read 32 bits as an unsigned integer)
+  2) [codebook\_delta\_value] = \link{vorbis:spec:float32:unpack}{float32\_unpack}( read 32 bits as an unsigned integer)
+  3) [codebook\_value\_bits] = read 4 bits as an unsigned integer and add 1
+  4) [codebook\_sequence\_p] = read 1 bit as a boolean flag
 
-  if ( [codebook_lookup_type] is 1 ) \{
+  if ( [codebook\_lookup\_type] is 1 ) \{
 
-     5) [codebook_lookup_values] = \link{vorbis:spec:lookup1:values}{lookup1_values}(\varname{[codebook_entries]}, \varname{[codebook_dimensions]} )
+     5) [codebook\_lookup\_values] = \link{vorbis:spec:lookup1:values}{lookup1\_values}(\varname{[codebook\_entries]}, \varname{[codebook\_dimensions]} )
 
   \} else \{
 
-     6) [codebook_lookup_values] = \varname{[codebook_entries]} * \varname{[codebook_dimensions]}
+     6) [codebook\_lookup\_values] = \varname{[codebook\_entries]} * \varname{[codebook\_dimensions]}
 
   \}
 
-  7) read a total of [codebook_lookup_values] unsigned integers of [codebook_value_bits] each;
-     store these in order in the array [codebook_multiplicands]
+  7) read a total of [codebook\_lookup\_values] unsigned integers of [codebook\_value\_bits] each;
+     store these in order in the array [codebook\_multiplicands]
 \end{Verbatim}
 \item
-A \varname{[codebook_lookup_type]} of greater than two is reserved
+A \varname{[codebook\_lookup\_type]} of greater than two is reserved
 and indicates a stream that is not decodable by the specification in this
 document.
 
@@ -197,8 +197,8 @@ considered an error condition rendering the stream undecodable.
 
 \paragraph{Huffman decision tree representation}
 
-The \varname{[codebook_codeword_lengths]} array and
-\varname{[codebook_entries]} value uniquely define the Huffman decision
+The \varname{[codebook\_codeword\_lengths]} array and
+\varname{[codebook\_entries]} value uniquely define the Huffman decision
 tree used for entropy decoding.
 
 Briefly, each used codebook entry (recall that length-unordered
@@ -282,20 +282,20 @@ decode to that entry number.
 
 Unpacking the VQ lookup table vectors relies on the following values:
 \begin{programlisting}
-the [codebook_multiplicands] array
-[codebook_minimum_value]
-[codebook_delta_value]
-[codebook_sequence_p]
-[codebook_lookup_type]
-[codebook_entries]
-[codebook_dimensions]
-[codebook_lookup_values]
+the [codebook\_multiplicands] array
+[codebook\_minimum\_value]
+[codebook\_delta\_value]
+[codebook\_sequence\_p]
+[codebook\_lookup\_type]
+[codebook\_entries]
+[codebook\_dimensions]
+[codebook\_lookup\_values]
 \end{programlisting}
 
 \bigskip
 
 Decoding (unpacking) a specific vector in the vector lookup table
-proceeds according to \varname{[codebook_lookup_type]}.  The unpacked
+proceeds according to \varname{[codebook\_lookup\_type]}.  The unpacked
 vector values are what a codebook would return during audio packet
 decode in a VQ context.
 
@@ -304,25 +304,25 @@ decode in a VQ context.
 Lookup type one specifies a lattice VQ lookup table built
 algorithmically from a list of scalar values.  Calculate (unpack) the
 final values of a codebook entry vector from the entries in
-\varname{[codebook_multiplicands]} as follows (\varname{[value_vector]}
+\varname{[codebook\_multiplicands]} as follows (\varname{[value\_vector]}
 is the output vector representing the vector of values for entry number
-\varname{[lookup_offset]} in this codebook):
+\varname{[lookup\_offset]} in this codebook):
 
 \begin{Verbatim}[commandchars=\\\{\}]
   1) [last] = 0;
-  2) [index_divisor] = 1;
-  3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) \{
+  2) [index\_divisor] = 1;
+  3) iterate [i] over the range 0 ... [codebook\_dimensions]-1 (once for each scalar value in the value vector) \{
 
-       4) [multiplicand_offset] = ( [lookup_offset] divided by [index_divisor] using integer
-          division ) integer modulo [codebook_lookup_values]
+       4) [multiplicand\_offset] = ( [lookup\_offset] divided by [index\_divisor] using integer
+          division ) integer modulo [codebook\_lookup\_values]
 
-       5) vector [value_vector] element [i] =
-            ( [codebook_multiplicands] array element number [multiplicand_offset] ) *
-            [codebook_delta_value] + [codebook_minimum_value] + [last];
+       5) vector [value\_vector] element [i] =
+            ( [codebook\_multiplicands] array element number [multiplicand\_offset] ) *
+            [codebook\_delta\_value] + [codebook\_minimum\_value] + [last];
 
-       6) if ( [codebook_sequence_p] is set ) then set [last] = vector [value_vector] element [i]
+       6) if ( [codebook\_sequence\_p] is set ) then set [last] = vector [value\_vector] element [i]
 
-       7) [index_divisor] = [index_divisor] * [codebook_lookup_values]
+       7) [index\_divisor] = [index\_divisor] * [codebook\_lookup\_values]
 
      \}
 
@@ -334,25 +334,25 @@ is the output vector representing the vector of values for entry number
 \paragraph{Vector value decode: Lookup type 2}
 
 Lookup type two specifies a VQ lookup table in which each scalar in
-each vector is explicitly set by the \varname{[codebook_multiplicands]}
+each vector is explicitly set by the \varname{[codebook\_multiplicands]}
 array in a one-to-one mapping.  Calculate [unpack] the
 final values of a codebook entry vector from the entries in
-\varname{[codebook_multiplicands]} as follows (\varname{[value_vector]}
+\varname{[codebook\_multiplicands]} as follows (\varname{[value\_vector]}
 is the output vector representing the vector of values for entry number
-\varname{[lookup_offset]} in this codebook):
+\varname{[lookup\_offset]} in this codebook):
 
 \begin{Verbatim}[commandchars=\\\{\}]
   1) [last] = 0;
-  2) [multiplicand_offset] = [lookup_offset] * [codebook_dimensions]
-  3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) \{
+  2) [multiplicand\_offset] = [lookup\_offset] * [codebook\_dimensions]
+  3) iterate [i] over the range 0 ... [codebook\_dimensions]-1 (once for each scalar value in the value vector) \{
 
-       4) vector [value_vector] element [i] =
-            ( [codebook_multiplicands] array element number [multiplicand_offset] ) *
-            [codebook_delta_value] + [codebook_minimum_value] + [last];
+       4) vector [value\_vector] element [i] =
+            ( [codebook\_multiplicands] array element number [multiplicand\_offset] ) *
+            [codebook\_delta\_value] + [codebook\_minimum\_value] + [last];
 
-       5) if ( [codebook_sequence_p] is set ) then set [last] = vector [value_vector] element [i]
+       5) if ( [codebook\_sequence\_p] is set ) then set [last] = vector [value\_vector] element [i]
 
-       6) increment [multiplicand_offset]
+       6) increment [multiplicand\_offset]
 
      \}
 
index 035496f..5d69fa2 100644 (file)
@@ -29,7 +29,7 @@ Each header packet begins with the same header fields.
 
 
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [packet_type] : 8 bit value
+  1) [packet\_type] : 8 bit value
   2) 0x76, 0x6f, 0x72, 0x62, 0x69, 0x73: the characters 'v','o','r','b','i','s' as six octets
 \end{Verbatim}
 
@@ -49,23 +49,23 @@ relevant pieces of information about the audio stream. The
 identification header is coded as follows:
 
 \begin{Verbatim}[commandchars=\\\{\}]
- 1) [vorbis_version] = read 32 bits as unsigned integer
- 2) [audio_channels] = read 8 bit integer as unsigned
- 3) [audio_sample_rate] = read 32 bits as unsigned integer
- 4) [bitrate_maximum] = read 32 bits as signed integer
- 5) [bitrate_nominal] = read 32 bits as signed integer
- 6) [bitrate_minimum] = read 32 bits as signed integer
- 7) [blocksize_0] = 2 exponent (read 4 bits as unsigned integer)
- 8) [blocksize_1] = 2 exponent (read 4 bits as unsigned integer)
- 9) [framing_flag] = read one bit
+ 1) [vorbis\_version] = read 32 bits as unsigned integer
+ 2) [audio\_channels] = read 8 bit integer as unsigned
+ 3) [audio\_sample\_rate] = read 32 bits as unsigned integer
+ 4) [bitrate\_maximum] = read 32 bits as signed integer
+ 5) [bitrate\_nominal] = read 32 bits as signed integer
+ 6) [bitrate\_minimum] = read 32 bits as signed integer
+ 7) [blocksize\_0] = 2 exponent (read 4 bits as unsigned integer)
+ 8) [blocksize\_1] = 2 exponent (read 4 bits as unsigned integer)
+ 9) [framing\_flag] = read one bit
 \end{Verbatim}
 
-\varname{[vorbis_version]} is to read '0' in order to be compatible
-with this document.  Both \varname{[audio_channels]} and
-\varname{[audio_sample_rate]} must read greater than zero.  Allowed final
+\varname{[vorbis\_version]} is to read '0' in order to be compatible
+with this document.  Both \varname{[audio\_channels]} and
+\varname{[audio\_sample\_rate]} must read greater than zero.  Allowed final
 blocksize values are 64, 128, 256, 512, 1024, 2048, 4096 and 8192 in
-Vorbis I.  \varname{[blocksize_0]} must be less than or equal to
-\varname{[blocksize_1]}.  The framing bit must be nonzero.  Failure to
+Vorbis I.  \varname{[blocksize\_0]} must be less than or equal to
+\varname{[blocksize\_1]}.  The framing bit must be nonzero.  Failure to
 meet any of these conditions renders a stream undecodable.
 
 The bitrate fields above are used only as hints. The nominal bitrate
@@ -108,11 +108,11 @@ proceeds in the following order:
 \paragraph{Codebooks}
 
 \begin{enumerate}
-\item \varname{[vorbis_codebook_count]} = read eight bits as unsigned integer and add one
-\item Decode \varname{[vorbis_codebook_count]} codebooks in order as defined
+\item \varname{[vorbis\_codebook\_count]} = read eight bits as unsigned integer and add one
+\item Decode \varname{[vorbis\_codebook\_count]} codebooks in order as defined
 in \xref{vorbis:spec:codebook}.  Save each configuration, in
 order, in an array of
-codebook configurations \varname{[vorbis_codebook_configurations]}.
+codebook configurations \varname{[vorbis\_codebook\_configurations]}.
 \end{enumerate}
 
 
@@ -124,8 +124,8 @@ configuration placeholder values must be read to maintain bitstream
 sync.
 
 \begin{enumerate}
-\item \varname{[vorbis_time_count]} = read 6 bits as unsigned integer and add one
-\item read \varname{[vorbis_time_count]} 16 bit values; each value should be zero.  If any value is nonzero, this is an error condition and the stream is undecodable.
+\item \varname{[vorbis\_time\_count]} = read 6 bits as unsigned integer and add one
+\item read \varname{[vorbis\_time\_count]} 16 bit values; each value should be zero.  If any value is nonzero, this is an error condition and the stream is undecodable.
 \end{enumerate}
 
 
@@ -136,17 +136,17 @@ Vorbis uses two floor types; header decode is handed to the decode
 abstraction of the appropriate type.
 
 \begin{enumerate}
- \item \varname{[vorbis_floor_count]} = read 6 bits as unsigned integer and add one
- \item For each \varname{[i]} of \varname{[vorbis_floor_count]} floor numbers:
+ \item \varname{[vorbis\_floor\_count]} = read 6 bits as unsigned integer and add one
+ \item For each \varname{[i]} of \varname{[vorbis\_floor\_count]} floor numbers:
   \begin{enumerate}
-   \item read the floor type: vector \varname{[vorbis_floor_types]} element \varname{[i]} =
+   \item read the floor type: vector \varname{[vorbis\_floor\_types]} element \varname{[i]} =
 read 16 bits as unsigned integer
    \item If the floor type is zero, decode the floor
 configuration as defined in \xref{vorbis:spec:floor0}; save
 this
-configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis_floor_configurations]}.
+configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis\_floor\_configurations]}.
    \item If the floor type is one,
-decode the floor configuration as defined in \xref{vorbis:spec:floor1}; save this configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis_floor_configurations]}.
+decode the floor configuration as defined in \xref{vorbis:spec:floor1}; save this configuration in slot \varname{[i]} of the floor configuration array \varname{[vorbis\_floor\_configurations]}.
    \item If the the floor type is greater than one, this stream is undecodable; ERROR CONDITION
   \end{enumerate}
 
@@ -160,13 +160,13 @@ Vorbis uses three residue types; header decode of each type is identical.
 
 
 \begin{enumerate}
-\item \varname{[vorbis_residue_count]} = read 6 bits as unsigned integer and add one
+\item \varname{[vorbis\_residue\_count]} = read 6 bits as unsigned integer and add one
 
-\item For each of \varname{[vorbis_residue_count]} residue numbers:
+\item For each of \varname{[vorbis\_residue\_count]} residue numbers:
  \begin{enumerate}
-  \item read the residue type; vector \varname{[vorbis_residue_types]} element \varname{[i]} = read 16 bits as unsigned integer
+  \item read the residue type; vector \varname{[vorbis\_residue\_types]} element \varname{[i]} = read 16 bits as unsigned integer
   \item If the residue type is zero,
-one or two, decode the residue configuration as defined in \xref{vorbis:spec:residue}; save this configuration in slot \varname{[i]} of the residue configuration array \varname{[vorbis_residue_configurations]}.
+one or two, decode the residue configuration as defined in \xref{vorbis:spec:residue}; save this configuration in slot \varname{[i]} of the residue configuration array \varname{[vorbis\_residue\_configurations]}.
   \item If the the residue type is greater than two, this stream is undecodable; ERROR CONDITION
  \end{enumerate}
 
@@ -185,8 +185,8 @@ uses a single mapping type (0), with implicit PCM channel mappings.
 % rewrite this pseudocode using listings or algoritmicx or some other
 % package geared towards this.
 \begin{enumerate}
- \item \varname{[vorbis_mapping_count]} = read 6 bits as unsigned integer and add one
- \item For each \varname{[i]} of \varname{[vorbis_mapping_count]} mapping numbers:
+ \item \varname{[vorbis\_mapping\_count]} = read 6 bits as unsigned integer and add one
+ \item For each \varname{[i]} of \varname{[vorbis\_mapping\_count]} mapping numbers:
   \begin{enumerate}
    \item read the mapping type: 16 bits as unsigned integer.  There's no reason to save the mapping type in Vorbis I.
    \item If the mapping type is nonzero, the stream is undecodable
@@ -194,8 +194,8 @@ uses a single mapping type (0), with implicit PCM channel mappings.
     \begin{enumerate}
      \item read 1 bit as a boolean flag
       \begin{enumerate}
-       \item if set, \varname{[vorbis_mapping_submaps]} = read 4 bits as unsigned integer and add one
-       \item if unset, \varname{[vorbis_mapping_submaps]} = 1
+       \item if set, \varname{[vorbis\_mapping\_submaps]} = read 4 bits as unsigned integer and add one
+       \item if unset, \varname{[vorbis\_mapping\_submaps]} = 1
       \end{enumerate}
 
 
@@ -203,39 +203,39 @@ uses a single mapping type (0), with implicit PCM channel mappings.
        \begin{enumerate}
          \item if set, square polar channel mapping is in use:
            \begin{itemize}
-             \item \varname{[vorbis_mapping_coupling_steps]} = read 8 bits as unsigned integer and add one
-             \item for \varname{[j]} each of \varname{[vorbis_mapping_coupling_steps]} steps:
+             \item \varname{[vorbis\_mapping\_coupling\_steps]} = read 8 bits as unsigned integer and add one
+             \item for \varname{[j]} each of \varname{[vorbis\_mapping\_coupling\_steps]} steps:
                \begin{itemize}
-                 \item vector \varname{[vorbis_mapping_magnitude]} element \varname{[j]}= read \link{vorbis:spec:ilog}{ilog}(\varname{[audio_channels]} - 1) bits as unsigned integer
-                 \item vector \varname{[vorbis_mapping_angle]} element \varname{[j]}= read \link{vorbis:spec:ilog}{ilog}(\varname{[audio_channels]} - 1) bits as unsigned integer
-                 \item the numbers read in the above two steps are channel numbers representing the channel to treat as magnitude and the channel to treat as angle, respectively.  If for any coupling step the angle channel number equals the magnitude channel number, the magnitude channel number is greater than \varname{[audio_channels]}-1, or the angle channel is greater than \varname{[audio_channels]}-1, the stream is undecodable.
+                 \item vector \varname{[vorbis\_mapping\_magnitude]} element \varname{[j]}= read \link{vorbis:spec:ilog}{ilog}(\varname{[audio\_channels]} - 1) bits as unsigned integer
+                 \item vector \varname{[vorbis\_mapping\_angle]} element \varname{[j]}= read \link{vorbis:spec:ilog}{ilog}(\varname{[audio\_channels]} - 1) bits as unsigned integer
+                 \item the numbers read in the above two steps are channel numbers representing the channel to treat as magnitude and the channel to treat as angle, respectively.  If for any coupling step the angle channel number equals the magnitude channel number, the magnitude channel number is greater than \varname{[audio\_channels]}-1, or the angle channel is greater than \varname{[audio\_channels]}-1, the stream is undecodable.
                \end{itemize}
 
 
            \end{itemize}
 
 
-         \item if unset, \varname{[vorbis_mapping_coupling_steps]} = 0
+         \item if unset, \varname{[vorbis\_mapping\_coupling\_steps]} = 0
        \end{enumerate}
 
 
      \item read 2 bits (reserved field); if the value is nonzero, the stream is undecodable
-     \item if \varname{[vorbis_mapping_submaps]} is greater than one, we read channel multiplex settings. For each \varname{[j]} of \varname{[audio_channels]} channels:
+     \item if \varname{[vorbis\_mapping\_submaps]} is greater than one, we read channel multiplex settings. For each \varname{[j]} of \varname{[audio\_channels]} channels:
       \begin{enumerate}
-       \item vector \varname{[vorbis_mapping_mux]} element \varname{[j]} = read 4 bits as unsigned integer
-       \item if the value is greater than the highest numbered submap (\varname{[vorbis_mapping_submaps]} - 1), this in an error condition rendering the stream undecodable
+       \item vector \varname{[vorbis\_mapping\_mux]} element \varname{[j]} = read 4 bits as unsigned integer
+       \item if the value is greater than the highest numbered submap (\varname{[vorbis\_mapping\_submaps]} - 1), this in an error condition rendering the stream undecodable
       \end{enumerate}
 
-     \item for each submap \varname{[j]} of \varname{[vorbis_mapping_submaps]} submaps, read the floor and residue numbers for use in decoding that submap:
+     \item for each submap \varname{[j]} of \varname{[vorbis\_mapping\_submaps]} submaps, read the floor and residue numbers for use in decoding that submap:
       \begin{enumerate}
        \item read and discard 8 bits (the unused time configuration placeholder)
-       \item read 8 bits as unsigned integer for the floor number; save in vector \varname{[vorbis_mapping_submap_floor]} element \varname{[j]}
+       \item read 8 bits as unsigned integer for the floor number; save in vector \varname{[vorbis\_mapping\_submap\_floor]} element \varname{[j]}
        \item verify the floor number is not greater than the highest number floor configured for the bitstream. If it is, the bitstream is undecodable
-       \item read 8 bits as unsigned integer for the residue number; save in vector \varname{[vorbis_mapping_submap_residue]} element \varname{[j]}
+       \item read 8 bits as unsigned integer for the residue number; save in vector \varname{[vorbis\_mapping\_submap\_residue]} element \varname{[j]}
        \item verify the residue number is not greater than the highest number residue configured for the bitstream.  If it is, the bitstream is undecodable
       \end{enumerate}
 
-     \item save this mapping configuration in slot \varname{[i]} of the mapping configuration array \varname{[vorbis_mapping_configurations]}.
+     \item save this mapping configuration in slot \varname{[i]} of the mapping configuration array \varname{[vorbis\_mapping\_configurations]}.
     \end{enumerate}
 
   \end{enumerate}
@@ -247,18 +247,18 @@ uses a single mapping type (0), with implicit PCM channel mappings.
 \paragraph{Modes}
 
 \begin{enumerate}
- \item \varname{[vorbis_mode_count]} = read 6 bits as unsigned integer and add one
- \item For each of \varname{[vorbis_mode_count]} mode numbers:
+ \item \varname{[vorbis\_mode\_count]} = read 6 bits as unsigned integer and add one
+ \item For each of \varname{[vorbis\_mode\_count]} mode numbers:
   \begin{enumerate}
-  \item \varname{[vorbis_mode_blockflag]} = read 1 bit
-  \item \varname{[vorbis_mode_windowtype]} = read 16 bits as unsigned integer
-  \item \varname{[vorbis_mode_transformtype]} = read 16 bits as unsigned integer
-  \item \varname{[vorbis_mode_mapping]} = read 8 bits as unsigned integer
+  \item \varname{[vorbis\_mode\_blockflag]} = read 1 bit
+  \item \varname{[vorbis\_mode\_windowtype]} = read 16 bits as unsigned integer
+  \item \varname{[vorbis\_mode\_transformtype]} = read 16 bits as unsigned integer
+  \item \varname{[vorbis\_mode\_mapping]} = read 8 bits as unsigned integer
   \item verify ranges; zero is the only legal value in Vorbis I for
-\varname{[vorbis_mode_windowtype]}
-and \varname{[vorbis_mode_transformtype]}.  \varname{[vorbis_mode_mapping]} must not be greater than the highest number mapping in use.  Any illegal values render the stream undecodable.
+\varname{[vorbis\_mode\_windowtype]}
+and \varname{[vorbis\_mode\_transformtype]}.  \varname{[vorbis\_mode\_mapping]} must not be greater than the highest number mapping in use.  Any illegal values render the stream undecodable.
   \item save this mode configuration in slot \varname{[i]} of the mode configuration array
-\varname{[vorbis_mode_configurations]}.
+\varname{[vorbis\_mode\_configurations]}.
  \end{enumerate}
 
 \item read 1 bit as a framing flag.  If unset, a framing error occurred and the stream is not
@@ -286,25 +286,25 @@ must ignore the packet and not attempt decoding it to audio}.
 \subsubsection{packet type, mode and window decode}
 
 \begin{enumerate}
- \item read 1 bit \varname{[packet_type]}; check that packet type is 0 (audio)
- \item read \link{vorbis:spec:ilog}{ilog}([vorbis_mode_count]-1) bits
-\varname{[mode_number]}
- \item decode blocksize \varname{[n]} is equal to \varname{[blocksize_0]} if
-\varname{[vorbis_mode_blockflag]} is 0, else \varname{[n]} is equal to \varname{[blocksize_1]}.
+ \item read 1 bit \varname{[packet\_type]}; check that packet type is 0 (audio)
+ \item read \link{vorbis:spec:ilog}{ilog}([vorbis\_mode\_count]-1) bits
+\varname{[mode\_number]}
+ \item decode blocksize \varname{[n]} is equal to \varname{[blocksize\_0]} if
+\varname{[vorbis\_mode\_blockflag]} is 0, else \varname{[n]} is equal to \varname{[blocksize\_1]}.
  \item perform window selection and setup; this window is used later by the inverse MDCT:
   \begin{enumerate}
-   \item if this is a long window (the \varname{[vorbis_mode_blockflag]} flag of this mode is
+   \item if this is a long window (the \varname{[vorbis\_mode\_blockflag]} flag of this mode is
 set):
     \begin{enumerate}
-     \item read 1 bit for \varname{[previous_window_flag]}
-     \item read 1 bit for \varname{[next_window_flag]}
-     \item if \varname{[previous_window_flag]} is not set, the left half
+     \item read 1 bit for \varname{[previous\_window\_flag]}
+     \item read 1 bit for \varname{[next\_window\_flag]}
+     \item if \varname{[previous\_window\_flag]} is not set, the left half
          of the window will be a hybrid window for lapping with a
          short block.  See \xref{vorbis:spec:window} for an illustration of overlapping
 dissimilar
          windows. Else, the left half window will have normal long
          shape.
-     \item if \varname{[next_window_flag]} is not set, the right half of
+     \item if \varname{[next\_window\_flag]} is not set, the right half of
          the window will be a hybrid window for lapping with a short
          block.  See \xref{vorbis:spec:window} for an
 illustration of overlapping dissimilar
@@ -324,44 +324,44 @@ lapping requirements can affect overall shape.  Window generation
 proceeds as follows:
 
 \begin{enumerate}
- \item  \varname{[window_center]} = \varname{[n]} / 2
- \item  if (\varname{[vorbis_mode_blockflag]} is set and \varname{[previous_window_flag]} is
+ \item  \varname{[window\_center]} = \varname{[n]} / 2
+ \item  if (\varname{[vorbis\_mode\_blockflag]} is set and \varname{[previous\_window\_flag]} is
 not set) then
   \begin{enumerate}
-   \item \varname{[left_window_start]} = \varname{[n]}/4 -
-\varname{[blocksize_0]}/4
-   \item \varname{[left_window_end]} = \varname{[n]}/4 + \varname{[blocksize_0]}/4
-   \item \varname{[left_n]} = \varname{[blocksize_0]}/2
+   \item \varname{[left\_window\_start]} = \varname{[n]}/4 -
+\varname{[blocksize\_0]}/4
+   \item \varname{[left\_window\_end]} = \varname{[n]}/4 + \varname{[blocksize\_0]}/4
+   \item \varname{[left\_n]} = \varname{[blocksize\_0]}/2
   \end{enumerate}
  else
   \begin{enumerate}
-   \item \varname{[left_window_start]} = 0
-   \item \varname{[left_window_end]} = \varname{[window_center]}
-   \item \varname{[left_n]} = \varname{[n]}/2
+   \item \varname{[left\_window\_start]} = 0
+   \item \varname{[left\_window\_end]} = \varname{[window\_center]}
+   \item \varname{[left\_n]} = \varname{[n]}/2
   \end{enumerate}
 
- \item  if (\varname{[vorbis_mode_blockflag]} is set and \varname{[next_window_flag]} is not
+ \item  if (\varname{[vorbis\_mode\_blockflag]} is set and \varname{[next\_window\_flag]} is not
 set) then
   \begin{enumerate}
-   \item \varname{[right_window_start]} = \varname{[n]*3}/4 -
-\varname{[blocksize_0]}/4
-   \item \varname{[right_window_end]} = \varname{[n]*3}/4 +
-\varname{[blocksize_0]}/4
-   \item \varname{[right_n]} = \varname{[blocksize_0]}/2
+   \item \varname{[right\_window\_start]} = \varname{[n]*3}/4 -
+\varname{[blocksize\_0]}/4
+   \item \varname{[right\_window\_end]} = \varname{[n]*3}/4 +
+\varname{[blocksize\_0]}/4
+   \item \varname{[right\_n]} = \varname{[blocksize\_0]}/2
   \end{enumerate}
  else
   \begin{enumerate}
-   \item \varname{[right_window_start]} = \varname{[window_center]}
-   \item \varname{[right_window_end]} = \varname{[n]}
-   \item \varname{[right_n]} = \varname{[n]}/2
+   \item \varname{[right\_window\_start]} = \varname{[window\_center]}
+   \item \varname{[right\_window\_end]} = \varname{[n]}
+   \item \varname{[right\_n]} = \varname{[n]}/2
   \end{enumerate}
 
- \item  window from range 0 ... \varname{[left_window_start]}-1 inclusive is zero
- \item  for \varname{[i]} in range \varname{[left_window_start]} ...
-\varname{[left_window_end]}-1, window(\varname{[i]}) = $\sin(\frac{\pi}{2} * \sin^2($ (\varname{[i]}-\varname{[left_window_start]}+0.5) / \varname{[left_n]} $* \frac{\pi}{2})$ )
- \item  window from range \varname{[left_window_end]} ... \varname{[right_window_start]}-1
-inclusive is one\item  for \varname{[i]} in range \varname{[right_window_start]} ... \varname{[right_window_end]}-1, window(\varname{[i]}) = $\sin(\frac{\pi}{2} * \sin^2($ (\varname{[i]}-\varname{[right_window_start]}+0.5) / \varname{[right_n]} $ * \frac{\pi}{2} + \frac{\pi}{2})$ )
-\item  window from range \varname{[right_window_start]} ... \varname{[n]}-1 is
+ \item  window from range 0 ... \varname{[left\_window\_start]}-1 inclusive is zero
+ \item  for \varname{[i]} in range \varname{[left\_window\_start]} ...
+\varname{[left\_window\_end]}-1, window(\varname{[i]}) = $\sin(\frac{\pi}{2} * \sin^2($ (\varname{[i]}-\varname{[left\_window\_start]}+0.5) / \varname{[left\_n]} $* \frac{\pi}{2})$ )
+ \item  window from range \varname{[left\_window\_end]} ... \varname{[right\_window\_start]}-1
+inclusive is one\item  for \varname{[i]} in range \varname{[right\_window\_start]} ... \varname{[right\_window\_end]}-1, window(\varname{[i]}) = $\sin(\frac{\pi}{2} * \sin^2($ (\varname{[i]}-\varname{[right\_window\_start]}+0.5) / \varname{[right\_n]} $ * \frac{\pi}{2} + \frac{\pi}{2})$ )
+\item  window from range \varname{[right\_window\_start]} ... \varname{[n]}-1 is
 zero
 \end{enumerate}
 
@@ -375,30 +375,30 @@ occurrence.
 \subsubsection{floor curve decode}
 
 From this point on, we assume out decode context is using mode number
-\varname{[mode_number]} from configuration array
-\varname{[vorbis_mode_configurations]} and the map number
-\varname{[vorbis_mode_mapping]} (specified by the current mode) taken
+\varname{[mode\_number]} from configuration array
+\varname{[vorbis\_mode\_configurations]} and the map number
+\varname{[vorbis\_mode\_mapping]} (specified by the current mode) taken
 from the mapping configuration array
-\varname{[vorbis_mapping_configurations]}.
+\varname{[vorbis\_mapping\_configurations]}.
 
 Floor curves are decoded one-by-one in channel order.
 
-For each floor \varname{[i]} of \varname{[audio_channels]}
+For each floor \varname{[i]} of \varname{[audio\_channels]}
  \begin{enumerate}
-  \item \varname{[submap_number]} = element \varname{[i]} of vector [vorbis_mapping_mux]
-  \item \varname{[floor_number]} = element \varname{[submap_number]} of vector
-[vorbis_submap_floor]
+  \item \varname{[submap\_number]} = element \varname{[i]} of vector [vorbis\_mapping\_mux]
+  \item \varname{[floor\_number]} = element \varname{[submap\_number]} of vector
+[vorbis\_submap\_floor]
   \item if the floor type of this
-floor (vector \varname{[vorbis_floor_types]} element
-\varname{[floor_number]}) is zero then decode the floor for
+floor (vector \varname{[vorbis\_floor\_types]} element
+\varname{[floor\_number]}) is zero then decode the floor for
 channel \varname{[i]} according to the
 \xref{vorbis:spec:floor0-decode}
   \item if the type of this floor
 is one then decode the floor for channel \varname{[i]} according
 to the \xref{vorbis:spec:floor1-decode}
   \item save the needed decoded floor information for channel for later synthesis
-  \item if the decoded floor returned 'unused', set vector \varname{[no_residue]} element
-\varname{[i]} to true, else set vector \varname{[no_residue]} element \varname{[i]} to
+  \item if the decoded floor returned 'unused', set vector \varname{[no\_residue]} element
+\varname{[i]} to true, else set vector \varname{[no\_residue]} element \varname{[i]} to
 false
  \end{enumerate}
 
@@ -418,13 +418,13 @@ coded in the stream, save for one complication.  If some vectors are
 used and some are not, channel coupling could result in mixing a
 zeroed and nonzeroed vector to produce two nonzeroed vectors.
 
-for each \varname{[i]} from 0 ... \varname{[vorbis_mapping_coupling_steps]}-1
+for each \varname{[i]} from 0 ... \varname{[vorbis\_mapping\_coupling\_steps]}-1
 
 \begin{enumerate}
- \item if either \varname{[no_residue]} entry for channel
-(\varname{[vorbis_mapping_magnitude]} element \varname{[i]})
+ \item if either \varname{[no\_residue]} entry for channel
+(\varname{[vorbis\_mapping\_magnitude]} element \varname{[i]})
 or channel
-(\varname{[vorbis_mapping_angle]} element \varname{[i]})
+(\varname{[vorbis\_mapping\_angle]} element \varname{[i]})
 are set to false, then both must be set to false.  Note that an 'unused'
 floor has no decoded floor information; it is important that this is
 remembered at floor curve synthesis time.
@@ -438,34 +438,34 @@ remembered at floor curve synthesis time.
 Unlike floors, which are decoded in channel order, the residue vectors
 are decoded in submap order.
 
-for each submap \varname{[i]} in order from 0 ... \varname{[vorbis_mapping_submaps]}-1
+for each submap \varname{[i]} in order from 0 ... \varname{[vorbis\_mapping\_submaps]}-1
 
 \begin{enumerate}
  \item \varname{[ch]} = 0
- \item for each channel \varname{[j]} in order from 0 ... \varname{[audio_channels]} - 1
+ \item for each channel \varname{[j]} in order from 0 ... \varname{[audio\_channels]} - 1
   \begin{enumerate}
-   \item if channel \varname{[j]} in submap \varname{[i]} (vector \varname{[vorbis_mapping_mux]} element \varname{[j]} is equal to \varname{[i]})
+   \item if channel \varname{[j]} in submap \varname{[i]} (vector \varname{[vorbis\_mapping\_mux]} element \varname{[j]} is equal to \varname{[i]})
     \begin{enumerate}
-     \item if vector \varname{[no_residue]} element \varname{[j]} is true
+     \item if vector \varname{[no\_residue]} element \varname{[j]} is true
       \begin{enumerate}
-       \item vector \varname{[do_not_decode_flag]} element \varname{[ch]} is set
+       \item vector \varname{[do\_not\_decode\_flag]} element \varname{[ch]} is set
       \end{enumerate}
      else
       \begin{enumerate}
-       \item vector \varname{[do_not_decode_flag]} element \varname{[ch]} is unset
+       \item vector \varname{[do\_not\_decode\_flag]} element \varname{[ch]} is unset
       \end{enumerate}
 
      \item increment \varname{[ch]}
     \end{enumerate}
 
   \end{enumerate}
- \item \varname{[residue_number]} = vector \varname{[vorbis_mapping_submap_residue]} element \varname{[i]}
- \item \varname{[residue_type]} = vector \varname{[vorbis_residue_types]} element \varname{[residue_number]}
- \item decode \varname{[ch]} vectors using residue \varname{[residue_number]}, according to type \varname{[residue_type]}, also passing vector \varname{[do_not_decode_flag]} to indicate which vectors in the bundle should not be decoded. Correct per-vector decode length is \varname{[n]}/2.
+ \item \varname{[residue\_number]} = vector \varname{[vorbis\_mapping\_submap\_residue]} element \varname{[i]}
+ \item \varname{[residue\_type]} = vector \varname{[vorbis\_residue\_types]} element \varname{[residue\_number]}
+ \item decode \varname{[ch]} vectors using residue \varname{[residue\_number]}, according to type \varname{[residue\_type]}, also passing vector \varname{[do\_not\_decode\_flag]} to indicate which vectors in the bundle should not be decoded. Correct per-vector decode length is \varname{[n]}/2.
  \item \varname{[ch]} = 0
- \item for each channel \varname{[j]} in order from 0 ... \varname{[audio_channels]}
+ \item for each channel \varname{[j]} in order from 0 ... \varname{[audio\_channels]}
   \begin{enumerate}
-   \item if channel \varname{[j]} is in submap \varname{[i]} (vector \varname{[vorbis_mapping_mux]} element \varname{[j]} is equal to \varname{[i]})
+   \item if channel \varname{[j]} is in submap \varname{[i]} (vector \varname{[vorbis\_mapping\_mux]} element \varname{[j]} is equal to \varname{[i]})
     \begin{enumerate}
      \item residue vector for channel \varname{[j]} is set to decoded residue vector \varname{[ch]}
      \item increment \varname{[ch]}
@@ -479,26 +479,26 @@ for each submap \varname{[i]} in order from 0 ... \varname{[vorbis_mapping_subma
 
 \subsubsection{inverse coupling}
 
-for each \varname{[i]} from \varname{[vorbis_mapping_coupling_steps]}-1 descending to 0
+for each \varname{[i]} from \varname{[vorbis\_mapping\_coupling\_steps]}-1 descending to 0
 
 \begin{enumerate}
- \item \varname{[magnitude_vector]} = the residue vector for channel
-(vector \varname{[vorbis_mapping_magnitude]} element \varname{[i]})
- \item \varname{[angle_vector]} = the residue vector for channel (vector
-\varname{[vorbis_mapping_angle]} element \varname{[i]})
- \item for each scalar value \varname{[M]} in vector \varname{[magnitude_vector]} and the corresponding scalar value \varname{[A]} in vector \varname{[angle_vector]}:
+ \item \varname{[magnitude\_vector]} = the residue vector for channel
+(vector \varname{[vorbis\_mapping\_magnitude]} element \varname{[i]})
+ \item \varname{[angle\_vector]} = the residue vector for channel (vector
+\varname{[vorbis\_mapping\_angle]} element \varname{[i]})
+ \item for each scalar value \varname{[M]} in vector \varname{[magnitude\_vector]} and the corresponding scalar value \varname{[A]} in vector \varname{[angle\_vector]}:
   \begin{enumerate}
    \item if (\varname{[M]} is greater than zero)
     \begin{enumerate}
      \item if (\varname{[A]} is greater than zero)
       \begin{enumerate}
-       \item \varname{[new_M]} = \varname{[M]}
-       \item \varname{[new_A]} = \varname{[M]}-\varname{[A]}
+       \item \varname{[new\_M]} = \varname{[M]}
+       \item \varname{[new\_A]} = \varname{[M]}-\varname{[A]}
       \end{enumerate}
      else
       \begin{enumerate}
-       \item \varname{[new_A]} = \varname{[M]}
-       \item \varname{[new_M]} = \varname{[M]}+\varname{[A]}
+       \item \varname{[new\_A]} = \varname{[M]}
+       \item \varname{[new\_M]} = \varname{[M]}+\varname{[A]}
       \end{enumerate}
 
     \end{enumerate}
@@ -506,19 +506,19 @@ for each \varname{[i]} from \varname{[vorbis_mapping_coupling_steps]}-1 descendi
     \begin{enumerate}
      \item if (\varname{[A]} is greater than zero)
       \begin{enumerate}
-       \item \varname{[new_M]} = \varname{[M]}
-       \item \varname{[new_A]} = \varname{[M]}+\varname{[A]}
+       \item \varname{[new\_M]} = \varname{[M]}
+       \item \varname{[new\_A]} = \varname{[M]}+\varname{[A]}
       \end{enumerate}
      else
       \begin{enumerate}
-       \item \varname{[new_A]} = \varname{[M]}
-       \item \varname{[new_M]} = \varname{[M]}-\varname{[A]}
+       \item \varname{[new\_A]} = \varname{[M]}
+       \item \varname{[new\_M]} = \varname{[M]}-\varname{[A]}
       \end{enumerate}
 
     \end{enumerate}
 
-   \item set scalar value \varname{[M]} in vector \varname{[magnitude_vector]} to \varname{[new_M]}
-   \item set scalar value \varname{[A]} in vector \varname{[angle_vector]} to \varname{[new_A]}
+   \item set scalar value \varname{[M]} in vector \varname{[magnitude\_vector]} to \varname{[new\_M]}
+   \item set scalar value \varname{[A]} in vector \varname{[angle\_vector]} to \varname{[new\_A]}
   \end{enumerate}
 
 \end{enumerate}
@@ -573,7 +573,7 @@ function used for the MDCT is the function described earlier.
 
 
 
-\subsubsection{overlap_add}
+\subsubsection{overlap\_add}
 
 Windowed MDCT output is overlapped and added with the right hand data
 of the previous window such that the 3/4 point of the previous window
@@ -590,7 +590,7 @@ attention however to returning the correct data range; the amount of
 data to be returned is:
 
 \begin{programlisting}
-window_blocksize(previous_window)/4+window_blocksize(current_window)/4
+window\_blocksize(previous\_window)/4+window\_blocksize(current\_window)/4
 \end{programlisting}
 
 from the center (element windowsize/2) of the previous window to the
index 79fd9e9..f06f6b7 100644 (file)
@@ -46,15 +46,15 @@ unaligned 32 bit little endian unsigned integers.
 The comment header is decoded as follows:
 
 \begin{programlisting}
-  1) [vendor_length] = read an unsigned integer of 32 bits
-  2) [vendor_string] = read a UTF-8 vector as [vendor_length] octets
-  3) [user_comment_list_length] = read an unsigned integer of 32 bits
-  4) iterate [user_comment_list_length] times {
+  1) [vendor\_length] = read an unsigned integer of 32 bits
+  2) [vendor\_string] = read a UTF-8 vector as [vendor\_length] octets
+  3) [user\_comment\_list\_length] = read an unsigned integer of 32 bits
+  4) iterate [user\_comment\_list\_length] times {
        5) [length] = read an unsigned integer of 32 bits
        6) this iteration's user comment = read a UTF-8 vector as [length] octets
      }
-  7) [framing_bit] = read a single bit as boolean
-  8) if ( [framing_bit] unset or end-of-packet ) then ERROR
+  7) [framing\_bit] = read a single bit as boolean
+  8) if ( [framing\_bit] unset or end-of-packet ) then ERROR
   9) done.
 \end{programlisting}
 
@@ -124,7 +124,7 @@ info)
 Use Permitted', a URL to a license such as a Creative Commons license
 ("www.creativecommons.org/blahblah/license.html") or the EFF Open
 Audio License ('distributed under the terms of the Open Audio
-License. see http://www.eff.org/IP/Open_licenses/eff_oal.html for
+License. see http://www.eff.org/IP/Open\_licenses/eff\_oal.html for
 details'), etc.
 
 \item[ORGANIZATION]
@@ -231,7 +231,7 @@ bitstream octet first):
 \end{enumerate}
 
 
-This is actually somewhat easier to describe in code; implementation of the above can be found in \filename{vorbis/lib/info.c}, \function{_vorbis_pack_comment()} and \function{_vorbis_unpack_comment()}.
+This is actually somewhat easier to describe in code; implementation of the above can be found in \filename{vorbis/lib/info.c}, \function{\_vorbis\_pack\_comment()} and \function{\_vorbis\_unpack\_comment()}.
 
 
 
index 216eb1d..c431a94 100644 (file)
@@ -111,44 +111,44 @@ context.
 
 \begin{Verbatim}[commandchars=\\\{\}]
 
-  1) [floor1_partitions] = read 5 bits as unsigned integer
-  2) [maximum_class] = -1
-  3) iterate [i] over the range 0 ... [floor1_partitions]-1 \{
+  1) [floor1\_partitions] = read 5 bits as unsigned integer
+  2) [maximum\_class] = -1
+  3) iterate [i] over the range 0 ... [floor1\_partitions]-1 \{
 
-        4) vector [floor1_partition_class_list] element [i] = read 4 bits as unsigned integer
+        4) vector [floor1\_partition\_class\_list] element [i] = read 4 bits as unsigned integer
 
      \}
 
-  5) [maximum_class] = largest integer scalar value in vector [floor1_partition_class_list]
-  6) iterate [i] over the range 0 ... [maximum_class] \{
+  5) [maximum\_class] = largest integer scalar value in vector [floor1\_partition\_class\_list]
+  6) iterate [i] over the range 0 ... [maximum\_class] \{
 
-        7) vector [floor1_class_dimensions] element [i] = read 3 bits as unsigned integer and add 1
-       8) vector [floor1_class_subclasses] element [i] = read 2 bits as unsigned integer
-        9) if ( vector [floor1_class_subclasses] element [i] is nonzero ) \{
+        7) vector [floor1\_class\_dimensions] element [i] = read 3 bits as unsigned integer and add 1
+       8) vector [floor1\_class\_subclasses] element [i] = read 2 bits as unsigned integer
+        9) if ( vector [floor1\_class\_subclasses] element [i] is nonzero ) \{
 
-             10) vector [floor1_class_masterbooks] element [i] = read 8 bits as unsigned integer
+             10) vector [floor1\_class\_masterbooks] element [i] = read 8 bits as unsigned integer
 
            \}
 
-       11) iterate [j] over the range 0 ... (2 exponent [floor1_class_subclasses] element [i]) - 1 \{
+       11) iterate [j] over the range 0 ... (2 exponent [floor1\_class\_subclasses] element [i]) - 1 \{
 
-             12) array [floor1_subclass_books] element [i],[j] =
+             12) array [floor1\_subclass\_books] element [i],[j] =
                  read 8 bits as unsigned integer and subtract one
            \}
       \}
 
- 13) [floor1_multiplier] = read 2 bits as unsigned integer and add one
+ 13) [floor1\_multiplier] = read 2 bits as unsigned integer and add one
  14) [rangebits] = read 4 bits as unsigned integer
- 15) vector [floor1_X_list] element [0] = 0
- 16) vector [floor1_X_list] element [1] = 2 exponent [rangebits];
- 17) [floor1_values] = 2
- 18) iterate [i] over the range 0 ... [floor1_partitions]-1 \{
-
-       19) [current_class_number] = vector [floor1_partition_class_list] element [i]
-       20) iterate [j] over the range 0 ... ([floor1_class_dimensions] element [current_class_number])-1 \{
-             21) vector [floor1_X_list] element ([floor1_values]) =
+ 15) vector [floor1\_X\_list] element [0] = 0
+ 16) vector [floor1\_X\_list] element [1] = 2 exponent [rangebits];
+ 17) [floor1\_values] = 2
+ 18) iterate [i] over the range 0 ... [floor1\_partitions]-1 \{
+
+       19) [current\_class\_number] = vector [floor1\_partition\_class\_list] element [i]
+       20) iterate [j] over the range 0 ... ([floor1\_class\_dimensions] element [current\_class\_number])-1 \{
+             21) vector [floor1\_X\_list] element ([floor1\_values]) =
                  read [rangebits] bits as unsigned integer
-             22) increment [floor1_values] by one
+             22) increment [floor1\_values] by one
            \}
      \}
 
@@ -157,11 +157,11 @@ context.
 
 An end-of-packet condition while reading any aspect of a floor 1
 configuration during setup renders a stream undecodable.  In addition,
-a \varname{[floor1_class_masterbooks]} or
-\varname{[floor1_subclass_books]} scalar element greater than the
+a \varname{[floor1\_class\_masterbooks]} or
+\varname{[floor1\_subclass\_books]} scalar element greater than the
 highest numbered codebook configured in this stream is an error
 condition that renders the stream undecodable.  All vector
-[floor1_x_list] element values must be unique within the vector; a
+[floor1\_x\_list] element values must be unique within the vector; a
 non-unique value renders the stream undecodable.
 
 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
@@ -183,35 +183,35 @@ which happens to be approximately -140dB).
 Assuming \varname{[nonzero]} is set, decode proceeds as follows:
 
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [range] = vector \{ 256, 128, 86, 64 \} element ([floor1_multiplier]-1)
-  2) vector [floor1_Y] element [0] = read \link{vorbis:spec:ilog}{ilog}([range]-1) bits as unsigned integer
-  3) vector [floor1_Y] element [1] = read \link{vorbis:spec:ilog}{ilog}([range]-1) bits as unsigned integer
+  1) [range] = vector \{ 256, 128, 86, 64 \} element ([floor1\_multiplier]-1)
+  2) vector [floor1\_Y] element [0] = read \link{vorbis:spec:ilog}{ilog}([range]-1) bits as unsigned integer
+  3) vector [floor1\_Y] element [1] = read \link{vorbis:spec:ilog}{ilog}([range]-1) bits as unsigned integer
   4) [offset] = 2;
-  5) iterate [i] over the range 0 ... [floor1_partitions]-1 \{
+  5) iterate [i] over the range 0 ... [floor1\_partitions]-1 \{
 
-       6) [class] = vector [floor1_partition_class]  element [i]
-       7) [cdim]  = vector [floor1_class_dimensions] element [class]
-       8) [cbits] = vector [floor1_class_subclasses] element [class]
+       6) [class] = vector [floor1\_partition\_class]  element [i]
+       7) [cdim]  = vector [floor1\_class\_dimensions] element [class]
+       8) [cbits] = vector [floor1\_class\_subclasses] element [class]
        9) [csub]  = (2 exponent [cbits])-1
       10) [cval]  = 0
       11) if ( [cbits] is greater than zero ) \{
 
              12) [cval] = read from packet using codebook number
-                 (vector [floor1_class_masterbooks] element [class]) in scalar context
+                 (vector [floor1\_class\_masterbooks] element [class]) in scalar context
           \}
 
       13) iterate [j] over the range 0 ... [cdim]-1 \{
 
-             14) [book] = array [floor1_subclass_books] element [class],([cval] bitwise AND [csub])
+             14) [book] = array [floor1\_subclass\_books] element [class],([cval] bitwise AND [csub])
              15) [cval] = [cval] right shifted [cbits] bits
             16) if ( [book] is not less than zero ) \{
 
-                  17) vector [floor1_Y] element ([j]+[offset]) = read from packet using codebook
+                  17) vector [floor1\_Y] element ([j]+[offset]) = read from packet using codebook
                        [book] in scalar context
 
                  \} else [book] is less than zero \{
 
-                  18) vector [floor1_Y] element ([j]+[offset]) = 0
+                  18) vector [floor1\_Y] element ([j]+[offset]) = 0
 
                  \}
           \}
@@ -229,7 +229,7 @@ operation above, floor decode is to return 'unused' status as if the
 \varname{[nonzero]} flag had been unset at the beginning of decode.
 
 
-Vector \varname{[floor1_Y]} contains the values from packet decode
+Vector \varname{[floor1\_Y]} contains the values from packet decode
 needed for floor 1 synthesis.
 
 
@@ -256,23 +256,23 @@ Unwrap the always-positive-or-zero values read from the packet into
 +/- difference values, then apply to line prediction.
 
 \begin{Verbatim}[commandchars=\\\{\}]
-  1) [range] = vector \{ 256, 128, 86, 64 \} element ([floor1_multiplier]-1)
-  2) vector [floor1_step2_flag] element [0] = set
-  3) vector [floor1_step2_flag] element [1] = set
-  4) vector [floor1_final_Y] element [0] = vector [floor1_Y] element [0]
-  5) vector [floor1_final_Y] element [1] = vector [floor1_Y] element [1]
-  6) iterate [i] over the range 2 ... [floor1_values]-1 \{
-
-       7) [low_neighbor_offset] = \link{vorbis:spec:low:neighbor}{low_neighbor}([floor1_X_list],[i])
-       8) [high_neighbor_offset] = \link{vorbis:spec:high:neighbor}{high_neighbor}([floor1_X_list],[i])
-
-       9) [predicted] = \link{vorbis:spec:render:point}{render_point}( vector [floor1_X_list] element [low_neighbor_offset],
-                                     vector [floor1_final_Y] element [low_neighbor_offset],
-                                      vector [floor1_X_list] element [high_neighbor_offset],
-                                     vector [floor1_final_Y] element [high_neighbor_offset],
-                                      vector [floor1_X_list] element [i] )
-
-      10) [val] = vector [floor1_Y] element [i]
+  1) [range] = vector \{ 256, 128, 86, 64 \} element ([floor1\_multiplier]-1)
+  2) vector [floor1\_step2\_flag] element [0] = set
+  3) vector [floor1\_step2\_flag] element [1] = set
+  4) vector [floor1\_final\_Y] element [0] = vector [floor1\_Y] element [0]
+  5) vector [floor1\_final\_Y] element [1] = vector [floor1\_Y] element [1]
+  6) iterate [i] over the range 2 ... [floor1\_values]-1 \{
+
+       7) [low\_neighbor\_offset] = \link{vorbis:spec:low:neighbor}{low\_neighbor}([floor1\_X\_list],[i])
+       8) [high\_neighbor\_offset] = \link{vorbis:spec:high:neighbor}{high\_neighbor}([floor1\_X\_list],[i])
+
+       9) [predicted] = \link{vorbis:spec:render:point}{render\_point}( vector [floor1\_X\_list] element [low\_neighbor\_offset],
+                                     vector [floor1\_final\_Y] element [low\_neighbor\_offset],
+                                      vector [floor1\_X\_list] element [high\_neighbor\_offset],
+                                     vector [floor1\_final\_Y] element [high\_neighbor\_offset],
+                                      vector [floor1\_X\_list] element [i] )
+
+      10) [val] = vector [floor1\_Y] element [i]
       11) [highroom] = [range] - [predicted]
       12) [lowroom]  = [predicted]
       13) if ( [highroom] is less than [lowroom] ) \{
@@ -287,18 +287,18 @@ Unwrap the always-positive-or-zero values read from the packet into
 
       16) if ( [val] is nonzero ) \{
 
-            17) vector [floor1_step2_flag] element [low_neighbor_offset] = set
-            18) vector [floor1_step2_flag] element [high_neighbor_offset] = set
-            19) vector [floor1_step2_flag] element [i] = set
+            17) vector [floor1\_step2\_flag] element [low\_neighbor\_offset] = set
+            18) vector [floor1\_step2\_flag] element [high\_neighbor\_offset] = set
+            19) vector [floor1\_step2\_flag] element [i] = set
             20) if ( [val] is greater than or equal to [room] ) \{
 
                   21) if ( [highroom] is greater than [lowroom] ) \{
 
-                        22) vector [floor1_final_Y] element [i] = [val] - [lowroom] + [predicted]
+                        22) vector [floor1\_final\_Y] element [i] = [val] - [lowroom] + [predicted]
 
                      \} else [highroom] is not greater than [lowroom] \{
 
-                        23) vector [floor1_final_Y] element [i] = [predicted] - [val] + [highroom] - 1
+                        23) vector [floor1\_final\_Y] element [i] = [predicted] - [val] + [highroom] - 1
 
                       \}
 
@@ -306,12 +306,12 @@ Unwrap the always-positive-or-zero values read from the packet into
 
                  24) if ([val] is odd) \{
 
-                        25) vector [floor1_final_Y] element [i] =
+                        25) vector [floor1\_final\_Y] element [i] =
                             [predicted] - (([val] + 1) divided by  2 using integer division)
 
                       \} else [val] is even \{
 
-                        26) vector [floor1_final_Y] element [i] =
+                        26) vector [floor1\_final\_Y] element [i] =
                             [predicted] + ([val] / 2 using integer division)
 
                       \}
@@ -320,8 +320,8 @@ Unwrap the always-positive-or-zero values read from the packet into
 
           \} else [val] is zero \{
 
-            27) vector [floor1_step2_flag] element [i] = unset
-            28) vector [floor1_final_Y] element [i] = [predicted]
+            27) vector [floor1\_step2\_flag] element [i] = unset
+            28) vector [floor1\_final\_Y] element [i] = [predicted]
 
           \}
 
@@ -338,18 +338,18 @@ Unwrap the always-positive-or-zero values read from the packet into
 Curve synthesis generates a return vector \varname{[floor]} of length
 \varname{[n]} (where \varname{[n]} is provided by the decode process
 calling to floor decode).  Floor 1 curve synthesis makes use of the
-\varname{[floor1_X_list]}, \varname{[floor1_final_Y]} and
-\varname{[floor1_step2_flag]} vectors, as well as [floor1_multiplier]
-and [floor1_values] values.
+\varname{[floor1\_X\_list]}, \varname{[floor1\_final\_Y]} and
+\varname{[floor1\_step2\_flag]} vectors, as well as [floor1\_multiplier]
+and [floor1\_values] values.
 
 Decode begins by sorting the scalars from vectors
-\varname{[floor1_X_list]}, \varname{[floor1_final_Y]} and
-\varname{[floor1_step2_flag]} together into new vectors
-\varname{[floor1_X_list]'}, \varname{[floor1_final_Y]'} and
-\varname{[floor1_step2_flag]'} according to ascending sort order of the
-values in \varname{[floor1_X_list]}.  That is, sort the values of
-\varname{[floor1_X_list]} and then apply the same permutation to
-elements of the other two vectors so that the X, Y and step2_flag
+\varname{[floor1\_X\_list]}, \varname{[floor1\_final\_Y]} and
+\varname{[floor1\_step2\_flag]} together into new vectors
+\varname{[floor1\_X\_list]'}, \varname{[floor1\_final\_Y]'} and
+\varname{[floor1\_step2\_flag]'} according to ascending sort order of the
+values in \varname{[floor1\_X\_list]}.  That is, sort the values of
+\varname{[floor1\_X\_list]} and then apply the same permutation to
+elements of the other two vectors so that the X, Y and step2\_flag
 values still match.
 
 Then compute the final curve in one pass:
@@ -357,14 +357,14 @@ Then compute the final curve in one pass:
 \begin{Verbatim}[commandchars=\\\{\}]
   1) [hx] = 0
   2) [lx] = 0
-  3) [ly] = vector [floor1_final_Y]' element [0] * [floor1_multiplier]
-  4) iterate [i] over the range 1 ... [floor1_values]-1 \{
+  3) [ly] = vector [floor1\_final\_Y]' element [0] * [floor1\_multiplier]
+  4) iterate [i] over the range 1 ... [floor1\_values]-1 \{
 
-       5) if ( [floor1_step2_flag]' element [i] is set ) \{
+       5) if ( [floor1\_step2\_flag]' element [i] is set ) \{
 
-             6) [hy] = [floor1_final_Y]' element [i] * [floor1_multiplier]
-            7) [hx] = [floor1_X_list]' element [i]
-             8) \link{vorbis:spec:render:line}{render_line}( [lx], [ly], [hx], [hy], [floor] )
+             6) [hy] = [floor1\_final\_Y]' element [i] * [floor1\_multiplier]
+            7) [hx] = [floor1\_X\_list]' element [i]
+             8) \link{vorbis:spec:render:line}{render\_line}( [lx], [ly], [hx], [hy], [floor] )
              9) [lx] = [hx]
            10) [ly] = [hy]
           \}
@@ -372,7 +372,7 @@ Then compute the final curve in one pass:
 
  11) if ( [hx] is less than [n] ) \{
 
-        12) \link{vorbis:spec:render:line}{render_line}( [hx], [hy], [n], [hy], [floor] )
+        12) \link{vorbis:spec:render:line}{render\_line}( [hx], [hy], [n], [hy], [floor] )
 
      \}
 
@@ -383,7 +383,7 @@ Then compute the final curve in one pass:
      \}
 
  15) for each scalar in vector [floor], perform a lookup substitution using
-     the scalar value from [floor] as an offset into the vector \link{vorbis:spec:floor1:inverse:dB:table}{[floor1_inverse_dB_static_table]}
+     the scalar value from [floor] as an offset into the vector \link{vorbis:spec:floor1:inverse:dB:table}{[floor1\_inverse\_dB\_static\_table]}
 
  16) done
 
index 767c1fa..b2e63d2 100644 (file)
@@ -37,11 +37,11 @@ encoded and simply trusting that it is, is as follows:
 \begin{itemize}
 \item Each vector is partitioned into multiple equal sized chunks
 according to configuration specified.  If we have a vector size of
-\emph{n}, a partition size \emph{residue_partition_size}, and a total
+\emph{n}, a partition size \emph{residue\_partition\_size}, and a total
 of \emph{ch} residue vectors, the total number of partitioned chunks
-coded is \emph{n}/\emph{residue_partition_size}*\emph{ch}.  It is
+coded is \emph{n}/\emph{residue\_partition\_size}*\emph{ch}.  It is
 important to note that the integer division truncates.  In the below
-example, we assume an example \emph{residue_partition_size} of 8.
+example, we assume an example \emph{residue\_partition\_size} of 8.
 
 \item Each partition in each vector has a classification number that
 specifies which of multiple configured VQ codebook setups are used to
@@ -156,48 +156,48 @@ vector to begin with, residue type 1 and type 2 are equivalent.
 
 Header decode for all three residue types is identical.
 \begin{programlisting}
-  1) [residue_begin] = read 24 bits as unsigned integer
-  2) [residue_end] = read 24 bits as unsigned integer
-  3) [residue_partition_size] = read 24 bits as unsigned integer and add one
-  4) [residue_classifications] = read 6 bits as unsigned integer and add one
-  5) [residue_classbook] = read 8 bits as unsigned integer
+  1) [residue\_begin] = read 24 bits as unsigned integer
+  2) [residue\_end] = read 24 bits as unsigned integer
+  3) [residue\_partition\_size] = read 24 bits as unsigned integer and add one
+  4) [residue\_classifications] = read 6 bits as unsigned integer and add one
+  5) [residue\_classbook] = read 8 bits as unsigned integer
 \end{programlisting}
 
-\varname{[residue_begin]} and
-\varname{[residue_end]} select the specific sub-portion of
+\varname{[residue\_begin]} and
+\varname{[residue\_end]} select the specific sub-portion of
 each vector that is actually coded; it implements akin to a bandpass
 where, for coding purposes, the vector effectively begins at element
-\varname{[residue_begin]} and ends at
-\varname{[residue_end]}.  Preceding and following values in
+\varname{[residue\_begin]} and ends at
+\varname{[residue\_end]}.  Preceding and following values in
 the unpacked vectors are zeroed.  Note that for residue type 2, these
-values as well as \varname{[residue_partition_size]}apply to
+values as well as \varname{[residue\_partition\_size]}apply to
 the interleaved vector, not the individual vectors before interleave.
-\varname{[residue_partition_size]} is as explained above,
-\varname{[residue_classifications]} is the number of possible
+\varname{[residue\_partition\_size]} is as explained above,
+\varname{[residue\_classifications]} is the number of possible
 classification to which a partition can belong and
-\varname{[residue_classbook]} is the codebook number used to
+\varname{[residue\_classbook]} is the codebook number used to
 code classification codewords.  The number of dimensions in book
-\varname{[residue_classbook]} determines how many
+\varname{[residue\_classbook]} determines how many
 classification values are grouped into a single classification
 codeword.  Note that the number of entries and dimensions in book
-\varname{[residue_classbook]}, along with
-\varname{[residue_classifications]}, overdetermines to
+\varname{[residue\_classbook]}, along with
+\varname{[residue\_classifications]}, overdetermines to
 possible number of classification codewords.  
-If \varname{[residue_classifications]}\^{}\varname{[residue_classbook]}.dimensions
-exceeds \varname{[residue_classbook]}.entries, the
+If \varname{[residue\_classifications]}\^{}\varname{[residue\_classbook]}.dimensions
+exceeds \varname{[residue\_classbook]}.entries, the
 bitstream should be regarded to be undecodable.
 
 Next we read a bitmap pattern that specifies which partition classes
 code values in which passes.
 
 \begin{programlisting}
-  1) iterate [i] over the range 0 ... [residue_classifications]-1 {
+  1) iterate [i] over the range 0 ... [residue\_classifications]-1 {
 
-       2) [high_bits] = 0
-       3) [low_bits] = read 3 bits as unsigned integer
+       2) [high\_bits] = 0
+       3) [low\_bits] = read 3 bits as unsigned integer
        4) [bitflag] = read one bit as boolean
-       5) if ( [bitflag] is set ) then [high_bits] = read five bits as unsigned integer
-       6) vector [residue_cascade] element [i] = [high_bits] * 8 + [low_bits]
+       5) if ( [bitflag] is set ) then [high\_bits] = read five bits as unsigned integer
+       6) vector [residue\_cascade] element [i] = [high\_bits] * 8 + [low\_bits]
      }
   7) done
 \end{programlisting}
@@ -209,17 +209,17 @@ stages (8 in Vorbis I, as constrained by the elements of the cascade
 bitmap being eight bits):
 
 \begin{programlisting}
-  1) iterate [i] over the range 0 ... [residue_classifications]-1 {
+  1) iterate [i] over the range 0 ... [residue\_classifications]-1 {
 
        2) iterate [j] over the range 0 ... 7 {
 
-            3) if ( vector [residue_cascade] element [i] bit [j] is set ) {
+            3) if ( vector [residue\_cascade] element [i] bit [j] is set ) {
 
-                 4) array [residue_books] element [i][j] = read 8 bits as unsigned integer
+                 4) array [residue\_books] element [i][j] = read 8 bits as unsigned integer
 
                } else {
 
-                 5) array [residue_books] element [i][j] = unused
+                 5) array [residue\_books] element [i][j] = unused
 
                }
           }
@@ -231,9 +231,9 @@ bitmap being eight bits):
 An end-of-packet condition at any point in header decode renders the
 stream undecodable.  In addition, any codebook number greater than the
 maximum numbered codebook set up in this stream also renders the
-stream undecodable. All codebooks in array [residue_books] are
+stream undecodable. All codebooks in array [residue\_books] are
 required to have a value mapping.  The presence of codebook in array
-[residue_books] without a value mapping (maptype equals zero) renders
+[residue\_books] without a value mapping (maptype equals zero) renders
 the stream undecodable.
 
 
@@ -252,46 +252,46 @@ passed in number of vectors is 3 and vector number 1 is marked 'do not
 decode', decode skips vector 1 during the decode loop.  However, even
 'do not decode' vectors are allocated and zeroed.
 
-Depending on the values of \varname{[residue_begin]} and
-\varname{[residue_end]}, it is obvious that the encoded
+Depending on the values of \varname{[residue\_begin]} and
+\varname{[residue\_end]}, it is obvious that the encoded
 portion of a residue vector may be the entire possible residue vector
 or some other strict subset of the actual residue vector size with
 zero padding at either uncoded end.  However, it is also possible to
-set \varname{[residue_begin]} and
-\varname{[residue_end]} to specify a range partially or
+set \varname{[residue\_begin]} and
+\varname{[residue\_end]} to specify a range partially or
 wholly beyond the maximum vector size.  Before beginning residue
-decode, limit \varname{[residue_begin]} and
-\varname{[residue_end]} to the maximum possible vector size
+decode, limit \varname{[residue\_begin]} and
+\varname{[residue\_end]} to the maximum possible vector size
 as follows.  We assume that the number of vectors being encoded,
 \varname{[ch]} is provided by the higher level decoding
 process.
 
 \begin{programlisting}
-  1) [actual_size] = current blocksize/2;
+  1) [actual\_size] = current blocksize/2;
   2) if residue encoding is format 2
-       3) [actual_size] = [actual_size] * [ch];
-  4) [limit_residue_begin] = maximum of ([residue_begin],[actual_size]);
-  5) [limit_residue_end] = maximum of ([residue_end],[actual_size]);
+       3) [actual\_size] = [actual\_size] * [ch];
+  4) [limit\_residue\_begin] = maximum of ([residue\_begin],[actual\_size]);
+  5) [limit\_residue\_end] = maximum of ([residue\_end],[actual\_size]);
 \end{programlisting}
 
 The following convenience values are conceptually useful to clarifying
 the decode process:
 
 \begin{programlisting}
-  1) [classwords_per_codeword] = [codebook_dimensions] value of codebook [residue_classbook]
-  2) [n_to_read] = [limit_residue_end] - [limit_residue_begin]
-  3) [partitions_to_read] = [n_to_read] / [residue_partition_size]
+  1) [classwords\_per\_codeword] = [codebook\_dimensions] value of codebook [residue\_classbook]
+  2) [n\_to\_read] = [limit\_residue\_end] - [limit\_residue\_begin]
+  3) [partitions\_to\_read] = [n\_to\_read] / [residue\_partition\_size]
 \end{programlisting}
 
 Packet decode proceeds as follows, matching the description offered earlier in the document.
 \begin{programlisting}
   1) allocate and zero all vectors that will be returned.
-  2) if ([n_to_read] is zero), stop; there is no residue to decode.
+  2) if ([n\_to\_read] is zero), stop; there is no residue to decode.
   3) iterate [pass] over the range 0 ... 7 {
 
-       4) [partition_count] = 0
+       4) [partition\_count] = 0
 
-       5) while [partition_count] is less than [partitions_to_read]
+       5) while [partition\_count] is less than [partitions\_to\_read]
 
             6) if ([pass] is zero) {
 
@@ -299,12 +299,12 @@ Packet decode proceeds as follows, matching the description offered earlier in t
 
                       8) if vector [j] is not marked 'do not decode' {
 
-                           9) [temp] = read from packet using codebook [residue_classbook] in scalar context
-                          10) iterate [i] descending over the range [classwords_per_codeword]-1 ... 0 {
+                           9) [temp] = read from packet using codebook [residue\_classbook] in scalar context
+                          10) iterate [i] descending over the range [classwords\_per\_codeword]-1 ... 0 {
 
-                               11) array [classifications] element [j],([i]+[partition_count]) =
-                                   [temp] integer modulo [residue_classifications]
-                               12) [temp] = [temp] / [residue_classifications] using integer division
+                               11) array [classifications] element [j],([i]+[partition\_count]) =
+                                   [temp] integer modulo [residue\_classifications]
+                               12) [temp] = [temp] / [residue\_classifications] using integer division
 
                               }
 
@@ -314,24 +314,24 @@ Packet decode proceeds as follows, matching the description offered earlier in t
 
                }
 
-           13) iterate [i] over the range 0 .. ([classwords_per_codeword] - 1) while [partition_count]
-               is also less than [partitions_to_read] {
+           13) iterate [i] over the range 0 .. ([classwords\_per\_codeword] - 1) while [partition\_count]
+               is also less than [partitions\_to\_read] {
 
                  14) iterate [j] over the range 0 .. [ch]-1 {
 
                       15) if vector [j] is not marked 'do not decode' {
 
-                           16) [vqclass] = array [classifications] element [j],[partition_count]
-                           17) [vqbook] = array [residue_books] element [vqclass],[pass]
+                           16) [vqclass] = array [classifications] element [j],[partition\_count]
+                           17) [vqbook] = array [residue\_books] element [vqclass],[pass]
                            18) if ([vqbook] is not 'unused') {
 
                                 19) decode partition into output vector number [j], starting at scalar
-                                    offset [limit_residue_begin]+[partition_count]*[residue_partition_size] using
+                                    offset [limit\_residue\_begin]+[partition\_count]*[residue\_partition\_size] using
                                     codebook number [vqbook] in VQ context
                           }
                      }
 
-                 20) increment [partition_count] by one
+                 20) increment [partition\_count] by one
 
                }
           }
@@ -354,22 +354,22 @@ Format zero decodes partitions exactly as described earlier in the
 presents the same algorithm. Assume:
 
 \begin{itemize}
-\item  \varname{[n]} is the value in \varname{[residue_partition_size]}
+\item  \varname{[n]} is the value in \varname{[residue\_partition\_size]}
 \item \varname{[v]} is the residue vector
 \item \varname{[offset]} is the beginning read offset in [v]
 \end{itemize}
 
 
 \begin{programlisting}
- 1) [step] = [n] / [codebook_dimensions]
+ 1) [step] = [n] / [codebook\_dimensions]
  2) iterate [i] over the range 0 ... [step]-1 {
 
-      3) vector [entry_temp] = read vector from packet using current codebook in VQ context
-      4) iterate [j] over the range 0 ... [codebook_dimensions]-1 {
+      3) vector [entry\_temp] = read vector from packet using current codebook in VQ context
+      4) iterate [j] over the range 0 ... [codebook\_dimensions]-1 {
 
            5) vector [v] element ([offset]+[i]+[j]*[step]) =
                vector [v] element ([offset]+[i]+[j]*[step]) +
-                vector [entry_temp] element [j]
+                vector [entry\_temp] element [j]
 
          }
 
@@ -389,7 +389,7 @@ presents the same algorithm. Assume:
 
 \begin{itemize}
 \item  \varname{[n]} is the value in
-\varname{[residue_partition_size]}
+\varname{[residue\_partition\_size]}
 \item \varname{[v]} is the residue vector
 \item \varname{[offset]} is the beginning read offset in [v]
 \end{itemize}
@@ -397,12 +397,12 @@ presents the same algorithm. Assume:
 
 \begin{programlisting}
  1) [i] = 0
- 2) vector [entry_temp] = read vector from packet using current codebook in VQ context
- 3) iterate [j] over the range 0 ... [codebook_dimensions]-1 {
+ 2) vector [entry\_temp] = read vector from packet using current codebook in VQ context
+ 3) iterate [j] over the range 0 ... [codebook\_dimensions]-1 {
 
       4) vector [v] element ([offset]+[i]) =
          vector [v] element ([offset]+[i]) +
-          vector [entry_temp] element [j]
+          vector [entry\_temp] element [j]
       5) increment [i]
 
     }
index 6e1bfe0..f2d964b 100644 (file)
@@ -18,10 +18,10 @@ The "ilog(x)" function returns the position number (1 through n) of the highest
 \varname{[x]}.  Values of \varname{[x]} less than zero are defined to return zero.
 
 \begin{programlisting}
-  1) [return_value] = 0;
+  1) [return\_value] = 0;
   2) if ( [x] is greater than zero ) {
 
-       3) increment [return_value];
+       3) increment [return\_value];
        4) logical shift [x] one bit to the right, padding the MSb with zero
        5) repeat at step 2)
 
@@ -45,9 +45,9 @@ Examples:
 
 
 
-\subsubsection{float32_unpack} \label{vorbis:spec:float32:unpack}
+\subsubsection{float32\_unpack} \label{vorbis:spec:float32:unpack}
 
-"float32_unpack(x)" is intended to translate the packed binary
+"float32\_unpack(x)" is intended to translate the packed binary
 representation of a Vorbis codebook float value into the
 representation used by the decoder for floating point numbers.  For
 purposes of this example, we will unpack a Vorbis float32 into a
@@ -63,40 +63,40 @@ host-native floating point number.
 
 
 
-\subsubsection{lookup1_values} \label{vorbis:spec:lookup1:values}
+\subsubsection{lookup1\_values} \label{vorbis:spec:lookup1:values}
 
-"lookup1_values(codebook_entries,codebook_dimensions)" is used to
+"lookup1\_values(codebook\_entries,codebook\_dimensions)" is used to
 compute the correct length of the value index for a codebook VQ lookup
 table of lookup type 1.  The values on this list are permuted to
 construct the VQ vector lookup table of size
-\varname{[codebook_entries]}.
+\varname{[codebook\_entries]}.
 
 The return value for this function is defined to be 'the greatest
-integer value for which \varname{[return_value]} to the power of
-\varname{[codebook_dimensions]} is less than or equal to
-\varname{[codebook_entries]}'.
+integer value for which \varname{[return\_value]} to the power of
+\varname{[codebook\_dimensions]} is less than or equal to
+\varname{[codebook\_entries]}'.
 
 
 
-\subsubsection{low_neighbor} \label{vorbis:spec:low:neighbor}
+\subsubsection{low\_neighbor} \label{vorbis:spec:low:neighbor}
 
-"low_neighbor(v,x)" finds the position \varname{n} in vector \varname{[v]} of
+"low\_neighbor(v,x)" finds the position \varname{n} in vector \varname{[v]} of
 the greatest value scalar element for which \varname{n} is less than
 \varname{[x]} and vector \varname{[v]} element \varname{n} is less
 than vector \varname{[v]} element \varname{[x]}.
 
-\subsubsection{high_neighbor} \label{vorbis:spec:high:neighbor}
+\subsubsection{high\_neighbor} \label{vorbis:spec:high:neighbor}
 
-"high_neighbor(v,x)" finds the position \varname{n} in vector [v] of
+"high\_neighbor(v,x)" finds the position \varname{n} in vector [v] of
 the lowest value scalar element for which \varname{n} is less than
 \varname{[x]} and vector \varname{[v]} element \varname{n} is greater
 than vector \varname{[v]} element \varname{[x]}.
 
 
 
-\subsubsection{render_point} \label{vorbis:spec:render:point}
+\subsubsection{render\_point} \label{vorbis:spec:render:point}
 
-"render_point(x0,y0,x1,y1,X)" is used to find the Y value at point X
+"render\_point(x0,y0,x1,y1,X)" is used to find the Y value at point X
 along the line specified by x0, x1, y0 and y1.  This function uses an
 integer algorithm to solve for the point directly without calculating
 intervening values along the line.
@@ -122,10 +122,10 @@ intervening values along the line.
 
 
 
-\subsubsection{render_line} \label{vorbis:spec:render:line}
+\subsubsection{render\_line} \label{vorbis:spec:render:line}
 
 Floor decode type one uses the integer line drawing algorithm of
-"render_line(x0, y0, x1, y1, v)" to construct an integer floor
+"render\_line(x0, y0, x1, y1, v)" to construct an integer floor
 curve for contiguous piecewise line segments. Note that it has not
 been relevant elsewhere, but here we must define integer division as
 rounding division of both positive and negative numbers toward zero.
index 2106a46..a65088b 100644 (file)
@@ -5,7 +5,7 @@
 
 \subsection{floor1\_inverse\_dB\_table} \label{vorbis:spec:floor1:inverse:dB:table}
 
-The vector \varname{[floor1_inverse_dB_table]} is a 256 element static
+The vector \varname{[floor1\_inverse\_dB\_table]} is a 256 element static
 lookup table consiting of the following values (read left to right
 then top to bottom):
 
index 6e7fa02..bb13ae7 100644 (file)
@@ -7,7 +7,7 @@
 <meta name="originator" content="TeX4ht (http://www.cse.ohio-state.edu/~gurari/TeX4ht/)"> 
 <!-- html --> 
 <meta name="src" content="Vorbis_I_spec.tex"> 
-<meta name="date" content="2011-08-11 03:03:00"> 
+<meta name="date" content="2011-08-11 03:29:00"> 
 <link rel="stylesheet" type="text/css" href="Vorbis_I_spec.css"> 
 </head><body 
 >
@@ -136,7 +136,7 @@ href="#x1-770004.3.6" id="QQ2-1-83">dot product</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >4.3.7 <a 
 href="#x1-780004.3.7" id="QQ2-1-84">inverse MDCT</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >4.3.8 <a 
-href="#x1-790004.3.8" id="QQ2-1-85">overlap&#x02D9;add</a></span>
+href="#x1-790004.3.8" id="QQ2-1-85">overlap_add</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >4.3.9 <a 
 href="#x1-800004.3.9" id="QQ2-1-86">output channel order</a></span>
 <br />&#x00A0;<span class="sectionToc" >5 <a 
@@ -209,17 +209,17 @@ href="#x1-1160009.2" id="QQ2-1-128">Functions</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.1 <a 
 href="#x1-1170009.2.1" id="QQ2-1-129">ilog</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.2 <a 
-href="#x1-1180009.2.2" id="QQ2-1-130">float32&#x02D9;unpack</a></span>
+href="#x1-1180009.2.2" id="QQ2-1-130">float32_unpack</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.3 <a 
-href="#x1-1190009.2.3" id="QQ2-1-131">lookup1&#x02D9;values</a></span>
+href="#x1-1190009.2.3" id="QQ2-1-131">lookup1_values</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.4 <a 
-href="#x1-1200009.2.4" id="QQ2-1-132">low&#x02D9;neighbor</a></span>
+href="#x1-1200009.2.4" id="QQ2-1-132">low_neighbor</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.5 <a 
-href="#x1-1210009.2.5" id="QQ2-1-133">high&#x02D9;neighbor</a></span>
+href="#x1-1210009.2.5" id="QQ2-1-133">high_neighbor</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.6 <a 
-href="#x1-1220009.2.6" id="QQ2-1-134">render&#x02D9;point</a></span>
+href="#x1-1220009.2.6" id="QQ2-1-134">render_point</a></span>
 <br />&#x00A0;&#x00A0;&#x00A0;<span class="subsubsectionToc" >9.2.7 <a 
-href="#x1-1230009.2.7" id="QQ2-1-135">render&#x02D9;line</a></span>
+href="#x1-1230009.2.7" id="QQ2-1-135">render_line</a></span>
 <br />&#x00A0;<span class="sectionToc" >10 <a 
 href="#x1-12400010" id="QQ2-1-136">Tables</a></span>
 <br />&#x00A0;&#x00A0;<span class="subsectionToc" >10.1 <a 
@@ -3060,43 +3060,43 @@ Unpacking the VQ lookup table vectors relies on the following values:
 class="cmr-6">1</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;the</span><span 
-class="cmtt-8">&#x00A0;[codebook_multiplicands]</span><span 
+class="cmtt-8">&#x00A0;[codebook\_multiplicands]</span><span 
 class="cmtt-8">&#x00A0;array</span>
 <br class="fancyvrb" /><a 
  id="x1-54004r2"></a><span 
 class="cmr-6">2</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_minimum_value]</span>
+class="cmtt-8">&#x00A0;[codebook\_minimum\_value]</span>
 <br class="fancyvrb" /><a 
  id="x1-54006r3"></a><span 
 class="cmr-6">3</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_delta_value]</span>
+class="cmtt-8">&#x00A0;[codebook\_delta\_value]</span>
 <br class="fancyvrb" /><a 
  id="x1-54008r4"></a><span 
 class="cmr-6">4</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_sequence_p]</span>
+class="cmtt-8">&#x00A0;[codebook\_sequence\_p]</span>
 <br class="fancyvrb" /><a 
  id="x1-54010r5"></a><span 
 class="cmr-6">5</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_lookup_type]</span>
+class="cmtt-8">&#x00A0;[codebook\_lookup\_type]</span>
 <br class="fancyvrb" /><a 
  id="x1-54012r6"></a><span 
 class="cmr-6">6</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_entries]</span>
+class="cmtt-8">&#x00A0;[codebook\_entries]</span>
 <br class="fancyvrb" /><a 
  id="x1-54014r7"></a><span 
 class="cmr-6">7</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_dimensions]</span>
+class="cmtt-8">&#x00A0;[codebook\_dimensions]</span>
 <br class="fancyvrb" /><a 
  id="x1-54016r8"></a><span 
 class="cmr-6">8</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;[codebook_lookup_values]</span>
+class="cmtt-8">&#x00A0;[codebook\_lookup\_values]</span>
 </div>
 <!--l. 297--><p class="noindent" >Decoding (unpacking) a specific vector in the vector lookup table proceeds according to
 <span 
@@ -4199,7 +4199,7 @@ class="cmtt-12">[packet_type]</span>; check that packet type is 0 (audio)
       </li>
       <li 
   class="enumerate" id="x1-72004x2">read <a 
-href="#x1-1170009.2.1">ilog</a>([vorbis&#x02D9;mode&#x02D9;count]-1) bits <span 
+href="#x1-1170009.2.1">ilog</a>([vorbis_mode_count]-1) bits <span 
 class="cmtt-12">[mode_number]</span>
       </li>
       <li 
@@ -4436,12 +4436,12 @@ class="cmtt-12">[audio_channels]</span>
       <li 
   class="enumerate" id="x1-73002x1"><span 
 class="cmtt-12">[submap_number] </span>= element <span 
-class="cmtt-12">[i] </span>of vector [vorbis&#x02D9;mapping&#x02D9;mux]
+class="cmtt-12">[i] </span>of vector [vorbis_mapping_mux]
       </li>
       <li 
   class="enumerate" id="x1-73004x2"><span 
 class="cmtt-12">[floor_number] </span>= element <span 
-class="cmtt-12">[submap_number] </span>of vector [vorbis&#x02D9;submap&#x02D9;floor]
+class="cmtt-12">[submap_number] </span>of vector [vorbis_submap_floor]
       </li>
       <li 
   class="enumerate" id="x1-73006x3">if          the          floor          type          of          this          floor          (vector
@@ -4755,7 +4755,7 @@ href="#XSporer/Brandenburg/Edler">1</a>]</span>. The window function used for th
 earlier.
 <!--l. 576--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">4.3.8  </span> <a 
- id="x1-790004.3.8"></a>overlap&#x02D9;add</h5>
+ id="x1-790004.3.8"></a>overlap_add</h5>
 <!--l. 578--><p class="noindent" >Windowed MDCT output is overlapped and added with the right hand data of the previous
 window such that the 3/4 point of the previous window is aligned with the 1/4 point of the
 current window (as illustrated in <a 
@@ -4775,7 +4775,7 @@ is:
  id="x1-79002r1"></a><span 
 class="cmr-6">1</span><span 
 class="cmtt-8">&#x00A0;</span><span 
-class="cmtt-8">&#x00A0;window_blocksize(previous_window)/4+window_blocksize(current_window)/4</span>
+class="cmtt-8">&#x00A0;window\_blocksize(previous\_window)/4+window\_blocksize(current\_window)/4</span>
 </div>
 <!--l. 596--><p class="noindent" >from the center (element windowsize/2) of the previous window to the center (element
 windowsize/2-1, inclusive) of the current window.
@@ -4900,7 +4900,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
-class="cmtt-8">&#x00A0;[vendor_length]</span><span 
+class="cmtt-8">&#x00A0;[vendor\_length]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;an</span><span 
@@ -4916,14 +4916,14 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
-class="cmtt-8">&#x00A0;[vendor_string]</span><span 
+class="cmtt-8">&#x00A0;[vendor\_string]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;a</span><span 
 class="cmtt-8">&#x00A0;UTF-8</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
 class="cmtt-8">&#x00A0;as</span><span 
-class="cmtt-8">&#x00A0;[vendor_length]</span><span 
+class="cmtt-8">&#x00A0;[vendor\_length]</span><span 
 class="cmtt-8">&#x00A0;octets</span>
 <br class="fancyvrb" /><a 
  id="x1-84006r3"></a><span 
@@ -4932,7 +4932,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
-class="cmtt-8">&#x00A0;[user_comment_list_length]</span><span 
+class="cmtt-8">&#x00A0;[user\_comment\_list\_length]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;an</span><span 
@@ -4949,7 +4949,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;4)</span><span 
 class="cmtt-8">&#x00A0;iterate</span><span 
-class="cmtt-8">&#x00A0;[user_comment_list_length]</span><span 
+class="cmtt-8">&#x00A0;[user\_comment\_list\_length]</span><span 
 class="cmtt-8">&#x00A0;times</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
@@ -5014,7 +5014,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;7)</span><span 
-class="cmtt-8">&#x00A0;[framing_bit]</span><span 
+class="cmtt-8">&#x00A0;[framing\_bit]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;a</span><span 
@@ -5031,7 +5031,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;8)</span><span 
 class="cmtt-8">&#x00A0;if</span><span 
 class="cmtt-8">&#x00A0;(</span><span 
-class="cmtt-8">&#x00A0;[framing_bit]</span><span 
+class="cmtt-8">&#x00A0;[framing\_bit]</span><span 
 class="cmtt-8">&#x00A0;unset</span><span 
 class="cmtt-8">&#x00A0;or</span><span 
 class="cmtt-8">&#x00A0;end-of-packet</span><span 
@@ -5132,7 +5132,7 @@ class="description">License information, eg, &#8217;All Rights Reserved&#8217;,
       a                license                such                as                a                Creative
       Commons license (&#8221;www.creativecommons.org/blahblah/license.html&#8221;) or the EFF
       Open Audio License (&#8217;distributed under the terms of the Open Audio License. see
-      http://www.eff.org/IP/Open&#x02D9;licenses/eff&#x02D9;oal.html for details&#8217;), etc.
+      http://www.eff.org/IP/Open_licenses/eff_oal.html for details&#8217;), etc.
       </dd><dt class="description">
 <span 
 class="cmssbx-10x-x-120">ORGANIZATION</span> </dt><dd 
@@ -6633,7 +6633,7 @@ class="cmtt-12">[floor1_class_masterbooks] </span>or
 <span 
 class="cmtt-12">[floor1_subclass_books] </span>scalar element greater than the highest numbered codebook
 configured in this stream is an error condition that renders the stream undecodable. All vector
-[floor1&#x02D9;x&#x02D9;list] element values must be unique within the vector; a non-unique value renders the
+[floor1_x_list] element values must be unique within the vector; a non-unique value renders the
 stream undecodable.
 <!--l. 167--><p class="noindent" ><span class="paragraphHead"><a 
  id="x1-1000007.2.2"></a><span 
@@ -8543,7 +8543,7 @@ class="cmtt-12">[n] </span>is provided by
 class="cmtt-12">[floor1_X_list]</span>, <span 
 class="cmtt-12">[floor1_final_Y] </span>and <span 
 class="cmtt-12">[floor1_step2_flag] </span>vectors, as well as
-      [floor1&#x02D9;multiplier] and [floor1&#x02D9;values] values.
+      [floor1_multiplier] and [floor1_values] values.
                                                                                         
 
                                                                                         
@@ -8559,8 +8559,8 @@ class="cmtt-12">[floor1_step2_flag]&#8217; </span>according to ascending sort or
       <span 
 class="cmtt-12">[floor1_X_list]</span>. That is, sort the values of <span 
 class="cmtt-12">[floor1_X_list] </span>and then apply the same
-      permutation to elements of the other two vectors so that the X, Y and step2&#x02D9;flag values still
-      match.
+      permutation to elements of the other two vectors so that the X, Y and step2_flag values
+      still match.
       <!--l. 355--><p class="noindent" >Then compute the final curve in one pass:
       <!--l. 357--><p class="noindent" >
       <div class="fancyvrb" id="fancyvrb32">
@@ -9002,20 +9002,26 @@ the moment exactly how a partition is encoded and simply trusting that it is, is
 follows:
       <ul class="itemize1">
       <li class="itemize">Each vector is partitioned into multiple equal sized chunks according to configuration
-      specified. If we have a vector size of <span 
-class="cmti-12">n</span>, a partition size <span 
-class="cmti-12">residue&#x02D9;partition&#x02D9;size</span>, and
-      a  total  of  <span 
-class="cmti-12">ch  </span>residue  vectors,  the  total  number  of  partitioned  chunks  coded  is
+      specified.  If  we  have  a  vector  size  of  <span 
+class="cmti-12">n</span>,  a  partition  size  <span 
+class="cmti-12">residue</span><span 
+class="cmti-12">_partition</span><span 
+class="cmti-12">_size</span>,
+      and a total of <span 
+class="cmti-12">ch  </span>residue vectors, the total number of partitioned chunks coded
                                                                                         
 
                                                                                         
-      <span 
+      is  <span 
 class="cmti-12">n</span>/<span 
-class="cmti-12">residue&#x02D9;partition&#x02D9;size</span>*<span 
-class="cmti-12">ch</span>. It is important to note that the integer division truncates.
-      In the below example, we assume an example <span 
-class="cmti-12">residue&#x02D9;partition&#x02D9;size </span>of 8.
+class="cmti-12">residue</span><span 
+class="cmti-12">_partition</span><span 
+class="cmti-12">_size</span>*<span 
+class="cmti-12">ch</span>.  It  is  important  to  note  that  the  integer  division
+      truncates. In the below example, we assume an example <span 
+class="cmti-12">residue</span><span 
+class="cmti-12">_partition</span><span 
+class="cmti-12">_size </span>of 8.
       </li>
       <li class="itemize">Each partition in each vector has a classification number that specifies which of
       multiple configured VQ codebook setups are used to decode that partition. The
@@ -9446,7 +9452,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
-class="cmtt-8">&#x00A0;[residue_begin]</span><span 
+class="cmtt-8">&#x00A0;[residue\_begin]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;24</span><span 
@@ -9461,7 +9467,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
-class="cmtt-8">&#x00A0;[residue_end]</span><span 
+class="cmtt-8">&#x00A0;[residue\_end]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;24</span><span 
@@ -9476,7 +9482,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
-class="cmtt-8">&#x00A0;[residue_partition_size]</span><span 
+class="cmtt-8">&#x00A0;[residue\_partition\_size]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;24</span><span 
@@ -9494,7 +9500,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;4)</span><span 
-class="cmtt-8">&#x00A0;[residue_classifications]</span><span 
+class="cmtt-8">&#x00A0;[residue\_classifications]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;6</span><span 
@@ -9515,7 +9521,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;5)</span><span 
-class="cmtt-8">&#x00A0;[residue_classbook]</span><span 
+class="cmtt-8">&#x00A0;[residue\_classbook]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;8</span><span 
@@ -9570,7 +9576,7 @@ class="cmtt-8">&#x00A0;the</span><span
 class="cmtt-8">&#x00A0;range</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;...</span><span 
-class="cmtt-8">&#x00A0;[residue_classifications]-1</span><span 
+class="cmtt-8">&#x00A0;[residue\_classifications]-1</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
  id="x1-109014r2"></a><span 
@@ -9589,7 +9595,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
-class="cmtt-8">&#x00A0;[high_bits]</span><span 
+class="cmtt-8">&#x00A0;[high\_bits]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;0</span>
 <br class="fancyvrb" /><a 
@@ -9604,7 +9610,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
-class="cmtt-8">&#x00A0;[low_bits]</span><span 
+class="cmtt-8">&#x00A0;[low\_bits]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;3</span><span 
@@ -9650,7 +9656,7 @@ class="cmtt-8">&#x00A0;is</span><span
 class="cmtt-8">&#x00A0;set</span><span 
 class="cmtt-8">&#x00A0;)</span><span 
 class="cmtt-8">&#x00A0;then</span><span 
-class="cmtt-8">&#x00A0;[high_bits]</span><span 
+class="cmtt-8">&#x00A0;[high\_bits]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;five</span><span 
@@ -9671,15 +9677,15 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;6)</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[residue_cascade]</span><span 
+class="cmtt-8">&#x00A0;[residue\_cascade]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[i]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
-class="cmtt-8">&#x00A0;[high_bits]</span><span 
+class="cmtt-8">&#x00A0;[high\_bits]</span><span 
 class="cmtt-8">&#x00A0;*</span><span 
 class="cmtt-8">&#x00A0;8</span><span 
 class="cmtt-8">&#x00A0;+</span><span 
-class="cmtt-8">&#x00A0;[low_bits]</span>
+class="cmtt-8">&#x00A0;[low\_bits]</span>
 <br class="fancyvrb" /><a 
  id="x1-109026r8"></a><span 
 class="cmr-6">8</span><span 
@@ -9719,7 +9725,7 @@ class="cmtt-8">&#x00A0;the</span><span
 class="cmtt-8">&#x00A0;range</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;...</span><span 
-class="cmtt-8">&#x00A0;[residue_classifications]-1</span><span 
+class="cmtt-8">&#x00A0;[residue\_classifications]-1</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
  id="x1-109032r2"></a><span 
@@ -9772,7 +9778,7 @@ class="cmtt-8">&#x00A0;3)</span><span
 class="cmtt-8">&#x00A0;if</span><span 
 class="cmtt-8">&#x00A0;(</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[residue_cascade]</span><span 
+class="cmtt-8">&#x00A0;[residue\_cascade]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[i]</span><span 
 class="cmtt-8">&#x00A0;bit</span><span 
@@ -9809,7 +9815,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;4)</span><span 
 class="cmtt-8">&#x00A0;array</span><span 
-class="cmtt-8">&#x00A0;[residue_books]</span><span 
+class="cmtt-8">&#x00A0;[residue\_books]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[i][j]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
@@ -9877,7 +9883,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;5)</span><span 
 class="cmtt-8">&#x00A0;array</span><span 
-class="cmtt-8">&#x00A0;[residue_books]</span><span 
+class="cmtt-8">&#x00A0;[residue\_books]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[i][j]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
@@ -9950,8 +9956,8 @@ class="cmtt-8">&#x00A0;done</span>
 <!--l. 231--><p class="noindent" >An end-of-packet condition at any point in header decode renders the stream undecodable.
 In addition, any codebook number greater than the maximum numbered codebook
 set up in this stream also renders the stream undecodable. All codebooks in array
-[residue&#x02D9;books] are required to have a value mapping. The presence of codebook in array
-[residue&#x02D9;books] without a value mapping (maptype equals zero) renders the stream
+[residue_books] are required to have a value mapping. The presence of codebook in array
+[residue_books] without a value mapping (maptype equals zero) renders the stream
 undecodable.
 <!--l. 241--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">8.6.2  </span> <a 
@@ -9988,7 +9994,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
-class="cmtt-8">&#x00A0;[actual_size]</span><span 
+class="cmtt-8">&#x00A0;[actual\_size]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;current</span><span 
 class="cmtt-8">&#x00A0;blocksize/2;</span>
@@ -10017,9 +10023,9 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
-class="cmtt-8">&#x00A0;[actual_size]</span><span 
+class="cmtt-8">&#x00A0;[actual\_size]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
-class="cmtt-8">&#x00A0;[actual_size]</span><span 
+class="cmtt-8">&#x00A0;[actual\_size]</span><span 
 class="cmtt-8">&#x00A0;*</span><span 
 class="cmtt-8">&#x00A0;[ch];</span>
                                                                                         
@@ -10032,11 +10038,11 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;4)</span><span 
-class="cmtt-8">&#x00A0;[limit_residue_begin]</span><span 
+class="cmtt-8">&#x00A0;[limit\_residue\_begin]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;maximum</span><span 
 class="cmtt-8">&#x00A0;of</span><span 
-class="cmtt-8">&#x00A0;([residue_begin],[actual_size]);</span>
+class="cmtt-8">&#x00A0;([residue\_begin],[actual\_size]);</span>
 <br class="fancyvrb" /><a 
  id="x1-110010r5"></a><span 
 class="cmr-6">5</span><span 
@@ -10044,11 +10050,11 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;5)</span><span 
-class="cmtt-8">&#x00A0;[limit_residue_end]</span><span 
+class="cmtt-8">&#x00A0;[limit\_residue\_end]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;maximum</span><span 
 class="cmtt-8">&#x00A0;of</span><span 
-class="cmtt-8">&#x00A0;([residue_end],[actual_size]);</span>
+class="cmtt-8">&#x00A0;([residue\_end],[actual\_size]);</span>
 </div>
 <!--l. 277--><p class="noindent" >The following convenience values are conceptually useful to clarifying the decode process:
 <!--l. 280--><p class="noindent" >
@@ -10060,13 +10066,13 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
-class="cmtt-8">&#x00A0;[classwords_per_codeword]</span><span 
+class="cmtt-8">&#x00A0;[classwords\_per\_codeword]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
-class="cmtt-8">&#x00A0;[codebook_dimensions]</span><span 
+class="cmtt-8">&#x00A0;[codebook\_dimensions]</span><span 
 class="cmtt-8">&#x00A0;value</span><span 
 class="cmtt-8">&#x00A0;of</span><span 
 class="cmtt-8">&#x00A0;codebook</span><span 
-class="cmtt-8">&#x00A0;[residue_classbook]</span>
+class="cmtt-8">&#x00A0;[residue\_classbook]</span>
 <br class="fancyvrb" /><a 
  id="x1-110014r2"></a><span 
 class="cmr-6">2</span><span 
@@ -10074,11 +10080,11 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
-class="cmtt-8">&#x00A0;[n_to_read]</span><span 
+class="cmtt-8">&#x00A0;[n\_to\_read]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
-class="cmtt-8">&#x00A0;[limit_residue_end]</span><span 
+class="cmtt-8">&#x00A0;[limit\_residue\_end]</span><span 
 class="cmtt-8">&#x00A0;-</span><span 
-class="cmtt-8">&#x00A0;[limit_residue_begin]</span>
+class="cmtt-8">&#x00A0;[limit\_residue\_begin]</span>
 <br class="fancyvrb" /><a 
  id="x1-110016r3"></a><span 
 class="cmr-6">3</span><span 
@@ -10086,11 +10092,11 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
-class="cmtt-8">&#x00A0;[partitions_to_read]</span><span 
+class="cmtt-8">&#x00A0;[partitions\_to\_read]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
-class="cmtt-8">&#x00A0;[n_to_read]</span><span 
+class="cmtt-8">&#x00A0;[n\_to\_read]</span><span 
 class="cmtt-8">&#x00A0;/</span><span 
-class="cmtt-8">&#x00A0;[residue_partition_size]</span>
+class="cmtt-8">&#x00A0;[residue\_partition\_size]</span>
 </div>
 <!--l. 286--><p class="noindent" >Packet decode proceeds as follows, matching the description offered earlier in the document.
 <div class="fancyvrb" id="fancyvrb40">
@@ -10118,7 +10124,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
 class="cmtt-8">&#x00A0;if</span><span 
-class="cmtt-8">&#x00A0;([n_to_read]</span><span 
+class="cmtt-8">&#x00A0;([n\_to\_read]</span><span 
 class="cmtt-8">&#x00A0;is</span><span 
 class="cmtt-8">&#x00A0;zero),</span><span 
 class="cmtt-8">&#x00A0;stop;</span><span 
@@ -10161,7 +10167,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;4)</span><span 
-class="cmtt-8">&#x00A0;[partition_count]</span><span 
+class="cmtt-8">&#x00A0;[partition\_count]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;0</span>
 <br class="fancyvrb" /><a 
@@ -10182,11 +10188,11 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;5)</span><span 
 class="cmtt-8">&#x00A0;while</span><span 
-class="cmtt-8">&#x00A0;[partition_count]</span><span 
+class="cmtt-8">&#x00A0;[partition\_count]</span><span 
 class="cmtt-8">&#x00A0;is</span><span 
 class="cmtt-8">&#x00A0;less</span><span 
 class="cmtt-8">&#x00A0;than</span><span 
-class="cmtt-8">&#x00A0;[partitions_to_read]</span>
+class="cmtt-8">&#x00A0;[partitions\_to\_read]</span>
 <br class="fancyvrb" /><a 
  id="x1-110032r8"></a><span 
 class="cmr-6">8</span><span 
@@ -10336,7 +10342,7 @@ class="cmtt-8">&#x00A0;from</span><span
 class="cmtt-8">&#x00A0;packet</span><span 
 class="cmtt-8">&#x00A0;using</span><span 
 class="cmtt-8">&#x00A0;codebook</span><span 
-class="cmtt-8">&#x00A0;[residue_classbook]</span><span 
+class="cmtt-8">&#x00A0;[residue\_classbook]</span><span 
 class="cmtt-8">&#x00A0;in</span><span 
 class="cmtt-8">&#x00A0;scalar</span><span 
 class="cmtt-8">&#x00A0;context</span>
@@ -10377,7 +10383,7 @@ class="cmtt-8">&#x00A0;descending</span><span
 class="cmtt-8">&#x00A0;over</span><span 
 class="cmtt-8">&#x00A0;the</span><span 
 class="cmtt-8">&#x00A0;range</span><span 
-class="cmtt-8">&#x00A0;[classwords_per_codeword]-1</span><span 
+class="cmtt-8">&#x00A0;[classwords\_per\_codeword]-1</span><span 
 class="cmtt-8">&#x00A0;...</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;{</span>
@@ -10425,7 +10431,7 @@ class="cmtt-8">&#x00A0;11)</span><span
 class="cmtt-8">&#x00A0;array</span><span 
 class="cmtt-8">&#x00A0;[classifications]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
-class="cmtt-8">&#x00A0;[j],([i]+[partition_count])</span><span 
+class="cmtt-8">&#x00A0;[j],([i]+[partition\_count])</span><span 
 class="cmtt-8">&#x00A0;=</span>
 <br class="fancyvrb" /><a 
  id="x1-110054r19"></a><span 
@@ -10469,7 +10475,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;[temp]</span><span 
 class="cmtt-8">&#x00A0;integer</span><span 
 class="cmtt-8">&#x00A0;modulo</span><span 
-class="cmtt-8">&#x00A0;[residue_classifications]</span>
+class="cmtt-8">&#x00A0;[residue\_classifications]</span>
 <br class="fancyvrb" /><a 
  id="x1-110056r20"></a><span 
 class="cmr-6">20</span><span 
@@ -10510,7 +10516,7 @@ class="cmtt-8">&#x00A0;[temp]</span><span
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;[temp]</span><span 
 class="cmtt-8">&#x00A0;/</span><span 
-class="cmtt-8">&#x00A0;[residue_classifications]</span><span 
+class="cmtt-8">&#x00A0;[residue\_classifications]</span><span 
 class="cmtt-8">&#x00A0;using</span><span 
 class="cmtt-8">&#x00A0;integer</span><span 
 class="cmtt-8">&#x00A0;division</span>
@@ -10672,11 +10678,11 @@ class="cmtt-8">&#x00A0;the</span><span
 class="cmtt-8">&#x00A0;range</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;..</span><span 
-class="cmtt-8">&#x00A0;([classwords_per_codeword]</span><span 
+class="cmtt-8">&#x00A0;([classwords\_per\_codeword]</span><span 
 class="cmtt-8">&#x00A0;-</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
 class="cmtt-8">&#x00A0;while</span><span 
-class="cmtt-8">&#x00A0;[partition_count]</span>
+class="cmtt-8">&#x00A0;[partition\_count]</span>
 <br class="fancyvrb" /><a 
  id="x1-110078r31"></a><span 
 class="cmr-6">31</span><span 
@@ -10700,7 +10706,7 @@ class="cmtt-8">&#x00A0;is</span><span
 class="cmtt-8">&#x00A0;also</span><span 
 class="cmtt-8">&#x00A0;less</span><span 
 class="cmtt-8">&#x00A0;than</span><span 
-class="cmtt-8">&#x00A0;[partitions_to_read]</span><span 
+class="cmtt-8">&#x00A0;[partitions\_to\_read]</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
  id="x1-110080r32"></a><span 
@@ -10822,7 +10828,7 @@ class="cmtt-8">&#x00A0;=</span><span
 class="cmtt-8">&#x00A0;array</span><span 
 class="cmtt-8">&#x00A0;[classifications]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
-class="cmtt-8">&#x00A0;[j],[partition_count]</span>
+class="cmtt-8">&#x00A0;[j],[partition\_count]</span>
 <br class="fancyvrb" /><a 
  id="x1-110092r38"></a><span 
 class="cmr-6">38</span><span 
@@ -10858,7 +10864,7 @@ class="cmtt-8">&#x00A0;17)</span><span
 class="cmtt-8">&#x00A0;[vqbook]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;array</span><span 
-class="cmtt-8">&#x00A0;[residue_books]</span><span 
+class="cmtt-8">&#x00A0;[residue\_books]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[vqclass],[pass]</span>
 <br class="fancyvrb" /><a 
@@ -10992,7 +10998,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;offset</span><span 
-class="cmtt-8">&#x00A0;[limit_residue_begin]+[partition_count]*[residue_partition_size]</span><span 
+class="cmtt-8">&#x00A0;[limit\_residue\_begin]+[partition\_count]*[residue\_partition\_size]</span><span 
 class="cmtt-8">&#x00A0;using</span>
 <br class="fancyvrb" /><a 
  id="x1-110102r43"></a><span 
@@ -11128,7 +11134,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;20)</span><span 
 class="cmtt-8">&#x00A0;increment</span><span 
-class="cmtt-8">&#x00A0;[partition_count]</span><span 
+class="cmtt-8">&#x00A0;[partition\_count]</span><span 
 class="cmtt-8">&#x00A0;by</span><span 
 class="cmtt-8">&#x00A0;one</span>
 <br class="fancyvrb" /><a 
@@ -11228,7 +11234,7 @@ class="cmtt-8">&#x00A0;[step]</span><span
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;[n]</span><span 
 class="cmtt-8">&#x00A0;/</span><span 
-class="cmtt-8">&#x00A0;[codebook_dimensions]</span>
+class="cmtt-8">&#x00A0;[codebook\_dimensions]</span>
 <br class="fancyvrb" /><a 
  id="x1-111004r2"></a><span 
 class="cmr-6">2</span><span 
@@ -11261,7 +11267,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[entry_temp]</span><span 
+class="cmtt-8">&#x00A0;[entry\_temp]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
@@ -11291,7 +11297,7 @@ class="cmtt-8">&#x00A0;the</span><span
 class="cmtt-8">&#x00A0;range</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;...</span><span 
-class="cmtt-8">&#x00A0;[codebook_dimensions]-1</span><span 
+class="cmtt-8">&#x00A0;[codebook\_dimensions]-1</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
  id="x1-111012r6"></a><span 
@@ -11357,7 +11363,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[entry_temp]</span><span 
+class="cmtt-8">&#x00A0;[entry\_temp]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[j]</span>
 <br class="fancyvrb" /><a 
@@ -11448,7 +11454,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;2)</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[entry_temp]</span><span 
+class="cmtt-8">&#x00A0;[entry\_temp]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;read</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
@@ -11473,7 +11479,7 @@ class="cmtt-8">&#x00A0;the</span><span
 class="cmtt-8">&#x00A0;range</span><span 
 class="cmtt-8">&#x00A0;0</span><span 
 class="cmtt-8">&#x00A0;...</span><span 
-class="cmtt-8">&#x00A0;[codebook_dimensions]-1</span><span 
+class="cmtt-8">&#x00A0;[codebook\_dimensions]-1</span><span 
 class="cmtt-8">&#x00A0;{</span>
 <br class="fancyvrb" /><a 
  id="x1-112008r4"></a><span 
@@ -11522,7 +11528,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;vector</span><span 
-class="cmtt-8">&#x00A0;[entry_temp]</span><span 
+class="cmtt-8">&#x00A0;[entry\_temp]</span><span 
 class="cmtt-8">&#x00A0;element</span><span 
 class="cmtt-8">&#x00A0;[j]</span>
 <br class="fancyvrb" /><a 
@@ -11782,7 +11788,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;1)</span><span 
-class="cmtt-8">&#x00A0;[return_value]</span><span 
+class="cmtt-8">&#x00A0;[return\_value]</span><span 
 class="cmtt-8">&#x00A0;=</span><span 
 class="cmtt-8">&#x00A0;0;</span>
 <br class="fancyvrb" /><a 
@@ -11819,7 +11825,7 @@ class="cmtt-8">&#x00A0;</span><span
 class="cmtt-8">&#x00A0;</span><span 
 class="cmtt-8">&#x00A0;3)</span><span 
 class="cmtt-8">&#x00A0;increment</span><span 
-class="cmtt-8">&#x00A0;[return_value];</span>
+class="cmtt-8">&#x00A0;[return\_value];</span>
 <br class="fancyvrb" /><a 
  id="x1-117010r5"></a><span 
 class="cmr-6">5</span><span 
@@ -11911,8 +11917,8 @@ class="cmtt-8">&#x00A0;done</span>
       <li class="itemize">ilog(negative number) = 0;</li></ul>
 <!--l. 48--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.2  </span> <a 
- id="x1-1180009.2.2"></a>float32&#x02D9;unpack</h5>
-<!--l. 50--><p class="noindent" >&#8221;float32&#x02D9;unpack(x)&#8221; is intended to translate the packed binary representation of a Vorbis
+ id="x1-1180009.2.2"></a>float32_unpack</h5>
+<!--l. 50--><p class="noindent" >&#8221;float32_unpack(x)&#8221; is intended to translate the packed binary representation of a Vorbis
 codebook float value into the representation used by the decoder for floating point numbers. For
 purposes of this example, we will unpack a Vorbis float32 into a host-native floating point
 number.
@@ -12009,10 +12015,11 @@ class="cmtt-8">&#x00A0;)</span>
                                                                                         
 <!--l. 66--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.3  </span> <a 
- id="x1-1190009.2.3"></a>lookup1&#x02D9;values</h5>
-<!--l. 68--><p class="noindent" >&#8221;lookup1&#x02D9;values(codebook&#x02D9;entries,codebook&#x02D9;dimensions)&#8221; is used to compute the correct length of
-the value index for a codebook VQ lookup table of lookup type 1. The values on this list are
-permuted to construct the VQ vector lookup table of size <span 
+ id="x1-1190009.2.3"></a>lookup1_values</h5>
+<!--l. 68--><p class="noindent" >&#8221;lookup1_values(codebook_entries,codebook_dimensions)&#8221; is used to compute the
+correct length of the value index for a codebook VQ lookup table of lookup type 1.
+The values on this list are permuted to construct the VQ vector lookup table of size
+<span 
 class="cmtt-12">[codebook_entries]</span>.
 <!--l. 74--><p class="noindent" >The return value for this function is defined to be &#8217;the greatest integer value for which
 <span 
@@ -12022,8 +12029,8 @@ class="cmtt-12">[codebook_dimensions] </span>is less than or equal to
 class="cmtt-12">[codebook_entries]</span>&#8217;.
 <!--l. 81--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.4  </span> <a 
- id="x1-1200009.2.4"></a>low&#x02D9;neighbor</h5>
-<!--l. 83--><p class="noindent" >&#8221;low&#x02D9;neighbor(v,x)&#8221; finds the position <span 
+ id="x1-1200009.2.4"></a>low_neighbor</h5>
+<!--l. 83--><p class="noindent" >&#8221;low_neighbor(v,x)&#8221; finds the position <span 
 class="cmtt-12">n </span>in vector <span 
 class="cmtt-12">[v] </span>of the greatest value scalar element for
 which <span 
@@ -12036,8 +12043,8 @@ class="cmtt-12">[v] </span>element
 class="cmtt-12">[x]</span>.
 <!--l. 88--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.5  </span> <a 
- id="x1-1210009.2.5"></a>high&#x02D9;neighbor</h5>
-<!--l. 90--><p class="noindent" >&#8221;high&#x02D9;neighbor(v,x)&#8221; finds the position <span 
+ id="x1-1210009.2.5"></a>high_neighbor</h5>
+<!--l. 90--><p class="noindent" >&#8221;high_neighbor(v,x)&#8221; finds the position <span 
 class="cmtt-12">n </span>in vector [v] of the lowest value scalar element for
 which <span 
 class="cmtt-12">n </span>is less than <span 
@@ -12049,14 +12056,14 @@ class="cmtt-12">[v] </span>element
 class="cmtt-12">[x]</span>.
 <!--l. 97--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.6  </span> <a 
- id="x1-1220009.2.6"></a>render&#x02D9;point</h5>
-<!--l. 99--><p class="noindent" >&#8221;render&#x02D9;point(x0,y0,x1,y1,X)&#8221; is used to find the Y value at point X along the line specified by
+ id="x1-1220009.2.6"></a>render_point</h5>
+<!--l. 99--><p class="noindent" >&#8221;render_point(x0,y0,x1,y1,X)&#8221; is used to find the Y value at point X along the line specified by
 x0, x1, y0 and y1. This function uses an integer algorithm to solve for the point directly without
 calculating intervening values along the line.
-<!--l. 104--><p class="noindent" >
                                                                                         
 
                                                                                         
+<!--l. 104--><p class="noindent" >
 <div class="fancyvrb" id="fancyvrb46">
 <a 
  id="x1-122002r1"></a><span 
@@ -12233,8 +12240,8 @@ class="cmtt-8">&#x00A0;done</span>
 </div>
 <!--l. 125--><p class="noindent" >
 <h5 class="subsubsectionHead"><span class="titlemark">9.2.7  </span> <a 
- id="x1-1230009.2.7"></a>render&#x02D9;line</h5>
-<!--l. 127--><p class="noindent" >Floor decode type one uses the integer line drawing algorithm of &#8221;render&#x02D9;line(x0, y0, x1, y1, v)&#8221;
+ id="x1-1230009.2.7"></a>render_line</h5>
+<!--l. 127--><p class="noindent" >Floor decode type one uses the integer line drawing algorithm of &#8221;render_line(x0, y0, x1, y1, v)&#8221;
 to construct an integer floor curve for contiguous piecewise line segments. Note that it has not
 been relevant elsewhere, but here we must define integer division as rounding division of both
 positive and negative numbers toward zero.
@@ -12484,6 +12491,9 @@ class="cmtt-8">&#x00A0;[x0]+1</span><span
 class="cmtt-8">&#x00A0;...</span><span 
 class="cmtt-8">&#x00A0;[x1]-1</span><span 
 class="cmtt-8">&#x00A0;{</span>
+                                                                                        
+
+                                                                                        
 <br class="fancyvrb" /><a 
  id="x1-123046r23"></a><span 
 class="cmr-6">23</span><span 
@@ -12506,9 +12516,6 @@ class="cmtt-8">&#x00A0;=</span><span
 class="cmtt-8">&#x00A0;[err]</span><span 
 class="cmtt-8">&#x00A0;+</span><span 
 class="cmtt-8">&#x00A0;[ady];</span>
-                                                                                        
-
-                                                                                        
 <br class="fancyvrb" /><a 
  id="x1-123050r25"></a><span 
 class="cmr-6">25</span><span 
index 0bf1294..256bfb8 100644 (file)
@@ -2409,18 +2409,14 @@ endobj
 /ProcSet [ /PDF /Text /ImageC /ImageI ]
 >> endobj
 669 0 obj <<
-/Length 1531      
+/Length 1539      
 /Filter /FlateDecode
 >>
 stream
-xÚ\9dWKoã6\10¾çWè\16\19¨µ\12õt{Ûn·Ý\1e
-\ 4u÷²\r\ 2F¢cÂ\12¥%¥dÝ_ß\19\ e\8eÓM\8a\0Ñ\90\1cr¾y\8fãà!\88\83_¯b÷}¿¾z÷1É\83$\89VyÎ\82õ&(YP&UÄâU°n\82\1fý(\16K¶JÂqËG¢äxm\88\1aàS\86½1ò¾µl,\1c\17\139©FhX\ 2³g\15µÜìén¯Ýw\ 1û\8f\vV\85B\eäª\90\v®\11#\v9ñý6ý\1d'iÇ\95\83£\85\ 3ö(¹GèvZ¡\1eÆ­£¥\19£Å2ciøI-n׿\83æË$\8b²¬ \réV\99\85ü\9e´qx\0\8bo\0\86wC+~@ty(7tP÷öB#\9e\90»×\rm\eAÚ(ZÚC¡ýc­ì¤â£hìc\997&>×
\89t¶¶\94»èô\ 5J:þI\ 1.°I¦¤Ù\8aæGTîàZÿýe}\95\0\11\aI\90䫨,ª \8f³\88±,¨»«¯Wq´Ê²UeYæ´=Lc»\1d\85Íw\9fº<øÐ_ÝÀß¹,ÿõ\ 2\97^âr&òBÌ%e\1eUY\12då*ª\12ç\96\8fòaB£¥¬\bóSÝ\82/°[¾\10^h\10Ñн-\9aþ\186¸EfDJ¶ídFÍGÙ«\8b¦\ 3üqj\81-Y\12\15\85Ë\88\81-×í~Q±\10\9c\98\16«PâëELÞB¢×ò\ 1ÜÜÒê\10(>Âìÿ\9d½\¹\b°|\14\ 1ô\12FÀÉ\9b\ e:PÒño¦\16`X\92\12§\1f&0H\8báEÛ\y\82>
-\90\82lH\8e\v\99p!\9eÓ\98\91´8\rew\92î6©Êð}\8f\99\86\1fæ¹#à*Á\0\9eËÉ~deVKC$·þ·×iCh\8dU\ 3ɺW\8dô®;WD\v\84\ 3*ͼ\ 5Y\bî\16¼#\1aÑz\85\93gi¸^T\90ì;\8b\10\19Óð¨\11¹\13d\130û2y\89\91}Ó°vÕ¯zælb{\92ÖZÇ\v\ 6P¶îµÉ\80\11.¨#ÈgzïÊ\8f¡ï\16¬Ú¢ÙXU\84\83î\1dN\88Ì\9f°ôAT\8eÄ\b¶2P\ 5\rqöXZ\89ätî1àÖ<\ 6 \9eôÎ]Ú\10ë?B÷DÝKÿ u.n]\83u\e\9a\96\9c\8e\1f\179Ðí$NTËIµ~\1a)\eQ\0\99j\14¼¥\15§Ã\vùS\91\90·6\9^Û\eº§Å8ie\Êo]Æ\1fl\8dUÁø"\ 1ø2ÂGÏ©æÀ½sÏ\91Ö¸\89ZG^\91yUøùr\8a£#ª\83\ 3¥°}³\f;\ e\86Eg5´¾\9e,\a\82º¦+6ÄðÈ@Úµ{Ú4;98/»\8b\89k}`\ 6\aeC\1f÷\aMHja\8cMØ<\o\85{nË\8fÙx)î\14Þ\85êv©ÏAÝ"¿ÃyãøT?\12Á=JÛÏ\}Ä/Á,0;ji0{i\erÞ¶C¬vd\bw\8f\9a#RÝù¬\ 1\9b\9bÞ½\ f\ 5\ 2½O\8b{é`\f|\1c\85~¡Bpçæ\8dî;òò1N|\99Ààéé\10\0ÏR{~Vø*\80
-[\1c6SqiWS\87\1aÝ»ä\8cNZ\rtÂjÞ  \ 1eZEéª$\94\9f\17i\12Þ\80Ûâ<lQ\18 ØM\ 3mà Å­)põ(j\80\93Æ¡Æu\ 6
-\ ev%\8cPãó\1e\82\19K#(«pf\ 5ÿ¥\ 6^#ì\9d+¢³6ô\19÷o\88n}\9c#¨´\80\11\f\10\ 1.A+\9a¢j;\12jC{\1a& H\ 3ôÉÒK=qM¯NÒ¶\ 4/· \a,ùD`l̺\9abìdðî#+\82<Z\95e\81ÊÀÜ\11\151\8c\1dI\11\15UEÏ&Ä\98¦A \8cqb\a\ fâ\8bg\83`\ e6þR÷\90Ç}¿»ë¦v\94\ 3¶TYC¸\9b[bàZóý\7f  ^EY\91Ñ«ì»rgâpìU²\9bº»GÔîö{2\\15Mß \ 3\82\17Ô\19ù+%8-²7H0(áë$T-î\86ת\90¿A@\8b-\fcînÜ\ f¯V¡x\83\ 4\81£µ­×¯Å_¾Å\ 5èæN(,\80æµð«ÿe ëd/ã4å±Ö¤QÁÜû\1f\ eÓ\10
-\7f[äñ4¯\ 4°\91Ð\116føiv:íÕtæ³Þ\8ejøsQ\113%ô\ 5\86Ó*\82\9cT×ðìØÀDcè\94׶\14k\ f\94a!&ãdg
-ÎëÊÜ<çÁsö{$Í£4K½]±o&\19öMl+i\88&\ 1\0d\95C\17\87\ 3÷£\11\8eFjLéq¸°mÌ\8d´xðD¿ð\80âtR¿46Zn;\8c\13\rÕP\ föD×frÓ/\ e4S#]\13;Çíf¯ã ì*®t%\98Óò3J¿!\1afIÛâÄ·1ºü«        \8bz\91\95\10¼q\94W\89«\82ì¥_§ÿ\ 2¾3HV
+xÚ¥WKsÛ6\10¾ûWðfj¦¢I\80/µ·4M\9b\1e:ã©\9aKâÉÀ$daD\82
+@ÚQ\7f}w±\80^\91\e»\1dÏ\98\v`\81ýö½J£\87(\8d~½Jý÷Íòêæ]VDY\96,\8a\82EËUT±¨Êê\84¥\8bhÙF\1fã?\86QÎæl\91ÅãZ\8cD©ñÚ\12µ\85O\15\ fÖªûα±x\9ceñ@ä¤[i`       Ì\81U6jµ£»\83ñß\19ì?ÎX\1dKc\91«F.¸F\8c,\16Ä÷Ûô)Íx/´\87\aö¨D@èw:©\1fƵ§\95\1d\93Ù<g<~¯gwËßAóy\96'y^\92\86t«ÊcqOÚx<\0\96öåW\0#úm'\7f@tE¬VtÐ\fîB+\9f\90{0-m[IÚhZºCiÂc\9dê\95\16£lÝcy0&>×Ia\88ô¶v\94¿èõ\ 5JyþI\ 3.°I®\95]ËöGTnïÚðýey\95\ 1\91FY\94\15\8b¤*ë¨Hó\84±<jú«/Wi²ÈóEíX\8eiwÈS·\1d1ÿ\85Í\9b÷}\11½\1d®náï\Vø\ 6\81ó q~$òBÌeU\91Ôy\16åÕ"©3ï\96wêaB£qVÆÅ©nÑGØ­\9e    /4\88léÞ\1aM\7f\b\eÜ"3"¥ºn²£\11£\1aôEÓ\ 1þ\94;`s\96%eé3âOp`'L·\9bÕ,\ 6'òr\11+|½LÉ[H\fF=\80\9b;Zí\ 3%D\98û¿q\97k\1f\ 1\8e\8f"\80\b8yÓC\aJyþÕÔ\ 1\fGRâ\fÛ  \fÒaxѶÐ\81 \8f\ 6¤ \e\92ãB&\\88g\9e2\92\96òXõ'éî\92ª\8aß\f\98iÈçüa¿u\ 4\%\18Às9Ù\ f¬Ìii\89\14Îÿî:mHc°j Ù\fºUÁuç\8a\18\89P\94~@¥Y° \8bÁÝRôD#Ú ° u\8a\9cÇËY\rɾq\b\91\91Ç\a\8dÈ\9d \9b\80¹\97ÉK\8cìËãÆW¿ú\eg\13Û\93rÖ:\°\80²ó¯M\16\8cpA\1dI>3;_~,}×`Õ\ eÍÆê2Þ\9aÁã\84Èü  K\1fDåH\8c`+\v\12ç\80¥\95HAç\ 1\ 3n\1dÇ\0Ä\93ÙøK+bý[\9a\81¨{\15\1etÎÅ­k°n\vo]ÓRÐñã¬\0º\9bä\89j\ 5©6L#e#
+À¤¶S\83\82×´\12tx!\7fj2)\1c\8aÎ\85«Àk;K÷\8c\1c'£­OùµÏø½­±*ØP$\0_Nøè9Ýî¹7þ9Ò\1a7Që$(r\\15\9câè\88zï@%]߬â^\80aÑY-­¯'Ç\81 ®é\8a\v1<²\90\8e6íFm½\97ýE¥éÄ·>0\ 3\83\8fû[CH\1ai­KØ"^®¥\7fn-\ eÙx)î4Þ\85êv©ÏAÝ"¿Ãyëùô0\12!\ 2J×Ï|}Ä/Á,1;\1ae1{i\erÞµC¬vd\b\7f\8f\9a#Rýù¬\ 1\9b«Á¿\ f\ 5\ 2½O\8b{åalÅ8JóL\85\10ÞÍ+3ôäåC\9c\842\81Á3Ð!\0>Jíã³2T\ 1TØáp\99\8a\9azÔèÞ'grÒj \13ÖÇ\9d\10Pò:á\8b\8aP~\98ñ,¾\ 5·¥EÜ¡0@°\99¶´\81\83\96p¦ÀÕ£l\0\ eOc\83ë\1c\14ܺ\95´R\8fßö¸ó\16Ì\18O ¬Â\99\13ü\97Þ\8a\ 6ao|\11=jC\1fpÿ\96è.Ä9\82â%\8c`\80\bpIZÑ\14Õ¸\91ÐXÚ30\ 1A\1a OæAê\89k\ 6}\92\15\ 39`É'\ 2ãbÖ×\14ë&\83\9b\8c\8adQU%*\ 3sGR¦0vdeRÖ5=\9b\11#çQ\ 5\8c\ 6\ fâK\8f\ 6Á\ 2lü±\19 \8f\87aó)ãùç~êF\1c\9dj äí\1d1      cÄîß\84/\92¼Ìéeö]Ùg"A\9cÒª\9fz·|DMï¾'ËWTþJY-º«\eÅ+$y­òWJ²(éË$u#ÝzûR\95\8aW
\b\1c0&ÝjÜm_¬RùJI\12$iW×_ªKõ\1fÜ£z©±XÚ\97ªQÿ/\83¹ \b²NË\ 4Ö'\9e\94ÌËy»\9f (3\17ø{¤H§ãê\ 1\e\19\1da3\87\9f\13bCg¡R¸ñ\ e\7fbjb¦"p\81á´ò 'ÕB<;4=ÙZ:\15\8d+ß&\0eX¼ÉHù\99\82ǵho¦Ï\9d³Ïq0\9dý\86áEÂs\1eì\8b½6˱×b+â1\9a\ 4\0\90\9d\1f\ eü\ fM8\1a©\99ñÃ@âZ\9f\1f\83ñà\89~\15\ 2%è¤ynÔtÜn\80\9b:/\88F"ª»\ 1ì\89®íä'f\1c\82¦VùÆw\8eÛÏk\87áÙWiå˶ å\a\94~K4Ì\9f®-ʯcrù\97\166\822¯ \88Ó¤¨3_5Ùs¿hÿ\ 1³°Tº
 endstream
 endobj
 668 0 obj <<
@@ -3439,17 +3435,19 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 885 0 obj <<
-/Length 2599      
+/Length 2605      
 /Filter /FlateDecode
 >>
 stream
-xÚ\95Y[\8fܶ\15~ß_1è\8bµHV+R÷ú)±ã´\ 5\8c¦í\ 2)`\e\ 1WÒì\10ÖH\13]v³ùõ=7j¨±6u\9eD\9esxH\1e~çB*Ú=ì¢Ý\8fW\91|¿¿»º}§Ò\9dRa\99¦zw·ßåz\97«"ÔQ¹»«w\1f\82¡\19m=7×7:O\ 3ÓÕܨíÐT\13¶³àx­\8b`n'{jme&Ûw,Óï\99?\1ddôãµÎ\ 3\18Ö\ f#\13¬|Çùc¤²Ê6\1dJLLÜ÷\ 3\8f7×*¨ªæ4\99û¶aÒxÂ/ê\1aL++\ 2\81\83¨í®?Ýý\ 36x£\920I2Þ\88iA2ÖYP\99±\19±\99\a÷¢ÆÌcÃL;1ç\80³\9ep\9a"hº\91\99SÏßc?Ní3\v>áîûá³ô,.\82d\ f¢±\9a\87\18\12þkO\87ð\9fÃ\ 3\8f\18\9a}\83|ØcÃ\94¦«zZWÝ\f¡Û\89Va\96É\91ü­¿æ\89\11§o\86oa@\9a\ 4\94Ç\92ñâ,`>ÚÜõS8ÆvF\v`¿2xZ1\9cÁÉ\90ÙnßéØÇ\83*Ê°\8c\81æþ\18Å\11\8b­aS\86º,\9d\90J¢ú{Vû1J£-µq\19æªü\1a­\85\13Ò /ù\1ele'YÿÜ\8dö¡kj\98G\89\11\18¤07\ 3/f\ 4͵í¹ç\81g>\92}ot\ 2\88\1a0g¸Â¹Dq0\1eú¹­¹=4'p\8có±\ 2Éà'     \8e¶³G$\83n¢£\eàWi2
-ʼd\14\1dça\14\97\7fÊÖZ±ú{2      j\17\fâ\8aÁ4b\988*\b,\b/f>\1d\9f§Ó<ñ`;2\r .\96ÉÂ8¾°\fnU\97\81Êø{ÏNS\ 4?½yÏ\94ºy´U\13^ß$I\1c¼».4á\11\16å9®àÀ\95©QªwBÎÌ\ 5{O\19ìgöã2\18\8a2»_i/\16G(dâ\827\ 6"\9d±mS/Ól\9c\82\8b\e©;\85èÿc\93\10\8ffV9\87\10ør\\1c¥'¡\86;\1cÉ°E;\85\1fµ"\9f\91\ 5ß\90ê\90\89`JÅ;R.¨Ü3%tV¦ôô\f\8d©\90u`²\98\11g\163âÊ÷|è¼µÕ\91³/\95_\84\98\92!\83_gY]\823LLc«\90\94PØ7Æ\89åî9ÀÊ \8eï \84\8bÆïÚͶ<&Ï \9d\9f=&úúèäÍó\r\ 4\b¶2öî\ e¼Fr\9b\bÓ       \91û\ 1\ 2ò2\8e½£ÈB\9dfkS\1d \0\91\9dÄÌÐ\1a\fÆø\a¡×Ï\9d\8a§(9vÄÞA\82È:ü\80á\fâé\99;/Ek]Da\94«¯±Gqa\ fTK`\81/\82\ eVëÈr\0\90óÛçs\8c\914\vF(Ã\18rÓÊ\bK\90\ 5\9b¦0à;\18\97\94\ 1¬\8f\94B\13\f\80&ùf\1a\ 5æt\1azÜåoöh&\9e\fØIÁl    q@\91\10\a-\fq¯¡\99)\80(;\1c\v³w$~ \81ÎʨÐ?£\11{ÎG·ª\aÆfÁ\ e¥\8bâ26!É°\ 4®\17¿\14\17I\94·\8a4NN¨\86\1c
-\98u?1\ 5÷Ni\7f®\84âùJ\91{¾Rä\eë!ØÁ¡\89ZÊëÀnÀacرå­/+ÜØ#ÇñDÃI\1f©B\82à\8dI\17I\v\8f×äW{\18æ\8b\18¼\86\8e\11D\96\93Õ\ 4Ú\9c@\8b\ 6°#ÑÈJ\ 5Sótóh»\a\16hÍà´`¾Ì\12\96X\16ÂG(r\ 3¦¹Õ\9e$z[\86n\ 3"älP\7fqF\80Rïxj\9b£Ã6M«3Îm`zÂ!TK\89\vÖÀ»·\9d\19¤îc|÷ö\9c\9bò\8b\ 21\ f,k©¸Á\13\8b\8bd\13\17a\fÞHËMÂ8ÌÁcR\f;\8f°f\9c\83÷oßÜ]êI/ôhpC©\10ßô´\ 6)\ eau\89\16ÄaÃp-\94èËZ\88¸¾\8b \bÖ/H§üQ`þÀ\1e\9f\9e麦e±{>ÐÏÌ\16³ô23à\89¥êþh0\9e"\95ª\ 5$òz6\0ùhá4\924#0'i.§É+\1cÀÀ\08\ 2<ʼ\17ï±\0ø\ 4ñ\84\ 3ÞÚ±\1a\9aIDÞô\0¯\869wX\95\0RG¸g\1c\99\8d0CC#\96B\96ú\8e9u3IrCbÝ\80R{Â\13¦Ë\ eÒúý\16ú8\b\15r~Ô"'¡X±à˶\ 2±\82vHß\ f\18Ê\a<rlüûÇ+\8c×+ \0á\13,6S\ 5x (y²]-w\ 4êïç®â{\19öà®S\v\9d\ 5#\7f\9dR/ù¬EÉÆA±E$|Öì,\8d\19Z+7\98?\ 3ÿ\82áß\ 3ú[s¢Ñ?Ü]ýz\85\ 6@3¨$\rÓt\97D:ÌÓbW\1d¯>|\8av5ð`Y¤ê\89$\8f»8,á ¢]»ûÏÕ¿ä®»\9a]%e\98\94¬+MÅwL]ÿ¡§Ýä9\ròýíç³Á%\98éT¡1\ 1"wØ\89\96"\eÛT1!ÍC3ìõ´Ø\ f\99\9c)°Q×\8eÆyO»ô\86\8dÁ>\1cÜ­\19º\87eXm&#Óì/Æ@\94z´=dÊ\8d£\a\87îæKÙHwy¬ì\90θ\0R|\9b0\85/Ë^DÌ9xÄî\r\80\84ÜÔD\96É
-\9e,cÐá\95¿¥K\1d\ f\91dïkQ<gæGáÜ\9bó%WÔ¥ZßÇ\91àï\18û\18\ 6\fÕ´:°m\vùw0èë\Ûjy^\10<\82or\83|\93Æ+\0±¾ôQª\82á^¢âäÅÑ>\8cHÓx0'wmÀ\99ëfy\198/µí1u­722¡ïÚg\97\18ýÅü\85#ÜÆéK\bÑ\81¤¿/¡\89L±úàb\8aök\17'´Ç\0Ý\1f\17u+¤sº-\94\v\a\ 6ô\bÅÈ_¿\9e\90Zsl\98G\bßØ\ 4¢(Q\11^U\92Î\8e\a\8aÛJä\89C\89  ¾Ë¥\fÙ\90'æ¡cadqáBâ\949¡!\aPðÓÌM\ 6a\91Ë\1eb.ê±:\1fYé~@\13¬\94\1f¼L`\9f\12¬bSlìÆ3L|á1±<IÅÎ5ðAÇÓ\8e}ò@÷\18B\ 2+\8b\9eU\ 2l0éeqð÷îR§\19\e_\eÔ\rp\b7£ý\9d\ e;N}è}»µ    Þ|\ 4\9e}ìg79öióð\15ãE¼#üòqp\9bL\8cÒ]ss0­\8c¹o\19tKá\ 1´ªïF;r9çë'@%\11 \16PÙáÍ\82:Â]\96×{e\93\ fû­sñ\9c`DË©4ø\99ÞTt\96m\ 3\1e\19\86?ã¡ÇºLgîJ\04ñäÌ?\12\8c\ey!U·\8bÄ4Á\9e¿\1cײ\9cì\ 5{c\ 4\13An\1d\19\96\91\91»]?m\85HSM³iéÖ\95\7fa
-¼Ç\15\89«òó\95Nì¢N¦\9b£y\908=\9d\v,R9L\87þ¡ï ¼Oì^àТø'$,W\Ì\ 1Óäjs\8a2@:x9Ö\15\81[`\93gZF\90TöXÉðí\bÛU?ð\ 36Ê1öh\ 4\9aìµ\13\97ªß\87l,\ 5±?,_&<¿ñÐe\0\93\86D\14$Øñ¯reÏviXæyFå\84JÃ,Â×\96
\83\14\vÆñ.\aÁHQ±Âr\91\97¦\9f~\ 1\17¨>c!\f®\88ÉÀ\ 5\8b_\98\8fqþ6Á×\r_Þ    s$ÀU®Ä·\1e\fÜ\v´¬O¢\1aÆ\b\18MÎs\11z\12yûmÎW,\16\82\99ðeA\82\ 5¬äVS\8a"&ù£\vVH8\a¿d\15edòþB¼\92ë8¯ ûb\ 5\7fXïðbn\94\\13mWAî\97k3/Ñ?}\81G¾ÄÓå\16x\ eÑ\9b¯÷o\196Kµ\93\9f\9c\81°ÇFöê\9e\8c2Ú@¯\150\8c2ák\8c[\8aß\1cù_\8c{ÏÈ}<æKÙ\9f\80ï«Ó\0\17³W«9òu\91\81\9c¦{\80[ÓËå\82.ËÕ?\v®tLU9·\19Y\86\7fè\0k:X!á\ 282B\87\1f¤Q 2m5·fZXtUDN\8f¯\19c3\8d¯ùIÛì'\9e°t\ 5^q6\12M\8aFz9%áIBí"q~à\ 3\94gììü0\8em\99Ùù2S_E¯¸á\8aFdvýe\9\98õ\ f'zy׫\ 3\87Þ3AmZ\8a³¥d[J7­ã0Kr¸\83\14a\91+ÞH\9cn
-Ã¥é\7fÄv<\8e
+xÚ\95YY\8fܸ\11~\9f_ÑÈ\8b\8eF¤îøi×\8e7\eÀÈn2À\ 6°\8d\80#©§        «¥\8e\8e\99L~ýÖE5ÕÖl¼O"«\8aE²øÕA*Ú=ì¢Ý\8fW\91|\7f¸»º}¯Ò\9dRa\99¦zw·ßåz\97«"ÔQ¹»«w\1f\83¡\19m=7×7:O\ 3ÓÕܨíÐT\13¶³àx­\8b`n'{jme&Ûw,Óï\99?\1ddôãµÎ\ 3\18Ö\ f#\13¬|ÇùS¤²Ê6\1dJLLÜ÷\ 3\8f7×*¨ªæ4\99û¶aÒxÂ/ê\1aL++\ 2\81\83¨í®?ßý\r6x£\920I2Þ\88iA2ÖYP\99±\19±\99\a÷¢ÆÌcÃL;1ç\80³\9ep\9a"hº\91\99SÏßc?Ní3\v>áîûá\8bô,.\82d\ f¢±\9a\87\18\12þeO\87ðïÃ\ 3\8f\18\9a}\83|ØcÃ\94¦«zZWÝ\f¡Û\89Va\96É\91üµ¿æ\89\11§o\86ï`@\9a\ 4\94Ç\92ñâ,`>ÚÜõS8ÆvF\v`¿2xZ1\9cÁÉ\90ÙnßëØÇ\83*Ê°\8c\81æþ\14Å\11\8b­aS\86º,\9d\90J¢ú\aVû)J£-µq\19æªü\16­\85\13Ò  /ù\1ele'YÿÜ\8dö¡kj\98G\89\11\18¤07\ 3/f\ 4͵í¹ç\81g>\92}ot\ 2\88\1a0g¸Â¹Dq0\1eú¹­¹=4'p\8có±\ 2Éà'     \8e¶³G$\83n¢£\eàWi2
+ʼd\14\1dça\14\97\7fÈÖZ±ú{2      j\17\fâ\8aÁ4b\988*\b,\b/f>\1d\9f§Ó<ñ`;2\r .\96ÉÂ8¾°\fnU\97\81Êø{ÏNS\ 4?¿ýÀ\94ºy´U\13^ß$I\1c¼¿.4á\11\16å9®àÀ\95©QªwBÎÌ\ 5{O\19ìgöã2\18\8a2»_i/\16G(dâ\827\ 6"\9d±mS/Ól\9c\82\8b\e©;\85èÿc\93\10\8ffV9\87\10ør\\1c¥'¡\86;\1cÉ°E;\85\1fµ"\9f\91\ 5¯IuÈD0¥â\1d)\17aTî\99\12:+Szz\86ÆTÈ:0YÌ\883\8b\19qå{>tÞÚêÈÙ\97ʯBLÉ\90Á¯³¬.Á\19&¦±UHJ(ì\eãÄr÷\1c`e\10Çw\10ÂEãwíf[\1e\93gÐÎÏ\1e\13}{tòæy\r\ 1\82­\8c½»\ 3¯\91Ü&ÂtBä~\80\80¼\8ccï(²P§ÙÚT\a\b@dQp'13´\ 6\831þAèõsg\8e¶â)J\8e\1d±w\90 ²\ e?`8\83xzæÎKÑZ\17Q\18åê[ìQ\Ø\ 3Õ\12\8b \83Õ:²\1c\0äüöù\1cc$Í\82\11Ê0\86Ü´2Â\12dÁ¦)\fø\1eÆ%e\0ë#¥Ð\ 4\83\905 I¾\99F\819\9d\86\1ewù_{4\13O\ 6ì¤`¶\848 H\88\83\16\86¸7ÐÌ\14@\94\1d\8e\85Ù;\12?Ð@geTè\9fÑ\88=ç£[Õ\ 3c³`\87ÒEq\19\9b\90dX\ 2×\8b_\8a\8b$Ê[E\1a''TC\ e\ 5̺\9f\98\82{§´?WBñ|¥È=_)ò\8dõ\10ìàÐD-åu`7à°1ìØòÖ\97\15\91ãx¢á¤\8fT!AðƤ\8b¤\85Çkò«=\fóE\f^CÇ\b"ËÉj\ 2mN E\1dn\ 3Ø\91hd¥\82©yºy´Ý\ 3\v´fpZ0_f        K,\vá#\14¹\ 1ÓÜjO\12½-C·\ 1\11r6¨¿8#@©w<µÍÑa\9b¦Õ\19ç60=á\10ª¥Ä\ 5kàÝÛÎ\fR÷1¾{{ÎMùE¸R\81\98\a\96µTÜà\89ÅE²\89\8b0\ 6o¤å&a\1cæà1)\86\9dGX3Î\9cåÁ\87woï.õ¤\17z4¸¡T\88o{Z\83\14\87°ºD\vâ°a¸\16Jôe-D\ßEP\ 4ë\17¤Sþ(0\7f`\8fOÏt]Ó²Ø=\1fè\17f\8bYz\99\19ðÄRu\7f4\18O\91\ 2\12y=\e\80|´p\1aI\9a\11\98\934\97Óä\15\ e``\0\1c\ 1\1ee>\88÷X\0|\82\ 1ïìX\rÍ$"o{\80\9c;¬J\0©#Ü3\8eÌF\98¡¡\11K!K}Ï\9cº\99$¹!±n@©=á    Óe\aiý~\v}\1c\84
+9?j\91\93P¬Xðe[\81XA;¤ïG9m\få\ 3\1e96þñã\15Æë\15\10\80ð\19\16\9b©\ 2<P\94<Ù®\96;\ 2õ÷sWñ½\f{pש\85N®à\82\91¿N©\97|Ö¢dã Ø"\12>kv\96Æ\f­\95\eÌ\1f\81\7fÁðï\ 1ý­9Ñè¿Ü]ýç
+\r\80fPI\1a¦é.\89t\98§Å®:^}ü\1cíjàÁ²HÕ\13I\1ewqXÂAD»v÷Ï«_ä®»\9a]%e\98\94¬+MÅwL]ÿ®§Ýä9\ròýí׳Á%\98éT¡1\ 1"wØ\89\96"\eÛT1!ÍC3ìõ´Ø\ f\99\9c)°Q×\8eÆyO»ô\86\8dÁ>\1cÜ­\19º\87eXm&#Óì/Æ@\94z´=dÊ\8d£\a\87îæKÙHwy¬ì\90θ\0R|\9b0\85/Ë^DÌ9xÄî\r\80\84ÜÔD\96É
+\9e,cÐá\95¿¥K\1d\ f\91dïkQ<gæGáÜ\9bó%WÔ¥ZßÇ\91àï\18û\18\ 6\fÕ´:°m\vùw0èë\Ûjy^\10<\82or\83|\93Æ+\0±¾ôQª\82á^¢âäÅÑ>\8cHÓx0'wmÀ\99ëfy\198/µí1u­722¡ïÚg\97\18ýÅü\89#ÜÆéK\bÑ\81¤¿¯¡\89L±úàb\8aök\17'´Ç\0Ý\1f\17u+¤sº-\94\v\a\ 6ô\bÅÈ_¿\9e\90Zsl\98G\bßØ\ 4¢(Q\11^U\92Î\8e\a\8aÛJä\89C\89  ¾Ë¥\fÙ\90'æ¡cadqáBâ\949¡!\aPðÓÌM\ 6a\91Ë\1eb.ê±:\1fYé~@\13¬\94\1f¼L`\9f\12¬bSlìÆ3L|á1±<IÅÎ5ðAÇÓ\8e}ò@÷\18B\ 2+\8b\9eU\ 2l0éeqðSw©Ó\8c\8d¯\rê\ 68\84\9bÑþ\8f\ e;N}è}·µ    Þ|\ 4\9e}ìg79öióð\15ãE¼#üòqp\9bL\8cÒ]ss0­\8c¹o\19tKá\ 1´ªïF;r9çë'@%\11 \16PÙáÍ\82:Â]\96×{e\93\ fû­sñ\9c`DË©4ø\95ÞTt\96m\ 3\1e\19\86?ã¡ÇºLgîJ\04ñäÌ?\12\8c\ey!U·\8bÄ4Á\9e¿\1cײ\9cì\ 5{c\ 4\13An\1d\19\96\91\91»]?m\85HSM³iéÖ\95\7fe
+¼Ç\15\89«òó\95Nì¢N¦\9b£y\908=\9d\v,R9L\87þ¡ï ¼Oì^àТøg$,W\Ì\ 1Óäjs\8a2@:x9Ö\15\81[`\93gZF\90TöXÉðí\bÛU?ð\ 36Ê1öh\ 4\9aì\8d\13\97ªß\87l,\ 5±?,_&<¿ñÐe\0\93\86D\14$ØñÏreÏviXæyFå\84JÃ,Â×\96
\83\14\vÆñ.\aÁHQ±Âr\91\97¦\9f0\9dü\eÜ \82\99¾ ;bBp\ 1\83\98"\añþ\16d\92×\17ã\96A\18\15Ð<Ýt9,Ùz@p/Ò²^\89r\183@   9ÓE(Jä-¸9_¹X\b\97\ 6       \1e°\9a[M)\8b\98ä\9f.x!á\1c\f\93\91Éû\vñJ®ç¼\82ì«\15ünýÃ\8b¹Qrm´]\ 5µ\80\£y\89>\1a\ 4\12_\97[á9do¾æ¿c\18-ÕO~v¥sFÂ\1e\eÙ«\832Êp\ 3½^À0Ê\8co0\8e)~\83ä\7f3î}#÷ñ\99\80\r\b|_\9d\ 6¸¨½ZÍ\91¯\8b\ eä4Ý\ 3Ü¢^.\1ftY®þapåcªÊ¹ÑÈ2ü\83\aXÓÁ
+       \17À\91\12:ü@\8d\ 2\95i«¹5Ó¢«#rz|Ý\18\9bi|ÃOÜf?ñ\84¥+ø\8a³\91hR4ÒË)
+O\12j\19\89û\ 3\1f <kgç\87rlËÌη\99ú*zÅ\rWD"³ë/ãÌÁ¬\7f@ÑK¼^\1d\9e jÓR¬-%ÜRÊi\1d\87Y\92Ã\9d¤\b\8b\ñFâtS\18.Q¿\ 1â}@^
 endstream
 endobj
 884 0 obj <<
@@ -3530,20 +3528,21 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 894 0 obj <<
-/Length 2149      
+/Length 2162      
 /Filter /FlateDecode
 >>
 stream
-xÚµX[\8fÛ6\16~ϯ0ú\12\19\88U\89ºw±\ fÛKÚ)Z\ 4H§E\81¦\bh\89cs#\8bSI\9ed°Xô¯÷ÜhK\13y\9d\8bE\1e\1e\92ç|çJG«Ý*Z}û,zòýòöÙç/ãr\15\17¡\8a³tu{·*Ôª\88ËPEÕê¶Yý\16dëM\96EAí\ e\aÓ\8dëM\92\17Á\9b(NMÛà$\ ft×0uotcz\1e\ f÷ð\8d\ 2S[ä­õh]·þýöû\8f$àëÓ0Is\85×G+Ø\1fVU&·\871ßÿêÁô\ fÖ¼\9f\1d\ 2\9b³U\1c\87U\96ùͪ
-\13\91üvoÖ\e\95æÁ/ëR\ 5®ßÚ\81ç£ù0ò\88µZ«" BvÒ\ 1\17Oìþ\9cÁÔ\ e\95Åñ\9b(\8bÜ\9dgèÍ:\ e\fÐb¦L\8f¹×5^ð\ e\7fÌèÏ\ 4þ½\16)¶ð\81µ\9díx®ObÇ"6(\8dÊ\ 1Ni\9a³v[;\ ecoô!\oÒ(   nð0\80\9c¤\86ïÁè\93b0½s=\ f\86½ë\85&8$1à\0ò\9c \18^\0\15\9c0j\10bìuÿè\8f\1eu£G\r\ 1\94<¹È0\95[,*ʶ®Û¡¤y\1c\90Ú¹"µa:\98{ÝëÑð¬u;[ë\969Dg¸W\1f\98\82f8\ eGݶ\8f̯;þþúã\ fÌÁ 1qDõ\1eïY\ 2±\16\92Ù\120ºï\1d²<ØÆ\88p;Ø=\82)\17,\0'\1fëñ\bòl\12åã\0v\1f\10\18²ùÞv\86i Ò`\90¾µ­e1к¡?WÅa\9eOý6UñÜ;S¥Îq\87«hh$²¡KÏ3:^F\9cË@N:\ e¦\11nd=²tLií»µç\ 4¸ÜÁ¸N¶ýÛ\8d£ív¼¢\99öÇÑ\8a?\13\15|D\98!ÀY\0\10\7fÉ_  u8Ð\1d05D\ 1EOUá¹8ýêë×!\13Ð\93\91\ 2\9ezDe\91&^Ã\v\9ai\0äØ
-Évàà\at\fÊ4DC$\90¯7\as@\91å\90^\96)¬a½±Cͤ-\ 2ñ(\97trµùpßj+g\82í\16\9b\92,\aíö¦\1f &\92\82ðB\1aÅÛ\vÌ\8a)ðm\80\ eè¬7-²q,&Y!\88\12\8dü\12G\9dAûɪÜÕ¡Ëãèdi\9cÈ­µ;Þ\136°å=^\83\ 1Þ7\83\b²=Êevè\9e\8fKaºsdø¤`\1cñ{¶A\ 1ÉÂ\91ßãò\1ec\ eG\9a?\92ap\88\91¼ëõý\1eL\9bAY ×Æ\ 53\fâÙ\16£¢%Á K[9\8a\90ä!\8b/²C̼\a\ 3¹lϲ\0ïã¢Y\8e}DZéH_¼Î1AtyÁ3³ûb±8­ \9a¨<\9b\87çw\10\1e\ 3¹h\19|é¶8¨$ø\81B^\85\83\97\18ߺ\1e]ÿ¸\ 1»\7fmt\8b\89«ßÜtµWý\81j\ 2(\ 6\97\7fþ2QÓZ¦²",²\ 4ä [ßÄIzó\1cC'I\82\9fF\v\19\112t\8bó4ø×ZeA¿\ 6\82;vÍg|ܼ4VYX¤þ0T;\86\92(\99°CS#~à\12I\98\1cF*\1d\bÓ\8f\94\1c?<ò\8c\14ìé\84?×Y\\ 4GRÇ\1d\aA5®ª"|Z¯gÅ~ãñMã°,S_ò\15\97ü¯¦-\87éjG-E#Â^è$.5\ 3pªo%~:åí¿ÙK$©\9açä$M \8b\97Æ\a¦\98\95\91\16Å(\90µPí Û0û!ÅØÝ\9eNÛ@qÛÔ­¡`\82\ 5ö\rô\1fJ(\99$,ÜK×\1f)\93ORÚäÐÉÞ\93T\97S2¸\fe\17JPüUìB*[\15aUD1\ 2\92\97a\99e+°\9e\a%ñlÉ\148\1cª\12lzf|\13\92
-Ìï\9d2æ«¥\9dLE]h.ZÓíÆ=\13ICø\1aíK\18r\9cõåU2\ 2|[{°ã\·dQ7\95\80©ãôÿ®Ü\96*ÿh\ 6Ì\87©Ï\87°0Ñ@\ 21\ f3ÈÅ3{\9d\80H\vñ3\1f\17°\19lH~\82)\b]\12\97Ë\80ó¤ \ 3ìÐÀ\92·ùN\8f©\0õa0­¤#¦iÊ﩯88 Ö¡mùdì`M\7f°\1d\ 6{Ъ\fn:ÙÛ4VêpJ9w)9³êÅ\13ã\15\14#\98A
-¯              \92\97\82b  \9f\18\90\bÚ\vgÜù\ 1/t\8d\9fwú`ü\e&\8bt;8>»d"Ä \ f(\10I\8a\7f'¸K\84{©lRý*sô\1eøÒ\81\ 36\9a\0P\1eg\9c3I\16à1\1fô\ 1\8aô\vìßcÁ\ 3¶ÄaÄë½\ 1!\ 6¡\92ã\ 3±µäCdWyÒàò`F^?\1d#\9a\ 3\80¬<2\8d=\17uäsLúò«\85\ 2ýªß-\99     î\9b>\9f°\86ÞpzWQ¤¢".>»ÜÄ&Q67\rÌ\19M<*ò=3PO)mÞ¥e¬÷ì\18¿µ\97\v\ 6 \19\1d¶¼\8a\9drÏ~\84Õ¹®¡\81\81\8bt\8f<V@`³ÃÀ¿Õ|A|\ 2\86D\ fË\ 2ÈJ\19w\1d¶â\10\13ØdÝñ\90ÎNSa\16ôR\8a@       ×\1a\80 ù\8eª*u9¾­A\97\0÷\a\ f¯å\14zMÑ\b=lv\81¯Hü\ 2\80\15ÿøL%Mà\97/­G3n\96\14Ó­Ýu¦\91ÂMý\14\99ºÖ¤%\8d\a\vÞú8k\9fx\ 1^H\8d<\81\ 6þ\1e;9\90\19(\18p\17Á¬òsçîql¬\96[\8eÝpÚ\99\aÒ"\9b\1d´Õs7+§n¦\9e¼ä\91pú7BI²\ 4\1a\80~J\96S\891a´­C\fß\ f_HÞÏW\19Ô\87"§F%ÎÂ<\82¼\1fça^\96>§sÛ\96L\vI\1aFÅ9ëó\e3\83\17öo\ f\94\85Þ²ûÿÎÄ\7fò\87\ 1Ä\11¢\80ß3
-8³\1d\13\f\bü"¨Y\82ob\0p\1c\96\84\16a6U\98æÒ\©«2«\8feæ¼qQfþü|ûrSòðAÂ\9dV\a\16\13Î"C?\85À¡O^\95^²krUúd"=<zû·ò¿Õ[ê¼â`\ 1\7f\85º`\9aäÉß6ALIþ\13ñO¯j\90\9e5\80Þ\85ÿ\bYT\aÍ>Wg´\a3ðð?\9f\88h¶ O
-½rZxy² ¢\9fâ¼
-\91\ 3ÙNàÁ£\ e-ÿ\11~ê*~"È\14¿üª¼ùYÞqo\87)\92\90¨\9f\v\ 1ÁäÑé\8fÍËέþ·s?\ 5æ²KO\15\12\ 3\14\v
-%yX\14\95Wè¿K'     Ë\14\9aòªk\15\13SÞõ\1az·Ý[ÀþJ`û>K,%Q"\9ao\9d£'˧y[uUÄrâý\12eبI\ e¹ë鯿¹ÜànFÌÇvQÒölÜÝ\ 6
-ú;¿:u\f#¾úÍkà|ýêõ¢\ 2ð\0Ws\8cãhI\ 3æ\13\rªó5\8dëLxé­:{+(¨/1Ú³ÌÂ(*$\97\15\8b{¿¹}ö\17\ 2\14\18Y
+xÚµX[\8fÛ6\16~ϯ0ú\12\19\88U\89º·Ø\87í%í\14-\ 2¤³E\81¤XÐ\12ÇæF\16§ºL2(\8aþõ=7ÚòD®³\ fûb\91\87\87ä9ß¹ÒÑj·\8aVß=\8b\9e|¿º}öù˸\ÅE¨â,]ÝÞ­
+µ*â2TQµºmVo\82l½É²(¨Ýá`ºq½Iò"x\eÅ©i\e\9cä\81î\1a¦î\8dnLÏãá\1e¾Q`j\8b¼µ\1e­ëÖ¿Ýþð\91\ 4|}\1a&i®ðúh\ 5ûêÊäö0æû_=\98þÁ\9a÷g\87Àæl\15Ça\95e~³ªÂD$¿Ý\9bõF¥yð˺T\81ë·vàùh>\8c<b­Öª\b\88\90\1duÀÅ#»?g0µCeqü6Ê"wç\19\8e\ 3\ 3´\98)ócîu\8d\17¼Ã\1f3ú3\81\7f¯E\8a-|`mg;\9eë£Ø±\88\rJ£r\80S\9aæ¬ÝÖ\8eÃØ\e}\b×\9b4J\82\e<\f '©á{0ú¨\18Lï\Ï\83aïz¡     \ eI\f8\80<G(\86\17@\ 5Ì;'\8c\1a\84\18{Ý?ú£GÝèQÃ\9e/\81\92'\17\19ær\8bEEÙÖu;\944\8f\ 3R;W¤6L\as¯{=\1a\9eµngkÝ2\87è\f÷ê\ 3\fÓ0é¶}d~Ýñ÷×\9f~d\ e\ 6\89\89#ª÷xÏ\12\88µ\90Ì\96\80Ñ}ï\90åÁ6F\84ÛÁî\11L¹`\ 18yªÇ        äÙ$ÊÇ\ 1ì> 0dó½í\fÓ@¥Á }k[Ëb uC\7f®\8aÃ<\9fûmªâsïL\95\1d®¢¡\91È\86.=Ïèx\19q.\ 39i\1aL#ÜÈ:±tLií»µç\ 4¸ÜÁ¸N¶ýÇ\8d£ív¼¢\99öûdÅ\9f\89
+>"Ì\10à,\0\88¿ä¯\84:\1cè\ e\98\1a¢\80¢§ªð\\9c~ýÍë\90        èÉH\ 1O\9dPY¤\89×ð\82f\1a\09¶B²\1d\ 1\1d\832\rÑ\10  äëÍÁ\1cPd9¤\97e
+kXoìP3i\8b@<Ê%\9d\m>Ü·ÚÊ\99\ 5Ýð¦$ËA»½é\a\88\89¤ ¼\90Fñö\ 2³b
+|\eàØ°\ 3:ëM\8bl\1c\8bIV\b¢D#¿ÄQgÐ~²*wuèò8:Z\1a'rkí¦{Â\ 6¶¼Çk0Àûf\10\93\f\87îù¸\14¦;G\86O
\11¿'\e\14\90,\1cù=.ï1æp¤ù#\19\ 6\87\18É»^ßïÁ´\19\94\ 5rm\0à\9em1*Z\12\f²´\95£\bI\1e²ø";ÄÌ{@Å<\90Ëö,\vð>.\9aeê;\8eMGúâu\8e     ¢Ë\v\9e\99Ý\17\8bÅi\ 5ÕDåÙyx~\ fá1\90\8b\96ÁWn\8b\83J\82\1f(äU8x\89ñ­ëÑõ\8f\e°û7F·\98¸úÍMW{Õ\1f¨&\80bpùç/\135¯e*+Â"K@\ eºõm\9c¤7Ï1t\92$øy´\90\11!C·8O\83\7f®U\16ôk ¸©k>ããÎKc\95\85\ fCµc(\89\92 ;45â\a.\91\84i\95\9cÃH¥\ 3\89\92ã\87G\9e\91\82=\9dð×:\8b\8b`"uÜ4\bªqU\15áÓz}Vì7\1eß4\ eË2õ%_qÉÿzÞr\98®vÔR4"ì\85NâR3\0§úVâçcÞþ\1f{\89$Uç99I\13È¢Pù¥ñ\81)feä\93ºE1
+d-T;È6Ì~H1v·§Ó6PÜ6uk(\98`\81}\ 3ý\87\12J&        \v÷Òõ\13eòYJ\9b\1d:Û{\94êrJ\ 6\97¡ìB \8a¿\8a]He«"¬\8a(F@ò2,³l\ 5Öó $\9e-\99\ 3\87CU\82MO\8co£(ZrÊX\81ù½SÆ|µ´\93©¨\vÍEkºÝ¸g"i\b_£}      C\8e\93¾¼JF\80ok\ fv<×-YÔM%`ê8ý¿+·¥Ê?\9a\ 1óaêó!,Ì4\90@ÌÃ\f\99½\8e\85ø\99\8f\vØ\f6$?Á\14\84.\89ËeÀyR\90\ 1vh`ÉÛ|§ÇT\80ú0\98\11Ó4å÷ÔW\1c\1cPëж|2v°¦?Ø\ e²q\83=hU\ 67\9dìm\1a+u8¥\9c»\94\9cYõâ\89ñ
+\8a\11Ì \85×\84\ 4ÉK±jA±\84O\fH\ 4í\853îü\80\17ºÆÏ;}0þ\r\93\1d\1c\9f]2\11b\90\a\14\88$E1ó¿#Ü%½T6©~\959z\ f|éÀ\ 1\eM\0(\8f\99$\vð\98\ fú\0\ 5öï±à\ 1[â0âõÞ\80\10\83PÉñ\81ØZò!²«<ipy0#¯\1f\8f\11Í\ 1@V\1e\99Æ\9e\8b:ò9¦a]ùÕB\81~Õï\96Ì\ 4÷Í\9fOXCo8½«(RQ\11\17\9f]nb\93(;7\rÌ\19M<*ò=3P\8f)í¼KËXï³cüÖ^.\18\80\98vØò*vÊ=û\11Vçº\86\ 6\82u\a.Ò=òX\ 1\81Í\ e\ 3ÿVó\ 5ñ        \18\12=,\v +eÜuØ\8aCL`\93uÇC:;M\85YÐK)\ 2%\kð\89\ 2\82æ{ªªÔåø¶\ 6]\ 2Ü\1f\96Sè5E#ô°³\v|Eâ\17\0¬øÇg*i\ 2¿|i=\9aq³¤\98ní®3\8d\14nê§ÈÔµ&-i<XðÖdzö\89\17à\85ÔÈ\13hàïÔÉ\81Ì@Á\80»\bf\95\9f:w\8fccµÜ2uÃqg\1eH\8blvÐV\9f»Y9w3õä%\8f\84ã¿\11J\92\0ôc²\9cK\8c       £m\1dbø~øBò~¾Ê >\1495*q\16æ\11äý8\ fó²ô9\9dÛ¶d^HÒ0*NY\9fß\98\19¼°ß<P\16Âpû7\87Ào¼ð\ fþ0\888B$ð{B\ 2g¶#\14x\82A\81_\ 46Kà]\f\18B¢Y\12\\ 4ÚTa\9aK\83¥®Ê­\96åæüqQnþüëöå¦äá\83\84\ e\9b\aLéËP8ôÏ«ZH¦M®j\91Ì´\80\a0_(ÿcñå\16d\19Æ«6QOl\82\1aÈ\ 2\9a\ 5¦b\19õÄ21åÿO4KzU¡ô¤\10´5ü\1fÉßh\87N±¤Ýh\ ffàá\1f\9f\bv¶ [
+-uZxÙ²\19Ø\9fâß
+±D     ½\8b\ 3\96\98   >òru\15K\11d\8ee~UÞü$︷Ã\1cUÈçÏ\85\80ÀòèøÿçeßW\7fïûO\81¹ìís\85Ä\0Å\82BI\1e\16\15úsé$a\99CS^u³bfÊ»^C\8b·#'\ 2ü¯Ä¾oÉÄZ\12;¢ýÖ¹Öp=ù4§«®JZÎ\ 2B\ 2\ fÛ:É4w=ýQø±øàyF,é$n¹
+mÜÝ\ 6Z\80w~uî#FÜö[à|ýúÕëE%àÉ®Îá\8e£%-\98O´¨N×4®3á¥×íÙëBAE\8aÑ´e\16FQ!\19¯XÜûíí³ÿ\ 2\ 4q#Ú
 endstream
 endobj
 893 0 obj <<
@@ -4760,15 +4759,18 @@ endobj
 /ProcSet [ /PDF /Text /ImageC /ImageI ]
 >> endobj
 1030 0 obj <<
-/Length 2199      
+/Length 2218      
 /Filter /FlateDecode
 >>
 stream
-xÚíYK\93ã¶\11¾ï¯Ð\91JV0      \12\ 4\18\97/©Ê&ÎÁ\95rMÅ\87õz\v\121\12²\12©"©\99]§üßÓ\8d\ 6)\92\82FÚqUN¾\88dãõõ\ 3ýR¼Ø.âÅßßijç_\1fÞ|ó.Q\8b$ci\96óÅÃãBò\85L\14ãq±x(\17ï#ÅòåJ\888úÑ´¶<\99å*ÍeT\9aM\ro1¼,?<üóbcÚ5a\85\10n×x±â\ 5KÏ{²\84\19]\9aæåMa3q}³\7fô;ðÜïÀq+$Èè±ö#z¿§\97\18\f\1c!}       \94/G·Ú´D³-M´¥©\96\E\9dÝè=Clß¼ãùB°BÊ\1c\11­\12ÁòXÁ3g¹\92\ 4\89\9001Np"ÏX\fKb?ãçX \1cÒ$zïÁ|\\9b­­>\10ñ;z4À!½ñ\8c\9ekÛµô¦Ý\93G§ª]&\91ÝV¦$\82\85Ϫ3[\10M\0¯Ç±*X\96\v\ 2ÃoÂå\ 1¸¦*ï\ 5Ë#\r\98Îxí\16!\ e\ e>ïÁ\9b\11\9aô&Þ4\80÷¨\9bÎv¶®à°\8f­ýÕ\8cÑó;D\9d\10t\8f;AÜ\ e4M©<U\97þ¥®Ì\9dòÏnò\93\ 5øÙìuÛÚG»\ 1~4òÕ^c(ÿ\7fñãõ#nò#®ñ³®ëOÀÏ\abá°Ô×qB0²±\aY)À ×\95',Ͻ\1f\99ß@·lêx
-¸Ý     ïá£p\ 2\94%Å0izQ\ 2{*p½à9üôÖìͦCwÈÁS9g\9bF­÷J\eûs\9cd\e\1amOë\15ÑëÆÙ³\9bZ?Ò¨Ñ\eôg;úzZºå\9ds\86ngÝ!\16\10@\9c±\ 4XZA\ 4Ȳ\9c@8·\97\8bHoº\13øÍ/ô5xÖò[ (\11Ù\8e\ 6ìá¸7\aô\902êú¥\9flEo]í)ôX\83Ô\8e búzÞ\99Ƽ\85w)¼«\1e\1dd«-\11\8e§ÆsÚ\9aÖÏöÂ\11=o+ÇO<eÄ1\9cI\15\19\10\
-\ 2°4\eYBò\9aä
-ên\89\0b¡ùg\86B*NdθL.tü\82åÀ\1d(ÄØrè\9cª<\9f\1c8(/\18Ï\92»mI\16\86SØr¥\8a8úWcH8«\fL3S3eo\f     :\83`L¸²\ 2t±ß×Èþ3\8d\ 1éi)2\88¢'\8c\8d8\17õ\8b\b$\9cª#\19Ý'\f\95x      \91z6½\96æëÆÏÿÕ4¤hS"ÒXD?Ô\9d\1fs\ 6ê\914Dê\83õXÍÞsNB7üª4â`&¼H\10]ëIc\ 6ð[»'\8f\9eÉ$ö\ 35¤p\ 1\97\9a«\vE\fÑÄ\87\92\80N\92L²<\e|\9e>\1eÑúð(¼\19î¹3\84Ä\92Å\99fo4¾\91ìJ\1a<\vò-i3\8dc&e6ÕfUwä\b\ 6ça«Ò>\ 1X\8dùO\9eá>jP\bNÀK\0\14\10ô°b\f\93YØ×%L¤âUr\11ð^ô+­\a£[Bi>\1f!\0ìµEoNìª\94   .¦ìjºÁõYZoC0Sɤ¸¼FCìì\ 3g\10¦b2ÏÇ8³$÷V\9f\88ÈÉêtÀ_ïM\1a\1a@O\8c3{ÏÕÚõÞ¯¡s\9d/×äºÝ\965\8d>ïlï»\91¬\89ý\ 4b\8f\94ýs2\ 3WDF\eí^ò\1eɾ¦\8b\85ª$\85\80ÆEX0\18\84Ã"á\1cª\ 59\11        \9cá\1dANþ[A è\95ã~?Ñ,\97G_È\v\ 6N-¹\fI\82\18í\83\8f\8c\1dØ¥4ãü\1c­Üõ®a\8f¦lÁÏä2\8b\1e\1cR\98\14\ 6\ 3\ 3Nyð,-\84\81\16\8d\ 3¿\ 59½¸\17\ 3ÎB&\87©\85ȾZ´        \93éàgÊÁsg)Ô;3Æá\86\1eà~à\8dIÁ\jdæ\99>\ eÚÙ%Fî4\ fH\bç\8cý!Îr\8e\19\a¶M}òδ$\8a÷\b Ä\9a\b\9a\1e-D\87½_5>\ 4&\9eÏ\99i¢)YÈ\87\9f\16½ïOûÐ\92ª+\97\ff8=ÁÓÇêƺè\ 4+(\92ÁÈD\83ðí4\bÏ\99m\864\18C~\9b\7fµ\ 6¡\ 2Tj¸\1c\10\862¨lµ»\8a>\bs¦À\19MTùl»]п*\96\8aWú­\94ÉB\8dp\888\1d\1c%øû¦4g\ 3\82d\98®\1d`\9d;¬\]¹'0àä\9fËK\v#\9f¥8K25»®ssh]ô\97Ñ÷\8f!      @J\93\võ;D0\84\98_BÛ\vÐEúûTÌ&&\ 6\99\8aù¼1¦\fæ\11«TäP\1dÌÜø+Ï\1d\19ýÛ¾·á\9b\19X\1auP0\1d¨\7fÑîêÓ¾ôC}\9a\84\1f\8dÙj0\84\92¦¹T}:\ 5®\1dVʾ¯\ 2ÎX£Q$\11ó\1aö\90&\85Ô\ fæsGk)µê\9b\1f£é\ 1\18\ fúHïGÝ\811V\1e\86s\0\ e÷\91r\13,n\9duQcFù\18©\}ã\96\ fq\10?\9d\18û©³\86\10x=1x=\18¶~ÍyÇ\80s:ºýn7~Ô+\1a?\16\18×èû\\19l}õ^?õ%¸Ó©«ä±Â¯¶þ+¦QÆØE\ 1\8dó&\97\8fúï\9d\95;ïe0êN\84º-\99\80êD\86ºC;»Ý}D#\9cö\86â\10\0¿Ë\18@vó°qkg_?\aÎ:·\vR\92Ø\1a;bC'êvÇà:Jq½Á1E9nØ\0ÂǽÞ^\ 3\89}\15\82\89¶ÞMQ\82K\80\¼ºSzùM\£Æ\8b}¤'Pb:ô=     j\ 4Öz¡µ¦\e&'\83uV/ëüÌâ£}2×Û\97Ø\1a|µ*äM\96ó3æ'ß   \99^\eÝntÙw\ 3©þïf\97ò»+\9cþiÒ\96ú³\17#Ö/\83eÞ§9\15`\ 3Rt)\87 ö[h'?e,\90â¦\v\92g\81\94CSo\1apB]²w¶r-!¨H1·á®~V\91K¨S¯ì,æ>SÆ\96¯\eØÛ¶#\ 2¥ÖÜ\97\9d£â\0h\81<¯u§$£\86\16NÜÔ\r(Îg*\95o`\0Ýå0q cæN´\9d\1f\14$úØ\80Û÷6\81\8d\bîÃ\15x[     %ûOÈ¿\e\0Ö<\ fG\9a7ªE\e¢P\1a\v/óÌ*ã/ÔJ88˪Z"û.\rÖø®4rï\aýÙ\1e|\9a\16è\84Í\8eÆ\ eZ0©Æ\ 1×C\949$ÕÓN\1c\fµ\9d޺Ƞ   Ãè1\14\91]\10\85ç¿\97
-<Y³vÕ<|\7fï\9buÚ/Ù\0\ f]\83E=æ\14D[÷\85ÊÐÔ\83\173m(\8e@ÍU\95ÏTå³\9f!³ð¬\11\a0fàîR13$Jx\11þòGl¿3¶OyúÏky\92/À¾\96\11Ì`\87âo\9e³,Q\81,á2Î=¹´ÒG\ 2\8eBv!èÞ`°¶ÝL\ 6/\84É \9b\1eëEè\9e±\19\8amJ2¡\8a@\9a¡\9bF\7f\99ÿ£\b\ 5E{\85\97\ 1ü½\7f²\84þiÄØ}5Z{¨\17a.ô\97±\98ö\16\vÆ\85\84bqʽÎepíß\1eÞü\ fU°ïy
+xÚíYK\8fã¸\11¾Ï¯ðQNÆ\\89\12\1fJ\90K\80L²9,\82 \91=ìÌ\ 6´Åv3ã\96\f\9eÙ ÿ=U,J\96dºÝÓ\vä\94\8b%ñùÕ\83_\15Ëéj¿JW\7f~\97.\9e\7f¼{÷Ý\87L¯²\82å\85ä«»û\95â+\95iÆÓruW­~J4\93ë\8d\10iòwÛ¹êd×\9b\ª¤²»\ 6ÞRxY\7fºûëÅ´jÆJ!üªéjÃK\96\9f×d\19­ú`MeÛ\97\17\85ÅÄõÅþ2¬ÀeX\81ãRØ \92û&ô\98Ã\81\87Ö\86Îv\94\bÛ×ÐòõègÛ\8eÚ\G\ 3]eë5×IïvæÀ\10Ûw\1f¸\        V*%\11Ñ&\13\1a\9e\92\bXF\ 3ó|¥``\9aá@^°\14¦¤aÄÇT \1eò,ù)\80ù\98åÅ?·vïêOÔñ\az´ %½ñ\82\9e[×wôfü\93'§z\9d%\9dÛ×6\fuuo÷ \9b\bà\0dS²B
+BÃoâåWðÚºz\vÚÎ\ 1Þ\ 1-\a´ðù*À\ 5ÁÉo\ 2ί\0>\9a¶w½k`ÃÚ7tî\17;\15\81£\bÐ\e ]\93"óR\*\9c\86Ô¡ÕTᥩí+mQÜ\14­¸"Úî`ºÎÝ£jw\ 6D¬»\17ä\92ÿ+±\82ÅÄM±ÄKbm\e´ØçO\ 4þÂ×ô·ICP\8a)³l4`\85cÌ3&eà\97\ 1Æp*ý´9!\95pê3>\88\80
+\8a¬Ís\96\95ã qU\7fv"kj d`\940¼³\a»ë\91&90\98'á<é\ 2[íÜÇ4+vÔÛ\9d\ejoZ4?\rmî©×\9a\1dòÜ\ 3}=­ýôÞ\93¤_Ùô\88\ 5\14\90\16,\ 3\916\10\19\8aB\12\bO\87R$f×\9f\80O¿Ò×ȸÕï¡A\8bÄõÔá\1e\8f\aû\88Ì©\92~\98úÙÕôÖ7¡\85\1e[ÐÚ\11LL_Ï\ f¶µïá]\89\93\8d\½§\86ã©\r\92\v£\83rÄ ÛÆË\93Î\ 5ñ\ 2\17J'\16\14\97\83\ 2\1c\8dF\91°yKz\ 5swÔ\0j¡ñg\81b&Î\94d\e\176~Ásà\1c\94bê9´O]\9dw\8el$KÆ\8bìÕ¾¤J8mã.l½Ñe\9aü­µ¤\9cM\ 1®Yè\85±w\96\14]@\90&\E        ¶8\1c\1a\14ÿ\99ú éi-
+\88®'\8c\998\16í\8bíÞ\10Øpª\8fät\9f1\84â!ÄÖ³ëu4Þ´aü/¶%CÛ
+\91¦"ù¡éC\9f\80¤¥¦!\88\1cHt\16ÒáWç     \a7áe\86èºÐ4\15\0¿\8d\7fòä\99\â0¶Æ\f.àPs}a\88!¾Ô!°Dl\92\15\8aÉbä=s<¢÷áVx2üóÁ\12\12G\1e\ 3p7¼\91î*ê<+ò=Y3OS¦T1·fÝôD\ 4#y¸ºrO\0Ö`^$\v\G\8f\ 6Á\ 1x\b \ 5\14\98ÂÐag\16çº\8c\89\¼I/\ 2ÞËa¦\v`LG(í\97#D\80\83qÈæ$®Î\99àb.®¡\13Ü\9cµõ>\ 63WL\89Ëc4\84Ð1~Faj¦¤\9câ,2\19¼>\13\89×Õé\11\7f\ 3\9b´Ô\81L\8c#\aæêÜö\10æо\9eË\rQ·_²¡Þç\a7p76\e\12?\83Ø#25\17\7fT3\1e\11\ 5y\80\7f\91\ 3\92CC\a[]\vUY\ e\ 1\8d\8b¸b \b\7f\8e«\84s¸E¨\99J`\8f@\ 4\92ø[C \18\8cã\7f?Ó(\9f__è\v:N\1dQ\86"ELÖ\ 1G°!Z\811Jµ$°Km¦ò\1c­üñÆt¢­:à\19©\8aäÎ#\85Aq0Ðá\8d\aÏÊA\18èÐ9ð[\10é¥\83\82        \1fH\16s9L-DñͪÍ\98ÊG\9e©Fæ.r¸\a-\ 4\87\13ú\bç\ 3OL\ eîÒ 0Ïôñh¼_bäÎeDC8fÊ\87\133vìÛæ\14È´¢\96À\b Ä\86\1a\f=:\88\ e\870kº      æ÷ã>\v\15\8bqxàþ¼\1c¸?\1fBK®¯\1c2\18áí\ 4Ï\10«[ç£\13Ì H\ 6=3\v·· <\17¾\19³`
+9®üf\vÂÍPëñp@\18*àÆküQ\fA\983\rd43å³ë\1f¢üªY.ÞÈ[9S¥\9eà\10i>\12%ð}[Ù³\ 3A2LÇ\ e°. Kê+ç\ 4:¼þ¥ºô0â,ÍYVèÅq]ºC磿J¾¿\8fi\0R\1a)ô¯PÁ\18b~\8e-/À\16ù¯31\9b¹\18d*öËÎÚ*\9aGlr!áv° ñ7î;qú÷CÍ#\149ðjÔÃ\85é\91ê\1aÝCs:T¡kH\93ð£µ{\ 3\8ePÑ0\9fªÏ\87(*6\84z\v\90±A§È\12\16,\1c Í.R?Ø/=Í¥Ôj(Â\98°\8d¡\a`|4Gz?\9a\1e\9c±\ e0<\ 1xÜGÊMv°£÷.*Øè\10#µ¿ßøéc\1cÄO¯Æaè¢P\ 4¬'FÖ\83n\17æ\9cW\8c\90Óѯw» ¤ßP\10r ¸AîóWa\17.ñÍÓp\r÷6õ\17ú5ÞÉ÷á+¥^ÆXì\12ís§Ù\ 1Ù\84íþýÊ\e<\1fô0)VÄê0\85\80\e\8a\8a\15\8e\1eÜþ\81ª\à\8có²Q\1a\ 3\11V\9a\82(nn8-ü\1c\9aç+û\9dK\a9io\8b\ eÕ\87\ 2Õ¢zp®\9aP\ 1\ 1S\87[xÅõ²Ç\1cï´\9a\ 3\ ff\7f\r*V[&`çX\81$ ;¯_©Gy\13פ\1cãîé    -)m
+H1¢OÀº ºÎöãàlô×ú¶\a\9cżwOöjé\10ëv¯,tFÌ¡n\8a-ϸ\9fB}äò0\99ngª¡j\18*\ 3 gÐ\8d\9b\v\16\15ú7³ºÕo£þú:Kê\88H\90Ä+5\86¹ÿÄV
+C¦Ê)o\92\94:+§\1aK\7fó\90\14«£}pµ/\1aÁ\9d\15³\1fîoØ:ñ)w\1e\f_¤<äÒ\1cÃ\ 1v\1c\×S\ 3%ß<\L'×\ah\8bd\82\9dß%\9b\94¼pà®iÁ\88!\97©C\89\ 3Ú}\96\93Fjj~G×\87^ÛÏA"\vG\ 2\r,Uð\10Ð\80\8f\15\7fDù}\a\88\16d8Ò¸Émµ¥\16Jtáe\99{\15ü\85Û\14v.ò®\8e\9aC\1d\a«\0þòäß\1fÍ\17÷\18\12¹H­l±5ÖØ¢i7vø*£\92\90vÏkuÐÕõfïc+t#\83hjöa\16\9eÿXk`¶vëïûðý}(ç\990e\a2ô-^û\89\86±m;\eƲ\1f¼ØyÉq\ 2ji*¹0UÈ\8fÆÜ#\88F\12@\9f\85\ 3\9d1\95Â\83ð»ÿGÿo\88þs¹þõV¹Ô\v°¯å\v\vر\98,%+2\1dÉ!.cß\93O>Cdà¨hÿßÛKÁ¡_Xsëú\85\1e^\b\9fQQ\ 3Þ\8b\90¾\105\16ï´bB\97\91ôô­ù\1aûO\12®\1fÝ\15yF\ 1\97ÌÅ\7f\95À¨\18Ó¯Fñ\0÷"äÅþx\16óJdɸ\10«\8dÐ,Íy°½\8aÎýÓÝ»ÿ\ 2\ f\fÿ¾
 endstream
 endobj
 1029 0 obj <<
@@ -4792,19 +4794,25 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 1034 0 obj <<
-/Length 2331      
+/Length 2364      
 /Filter /FlateDecode
 >>
 stream
-xÚµYÝ\93ã¶\r\7fß¿Bo\91;k\9dHQ\94ÔL\1f\92i®M\9f\9aéÎôaogG¶èµº²äèã6\9bNÿ÷\0\ 4¨\ f\9föÖí4/\16  \82 \b\ 2?\80tè=y¡÷\97\9b\90¿ßßÝ|ø(µ\17\aY\92hïîàÅ:\882é%"\rd\98yw\85wïg\9b\87»¿}ø\18E^\ 2|¡@¾$\v\84\14 Ärüg³\8d\9bª3Ôú7MY\88Þ¦2H\12åm³@é\98&\8a\10\19A\8c%*&\8a\95\ 53\11H%Ý\82ñ§0\16´TÞ¶ù+5ï[Ó\95Å`\1ewMóÜ=8¥ÌÉÔ=s\94\ f÷ÿâ\81?Ñg¨\87Î\14kúò\92\v\9a¾Ñ\8a¾¼ÙÑ@WÚC­\88Ò"ÐaôUQ̲Ð*^\11¥T µþª(fYh¥×v\9d¬È\97I\90ÈÌÉ×Ó)\15Mm\88\9e\10A\16Ç\92\8c\0\12So+a\ 3\9aýí»z³\95\9bºØ6\87í9ßodâ?odê\9b\9e\86öM]\94}Ù0gÎä¼FÎWê\9cñã7¥¥1Ci'hÿhò´D+̾±¬\85!B\v\v\9b¶£N\7fdj×·&?Q{¨§Iù®2\81³\8fP\81R\9a¶ñ#¬\15\89ÔÏ\v\16º2´:¦¨#\8eY!)¬¼#eé÷\99\ 6­âà    Ùw\96\r\81'Фw\9dþ\98×®e¨qÊ\7f)í4\98¼\94\94ø´\90iÁå'\r\92U\r2¿C{#×p^Û!YSÁÂ¥µV43\92òóªk¨Õ\9a\8dðG\9b*gS5c\8fVlºU°òwUE¼o(Ê"I\95È¢Áè\ 3jD\ 4Ôþæ\87»\9b\9fo\10³BOx*SA\9c
-/Îd "áíO7÷\ f¡WÀ ì\13@0õ^,ëÉ\8b\82X òTÞ?n~"Ì\:±ÊÒ Ì"\90\ 5´H\92q.Ô|°\ 6Ü*©-ëÂ\8ey\8b\a§"0ÔÏCIG£¤ß7D=Ú\1d\1fC#9\r|ÞÄhæ\ 1¬Ë\ 2Nùù\ÖOh»TùwG&\9fÁ\f¦Þs¯9\90\94\85EÓùÑà\1a\14\99g\ 6Åî\15\ 6M\92@§úÿcP\90¥R}½A\19°^ÊþØ\fè»R[cYûÅ1\1aË\10\95-Ec\80S!\10z\e\99g\8a5b\83\ 3\ 1?¦ö¯¦m\bÑ°7¢\ 4
- Ð\ 3ªóhl¯¢Ä\98{aÏé|Ï\10[QjÍd·\90\ 6:\90\80\9d\ 3\0>o0\93á\86´\ 3,\ 4Us)1¾\90(3\90H\ 2?nRé7í  ±\12\ f\ f¤Ïº \86 Ï\84¶ -¨Ä\12!\91\80án¿\85!t-÷yE$óËÞ\9cyÞ¡ii­\8e°ØìËO¡P{·RÛ3\86[Y$É´\95\ e§`=9\9c+¿\82C`§\bbߪ\9eÎT\aÚRõ\ 4\9cÞ¢%\8c0\10rg(«\9e\18Èo\12\ e\13 ÐÙ\ 2áà¬\a\86øsK\88¾7]\aºÇÀsw´èÛÑ\8c\17\17ÆÀ\\98\96\vEÐ>m·ºËÑÇ\96\8bJÌj\876\aÏ\eöýÐ2ÓåÑ\0Éâ        \ 6DU9¯m\r³ÓÞº1\91Ù|\9cÎ\12\19f®ÂåÜH
-\96\16b*F¥\9f\866w\83!jd\ 5º´'\9cöÂw\0bù.¶\ 2N\ 1X63!Kãï9ï:\v\8e\93¼p-·­Y\ fOSÆ)Ãè¾ol2\ 2\82Í\1c1gOltÃ\ e°\80Ú;\88á\8aé6Rlc.   ôEaD¢E2<Å\18\ 6ò§\8eú°\ 6D\11\9cDo!Ç.{pR]º\1açÏtùB[\9b*°Q7ëNÂg<9ÕÒa
-\f¨(ö\7f\96ñäT\93m5a?|k®!榵\ 364àK1ÊêÙ\99ü\8dØÓ,¸À2Ó>Þ\91,\96rNyKu\1fköMѬí\1a\8d\94ÙN¿¹]s1,j\9eËsGì\vµ /\88£\18ZJ\ró¢ê\v9\15§¢³5©ôÿÚ 4\8ao\12ܲ
-\86ìTÓ<Ü\ 3UekZ¯moá\ 5Ö®.Ê!\949Xrð°\9eÌ\948»SÊ"û\16«¡ýgÃÈ\få´Ýq\ 4\87\8bzFÎ5"Íe\ 6È\87äÙ1Ï\81\8b\7f5O8\ 2ï\ eiêÊÿé:f\9eÊúa­üÏ Éeã­\ eÕ^\11+e\90\17RAçU\99p5Í\92رã\11D\10n=)n\1d\v6×ìl\8e)\9b\81w\ 4et?íÛ\96\16\ 4©L\97g\ 1\18Kpî±v÷\8c\96Ð\ f)\18\1e
\rê\8e\88\87\9d)d¨\7f\15vƨÅÙÖþHu@Þ\9aÅ\82]Wî*æ½\"\99/Ñ ¦R³kNf\15\1da1\8c\81ÔV0å\1eM\91Æ\b\85t\ 5H9æSÍn\ 1\8d\1c²\8dM-él}\1cXD\15J,\7f\86u\19ÑÈ1±uÆ´b}\ f\18r^Ì\94\93BÃÜâ+º\83\1f`¦U©\8dÀôË\b\84´j\8f_+:~íî&غ0&\92z\1e­¯¹c\18\arzû¸ÎËõt+~ËË£@
-qµ\97§*\0`uì£Êc¡uxåú8\84\12\10Jèå\85\ 3ïVpÑÍë'CM[\8c\ 1\9a¼R׺\ e|_\8eÍHcç|EÃ6\b0H$'\85\ 6ß9m*¶\84\85£C\1f½\0Î)   Sÿ{\ 3Õ\81YH\ 5ÓÕÖ\v¬^Ó\1dc<l®ìgPyK©¥*Oåê9é,H§·\8eë\8eIÄñû`\94DÉõÇ\ 4\10\12ËÅ1Iå²®ZZ\r        tù\98Ü\11H.\9c \8a)}Æ\14Qöxe"\ 3-.N\97Ë¥C\83Ù\ 1sRgSTäÿ\13Ëh®\9b ß\ f'n3øÙÖWÊ*;@¹?¼LJ¡cãKU¸@ÊÛ5SFxß\99²Åþ¸jA\99\ 6*\1a\1fÒÆR°m\bÀ\vÊy¸<ßRy\17\ 4áZ\a©PKû\1c˧£«7*\ 6\8aê²R\1aï\86gΠTѯ<\98\898Ð!f     m\93\1f=\8e­½\8d© LF\7f\14ÓÛØ=!é#\9eêòmr?´íøv¹«\9aý3ò|\90ß®éÁòçotò]5ä¤\ 6V¤ø\1d±Ü¾\9eÂ!\92-,KG_w\13¶|O\17\8eܵGR\ 5HªÆ`\8a®1ÉÊÈ\1fx\ 4\1chÕ0¼ÊÜ0ê]è\992\16b\1eg\0²Áëª]]:½l$c\14c§aSâ»Â\ 4<øL\83Øs»Ø\ 3®óí\956\8cßU;~Sm@(Pà¿U\9ag½©òW^s9\14î\8eã\15ÓÁ\11Ç\96Æ»ãô´U\97üD%õø²e.\v^\98\81ï\v\ 3¥*ûÊÒ\99Ãà.´|ûÙWy\v\19p\\87Q-¹¼oêEtÿñ÷\89nP¦ë^\9a¶è\1eϦ}Üc9V\18$Ì=[\ 2c\83¶6øçÅcQ\9eLÝAEéþÆøLOWó\83\ 2~Ë|ñç\87]o\87«4Ï\ f¿\aPÜ×\8f}\ 3~\95\17\17¡ù\15\87Û^²`\b]¦ãÿ  C\96jÎ1d|`êX_4ü2\0Æ­Ì\86>\Øs3{ªbعÒõÿ\8e~}ùï\ 5½Û\89éé\1fiáÌ\11\11)çï,\8fßâå?\84¸ííS×\91\9e\13"ÎÛ$\eß\94Π,¾¹\13­ù\14\8a\88\9eü\91×ämUÚ\7f\90\9e?&\ 1p_æ\v%L\87ú\80®\1eË\97\85Z(
-4"+\94Z:K\18\81ÒUæ\1fîn~\ 3pQ[\18
+xÚµ\19Ërä¶ñ®¯àÍTJâ\12 øÊV\ e\9bا¤¬ª\1c´*\175Äh\18Í\90c>v½NåßÝ/ð1\8b]©Rñe\b4\1a\8dîF¿Ð\13\aOA\1cüí*\96ïwwWoÞé,H£2ϳàn\1f¤Y\94\94:ÈU\11é¸\fîêà>,¯\1fî~|ó.I\82\1cðb\85xy\19\80\baü÷ú6MTh\8f\83åÑ\7f\86ôm¡£<7Ám\19\99\8d*FD C@#@å9°T\91\1d\98¾\8fSÅGU}_}âá}o\87¦\9eì{\95\98\9f\1f»îyxp\8cÙ\93mGÁj\1eîÿ-\v\7fáÏÔN\83­}<˱\e\9eµ\8fçÄó\b<+é\95:1\1eR\99\8a²8ù*)AÙp\95zH\19\13eYöUR\82²á*óI\9d{èë<ÊuéègËMÕ]k\19\81RQ\99¦\9a\95\0\14\8bàV\83\0\99ØÜ·íõ­Îóжõm·¿=W»k\9d\87Ï׺\bíÈK»®­\9b±é\ 4³\12pÕ"æ'\9e\9cñ\13v\rÁ\ 4¡¡\rYx°Um{\86Õv×\11jm\19ÐÃÁ¶\1fx2\1e\ 4:\8c½­N<\9eÚeSõx´\91Ó\8f2\911\19\8bñ\ 3\9c\95¨"¬jfõ\ 6¦:&\1e\vä\11×\88H\ 1'?2³üûÌ\8bÄøtBôGBC\8eqá    8\19Ýd<T­\eY\1e\9cª_\eÚ\ 6\9b·\94ò\90\ f²=\98üÂAîå \f\aÔ7bMg\9f\84¬M\ 3\a7¤­d¥$\13VÇ¡ãQo¯U8ëÔ8\9d\9a\15zâÑé­\81\93¿=\1e\19÷\v\8c
+If%¡\88\80\99£\ 2r\7fõýÝÕ/W\18·â@\ 5¦4QZ¨ -u¤\12\15ìNW÷\ fqPÃ"È  \81°\b>\12ê)H¢Taô9\ 6?]ý\93ãæÖ\88MYDq\99\0-\80%\9a\95sÁæ\ 3)ðÖè\8cP7z¬z¼8\93\80¢~\99\1a¾\1a£Ã±cè\81\80?\96W*^øp\9d¢\9a'Ю\108UçsÓ>¡î
+\13Þ\1d\ 4|\ 65Øv'³nÏT6\1a-ÖW\ f\8b¨PD^)\14§¯Ph\9eGY\91ý\7f\14
+´L\91½^¡\12°>6ã¡\9bÐvuFÊ"ý¥)*Ë2T4Åk\10§b\0\8cä\99gö5F\83\v\ 1;æño¶ï8¢ál\8e\12H\80]\ f Î¢qì\8d\12\ 5\99\8bµÌà[IAj"\11\8a(\8b4ÄÎ4\ e!\0>_c&C\812\17°0¨ÚK\8aé\ 5E]\ 2E&øîºÐa×\9f0Vâ\ 5Çø\81\14ÚÖ<PüY¢mÎ\a\1aµ\8d\90\b@w§om9º6»êÈ ûëÎ\9eeß¾ëù¬\81c±Ý5ïcevî¤~\94\18\98\92í\8fÖÙ;Ü\ 2Yr¼fÞ\13\87@O  ø>±^¬X\aØ\96õ\1c\8c\9e¢%¬H \94ÉÔ\1cGF`»ÉÅM\0Àw\v\80½Ó\1e\0Õ\17È\9f{\8eè;;\fÀ{
+8w\a\8a¾\ 3ïøèÜ\18\90k;ìúfÃ\bê§\1f¼RÎ6¶=TcVÛ÷\15XÞ´\e§^\90\ 6@\14OÐ!\8eGgµ½\15t\96m\98\13\19åãb\95È0sÕ.ç&Z      µ\18S12ý4õ\95[\8c\91#"èÒ\9erÜ«Ð\ 5\10»\10\ 5\8c\ 2bÙJ\85BM¾çj\18(8.ôb_nói\ foS§\85\84ÑÝØQ2\ 2\0e\8eT²'\ e\86é\11b\ 1\8f\1fÁ\87\8f\ 2'O¡Á\9a\12ð\8bÄ\18Ä\87\94x\8b),TO\ 3Ïá\fð"¸\89\91B\ e\1d»wT]º\9a÷¯xù\8c[J\158h;¿\91È\1d/Fµ5\98\1a\1d*IÃ\1fиuº\18Õ¢Û\8cc?|[©!Öª¥\ 5r\rø²\8f
+{´S¾\89X\1a\ 5\178f\91ã\ 5ÊjKçTõ\÷ gßÔ\9dOjT\ 6Õ)+I¿¹ñ\99\18\165ÏÍy`ô\r[0W\8cQO=§\86uQõ\19\9d£¤¢3©T\87\7fï\90\1aû7\13î\85\ 5Ëzjy\1fÊÀU\99\8fk\9fx\e+ ½:/\aW\16g©ÀÂFVSîôÎ)\8bõ[{]û¯V"3\94Ó$q\ 2\97\8b|&Î4\92\f \ fÉs\10\9c½\14ÿf\9dp\14¾\1d\8aÂ\95ÿ®VøùÑ>5í\83¯ü/!É\95óË\ eÙö\90Õ:*òä3ªÀ³\97&<OË<uèx\ 5   ¸ÛÈ\8c\93a\81pÝ#å\98¦\9bD"(£ÇEn*- Þ\89
+]lï\ 2ʨÙ\97àÞÓ̽3z\8e~\bA÷0Xmðt\8ex8Y\\86ç'W]ádöZÜMúG¨\vä½Ý\1c8\fÍãQp/\8fÈ×Gt\18Sy8t'ë\8d\8ep\18ú@A\15L³CU\14)\86B~\ 2\14âóE&f\ 1\83
\r¥\96bu>.l¼
+)6¿YFú\8cal\988:cZ!Û\ 3\84J\ e³ÍÂдָ\87\ 3Ì´¦ \ f,>÷@H«tý\99áëÏÜÛ\ 4G\17ÊDÐ(K(ºÏ\1cã4ÒKÿãuV\9e-¯â/Yy\12i¥^må\85\89 °:ô\99å¹ÐÚ\7f\92ú8\86\12\10Jèí\83\ 3ßVðЭÚ'ËC*Æ \9a|â)\99\ e|?\1eº\19&Æù  \15Ûa\80\e)\fäÍI©\98\0\eC\879Z\ 1ÜS\1e\17áw\16ª\ 3»¡
+ªkÉ
+\88¯å\8d1_¶Tö«PyéåØ\9c\1aï=eeT,½\8e×]\93\97\83Q\9e䯿&\b!©Þ\\936.ë\9a­Ö\10À\8f\8fÅ\1c\ 1äÜ   ¼\98ÓgÊ\1eE׫s\1deêâv¥\Úw\98\1d0'\r\94¢\92ð_XFKÝ\ 4ù~:ÉX\82\1f\8d¾RVÑ\ 2çþø2)Å\ eM\1eUñ&RÞøT\99à{gÉ\16»\83W\83º\88L27ÒæR°ï8\80×\9cóðxy¥\8a\14\1c³,*\94ÙêçÐ<\1d\½q\94@q¼¬\94æ·áY2(Wô\9e\86\99J£,Æ,\91Qòãæ\98¯7f¢8\9fíQ-½±{\8e¤Ô¹Ä\9bÝö'wSßÏýËÇc·{F\9c7ú­\8f\179cݧÓ/²¢\17V°*Åï\1cÏ©\83
+\17Éú \94\81¿î5\84\12/â½¾F©\81hjf\87J^«\96/¬þIVÁ\98¼
+\92ÓÖ
+2/*Ȭ\98¢pC§n\1aÎØ\82¡¸\ 2XÚñHÞ\8dÝ\99\13\83;Ñ.¶\eæF
+L\89\ 2m¿ùL,:Z\85o_©áôEaÒ\17\85án\9dO\94\13O|rÐNÔ\ 2ìôKñöÅþ¯8ÏÝa~\94º\0\98áksi\86µ\8d4µt6÷Âìe\89\f;°#1qr£¾Ì`÷\93{\ 2Ë{iw¬zÈ\99ó9\12\aóË\17\89\a\7fþcâ\ 103\f\1f»¾\1eH\83gÛ;í\82#Z\Xû\82\86\r\98\ej\8b\7f{\10\9cl;@=êþ\ 4ùÀ\8d¯õåíd\83çï\138\1f\b\ e\ 3.?ü\11aæ¾¥sÆNl¯ª/\9cÛk\98À\13çY\12úv\8dê¼hã\93«Dÿ?E¦-ûëÈ4·®\86\8d\1chþÕ\85ãlDE   VÒ¾\91ëC®±A \8cÏÔWÁí\95®ó\ fô\8bËÿK¸S¨\96?\e\10\16¯\fÙÖ\ 3\83*ù®*\87\el7Äàÿ#5×\ eÜÀH¤R`ÚØÅ:\ 3Ã\187\18Ö½\8f\7f2 ®­úcCÿ·$17\\16\ 2ðB\97',l\87\8a\84\1f;Û^©ûBõ\95D\19Æo(î²2\97\88Vx\91¿¿»ú\1d¢\81
 endstream
 endobj
 1033 0 obj <<
@@ -4825,18 +4833,14 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 1038 0 obj <<
-/Length 1446      
+/Length 1474      
 /Filter /FlateDecode
 >>
 stream
-xÚÍXKoã6\10¾çWø\16§]3âK\ f\14{hÑn\81Þ
-\ 4½¸\86¡HtV\8d-ºz$m\16ûß\97\14\872\95\9dX.öÒ\8b%\92\9b\99o\1ef´xXD\8b_¯"xþtwuû\81Å\vI²$\89\17\85\8c        ÏØ"¡)aQ¶¸+\17ë%½ÙÜývû\81óEbä"jå\98 \91ù"\ 2\89?#IoV\92Óe¾ßë"ï\14\8cêÒ½¼¨F\8f\ 2îåI\15\9dnZ7è>æ\9d}cËçê\86.\9d\f[ÞÃ>\8dêú¦V¥Y"\ eÍ\ 4õ
-à¬2"bé0±YÔì\84ºÚ¹§\99\89Öõ¶ÓÛFåå\ 6\16Û\93\ eö\93wnØvúø\83\1a\15
-³e­=ò¶*{Xì`²T\85.Õ¬&Âáä³\9að@\93N5£ù×ǼmA\vý¤\9a\11-`Ëë\ax\8d\1cjB\88\e'îñéBc\v+gÐ\84°%\ 2[HÂDâa\8b\13l\83´éª®Òõ¶Ð}Ý\ 1è÷\1e\1d\ 2\ 3ö
-aÄ\b\8cd\16\86<ÁxþXíÕYD\9e\f\9e¨[¿þ¤\1d(dØ:°è2ð)\ 2>CÀÇ1\114õàã7H\1cxÞSòÅâq\14v\13¨w\93Èx\97N\90Ñ\b\81F±´\90\16óØ\92·hù×[\9cdKk4OKæhib\1eX¹.>nVô\f5áü  x\86\81Çb\8aRf,Ë=úôk˺\94õJ\89SÄwnâ\907\8f
-òÞu    !?®ºØ¿>£\84Ç1Ñ\ 2\8b0\8a\85\18å\9cÈTx-² Æ:u8N\ 3Ëf9÷¶kôÁéqÌ\8d\v\8aG\ 5ù¸oÍ°ª\1fÜÈ`·,º×úÑM¬\a\96\ f9n[ì\réì\92·\fÄE[äû\1cÌVèºSÿt¨Þ\80|¢w\8c©È2ÂåX|¢·hVm¼ÉÛBÕ%(1\97
\83\1aϺ)ÛíQ5[ë.££\9d\18É\ayr$(îG\asâ±$t£×1Åt\94\11\91\8c\8eJ\86%¶iò\7fC¬Õ®2%צ\1d\83\80©½:XØ5¸ÑÐõÝ\rä\86jóýWÙí´ý{T\17\803Q\ 6ËN4N\88\90cn\r9W\19Ï?xË\1ftÙï!6ÖM@ \ 32P\bM\9eþ\8c\8f.0";\e\fáÔ-Xíf¬àÛW¦\ 6Á¾\1di5ѯ¬\9eª¶ÒÖ\ 3\97Ú\93Q\84\1c\fëc¨\88     KÇòÿ\19=\ 1d&\9bq$\8b0\81\86\98$\94Î\9c\02\93\13$v\ 2\1aÄ\11'\99\90çO\0\99É         v\ 2\16B)#I"Î\1e\0"\93ý3d\7f\8e±+\96$å#Ó)\9fKC\17v`A\11÷\99È°(HFC&rR+÷ \17v0\88\ 5@\89Ð\ 2\9cÎ\1aÓwAù¾Õ\97÷C§\96úÓ\9c3¼Ý\19\12\12\9cÏv\1eTüçÖ#pÆ·õ\1d\1eºÀ Ëù¾\83ÊÿEãáÕ\8815\92ùÆ\83\ 6\9déúéï\81ÊÓ|{¦\8e\81àPÄênÔûÝzhNæY=i%¼&é\ 5 \93 è \97A0ûÂ`¥pÄ^m[y¡#¿°ïáÙ\ 5`Ó7zÿ    p\1fª#\ f®ûºoUy}úøÓ¥&\14\11B\ 6AÑÊ+H"O=ZÐ\86:\1eº÷1A\8c\15\14X«ûîØw_\93¿î\ f÷ê\14\bã_q»\8f¯Ãy7i;ÑêëÐMtC\vmBI\9c\8diEïv­òÎÝW\87ªÛZ\12Øôly \1eªúUke\96,G¿\eÉrZ\1c\1a\9d\17\ 5ýZ?\f\8d
-\18\@1±:\9f\87kíì;õW¦\9bR\ 4ÌÿÇïó=z\bÅ[NÌöè\9fçúc¯\15\9a\1f£\94Ð$\9bé\14\9cÌ\ 4\17\96ºD2[<Xø\87¢.\9a\11ßÂM\15d\ 5\v\v\84H1xÙ·72þþ\ 5íY\8cû"~v+\10       QI,ÄED\ 4gg·\ 2\91    *¬¢Kô\8a\8b\13\91\8d\fbA\8fS¾adøbr\1cp\93JSfI&%\e\18\95\11\16\9bæ\9b\19Uc¸åüÑ\ 4\ 1\1f§º\éÝê\98\177,Y>Ú\1f\eòvÉÄE  ÙÊ\ e˾\19r\ eKør\10OCq>$:û¶´ÙÎ~`S±]è´\eß\ f«ÊM\9aÍM\86\1f\8eÒMåN¬Ö\87ªÎ÷nÎíX\14}Ó¨ºpw\88Ö\9aT\10!b§ÊÏáÁ\9cÅp}ÚÚAâú\1d7Ûöûνë\9d[|\1a\14°\17\0CÊåÃ&¯vë\8f°\91vcwwkß\8e\83\9c6ùÄ.\ fØÆ»fÿ\0ã¦ØÞ}Qã\86Á!\83£2Tú\97»«/h~«¶
+xÚÍXË\8eÛ6\14Ýç+¼\e»\1d3âC/\14Y´hS »\ 2\83n\9c\91è\89:¶èê1i2È¿\87Ô½\94I\87\1c\8d%\8aWä9÷qx­hñ¸\88\16¿¿\8aðúËÝ«×oY²\88I\9e¦Éân»\88\13Âs¶HiFX\94/îªÅfIW÷w\7f¼~Ëù"Õv\115vL\90H¿\11¡Å»(¦«uÌé²ØíTYô\12GM\ 57\9fd«&\ 3¸y\96e¯Ú\ e\ 6ýû¢7wlù¡^Ñ%Ø°å\ 3®ÓÊ~h\eYé)\ 2h<Ôk\84³Î\89HbÀÄfQ³#êz\vWý$Ú4ï(\17\7f÷j¼´²¨îѨ;r1¯Þ°ëÕá'ËB¶Ò5fËFCVpÛÊ®6\f\ 6       ã\1e=RÉRUr\96\97\0Ô|\96\17wxõ²\9d\82±9\14]\87\Ô³l'Ìèã¢yÄÛ\b\0\12B`\9cÂååJ×\vc§Ñ¸°ã\0l\11\13&R\v[\1cak¤m_÷µ\82P\94jhzí¸{\80õÆ\82\f Á%]4I\0M:\8b&>¢ùð¾ÞÉóÀN²c'»cN7§¯u\98[\9a\8d\93\11É\ 2\0\91$!\82f\96Hr&Ë\9dd°¹úI£ÂÜ\86\aÁ\80§\91\ e\90Ñ(\0\8d\86t#§\9a\16³ØÒs\99úϹ4ÕU´2²ò\88£\bfm¢nÊ÷÷kz![q\7f\ f<\v\81\ f\95\19¥L{\96[ôÙ×\9e\ 5M;!1I\81êáÁ¾h\9f$
+ãM\85*0Í\82\1cÜ\ aqx,BEGCUG9'q&,\8bÜ)»^î\ f\bú\8d\15Þ\ 2\81n[µ\a\1e\87B\87 |\92(ØC§\87\b#\8dÝdÑ\83ROð`c\ 2f\94o\90P3;\9dxfÚz\ak¤+\8b]\81®+UÓËÿú wDïqOB4YNx<\9dPѹT«ï­Û»R6\15\12\99SÈÍHã\83j+¨è\83lQ\11Vf)31%â$£Ñ\85ªB¸^ôR7¤\96k\16â\1aG$ft"ë\9eÇm[|t1×ÛZ\9fÏF\8a\8e\8a*wr/õ°Á\90êÔ½]¡NÔ÷?\ 6Uï¸Å\9b \1f\84ä\11
\15MR"âIwÝ\1c¬u\16<Ú(ìU5ì°V6­\9fP\1a«K,(¨v\1f¯G\88®p&»X î£×è½\15]¶§\19\1frûÐMÙ\ 6\8b0UÕÏug:!Õ\ë]F\ 3éÂBm\10\15    aÙÔ/|\ eî\806Þb< 1L\ 4\8b/&\94Îì\80\ eqh\87`yG\9cä"¾¼\ 3Úx;¤¡\1dBE\951\92¦ââ\ 6hâ­\9f\aÖç¡<Kb\92ñ)ï)\9f\13¨+[6ç\88·\1ae$éT¦P£Àz\r\17ú\r=OÀ\eHÈõ\ 6§³\8eµ}S±ëÔ·tP§ÝùË\\80l,X L8\9fíU¨øæfÅ    Ð÷u*\16º\bA\8fç;\15\1aÿ/Z\15K#     ÑHç[\15êô²\9bç\7fÇôöÕøÂi\87\86ãQ×ô\13ïÛÍØÎ\\97á^óaÙdW\0O=àN÷\13Àí\1e\1dÆ2\8c|¢O\97·ØË_Ù-ñü
+ÀÙ\99\7f\r\1ex[ºS>Ü\fÍÐÉêæøò˵n\14Q )\ 4\r\9eÏ\82¤ñ±³s\1aXÈG¸\9f\ 4c:`1{ÕÐ\1f\86þë"h\86ý\83<\16ÄôïÞ¬c\8fé¢÷\9aÕàÉ\fè<nÁC8¥$É'yQÛm'mpwõ¾îQàÆîzÊ\aùX7§\r\99\9cýÁK\1e02¯cbwõ'\89¡\83Ö#\84\1fayaàóø\8dãmÓ\7fâK?g0\1e\7fý9ßê»P¬+Ål«ÿy®½¶¬\82Â\19e\84¦ùL[\ 16\1e®\90¦\89töTaîÿ\92¦lÝ\12?9wM3h?7°å\83\1e~\84[ÕÈ+\ f\10\91\85PæßßüØ\8f<Á>GG1â\17\97B\13\17U\1c*}\11\11ÁÙÅ¥ÐÄC\15:ñãàw4ND>%\12sú¡ê\8c\93ñ\ro;LQ\1aëc\98äqÌÆÄÊ    KtÃÎ4Õ\ 4?¬þ¬k\81¥úïWS­Õv}(Ê\15K\97OæÇH\81\99ÒåQ¡\8a\99a5´£\16±\94/GóÌ5ç£\0\9a»¥QAó\82\91h3Ñ+\18?\8c³\12\1eêŵZ\8cÿ:Ì\19o\1e\15`Ö¨}Ý\14;x\ 6+\96åж²)áC¥ñ&\15D\88\ 4¨üênÌY\82_l;3H¡\1f\82§Ý°ëá^maòy$`>)\8cRÌÇENV\e\ e¸\90\821|.6w\87ÑNiY1Ó#¶éó¶½.\98\ eSb¾¦Q\1d\861 c ò õow¯¾\0§\80Æ\19
 endstream
 endobj
 1037 0 obj <<
@@ -4854,14 +4858,14 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 1042 0 obj <<
-/Length 1138      
+/Length 1149      
 /Filter /FlateDecode
 >>
 stream
-xÚíXM\8fÛ6\10½ï¯Ð-R\17fø!~(@\ e\14è­\85Ñ\8bc\18\8aL;êÚ\92!Én\93¢ÿ½C\91\92e-m¯\9d\0E\8a\9eÈ¡È\99÷f¨Ñ³q°\ epðÓ\ 3\1e\8d?L\1f^¿#* \ 4%\9cÓ`º
-$\r$Q\88â$\98.\83\90@,\9ap\8eÃU\191\12VÛ´\89&LÈ\10Û¡ÞÁ\88C\9dåï1\89³:\9aO\7fî#\80{>t\8f\83        M\10sÎßE\8a\86¥õHÁÕg]\95v¶Ô\99\99\99ImWviÕäM^\16ÎÖ\7f¦Y³ùd\8d´î\8eÕY\95\7fhOê¥Û\98V\9b\WÖÈ\v;6\1fµ\9d¼úU×ùrï¬# 7Ñ$Æ"¬ÜSàd°\93\18ű°àñ+àMEXëÌÀBp\80ñpj\1c3\b¿*7\9b2¢*ü#/ÖviWëýÒÒêÙY\1f;\88£\8b\bV\9aÚ®4\9d\9f:ݺMéf]VyóqëB}_×û­~3Ê7eÃ|\13\89b\16CÒ        \12Âe\1dÊ$G\87`Ëð\10A\8a\11xÔn\9f\15s³{\IJ\11ãªÛ\94\8fa\1f\ 1ñÞ\99\90÷ÖÇi É\91¢½\8f\99Kö¢/õ¢Î?ëùE\82\13B0\ 2B\8e¢º\8fâá\1e\8aÝÝhW\ f¦xp\13Êê2\\16\92/+H¹ZÕºñBæ\f\11HÆ9ÈîÍXçEán¥¹âéÒÎJ\0ÂÀs_²vµO\ e\15\ 1G\89\94¢%\92H\94\0\ f"\90P.ëÄÕ\98\ 5ðLbÒBO\90\8ai\a\88¼Ç\9c@7\81>2«\e½\9bÛù[·T´6\r_;;+\97úC\19\91°|Z,ó­.jóþ{á¸8\93\ 4Å"¶ÁèU8ô\b'ot\95\ 5Î\1d°ò`\1a\87\99µ)4Ø*\80\93\16kgaû\14!4d5qNÿº\86\94[\1c¬ë/\ 3ô±\a}Lળ\ e=;¢?Ø\9bg!袩>-\1a½\1d¥×\16z¼}U\95[;Û¥Ù\93\99ïëö~\98i¶¯*pé\8c¶"å\93KZaÇß~±ÙÈJØG 57>â\ eý\908¿J2>W¢ßÏ\95\b\88^¨OG`\ 18\aWêbÅ\86À]uÄ°b\8e\8cô\90\11\14^÷¸#ÃÏTìà¸è\8dÞö©\86½¸{Õ\1fáF>\ 2åïf\0»½bGOo}\90]Ü!då\83'PLú\ ew\ f&Àc`\8d0=z1Ù`Ã\94%\1eL\8aA×å^LÏnö  8s%<a\95D\18«\93T\10ì)\1fñµ/.\11\836íÀüíóï¶\9cø§>ÿÌã\9f   D\12uÑ¿Ûrâ?öù÷½LT"I{üâX¡eYh_4wà$\9a\18\13Å\bý\8c
-\ 28\15è:uT\8d±_5\92¯ª\1a\99Ä­G    \8cLçiu\95²ªÑ<\eªFc÷ªÑ\18©[\1c«Ævc§\1a\8dÑ~
-a´ßQ\98\1cU£±\0\10ô!óa°Â\91SvI8\92oN8ªÿ¾pLþ\17\8eÿ\82p\94÷\bÇ|(kÌ'þe"ë&9øM\b*\8fæeWI²\9b\ 5ÕUÍ{\8f¦ò\14(ö¨à\9b\ 4âíúå\8a\8aò(Vq\15Ð\97 x|¡ü\94\92Ü$\9b Z\8d­è\19åd=\ eÙ««ì\a\127/²j(Ïòù\vÙµª\10:\1e\12ü4ù\ 4\7f=  E|\12\8aÞ"¡òÕ±\9c.\8f]k2ýÓ\8c\e]×Ý»\94\16'¿rÛs¤k\ 2E\93\17{÷&¦®*µ)\90ÞY\83¾T¬±«\14äs\15øì\9fÁg_4Â\11\91¦m\13\8a\83_`ïá\1f§\ fÿ\0\94\15\v)
+xÚíXM\8fÛ6\10½ï¯Ð-R\17fø!~(@\ e\14è­\85Ñ\8bw±PdÚQ×\96\fQv\93\14ýï\19\8a\94,{¹öÚ P¤è\89\1c\8a\1c¾73\1a=\e\bG¿Üà£ñ§éÍëwDE\84 \8cs\1aM\17\91¤\91$
+Q\9cEÓy4\8b\15\12\88%\13Îq¼¨\13Fâf\9d·É\84       \19c7\98\r\8c8ÖEy\87IZ\98ä~úëp\ 3¸çc÷8\9aÐ\f1ïü]¢h\;\8f\14\}ÖMífs]Ø\99\9d\18·²É\9b¶l˺ò¶þ\98\17íê\933rÓ\1f3ES¾ïNê¹ß\987«R7Î(+7¶\1f´\9b¼ú]\9br¾õÖ\1eÐ\9bd\92b\117þ)p²ØI\8aÒT8ðø\15ð¦"6º°°\10\1c`<\9e\f®_Ô«U\9dP\15ÿUVK·´1z;w´\ 6vÎÇ\ 6îÑU\ 2+­q+mïÇäk¿)_-ë¦l?¬ýU?\1a³]ë7Gñ¦l\1co"QÊR\b:ABø¨C\9aäÑ!Ø2>D\90b\ 4\1euÛgÕ½Ý}\9cIJ\11ãªßT\1eÃÞ%\9c\ 3â­7!î\9d\8fÃ\8b$G\8a\ e>f>Ø\ f\1fLùYß\9f$8!\ 4# ä)ªë(Ø×F·º³É\83\9bÓpY\8a\88ʾ.!õbat\e\84Ì\19"\10\8cç û7cYV\95¯J[âùÜÍj\0ÂÀó\90²nu\b\ e\15\11G\99\94¢#\92I\94\ 1\ f"\90P>êÄç\98EðLbÒAÏ\90Ji\ f\88ÜaN \9b@\1f\99\99VoîÝü­_ª:\9bƯ½]Ôsý¾NH\?Þ\11\96>Ì˵®\8cí\ 1AHþ®I\86R\91º\véYHt\ f©lu\93·Ú_^zpõÎ6\ f;ëÂhñ5\0\96ÞÂî)BhÌlâ\9dþ}\ e)w8XßcFèÓ\0ú\94@¹³\1e=ۣ߹ês\10tÕ6\9fº\98µz}\14f\97ðã#\8b¦^»Ù&/\1em\11ØùÖtub§Å¶iÀ­7ºÌÔ\8f>p\95\eÿøÍE¤¨+\88P«?¶!ò\9eÁ\98<?K4}.M\7f>\97& z"G=\ 1\e#À:.­\93\99\e\83÷Y\12ãÌyB2@HPxõÓ\9e\10\7f&s;ÏG¯ôz\b7ìÅýk\7f\v\95y\v´\7f\98\ 1î®Ôö\9eÞ\86 û{Ç\90U\b\9e@)\19ºÝ5\98\0\8f\85u\84é6\88É]6\ eY\16À¤\18t`\1eÄtXápµï\1d\ e£-?gÛ\ 2      \0P\12\ e\82Bp \91$ÔÔ¸D\f\9a·\87õOÈ¿ßrà\9f\86ü³\80\7f&\10ÉÔIÿ~Ë\81ÿ4ä?ôjQ\89$\1dð\8b}®æu¥C·ù\ 3\a·\89c¡w #¡ÃQA\0§\ 2µ§öZ2\rkIòMµ$\93¸ó(\81\11T\82Ó\92ÊiIûl¬%­=hIkä~ñXKv\e{-i\8dî\ 3   £ûºÂd¯%­\ 5\80 +ÙO\85\93\93\9c²Sr\92|wrRý÷ådö¿\9cü\17䤼FN\96c\91c?ø/\93]\17      ÄïFb\ 5\940;K\94],±Î*ákUV Qi@\1f_$\e/W4gtU@Ç\8a³\80¾\ 6Åí\v\ 5©\fK\96ì
+!\ 5fuZH9Çã ¨³A\18iß²*\9a\11\1a¿\8cd'\17¡\ 1\ fs@ð·ST$¤¨è%\8aª\ì³êãØw*ÛNí¸ÒÆô¯U^\1dü\14îÎ\91¾\1fTmYmýK\99û¬\98®\vl\9cA_ªÝØY
+ò©(|ò÷á\93\ f\1cá\88HÛÅ        E´ÿW@ààá\9f§7_\0Ää\13^
 endstream
 endobj
 1041 0 obj <<
@@ -4925,15 +4929,15 @@ endobj
 /ProcSet [ /PDF /Text ]
 >> endobj
 1054 0 obj <<
-/Length 1291      
+/Length 1296      
 /Filter /FlateDecode
 >>
 stream
-xÚÅWK\8fÛ6\10¾ûW\b\ 4Ä\8cø\12¥\16¹\14ȶ(P\14m\8c^6\8bB\96i[XYR(y\1f)úß;äP¶ìUÖ\r\16H/\12\1fÃo¾\19\ e\87Ã8Ø\ 4qðÓ,>ûÿ¸\98½½¦i@\15aT\8a\ e\14\v\14M        \8b³`±
-nÂ,\9aK\19\87?ëª\8dæ<\ eu4§¡\81f\92\84úÓ>ï˦î¢ÛÅ/ÏÀ\11Y\10.\12f\91ã\0\16\91,\93\1e\98P\84þí^\9bûR?\9c\80Àb\19PJ2)\87Å,#Ü\93Zlµ%\93\8d\18¸î2\9a3\15êª\89à÷\80c¹q²i¸ïô
-\87Ê\1aÿ;+¶¯ú²­<^[å\85>\80Áì\13¶û­\aù3JiØ\98\85\8aÆ©\é\ 2û]\8b\14\8aòcLEáÈ\91h.X\16þ\91\ 3\8a±VZkÀ1B$hN¿Ík\84/ª}ßkSÖ\eϹ=Ó¿ËK/ê4¥\83¦\88\86¨\fåWH«ØïtmÍè»70A\19\0\81¤~:sÍJ[\8c\1aý\93\86@Óû#¯ý\90Ñk\18¬\v\10\19\eà÷òÁ¯`I\98·­iZSæ½&ç;z\1e\ e\82\924=\84\ 3Ãp¸\8e8\r÷uq)°¾\14\e\04DVY5\9b¯\8e*\9a\85WváÇXÆ\8fð¡Wv0\r×\9e\13\8a\18Ýï\8d\v;\98ê\87\85¸ùMW\1e\ 5\9dû÷\10\8bNØ0\83\8b,>E\99~k\9aýfë\17X\9d(Ò¬\87y\8f¿-7[Ýõ8Ûé\1eG\97¥o@hLl\8e[Í2\11ö\96Ä\83åÓ|×áPÑì öw6&0Np¸Ä\8eÞèÈ\1dv;v\1fI\11æÕ^[\1do¯¹\18;\92¦\8c\b%@µSyóx\8bR§î\86¼"d2\b¹c!ðDY\G\89[£'\14È\94¤\^ÀgÐL\ eB\95î¼\95x¾,øgm\1a\1cs±o\87F±ïd\e\1cÆ\r\84]£DñÓ3k\91\b\92`I I¦Tb9Ì©$I\9cÂ?!I\9a¢0õ&ñ@\81`L\1dYAbup\ 6Å]\97\10û7¨ú¯{ë\94[\1c{\87¿ø\87)\8d\1ei\9e\11\91\b\84c\17\15²£Âr\8d\7f\e\91¶Å\9c\7fqªÃÿÆh8Ð\ 6;èNÛBwúµ\1eíïK\14}Xò!VG´Å\ 4m! \13j ÍG´ëÂhÈoý\94Û&\1då¡Æ,äE\8dâ¨\11²BYä\15vºm¹\1eT\ fîjj\8d\rw$­'ûfð\99\9f1p\84û7ØnóÕÊ¥ú\13\89_?,±ñPB¶>úù\82\85ÉE\83äÑ £[ØWl\ fÿ®×-¶0Dþ\9b\1fÕÄn¦\13\ 2P*\e¨ü3\85îEÆè\19\9eCN\12ÉOTÐxJ\87M\ 3\87\\94\1cÍ]Ùý\99È\e\88\8a\ 1\19\12H\92øÛàýcnsc÷ýÙ\rÂøIJSD@¦:Y      ùD½xí@3åt 8\6±Oüp\89¾³?å\8fû\17uÏ=\ e*O_¥\9c>SN¿Fùë,gÏ\94³o§\9cÿ\9fÊÅ3åüÛí¹z\9dò×Y^ë\rÔ«÷¶Îð\95ãD¥tF0y~"N+A[Í1H\1as\9eBU\97\1e\vB_[\ 2WÙä=w×ãìýböif\89Å\ 1\85ÊT\10ÆíS(\83ì\11\14»ÙÍm\1c¬`\ eÒ\9a\ 3{p\92»\80\93LØ"£
->Ì~?>¡F\ 6\8b\94Ð\94;(\95Pd±¯Û¼¸{ÑQs\95¸uã\9aôê%Ê\94\93Øî\90\8c\89TôeÎ\92²3Îg\9b\94\10 \ 5\96ÅâjÌÙîÊÝI1,¤«\v \90?\14\8aõʽ\1d`Æ^xv¦7yÝUP4øîÖ7\1cb\1aÞ¹\8d_áز¬só\84ëáJ2ºóÕèð¢\ 1\19W\vÃ|\8eÝÑ;Ì]\r°{\96þIá{x\9bá³\10\1dü¸\1aBÁv\92QmëºÞª\ 6{X?Cc\8a\9a\1dÇ\87¥\ 5]ZÓ\9e°}X\ 6\81\88Á©ucpÊ\93p5\80íû÷Cy¨ÅùèX¨áyk:2ù.
-\18\83\eÒ^ÌJ\92\18î3¼ÿؤ0DÒ¿D\12Ù1
+xÚÅWKoã6\10¾ûW\b¹T\ 2Ö\ñ%J-öR`Ó¢@Q´kô\92\ 4\85,Ó¶\10YòRr\9clÑÿÞ!\87²eG\89»\b°½H|\f¿ùæAr\18\a« \ e~\9aÄgÿ\1fg\93÷×4\r¨"\8cJ\11Ì\96\81b\81¢)aq\16Ì\16ÁM\98ES)ãðg]m£)\8fC\1dMih \99$¡þ¼Ë»²©ÛènöË3pD\16\84\8b\84Yä8\80E$ˤ\a&\14¡\7f{Ðæ¡Ôû\13\10X,\ 3JI&e¿\98e\84{R³µ¶d²\ 1\ 3×\9dGS¦B]5\11üö8\96\e'\9b\86»V/p¨¬ñ¿±b»ª+·\95ÇÛVy¡\ f`0û\84íníAþ\8cR\1a6f^z¡¢q*\17ºÀ~»E
+Ey\eSQ8r$\9a
+\96\85\7fä\80\95Ö\1ap\8c\10  \9aÓ­ó\1aá\8bj×uÚ\94õÊsÞ\9eéßä¥\17u\9aÒ^SDCT\86ò\v¤Uì6º¶ftí;\98 \f\80@R?\9d¹f¡-F\8dþIC éý\91×~Èè%\fÖ\ 5\88\f\rð±Üû\15,       óíÖ4[Sæ\9d\11=O\aAI\9a\1eÒ\81a:\G\9c\86»º¸\94X/å\ 6\0õ\99UVÍꫳ\8a\95]x\eËø\11>ôÊ\ e¦áÒsB\11£»\9dqi\aS]¿\10\83ß´åQй\7f\a\99\96ºì\84\80\19\dñ)ÊtkÓìVk¿ÀêD\91fÙÏ{üu¹Zë¶ÃÙVw8:/}\ 3Rc$8n5ËDØY\12{˧ù®Å¡¢Ù@îolN`\9eàp\89\1d½Ò\91Ûìvì!\92"Ì«\9d¶:Þ_s1t$M\19\11J\80j§òæñ\ e¥NÝ\rç\8a\90I/ä¶\85À\1deq\1d%n\8d\1eQ S\92ry\ 1\9fA39\bUºõVâþ²à_´ipÌå¾\1d\1aä¾\93mp\18\ 3ìü  Q£DñÓ=k\91\b\92`I I¦Tb9L©$I\9cÂ?!I\9a¢0õ&ñ@\81`L\1dYAbup\ 6ŨKÈý\eT}K¹øëÁ:æ\ eÇ?à/þaL«G\9bfD$\ 2!ÙE¥ì¨´\âßf¥m1çc\9cjñ¿2\1a6µÁ\ eºÔ¶Ð¥~­Gûû\12E\9f\9a¼Ï×\ 1m1B[HÂ\84êió\ 1íº0\1aθîE×ÑpÔ_\1eqHF^T,\8e\8aá\80(\8b¼ÂN».\97=\83ÞkM­±áv§uh×ô®ó3\ 6vs÷\ eÛÛ|±p§þ\89į\9fæØØ\97pp\1fÝ}Á ïÉä¢Aòh\90Ñ[\b/¶û\7fÛé-¶0Sþ\9b\1fÕHPÓ\11*P\f(\95õTþ\19C÷"Cô\f·$'\89ä'*h<¦Ã\9e\b\87c)9\9a»°ñ\199B¦\94\11\15\ 32\9c%Iâ/\86\8f\8f¹=&ÛïÏ.\13ÆON7E\ 4\1cZ'+áhQ¯Þ@ÐL9í     ö÷Nìï\0¸O?Ø\9fò»þEÝS\8f\83ÊÓ7)§Ï\94Ó¯Qþ6ËÙ3åìÛ)çÿ§rñL9ÿv1WoSþ6Ëk½\82ÒõÁ\96\1c¾\88\1c)\9aÎ\b&ÏwÄiQh\v;\ 6\87Æ\94§Pà¥ÇÚÐ\97\99ÀU6yÇÝ-9ù8\9b|\9eXbq@¡H\15\84qû*Êàô\b\8aÍäæ.\ e\160\aÇ\9a\ 3Û;ÉMÀI&l½Q\ 5\9f&¿\1f_S\ 3\83EJhÊ\1d\94J(²ØÕÛ¼¸\7fÕQS\95¸uÃòôê5Ê\94\93ØFHÆD*ú:gIÙ\19ç³ %DB­e±¸\1ar¶Q¹?©\8b\85\ 1Ôô\87\9a±^¸g\ 4ÌØ\vÏÎt&¯Û
+j\aß]û\86CLÃ{\17ø\ 5\8eÍË:7O¸\1e®$£[_\98ö\8f\e\90qe1ÌçØ\1d<ÉÜÕ\0ѳôOjàÃ3\r_\88ØkîáÇU\9f
\93\fÊ\×õV5ØÃR\1a\1acÔì8¾1-èÜ\9aö\84íÃ2x&öD\fN-\e\83S\9e\84«\ 1lß?%ÊCYÎ\aÛBõ/]Ó\92Ñ'RÀ\18Ü\90öbV\92Äp\9fáýÇF\85!\93þ\ 5\85\1fÛ\9b
 endstream
 endobj
 1053 0 obj <<
@@ -6059,70 +6063,64 @@ endobj
 /FontFile 1155 0 R
 >> endobj
 1157 0 obj <<
-/Length1 2012
-/Length2 12103
+/Length1 2034
+/Length2 12198
 /Length3 0
-/Length 13206     
+/Length 13306     
 /Filter /FlateDecode
 >>
 stream
-xÚ­weX\Û²-\10$!¸K\b\8d;\8d»\ 4w\97àÞ@ãîî\1a\82;\ 4w÷ \81\ 4www\bî\16x½Ï¾w'ûÜ¿ïã\ f£ªæ¨Q£æZ\v(H\14U\18\84Ll\8d@â¶6N\fÌ\8cÌ<\0\119UU.\03#\13"\ 5\85\88\ 3ÈР lk#jè\ 4â\ 10ss3\ 3\84\9cÍ\0,L\0f\ e\1e6\ e\1e&vD
-\80\88­\9d»\ 3ØÌÜ      @-BóW\11'@È\1aä\066´\ 1È\19:\99\83¬!\1cÆ\86V\0\15[c0ÈÉ\9d\11 de\ 5Pþë\84#@\19ä\brp\ 1\990"23\ 3LÀÆN\0#\90\19Ø\ 6\11ø\97 )\eS[\0çßa\13g»ÿM¹\80\1c\1c\0Ô\10\914\0\88D\13[\e+w\80       È\14\11(o\vé\ 5\82(ùÿ!ê¿ÉÅ\9d­¬ä\r­ÿ¢ÿˤÿ\93\ 6[¹ÿO\81­µ\9d³\13È\ 1 gk\ 2r°ùïÒ\8f ¿µÉ\81LÀÎÖÿ\9d\95r2´\ 2\e\vÙ\98Y\81\0L\7f\87À\8eâ`7\90\89"ØÉØ\1càäà\fúO\18dcòß\1a ¶ýG\ 1P]]D\N\82îïuþ'§h\b¶qRu·û\87ô¯âÿ`æß\18b\8e\ 3Ø\r ÍÄÈÄÄ\f)\84üüïoºÿÕKÌÆØÖ\ 4l\ 3¹\ fì\1c\0C\a\aCwDÈÅ\80 v\80'3\0lc\ 2r\ 3\80Ü z\81\8c6¶N\90#\0\88\0S[\aÄ¿¶ÉÁ\ e\0
\15ú\eq\0\80¿\11'\0\eq\ 1\80¢¿\117\0\ fâd\ 2\0Å\7f#f\0Pâ7b\ 5\0¥~#H\aÙß\bÒAî7\82t\90ÿ\8d \1d\14þA\\10N¥ß\88\ 5\0\8d \1dT~#6\0Põ7\82̧ö\eAº«ÿF\90~\1a¿\11¤\9fæ?\brU\81\86¿\11\84ÓÐÑ\18\f6\ 6;\18;[ÿ\13gcù+\ e¹a`GËßÅ\10\7f\103\vä¬\91¡Ã\1f\ 1\88\#\aCc\90\15ÈÔé\8f0ûÿ\84ÿ~bþacþ;l        rúW=7ë?ñÿ:\0\99Ãø\1fÄ\ e\11clk\ 5yPÿÑÌöWÄÚú÷tÌL\90õ\99ü\ 1!-A¿\19 \9e\81þÕ\81㯼½3ä¹ý}\ 4b\84éï#\10m¦`\97?8þJÛ:ÿa\ 2\13¤Äì7#$oö×k\ eôg D¨ùoÙ\10{ÌÝíÌA6\7fT@bà? D©Å\1f\10²BË? Ä\89ß\8a9 #[\81\1c\1dÿÈC|û½YffHÁïVì\10.\e°\rè\8f\ 4Ûßê \87mÿ\95\86Ld÷;\r!³3t\0Ùük\85lÌÿ\13ý÷\ 2Ù cØAn\81íï\95°Aܲ³rþC-3$bÿ\ fd\85Xeïlë\ 421ú="+÷ÿ\ 4ÿMÏÌ\f)þÃff\88\89¿\89Ù!\87\1cAÖà\7fß\19ö¿j@.\7f\ e!q\84¼¢þQ\b1ÈÑÊÐÑü\ f\1c¿Û²C\86u2w\0ýq) ¦8¹Úþq\0Âáüû\1eCz:C^_\ e\8eƶ\ e\7f:\vÙ£Ë\1f\10"Øõ\8f§\bBêö\a\84tuÿ\ 3B¶âñ[3\84É\ 3äð·\82ÿû\ 6\17\16¶uód`\a0°°²@æe\87¼ó¸½ÿUfìì\0Ù\9eÓ\7f>\8d\90¯ÀÿbS0ä\93\ 1\ 2¹\81\8c\11\17fm\8dy\83,\92\eCJ|ÄòÆKáh¡\85Í\9a>Ë×uNµ¿\r\9c\8f\85¶*\1c\94±§]­Õx(KÃDÙ\85Û%v}"t\8chóR\1a\11?õ·ÿ\9c2ó¼ëb°\9bæÑB¨q\91&ç¾cGz\eø\13µµqúê\88\1dZaru¨$A3¿'ó¬÷g\8e"µ¨ê\1eÂ2     T\97¶K}Wz\10\a§\86x\9a\95Zhp-%+\892Z\8a}I\18\8a+ZB\1cìÊX \8fEèëfº¥sÛ6g\8c\87¼×_â\9fõ¡C\99m\ 3W¶6'}GnzF\15\12\eOXqÛc\9bâ\88\99¸WØ\9fóBgÆ\1a{\ f\96\83ºÜ.Eh\12\9e|Ëm´\8e\85r6\7fæ)âÆ|û)\96 \86îHXL\85ã½ø\9dë    \ i\99ªêÚ\rÞÜt\8a¯nB_ûDéͯ\8e\b\8dOb®$\81.\ 4? Aá×~Í\f\ 3´¾\16¡£\95oS*~Eï\9b\14Þø\90À\10\94Nc\97ÄlÈ_\18-wÛx¦\99\13\ f{\85ÈÇî7Ê«4\97)\9c"\940}îæ\87\v\b\a\19¾\88ô
-Æ©7\1c\\91zbº\91Ò\95NÏл\8a3\9cáÅ\91¢ cdàXe\89µfC\1f{\11ÌÌ×ÏÑ­oÐ\80«\ e??\9fÛ\19ð-Å\ e\913;Ö¤©¿\96C£áõËSv¾"¼\8d\80\93[N¹Êy¹\8e\13çO\902xd¶Ü9ã6¸¯¹À\1c\1aö\9d\96\ 4ùn\85\9dCÃNÓ!`?%Ú\ f\e\8c\91õQ\18\f5\aj!å¾~\867³ä\95¬\8e\1fò­íìá9÷é©s(q%ü6\ 3|´3ª\7f\86\86ÿB@K@4}ª\13åBv\14O\9e;Äû\ 18L<ªü­ß\14\18Á=s^ÿ.yo\94mÃâ{Äû\ 4(\8fCoY¥øÔó¦\12É\aï%343r\857ß³\13W\fL\ 3È®´Û\8b\95\ f\98J./\85\894\ f\81\8fLTÞ¼ä\9bhrÒe¡¼µ5Ö\ 5µ¼'\14\1dôþÔÝc@\ 5\91\bye¤y\93ËÃG\15cgÞ\80ä\18ÛY\93\1cy][\9e¸xI\rîCgà,»a\86BÙù\86\98\18Z{¦¥J\ 4\eï\9ed%\½o¬£\19aÁq\8d>áÒ>ü\ e!\8dðǹ×\8el8ªø\85Ê°Fs ³v9³\e¼Õ¼7áÜDpÖj\15¦ÈØy!»\93¤\ 3\1fé\96åúóm\8e\9c1d\1aÎö\93cf_\11|Þv\89\1aº¡Õ\9bï\7fí;k\r`\85Æ\970\96tkï,\ 3A/úX'mRÁ\7fJåo\85r8ã\1c\14Bï22*
-F}2\9f³\13T}~[d)g¹ØöKLMàÝÜmʺç\9c\ f\ f}uHöêªÈ<#:nªqÖ\17\ 3\aþ@L¨{aáÌ«\»\ 4\1e®ð~v\e\15r=¶\12©4µÛÌz\99\16sõ`GC\7f_w\8c½\82\85\0\8a³£\b\1df#ÂG¢\8eÛ\9a\13ÖÝâZ(gÉw7L\85\92뺡ß]\97e\1al\v\9e\150F\14m.(Ã\83àVO§a]\8f|B¬ï\9e¶YmÎ\7fù\rå§0@]òÔ±\bt\ 4û\9a\aö¬\98L\92S¸Ì4T°MwªPÖÚUÈTÃp\14\13ÿ\9aN·yÕ9\8aÔ,  v\e®\ 2\11õ7¦´òÛ^·Ö´_`Ý\0\1c04Éí£fF0\113BN\16Ê\16°\94õt\9f*$Sã\88*I¯F7:m2Í\86{\9a\1f\ 6F\7fµjûÿØu[.\16Fs\94_H Y\1d\vNSA+"Áj\17ÔîÔ\1dæ¬W¯'Ü*L\ 6\16Â\8aÎ\95\ 6\9dÙ»3r¾äv­¨G$\15\929ký8\84Â2ôj\9a\e\98\eË(1:*b:ÂâausSr\9bÈ;\ 4fïÞ¢\89ºS\99r\91\98H*ÿ WæÉo\8aB\7fP\91È·\9dOÖXuuÝ7Á[tÖ\14\e\1a\14      /´\f     .;\8fÑäç¹ub\84!\14i\ 4ÃÒ[aR30¹`¹%\93è@!Ù\14­ß¹/ÀÊ\942ð4Lè¡\15óx\81\8d\9f½\98è~z\16{w\ e¾j\80Þ£.øl83´Ôàã\1c#}Xþ3M=\1döh\96\16\86õÛKù!oðPð\ 3\81Óí\87CÜ)¤ÑÙbA¯
-_\8b\9brþùâ7NkZ/\ftðþÉC\19ÅDS\951D¸\ 3\ 60\9e I¯Õyú³>wTòçÅöÚâ¡Sãu³ÅzL\1cýl      Ä\8aÖz~\82"ªOz?\13,þ¾±ÈÊLO(\1aÁ,sØç°UýÀ\90\82j\87\íl\1eµ¸²BE\r¹\98³\94@\ 1Å`\1c\13LÓù$\e·[âHB\1fiY¨þþ\a\9e¦CÔÜ
-ÑàX&\eRÓ(ÍÁdß>õ\ f¡\95gìA);Xr\187òA9\º\95r^áâ=_S\1cÞ¨\95É{úùæ-é{Ñ\19\90C5\99¨Ø5\8dýà­WRg\81}TCY¼L¹óÐghé~ù;\95ê#?ípt1`\17P\19­ÄÔXw\ 2~Ò/þ
-=\80ÁÔhhýH¼ZÚi¤i¾Ãäâ¬<áO­þ\8bé&&zK\87\8×ÅH)Pýx\8f^\wrBeÐ0ÿ+Û¢ÞÔL4\99*óZ{\9a³ÐºP\80\84ݱÙ\f\9b5_ë\81\89w`èʳ\90\0\ f<Ö*ækXò52ÀÈúbð.\11²\85\14»q1\97\8e    \95ÏëLbÎ\13Õ~nGô\93¢}ÏH>×àq$\9cé@'\8d7\ 4KX»w\15Úmzª\87Hué,rí³^Ð%ò1u\88\97\18\fauì\1fgÌ~\84=\95äÆÜQ\b\80R\9bxgaS~öJ{LW\ 6r\1809ܦ\91\aá\99^\11s6ÞD\16YÅå®\18ù\97Áå.¯u\8cC\838ÅÖ]~v\11í
-^\ 4\88ÔÛæT·Ï\fêñÿ¯«\ 4ó|$\9cºÑ\11Tï¢J:Ñ\ 2\9a\9a\9bÀ3[l»§_õ\14\97ë\14õf0§G#\b\9d\12\16¼!¬?on\16wyQÈÆ?ù\89ݹ&l¤CSçH®Ú\vÀÆZJW@ì'Â\96}\91CãÔuô\83\8a\9e¨KÚ
-\9bF.ë\9eÓEÕ}\96x¯,[ø\89úõ=£´]¥R©ëûe¬\ 4ý\96¾³Ê0\15¸¨êá´5m\94½+¾Ó,ÿ\84\17ªk]°¤jZªK;9{Ö\8b]mÄ1ý;\87{,M\84>\ 2þH³-¾ï\e»c\96Ãw·b²\1fì\7f©aÑpIU\8e|Afm\16ïF\ 1çÝ0N³/íîx\9d°\7f&HwÃBÃh\12m¦CæyÓì"«µ¾ín0\95ý\1aOç.wÝêô1éä\1din4)
\1dÎ+ÌëN\ 4¸¢Ü¼Ðî\94¯Ù\17E\riR{\9c*ýç©\81z\1e\bþE\92\vùMÛ\eoÂr¥\9f\93å\88¯ó:t.\8e<;\9c=Ñ8ñ\81ØZk\9b!ë¡?¬\80jÓƦ\99@ZRþrØ\8cÍËMC¶öjÕ\87%\9fôÆU8·f¨ª\1c
-Iɵ\91]\96î\88\1e[8\e\97¨¨\17/\16\80B(û\19¿W\vNù«\19ï§üðK®´\81Ѩ3Xm|\ f\8c\98:´òSס\1e\fú_\80\85\9f\89çìH\14\9d¥Òé\16\ fm¿>ÿjÓ{x\0õÍ\13¥~8áé,\81º¶âÐz\15÷hßLþ®:í=§Â'L\15$m\9fÞ ¬}R÷1=(ú-%õôü\0\vìµÌÕÆv±ó\90~C¨ÔOÉR`Ú9  æSÓNï:À±;%Ï·¶6àÄø\8aU;ïø\92B$\88ÓÀC\0õ\0&«hA\9d·k\94>¯#¢÷Ç*\8eðú¸Eü]TB,a\1c[é«
-^\v\0ó1ñÚÍëÀK\92\99\9e×FEi!Õ?è¬ÍÞ¤\864!5\84\9b+\f@\11\9a;äýb\13±å¯Ô\81¯ä\7f\v3d\987+T9̨\90Êê\81ãó`Ôô\99\88¹È®èj;"\13áA¶çû&½S{ëÆp<º\¾\82WÙ8Ç/X\1cñÁ'þ        OÁñ\8a¸@ýiZµ]´\97Öêõ"²\ fA]£\15Rö6ømR\bn\86>w\1a¢npà®\90qÙè\ 6º\1f\r\15Z\84ªz9O»$K«l»\ 3\1f\f\røæÑaõ\9bhÔ¿`Êf[Qa½\9dÎ\ 1W\9d5H\18 «$7ë;,¥ù;Q\8b\86\17ß}ÅØ\zmÂl°~\ 6`¿HûÚØXxát6ñÑ\99fx\15Ó²
-NàE}ÞFhA\91O\7fÊz·\#\8clÞY\1dã\1dð)³\19×\94\84'        é\1c^SÐ^¤Ë×þ5~BwÁÛõ\f      d\19u\92pëÄ¥ú5ÿþl\91e\18\89\93%\16{rP\95§s°\80N\8b½\17¢\83ú²¦\11ì9£Çwã\92æ\ eß\19\83\b\99ðì\17S\9c\ 1\lýÑÈi&\99âjË\r\1d\94H\1e~dís\8cçãOv\1fõç
-\99ò\15ç"±Í\8dVU_\8aB\ 5Ñ^­\8cuG\a\1e'çO2Ä÷õFf£\1f¨\90\85\89âr\ 5\12¯\e\97=R\89\9cº\16\87\9dÉ·\ f\82]W\12°=\ 5o]\ 4j\1cò^\1c\vf]m\18üfC\8ckOpâû¢\9f\9fëBU\8d\18ü\80\8b\8a#¿gNA{]ÝNÆæ©ÅÖ\13{\80\9cî_\9eZr/÷0?\ 2¦5Ü\81ÅPZ±!kTè­\87PnO\ f\e]u®\18\ 2\1c!o^Ïësâ\97CÙ)Osm½U\8a\\81¹®ý\84â\964^\9f\93\84¤ë\10Få{\84÷°0|\1a£¾hnG4Ò¥\b\16±§Ã4lQn\9d\10&AüA|´È6ÃðaX\92P¯÷Ñ\94b'\9b4´l\7f\14\1a\93#\95¦¾\9e9\96>\ª£\16\8eó45½\80\97\9bØ,ö\135Ê9ý:àg\f\96\8cò¬ÀÇÏ1\vR·Á£A\95;Mì÷\87:\89\1aµ\1cÈQBXº?}e\16\ 6(éj¸\ 3ÉØ.Úè\ 4ÊT¿ G^Ó䮼Ç}Ö­;\98\15\8e´\8eIúªÚz£rKªgÇ\8eðÀÎbÝ\e\8frW\90ÏKÄ(¦J\9f´3Ü\13\9d]å\SË7d£3÷U\9f¼*\10
-Iǹ¿áz\95\0÷\14#`/W&P\ 6¾Ô\85÷\0#\15\8e\8aïÂÏijæøÐ<\9cûë=\7f\aêrG\15tBx&\11/\ 2ÜGKDj·õ:¦\15-köȱ\96dBO\19xRÊz¼J35[\ 1\96\8fxG7~µÞ#U\9fx»cË$.O\8cø¢ª\8b
-\914K«\ eriî¯\ 6\98¢173,\16PïbÅtg(6Ƹ\93\12\93wàí®Û{f¢p\r\18\1csn\9f\13©\ 6\ 5\97\94ÔKõ2\94Ï\8c\ 6y\93E¤'¡Ó\8f\ 4^\7ft\97<¯$,¿\9e¦é\ 6Õñ\ 6ÝÀ\9fmq,í³\90ÃI\81\1e\10bøïu\89\81Ivø\1c~1áú¥Å\895¼ÆLbï³mPZÚÌUY]"H0ë\8c\11\ e'áýÕ\a\ 6$Ef¦[GÙr?¯ôê\aP`#k\8b¬-ZY\89\10\90\93&9Ñä¿Ò¨ð\13*sa¯\82/7Ãïñ\9cÌ\9b2\11\0ç¼Æ»·¶\v§\91\135hx¶\9e\f ýÒ\92d\9df\f\13¸\@3;\19\8fYK@«r}\8f¶E½ü\89\87©\94$@v\ 5q¦«®\12·åEÿ\95J\9fü"÷\93ñ\85]\av9&í\9d\82Èâ´\94\1c¡\14f\84\15Ü÷\96TØr\ 3ÿ±P-Û©¡èLjëe\94´\86rë;;ÖÂ+Ï7p7\eËr\88\9eÔ!ÅZ\ 3>\8fÂ\9e²ã{ßxÌ'=\12i\8b\19\81\98É=õ®G\9dÜ3\8aÎ%¡Wâ+<Þ\88©ú\eñ>ò\99¼\9f±\83U\85\94Âðb£³ºýï¹C&\1cõÒ\84ç\rÑ\84\99ü\17a¶Å\92\12µa\85Ŭ*Ù\9c°=
\87j|\8d\9fùϱ Ö31\1e«ÐoÔ^ûão\alÉ; ¦¤/¨A\99û4nEõlº±Æ\86jå.O_\7fz¿\19\85æ\83Àÿ\r~6\84éy\7f\19\98iÁ4iwM¸\10>V­÷;uó\8bÛ\bß\95±\82ÓÒ°&õö°Á\99Fkw¦T°\bò©£\93\15î\18muàjufÃô[Ä=(D*àþ[ßéqÕ»\8fØë\vÒì*\96ÊãÂ6\a\95*\13î\80&ä°\13óÇ;¥×.¤ÕÜçà!ñáÑ\88^\9f\b\9cFØV\18O²8¸\9fªa§Í÷s¨\81P¢½u2xÞß\fMDLÓ¤é\8d\93"ñBNÇV\_!Q<e\91\fq-ü¨mËeKZÒ*D\92iÁ?\19[3\8d8\83NåB \9d|©w\1dE­þF®\87hhªy\ f£¯$\99\r\98ñ\9eúþ˸\963ï[\17ãý·}íÜV2T5<ÿ+¤\8e\87go\1fL\8bqb\7fX\ f\17°nZ´^l¨Ô%\96\ 5ì²Ü:\1dÏ@;TöÍrÄ\8b\17\8d\r\83N¿õíç.¢l\ 2\9eÄ\8céàI\12g+ÌI\10_\r\15\88OChroÍ\84\8b¿ØmØ\15·´ÖE±ÁÔ8ª\ 3®¦ÊQ\16Yõ8\1e\91@\85ò\85Ù<ÐN´Àú&[3ÖÔÔ ±\ f559ÃX8\19ßJ%\11\85\87Svû¶\\993±dyÉ\9dMp\12­ïóè´ÜØ\ 4£QÙ0·\1eæ\ 1B\ 4E9=<\11ò\87\1641\ eËÊÀ·xÉäaöR©uà\15l¿\83Ô\8f\8eûñþ´¿\84Ƨg)\9eËø\8fâ\92\92\rç8vK´s¨äå§[\ËÀÌ     9__9xÃ#\a¸©n\1e¿\ e¼È~\8d##ÁÆ1þãÉ\85FU4~\8cþ\15s`Ûò\v4\14KÃt4k_\ee\1dt:¡yxW&9ª©\ 44öª\19¯      yã\fÃ\84\98nÜåâ#;w,1F\1aà%'ô0\88\13«ì\e¯\87ýºÔ\86Úò×"®"6¢\89NKÆâÒO}\82\ f\95sSò3þk.NmäEà\1dNÚV\8bl\86\87ÙqƼ\a4
-\1eø Ã·\940\ 6Pr4w\ 4_t\8bOPñæ\ fØBó¾\ 4xóå^ð\14\13
-ÍäÀñßÖÕ\1cb|\7f£ü\81è°Vp\97O!\fÄ\1e¾\ 4¼çY×·\9f\fs~'7ñÔ'ìïj?Ϧà¾mzp2É\10\11\86I¾c«½Â\8fx\13OÛõÇúÂ|\989ÑVdZÕñn\1f\8e        \b\1eO\rz,!AOåx[O\Wa¬ªf\98\83QÌ6
- !­\1e7¾Ól1¨/Þ\16\16Ä?ìärÈ\ 4*ªX\b1\90¿\91ëçÇ\8bMèe\1cè¬z\e}'\9f
-èG\84³PZ_\94\98Ý~ø*¬=¦ìâѤõÚ\91\95µgª
-µ+K\füÍÔ\95\9dÿ\v\17c\80ç\r\16\ e.\ 6\ 1\16;¡#Æm{JªÔ\15TQTKKwr¸¡¥Î:\15«\9627\9a½±Ü·3\996\86f\aËtDz#]Ï3yÍúW-\1eTY1!\18Î\9eaé&s"B\ 2\19-\8a¨ð;\8cäÌ1¾ZÕlO¢ÌÕ\83\889\9fÍÜbò½´@F>CÜEJ\0.|(\84\83\1fðR\ fÖ\ fÇ\ 4)W\8b½cÒ®møsj&Úèë8éù¾¥Hb¤ü3G\9a÷,ð¸ì\14)$'Þøã]7<µ¾°\8d
-FMX³Æ\95· \ 4`èr\aÞ¼\9a8\b.\b­\e\0\83#i\95Ä\828*ýþ:dfìÌ´vÎT3Ô\ 5¦ìà¤.\17ý¸ù(Ï\90\89ýu|\11ioà=]ê23e\ 5׬\ f\15\eu#|\12\16\1cE\84\9fD|\ f{í²þèQ2v¦\1e~`\7f¡\8aÅè\11Gw]>ÿÎë\99®EPd5ÚP\95\ eÔÒÊ\8e\eÐW²¾\9cÚ\10UuáÈÕÿS8\7fNU\95¬×§\87\8b¹sò~×Qz\8b\ 5í\11+
-©Ù\124Ø~\ 3¤\18\1eG=G<\99çÊ\96îID}\90ø|p\8c\7f#.ª@ôÀë˲§n\ fyÏíg\1f\ 6Û\9f¿\94Ú\94%ó³\93ãk´Õ6TÉ<¢M¸\eó\9dú/8*ï\1c\ 4Ä/ÇÅ7YUì\97ïóÐ\97vKöMÓ\rc\ 6Cq\ 1½\et\9b\13ñÀh2pÂD³Årb|h-r»Cù%4:­\WX¹c
-<öR\99\82(\8b\91°p\vì,>\11vè¯O\8d'¸&*¼ÕQ&dlÄ¢è\r\r\8aöáö\9b\14\87½6\1e\83\8e|hß&á`LzϺ6\17<Óôf\9fcâÍCé[¿ÜÛ¸\98\ 62\10\ 6i2\²$\vF\84\90Þ\97­tõ×\11íÄg\19\9eÞ$×Â]Í\9c\18\1e\96S±±ô¢\83\99\88\9b\1f+¥Ø[Ç[Xôu\95«=Qâ¦Ö×o\f\a E\ 1Çò\e\9cx²rW-NÁY£;ôô2åÙ5ë\9fÞÀß@\11ð£\9cðW\85\bô1e$í´\85}#yRÖÇ
-° o-uî\91ÃHd{#s\98Æî`ðÖh\vE$ų¤\9a:¹CþÞþÉi_\ f¶ìW\874³Å\11\16¨ÿ\91§þ³^»-\171CmÖÇ1è¢É0íé\87ë~ÅB]N]\94¸r\13\12ß*\ 2\18Y û\1cµ\9cJR\ 68\9b £Â¨ë65ûu¾\1dû¢\0¯'£×/@1¬o\8a¦~×pdÙûK\16\13¦4\12\r\8c{(~\ 2«¨_lg\98\81m<´¡kJÏïM\17í\87\14×Í\84ð¥C4Ǽ\ 1[\ 1õ8óá\\ 5þ^Q÷\91m±6ºÌ\1dÞ\8dès\8b!?\ 2H\837âyÏiaÂ\15|ÎPÜBè?à'å       O\ 4Ã³í²§´TªT"\ 6àô|\8c,a«ÁÖf\ f*f?\91\12\88²\ e0\8aÕ\13"KûDk%Áü\16\9fïýä\95\868»¬\ eñN0mðXCGKªj\9fô\f\87ëf\8eß\86!\9e\bæ'ÊOH"rZý:S;²ë×Óe>¡ob\ 6ÙÓ0CõD\82\8f\17\17\r7a&=\1c\ax®<\8f@ËDòqtµõ\81ȹ\9fû¼\90/UòES\ 3\b\1f\9e\82XèûWféÃ\ 4dHã¢i¥^²Ò»?²hÀLp¥\89q\967\8e\r\8cÜ\95/\10¿\87&µZ°Û\8f\12ÀFv\1d\8f\94¹FeÄ­WjÑâ<HP5*¼\9cê+ý%É´3\18\84¶'$\10¦Tò¹£¸]w\eÿáÓb\fòþ\\10®£rä{­!\ fä¹àIÊØ·\14;\84É\99\¡c\v¶=\91\8bB\98ÔÁûwB\8f\f­\91´ÔÊÃ8L\83qo\92\8a'«Úðr\9fùj\94\9a\ f&½p>¶\95\ 3\1eî\96/jÌÞmnöö¼Ç\r\9aÔ\92J#\8en\8cßWJëÇd*ø\9e,H÷\83V\8aàIF»]@\SY¼\16Ìü\928Ê&\99@¤¿]\96öµ©\82aimÑ\99±å\at;6A\8f[\ 4\87\17þAFé\82¢\943¿\ 6\93\ 2ÇöV\1e\14é\11{\89¡ÂSÝkñ>¦ÄË,1!ÖZX\8a\84¬ý$ôør\8cG\9dô\8cGâ¾\vZ[Ø~U¶Ô\91\81\8aÌ\98Y«âO\13ÊÑ_ÍõØit\93 3ç\1dZ8~¡òÙàòc\11Ï`I\a\97ôf¨V-s\f\8cn\98\13ö»û.\12|k­`HÀ­O7\R\95\eÐ/\97¢\f«\7f\eH½Ú=r\11ù\91\96Ó\16­Îä´k\93¦\bJWO¾GÒ±ãë\98¶{i¶¨Í ;G²\18a«N\90Ô5¶±ßÜ\9aê&¼\9b\8b9|\8dF/lTïS«2þ\18È«S§c³:d-­´xs\82Íë{ÌfL\15
-R4\87
-«VÖÒ ßaÜî\ fè5\ 1Y\8cG8ô=\9c\1aX\12ß\
-\9f÷\8bqKÈ
-\e²ì\ e0\94\19\83øÞwÎxP.æH¹º\96\93}ík#ö¿\9f\94\96á'K\9fÐû\14\15ë+\b\9b\85\10\9c5¶Ì\8e\1c½C£\99\95\81JÜG¥\9a¬_i)M\*XÄ\14TULNÞ5_TXo4?ËToÙL\165j»¾Ç"&4}\9a\96\89­ù\83}_Wt÷ExB\9aRê¬æLQ\9fîá~\18\8e³¢\94#\82¨y\ f\8c´<öÆ2bq\9bó\8bdZ*yo\81ëc\86\94µ0\9dv5\9bë\8eàª\15\8fµo­\91\97Ê\96\88xÎ-J uè°\92\99ëÛ×\94å\96/ßÉý£é¬èºÝ\ 3JL\83\95\18_ä¨\8e¾\96Fi樺L%IUdÑ\16\8cÌðæKì¼Ì\ 5íòTÜ'¾\82Ëôv¨Ã\91B¢§×\81köïÖiyD.ÉgwÇkd²É)k½ë5\8a\12ásBËÒܯ\13\98Â\10m\1a\f©\1f¶S\b©è\86YÆ«L¿Ue\18\84þ\82\9a÷-¡\ 4½P\93\108\9aì\7f\b\8cÖï9`\87\15B¸ÛB}ÔG\90\15V\ 3y\11K\ 5U½oÜ\12.Ø[¡\vô\
\83®ó'@ù±ã\0t%($¼/       \ 3       Ù1¡Æp\9fòb\ eM\89\8ebäA\a)'bÀrS¬\7fBQ\13q\91\1f]!#zûYC\98        üõ\87í\85Ø<\ 5ׯ\8ap-Xwey¬ãÏÂïÝ[²\93\10Ú×\12Nõ$O6Ý\197L\8fI'\992\bì\r_Iàs\81E\9cg©K:°6r\1dàß¡\1aÉ5\12õbìB>\9aq\19\fÑ@jV þ\ 3Ï4n¸Q\13UÐÆG©ABw¹D\"\84\e\18\95îÁã7ýh9\ 5Ó¹M@¾DfC\fAê+l·ð\8e,G\84\9eëü\9e\9c\1d]°vl;\13ÎÁYí1Rö\8e¹kEJh\8eå\ 2Q\81ë\fHøõËf¨\ 3\96®\ 28å\ë°9ô·\87\18~±k©Lí\9b\82Ég⣭ôõ¾.\85÷AryÜ\96\õÃÒºU×H¶LôõPº\96\90¿Y¤{\9dUm\87T©^ÉÙ\87\ 5\80^\86ê\9b\91~,h\13\ 5\15©c\93Ü|\80I­{±[ú4
\97r$\8fÿ¶çÓí\ 3a0üòQµµà¼Ã\1e²ÙZ\12A\15ÔA&2eÒð\aìòh\15ó\ 5\7fÓÎÍô¤xÌUCÜUÎ0¸ CÃÕ³ÊK\8cúØËH.\94\16Íc
-7e\ 3²®µx\8d\è$\9ei\92;\ fùðØÐ\90¥³\ 3$¢SÄ8ÿÜLKiWXTYã\84\9f¬}\ 5º\9d¼jZ®Æ \9aì7KëJUæÁ^^nË£æúdª\85°±^AàÃ+\ e\16÷\1cáï¯\83FÎ~\1a³\eú\7f8û¶\9aHU\7fa\85à\93À\12\98ûæ\8có@øæ$\ 6&\ 3ÎùÛEɽÊS6o\97\13\8fäsêed\85¾ågÛ\84ô
-Ò[?¹\e\1eN$6Ûj\9eÆ~\18(óå\1fÕ÷\1fµ¡ÉU~v\93p<\95ØØ,°ÐÍ\1c£\9e¡Ç\9d\19¹\ eÌ       ëÚÀ3ûð=Â<\1aÜÀ\vôú/¼î\92\84véÃ]ÃÆzq¤E\9cGt5¬L-\18ÿÞÃó\ e\1aïg¥\81\1a2¶?\86ñù¨ö\90\ f\19\93²g\98hÉeýôIålD˸Æ\8dÛuy4î¸Z\9dt¨Á\16Û\8d\82\a¯«n8Oa ü]\11\8akÚê¢\ eÅ\1eÿ·4úùyw½<\8bг\92\93[©Ì´\ 4\a]\ f\ 4\fI\187þ­\1fÍÔÄbÖ\9aikh|Ñß«ûå>ëÏ\aÌ\97\vå\e\92\rJV\11¶n\8aÍ*Ëéû ½¯\19Z\11ZJе/C\rÌ\1aòQ°\1fBn{\84\ 2#Är&jh²o\84\a\93BþçÜHqN5\16B<æUÛ\9aiü,÷\10õ\\8eîT\85\81\80¯ÕOEñ\86ò¼kð\12eи¢\18\1e\93Ók¯OA.Lue-w|øØÖÂð\8c\17»ÆíÅ\16zÔ¤áDlâ˽\ 2\83p-þ0Kë\e}\15Ð\ f;ÿ=[6Ù/_ï;a®±\r\87hÛj\9d\11Ò\9cÄ   üÊ®\8c\91\9f#·¸\0û©ÑÆîKw\91ß$\80ñK\ 4nR"\8a­è/o\92j[\9b©'ê±h­7ï\efúÆ#z?V9ú®9\96Â\bl^|UìS²ös,Qʯë"\fCûØÙûv\85¤\9c#ºÚ]&-+\9f\14å<\92\12ÿ\1c7Âþ\ 3/_\19ó\93JùU\ 6î¶\92\8f\1d\ 3´REÚ\819\83\82\1f\ePq\ 2ø\ 1\9aÊ\14v] jû=F{;6\1eÒpa¿ÌØÒÖ\10ahD+éYiÇvØ\ fG]ÄSI\87\16 ì·³K~¡CÏÒKÍ\96\80a\97Â\97¨blÌ\1a'tG¥\98!MÙÕ\83»hß|*=O£5Ò1ñ\8eú»\80*Mc>EÅÌ\917PÅð}\1e.n_¬n\81US§u\1fð)òn}"df\85\7f\fà\1aðØFÊ+ú\7f´\9f÷®ë\82ë-·#iþ\1a\ 3\14&®ÿzK3ç\ e\80÷-\b¼KªµÂXØ\93Öü04Éà¿ý
-ü1¢ùæâ¢]+rá¤\82\82éb¨k\87"â­$;nýÌÑä\90!+^\9bÐ\ e\93\96¾´\ÇÐay¨±ä÷¨41õ%Qf¦8Ü\93Ý>ÖÁ\8d°Ð\8dÌüR¨Ì\83ÖTOö\9c\9a\8e¨\81\14Áõ\fͪZ\95\90uóû\1f\v+ß39Å_WõÆNÇ\18\1aÀO\84TûIû¢IÄP1Qk­¤¿JSªr2P\9am{CU±¡VF
-˺\\ f´¨¹Öê¼áåF\11\/ê\9c_xá\7f*z\bBê.ï»!\9d\8e\11\90ÊÓË\174\fB\ 3\82³ú\8c
-\8a©\7f,E \7f\bbZÉ\11kûI\ 43\80)³!\9bÑ×Ù\11\1dÝ´/aqbú¡^c
\91¨\1e]Cèc\93/ê5\90°?\v5f ifç\92ÃË|]9\97êp\7f\81ØÓrX%\0\176? åæ\1eáõÇ\835Óï\8b\1eYõzY¸#!\v¡1bHl\89ßy0\11\f§îLÐ\fßùl}^Óf6\ f[\82ùôεã9\19û\83Ø\ 6ac\8f\12Jï¦3Tïe&\ 2NЪM^¹ß/ï'3\8c\13\ 5§»5¶õúÓ\99µ\10¼8\7f\96NY\13\93A\9aé<ÐÈWÀ\e\9aºò÷\99ëß\10¾¯\1eã\O=\14\rò\92ÝÇx!\86ÀV\93çÃâ\96îJ \ 4\80\ eétâ
\9fèÃÐ\95¾ëÌøÕÛ«»îÚ5\rt/\99½:N\8fq%\1a,£¹\8d\13\16(`\À\80Ê2O 'Á\13\14\eüxþ|\89\89û\89t;ò\81Â\179\eÓ)\93i®¿\99-8[ã]ðJ^\10Sùæ¬S\82jVw\r\98ÆÊõ))\98\8b.f\räåúyMÔîSÐÁ[î"»ö\87÷\8eÛ\12DUÅ\1c\9aþ}^jkPÃ<|\8d\86w8Ä^\845;ð\91èßÖ\95º¼VL   4í`ý\18\9e\ 6Å\ 5>mãSÏÙHX½\r\<{nÿ\81=\ 4h«¥é#ú\91Ö\85Q\ 3\8f\90\9d\82°qÊéÝ8\83N\18\ e\1eÏd\8a®âD\ d®m9§¬d>»¸ry´&óo©\1d¿0ç    %#´\8d\1dR\17\13\91\8cÍY æà÷\ 57Tç\8b\1ds\f¹îz]ôLå¨D²´Ú«lÇW\L\97µ\8c\9b\80\90Hïà\12-OÎ&¨\aWªà¶]÷q&\84­\ 6uÞ>\8b9b|}ó\101xC9îy-Qß\f\8d\r\81:k¿K­ä\9dY½j\90vG\96Ï·$¿&¥%]q§u¶«á\f q]\83n8çI\14 »!\8f\8f\92ü\96\80\86ª\11\a¢\121\1dV\1cúPBX_\92\ 35¾ôfquÍß'cAu\9bqµ<T5\rIIyÅîÈ0\18\ 3\97k\0ô!\ 5]\9fT\b£à\93ÐîÜ+t³\ e\ 6iÙ4=ô\8a\0\96_\96\1fj/¾\1e\10lV"\93®c¨}Äv\80ë\1cc_Éäò£\8f§\84æ\97\ 4q7\970Oz·­PÞÃ\9bs\89\9a\1a\9fÔ\14Ô\bÖt¹jÚÖå,æ`A?ñ}r;\8cY\92V\16¾µ\9d\9d:ï?\96fi¦Îï¼A{\7f\ 67\82å
-6\8ewd£ã\19J¯­\83+X;Tfôþäg·\vªKÜ\8ea\17\9fæ$1ðRýÞ¥\1dýý\8e·ïÀf\b&%7Ü\ 2wß  KÔ.\9b\1f!\15X?äÞ¤5ׯCùÙ¦\13$.&ÇÜíîF@½Ü/$\11\85¹tTéá\1få/@1\84D\86?\9bµ½&Tù\)áe;B\fÛ+B       zP\15\84õh\9b\a>÷N)Hï¹')h ÿ<\1d\89Ð@\9fàWÕ\97W!:{ò¦Xaw\90î\14È:\v\ f{u}ÇS\9a\97\96\7f\8fÙv ö@ÑM/ýã\11\1a\ 1ë\ 3\8eç\9bù \12\8d\0v¬Wo\97;\956gXÂ\82\15\14¼íî{\8c¾´Õä=\atê>\ fÐ\ròfú¬ïpÍE\90\94Õþ¬UFES=å@ÐüD\0t?qöD\9e,öEoÔ#þ\89ź¹\fó\11\8d\ 2gn\0§\8cýuR\98Xúª\9aîñ©\87"ÝFÜ¢ö\9bþ@\15éúgíp.\8bMâØ\8cShéK3hYeSÑ«­\88\96}£v´\9eâU<¡àÍ\aù¬    ¾Öp.
-þÉO "\83¾\17\(I0]8,#¦¼eÇàÂPøÆ\88z\8cV\b±ãçÜ\w Ù\ 1§v\1a´B\ 5ÏU¤Ç;á\9d:=´\19\89\ 6J«&\10\ 1MD\0\1cIéý°\85H3\9b3!Á]\91r1H¯\17\11ëLôt\87ªÐxÒ\19L&\18eÙTlì\99\8a\10\8fi¹0ÏVI÷檤Ò\vÏ\ eª.:áE\ fgc,9Úýúî\80Àü9J©^ÓÓ@Yøºmíà;ÅV\84Ûk®!\9aìbK§\14¿d\1d\ 6ú\19*?D\8d's×Ô|ì/S3òª&\91\9aÍ¡âÞ\9d\1fxÒAÐJ\82\85\94ä"w»\ 2þC\96C"Ä\8d Û\ e+\17\12Ôë¯U\94SnE\ eò\82ÔÅ\88s·YOÌ\ 1íT·SHèŨ\13¡2âåL&úúáx}»"\1f\96°\82µ\93ªGJ\85ÁB\95¶,{\80\99ÎþwÜåÞÖ\1cvaÀ©\80Û\9cP2\ eÏ->\11xW\8bãu\)·Tª\a?}·ïwUHÍnÂ/n»ãd £\13;]¥~ÕH\eh#£¯ï\82Y28\18­Ü\93\89¾>Ù\0ù.\9b\12¾DVãn\11\9c
-*\b\1fÑI7Ö\95åºDwcZÀoR´MÕ\8c\7f\ 3-Vä|Íˤ\8c\9e\95ùòþ$c\94D+\9e\ e\96p        *\0'Ë˺\11Uð𧨷ý½ \94âFÑ\0i\80\1cq\96Þö\97\8fs\97yG\85Ç\84\1fÏXS)\vÎï)-±\8eå~ÞBy\15\89ÏW\15ú\0;e\9f\7f1$:ê<ÊI*³h_f\1f\9cÌb\bb?\ene j>õþ\9c³Ð1xì\1d+ñí\8f§\98W\18&wg¾#Ga\v\9cW\15ýx\91òÎ*»³hý-=\95s6º8ôØ3ñøÃô#èiyñÊ\1fÔ¹iÓ­\8fO\9fþfXÞ0sY\89É¥"\12m\83\97Kb*Eì'\81_ÚÆ[\ fÿ!ç   l"fc4\e\11·\90fý¯Ò\ 3ß\82ºJ)\82«\9eû;ÔÞæ\1eP   |¡SëOî/\82\ foK[ÿ\89\89X(Mo:\8cç\1e\7fÝDVh·V\1c§e\96øÊ\94!éëô´\0ÜTX¦ÉMQE\8e¹o\86\ 6ò\96¤Ïª±\9d§1\87d¿ÅRm)X\ 2IÊm{\15\1fáçæ>V$òê\1cú\ 5cÇ¡\90\9c ¾U\16\87{}$+é¬\11ª\1a\ 1Ý
-h®¿\a\v¹ØûÕ4TÈ»$ó=/\93á\15"½N\16\8c|ZõO¾Lô\99êêÈMwµy\12H\8a\1c\rß+\96Ä\18Tl¶~Âv\94\ 2»ëƪ´ò\1c\98J-\r²\1cÂ<Ùn\92cLsÂ\a\91
-çÃêD\1cQ¾F\ fO\95¨µ\fv±Ì?f\92\10»n9ØÝ«R\0ò¶\89òȯ9®À\8c\84çö\8b\15ÉJM«ë°\81Q\1e\86;v|6\94\96Ê¥?Æ"<ºÛ\9cê\96Ü1\97¥\19BóY\93\9a\13çó[\91\94U\99ü®ä²FªÝ\91\90ìð\82Y\14³\v\1e\16ö@½Ð\98y!\ 2öõ\ 1O\859
-\8b7o.m\9aRÂT\8f\85~Å3ß`ÊW$,}XÒ x\ 4(ëÕ\ 5¾øÖ\17\ e¡¸©\85í\7f\17NgätIm\11ï¿iA\14¡¯Öëz8U +ã{Áp"ýu\90¿Ä},\ 6\95\91&SgUå¼»ø¶\ 3ý\91\9f\90Ô\94\13,\0$o¯r+§\91i\9blÌëlâ\16þ\9c\19\b\ fOÿp*\7f9ØD\1dÙ¨\93\19­\94ÆëÍ-zO\95Ý-ÞHýùEóæVd·3B¹\15÷à\fö,I»\9få.DfÑ'\eÆ\91©\83Øÿ\80jp&t5Þê\r]\13\ 5Á\97þ__¶\1apO®\9cv\rÞPûF\ eL\1f\91»:&\ 4\18æ\9f\vL\ 2W\ fd\v\92HßG\bµáW4?0\93º¢I6äÁøOü
-#\ 5\9fãHfQ\81ÊÓ\93)Iï\ 3\89\ 6ªS\aSÓF£\89)­%Ú_%H¢ûðdk>Wzò      Ú=X\12    \17\rcðº!ÚgfåôÂx¾\87B&"ì\ 4>ò«äö\92³ªó\ 5»\ e\90\b(\15¬ä¿En\9c^\99/V\13:/C½\13×P;|\8c8µÐ¤N\r\9c\99dlP}«·\9aö\ 6ºg¬úÜ\9c \ 2=fU\ 3\1dÐ8<U=ag&\97s\1dÑÇðDh±\86\91\7f¤á%j°0ÃÝÏ%\ 5,e{l\14s2\ 2\11\85äqå× sjìpéM´\7f\99É6ÿ\95¼îÞ)V&\ 5<\17\947Éëõ*¾Æsõ\9e\89\1cªÊ´p\81Ö>8sÒLe\80\15õ¯L\e\12¡dL\eéú%x\82\1eo\96\91\92?R2<%Ñ\fg Õ]\89Éôí\ eKÔÈÞi\82\81\ e\8a¨ãLus1µ¿\97åÅ\91     w¢\11\8då\ 3Ý\8cüûA\15ä#|´£¨¯x\8eôEËy0t,ïL®T\9cxC\ 3}<\ 4Ü
-\ 5¦\90éå\ 3Ì¢\83GÚØ\18Çlã\ e,g\fÖ¢\9fà³ÐW*¥\81¬¥\9b\1d\85Ûä  >jÅÅ>ì#ô½<¼ÐëÊ\14¢[\9b¢¦\ 1%î(\1f­\81±\1crý¨\ 3M\9b\9aô\8fâ\ 54¬ò\9aö\1am`/\9a E\12ç\82m$J\8d\0h_Â\b\8e\83 ±kk'W\90Ô3\95\99ÜÝ/\99\8eq\82¨,L\98³   .xû¾ÓÙ\84\99\e\19\a\97Ä\81«\9a}KÜÄVßçQ\11»Õ¦LE×=·\94É\97úB%\96Mø=\18\82V  s\fõDɲYG¦b\95¤ª.Å7\1f\94Y»^¤F(d¿0\99½C¾£\z\97\0\7fÌZÉí$¸\eØsQá\9bñëز¾Ý×\1c½pe,!ksj\1eµ\9e3'\1d\ 5\ f\v>\ eyü¸¡Åñ\87\ 4\94\e_$º¢\98Àùxÿ¶îùø¥ßsDÑê\17\9c¢xÇÖÉ\90\14±n\83ÇTU«È\ 5ë\8dé¢\8cÀÒV·b±ýÛ#\86\8fmÅ«ìxìÏ¢\ 1_úÇ\84#}ñ;ñ»³H_´_ê"C\9e\89å­/P'¾+òh\1dÍ5\8bh!ïö(Æ\\ 5  8u\ fuÔð[MH3/¡\93¡Ú\18\16\87ú¿Ã\e\1a4#\9b\ 3uütóCm\9e.oäyG\ 4¸\906>]èáûI3x\85\ 2Ø\8f!Öüf\18ëý`\ 4]]ÝR¢/\14\12&·P8\94\87ÉƯ@?È÷sPU:?Ä?ÓG,ÔK01Ѷn`ì\8c\99\91e½%ÌÒ\8d:åN\18\e\97\89þ\87\96\7f\e\91o\14yÈì\9c\92ξ°/2p÷n¿Iêi`\ 4\19\91\14t<õÍzûIÅ&®b@¦Ïé\18\94±´`àã]pçf\1dM\89ÊÓ\95²½|¡\9ah\9a\83\8c´k4ªÔ&\9e\83.\92\ 1\8eýU7\0C;\87\83\15aj®äe¤uÈ\9d #ýªÿ]WH\81+\râ\aUO©&áH\83\ 6n#µ)us\9d  %\9e\13\1f³B!S!\87\1c³\972+5\1a \12     Jñ(\ 2\12¹\97±\84Ö\82\83ònªyÃðwô­#~¡\9aDµ}Z\ eö\8dÒv\148|óÞÆ        \9bó\80©\12¥N>Ð\a\92\v8   \f{äK¿Î¡ï@\14igË^D\9c\15û\14µñÍ®\1f±³Í\ 3Ïn\ e\ 1\1f¤\8af\14
-\95\14e\9bºL\93\1d\9d\1fó³`µ*äÒ\91\14ã\90ê\13oìr%[\ 5æÈð0\ 5P\9b\96­Ï¹²Ô8ön\1d\8f]\7f\11©|\8eh@X´»©×ºàQd8|çf»kç÷-\0K\82f=Ü3\1awMg\8c\ f3\r1>9IæU¬\81\18Â\92\17\9eLy\ 4Q\ eÙ;p\17¹À2*Wa?\1c\8bºF¿~Ťè\81ß»]Ü\8bA$]´\90s\95Ê2's¸;$ÚMß\8f²\8f\86:©$Z\8f\ 6Öùß\a\ 3\818r§ÍwO4§¥\16¨×y"Sq÷èÙñÈýò"\bßû\ f°;pÀ(Êãl\87\ 3.\16m½-,#Õ¥Qþ½!#yÊ"/\4©\9fç\vk\ 5ol\ 5\88}\12\11\15[
-Uº\9a\86áeë        ²\ 2vh/øÚ\ 11Ä^ð$\ 4ã±\11ת\92\91úÌøo?r\9c\16æ>ç\1döËhæ\18ÌÒW\ 2¾½\84\b\ e¦ôãbÏÐG¬dfíY±7\95EL;àã\1fÝ£\b\7f®º`màZ\8ck·~E\16½»Ö\9f¸=\1c\18¯\8a\9d%½i¿ã\1a Òv\95ùµþ¸ö\86M.Ê\.ÀWzÅ1ì\ 3Ï^C!ãPͳ}¯A¿oÓíy\1dIX7#xÕc­H;|ÖbÌ>Cϯ\19I°¿\86\ e\87òk§dÀ\14Ô*à\rW\b\ 6Í\17\9cñ\1e!\9e ¢þ\9e\10\96Òt\ 5!¥@@ÆXRö\ 2f\85\80þDBC=\83e˵Õ\ 1FÆ|åYÞ\rcP \7fÕ\9eß-mÔô°\83úîBî8Ô3s\90}oS\95:\95\8dðÍWMQ\15gC\123\85Íêpü¯t\98wÏxæ!ì9¯
-?XÜ\83ixà(j_5ÛØ\83\98eî¼\84\89\1ed\89ªCÌÅøø;\95m:\ 5ð*öÚjhéCbQ+S\v¤âÛ\18\89®ûñ¨\92$\9fn.\85³í\90Ø\92;#¢-ÊARï3DL$\1eÒ\vÓO\a¥k©]     \fèÉ'o\97­ó&\99ùÍï"\88Ñ\90\8cÎDù¡à¿mö/N·Q·Sø^¨N\9eÓLQ­\16i\14\ f#v\1f \99\86\85Ç\92\eü?d\b\fU
+xÚ­wUX\9dÙ²-îîA\17îînÁÝÝY¸ÃB\82{\90àîn \ 4·à\1e4Á  îNÐ@лz÷9Mz\9f×ûñ¨ª9j\94Ìù\ 35¹ª\ 6³¸¥³9PÚÙÉ\83\99\9d\85]\0 ©¤©É\a`gaC¢¦\96t\ 3\9ayØ:;½5ó\0
+\0ØùùÙ\ 1â k\0\a\e\80\9dG\80\8bG\80\8d\e\89\1a éìâãfkmã\ 1 \93¤ÿ+\88\17 î\bt³µ0s\ 2(\99\0\1dÁ\1c\16f\ e\0\rg\v\87\ f\v@ÜÁ\ 1 þ×   w\80\1dèæ ´dAbg\aXÚZx\0Ì\81Ö¶NH¬\7f     \92s²r\ 6ðþm¶\ 4¹ü¯Ë\13èæ\ e\16\ 5 \ 3\8b¤\a\80%Z:;9ø\0,\81VH¬ÊÎà\@°\92ÿ\1f¢þ\9b\\1aäà læø\17ý_Mú?n3G[\a\9fÿ pvt\ 1y\0Ý\0\96@7§ÿ\ eÕ\ 1þ­M   hi\vrüo¯\9c\87\99\83­\85¸\93µ\ 3\10Àö·ÉÖ]ÚÖ\eh©jëaa\ 3ðp\ 3\ 1ÿc\ 6:Yþ·\ 6pÛþ£\80UYSJNA\92ñïqþǧjfëä¡éãò\ fé_ÁÿÁì¯\18Ü\1c7[o\80\ 1\e\v\e\e;8\10üó¿¿\19ýW.)'\vgK['ð>pó\0ÌÜÜÌ|\90À\8b\ 1\0_v\80­\93\e\0ô\ 6ëeeqrö\0\1f\ 1\80\ f°rvCúk\9a\0Vñ¿L\7f#\1e\0«Ä+â\ 5°J¾">\0ëÛWÄ\ f`\95ú\añ²\ 1X¥_\11;\80\15q\ 2Xå^\118\83â+\ 2gPzEà\fʯ\b\9c\1fÄ\aæT{E\1c\0VõW\ 4Πñ\8a¸\0¬\9a¯\b\\9fÖ+\ 2g×~Eà|º¯\b\9c\1f\ 4^UV³W\ 4æ4s·°µµ°u³\09þcçâøË\ eÞ0[wû×`0­ù+\ 2\87\98\9bYØ»;\98¹ÛüceçàúËìö\87\ 1\\84¹\9b\99\ 5Ð\ 1håñ\87\99û\7fÌ\7fߣ\7fXÙÿ6Û\ 3\15ÏÏù\8fý¿\ e\80«³ø\aq\83%Z8;\80¯ï?\95pýeqt|­\99\9d\r<TË? 8%ð\95\ 1ÜIà¿2ðüåw\ 5\81oóë\11píV¯GÀÚ¬l=ÿàøËí\fú£   là\10ëWF°ßú¯Ç\ føg\bXèk\1f¹Àí±ñq±\ 1\11\ 1¶Ùþ\ 1ÁJíþ\80àÁÚÿ\ 1Á\9dxUÌ\ 3\ 1èîþ\87\1fÜ·×y³³\83\ 3^Sq\83¹\9cl\9d\80\7føÁMp~U\a>ìü/7¸"\97W7\98ÌÅÌ\rèô¯\11r±ÿ\8fõß\ 3ä\ 2\97á\ 2Þ\ 2ç×\91p\81»åâ\0úC-;Øâú\ fä\ 4·Ê\15äì\ 1´4\7f-\91\93ÿ\7f\8cÿ¦gg\a\aÿÑfvp\13_\89¹Á\87Ü\81\8e¶ÿÞ\19î¿b\80\9e\7fô\9e\e\ e~¸þQ\b\7f->;¸\8e×´Üàb=lÜ\80\7f,\ 5¸)\1e\7f\1c\0s\80\18\9c\13\ 4~ÔÜÜ-\9cÝþì,x\8e\9e\7f@°`¯?n\11\98Ôû\ f\bÎêó\a\ 4OåÝ«f0Ó; Ûß
+þï».!áìíËÌ\r`æàä\0×Ë\r~   ùýÿ\15f\ 1r\ 3OÏã?\1fLð·á\7f±\95-øC\ 2\ 4z\ 3-\90\96æ\9d-\ 4ÃìÒ\9b#*\ 3¤\8a¿UÁ2@JX·$(7ôÌt"\87.&B:\94\8d*¸2¬ÕëÞ\7fÌÂFÛ\83Ý#óz$r\8fîðS\9b\90þ\19ì\9a\901÷¼çiº\97õ®\8dH÷2KÉg×\85â6ô\18ýKóìõ      7¤ÊôÚXe\8a^É`îùÐq¡*Ý[Í}ø\15r\88^\ 3ÏÆÞì0\1e^]é,\a­Èðz\1aNru\8c\f×Ê÷\\91«^\18)I0«S¡\ 1v\91\b­\8cË\17Î\1d ¬ûb\84\82äg\13ÈHvçÐÕí­éÀ\89_\83\93*©Íg\9cø\9d\89-Idlü«ÜÏÅ\91sSÍC\87+a½ÞW\92ô)\8f\81\9f\9côOÅ\v·\8e\8bUñã»\8f¥R¤0Ý\89*hñü\7fôñ=Ú\96ÊÚgjz\rØnmy$׶`®ÇÑø\vkc7ªB¾!·Q\93Á\14\87û*C\1dÔyÃ\ eÅêx#ÉÈ Ü¡V\ 1Í\14\98\16Õ|\9fÂ\1c\96\92Æn&\öAé¶ù\¯0\19æ\1aI\88;hRPm!W"C<eöÂ;\b\1f\10ÅÚ¼oö"9$\9a¤ÝtxMá\8bíMÁX5;Çä%Í|N\90D\81\86\89\95\83ç\90'õ%\1fòÔ\8fpn±q\81qc\93ÞöóQÂó\85\8b©Ðrâ\18\15»{]\966\82\12\ 6½`P±:è\9aè6\1aVi%ãºðå&IZ8EÎô\81Ý~÷\9cßôwÝ%öØxà¬,0pûý\ 5$Ì,#<îcªë¸é\14å0µéXk¨>J\11Â3\9cµ½ lmòX`}Ï ÀEÀ`\83\17\1cë\83\8byã3$\\ 1!\ 3!ÉìOÃXOÊ\93dª¢1A1Öq²Iõî\11+Öhþ¹\8bFâôýI®M»¾hÒ\14\88wGþ\8a\99\17-\95²÷þËÖ\18ÖT*\88}ù©«¦V!\94×\ 6\9d\15u\ 3ê\87l\95WWâ\83Ü$zG\91Ò¬\ fl´þ\82T[\18\1f#\ 5ëë\1c\ 5Ϩ»\98\82é\ 6¦XU$£\95ÕQ\16\8e\1e4,@\82!éñÎó\96\85ÊFÎ\ 2IɲºüG Öyn³\1c\95\8f\17\9bRR\18\9d¹ö\1aÑ\\82û²5°\8d\81\89îÖD¥§u&DË\ap»Dô\12:\v\bî\x\9aoÊÔaÌ\17Ræ]
+ç7\ 5k\ 5\7f\93À:jU[¡â\16GìMS|Õa\Q\1a)q:\ 1a)4\9d\1f¤ÇÏC\13&ìxÆ\8eýb0^\1cA\b\9cw\ 4pB¾\91±\90õîìù\b\84ü\11à\98¶E\v\17\97\ 5Âí\9cwT\9cô­³v¡åýz\9e¼^¹Ûb9o}\91Ùb\98\91\90\1e\ eªÆPÔ\99´*\1fis¤Ô\15ì
+\9c¬È¨\9f\17*\ 1ßãEºä\87Sõ\ò\85û\IyMí\8f\12£\a\r\ 6®lF"\18\19\9e\8f\8c\a\8d\1aÛoèÚÚaG«9Ó!<«Ñyi+Í4\âm\9eô'pö\9e\83\9c\1c\8eÄhyS=¯ÉGR<å\8a`Yn&\ 6q<\1f
+·âºÃC
\84
+\95¹pÞ\fÿò×\9dr@±¢;\eõ\90\9f\971þPÅ{\1az\8f~KèË'¶C[ì¯þóò{n\96p}ñ{mÖÍ\1fx¾w\8e¡(ÜÈCÍ\8dAEÌ Ö1\85~îÀý\89\10çá\ 2ô\9ad\9cª\88ì\8f\ 6ì\878´Â:ñ\80V\15¡Ps\88\1d¿­1>ÈBõz\12`2|9»Çi\ eËrUÿ\16má]óÎèì\9e]Äñ\1eM[\1fãQ´\1eu\1f¿Å\9d   Ísæ\ fy%ºe\89\ 5jÁ-²$¸ìÈ|nO\vËr_XÓð\8eϦ80tJä)\90dËt&ñóÞïÙèKú­®yi+ÂV°\ò\ 2   Üv¿Ý}ý  EÁAitVãñeòr\13§úô\84È{ßµÇGB\98\8cé\ ewTÑ\9d\8c\98\9aq9LÊt£DØHßâ
+v^è°VÉ, Ü\a3´\ÙÈ¥KèÛU\18\96£t÷"i\99Õ%\8a.Uæ>é\ f!,áQkET9\ e\88w\9aصâ\8fAÕî\89Ñ\96\eH§Ó¥|£ofhÎܹö\8cù\82Ùõ\9b¬øÅè¢0z\8cq\0\ 2\12\8cè*f$ðX¾¬xØÚ)N¹XG\ 49F\1d~\19O\99\8a½=\9aÝ·ø\8e©æIç,À2CMéJó¦\9d¤HØkÏ1\bPÜ`7\7f³W\88J~\9a\8aTÅv±Ø¢/XÁ¾\12:8\88\ eé\82\fÒêN\15\95\96i¾l$ÃÅßµY%\13ú±²\96Òõ¨\90ptAÕ!\88ã\9e\9eÍ\0;\ 2\12èú]\81½ßQ`÷SO\04\96â\8c\91
+\85\10é6S\7\93-\e$i©w³AåËݾ\96TÏÙ"å\88³   \83p\7fz)\ 2q+³\95\86â×»\8c       '°±je\97:KH%\vÊ\14ï\88'\eJü}äi\97i\0²\176\11\16\88¨·A\8a\16ðÔ˾kÇO÷bæ\83*ÒÇ`z¨Ôf îä(ß.^xø5\9e\ e7*Gö=)ª.*Æu\97IA\ 5\19\1eJ¥­öBâ:\80QÄ{Ipæ>o6_sÏøÇ\89uõ<\9a{ÀºË\9a¯\98¤ðqá\97+\b\9c*/\98Ð\96á+æ0\96ò\17nà:·¸×±9·r\9e\99xaæ\92ج|ª\82µ\ 1]ئ¿~¬ö\92:lÃa\8d\80V\8eT\934Ó·Îc/uhã"z\87ÝE¢2ù\11XH¼Èe
+§ú6äû\92H3QÎ\16ü>G\ 2þ\8e@<g½ào\13³\89VD\14$ý8¹~M{©zËL"çeåØë\8a\93(J6\8f;#é\b\83ZêßÔ\17m̵n5¦µê{߬í\8ez\9c¯ 4ï]\92*=¨³Êëv~JÞÇúТ/Åhx\e±
\98üRîÇá<'E wÂ\9aAåä4Í©¡ÆH«qµ\14)C\vO\89\96õ«³\80s¡Iª7;\1eÊä4¼N\83ÅÿwÊ0'Ñge\f\98^´w°>/o\876\1ae\88\90\9eÎìùÉ\89µ³\9eÞP8·ÀeÙªé\ 1\ 5Lf p¦\1d\82\9a\9eäA\94ÃTN\10\að|=\94ź˱ü\11\11t_+²¶1\96\ 5#\98ä~@øüü\94RjMî>\94­\871"´\9biµ[oò¡§tß\ 1i\15nÏq"lÚ\16qlTr\92a\9bÊTY/äébç:.SQÁ\1f\ f%øÚrgÈÜÕ?+©@É2\18\9a\9c\e®{\86<À(6\85\1f\85m¾îv|­tZ»Ï\e;!Ñçq\8dK\f4!.¸\95\87¾b\8a¿\81ØW\93\1d6\18\8bÂ\16\94\94Jt\83¾Êð\9e¾¹*øV"3>ïe·\a^Y®MDî\98¢\88\bûÄÅC±9At¸jEX\16y\a3dJæ\8b=Iû\17\18n¢Û\11\10ÅEÐA\¨ô³©ÙíxB&\r²©l\ 1;\812×ç/È\82Èß(\ eZ\95Ó\8f¾\80RÆg:½¸nñÅÓ¬\11<R÷æn¤ú\1f\8f\8eÝË\9d+\16ëd»ö³uågc:ý·É\19z\17üfsÒaKðñJVH¢W\8f{*<ÔÃ\10\9fîv\9eç¦\14ð{ïa\9c\ 2\8cìZäØ&|Þ\ eÌ\fQ\90½3Q_\9e\83ÎÁ¾â\r\1c7\18èâ²l]7ú=F\8e\ 5/k\82Õ\eBÞ~þÆ\fÿy\8eZ\95ç½4×»Îõ0\ex\8b\11\98±yÈSQc\1cw2d;½\80-\a\85Ê®ç\85ÇÒ\e\16T\8e¨8ÌÆO¶¥Xâ\ 4æÓtB\98¿¸V»\89\f\16+\9d¼»qB`\95\9d=L>\88êø\8f'zä¹\9f_·¸ú\r \95÷Ý£¶[¦\1dÿn½.öw\1cµÒosJ·ÄsëP°ôkWÑê½\93\ fHPNéðZ`¶M 5Ink\r\15ËÉ\99\9fñò¦Î0Ó9Étê[zj\9a\16k)\95\95×\883}SÙ´{F\8c\11¥u\8dÝô²a\95E\13P\81\eb\1f~\7fa\99Ú+kÄ@/á*ò\80û;?Ý°\9eøô\88s\1c\84[p©áºêG»ÄºÄ<Ãá\98F\98Ô\ 3MV¿\8atN'w¤÷IáQY¤^¡\90=¢Ø\9c¡1¾ËX¦^°¶Lµ¾k\8e¾:Û®\80ÆÞ=¯pJöôç~XÊ\r|í²\84è\8dÚ/_Ù\98DÕ)!"òP=$,èS\19¨\1d÷!3\1a*J\15;{·7صg\ f\9f\85Fvs\171Gr»#½Q\8bk\12
+O\81«MY\8aÌ\97~µÛ^rã·\87É/÷c±ûTÞùÒSÍ%¥J×M\1fó\89Ë\9db\12Zr¡\88B°?ë:Lè\868\8be%ôî²\7fb*\9cE\10&wÄE(\84§Ztf@åW\8c\7f´©¦}l¼\90\95\84ÿ°dM¾ø[>ùYWb{ïÐ\0ÖËá-¢tÉ
+èi>ÒÑ\10ÓA4\96\988¥´ín~vöEK\87%&\90Òð\8a\94u\98äôCR¨neú\80\ 4±Á,Æ¢4\8ey½Ø¾ü©
+Ü7     %"éßÎ×\93\11¾¢\13°·ê²dÝéi"b\19¿ûëé®÷Krã¬\\eyp\ 4ÅbYî\13(R
+\ 5T¥åªü\1fi~Î\95§\eµ\9c9N\ 1\v\85L{w\e\99LDÛ\81\ 6\95\8eÎòº    Ì\9coÅ"   >á_\1fàW\84Ãc¨îcðê²'\18òæ\8a\få\ 3f\95h\98H\1cü:£ý\85¢çInù\13\82\9b\18¡XÞë\9ei\8a      Ä·ÔÎÖ
+3¿OÐáJì\13Îå ,å\8ad§í6*Ð\84\96Á\98£Á\83õm\87%]¸o\83ûý~ÖÕ\99¾\1e9\9b\90o\1f¦\94Ïó§[\9c\ 3/\15« ùÑòV®d~Ï@\97©\f\87¨WÖ»\14þ°N>"i(²\Ù0ã\94Ë=ä\93õ\97\90\9djuS\19Ì5\83ßýµH9\ 1ÛâwOUf_ðgk+[uãÊ?\85¸\90ѦË\14ÇFTßFTÈ\17\ræÔ²-gÙi\1fÐ\8fO\1e\11;É­\92eÙÈ\1f\ 2Lj^¾ê㻦Å1È^ðÂ[ô\13\16{)¥"D§Óá¶.!.\b\7fÃC^à_ÕÀD\86Ø\8f\9a\97ª{Óú\9e)¤¦\ 1º,Û¯§e\90îS+Òu'\1cf\ 3²hÔ§îÉÐ\92íNYH\8b\1c\80¤\97\1ce1R\ fW\1f\88\ eó\91Í[?\85p\vºïgÏ\85²E821\12­ÒÇØþàx\87{5\8c\96\15\ 3i\85\1elê 6ó³\9aÅí¹/3:-Ð\14\90,,>\95\964%5\ f\94\92¡\8a3èîؾ\r\98\9c0Â-}r\99,ÄJaìÊ]¼'²ÛæµÂ?ç\16ÌYæÎå\91Í*\ fÝî\99¸\14#*\ 2ÖQ°N$ÃL\97\bÖ\94.ó~ߣ3\1cÓ=³Ò£t-Ao¡\85  sI\12Ù\16­\95J\86\vè\86:M[¹ï,\19âc¤È6\97\92ß\95<%¼½ë\99ãUóvÍ\8c¤       ¤ãÂJ\9a\ e~S¶sfù»íÙ\fãE\96~ÐÕ9\9f\86aµM\990{\9d¬ü*\94â7é\9047àÜR¦K\r\87·¸\88\90\97\r\9fp\95\9féCÃðøW\15Fµ+£é\88Eñöw\80|\9dÒ©\13*8Tú\94w\8a¹ôÕ(\16\bʪ[FDñ°YWáaI°,/YÕ(luDùMV\¦þ§\88\85,doç\ 6=MíÌ\15\1e\8a§\˪Îï6!õÍÒcg\ 5b\ 6w©U¿e\9e\ e\98\7fâ\85i¢«NO,\98Í\fâýHõ|µ¡\86\9eÆnô\12\14&
+\19\82û|§4gf·\86=PT\8bmH¦]\95-qº\1d\85\90U^®f\95\83\9do\10»µx\99/?\b¤ð(*Ë\84ý\1c][Ïo,3¾ylR$6\97ÆY¿Ü\8b|\91\97â@\8a2Kë²?\8aè\80\ füA\16òöGmÎ'ãéÞ*\98<\80I\19ã2\ fç\86û\90\ 4ùÜ\1cá;\ 5¿Ó\1c\bR?5^øíêl¸yÒ8\a|9\1dS\95\92ºÑ\8ei\81\16\88R*\81\ 4æ±ó\r\16R\ayP×\8c\e½kÊcpkp\ 4ZÀ|°ÆL»öW\1aÝ\96\17<hÏ\8cÑÔ\98¬gETjNçHñh¾Ö\11\8d»\8dFîJÿ+x\94\8e\8câz9?a§Dæùí»®7p"$3^\b5Åþ.\væL\8dB\f²½åDä£Û}\92\96\ 3\1f¡G\12\90=D¥=\92ò¶S\1afs\94~õÄ3`\92°\86®\86\e¤¤Ñ:¤zõ\87igF\87FUÁ,\8c×PtD@&å\84(¿³È+æÊÝ°ùn\9f¥òS(Mã\9b\85b/[L,"ïÃM\12<é]\90ôBPF7ìKôu\8fÑ |\96*Y»A^å\vòfviKâä   ú]\98Ñ[ÈT\81fOh\8dò\8co:Bm§è7Åf\fÖ(eÑÝ6(*Mä\9c)-[È×\84\v8L\81\86¢R\9f\94£\ e\15\9aö\1f\93\16qPevxtÊ\f\8412\8f÷m\9dJDú\8a\9f6\15X\9c    \9eN\9aÕ²¬Í» \14jÓ¡®Uý\ e\89Z&\ 2¶ÌÇ\8e¾^\89Ûl\88YŪ\v\ 3E~¨\7fS¬h«¢Ç\13x\813S^Áq\87YJ\1a^YL¬}\82Ï*¬/ \1d'(µÙ¤UY(£\81\1c|N/¿»ywd"z   \85¾i\84\9d\14BV)S\13\8eÁäà\90ç~Áb.4T\1e©-¾\10Ã*tºøI\1ff`RËʼ.\91YCDSþ¢-\11g\b\96b<"\7f÷\b\87äü\91¼F=[ ±Øc\1cO´Ä§I\9c\9b%ü.z\e\1dF\rC\9b\0÷·\ 5\90¥\93\84Dãñ!>Lt}^\14Üc³ÕªY\1f\ 3îV.     tÅ=³\82biÄ|ÓWÂ&î"Q¹oÖv±¶\99|è²Û\ 6\14d\fk\96ë½W\bΧ{,o\11P\ 3·\vg¼ñ\1e|©OVÈZëç|{DvV\1e=\12 \9cæÐ3p\19ðÑ\81\81v\9f\98ú÷w\8dg\9d\9aeH\a\11z?\10ÑV´nöcbÛ_]\fô\12¾8|®-´×\87y²Hí7äüaü\15»/IWÒ;m\85Ì\99\\95+ÈÑ\98\88\b\e!\13¤eCöøc\b-J\85\86 Ó³\8d²\99g­Ì\97bWY¯é\81d[®+m¢}=¿\14ÕþÔj\95\ e³tZóà G]c>¯Í\1e0\19äÔ
+ÑCGÃhZOdp4`¤ïÑÈb\16vW\9bR  $\18ú\959\ 1á\ 4´§h1.qè½gÿ\9c;±g¥>\ 2¿<¦\82­\1aÓRMfF`O¥E\8dôøt­Ð$ÆÎÃr¢hÛv}j¸B\81w\83\rìEÜÜ\93¸\eJm\90\ eûÕ\95´$-Lª®¢Ì\8b3Q3¿\1f\8a«¬\83nXAð)GëAÊpæ\9c\95Üä\92 «Ë·\83©(Z\82\r¨ý=\97M,P\88À¬@\88±°Üw\1dë\rt\ 1ér^°·¯ÿ\a¹Å\8aú\91÷±ã\1dµ>+¢císraq5\8a¦P\1e\83«M\ 4æZ\97FÜRt ¨þ\85Û\83\9d \89r\9c¨¥f§c\97\ 2bÌzø~¹å\9\83Ì<¸¹©OAqzaÑkMsD!\84±Ã´î¦p±J\0ÉK6\8dÕ\12\828J\15Á\0I\ 64\9b\9b\0\ 2\88\8f3h\84È.¢D®_ã¡9|Ø/Ð\ e%`i¿i\94.6DZöp\19\18\9cz®ï\9b
+"q2\9edùªSo( \ 4`¬léÌ\98\13ö\10c\8a\1e\9fáV\19\88\9frn{£èîÜ`}e\1föJ>\84¾\9bj\9f\90¸DÒü\89¿?\8f³±ÇÑûÈ\9bä\9f7\9blI\9ci*è0Yj§\1aÄë*\8d9X\9dI¯¦èª\11\89(\v\10c}2¡!\9c\1a\9bî\91ÿj\84Oþûr
+\1a¿'\8d°\ f\8f        ­öW~X\fuÆÕì3;E\19R_}ÿ\rµà\82¯|uÝ\89íÛî[Ãö±ìqå\10õ\\ehËÇ\10A}­ÅV\84|äÄTsk\1f'ñ»}\80æ2¤ôÅê3G\1a\1e\81äå ?Ìsï\1c^\89ñuµ|ncC\rv\97\96û\15ë!7¦ÇL\91Xwoö\11q\7fór\85V\8aª\94\9d .KSHl\9bnU\v\ 5ÚóSrÆ$Ã`ÖîY\8d_ä¼D\83õK\19Z(\r\9c¢ÿéH\90?\97\v·Þ\ e\88öÚG¥e\92à±ß\8dòã]¯\ 1_c3\9aÈ\98|KI\eBÙJã\95ñ m\a\9câªÝ\97¢\14\17\84H_\14Î\96ãÍ\90\10A\16\ f\89e~Úº\9f\a&N+¤\99¸\86ÖµCâ7U<±qÖHX\9dqv\14Ã_\9d\ eÂ;Çæ¤\ 32[Ín&qlº$é\97\16âîãhÈù±ò\16\19´1\92²     '<\8fNç.÷U#Â\85à\93¿\14Ä\9d\e\91Ü\14¹4\87\ 4\9d\94¾s\91\19\95gR\1d\9e(jÿµ\11ùëÛ1\ 6ãúRÄ°\8aøÚKÉ'zCã-tåC´M¦ÌB\94BÑ¢\eojqz*\16ñ\17\1dì=\9c":\19æ\13ôù{\ 5¡\96\ 6¢¯o\ 2':\9d0\83ͦîü±Î\1a\a,\81Åi{\ 6ò¸é¹\ 6\ 6øz\86Ä\ 5´Rv\17\90"\ 4CÜQÌERº¶\ f§®÷¦ÚÍ&F\ eÖ\f\95\94û!ãÉ·³\ e(_¯»)¦mºÌHî\12ú-7¡<Ø8.q/Ø\\88ñ}¯\99\13\8a\8cMî 9\88\b¯Ã\ 3Ú\94â.Ḵ(døåèZºòØ8[\7f\96\8a,1\11\13?'\8aX\81ìU\1cûj\14ÍIP\91\9d[×#\9c¡Z£\ 45H¨5%Ø\87\9d\18±·dµ\7f5 pf\92Þo\8bÎ~à\8a/_\91
+¤ô\12À\14\8dy&\9b\1fO\8b1\97c\8a\vò¡Þçò¥\8el\1fÂUì\85Z`·\15£»\99\98l-ãÓ\86´íY\1c\ 2ºm\92UþBEñ´ÅDÞ_\85À      r\1c\b\87ýJÐx\126òÆ\99\e\974Y9\ 3ó\8cT½]\9a\12åSu\83â\10¢7\9c¡\8f&ÀIm:¥¡d«\9eDÆNX\93\9eâVzDm\8cM\83 ¼PHêÐ×nNý­\1d?\19qá÷3y\11\14§s·)\ 1?,S\8eÂ÷V/°È\86\82}Óæ\ eY|\1f¼\ 4»\9c\að\ 2ABÃ[>bZ?Õ\89#\ 31ìÔ/YªF\10âRNÇ\ 1\9b²\83ïV\ 3\13/©Hϧ6òëR\a\95{asi¦Pi j¾à@V_Ùò\85LAÃiF.|AéÛWkþ`Îù\94\99èK/\9c\8b\88ÊÖ`5\1aæͶ\l#ù)\18Æ!\b«<¦n\0eê]c[Dãé\8cäiM\8c\85.%\94µ³ ¢\93ikk¼òaµgº\18´j\a/%lz\12}JJ\9a.\b`ó9ùý°\9aKGt¥KOÁív\a"Jð\ e±Ëø|_ß\1eõ\19\912\b]\ 5)Øì7y\ 5~ɬZ\86HÍýÔphz@6Ñá°\84¤\86.\92Oal/ºê÷m\9db±Ó-hÛNû\ 5g\94\ eÖZ\eÜVWÀ\9b
+õ|Z¹ÏkÎìæ\86æ\9e3ãy\e6dÛt\98JD[ÕÙnñÞ­´wö÷Ùjå\ 5M\92iïÛ\ 5MEÝ`#¬úB\15×Ų¦XÖ\99\9bC\ f\ 5;\9a\90\ 6j)\ f(tÈ\bp\93NT\9fà0çÏ\9bdaÅú¤´dÖ!\98{ÏnåËVÅ<\\11\1d\17.\8b\̹&\9a·Z\ 1M¢.s¼ ªËZ"vêqÜÑ\9c\88b\17´ä\83\9c¤j}ÚÎ\rM?üY®&²{\17N(h¬\1c\9cðf¾]K\ e\ 3\1d5\ 2\v\f\9b\96\12.V¬º3J¯T\83\97\9bÚÌÊ\aZmºÚl~ø5\8b\8d\ e#½ñ46¼\8cyAKÖ²âX\87PÌ»[Dy\eìm¼þÔèö\ 3K\ 3ÙÂp\ 3
+H\1aü\1c*Ïê\14¢øe{:©5\b%      \88\86ÀÚ^\872Û6KzæÎ\9dz þõ!çrs\81Ì<º4¤ø\1eÕn¥&Zè#\86Å\89ÉöuÇ\15   !\15ã.\ f4hAg\8aú÷E\95<\11³\93\f\90+Ú?\9e\86Ìø\80ïÜ\8a\bëR\89Ð9\8fA\16;Bcl\9e2\ 5ïÖ\15\aS<HIÑ\9e&\9bu\9a¾\b{!+û¥\f\94íÍÓ½Æc¹]ßA\8e\11ÑWM{èR¥\91Ç\1e\ 2\16z=Ümê-\ 3E®@\9cÚLÀFõTã±ú\9b\83µÆ{\97\97#ræ_Ë      ?o%&°6d§¥'\aí¦V\18'?²,þhm-Þ/%\egÄZn=ʽ{¤j\11\bÍ6
+~û\8d\82?þäà\9dB ¬\9d±óMk\89\91\11bò&\97\11"ã \92Ç     \86\ fæo\9f\a\82NB\9b\11Lb2\98ðÝMy(&b©*à\80\87Â\14\18ê\ 6æ´\17\eäb²Ì\15\97\e\83¦á³aµ?¥£Î}Xf¿Ø\12ª]>å/\v6±ÉÓ×\12\96íÚ(þ2t£\83\9cþ    \1f?IÐþ~úI\98s*iô-/£ùéóF5\81\ 3EJHÜa÷\81\8bܱ{/w¬ÿ{\88à¨G\10\82·î½f¸á}Û\10ÌB\90"¥-\85\8bS0Ãh\e \ 3²\8bV;à¡ \91\94ì¬õ\11\86\96V\94g¾(ê"Y\1eB\80¥´c³¦­v"ï\17ãDèÁ1Aó=\8cå     z\14¨\99\ eé \82÷\e\92\vÊQ&\93\17s¸Ù\a\89ý« ´\88     ²l\17\83V\r\97n¸¼°3\7f¯ÌTë15\8d\91;:xH¼\ e\7fn£ º2åôV(O+ pv\1d\97Ú¼´*ÄÛ»0Næ\8e©C\81µÀh¸¡ {Ö\ 5\vßvzV"b\9c\86\96\93M)4\83V\vô\9bru\12þT+ý^\ 2\ 6öÑ,bÓ\87\91§\90n\89\17ùõx\9fG\8foðw§è9h\9e=ÌÁ\ 1êïû(­¶\17í\ 6B\99\a-ÑÑ\v\19\10é¨á
+Ît\99CÝÇg]×h»\9c»5ßáåô\98,'lPs\9f·)9\9dòÌN+=Rñv\8aì\92 æ\18ðO&ê\1fímnx-±0\9eé°wAI¶#w-\84\86w{-Q*\]g}\9d\98\8e\1f\80Ã\7f_É®D>\18æ!0dEô\1eOóÅåwÊèξÅ`Ô7K#\19\8eÜ]OéÇòý_\9e÷ú¹\94Õ\1e¶Ù¦®r³(ZC\88\14\15\}\ f\ eÓ\8fP\e\92»Å\97â\81\v\8e\83¾m¿£æä'\92BSs\1fÅ@øÝ\ 3cµ»È\ 6í-\81Qµ×K'!\87\\95\11\1fa8Q<-½\vKk[ÎäéwQ³(7Ç°\94\99HwpÝpfõ- \ 4/Â\\8bðÃ\92Ë\99\7f\9cÉ\93\85\16åu]¹r`I\90þpå\\94£)XÏfÝsÒ*\81¶LrÜÖIÚÎS®¦Y\18\15{\82\96)\1e_óçA|wàÄc½ÆÙ\12l\85-#%×\19\98p=Ø>ÓOÉ\19ËÆ\95\ 2R\8b\84\89T(eå'í#iþ@\bk>y\ 25ºïI¹\ 6å²yå9ÑØÍ\ 4      7Wé\11÷\80\9fÊû\v\86Wïø\10\8d\9a\84IÎü´¤C Ø=\82(\90USÂûÒ ÷\b\98\1d\ 3«>ç\8a\amÀfèëØ\13ëÊuåPÔßdç\84\8f¾âó0þή5ì\18\ eÚÚÇì3\1d|bEÍ      L3\1e\92\97J±$ÇaæN\9c\aìcr\83~NCṤÉà     Ð~Æ\9e2ÂNÚ\92=\9c £\0/2S|ÙR    Â\92EÐú\r\92øòê\v\88µ\9f8t¼âÔö)'*jø\80V_+réz\86¡fåñaD{¡Ð\8fß\96N<¥ÃzhÑp\87ñmðd\8b¹ÜM);2\ 2_y\ e\9c\1e°\9bë\10\ 2Mõ"2\1a\91̾´¥\ f\9eÉÍê8\1a\a-\98KçÇñjwÙ\93\13\1fëdó\1aûì\96éùðs\A¥[\92Ö\83:\bÓ²üªÈ¤ÎU.ºxý\96,iûäö\10Ô\86\87ö\1fÒOxV\95º?¾ãþn23?Ba\16tfb¸\80>\89\ 4µ\93Âà\18\83\1d\ f\81\92ÿ¢g'±ß$öXt\81×\9aÂÛ¨\14Ø´&g\84-Õ²&3HX¹h®ü\8c¦flúU\8aû\94Ì\15ê\8d\82.\8bþ\99T\17y\8b>Óz\1dh\98s\r\9bc\1cô\9dN\ 6ð³ï»\f®xÖáAC\\1eÄî÷\v\98À\9d\9d\96Í\83\1fí¿\96R\98L\91C¬>KY`Õëg)P}7Ú\86¸ÚÙÅk\10N\1eÜË\98\96¹f5É\0°ÈëÝçmÖ?÷\8aù\eºe\84¤?Ì\10y\91éÁ¦#®\93LQ¢kòÝè\8eÙ¬þ\9eÎÖ\8a1uÎ#[\8b#\80\13\8cÇÆ\8ex\80\r².õßÔ\7f\9b    \94ÁÍ]E\e. *´@\19·Ä\8eÄúV¹\97ö\99Ï\92Ð9\97g§»  \96e\8b\9c\86\181FIYqÈw©ÿ\1aa1Ùú`f3¦C1µ_S\8f\8b\8a#ööq˼ä\1c)¢­®ù£\8e~ªáôÜ\ 3\v\\r\ fíþ³<áÊ\97¾\8f§\8eå\87¸
+ât\84ú£Ydn+ôqÑ\1cô'2Âö¿V\9ca["¯·'!q\ eÞ"\9f4\fð\§\elDÔX"äu\7f|\9er^ëÓQ\9e[~\8cÞp²[Þ\11°\ 3Xæ¸ÒéðëY\85¨ÁýºÔ 4Pß\8bqëÞ᧼3\1d\8dÒ\1d*Cm¡ëün\8d£\fÒ~1\99uÿÈÛu^w\ 4B­ýä\eõÝ\11\81ª\12E|Ú®\8c\9d¬\1c\9fö\e\9fh)ã»ùÝd\b\95ð÷\11gu#ÄÞbaÖ&!¦ïÒ\85ùh:\8c\93P\13\16ÞW\97îrâ*a\80"\ e8°2b\83\19\91ßqͨ}È:©LXá\9b\ fâ¹\93ßúÒ\87\85QMÐÓ_Ô\1dßS¸c4\9fc\10&wcð3µq#U¬9\17ÒÚ¨äX$þè\1d¹ýùt\bÑíR\9f§r% ­Jø\16°Úå½û¦Þ8º\98Bä/Àc\7fÃa¯!9\8b\9eÛÉ\8aiÿÏvAºNr\9eöàµ%`\1c99\82À¬ï3¯$棣¬~\8c\\9e\9d\9e\9b\8az\809\12é\9bÙC[\94\9aiÄ¡â\8dF\a\93l\8e\ 4Gââ\9cÉ\93¤ÆÎʽd\87m\95\87D¼[\1d\97
+iÆ`^¡$»\12\13\83\16ßy±®YμÎ#«\88*FAã\12ªPjR\97\9cFezìäÌ\1d\ f$ty\18¢$ ,y\82kgû\ f½\eK\fÎ@¤Ck\9d§\1càHUq']¼^*1$-WÁ·:|\ 6\16̤/±¤_Üct\10ùI\14\19¸\ 1Û\84\92ÜÇÃI\9e¢\11¹¨¿F\8d\96\10:XÞÞ\7f\95\89£C\ eUI\8aµ\8eÙ\85§5jâÃ\85*Ͳj²\fh[Mô\8e\10\11Øûþõ\9cuìÀøp72e\vI\ 1\89ÃÍ~\9a*p|\19ENÓ¬[a\12ÝDýÇ ¯øÛ\15\93Énî^êñ\96Hîà\1c\99scë\18\ 4ë_/\13R§Å\81ê$yÆ(ï°ó«ëYOÝËñJ\12\8bùÕJÚ½çWd\9f$ñûÊÖ\ fè\83?\8c\9a\7fç \95L²lE\93PV3x\14¼è\81\8e¨\a\12\1cÃÇÜ5;[Å>«\9faaLY·\16\87µ¡q3\1e/V\87X\9eçxsnÚó­\18ã\eØ0ß\9d\f\95\e\97ü!óÆ{  -\À\a\13/\88\ 4\r_º®ï6TSÔ¬AÏ&­\9d¨ÉVÑb0Àp§µ2\94í^Ò\18ú\ e>\13\90:bW\0£ûv9\16½¸:\12[hNñ\14v\84´\bb kV\9fÔ¿q>\12ú%RÇéö³øöÕCÆj§\11\1dSýj\0u)\ 1\99\9dÝp£q¿G Ðw¼%i9ÑÁi\ 3\1ep}M±Ñ¤MU÷t\86.\f\93S\91¸§\89\13¥;bå´ö£³TÄ\f\9eF\877O¸oâE*?^£¾AÇÁ=\88ïò\16"Øz\ eù<\84B\e¦\86*ÁZÜK\193\8dÞòÇ\81³º\83\b\1c·r1\89¼À\94fQ«\f²ÇiwJRg#jLÈ\85\10½ä[£Ü<P¶\87örQJæ\87\ f
+\a$AÇ\99ñ½sÙ\17í¡IGíñ\16\1eþ\rÁÜÅ\88\rÛ÷j\98W­kÁj11Îàÿ\90ÆI{#×É¿·jí\96\10\ 2L¡­ÓüÕ?³,È\8e}jÈH:\17\13V½èúT\8e\80:~²\82\9bÙJüÞ¥Ï\ 4Yn\ 4VG,Î\96#Õã\9d\ 2\ 2F`\1cèæùkU/\91ØÇ\aì\1c÷y­IûgN\1a\87c_\99\fý\9fÑBt\ ¬é\8bÌ4CÞÞ*\b\91µ±\1fëm#\ì\9eØû\1d\1ag©gý$\ 5)S1@\82ù<Îúo\1d\92Ç]w\1d\9f!\8cc\80\1a\80}\r\7f
+Þ;òÐûöÛ°5éd{Y\99ÞU:jJ\a\95\82çRtÏ@ÍÌG»^õO\9e]Küð\98t\99h7¥(ï~ä\vïoGA\89P\9eé¶ðP'tÃe»Ø´"ç\8f\ f}\89\e¬²\r?Ðy$.óQvðçüÎMÒó$a=ÉT2Iööw_ ð9_xÊq½ÞUl*ý<\13\86;íLø²ëäÒj\97W\87\ f+Ia©\84¼¡8àyLÞFïÈ`\15b\1dT½t÷1êg\81\vb\98õ^ã\9a¢¶\ 1ÃlÈï¶\80;N\vñ°\8aÖ·\r\8f\96Å^8ï1óêºá\ 4Ï«\8e\94>&É
+,OÂ'bn¨Ü³\15\9bçÇHÅÜA\8ab\19f¥Úó¥6´Ôj\8c­ù&\95Ã\97¤)Õ\99âç\84\17jvRö\18£\9f\9bQ^\86éÍ¿\89\16\942Ò¼¿\9bG?ú2C¡¯×\f¹Zêü5\0\ 1fþÑ\9f½Q¦\10ðIðã<}3#ã\87å ò'ãù÷(\94bdæK\ 4Nj\88\ 5Á\ 3\84\9dB¶ü\88öãÞ|ý,Èuï\v¾!°/{\95\9d£¦RúRÃ(\1fy[m\1d9å»h\ 4ÛV
+ª/\18\1a\86\91Öt\19 u3Å+Aé\ f\1c9x¸Z?ÄY¯æNl
+á±é»¡\1d MsX\86¼í¸µàHJ6\10PÀaH\82\93ó#B\95\7fjp\88üi\7f\98îC\11+<\156Þ>ÖFÕ\1cD*­±¦\8au¼ýû7!g\ 3¦\1fÊN\92 ó\9eÓ|[dãq\9bÊ\8d\15Sjß2neV¬\12\ fäÅSµUºXH§8ÙãÙ\189"\1dã\93\fDbaa
+\9eÎ\14\9d8Êöb©(5\ 3þÓlÅ(9cYßa@cT ·¿[\17<ϱ-s\8c×\9b£çä¸ù_§\125ÜZºT\b\aöÑì°ÌCMÙk\1fc\15\19Ó\9f\12y\bsZuõ[ùÓ\aÝ¿\8cÅ\8e¢\ 4D\9eÕ\re\97Ý\864\91éª\99þ\ 4~\×(éÕÂZ\96G¢GÃöæH\vñá\99\1c\14àÐ^+\17=0[˨ô\11Nö§\e\vÀ\85ý%¼B\82;ÖubÕp:[\91k±3Zsñ\eÿj\91^sE\9dw4+â¡Â^\ 3öRõý\15QDDÀ·\9fod¡g,ç¥Ùù \ f\13¥\14ýC¥\8b_ârc­*?!±¿sOP\8dN$ï&\19\1fßÍ\83y689Ëz×\11¤ïE°ñÜv\8fl"¢Å\13Å\7fø!_\9b¢\18}Ö|²Uåñ\99;\8d)\85I,õ-í\12Ý%\95b\88[\98~I\0ýÂb4Ë#$¼ÂײÏ.×\9c\8f²¾y<Rí¬H\8c\ 5þo¾\ eJÞ¬\12Þ©ÔêË©\8b\ 4y1^¢CúÓÑüv¥G\18g\9e\90:¯"öM\85#Wi\9fB×P\1f\ 1\10t\18~\8a"&{A¯&\89Ñ\16¬\\14Íãz¯\qqÖ¯ü\1c­\0Yí77Eþ<\80[(#TÒi;\18z«­\ 4ytEkRо\bÔÿ\8a¯ë\84¡ªYÿtCÛ_L¡7>\\7fU\18m\94Âß±ñ®¦Í9Ûí¨.AÉ\89µE}jV\ 4ÔeÎûxªE\b\98\81\1f¦
+Ǩ³OPÒ&÷Ì\8dÖ\s
+=$Öo{£ËéSÚ\87Põ^|Qß\1dag=T¸»mi³^\94  `\93\1fu\8eX\ 1ßo\179N½Õ\16\12L\95¹Y%te\ 6ÜÞ4ae\9d\ 1n\eö"£x-~\8bvæÕ¿kc\98X\89æè¨ú`Ý»\ 5êå\19Ô\8eϧbðÓ\ 2ÿÙ\rÃ\96\82r¬`\a\8d\92¹\99ÕÁtJ\8c\8bÀnü\9ebçð#µ½Kît\12\87¤ku\1c\947_\9e       æ0T\)äF¥z§{Á¶Ò\159Ör}­ý\85{¬?[¤9ûöOD\83ýPÐ=Ûª7\f¤\93LVÆ
+jJ¯¬ú%Ã\8a\8f\87\8câÖÙ¢\b\1aλ¢ö\95­\10\95\14\90í0\979UAê2\v§\0Æð`è[³ºÅ\Ðý!ÒÄ7Aßê:\8fÓªöø¨¬îîh\18\bÒE·Ù    ú´/\97.\9a\TY°.\1d×\xÞ\9f|[]%l
+¤.CÆ\99Ûµ=³t´\19ï\eÊV*" Â\f6\97\97}i\rç¶ÛÖà«¥Ý|\aýwb¯ÐÌ# Î\8c?Q\89\9f¢µ          \10,\97\7f¹ÀèMìÇ_Íáó\1d$I\12ÒU°*  \10 \95|Àu\84\8a\bò\1cÑ\80©q\80\97\98K
\b\1fºI<¼«Ó4*¶ã*ÎyÃÊ\87·¤£<6ɺ@(\8d\b\92d\81ib0¼FoK\16_½    ï@ÖO\8d\9cõ×rÎ\18h\ f½ÁtÚe\9fÏ`*»õëj?fØ[ û¬\81\94g\14ÊNy,°\8e\b­\97óIbzn­¾kdFi\82`\1cô\9c¨\14\9c¾?«ÞjF}ôë[é¢3Í7CÏìI g?aÃâÒXè\94Ý}4\89\e\90fÐTÑ¥-(úÊ%Oà\8eJÜÖÏ~ã-\81\\93\1e²'\eÏía«Z\81Ky:ã8\aú\82ÒE¸o\15\14peѪ\1d\ 2}§Óì©\908©>        .\96fr5\9f\83;3\v¤\8dW\17%fÛ\8f\17Ó\19\87ÇG\8c\12r«*í\1fásÅv@l1ôá\12Rðc\92°\rÊ\91\86ÿÌýJ\9a\9fZ\81\11\14Ír \ 6·åR|+wr\97¸jø\92\1c\17Þm\bâ\8e¬\ekB\85`$w\9dï\85\ 2Tìø4µ\11Ù/4K\8a¾ß`ê\86\1aLU¾'ÇàC{ë\ e_\19¹~¦pä\89 ÀÁ\râ½O\1a7$õ÷½\9bÊ#Ö¨Û\1dë+­\9aô b\94Äw§T0©ÈwDd^;ö\ e\ 2\99\9fÉ´\1a7}\13©\6ÄzÔ¬e²\17<P\18ͦBì\97]Na ß·÷\82⽶âyûµc^"GÃn\94J\8c\12#C7j\926Eð\aΡG©~ø\0®Ð]@ú/º#ó\9fsR\1d®< \8e¬Á\9buG¸)KßZ\10²pR÷¬¦E\8d4\9d     ¿!U,{Ètô        S\85F@ÀçŲ®
+¯VH\17è\9fè%;ß\ fë#-÷´\ 6éz\ 3ë\1a>´¬Íd{Þù\86g;\8d44±\15L¸MkH­C\1fÈ))\1f¼\ f\88mKë'{|©\1a°Ó±
+ô9¶ó\18¨·\rRû|1ÓcȲ²i\87e\9c ùî·Ü6ì\8dltØq\8bK\7fÂ<±zeí}³u\9fêMÐ)ìܨWK\81eráTKw§å8û\81 í©Sy\8cÆ&í\11ÿ\91\95\99\8f\9f²9ÞETûZ¯pÉoÙ\9eük\b\18 |mÛ}Ö£\90Ì\9dy\8cæ²cãçÜ/jîâÅ\88\ 3Õ.ö²¨P\9f¥ðEÊ\98¾àn&÷²[\8cÇÐ<ß)Nç\17Ô\vöf_\ en\ 4!\8dyFF#\blå-¢\11\9d¥à\99mâ¶0úL¢\81 yÕ0\1a\8ehhÒÈ»åÜαR\93¦ H¬ä\ 3ª\7fFþ@ÅN\7fB\7f»hÈÁ\10½¾;\1d£\ 6ä÷ß­\0(=\ 1ñÃ\ 2\8cN:\8cã0GÒ|IL\15ÖeíF?óEé«6\e\1e\1a\×JÖvøïÔU\1eÓ>ª\86\b»Kp5\8dlpäié÷\12Ñ\f!²  Ç\e¤Ê\91\ fR5Ùò\85\9e´²·\1cB\11\19Á&pw]mîk\8fßií\98\96R\8a\1c\88\89\ 4&1\85)\955ÍIW\90ìbK\1aJ+òA¼\91.*öCT{úº\9c,Hñ½DXÖ\82Í\13\1d\85ý\11\b!]èä§%~®×My«\ 4\93\8d½Ô\90\8d\aµ©)cú hx\18q\ fn¡¹ZJ9ÊÈT\85\888èñÑþ\1a4å´ï\f\90Y(P}Ò\89é\9fë-ÉÛ\eÞ¼9\83»\1f¼\93²Bê\87:T#Kæpßka4\ fi,\9eñª­Ü¾±Ep\14)fæGúÌêóþK7\b5^\ e|\17ºâ
+\9dͨÙH\b,yy·\99\87D¾èßñ}0<gÝþ$·W\9a\86ñ\11¦¯4{.T¶­\1d\87ufV\0¤\9c~D^Õ¢;\1d\13\17\83\1f1ä,>\96²\976,+\9fz\9bã\19ªàB»tÏk8ô©iU\ 2ü\8d6\93Ç\föÿQ!\ e
+÷LH5\ 3ýî¯\\98\ 3¶|Rm\96¼íã\9aj\8a\fÐú\82\89\12zO#Ì\9b8ê´Ó(17Àf\14~äµWM9ÍB\13Õ\9eS\8a_/1\8b\1d£B÷Bäþs\9d\88÷7D\85w;§«\ 5\897gÆÓB\83â&.Å|ÊçÓýËEkk\17\12ÙÕѽè°âu\9fs\91´qa\9b_Í9ç\93ÕÝ;êÈü\16PìûæèÕÉÑ\1d.'\106Ll/l8\88ÊÄ\ 4Br¸µ<R±­\13d\17²\187\86ª\86\8ewuMê\8e\ eÛ.È\8d"]e\9f\82æD¹¦\1cz\a\14/\17º\1a\v~\9eáT\\86Ú/¦÷mvDå\ 63õ§ÇäKÂê\8b\98þH¨_nÑ
+òÍuYsA\94É{0\90«R\ 2^ë÷¦«ÒÓ\88\13©¸dh\13jQ \97\97À\8b\ f\16\8c<hî\8fìôúQ\18¼¥Mä³\89~\19Æ jô7ª^\1e\10-êê\7foçç¸4n1åP֠캲λq2À\ 4\18qæ$rdQ\9c\1d´¿MFµò\85üXWÑêǹÓy\8cxg[;Öìñõëwóö÷³c¹¶\16\9eï\8e\17YüÅDz\ 2\0c;\9b^m
+o¬&r\13öؤa¼ª# â1÷\19»W\8a\e\8e\f\ 5ÌÃõ±õÞ©±hûO\19\87\9aÑh\9d\88}¼BDA\ 3\13\16\v\0姿>ö\89Q9\94âÎÿâjä`ÏBKîëÉÖ=~¬L¹ø\11£)>G¤\gµ\1fã; íc\81üt¤f~õÀ\84'×t$Gr\8eWG3ôeÍlàöëî\89\83À19TYðf`¦£g\9cÿ°Må§\95\e?tj\e²\12Ê\96âÞ,1
+\9d·ÒCc®äÇÆ_ýÚ,gzÉ\ 3P~\1c×\18q¾Pv×Ç\9f\8aÏ\82\12öP{pWôí¢pzèõS$\ e7\10¤\10(\83³¥®lE¶ç2pf®Eâk5mûL\ 4þ\1f  =\8c
 endstream
 endobj
 1158 0 obj <<
 /Type /FontDescriptor
-/FontName /VVCFMG+CMTT8
+/FontName /NTEIKC+CMTT8
 /Flags 4
 /FontBBox [-5 -232 545 699]
 /Ascent 611
@@ -6131,7 +6129,7 @@ endobj
 /ItalicAngle 0
 /StemV 76
 /XHeight 431
-/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/Q/R/S/T/U/V/X/Y/a/asciicircum/asterisk/b/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/e/eight/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedbl/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero)
+/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/Q/R/S/T/U/V/X/Y/a/asciicircum/asterisk/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/e/eight/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedbl/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero)
 /FontFile 1157 0 R
 >> endobj
 751 0 obj <<
@@ -6263,7 +6261,7 @@ endobj
 613 0 obj <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /VVCFMG+CMTT8
+/BaseFont /NTEIKC+CMTT8
 /FontDescriptor 1158 0 R
 /FirstChar 34
 /LastChar 125
@@ -7397,8 +7395,8 @@ endobj
 >> endobj
 1241 0 obj <<
 /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.3)/Keywords()
-/CreationDate (D:20110811030303-04'00')
-/ModDate (D:20110811030303-04'00')
+/CreationDate (D:20110811032950-04'00')
+/ModDate (D:20110811032950-04'00')
 /Trapped /False
 /PTEX.Fullbanner (This is pdfTeX using libpoppler, Version 3.141592-1.40.3-2.2 (Web2C 7.5.6) kpathsea version 3.5.6)
 >> endobj
@@ -7411,399 +7409,399 @@ xref
 0000000000 00000 f 
 0000000015 00000 n 
 0000033008 00000 n 
-0000401423 00000 n 
+0000401656 00000 n 
 0000000060 00000 n 
 0000000106 00000 n 
 0000033063 00000 n 
-0000401314 00000 n 
+0000401547 00000 n 
 0000000156 00000 n 
 0000000183 00000 n 
 0000033119 00000 n 
-0000401240 00000 n 
+0000401473 00000 n 
 0000000239 00000 n 
 0000000269 00000 n 
 0000033175 00000 n 
-0000401153 00000 n 
+0000401386 00000 n 
 0000000325 00000 n 
 0000000358 00000 n 
 0000033231 00000 n 
-0000401066 00000 n 
+0000401299 00000 n 
 0000000414 00000 n 
 0000000444 00000 n 
 0000036480 00000 n 
-0000400979 00000 n 
+0000401212 00000 n 
 0000000500 00000 n 
 0000000552 00000 n 
 0000048312 00000 n 
-0000400892 00000 n 
+0000401125 00000 n 
 0000000608 00000 n 
 0000000647 00000 n 
 0000048368 00000 n 
-0000400818 00000 n 
+0000401051 00000 n 
 0000000703 00000 n 
 0000000738 00000 n 
 0000048424 00000 n 
-0000400695 00000 n 
+0000400928 00000 n 
 0000000789 00000 n 
 0000000829 00000 n 
 0000050955 00000 n 
-0000400621 00000 n 
+0000400854 00000 n 
 0000000885 00000 n 
 0000000917 00000 n 
 0000051011 00000 n 
-0000400534 00000 n 
+0000400767 00000 n 
 0000000973 00000 n 
 0000000996 00000 n 
 0000051067 00000 n 
-0000400447 00000 n 
+0000400680 00000 n 
 0000001052 00000 n 
 0000001078 00000 n 
 0000053672 00000 n 
-0000400360 00000 n 
+0000400593 00000 n 
 0000001134 00000 n 
 0000001158 00000 n 
 0000053728 00000 n 
-0000400273 00000 n 
+0000400506 00000 n 
 0000001214 00000 n 
 0000001240 00000 n 
 0000053784 00000 n 
-0000400199 00000 n 
+0000400432 00000 n 
 0000001296 00000 n 
 0000001324 00000 n 
 0000056206 00000 n 
-0000400089 00000 n 
+0000400322 00000 n 
 0000001375 00000 n 
 0000001419 00000 n 
 0000056262 00000 n 
-0000400015 00000 n 
+0000400248 00000 n 
 0000001475 00000 n 
 0000001506 00000 n 
 0000056489 00000 n 
-0000399941 00000 n 
+0000400174 00000 n 
 0000001562 00000 n 
 0000001597 00000 n 
 0000075327 00000 n 
-0000399815 00000 n 
+0000400048 00000 n 
 0000001643 00000 n 
 0000001683 00000 n 
 0000075383 00000 n 
-0000399716 00000 n 
+0000399949 00000 n 
 0000001734 00000 n 
 0000001761 00000 n 
 0000075439 00000 n 
-0000399642 00000 n 
+0000399875 00000 n 
 0000001817 00000 n 
 0000001859 00000 n 
 0000075495 00000 n 
-0000399555 00000 n 
+0000399788 00000 n 
 0000001915 00000 n 
 0000001943 00000 n 
 0000075551 00000 n 
-0000399468 00000 n 
+0000399701 00000 n 
 0000001999 00000 n 
 0000002028 00000 n 
 0000078043 00000 n 
-0000399379 00000 n 
+0000399612 00000 n 
 0000002084 00000 n 
 0000002135 00000 n 
 0000078099 00000 n 
-0000399288 00000 n 
+0000399521 00000 n 
 0000002192 00000 n 
 0000002222 00000 n 
 0000078156 00000 n 
-0000399196 00000 n 
+0000399429 00000 n 
 0000002279 00000 n 
 0000002313 00000 n 
 0000079377 00000 n 
-0000399104 00000 n 
+0000399337 00000 n 
 0000002370 00000 n 
 0000002406 00000 n 
 0000081674 00000 n 
-0000399012 00000 n 
+0000399245 00000 n 
 0000002463 00000 n 
 0000002506 00000 n 
 0000081731 00000 n 
-0000398934 00000 n 
+0000399167 00000 n 
 0000002563 00000 n 
 0000002600 00000 n 
 0000084418 00000 n 
-0000398802 00000 n 
+0000399035 00000 n 
 0000002647 00000 n 
 0000002698 00000 n 
 0000084475 00000 n 
-0000398684 00000 n 
+0000398917 00000 n 
 0000002750 00000 n 
 0000002778 00000 n 
 0000084532 00000 n 
-0000398619 00000 n 
+0000398852 00000 n 
 0000002835 00000 n 
 0000002872 00000 n 
 0000084589 00000 n 
-0000398487 00000 n 
+0000398720 00000 n 
 0000002924 00000 n 
 0000002966 00000 n 
 0000084646 00000 n 
-0000398422 00000 n 
+0000398655 00000 n 
 0000003023 00000 n 
 0000003058 00000 n 
-0000099726 00000 n 
-0000398343 00000 n 
+0000099734 00000 n 
+0000398576 00000 n 
 0000003110 00000 n 
 0000003161 00000 n 
-0000104551 00000 n 
-0000398210 00000 n 
+0000104559 00000 n 
+0000398443 00000 n 
 0000003208 00000 n 
 0000003257 00000 n 
-0000104608 00000 n 
-0000398131 00000 n 
+0000104616 00000 n 
+0000398364 00000 n 
 0000003309 00000 n 
 0000003337 00000 n 
-0000104665 00000 n 
-0000397999 00000 n 
+0000104673 00000 n 
+0000398232 00000 n 
 0000003389 00000 n 
 0000003439 00000 n 
-0000104722 00000 n 
-0000397920 00000 n 
+0000104730 00000 n 
+0000398153 00000 n 
 0000003496 00000 n 
 0000003536 00000 n 
-0000104777 00000 n 
-0000397827 00000 n 
+0000104785 00000 n 
+0000398060 00000 n 
 0000003593 00000 n 
 0000003634 00000 n 
-0000107374 00000 n 
-0000397734 00000 n 
+0000107382 00000 n 
+0000397967 00000 n 
 0000003691 00000 n 
 0000003725 00000 n 
-0000107431 00000 n 
-0000397655 00000 n 
+0000107439 00000 n 
+0000397888 00000 n 
 0000003782 00000 n 
 0000003814 00000 n 
-0000122237 00000 n 
-0000397537 00000 n 
+0000122245 00000 n 
+0000397770 00000 n 
 0000003866 00000 n 
 0000003919 00000 n 
-0000122294 00000 n 
-0000397458 00000 n 
+0000122302 00000 n 
+0000397691 00000 n 
 0000003976 00000 n 
 0000004031 00000 n 
-0000129445 00000 n 
-0000397365 00000 n 
+0000129453 00000 n 
+0000397598 00000 n 
 0000004088 00000 n 
 0000004126 00000 n 
-0000129844 00000 n 
-0000397272 00000 n 
+0000129852 00000 n 
+0000397505 00000 n 
 0000004183 00000 n 
 0000004227 00000 n 
-0000131718 00000 n 
-0000397179 00000 n 
+0000131726 00000 n 
+0000397412 00000 n 
 0000004284 00000 n 
 0000004318 00000 n 
-0000132627 00000 n 
-0000397086 00000 n 
+0000132635 00000 n 
+0000397319 00000 n 
 0000004375 00000 n 
 0000004411 00000 n 
-0000135339 00000 n 
-0000396993 00000 n 
+0000135347 00000 n 
+0000397226 00000 n 
 0000004468 00000 n 
 0000004499 00000 n 
-0000138862 00000 n 
-0000396900 00000 n 
+0000138876 00000 n 
+0000397133 00000 n 
 0000004556 00000 n 
 0000004588 00000 n 
-0000138919 00000 n 
-0000396807 00000 n 
+0000138933 00000 n 
+0000397040 00000 n 
 0000004645 00000 n 
 0000004679 00000 n 
-0000140960 00000 n 
-0000396728 00000 n 
+0000140974 00000 n 
+0000396961 00000 n 
 0000004736 00000 n 
 0000004776 00000 n 
-0000143508 00000 n 
-0000396595 00000 n 
+0000143535 00000 n 
+0000396828 00000 n 
 0000004823 00000 n 
 0000004881 00000 n 
-0000143565 00000 n 
-0000396516 00000 n 
+0000143592 00000 n 
+0000396749 00000 n 
 0000004933 00000 n 
 0000004961 00000 n 
-0000143622 00000 n 
-0000396398 00000 n 
+0000143649 00000 n 
+0000396631 00000 n 
 0000005013 00000 n 
 0000005049 00000 n 
-0000143679 00000 n 
-0000396319 00000 n 
+0000143706 00000 n 
+0000396552 00000 n 
 0000005106 00000 n 
 0000005135 00000 n 
-0000146570 00000 n 
-0000396226 00000 n 
+0000146597 00000 n 
+0000396459 00000 n 
 0000005192 00000 n 
 0000005233 00000 n 
-0000149568 00000 n 
-0000396147 00000 n 
+0000149595 00000 n 
+0000396380 00000 n 
 0000005290 00000 n 
 0000005318 00000 n 
-0000153594 00000 n 
-0000396014 00000 n 
+0000153621 00000 n 
+0000396247 00000 n 
 0000005365 00000 n 
 0000005414 00000 n 
-0000153651 00000 n 
-0000395935 00000 n 
+0000153678 00000 n 
+0000396168 00000 n 
 0000005466 00000 n 
 0000005494 00000 n 
-0000153708 00000 n 
-0000395817 00000 n 
+0000153735 00000 n 
+0000396050 00000 n 
 0000005546 00000 n 
 0000005580 00000 n 
-0000153765 00000 n 
-0000395738 00000 n 
+0000153792 00000 n 
+0000395971 00000 n 
 0000005637 00000 n 
 0000005670 00000 n 
-0000153822 00000 n 
-0000395645 00000 n 
+0000153849 00000 n 
+0000395878 00000 n 
 0000005727 00000 n 
 0000005760 00000 n 
-0000157252 00000 n 
-0000395566 00000 n 
+0000157279 00000 n 
+0000395799 00000 n 
 0000005817 00000 n 
 0000005854 00000 n 
-0000164153 00000 n 
-0000395433 00000 n 
+0000164180 00000 n 
+0000395666 00000 n 
 0000005901 00000 n 
 0000005950 00000 n 
-0000164210 00000 n 
-0000395354 00000 n 
+0000164237 00000 n 
+0000395587 00000 n 
 0000006002 00000 n 
 0000006030 00000 n 
-0000164267 00000 n 
-0000395236 00000 n 
+0000164294 00000 n 
+0000395469 00000 n 
 0000006082 00000 n 
 0000006116 00000 n 
-0000164324 00000 n 
-0000395157 00000 n 
+0000164351 00000 n 
+0000395390 00000 n 
 0000006173 00000 n 
 0000006198 00000 n 
-0000184723 00000 n 
-0000395078 00000 n 
+0000184750 00000 n 
+0000395311 00000 n 
 0000006255 00000 n 
 0000006288 00000 n 
-0000198293 00000 n 
-0000394945 00000 n 
+0000198320 00000 n 
+0000395178 00000 n 
 0000006335 00000 n 
 0000006379 00000 n 
-0000198351 00000 n 
-0000394866 00000 n 
+0000198378 00000 n 
+0000395099 00000 n 
 0000006431 00000 n 
 0000006459 00000 n 
-0000198409 00000 n 
-0000394773 00000 n 
+0000198436 00000 n 
+0000395006 00000 n 
 0000006511 00000 n 
 0000006545 00000 n 
-0000234211 00000 n 
-0000394680 00000 n 
+0000234238 00000 n 
+0000394913 00000 n 
 0000006597 00000 n 
 0000006626 00000 n 
-0000234269 00000 n 
-0000394587 00000 n 
+0000234296 00000 n 
+0000394820 00000 n 
 0000006678 00000 n 
 0000006707 00000 n 
-0000256056 00000 n 
-0000394494 00000 n 
+0000256083 00000 n 
+0000394727 00000 n 
 0000006759 00000 n 
 0000006788 00000 n 
-0000258785 00000 n 
-0000394376 00000 n 
+0000258831 00000 n 
+0000394609 00000 n 
 0000006840 00000 n 
 0000006874 00000 n 
-0000258843 00000 n 
-0000394297 00000 n 
+0000258889 00000 n 
+0000394530 00000 n 
 0000006931 00000 n 
 0000006964 00000 n 
-0000261621 00000 n 
-0000394204 00000 n 
+0000261700 00000 n 
+0000394437 00000 n 
 0000007021 00000 n 
 0000007054 00000 n 
-0000265015 00000 n 
-0000394111 00000 n 
+0000265133 00000 n 
+0000394344 00000 n 
 0000007111 00000 n 
 0000007149 00000 n 
-0000265073 00000 n 
-0000394018 00000 n 
+0000265191 00000 n 
+0000394251 00000 n 
 0000007206 00000 n 
 0000007244 00000 n 
-0000267052 00000 n 
-0000393939 00000 n 
+0000267170 00000 n 
+0000394172 00000 n 
 0000007301 00000 n 
 0000007339 00000 n 
-0000268980 00000 n 
-0000393806 00000 n 
+0000269103 00000 n 
+0000394039 00000 n 
 0000007386 00000 n 
 0000007422 00000 n 
-0000269038 00000 n 
-0000393727 00000 n 
+0000269161 00000 n 
+0000393960 00000 n 
 0000007474 00000 n 
 0000007502 00000 n 
-0000269096 00000 n 
-0000393609 00000 n 
+0000269219 00000 n 
+0000393842 00000 n 
 0000007554 00000 n 
 0000007583 00000 n 
-0000269154 00000 n 
-0000393530 00000 n 
+0000269277 00000 n 
+0000393763 00000 n 
 0000007640 00000 n 
 0000007664 00000 n 
-0000269212 00000 n 
-0000393437 00000 n 
+0000269335 00000 n 
+0000393670 00000 n 
 0000007721 00000 n 
 0000007758 00000 n 
-0000271876 00000 n 
-0000393344 00000 n 
+0000271999 00000 n 
+0000393577 00000 n 
 0000007815 00000 n 
 0000007852 00000 n 
-0000271934 00000 n 
-0000393251 00000 n 
+0000272057 00000 n 
+0000393484 00000 n 
 0000007909 00000 n 
 0000007944 00000 n 
-0000271992 00000 n 
-0000393158 00000 n 
+0000272115 00000 n 
+0000393391 00000 n 
 0000008001 00000 n 
 0000008037 00000 n 
-0000272050 00000 n 
-0000393065 00000 n 
+0000272173 00000 n 
+0000393298 00000 n 
 0000008094 00000 n 
 0000008129 00000 n 
-0000273808 00000 n 
-0000392986 00000 n 
+0000273931 00000 n 
+0000393219 00000 n 
 0000008186 00000 n 
 0000008220 00000 n 
-0000276473 00000 n 
-0000392853 00000 n 
+0000276596 00000 n 
+0000393086 00000 n 
 0000008268 00000 n 
 0000008294 00000 n 
-0000276531 00000 n 
-0000392788 00000 n 
+0000276654 00000 n 
+0000393021 00000 n 
 0000008347 00000 n 
 0000008399 00000 n 
-0000280342 00000 n 
-0000392655 00000 n 
+0000280465 00000 n 
+0000392888 00000 n 
 0000008447 00000 n 
 0000008502 00000 n 
-0000280400 00000 n 
-0000392537 00000 n 
+0000280523 00000 n 
+0000392770 00000 n 
 0000008554 00000 n 
 0000008582 00000 n 
-0000280458 00000 n 
-0000392458 00000 n 
+0000280581 00000 n 
+0000392691 00000 n 
 0000008639 00000 n 
 0000008671 00000 n 
-0000280516 00000 n 
-0000392379 00000 n 
+0000280639 00000 n 
+0000392612 00000 n 
 0000008728 00000 n 
 0000008757 00000 n 
-0000283140 00000 n 
-0000392300 00000 n 
+0000283263 00000 n 
+0000392533 00000 n 
 0000008809 00000 n 
 0000008842 00000 n 
-0000285672 00000 n 
-0000392220 00000 n 
+0000285795 00000 n 
+0000392453 00000 n 
 0000008890 00000 n 
 0000008937 00000 n 
 0000010082 00000 n 
@@ -7838,11 +7836,11 @@ xref
 0000008989 00000 n 
 0000014579 00000 n 
 0000014636 00000 n 
-0000389369 00000 n 
-0000388938 00000 n 
+0000389602 00000 n 
+0000389171 00000 n 
 0000014693 00000 n 
-0000388793 00000 n 
-0000390387 00000 n 
+0000389026 00000 n 
+0000390620 00000 n 
 0000016863 00000 n 
 0000017025 00000 n 
 0000017187 00000 n 
@@ -7936,7 +7934,7 @@ xref
 0000033372 00000 n 
 0000036423 00000 n 
 0000036536 00000 n 
-0000389950 00000 n 
+0000390183 00000 n 
 0000038278 00000 n 
 0000048542 00000 n 
 0000038159 00000 n 
@@ -7948,7 +7946,7 @@ xref
 0000050779 00000 n 
 0000048671 00000 n 
 0000050898 00000 n 
-0000390505 00000 n 
+0000390738 00000 n 
 0000053840 00000 n 
 0000053496 00000 n 
 0000051208 00000 n 
@@ -7991,13 +7989,13 @@ xref
 0000066025 00000 n 
 0000066082 00000 n 
 0000066143 00000 n 
-0000388502 00000 n 
-0000389517 00000 n 
-0000389226 00000 n 
+0000388735 00000 n 
+0000389750 00000 n 
+0000389459 00000 n 
 0000066204 00000 n 
 0000063851 00000 n 
 0000065721 00000 n 
-0000290768 00000 n 
+0000290891 00000 n 
 0000069141 00000 n 
 0000069587 00000 n 
 0000069002 00000 n 
@@ -8016,9 +8014,9 @@ xref
 0000072650 00000 n 
 0000072707 00000 n 
 0000072764 00000 n 
-0000389083 00000 n 
-0000390242 00000 n 
-0000390623 00000 n 
+0000389316 00000 n 
+0000390475 00000 n 
+0000390856 00000 n 
 0000075607 00000 n 
 0000075151 00000 n 
 0000072944 00000 n 
@@ -8043,14 +8041,14 @@ xref
 0000083591 00000 n 
 0000081886 00000 n 
 0000084361 00000 n 
-0000390096 00000 n 
+0000390329 00000 n 
 0000087043 00000 n 
 0000087262 00000 n 
 0000086904 00000 n 
 0000084827 00000 n 
 0000087205 00000 n 
-0000389804 00000 n 
-0000390741 00000 n 
+0000390037 00000 n 
+0000390974 00000 n 
 0000089748 00000 n 
 0000089909 00000 n 
 0000090071 00000 n 
@@ -8070,587 +8068,587 @@ xref
 0000093565 00000 n 
 0000093622 00000 n 
 0000093359 00000 n 
-0000095570 00000 n 
-0000097244 00000 n 
-0000095451 00000 n 
+0000095578 00000 n 
+0000097252 00000 n 
+0000095459 00000 n 
 0000093839 00000 n 
-0000097069 00000 n 
-0000097126 00000 n 
-0000097188 00000 n 
-0000096920 00000 n 
-0000099783 00000 n 
-0000099436 00000 n 
-0000097412 00000 n 
-0000099555 00000 n 
-0000099612 00000 n 
-0000099669 00000 n 
-0000101597 00000 n 
-0000101421 00000 n 
-0000099920 00000 n 
-0000101540 00000 n 
-0000103736 00000 n 
-0000103887 00000 n 
-0000104039 00000 n 
-0000104191 00000 n 
-0000104833 00000 n 
-0000103565 00000 n 
-0000101669 00000 n 
-0000104494 00000 n 
-0000104343 00000 n 
-0000390859 00000 n 
-0000106863 00000 n 
-0000107015 00000 n 
-0000107550 00000 n 
-0000106708 00000 n 
-0000104944 00000 n 
-0000107317 00000 n 
-0000107167 00000 n 
-0000107488 00000 n 
-0000109642 00000 n 
-0000109792 00000 n 
-0000110094 00000 n 
-0000110246 00000 n 
-0000110398 00000 n 
-0000110550 00000 n 
-0000113883 00000 n 
-0000114035 00000 n 
-0000111726 00000 n 
-0000109455 00000 n 
-0000107705 00000 n 
-0000110702 00000 n 
-0000110759 00000 n 
-0000110816 00000 n 
-0000110873 00000 n 
-0000109942 00000 n 
-0000110930 00000 n 
-0000110987 00000 n 
-0000111044 00000 n 
-0000111101 00000 n 
-0000111158 00000 n 
-0000111215 00000 n 
-0000111272 00000 n 
-0000111329 00000 n 
-0000111386 00000 n 
-0000111442 00000 n 
-0000111498 00000 n 
-0000111555 00000 n 
-0000111612 00000 n 
-0000111669 00000 n 
-0000114187 00000 n 
-0000114349 00000 n 
-0000115304 00000 n 
-0000113720 00000 n 
-0000111824 00000 n 
-0000114509 00000 n 
-0000114566 00000 n 
-0000114623 00000 n 
-0000114679 00000 n 
-0000114736 00000 n 
-0000114793 00000 n 
-0000114850 00000 n 
-0000114907 00000 n 
-0000114964 00000 n 
-0000115021 00000 n 
-0000115078 00000 n 
-0000115134 00000 n 
-0000115190 00000 n 
-0000115247 00000 n 
-0000388210 00000 n 
-0000118422 00000 n 
-0000117164 00000 n 
-0000115428 00000 n 
-0000117283 00000 n 
-0000117340 00000 n 
-0000117397 00000 n 
-0000117454 00000 n 
-0000117511 00000 n 
-0000117568 00000 n 
-0000117625 00000 n 
-0000117682 00000 n 
-0000117739 00000 n 
-0000117796 00000 n 
-0000117853 00000 n 
-0000117910 00000 n 
-0000117967 00000 n 
-0000118023 00000 n 
-0000118080 00000 n 
-0000118137 00000 n 
-0000118194 00000 n 
-0000118251 00000 n 
-0000118308 00000 n 
-0000118365 00000 n 
-0000120934 00000 n 
-0000121096 00000 n 
-0000121247 00000 n 
-0000121552 00000 n 
-0000121705 00000 n 
-0000122863 00000 n 
-0000120747 00000 n 
-0000118520 00000 n 
-0000122011 00000 n 
-0000122068 00000 n 
-0000122125 00000 n 
-0000122182 00000 n 
-0000122351 00000 n 
-0000122408 00000 n 
-0000122465 00000 n 
-0000122522 00000 n 
-0000122579 00000 n 
-0000122636 00000 n 
-0000122693 00000 n 
-0000122750 00000 n 
-0000121399 00000 n 
-0000122806 00000 n 
-0000121858 00000 n 
-0000126216 00000 n 
-0000124845 00000 n 
-0000122974 00000 n 
-0000124964 00000 n 
-0000125021 00000 n 
-0000388648 00000 n 
-0000125078 00000 n 
-0000125135 00000 n 
-0000125192 00000 n 
-0000125249 00000 n 
-0000125306 00000 n 
-0000125363 00000 n 
-0000125420 00000 n 
-0000125477 00000 n 
-0000125533 00000 n 
-0000125590 00000 n 
-0000125647 00000 n 
-0000125704 00000 n 
-0000125761 00000 n 
-0000125818 00000 n 
-0000125875 00000 n 
-0000125931 00000 n 
-0000125988 00000 n 
-0000126045 00000 n 
-0000126102 00000 n 
-0000126159 00000 n 
-0000390977 00000 n 
-0000128756 00000 n 
-0000128918 00000 n 
-0000129080 00000 n 
-0000129234 00000 n 
-0000129958 00000 n 
-0000128593 00000 n 
-0000126353 00000 n 
-0000129388 00000 n 
-0000129502 00000 n 
-0000129559 00000 n 
-0000129616 00000 n 
-0000129673 00000 n 
-0000129730 00000 n 
-0000129787 00000 n 
-0000129901 00000 n 
-0000187793 00000 n 
-0000132684 00000 n 
-0000131542 00000 n 
-0000130056 00000 n 
-0000131661 00000 n 
-0000131775 00000 n 
-0000131832 00000 n 
-0000131889 00000 n 
-0000131946 00000 n 
-0000132002 00000 n 
-0000132059 00000 n 
-0000132116 00000 n 
-0000132173 00000 n 
-0000132230 00000 n 
-0000132286 00000 n 
-0000132343 00000 n 
-0000132400 00000 n 
-0000132457 00000 n 
-0000132514 00000 n 
-0000132571 00000 n 
-0000135396 00000 n 
-0000134253 00000 n 
-0000132782 00000 n 
-0000134372 00000 n 
-0000134429 00000 n 
-0000134486 00000 n 
-0000134543 00000 n 
-0000134600 00000 n 
-0000134657 00000 n 
-0000134714 00000 n 
-0000134771 00000 n 
-0000134828 00000 n 
-0000134884 00000 n 
-0000134941 00000 n 
-0000134998 00000 n 
-0000135055 00000 n 
-0000135112 00000 n 
-0000135169 00000 n 
-0000135225 00000 n 
-0000135282 00000 n 
-0000138329 00000 n 
-0000138501 00000 n 
-0000138653 00000 n 
-0000138976 00000 n 
-0000138174 00000 n 
-0000135494 00000 n 
-0000138805 00000 n 
-0000140730 00000 n 
-0000141017 00000 n 
-0000140591 00000 n 
-0000139100 00000 n 
-0000140903 00000 n 
-0000143736 00000 n 
-0000143332 00000 n 
-0000141102 00000 n 
-0000143451 00000 n 
-0000391095 00000 n 
-0000146684 00000 n 
-0000146394 00000 n 
-0000143886 00000 n 
-0000146513 00000 n 
-0000146627 00000 n 
-0000149281 00000 n 
-0000149681 00000 n 
-0000149142 00000 n 
-0000146795 00000 n 
-0000149454 00000 n 
-0000149511 00000 n 
-0000149624 00000 n 
-0000151103 00000 n 
-0000150642 00000 n 
-0000149805 00000 n 
-0000150761 00000 n 
-0000150818 00000 n 
-0000150875 00000 n 
-0000150932 00000 n 
-0000150989 00000 n 
-0000151046 00000 n 
-0000153375 00000 n 
-0000153879 00000 n 
-0000153236 00000 n 
-0000151201 00000 n 
-0000153537 00000 n 
-0000157034 00000 n 
-0000157309 00000 n 
-0000156895 00000 n 
-0000154016 00000 n 
-0000157195 00000 n 
-0000388357 00000 n 
-0000160302 00000 n 
-0000159727 00000 n 
-0000157497 00000 n 
-0000159846 00000 n 
-0000159903 00000 n 
-0000159960 00000 n 
-0000160017 00000 n 
-0000160074 00000 n 
-0000389662 00000 n 
-0000160131 00000 n 
-0000160188 00000 n 
-0000160245 00000 n 
-0000391213 00000 n 
-0000161421 00000 n 
-0000160960 00000 n 
-0000160490 00000 n 
-0000161079 00000 n 
-0000161136 00000 n 
-0000161193 00000 n 
-0000161250 00000 n 
-0000161307 00000 n 
-0000161364 00000 n 
-0000165342 00000 n 
-0000164381 00000 n 
-0000163977 00000 n 
-0000161506 00000 n 
-0000164096 00000 n 
-0000169001 00000 n 
-0000172993 00000 n 
-0000180201 00000 n 
-0000178082 00000 n 
-0000165223 00000 n 
-0000164479 00000 n 
-0000177839 00000 n 
-0000177896 00000 n 
-0000177958 00000 n 
-0000178020 00000 n 
-0000168568 00000 n 
-0000172562 00000 n 
-0000177336 00000 n 
-0000184780 00000 n 
-0000180082 00000 n 
-0000178224 00000 n 
-0000184604 00000 n 
-0000184661 00000 n 
-0000184170 00000 n 
-0000187414 00000 n 
-0000187574 00000 n 
-0000187850 00000 n 
-0000187267 00000 n 
-0000184948 00000 n 
-0000187736 00000 n 
-0000190443 00000 n 
-0000190605 00000 n 
-0000192460 00000 n 
-0000190881 00000 n 
-0000190296 00000 n 
-0000187987 00000 n 
-0000190767 00000 n 
-0000190824 00000 n 
-0000391331 00000 n 
-0000192678 00000 n 
-0000192321 00000 n 
-0000191018 00000 n 
-0000192621 00000 n 
-0000194828 00000 n 
-0000194990 00000 n 
-0000195152 00000 n 
-0000195368 00000 n 
-0000194673 00000 n 
-0000192789 00000 n 
-0000195310 00000 n 
-0000198467 00000 n 
-0000198112 00000 n 
-0000195505 00000 n 
-0000198234 00000 n 
-0000199752 00000 n 
-0000199264 00000 n 
-0000199083 00000 n 
-0000198579 00000 n 
-0000199205 00000 n 
-0000232471 00000 n 
-0000199630 00000 n 
-0000199337 00000 n 
-0000232349 00000 n 
-0000232408 00000 n 
-0000231507 00000 n 
-0000234327 00000 n 
-0000234029 00000 n 
-0000232590 00000 n 
-0000234152 00000 n 
-0000391452 00000 n 
-0000235357 00000 n 
-0000256177 00000 n 
-0000235234 00000 n 
-0000234439 00000 n 
-0000255997 00000 n 
-0000256114 00000 n 
-0000255221 00000 n 
-0000258901 00000 n 
-0000258603 00000 n 
-0000256322 00000 n 
-0000258726 00000 n 
-0000261679 00000 n 
-0000261439 00000 n 
-0000259026 00000 n 
-0000261562 00000 n 
-0000263514 00000 n 
-0000263332 00000 n 
-0000261804 00000 n 
-0000263455 00000 n 
-0000265131 00000 n 
-0000264833 00000 n 
-0000263613 00000 n 
-0000264956 00000 n 
-0000267287 00000 n 
-0000266870 00000 n 
-0000265269 00000 n 
-0000266993 00000 n 
-0000267110 00000 n 
-0000267169 00000 n 
+0000097077 00000 n 
+0000097134 00000 n 
+0000097196 00000 n 
+0000096928 00000 n 
+0000099791 00000 n 
+0000099444 00000 n 
+0000097420 00000 n 
+0000099563 00000 n 
+0000099620 00000 n 
+0000099677 00000 n 
+0000101605 00000 n 
+0000101429 00000 n 
+0000099928 00000 n 
+0000101548 00000 n 
+0000103744 00000 n 
+0000103895 00000 n 
+0000104047 00000 n 
+0000104199 00000 n 
+0000104841 00000 n 
+0000103573 00000 n 
+0000101677 00000 n 
+0000104502 00000 n 
+0000104351 00000 n 
+0000391092 00000 n 
+0000106871 00000 n 
+0000107023 00000 n 
+0000107558 00000 n 
+0000106716 00000 n 
+0000104952 00000 n 
+0000107325 00000 n 
+0000107175 00000 n 
+0000107496 00000 n 
+0000109650 00000 n 
+0000109800 00000 n 
+0000110102 00000 n 
+0000110254 00000 n 
+0000110406 00000 n 
+0000110558 00000 n 
+0000113891 00000 n 
+0000114043 00000 n 
+0000111734 00000 n 
+0000109463 00000 n 
+0000107713 00000 n 
+0000110710 00000 n 
+0000110767 00000 n 
+0000110824 00000 n 
+0000110881 00000 n 
+0000109950 00000 n 
+0000110938 00000 n 
+0000110995 00000 n 
+0000111052 00000 n 
+0000111109 00000 n 
+0000111166 00000 n 
+0000111223 00000 n 
+0000111280 00000 n 
+0000111337 00000 n 
+0000111394 00000 n 
+0000111450 00000 n 
+0000111506 00000 n 
+0000111563 00000 n 
+0000111620 00000 n 
+0000111677 00000 n 
+0000114195 00000 n 
+0000114357 00000 n 
+0000115312 00000 n 
+0000113728 00000 n 
+0000111832 00000 n 
+0000114517 00000 n 
+0000114574 00000 n 
+0000114631 00000 n 
+0000114687 00000 n 
+0000114744 00000 n 
+0000114801 00000 n 
+0000114858 00000 n 
+0000114915 00000 n 
+0000114972 00000 n 
+0000115029 00000 n 
+0000115086 00000 n 
+0000115142 00000 n 
+0000115198 00000 n 
+0000115255 00000 n 
+0000388443 00000 n 
+0000118430 00000 n 
+0000117172 00000 n 
+0000115436 00000 n 
+0000117291 00000 n 
+0000117348 00000 n 
+0000117405 00000 n 
+0000117462 00000 n 
+0000117519 00000 n 
+0000117576 00000 n 
+0000117633 00000 n 
+0000117690 00000 n 
+0000117747 00000 n 
+0000117804 00000 n 
+0000117861 00000 n 
+0000117918 00000 n 
+0000117975 00000 n 
+0000118031 00000 n 
+0000118088 00000 n 
+0000118145 00000 n 
+0000118202 00000 n 
+0000118259 00000 n 
+0000118316 00000 n 
+0000118373 00000 n 
+0000120942 00000 n 
+0000121104 00000 n 
+0000121255 00000 n 
+0000121560 00000 n 
+0000121713 00000 n 
+0000122871 00000 n 
+0000120755 00000 n 
+0000118528 00000 n 
+0000122019 00000 n 
+0000122076 00000 n 
+0000122133 00000 n 
+0000122190 00000 n 
+0000122359 00000 n 
+0000122416 00000 n 
+0000122473 00000 n 
+0000122530 00000 n 
+0000122587 00000 n 
+0000122644 00000 n 
+0000122701 00000 n 
+0000122758 00000 n 
+0000121407 00000 n 
+0000122814 00000 n 
+0000121866 00000 n 
+0000126224 00000 n 
+0000124853 00000 n 
+0000122982 00000 n 
+0000124972 00000 n 
+0000125029 00000 n 
+0000388881 00000 n 
+0000125086 00000 n 
+0000125143 00000 n 
+0000125200 00000 n 
+0000125257 00000 n 
+0000125314 00000 n 
+0000125371 00000 n 
+0000125428 00000 n 
+0000125485 00000 n 
+0000125541 00000 n 
+0000125598 00000 n 
+0000125655 00000 n 
+0000125712 00000 n 
+0000125769 00000 n 
+0000125826 00000 n 
+0000125883 00000 n 
+0000125939 00000 n 
+0000125996 00000 n 
+0000126053 00000 n 
+0000126110 00000 n 
+0000126167 00000 n 
+0000391210 00000 n 
+0000128764 00000 n 
+0000128926 00000 n 
+0000129088 00000 n 
+0000129242 00000 n 
+0000129966 00000 n 
+0000128601 00000 n 
+0000126361 00000 n 
+0000129396 00000 n 
+0000129510 00000 n 
+0000129567 00000 n 
+0000129624 00000 n 
+0000129681 00000 n 
+0000129738 00000 n 
+0000129795 00000 n 
+0000129909 00000 n 
+0000187820 00000 n 
+0000132692 00000 n 
+0000131550 00000 n 
+0000130064 00000 n 
+0000131669 00000 n 
+0000131783 00000 n 
+0000131840 00000 n 
+0000131897 00000 n 
+0000131954 00000 n 
+0000132010 00000 n 
+0000132067 00000 n 
+0000132124 00000 n 
+0000132181 00000 n 
+0000132238 00000 n 
+0000132294 00000 n 
+0000132351 00000 n 
+0000132408 00000 n 
+0000132465 00000 n 
+0000132522 00000 n 
+0000132579 00000 n 
+0000135404 00000 n 
+0000134261 00000 n 
+0000132790 00000 n 
+0000134380 00000 n 
+0000134437 00000 n 
+0000134494 00000 n 
+0000134551 00000 n 
+0000134608 00000 n 
+0000134665 00000 n 
+0000134722 00000 n 
+0000134779 00000 n 
+0000134836 00000 n 
+0000134892 00000 n 
+0000134949 00000 n 
+0000135006 00000 n 
+0000135063 00000 n 
+0000135120 00000 n 
+0000135177 00000 n 
+0000135233 00000 n 
+0000135290 00000 n 
+0000138343 00000 n 
+0000138515 00000 n 
+0000138667 00000 n 
+0000138990 00000 n 
+0000138188 00000 n 
+0000135502 00000 n 
+0000138819 00000 n 
+0000140744 00000 n 
+0000141031 00000 n 
+0000140605 00000 n 
+0000139114 00000 n 
+0000140917 00000 n 
+0000143763 00000 n 
+0000143359 00000 n 
+0000141116 00000 n 
+0000143478 00000 n 
+0000391328 00000 n 
+0000146711 00000 n 
+0000146421 00000 n 
+0000143913 00000 n 
+0000146540 00000 n 
+0000146654 00000 n 
+0000149308 00000 n 
+0000149708 00000 n 
+0000149169 00000 n 
+0000146822 00000 n 
+0000149481 00000 n 
+0000149538 00000 n 
+0000149651 00000 n 
+0000151130 00000 n 
+0000150669 00000 n 
+0000149832 00000 n 
+0000150788 00000 n 
+0000150845 00000 n 
+0000150902 00000 n 
+0000150959 00000 n 
+0000151016 00000 n 
+0000151073 00000 n 
+0000153402 00000 n 
+0000153906 00000 n 
+0000153263 00000 n 
+0000151228 00000 n 
+0000153564 00000 n 
+0000157061 00000 n 
+0000157336 00000 n 
+0000156922 00000 n 
+0000154043 00000 n 
+0000157222 00000 n 
+0000388590 00000 n 
+0000160329 00000 n 
+0000159754 00000 n 
+0000157524 00000 n 
+0000159873 00000 n 
+0000159930 00000 n 
+0000159987 00000 n 
+0000160044 00000 n 
+0000160101 00000 n 
+0000389895 00000 n 
+0000160158 00000 n 
+0000160215 00000 n 
+0000160272 00000 n 
+0000391446 00000 n 
+0000161448 00000 n 
+0000160987 00000 n 
+0000160517 00000 n 
+0000161106 00000 n 
+0000161163 00000 n 
+0000161220 00000 n 
+0000161277 00000 n 
+0000161334 00000 n 
+0000161391 00000 n 
+0000165369 00000 n 
+0000164408 00000 n 
+0000164004 00000 n 
+0000161533 00000 n 
+0000164123 00000 n 
+0000169028 00000 n 
+0000173020 00000 n 
+0000180228 00000 n 
+0000178109 00000 n 
+0000165250 00000 n 
+0000164506 00000 n 
+0000177866 00000 n 
+0000177923 00000 n 
+0000177985 00000 n 
+0000178047 00000 n 
+0000168595 00000 n 
+0000172589 00000 n 
+0000177363 00000 n 
+0000184807 00000 n 
+0000180109 00000 n 
+0000178251 00000 n 
+0000184631 00000 n 
+0000184688 00000 n 
+0000184197 00000 n 
+0000187441 00000 n 
+0000187601 00000 n 
+0000187877 00000 n 
+0000187294 00000 n 
+0000184975 00000 n 
+0000187763 00000 n 
+0000190470 00000 n 
+0000190632 00000 n 
+0000192487 00000 n 
+0000190908 00000 n 
+0000190323 00000 n 
+0000188014 00000 n 
+0000190794 00000 n 
+0000190851 00000 n 
+0000391564 00000 n 
+0000192705 00000 n 
+0000192348 00000 n 
+0000191045 00000 n 
+0000192648 00000 n 
+0000194855 00000 n 
+0000195017 00000 n 
+0000195179 00000 n 
+0000195395 00000 n 
+0000194700 00000 n 
+0000192816 00000 n 
+0000195337 00000 n 
+0000198494 00000 n 
+0000198139 00000 n 
+0000195532 00000 n 
+0000198261 00000 n 
+0000199779 00000 n 
+0000199291 00000 n 
+0000199110 00000 n 
+0000198606 00000 n 
+0000199232 00000 n 
+0000232498 00000 n 
+0000199657 00000 n 
+0000199364 00000 n 
+0000232376 00000 n 
+0000232435 00000 n 
+0000231534 00000 n 
+0000234354 00000 n 
+0000234056 00000 n 
+0000232617 00000 n 
+0000234179 00000 n 
+0000391685 00000 n 
+0000235384 00000 n 
+0000256204 00000 n 
+0000235261 00000 n 
+0000234466 00000 n 
+0000256024 00000 n 
+0000256141 00000 n 
+0000255248 00000 n 
+0000258947 00000 n 
+0000258649 00000 n 
+0000256349 00000 n 
+0000258772 00000 n 
+0000261758 00000 n 
+0000261518 00000 n 
+0000259072 00000 n 
+0000261641 00000 n 
+0000263621 00000 n 
+0000263439 00000 n 
+0000261883 00000 n 
+0000263562 00000 n 
+0000265249 00000 n 
+0000264951 00000 n 
+0000263720 00000 n 
+0000265074 00000 n 
+0000267405 00000 n 
+0000266988 00000 n 
+0000265387 00000 n 
+0000267111 00000 n 
 0000267228 00000 n 
-0000391577 00000 n 
-0000269270 00000 n 
-0000268798 00000 n 
-0000267425 00000 n 
+0000267287 00000 n 
+0000267346 00000 n 
+0000391810 00000 n 
+0000269393 00000 n 
 0000268921 00000 n 
-0000272107 00000 n 
-0000271694 00000 n 
-0000269408 00000 n 
+0000267543 00000 n 
+0000269044 00000 n 
+0000272230 00000 n 
 0000271817 00000 n 
-0000273866 00000 n 
-0000273626 00000 n 
-0000272232 00000 n 
+0000269531 00000 n 
+0000271940 00000 n 
+0000273989 00000 n 
 0000273749 00000 n 
-0000276588 00000 n 
-0000276291 00000 n 
-0000273978 00000 n 
+0000272355 00000 n 
+0000273872 00000 n 
+0000276711 00000 n 
 0000276414 00000 n 
-0000277405 00000 n 
-0000277223 00000 n 
-0000276713 00000 n 
+0000274101 00000 n 
+0000276537 00000 n 
+0000277528 00000 n 
 0000277346 00000 n 
-0000279645 00000 n 
-0000279797 00000 n 
-0000279950 00000 n 
-0000280117 00000 n 
-0000280574 00000 n 
-0000279474 00000 n 
-0000277504 00000 n 
-0000280283 00000 n 
-0000391702 00000 n 
-0000283198 00000 n 
-0000282958 00000 n 
-0000280686 00000 n 
+0000276836 00000 n 
+0000277469 00000 n 
+0000279768 00000 n 
+0000279920 00000 n 
+0000280073 00000 n 
+0000280240 00000 n 
+0000280697 00000 n 
+0000279597 00000 n 
+0000277627 00000 n 
+0000280406 00000 n 
+0000391935 00000 n 
+0000283321 00000 n 
 0000283081 00000 n 
-0000284941 00000 n 
-0000284700 00000 n 
-0000283323 00000 n 
+0000280809 00000 n 
+0000283204 00000 n 
+0000285064 00000 n 
 0000284823 00000 n 
-0000284882 00000 n 
-0000285730 00000 n 
-0000285490 00000 n 
-0000285053 00000 n 
+0000283446 00000 n 
+0000284946 00000 n 
+0000285005 00000 n 
+0000285853 00000 n 
 0000285613 00000 n 
-0000287149 00000 n 
-0000288712 00000 n 
-0000288881 00000 n 
-0000289059 00000 n 
-0000289513 00000 n 
-0000286978 00000 n 
-0000285829 00000 n 
-0000289395 00000 n 
-0000289454 00000 n 
-0000289227 00000 n 
-0000288451 00000 n 
-0000288608 00000 n 
-0000288689 00000 n 
-0000290238 00000 n 
-0000290825 00000 n 
-0000290085 00000 n 
-0000289642 00000 n 
-0000290651 00000 n 
-0000290710 00000 n 
-0000290445 00000 n 
-0000290924 00000 n 
+0000285176 00000 n 
+0000285736 00000 n 
+0000287272 00000 n 
+0000288835 00000 n 
+0000289004 00000 n 
+0000289182 00000 n 
+0000289636 00000 n 
+0000287101 00000 n 
+0000285952 00000 n 
+0000289518 00000 n 
+0000289577 00000 n 
+0000289350 00000 n 
+0000288574 00000 n 
+0000288731 00000 n 
+0000288812 00000 n 
+0000290361 00000 n 
 0000290948 00000 n 
-0000291394 00000 n 
-0000291908 00000 n 
-0000291934 00000 n 
-0000291966 00000 n 
-0000292490 00000 n 
-0000293062 00000 n 
-0000293142 00000 n 
-0000293300 00000 n 
-0000293951 00000 n 
-0000294529 00000 n 
-0000294949 00000 n 
-0000295592 00000 n 
-0000296052 00000 n 
-0000296695 00000 n 
-0000298323 00000 n 
-0000298551 00000 n 
-0000301452 00000 n 
-0000301786 00000 n 
-0000307179 00000 n 
-0000307459 00000 n 
-0000309600 00000 n 
-0000309828 00000 n 
-0000325665 00000 n 
-0000326241 00000 n 
-0000331170 00000 n 
-0000331446 00000 n 
-0000334777 00000 n 
-0000335045 00000 n 
-0000337680 00000 n 
-0000337930 00000 n 
-0000349702 00000 n 
-0000350135 00000 n 
-0000352188 00000 n 
-0000352475 00000 n 
-0000353686 00000 n 
-0000353912 00000 n 
-0000355474 00000 n 
-0000355716 00000 n 
-0000365133 00000 n 
-0000365484 00000 n 
-0000373932 00000 n 
-0000374334 00000 n 
-0000387662 00000 n 
-0000391827 00000 n 
-0000391947 00000 n 
-0000392070 00000 n 
-0000392143 00000 n 
-0000401533 00000 n 
-0000401711 00000 n 
-0000401890 00000 n 
-0000402068 00000 n 
-0000402247 00000 n 
-0000402424 00000 n 
-0000402601 00000 n 
-0000402780 00000 n 
-0000402958 00000 n 
-0000403137 00000 n 
-0000403316 00000 n 
-0000403486 00000 n 
-0000403657 00000 n 
-0000403827 00000 n 
-0000403998 00000 n 
-0000404168 00000 n 
-0000404339 00000 n 
-0000404508 00000 n 
-0000404677 00000 n 
-0000404848 00000 n 
-0000405018 00000 n 
-0000405189 00000 n 
-0000405359 00000 n 
-0000405530 00000 n 
-0000405700 00000 n 
-0000405871 00000 n 
-0000406075 00000 n 
-0000406259 00000 n 
-0000406434 00000 n 
-0000406605 00000 n 
-0000406775 00000 n 
-0000406946 00000 n 
-0000407116 00000 n 
-0000407287 00000 n 
-0000407457 00000 n 
-0000407628 00000 n 
-0000407801 00000 n 
-0000407975 00000 n 
-0000408152 00000 n 
-0000408327 00000 n 
-0000408509 00000 n 
-0000408712 00000 n 
-0000408914 00000 n 
-0000409117 00000 n 
-0000409319 00000 n 
-0000409521 00000 n 
-0000409710 00000 n 
-0000409897 00000 n 
-0000410111 00000 n 
-0000410338 00000 n 
-0000410565 00000 n 
-0000410792 00000 n 
-0000411032 00000 n 
-0000411293 00000 n 
-0000411554 00000 n 
-0000411817 00000 n 
-0000412084 00000 n 
-0000412351 00000 n 
-0000412618 00000 n 
-0000412885 00000 n 
-0000413152 00000 n 
-0000413419 00000 n 
-0000413626 00000 n 
-0000413744 00000 n 
-0000413861 00000 n 
-0000413976 00000 n 
-0000414092 00000 n 
-0000414208 00000 n 
-0000414324 00000 n 
-0000414444 00000 n 
-0000414571 00000 n 
-0000414706 00000 n 
-0000414846 00000 n 
-0000414950 00000 n 
-0000415068 00000 n 
-0000415187 00000 n 
-0000415281 00000 n 
-0000415321 00000 n 
-0000415453 00000 n 
+0000290208 00000 n 
+0000289765 00000 n 
+0000290774 00000 n 
+0000290833 00000 n 
+0000290568 00000 n 
+0000291047 00000 n 
+0000291071 00000 n 
+0000291517 00000 n 
+0000292031 00000 n 
+0000292057 00000 n 
+0000292089 00000 n 
+0000292613 00000 n 
+0000293185 00000 n 
+0000293265 00000 n 
+0000293423 00000 n 
+0000294074 00000 n 
+0000294652 00000 n 
+0000295072 00000 n 
+0000295715 00000 n 
+0000296175 00000 n 
+0000296818 00000 n 
+0000298446 00000 n 
+0000298674 00000 n 
+0000301575 00000 n 
+0000301909 00000 n 
+0000307302 00000 n 
+0000307582 00000 n 
+0000309723 00000 n 
+0000309951 00000 n 
+0000325788 00000 n 
+0000326364 00000 n 
+0000331293 00000 n 
+0000331569 00000 n 
+0000334900 00000 n 
+0000335168 00000 n 
+0000337803 00000 n 
+0000338053 00000 n 
+0000349825 00000 n 
+0000350258 00000 n 
+0000352311 00000 n 
+0000352598 00000 n 
+0000353809 00000 n 
+0000354035 00000 n 
+0000355597 00000 n 
+0000355839 00000 n 
+0000365256 00000 n 
+0000365607 00000 n 
+0000374055 00000 n 
+0000374457 00000 n 
+0000387885 00000 n 
+0000392060 00000 n 
+0000392180 00000 n 
+0000392303 00000 n 
+0000392376 00000 n 
+0000401766 00000 n 
+0000401944 00000 n 
+0000402123 00000 n 
+0000402301 00000 n 
+0000402480 00000 n 
+0000402657 00000 n 
+0000402834 00000 n 
+0000403013 00000 n 
+0000403191 00000 n 
+0000403370 00000 n 
+0000403549 00000 n 
+0000403719 00000 n 
+0000403890 00000 n 
+0000404060 00000 n 
+0000404231 00000 n 
+0000404401 00000 n 
+0000404572 00000 n 
+0000404741 00000 n 
+0000404910 00000 n 
+0000405081 00000 n 
+0000405251 00000 n 
+0000405422 00000 n 
+0000405592 00000 n 
+0000405763 00000 n 
+0000405933 00000 n 
+0000406104 00000 n 
+0000406308 00000 n 
+0000406492 00000 n 
+0000406667 00000 n 
+0000406838 00000 n 
+0000407008 00000 n 
+0000407179 00000 n 
+0000407349 00000 n 
+0000407520 00000 n 
+0000407690 00000 n 
+0000407861 00000 n 
+0000408034 00000 n 
+0000408208 00000 n 
+0000408385 00000 n 
+0000408560 00000 n 
+0000408742 00000 n 
+0000408945 00000 n 
+0000409147 00000 n 
+0000409350 00000 n 
+0000409552 00000 n 
+0000409754 00000 n 
+0000409943 00000 n 
+0000410130 00000 n 
+0000410344 00000 n 
+0000410571 00000 n 
+0000410798 00000 n 
+0000411025 00000 n 
+0000411265 00000 n 
+0000411526 00000 n 
+0000411787 00000 n 
+0000412050 00000 n 
+0000412317 00000 n 
+0000412584 00000 n 
+0000412851 00000 n 
+0000413118 00000 n 
+0000413385 00000 n 
+0000413652 00000 n 
+0000413859 00000 n 
+0000413977 00000 n 
+0000414094 00000 n 
+0000414209 00000 n 
+0000414325 00000 n 
+0000414441 00000 n 
+0000414557 00000 n 
+0000414677 00000 n 
+0000414804 00000 n 
+0000414939 00000 n 
+0000415079 00000 n 
+0000415183 00000 n 
+0000415301 00000 n 
+0000415420 00000 n 
+0000415514 00000 n 
+0000415554 00000 n 
+0000415686 00000 n 
 trailer
 << /Size 1242
 /Root 1240 0 R
 /Info 1241 0 R
-/ID [<4B97DC725747E361C8C5FAEA2892B227> <4B97DC725747E361C8C5FAEA2892B227>] >>
+/ID [<F313B328E452B9103DB14F2AFB4D92B4> <F313B328E452B9103DB14F2AFB4D92B4>] >>
 startxref
-415785
+416018
 %%EOF