Merge lp:~david-ham/spud/update_fortran_interface into lp:spud

Proposed by David Ham
Status: Merged
Approved by: Patrick Farrell
Approved revision: 415
Merged at revision: 414
Proposed branch: lp:~david-ham/spud/update_fortran_interface
Merge into: lp:spud
Diff against target: 7815 lines
To merge this branch: bzr merge lp:~david-ham/spud/update_fortran_interface
Reviewer Review Type Date Requested Status
Patrick Farrell Pending
Review via email: mp+67527@code.launchpad.net

Description of the change

This change updates the fortran/C interface to use the Fortran 2003 iso_c_bindings rather than the old hacks.

To post a comment you must log in.
Revision history for this message
Patrick Farrell (pefarrell) wrote :

Looks good. This is certainly a cleaner way to do it.

Aside: the main reason why the C interface takes pointers to /everything/, even when it is very unCish, is because Fortran used to only be able to pass over pointers. Now that we have the value keyword, do you think it is worth cleaning up the C api?

The other thing: how heavily have you tested this? Have you ran fluidity's test suite with this version of libspud? I know from bitter experience that it is very easy to make a mistake while writing F2003 iso_c_binding interfaces by hand -- and these mistakes show up as mysterious stack smashes later on.

Revision history for this message
David Ham (david-ham) wrote :

> Aside: the main reason why the C interface takes pointers to /everything/,
> even when it is very unCish, is because Fortran used to only be able to pass
> over pointers. Now that we have the value keyword, do you think it is worth
> cleaning up the C api?

Could do. I think it's just the type(c_int), intent(in) arguments which would more naturally be passed by value in C. That would be really easy to fix.

>
> The other thing: how heavily have you tested this? Have you ran fluidity's
> test suite with this version of libspud? I know from bitter experience that it
> is very easy to make a mistake while writing F2003 iso_c_binding interfaces by
> hand -- and these mistakes show up as mysterious stack smashes later on.

Good point. I have only run Spud's internal tests. I'll test it on the trunk.

413. By David Ham

Convert int* interfaces which would more naturally be passed by value to int
Change the C spud prefix from cspud to spud

414. By David Ham

Update the spud interface by:
* renaming number_of_children to get_number_of_children for consistency.
* causing write_options, load_options and get_number_of_children to return error codes, also for consistency.

415. By David Ham

Update header file names to more standard ones.

Consequential manual updates.

Revision history for this message
David Ham (david-ham) wrote :

Ok, the above changes are now in. It passes short tests when hacked into the current fluidity source so it's clearly 100% correct in every way and should be merged, right? ;)

Revision history for this message
Patrick Farrell (pefarrell) wrote :

OK. It'll see lots of testing very soon, anyway :-)

416. By David Ham

merge from trunk

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile.in'
2--- Makefile.in 2010-01-18 14:23:57 +0000
3+++ Makefile.in 2011-07-11 16:34:27 +0000
4@@ -39,7 +39,7 @@
5 LIB = libspud.la
6 LIBS = $(shell echo @LIBS@ | sed 's/-L /-L/g')
7
8-HEADERS = include/cspud.h include/spud.h include/spud_config.h include/spud_enums.h include/tinystr.h include/tinyxml.h
9+HEADERS = include/spud.h include/spud include/spud_enums.h include/tinystr.h include/tinyxml.h
10 MODS = spud.mod
11 OBJS = spud.lo spud_interfaces.lo tinystr.lo tinyxml.lo tinyxmlerror.lo tinyxmlparser.lo fspud.lo
12
13@@ -102,7 +102,6 @@
14 distclean: clean
15 @cd src/tests; $(MAKE) distclean
16 rm -fr config.log config.status autom4te.cache Makefile
17- rm -f include/spud_config.h
18 rm -f Makefile src/tests/Makefile examples/Makefile
19 rm -f bin/spud-preprocess
20 rm -f diamond/setup.py diamond/diamond/plugins.py diamond/diamond/preprocess.py
21
22=== modified file 'configure'
23--- configure 2010-01-18 14:19:00 +0000
24+++ configure 2011-07-11 16:34:27 +0000
25@@ -1,11 +1,13 @@
26 #! /bin/sh
27 # Guess values for system-dependent variables and create Makefiles.
28-# Generated by GNU Autoconf 2.64.
29+# Generated by GNU Autoconf 2.67.
30+#
31 #
32 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
33-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
34+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
35 # Foundation, Inc.
36 #
37+#
38 # This configure script is free software; the Free Software Foundation
39 # gives unlimited permission to copy, distribute and modify it.
40 ## -------------------- ##
41@@ -314,7 +316,7 @@
42 test -d "$as_dir" && break
43 done
44 test -z "$as_dirs" || eval "mkdir $as_dirs"
45- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
46+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
47
48
49 } # as_fn_mkdir_p
50@@ -354,19 +356,19 @@
51 fi # as_fn_arith
52
53
54-# as_fn_error ERROR [LINENO LOG_FD]
55-# ---------------------------------
56+# as_fn_error STATUS ERROR [LINENO LOG_FD]
57+# ----------------------------------------
58 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
59 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
60-# script with status $?, using 1 if that was 0.
61+# script with STATUS, using 1 if that was 0.
62 as_fn_error ()
63 {
64- as_status=$?; test $as_status -eq 0 && as_status=1
65- if test "$3"; then
66- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
67- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
68+ as_status=$1; test $as_status -eq 0 && as_status=1
69+ if test "$4"; then
70+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
71+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
72 fi
73- $as_echo "$as_me: error: $1" >&2
74+ $as_echo "$as_me: error: $2" >&2
75 as_fn_exit $as_status
76 } # as_fn_error
77
78@@ -673,10 +675,11 @@
79
80
81
82-exec 7<&0 </dev/null 6>&1
83+test -n "$DJDIR" || exec 7<&0 </dev/null
84+exec 6>&1
85
86 # Name of the host.
87-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
88+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
89 # so uname gets run too.
90 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
91
92@@ -925,8 +928,9 @@
93 fi
94
95 case $ac_option in
96- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
97- *) ac_optarg=yes ;;
98+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
99+ *=) ac_optarg= ;;
100+ *) ac_optarg=yes ;;
101 esac
102
103 # Accept the important Cygnus configure options, so we can diagnose typos.
104@@ -971,7 +975,7 @@
105 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
106 # Reject names that are not valid shell variable names.
107 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
108- as_fn_error "invalid feature name: $ac_useropt"
109+ as_fn_error $? "invalid feature name: $ac_useropt"
110 ac_useropt_orig=$ac_useropt
111 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
112 case $ac_user_opts in
113@@ -997,7 +1001,7 @@
114 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
115 # Reject names that are not valid shell variable names.
116 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
117- as_fn_error "invalid feature name: $ac_useropt"
118+ as_fn_error $? "invalid feature name: $ac_useropt"
119 ac_useropt_orig=$ac_useropt
120 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
121 case $ac_user_opts in
122@@ -1201,7 +1205,7 @@
123 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
124 # Reject names that are not valid shell variable names.
125 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
126- as_fn_error "invalid package name: $ac_useropt"
127+ as_fn_error $? "invalid package name: $ac_useropt"
128 ac_useropt_orig=$ac_useropt
129 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
130 case $ac_user_opts in
131@@ -1217,7 +1221,7 @@
132 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
133 # Reject names that are not valid shell variable names.
134 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
135- as_fn_error "invalid package name: $ac_useropt"
136+ as_fn_error $? "invalid package name: $ac_useropt"
137 ac_useropt_orig=$ac_useropt
138 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
139 case $ac_user_opts in
140@@ -1247,8 +1251,8 @@
141 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
142 x_libraries=$ac_optarg ;;
143
144- -*) as_fn_error "unrecognized option: \`$ac_option'
145-Try \`$0 --help' for more information."
146+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
147+Try \`$0 --help' for more information"
148 ;;
149
150 *=*)
151@@ -1256,7 +1260,7 @@
152 # Reject names that are not valid shell variable names.
153 case $ac_envvar in #(
154 '' | [0-9]* | *[!_$as_cr_alnum]* )
155- as_fn_error "invalid variable name: \`$ac_envvar'" ;;
156+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
157 esac
158 eval $ac_envvar=\$ac_optarg
159 export $ac_envvar ;;
160@@ -1274,13 +1278,13 @@
161
162 if test -n "$ac_prev"; then
163 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
164- as_fn_error "missing argument to $ac_option"
165+ as_fn_error $? "missing argument to $ac_option"
166 fi
167
168 if test -n "$ac_unrecognized_opts"; then
169 case $enable_option_checking in
170 no) ;;
171- fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
172+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
173 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
174 esac
175 fi
176@@ -1303,7 +1307,7 @@
177 [\\/$]* | ?:[\\/]* ) continue;;
178 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
179 esac
180- as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
181+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
182 done
183
184 # There might be people who depend on the old broken behavior: `$host'
185@@ -1317,8 +1321,8 @@
186 if test "x$host_alias" != x; then
187 if test "x$build_alias" = x; then
188 cross_compiling=maybe
189- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
190- If a cross compiler is detected then cross compile mode will be used." >&2
191+ $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
192+ If a cross compiler is detected then cross compile mode will be used" >&2
193 elif test "x$build_alias" != "x$host_alias"; then
194 cross_compiling=yes
195 fi
196@@ -1333,9 +1337,9 @@
197 ac_pwd=`pwd` && test -n "$ac_pwd" &&
198 ac_ls_di=`ls -di .` &&
199 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
200- as_fn_error "working directory cannot be determined"
201+ as_fn_error $? "working directory cannot be determined"
202 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
203- as_fn_error "pwd does not report name of working directory"
204+ as_fn_error $? "pwd does not report name of working directory"
205
206
207 # Find the source files, if location was not specified.
208@@ -1374,11 +1378,11 @@
209 fi
210 if test ! -r "$srcdir/$ac_unique_file"; then
211 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
212- as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
213+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
214 fi
215 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
216 ac_abs_confdir=`(
217- cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
218+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
219 pwd)`
220 # When building in place, set srcdir=.
221 if test "$ac_abs_confdir" = "$ac_pwd"; then
222@@ -1418,7 +1422,7 @@
223 --help=short display options specific to this package
224 --help=recursive display the short help of all the included packages
225 -V, --version display version information and exit
226- -q, --quiet, --silent do not print \`checking...' messages
227+ -q, --quiet, --silent do not print \`checking ...' messages
228 --cache-file=FILE cache test results in FILE [disabled]
229 -C, --config-cache alias for \`--cache-file=config.cache'
230 -n, --no-create do not create output files
231@@ -1497,7 +1501,7 @@
232 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
233 nonstandard directory <lib dir>
234 LIBS libraries to pass to the linker, e.g. -l<library>
235- CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
236+ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
237 you have headers in a nonstandard directory <include dir>
238 CPP C preprocessor
239 CXX C++ compiler command
240@@ -1575,9 +1579,9 @@
241 if $ac_init_version; then
242 cat <<\_ACEOF
243 configure
244-generated by GNU Autoconf 2.64
245+generated by GNU Autoconf 2.67
246
247-Copyright (C) 2009 Free Software Foundation, Inc.
248+Copyright (C) 2010 Free Software Foundation, Inc.
249 This configure script is free software; the Free Software Foundation
250 gives unlimited permission to copy, distribute and modify it.
251 _ACEOF
252@@ -1622,7 +1626,7 @@
253 ac_retval=1
254 fi
255 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
256- return $ac_retval
257+ as_fn_set_status $ac_retval
258
259 } # ac_fn_c_try_compile
260
261@@ -1668,7 +1672,7 @@
262 # left behind by Apple's compiler. We do this before executing the actions.
263 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
264 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
265- return $ac_retval
266+ as_fn_set_status $ac_retval
267
268 } # ac_fn_c_try_link
269
270@@ -1681,7 +1685,7 @@
271 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
272 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
273 $as_echo_n "checking for $2... " >&6; }
274-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
275+if eval "test \"\${$3+set}\"" = set; then :
276 $as_echo_n "(cached) " >&6
277 else
278 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
279@@ -1724,7 +1728,7 @@
280 mv -f conftest.er1 conftest.err
281 fi
282 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
283- test $ac_status = 0; } >/dev/null && {
284+ test $ac_status = 0; } > conftest.i && {
285 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
286 test ! -s conftest.err
287 }; then :
288@@ -1736,7 +1740,7 @@
289 ac_retval=1
290 fi
291 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
292- return $ac_retval
293+ as_fn_set_status $ac_retval
294
295 } # ac_fn_c_try_cpp
296
297@@ -1778,7 +1782,7 @@
298 fi
299 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
300 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
301- return $ac_retval
302+ as_fn_set_status $ac_retval
303
304 } # ac_fn_c_try_run
305
306@@ -1790,7 +1794,7 @@
307 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
308 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
309 $as_echo_n "checking for $2... " >&6; }
310-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
311+if eval "test \"\${$3+set}\"" = set; then :
312 $as_echo_n "(cached) " >&6
313 else
314 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
315@@ -1883,7 +1887,7 @@
316 ac_retval=1
317 fi
318 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
319- return $ac_retval
320+ as_fn_set_status $ac_retval
321
322 } # ac_fn_cxx_try_compile
323
324@@ -1908,7 +1912,7 @@
325 mv -f conftest.er1 conftest.err
326 fi
327 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
328- test $ac_status = 0; } >/dev/null && {
329+ test $ac_status = 0; } > conftest.i && {
330 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
331 test ! -s conftest.err
332 }; then :
333@@ -1920,7 +1924,7 @@
334 ac_retval=1
335 fi
336 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
337- return $ac_retval
338+ as_fn_set_status $ac_retval
339
340 } # ac_fn_cxx_try_cpp
341
342@@ -1966,7 +1970,7 @@
343 # left behind by Apple's compiler. We do this before executing the actions.
344 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
345 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
346- return $ac_retval
347+ as_fn_set_status $ac_retval
348
349 } # ac_fn_cxx_try_link
350
351@@ -2004,7 +2008,7 @@
352 ac_retval=1
353 fi
354 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
355- return $ac_retval
356+ as_fn_set_status $ac_retval
357
358 } # ac_fn_fc_try_compile
359
360@@ -2050,7 +2054,7 @@
361 # left behind by Apple's compiler. We do this before executing the actions.
362 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
363 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
364- return $ac_retval
365+ as_fn_set_status $ac_retval
366
367 } # ac_fn_fc_try_link
368
369@@ -2088,7 +2092,7 @@
370 ac_retval=1
371 fi
372 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
373- return $ac_retval
374+ as_fn_set_status $ac_retval
375
376 } # ac_fn_f77_try_compile
377
378@@ -2134,7 +2138,7 @@
379 # left behind by Apple's compiler. We do this before executing the actions.
380 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
381 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
382- return $ac_retval
383+ as_fn_set_status $ac_retval
384
385 } # ac_fn_f77_try_link
386
387@@ -2312,7 +2316,7 @@
388
389 fi
390 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
391- return $ac_retval
392+ as_fn_set_status $ac_retval
393
394 } # ac_fn_c_compute_int
395 cat >config.log <<_ACEOF
396@@ -2320,7 +2324,7 @@
397 running configure, to aid debugging if configure makes a mistake.
398
399 It was created by $as_me, which was
400-generated by GNU Autoconf 2.64. Invocation command line was
401+generated by GNU Autoconf 2.67. Invocation command line was
402
403 $ $0 $@
404
405@@ -2430,11 +2434,9 @@
406 {
407 echo
408
409- cat <<\_ASBOX
410-## ---------------- ##
411+ $as_echo "## ---------------- ##
412 ## Cache variables. ##
413-## ---------------- ##
414-_ASBOX
415+## ---------------- ##"
416 echo
417 # The following way of writing the cache mishandles newlines in values,
418 (
419@@ -2468,11 +2470,9 @@
420 )
421 echo
422
423- cat <<\_ASBOX
424-## ----------------- ##
425+ $as_echo "## ----------------- ##
426 ## Output variables. ##
427-## ----------------- ##
428-_ASBOX
429+## ----------------- ##"
430 echo
431 for ac_var in $ac_subst_vars
432 do
433@@ -2485,11 +2485,9 @@
434 echo
435
436 if test -n "$ac_subst_files"; then
437- cat <<\_ASBOX
438-## ------------------- ##
439+ $as_echo "## ------------------- ##
440 ## File substitutions. ##
441-## ------------------- ##
442-_ASBOX
443+## ------------------- ##"
444 echo
445 for ac_var in $ac_subst_files
446 do
447@@ -2503,11 +2501,9 @@
448 fi
449
450 if test -s confdefs.h; then
451- cat <<\_ASBOX
452-## ----------- ##
453+ $as_echo "## ----------- ##
454 ## confdefs.h. ##
455-## ----------- ##
456-_ASBOX
457+## ----------- ##"
458 echo
459 cat confdefs.h
460 echo
461@@ -2562,7 +2558,12 @@
462 ac_site_file1=NONE
463 ac_site_file2=NONE
464 if test -n "$CONFIG_SITE"; then
465- ac_site_file1=$CONFIG_SITE
466+ # We do not want a PATH search for config.site.
467+ case $CONFIG_SITE in #((
468+ -*) ac_site_file1=./$CONFIG_SITE;;
469+ */*) ac_site_file1=$CONFIG_SITE;;
470+ *) ac_site_file1=./$CONFIG_SITE;;
471+ esac
472 elif test "x$prefix" != xNONE; then
473 ac_site_file1=$prefix/share/config.site
474 ac_site_file2=$prefix/etc/config.site
475@@ -2573,18 +2574,22 @@
476 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
477 do
478 test "x$ac_site_file" = xNONE && continue
479- if test -r "$ac_site_file"; then
480+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
481 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
482 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
483 sed 's/^/| /' "$ac_site_file" >&5
484- . "$ac_site_file"
485+ . "$ac_site_file" \
486+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
487+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
488+as_fn_error $? "failed to load site script $ac_site_file
489+See \`config.log' for more details" "$LINENO" 5 ; }
490 fi
491 done
492
493 if test -r "$cache_file"; then
494- # Some versions of bash will fail to source /dev/null (special
495- # files actually), so we avoid doing that.
496- if test -f "$cache_file"; then
497+ # Some versions of bash will fail to source /dev/null (special files
498+ # actually), so we avoid doing that. DJGPP emulates it as a regular file.
499+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then
500 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
501 $as_echo "$as_me: loading cache $cache_file" >&6;}
502 case $cache_file in
503@@ -2653,7 +2658,7 @@
504 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
505 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
506 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
507- as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
508+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
509 fi
510 ## -------------------- ##
511 ## Main body of script. ##
512@@ -2666,8 +2671,6 @@
513 ac_compiler_gnu=$ac_cv_c_compiler_gnu
514
515
516-ac_config_headers="$ac_config_headers include/spud_config.h"
517-
518
519 case `pwd` in
520 *\ * | *\ *)
521@@ -2696,16 +2699,22 @@
522
523 ac_aux_dir=
524 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
525- for ac_t in install-sh install.sh shtool; do
526- if test -f "$ac_dir/$ac_t"; then
527- ac_aux_dir=$ac_dir
528- ac_install_sh="$ac_aux_dir/$ac_t -c"
529- break 2
530- fi
531- done
532+ if test -f "$ac_dir/install-sh"; then
533+ ac_aux_dir=$ac_dir
534+ ac_install_sh="$ac_aux_dir/install-sh -c"
535+ break
536+ elif test -f "$ac_dir/install.sh"; then
537+ ac_aux_dir=$ac_dir
538+ ac_install_sh="$ac_aux_dir/install.sh -c"
539+ break
540+ elif test -f "$ac_dir/shtool"; then
541+ ac_aux_dir=$ac_dir
542+ ac_install_sh="$ac_aux_dir/shtool install -c"
543+ break
544+ fi
545 done
546 if test -z "$ac_aux_dir"; then
547- as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
548+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
549 fi
550
551 # These three variables are undocumented and unsupported,
552@@ -2719,7 +2728,7 @@
553
554 # Make sure we can run config.sub.
555 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
556- as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
557+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
558
559 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
560 $as_echo_n "checking build system type... " >&6; }
561@@ -2730,16 +2739,16 @@
562 test "x$ac_build_alias" = x &&
563 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
564 test "x$ac_build_alias" = x &&
565- as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
566+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
567 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
568- as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
569+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
570
571 fi
572 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
573 $as_echo "$ac_cv_build" >&6; }
574 case $ac_cv_build in
575 *-*-*) ;;
576-*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
577+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;;
578 esac
579 build=$ac_cv_build
580 ac_save_IFS=$IFS; IFS='-'
581@@ -2764,7 +2773,7 @@
582 ac_cv_host=$ac_cv_build
583 else
584 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
585- as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
586+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
587 fi
588
589 fi
590@@ -2772,7 +2781,7 @@
591 $as_echo "$ac_cv_host" >&6; }
592 case $ac_cv_host in
593 *-*-*) ;;
594-*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
595+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;;
596 esac
597 host=$ac_cv_host
598 ac_save_IFS=$IFS; IFS='-'
599@@ -3088,8 +3097,8 @@
600
601 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
602 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
603-as_fn_error "no acceptable C compiler found in \$PATH
604-See \`config.log' for more details." "$LINENO" 5; }
605+as_fn_error $? "no acceptable C compiler found in \$PATH
606+See \`config.log' for more details" "$LINENO" 5 ; }
607
608 # Provide some information about the compiler.
609 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
610@@ -3110,32 +3119,30 @@
611 ... rest of stderr output deleted ...
612 10q' conftest.err >conftest.er1
613 cat conftest.er1 >&5
614- rm -f conftest.er1 conftest.err
615 fi
616+ rm -f conftest.er1 conftest.err
617 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
618 test $ac_status = 0; }
619 done
620
621 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
622 /* end confdefs.h. */
623-#include <stdio.h>
624+
625 int
626 main ()
627 {
628-FILE *f = fopen ("conftest.out", "w");
629- return ferror (f) || fclose (f) != 0;
630
631 ;
632 return 0;
633 }
634 _ACEOF
635 ac_clean_files_save=$ac_clean_files
636-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out"
637+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
638 # Try to create an executable without -o first, disregard a.out.
639 # It will help us diagnose broken compilers, and finding out an intuition
640 # of exeext.
641-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
642-$as_echo_n "checking for C compiler default output file name... " >&6; }
643+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
644+$as_echo_n "checking whether the C compiler works... " >&6; }
645 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
646
647 # The possible output files:
648@@ -3197,62 +3204,28 @@
649 else
650 ac_file=''
651 fi
652+if test -z "$ac_file"; then :
653+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
654+$as_echo "no" >&6; }
655+$as_echo "$as_me: failed program was:" >&5
656+sed 's/^/| /' conftest.$ac_ext >&5
657+
658+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
659+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
660+as_fn_error 77 "C compiler cannot create executables
661+See \`config.log' for more details" "$LINENO" 5 ; }
662+else
663+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
664+$as_echo "yes" >&6; }
665+fi
666+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
667+$as_echo_n "checking for C compiler default output file name... " >&6; }
668 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
669 $as_echo "$ac_file" >&6; }
670-if test -z "$ac_file"; then :
671- $as_echo "$as_me: failed program was:" >&5
672-sed 's/^/| /' conftest.$ac_ext >&5
673-
674-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
675-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
676-{ as_fn_set_status 77
677-as_fn_error "C compiler cannot create executables
678-See \`config.log' for more details." "$LINENO" 5; }; }
679-fi
680 ac_exeext=$ac_cv_exeext
681
682-# Check that the compiler produces executables we can run. If not, either
683-# the compiler is broken, or we cross compile.
684-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
685-$as_echo_n "checking whether the C compiler works... " >&6; }
686-# If not cross compiling, check that we can run a simple program.
687-if test "$cross_compiling" != yes; then
688- if { ac_try='./$ac_file'
689- { { case "(($ac_try" in
690- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
691- *) ac_try_echo=$ac_try;;
692-esac
693-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
694-$as_echo "$ac_try_echo"; } >&5
695- (eval "$ac_try") 2>&5
696- ac_status=$?
697- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
698- test $ac_status = 0; }; }; then
699- cross_compiling=no
700- else
701- if test "$cross_compiling" = maybe; then
702- cross_compiling=yes
703- else
704- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
705-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
706-as_fn_error "cannot run C compiled programs.
707-If you meant to cross compile, use \`--host'.
708-See \`config.log' for more details." "$LINENO" 5; }
709- fi
710- fi
711-fi
712-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
713-$as_echo "yes" >&6; }
714-
715-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out
716+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
717 ac_clean_files=$ac_clean_files_save
718-# Check that the compiler produces executables we can run. If not, either
719-# the compiler is broken, or we cross compile.
720-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
721-$as_echo_n "checking whether we are cross compiling... " >&6; }
722-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
723-$as_echo "$cross_compiling" >&6; }
724-
725 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
726 $as_echo_n "checking for suffix of executables... " >&6; }
727 if { { ac_try="$ac_link"
728@@ -3282,16 +3255,75 @@
729 else
730 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
731 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
732-as_fn_error "cannot compute suffix of executables: cannot compile and link
733-See \`config.log' for more details." "$LINENO" 5; }
734+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
735+See \`config.log' for more details" "$LINENO" 5 ; }
736 fi
737-rm -f conftest$ac_cv_exeext
738+rm -f conftest conftest$ac_cv_exeext
739 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
740 $as_echo "$ac_cv_exeext" >&6; }
741
742 rm -f conftest.$ac_ext
743 EXEEXT=$ac_cv_exeext
744 ac_exeext=$EXEEXT
745+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
746+/* end confdefs.h. */
747+#include <stdio.h>
748+int
749+main ()
750+{
751+FILE *f = fopen ("conftest.out", "w");
752+ return ferror (f) || fclose (f) != 0;
753+
754+ ;
755+ return 0;
756+}
757+_ACEOF
758+ac_clean_files="$ac_clean_files conftest.out"
759+# Check that the compiler produces executables we can run. If not, either
760+# the compiler is broken, or we cross compile.
761+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
762+$as_echo_n "checking whether we are cross compiling... " >&6; }
763+if test "$cross_compiling" != yes; then
764+ { { ac_try="$ac_link"
765+case "(($ac_try" in
766+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
767+ *) ac_try_echo=$ac_try;;
768+esac
769+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
770+$as_echo "$ac_try_echo"; } >&5
771+ (eval "$ac_link") 2>&5
772+ ac_status=$?
773+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
774+ test $ac_status = 0; }
775+ if { ac_try='./conftest$ac_cv_exeext'
776+ { { case "(($ac_try" in
777+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
778+ *) ac_try_echo=$ac_try;;
779+esac
780+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
781+$as_echo "$ac_try_echo"; } >&5
782+ (eval "$ac_try") 2>&5
783+ ac_status=$?
784+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
785+ test $ac_status = 0; }; }; then
786+ cross_compiling=no
787+ else
788+ if test "$cross_compiling" = maybe; then
789+ cross_compiling=yes
790+ else
791+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
792+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
793+as_fn_error $? "cannot run C compiled programs.
794+If you meant to cross compile, use \`--host'.
795+See \`config.log' for more details" "$LINENO" 5 ; }
796+ fi
797+ fi
798+fi
799+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
800+$as_echo "$cross_compiling" >&6; }
801+
802+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
803+ac_clean_files=$ac_clean_files_save
804 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
805 $as_echo_n "checking for suffix of object files... " >&6; }
806 if test "${ac_cv_objext+set}" = set; then :
807@@ -3334,8 +3366,8 @@
808
809 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
810 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
811-as_fn_error "cannot compute suffix of object files: cannot compile
812-See \`config.log' for more details." "$LINENO" 5; }
813+as_fn_error $? "cannot compute suffix of object files: cannot compile
814+See \`config.log' for more details" "$LINENO" 5 ; }
815 fi
816 rm -f conftest.$ac_cv_objext conftest.$ac_ext
817 fi
818@@ -3612,7 +3644,7 @@
819 done
820 IFS=$as_save_IFS
821 if test -z "$ac_cv_path_SED"; then
822- as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5
823+ as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
824 fi
825 else
826 ac_cv_path_SED=$SED
827@@ -3688,7 +3720,7 @@
828 done
829 IFS=$as_save_IFS
830 if test -z "$ac_cv_path_GREP"; then
831- as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
832+ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
833 fi
834 else
835 ac_cv_path_GREP=$GREP
836@@ -3754,7 +3786,7 @@
837 done
838 IFS=$as_save_IFS
839 if test -z "$ac_cv_path_EGREP"; then
840- as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
841+ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
842 fi
843 else
844 ac_cv_path_EGREP=$EGREP
845@@ -3821,7 +3853,7 @@
846 done
847 IFS=$as_save_IFS
848 if test -z "$ac_cv_path_FGREP"; then
849- as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
850+ as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
851 fi
852 else
853 ac_cv_path_FGREP=$FGREP
854@@ -3937,7 +3969,7 @@
855 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
856 $as_echo "no" >&6; }
857 fi
858-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
859+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
860 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
861 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
862 if test "${lt_cv_prog_gnu_ld+set}" = set; then :
863@@ -4139,13 +4171,13 @@
864 else
865 lt_cv_nm_interface="BSD nm"
866 echo "int some_variable = 0;" > conftest.$ac_ext
867- (eval echo "\"\$as_me:4142: $ac_compile\"" >&5)
868+ (eval echo "\"\$as_me:4174: $ac_compile\"" >&5)
869 (eval "$ac_compile" 2>conftest.err)
870 cat conftest.err >&5
871- (eval echo "\"\$as_me:4145: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
872+ (eval echo "\"\$as_me:4177: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
873 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
874 cat conftest.err >&5
875- (eval echo "\"\$as_me:4148: output\"" >&5)
876+ (eval echo "\"\$as_me:4180: output\"" >&5)
877 cat conftest.out >&5
878 if $GREP 'External.*some_variable' conftest.out > /dev/null; then
879 lt_cv_nm_interface="MS dumpbin"
880@@ -5351,7 +5383,7 @@
881 ;;
882 *-*-irix6*)
883 # Find out which ABI we are using.
884- echo '#line 5354 "configure"' > conftest.$ac_ext
885+ echo '#line 5386 "configure"' > conftest.$ac_ext
886 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
887 (eval $ac_compile) 2>&5
888 ac_status=$?
889@@ -6140,7 +6172,7 @@
890 # Broken: fails on valid input.
891 continue
892 fi
893-rm -f conftest.err conftest.$ac_ext
894+rm -f conftest.err conftest.i conftest.$ac_ext
895
896 # OK, works on sane cases. Now check whether nonexistent headers
897 # can be detected and how.
898@@ -6156,11 +6188,11 @@
899 ac_preproc_ok=:
900 break
901 fi
902-rm -f conftest.err conftest.$ac_ext
903+rm -f conftest.err conftest.i conftest.$ac_ext
904
905 done
906 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
907-rm -f conftest.err conftest.$ac_ext
908+rm -f conftest.i conftest.err conftest.$ac_ext
909 if $ac_preproc_ok; then :
910 break
911 fi
912@@ -6199,7 +6231,7 @@
913 # Broken: fails on valid input.
914 continue
915 fi
916-rm -f conftest.err conftest.$ac_ext
917+rm -f conftest.err conftest.i conftest.$ac_ext
918
919 # OK, works on sane cases. Now check whether nonexistent headers
920 # can be detected and how.
921@@ -6215,18 +6247,18 @@
922 ac_preproc_ok=:
923 break
924 fi
925-rm -f conftest.err conftest.$ac_ext
926+rm -f conftest.err conftest.i conftest.$ac_ext
927
928 done
929 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
930-rm -f conftest.err conftest.$ac_ext
931+rm -f conftest.i conftest.err conftest.$ac_ext
932 if $ac_preproc_ok; then :
933
934 else
935 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
936 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
937-as_fn_error "C preprocessor \"$CPP\" fails sanity check
938-See \`config.log' for more details." "$LINENO" 5; }
939+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
940+See \`config.log' for more details" "$LINENO" 5 ; }
941 fi
942
943 ac_ext=c
944@@ -6355,8 +6387,7 @@
945 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
946 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
947 "
948-eval as_val=\$$as_ac_Header
949- if test "x$as_val" = x""yes; then :
950+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
951 cat >>confdefs.h <<_ACEOF
952 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
953 _ACEOF
954@@ -6881,11 +6912,11 @@
955 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
956 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
957 -e 's:$: $lt_compiler_flag:'`
958- (eval echo "\"\$as_me:6884: $lt_compile\"" >&5)
959+ (eval echo "\"\$as_me:6915: $lt_compile\"" >&5)
960 (eval "$lt_compile" 2>conftest.err)
961 ac_status=$?
962 cat conftest.err >&5
963- echo "$as_me:6888: \$? = $ac_status" >&5
964+ echo "$as_me:6919: \$? = $ac_status" >&5
965 if (exit $ac_status) && test -s "$ac_outfile"; then
966 # The compiler can only warn and ignore the option if not recognized
967 # So say no if there are warnings other than the usual output.
968@@ -7220,11 +7251,11 @@
969 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
970 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
971 -e 's:$: $lt_compiler_flag:'`
972- (eval echo "\"\$as_me:7223: $lt_compile\"" >&5)
973+ (eval echo "\"\$as_me:7254: $lt_compile\"" >&5)
974 (eval "$lt_compile" 2>conftest.err)
975 ac_status=$?
976 cat conftest.err >&5
977- echo "$as_me:7227: \$? = $ac_status" >&5
978+ echo "$as_me:7258: \$? = $ac_status" >&5
979 if (exit $ac_status) && test -s "$ac_outfile"; then
980 # The compiler can only warn and ignore the option if not recognized
981 # So say no if there are warnings other than the usual output.
982@@ -7325,11 +7356,11 @@
983 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
984 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
985 -e 's:$: $lt_compiler_flag:'`
986- (eval echo "\"\$as_me:7328: $lt_compile\"" >&5)
987+ (eval echo "\"\$as_me:7359: $lt_compile\"" >&5)
988 (eval "$lt_compile" 2>out/conftest.err)
989 ac_status=$?
990 cat out/conftest.err >&5
991- echo "$as_me:7332: \$? = $ac_status" >&5
992+ echo "$as_me:7363: \$? = $ac_status" >&5
993 if (exit $ac_status) && test -s out/conftest2.$ac_objext
994 then
995 # The compiler can only warn and ignore the option if not recognized
996@@ -7380,11 +7411,11 @@
997 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
998 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
999 -e 's:$: $lt_compiler_flag:'`
1000- (eval echo "\"\$as_me:7383: $lt_compile\"" >&5)
1001+ (eval echo "\"\$as_me:7414: $lt_compile\"" >&5)
1002 (eval "$lt_compile" 2>out/conftest.err)
1003 ac_status=$?
1004 cat out/conftest.err >&5
1005- echo "$as_me:7387: \$? = $ac_status" >&5
1006+ echo "$as_me:7418: \$? = $ac_status" >&5
1007 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1008 then
1009 # The compiler can only warn and ignore the option if not recognized
1010@@ -9763,7 +9794,7 @@
1011 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1012 lt_status=$lt_dlunknown
1013 cat > conftest.$ac_ext <<_LT_EOF
1014-#line 9766 "configure"
1015+#line 9797 "configure"
1016 #include "confdefs.h"
1017
1018 #if HAVE_DLFCN_H
1019@@ -9859,7 +9890,7 @@
1020 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1021 lt_status=$lt_dlunknown
1022 cat > conftest.$ac_ext <<_LT_EOF
1023-#line 9862 "configure"
1024+#line 9893 "configure"
1025 #include "confdefs.h"
1026
1027 #if HAVE_DLFCN_H
1028@@ -10218,8 +10249,8 @@
1029 ... rest of stderr output deleted ...
1030 10q' conftest.err >conftest.er1
1031 cat conftest.er1 >&5
1032- rm -f conftest.er1 conftest.err
1033 fi
1034+ rm -f conftest.er1 conftest.err
1035 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1036 test $ac_status = 0; }
1037 done
1038@@ -10386,7 +10417,7 @@
1039 # Broken: fails on valid input.
1040 continue
1041 fi
1042-rm -f conftest.err conftest.$ac_ext
1043+rm -f conftest.err conftest.i conftest.$ac_ext
1044
1045 # OK, works on sane cases. Now check whether nonexistent headers
1046 # can be detected and how.
1047@@ -10402,11 +10433,11 @@
1048 ac_preproc_ok=:
1049 break
1050 fi
1051-rm -f conftest.err conftest.$ac_ext
1052+rm -f conftest.err conftest.i conftest.$ac_ext
1053
1054 done
1055 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1056-rm -f conftest.err conftest.$ac_ext
1057+rm -f conftest.i conftest.err conftest.$ac_ext
1058 if $ac_preproc_ok; then :
1059 break
1060 fi
1061@@ -10445,7 +10476,7 @@
1062 # Broken: fails on valid input.
1063 continue
1064 fi
1065-rm -f conftest.err conftest.$ac_ext
1066+rm -f conftest.err conftest.i conftest.$ac_ext
1067
1068 # OK, works on sane cases. Now check whether nonexistent headers
1069 # can be detected and how.
1070@@ -10461,11 +10492,11 @@
1071 ac_preproc_ok=:
1072 break
1073 fi
1074-rm -f conftest.err conftest.$ac_ext
1075+rm -f conftest.err conftest.i conftest.$ac_ext
1076
1077 done
1078 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1079-rm -f conftest.err conftest.$ac_ext
1080+rm -f conftest.i conftest.err conftest.$ac_ext
1081 if $ac_preproc_ok; then :
1082
1083 else
1084@@ -10694,7 +10725,7 @@
1085 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1086 $as_echo "no" >&6; }
1087 fi
1088-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
1089+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
1090 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
1091 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
1092 if test "${lt_cv_prog_gnu_ld+set}" = set; then :
1093@@ -12235,11 +12266,11 @@
1094 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1095 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1096 -e 's:$: $lt_compiler_flag:'`
1097- (eval echo "\"\$as_me:12238: $lt_compile\"" >&5)
1098+ (eval echo "\"\$as_me:12269: $lt_compile\"" >&5)
1099 (eval "$lt_compile" 2>conftest.err)
1100 ac_status=$?
1101 cat conftest.err >&5
1102- echo "$as_me:12242: \$? = $ac_status" >&5
1103+ echo "$as_me:12273: \$? = $ac_status" >&5
1104 if (exit $ac_status) && test -s "$ac_outfile"; then
1105 # The compiler can only warn and ignore the option if not recognized
1106 # So say no if there are warnings other than the usual output.
1107@@ -12334,11 +12365,11 @@
1108 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1109 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1110 -e 's:$: $lt_compiler_flag:'`
1111- (eval echo "\"\$as_me:12337: $lt_compile\"" >&5)
1112+ (eval echo "\"\$as_me:12368: $lt_compile\"" >&5)
1113 (eval "$lt_compile" 2>out/conftest.err)
1114 ac_status=$?
1115 cat out/conftest.err >&5
1116- echo "$as_me:12341: \$? = $ac_status" >&5
1117+ echo "$as_me:12372: \$? = $ac_status" >&5
1118 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1119 then
1120 # The compiler can only warn and ignore the option if not recognized
1121@@ -12386,11 +12417,11 @@
1122 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1123 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1124 -e 's:$: $lt_compiler_flag:'`
1125- (eval echo "\"\$as_me:12389: $lt_compile\"" >&5)
1126+ (eval echo "\"\$as_me:12420: $lt_compile\"" >&5)
1127 (eval "$lt_compile" 2>out/conftest.err)
1128 ac_status=$?
1129 cat out/conftest.err >&5
1130- echo "$as_me:12393: \$? = $ac_status" >&5
1131+ echo "$as_me:12424: \$? = $ac_status" >&5
1132 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1133 then
1134 # The compiler can only warn and ignore the option if not recognized
1135@@ -13341,7 +13372,7 @@
1136 ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
1137 ac_compiler_gnu=$ac_cv_fc_compiler_gnu
1138 if test -n "$ac_tool_prefix"; then
1139- for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77
1140+ for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77
1141 do
1142 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1143 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1144@@ -13385,7 +13416,7 @@
1145 fi
1146 if test -z "$FC"; then
1147 ac_ct_FC=$FC
1148- for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77
1149+ for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77
1150 do
1151 # Extract the first word of "$ac_prog", so it can be a program name with args.
1152 set dummy $ac_prog; ac_word=$2
1153@@ -13460,8 +13491,8 @@
1154 ... rest of stderr output deleted ...
1155 10q' conftest.err >conftest.er1
1156 cat conftest.er1 >&5
1157- rm -f conftest.er1 conftest.err
1158 fi
1159+ rm -f conftest.er1 conftest.err
1160 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1161 test $ac_status = 0; }
1162 done
1163@@ -14121,11 +14152,11 @@
1164 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1165 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1166 -e 's:$: $lt_compiler_flag:'`
1167- (eval echo "\"\$as_me:14124: $lt_compile\"" >&5)
1168+ (eval echo "\"\$as_me:14155: $lt_compile\"" >&5)
1169 (eval "$lt_compile" 2>conftest.err)
1170 ac_status=$?
1171 cat conftest.err >&5
1172- echo "$as_me:14128: \$? = $ac_status" >&5
1173+ echo "$as_me:14159: \$? = $ac_status" >&5
1174 if (exit $ac_status) && test -s "$ac_outfile"; then
1175 # The compiler can only warn and ignore the option if not recognized
1176 # So say no if there are warnings other than the usual output.
1177@@ -14220,11 +14251,11 @@
1178 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1179 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1180 -e 's:$: $lt_compiler_flag:'`
1181- (eval echo "\"\$as_me:14223: $lt_compile\"" >&5)
1182+ (eval echo "\"\$as_me:14254: $lt_compile\"" >&5)
1183 (eval "$lt_compile" 2>out/conftest.err)
1184 ac_status=$?
1185 cat out/conftest.err >&5
1186- echo "$as_me:14227: \$? = $ac_status" >&5
1187+ echo "$as_me:14258: \$? = $ac_status" >&5
1188 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1189 then
1190 # The compiler can only warn and ignore the option if not recognized
1191@@ -14272,11 +14303,11 @@
1192 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1193 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1194 -e 's:$: $lt_compiler_flag:'`
1195- (eval echo "\"\$as_me:14275: $lt_compile\"" >&5)
1196+ (eval echo "\"\$as_me:14306: $lt_compile\"" >&5)
1197 (eval "$lt_compile" 2>out/conftest.err)
1198 ac_status=$?
1199 cat out/conftest.err >&5
1200- echo "$as_me:14279: \$? = $ac_status" >&5
1201+ echo "$as_me:14310: \$? = $ac_status" >&5
1202 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1203 then
1204 # The compiler can only warn and ignore the option if not recognized
1205@@ -16298,8 +16329,8 @@
1206 ... rest of stderr output deleted ...
1207 10q' conftest.err >conftest.er1
1208 cat conftest.er1 >&5
1209- rm -f conftest.er1 conftest.err
1210 fi
1211+ rm -f conftest.er1 conftest.err
1212 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1213 test $ac_status = 0; }
1214 done
1215@@ -16391,7 +16422,7 @@
1216 ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1217 ac_compiler_gnu=$ac_cv_f77_compiler_gnu
1218 if test -n "$ac_tool_prefix"; then
1219- for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn
1220+ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn
1221 do
1222 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1223 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1224@@ -16435,7 +16466,7 @@
1225 fi
1226 if test -z "$F77"; then
1227 ac_ct_F77=$F77
1228- for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn
1229+ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn
1230 do
1231 # Extract the first word of "$ac_prog", so it can be a program name with args.
1232 set dummy $ac_prog; ac_word=$2
1233@@ -16510,8 +16541,8 @@
1234 ... rest of stderr output deleted ...
1235 10q' conftest.err >conftest.er1
1236 cat conftest.er1 >&5
1237- rm -f conftest.er1 conftest.err
1238 fi
1239+ rm -f conftest.er1 conftest.err
1240 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1241 test $ac_status = 0; }
1242 done
1243@@ -17049,11 +17080,11 @@
1244 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1245 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1246 -e 's:$: $lt_compiler_flag:'`
1247- (eval echo "\"\$as_me:17052: $lt_compile\"" >&5)
1248+ (eval echo "\"\$as_me:17083: $lt_compile\"" >&5)
1249 (eval "$lt_compile" 2>conftest.err)
1250 ac_status=$?
1251 cat conftest.err >&5
1252- echo "$as_me:17056: \$? = $ac_status" >&5
1253+ echo "$as_me:17087: \$? = $ac_status" >&5
1254 if (exit $ac_status) && test -s "$ac_outfile"; then
1255 # The compiler can only warn and ignore the option if not recognized
1256 # So say no if there are warnings other than the usual output.
1257@@ -17148,11 +17179,11 @@
1258 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1259 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1260 -e 's:$: $lt_compiler_flag:'`
1261- (eval echo "\"\$as_me:17151: $lt_compile\"" >&5)
1262+ (eval echo "\"\$as_me:17182: $lt_compile\"" >&5)
1263 (eval "$lt_compile" 2>out/conftest.err)
1264 ac_status=$?
1265 cat out/conftest.err >&5
1266- echo "$as_me:17155: \$? = $ac_status" >&5
1267+ echo "$as_me:17186: \$? = $ac_status" >&5
1268 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1269 then
1270 # The compiler can only warn and ignore the option if not recognized
1271@@ -17200,11 +17231,11 @@
1272 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1273 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1274 -e 's:$: $lt_compiler_flag:'`
1275- (eval echo "\"\$as_me:17203: $lt_compile\"" >&5)
1276+ (eval echo "\"\$as_me:17234: $lt_compile\"" >&5)
1277 (eval "$lt_compile" 2>out/conftest.err)
1278 ac_status=$?
1279 cat out/conftest.err >&5
1280- echo "$as_me:17207: \$? = $ac_status" >&5
1281+ echo "$as_me:17238: \$? = $ac_status" >&5
1282 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1283 then
1284 # The compiler can only warn and ignore the option if not recognized
1285@@ -19299,7 +19330,7 @@
1286 ;;
1287 # Ignore these flags.
1288 -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -little \
1289- |-LANG:=* | -LIST:* | -LNO:*)
1290+ |-LANG:=* | -LIST:* | -LNO:* | -link)
1291 ;;
1292 -lkernel32)
1293 test x"$CYGWIN" != xyes && ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg"
1294@@ -19518,8 +19549,8 @@
1295 ... rest of stderr output deleted ...
1296 10q' conftest.err >conftest.er1
1297 cat conftest.er1 >&5
1298- rm -f conftest.er1 conftest.err
1299 fi
1300+ rm -f conftest.er1 conftest.err
1301 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1302 test $ac_status = 0; }
1303 done
1304@@ -19816,7 +19847,7 @@
1305 ;;
1306 # Ignore these flags.
1307 -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -little \
1308- |-LANG:=* | -LIST:* | -LNO:*)
1309+ |-LANG:=* | -LIST:* | -LNO:* | -link)
1310 ;;
1311 -lkernel32)
1312 test x"$CYGWIN" != xyes && ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg"
1313@@ -20057,8 +20088,8 @@
1314 ... rest of stderr output deleted ...
1315 10q' conftest.err >conftest.er1
1316 cat conftest.er1 >&5
1317- rm -f conftest.er1 conftest.err
1318 fi
1319+ rm -f conftest.er1 conftest.err
1320 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1321 test $ac_status = 0; }
1322 done
1323@@ -20226,7 +20257,7 @@
1324 # Broken: fails on valid input.
1325 continue
1326 fi
1327-rm -f conftest.err conftest.$ac_ext
1328+rm -f conftest.err conftest.i conftest.$ac_ext
1329
1330 # OK, works on sane cases. Now check whether nonexistent headers
1331 # can be detected and how.
1332@@ -20242,11 +20273,11 @@
1333 ac_preproc_ok=:
1334 break
1335 fi
1336-rm -f conftest.err conftest.$ac_ext
1337+rm -f conftest.err conftest.i conftest.$ac_ext
1338
1339 done
1340 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1341-rm -f conftest.err conftest.$ac_ext
1342+rm -f conftest.i conftest.err conftest.$ac_ext
1343 if $ac_preproc_ok; then :
1344 break
1345 fi
1346@@ -20285,7 +20316,7 @@
1347 # Broken: fails on valid input.
1348 continue
1349 fi
1350-rm -f conftest.err conftest.$ac_ext
1351+rm -f conftest.err conftest.i conftest.$ac_ext
1352
1353 # OK, works on sane cases. Now check whether nonexistent headers
1354 # can be detected and how.
1355@@ -20301,18 +20332,18 @@
1356 ac_preproc_ok=:
1357 break
1358 fi
1359-rm -f conftest.err conftest.$ac_ext
1360+rm -f conftest.err conftest.i conftest.$ac_ext
1361
1362 done
1363 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1364-rm -f conftest.err conftest.$ac_ext
1365+rm -f conftest.i conftest.err conftest.$ac_ext
1366 if $ac_preproc_ok; then :
1367
1368 else
1369 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1370 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1371-as_fn_error "C preprocessor \"$CPP\" fails sanity check
1372-See \`config.log' for more details." "$LINENO" 5; }
1373+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
1374+See \`config.log' for more details" "$LINENO" 5 ; }
1375 fi
1376
1377 ac_ext=c
1378@@ -20338,9 +20369,8 @@
1379 if test "$ac_cv_type_long_int" = yes; then
1380 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1381 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1382-{ as_fn_set_status 77
1383-as_fn_error "cannot compute sizeof (long int)
1384-See \`config.log' for more details." "$LINENO" 5; }; }
1385+as_fn_error 77 "cannot compute sizeof (long int)
1386+See \`config.log' for more details" "$LINENO" 5 ; }
1387 else
1388 ac_cv_sizeof_long_int=0
1389 fi
1390@@ -20580,7 +20610,7 @@
1391 ;;
1392 # Ignore these flags.
1393 -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -little \
1394- |-LANG:=* | -LIST:* | -LNO:*)
1395+ |-LANG:=* | -LIST:* | -LNO:* | -link)
1396 ;;
1397 -lkernel32)
1398 test x"$CYGWIN" != xyes && ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg"
1399@@ -20775,8 +20805,8 @@
1400 else
1401 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1402 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1403-as_fn_error "linking to Fortran libraries from C fails
1404-See \`config.log' for more details." "$LINENO" 5; }
1405+as_fn_error $? "linking to Fortran libraries from C fails
1406+See \`config.log' for more details" "$LINENO" 5 ; }
1407 fi
1408
1409 ac_ext=c
1410@@ -20937,8 +20967,8 @@
1411 else
1412 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1413 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1414-as_fn_error "cannot compile a simple Fortran program
1415-See \`config.log' for more details." "$LINENO" 5; }
1416+as_fn_error $? "cannot compile a simple Fortran program
1417+See \`config.log' for more details" "$LINENO" 5 ; }
1418 fi
1419 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1420
1421@@ -21797,10 +21827,47 @@
1422 # Let make expand exec_prefix.
1423 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
1424
1425-DEFS=-DHAVE_CONFIG_H
1426+# Transform confdefs.h into DEFS.
1427+# Protect against shell expansion while executing Makefile rules.
1428+# Protect against Makefile macro expansion.
1429+#
1430+# If the first sed substitution is executed (which looks for macros that
1431+# take arguments), then branch to the quote section. Otherwise,
1432+# look for a macro that doesn't take arguments.
1433+ac_script='
1434+:mline
1435+/\\$/{
1436+ N
1437+ s,\\\n,,
1438+ b mline
1439+}
1440+t clear
1441+:clear
1442+s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
1443+t quote
1444+s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
1445+t quote
1446+b any
1447+:quote
1448+s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
1449+s/\[/\\&/g
1450+s/\]/\\&/g
1451+s/\$/$$/g
1452+H
1453+:any
1454+${
1455+ g
1456+ s/^\n//
1457+ s/\n/ /g
1458+ p
1459+}
1460+'
1461+DEFS=`sed -n "$ac_script" confdefs.h`
1462+
1463
1464 ac_libobjs=
1465 ac_ltlibobjs=
1466+U=
1467 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
1468 # 1. Remove the extension, and $U if already installed.
1469 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
1470@@ -21962,19 +22029,19 @@
1471 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
1472
1473
1474-# as_fn_error ERROR [LINENO LOG_FD]
1475-# ---------------------------------
1476+# as_fn_error STATUS ERROR [LINENO LOG_FD]
1477+# ----------------------------------------
1478 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
1479 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
1480-# script with status $?, using 1 if that was 0.
1481+# script with STATUS, using 1 if that was 0.
1482 as_fn_error ()
1483 {
1484- as_status=$?; test $as_status -eq 0 && as_status=1
1485- if test "$3"; then
1486- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1487- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
1488+ as_status=$1; test $as_status -eq 0 && as_status=1
1489+ if test "$4"; then
1490+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1491+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
1492 fi
1493- $as_echo "$as_me: error: $1" >&2
1494+ $as_echo "$as_me: error: $2" >&2
1495 as_fn_exit $as_status
1496 } # as_fn_error
1497
1498@@ -22170,7 +22237,7 @@
1499 test -d "$as_dir" && break
1500 done
1501 test -z "$as_dirs" || eval "mkdir $as_dirs"
1502- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
1503+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
1504
1505
1506 } # as_fn_mkdir_p
1507@@ -22224,7 +22291,7 @@
1508 # values after options handling.
1509 ac_log="
1510 This file was extended by $as_me, which was
1511-generated by GNU Autoconf 2.64. Invocation command line was
1512+generated by GNU Autoconf 2.67. Invocation command line was
1513
1514 CONFIG_FILES = $CONFIG_FILES
1515 CONFIG_HEADERS = $CONFIG_HEADERS
1516@@ -22241,15 +22308,11 @@
1517 "*) set x $ac_config_files; shift; ac_config_files=$*;;
1518 esac
1519
1520-case $ac_config_headers in *"
1521-"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
1522-esac
1523
1524
1525 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1526 # Files that config.status was made for.
1527 config_files="$ac_config_files"
1528-config_headers="$ac_config_headers"
1529 config_commands="$ac_config_commands"
1530
1531 _ACEOF
1532@@ -22264,21 +22327,17 @@
1533
1534 -h, --help print this help, then exit
1535 -V, --version print version number and configuration settings, then exit
1536+ --config print configuration, then exit
1537 -q, --quiet, --silent
1538 do not print progress messages
1539 -d, --debug don't remove temporary files
1540 --recheck update $as_me by reconfiguring in the same conditions
1541 --file=FILE[:TEMPLATE]
1542 instantiate the configuration file FILE
1543- --header=FILE[:TEMPLATE]
1544- instantiate the configuration header FILE
1545
1546 Configuration files:
1547 $config_files
1548
1549-Configuration headers:
1550-$config_headers
1551-
1552 Configuration commands:
1553 $config_commands
1554
1555@@ -22286,12 +22345,13 @@
1556
1557 _ACEOF
1558 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1559+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1560 ac_cs_version="\\
1561 config.status
1562-configured by $0, generated by GNU Autoconf 2.64,
1563- with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
1564+configured by $0, generated by GNU Autoconf 2.67,
1565+ with options \\"\$ac_cs_config\\"
1566
1567-Copyright (C) 2009 Free Software Foundation, Inc.
1568+Copyright (C) 2010 Free Software Foundation, Inc.
1569 This config.status script is free software; the Free Software Foundation
1570 gives unlimited permission to copy, distribute and modify it."
1571
1572@@ -22307,11 +22367,16 @@
1573 while test $# != 0
1574 do
1575 case $1 in
1576- --*=*)
1577+ --*=?*)
1578 ac_option=`expr "X$1" : 'X\([^=]*\)='`
1579 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
1580 ac_shift=:
1581 ;;
1582+ --*=)
1583+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
1584+ ac_optarg=
1585+ ac_shift=:
1586+ ;;
1587 *)
1588 ac_option=$1
1589 ac_optarg=$2
1590@@ -22325,34 +22390,26 @@
1591 ac_cs_recheck=: ;;
1592 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
1593 $as_echo "$ac_cs_version"; exit ;;
1594+ --config | --confi | --conf | --con | --co | --c )
1595+ $as_echo "$ac_cs_config"; exit ;;
1596 --debug | --debu | --deb | --de | --d | -d )
1597 debug=: ;;
1598 --file | --fil | --fi | --f )
1599 $ac_shift
1600 case $ac_optarg in
1601 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1602+ '') as_fn_error $? "missing file argument" ;;
1603 esac
1604 as_fn_append CONFIG_FILES " '$ac_optarg'"
1605 ac_need_defaults=false;;
1606- --header | --heade | --head | --hea )
1607- $ac_shift
1608- case $ac_optarg in
1609- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1610- esac
1611- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
1612- ac_need_defaults=false;;
1613- --he | --h)
1614- # Conflict between --help and --header
1615- as_fn_error "ambiguous option: \`$1'
1616-Try \`$0 --help' for more information.";;
1617- --help | --hel | -h )
1618+ --he | --h | --help | --hel | -h )
1619 $as_echo "$ac_cs_usage"; exit ;;
1620 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1621 | -silent | --silent | --silen | --sile | --sil | --si | --s)
1622 ac_cs_silent=: ;;
1623
1624 # This is an error.
1625- -*) as_fn_error "unrecognized option: \`$1'
1626+ -*) as_fn_error $? "unrecognized option: \`$1'
1627 Try \`$0 --help' for more information." ;;
1628
1629 *) as_fn_append ac_config_targets " $1"
1630@@ -22924,7 +22981,6 @@
1631 for ac_config_target in $ac_config_targets
1632 do
1633 case $ac_config_target in
1634- "include/spud_config.h") CONFIG_HEADERS="$CONFIG_HEADERS include/spud_config.h" ;;
1635 "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
1636 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
1637 "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;;
1638@@ -22935,7 +22991,7 @@
1639 "diamond/diamond/plugins.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/plugins.py" ;;
1640 "diamond/diamond/preprocess.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/preprocess.py" ;;
1641
1642- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1643+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
1644 esac
1645 done
1646
1647@@ -22946,7 +23002,6 @@
1648 # bizarre bug on SunOS 4.1.3.
1649 if $ac_need_defaults; then
1650 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
1651- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
1652 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
1653 fi
1654
1655@@ -22973,7 +23028,7 @@
1656 {
1657 tmp=./conf$$-$RANDOM
1658 (umask 077 && mkdir "$tmp")
1659-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
1660+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
1661
1662 # Set up the scripts for CONFIG_FILES section.
1663 # No need to generate them if there are no CONFIG_FILES.
1664@@ -22990,7 +23045,7 @@
1665 fi
1666 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
1667 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
1668- ac_cs_awk_cr='\r'
1669+ ac_cs_awk_cr='\\r'
1670 else
1671 ac_cs_awk_cr=$ac_cr
1672 fi
1673@@ -23004,18 +23059,18 @@
1674 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
1675 echo "_ACEOF"
1676 } >conf$$subs.sh ||
1677- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
1678-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
1679+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1680+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
1681 ac_delim='%!_!# '
1682 for ac_last_try in false false false false false :; do
1683 . ./conf$$subs.sh ||
1684- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
1685+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1686
1687 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
1688 if test $ac_delim_n = $ac_delim_num; then
1689 break
1690 elif $ac_last_try; then
1691- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
1692+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1693 else
1694 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
1695 fi
1696@@ -23037,7 +23092,7 @@
1697 t delim
1698 :nl
1699 h
1700-s/\(.\{148\}\).*/\1/
1701+s/\(.\{148\}\)..*/\1/
1702 t more1
1703 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
1704 p
1705@@ -23051,7 +23106,7 @@
1706 t nl
1707 :delim
1708 h
1709-s/\(.\{148\}\).*/\1/
1710+s/\(.\{148\}\)..*/\1/
1711 t more2
1712 s/["\\]/\\&/g; s/^/"/; s/$/"/
1713 p
1714@@ -23104,20 +23159,28 @@
1715 else
1716 cat
1717 fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
1718- || as_fn_error "could not setup config files machinery" "$LINENO" 5
1719+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
1720 _ACEOF
1721
1722-# VPATH may cause trouble with some makes, so we remove $(srcdir),
1723-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
1724+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
1725+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
1726 # trailing colons and then remove the whole line if VPATH becomes empty
1727 # (actually we leave an empty line to preserve line numbers).
1728 if test "x$srcdir" = x.; then
1729- ac_vpsub='/^[ ]*VPATH[ ]*=/{
1730-s/:*\$(srcdir):*/:/
1731-s/:*\${srcdir}:*/:/
1732-s/:*@srcdir@:*/:/
1733-s/^\([^=]*=[ ]*\):*/\1/
1734+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
1735+h
1736+s///
1737+s/^/:/
1738+s/[ ]*$/:/
1739+s/:\$(srcdir):/:/g
1740+s/:\${srcdir}:/:/g
1741+s/:@srcdir@:/:/g
1742+s/^:*//
1743 s/:*$//
1744+x
1745+s/\(=[ ]*\).*/\1/
1746+G
1747+s/\n//
1748 s/^[^=]*=[ ]*$//
1749 }'
1750 fi
1751@@ -23125,116 +23188,8 @@
1752 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1753 fi # test -n "$CONFIG_FILES"
1754
1755-# Set up the scripts for CONFIG_HEADERS section.
1756-# No need to generate them if there are no CONFIG_HEADERS.
1757-# This happens for instance with `./config.status Makefile'.
1758-if test -n "$CONFIG_HEADERS"; then
1759-cat >"$tmp/defines.awk" <<\_ACAWK ||
1760-BEGIN {
1761-_ACEOF
1762-
1763-# Transform confdefs.h into an awk script `defines.awk', embedded as
1764-# here-document in config.status, that substitutes the proper values into
1765-# config.h.in to produce config.h.
1766-
1767-# Create a delimiter string that does not exist in confdefs.h, to ease
1768-# handling of long lines.
1769-ac_delim='%!_!# '
1770-for ac_last_try in false false :; do
1771- ac_t=`sed -n "/$ac_delim/p" confdefs.h`
1772- if test -z "$ac_t"; then
1773- break
1774- elif $ac_last_try; then
1775- as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
1776- else
1777- ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
1778- fi
1779-done
1780-
1781-# For the awk script, D is an array of macro values keyed by name,
1782-# likewise P contains macro parameters if any. Preserve backslash
1783-# newline sequences.
1784-
1785-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
1786-sed -n '
1787-s/.\{148\}/&'"$ac_delim"'/g
1788-t rset
1789-:rset
1790-s/^[ ]*#[ ]*define[ ][ ]*/ /
1791-t def
1792-d
1793-:def
1794-s/\\$//
1795-t bsnl
1796-s/["\\]/\\&/g
1797-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
1798-D["\1"]=" \3"/p
1799-s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p
1800-d
1801-:bsnl
1802-s/["\\]/\\&/g
1803-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
1804-D["\1"]=" \3\\\\\\n"\\/p
1805-t cont
1806-s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
1807-t cont
1808-d
1809-:cont
1810-n
1811-s/.\{148\}/&'"$ac_delim"'/g
1812-t clear
1813-:clear
1814-s/\\$//
1815-t bsnlc
1816-s/["\\]/\\&/g; s/^/"/; s/$/"/p
1817-d
1818-:bsnlc
1819-s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
1820-b cont
1821-' <confdefs.h | sed '
1822-s/'"$ac_delim"'/"\\\
1823-"/g' >>$CONFIG_STATUS || ac_write_fail=1
1824-
1825-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1826- for (key in D) D_is_set[key] = 1
1827- FS = ""
1828-}
1829-/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
1830- line = \$ 0
1831- split(line, arg, " ")
1832- if (arg[1] == "#") {
1833- defundef = arg[2]
1834- mac1 = arg[3]
1835- } else {
1836- defundef = substr(arg[1], 2)
1837- mac1 = arg[2]
1838- }
1839- split(mac1, mac2, "(") #)
1840- macro = mac2[1]
1841- prefix = substr(line, 1, index(line, defundef) - 1)
1842- if (D_is_set[macro]) {
1843- # Preserve the white space surrounding the "#".
1844- print prefix "define", macro P[macro] D[macro]
1845- next
1846- } else {
1847- # Replace #undef with comments. This is necessary, for example,
1848- # in the case of _POSIX_SOURCE, which is predefined and required
1849- # on some systems where configure will not decide to define it.
1850- if (defundef == "undef") {
1851- print "/*", prefix defundef, macro, "*/"
1852- next
1853- }
1854- }
1855-}
1856-{ print }
1857-_ACAWK
1858-_ACEOF
1859-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1860- as_fn_error "could not setup config headers machinery" "$LINENO" 5
1861-fi # test -n "$CONFIG_HEADERS"
1862-
1863-
1864-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
1865+
1866+eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS"
1867 shift
1868 for ac_tag
1869 do
1870@@ -23243,7 +23198,7 @@
1871 esac
1872 case $ac_mode$ac_tag in
1873 :[FHL]*:*);;
1874- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
1875+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
1876 :[FH]-) ac_tag=-:-;;
1877 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1878 esac
1879@@ -23271,7 +23226,7 @@
1880 [\\/$]*) false;;
1881 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1882 esac ||
1883- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1884+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
1885 esac
1886 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1887 as_fn_append ac_file_inputs " '$ac_f'"
1888@@ -23298,7 +23253,7 @@
1889
1890 case $ac_tag in
1891 *:-:* | *:-) cat >"$tmp/stdin" \
1892- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
1893+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1894 esac
1895 ;;
1896 esac
1897@@ -23429,47 +23384,24 @@
1898 $ac_datarootdir_hack
1899 "
1900 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1901- || as_fn_error "could not create $ac_file" "$LINENO" 5
1902+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1903
1904 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1905 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1906 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1907 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1908-which seems to be undefined. Please make sure it is defined." >&5
1909+which seems to be undefined. Please make sure it is defined" >&5
1910 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1911-which seems to be undefined. Please make sure it is defined." >&2;}
1912+which seems to be undefined. Please make sure it is defined" >&2;}
1913
1914 rm -f "$tmp/stdin"
1915 case $ac_file in
1916 -) cat "$tmp/out" && rm -f "$tmp/out";;
1917 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1918 esac \
1919- || as_fn_error "could not create $ac_file" "$LINENO" 5
1920- ;;
1921- :H)
1922- #
1923- # CONFIG_HEADER
1924- #
1925- if test x"$ac_file" != x-; then
1926- {
1927- $as_echo "/* $configure_input */" \
1928- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1929- } >"$tmp/config.h" \
1930- || as_fn_error "could not create $ac_file" "$LINENO" 5
1931- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1932- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1933-$as_echo "$as_me: $ac_file is unchanged" >&6;}
1934- else
1935- rm -f "$ac_file"
1936- mv "$tmp/config.h" "$ac_file" \
1937- || as_fn_error "could not create $ac_file" "$LINENO" 5
1938- fi
1939- else
1940- $as_echo "/* $configure_input */" \
1941- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1942- || as_fn_error "could not create -" "$LINENO" 5
1943- fi
1944- ;;
1945+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1946+ ;;
1947+
1948
1949 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1950 $as_echo "$as_me: executing $ac_file commands" >&6;}
1951@@ -24596,7 +24528,7 @@
1952 ac_clean_files=$ac_clean_files_save
1953
1954 test $ac_write_fail = 0 ||
1955- as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
1956+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
1957
1958
1959 # configure is writing to config.log, and then calls config.status.
1960@@ -24617,7 +24549,7 @@
1961 exec 5>>config.log
1962 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
1963 # would make configure fail if this is the last instruction.
1964- $ac_cs_success || as_fn_exit $?
1965+ $ac_cs_success || as_fn_exit 1
1966 fi
1967 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
1968 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
1969
1970=== modified file 'configure.in'
1971--- configure.in 2010-01-18 14:19:00 +0000
1972+++ configure.in 2011-07-11 16:34:27 +0000
1973@@ -27,7 +27,6 @@
1974
1975 dnl Process this file with autoconf to produce a configure script.
1976 AC_INIT(include/spud.h)
1977-AC_CONFIG_HEADERS(include/spud_config.h)
1978
1979 LT_INIT
1980 LT_LANG([CXX])
1981
1982=== modified file 'doc/spud_manual.pdf'
1983--- doc/spud_manual.pdf 2011-07-08 13:24:24 +0000
1984+++ doc/spud_manual.pdf 2011-07-11 16:34:27 +0000
1985@@ -208,7 +208,7 @@
1986 << /S /GoTo /D (subsection.3.5.7) >>
1987 endobj
1988 140 0 obj
1989-(number\137of\137children)
1990+(get\137number\137of\137children)
1991 endobj
1992 141 0 obj
1993 << /S /GoTo /D (subsection.3.5.8) >>
1994@@ -350,8 +350,7 @@
1995 /Filter /FlateDecode
1996 >>
1997 stream
1998-xÚuŽ»
1999-ÂPûû§LÀlv7Ù<ZA…€•Û‰E ˜&ˆÍ-ò÷&ÞR¬æ43
2000Æ
2001Æ%ð
2002=”gí -©X
2003BU·ÝÂTHXàîÙí
2004§¼PãLˆI-íëøŠã’?|H¡ÞL÷HmTU
2005о!ÞZ߯—5yÝ!QYd·n�<|YW'Þ
2006+xÚ3PHW0Ppç2ÀA;…pé»Y(šëšš(„¤)™é™*±ž¡�¡BHŠB´FpAiЦ®‘©�PPÏÂôMÌ+MÌÑŒ
2007ñ‚˜a¨gijj2ÃØBÏÀÄXA×ÒLÏÀÐ
2008b„WiN%ÔC
2009ÃÈÀФ
2010ÃY®!\YÎ'Ñ
2011 endstream
2012 endobj
2013 230 0 obj <<
2014@@ -634,15 +633,17 @@
2015 /ProcSet [ /PDF /Text ]
2016 >> endobj
2017 306 0 obj <<
2018-/Length 1305
2019+/Length 1313
2020 /Filter /FlateDecode
2021 >>
2022 stream
2023-xÚíšMsÛ6†ïú8Ê!ÀØ®Í×43M§±nNŒÄØšJ”*QIýï»ü°-‰°b‹t/–M“
2024’ï£Ýw(q-”x?øm<xõ¼ÐJ´%#¼²2㩸Ú‹/ã¯Þ™°{¢-ÑŽSžóúÏ�ã·Ç—Å©UÇWR)QÿpN¬¯ÅÁ‘Oï702^I€À¿(IÎWá�tÒ\Œ4(5œÌÓd]Žóv<øg y(%´Ð|뤽 ²Ò“Åàê‹Sþç
2025Í/~”§.„‘@Å�ÏÅåà¯Ø[Ð.ðãë2˜ú
2026–«|¶Ì6{O(®FÝP^Œ
2027ßÙ¯õaCxÖïE[°CMÏBŒPKo­i/Áâ¶`¾L¦1ýYAÌ�fíÚéÏC˱
2028sGõ7„¿¦þ'Ó
2029ü·§&®ÆàÇz–§1‚TÄÚ’Áºv
2030 Hc©ŒEw÷ðdùJþRy€“o-?=È�µü×i
2031ßz¾œ‹€\ÇBË$ÀyÈè2?gu“›Ù<–|¨¨›Ð͸ÄÅÝþ¸Y²HÄ9<sâ:CͳÔì
2032¹†jزíâk3
2033T0¼)-­3-uwRk]ÆŽU%›o‘A=›!g»Ô{‰@ûƒ–�¯/´¦YÃî„p>>'Ê—?�¯ ¤�àåk¼ª’Q�ì³%(lYÊ83(c)UçÓÉr›åM…©74qõÍiêkå]SþPË“|Oã
2034MPF ƶ¥øJr‰*Cê]sø”pæö ) œâf@ª¢­=„@«
2035äç9Àí­í&p,§]uùíªé,|ßÓü4„3�ÖOƒ¼´è»�€cÖör�d7 ЮWÿ…ž�.&È ø˜‚Úömn’f*zù“T[ùw[m*ù�6¶.h;il‹XDxÔ
2036:×ÂÿܩΓXpF¢�Luj[±�L£3� -;BGFRËöÏq�ËE ußrFIÂÞ>‘}
2037- Ä}8DHp ›xV ¶œXFëÛ¢P\ ËXÀL
2038a�‰éÕI€ˆe|
2039-
2040†$´^ÿªYàXjý+6
2041ÒÛÍÀÞI�´?p’çëÙ×mÞð&Ï�¼Î ó$)–o¨blšÎÓèò
2042-÷±Ä©Æñ…¡í2¢TËX´¿ÌvøœÞ˜¾ü<ª?œ2A…|Àb�”BÅŽ…
2043ƒR’Z¯®™rŶˆå,
2044wý"ûËPÀùVÇzÑPQ0Y®nc”k
2045·�ÖC¹DÕvnÒ*WÆ:ê@Qé~…=¼l7œo6¤PÏL®Ö³,�C€œ½m±NÛvŠ!ÊXj¿i,´{êÝçã˜v`±iÛÝ�¥U±ë Å·înçaßÌ’Å2›în‰/÷ún3¸êß§lÿ²ÎJÔÛ>¬ÔÅðN
2046Ï6y2Ÿ'±Á—ö½iuÄ=?‡¨C½ Öëõ2û¬\oוd#àƒÅ‘yÚÜI§{q^B
2047pòÐè±@åWªX}¼œÜ¤‹¤¡¢é'~ŸW|[|qèA¨uù´Í²Yv]}e¢i—E
2048-¡ï€ŠW�]ä¬û-Æon³d1›T¯þ{2ŸM£' õ¯½­Û°Å&&»o6\m6þ˜m&)Wû,]n7•ùr9oîÁ`t²íÐ(
2049
2050̸¹{Óq¹ÚNGw“n»ó Á÷“Ý•6:±´é†n÷µíßU’ß4|"¹^¡…:øä&ñ?qÓÛr
2051+xÚíšËvÛ6†÷z
2052+,å…`ÌÛ&qNsNÓÓX;'
2053Fbl�J¤ªKR¿}‡_$Š,Ò]ØÜX6-Hþgþ Ä•PâÃà·ñàÍ9x¡•
2054*h1þ.
2055J
2056Fxee(ÆSq9´g_Çßœ›ðð‹´Do8Nù�·~¿ÿ4¾(¾:Pu|%•õçÄêJì
2057ùü¡q#ã•ü‹’ä|ÞH'ÍÙHƒRÃÉ<MVå8ïǃš‡RB
2058Í—NÚ
2059"+­!1Y
2060.¿*1å~äÑLðâgùÕ…0¨¸ò¹¸ü{
2061+Ú¾}]ÆS_C¾ÜÌòl½s‡ârÐ
2062åÙÈñ•½¬“NØ{.Ú‚
2063jz2b„ZzkÅH{ ï°5ó<™Æôgd1šµk§?m,ÇrÌ
2064Ôß¾LýO¦;
2065øoOM
2066\�ÁÏÕl“Æ8RkgHëÚq€ �¥2Ý^Ã#
2067
2068¯Uò#ò€?N¾µüt/?Öò_¥›ˆøÖóé\tà:Z&ÎCF—±ø>«+˜\Ïæ±äCEÝ„nÆ%.>èvÇÍ’EÚ Îá+'®3Ô<KÍÞ¡‘kè(Ø”–Ö™n`ãXÀ±*Ñ·‹oiÌê%QC7#½w»çß›ƒ[B
2069ÝÜ-(’VíÝmùj­Î´¦Yuò/™ê&Çæ4޵
2070+ü@#ÞÉ× WÅ+‚: (ØÑKPزhòka Œ¥T�¹'ù6Û4¬s Þ:=ª8Ab­øenÈjù¯“i¼u
2071+ÊÄÂB·_I.†e(BýÐ1íß%¼r«|„o:6­ªh ÷!ÐêŒùu°E#m»É
2072ËiW]ÃæfÙô0¾ïž~• @u˜ ´>ðÒ¢ïŽXÙU’ýÝ€@»^ýÿ8]LÅA7ð1µÕ[_'ÍT4ôò?ŸüZhm*ùv5.h;éjŠXDxÐ
2073z­…ÿ©“ª O`Á‰>Òh[±�L£sª -;BGFRÛ—»i.E¨»63Jö†ð9I ÉÖ;B‚«HXdz±uà¬À2Zß…â]Æfò
2074LL¯þ‘,À),3Ë
2075+x
2076
2077†$´^i«YàXjw¥-2°é‚íf`ï¤GÚ
20788ÙlV³oÛMÛ|}äu™'I±|CcÓtžFr¸�%N5ŽO
2079mô¥rXƢݽýûôÆôåçQýÍ)óTèÀW,òè¤*v,l”’Ôz
2080Ï”kÃE,gñ°ûè—óŸ‡η:Ö‹†Š‚I¾¼‰9P®5Ü>ZåbXÛ¹I«\ë E¥ûµüð
2081
2082°Ýp¾Ù�B=3¹\ͲM
2083äìm‹á¶ë]
2084A€PÆR»�HcIßSï>»àÍ9›¶‡{½´*öW¡AàöÃÝn7ãã<ì»Y²È³éîà–øt¯o·��«þ}ÊF3ë¬D½·ÁÄJ]
2085ïÔð÷l½Iæó$– øÔ¾7í Ž¸§çµ¯Ôz½Í³/JÁÕvUI6>X
2086™§Í={ºç9Ä'÷�
2087
2088T¾RÅêãÅä:]$
20895M?ñû´âÛâÅ¡{] Öåó6ËfÙUõÊDÓ.‹Bß�
2090»ÈYw›™ßÝdÉb6©
2091ý�d>›F
2092N@ê{[·a‹�Kv×l¸Úlü1[OR®öYšoו›<Ÿ7wû‚
20930:Ùvh”÷fÜÜ�é¸Xn§£ÛI·‡ó Á÷“Ý•6:±´é†nwµíße²¹nøDr½B
2094
2095+µ÷ÉMâi‰ò
2096
2097 endstream
2098 endobj
2099 305 0 obj <<
2100@@ -685,7 +686,7 @@
2101 /Type /Annot
2102 /Subtype /Link
2103 /Border[0 0 0]/H/I/C[1 0 0]
2104-/Rect [97.151 700.083 229.517 710.197]
2105+/Rect [97.151 697.181 248.291 710.197]
2106 /A << /S /GoTo /D (subsection.3.5.7) >>
2107 >> endobj
2108 282 0 obj <<
2109@@ -1607,18 +1608,12 @@
2110 /ProcSet [ /PDF /Text ]
2111 >> endobj
2112 473 0 obj <<
2113-/Length 1879
2114+/Length 1489
2115 /Filter /FlateDecode
2116 >>
2117 stream
2118-xÚÍXYoã8~ϯðÛ:è¶Z$uö[&ãôdg�ƒ�AÀØ´-´,•cýV±HYRÔY§{€Ý«X¼êüªh²™ø“O'?-N>\ðdÂ|/õS6Y¬'aäE©˜$~à¥i4Y¬&ÿš²èô¯Å??\ˆ´»RD‘‡¤O‹Î9»^ÌoNg<ô§Â;�…‘?ýíò§Ûë߯í'¾½Ή'Œyir<gæš ߋÄŽžðØéŒù¾?½(+]É‚„è‹ëOf<òÎi×YžŸÎÓr�_>Õ[E
2119w†ì«S–LË¥Z5†R5­–5Í?*wެçr§VD.Ë¢Ö²Ðvɺ¬ˆ¯*:¾rËVîü?ýÐ'[x¾?±?a8©6“çæÓ‰1BFè˜p³ÂV’•ÔÒÊù¼‡Ë`Z†Áþ %Ë|ÏÕ|üjt°$»Ñ@K¹¯›\j4
2120r²‚¾h6ãµ îz�¡—Ä¡
2121�z߬zW
2122B¥ïmž é¶íÊU“+Ïh;cqàÅIDâñÀî—­rr
2123-?ž¢�ühJÞitVX>­ÑMUÔ´ÂÄ Lt= lôä{ 93
2124-"ëV°\o3{}áÆå6S&`€û�I·P§Üë¬,dNF
2125-YWÙÀç^‰ÖHZê㌔z!omKŽÚ4;Uhkª@p�%I?>.×c2é
2126övÐO�Û†ÆÀ`(J
2127D�ÚôS5ˆd£ g¤�›Žá‘�†§‰R£K
2128So
2129$ôƒ‹û±§­Ýî®>ßÍon>ß
2130%}{ CéA¢NÙtÕÆ·“øI-
21313àOâ<fyN"C³¾Á·2×n¡Þ:;¼T†;U×rC‘>DOHsúÆ
2132Øä6Ï_Lf­“K4m’ÂòOýéªD´Bù
2133X™®U¾&æV>(âÊâÙ®H¬÷r™šY�gúù”16}�<ð,"*Nª§}Yœ€­õóî¾Ìkš±G')å²l¤üéûüiÌ×�H½¤„%ÉÝQ>†}<æn£KŒ8õXÄÉO!MÍû®°`þ;ÑaCÃ$;ë¦Xê6*
2134í2™7ª~ÕµñÁµÂ¹öÝ»#ªá˜1‚û
2135-™­ÀÀÚ7÷y¶$úü
2136̾#úìú’¬ <ЧyvoðÙ0M2JŸ–éŠì‚Øß€{Ø
2137ú-ŒÜ
2138
2139÷à·Éd4
2140¢ç#ù„9ø%Šû~¡dô…ùƒdü^gž"ç¬@x~À�³ëª+¹£Ä0ÑS<€/àüúîƒ(dÁ‹êeò
2141?¬_½�ß«^¸"Ó6¡vÒ8¦]%ZÓÒ7µˆŒn™ l¤=(³'·y¹”µ"–ézZñ½š™¬›ûޏX:Á ¸c¤AQOr·Ï¶BØÛxÒUù( 'Ì¡I(J•¶\ƒ¤cýF
2142-ÝlìBi£ôq ¹Ä’H`ìØ¤‚‹K#×jìÂú6Öîüªž�»ê2O{…”RO˼�­³•?¯!
2143-»$’œ¼6õgJ’SÒ0/˯͞r€§‰' Dv�…|Ñ»QÍÝSÄšÁ*3ù!+B÷Ws�¹\m.\WÔs+w“V
2144õj6Xù.]m„žÊfáû�¬‡ðëžo‡V…
2145Ò®ÀÂRÕÚž².ó¼|t~ÿ<8û¼Û¬ôŠ?Âñ@£ã=lß8€gýs,¼'ÌÊM(CB)¢`˜p‡1„hÀ–‚É®6˜ß—ï#þ‚ÿÒn»(ágéÄ<�jõâFæ^KHv^K84Q–°o•Œ8¼å…ÀàÿB
21460=n3GâÝø=§�q¨£‘°ê˜I§Žå¡ŠfgYîÁõ¢è…Ü
2147°[ô>›D"O£
2148hshå‹Õx¿kšËÎ=?¾õ&p.ƒ
2149ö­n}¿W�ò{ÚŒ7þé<´]R�Ã6iCx(V.‡\²þ›Š]isñQVDôØ!…ÚHè�ŽcVIc/Šô�¸ý[YÐÀèH¤ßIöŽM´“!d©0h-ÕÍs"Á}‰&ÙW
2150-Ò»�ÿžoWˆ¥ð¢çm¼m–SõºÉ�4X~ñvoìú™ÛÞ­Fˆ_ç|¿„a
2151^e±Á
2152
2153„½íÃ`Ò 7ðèE†/Hf;Pæ^@¬°áÅR5k6†õë5]{ÿ1EEÀúŠ"Ã)Š´ 3$$}VÙ]ÛFµE6‚QkJšÝ˜’�[ö…ipýeIïæVÛú…îÕU>d+µz«�nή~ýQ+‰¡•DÇJÂYI�•ĸ•€
2154Õé+Rþ¨•Âÿ¡‘n9»žÿhÒ„|�4À8ˆÌ
2155dqÓÂgÄJ挭ܛãþƒéjþÅÀË—³›«Ë«OßQ~p  ï•i–°�ÏŠZUšþ¡
2156ìÿv
21572·kõlW´Ïö-C3�·ÇG+|¶XÜÜÝÎwg—¿Íþç
2158ÅÙAqð»ÒÄ3É
2159ú¾ZWÙ}£M/
2160ßÚÉ#sœ‰€ºÿ_V{œ7ªÅ|qòxÝ2ë
2161+xÚ¥WÝsÛ6
2162Ï_á·Ùך%©ï¾µYÒe×kr©w{Xw=Ʀm]eÉ'QI¼¿~AÊ’ífn÷bC ‚øøä£Õˆ�>\¼Ÿ]¼¹–éHp–ñLŒfËQ³8
2163F)Y–Å£Ùbô×XÄ“¿g¿¿¹²¾dÇ
2164INB—¿½»›]ÝO¦2âã€M¦QÌÇoÞ¾ûãWÜ~ÁÝ¡ ' Á²(’¨gêMÎ’(%u
2165˜˜Lç||]Õ¦V%14—Ã.Éâ0¡]ïŠb2
2166D0®–ø/Çf­‰áuØ�m=鸚ëEk)Ý�´jhýI{=ª9ÐSª�^9¯ÊƨÒ8‘eU_פ¾öb
2167¯ÿ
2168�8ù‚q>r?Q4ªW£Îý‡
2169넜Ðw
21700A‰pƕΒ…2ÊÙ¹ÛÂa°=#`˜‘g~æhyúh
2171°"¿Ñ‡.çjÛ´…2èää%ý£ÛlÔ @½¨‰0biùÔi¶íbpÔ>U†Ñ–)’~Û¦Z´…fö¶S‘„,IC R&C—¸®µ·3àÉ}Äã1E§5yéø$cÚºlHÂæ ,ô# lŒäk ¥°DÖ>­@ܬs§€þáÄù:×�6a€û˜+/¨‰SmM^•ª 'E¢Ù�CbÇAç$£ÌyNÊX$;ßR VíF—ƹ*„Ši:Ì�›å)€ä�øq0N¡ß†ÎÀd(+D˜¹òÓ
2172˜ä² W”Ë›žã‘�ާ…Ê`H-Ó¬=$
2173“Kò„%Yç7ÄŸ¯Ÿn¿^ÝßßÞŸe}š°T‡Öï“DOÄxÑå··øYÏ[+Oâ<åEA‚
2174-†_«ÂxA³ö~8¾>|ntÓ¨eú!zB™Çäí6¥ƒÍË—ÓUÈ缜c.Ê
2175Äíߢ²h%SвrÓèbIôZ=:yUîˆ@Hl¶jž—+b,�.r³›!ÆX0a:VQaQ?o«ÆV|4»ÍCU4‡ª©>À—)_8—ϧb
2176†1
2177ƒ�|=+ÆàƒD&~Ÿ/Œ$c"–Ã8]
2178cáÐü{éárÃV;˶œ›.-ö‚NL­nÎ�màcûêÕÑ�¡e
2179ç•65;ƒ�µmŠ|Nô%,‚BK¿»»![¨Œ“q‘?X€¶L[
2180À„ÞgTNwEvIìïà½pŽx‡#ŸÏÆ{ˆ‡ßä³
2181Ê&†`kÅŒÙÇ%N†q¡jä‹ùA5þl°B„±ÜRÄÝüºP}R[”=å#Äô7ß
2182_Ì’ ;j_2ãØ¾d&†í
2183ùƒö…¹ihe£l`:èцDè¾™ƒ
2184`ôû­àÄ œ¢Üi¶…‰Œ¹j4±ìØÓ™·ÖìbÓ>ôÌE(‡àŽŠ~V›m¡qÆAî4€�žŽ_Ð:´]©6Žk¡ôÔÀ‘Á8Û•ûJ›óPBÆÐ(å
2185%0w\QÁÁO•µkqêÀ7Ñíü¦wç��YfƒÎcs^@�¶Mþ¨‹
2186ñZ
2187¡HaaWDR�—¶AâJEv*ú,ªê[»¥�YÊè‘6ÑÞÈ£á�šî–2Ö~,r[ª&x±_
2188‘«…»š†níO2º†n¡_ª‡~7¾7ÂLåŠ rðõ�©ûìë«wŸî+ð£“ÀÆR7ÆiYVEQ=yü~Ø
2189è¾ì+ƒæiÁsp¡=èüÒ½qΆ-æ¿;”ˆ©pvÈÀ'�Ñ{,L¥
2190+Ì%
2191hÀ‘rÉI[ȇÿã÷ä~¹ã¶]W Ä{:µÏ£F�(ük ÉÞk ?m’¥â{
2192ã~ä… £pøB.=­sOâÙøI6 öÈ„»Ž]ô×q|"tÙn
2193Ë?¸Žz^$YEýžwkëˆ"}Îe 1à6ûQ¾\œžwípÙ;çíÛ= ‚+ CGC¯»Øo5T¼…ž®àm|z­ƒ!©ËÀÃ)iEðP¬}
2194ùbý‡z]åjñIÕ%dô)%¥^)4h_ާ¼’%,Nþï+ õûת9@{G"9;©ñjvñ/%žaF
2195 endstream
2196 endobj
2197 472 0 obj <<
2198@@ -1633,14 +1628,14 @@
2199 /Type /Annot
2200 /Subtype /Link
2201 /Border[0 0 0]/H/I/C[1 0 0]
2202-/Rect [436.274 743.744 460.084 756.76]
2203+/Rect [436.274 737.519 460.084 750.535]
2204 /A << /S /GoTo /D (subsection.3.5.1) >>
2205 >> endobj
2206 466 0 obj <<
2207 /Type /Annot
2208 /Subtype /Link
2209 /Border[0 0 0]/H/I/C[1 0 0]
2210-/Rect [59.329 730.195 83.14 743.211]
2211+/Rect [59.329 723.97 83.14 736.986]
2212 /A << /S /GoTo /D (subsection.3.5.2) >>
2213 >> endobj
2214 474 0 obj <<
2215@@ -1650,38 +1645,33 @@
2216 /D [472 0 R /XYZ 56.693 785.197 null]
2217 >> endobj
2218 98 0 obj <<
2219-/D [472 0 R /XYZ 56.693 666.713 null]
2220+/D [472 0 R /XYZ 56.693 629.363 null]
2221 >> endobj
2222 102 0 obj <<
2223-/D [472 0 R /XYZ 56.693 591.867 null]
2224+/D [472 0 R /XYZ 56.693 517.166 null]
2225 >> endobj
2226 106 0 obj <<
2227-/D [472 0 R /XYZ 56.693 512.84 null]
2228+/D [472 0 R /XYZ 56.693 400.787 null]
2229 >> endobj
2230 110 0 obj <<
2231-/D [472 0 R /XYZ 56.693 409.283 null]
2232+/D [472 0 R /XYZ 56.693 259.88 null]
2233 >> endobj
2234 114 0 obj <<
2235-/D [472 0 R /XYZ 56.693 337.006 null]
2236+/D [472 0 R /XYZ 56.693 150.252 null]
2237 >> endobj
2238 471 0 obj <<
2239 /Font << /F28 235 0 R /F39 308 0 R /F37 276 0 R /F47 321 0 R /F51 338 0 R >>
2240 /ProcSet [ /PDF /Text ]
2241 >> endobj
2242 477 0 obj <<
2243-/Length 2175
2244+/Length 2190
2245 /Filter /FlateDecode
2246 >>
2247 stream
2248-xÚí[]sÛ¸}÷¯àSGî®|¸Ó‡¬ã¤ÙI“][™v&»ãQ-ÆÑT–\‰Nš¿$(Q2(¾iŸòàM�÷
2249Ü
2250P´¸-hñêä§Éɳ—ÂŒG
2251+&
2252¥‰v¢°Tçt1™F‚(r:VšŽ~¹|w~ñâýåÅé˜+:zývrqùòÔÈÑóó‹«Óß'??{ÉmN¸¶
2253z«‘˜ñ�Nhè:7cÄ)Å}ëqÛ|,(1Êîºç§cF)
2254½˜VÓ¦ïêë}Ù\ÝO×Ó»²*×›˜´€FÄqÖ€M>ÁS‚›Ñ꾚¯–µ9““ÿœxiÁÀ
2255èš«ÂHK3ÅÍÝɇßi1ƒ/.(Î_ê¦w… ܸZW'¿6dî÷͘m�%«¶ 1Ü›°>ev´z¨æËî�²zX/7Í�ªµöãj±X}™/o›?OåÆOŠd£×ËææËÕºZO—Û'7áÙiÛü³ªfÍåÍj¹©¦Ë*ô5ß=Ùð(Mw,ceˆ ªØ”tÍX6÷³½ÝÍì>Ü®dëw«ÙÃ
2256bŽŽ¾|š·—ÞÿyÞ|L—³ðÿ?4aPõ—í Âýæ¢\>Ü…[Àò&6®8‘Jµ¦\ÁÞÕ®0ñó2d,NC]
2257à­ŒuC�%Þíåì,³Ÿ±p„zŸñfØ›ûò¦š._Oc#ÒX ö,§7
2258n˜¯Þzˆfš�Οyb#¶Óý.¯~yÿâúòâù›¨Õұ¤N7­^¼{ÿÓ›‹x»ª�W—}Àœ·ÀÐp8êÛwo/Ò¶ö·
2259-˜ªyþ·ç—ÏÏ'ý¦²-îÕäòõÛW=3| waŽ„$Æð�Ú‰ v7‹ü<"QŽ€šh& ÿ8ªPÊš}…Ú·€qBë±ÄNïiÜ<îX
2260H€ršuT)t- ë¦ã=A5 8˜3uÜtÑ1½ƒÐ,P¤eĺ„i·e…d0e
2261IEM¦åÄR{
2262!¸x¯Ùµ+(Yù•ÕIJÖèûÿÖa�Šè„á„ÒíÚ^;ëuð�ߨ¢ðÇú}H;Ð%‡v6Æ‘a˜%
2263t²ô+�†<>~g ³":þ#ãV@/ÇÄŽÖ„Â豓FHÇŠíôeRq(§�É…OÃ$†\ ÈQŽ!7��&aEK.ŠŠšLI Ó¡ÙG"TJ AlŸWóhÚ%`9ƒ,ª
2264IŸŸ^g
2265-“Ð`:jqg4ƇÒiBXÑÎ^.éå’hæ0ärK�Á�›FH“‹°¢%EEM&äqÔàâ3¢Ïý�kieŠ0¡:áY¯ Må
2266Á¿ôÇ 5D[Ô" Ö¢t<��v„í
2267åRqƒ‘m‰0Bi
2268á2dzç~†6akåSØY)—Õ¼­³ýÿmrÓ´j¾);Åç®®€J(BµÛ525‹Õt«i
2269$Sº�Pž
2270H?qE
2271­ë)�ÅŒ
2272VÔH(”PŸ“ÂÀâ#>7!és+‚ÏᨨÉä~O£´)£?w�
2273œQå×4ÞW»²õq¾(ýÚÑ
2274BBÈJ�
2275|6FdðP
2276+
2277 ¡¡hØÿ¼ù4]Ooªr
2278¼²ÄmÇîÇÛ4:@­kæ– rbŽhaÚFõMÂscæ5÷ÿ¼½¯‹ÎmOî�±žkTݢΗèS4 tac69ŽXt‚Ð=BX³¨��5Ÿ­;
2279qI¨Ää;
2280�K‹•4BZTVl=:“Šd2)œ·š!ÈdÁ8¹’äb¬ä⨨É4–ÉQ¢•�ѯØÂr"˜_í
2281JvTH ÷z{
2282Q„4íå1Ö“Võ¡Ácõ
2283-ѹÿïòkT½ŒÝõ9�«˜cÀ
2284Øå5(ÑÑUIé$L´Èð•ÄDK!
2285-+¶~šIEZŠ4L®ÓrÁÜE‘›FH“‹°¢%EEM¦„õ[â
2286-Û|ŒþÊVø)b<^Ù
2287ÊM'®7|¿©ÖóåíŸöó…ã�*±(W’’]Ôª–FH»Ší$æ11¼ôPÈ0£—åtvXøþóïoš‹ß(勸æ?ÔHj{
2288-¼— ¦v•ꦕ ÿ«ƒî‡×ÙcŽ®Õãj[…jûËz^EòSÆaú¸,¸£D)dµ
2289\2VC ņUÛ
2290ê,Ã0;<
2291ÖŒ�'ŸOzøÓ-þ�#¡¦Q9´@Ie>FÖÆµ œÛüB»vÓìJ›ƒ@h†;¢ÈÇ说¹Fã¾WÚÿÿJ›Kž‡9¶ñ’cŽm ¤EaÅÖ£3©H¦·\PX],†\ Pä¦Òä"¬hÉEQQ“É
2292î͇|Œ#ší_U³2¿Ò~¤ÙQ%¾v�ým+íV¢pþåvÛo²ææð,¨,„À¼ì1!
22937+¶
2294›IEZ”(LžÁ¼ìÁ©„ÌsH8!M.Š–\žLf
2295,;
2296-%Jùý¢Ä
2297#Òf½ì1H޶“.5ª�ÌkžXÈ3+ ˜”Ä#p�yÙaBÒA1Vl]#“Šá¥<”.D¹°Qüÿ[ï›!uøê¡
2298-·Wù»>x�2OÛàÝMèxyÏý[÷œ…ú¾óƒ
2299êûÛ²ŠT÷Ôk}•oëA•÷±zöXŠok›ù"vˆ™'…!}“~}]¦Ø~¿GKÿË
2300‹9kc
2301¼Ô`ÎÚ ¤Ã
2302aEn&<•¼WVç"
2303Y
2304-(,O9¼‡Ð¸®
2305õ:H5­�fB8+ÿûc›‰vÚô˹Ĥި¤dCôo5ÀZk•þ¾Óð
2306vÎÎÀ/z§ÝP‘ç¢ÙýÓn$(•Ù‘uŸt¿qζ›ÓqâÅÁ&4šx•O|
2307†GÞ•¯÷�Lˆ~êuç'‰ß#.q>•ê‡ÞŸù�è
2308y»^•1/b×8˜÷°S^Ã~²
2309Û·°óh8L;ÛÏ?«¤%
2310+xÚÍZKsã6¾ûWð´%o"
2311
2312 ÎÖ
2313[žL2kÏÊšÊnMR.Z¢mVdR¡¨™õ¿ßÆ‹"5�(9äà
2314‚º?t7ºAàà1ÀÁ»³ægo®XŒœ�`þðE
2315Q’DÁ||
23161ÄÑù˜Gxôqvs1½ü4›ž�)Ç£÷×óéìê<G“‹éíùoóŸÞ\Qц
2317ch
2318³)$ËAgØÌ“ÇíÑã0âcŒi‚¨õKÓª*+=á¢\fçcÂ(&£÷E�Uë*«Ó:/
2319=yØ�Ã
2320E<L4ÎíÇO—w×7wÓÙìfÖ‘c'OWz’pDil¥¿Ý.Ùfó°]Yiž×«LÎŽ\Ó�íëßJñóô¿¯cþ
2321P’Œ6ël‘ÿŠ1Í–²CŒÊµ¢B=Ì7º¯(kݱ®Îáßl“µ~’›‘µÆ£e¾€÷ÇR¦}z9'„Œ†jê§%
2322IWKÙaµ”í§t£©þYæRˇL++U•ÝõËÚ =¨å³KÉú)­õÊ–úWS#;,³ÐNÄãöY3 =šÚòK¾Ì–'Ä[üÌ&×?û’ÄöIb-’˜%‰i’˜›$è®ÒâwÙ ’:VtûãäãÔ×c8ÝóèØ‰L5M²‘êM
2323+ã)]+8ò×ãéêý_š8Á]šd‡–èá8É+3r‘*ÀÈö½éÓt¥K=Bw‹
2324cú_«¼®3CA]*6{<i"¶u^´;²?¶¹ eC鹞þ¢Bï/“Ùõûëw¯÷8
2325î
2326
2327Ú÷Y^<Ê&ƒ ºÉªZy!<�AXþ*Žd#]Yv^̈B¿'•vX‘ɝ޾“ù|vw;�ß]MÀ2.ÿÅiKq²S
2328Ü"«uŸ
2329+6Бæ·®«ü~[gúñÂöN$ˆKs…×6‹ÔzŒÅ3dÈ‚ „sªÈ€ÔQ̈ö($l—ÁPH
23300ƣ˴N�¡½¬�a­Ó*}Î ŸØ¸’�Œr”PÒf‚Æ– Iæt~öÇ™Lsp@@
2331ŒbÊN(ba°x>ûü–ð
2332´D,ÁW5ò9`ˆÆ
2333Z«àöìß:
2334Û[ $�$ �f7 :
2335Òtdõ¶’Î*;j+ìC¹Z•_õrÁ¿_ÒÕV:И‡2•Ò�WeUWiѼ¹1ïê eþ)€©¥n. &ÔiQ›¹òÝ›N;å1bre:˼Þ.O2G*塵Æçr¹•1ˆ$xôõ)·M)�ü½Ð?i±4ÿ÷�n¥ÔC«”é×�¬Ø>›.`yãÒ6B$³Y!hp£,a.×å]†bœX)¥k
2336,Ñö,oßœgÌHã£Nè5¡"|�ÉV�¸ÒÍÆÁäcT$ñÆ�‰HDGo$¯‡ïNž3�|pÊ
2337|
2338‡8‰ô¨Ë›O?|˜ºÇ¹²yY€¼›ÎSj�aàé¨×7×Ó~Y�ra^ü8™M.æ‡e%
2339ðí|v8FïE;³F릻XÇL¬[¬²´r¨‘8`q
2340ÅYr<@qwTWB)Š¹ÆŠ�Â6[øf^pX„†"óȼff0³ž·ƒÀp9¡¬<*9kIÞBÐî ¡ H$.&€æ%EHP
2341O*™a¦
2342G0æxPŠÁÊ8qœ
23430ŽQ„mtßÞWf{r„‰˜B±ßœ
2344([½3¶ó+æþÈab6Fî§ö`Œ#j³as^’Ém'÷;®~"Ì©þaµiìÆ>®â8BŸëô#ô»Ž‡võ†R±L¿%—@‚¼â’Ü´©W\êG8�Ü×KaÉõ¢B‘‰!Éžqi0ÆÅ1vKþRæÎœ
2345B
2346)Þå¦wÖâyù' pÈÙ<L¨¡ß„<¤ho ½þIDLêãŸ4!ˆÿ<¡—\)
2347¹~T(2ãñØÏ?‡c(ÿìúœ%6(b¢åŸj
2348Õu�Ó ÿqÐ
2349iL`k�|
2350˜ðñÂú
2351ÅCŠf‰R±ï…ŽC «¡Ìô„Y±
2352¹BûxYQç¶ÊÞ
2353|ÚQú‰ûJ(Æ!3»š&45ͪL—®’&VzRÂaËð­i0pG?±¦! l/^5�<¸Â^5Í ý&ç!…19?*™"D̳¦Žq8w mCllña[,}qä%MA#
2354µ
2355³
2356òU&Ͼ×ovg"\
2357÷DMêQ§µóP(+o…ަ"$+ö¬�†c8HŒ•ÄØ,„u§ÅSZ¥‹:«zY”̹“ksĺ€T¬9Áþ§:fÖï�‰
2358¤ûÿÞôGA«[’ë^*‰Ú¬T^ÔòÓ�+™LÌén¯
2359-0§
2360á!Dï�oßê_kX‡M�Lj†ž¦0ãˆ)D2Úñ÷趃�#AšcR÷Zt¨ÑΖ®œFE‹Â`ÆÂ6Znë~í¬¬QU'ñ~ˆ8°â
2361œMxlG„‡sŸs‚z·#)Ã
2362HEo
2363B™÷•¥ÇÉ
2364C•ax�Û�ÐO®‡–\/*™T Ì<cÓ`Œ#{=xÙ.4õïÁê�`«wFÈP[áL};ÓÞ.7C×DWß™ä^EÚ[•‰S»îß³—ï
2365á˜ñ€ffBÜ ÞÁÆr<É !ŠBŸó‰ B¯8Ó�Ðï
2366+
2367R4F8�Šþ8#¿Ç>5‘LäSSœ€ÐO®‡–\/*$™‰@‚ú•ƒ!ŸvL‘&ÓÔ_uÍ5ÇÝ¡Ç~Più閭盺ʋǿusÀ£Þš€3g™ú¾Þœúz­ÉC»Ži8ýHJœ„™U�eérÿ@ä?ÿú æ•ë«Pˆ8ov‰Njß÷¹Ÿó½üµt^<s�¿À&B.Êõçþ0²*˜›$ê0§Ò·MÚWq]òÞCv—#^s+
2368«v£Çþõ9{ÿL¶—efÄÓ÷\¥œÿË7öæ�•ÕÜR“íûÎ]²T_±ûF&ðžÿn46
2369 endstream
2370 endobj
2371 476 0 obj <<
2372@@ -1695,791 +1685,812 @@
2373 /D [476 0 R /XYZ 55.693 817.952 null]
2374 >> endobj
2375 118 0 obj <<
2376-/D [476 0 R /XYZ 56.693 785.197 null]
2377+/D [476 0 R /XYZ 56.693 551.956 null]
2378 >> endobj
2379 122 0 obj <<
2380-/D [476 0 R /XYZ 56.693 628.279 null]
2381+/D [476 0 R /XYZ 56.693 392.073 null]
2382 >> endobj
2383 479 0 obj <<
2384-/D [476 0 R /XYZ 56.693 597.657 null]
2385+/D [476 0 R /XYZ 56.693 361.392 null]
2386 >> endobj
2387 480 0 obj <<
2388-/D [476 0 R /XYZ 56.693 600.422 null]
2389+/D [476 0 R /XYZ 56.693 364.158 null]
2390 >> endobj
2391 481 0 obj <<
2392-/D [476 0 R /XYZ 56.693 586.873 null]
2393+/D [476 0 R /XYZ 56.693 350.609 null]
2394 >> endobj
2395 482 0 obj <<
2396-/D [476 0 R /XYZ 56.693 554.71 null]
2397+/D [476 0 R /XYZ 56.693 318.33 null]
2398 >> endobj
2399 483 0 obj <<
2400-/D [476 0 R /XYZ 56.693 557.778 null]
2401+/D [476 0 R /XYZ 56.693 321.398 null]
2402 >> endobj
2403 484 0 obj <<
2404-/D [476 0 R /XYZ 56.693 525.615 null]
2405+/D [476 0 R /XYZ 56.693 289.119 null]
2406 >> endobj
2407 485 0 obj <<
2408-/D [476 0 R /XYZ 56.693 528.684 null]
2409+/D [476 0 R /XYZ 56.693 292.188 null]
2410 >> endobj
2411 126 0 obj <<
2412-/D [476 0 R /XYZ 56.693 467.742 null]
2413+/D [476 0 R /XYZ 56.693 231.158 null]
2414 >> endobj
2415 486 0 obj <<
2416-/D [476 0 R /XYZ 56.693 435.834 null]
2417+/D [476 0 R /XYZ 56.693 199.192 null]
2418 >> endobj
2419 487 0 obj <<
2420-/D [476 0 R /XYZ 56.693 438.6 null]
2421+/D [476 0 R /XYZ 56.693 201.958 null]
2422 >> endobj
2423 488 0 obj <<
2424-/D [476 0 R /XYZ 56.693 425.05 null]
2425+/D [476 0 R /XYZ 56.693 188.409 null]
2426 >> endobj
2427 489 0 obj <<
2428-/D [476 0 R /XYZ 56.693 392.887 null]
2429+/D [476 0 R /XYZ 56.693 174.859 null]
2430 >> endobj
2431 490 0 obj <<
2432-/D [476 0 R /XYZ 56.693 395.956 null]
2433+/D [476 0 R /XYZ 56.693 142.58 null]
2434 >> endobj
2435 491 0 obj <<
2436-/D [476 0 R /XYZ 56.693 363.793 null]
2437+/D [476 0 R /XYZ 56.693 145.649 null]
2438 >> endobj
2439 492 0 obj <<
2440-/D [476 0 R /XYZ 56.693 366.861 null]
2441->> endobj
2442-130 0 obj <<
2443-/D [476 0 R /XYZ 56.693 305.92 null]
2444+/D [476 0 R /XYZ 56.693 113.37 null]
2445 >> endobj
2446 493 0 obj <<
2447-/D [476 0 R /XYZ 56.693 274.011 null]
2448->> endobj
2449-494 0 obj <<
2450-/D [476 0 R /XYZ 56.693 276.777 null]
2451->> endobj
2452+/D [476 0 R /XYZ 56.693 116.438 null]
2453+>> endobj
2454+475 0 obj <<
2455+/Font << /F39 308 0 R /F28 235 0 R /F37 276 0 R /F47 321 0 R /F51 338 0 R >>
2456+/ProcSet [ /PDF /Text ]
2457+>> endobj
2458+496 0 obj <<
2459+/Length 2345
2460+/Filter /FlateDecode
2461+>>
2462+stream
2463+xÚí[[oãÆ~÷¯àS Ödî}hZo›t‹M½.š ¯DÛBmÉÕ¥Iþ}Ïp8’(‘
2464Î
2465-�û$®–úæð›s›ïдx,hñ׋¯î.¾|ÃmÁ(qÔ±âî¡Pšh'
2466+K%qNw³â‡³—?Ý}óåáïZIÃMþÛŸ¾½»¹½
2467sEG‚\Ž•¦£·_õþÛýÅÿü‚Ö‹Ž)#N)îqÆh,(1Ê8AQ—cF)
2468ý¼šoÊ
2469+ãæîâ¿~IZ°‚qF,—…1’HÀœ¾\üð-fðŸß”g‹Ÿ«[_
2470+@³®ž‹÷ÿ
2471�Ý4‚qE$cµ
2472Ë×Í|¹XŸ®¬�ªÂ(NŒq}
2473SXZÀÒaá‚ q:aº80ý!lÔi�'×!,ð"PVH0$™ÂÎ
2474î•®ÛŠlŒÊk‰#áNOXo?¬–ÛÍ|Q†H�æð†Jw�Pyë¤ö�©¢óçrqÿR^…ß6WcÊ€óóøãõæ~Ó¶ׄÙÝ]€Êº½\Y[
2475�¹-4jGŒ…àäð)U°{út¿ºŸnÊUÛ#*KöÙÄóÖF—†EU¼ hmbŽhaâMô·Ô¿3Søþ»ïuqðµ§¶}£<ªŽ¨óŦ\´î”wA#†<ÇXëcˆÃôZmùXC6¼¾ŸÑ­º
2476�qÂÃyB6F�+0pâXS<��íŽ ±ÌÅoߌ7!ÖîŸ[½Š¡eØ9vvç¡�3Ò
2477ÚØÚD©•›ã
2478ѾåÔB´ILE'¦"¥Ò aEôÜ\*b?OÈÕŽžJ‹½äj�ŠÒr $ÉÅXQ“‹£¢"Ób®Üçct—{
2479¬ù$s@º¯_·³ÉI±oM0\BÚ%…)ܺ ï
2480bÛJºQÕV¯ê\uð}owQãœ.Üñ„Íû#ô>z[
2481]³
2482€ úëL*2ÒéÈ@X±óÉL*Òi
2483Ðö‡kŠ\M íO…)rÓirVDrQTTdJO‰Á¥�lŒ*í
2484õ%5±Òaxˆ·wU¹Y­–«¥Ã²‹¡�–D3È“íËz3»¾^oVóÅãÍ~²?ÒÅ¡]‚µý9;å‹i„´/"¬ˆ^�ÉÄqœwk/údËYا_9òn°ÊÊæ©
2485Qœß®.™
2486•ñ¿ ë
2487_/�~ôÝ?Þ†‹)åÏ­‡Yî•eŽk@CÂÙK9GÐh¶IU±`9pqxœ1³„˺ý¿-7ÛU´¾\Uæ{¯÷ÿœ.g­–9èƒÙ®8y]iòæë·7“›ÛÛw·ƒìc´ºÞµúGôÔ¬T׳e¤|±¬é,™¯ëË�­÷‹Ý¨é£Î¤Íšbs‚h.‹1¸µl/véZìz,[Ú{F
2488±p·.½‹ ¤.HMz7�%£À1}š?ÏZÖ•œPØÑ³¬
2489ç:­XsÝÞ¬šP�9ͨJâˆl3!™m0VÔÙGEE&çDZ…ª|ùÝ
2490·‚nZ©|y
2491âcRyë¤.Vô?å¯W±«�•¿\ÅÖúàžî‚¦üISh
2492-ÙÝ"‰ò
2493>eŸõ²3èe××à�;/�ªâ³óùÝ;/�ƒÃ?¿<vVEk8÷U0v³ï“¦ÀÉÔù=ì[_ñÏq×w}j¦nnþ>ûv{€±àïˆâî´BÔö4@²´#lˆNœICR/�pÎvE¬–„iŒ<!M-ŠÈ-ŠŠŠL8ŸKŽkò1º»&©4Ϲ*åiÏÔ^5èAf;¯JYõh]³
2494û±% zmòª;ÇA¬An_6FO•†8É>îiëî¶óY9Å‘ýL6FϳzÕÛ
2495
2496g
2497âB{nõ$H£¥*—Û=xRì–LÃ
2498bÒ+3„ Œ6!�^VDoÉd"Yº„o�5Š[Ê¡
2499cüÒÜ"¬¨¹ÅQQ‘é;Z†;ðçctKÝÂ:âê7«ÞCUº¾>Ñ»Ã×êW
2500+X…–½cej�ua¼¢‰«ùÝ9UM¤8­ÛÅzþ¸(g­²);<f|ÑPJ:Ÿ9–ájI>F‹ïÄçÖ¼Ò?;öp Ö#Àe$Ǽ¯ç4ǤîÉô‚±b·9™T
2501_èéDôÑÛö©üßÉô¢:%ý@„o;\Bád£$õ7_šÙ<Õr}%sÇuÛ÷@ý~–å£ä\¡q&—cÁèèîi^?uü|Y®7Ï¿†ëíº|Ø>‡ë‡8M˜•¶��à×õï¯q’&ë8RáÚ&ýIF*¿ù>c¢âäáÄçd ²Þ¾¾>ÏËšrOç€ÙÊ|1dÔÕ1^±†PãNÇ+fÈx
2502+áô<ã�Ei
2503sl_>5éha?ƒ.ô,
2504ûîäÍ…ƒ—-
2505+É)}žE�WˆDsÑ*ÊVAôjMÄ
2506ÂL¡^SãJ#0}Þ„d"ÆXQ'b
2507™þLép}^>F·DÁ«™a==Þ.¦>v“:j�Éòa�§9Ù ~ºÜ.6½%žC¹�×°åct7lœƒ§0–õ›“óøŠï)+Ý`Öá:¶|ŒžgP·õç9Öùßûî›i1õDâ¦*ù=^@‘ì·>ÓÊKû8'uoˆÄ8ä†dctoˆï�¬ŸßÁÿtïà3K«?%ûøæÆ#hÌ»°i€dkƒ°aç¶™<$åA¦¡q˜ÉÓš0Ž™l
2508@Hs‹°"’‹¢¢"S:øo\§”�ÑÝ62°K*ö1£­öæ±5Í@*åFþ^g\'ÔÙÆëŒ‹¾D7|Ä’î²ý«|Îa„4&ýß‚YL ¦Ò�ˆ°b™T¤³œ?2ôg‡¹lc¨’FH“‹°"’‹¢¢"ÓCŒÄe¹lŒž,ÑHEÎ?ÉIsŽìУ‘xf»Ã¾¼£�æƒ3
2509c•ô„æÿ 
2510ó·vÒA€°bç~™T
2511—ê­%ÒÖ#¹w
2512/[óQ�W½”|ÕÚËKb4kŽÍ÷G ”\l ´QµWå˰f-�V×~
2513à?ƒ�WÆÔ–m³öÃ
2514+“v�£U{ét­Úûå§½ÜÏ^µ?4n»®-¯¤{±—îƒBï,0,¡ê†¼PJ»žO{„ü�>PÑgp­öAý $ý×r:÷æ:UÿÄDÈÿÑc6ç
2515+endstream
2516+endobj
2517 495 0 obj <<
2518-/D [476 0 R /XYZ 56.693 263.228 null]
2519->> endobj
2520-496 0 obj <<
2521-/D [476 0 R /XYZ 56.693 231.065 null]
2522+/Type /Page
2523+/Contents 496 0 R
2524+/Resources 494 0 R
2525+/MediaBox [0 0 595.276 841.89]
2526+/Parent 457 0 R
2527 >> endobj
2528 497 0 obj <<
2529-/D [476 0 R /XYZ 56.693 234.133 null]
2530+/D [495 0 R /XYZ 55.693 817.952 null]
2531+>> endobj
2532+130 0 obj <<
2533+/D [495 0 R /XYZ 56.693 785.197 null]
2534 >> endobj
2535 498 0 obj <<
2536-/D [476 0 R /XYZ 56.693 201.97 null]
2537+/D [495 0 R /XYZ 56.693 754.078 null]
2538 >> endobj
2539 499 0 obj <<
2540-/D [476 0 R /XYZ 56.693 205.039 null]
2541->> endobj
2542-134 0 obj <<
2543-/D [476 0 R /XYZ 56.693 144.097 null]
2544+/D [495 0 R /XYZ 56.693 756.843 null]
2545 >> endobj
2546 500 0 obj <<
2547-/D [476 0 R /XYZ 56.693 112.093 null]
2548+/D [495 0 R /XYZ 56.693 743.294 null]
2549 >> endobj
2550 501 0 obj <<
2551-/D [476 0 R /XYZ 56.693 114.954 null]
2552+/D [495 0 R /XYZ 56.693 729.745 null]
2553 >> endobj
2554 502 0 obj <<
2555-/D [476 0 R /XYZ 56.693 101.405 null]
2556+/D [495 0 R /XYZ 56.693 692.264 null]
2557 >> endobj
2558 503 0 obj <<
2559-/D [476 0 R /XYZ 56.693 87.856 null]
2560+/D [495 0 R /XYZ 56.693 695.333 null]
2561 >> endobj
2562 504 0 obj <<
2563-/D [476 0 R /XYZ 56.693 74.307 null]
2564->> endobj
2565-475 0 obj <<
2566-/Font << /F39 308 0 R /F28 235 0 R /F37 276 0 R /F47 321 0 R /F51 338 0 R >>
2567-/ProcSet [ /PDF /Text ]
2568+/D [495 0 R /XYZ 56.693 657.852 null]
2569+>> endobj
2570+505 0 obj <<
2571+/D [495 0 R /XYZ 56.693 660.921 null]
2572+>> endobj
2573+134 0 obj <<
2574+/D [495 0 R /XYZ 56.693 574.769 null]
2575+>> endobj
2576+506 0 obj <<
2577+/D [495 0 R /XYZ 56.693 537.238 null]
2578 >> endobj
2579 507 0 obj <<
2580-/Length 2028
2581-/Filter /FlateDecode
2582->>
2583-stream
2584-xÚí[ko#·ýî_1ȇÀ.b.ß#)дÞ&i‚$^h�‚V¢,¡£‘ª‘v7ÿ¾—œ‡õ˜§ï&_Ú�fÇä὇‡—ä‘B“§„&¿úòñêÕknF‰£Ž%�‹Di¢�H,•Ä9�<ΓŸ¯™½ùõñ›W¯…;n)´&á‘�þúÕ_~x¼¸¹åŠ^
2585rs«4½þöë/ßüðÏ¿…îW´
2586´ú¼¼úÏUèN–(AU‰1’pa“Ùúêç_i2‡¿}“P"œMÞÇ–køOaM’&o®~<ET‚!’ë.„¢?½D(R€ -#Ö5AK”¨($#Æ0$‘LM‰†0;´•®=ŠÑQSŠ5hÊhIŒ’…\VÙ¾•4ÇM¹&ÌòJS³|{˜Ožü~2[®Òù$›®ý/TÑ¢çé LåJ×]7Y¾¿¹Õ”^Ï–Ó]ÓXZA•Ü2þ
2587:ý)4
2588é„ϯÿíû¬iHÁ‰á¦aÄ–ä”
2589�ƒÆ›¤>‹c6/i“¸‰
2590
2591Ñ0¯Úceb#œÊñ,P×LCõ~•Íý‡|"å=¢ƒП9,´H®”÷�äŸߨ=…Fê—hoøÀA„°ÜXÇ
2592P˜y�)×€ )Ç”ë~„þr�ˆ¢VÒH*ηÃKr™&Bj
2593¹Ì%$†Ü~„~rQT䢨ˆdR¨ÕNãŠÅhŒX-ÎÖaI,ÕÄê²Þ¿�]îîîûí~µÉîw»Í®XÉÅëa»WŠp£NëACš‰ªY¾‡òýn•=}ZŒYmu�Ë
2594„
2595†Äñí%ˆ$‚ñ‹xÈòÕSæçM8F´¨÷ìO«šÙ¹Ñh£`Ò,.ïÑ
2596â©ò6ð©EÛ
2597ž¨…udÅ�=†¨/A1Dyéè­.ˆê™ÉÃyån¿Ei8Q^®ò“äßù¼¸"í—¾xU<mÏj�.ãp'“•t£f/VçÁœ
2598S÷Ëb�¨’zܦ0oëR…aÐ`P쵨Ï%p
2599Œ^?.WeÖÕçz“ïÓߊçCx^„â
2600æþíáé D]ö˶‡}ñø
2601¥<õ9‰Ç—[Î
2602
2603©4œl,Ô]S}ØeåP~·»aöºžmæ�ì:`‰Õ4ÜZ'ÿ¸ÿirÿððýàÌ�$B?OÏâlšóÃv›®|Iy ³ÈsS "Û” ú«|_¥}†²‰›D%¡˜˜÷¤¼žC>pŽSЇp€C¨qÉ­ÐDŠ’XúÄÜÜ2
2604-u";¬ßúÝe}`¡P©œ†�Ûu¯-u´¶âB8�‚IJ¨àKˆò„YèílPÅ …ù(ƒÂf¨…8
26054ê}ç³Öz¨àήÆ{P–K1ÞÄފˆ‰¢,‰8*"™p×§w9�Ñî=(m å
2606uqÈfaµß“ÊE\¬�Éf1©ÔÎ_°v;7V¥(Q
2607—úXˆöC’Rd¡j×Å?ùÆ«)¬¿£òuwWœ%.hOʆ3
2608—÷hŒŽÄ“Š£
2609ùt¶oIýxÎÛNØP–d½=¤¾Q<qó«wÚ/âUô»¼xëx?z
26104ÕxÕ?ÝRÃfÎö]y
2611�5¦!Ž�ݨõ(†JÕY Y"V!DÓ�ÐWEûú«("ŠZÌ#©èµHÁpŒ% 8­c,�ýä"¢¨ÈEQÉ„+83¸ÛìxŒŽ-
2612-^qÉFÛãÍ›Tc!Ñ*‰}™EÞg~|“|Àˆ½¥
2613-žMß÷Ý+œu˜Ó�пbQÔZ
2614IEo9’æJp¹n]
2615ãþöôR‹ˆ¡dÇCdÒ(ø³@Õ¢ñíµHW@;¢f%²½Ì°ì,Ò@Åp
2616-£QúèFèi?B¿JQÔIÅp£KÂ}ÅÐ&÷åÙæ*܆£«I41J£ã�Í›ÏèÌ‚Ü4û½ì¨é*«ì¨*¸Cî_êIQEŒ3
2617ž-.L¢­Ÿ­ØçÑKƒÈ–QÒàÕÏ
2618N*Âi¹Ày5ñ|`#åõ—ȇ¢æ4.ia
2619,LÌCXJ¤Ã8×z—4&ŠrI㨈dB
2620?ÊÀì<ã1Úw
2621¡
2622±ÌŽ4j
2623-¥N¢n†X4BÑø“TÖ£1Ú½
2624-¡$áڽФ9ξ=eXåá÷ ¨”Gct¤,aËàÿwgþPwF:ÃxÜAjƒ)�ýý¥E­å‘Tô^‡HAb¾Oœå0WÍýÜ"¢¨¸Å0©„TøyªX�ÆèØ•¨#ŽëÑÞÌù¾ÔX@xøâPý/¹2‚r"�Ä,@Ðc@è_*ˆ(j•ޤ¢·
2625qk‰fA.w�7ÅÜx ô’‹‰¢$GE$Ó(B5Î$
2626�Ñ^ˆ¸�«—à£�™¢ßÁ’á†Ô$XƒÙ' ôëE­ŒqL
26277dàÚ8ìÜz༴¸x6dàeô<Âgm@ƒ÷ËÕlY¼_O÷ðØ¤µ [ûlÊ®ßøi4*fK_Æ:MÓâa»ÉóÕÛ´Œ|;Ý/ó£À
2628-Gæ8·§Õ»è(Á»cìºòf±�o/¿
2629~]<þÃt½Mýgg¾Oíª,6iºy_@ÿúîÛcûç®%õSƂߣ¦ûóõfîÓò �ÿùxS½-kBÑ.ŸMÓén²Xùð³­øÝütí¿ød»óy~ØùOºúnÒw~wÙ ÌŸ�’œÆÎ¯Ž{·59
2630-®hH†¿÷ë­ßM÷/Ì jИ‚BeÐÒðr¾šþϦÿ}º×ý
2631-endstream
2632-endobj
2633-506 0 obj <<
2634-/Type /Page
2635-/Contents 507 0 R
2636-/Resources 505 0 R
2637-/MediaBox [0 0 595.276 841.89]
2638-/Parent 457 0 R
2639+/D [495 0 R /XYZ 56.693 540.099 null]
2640 >> endobj
2641 508 0 obj <<
2642-/D [506 0 R /XYZ 55.693 817.952 null]
2643+/D [495 0 R /XYZ 56.693 526.55 null]
2644 >> endobj
2645 509 0 obj <<
2646-/D [506 0 R /XYZ 56.693 785.197 null]
2647+/D [495 0 R /XYZ 56.693 513.001 null]
2648 >> endobj
2649 510 0 obj <<
2650-/D [506 0 R /XYZ 56.693 778.303 null]
2651+/D [495 0 R /XYZ 56.693 499.452 null]
2652 >> endobj
2653 511 0 obj <<
2654-/D [506 0 R /XYZ 56.693 764.754 null]
2655+/D [495 0 R /XYZ 56.693 461.971 null]
2656 >> endobj
2657 512 0 obj <<
2658-/D [506 0 R /XYZ 56.693 751.204 null]
2659+/D [495 0 R /XYZ 56.693 465.04 null]
2660 >> endobj
2661 513 0 obj <<
2662-/D [506 0 R /XYZ 56.693 717.342 null]
2663+/D [495 0 R /XYZ 56.693 451.49 null]
2664 >> endobj
2665 514 0 obj <<
2666-/D [506 0 R /XYZ 56.693 720.41 null]
2667+/D [495 0 R /XYZ 56.693 437.941 null]
2668 >> endobj
2669 515 0 obj <<
2670-/D [506 0 R /XYZ 56.693 706.861 null]
2671+/D [495 0 R /XYZ 56.693 400.46 null]
2672 >> endobj
2673 516 0 obj <<
2674-/D [506 0 R /XYZ 56.693 693.312 null]
2675->> endobj
2676-138 0 obj <<
2677-/D [506 0 R /XYZ 56.693 611.908 null]
2678+/D [495 0 R /XYZ 56.693 403.529 null]
2679 >> endobj
2680 517 0 obj <<
2681-/D [506 0 R /XYZ 56.693 581.787 null]
2682+/D [495 0 R /XYZ 56.693 389.98 null]
2683 >> endobj
2684 518 0 obj <<
2685-/D [506 0 R /XYZ 56.693 581.683 null]
2686+/D [495 0 R /XYZ 56.693 376.431 null]
2687+>> endobj
2688+138 0 obj <<
2689+/D [495 0 R /XYZ 56.693 288.572 null]
2690 >> endobj
2691 519 0 obj <<
2692-/D [506 0 R /XYZ 56.693 568.134 null]
2693+/D [495 0 R /XYZ 56.693 252.748 null]
2694 >> endobj
2695 520 0 obj <<
2696-/D [506 0 R /XYZ 56.693 554.585 null]
2697+/D [495 0 R /XYZ 56.693 255.609 null]
2698 >> endobj
2699 521 0 obj <<
2700-/D [506 0 R /XYZ 56.693 520.722 null]
2701+/D [495 0 R /XYZ 56.693 242.06 null]
2702 >> endobj
2703 522 0 obj <<
2704-/D [506 0 R /XYZ 56.693 523.791 null]
2705+/D [495 0 R /XYZ 56.693 228.511 null]
2706 >> endobj
2707 523 0 obj <<
2708-/D [506 0 R /XYZ 56.693 489.928 null]
2709+/D [495 0 R /XYZ 56.693 214.961 null]
2710 >> endobj
2711 524 0 obj <<
2712-/D [506 0 R /XYZ 56.693 492.997 null]
2713->> endobj
2714-142 0 obj <<
2715-/D [506 0 R /XYZ 56.693 411.592 null]
2716+/D [495 0 R /XYZ 56.693 201.412 null]
2717 >> endobj
2718 525 0 obj <<
2719-/D [506 0 R /XYZ 56.693 378.602 null]
2720+/D [495 0 R /XYZ 56.693 163.932 null]
2721 >> endobj
2722 526 0 obj <<
2723-/D [506 0 R /XYZ 56.693 381.368 null]
2724+/D [495 0 R /XYZ 56.693 167 null]
2725 >> endobj
2726 527 0 obj <<
2727-/D [506 0 R /XYZ 56.693 367.818 null]
2728+/D [495 0 R /XYZ 56.693 129.52 null]
2729 >> endobj
2730 528 0 obj <<
2731-/D [506 0 R /XYZ 56.693 354.269 null]
2732->> endobj
2733-529 0 obj <<
2734-/D [506 0 R /XYZ 56.693 320.407 null]
2735->> endobj
2736+/D [495 0 R /XYZ 56.693 132.588 null]
2737+>> endobj
2738+494 0 obj <<
2739+/Font << /F28 235 0 R /F39 308 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R >>
2740+/ProcSet [ /PDF /Text ]
2741+>> endobj
2742+531 0 obj <<
2743+/Length 1966
2744+/Filter /FlateDecode
2745+>>
2746+stream
2747+xÚÝZëoÛ6ÿž¿BȇÁ
2748j–‘ƒvÀÖ%Ê=Ó
2749Ð�bÓ±0ù1KNÖÿ~LJ
2750Y‘,kD±aŸDÑäïŽÇ{éÎ8º�pôÝÙ77g/¯˜ŠF
2751++ÝÌ#.�P,JpŒ”ÑÍ,z?bˆ£ñ„
2752<úåúç7—ßþv}9žPŽGßÿtsy}5–ñèë7—ïÆoÞ¾¼¢I
2753.–0NP³HD™EgØÓâ2")ΩY=©–OF’'Oä“ñ„`ŒGëM™­WäòæìÏ3ƒŒ#ª‰I$eŒb�.ÏÞÄÑ
2754~|aÄT=Ú¥Ëà £<zwö«Á„Q$á‹2ÏÄt½[•Ïér@Ã<’
2755¶€ØŽ�Å@˜aGö�aÜžü(ã¬Æx
2756Á]Ù qBP¢Ú XRaA\ÄIIEa…É¢q|
2757�ÀÚXus1Ã*'-¶ csEÊéÁ|·šV*øò*–ë¤öªî4õÖêÍÌñú<H·
2758+QÔxØ©c´œZ($“°àé
2759@¶*õ½Þ¶ž™"&âêÐã‰Ø›ém�Ñ
2760+6+ÂN<ãȉ‰@”oï‹t›NËŽC×/Ú\®[Ô@¢¼Z”ëV�!
2761+ &«E¯Í¿oB
2762 ;ýå~ZDO³F™^´Ñµ˜¢Â4Wçî IÛXˆd§œ¢Öz†ð�8ˆS‚J@ó»u'ÖÑ8N@PÇú
2763g?B¿ã
2764à¢Rå¡¢¨¢hõ|&\¡ˆˆW(§*@¶ý½¢
2765àÁK6LV’RÂݰ W5
2766£;$ #4’ìM¼Í,©@$¡•Y›Ýì¶“ZÝ‘­ª}Óõª(�
2767—ØFHps籪(é\–w
2768µyp­>Ëg\ÏivœÍ“Ä{Ô[p°Gë€dŽ b
2769€À1†~„~kàb¯ˆEÑïhà€Š„ÈV`P•'~B¿l¸¨d" +J“l†åDƒ!Žø™X¢˜ò~æ
2770ø™‹‹“
2771
27725jÈ�¾7O)J€/Êm¶ºÿbŸ^
2773·|P2äÛLÄIC´³¡_;¸¨4c¨(š–o5åð
2774¿:!$Ï $Ñö’®u¹Û®Šñ„R:*Ú
2775Øhµ[ÞA>m'×sÿ´ŠR¸�‹lºpóË´„a›¶Í}*(T¹e“Ñ&—‡I1O&£wI °iÏkšçn°YEv—{Î7i¹(jŒ�ò5ÎvŸ=@†oç
2776K„ bbà„2_£39ËÀÕzë*(ú¯t¹Éõ
2777÷6¯¦
2778®�Éóõ££¯¿ÿøƒ|À˜æú¢ãì‡"ÃÑ„ÅHbÿ1÷j¹žéÜçÅWõH}Àã«bšæéövžé|æLm•.õëóÍVÅn«ÏŸïåÕÖuþ ·ÝØyé´~YßÞµ¤Æœ[ˆOd¿ÔË�Þ¦eû ž¶w
2779�¾t,|~_MínÜp¶:®E }å6õ‹¦€~Ñé<™¤ˆŠ�ï3&M®&œç ½Î3„
2780ï<ÃDa…Éá
2781�¨ à>
2782ÃúìFýÂ
2783VP[ø°JÑz‘U–òúyÇ„ñó¥õJ~~4ú2Îc!ß �³�Êè ý
2784+ÀÅþꊢ5ú¶ß$|@ј
2785Þä)q1NêUª¬p>!…àw¿Ò³†yHó�Rïýüþ I€¾w?7
2786‹Ãâ‘�®ë]™­´›p?ðÑ®Ðó]îæ
2787Ú®óK¬_‚§¯ôÛñÔMòÑz:Ým«uŸÜ`ŸV˜Ms÷,³¥ö¤ŒÞº¸
2788+ó>Üz÷(²å.OŸˆ-ÓOõxâý}j<h#J;`°gÆ–¡ÁH¼D˵{Þyù=Íì’™1´§X“ãS°{dóŽz$“ñМˆšÒ-kÞýj]ºÁÆÝJaʇŽv3¬Ì2[
2789+O·µ„çYK'ÁHÂÔŒóZCIùŽÎ"}Ð-ý
2790HØÌW…mìx
2791¿¿Ÿ•BY,ózy¾ÓmQ /œ$‚�‡|О€Ðë´B¸ðN+DV�>9 ŠyÃ1º¿h)LQ"6sŒ’ú
2792ì”^Q‰¾‚cÏ¡‡ctw6ˆ‚Ã
2793é[ëû
2794¢øéÍœÚá»O,˜wX�t8Æ‘'
2795‘ª@ú_èå
2796VF÷ÍœjúÿÑÍ!�e‹ "«AH‚Ь' ôúÍ.öÊ<P½EVšJ±
2797+®€`ªdˆpûú…ÀE%Ü QXaÆ1aeÖÁÝA‰@-•Ym;§•Ú»9üBü/tsäçìæ�˜Xw`
2798€ÕtO@è·….öj8Pýކ2”��ì—P‰0òâýýÂ
2799à¢n�(¬0M¾)d˜§ŒÑ]) $¶Eˆz*xëÍÓõnNñ*�]=ó*Ÿ¡uC°i*„("�!`8¡_¸¨T` $NoÜÀUÊê?EO¡FåvœŒl½^Úë’lJþAÝ�˃²8¬6Š+ÏÆÂ³ðÔ*‚—FéÁôO$¥«™ûyžæEµ
2800¶�Y¡MÓGȪ:e(øç¾e6ÚÚŽ! KW–š¸B—2ÿ¬k”æ—ÙÊÕÔ™2U,CȽ8VÓ¼þV¸[î°£;m;F0*téŽV±Á<‡t²1Ù6™�žû�î1]¬³©>ü©A½hë•xVL]Jç¾”f¨õ&ÁFÿe^ã–
2801+endstream
2802+endobj
2803 530 0 obj <<
2804-/D [506 0 R /XYZ 56.693 323.475 null]
2805->> endobj
2806-531 0 obj <<
2807-/D [506 0 R /XYZ 56.693 289.613 null]
2808+/Type /Page
2809+/Contents 531 0 R
2810+/Resources 529 0 R
2811+/MediaBox [0 0 595.276 841.89]
2812+/Parent 551 0 R
2813 >> endobj
2814 532 0 obj <<
2815-/D [506 0 R /XYZ 56.693 292.681 null]
2816->> endobj
2817-505 0 obj <<
2818-/Font << /F28 235 0 R /F39 308 0 R /F51 338 0 R /F47 321 0 R /F37 276 0 R >>
2819-/ProcSet [ /PDF /Text ]
2820+/D [530 0 R /XYZ 55.693 817.952 null]
2821+>> endobj
2822+142 0 obj <<
2823+/D [530 0 R /XYZ 56.693 785.197 null]
2824+>> endobj
2825+533 0 obj <<
2826+/D [530 0 R /XYZ 56.693 754.092 null]
2827+>> endobj
2828+534 0 obj <<
2829+/D [530 0 R /XYZ 56.693 756.858 null]
2830+>> endobj
2831+535 0 obj <<
2832+/D [530 0 R /XYZ 56.693 743.309 null]
2833 >> endobj
2834 536 0 obj <<
2835-/Length 2473
2836-/Filter /FlateDecode
2837->>
2838-stream
2839-xÚí\]oÛF}÷¯ úPÈ‹h2Ÿ
2840N€>ì¶N±-°é:îÃ"-
2841F¢l¢2婸þ÷{烲(“Ò7`yhH‘£3wîÜ{æÎѸ4¹IhòãÙß®Î^¿&a”jXrµJTJR#’ŒJbLš\-“3A9Ÿ«”Î~¹|÷ýÅ¿^^œÏ¹¢³¿ÿãêâòí¹–³¿~ñþü÷«Ÿ^¿åÙ!œÔpŸ1èÍ!1c�ÑÐ2oßÏ%Ze¾UYyøæ¶ð7«Íz½y(«ÿñífÛlóÐh±Yo
2842êÅÕÙ¿ÏlW4a‰£©Jt* •,YÜ�}ø�&Kx÷SB‰0YòàZÞÁ‚ˆL'ëäýÙ?»‚¦€  çæ‚ÿ>}Žà}9AfŒd¦BdDee…dDk†t…s¦¢Dšƒ¶Ò
2843[1éÔ=Aª•$J… ­®·åzy>O)�}ç/›û¦ÜÀ‹Í®j~£Š~óº^äë|{½*‹õòu½Y*¶ßÀ6
2844@RF%&€AP�  8B<€V´S7ÕmšÓCºéŸIž)Xw&™¢½>ã�T-½”µç„¼®Ë›ªX
2845Ñȧ|½
2846·œXxàÿý9Ë—!’®n
2847Ž�³í9Ëf›]SV…à_¨Ù®.V»µöp[¸v¡‰ã%¸úØó÷
2848ÿPÍ6‹ÅnÛ¶{ô7Õîîc
2849nVþÚ”wEèÊÆíjÞæw÷ë¶'©Ë»Ý:êì.tc£0*ŸGnT¹¥Ð–N·ÁOθÙÛ÷θþF)‡, .m6þú18°¾/¥k²´ùCö]
28508ò²hvÛ*P)W~™8
2851-ƒŒ-Ûiü£x
28525ùœ‘Šãɯ6�¿¹÷ÓRUxðl]Y–
2853ë·|ûxΛošÓ1JqÛÉ<ƒ•
2854Í…",3O+¢9Ÿ3
2855-$s›*žÓcšó$…ä‘”�Î;u�w~Mî˜À` :5‹Ó�%!¾†x+å�‰§Œo¥�“ŠeÞ�å-Œ�·p®pΤ†è
2856µîM†pq XY¦Ð.Òra°ÚU‹6z²ÊìK/¦×>h,¥@Ž�\÷”I ¸µ~:FÏ Së7 þ£„·ézsSÂBÞ;fË {&yóƃ
2857qÆI
2858-‹ñdŒá«,%°äú�,nóm¾h€£cól'×7:B=\(×EoÀg¥B·�¾sœž†Ò6òÏÿ²ž&�m8½êëÙ¡¦{š®KÈ=½
2859C¸cÆqÖ;
2860AhÇ!ÌGA
2861íúÒ¬0
2862-Á›A‰àÍQÞÄXÑóTW
2863¯×Ï�›Â5f7¦ 92…Ù��@ˆ;aEë\”+œ3áÊ8’¡'c
2864/KJÁö K÷YÞ—™°˜Û¢(d梾ß-¯�¦^ašdÌì¿·©êƧ²åžŽRE¤ê£­À
2865�
2866ziK@Ñõæó>ÆfY0Gvy
2867|z–°
2868ÌÆÓ"�ÙxŽ@ˆç
2869-Š6J§º"NDbÅCÒ–#Ê·Q„¾}¹­o1žp®„êZ¥HšŒ1,%(® l:…âuÈÜ÷À7oÞŒ!œL@-"»É-YêÐëf[V7ßî+�ÓIÎ)a•ä€ 4*Éãñ@DX±��‰®èU—ºA¡4¼ÍŽE‰ÔÌšíy6sš|è—&´_!§KJw” è +HØ
2870«`Æm0ÁGeh~¤N¼‚§ZÌòjé_¯òuÝ~
2871¶e]�ó¹Hu«`Ù
2872Âu/XÙ/:ùÇvP4^ºš{1Ì(pëÊFweåuwa¬Òe;ò¼©ùúðSí?8EÄÝ},ŠÊßÕEão¼ý¢5C3ºý”ç
2873–ö½
2874-_ô—Åí¦\ÝWG½×}úW0ÅJWź€­Ô²Wî¡Ï…
2875FƒÒ3´�döPžHàRÉNë�ŒÒÀ
2876‹3é­h
2877ï‹A‘°¿’#8DÚhÅPH
2878 Ê �àüà<IÑF –²éõ¤v›‘MzÂ�
28796f‚ÐÓ¿+‡ ë¬]ùˆŠ½]Ìž�uvÜÛ¢Þ­{Ѥ:¬ãGImì�3¬7C„á„K‰š×éÃÊŽ0)ä�yÒCnt�c-kH\ÑÇÎêwƒÎ ¬Î
2880“1N¸!ƒ
2881–2_®/*p Ø3è“1ND\9‹æB—9^ÅIh_ŸDkØç˜Ó}lnvM<6;“:¤Nècö
2882˜qæÎV¼¼@°êÙ—W#¢%ÆŠ}àNtETIÒ†’i„�FÎ1Î�#Ä�‹°¢u.ÊΙPH«
2883¹BMÆ.Àdwª&+š7Es}T…õRŒ”„Röÿ¦jövÛYÁº
2884-Ë蘮‚[O”|0NfPœ 8/ŽOK„û„˜èŠ8çÁL)”j%܉çÅâÎEXÑ:å
2885-çLšÊ‘œ7cX?ðˆ¶ò‡Lß9.»Øn­b󤣎¤9kîC"¤ÔWƒéÎaw&5ΉÓ1†�È�­øžûð
2886-üÆ¥0ž˜
2887…Yža(lB4Ë0V´S3ÕãµažfD2u¤
2888
2889-¼(ënì¦ÚÝY½Qhþôª=ägïNÄù{
2890{B.3Såî
2891“@
2892i3»:6‘Ï
2893Êõ:tÞyÑÙ¬5,#ÜT�qí‡ÌgU~W,½(Ì…&†«®˜ê²8¯šz°Î�Ê™$üeÊö&9zrùãYòÁ}Ãꪼ{üÃ,~ˆ°Øú#™Û§³ß}>†LÖl¿ßzÿ˯?\ÿ|ñ¯ë‹ËËw—£¼mäá±\
2894�¬w÷÷ë²=_j§Ð'ÜÇg‹?Ëzèôá“jmŸúi*úÏ ²LªMЦ³mš�Ô¦9e@ì³hÓK
2895-
2896ľ¼úc�Ãìïh*EPs‡ 0¿³Ž@ˆRÆŠ@a(O8WjÈ#†û�u:ÆðÞˆiؽhõ2qÚÍÿ€8
2897Ì
2898^£8C"üžŽ1,¦±x–§Ó•eW’œNeÉa
2899qÇ#§cœªL‰Ñ_�G~Yõ˜qãÎÜ£¢`2Ɖ(‚Hž}•�ÿ{ò1ã
2900-
2901µˆ[ž>½³Š-âq„ø"ްb¹]•RŠP˜ïs[M„o£q׾܆ֳ(?XOC2Š#¦É'ª#*H–jŒtÜÖH_¥ãÏ*
2902Gk:“:Aàå )ð]
2903 š‘Úd˜è†(ÕÁHÌ™ÛÌ|˜£ÿq€¨_6¿¢Üàþ"™.quødˆ¹+anô4µø³} µ8˜Ž:±<âÄŸóuþϧè-ŒöÛ§ÝÚéÃÅ>mg‹=âhq ~²øå6ìO¸OsÃ1‘µ×ÿi�Úü
2904-endstream
2905-endobj
2906-535 0 obj <<
2907-/Type /Page
2908-/Contents 536 0 R
2909-/Resources 534 0 R
2910-/MediaBox [0 0 595.276 841.89]
2911-/Parent 568 0 R
2912-/Annots [ 533 0 R ]
2913->> endobj
2914-533 0 obj <<
2915-/Type /Annot
2916-/Subtype /Link
2917-/Border[0 0 0]/H/I/C[1 0 0]
2918-/Rect [115.99 253.695 139.801 263.313]
2919-/A << /S /GoTo /D (subsection.3.5.2) >>
2920+/D [530 0 R /XYZ 56.693 729.76 null]
2921 >> endobj
2922 537 0 obj <<
2923-/D [535 0 R /XYZ 55.693 817.952 null]
2924+/D [530 0 R /XYZ 56.693 692.298 null]
2925 >> endobj
2926 538 0 obj <<
2927-/D [535 0 R /XYZ 56.693 765.348 null]
2928+/D [530 0 R /XYZ 56.693 695.367 null]
2929 >> endobj
2930 539 0 obj <<
2931-/D [535 0 R /XYZ 56.693 768.105 null]
2932->> endobj
2933-146 0 obj <<
2934-/D [535 0 R /XYZ 56.693 656.77 null]
2935+/D [530 0 R /XYZ 56.693 657.906 null]
2936 >> endobj
2937 540 0 obj <<
2938-/D [535 0 R /XYZ 56.693 624.629 null]
2939+/D [530 0 R /XYZ 56.693 660.974 null]
2940 >> endobj
2941 541 0 obj <<
2942-/D [535 0 R /XYZ 56.693 627.394 null]
2943+/D [530 0 R /XYZ 56.693 373.575 null]
2944 >> endobj
2945 542 0 obj <<
2946-/D [535 0 R /XYZ 56.693 613.845 null]
2947+/D [530 0 R /XYZ 56.693 376.333 null]
2948+>> endobj
2949+146 0 obj <<
2950+/D [530 0 R /XYZ 56.693 256.713 null]
2951 >> endobj
2952 543 0 obj <<
2953-/D [535 0 R /XYZ 56.693 600.296 null]
2954+/D [530 0 R /XYZ 56.693 221 null]
2955 >> endobj
2956 544 0 obj <<
2957-/D [535 0 R /XYZ 56.693 567.667 null]
2958+/D [530 0 R /XYZ 56.693 223.765 null]
2959 >> endobj
2960 545 0 obj <<
2961-/D [535 0 R /XYZ 56.693 570.735 null]
2962+/D [530 0 R /XYZ 56.693 210.216 null]
2963 >> endobj
2964 546 0 obj <<
2965-/D [535 0 R /XYZ 56.693 538.106 null]
2966+/D [530 0 R /XYZ 56.693 196.667 null]
2967 >> endobj
2968 547 0 obj <<
2969-/D [535 0 R /XYZ 56.693 541.175 null]
2970->> endobj
2971-150 0 obj <<
2972-/D [535 0 R /XYZ 56.693 455.684 null]
2973+/D [530 0 R /XYZ 56.693 159.206 null]
2974 >> endobj
2975 548 0 obj <<
2976-/D [535 0 R /XYZ 56.693 420.546 null]
2977+/D [530 0 R /XYZ 56.693 162.274 null]
2978 >> endobj
2979 549 0 obj <<
2980-/D [535 0 R /XYZ 56.693 423.407 null]
2981+/D [530 0 R /XYZ 56.693 124.813 null]
2982 >> endobj
2983 550 0 obj <<
2984-/D [535 0 R /XYZ 56.693 409.858 null]
2985->> endobj
2986-551 0 obj <<
2987-/D [535 0 R /XYZ 56.693 396.309 null]
2988+/D [530 0 R /XYZ 56.693 127.881 null]
2989+>> endobj
2990+529 0 obj <<
2991+/Font << /F39 308 0 R /F28 235 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R >>
2992+/ProcSet [ /PDF /Text ]
2993+>> endobj
2994+555 0 obj <<
2995+/Length 2306
2996+/Filter /FlateDecode
2997+>>
2998+stream
2999+xÚí[[oÛF~ׯàS!/¢ÉÜ/Á¶Àv×éhÖñ>,’ÂPdÙ*KŽD7Í¿ïÎ�"e’CúÄ)
3000+ø%“ÃoÎ|sΙ3š]g4ûnòíùäùKn3F‰£ŽeçW™ÒD;‘Y*‰s:;¿ÌÞL9=ùõüÇç/…«÷Zߤ¡Ó¿¿ÿ׫óÓ³“Wt*ÈÉLi:ýù‡o_¿úßüã
3001“1FœRÜãÌJ ™ Ä(àQ„Ñ“£”N··ùj»)PNÏ'&~Pš±Œ èÄ\fŒ$P7“7¿Òìnþ˜Q"œÍ>]o2À³Zëìõä¿aâM3˜°ÄPU`q­È?Ý.ï«Ì÷T0ªd}£RWÀ¸aÔ‚ 
3002ÑÜõÛ-jv×Â:
3003@�–ëÚ `ÆÊ
3004+”’c’Š‚LIÁJÞ�À ¯tÝVŒÆ(ü@±–0@ŸºÛ,J|þRšFKA
3005õ»Í[ªèoËOÏÂ3Í1ø
30067¢|jŸÏó6h® ³¼ì€¬LÔÃp·Üß­[Ѥ"–¹mCÓÀŽ*;•î?̰ö ᆉ\×Ñ-ëª
30071VfF0"© –¯6ùòz¹k]VN„–å_¼heÞ-Ì1Yí4€yÜ
3008+EÃhŒ
3009˜!¶Ìµ‹÷óÝ|‘wQ÷ïA^³^¶J“­¯}—øÜŒùNáú?ªë:«]ö>ö¬s
3010t‰êtÓêýÂÕ#®o
30115°Öi4­ðý™†=
3012+\¤ø…˜ïöJ —ç£1z¼vyQRÜ
3013ÍÔñ,�…B
3014œ¯Ó‘5ìs,jåœÛ»<íœ�UmAœ@N:Nß­K®�†@3ˆ"A;C(ìD/ $‹ŒÑsGSQVŒåï}rÁjePäZIŒVrÓirV”䢨(ÈÔ–P8
3015`’ÓxŒî
3016+LY@T9 ]ˆìoï./®—ùÅQÖžb
3017‘ªÊõ‹ífŸ‡�÷»aÛXZÁm›UÌVµë]u_3oÔÆì˜^
3018’V¨°·¶"7vé´¸U™@d®»¬ÓZ�:ûx+1�—HÇÝÃm¨
3019~$éœ&
3020ì�
3021Ã,ì°
3022+•Ò’ifnCÉ,Ї‚IáËÜÑc<F‘ÐŽ*žH+”+ÖÄ£ÇkÈU/^üR$ªÓÝn»
3023‰ \
3024˜Ã¸†UàÍt’¬’ö9
3025°Ïw«ÍõWUÅú¬;Ð9'\ã.ã1zH„”/¸½Oâ9'”Î^ÌÂJhLŒA2¥di„t”!¬(×f,Ç ¬[CT¾Þ3QB9[æw»Íþd&Œ˜æï—±áÏÌEk{åùáVÔüŠöþv¹X½¥”//Ã…wŸZ«˜
3026·®¶_6„ǃÙ4·y„$àCÆMÏ�MäÓ�«õ:ïíN˜�+
3027›Çn7�yUSæÓÍü:ûmwÆ¡qÜ—Â'ËCÏ7ù>©á
3028:¡„ÂZ„ çî:;ºröÝ${¥WExcÞŤü€F†äñ’øÇ–»b2>ù?ÛËVåÇAêŠÄk»?�þÿâôìì—³Ad;Y?ý­®Âp;¾±¿»½]¯<›þ/¿‚Eãr»Œvn¶y4ø�Õ>¯Hj¢߉Oäa•–$ŠØMñ™Y8×—Í ¤ ŸÖÄg6P|V
3029˜ý,ⳂìæOÚAÊ›o~ëLaŠÂ¨
3030S&(XÎ,
3031�L`bþÂñà™”NipeÂxŒîs�„“¶æaʳ÷™¿�ò
3032ÍìÞ¡¥q�qeÇxŒn¥LZAœµãe㢠é�d©¡¢18Qp<FÏT
3033%R¸'iø‹JÃ<Çr…ó‚Ñ=^ÙÈ>)Ã�¨
3034K8àJa;¸GЩ×Þ½[ø„ä
3035ޱ¢tܱT$U)$a
3036+E®ð/
30371²û„4¹+JrQTdrJ4u¸Ü4£§Bâ’hØí
3038®
3039—eÒ“2<VNWnÌŽ:˜x‰:™
3040@HG
3041ŠÒçÇR‘Nk–B
3042+
3043¹N­En!M.Š’\žLa-tÇ�1ÆctK›Âqj;NîËd_B†S±ÈOÆctï
3044ÂØC²êOwqÂ_
3045Îh½‰M˃yÙì4êMþ„dìa¬¨l$ÃEcáKAeŽEcꢂ
3046+�â4]´
3047+q•ÑíJ4†vS4†
3048]¢±_^‰�¥µQ4n˜x$Õ(#{ƒbo~|_ù@÷SšÇI,æëù.
3049qg‚Ë);î
3050ÌK9Y&jòïËE¾Ý…CK!ŒFy—‡�2Í`qí
3051œ¬öÐÝH8ˆ5ž½™CrøÃc>©ÊãUe>PUæÆåÜgQ•=V¬–÷ïç=_)r^M1å×°”S^
3052@H¦8Œ1Åá¨(È”šP…+/ÆctïŒàµàYöaºrá7ý²©+A_PX¶u•g]Ú½�s8kù„�Z—ÑÝJš(ýRÛåêrxÏ"Ó†&Ïï
3053–ëDº€¼ïN³
3054�ÑÃ$‡ùó'áú‹
3055
3056Žr’jœŒÆèq
3057+›�aOÊõã)לrB™Ã” €ÀSïÌûË„4BºL@XQyîH*’³š�!—YÿÞóZ`B’\Œ‘\
3058™ŽD8áz4DwÆŒ!¼<š=H·®Ê°Ö
3059#%¡”ýµ},áúP¡ôI9fÐ
3060Ò•!ƒ-Ä¢Ž?ÌøO²8&ôÒéÐCXQzýX*ÒyMI¢8Š\eˆa(rÓirV”䢨(È”ÈoFÆctK×
3061ª)Z~32TºîMf\[(©ôãŠ×Œûw<¸ÌxŒ
3062ýNuµ©ýîŸm۬딀ßDNdB[ êÛ�ÀQß&
3063@H+Šj}GR1\ëf¾x÷´nn¢ ÍuÔëŠk…Ø]¿W‰Ýp±)vÃͱ›3Bµ@‹ÝJÒ(vû±Kõtퟯ?Î?•íp‹Ï‚3{E9"üМ‘©ÍHÇ“j6ã�¦´sAÖ.ƒãÃÝr_*ý4ŒZ~fW´XøàMÕò
30646Ý/!•\†‹‹íÍívãÏaÅŸ¥0O£0O§³Bug¼P”ýÓ†Ö^4´
3065OÃO”×}ó ã[ön›¿¯tôÚÁ¬ÝªÔ§ƒi¾õ.ŠÑ³'õ½TßïÙíO¢|J
3066+endstream
3067+endobj
3068+554 0 obj <<
3069+/Type /Page
3070+/Contents 555 0 R
3071+/Resources 553 0 R
3072+/MediaBox [0 0 595.276 841.89]
3073+/Parent 551 0 R
3074+/Annots [ 552 0 R ]
3075 >> endobj
3076 552 0 obj <<
3077-/D [535 0 R /XYZ 56.693 382.76 null]
3078->> endobj
3079-553 0 obj <<
3080-/D [535 0 R /XYZ 56.693 350.131 null]
3081->> endobj
3082-554 0 obj <<
3083-/D [535 0 R /XYZ 56.693 353.199 null]
3084->> endobj
3085-555 0 obj <<
3086-/D [535 0 R /XYZ 56.693 320.57 null]
3087+/Type /Annot
3088+/Subtype /Link
3089+/Border[0 0 0]/H/I/C[1 0 0]
3090+/Rect [115.99 582.156 139.801 591.773]
3091+/A << /S /GoTo /D (subsection.3.5.2) >>
3092 >> endobj
3093 556 0 obj <<
3094-/D [535 0 R /XYZ 56.693 323.639 null]
3095+/D [554 0 R /XYZ 55.693 817.952 null]
3096+>> endobj
3097+150 0 obj <<
3098+/D [554 0 R /XYZ 56.693 785.197 null]
3099 >> endobj
3100 557 0 obj <<
3101-/D [535 0 R /XYZ 56.693 310.089 null]
3102->> endobj
3103-154 0 obj <<
3104-/D [535 0 R /XYZ 56.693 217 null]
3105+/D [554 0 R /XYZ 56.693 755.644 null]
3106 >> endobj
3107 558 0 obj <<
3108-/D [535 0 R /XYZ 56.693 184.859 null]
3109+/D [554 0 R /XYZ 56.693 758.506 null]
3110 >> endobj
3111 559 0 obj <<
3112-/D [535 0 R /XYZ 56.693 187.625 null]
3113+/D [554 0 R /XYZ 56.693 744.956 null]
3114 >> endobj
3115 560 0 obj <<
3116-/D [535 0 R /XYZ 56.693 174.075 null]
3117+/D [554 0 R /XYZ 56.693 731.407 null]
3118 >> endobj
3119 561 0 obj <<
3120-/D [535 0 R /XYZ 56.693 160.526 null]
3121+/D [554 0 R /XYZ 56.693 717.858 null]
3122 >> endobj
3123 562 0 obj <<
3124-/D [535 0 R /XYZ 56.693 146.977 null]
3125+/D [554 0 R /XYZ 56.693 682.574 null]
3126 >> endobj
3127 563 0 obj <<
3128-/D [535 0 R /XYZ 56.693 114.348 null]
3129+/D [554 0 R /XYZ 56.693 685.642 null]
3130 >> endobj
3131 564 0 obj <<
3132-/D [535 0 R /XYZ 56.693 117.417 null]
3133+/D [554 0 R /XYZ 56.693 650.358 null]
3134 >> endobj
3135 565 0 obj <<
3136-/D [535 0 R /XYZ 56.693 84.788 null]
3137+/D [554 0 R /XYZ 56.693 653.426 null]
3138 >> endobj
3139 566 0 obj <<
3140-/D [535 0 R /XYZ 56.693 87.856 null]
3141+/D [554 0 R /XYZ 56.693 639.877 null]
3142+>> endobj
3143+154 0 obj <<
3144+/D [554 0 R /XYZ 56.693 542.387 null]
3145 >> endobj
3146 567 0 obj <<
3147-/D [535 0 R /XYZ 56.693 74.307 null]
3148->> endobj
3149-534 0 obj <<
3150-/Font << /F39 308 0 R /F28 235 0 R /F47 321 0 R /F37 276 0 R /F51 338 0 R >>
3151-/ProcSet [ /PDF /Text ]
3152+/D [554 0 R /XYZ 56.693 508.321 null]
3153+>> endobj
3154+568 0 obj <<
3155+/D [554 0 R /XYZ 56.693 511.086 null]
3156+>> endobj
3157+569 0 obj <<
3158+/D [554 0 R /XYZ 56.693 497.537 null]
3159+>> endobj
3160+570 0 obj <<
3161+/D [554 0 R /XYZ 56.693 483.988 null]
3162 >> endobj
3163 571 0 obj <<
3164-/Length 2685
3165-/Filter /FlateDecode
3166->>
3167-stream
3168-xÚí[m“Û¶þ~¿‚Ÿ2ºæ„à
3169àM›™Æu·�Iê\?tœÌ
3170Oâù8‘DE¤Î¹þú.^H‘<R$
3171»ãNýI<X<Ø], ŽÞF8úîâ››‹¯¾¥:"Å8&ÑÍ}$$’1‹4æ(Žet³ŽÞ,(¾ü忝_}ËâfM&%2�ØUzñýŸ¼yùúrI^0t¹/þþꛟ~üç_Ló
3172ì;­~»=/+À%ÃH í`_§åñ°+.¡0^”©{8$»_ÝS~¿Ÿ^åû2Ëwî¹Ø§«ìgŒiºvwOn$\5{¦„!�y5’_Ó§I“I&«V0b®õâæ¹ˆ‡K¢v•ï²ÍÆ
3173äkc÷ó3ø>?¸!%~«d“
3174à
3175¹‚ʤ[þ$FâhIC„GK3
3176
3177ÓU™ÛönnLóKÝ��IÜ£¹ñ®LwTW|qÕn»MÊCö»ÁD¶c
3178]jD¹ìLš©›
3179,UÓU¾Nû&!¦HQ±i´æöo/ÿuûòõë^OšŽ˜#&ëIÌîýÌ|˜‡â¸ßo23柙cû°ÎS/ç./½À¿g…Ìv
3180§]¾Eéf6EÞ<`<ÅBP«ÎD+„U
3181ê
3182¦D©
3183æ`—`\�ÙÁ½¼¹øíÂØŽHDT"q¤°BŠF«íÅ›_p´†wÀ4b±ŽÞÙšÛà´‚§MôÓÅ?œ9·¥ L#………”8!ЇdŸ>ïV+‘Œ1"RŸëCÇ
3184:vݶ–€¿Bžœ5o 8÷3�k‚tÜCšIÁ RŠRaÉT0 ˜Ê³ÞZ¥˜�aA�
3185¿.5FRs§÷ÇݪÒÀ®9
3186-�N¾Ý)ê­Õã/Àz®\£v'„(¤I\5+ʤìõ·M«ZÖ3õ�±æòrH‹ã¦�
3187èS7Ðð¦”
3188+¹t6-s!zfEÆHÁlH©½÷\»2}›
3189‡ZÓ{5ÎÚ:Û‚
3190?3Å8nGÝ*!Á7]_»ß͈³à±õ+ADÎÆ8ä‘Kûehõ�
3191’UÙÏeKÁÍàûØ”Ði½&mÒ^m ªJ²ë¡k·$–`[þ‡º\F�b·¬÷Íc+¸0:±ëÕ~#ªØ”q4Àz‡ÑRœçŠPEE½Z
3192V|~¥ׂÙg´€c„™üðöä
3193a²éU(ÚŒ?&€}ˆI­•3?–ãÊÙšÕ
3194D1U]÷=0å
3195�‡D ¦·ócQÂ8Âx” E­¹3©èF²ÏÉ¥0'q
3196B.å°ÆªrÇÆÉ
3197�¢"7ˆ
3198-K&„¾`'A¾i.Ä™
3199‚sANKýx|´*öÇõíÛ´¼í†a½.F`�£¶álVJgòf5ìëM
3200-[ßbå½U£|(îkû�FŸtkïÄ
3201oaÝííµ
3202¿
3203
3204à”¾&D�˜#,Yˆ]•4Ä.ÇÆí2@ŠÚ$fR1êôDLW*€\
3205$eȾsÂ(¹!Rxrè°d*0ªƒ¼Þ|
3206ëö:¦î‰ÕÜ8óÉ
3207ph××?Xoöòp0™!ã,\ñTGG¥†xK¶�Îh,U”ÐEQ
3208²ÝÛ/ê¸öjÐà8G¦Â¶ïó1ÎÐ.ç¼1—ÝûcC0}­¨B€øµ'eÜ
3209- ž3¦!Ö*)"1 ±Öq„qk
3210�¢žà™Tt]ápÞt¡Ù³T8U>ßM¥OæÙ2›
3211o¾«sáPØÎ…ÃË�\8%Ö¯‡æÂÇ>nú®d”‹ÌËŸlÞ%OÕ³{E—N™M¾Ù#¼j�H5F$ý>6ZRØíI[YïߎiQ
3212`×+ÆuR
3213»$ºMìîê'ó@E
3214-¾dí
3215-WùvŸïÌ.Íþ­òöØçíñbi“ò„Ú|³iíapã
3216¢¯{ì~|òÝ<žÒü]Éîòò¡Î²7†b
3217²*{íD3Ow>U½üœ›�Ü<ó¹yX†zóD -âˆKgùA™yb\¹°XBÑf~aÐé‚ëG4Äçr¬|î„QŸ"…÷¹ALX*8�°ðlˆá]!=TU¸8Þ
3218òc™ízmQQ„q�C:EKu^Þ.à�Éf ¥ìnoV†~J¢9½OÎåçãn¶¿_¿‰B$0›<c8�Èa1$Ÿ³Éÿål2ÇÌzÄ -˜�á´÷iVvNšGaåÓ~‚u~úIàÊY
3219N‹1”MÆ|Œa“dJ`­?§ö?^jŸ)‰¸âaS>cØþ˜ÆH°øãØß§;í³
3220ëЬëžEz`â\Ë€øÒ P
3221’�›€0_†HQëïL*FÓ›ÌÄù˜„�+9’:!w
3222aœÜ)*rƒ¨°dÂ"a!Â|Œáø��«ÀDœê
3223žçÀ–‘*þÿwžó˜gë34Né
3224âš³Û
3225›H!EˆI‚’!gØÆM2@ŠÚfR1îï@‰â�[„ŒÉ±ËwcÜŽ#Œs EÅm–J“*
3226-
3227ÁçB
3228ŸA0Ê�Ŭ£œÁC
3229ƒÑ²�{ˆÃ0ìtXVa>FO<[ˆcW騱x¶u†3æÐh
3230+
3231[ƒ0¼ µÒa
3232-;cXc©¦Hsý¿£±ÖpÊÂv`ó1†5–ÂNŒÆúý4¶ZëñðÆd¤ßÅÜŽD™š‡ìf¨„¨Ž‡ìf& Œ®@!RÔº0“Šé'”º�ÕÁþ̓;Þ«ŽùÄé(r›dþØn›–ùÚ½v߯@¡ÿFæ�¥�`#ÝÓKaôè˜zì{wfµuÿ|âtücJ×™½Ùž
3233ž.!‚¶Ç‰L-¾­ºƒ‡ò�xìd·î;^{ñå—}š
3234«ŸÔl@sGÂoEÖÉ®}f—ìüÑWÞ="»Ï7›ü�åÆüu|\Ÿ·ßQ™Ë#Œ¹S?áï
3235-Ô¶ FÚ%áŠP;ÊSa�Ãë°²Î�w›Ôù°ý!]eÕíògC�Þ, –±¬šôÆò¸Iæ¶ZV­¦Éõ,�‚yÓõ|øKô×µWêa–9zqƒ€ŽÑ“–
3236ó×^d¾žÈ3̀˟øäè»:K Á]Ý…•J)Öˆ�¾™L©CŸÊ,§
3237zéÜDh$©{$͈†rà]ñié›j ¾Õ�ï›+ÿ¡äƒ€ŽœrÝS¯2M³h&búÉ�u^ý%?õ—Êšüåûê>6yÁ�£g¦íÁ�
32386ž;4•ÏMåÀ¡©è
3239šž_ÀZÑû¤O™�—$Â8e?¿´
3240½ò÷yüZl/±E¨õhï ï}ÝÕ!ÐÄÃ}²Jý¢ÄUqõ“M‘»b×2ÌÖéºjèê¤ÉêÁßHê^QJîòGÿ¸JŠ´0Ÿ0K²ø>—>¦Õg¿FFhQ¤ÍIÔѽ�ʨäÕ$)\0%…¹Ëe„]»ÿöÂŽô1¡)8]Ø�?�ˆÍÖrµy½2™ç? -̲jꑟ\53÷ä»>ä1E&ÚsâU¶uC
3241{aYR¬<ço�[{̼Ú
3242í-$x·MJ﫟ø×AU§PÖÚ��àûbU$¼òÕ^t Ú_“›’®xÊFßö�»d×3Ƥόt3A]å_G•�¶ÌxŸ[�­ÂY¥+«îl�°Ö�¦ØƒdwÙ&+‡âßcQ�–yý
3243ºe¾u‘,ûwÚéÚϼ½ÝvðúSn*ªû›Éÿ\Û×
3244-endstream
3245-endobj
3246-570 0 obj <<
3247-/Type /Page
3248-/Contents 571 0 R
3249-/Resources 569 0 R
3250-/MediaBox [0 0 595.276 841.89]
3251-/Parent 568 0 R
3252+/D [554 0 R /XYZ 56.693 470.439 null]
3253 >> endobj
3254 572 0 obj <<
3255-/D [570 0 R /XYZ 55.693 817.952 null]
3256->> endobj
3257-158 0 obj <<
3258-/D [570 0 R /XYZ 56.693 723.089 null]
3259+/D [554 0 R /XYZ 56.693 435.155 null]
3260 >> endobj
3261 573 0 obj <<
3262-/D [570 0 R /XYZ 56.693 691.468 null]
3263+/D [554 0 R /XYZ 56.693 438.223 null]
3264 >> endobj
3265 574 0 obj <<
3266-/D [570 0 R /XYZ 56.693 694.233 null]
3267+/D [554 0 R /XYZ 56.693 402.939 null]
3268 >> endobj
3269 575 0 obj <<
3270-/D [570 0 R /XYZ 56.693 680.684 null]
3271+/D [554 0 R /XYZ 56.693 406.007 null]
3272 >> endobj
3273 576 0 obj <<
3274-/D [570 0 R /XYZ 56.693 667.135 null]
3275+/D [554 0 R /XYZ 56.693 392.458 null]
3276+>> endobj
3277+158 0 obj <<
3278+/D [554 0 R /XYZ 56.693 294.968 null]
3279 >> endobj
3280 577 0 obj <<
3281-/D [570 0 R /XYZ 56.693 653.586 null]
3282+/D [554 0 R /XYZ 56.693 260.902 null]
3283 >> endobj
3284 578 0 obj <<
3285-/D [570 0 R /XYZ 56.693 621.995 null]
3286+/D [554 0 R /XYZ 56.693 263.667 null]
3287 >> endobj
3288 579 0 obj <<
3289-/D [570 0 R /XYZ 56.693 625.064 null]
3290+/D [554 0 R /XYZ 56.693 250.118 null]
3291 >> endobj
3292 580 0 obj <<
3293-/D [570 0 R /XYZ 56.693 593.474 null]
3294+/D [554 0 R /XYZ 56.693 236.569 null]
3295 >> endobj
3296 581 0 obj <<
3297-/D [570 0 R /XYZ 56.693 596.542 null]
3298+/D [554 0 R /XYZ 56.693 223.02 null]
3299 >> endobj
3300 582 0 obj <<
3301-/D [570 0 R /XYZ 56.693 582.993 null]
3302->> endobj
3303-162 0 obj <<
3304-/D [570 0 R /XYZ 56.693 477.14 null]
3305+/D [554 0 R /XYZ 56.693 187.736 null]
3306 >> endobj
3307 583 0 obj <<
3308-/D [570 0 R /XYZ 56.693 445.423 null]
3309+/D [554 0 R /XYZ 56.693 190.804 null]
3310 >> endobj
3311 584 0 obj <<
3312-/D [570 0 R /XYZ 56.693 448.284 null]
3313+/D [554 0 R /XYZ 56.693 155.52 null]
3314 >> endobj
3315 585 0 obj <<
3316-/D [570 0 R /XYZ 56.693 434.735 null]
3317+/D [554 0 R /XYZ 56.693 158.588 null]
3318 >> endobj
3319 586 0 obj <<
3320-/D [570 0 R /XYZ 56.693 421.186 null]
3321+/D [554 0 R /XYZ 56.693 145.039 null]
3322+>> endobj
3323+553 0 obj <<
3324+/Font << /F28 235 0 R /F39 308 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R >>
3325+/ProcSet [ /PDF /Text ]
3326+>> endobj
3327+590 0 obj <<
3328+/Length 2753
3329+/Filter /FlateDecode
3330+>>
3331+stream
3332+xÚíZmoä¶þî_±Ÿ‚uãeøNêÐH/¾ôRà.õ9Šk`È»²-d½Ú®´vÝ_ßá‹´’,­$ó®¸ýbÑ\r8|æ…CÎàÙí
3333Ͼ?ùËåÉ7oX4#E8"³Ë›™�HFl¦1GQ$g—«ÙÇ9C�.„Äó/Þ¿>ÿî§‹óÓxþöÝåùÅ›SÅçß¾>ÿpúËåß¼¡ºNŽ+hk«YJ”˜A'د‹«!(‚šÑ‹rø‚a¤„>,OØé‚`Œç·IaIœ_žüëÄÐÅ3$Ò"š)Å’Ëû“�¿àÙ
3334+~üa†‹ôìѽŸ1­ µž}8ù» Á!â\XZ”y²m‘f›ç
3335
3336 ‡a¬ˆJ}l]
3337+3XÙ­Û À°
3338+q!�sÎjœ×(8‰� À5A:ê"Á4À‚¸à)E¡°`J$:N�ÀX
3339õs1™†ÕA:LAq�”æNòýõ.Ûé&qÚÎU}†¢ãJÙAU¯œâü
3340ükòtvº� ÂñúÌÍn®G˜ôE9=/â¢k*Ñ´
3341ÕC ™–²Jnâýº“lM“¨
3342l’~
3343§&•©$:„"#+
3344Å(X§Êò.ÞÅË"ÙumTú…D`­€_'›.Bà$Så ?™!~Þ‚˜A®ÿU¿œÕº
3345´Ý¢2TeI5ÝɦSR,BT±1û¨ëÜFC7¬È­V¾zå¾ §ý:@8’4L¦’p:€»t€h$µ¨{è«âi;Â2Gͧ�D¥Qà1†5ê¹(ÀQô‹„Ï YL¦qÄ ±9¤å¼Ûnslzœ‚p‚uH<³mŠ˜ä¿
3346©vP?¦¨jûüN‘K­� aæ7�F¿ýɈØ`ê³Øß—+öÉnµOêºã€î<ÛᥡÀà¸|yx9‚Â`xÂE¥¿¡(¯å÷9¸ Í�BÀU
3347xR!àS7€‹Ü (,˜°!…ÅîÓiôÇîRbÄ%¯¼Àp<�o÷««fäÞé_à~\³àe¶É
3348gð&íZF
3349+Ü?�½ç¨õ۫ ר­Ù³3¿$®¨^AhÛIÙɸ:•²tu©1[€ÐåèmBÂbu𥄄XÝ0…a«
3350à¢Ò÷‰P
3351»4`NS.‡óš�ÆÁ
3352à¢7
3353+
3354&"„]|§Ó°.­õx`i„'ÎÌ>€·zõê½uUç»]¶sþÀu{1
3355+´pÄš
3356e0JÊ
3357 ž»tsûUug<ë7uBlˆàd
3358ak HEt\تëê!§&"󾡃vDó¡Í;ìžN£_c…†{zÄ;+Ü‹Å8•D¿¾
3359+7k.^¦¯åi�ûãˆI$ýUåjФ²Ì¿ü2tDŽ � .JU˜
3360+Eû|·ªÑL«”;äQæC®Ë»4?]0*çî+æÅ]â:îc¸´ºVRÜe+÷ó�1>Ó¹;%zž€y$`!®Ïg<ì@ö>ñ´oìàìÞýçW~¸³J—öò¾{:%„ÌMù›r9h»ØÓŽ76Ô„�.¼=ØÍ¼þúë.Í¥
3361IÍz4÷pmÔ¯¿µ,
3362
3363&‹u�¸o¼yr�ìÆ}íîLã&[¯³G‹�ù×áá/ö¬a-‹ˆ"ÎlF#*¼Ï«6l‰n„+Bí.�
3364î®…Ê*Û_¯çÁ¶»d™æeVª½õÙÇÁ2’å”Îh
3365×ÁüªÂ&C‹r–åK
3366°õ쑤yk“»Hï“M¹æ­Å
3367¯*§Ôœ
3368Ò
3369ɲÈvì\
3370
3371”¤¾æ óç‘ð13
3372'Öÿ=~gG$¸� åySŠ5bDOÆÔQ
3373
3374V‰šÐÖ^¢;7$ÍŽú
3375À�ãÃÑ7Ö@ü¬>6^ú þ9,BÉ1¡©}XÂG_Qš¯Þ£Í¦‰ˆ~1`
3376WÉ_¦þЃÕ
3377P¾T÷Á1HÝÂq0-ÚÜü`>ñX^T>Ï‹JûPDÚiQ1;ô
3378÷5•r–‘û˜3~a|$Æ
3379(¤°OH½5ÑàéOâ3ø�°yT�ße˜€ßµA�÷½v°ÑÃÝM¼´¡ü»!n|¼Î3×íffé*Y•ݘ$^Þ¹
3380Q˜
3381/Z×Ùƒo.ã<É!Fâ’Ìÿš=& 0ÅçžG˜‘']R”QÉç�ézmZÂÅ2Гƒ2ZnWîÃ’ùÝ…4ÐQlæŸZÀfG¹Ñ¼:˜L»°Ë³°šñ†ç'7ÌìÆµüRÂG<¦Ë{޽»xÛ¹+zaXR¬<è·û{“À±?ÝïóÂýv`7>ö?;
3382+ª¤pˆdM§ÝØ�|W¨j‚„·~Øë)(ïw‹+ô´ÙS6ø¶¿¬ã§¼k�q—éú#tù;¨í´aÅÛ̪lÍ®\#-ü7oEµn7ùÔ ½N×iÑþîó’h‘¹o‰|}Tžþ'i-í%­e¶óúS¬K¨
33834
3384¦l¸bãe.ë7™ŠE_oãè”aôAÇcõÄ­›íJ>V>r¯¡É†?“6»¸0Å*¬*ß ª5©)×,ñö¦KÄQ­¥¬²0µEh~–…Ý=Ós‹‹ú
3385}×ûÂu:8 ÇZøKæàù~u½3Ì znât�ûÎÌuÙÕüÔxëÝÜv—Æ…ŸSÇælÝÖ9ñBìÀ[ányßʯ™æôɇCîÄîÜ/v·³VÏ…‹åaš­
3386l è�tT¾
3387/+à)A>¡€¡‰'áײ٥
3388º�íº»ä@KĵìJ'-Îu#µíWö¾>§vÖ<8òió>n9Ú^ªR‚r·•!Û®òH]ö¤mžð%»6adeUê‰I{•úòIýÓÓ
3389‚)ll)
3390
3391|æë•Å4ýÓJ‡²õ"Ô”{+«ägÙd…k4tN@ê$i~ªù ó¯ó¦åâÓºö=V
3392ü~:cM…xuAüðãOß]ýíüWçï/Fí!"õk
3393+:<áÔ‹�5AÜœIL"Ý(Bæ¾9^­ºŠ�#¤9HÙçÚ dP5NÐ’(*OÅ�dM¤B’~DdHÒo…Á×.ü‹kLÍ­BRÓiô×1­A%éôdÐÔv
3394òp5øÊã£ïÿDa¤SaÓiô—'ÅÁ’Ø—S/L:Ë…Éï©Z˜…X`
3395r:�#: Ldÿ/Qý|%ª¾'‡
3396ŽÏ�²ž¡.*Í�Å`YÜF!
3397)%œZ/î0…ap¸(Á
3398‚‚ ‡Å2Ì9M¦qä„g¬›L­Tlžï¿¯JÅã\›5 )Û5A6&:Ć)
3399C•N„bØÓ`m/øàÂmF‡o
3400†öå<”Èá`�Œšy™É$ú+±¢È¾Æ
3401b
3402»•OXˆuÔÎÍ…=
3403+¹ÕFFKD€&ÔÄ
3404J%˜Ãø"¸dQîo–¯ÝN\Ø”‰æ±ûl’Gרª‚Ìo…ûºœ4òýv»Nm
3405þ37ƒ²ú‡(óÖ
3406]'µÊÊís’i,÷>a°1 Û•ü;ÍÍÛcr¾lsÚ¦Û‘w1ªü˜þ)uq»ø¦u“†PšÊÆcÓ»÷ïÎG½3=K¯’Vjä�¿È{�¡;1 Õäêügû
3407öó·ïÞ¾û~ƒ&Þ¨qˆ:'�Aþdu˜;
3408+endstream
3409+endobj
3410+589 0 obj <<
3411+/Type /Page
3412+/Contents 590 0 R
3413+/Resources 588 0 R
3414+/MediaBox [0 0 595.276 841.89]
3415+/Parent 551 0 R
3416+/Annots [ 587 0 R ]
3417 >> endobj
3418 587 0 obj <<
3419-/D [570 0 R /XYZ 56.693 407.637 null]
3420->> endobj
3421-588 0 obj <<
3422-/D [570 0 R /XYZ 56.693 394.088 null]
3423->> endobj
3424-589 0 obj <<
3425-/D [570 0 R /XYZ 56.693 362.498 null]
3426->> endobj
3427-590 0 obj <<
3428-/D [570 0 R /XYZ 56.693 365.566 null]
3429+/Type /Annot
3430+/Subtype /Link
3431+/Border[0 0 0]/H/I/C[1 0 0]
3432+/Rect [134.525 297.963 158.336 310.248]
3433+/A << /S /GoTo /D (subsection.3.5.1) >>
3434 >> endobj
3435 591 0 obj <<
3436-/D [570 0 R /XYZ 56.693 333.976 null]
3437+/D [589 0 R /XYZ 55.693 817.952 null]
3438+>> endobj
3439+162 0 obj <<
3440+/D [589 0 R /XYZ 56.693 785.197 null]
3441 >> endobj
3442 592 0 obj <<
3443-/D [570 0 R /XYZ 56.693 337.044 null]
3444+/D [589 0 R /XYZ 56.693 756.472 null]
3445 >> endobj
3446 593 0 obj <<
3447-/D [570 0 R /XYZ 56.693 323.495 null]
3448+/D [589 0 R /XYZ 56.693 759.333 null]
3449 >> endobj
3450 594 0 obj <<
3451-/D [570 0 R /XYZ 56.693 309.946 null]
3452+/D [589 0 R /XYZ 56.693 745.784 null]
3453 >> endobj
3454 595 0 obj <<
3455-/D [570 0 R /XYZ 56.693 296.397 null]
3456+/D [589 0 R /XYZ 56.693 732.234 null]
3457 >> endobj
3458 596 0 obj <<
3459-/D [570 0 R /XYZ 56.693 282.848 null]
3460->> endobj
3461-569 0 obj <<
3462-/Font << /F28 235 0 R /F39 308 0 R /F47 321 0 R /F37 276 0 R /F51 338 0 R /F50 334 0 R >>
3463-/ProcSet [ /PDF /Text ]
3464->> endobj
3465-602 0 obj <<
3466-/Length 2536
3467-/Filter /FlateDecode
3468->>
3469-stream
3470-xÚí[ÝoÜ6÷_¡§b}è²üþp½Ô)ÒÃ%=ÇEqH
3471CöÊñ¢›]ß®œ\þû›!)YZK+É܇\^,š+Í
3472
3473Î
3474gHš½ËhöãÉß.N¾{!\Æ(qÔ±ìâ&Sšh'2K%qNg‹ìíLENçJÓÙÏ篟ŸýðËùÙéœ+:{ùêâìüÅ©‘³ïŸŸ½9ýýâ§ï^pÛ$'
3475´-nžgøÒ �ü³yõû\Pb”
3476o]Ü.w�Áö”ÙÙæ¾\®‹Ðq�¯¿åý6þ_ÞÆ7n6«Õæãrý.ü[l�mü~³(vÏZBº)2ÓDh™Í¹&€B�è7ÊÌÞGíq†f5Ì—7
3477išï8âj þ(>µèõÑåœpa«¯Þçåõm�Ø;óH7ÛÜ•ËÍ:ô]Ý—¡3À=»Ûü®øڒͶùú�ÐëáÀ×>ÝÅ÷nòåj;7¡Ës‹ŸæwwÇ»í2/ã7Mlá;Ä6üðq¹Záð`Z9aÒfs:$]ÅUœ©]Q†ÆoTÑ]Q@¥Yü£T¶}—íõœƒÚ¼õŸ¡ZîéΔbäàüÎã\Í[¡ø'šxMŸbÔ·øU5¨Ò›ðôóš8¿
3478Œ­&ÒÖŒÅM~¿*G1—æEU_VË.Ìu±+Öå·]üb-xõUTÀQìø>«Z ªÑÖ
3479ùC¾º�ÍM÷z²D8÷¤Q+bY½ªÔE‚A`¶ÒqTƒ ,Ÿ¬.Œ˜ÂQ]˜
3480â3ª
34816óõ¢G]˜yn†XלAd²Þ”¡ÑÒš9§<Ì%þÔ°øo°Øò–·®b�Wˆ8ž®5æ
3482‘¢’áÍÏ¿üpù÷³]ž�Ÿ¿>5‡ºkZsS<q
3483-ÍN¹eD:ôJ`a¬}ð‚L‚l”²
3484�ìÉÙÅÉ¿OЪӌ G¬Ì´’„Á××ïOÞþN³üöØ.álöÑ¿ù>ZeXeoNþÝpKÆ‘Ü-~˜?Zh-¾ðŽ¢*Óæ•bK�±Æ�m‹€ €FR{XpѼA!„
3485#( ¶^‰
3486
3487¶ÈŠ$)$,ÃÒ�ðPÂZWæ0�èÒze˜JÂk�b
3488Á˜†PD
3489”`wµ�QÇò0
3490
3491e
3492e€–^¥A
3493&Zó6±žáµ9Ü•y§“áhks…~¶_©#”³4ü&ÓèP;bpEÂ{ÔÆhöú6ßæ×e±íôl¶¤!h]€é¦Ï\ën;Õ43õÑPønμgðý©ûÁç<t#¸ÝS…TkG¿\—`k»¸ÃâFŒGƒXç0¸ ìt®Áþ={ž•×êÒ呆'iÁtýZ œ#
3494-æ¤Æî]·øè vsÝóЂ%,±|Õ©P­èn±cLj­œ›îx±­œ­Yí 1¼áfß<ôL9Ø«|Rà0YO÷A#(
3495ú )jÍ�Å~àò\ã¬×l-'Z¦ø÷†±M�¢Â6 ¥V`çÓ
3496Ôtý
3497^�‰rF×`Øÿ^ïîî—mßi\ ¨ä¦6@×›õ®
3498
3499ý`–T]n*Ú©F_DѶ
3500ž=C
3501^w$ÇK𸣥!òâ2e¡h
3502€HY(ÆJ‚µŽN„bØIØãÀ®;\…Á˜Iw˜Â0¸ RTà&AáÁ„}ŠPiVh* o„ö–_„UR"YÜf¼óòìÙko[ζ[ܹãÝÃf‡sˆÞ�h›€Á˜fWñ]¹]®ß}SÇ—‡×:˜§EŠ:
3503-A˜æ)ê8LaX
3504¤¨5a"ûkÝkF;YR��A8-ðó�åÉKÌC
3505æfyx¬‹�¡Qå£ýoexúD6v÷ww«e±ÿáî
3506Ô
3507«
3508Ì`–¬ýv“ÔbS1ô 'l\߇´ÄË«O¡«øÏr‡Ù'!ôìz_Ò}ºèbhÈM«‡ ú㲌ÙÖE^æ1)‰yò®í6DÛ\·²Q¯^¿:•ˆB§÷�È
3509A8ò¤Ý^‰c×[ËèŒî™�µgÚR�ýêód¿~þêå«G ÈD+‡Ù�*V)»Re*¦Ê0¡×‘*“€\&µ F%¦Ê˜%
35102ÒRj\ªLÂ
3511O›/&¥%V§ÄÒ#(
3512š�)¢ÙHƒÂƒ‰E
3513‘äÅ&“è¥%æþÜ’e §ûÉ2ï‚>䫞m»ñ�òñÒf’ᬦíJ¦ÓèO˜HŽ;µ¯i³Ï›6“T*ÒÒfÓi- ]Z€‰Xgšvõ²×¶VÔçÎv-G¨Ôf;FAzòf~_kû§õCÈvN«pŒH›f&§Óè_ÜÂ)xÏ~͆þyÙPa-Œ%%Šøa
3514-QÆ
3515-ƒQFŠ•æN…b0!
3516VX
3517-¸Æ­\
3518-¸Ã†ÁM�¢7
3519-¦7ÊÓ|ÎtýAœÀܪ�žmÇpÿ?ùÐN®í
3520fƒë‡Ír‘8Ò*(î¶{°+‰…¿é4h¸
3521Yþމ>†AÝÞrNãXâ‘´<ñßÑxަ?Cxpç"¤„õšäé$æRê~#(
3522ã)jÅ�ۧ5%y:¡üBIw˜Â0¸ RTà&AáÁ„ý±M¬üM§ÑŸt°Ç¶Uåï`Ò}Ø·
35231é~À¸ÃÖ’ëDã>™ÆãÛSÁÍ£!·÷²í!OÚÅ~Sïí›@
3524-êo’L ¾&ÉS^¥ RÔÓ;Šñ•âs“¼ÿ(ÊÛ
3525–4ŸÝàbÁ,“ÒŸþÇÂDïÂ?K¬$hËû¿–!Ý^˜n©g·E—
3526qŠ´¿×­i0¥�ºSõ×þ2ò¾ŠåëOQ²›=Q‘CtµÜ•Å"
3527¯“Ê%oŸ¯Ï¯6âÁéåúI‡êÅþ©zR×J`'Xe¿ÐkÐÔT<á¿ìÑE
3528XMþ¢>ëj´ýE
3529Q
3530‘ÆFuQC0/jøo¶ñ5Q[ñÄ·ïÜ„g<ñ�Íë{ÀqÖªŠA¯¯Š…EQËñm¥AD Ù*‚=ª;U“ùøHOQꋺÕáˆz8-?ᔾ•�.uÄ9ãT<\®a¼]¨Ä—òðð%U|¹¾âƒ¿•¡/¬$Tœº¤ŠÿU%ÕH¬ánïý&±î3ö;Sç9«¬æ¨1×ɶPÆ
3531Mu
3532-*眲[FkdmvrT}¦Ò&‡¸p±´é¥M=¢´ÉÀŸ2-ŽRÚÄR–ö–6™’Dƒ˜Ga
3533›Cnöç%‰`¸ŠÞˆqê÷ŽO��ðÞ7);•c )b
3534”…“bò:-ОN£?ÐfÞ1š”Âêe­BãJ¬`>uÅ#TX
3535Ðsi5˜É$úK0΀1³ÿ;åUÖY]e_RqK™¤“Iô+€E¡ì×úúÑUàP!V+0þi*0™Ä�«Iœ®ûZ…ýóª°xšš”k‘À‹ê”[‘ƒ†/E>]†ú>â4öCèýçZ3Ñç
3536-endstream
3537-endobj
3538-601 0 obj <<
3539-/Type /Page
3540-/Contents 602 0 R
3541-/Resources 600 0 R
3542-/MediaBox [0 0 595.276 841.89]
3543-/Parent 568 0 R
3544-/Annots [ 597 0 R 598 0 R 599 0 R ]
3545+/D [589 0 R /XYZ 56.693 718.685 null]
3546 >> endobj
3547 597 0 obj <<
3548-/Type /Annot
3549-/Subtype /Link
3550-/Border[0 0 0]/H/I/C[1 0 0]
3551-/Rect [134.525 730.543 158.336 742.828]
3552-/A << /S /GoTo /D (subsection.3.5.1) >>
3553+/D [589 0 R /XYZ 56.693 705.136 null]
3554 >> endobj
3555 598 0 obj <<
3556-/Type /Annot
3557-/Subtype /Link
3558-/Border[0 0 0]/H/I/C[1 0 0]
3559-/Rect [99.507 266.482 128.772 276.596]
3560-/A << /S /GoTo /D (subsection.3.5.13) >>
3561+/D [589 0 R /XYZ 56.693 670.945 null]
3562 >> endobj
3563 599 0 obj <<
3564-/Type /Annot
3565-/Subtype /Link
3566-/Border[0 0 0]/H/I/C[1 0 0]
3567-/Rect [268.116 204.981 291.927 217.997]
3568-/A << /S /GoTo /D (subsection.3.5.1) >>
3569+/D [589 0 R /XYZ 56.693 674.013 null]
3570+>> endobj
3571+600 0 obj <<
3572+/D [589 0 R /XYZ 56.693 639.822 null]
3573+>> endobj
3574+601 0 obj <<
3575+/D [589 0 R /XYZ 56.693 642.891 null]
3576+>> endobj
3577+602 0 obj <<
3578+/D [589 0 R /XYZ 56.693 629.341 null]
3579 >> endobj
3580 603 0 obj <<
3581-/D [601 0 R /XYZ 55.693 817.952 null]
3582->> endobj
3583-166 0 obj <<
3584-/D [601 0 R /XYZ 56.693 669.56 null]
3585+/D [589 0 R /XYZ 56.693 615.792 null]
3586 >> endobj
3587 604 0 obj <<
3588-/D [601 0 R /XYZ 56.693 637.419 null]
3589+/D [589 0 R /XYZ 56.693 602.243 null]
3590 >> endobj
3591 605 0 obj <<
3592-/D [601 0 R /XYZ 56.693 640.184 null]
3593+/D [589 0 R /XYZ 56.693 588.694 null]
3594+>> endobj
3595+166 0 obj <<
3596+/D [589 0 R /XYZ 56.693 232.514 null]
3597 >> endobj
3598 606 0 obj <<
3599-/D [601 0 R /XYZ 56.693 626.635 null]
3600+/D [589 0 R /XYZ 56.693 199.275 null]
3601 >> endobj
3602 607 0 obj <<
3603-/D [601 0 R /XYZ 56.693 613.086 null]
3604+/D [589 0 R /XYZ 56.693 202.041 null]
3605 >> endobj
3606 608 0 obj <<
3607-/D [601 0 R /XYZ 56.693 580.456 null]
3608+/D [589 0 R /XYZ 56.693 188.492 null]
3609 >> endobj
3610 609 0 obj <<
3611-/D [601 0 R /XYZ 56.693 583.525 null]
3612+/D [589 0 R /XYZ 56.693 174.943 null]
3613 >> endobj
3614 610 0 obj <<
3615-/D [601 0 R /XYZ 56.693 550.895 null]
3616+/D [589 0 R /XYZ 56.693 140.751 null]
3617 >> endobj
3618 611 0 obj <<
3619-/D [601 0 R /XYZ 56.693 553.964 null]
3620->> endobj
3621-170 0 obj <<
3622-/D [601 0 R /XYZ 56.693 479.12 null]
3623+/D [589 0 R /XYZ 56.693 143.82 null]
3624 >> endobj
3625 612 0 obj <<
3626-/D [601 0 R /XYZ 56.693 446.979 null]
3627+/D [589 0 R /XYZ 56.693 109.629 null]
3628 >> endobj
3629 613 0 obj <<
3630-/D [601 0 R /XYZ 56.693 449.744 null]
3631+/D [589 0 R /XYZ 56.693 112.697 null]
3632+>> endobj
3633+588 0 obj <<
3634+/Font << /F39 308 0 R /F28 235 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R /F50 334 0 R /F36 320 0 R >>
3635+/ProcSet [ /PDF /Text ]
3636+>> endobj
3637+620 0 obj <<
3638+/Length 2291
3639+/Filter /FlateDecode
3640+>>
3641+stream
3642+xÚí[Û’Û6}×Wð)¥Ù²ÜALU
3643&›±×¹x³¶¶R[NJEK
3644KeYR$޽þûm\H“ð6g7[óbB$pÐè>h4ºÇ8y›àäÙäÛùäë§4MFk’Ìo!‘Ô,I1GZËd¾J^O)½ømþý×O™®÷dR"ÓÄ®Ó_ÿvõóüúåÅŒ
3645+<eèb&$žþøüÛW?ÿó;3|‚ý¤€£B�‚œY 4c)‘:8†"âbF0ÆÓS^Xˆëùä÷‰™' 8¥8‸|?yýNVðíû#¦Óä£íù>¬TAk›¼šüÃ-º)!)"XZ,ʼûC±ÙïîÎ+‹D Џ`]ób˜™ÁÌnÞ3³ �$'Ý’³šä5g¥<%(Õ!–‚ZX”œ ¥H¤*¬2A�{ôåº]ŠÑ– ‚è¯8EZz"œnß
3646÷·Åf—»mÀU}„¢ãjSŽ8¿b�ß埞\Ì$0øC¶}âF7ç#L�êD5¼ÈŠÐ$T"’Ò²@“v^R�˜àqª
3647�P¥ÔH¥
3648°4âD;É—ëì˜-‹üZ¤û‘ÚqHa&­ÔµÍw! ¢‘dªìô�éâÇ͈éäÞÿ¥z/“Úk£Ü°©
3649ª,Q7»"ßmÅ4¢Š
3650YG
3651
3652V÷¯Öè–K——î ìjgx·žQ,�áX€C, Áö¯9ÖEñé0`Cµìšºf
3653墂
3654Fí�Cø.#(E
3655+ŽÜV«‚§hµªÔ)¢BFYu<FÇÞÆ1J>›ámxgs0>Ñ#Lê(â4qÇMÀœ’ÿ·øÑbÕ&AV
3656 Z¨s§ßbrŽR©#Â
3657©Âp–Ý?Ì€ÐfÄHQ1w¤*ʈ³|ÞU®’pÌÓå¦ÂÔÝöô«öþ2”š�ÒƒÕ¤dpÊÇpã1Ú8)!®RiåúƒªÓávµh†oA×£šÿ^îw§ÂmuÛ„¦‘ÂFxwCï¥jïm¼Øæ/Bs¶¬ÌO‰+ÔDJAdsa
3658@þ°ß¬"WSƼa¿Æ5læ¸0u<Fa@.MÓûiØ„2aÃ5˜±°Çl÷îA`]d=Äf§uvÈ;ï’KØY2Æg‚ìFèsšýý^3BŠŠ#UÑ QNÅè–›C‰Ðm?B¿n#¤(u£ «J¸q`Jâ
3659Ìh
3660ë`Î6Ÿ×+„ˆ8n›½‚Ãæòòïö¤¹>
3661áBa·¯{ÝQ¸Sc}æzãÛSaÀ‹ãf÷ö«êÙá¡1vG*p4F‡‡Æ &ï,¹yßl.yÔUó«êÖé\ pÊ#6©A )‹Ø¤z7iŒÞ¼£UqîÛÐBAœå?åÅz¿º˜1I§7f¯˜ì’˜ì~8;ŸÜ¸ÂÓM‹u
3662øZ
3663/H:ÍsÖær:_ç!Q<:¿�V<º³ŽóE(�´¨F/³�›û�(Û}ò’Ýœ‰jfð‚n7§"·1X2cL Ê)
3664án¯XØìÍþCîòí.k1Á@çÄÿaÄñmröæå³IòÚgè"¬±€Dv:
3665ó7¸ßkóõæä¦±ªó©Pû®¬ú’·GÿÛ.È4nöÛíþ£5”ù™
3666ÆÑ�߯òÓåyy@6ni¯û¦8 i•£#êlPSÿ®YêÿùMðÊŽ‘Ĭ$²,¥H³Ê²ï³b¹¶Ãƪîé
3667¶ýæ¶p
3668gahØë ´‰°žsôÝ
3669Ãlë&Ûl=p±wO;›k.oA�^ë»bûɽÍÿ
3670œq›¢’ãIÉ pž¼I ÏFóö-­™
3671ÎL‡ã&+òVÓ¹–9¥Ny~/žÐx^Ôɇ™·íŒ*{´<
3672!4D�æxY^e£¼Ñ¨7ÅÌ
3673ìM XÍi
3674Tê;eî±Ë?ºÎ%uì·Â½s[É0çöpØnÀ%Ø_F@BÈÔCƒ;<�õ¯ƒ�4¡ø€ƒŸRÕŲL=ZsuKÉv^¢:�
3675ç´†öéB4
3676+gù°¨¬aŠˆ‹׿,~¸þ×â—«—/ž¿x6HT†G¾�Ù,@R@P
3677+Ž5 ›äsR(@rðP˜Ó)@r“&笻IGŽö™®†T�Mœ$‚çÊ[c ¦¹5Ïýc ¦œ01™³½1PŒ>ŠS…Uf
3678+ž§Q�öxŒö@›¥ÀkÅbŠŸ‹ŠBÃÊ à>jµ¿¨‚š¿)ÐBÇét4F{¥„)7IþXýC« L˜Œr
3679 ÆBtp@˜ˆEüïp€)@þl
3680誘2fRÄ‘�ÑÁnÒÌâ±búå*¦Œ™¬lÌf©bò3úc“)*æŽTEo‚šA *dTàGMn8*ðëGèWn„¥r£Ta•‰Â$2ð�Ñøa“¢¦Ÿ‹¦�5¥†S9«ž6ã¿ ÃQ‚9ög­£=ÕqgÏñíö¤ÚdÌÙ—Ðp[ §a@5îŒìijrÎ$ÂS"ëèõ?2”D«‡^ßNÍ–T"F³
3681+ž2æà
3682€Ð¯Û)JåF©Â*Ó,ˆÆýæxŒöò#•ž£ª�ýNœj“§_¶I!dÆ*î�
3683ÇctxU®á$rÉ}UF
3684+&ɱ͵%�òsýý›1BŠÒxcU1¼ÊHMu©¼’_�‚÷“"wS\ƒÒÏ2EŒÔ/9£
3685%’–ÿ&P)1¹)]‘ÉôÌV«�»šŠ•̤ró÷[�¾&!M!éøÎ}wÅY+ØA¾{ùñtÈ—›_1¦¶ø=LÒÅÍxòCv.åŸrDõy�²t#ÈT½ðôž,)ëp¢âEeWZq`òŸÕSÙr™;UÀÔû�U´Ü¶tíUVdç­›ý1Ì
3686…¨ ck'Ík¯«·Î8–€E
3687Ë®�e×DzëcÙõÿ³ìÚA-ÍP
3688+gìÃs‹ Ç“‹!-ø]g£¥s6ð´FWû|Æó>ðÒú
3689h×üB9Ä_g
3690o¹ÞlWÞŸX¨’RˉÆÐJ)hM©ÆJ
3691¥ÜyÄ$„¸i�ÛH©68'
3692J]Íç/¯®ç‹§Wϼþn
3693µR‘5
3694S«|BDýi
3695¿y
3696+endstream
3697+endobj
3698+619 0 obj <<
3699+/Type /Page
3700+/Contents 620 0 R
3701+/Resources 618 0 R
3702+/MediaBox [0 0 595.276 841.89]
3703+/Parent 551 0 R
3704+/Annots [ 614 0 R 615 0 R 616 0 R 617 0 R ]
3705 >> endobj
3706 614 0 obj <<
3707-/D [601 0 R /XYZ 56.693 436.195 null]
3708+/Type /Annot
3709+/Subtype /Link
3710+/Border[0 0 0]/H/I/C[1 0 0]
3711+/Rect [99.507 560.05 128.772 570.164]
3712+/A << /S /GoTo /D (subsection.3.5.13) >>
3713 >> endobj
3714 615 0 obj <<
3715-/D [601 0 R /XYZ 56.693 422.646 null]
3716+/Type /Annot
3717+/Subtype /Link
3718+/Border[0 0 0]/H/I/C[1 0 0]
3719+/Rect [268.116 494.424 291.927 507.44]
3720+/A << /S /GoTo /D (subsection.3.5.1) >>
3721 >> endobj
3722 616 0 obj <<
3723-/D [601 0 R /XYZ 56.693 409.097 null]
3724+/Type /Annot
3725+/Subtype /Link
3726+/Border[0 0 0]/H/I/C[1 0 0]
3727+/Rect [161.561 212.302 190.826 225.318]
3728+/A << /S /GoTo /D (subsection.3.5.15) >>
3729 >> endobj
3730 617 0 obj <<
3731-/D [601 0 R /XYZ 56.693 376.467 null]
3732->> endobj
3733-618 0 obj <<
3734-/D [601 0 R /XYZ 56.693 379.536 null]
3735->> endobj
3736-619 0 obj <<
3737-/D [601 0 R /XYZ 56.693 365.986 null]
3738->> endobj
3739-620 0 obj <<
3740-/D [601 0 R /XYZ 56.693 333.357 null]
3741+/Type /Annot
3742+/Subtype /Link
3743+/Border[0 0 0]/H/I/C[1 0 0]
3744+/Rect [268.116 136.029 291.927 149.045]
3745+/A << /S /GoTo /D (subsection.3.5.1) >>
3746 >> endobj
3747 621 0 obj <<
3748-/D [601 0 R /XYZ 56.693 336.425 null]
3749+/D [619 0 R /XYZ 55.693 817.952 null]
3750+>> endobj
3751+170 0 obj <<
3752+/D [619 0 R /XYZ 56.693 785.197 null]
3753 >> endobj
3754 622 0 obj <<
3755-/D [601 0 R /XYZ 56.693 322.876 null]
3756->> endobj
3757-174 0 obj <<
3758-/D [601 0 R /XYZ 56.693 155.239 null]
3759+/D [619 0 R /XYZ 56.693 753.752 null]
3760 >> endobj
3761 623 0 obj <<
3762-/D [601 0 R /XYZ 56.693 121.39 null]
3763+/D [619 0 R /XYZ 56.693 756.517 null]
3764 >> endobj
3765 624 0 obj <<
3766-/D [601 0 R /XYZ 56.693 124.156 null]
3767+/D [619 0 R /XYZ 56.693 742.968 null]
3768 >> endobj
3769 625 0 obj <<
3770-/D [601 0 R /XYZ 56.693 110.607 null]
3771+/D [619 0 R /XYZ 56.693 729.419 null]
3772 >> endobj
3773 626 0 obj <<
3774-/D [601 0 R /XYZ 56.693 97.058 null]
3775+/D [619 0 R /XYZ 56.693 715.87 null]
3776 >> endobj
3777 627 0 obj <<
3778-/D [601 0 R /XYZ 56.693 83.508 null]
3779->> endobj
3780-600 0 obj <<
3781-/Font << /F39 308 0 R /F28 235 0 R /F36 320 0 R /F47 321 0 R /F37 276 0 R /F51 338 0 R /F50 334 0 R >>
3782-/ProcSet [ /PDF /Text ]
3783->> endobj
3784-632 0 obj <<
3785-/Length 2576
3786-/Filter /FlateDecode
3787->>
3788-stream
3789-xÚí[]sÛÆ}ׯÀSGêX›ýþÐL”Zv�¦N*³“é8
3790BÂÇÉ’P\ÿûÞýPÐÒî‹
3791lB pvqöÜ»wÏ‚8û˜áìõÉ÷³“ï^Q�Œ
37926$›}È„DÒ°LcŽŒ‘Ùl‘½?¥ôì·Ùß½b¦y%“ÙCì/úëß.ž]]Ÿ�S�O:;Ÿþøæûw?ÿ륽ý‡F¯f'ÿ9±·áŒd‚!�E¦G”él~wòþ7œ-à»2Œ˜ÑÙgwå
3793ücˆi•­²w'ÿl#0,A!Nå‚¿?Fð�<�k‚´é‚` Í’zÁ RŠ$RáÈ”Ièæ �k¹éïÅd
3794§%A:´¤$GJp/“åº<;—»§*®Z÷PÄ$¯D5ßoï7û¢¼ÙlËåf}“—ånùû}YüŠö÷·Û$J"EM
3795°YïCƒóÛ|×Õ¢ˆ
3796‘�dÿ¶7ýÙ^fŸÎ^ñpúSñåEW“ŒB‹ª£Å¾GÔrT{7«bíÚ쎮áiã<b`˜Aó§ðŽM7Õù?òU?ózó€9²IK>ÈŒ
3797ðÏ@Ø4%k‚Fˆe­8B<k%ô¢ÖÑD*ªÙ ú|L.
3798.<…\&@¸IäÆâä&ô¢"7‰
3799-G&Ѧô´T1Ã劃
3800ÄRŠ´
3801¡örüÅÅO.Á_ív›��azJCëù #
38020ƒ¨bÕeûÒ6Ðë�ò-W‰¾;è±@òV•“1Ò.6ˆÑÄ'†l7œé0¨\&Õg˜",UJ0ÆâÁ˜Ð‹zì&Rq˜éú‹ni»�µ¤Ë}×@�Œõ@ÖÁѪ°«ÏÃf¤FŒÔ…Š�¢}Qø;†®ûÿ@—»�ÙÁ™ë×'Ùûs*)”öÑjσ‘PûKy
3803-zæ®Ì‹¥í[¾Z}±gØ)Dpq·-÷þûrã?ïòÝ'ÿ}y[øSá¡ÂMáòêËý¶˜/Ř
3804Äkhqnq|dçJiCa¾÷¡ä
3805»Î"°DaŸ¾Ý”…_´”·ygðU†|ÌùCBÅ>a
3806IVãäóyá©€¦7kG
3807ù°ôÇ‹¼Ì�>lvݺP�Qhñ<®OºT+yÖ8–€e+T�(kÀÙí2ôuwFôéæ¾\®oó|Ýø¦(ïwëŠÐ¢êôjµù\?W±ó»pÿfQì/Zý…µ¦lõSºU\yŒVú%êঃ‡s‡ÕýùÐÉ,sp�­�ÆÐ³—aõÊ÷./ç·°Ã0µÒsŸ•‚í±‹{à±ûÛ|[¼°§»|ý)ܳ
3808—}Ù†ë>äËU¶Ñb?]kþp~<Ö×¥U�=[üw¹/
3809×ýxáG(oÇÃà…ñ­F3ßný0mwË¼Š‘Ž¡óGOÉ&Î(€lÒ•LР
3810ÎÃØžSHÊÌ
3811Q‰‡9Z�·y½h
3812ƒFàQÌü ÙüH`Ô<ã@i¸(÷ë⳿¸N~ö»ÒŸó¡d•s¿Ý®–.óÁ_¶ƒ„�Ó
3813¹ip}
3814zÓUp;§è©©Ã=s=åëУ¦œ¼æŒADÑ u—Šº½,êÁ°FÒÍÛ«_nþ~õï›_.¯ß¾yûzdâm�{LY†!
3815Sìñ¥E’tº¶ìÚŒ?Î5Fú\ŸnŒ!@˜ŸsÆB¾�/J8éR
38167ÒBuK¸ý6xóÛåjÒ‰ƒªå°<�hÝÚ£(õ
3817a“ÕzR«(?
38181‰TõÃYk¤¤4Ä7'-I]Îf×7ï®f7¯.ßüxõrš´4sRSZ (eÇÚ˜�­¢†Ì§%
3819pPV0H\âSg�È ü^«"T­ê›ÀÂ�
3820–A Ž
3821®ZE£ju%f»XÄ g
3822¥xp˜µcWÕϵF\§øÜ€æSŠþ8@´æOèC(ùÓxpL*KZ4NÇè_4r¥‘1*T´÷¿ïB=×1
3823-’0®#Æ+5ÀvÎï3E åM#w_v×Öb[ÓÆ’¤
3824Ê%Š9œŒÑÁ¡4HÁ„Æ­�ÉÃjÍšœù¼,vý†ocÙÕE˜„FëétU¬;g�V¹þ—ý}�-M{^6
3825M¿Dë*Ó\—,×e±
3826a"
3827=G¬ó1XsãÈ
3828ºs!..jÿ¥_\!ÍÒœ¬é*6ý˜î>vkŠ,Mê¡{
3829Z´øóSçð&ɰc
3830j-NÈqq¶F5ºiR¥‡ž!çh*eÉS6G Ä'¢„^ÔÊ�HEÔf‡zažâìÙúŒ²$rãqrzQ‘›D…#b€›´�×éÓ<”ÔB6v^£3°ßp}4Ëwgܘ֎»á7¸Õúu6üÂnëp B€,’T['‹�”`‰#ă%¡µL'RÏD˜#EX
3831-¹XÁx&‘Gˆ“›Ð‹ŠÜ$*,™
3832=D¦•IÓ1ú7ü˜ˆÒ1~£råúñ[
3833OÛé
3834x`¨H)=,‚Q)³ã„¨&SzQ©a*ã÷½˜h6^ºñßì Ô6¦5¦Ëƒ/ÛB×¶¨ßÐÀí�Œë'ØFæ
3835"Z¶‘u!¯®¯º
3836e™Öjxùáð
3837\ÝÐ}¿í³©ˆXoÂC;Ï.×�$UÔy‹¬èö¤Œ&V¦Ã“ÒÁ“ºÛüÑåHQƒˆ€!#�¡ŒL´¤¨sX-–¨Þ5ŒXRÔ(ÄXR@bŒ)GˆdB/B@¦QáÈÔ
3838Ö°:i’˜ŽÑ_®R¥qMv¥¬VÛž”ÝŒ žv¯�€¡Gô§¨Â°I+þ§cô;TAΩßÇ{ö§ŽêO
3839ÈÀ‰9MS!D ñû·Ï"8®h¿8K}3w2Ä€¸B‹g�òëy”�´!ÎR¯!íUàѺ$¥•p§Ru(Õ‰¯SF@
3840,‰Ü(ÂrŸÞ‹ŠÜ$*
3841™PmkœöþêtŒ�¢Ï¾V¬&[”%_gz!ª™ÏŽîPvOTíd5å× cš¬ò(ûù®­g¥ßþYiÔŽ¥°˜ä$eïÂ"H’ò‚„x^HèE
3842‘©ˆ']ûÖ
3843-1)äbeG¹q„8¹ ½¨ÈM¢Â’I´D±m»HÎ�
3844Ñoƃ‘`b„;"ËR& ¦:Ê�.ÈÀ›$â
3845ÐÁtb_æÂ:¥†s¯ƒé”nBTñ)½¨Å6‘Šñf/‘MƒÉóÐסÕ
3846‹€¥÷.\ÍêUåà˜æ«UðD«7ê›ï2†—нÓ{W{¬$@nê3´Ó,Å
3847.© .é|³ýÒå’Â% [¬
3848o(ÇMRÀPÜc‘êíLjIJ€u�’¹ ÔwXé
3849Çâ:NèE¥ã&,•ÖcM[ÇOE诔 †9¾ZÆO±G­Hÿïö¨õ‰
3850I¢r2D¿%âœfùl‹}[oÔºÛœ&þtr"D¿œ?®ž5ðm­Ñ�ÌR40¢_Î
3851×ÏÎè×sFCIñôb$à<½‰DK‘„>Tš�HÃaA]}þŽûT
3852-endstream
3853-endobj
3854-631 0 obj <<
3855-/Type /Page
3856-/Contents 632 0 R
3857-/Resources 630 0 R
3858-/MediaBox [0 0 595.276 841.89]
3859-/Parent 568 0 R
3860-/Annots [ 628 0 R 629 0 R ]
3861+/D [619 0 R /XYZ 56.693 677.958 null]
3862 >> endobj
3863 628 0 obj <<
3864-/Type /Annot
3865-/Subtype /Link
3866-/Border[0 0 0]/H/I/C[1 0 0]
3867-/Rect [161.561 677.735 190.826 690.751]
3868-/A << /S /GoTo /D (subsection.3.5.15) >>
3869+/D [619 0 R /XYZ 56.693 681.027 null]
3870 >> endobj
3871 629 0 obj <<
3872-/Type /Annot
3873-/Subtype /Link
3874-/Border[0 0 0]/H/I/C[1 0 0]
3875-/Rect [268.116 607.119 291.927 620.135]
3876-/A << /S /GoTo /D (subsection.3.5.1) >>
3877+/D [619 0 R /XYZ 56.693 667.478 null]
3878+>> endobj
3879+630 0 obj <<
3880+/D [619 0 R /XYZ 56.693 629.566 null]
3881+>> endobj
3882+631 0 obj <<
3883+/D [619 0 R /XYZ 56.693 632.635 null]
3884+>> endobj
3885+632 0 obj <<
3886+/D [619 0 R /XYZ 56.693 619.085 null]
3887+>> endobj
3888+174 0 obj <<
3889+/D [619 0 R /XYZ 56.693 433.118 null]
3890 >> endobj
3891 633 0 obj <<
3892-/D [631 0 R /XYZ 55.693 817.952 null]
3893+/D [619 0 R /XYZ 56.693 395.356 null]
3894 >> endobj
3895 634 0 obj <<
3896-/D [631 0 R /XYZ 56.693 785.197 null]
3897+/D [619 0 R /XYZ 56.693 398.122 null]
3898 >> endobj
3899 635 0 obj <<
3900-/D [631 0 R /XYZ 56.693 778.303 null]
3901+/D [619 0 R /XYZ 56.693 384.573 null]
3902 >> endobj
3903 636 0 obj <<
3904-/D [631 0 R /XYZ 56.693 764.754 null]
3905+/D [619 0 R /XYZ 56.693 371.024 null]
3906 >> endobj
3907 637 0 obj <<
3908-/D [631 0 R /XYZ 56.693 733.35 null]
3909+/D [619 0 R /XYZ 56.693 357.475 null]
3910 >> endobj
3911 638 0 obj <<
3912-/D [631 0 R /XYZ 56.693 736.418 null]
3913+/D [619 0 R /XYZ 56.693 319.563 null]
3914 >> endobj
3915 639 0 obj <<
3916-/D [631 0 R /XYZ 56.693 722.869 null]
3917->> endobj
3918-178 0 obj <<
3919-/D [631 0 R /XYZ 56.693 523.017 null]
3920+/D [619 0 R /XYZ 56.693 322.632 null]
3921 >> endobj
3922 640 0 obj <<
3923-/D [631 0 R /XYZ 56.693 489.781 null]
3924+/D [619 0 R /XYZ 56.693 309.082 null]
3925 >> endobj
3926 641 0 obj <<
3927-/D [631 0 R /XYZ 56.693 492.547 null]
3928+/D [619 0 R /XYZ 56.693 271.171 null]
3929 >> endobj
3930 642 0 obj <<
3931-/D [631 0 R /XYZ 56.693 478.997 null]
3932+/D [619 0 R /XYZ 56.693 274.239 null]
3933 >> endobj
3934 643 0 obj <<
3935-/D [631 0 R /XYZ 56.693 465.448 null]
3936->> endobj
3937-644 0 obj <<
3938-/D [631 0 R /XYZ 56.693 434.044 null]
3939->> endobj
3940+/D [619 0 R /XYZ 56.693 260.69 null]
3941+>> endobj
3942+618 0 obj <<
3943+/Font << /F28 235 0 R /F39 308 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R /F50 334 0 R /F36 320 0 R >>
3944+/ProcSet [ /PDF /Text ]
3945+>> endobj
3946+646 0 obj <<
3947+/Length 2150
3948+/Filter /FlateDecode
3949+>>
3950+stream
3951+xÚí[Ûn7}÷WìSaÃûÅ@ÚÄ)Ú¢Mj;E޵v„Ú’ªKÚü}‡\îZRv—K��"…Ÿ,KÔáðpf8sV¤ÅUA‹÷~8Ý{úB¸‚Qâ¨cÅée¡4ÑN–Jâœ.NÇÅ›}A9)M÷_
3952¿|vôüõñÑÁˆ+ºÿÓo§GÇ/ŒÜÿþÙÑÉÁ»ÓŸŸ¾àvNxmÌ�¸ðƒöhœ&7cÄ)ÅýèQ=|$(1ÊÞNÏÌÁˆQJ÷Çåu¹*ÊÑéÞ_{
3953š¬`‚©DaŒ$P/nöÞ¼£Å>ü¹ D8[ü
3954†Þ€g
3955¼º.Nö~�
3956l™Á„&hñX\D+fóÕd6ý|bpTˆã”÷ÍKaf3Wón!ªÁÁð~ÃņáÕž¥¤eĺ6a��±A2b
3957Cò˜”œhØÉ^c¥ë¶"#¸�b-¡`¤&†E/X®ß/fëÕdZVÞ.Íæ7
3958'”6Î^¹êYå8o©¢–ŸžT_ÛžˆqI„–õ÷–«óU:ׄY^�@Öí�ÜF%ŽÃlŒµ#ÆÊÂA˜v•åÎç«rѶHe‰ck¤m„i˜TÕƒ®ËisD
3959SúΉß1?¨zÿÛæ}]l¼íÉmß*�ªkÔÉtUN[÷J8Â�²Ž
3960°ÖeB·a#
3961yðð°ú
3962>ÕíL¥Î
3963²1z¼À³Ço©»jw©ˆe®^rû6l±REØùu«?ñÍÐv{Úø&¤Š´onmj
3964"œl†›Ýìбã
3965âÌbN!æ 3˜c(��>‡V4Ž›IE]”Ô?#W;p¦1äR(RúSjŠÜ4Bš\„‘\
3966�L«ˆîßádnÊÇè>åµ…
3967%n“Sú^Î×ã³ÏÎøîó½I
3968+³érU¼?
3969+ÛfÒ
3970+ŠÙ¶“*æª�÷»ŠŠí¬±1gÇââ”´A=ƒƒµ·ÈЖŽÉ5
3971@LÉ;!+GÌc"�jàÄ8n¡Uýšâ6��æaEÍ-ŠŠ@¦R€äp©&#¤š�Z$
3972M–•²
3973+´È"‡‡/Cþ8Z,f‹*H«·e.-DºÛŽôdù²\þrµ˜L¯¾i*Éþp÷¥”Ãt¸
3974A�1ŸL#¤}aEã
3975™Tì|pŽm¥¤^¡`¡Þ›ô<ìÿ²[VÊêET"Âk¨·?\ÎË‹É[Jy9®Þð
3976clŸ„óƒÂ™b —QÙ9.WëÅ4NP.Ìî{ôÿ^ÌÆ­M®ƒƒ…5ÅÉ«×ÏÏ~9úãìèøøåñ–ºs«òl¯Ômu»“ËݬçóëɦùáÅxV1�ÅE—ÿL–ñådÚJRM]XXY’j=;¢³†Pˆí‘P!|Ct²Qtº™}l“œ|ƒ¬D¡
39770*4RrV…
3978X>"9)MƒÜp÷€TÚr‹9€ $cE
3979H
3980�L©¡þá¨C"£»
3981UŠÂÉiòU'ï«Ûš{Ò$xÞÞ+ÇïQRàÎŽâ4¼|ŒnåA Mœ6�úÓCèO=næ
3982+¤”›�Ñã\YK¹�np¿nÀ»Ý€*b‘jt>F�P(Àk5úQˆ|!Ry�‰LmÕÀ@H×&+Ïͤ"©HëˆÔ
3983+A®tþùFˆ
3984€�$cE$GE Ó(Hõ•œò1º
3985?i\xž)Dî”}­éú
3986näƒÉ�íGÕv²ºƒɼÙ
3987+½=ôÞ×Ãf=<)¬J¯šq‡‰oãSµÅÄw!
3988ß+šÈʤ"�<•#ÐecÈÕ°,�9™ ¤ÉEXQ“‹¢"�
3989/M‰³©ä™�Ñ-­Jèš)üMK«ò%
3990+ª#{Â*{2ø¹ÐÝ&àý Åÿ
3991Fb”"�`QõB íñw·¡qµL
3992†ë¶’ƒõ4ê¶¿‚síª¶PËO*²G Œ¢î4ŠŸç××QÞ\Å�&×ãjpT</+Ñö¦‘KY„œ5ïðVÝ“FÁSlž.
3993+ž³ù§6Á†èBXMŒ`8½“[bd…¥êÇ® ½ShK¤Ã<†mÂ� $ýcEtd
3994�L%‰“¸çïùÝe¯€³ˆ2ž¯wzWýÏõNŒøe£ØÌÆèV8„„ªS‹G¡ëËê�‚8¡pOšó1zÜ@ÇL>ºÁ—Õ;ƒºç™=.Àl¨1µÎÓ:…ÿÃü0B@eÄúRuI!]— ¬hü6“Šd»Î�!NcZAaYó�{Bš\„‘\
3995�L+‰d¸‡ÜùÝE·PÆ“«uî”|�ZçW¬ur
3996Ê1Ï2<çmbB2¾1V4‘•IE:yB›H�À�
3997½*טŸì
3998@H“‹°¢&EE º]ÅqO±ó1ºµN®<9n€Ö9 _þ´N®à ˜'Ï
3999AŒ¾?!íó+oˤb¸ÜÉàT{ôl6Ÿ|=jçÆÏ;9�jç|ϳ]¹SCu¢ q€±
4000{¥˜ªyÀò;6Z¨e§+3£‰CýâšY
4001+Õ“ÓIGFØýÇC`R
4002"%®'ÏÇè.|™6`×
4003îW�¹|é“yo.dþg±
4004+£˜{®0Šù„´
4005!¬hv/“ŠdqŤIß�î'WÁ²
4006¦í€�&aEM.ŠŠ@¦è«Êù=*LsUùãl2n-Uª_7lv¦™á ‡î¶®GÀÝÖ
4007€�ö „ÍÞÑ{¾­Ë˜AÞÖeœ"oë@H“‹°¢&EE “
4008+ômÝ|Œžð¤æö¶no|6nÕ
4009+e(¥¸®
4010wÃuBÚ…V4›GQ7\»; ãBUöè•ß
4011D+QwË4çá£Ø[@}5_¯ÈÁH0ºÿzY^®c¯qY_w—ï×WWÐh’ÖKlà
4012ÿ«›(
4013+endstream
4014+endobj
4015 645 0 obj <<
4016-/D [631 0 R /XYZ 56.693 437.113 null]
4017->> endobj
4018-646 0 obj <<
4019-/D [631 0 R /XYZ 56.693 405.709 null]
4020+/Type /Page
4021+/Contents 646 0 R
4022+/Resources 644 0 R
4023+/MediaBox [0 0 595.276 841.89]
4024+/Parent 551 0 R
4025 >> endobj
4026 647 0 obj <<
4027-/D [631 0 R /XYZ 56.693 408.778 null]
4028+/D [645 0 R /XYZ 55.693 817.952 null]
4029 >> endobj
4030-182 0 obj <<
4031-/D [631 0 R /XYZ 56.693 330.165 null]
4032+178 0 obj <<
4033+/D [645 0 R /XYZ 56.693 785.197 null]
4034 >> endobj
4035 648 0 obj <<
4036-/D [631 0 R /XYZ 56.693 298.636 null]
4037+/D [645 0 R /XYZ 56.693 757.502 null]
4038 >> endobj
4039 649 0 obj <<
4040-/D [631 0 R /XYZ 56.693 301.402 null]
4041+/D [645 0 R /XYZ 56.693 760.267 null]
4042 >> endobj
4043 650 0 obj <<
4044-/D [631 0 R /XYZ 56.693 287.853 null]
4045+/D [645 0 R /XYZ 56.693 746.718 null]
4046 >> endobj
4047 651 0 obj <<
4048-/D [631 0 R /XYZ 56.693 274.304 null]
4049+/D [645 0 R /XYZ 56.693 733.169 null]
4050 >> endobj
4051 652 0 obj <<
4052-/D [631 0 R /XYZ 56.693 260.754 null]
4053+/D [645 0 R /XYZ 56.693 700.212 null]
4054 >> endobj
4055 653 0 obj <<
4056-/D [631 0 R /XYZ 56.693 229.351 null]
4057+/D [645 0 R /XYZ 56.693 703.281 null]
4058 >> endobj
4059 654 0 obj <<
4060-/D [631 0 R /XYZ 56.693 232.419 null]
4061+/D [645 0 R /XYZ 56.693 670.324 null]
4062 >> endobj
4063 655 0 obj <<
4064-/D [631 0 R /XYZ 56.693 201.016 null]
4065+/D [645 0 R /XYZ 56.693 673.393 null]
4066+>> endobj
4067+182 0 obj <<
4068+/D [645 0 R /XYZ 56.693 593.605 null]
4069 >> endobj
4070 656 0 obj <<
4071-/D [631 0 R /XYZ 56.693 204.084 null]
4072->> endobj
4073-186 0 obj <<
4074-/D [631 0 R /XYZ 56.693 143.717 null]
4075+/D [645 0 R /XYZ 56.693 561.3 null]
4076 >> endobj
4077 657 0 obj <<
4078-/D [631 0 R /XYZ 56.693 112.093 null]
4079+/D [645 0 R /XYZ 56.693 564.066 null]
4080 >> endobj
4081 658 0 obj <<
4082-/D [631 0 R /XYZ 56.693 114.954 null]
4083+/D [645 0 R /XYZ 56.693 550.517 null]
4084 >> endobj
4085 659 0 obj <<
4086-/D [631 0 R /XYZ 56.693 101.405 null]
4087+/D [645 0 R /XYZ 56.693 536.967 null]
4088 >> endobj
4089 660 0 obj <<
4090-/D [631 0 R /XYZ 56.693 87.856 null]
4091+/D [645 0 R /XYZ 56.693 523.418 null]
4092 >> endobj
4093 661 0 obj <<
4094-/D [631 0 R /XYZ 56.693 74.307 null]
4095->> endobj
4096-630 0 obj <<
4097-/Font << /F28 235 0 R /F39 308 0 R /F51 338 0 R /F47 321 0 R /F36 320 0 R /F37 276 0 R >>
4098-/ProcSet [ /PDF /Text ]
4099+/D [645 0 R /XYZ 56.693 490.462 null]
4100+>> endobj
4101+662 0 obj <<
4102+/D [645 0 R /XYZ 56.693 493.53 null]
4103+>> endobj
4104+663 0 obj <<
4105+/D [645 0 R /XYZ 56.693 460.574 null]
4106 >> endobj
4107 664 0 obj <<
4108-/Length 1007
4109-/Filter /FlateDecode
4110->>
4111-stream
4112-xÚ½X]sÓ8}ϯÐÓN²³úºúàm·¤;ð@¡
4113O,Ó)IÚzHí;0ü{®%;4űâÑÂC§þ�Ͻ::÷è*ŒÜFþ
4114ý3=;—ŽpF
4115sœÌo hª�$–)êœ&ó%y?–èd
4116-š�ß\^œÍ^¼»œM¦Øøåëùìò|bÔøï³ÙÕäÃüÕ³saÃ)ƒ×–c4�$d=hÄšøíÿÙ|ôyTb„Àp
4117ˆ1Š
4118-iÉâaôþ#K|÷Š0*�%_ýÈü“TZCÖäjôöA2�†*¡ûÂ÷ìg„À Êrj]„´¬LÊBqj
4119O¤Â“©Õ˜f/DZÊ
4120Ïb0†—ðy­¨D‘åU�Ž2�‡
4121-M¹­råf·¼^›o×Ŧʊü?,|v�sC-wû¬&SÍØxq³í
4122-¤�*2å´¾¯?ú³
4123VÏ¥
4124ñãñ§Õ7þWWLé¨0²#ä‘©�­1O
4125x½^å�A›´Í<Åïž§¨ç‰kʽAt,kžbˆý1Cˆ#Ä
4126!!‹¶‡RñÔp&W)*!…[…³ê÷¨·q„8· Y´Ü¦0á©”ŒÚØâļv0†÷Ú'Õ×ð*µºÙʯÐEŸ?¿ð:Ûn‹m¨ßðøw¨F‚, £ò�¢¬½¬¶Y~÷GxÔJ¹@ú5üD¿�Ü—¹J‘<"h.S$GˆK>!‹VmC©xj'^|‡�_;C¦)V鬨d«2´ŽÕý*\¬ò*ÛN¸
41277÷Aí¨ð¦yu“/›‹õ:\dU3pqŸ­—ap
4128žÜú»â!ÜÕzk ‹ýAƒ²$*
41297#QgÎÈE.ŒøÑü
4130-6™r†ªÚl›�îPR
4131{e€hÃQ[ª-àÑZ„ü <ÇÒgZx,‰:õI´¤
4132³ÆÿB»1k\0&AÌ' DÅœ’E#æ4*<™è-¸ú)þ=âx«¬•¤Æ6:(w·Å®ÊòU—'AÛŸµ¼V;/k?ïµC-5•R¤( !¦ 8B\A Yìo ÑîJ‹zxJëªÑa _Õ1rãqr²hÉM¢Â“É
4133µ2±>cô(޳®Ùâ¾Ù²³]èöð0;°@q'U*¥E¯´R)Š#Ä5”�Å~õR-Pp’*'ȇӲ)gË¢ä¦dÑ�›F…'Ó8ê”J*ÐáÇ
4134¬Â}Ñ�P ¦-Ðp
4135V `Ð
4136û{—˜†Á@Ê–' Ä5”�Å~õRqú�hÛš¿©×'á<Ñ
4137
4138-O7þUsÀÀ
4139k³«èd*9¿+W·»æÀq[Ÿ˜ë‹åêãîîÏ›ôØ/Úß�àö
4140-endstream
4141-endobj
4142-663 0 obj <<
4143-/Type /Page
4144-/Contents 664 0 R
4145-/Resources 662 0 R
4146-/MediaBox [0 0 595.276 841.89]
4147-/Parent 568 0 R
4148+/D [645 0 R /XYZ 56.693 463.642 null]
4149+>> endobj
4150+186 0 obj <<
4151+/D [645 0 R /XYZ 56.693 402.1 null]
4152 >> endobj
4153 665 0 obj <<
4154-/D [663 0 R /XYZ 55.693 817.952 null]
4155+/D [645 0 R /XYZ 56.693 369.7 null]
4156 >> endobj
4157 666 0 obj <<
4158-/D [663 0 R /XYZ 56.693 785.197 null]
4159+/D [645 0 R /XYZ 56.693 372.561 null]
4160 >> endobj
4161 667 0 obj <<
4162-/D [663 0 R /XYZ 56.693 778.303 null]
4163+/D [645 0 R /XYZ 56.693 359.012 null]
4164 >> endobj
4165 668 0 obj <<
4166-/D [663 0 R /XYZ 56.693 745.346 null]
4167+/D [645 0 R /XYZ 56.693 345.463 null]
4168 >> endobj
4169 669 0 obj <<
4170-/D [663 0 R /XYZ 56.693 748.415 null]
4171->> endobj
4172-190 0 obj <<
4173-/D [663 0 R /XYZ 56.693 686.873 null]
4174+/D [645 0 R /XYZ 56.693 331.914 null]
4175 >> endobj
4176 670 0 obj <<
4177-/D [663 0 R /XYZ 56.693 654.568 null]
4178+/D [645 0 R /XYZ 56.693 298.957 null]
4179 >> endobj
4180 671 0 obj <<
4181-/D [663 0 R /XYZ 56.693 657.334 null]
4182+/D [645 0 R /XYZ 56.693 302.026 null]
4183 >> endobj
4184 672 0 obj <<
4185-/D [663 0 R /XYZ 56.693 624.377 null]
4186+/D [645 0 R /XYZ 56.693 269.069 null]
4187 >> endobj
4188 673 0 obj <<
4189-/D [663 0 R /XYZ 56.693 627.446 null]
4190+/D [645 0 R /XYZ 56.693 272.138 null]
4191+>> endobj
4192+190 0 obj <<
4193+/D [645 0 R /XYZ 56.693 210.596 null]
4194 >> endobj
4195 674 0 obj <<
4196-/D [663 0 R /XYZ 56.693 594.489 null]
4197+/D [645 0 R /XYZ 56.693 178.291 null]
4198 >> endobj
4199 675 0 obj <<
4200-/D [663 0 R /XYZ 56.693 597.558 null]
4201->> endobj
4202-662 0 obj <<
4203-/Font << /F39 308 0 R /F28 235 0 R /F51 338 0 R /F47 321 0 R /F37 276 0 R >>
4204-/ProcSet [ /PDF /Text ]
4205+/D [645 0 R /XYZ 56.693 181.057 null]
4206+>> endobj
4207+676 0 obj <<
4208+/D [645 0 R /XYZ 56.693 148.1 null]
4209+>> endobj
4210+677 0 obj <<
4211+/D [645 0 R /XYZ 56.693 151.169 null]
4212 >> endobj
4213 678 0 obj <<
4214+/D [645 0 R /XYZ 56.693 118.212 null]
4215+>> endobj
4216+679 0 obj <<
4217+/D [645 0 R /XYZ 56.693 121.281 null]
4218+>> endobj
4219+644 0 obj <<
4220+/Font << /F39 308 0 R /F28 235 0 R /F37 276 0 R /F51 338 0 R /F47 321 0 R >>
4221+/ProcSet [ /PDF /Text ]
4222+>> endobj
4223+682 0 obj <<
4224 /Length 114
4225 /Filter /FlateDecode
4226 >>
4227@@ -2488,21 +2499,21 @@
4228 áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ02ÑŒ
4229ñÒw3¶DVilf¦b@9{8„¸iê™hëiêššhøx:„º€´s@-E§]C¸³…
4230·
4231 endstream
4232 endobj
4233-677 0 obj <<
4234+681 0 obj <<
4235 /Type /Page
4236-/Contents 678 0 R
4237-/Resources 676 0 R
4238+/Contents 682 0 R
4239+/Resources 680 0 R
4240 /MediaBox [0 0 595.276 841.89]
4241-/Parent 568 0 R
4242->> endobj
4243-679 0 obj <<
4244-/D [677 0 R /XYZ 55.693 817.952 null]
4245->> endobj
4246-676 0 obj <<
4247+/Parent 551 0 R
4248+>> endobj
4249+683 0 obj <<
4250+/D [681 0 R /XYZ 55.693 817.952 null]
4251+>> endobj
4252+680 0 obj <<
4253 /Font << /F28 235 0 R /F39 308 0 R >>
4254 /ProcSet [ /PDF /Text ]
4255 >> endobj
4256-682 0 obj <<
4257+686 0 obj <<
4258 /Length 1695
4259 /Filter /FlateDecode
4260 >>
4261@@ -2515,33 +2526,33 @@
4262 Çv¬í;8ª%ƒ-!]«\í™»{<=<+D‘?ŸZ«ÛÚj»˦aL# ž³õ¦™.Pý%ÑíhlÎmgç|Ã.źonM^Ši}ØÔ ¸§Si{ÉÓ4
4263]ÐpázšÀ8<™òn‹ŽßZ+¦Žjë—«©
4264Ý_
4265%E,2Åq'þS’¹.q¡4þ·Ÿôÿ•°ÓŸØâQSÒm[ë«©{bÒYQ
4266#7œY“
4267-Nü¼{õ/[f
4268 endstream
4269 endobj
4270-681 0 obj <<
4271+685 0 obj <<
4272 /Type /Page
4273-/Contents 682 0 R
4274-/Resources 680 0 R
4275+/Contents 686 0 R
4276+/Resources 684 0 R
4277 /MediaBox [0 0 595.276 841.89]
4278-/Parent 684 0 R
4279+/Parent 688 0 R
4280 >> endobj
4281-683 0 obj <<
4282-/D [681 0 R /XYZ 55.693 817.952 null]
4283+687 0 obj <<
4284+/D [685 0 R /XYZ 55.693 817.952 null]
4285 >> endobj
4286 194 0 obj <<
4287-/D [681 0 R /XYZ 56.693 785.197 null]
4288+/D [685 0 R /XYZ 56.693 785.197 null]
4289 >> endobj
4290 198 0 obj <<
4291-/D [681 0 R /XYZ 56.693 600.014 null]
4292+/D [685 0 R /XYZ 56.693 600.014 null]
4293 >> endobj
4294 202 0 obj <<
4295-/D [681 0 R /XYZ 56.693 450.085 null]
4296+/D [685 0 R /XYZ 56.693 450.085 null]
4297 >> endobj
4298 206 0 obj <<
4299-/D [681 0 R /XYZ 56.693 354.16 null]
4300+/D [685 0 R /XYZ 56.693 354.16 null]
4301 >> endobj
4302-680 0 obj <<
4303+684 0 obj <<
4304 /Font << /F37 276 0 R /F28 235 0 R /F47 321 0 R >>
4305 /ProcSet [ /PDF /Text ]
4306 >> endobj
4307-688 0 obj <<
4308+692 0 obj <<
4309 /Length 1460
4310 /Filter /FlateDecode
4311 >>
4312@@ -2551,38 +2562,38 @@
4313 (ÉsðKÿËœ3ȲRø¿nÖÖÖ¾
4314fUæšµþ� ¯õ¯�‚Ñ¿úkPcm_tÒ'.up<rçMUq§B)kñ?V­ñ\!KQóJ5…üøÏ½
4315¬íÏì»T–O^Rך(£¹µë>^qåè5SQxš÷óæöeXÍ,VßœÀ2GÐvØ@¿®5ú(\aÙѧœ`4@Ú
4316º˜8ãÓEd2J˜â¥V\ºìåüÐB?½ F
4317ÑUR·¬UC É¡
4318e¯™£1ÇYL1$Ân©©º*`–¹$ò%¬kˆ\e§
4319ÍS‹\(Å»
43205¦¹âG�{™3éêe•TXZæ�ñl„~º`Á¤&7!v÷�vÉ ,¥ÆûL©J=ûÇ^·÷Î(wv4NI–Rë
4321ˆ;ƒ
4322²cqðÙQæÖ
4323ƒ4{â×! 1Œ b¦‘–´®f:zï.›„EÀ ÐL
4324Y³³@JÙ
4325�›ý`çLº•Ó4=N¹drœÚ)7F…ëfC TJâbc¨Z•”ù
4326uÁ¼q,o ¥àdU~|¦×™nÖ¥pÛÿRê 8¡/ÔU‰—†Mþ`Ÿà
4327i@'ñyßwò
4328@Uá––ćòçHš€Ï³ñÁàÎOB ¬ÒJÙ!˜À“à„lC
4329ò¼&w€
4330{ðÉv Ïl¿T´m‹Al; RᎠ|;Ío
4331ŠÎ›•C[Û›
4332�{u¸�عP“Š3”Å iº5Çx�NæK;.ö,�ØPó#™ÑËíâ¯EKêîù›¤$J"/¯ï?Po[à²�÷h+/ÈBx¬2X—Þ/‹ŸÇ§4`sš&º“Œ°(ö(nNª×°mH–Àú
43335›êšÝÐìê{¡[Â;Wœõ,î ¤ÐÌÁ�UÒ
4334äÓ©ÀN­æõ‡}îb3„N#H.öù‰ïþÞ1QP
4335 endstream
4336 endobj
4337-687 0 obj <<
4338+691 0 obj <<
4339 /Type /Page
4340-/Contents 688 0 R
4341-/Resources 686 0 R
4342+/Contents 692 0 R
4343+/Resources 690 0 R
4344 /MediaBox [0 0 595.276 841.89]
4345-/Parent 684 0 R
4346-/Annots [ 685 0 R ]
4347+/Parent 688 0 R
4348+/Annots [ 689 0 R ]
4349 >> endobj
4350-685 0 obj <<
4351+689 0 obj <<
4352 /Type /Annot
4353 /Subtype /Link
4354 /Border[0 0 0]/H/I/C[1 0 0]
4355 /Rect [176.788 275.799 183.263 290.39]
4356 /A << /S /GoTo /D (Hfootnote.1) >>
4357 >> endobj
4358-689 0 obj <<
4359-/D [687 0 R /XYZ 55.693 817.952 null]
4360+693 0 obj <<
4361+/D [691 0 R /XYZ 55.693 817.952 null]
4362 >> endobj
4363 210 0 obj <<
4364-/D [687 0 R /XYZ 56.693 654.764 null]
4365+/D [691 0 R /XYZ 56.693 654.764 null]
4366 >> endobj
4367 214 0 obj <<
4368-/D [687 0 R /XYZ 56.693 348.459 null]
4369+/D [691 0 R /XYZ 56.693 348.459 null]
4370+>> endobj
4371+694 0 obj <<
4372+/D [691 0 R /XYZ 72.832 67.652 null]
4373 >> endobj
4374 690 0 obj <<
4375-/D [687 0 R /XYZ 72.832 67.652 null]
4376->> endobj
4377-686 0 obj <<
4378 /Font << /F28 235 0 R /F39 308 0 R /F47 321 0 R /F37 276 0 R >>
4379 /ProcSet [ /PDF /Text ]
4380 >> endobj
4381-694 0 obj <<
4382+698 0 obj <<
4383 /Length 1231
4384 /Filter /FlateDecode
4385 >>
4386@@ -2593,61 +2604,61 @@
4387 ½´Ê{TÂÓí½¢J*PaW”¡Ìž;SµjØkázƳÙ,¿2Ëàû©çË¿EøC™xK¿
4388�
4389;Ý3A²Vþ—Jo¾Ý/ƒ) †mXR�ŒûÑÇŠ"Ø+ÿ¤d(”
4390 endstream
4391 endobj
4392-693 0 obj <<
4393+697 0 obj <<
4394 /Type /Page
4395-/Contents 694 0 R
4396-/Resources 692 0 R
4397+/Contents 698 0 R
4398+/Resources 696 0 R
4399 /MediaBox [0 0 595.276 841.89]
4400-/Parent 684 0 R
4401-/Annots [ 691 0 R ]
4402+/Parent 688 0 R
4403+/Annots [ 695 0 R ]
4404 >> endobj
4405-691 0 obj <<
4406+695 0 obj <<
4407 /Type /Annot
4408 /Border[0 0 0]/H/I/C[0 1 1]
4409 /Rect [153.951 283.44 418.104 296.456]
4410 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.w3.org/TR/xpath)>>
4411 >> endobj
4412-695 0 obj <<
4413-/D [693 0 R /XYZ 55.693 817.952 null]
4414+699 0 obj <<
4415+/D [697 0 R /XYZ 55.693 817.952 null]
4416 >> endobj
4417 218 0 obj <<
4418-/D [693 0 R /XYZ 56.693 785.197 null]
4419+/D [697 0 R /XYZ 56.693 785.197 null]
4420 >> endobj
4421 222 0 obj <<
4422-/D [693 0 R /XYZ 56.693 600.014 null]
4423+/D [697 0 R /XYZ 56.693 600.014 null]
4424 >> endobj
4425 226 0 obj <<
4426-/D [693 0 R /XYZ 56.693 356.1 null]
4427+/D [697 0 R /XYZ 56.693 356.1 null]
4428 >> endobj
4429-692 0 obj <<
4430+696 0 obj <<
4431 /Font << /F37 276 0 R /F28 235 0 R /F47 321 0 R >>
4432 /ProcSet [ /PDF /Text ]
4433 >> endobj
4434-697 0 obj
4435+701 0 obj
4436 [444 463 407 500 389 278 500 500 278 278 444 278 778 556 444 500 463 389 389 333 556 500 722 500 500]
4437 endobj
4438-698 0 obj
4439+702 0 obj
4440 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
4441 endobj
4442-699 0 obj
4443+703 0 obj
4444 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
4445 endobj
4446-700 0 obj
4447+704 0 obj
4448 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600]
4449 endobj
4450-701 0 obj
4451+705 0 obj
4452 [500]
4453 endobj
4454-702 0 obj
4455+706 0 obj
4456 [250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667]
4457 endobj
4458-703 0 obj
4459+707 0 obj
4460 [611 611 167 333 611 333 333 333 0 333 606 0 667 500 333 333 0 0 0 0 0 0 0 0 0 0 0 0 333 227 250 278 402 500 500 889 833 278 333 333 444 606 250 333 250 296 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 667 722 833 611 556 833 833 389 389 778 611 1000 833 833 611 833 722 611 667 778 778 1000 667 667 667 333 606 333 606 500 278 500 611 444 611 500 389 556 611 333 333 611 333 889 611 556 611 611 389 444 333 611 556 833 500 556]
4461 endobj
4462-704 0 obj
4463+708 0 obj
4464 [605 608 167 380 611 291 313 333 0 333 606 0 667 500 333 287 0 0 0 0 0 0 0 0 0 0 0 0 333 208 250 278 371 500 500 840 778 278 333 333 389 606 250 333 250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667 667 333 606 333 606 500 278 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 601 560 395 424 326 603 565 834 516 556 500 333 606 333 606 0 0 0 278 500 500 1000 500 500 333 1144 525 331 998 0 0 0 0 0 0 500 500]
4465 endobj
4466-705 0 obj <<
4467+709 0 obj <<
4468 /Length1 1403
4469 /Length2 6029
4470 /Length3 0
4471@@ -2683,7 +2694,7 @@
4472 ªZtžͰ3Pسáî
4473—÷K”¹éc*Ûuµ!{‘T½í#¿ÕwÝb¼zAðû•B¯ºôÄ/ýð¾�¢­x9œ•Ó;¡õð¦|yäûƒ4»ÜÅ���GX=#Ø[l™�g\
4474_†ü©YeE~ëãh{ÛŸ[M¿L½Ã3�%àפ›ÐR£;s!LnPÖSOæýöÓ.K”~Á‰—¢ÃxÒZû•áU[^Ûl<ÇöðÔWº¥6SÃgú‘ÊìÍîá�hW÷2gmâ&y<ù
4475(çëg"i™ðÞ¡h´áÙÖ¦à}žOB®çËó¯+Øî7xeª@“EÏùÞÌ× J
4476qÑPÕ¶”~Ëü¸m¥ÿŠþä°Æ~;ß©ï�HGï‹ïI‡E¾
4477´ö˜C�RÓ÷‘UALØöåú�Ê>ÿ:ÔDx’BF›IÉC%ü2`ò±Hj’Þx^x¢Yv5û6…�¬Kß´õY¨îÕ·‰¤{¼º¾?Z!ÍÇN�ÔJsÎË•ssc” {;2»â·SÍïdÕŸž¿=ÜáWE
4478i¬¨Æ¤ åÊ]¾‹ÉZ%±£ëu„®)rÓüÅç’à:U»þëªzÌéój��€턜7Ž™:‹8¼ô3â-nåN¸|­™Âý¾·UNÑ“Âg€\hÔ—¾`¹›¥Ïå;H£r0æÇq/ÿ–µÚåh®,êÃÖÓ‡Zž²=îœâw¦^¿ú�ñ�G“ô9Xp޼GˆŽ+fÁçvŽP‡h5ùbþÚ-hÍkÀ­íí ~jÉ—aË‚¹±i«fAâðgÑœyKŽ"'krT�éU­GO(¢¾ÞνÅʨ±·�PÿꥪæÞ·ˆGK �¦I:$g°Ì¬€¯W ÈxÜÒ’eÎ`µ Y%âÉW×î›DS8žÑpûHžG�1¥R&¯Þé›v#S³Ï÷¦YžSÍSĘ
4479G&ð¹Žû¼œ5ëÓ
4480Ùâ¬_+,/w1ëÖÔr†^+/­�Ôì_ìˆ=}¾b‹ß+Õ”Ÿ6�_˜Ø:ôÜQ8U9dS™«'�8v²d×`—'=bò7e¨³ ñ‘ToØ F?±l¦iG«Š:—Vµt?ÏV›§ž^ü.‡¥}|œ>V¯6L+V½i<b�Êû,+ìqidú– éuò5áG\oA·¦É\êÜë|¼ÎAõ?ų‹
4481 endstream
4482 endobj
4483-706 0 obj <<
4484+710 0 obj <<
4485 /Type /FontDescriptor
4486 /FontName /GFAWRG+CMSY10
4487 /Flags 4
4488@@ -2695,9 +2706,9 @@
4489 /StemV 40
4490 /XHeight 431
4491 /CharSet (/bullet)
4492-/FontFile 705 0 R
4493+/FontFile 709 0 R
4494 >> endobj
4495-707 0 obj <<
4496+711 0 obj <<
4497 /Length1 1606
4498 /Length2 8126
4499 /Length3 0
4500@@ -2749,7 +2760,7 @@
4501 ðÕÍGÖÍ¢Ðí­ÖÅ'7Icñ”P‰"jó3ªe%/ÿÒ
4502
4503°÷iæ3¿c`ÁáK¥©qGÙÊÄ
4504üu4 =Φ`,¯òUôõ,«
4505OjW¢³WQŽv§\é<ÃN·h¦¶?ZnÔŠðKösq¤$
4506`¦UOòýûÞ^ñL±”óÌ´T%£šõÔ{±ÉuŸó€Y±‡à{KQËCøNüœ*–Ç
45078pû�d7¬Áº]=¤Y{ø* †íää}dL—#>(B ã(ù¬ý¿èHóë
4508 endstream
4509 endobj
4510-708 0 obj <<
4511+712 0 obj <<
4512 /Type /FontDescriptor
4513 /FontName /NZTLTG+NimbusMonL-Bold
4514 /Flags 4
4515@@ -2761,9 +2772,9 @@
4516 /StemV 101
4517 /XHeight 439
4518 /CharSet (/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y)
4519-/FontFile 707 0 R
4520+/FontFile 711 0 R
4521 >> endobj
4522-709 0 obj <<
4523+713 0 obj <<
4524 /Length1 1612
4525 /Length2 16861
4526 /Length3 0
4527@@ -2822,7 +2833,7 @@
4528 ^>ÝÒŒ×x,øÆý{rUšòÔ†µò“¼ª<éëi’-Ïùÿëè!ÞdýA z’‚Xèzº±×¿¤�ÖDë``¹E޳&)ç\pTëñ}áiK@† 8´D—Q0�ÃÙIh*~¡Stùã*ò§_„ò÷äŽhØj(É¿‹Áà@'iףȸ‚v’Ht¢£pR–ï�ˆÅLîhQ,×3’…$N
4529„êß)beæU§!xߦ³ÕwŠÇ…œk(5šÙòÞ'Sp$+
4530 endstream
4531 endobj
4532-710 0 obj <<
4533+714 0 obj <<
4534 /Type /FontDescriptor
4535 /FontName /KPIDPS+NimbusMonL-Regu
4536 /Flags 4
4537@@ -2834,9 +2845,9 @@
4538 /StemV 41
4539 /XHeight 426
4540 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/Y/a/ampersand/asterisk/at/b/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/e/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/plus/quotedbl/r/s/semicolon/slash/t/three/tilde/two/u/underscore/v/w/x/y/z/zero)
4541-/FontFile 709 0 R
4542+/FontFile 713 0 R
4543 >> endobj
4544-711 0 obj <<
4545+715 0 obj <<
4546 /Length1 1630
4547 /Length2 11118
4548 /Length3 0
4549@@ -2892,7 +2903,7 @@
4550 ¹Ft¨ÝT¯Àp*ìïqB¢ü#Èo³´Æ¹Ò…R:Óõ1˜÷šÜþõdVqÁÿ@e¸‚
4551 endstream
4552 endobj
4553-712 0 obj <<
4554+716 0 obj <<
4555 /Type /FontDescriptor
4556 /FontName /NZQXJO+NimbusMonL-ReguObli
4557 /Flags 4
4558@@ -2904,9 +2915,9 @@
4559 /StemV 43
4560 /XHeight 426
4561 /CharSet (/A/C/D/F/I/L/M/N/O/S/T/a/b/bracketleft/bracketright/c/comma/d/e/f/g/greater/h/hyphen/i/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/quoteright/r/s/slash/t/two/u/underscore/v/w/x/y/z/zero)
4562-/FontFile 711 0 R
4563+/FontFile 715 0 R
4564 >> endobj
4565-713 0 obj <<
4566+717 0 obj <<
4567 /Length1 1614
4568 /Length2 19312
4569 /Length3 0
4570@@ -2986,7 +2997,7 @@
4571 0µ^”–¸Áò(ϰ–
4572 endstream
4573 endobj
4574-714 0 obj <<
4575+718 0 obj <<
4576 /Type /FontDescriptor
4577 /FontName /YFCLPA+URWPalladioL-Bold
4578 /Flags 4
4579@@ -2998,9 +3009,9 @@
4580 /StemV 123
4581 /XHeight 471
4582 /CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/X/a/b/c/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/plus/r/s/seven/six/slash/t/three/two/u/v/w/x/y/zero)
4583-/FontFile 713 0 R
4584+/FontFile 717 0 R
4585 >> endobj
4586-715 0 obj <<
4587+719 0 obj <<
4588 /Length1 1616
4589 /Length2 22459
4590 /Length3 0
4591@@ -3090,7 +3101,7 @@
4592 ˆD»±Ôþ‹ „‰_XYXMŸ�B
4593Gðï}ŠFÊ«oû,Y7S’s•jŽ
4594åÓS½Ev€¿‘i…oŒ°þÊL•‘ñµ&ky}]ââ•_jú½¿ô8Aªñ8xcõ#]1A9ƒŽD>#N×éUÐ�Ã÷ñã’>µUijÊû'Î�¨t
4595@ë
4596 endstream
4597 endobj
4598-716 0 obj <<
4599+720 0 obj <<
4600 /Type /FontDescriptor
4601 /FontName /OIQRUY+URWPalladioL-Roma
4602 /Flags 4
4603@@ -3102,9 +3113,9 @@
4604 /StemV 84
4605 /XHeight 469
4606 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/W/X/a/asterisk/b/c/colon/comma/d/e/eight/f/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedblleft/quotedblright/quoteright/r/s/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
4607-/FontFile 715 0 R
4608+/FontFile 719 0 R
4609 >> endobj
4610-717 0 obj <<
4611+721 0 obj <<
4612 /Length1 1630
4613 /Length2 13681
4614 /Length3 0
4615@@ -3182,7 +3193,7 @@
4616 ‚á§&�ÅYyGPI-îK‹á¸LùèÉ•ûÁ®ûA%8Í�ì9+íà~=.õ ‚KÇLÄq%Og~9Oè2Õ©üº
4617�ýRYÝù¨µ\ÿó£iƒa�Û½Pã¯Ùz¤Ë††¡Cà«ü—þ ÉL€²ìý¬Ú‹ƒÄÈŸ•òúx
4618ïn¯C2í‚Sä®­E“ç”ØÛu¤ÃeŽ˜ù§²þÒo.¼>a¿h]Èù‰½Î»m€Þîa‚ Ù¿’¯f(µ34£‘<¸=äÏ„
4619cØÿØ%Ë”£ƒ:¾ÄË·9ìkv€Âa´ŽÙÙ§6ÕÅY
4620ˆäÂþ4)F¢�"b]öD²�1•Ì»÷–
4621!8CDW8›À
4622'…Ûb…ù_Ó/¤
4623 endstream
4624 endobj
4625-718 0 obj <<
4626+722 0 obj <<
4627 /Type /FontDescriptor
4628 /FontName /FQPATW+URWPalladioL-Roma-Slant_167
4629 /Flags 4
4630@@ -3194,9 +3205,9 @@
4631 /StemV 84
4632 /XHeight 469
4633 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/Y/five/four/one/period/three/two)
4634-/FontFile 717 0 R
4635+/FontFile 721 0 R
4636 >> endobj
4637-719 0 obj <<
4638+723 0 obj <<
4639 /Length1 1620
4640 /Length2 8968
4641 /Length3 0
4642@@ -3240,7 +3251,7 @@
4643 Šz¿©ûîìÿÊä$!qf"ñU)§µ4¢»÷1(¿æã�`¹‘áÿ…_zp
4644 endstream
4645 endobj
4646-720 0 obj <<
4647+724 0 obj <<
4648 /Type /FontDescriptor
4649 /FontName /ILEWFP+URWPalladioL-Ital
4650 /Flags 4
4651@@ -3252,9 +3263,9 @@
4652 /StemV 78
4653 /XHeight 482
4654 /CharSet (/a/b/c/d/e/f/h/i/l/m/n/o/p/r/s/t/u/y)
4655-/FontFile 719 0 R
4656+/FontFile 723 0 R
4657 >> endobj
4658-696 0 obj <<
4659+700 0 obj <<
4660 /Type /Encoding
4661 /Differences [2/fi/fl 34/quotedbl/numbersign 38/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 82/R/S/T/U/V/W/X/Y 91/bracketleft 93/bracketright 95/underscore 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright 147/quotedblleft/quotedblright 152/tilde]
4662 >> endobj
4663@@ -3262,117 +3273,117 @@
4664 /Type /Font
4665 /Subtype /Type1
4666 /BaseFont /GFAWRG+CMSY10
4667-/FontDescriptor 706 0 R
4668+/FontDescriptor 710 0 R
4669 /FirstChar 15
4670 /LastChar 15
4671-/Widths 701 0 R
4672+/Widths 705 0 R
4673 >> endobj
4674 338 0 obj <<
4675 /Type /Font
4676 /Subtype /Type1
4677 /BaseFont /NZTLTG+NimbusMonL-Bold
4678-/FontDescriptor 708 0 R
4679+/FontDescriptor 712 0 R
4680 /FirstChar 97
4681 /LastChar 121
4682-/Widths 698 0 R
4683-/Encoding 696 0 R
4684+/Widths 702 0 R
4685+/Encoding 700 0 R
4686 >> endobj
4687 321 0 obj <<
4688 /Type /Font
4689 /Subtype /Type1
4690 /BaseFont /KPIDPS+NimbusMonL-Regu
4691-/FontDescriptor 710 0 R
4692+/FontDescriptor 714 0 R
4693 /FirstChar 34
4694 /LastChar 152
4695-/Widths 700 0 R
4696-/Encoding 696 0 R
4697+/Widths 704 0 R
4698+/Encoding 700 0 R
4699 >> endobj
4700 334 0 obj <<
4701 /Type /Font
4702 /Subtype /Type1
4703 /BaseFont /NZQXJO+NimbusMonL-ReguObli
4704-/FontDescriptor 712 0 R
4705+/FontDescriptor 716 0 R
4706 /FirstChar 35
4707 /LastChar 122
4708-/Widths 699 0 R
4709-/Encoding 696 0 R
4710+/Widths 703 0 R
4711+/Encoding 700 0 R
4712 >> endobj
4713 276 0 obj <<
4714 /Type /Font
4715 /Subtype /Type1
4716 /BaseFont /YFCLPA+URWPalladioL-Bold
4717-/FontDescriptor 714 0 R
4718+/FontDescriptor 718 0 R
4719 /FirstChar 2
4720 /LastChar 121
4721-/Widths 703 0 R
4722-/Encoding 696 0 R
4723+/Widths 707 0 R
4724+/Encoding 700 0 R
4725 >> endobj
4726 235 0 obj <<
4727 /Type /Font
4728 /Subtype /Type1
4729 /BaseFont /OIQRUY+URWPalladioL-Roma
4730-/FontDescriptor 716 0 R
4731+/FontDescriptor 720 0 R
4732 /FirstChar 2
4733 /LastChar 148
4734-/Widths 704 0 R
4735-/Encoding 696 0 R
4736+/Widths 708 0 R
4737+/Encoding 700 0 R
4738 >> endobj
4739 462 0 obj <<
4740 /Type /Font
4741 /Subtype /Type1
4742 /BaseFont /ILEWFP+URWPalladioL-Ital
4743-/FontDescriptor 720 0 R
4744+/FontDescriptor 724 0 R
4745 /FirstChar 97
4746 /LastChar 121
4747-/Widths 697 0 R
4748-/Encoding 696 0 R
4749+/Widths 701 0 R
4750+/Encoding 700 0 R
4751 >> endobj
4752 308 0 obj <<
4753 /Type /Font
4754 /Subtype /Type1
4755 /BaseFont /FQPATW+URWPalladioL-Roma-Slant_167
4756-/FontDescriptor 718 0 R
4757+/FontDescriptor 722 0 R
4758 /FirstChar 46
4759 /LastChar 89
4760-/Widths 702 0 R
4761-/Encoding 696 0 R
4762+/Widths 706 0 R
4763+/Encoding 700 0 R
4764 >> endobj
4765 236 0 obj <<
4766 /Type /Pages
4767 /Count 6
4768-/Parent 721 0 R
4769+/Parent 725 0 R
4770 /Kids [230 0 R 238 0 R 273 0 R 305 0 R 317 0 R 323 0 R]
4771 >> endobj
4772 349 0 obj <<
4773 /Type /Pages
4774 /Count 6
4775-/Parent 721 0 R
4776+/Parent 725 0 R
4777 /Kids [329 0 R 351 0 R 371 0 R 382 0 R 415 0 R 449 0 R]
4778 >> endobj
4779 457 0 obj <<
4780 /Type /Pages
4781 /Count 6
4782-/Parent 721 0 R
4783-/Kids [454 0 R 459 0 R 468 0 R 472 0 R 476 0 R 506 0 R]
4784+/Parent 725 0 R
4785+/Kids [454 0 R 459 0 R 468 0 R 472 0 R 476 0 R 495 0 R]
4786 >> endobj
4787-568 0 obj <<
4788+551 0 obj <<
4789 /Type /Pages
4790 /Count 6
4791-/Parent 721 0 R
4792-/Kids [535 0 R 570 0 R 601 0 R 631 0 R 663 0 R 677 0 R]
4793+/Parent 725 0 R
4794+/Kids [530 0 R 554 0 R 589 0 R 619 0 R 645 0 R 681 0 R]
4795 >> endobj
4796-684 0 obj <<
4797+688 0 obj <<
4798 /Type /Pages
4799 /Count 3
4800-/Parent 721 0 R
4801-/Kids [681 0 R 687 0 R 693 0 R]
4802+/Parent 725 0 R
4803+/Kids [685 0 R 691 0 R 697 0 R]
4804 >> endobj
4805-721 0 obj <<
4806+725 0 obj <<
4807 /Type /Pages
4808 /Count 27
4809-/Kids [236 0 R 349 0 R 457 0 R 568 0 R 684 0 R]
4810+/Kids [236 0 R 349 0 R 457 0 R 551 0 R 688 0 R]
4811 >> endobj
4812-722 0 obj <<
4813+726 0 obj <<
4814 /Type /Outlines
4815 /First 3 0 R
4816 /Last 219 0 R
4817@@ -3394,7 +3405,7 @@
4818 219 0 obj <<
4819 /Title 220 0 R
4820 /A 217 0 R
4821-/Parent 722 0 R
4822+/Parent 726 0 R
4823 /Prev 195 0 R
4824 /First 223 0 R
4825 /Last 223 0 R
4826@@ -3437,7 +3448,7 @@
4827 195 0 obj <<
4828 /Title 196 0 R
4829 /A 193 0 R
4830-/Parent 722 0 R
4831+/Parent 726 0 R
4832 /Prev 67 0 R
4833 /Next 219 0 R
4834 /First 199 0 R
4835@@ -3665,7 +3676,7 @@
4836 67 0 obj <<
4837 /Title 68 0 R
4838 /A 65 0 R
4839-/Parent 722 0 R
4840+/Parent 726 0 R
4841 /Prev 23 0 R
4842 /Next 195 0 R
4843 /First 71 0 R
4844@@ -3744,7 +3755,7 @@
4845 23 0 obj <<
4846 /Title 24 0 R
4847 /A 21 0 R
4848-/Parent 722 0 R
4849+/Parent 726 0 R
4850 /Prev 3 0 R
4851 /Next 67 0 R
4852 /First 27 0 R
4853@@ -3780,1118 +3791,1127 @@
4854 3 0 obj <<
4855 /Title 4 0 R
4856 /A 1 0 R
4857-/Parent 722 0 R
4858+/Parent 726 0 R
4859 /Next 23 0 R
4860 /First 7 0 R
4861 /Last 19 0 R
4862 /Count -4
4863 >> endobj
4864-723 0 obj <<
4865-/Names [(Doc-Start) 234 0 R (Hfootnote.1) 690 0 R (chapter*.1) 277 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]
4866+727 0 obj <<
4867+/Names [(Doc-Start) 234 0 R (Hfootnote.1) 694 0 R (chapter*.1) 277 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]
4868 /Limits [(Doc-Start) (chapter.3)]
4869 >> endobj
4870-724 0 obj <<
4871+728 0 obj <<
4872 /Names [(chapter.4) 194 0 R (chapter.5) 218 0 R (figure.2.1) 446 0 R (lstlisting.2.-1) 332 0 R (lstlisting.2.-2) 355 0 R (lstlisting.2.-3) 374 0 R]
4873 /Limits [(chapter.4) (lstlisting.2.-3)]
4874 >> endobj
4875-725 0 obj <<
4876-/Names [(lstlisting.2.-4) 395 0 R (lstlisting.2.-5) 407 0 R (lstlisting.2.-6) 418 0 R (lstlisting.3.-10) 486 0 R (lstlisting.3.-11) 489 0 R (lstlisting.3.-12) 491 0 R]
4877+729 0 obj <<
4878+/Names [(lstlisting.2.-4) 395 0 R (lstlisting.2.-5) 407 0 R (lstlisting.2.-6) 418 0 R (lstlisting.3.-10) 486 0 R (lstlisting.3.-11) 490 0 R (lstlisting.3.-12) 492 0 R]
4879 /Limits [(lstlisting.2.-4) (lstlisting.3.-12)]
4880 >> endobj
4881-726 0 obj <<
4882-/Names [(lstlisting.3.-13) 493 0 R (lstlisting.3.-14) 496 0 R (lstlisting.3.-15) 498 0 R (lstlisting.3.-16) 500 0 R (lstlisting.3.-17) 509 0 R (lstlisting.3.-18) 513 0 R]
4883+730 0 obj <<
4884+/Names [(lstlisting.3.-13) 498 0 R (lstlisting.3.-14) 502 0 R (lstlisting.3.-15) 504 0 R (lstlisting.3.-16) 506 0 R (lstlisting.3.-17) 511 0 R (lstlisting.3.-18) 515 0 R]
4885 /Limits [(lstlisting.3.-13) (lstlisting.3.-18)]
4886 >> endobj
4887-727 0 obj <<
4888-/Names [(lstlisting.3.-19) 517 0 R (lstlisting.3.-20) 521 0 R (lstlisting.3.-21) 523 0 R (lstlisting.3.-22) 525 0 R (lstlisting.3.-23) 529 0 R (lstlisting.3.-24) 531 0 R]
4889+731 0 obj <<
4890+/Names [(lstlisting.3.-19) 519 0 R (lstlisting.3.-20) 525 0 R (lstlisting.3.-21) 527 0 R (lstlisting.3.-22) 533 0 R (lstlisting.3.-23) 537 0 R (lstlisting.3.-24) 539 0 R]
4891 /Limits [(lstlisting.3.-19) (lstlisting.3.-24)]
4892 >> endobj
4893-728 0 obj <<
4894-/Names [(lstlisting.3.-25) 538 0 R (lstlisting.3.-26) 540 0 R (lstlisting.3.-27) 544 0 R (lstlisting.3.-28) 546 0 R (lstlisting.3.-29) 548 0 R (lstlisting.3.-30) 553 0 R]
4895+732 0 obj <<
4896+/Names [(lstlisting.3.-25) 541 0 R (lstlisting.3.-26) 543 0 R (lstlisting.3.-27) 547 0 R (lstlisting.3.-28) 549 0 R (lstlisting.3.-29) 557 0 R (lstlisting.3.-30) 562 0 R]
4897 /Limits [(lstlisting.3.-25) (lstlisting.3.-30)]
4898 >> endobj
4899-729 0 obj <<
4900-/Names [(lstlisting.3.-31) 555 0 R (lstlisting.3.-32) 558 0 R (lstlisting.3.-33) 563 0 R (lstlisting.3.-34) 565 0 R (lstlisting.3.-35) 573 0 R (lstlisting.3.-36) 578 0 R]
4901+733 0 obj <<
4902+/Names [(lstlisting.3.-31) 564 0 R (lstlisting.3.-32) 567 0 R (lstlisting.3.-33) 572 0 R (lstlisting.3.-34) 574 0 R (lstlisting.3.-35) 577 0 R (lstlisting.3.-36) 582 0 R]
4903 /Limits [(lstlisting.3.-31) (lstlisting.3.-36)]
4904 >> endobj
4905-730 0 obj <<
4906-/Names [(lstlisting.3.-37) 580 0 R (lstlisting.3.-38) 583 0 R (lstlisting.3.-39) 589 0 R (lstlisting.3.-40) 591 0 R (lstlisting.3.-41) 604 0 R (lstlisting.3.-42) 608 0 R]
4907+734 0 obj <<
4908+/Names [(lstlisting.3.-37) 584 0 R (lstlisting.3.-38) 592 0 R (lstlisting.3.-39) 598 0 R (lstlisting.3.-40) 600 0 R (lstlisting.3.-41) 606 0 R (lstlisting.3.-42) 610 0 R]
4909 /Limits [(lstlisting.3.-37) (lstlisting.3.-42)]
4910 >> endobj
4911-731 0 obj <<
4912-/Names [(lstlisting.3.-43) 610 0 R (lstlisting.3.-44) 612 0 R (lstlisting.3.-45) 617 0 R (lstlisting.3.-46) 620 0 R (lstlisting.3.-47) 623 0 R (lstlisting.3.-48) 634 0 R]
4913+735 0 obj <<
4914+/Names [(lstlisting.3.-43) 612 0 R (lstlisting.3.-44) 622 0 R (lstlisting.3.-45) 627 0 R (lstlisting.3.-46) 630 0 R (lstlisting.3.-47) 633 0 R (lstlisting.3.-48) 638 0 R]
4915 /Limits [(lstlisting.3.-43) (lstlisting.3.-48)]
4916 >> endobj
4917-732 0 obj <<
4918-/Names [(lstlisting.3.-49) 637 0 R (lstlisting.3.-50) 640 0 R (lstlisting.3.-51) 644 0 R (lstlisting.3.-52) 646 0 R (lstlisting.3.-53) 648 0 R (lstlisting.3.-54) 653 0 R]
4919+736 0 obj <<
4920+/Names [(lstlisting.3.-49) 641 0 R (lstlisting.3.-50) 648 0 R (lstlisting.3.-51) 652 0 R (lstlisting.3.-52) 654 0 R (lstlisting.3.-53) 656 0 R (lstlisting.3.-54) 661 0 R]
4921 /Limits [(lstlisting.3.-49) (lstlisting.3.-54)]
4922 >> endobj
4923-733 0 obj <<
4924-/Names [(lstlisting.3.-55) 655 0 R (lstlisting.3.-56) 657 0 R (lstlisting.3.-57) 666 0 R (lstlisting.3.-58) 668 0 R (lstlisting.3.-59) 670 0 R (lstlisting.3.-60) 672 0 R]
4925+737 0 obj <<
4926+/Names [(lstlisting.3.-55) 663 0 R (lstlisting.3.-56) 665 0 R (lstlisting.3.-57) 670 0 R (lstlisting.3.-58) 672 0 R (lstlisting.3.-59) 674 0 R (lstlisting.3.-60) 676 0 R]
4927 /Limits [(lstlisting.3.-55) (lstlisting.3.-60)]
4928 >> endobj
4929-734 0 obj <<
4930-/Names [(lstlisting.3.-61) 674 0 R (lstlisting.3.-7) 479 0 R (lstlisting.3.-8) 482 0 R (lstlisting.3.-9) 484 0 R (lstnumber.-1.1) 333 0 R (lstnumber.-1.10) 344 0 R]
4931+738 0 obj <<
4932+/Names [(lstlisting.3.-61) 678 0 R (lstlisting.3.-7) 479 0 R (lstlisting.3.-8) 482 0 R (lstlisting.3.-9) 484 0 R (lstnumber.-1.1) 333 0 R (lstnumber.-1.10) 344 0 R]
4933 /Limits [(lstlisting.3.-61) (lstnumber.-1.10)]
4934 >> endobj
4935-735 0 obj <<
4936+739 0 obj <<
4937 /Names [(lstnumber.-1.11) 345 0 R (lstnumber.-1.12) 346 0 R (lstnumber.-1.13) 347 0 R (lstnumber.-1.14) 348 0 R (lstnumber.-1.15) 354 0 R (lstnumber.-1.2) 335 0 R]
4938 /Limits [(lstnumber.-1.11) (lstnumber.-1.2)]
4939 >> endobj
4940-736 0 obj <<
4941+740 0 obj <<
4942 /Names [(lstnumber.-1.3) 336 0 R (lstnumber.-1.4) 337 0 R (lstnumber.-1.5) 339 0 R (lstnumber.-1.6) 340 0 R (lstnumber.-1.7) 341 0 R (lstnumber.-1.8) 342 0 R]
4943 /Limits [(lstnumber.-1.3) (lstnumber.-1.8)]
4944 >> endobj
4945-737 0 obj <<
4946-/Names [(lstnumber.-1.9) 343 0 R (lstnumber.-10.1) 487 0 R (lstnumber.-10.2) 488 0 R (lstnumber.-11.1) 490 0 R (lstnumber.-12.1) 492 0 R (lstnumber.-13.1) 494 0 R]
4947-/Limits [(lstnumber.-1.9) (lstnumber.-13.1)]
4948->> endobj
4949-738 0 obj <<
4950-/Names [(lstnumber.-13.2) 495 0 R (lstnumber.-14.1) 497 0 R (lstnumber.-15.1) 499 0 R (lstnumber.-16.1) 501 0 R (lstnumber.-16.2) 502 0 R (lstnumber.-16.3) 503 0 R]
4951-/Limits [(lstnumber.-13.2) (lstnumber.-16.3)]
4952->> endobj
4953-739 0 obj <<
4954-/Names [(lstnumber.-16.4) 504 0 R (lstnumber.-17.1) 510 0 R (lstnumber.-17.2) 511 0 R (lstnumber.-17.3) 512 0 R (lstnumber.-18.1) 514 0 R (lstnumber.-18.2) 515 0 R]
4955-/Limits [(lstnumber.-16.4) (lstnumber.-18.2)]
4956->> endobj
4957-740 0 obj <<
4958-/Names [(lstnumber.-18.3) 516 0 R (lstnumber.-19.1) 518 0 R (lstnumber.-19.2) 519 0 R (lstnumber.-19.3) 520 0 R (lstnumber.-2.1) 356 0 R (lstnumber.-2.10) 365 0 R]
4959-/Limits [(lstnumber.-18.3) (lstnumber.-2.10)]
4960->> endobj
4961 741 0 obj <<
4962-/Names [(lstnumber.-2.11) 366 0 R (lstnumber.-2.12) 367 0 R (lstnumber.-2.13) 368 0 R (lstnumber.-2.2) 357 0 R (lstnumber.-2.3) 358 0 R (lstnumber.-2.4) 359 0 R]
4963-/Limits [(lstnumber.-2.11) (lstnumber.-2.4)]
4964+/Names [(lstnumber.-1.9) 343 0 R (lstnumber.-10.1) 487 0 R (lstnumber.-10.2) 488 0 R (lstnumber.-10.3) 489 0 R (lstnumber.-11.1) 491 0 R (lstnumber.-12.1) 493 0 R]
4965+/Limits [(lstnumber.-1.9) (lstnumber.-12.1)]
4966 >> endobj
4967 742 0 obj <<
4968-/Names [(lstnumber.-2.5) 360 0 R (lstnumber.-2.6) 361 0 R (lstnumber.-2.7) 362 0 R (lstnumber.-2.8) 363 0 R (lstnumber.-2.9) 364 0 R (lstnumber.-20.1) 522 0 R]
4969-/Limits [(lstnumber.-2.5) (lstnumber.-20.1)]
4970+/Names [(lstnumber.-13.1) 499 0 R (lstnumber.-13.2) 500 0 R (lstnumber.-13.3) 501 0 R (lstnumber.-14.1) 503 0 R (lstnumber.-15.1) 505 0 R (lstnumber.-16.1) 507 0 R]
4971+/Limits [(lstnumber.-13.1) (lstnumber.-16.1)]
4972 >> endobj
4973 743 0 obj <<
4974-/Names [(lstnumber.-21.1) 524 0 R (lstnumber.-22.1) 526 0 R (lstnumber.-22.2) 527 0 R (lstnumber.-22.3) 528 0 R (lstnumber.-23.1) 530 0 R (lstnumber.-24.1) 532 0 R]
4975-/Limits [(lstnumber.-21.1) (lstnumber.-24.1)]
4976+/Names [(lstnumber.-16.2) 508 0 R (lstnumber.-16.3) 509 0 R (lstnumber.-16.4) 510 0 R (lstnumber.-17.1) 512 0 R (lstnumber.-17.2) 513 0 R (lstnumber.-17.3) 514 0 R]
4977+/Limits [(lstnumber.-16.2) (lstnumber.-17.3)]
4978 >> endobj
4979 744 0 obj <<
4980-/Names [(lstnumber.-25.1) 539 0 R (lstnumber.-26.1) 541 0 R (lstnumber.-26.2) 542 0 R (lstnumber.-26.3) 543 0 R (lstnumber.-27.1) 545 0 R (lstnumber.-28.1) 547 0 R]
4981-/Limits [(lstnumber.-25.1) (lstnumber.-28.1)]
4982+/Names [(lstnumber.-18.1) 516 0 R (lstnumber.-18.2) 517 0 R (lstnumber.-18.3) 518 0 R (lstnumber.-19.1) 520 0 R (lstnumber.-19.2) 521 0 R (lstnumber.-19.3) 522 0 R]
4983+/Limits [(lstnumber.-18.1) (lstnumber.-19.3)]
4984 >> endobj
4985 745 0 obj <<
4986-/Names [(lstnumber.-29.1) 549 0 R (lstnumber.-29.2) 550 0 R (lstnumber.-29.3) 551 0 R (lstnumber.-29.4) 552 0 R (lstnumber.-3.1) 375 0 R (lstnumber.-3.10) 389 0 R]
4987-/Limits [(lstnumber.-29.1) (lstnumber.-3.10)]
4988+/Names [(lstnumber.-19.4) 523 0 R (lstnumber.-19.5) 524 0 R (lstnumber.-2.1) 356 0 R (lstnumber.-2.10) 365 0 R (lstnumber.-2.11) 366 0 R (lstnumber.-2.12) 367 0 R]
4989+/Limits [(lstnumber.-19.4) (lstnumber.-2.12)]
4990 >> endobj
4991 746 0 obj <<
4992-/Names [(lstnumber.-3.11) 390 0 R (lstnumber.-3.12) 391 0 R (lstnumber.-3.13) 392 0 R (lstnumber.-3.14) 393 0 R (lstnumber.-3.15) 394 0 R (lstnumber.-3.2) 376 0 R]
4993-/Limits [(lstnumber.-3.11) (lstnumber.-3.2)]
4994+/Names [(lstnumber.-2.13) 368 0 R (lstnumber.-2.2) 357 0 R (lstnumber.-2.3) 358 0 R (lstnumber.-2.4) 359 0 R (lstnumber.-2.5) 360 0 R (lstnumber.-2.6) 361 0 R]
4995+/Limits [(lstnumber.-2.13) (lstnumber.-2.6)]
4996 >> endobj
4997 747 0 obj <<
4998-/Names [(lstnumber.-3.3) 377 0 R (lstnumber.-3.4) 378 0 R (lstnumber.-3.5) 379 0 R (lstnumber.-3.6) 385 0 R (lstnumber.-3.7) 386 0 R (lstnumber.-3.8) 387 0 R]
4999-/Limits [(lstnumber.-3.3) (lstnumber.-3.8)]
5000+/Names [(lstnumber.-2.7) 362 0 R (lstnumber.-2.8) 363 0 R (lstnumber.-2.9) 364 0 R (lstnumber.-20.1) 526 0 R (lstnumber.-21.1) 528 0 R (lstnumber.-22.1) 534 0 R]
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches