From a1c6ab7c08b7265a9b73062e159941fff084b7c1 Mon Sep 17 00:00:00 2001 From: Matthias Jurenz Date: Thu, 5 Jul 2012 12:56:07 +0000 Subject: [PATCH] Changes to OTF: - fixed RBuffer_searchTime() for compressed files Changes to VT: - rebuild HTML+PDF version of VT user manual - fixed compiler instr. entry in configure summary (was empty if no compiler instr. found) This commit was SVN r26750. --- ompi/contrib/vt/vt/config/defaults/crayxe | 1 + .../contrib/vt/vt/config/m4/acinclude.conf.m4 | 2 +- ompi/contrib/vt/vt/doc/UserManual.html | 271 +- ompi/contrib/vt/vt/doc/UserManual.pdf | 6438 +++++++++-------- .../vt/vt/extlib/otf/otflib/OTF_File.c | 4 + .../vt/vt/extlib/otf/otflib/OTF_RBuffer.c | 20 +- 6 files changed, 3430 insertions(+), 3306 deletions(-) diff --git a/ompi/contrib/vt/vt/config/defaults/crayxe b/ompi/contrib/vt/vt/config/defaults/crayxe index dabfdc0bed..7c54d3f44a 100644 --- a/ompi/contrib/vt/vt/config/defaults/crayxe +++ b/ompi/contrib/vt/vt/config/defaults/crayxe @@ -15,3 +15,4 @@ CFLAGS_FOR_BUILD="-O3" CXXFLAGS_FOR_BUILD="-O3" enable_shared="no" with_mpich2="yes" +with_shlibc=/lib64/libc.so.6 diff --git a/ompi/contrib/vt/vt/config/m4/acinclude.conf.m4 b/ompi/contrib/vt/vt/config/m4/acinclude.conf.m4 index 52a387e192..cdcd54e46f 100644 --- a/ompi/contrib/vt/vt/config/m4/acinclude.conf.m4 +++ b/ompi/contrib/vt/vt/config/m4/acinclude.conf.m4 @@ -341,7 +341,7 @@ AC_DEFUN([ACVT_CONF_SUMMARY], ], [answer=no]) echo " Build CUPTI support: $answer" - AS_IF([test x"$have_compinst" != x], + AS_IF([test x"$have_compinst" = "xyes"], [answer=`echo $compinst_type | sed s/gnu/gnu*/g`], [answer="no"]) echo "" diff --git a/ompi/contrib/vt/vt/doc/UserManual.html b/ompi/contrib/vt/vt/doc/UserManual.html index ebc1a39e71..c788fa7969 100644 --- a/ompi/contrib/vt/vt/doc/UserManual.html +++ b/ompi/contrib/vt/vt/doc/UserManual.html @@ -98,225 +98,227 @@ Contents

@@ -5564,10 +5566,10 @@ Configuring the Server The server is configured using a configuration file. At server start-up, this file is provided using the -config argument. The cray XK6 configuration file is provided in the package[*][*]. For more information about the options available please refer to the IOFSL documentation[*][*]. The most important option is the serverlist entry in the bmi section which takes a list of server addresses, e.g. :

@@ -5727,6 +5729,65 @@ function names from the binary.
 

+ +
+How can I limit compiler instrumentation? +

+Fully-automatic instrumentation by the compilers is the most convenient method to instrument your program. +However, a variety of functions will be instrumented and all calls of these functions will be traced. +Runtime filters do not eliminate complete overhead of tracing automatically instrumented functions. +Therefore, it is often desirable to limit compiler instrumentation to specific functions. +Several compilers provide options to configure function instrumentation. +Start with VampirTrace in Profiling Mode by setting VT_MODE to STAT. +The profiling information can be used to determine functions which may be excluded from automatic instrumentation. + +

+The IBM C compiler ≥11 and Fortran compiler ≥13 provide -qfunctrace option to enable tracing for all functions. +To disable tracing for all functions you can use -qnofunctrace. +Regardless of -qnofunctrace both -qfunctrace+ and -qfunctrace- can be used to enable resp. disable tracing for a colon-separated list of function names, classes, or namespaces. +For example, + +

+
+
+ -qfunctrace -qfunctrace-myFunc1:myFunc2 +
+
+
+enables tracing for all functions except for myFunc1 and myFunc2. + +

+Also GNU compiler ≥4.3 provides options to limit compiler instrumentation. +-finstrument-functions-exclude-file-list sets a list of files. +All functions defined in a file of this list will be excluded from instrumentation. +The option -finstrument-functions-exclude-function-list sets a list of function names that are excluded from instrumentation. +Arguments of both compiler options must be separated by comma. +Matching of arguments with function or file names is done on substrings. +For example, + +

+
+
+ -finstrument-functions-exclude-file-list=include +
+
+
+will exclude any function defined in files whose pathnames contain "include". +Maybe such a rule is too restrictive, because the "include" directory of your own program code is affected too. +The pattern needs to be specified more precisely, for instance: + +

+
+
+ -finstrument-functions-exclude-file-list=/usr/include +
+
+
+This rule can be used to exclude Standard Template Library (STL) calls in C++ from tracing. + +

+ +


Why do I see multiple @@ -5757,7 +5818,7 @@ next higher function in the call stack - the user function.

-

+

The application has run to completion, but there is no *.otf file. What can I do?

@@ -5769,7 +5830,7 @@ are not available when the application ends and VampirTrace performs trace unifi

In those cases, a *.uctl file can be found in the directory of the trace file and the user needs to perform trace unification manually. -

+


What limitations are associated with "on/off" and buffer rewind? @@ -5801,7 +5862,7 @@ be recorded in the trace. This can cause problems when analyzing the OTF trace a

-

+


VampirTrace warns that it ``cannot lock file a.lock'', what's wrong? @@ -5819,7 +5880,7 @@ Alternatively, you can manually control the unique file naming by setting

-

+


Can I relocate my VampirTrace installation without rebuilding from source? @@ -5843,7 +5904,7 @@ export VT_PREFIX=$HOME/vampirtrace

-

+


What are the byte counts in collective communication records? @@ -5871,7 +5932,7 @@ Thanks to Eugene Loh for pointing this out!

-

+


I get ``error: unknown asm constraint letter'' @@ -5884,7 +5945,7 @@ compiler instrumenation (⇒ Section 2.3 -

+


I have a question that is not answered in this document! @@ -5896,7 +5957,7 @@ for support on installing and using VampirTrace.

-

+


I need support for additional features so I can trace application xyz. @@ -6000,13 +6061,13 @@ Dyninst The server makes use of all the nodes resources by multithreading and allocating large I/O buffers -
... package... package[*]
tools/vtiofsl/platform/crayxk6-iofwd.cf
-
... documentation... documentation[*]
https://trac.mcs.anl.gov/projects/iofsl/wiki/ConfigurationFile diff --git a/ompi/contrib/vt/vt/doc/UserManual.pdf b/ompi/contrib/vt/vt/doc/UserManual.pdf index baa7d213a5..946ee3d949 100644 --- a/ompi/contrib/vt/vt/doc/UserManual.pdf +++ b/ompi/contrib/vt/vt/doc/UserManual.pdf @@ -490,60 +490,66 @@ endobj << /S /GoTo /D (section.E.3) >> endobj 328 0 obj -(Fortran file I/O is not accounted properly?) +(How can I limit compiler instrumentation?) endobj 329 0 obj << /S /GoTo /D (section.E.4) >> endobj 332 0 obj -(There is no *.otf file. What can I do?) +(Fortran file I/O is not accounted properly?) endobj 333 0 obj << /S /GoTo /D (section.E.5) >> endobj 336 0 obj -(What limitations are associated with "on/off" and buffer rewind?) +(There is no *.otf file. What can I do?) endobj 337 0 obj << /S /GoTo /D (section.E.6) >> endobj 340 0 obj -(VampirTrace warns that it ``cannot lock file a.lock'', what's wrong?) +(What limitations are associated with "on/off" and buffer rewind?) endobj 341 0 obj << /S /GoTo /D (section.E.7) >> endobj 344 0 obj -(Can I relocate my VampirTrace installation?) +(VampirTrace warns that it ``cannot lock file a.lock'', what's wrong?) endobj 345 0 obj << /S /GoTo /D (section.E.8) >> endobj 348 0 obj -(What are the byte counts in collective communication records?) +(Can I relocate my VampirTrace installation?) endobj 349 0 obj << /S /GoTo /D (section.E.9) >> endobj 352 0 obj -(I get ``error: unknown asm constraint letter'') +(What are the byte counts in collective communication records?) endobj 353 0 obj << /S /GoTo /D (section.E.10) >> endobj 356 0 obj -(I have a question that is not answered in this document!) +(I get ``error: unknown asm constraint letter'') endobj 357 0 obj << /S /GoTo /D (section.E.11) >> endobj 360 0 obj -(I need support for additional features so I can trace application xyz.) +(I have a question that is not answered in this document!) endobj 361 0 obj -<< /S /GoTo /D [362 0 R /Fit ] >> +<< /S /GoTo /D (section.E.12) >> endobj -368 0 obj << +364 0 obj +(I need support for additional features so I can trace application xyz.) +endobj +365 0 obj +<< /S /GoTo /D [366 0 R /Fit ] >> +endobj +372 0 obj << /Length 239 /Filter /FlateDecode >> @@ -551,25 +557,25 @@ stream xڕPMO0 WىuE $eڡBZ!>iJ)qGƗMcCam>Cq"]pʙ;! VYP b_|X5U3QWZܸVC}{dv&n׮6tl1i̦^D0p&<}39&{ZֳuQ3ى]DŘտc3 endstream endobj -362 0 obj << +366 0 obj << /Type /Page -/Contents 368 0 R -/Resources 367 0 R +/Contents 372 0 R +/Resources 371 0 R /MediaBox [0 0 595.276 841.89] -/Parent 372 0 R +/Parent 376 0 R >> endobj -363 0 obj << +367 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./zih_logo.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 373 0 R +/PTEX.InfoDict 377 0 R /BBox [0 0 667 402] /Resources << /ProcSet [ /PDF ] /ExtGState << -/R7 374 0 R +/R7 378 0 R >>>> /Length 85193 /Filter /FlateDecode @@ -860,7 +866,7 @@ KT^# DQ5I`iH ]Xa hqL uupqJV` =H(sVyvIr &IE $`1s_C V@ӹ&D[$ #P.|/RPe pLu=±& y6wUR_0iH}%; tɝ/H%PWg@G\s>g%q,o Z`i@E0ԉQIJe'iBtDOM#X/rFmX Bo**&µ!~+7'dӚEs:CdQэ#mhCiTL]{ JFGmDb3\JLߙm^prj#Yzy7Q۴h_={_~[ endstream endobj -373 0 obj +377 0 obj << /Producer (ESP Ghostscript 8.15) /CreationDate (D:20070605162851) @@ -868,24 +874,24 @@ endobj /Creator (ESP Ghostscript 815 \(epswrite\)) >> endobj -374 0 obj +378 0 obj << /Type /ExtGState /OPM 1 >> endobj -364 0 obj << +368 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./vampir_logo.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 375 0 R +/PTEX.InfoDict 379 0 R /BBox [0 0 308 192] /Resources << /ProcSet [ /PDF ] /ExtGState << -/R7 376 0 R +/R7 380 0 R >>>> /Length 16582 /Filter /FlateDecode @@ -946,7 +952,7 @@ a /q?c3~_]o endstream endobj -375 0 obj +379 0 obj << /Producer (ESP Ghostscript 8.15) /CreationDate (D:20070605162845) @@ -954,24 +960,24 @@ endobj /Creator (ESP Ghostscript 81503 \(epswrite\)) >> endobj -376 0 obj +380 0 obj << /Type /ExtGState /OPM 1 >> endobj -369 0 obj << -/D [362 0 R /XYZ 79.787 812.458 null] +373 0 obj << +/D [366 0 R /XYZ 79.787 812.458 null] >> endobj -370 0 obj << -/D [362 0 R /XYZ 80.787 755.917 null] +374 0 obj << +/D [366 0 R /XYZ 80.787 755.917 null] >> endobj -367 0 obj << -/Font << /F38 371 0 R >> -/XObject << /Im1 363 0 R /Im2 364 0 R >> +371 0 obj << +/Font << /F38 375 0 R >> +/XObject << /Im1 367 0 R /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -380 0 obj << +384 0 obj << /Length 406 /Filter /FlateDecode >> @@ -982,41 +988,41 @@ P _ 4xzh݌ڨpFby4ecmsÁ]*bs֍;_}V6Ekی3>7TH-f]leOS+,-}ii(dw>N*gHLcE'lу endstream endobj -379 0 obj << +383 0 obj << /Type /Page -/Contents 380 0 R -/Resources 378 0 R +/Contents 384 0 R +/Resources 382 0 R /MediaBox [0 0 595.276 841.89] -/Parent 372 0 R -/Annots [ 365 0 R 366 0 R 377 0 R ] +/Parent 376 0 R +/Annots [ 369 0 R 370 0 R 381 0 R ] >> endobj -365 0 obj << +369 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [92.547 662.643 295.884 674.121] /Subtype/Link/A<> >> endobj -366 0 obj << +370 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [92.547 648.197 381.962 659.676] /Subtype/Link/A<> >> endobj -377 0 obj << +381 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [152.883 612.377 335.289 625.679] /Subtype/Link/A<> >> endobj -381 0 obj << -/D [379 0 R /XYZ 92.543 812.458 null] +385 0 obj << +/D [383 0 R /XYZ 92.543 812.458 null] >> endobj -378 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +382 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -419 0 obj << +423 0 obj << /Length 1337 /Filter /FlateDecode >> @@ -1027,257 +1033,257 @@ x V *C7.7,r 0k.ݖBy4~%Wuŵ̤,QL{شOjqN>1(f@&߇YdmSC$C%!&~XF <$y_b }e #.e}jϤ64YUX)M  ?7]ij|1kDz?!f> endobj -384 0 obj << +388 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [79.791 619.234 169.211 630.098] /A << /S /GoTo /D (chapter.1) >> >> endobj -385 0 obj << +389 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [79.791 592.132 190.049 602.995] /A << /S /GoTo /D (chapter.2) >> >> endobj -386 0 obj << +390 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 575.179 230.051 588.481] /A << /S /GoTo /D (section.2.1) >> >> endobj -387 0 obj << +391 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 560.593 244.229 573.62] /A << /S /GoTo /D (section.2.2) >> >> endobj -388 0 obj << +392 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 548.278 265.903 559.033] /A << /S /GoTo /D (section.2.3) >> >> endobj -389 0 obj << +393 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 531.42 278.23 544.722] /A << /S /GoTo /D (subsection.2.3.1) >> >> endobj -390 0 obj << +394 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 516.691 502.729 530.136] /A << /S /GoTo /D (subsection.2.3.2) >> >> endobj -422 0 obj << +426 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [79.791 502.388 188.053 515.415] /A << /S /GoTo /D (subsection.2.3.2) >> >> endobj -391 0 obj << +395 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 490.074 399.548 501.104] /A << /S /GoTo /D (subsection.2.3.3) >> >> endobj -392 0 obj << +396 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 473.216 422.777 486.518] /A << /S /GoTo /D (subsection.2.3.4) >> >> endobj -393 0 obj << +397 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 460.901 252.191 471.657] /A << /S /GoTo /D (section.2.4) >> >> endobj -394 0 obj << +398 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 443.9 307.914 457.071] /A << /S /GoTo /D (subsection.2.4.1) >> >> endobj -395 0 obj << +399 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 431.729 286.383 442.76] /A << /S /GoTo /D (subsection.2.4.2) >> >> endobj -396 0 obj << +400 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 414.728 337.299 428.174] /A << /S /GoTo /D (section.2.5) >> >> endobj -397 0 obj << +401 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 400.142 324.411 413.313] /A << /S /GoTo /D (section.2.6) >> >> endobj -398 0 obj << +402 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.221 385.699 318.828 399.001] /A << /S /GoTo /D (subsection.2.6.1) >> >> endobj -399 0 obj << +403 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 370.97 332.027 384.14] /A << /S /GoTo /D (section.2.7) >> >> endobj -400 0 obj << +404 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 356.384 332.828 369.554] /A << /S /GoTo /D (section.2.8) >> >> endobj -401 0 obj << +405 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 341.798 310.4 355.243] /A << /S /GoTo /D (section.2.9) >> >> endobj -402 0 obj << +406 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [79.791 317.206 227.922 328.069] /A << /S /GoTo /D (chapter.3) >> >> endobj -403 0 obj << +407 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 302.524 285.785 313.28] /A << /S /GoTo /D (section.3.1) >> >> endobj -404 0 obj << +408 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 287.938 246.333 298.693] /A << /S /GoTo /D (section.3.2) >> >> endobj -405 0 obj << +409 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 270.937 278.612 284.382] /A << /S /GoTo /D (section.3.3) >> >> endobj -406 0 obj << +410 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 256.351 248.808 269.796] /A << /S /GoTo /D (section.3.4) >> >> endobj -407 0 obj << +411 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 244.179 266.513 255.21] /A << /S /GoTo /D (section.3.5) >> >> endobj -408 0 obj << +412 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 227.322 266.872 240.624] /A << /S /GoTo /D (section.3.6) >> >> endobj -409 0 obj << +413 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 212.736 303.287 226.038] /A << /S /GoTo /D (section.3.7) >> >> endobj -410 0 obj << +414 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 198.006 352.099 211.452] /A << /S /GoTo /D (section.3.8) >> >> endobj -411 0 obj << +415 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [79.791 170.904 342.966 184.278] /A << /S /GoTo /D (chapter.4) >> >> endobj -412 0 obj << +416 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 158.733 301.769 169.763] /A << /S /GoTo /D (section.4.1) >> >> endobj -413 0 obj << +417 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 141.731 268.068 155.177] /A << /S /GoTo /D (section.4.2) >> >> endobj -414 0 obj << +418 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 127.289 271.738 140.591] /A << /S /GoTo /D (section.4.3) >> >> endobj -415 0 obj << +419 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.724 114.974 213.576 126.005] /A << /S /GoTo /D (section.4.4) >> >> endobj -420 0 obj << -/D [418 0 R /XYZ 79.787 812.458 null] +424 0 obj << +/D [422 0 R /XYZ 79.787 812.458 null] +>> endobj +425 0 obj << +/D [422 0 R /XYZ 80.787 647.173 null] >> endobj 421 0 obj << -/D [418 0 R /XYZ 80.787 647.173 null] ->> endobj -417 0 obj << -/Font << /F39 382 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -465 0 obj << +469 0 obj << /Length 1508 /Filter /FlateDecode >> @@ -1288,465 +1294,307 @@ Mu h\ \w4,6`ώfV*]8TeG2yj{`CyVy00Z< >U>tLKdd|7&W)=OU9ë3Y:m:[kmJSDy$*m~ueo&?NUoD, J6ㆍz|XuՇ zױvNqkXa_8*LJ>pOpZՒN6$Yx",ԗF-j/ [=B]ӘVk{4) a endstream endobj -464 0 obj << +468 0 obj << /Type /Page -/Contents 465 0 R -/Resources 463 0 R +/Contents 469 0 R +/Resources 467 0 R /MediaBox [0 0 595.276 841.89] -/Parent 372 0 R -/Annots [ 416 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R ] +/Parent 376 0 R +/Annots [ 420 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R ] >> endobj -416 0 obj << +420 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 736.145 216.541 747.175] /A << /S /GoTo /D (section.4.5) >> >> endobj -423 0 obj << +427 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 721.484 234.318 732.515] /A << /S /GoTo /D (section.4.6) >> >> endobj -424 0 obj << +428 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 704.409 261.062 717.854] /A << /S /GoTo /D (section.4.7) >> >> endobj -425 0 obj << +429 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 692.163 185.805 703.194] /A << /S /GoTo /D (section.4.8) >> >> endobj -426 0 obj << +430 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 675.231 258.647 688.533] /A << /S /GoTo /D (section.4.9) >> >> endobj -427 0 obj << +431 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 660.427 358.95 673.873] /A << /S /GoTo /D (section.4.10) >> >> endobj -428 0 obj << +432 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 648.182 260.225 659.212] /A << /S /GoTo /D (section.4.11) >> >> endobj -429 0 obj << +433 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 633.521 254.833 644.552] /A << /S /GoTo /D (section.4.12) >> >> endobj -430 0 obj << +434 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 618.861 291.99 629.891] /A << /S /GoTo /D (section.4.13) >> >> endobj -431 0 obj << +435 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [92.547 588.971 228.472 602.345] /A << /S /GoTo /D (chapter.5) >> >> endobj -432 0 obj << +436 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 574.31 231.831 587.481] /A << /S /GoTo /D (section.5.1) >> >> endobj -433 0 obj << +437 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 559.65 255.634 573.095] /A << /S /GoTo /D (section.5.2) >> >> endobj -434 0 obj << +438 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 544.989 238.311 558.435] /A << /S /GoTo /D (section.5.3) >> >> endobj -435 0 obj << +439 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [92.547 517.7 249.656 530.889] /A << /S /GoTo /D (appendix.A) >> >> endobj -436 0 obj << +440 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 505.269 175.177 516.025] /A << /S /GoTo /D (section.A.1) >> >> endobj -437 0 obj << +441 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 488.194 236.315 501.639] /A << /S /GoTo /D (section.A.2) >> >> endobj -438 0 obj << +442 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 473.677 237.618 486.979] /A << /S /GoTo /D (section.A.3) >> >> endobj -439 0 obj << +443 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 459.016 247.361 472.318] /A << /S /GoTo /D (section.A.4) >> >> endobj -440 0 obj << +444 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 444.356 251.235 457.658] /A << /S /GoTo /D (section.A.5) >> >> endobj -441 0 obj << +445 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [92.547 419.248 231.927 430.111] /A << /S /GoTo /D (appendix.B) >> >> endobj -442 0 obj << +446 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 402.221 335.745 415.523] /A << /S /GoTo /D (section.B.1) >> >> endobj -443 0 obj << +447 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 387.56 284.565 400.862] /A << /S /GoTo /D (section.B.2) >> >> endobj -444 0 obj << +448 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 372.899 284.673 386.201] /A << /S /GoTo /D (section.B.3) >> >> endobj -445 0 obj << +449 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 358.239 267.171 371.541] /A << /S /GoTo /D (section.B.4) >> >> endobj -446 0 obj << +450 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 343.435 361.077 356.88] /A << /S /GoTo /D (section.B.5) >> >> endobj -447 0 obj << +451 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 328.918 340.981 342.22] /A << /S /GoTo /D (section.B.6) >> >> endobj -448 0 obj << +452 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 314.257 353.079 327.559] /A << /S /GoTo /D (section.B.7) >> >> endobj -449 0 obj << +453 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 299.597 365.907 312.899] /A << /S /GoTo /D (section.B.8) >> >> endobj -450 0 obj << +454 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [92.547 272.164 242.675 285.352] /A << /S /GoTo /D (appendix.C) >> >> endobj -451 0 obj << +455 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 259.733 165.78 270.764] /A << /S /GoTo /D (section.C.1) >> >> endobj -452 0 obj << +456 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 245.073 165.206 256.103] /A << /S /GoTo /D (section.C.2) >> >> endobj -453 0 obj << +457 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 230.412 356.379 241.443] /A << /S /GoTo /D (section.C.3) >> >> endobj -454 0 obj << +458 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 213.337 228.999 226.782] /A << /S /GoTo /D (section.C.4) >> >> endobj -455 0 obj << +459 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [92.547 185.862 285.521 199.236] /A << /S /GoTo /D (appendix.D) >> >> endobj -456 0 obj << +460 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 173.616 202.434 184.372] /A << /S /GoTo /D (section.D.1) >> >> endobj -457 0 obj << +461 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [110.48 158.956 189.607 169.986] /A << /S /GoTo /D (section.D.2) >> >> endobj -458 0 obj << +462 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [137.977 141.88 285.379 155.326] /A << /S /GoTo /D (subsection.D.2.1) >> >> endobj -459 0 obj << +463 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [137.977 127.22 346.505 140.665] /A << /S /GoTo /D (subsection.D.2.2) >> >> endobj -460 0 obj << +464 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [137.977 114.974 242.006 125.73] /A << /S /GoTo /D (subsection.D.2.3) >> >> endobj -466 0 obj << -/D [464 0 R /XYZ 92.543 812.458 null] ->> endobj -463 0 obj << -/Font << /F39 382 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -486 0 obj << -/Length 1505 -/Filter /FlateDecode ->> -stream -xXYsF~_Hr#B9` S㟏K/>C̷f09P0mH׾ }U"Ly;5c r(uu [^ٌgWq (Dn]{^[>F&Ƙn'mB*rTQjTú -d[Hۦ"Wں-d@Eiº03Ss޶4׵.:|/v`j0·CiUI jJ:&F5 * -O?O>~v{C}3p23qf#Uۮ6:F٤/DM%ևݫ$_@`~0eJMh}M[Ev5T+.wymd䷼)yX /[&12 -Ҩ?Nc) -%kP@z2= l=\^@/ Sy!]9/*M>#"ft)݀p -F`NmU-*{1}2N&xbrݹՋmKPZ\"vԲSt=\F={o}L-=-4VV&yp-P..U1Ujw6kzeYq=J& =hcu{U*-]()):jFAh-)v}_9^-2~ -endstream -endobj -485 0 obj << -/Type /Page -/Contents 486 0 R -/Resources 484 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 372 0 R -/Annots [ 461 0 R 462 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R ] ->> endobj -461 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 736.145 184.358 746.9] -/A << /S /GoTo /D (section.D.3) >> ->> endobj -462 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [125.221 719.428 257.033 732.73] -/A << /S /GoTo /D (subsection.D.3.1) >> +470 0 obj << +/D [468 0 R /XYZ 92.543 812.458 null] >> endobj 467 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [125.221 704.838 245.867 718.284] -/A << /S /GoTo /D (subsection.D.3.2) >> ->> endobj -468 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [125.221 690.392 315.398 703.838] -/A << /S /GoTo /D (subsection.D.3.3) >> ->> endobj -469 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 675.947 217.57 689.117] -/A << /S /GoTo /D (section.D.4) >> ->> endobj -470 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [125.221 661.501 456.921 674.946] -/A << /S /GoTo /D (subsection.D.4.1) >> ->> endobj -471 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [125.221 647.055 242.424 660.225] -/A << /S /GoTo /D (subsection.D.4.2) >> ->> endobj -472 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [79.791 622.692 123.519 634.028] -/A << /S /GoTo /D (appendix.E) >> ->> endobj -473 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 606.352 474.734 619.654] -/A << /S /GoTo /D (section.E.1) >> ->> endobj -474 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 591.762 446.4 605.208] -/A << /S /GoTo /D (section.E.2) >> ->> endobj -475 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 577.46 347.329 590.762] -/A << /S /GoTo /D (section.E.3) >> ->> endobj -476 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 565.286 317.871 576.316] -/A << /S /GoTo /D (section.E.4) >> ->> endobj -477 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 550.84 460.447 561.87] -/A << /S /GoTo /D (section.E.5) >> ->> endobj -478 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 533.979 468.015 547.424] -/A << /S /GoTo /D (section.E.6) >> ->> endobj -479 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 519.677 356.511 532.979] -/A << /S /GoTo /D (section.E.7) >> ->> endobj -480 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 505.231 458.104 518.533] -/A << /S /GoTo /D (section.E.8) >> ->> endobj -481 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 490.641 353.294 504.087] -/A << /S /GoTo /D (section.E.9) >> ->> endobj -482 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 476.339 421.246 489.366] -/A << /S /GoTo /D (section.E.10) >> ->> endobj -483 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [97.724 461.893 481.703 475.195] -/A << /S /GoTo /D (section.E.11) >> ->> endobj -487 0 obj << -/D [485 0 R /XYZ 79.787 812.458 null] ->> endobj -484 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F43 488 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj 491 0 obj << -/Length 19 +/Length 1534 /Filter /FlateDecode >> stream -x3PHW0Pp2Ac( +xXrF}߯PxHTVif4R^61!E$UfwUq>=7Y7c>H;>}puo::ynDomV\21bBMj=We˶q^n7+&#˳AaN՛r=C Go=VOwٹƌ5q)bJ,:C ȍ:E6L-T>\z=8Q2b@av)Ӳi<۬*%0foC(8>DH=&vΑ|撈YkL`ip}U u> ٫CG71,fh._u4+w +''gP?ʉ$: /荋CVoG"WUnNlj0B0aa:ڈ\Ϛx>~Т-*ᩊYsCNg~|Wc oz9Ni*ZdRsuENM` +.Pp h \<؉R $Og% !9S117!4rر$$=~9u] fۭ An_-lTcpȳDjH +1C%i2?LIZP %M(#LY`Yk؍us{{wbmﯕ\k<++տ RJ]^p!!HĉqpbFB~wzDCQV8I. +:pQ~1Æ~d 56TcCTOVݪݎpa\v vYi5 BtHoSgc 7MdqO{*$r =v&6X ϳ2H%[Ǵy(y|jH^>6aW0F&Ƙn'mBjrT[kTú +6ƽ;> ,kQ V+_r& cA9o[^  |Ed},\;9o:\l" P<@IIǼhfBZ%RY|7; +4xqFP6(|w{ H0jg@8Zo!x`q 콑b@[8܅z:&jU#5Czaxx2`WF4'}tK1UHrV|_":ԛiI cG'pܖ0.B8<2V&_3Ky(|sUcJ^=m!Ө\7d}R]PDWZ{hh.B O; ,l jY)ZB2Q`|מbucv$Rn /KaL'#JpŚ^؀9yn2rVD\ZhIBۉ;]VۮL~E5M hf endstream endobj 490 0 obj << @@ -1754,15 +1602,179 @@ endobj /Contents 491 0 R /Resources 489 0 R /MediaBox [0 0 595.276 841.89] -/Parent 372 0 R +/Parent 376 0 R +/Annots [ 465 0 R 466 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R ] +>> endobj +465 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 736.145 184.358 746.9] +/A << /S /GoTo /D (section.D.3) >> +>> endobj +466 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [125.221 719.428 257.033 732.73] +/A << /S /GoTo /D (subsection.D.3.1) >> +>> endobj +471 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [125.221 704.838 245.867 718.284] +/A << /S /GoTo /D (subsection.D.3.2) >> +>> endobj +472 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [125.221 690.392 315.398 703.838] +/A << /S /GoTo /D (subsection.D.3.3) >> +>> endobj +473 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 675.947 217.57 689.117] +/A << /S /GoTo /D (section.D.4) >> +>> endobj +474 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [125.221 661.501 456.921 674.946] +/A << /S /GoTo /D (subsection.D.4.1) >> +>> endobj +475 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [125.221 647.055 242.424 660.225] +/A << /S /GoTo /D (subsection.D.4.2) >> +>> endobj +476 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [79.791 622.692 123.519 634.028] +/A << /S /GoTo /D (appendix.E) >> +>> endobj +477 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 606.352 474.734 619.654] +/A << /S /GoTo /D (section.E.1) >> +>> endobj +478 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 591.762 446.4 605.208] +/A << /S /GoTo /D (section.E.2) >> +>> endobj +479 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 577.46 345.117 590.762] +/A << /S /GoTo /D (section.E.3) >> +>> endobj +480 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 563.014 347.329 576.316] +/A << /S /GoTo /D (section.E.4) >> +>> endobj +481 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 550.84 317.871 561.87] +/A << /S /GoTo /D (section.E.5) >> +>> endobj +482 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 536.394 460.447 547.424] +/A << /S /GoTo /D (section.E.6) >> +>> endobj +483 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 519.533 468.015 532.979] +/A << /S /GoTo /D (section.E.7) >> +>> endobj +484 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 505.231 356.511 518.533] +/A << /S /GoTo /D (section.E.8) >> +>> endobj +485 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 490.785 458.104 504.087] +/A << /S /GoTo /D (section.E.9) >> +>> endobj +486 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 476.196 353.294 489.641] +/A << /S /GoTo /D (section.E.10) >> +>> endobj +487 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 461.893 421.246 474.92] +/A << /S /GoTo /D (section.E.11) >> +>> endobj +488 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [97.724 447.447 481.703 460.749] +/A << /S /GoTo /D (section.E.12) >> >> endobj 492 0 obj << -/D [490 0 R /XYZ 92.543 812.458 null] +/D [490 0 R /XYZ 79.787 812.458 null] >> endobj 489 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F43 493 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +496 0 obj << +/Length 19 +/Filter /FlateDecode +>> +stream +x3PHW0Pp2Ac( +endstream +endobj +495 0 obj << +/Type /Page +/Contents 496 0 R +/Resources 494 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 376 0 R +>> endobj +497 0 obj << +/D [495 0 R /XYZ 92.543 812.458 null] +>> endobj +494 0 obj << /ProcSet [ /PDF ] >> endobj -509 0 obj << +514 0 obj << /Length 2078 /Filter /FlateDecode >> @@ -1781,81 +1793,81 @@ k 4ut-_M_`4k>siDo&{!@nL2ߕ`Eg N}& ^O ͮ=!f [ endstream endobj -508 0 obj << +513 0 obj << /Type /Page -/Contents 509 0 R -/Resources 507 0 R +/Contents 514 0 R +/Resources 512 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R -/Annots [ 493 0 R 495 0 R 497 0 R 499 0 R 494 0 R 496 0 R 498 0 R ] +/Parent 519 0 R +/Annots [ 498 0 R 500 0 R 502 0 R 504 0 R 499 0 R 501 0 R 503 0 R ] >> endobj -493 0 obj << +498 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [268.397 434.775 275.319 449.301] /A << /S /GoTo /D (Hfootnote.1) >> >> endobj -495 0 obj << +500 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [472.88 405.883 479.802 420.409] /A << /S /GoTo /D (Hfootnote.2) >> >> endobj -497 0 obj << +502 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [445.655 367.644 452.577 382.314] /A << /S /GoTo /D (Hfootnote.3) >> >> endobj -499 0 obj << +504 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [247.735 271.766 266.345 285.211] /A << /S /GoTo /D (section.3.3) >> >> endobj -494 0 obj << +499 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 135.974 283.527 150.138] /Subtype/Link/A<> >> endobj -496 0 obj << +501 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 123.803 211.298 137.967] /Subtype/Link/A<> >> endobj -498 0 obj << +503 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 385.146 125.796] /Subtype/Link/A<> >> endobj -510 0 obj << -/D [508 0 R /XYZ 79.787 812.458 null] +515 0 obj << +/D [513 0 R /XYZ 79.787 812.458 null] >> endobj 2 0 obj << -/D [508 0 R /XYZ 80.787 749.341 null] +/D [513 0 R /XYZ 80.787 749.341 null] >> endobj -511 0 obj << -/D [508 0 R /XYZ 90.75 152.512 null] +516 0 obj << +/D [513 0 R /XYZ 90.75 152.512 null] +>> endobj +517 0 obj << +/D [513 0 R /XYZ 90.75 140.341 null] +>> endobj +518 0 obj << +/D [513 0 R /XYZ 90.75 128.171 null] >> endobj 512 0 obj << -/D [508 0 R /XYZ 90.75 140.341 null] ->> endobj -513 0 obj << -/D [508 0 R /XYZ 90.75 128.171 null] ->> endobj -507 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -529 0 obj << +534 0 obj << /Length 1326 /Filter /FlateDecode >> @@ -1868,107 +1880,107 @@ z. nt/A endstream endobj -528 0 obj << +533 0 obj << /Type /Page -/Contents 529 0 R -/Resources 527 0 R +/Contents 534 0 R +/Resources 532 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R -/Annots [ 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R ] +/Parent 519 0 R +/Annots [ 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R ] >> endobj -500 0 obj << +505 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [299.524 736.892 308.164 750.338] /A << /S /GoTo /D (chapter.2) >> >> endobj -501 0 obj << +506 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [353.225 685.09 371.835 696.121] /A << /S /GoTo /D (section.2.2) >> >> endobj -502 0 obj << +507 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [373.575 663.392 392.185 676.694] /A << /S /GoTo /D (section.2.3) >> >> endobj -503 0 obj << +508 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [372.284 647.577 390.894 661.023] /A << /S /GoTo /D (section.2.4) >> >> endobj -504 0 obj << +509 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [379.934 633.131 398.544 645.351] /A << /S /GoTo /D (section.2.5) >> >> endobj -505 0 obj << +510 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [329.915 616.378 348.525 629.68] /A << /S /GoTo /D (section.2.6) >> >> endobj -506 0 obj << +511 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [223.801 593.966 232.441 607.412] /A << /S /GoTo /D (chapter.2) >> >> endobj -515 0 obj << +520 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [251.035 519.788 259.675 533.234] /A << /S /GoTo /D (chapter.2) >> >> endobj -516 0 obj << +521 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [339.525 438.278 358.135 449.309] /A << /S /GoTo /D (section.4.6) >> >> endobj -517 0 obj << +522 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [226.061 396.698 244.671 410.144] /A << /S /GoTo /D (section.2.8) >> >> endobj -518 0 obj << +523 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [293.618 336.966 312.228 350.412] /A << /S /GoTo /D (section.2.9) >> >> endobj -519 0 obj << +524 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [305.574 260.481 330.831 273.927] /A << /S /GoTo /D (section.4.10) >> >> endobj -530 0 obj << -/D [528 0 R /XYZ 92.543 812.458 null] +535 0 obj << +/D [533 0 R /XYZ 92.543 812.458 null] >> endobj -527 0 obj << -/Font << /F38 371 0 R /F26 531 0 R /F39 382 0 R >> -/XObject << /Im1 363 0 R >> +532 0 obj << +/Font << /F38 375 0 R /F26 536 0 R /F39 386 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -540 0 obj << +545 0 obj << /Length 1342 /Filter /FlateDecode >> @@ -1981,114 +1993,114 @@ x5w T"6fҶu 2.aˤ`R)cboq'C*y&_a>RCEBE (DԥDhcbKT!<]x,ZA \RceiAJ{5Add\ND͊BOP}^9>OЉ'Y;d gǶjE`.PBJ ̔_|Ww?}@kLNJW)uu#oh:˗ЎϟL6oVO TW~GOj]>7HHcTWp7BfƪXA6J'9R9~tdfd#JwLs M® ~dN;Wr7 endstream endobj -539 0 obj << +544 0 obj << /Type /Page -/Contents 540 0 R -/Resources 538 0 R +/Contents 545 0 R +/Resources 543 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R -/Annots [ 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R ] +/Parent 519 0 R +/Annots [ 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R ] >> endobj -520 0 obj << +525 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [419.42 716.797 438.03 730.243] /A << /S /GoTo /D (section.2.4) >> >> endobj -521 0 obj << +526 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [289.111 702.316 317.691 713.346] /A << /S /GoTo /D (subsection.2.4.2) >> >> endobj -522 0 obj << +527 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [288.453 685.419 313.71 696.45] /A << /S /GoTo /D (section.4.11) >> >> endobj -523 0 obj << +528 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [279.738 668.523 304.995 679.553] /A << /S /GoTo /D (section.4.12) >> >> endobj -524 0 obj << +529 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [322.872 651.626 348.129 662.657] /A << /S /GoTo /D (section.4.13) >> >> endobj -525 0 obj << +530 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [275.663 631.629 294.273 642.66] /A << /S /GoTo /D (section.4.1) >> >> endobj -526 0 obj << +531 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [318.868 631.629 337.478 642.66] /A << /S /GoTo /D (section.4.2) >> >> endobj -532 0 obj << +537 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [233.09 555.037 251.7 568.482] /A << /S /GoTo /D (section.4.3) >> >> endobj -533 0 obj << +538 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [203.083 495.448 221.693 508.894] /A << /S /GoTo /D (section.4.8) >> >> endobj -534 0 obj << +539 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [227.651 435.86 246.261 449.305] /A << /S /GoTo /D (section.4.4) >> >> endobj -535 0 obj << +540 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [290.008 378.651 308.618 392.096] /A << /S /GoTo /D (section.4.9) >> >> endobj -536 0 obj << +541 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [260.24 319.062 268.88 332.508] /A << /S /GoTo /D (chapter.5) >> >> endobj -537 0 obj << +542 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [210.173 245.028 218.812 258.33] /A << /S /GoTo /D (chapter.3) >> >> endobj -541 0 obj << -/D [539 0 R /XYZ 79.787 812.458 null] +546 0 obj << +/D [544 0 R /XYZ 79.787 812.458 null] >> endobj -538 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +543 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -544 0 obj << +549 0 obj << /Length 19 /Filter /FlateDecode >> @@ -2096,20 +2108,20 @@ stream x3PHW0Pp2Ac( endstream endobj -543 0 obj << +548 0 obj << /Type /Page -/Contents 544 0 R -/Resources 542 0 R +/Contents 549 0 R +/Resources 547 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R ->> endobj -545 0 obj << -/D [543 0 R /XYZ 92.543 812.458 null] ->> endobj -542 0 obj << -/ProcSet [ /PDF ] +/Parent 519 0 R >> endobj 550 0 obj << +/D [548 0 R /XYZ 92.543 812.458 null] +>> endobj +547 0 obj << +/ProcSet [ /PDF ] +>> endobj +555 0 obj << /Length 1977 /Filter /FlateDecode >> @@ -2125,43 +2137,43 @@ Ui `Aqp;q"u;xh@= IX@fhw1o|o 3էFE!r$ iL(":p5FS=v[$y8BZ7epׄv]6Dէ;QIk3d#d}WELx[Yh endstream endobj -549 0 obj << +554 0 obj << /Type /Page -/Contents 550 0 R -/Resources 548 0 R +/Contents 555 0 R +/Resources 553 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R -/Annots [ 546 0 R 547 0 R ] +/Parent 519 0 R +/Annots [ 551 0 R 552 0 R ] >> endobj -546 0 obj << +551 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [400.053 530.735 418.663 544.037] /A << /S /GoTo /D (section.2.1) >> >> endobj -547 0 obj << +552 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [463.559 516.29 482.169 529.592] /A << /S /GoTo /D (section.2.2) >> >> endobj -551 0 obj << -/D [549 0 R /XYZ 79.787 812.458 null] +556 0 obj << +/D [554 0 R /XYZ 79.787 812.458 null] >> endobj 6 0 obj << -/D [549 0 R /XYZ 80.787 749.341 null] +/D [554 0 R /XYZ 80.787 749.341 null] >> endobj 10 0 obj << -/D [549 0 R /XYZ 80.787 495.61 null] +/D [554 0 R /XYZ 80.787 495.61 null] >> endobj -548 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R /F62 552 0 R >> -/XObject << /Im2 364 0 R >> +553 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R /F62 557 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -557 0 obj << +562 0 obj << /Length 1799 /Filter /FlateDecode >> @@ -2179,30 +2191,30 @@ E{ XǼ;m5c!'$68XQ}6H7&CXzAGLON?`4ꁯ!Y3" C!gL0YEn(}׸6DN/m4|*92>[/ endstream endobj -556 0 obj << +561 0 obj << /Type /Page -/Contents 557 0 R -/Resources 555 0 R +/Contents 562 0 R +/Resources 560 0 R /MediaBox [0 0 595.276 841.89] -/Parent 514 0 R -/Annots [ 553 0 R ] +/Parent 519 0 R +/Annots [ 558 0 R ] >> endobj -553 0 obj << +558 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [424.979 532.748 443.589 546.05] /A << /S /GoTo /D (section.2.4) >> >> endobj -558 0 obj << -/D [556 0 R /XYZ 92.543 812.458 null] +563 0 obj << +/D [561 0 R /XYZ 92.543 812.458 null] >> endobj -555 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F62 552 0 R /F26 531 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +560 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F62 557 0 R /F26 536 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -566 0 obj << +571 0 obj << /Length 2027 /Filter /FlateDecode >> @@ -2219,71 +2231,71 @@ xڵَ [|5SCÌrW(r^7h)y#ƪy3%GEaC %w7KO '2|&7{OWL{nCD^!b;:Z~K %Xyv?O.z[ endstream endobj -565 0 obj << +570 0 obj << /Type /Page -/Contents 566 0 R -/Resources 564 0 R +/Contents 571 0 R +/Resources 569 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R -/Annots [ 554 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R ] +/Parent 573 0 R +/Annots [ 559 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R ] >> endobj -554 0 obj << +559 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [424.244 690.536 443.941 703.838] /A << /S /GoTo /D (section.B.1) >> >> endobj -559 0 obj << +564 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [425.242 451.056 443.852 464.358] /A << /S /GoTo /D (section.2.3) >> >> endobj -560 0 obj << +565 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [446.726 413.139 465.335 426.585] /A << /S /GoTo /D (section.2.4) >> >> endobj -561 0 obj << +566 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [479.924 361.064 498.534 374.366] /A << /S /GoTo /D (section.2.5) >> >> endobj -562 0 obj << +567 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [362.717 323.291 381.327 336.593] /A << /S /GoTo /D (section.2.6) >> >> endobj -563 0 obj << +568 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [158.215 227.99 177.913 241.292] /A << /S /GoTo /D (section.B.1) >> >> endobj -567 0 obj << -/D [565 0 R /XYZ 79.787 812.458 null] +572 0 obj << +/D [570 0 R /XYZ 79.787 812.458 null] >> endobj 14 0 obj << -/D [565 0 R /XYZ 80.787 554.617 null] +/D [570 0 R /XYZ 80.787 554.617 null] >> endobj 18 0 obj << -/D [565 0 R /XYZ 80.787 193.335 null] +/D [570 0 R /XYZ 80.787 193.335 null] >> endobj -564 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +569 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -572 0 obj << +577 0 obj << /Length 2009 /Filter /FlateDecode >> @@ -2298,41 +2310,41 @@ B ߠ*^~5LkPGRqig7 K= p+sG<h[ %0盻_M8hw Eщs|)y12'f#/%@6LbN|`㤭*@I=Gh-^A endstream endobj -571 0 obj << +576 0 obj << /Type /Page -/Contents 572 0 R -/Resources 570 0 R +/Contents 577 0 R +/Resources 575 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R -/Annots [ 569 0 R 574 0 R ] +/Parent 573 0 R +/Annots [ 574 0 R 579 0 R ] >> endobj -569 0 obj << +574 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [405.896 313.252 515.485 326.554] /Subtype/Link/A<> >> endobj -574 0 obj << +579 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [92.547 298.662 245.175 312.108] /Subtype/Link/A<> >> endobj -573 0 obj << -/D [571 0 R /XYZ 92.543 812.458 null] +578 0 obj << +/D [576 0 R /XYZ 92.543 812.458 null] >> endobj 22 0 obj << -/D [571 0 R /XYZ 93.543 722.354 null] +/D [576 0 R /XYZ 93.543 722.354 null] >> endobj 26 0 obj << -/D [571 0 R /XYZ 93.543 403.234 null] +/D [576 0 R /XYZ 93.543 403.234 null] >> endobj -570 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R /F43 488 0 R >> -/XObject << /Im1 363 0 R >> +575 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R /F43 493 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -577 0 obj << +582 0 obj << /Length 1670 /Filter /FlateDecode >> @@ -2344,34 +2356,34 @@ e hO纱vZ{~}ܠGsIdwPba8ndblCh|gC@6<#fcnhAs*~) L2=g֖y/i"܁蠮l˚Pe鼟  M`P c`!| =SGi<2:L :0}^o>}~a=;.G) QTۗsb .XYҧISHd]='CcP>$ WPB_0:a#MqAdUS^7O!@c sA^6mߦ(fp+ՑyGApa$,G5\kv*{H 澎{.1<Η3>5К3_qIκt䧅L >(A&Ct%-y" endstream endobj -576 0 obj << +581 0 obj << /Type /Page -/Contents 577 0 R -/Resources 575 0 R +/Contents 582 0 R +/Resources 580 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R +/Parent 573 0 R >> endobj -578 0 obj << -/D [576 0 R /XYZ 79.787 812.458 null] +583 0 obj << +/D [581 0 R /XYZ 79.787 812.458 null] >> endobj 30 0 obj << -/D [576 0 R /XYZ 80.787 749.341 null] +/D [581 0 R /XYZ 80.787 749.341 null] >> endobj 34 0 obj << -/D [576 0 R /XYZ 80.787 490.893 null] +/D [581 0 R /XYZ 80.787 490.893 null] >> endobj 38 0 obj << -/D [576 0 R /XYZ 80.787 379.958 null] +/D [581 0 R /XYZ 80.787 379.958 null] >> endobj 42 0 obj << -/D [576 0 R /XYZ 80.787 345.587 null] +/D [581 0 R /XYZ 80.787 345.587 null] >> endobj -575 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +580 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -581 0 obj << +586 0 obj << /Length 1999 /Filter /FlateDecode >> @@ -2390,166 +2402,164 @@ c6K -r2󓠅JDݺ3u<3c"靂) K}nbjw[^ endstream endobj -580 0 obj << +585 0 obj << /Type /Page -/Contents 581 0 R -/Resources 579 0 R +/Contents 586 0 R +/Resources 584 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R +/Parent 573 0 R >> endobj -582 0 obj << -/D [580 0 R /XYZ 92.543 812.458 null] +587 0 obj << +/D [585 0 R /XYZ 92.543 812.458 null] >> endobj 46 0 obj << -/D [580 0 R /XYZ 93.543 244.32 null] +/D [585 0 R /XYZ 93.543 244.32 null] >> endobj -583 0 obj << -/D [580 0 R /XYZ 93.543 217.874 null] +588 0 obj << +/D [585 0 R /XYZ 93.543 217.874 null] >> endobj -579 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F26 531 0 R /F62 552 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +584 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F26 536 0 R /F62 557 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -590 0 obj << +595 0 obj << /Length 2025 /Filter /FlateDecode >> stream xڕXݏ6_a6^ɶq{آvzEXJqiq؉gb00ED?RaΣÜW_VoApB$̋؉ca -7BD}zÅ;Բ鳾Tݷ݊=p'~^~]1 ZdJIiokJ~&C/b =(0- yҢKCt|#̜;[LcH(N gʦ_o":+`ω! |(y؜nvks&"re_fU\XzDпnnstulKYl,&12?I |֪H$" ռU4:M퟉g {0C' cD,Crfy< OgK.ZA.Os4Gn$UZCF{z|҂wޚ3 G2\cܐክsW_p<w '/K\u dUo`YfJh q ]j`4ztɴY@r v¦Ve 0 hǡ"B!. -}DQNjBea&\gEt0uZ!z-;t䵂seΰό9sUH3#s -ؐ.ғbX|/DJPizK,tnxʌAf$?;OB@\FplUglfNᑰ7GkeB.F*ruhbDxƋ}%><vCEicW6MùK6Hc{yF;j0Tk<e$vvKŎVhǐB(>Nr@r?"H@M:OD|ɗGbR>ww^ -.@'cW;9Dzit!k-~PB/n0ϪJz`iR,(RƟ#277<2I`bf>Ǹٺ^+ڗ0dn>OS ^*^]DRw`WԵ$>HdA tͧ -7M"ph0]^ű>JKlѪ~#W71jZ3Y^@c,200n`Y~u3*XnFRtpm.t9ŗj5A}@b*xe|v*HWJF:p~/èI$J3t' 95vtLƶ683o.3,`>XY%_M3qaGnǧRGe^%P|U#J۝dϺ ^w=&$zu -ՄtvVn0}FܼSy n" Rm<7XZjYḙই`NҽËEc#zߐ(Jh2C-WO1Ӏim$͵u_J%~u{O7{Aϧ'X~?h.-f"cB?[ $~jqh5-$Zp14IO" }2M4G'鑠qj)#}sdzD5v y3umK?Do"`(;B0eN}FLcxJ7Xq1hɶuBQDƓbao+%=Ƴ_%.8"@8Ine|< +7BD}zÅ;Բ鳾Tݷ݊=p'~^~]1 ZdJIiokJ~&C/b =(0- yҢKCt|#̜;[LcH(N gʦ_o":+`ω! |(y؜nvks&"re_fU\XzDпnnstulKYl,&12?I |֪H$" ռU4:M퟉g {0C' cD,Crfy< OgK.ZA.Os4Gn$UZCF{z|҂wޚ!gd@ǘ!5[@!箾xk#N_6?'"w ȪB a $@8 i;iA<$Mϭa=>~! CE4~C]>ٝPMV6`BZv7kg ۝as窐fF!],' "}Y[^R-)!<'ڡZDrYj14ܞYI~vT 6:٪*5to;(*5#aoD\4\TĈ QJ|DyP1)B31Ʈl4rslV]7v` %(Hy`Y{'0HLJ5|!P4F}P冯ŝ)~D f̛t8ԓ/U./Ĥ|s\Z+^r*a$UוTtlyȥYJQ?uGeooHyeP:#4$|q1uW +/%` u|&Sٟ@xE1T\1"ɥdk&.kǥIj}:I/TOnDӓ`Lc}PM=:٢U3F0}z o3 b* f7Yd:aa*/fT걄݌ +<V/MJC]RrR^/j06ĤU + +tUBϕzu^8QC3HI f@q#/6OMrj)mmr9pgb]Z=gX<|jUKfݫbEOݥ"\˼2/K.G83;bu{4/,.$f{?RM&H,ϟ <tv}zayd]DA(፥x6oﱴԲ@˘[M!6$Н{F!{YQT5Be ~Z;)&(b5Ik5Z|AK +oOO +$~ .;̓]ZJ?DDŽoAH'$v=2jZH'bh6D8dz)i +N#A33ԸS8FVPyk^# gF;җ~D nD4QTw6`ʜ7&;vozFcђm셢:_5"'ˏ~,VJ{"gJ\pEp 3y> endstream endobj -589 0 obj << +594 0 obj << /Type /Page -/Contents 590 0 R -/Resources 588 0 R +/Contents 595 0 R +/Resources 593 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R -/Annots [ 584 0 R 585 0 R ] +/Parent 573 0 R +/Annots [ 589 0 R 590 0 R ] >> endobj -584 0 obj << +589 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [426.581 546.769 446.518 558.224] -/A << /S /GoTo /D (section.E.5) >> +/A << /S /GoTo /D (section.E.6) >> >> endobj -585 0 obj << +590 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [151.868 213.937 171.805 225.392] -/A << /S /GoTo /D (section.E.5) >> +/A << /S /GoTo /D (section.E.6) >> >> endobj -591 0 obj << -/D [589 0 R /XYZ 79.787 812.458 null] +596 0 obj << +/D [594 0 R /XYZ 79.787 812.458 null] >> endobj -592 0 obj << -/D [589 0 R /XYZ 80.787 521.547 null] +597 0 obj << +/D [594 0 R /XYZ 80.787 521.547 null] +>> endobj +598 0 obj << +/D [594 0 R /XYZ 80.787 188.715 null] >> endobj 593 0 obj << -/D [589 0 R /XYZ 80.787 188.715 null] ->> endobj -588 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F43 488 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F43 493 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -601 0 obj << -/Length 2511 +606 0 obj << +/Length 2513 /Filter /FlateDecode >> stream -xڕis6>P&Mn:čtN&iPyD}xɴݝ̄}jrW?^H]UUB{*=\q -7#M5-A^_n&s{qF+)Ej_H - k>;Jέ4_oT9o;!ڤ-L'ru־|Zz;ayUg?:V'< զ<+ wGv SF<5Q} s}| 2ѱzAM2\^ -6OeZY~b(jTh_M'1I#EТ}R6!G4Ud0WZH;/Wds&UTEh-&Z;Z^{>ocY&eAJܩR]+ohe׷d0&5j/pnrPdꡡ؁DΫijv̛95=>tךx6wS穩3giWG8IŧʰpdҴ8c@5|eT@(WaF*Mskl4-5+Xaz+;sim-e,[CwۚEBȠJNUI;oxΉqA׽*vmnT9/9ϵ&97)xȉ nv5%oduIj_0O7_^}~{q1(X{z,O=sA;f7}}ϖDM]9ʤuɎ#sڵt7 nO(J w6S˔/,wǢA]j0EJ:(vL_(s`7C&_`я6'&50xwaRl y"[ L䫌LhI/Dq)67hZd6=ng e0ĔQ4+>d9s:3˗d Pۏ-zǏٌY)<(QЁz0'MVnqnE9gck:5G&&RژN%4{dM%l؀͗}v$A$%C &b38"oZR s>>K 7s >X,Y)GyNSbQvC̓_:i; -SY~M -__ `τ/D@~!ZaH 1PCzL&_ s^+lq􇐆2ZLbG4%"0z\m!zɐnyf`ibYFvi@D~*RϾm///OHر3ȳ -e򘵗{sq|2(gUxY)u]_^9Bմy\x,dz0 ?3B ޒKRm{B)rPkӟN긐 n0cz͂ɲZTR -qJTC²hC]# +xڕks6>P&>͗8tr+餝 M/5oKd&žWvWBJb-|OV WQi˜鰿hor\ %PWRj{R@=6[}v[iި0rVM[7wC^I[O>5Ev-\}}v"VWDRTwWq:a)WĞru /s/&'CjgEKu@+4߫t-]g_AdS =%y2 7TpFYE`Z^ڬAeߊ,o,|]ZNθ%tljHOx} w@"Z;HԸQ} .|Cdc4hPHXyJYChzgMNjgE8S.֛EOba,+F)El Ci +B`;^ בvZ_Wq9B{Ȫ" +GST-/=XҤ,14H;Uk_['~پ_- Dz @ 2OוihEz3Ic 7Al^yVd+Iv*I*PUZ3Z"^Q1D068@~#C ]Rs*bq\&5y = Wh&z;!D+V + (In{1\MU|c=< +BEIs$$`&g'B9>"g3/@)P^-r84̅bRA줦CocOv  S;B8}Wۓh3T2Yߧ_[qAO껢eu| %K(bP@e"4y5;͜$ݢ!]yj YsլNR2,4I=9P _'D8ʕ%Hvsim-f+Lo%rg=Êe Pbr[VTЩ*YI_ tݿTŮ Q|*14$gQ:9cͮ#7ibX ˫o?.kO%`gy.=h|,ﱴْ裩ch83@Σ 8krC]w>?'0fI֤,Jc'd*|p2*n XQj#mvzyByf X #K2b +?L\vnaxcMw\l5Nv ըZx鰚Zw˪œ;a|ukM?L8E5=x7>"-(1%kJhP'KR;ܱ#/HHJhχL,fd:Mq8E޴ Oy""?]`uW-MWcs/K#z<3.IvB͹m!?A/kE٩O) -扛:t߬#d#m{EԬV~OYfZ Y Z=s +g ez&xcnVf1cQSYtg$NwV^S~-t׵FBl;ODT Niv}!t~uHIc΋e-_F˂I@,hpԠWrfP.(k7LHwCsK"e6KdD:'3uH@=Ptz~m{|yyy:Dڈ掝DuP)NǬܛC.Au(?3ߎJamx48< &T_#xK~.JIB yAM%7P2:B6g4 &j!KSIj*)QELz!e4=cq*lC/?H^o/ endstream endobj -600 0 obj << +605 0 obj << /Type /Page -/Contents 601 0 R -/Resources 599 0 R +/Contents 606 0 R +/Resources 604 0 R /MediaBox [0 0 595.276 841.89] -/Parent 568 0 R -/Annots [ 586 0 R 587 0 R 594 0 R 595 0 R 596 0 R ] +/Parent 573 0 R +/Annots [ 591 0 R 592 0 R 599 0 R 600 0 R 601 0 R ] >> endobj -586 0 obj << +591 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [333.803 719.428 352.413 732.73] /A << /S /GoTo /D (section.3.7) >> >> endobj -587 0 obj << +592 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [315.138 647.198 333.748 660.5] /A << /S /GoTo /D (section.3.2) >> >> endobj -594 0 obj << +599 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [297.503 298.686 326.083 311.988] /A << /S /GoTo /D (subsection.2.3.3) >> >> endobj -595 0 obj << +600 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [459.027 244.349 478.964 255.804] -/A << /S /GoTo /D (section.E.9) >> +/Rect [459.027 244.349 485.611 255.804] +/A << /S /GoTo /D (section.E.10) >> >> endobj -596 0 obj << +601 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [119.781 163.832 458.909 176.459] /Subtype/Link/A<> >> endobj -602 0 obj << -/D [600 0 R /XYZ 92.543 812.458 null] +607 0 obj << +/D [605 0 R /XYZ 92.543 812.458 null] >> endobj -603 0 obj << -/D [600 0 R /XYZ 93.543 749.341 null] +608 0 obj << +/D [605 0 R /XYZ 93.543 749.341 null] >> endobj -604 0 obj << -/D [600 0 R /XYZ 93.543 626.803 null] +609 0 obj << +/D [605 0 R /XYZ 93.543 626.803 null] >> endobj -605 0 obj << -/D [600 0 R /XYZ 93.543 519.51 null] +610 0 obj << +/D [605 0 R /XYZ 93.543 519.51 null] >> endobj 50 0 obj << -/D [600 0 R /XYZ 93.543 423.211 null] +/D [605 0 R /XYZ 93.543 423.211 null] >> endobj -606 0 obj << -/D [600 0 R /XYZ 93.543 223.954 null] +611 0 obj << +/D [605 0 R /XYZ 93.543 223.954 null] >> endobj -607 0 obj << -/D [600 0 R /XYZ 93.543 143.437 null] +612 0 obj << +/D [605 0 R /XYZ 93.543 143.437 null] >> endobj -599 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +604 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -613 0 obj << +618 0 obj << /Length 2276 /Filter /FlateDecode >> @@ -2564,74 +2574,74 @@ m <#UDlɢ珏,o` 5.!{gM;0y{^,7l}J\ɵcFU):a?%fK*S.3UIs=r endstream endobj -612 0 obj << +617 0 obj << /Type /Page -/Contents 613 0 R -/Resources 611 0 R +/Contents 618 0 R +/Resources 616 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R -/Annots [ 597 0 R 608 0 R 610 0 R 598 0 R 616 0 R 609 0 R ] +/Parent 623 0 R +/Annots [ 602 0 R 613 0 R 615 0 R 603 0 R 621 0 R 614 0 R ] >> endobj -597 0 obj << +602 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [374.263 661.501 381.185 676.17] /A << /S /GoTo /D (Hfootnote.4) >> >> endobj -608 0 obj << +613 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [492.483 500.288 499.405 514.958] /A << /S /GoTo /D (Hfootnote.5) >> >> endobj -610 0 obj << +615 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [303.522 383.979 322.132 397.425] /A << /S /GoTo /D (section.5.1) >> >> endobj -598 0 obj << +603 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 137.811 502.729 149.922] /Subtype/Link/A<> >> endobj -616 0 obj << +621 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [94.735 123.803 138.571 135.754] /Subtype/Link/A<> >> endobj -609 0 obj << +614 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 223.253 125.796] /Subtype/Link/A<> >> endobj -614 0 obj << -/D [612 0 R /XYZ 79.787 812.458 null] +619 0 obj << +/D [617 0 R /XYZ 79.787 812.458 null] >> endobj 54 0 obj << -/D [612 0 R /XYZ 80.787 573.317 null] +/D [617 0 R /XYZ 80.787 573.317 null] >> endobj 58 0 obj << -/D [612 0 R /XYZ 80.787 269.636 null] +/D [617 0 R /XYZ 80.787 269.636 null] >> endobj -615 0 obj << -/D [612 0 R /XYZ 90.75 152.297 null] +620 0 obj << +/D [617 0 R /XYZ 90.75 152.297 null] >> endobj -617 0 obj << -/D [612 0 R /XYZ 90.75 128.171 null] +622 0 obj << +/D [617 0 R /XYZ 90.75 128.171 null] >> endobj -611 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F43 488 0 R >> -/XObject << /Im2 364 0 R >> +616 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F43 493 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -627 0 obj << +632 0 obj << /Length 1963 /Filter /FlateDecode >> @@ -2648,63 +2658,63 @@ ZYc 酣Ji} u;Q7 NL}{YS$xN.\TƕqXROk=v>>#_ 0un9?==_ -L ߠ̰ endstream endobj -626 0 obj << +631 0 obj << /Type /Page -/Contents 627 0 R -/Resources 625 0 R +/Contents 632 0 R +/Resources 630 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R -/Annots [ 619 0 R 620 0 R 621 0 R 622 0 R ] +/Parent 623 0 R +/Annots [ 624 0 R 625 0 R 626 0 R 627 0 R ] >> endobj -619 0 obj << +624 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [140.623 561.018 159.233 574.464] /A << /S /GoTo /D (section.2.6) >> >> endobj -620 0 obj << +625 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [398.846 372.677 418.544 383.708] /A << /S /GoTo /D (section.B.6) >> >> endobj -621 0 obj << +626 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [332.754 129.42 351.364 140.451] /A << /S /GoTo /D (section.5.1) >> >> endobj -622 0 obj << +627 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [375.303 129.42 393.913 140.451] /A << /S /GoTo /D (section.5.2) >> >> endobj -628 0 obj << -/D [626 0 R /XYZ 92.543 812.458 null] +633 0 obj << +/D [631 0 R /XYZ 92.543 812.458 null] >> endobj -629 0 obj << -/D [626 0 R /XYZ 93.543 749.341 null] +634 0 obj << +/D [631 0 R /XYZ 93.543 749.341 null] >> endobj 62 0 obj << -/D [626 0 R /XYZ 93.543 671.641 null] ->> endobj -630 0 obj << -/D [626 0 R /XYZ 93.543 514.787 null] ->> endobj -66 0 obj << -/D [626 0 R /XYZ 93.543 351.251 null] ->> endobj -625 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +/D [631 0 R /XYZ 93.543 671.641 null] >> endobj 635 0 obj << +/D [631 0 R /XYZ 93.543 514.787 null] +>> endobj +66 0 obj << +/D [631 0 R /XYZ 93.543 351.251 null] +>> endobj +630 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +640 0 obj << /Length 2106 /Filter /FlateDecode >> @@ -2724,56 +2734,56 @@ z ۪V_N*Tӕpc*3[wGPYG7܄Pӡ]P53}qCwҁשzfg+TMV>L|}Y ˮ1hhƧ5j!^r2ɋDlox~dː+zLdsM'ΔlbMjiǧHBId>%[^T1I3L;>EG,ᒎzG`')KXD=~,Gb3j4 ]Va`~~^ԳLca 9ӑOkx endstream endobj -634 0 obj << +639 0 obj << /Type /Page -/Contents 635 0 R -/Resources 633 0 R +/Contents 640 0 R +/Resources 638 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R -/Annots [ 623 0 R 631 0 R 632 0 R 624 0 R ] +/Parent 623 0 R +/Annots [ 628 0 R 636 0 R 637 0 R 629 0 R ] >> endobj -623 0 obj << +628 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [385.293 675.408 392.215 690.078] /A << /S /GoTo /D (Hfootnote.6) >> >> endobj -631 0 obj << +636 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [171.182 417.324 189.792 430.77] /A << /S /GoTo /D (section.5.1) >> >> endobj -632 0 obj << +637 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [436.301 277.566 455.999 290.193] /A << /S /GoTo /D (section.B.5) >> >> endobj -624 0 obj << +629 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 312.917 125.796] /Subtype/Link/A<> >> endobj -636 0 obj << -/D [634 0 R /XYZ 79.787 812.458 null] +641 0 obj << +/D [639 0 R /XYZ 79.787 812.458 null] >> endobj 70 0 obj << -/D [634 0 R /XYZ 80.787 749.341 null] +/D [639 0 R /XYZ 80.787 749.341 null] >> endobj -637 0 obj << -/D [634 0 R /XYZ 90.75 128.171 null] +642 0 obj << +/D [639 0 R /XYZ 90.75 128.171 null] >> endobj -633 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +638 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -640 0 obj << +645 0 obj << /Length 19 /Filter /FlateDecode >> @@ -2781,20 +2791,20 @@ stream x3PHW0Pp2Ac( endstream endobj -639 0 obj << +644 0 obj << /Type /Page -/Contents 640 0 R -/Resources 638 0 R +/Contents 645 0 R +/Resources 643 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R +/Parent 623 0 R >> endobj -641 0 obj << -/D [639 0 R /XYZ 92.543 812.458 null] +646 0 obj << +/D [644 0 R /XYZ 92.543 812.458 null] >> endobj -638 0 obj << +643 0 obj << /ProcSet [ /PDF ] >> endobj -653 0 obj << +658 0 obj << /Length 2310 /Filter /FlateDecode >> @@ -2812,49 +2822,49 @@ K'# #n"5CAh2Sٳz7 zCҭ80-k@ғ@+E.&bt5ˆјMer11Œ_w{ ;K@Q6L<40RGCEt;'&(r©QkQd"g_r~^bZt1V pKh|iU!zh-`F8m 6{SdHG`Xr 㹛9d;CNBm܋ 2k1r{ũRt'cᚘ3(Sg?H*9!-vGDQ%m#q"Oo}!pi3brÁ*[0s@<=ա#0O/_UXcp ?,YADs^p;oH|%y 8 ZY\[S0ȷgH6bbg[S$wOO^ p4,NbsAh&LWȈs endstream endobj -652 0 obj << +657 0 obj << /Type /Page -/Contents 653 0 R -/Resources 651 0 R +/Contents 658 0 R +/Resources 656 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R -/Annots [ 642 0 R 643 0 R ] +/Parent 623 0 R +/Annots [ 647 0 R 648 0 R ] >> endobj -642 0 obj << +647 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [151.664 534.756 170.274 545.787] /A << /S /GoTo /D (section.3.3) >> >> endobj -643 0 obj << +648 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [206.885 215.131 225.495 228.576] /A << /S /GoTo /D (section.3.2) >> >> endobj -654 0 obj << -/D [652 0 R /XYZ 79.787 812.458 null] +659 0 obj << +/D [657 0 R /XYZ 79.787 812.458 null] >> endobj 74 0 obj << -/D [652 0 R /XYZ 80.787 749.341 null] +/D [657 0 R /XYZ 80.787 749.341 null] >> endobj 78 0 obj << -/D [652 0 R /XYZ 80.787 514.865 null] +/D [657 0 R /XYZ 80.787 514.865 null] >> endobj 82 0 obj << -/D [652 0 R /XYZ 80.787 195.24 null] +/D [657 0 R /XYZ 80.787 195.24 null] >> endobj -655 0 obj << -/D [652 0 R /XYZ 80.787 124.995 null] +660 0 obj << +/D [657 0 R /XYZ 80.787 124.995 null] >> endobj -651 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +656 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -680 0 obj << +685 0 obj << /Length 1938 /Filter /FlateDecode >> @@ -2867,93 +2877,93 @@ xڽYmo ]!;DA&M~E^ֻ@3H[ot5Nh2X\eη5.jcYdMFycKEVw2j#>QP`mcԯd?djWo( Cy W&5Ќ|Rй ,H^u endstream endobj -679 0 obj << +684 0 obj << /Type /Page -/Contents 680 0 R -/Resources 678 0 R +/Contents 685 0 R +/Resources 683 0 R /MediaBox [0 0 595.276 841.89] -/Parent 618 0 R -/Annots [ 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 656 0 R 657 0 R 658 0 R ] +/Parent 623 0 R +/Annots [ 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 661 0 R 662 0 R 663 0 R ] >> endobj -644 0 obj << +649 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 667.528 350.728 681.152] /A << /S /GoTo /D (subsection.2.3.2) >> >> endobj -645 0 obj << +650 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 617.317 342.419 630.94] /A << /S /GoTo /D (section.3.3) >> >> endobj -646 0 obj << +651 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [558.237 559.932 574.077 576.271] /A << /S /GoTo /D (section.3.1) >> >> endobj -647 0 obj << +652 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 521.675 342.419 535.299] /A << /S /GoTo /D (section.3.1) >> >> endobj -648 0 obj << +653 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 495.374 342.419 508.998] /A << /S /GoTo /D (section.3.3) >> >> endobj -649 0 obj << +654 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 323.22 342.419 336.844] /A << /S /GoTo /D (section.3.3) >> >> endobj -650 0 obj << +655 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 218.015 342.419 231.639] /A << /S /GoTo /D (section.4.4) >> >> endobj -656 0 obj << +661 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 191.713 342.419 205.337] /A << /S /GoTo /D (section.3.7) >> >> endobj -657 0 obj << +662 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [352.551 139.111 368.391 152.735] /A << /S /GoTo /D (section.4.8) >> >> endobj -658 0 obj << +663 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 112.81 342.419 126.433] /A << /S /GoTo /D (section.4.8) >> >> endobj -681 0 obj << -/D [679 0 R /XYZ 92.543 812.458 null] +686 0 obj << +/D [684 0 R /XYZ 92.543 812.458 null] >> endobj -678 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> +683 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -684 0 obj << +689 0 obj << /Length 1731 /Filter /FlateDecode >> @@ -2969,100 +2979,100 @@ sI o\!v7mqW"kbyHQY+oe8Qtϓ)Ĕ:^{> endstream endobj -683 0 obj << +688 0 obj << /Type /Page -/Contents 684 0 R -/Resources 682 0 R +/Contents 689 0 R +/Resources 687 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R ] +/Parent 691 0 R +/Annots [ 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R ] >> endobj -659 0 obj << +664 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 693.829 329.663 707.453] /A << /S /GoTo /D (section.4.8) >> >> endobj -660 0 obj << +665 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 667.528 329.663 681.152] /A << /S /GoTo /D (section.4.9) >> >> endobj -661 0 obj << +666 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 641.227 329.663 654.851] /A << /S /GoTo /D (section.4.3) >> >> endobj -662 0 obj << +667 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 602.97 329.663 616.594] /A << /S /GoTo /D (section.3.4) >> >> endobj -663 0 obj << +668 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 418.861 329.663 432.485] /A << /S /GoTo /D (section.3.4) >> >> endobj -664 0 obj << +669 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 392.56 329.663 406.184] /A << /S /GoTo /D (section.3.6) >> >> endobj -665 0 obj << +670 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 339.957 338.928 353.581] /A << /S /GoTo /D (subsection.D.4.2) >> >> endobj -666 0 obj << +671 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 301.701 338.928 315.325] /A << /S /GoTo /D (subsection.D.4.2) >> >> endobj -667 0 obj << +672 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 275.399 338.928 289.023] /A << /S /GoTo /D (subsection.D.4.2) >> >> endobj -668 0 obj << +673 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 186.931 329.663 200.555] /A << /S /GoTo /D (section.4.1) >> >> endobj -669 0 obj << +674 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [313.823 122.373 329.663 135.997] /A << /S /GoTo /D (section.4.2) >> >> endobj -685 0 obj << -/D [683 0 R /XYZ 79.787 812.458 null] +690 0 obj << +/D [688 0 R /XYZ 79.787 812.458 null] >> endobj -682 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +687 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -689 0 obj << +694 0 obj << /Length 1935 /Filter /FlateDecode >> @@ -3081,79 +3091,79 @@ v GCG# endstream endobj -688 0 obj << +693 0 obj << /Type /Page -/Contents 689 0 R -/Resources 687 0 R +/Contents 694 0 R +/Resources 692 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R ] +/Parent 691 0 R +/Annots [ 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R ] >> endobj -670 0 obj << +675 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 667.528 342.419 681.152] /A << /S /GoTo /D (section.4.7) >> >> endobj -671 0 obj << +676 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 591.015 342.419 604.639] /A << /S /GoTo /D (section.2.6) >> >> endobj -672 0 obj << +677 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 512.111 342.419 525.735] /A << /S /GoTo /D (section.5.1) >> >> endobj -673 0 obj << +678 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 485.81 342.419 499.434] /A << /S /GoTo /D (section.5.3) >> >> endobj -674 0 obj << +679 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 459.509 342.419 473.133] /A << /S /GoTo /D (section.5.2) >> >> endobj -675 0 obj << +680 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 406.906 350.728 420.53] /A << /S /GoTo /D (section*.2) >> >> endobj -676 0 obj << +681 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 316.047 342.419 329.671] /A << /S /GoTo /D (section.2.3) >> >> endobj -677 0 obj << +682 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [326.579 289.746 342.419 303.369] /A << /S /GoTo /D (section.2.3) >> >> endobj -690 0 obj << -/D [688 0 R /XYZ 92.543 812.458 null] +695 0 obj << +/D [693 0 R /XYZ 92.543 812.458 null] >> endobj -687 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> +692 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -695 0 obj << +700 0 obj << /Length 2828 /Filter /FlateDecode >> @@ -3173,33 +3183,33 @@ C[ jw79QLK:']C!6Nhn! XO UWY endstream endobj -694 0 obj << +699 0 obj << /Type /Page -/Contents 695 0 R -/Resources 693 0 R +/Contents 700 0 R +/Resources 698 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 691 0 R ] +/Parent 691 0 R +/Annots [ 696 0 R ] >> endobj -691 0 obj << +696 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [318.819 112.559 337.429 126.005] /A << /S /GoTo /D (section.5.1) >> >> endobj -696 0 obj << -/D [694 0 R /XYZ 79.787 812.458 null] +701 0 obj << +/D [699 0 R /XYZ 79.787 812.458 null] >> endobj 86 0 obj << -/D [694 0 R /XYZ 80.787 749.341 null] +/D [699 0 R /XYZ 80.787 749.341 null] >> endobj -693 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F43 488 0 R /F11 697 0 R /F8 698 0 R /F26 531 0 R /F24 699 0 R >> -/XObject << /Im2 364 0 R >> +698 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F43 493 0 R /F11 702 0 R /F8 703 0 R /F26 536 0 R /F24 704 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -704 0 obj << +709 0 obj << /Length 2280 /Filter /FlateDecode >> @@ -3216,46 +3226,46 @@ G p 7xO4$krICR j&O9 2~b3~B*IZЃAr0K°1`ɣ{qBJ*"d 18ͷ4:B=LϼKKgےL+f:OD-PR*NG=ibZ8r=@mc_|T=uO.ow!pw endstream endobj -703 0 obj << +708 0 obj << /Type /Page -/Contents 704 0 R -/Resources 702 0 R +/Contents 709 0 R +/Resources 707 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 692 0 R 700 0 R ] +/Parent 691 0 R +/Annots [ 697 0 R 705 0 R ] >> endobj -692 0 obj << +697 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [449.129 646.298 467.739 659.744] /A << /S /GoTo /D (section.5.1) >> >> endobj -700 0 obj << +705 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [115.142 576.388 133.752 587.418] /A << /S /GoTo /D (section.3.2) >> >> endobj -705 0 obj << -/D [703 0 R /XYZ 92.543 812.458 null] +710 0 obj << +/D [708 0 R /XYZ 92.543 812.458 null] >> endobj 90 0 obj << -/D [703 0 R /XYZ 93.543 749.341 null] +/D [708 0 R /XYZ 93.543 749.341 null] >> endobj 94 0 obj << -/D [703 0 R /XYZ 93.543 554.893 null] +/D [708 0 R /XYZ 93.543 554.893 null] >> endobj 98 0 obj << -/D [703 0 R /XYZ 93.543 236.987 null] +/D [708 0 R /XYZ 93.543 236.987 null] >> endobj -702 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R /F43 488 0 R >> -/XObject << /Im1 363 0 R >> +707 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R /F43 493 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -711 0 obj << +716 0 obj << /Length 1994 /Filter /FlateDecode >> @@ -3272,62 +3282,62 @@ dɡ Jc%I06QT d endstream endobj -710 0 obj << +715 0 obj << /Type /Page -/Contents 711 0 R -/Resources 709 0 R +/Contents 716 0 R +/Resources 714 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 701 0 R 706 0 R 707 0 R 708 0 R ] +/Parent 691 0 R +/Annots [ 706 0 R 711 0 R 712 0 R 713 0 R ] >> endobj -701 0 obj << +706 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [281.427 719.428 300.037 732.73] /A << /S /GoTo /D (section.3.2) >> >> endobj -706 0 obj << +711 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [231.645 411.989 250.255 425.435] /A << /S /GoTo /D (section.3.2) >> >> endobj -707 0 obj << +712 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [166.393 330.359 173.315 342.614] /A << /S /GoTo /D (Hfootnote.7) >> >> endobj -708 0 obj << +713 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 223.253 125.796] /Subtype/Link/A<> >> endobj -712 0 obj << -/D [710 0 R /XYZ 79.787 812.458 null] +717 0 obj << +/D [715 0 R /XYZ 79.787 812.458 null] >> endobj 102 0 obj << -/D [710 0 R /XYZ 80.787 638.43 null] ->> endobj -713 0 obj << -/D [710 0 R /XYZ 80.787 201.389 null] ->> endobj -714 0 obj << -/D [710 0 R /XYZ 80.787 163.782 null] ->> endobj -715 0 obj << -/D [710 0 R /XYZ 90.75 128.171 null] ->> endobj -709 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F26 531 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] +/D [715 0 R /XYZ 80.787 638.43 null] >> endobj 718 0 obj << +/D [715 0 R /XYZ 80.787 201.389 null] +>> endobj +719 0 obj << +/D [715 0 R /XYZ 80.787 163.782 null] +>> endobj +720 0 obj << +/D [715 0 R /XYZ 90.75 128.171 null] +>> endobj +714 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F26 536 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +723 0 obj << /Length 1547 /Filter /FlateDecode >> @@ -3337,28 +3347,28 @@ xڥW H]3{z) U|zۼ'+:eI%4`"NlwCl^ ۙxĶɀQ$Sv*-31lcE~툽: j,BLS+ܦL[HapF.c=*?v]e5F qocMvlUd7cE#T2G~Xr,tRF)+5J6v@yԥ%a=sݮ3m6& dD$MIF\t0SdښMGy7&v"4B*IV+M?bD,M(6`نmH[ǞtJY=m'5i#@-aS܄Z6 \#v~sfa3,-]@tsȴPV®P #pQ }p~w{Lscf`H6=}aZf}]`GP{B- endstream endobj -717 0 obj << +722 0 obj << /Type /Page -/Contents 718 0 R -/Resources 716 0 R +/Contents 723 0 R +/Resources 721 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R +/Parent 691 0 R >> endobj -719 0 obj << -/D [717 0 R /XYZ 92.543 812.458 null] +724 0 obj << +/D [722 0 R /XYZ 92.543 812.458 null] >> endobj -720 0 obj << -/D [717 0 R /XYZ 93.543 749.341 null] +725 0 obj << +/D [722 0 R /XYZ 93.543 749.341 null] >> endobj 106 0 obj << -/D [717 0 R /XYZ 93.543 640.757 null] +/D [722 0 R /XYZ 93.543 640.757 null] >> endobj -716 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R /F43 488 0 R >> -/XObject << /Im1 363 0 R >> +721 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R /F43 493 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -726 0 obj << +731 0 obj << /Length 1790 /Filter /FlateDecode >> @@ -3371,49 +3381,49 @@ S .tT|EGpj4ȿjJ7tLF׀6\ +5`gDm8"P,} N}zOfDG) ~ge@Ţt?bDpP ?ñ1fm.\wE~G4"FUıTQ'5dĄ73'1M@o \p;L lӔ*aM=Q_Z4`8MĂgޠLOB|o@@VHv<"(U ~ȱXAԫ+'Y&qdA'fGӸ endstream endobj -725 0 obj << +730 0 obj << /Type /Page -/Contents 726 0 R -/Resources 724 0 R +/Contents 731 0 R +/Resources 729 0 R /MediaBox [0 0 595.276 841.89] -/Parent 730 0 R -/Annots [ 721 0 R 722 0 R ] +/Parent 735 0 R +/Annots [ 726 0 R 727 0 R ] >> endobj -721 0 obj << +726 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [485.458 556.128 495.424 569.43] /A << /S /GoTo /D (appendix.A) >> >> endobj -722 0 obj << +727 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [147.576 247.177 167.812 260.479] /A << /S /GoTo /D (section.C.1) >> >> endobj -727 0 obj << -/D [725 0 R /XYZ 79.787 812.458 null] +732 0 obj << +/D [730 0 R /XYZ 79.787 812.458 null] >> endobj 110 0 obj << -/D [725 0 R /XYZ 80.787 749.341 null] +/D [730 0 R /XYZ 80.787 749.341 null] >> endobj 114 0 obj << -/D [725 0 R /XYZ 80.787 615.066 null] +/D [730 0 R /XYZ 80.787 615.066 null] >> endobj -728 0 obj << -/D [725 0 R /XYZ 80.787 381.649 null] +733 0 obj << +/D [730 0 R /XYZ 80.787 381.649 null] +>> endobj +734 0 obj << +/D [730 0 R /XYZ 80.787 189.799 null] >> endobj 729 0 obj << -/D [725 0 R /XYZ 80.787 189.799 null] ->> endobj -724 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -735 0 obj << +740 0 obj << /Length 2289 /Filter /FlateDecode >> @@ -3433,53 +3443,53 @@ a K$A#ݼ,C]0P(Il~%Hj endstream endobj -734 0 obj << +739 0 obj << /Type /Page -/Contents 735 0 R -/Resources 733 0 R +/Contents 740 0 R +/Resources 738 0 R /MediaBox [0 0 595.276 841.89] -/Parent 730 0 R -/Annots [ 723 0 R 731 0 R 732 0 R ] +/Parent 735 0 R +/Annots [ 728 0 R 736 0 R 737 0 R ] >> endobj -723 0 obj << +728 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [245.951 680.604 266.187 693.906] /A << /S /GoTo /D (section.C.3) >> >> endobj -731 0 obj << +736 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [419.155 504.272 439.391 517.574] /A << /S /GoTo /D (section.C.4) >> >> endobj -732 0 obj << +737 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [301.63 390.257 321.866 403.703] /A << /S /GoTo /D (section.C.4) >> >> endobj -736 0 obj << -/D [734 0 R /XYZ 92.543 812.458 null] +741 0 obj << +/D [739 0 R /XYZ 92.543 812.458 null] >> endobj -737 0 obj << -/D [734 0 R /XYZ 93.543 727.52 null] +742 0 obj << +/D [739 0 R /XYZ 93.543 727.52 null] >> endobj 118 0 obj << -/D [734 0 R /XYZ 93.543 646.11 null] +/D [739 0 R /XYZ 93.543 646.11 null] >> endobj 122 0 obj << -/D [734 0 R /XYZ 93.543 179.544 null] +/D [739 0 R /XYZ 93.543 179.544 null] >> endobj -733 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +738 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -741 0 obj << +746 0 obj << /Length 1854 /Filter /FlateDecode >> @@ -3496,42 +3506,42 @@ xڽXYo & ~>~yd3Pf-焦3.~ e ` Ňfצ퓞yhf;MM/Hli4Om`!Wf5O~yrp}Q> endobj -738 0 obj << +743 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [485.458 703.609 495.424 717.055] /A << /S /GoTo /D (appendix.A) >> >> endobj -742 0 obj << -/D [740 0 R /XYZ 79.787 812.458 null] +747 0 obj << +/D [745 0 R /XYZ 79.787 812.458 null] >> endobj -743 0 obj << -/D [740 0 R /XYZ 80.787 633.38 null] +748 0 obj << +/D [745 0 R /XYZ 80.787 633.38 null] >> endobj 126 0 obj << -/D [740 0 R /XYZ 80.787 544.772 null] +/D [745 0 R /XYZ 80.787 544.772 null] >> endobj -744 0 obj << -/D [740 0 R /XYZ 80.787 418.515 null] +749 0 obj << +/D [745 0 R /XYZ 80.787 418.515 null] >> endobj 130 0 obj << -/D [740 0 R /XYZ 80.787 361.215 null] +/D [745 0 R /XYZ 80.787 361.215 null] >> endobj -739 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F26 531 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +744 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F26 536 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -747 0 obj << +752 0 obj << /Length 2445 /Filter /FlateDecode >> @@ -3553,22 +3563,22 @@ K /|զ.\- q =0mhF @>OWHX+&mσBza'Fb_@dlh4> endstream endobj -746 0 obj << +751 0 obj << /Type /Page -/Contents 747 0 R -/Resources 745 0 R +/Contents 752 0 R +/Resources 750 0 R /MediaBox [0 0 595.276 841.89] -/Parent 730 0 R +/Parent 735 0 R >> endobj -748 0 obj << -/D [746 0 R /XYZ 92.543 812.458 null] +753 0 obj << +/D [751 0 R /XYZ 92.543 812.458 null] >> endobj -745 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F62 552 0 R /F43 488 0 R >> -/XObject << /Im1 363 0 R >> +750 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F62 557 0 R /F43 493 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -751 0 obj << +756 0 obj << /Length 2072 /Filter /FlateDecode >> @@ -3585,22 +3595,22 @@ g0 ;h?3z s:__?f;wh[V) 0'YIdBEcJ+*uo뢞O~T~wcZ(PM7}Dh97Eҟ endstream endobj -750 0 obj << +755 0 obj << /Type /Page -/Contents 751 0 R -/Resources 749 0 R +/Contents 756 0 R +/Resources 754 0 R /MediaBox [0 0 595.276 841.89] -/Parent 730 0 R +/Parent 735 0 R >> endobj -752 0 obj << -/D [750 0 R /XYZ 79.787 812.458 null] +757 0 obj << +/D [755 0 R /XYZ 79.787 812.458 null] >> endobj -749 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F62 552 0 R /F43 488 0 R >> -/XObject << /Im2 364 0 R >> +754 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F62 557 0 R /F43 493 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -755 0 obj << +760 0 obj << /Length 2102 /Filter /FlateDecode >> @@ -3623,28 +3633,28 @@ xڥX W"A BZΘ` З4 8ث&,nnh)UiW f߻~htZ ^_(cjZ4*dmwK%p5M}"pS11[;LZ1U.kVSF ]mjTb>"/>/Y #l* %> endobj -756 0 obj << -/D [754 0 R /XYZ 92.543 812.458 null] ->> endobj -757 0 obj << -/D [754 0 R /XYZ 93.543 527.146 null] ->> endobj -758 0 obj << -/D [754 0 R /XYZ 93.543 282.078 null] ->> endobj -753 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +/Parent 735 0 R >> endobj 761 0 obj << +/D [759 0 R /XYZ 92.543 812.458 null] +>> endobj +762 0 obj << +/D [759 0 R /XYZ 93.543 527.146 null] +>> endobj +763 0 obj << +/D [759 0 R /XYZ 93.543 282.078 null] +>> endobj +758 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +766 0 obj << /Length 2382 /Filter /FlateDecode >> @@ -3662,31 +3672,31 @@ hZ2єI , endstream endobj -760 0 obj << +765 0 obj << /Type /Page -/Contents 761 0 R -/Resources 759 0 R +/Contents 766 0 R +/Resources 764 0 R /MediaBox [0 0 595.276 841.89] -/Parent 766 0 R +/Parent 771 0 R >> endobj -762 0 obj << -/D [760 0 R /XYZ 79.787 812.458 null] +767 0 obj << +/D [765 0 R /XYZ 79.787 812.458 null] >> endobj -763 0 obj << -/D [760 0 R /XYZ 80.787 727.593 null] +768 0 obj << +/D [765 0 R /XYZ 80.787 727.593 null] +>> endobj +769 0 obj << +/D [765 0 R /XYZ 80.787 488.314 null] +>> endobj +770 0 obj << +/D [765 0 R /XYZ 80.787 355.068 null] >> endobj 764 0 obj << -/D [760 0 R /XYZ 80.787 488.314 null] ->> endobj -765 0 obj << -/D [760 0 R /XYZ 80.787 355.068 null] ->> endobj -759 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F43 488 0 R >> -/XObject << /Im2 364 0 R >> +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F43 493 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -772 0 obj << +777 0 obj << /Length 2215 /Filter /FlateDecode >> @@ -3702,50 +3712,50 @@ HE6 M˦zct s[Y۵"O>εCo7p;@TnZc_tO?vMH 6Jkm@4J5g0ڗMl߁B]DC[r8yc"t}{x4\ uߐK#r3hu^oM3w3)'@ XS by&qqT1lpc7,N|T×?,xSi endstream endobj -771 0 obj << +776 0 obj << /Type /Page -/Contents 772 0 R -/Resources 770 0 R +/Contents 777 0 R +/Resources 775 0 R /MediaBox [0 0 595.276 841.89] -/Parent 766 0 R -/Annots [ 767 0 R 768 0 R 769 0 R ] +/Parent 771 0 R +/Annots [ 772 0 R 773 0 R 774 0 R ] >> endobj -767 0 obj << +772 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [384.614 554.838 403.224 568.009] /A << /S /GoTo /D (section.2.9) >> >> endobj -768 0 obj << +773 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [209.336 441.57 227.946 454.872] /A << /S /GoTo /D (section.2.1) >> >> endobj -769 0 obj << +774 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [108.483 112.703 128.42 126.005] /A << /S /GoTo /D (section.A.2) >> >> endobj -773 0 obj << -/D [771 0 R /XYZ 92.543 812.458 null] +778 0 obj << +/D [776 0 R /XYZ 92.543 812.458 null] >> endobj -774 0 obj << -/D [771 0 R /XYZ 93.543 483.071 null] ->> endobj -775 0 obj << -/D [771 0 R /XYZ 93.543 231.263 null] ->> endobj -770 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F43 488 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +779 0 obj << +/D [776 0 R /XYZ 93.543 483.071 null] >> endobj 780 0 obj << +/D [776 0 R /XYZ 93.543 231.263 null] +>> endobj +775 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F43 493 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +785 0 obj << /Length 1828 /Filter /FlateDecode >> @@ -3760,39 +3770,39 @@ c +pi;kII.6@-Nj_:`(S0C۳N endstream endobj -779 0 obj << +784 0 obj << /Type /Page -/Contents 780 0 R -/Resources 778 0 R +/Contents 785 0 R +/Resources 783 0 R /MediaBox [0 0 595.276 841.89] -/Parent 766 0 R -/Annots [ 776 0 R ] +/Parent 771 0 R +/Annots [ 781 0 R ] >> endobj -776 0 obj << +781 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [275.937 669.327 295.874 682.772] /A << /S /GoTo /D (section.A.2) >> >> endobj -781 0 obj << -/D [779 0 R /XYZ 79.787 812.458 null] +786 0 obj << +/D [784 0 R /XYZ 79.787 812.458 null] >> endobj 134 0 obj << -/D [779 0 R /XYZ 80.787 572.572 null] +/D [784 0 R /XYZ 80.787 572.572 null] >> endobj -782 0 obj << -/D [779 0 R /XYZ 80.787 354.278 null] +787 0 obj << +/D [784 0 R /XYZ 80.787 354.278 null] >> endobj 138 0 obj << -/D [779 0 R /XYZ 80.787 315.077 null] +/D [784 0 R /XYZ 80.787 315.077 null] >> endobj -778 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F26 531 0 R /F38 371 0 R /F62 552 0 R >> -/XObject << /Im2 364 0 R >> +783 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F26 536 0 R /F38 375 0 R /F62 557 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -785 0 obj << +790 0 obj << /Length 1981 /Filter /FlateDecode >> @@ -3810,35 +3820,35 @@ a`A N" fu/k endstream endobj -784 0 obj << +789 0 obj << /Type /Page -/Contents 785 0 R -/Resources 783 0 R +/Contents 790 0 R +/Resources 788 0 R /MediaBox [0 0 595.276 841.89] -/Parent 766 0 R -/Annots [ 777 0 R ] +/Parent 771 0 R +/Annots [ 782 0 R ] >> endobj -777 0 obj << +782 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [118.473 708.286 515.485 720.637] /Subtype/Link/A<> >> endobj -786 0 obj << -/D [784 0 R /XYZ 92.543 812.458 null] ->> endobj -787 0 obj << -/D [784 0 R /XYZ 93.543 671.512 null] ->> endobj -142 0 obj << -/D [784 0 R /XYZ 93.543 632.34 null] ->> endobj -783 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +791 0 obj << +/D [789 0 R /XYZ 92.543 812.458 null] >> endobj 792 0 obj << +/D [789 0 R /XYZ 93.543 671.512 null] +>> endobj +142 0 obj << +/D [789 0 R /XYZ 93.543 632.34 null] +>> endobj +788 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +797 0 obj << /Length 2632 /Filter /FlateDecode >> @@ -3856,36 +3866,36 @@ J bHj$dG nWL4I䥓ݹDi@Wx.)p&?Na4vN8)vGRF.KI?t<ŗ AAx̀|%?JM4.=2~:^)*G0>Ï|x4QrQW)KaJp*ҡOk3{8˓.!fK t0 ((b9Hlkr#m,ʛͱf6mP[MS(;-Rq> endobj -788 0 obj << +793 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.265 626.713 442.232 640.015] /A << /S /GoTo /D (appendix.A) >> >> endobj -793 0 obj << -/D [791 0 R /XYZ 79.787 812.458 null] +798 0 obj << +/D [796 0 R /XYZ 79.787 812.458 null] >> endobj 146 0 obj << -/D [791 0 R /XYZ 80.787 681.325 null] +/D [796 0 R /XYZ 80.787 681.325 null] >> endobj 150 0 obj << -/D [791 0 R /XYZ 80.787 386.62 null] +/D [796 0 R /XYZ 80.787 386.62 null] >> endobj -790 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +795 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -799 0 obj << +804 0 obj << /Length 1784 /Filter /FlateDecode >> @@ -3900,60 +3910,60 @@ x c=qWfqjJܞaix$TeÆ4ȃ򔓇JEcnFcD w@9yK 6bX,k|u"0Au+b![[p-n&wFF2x3QR| ^ne_=\8fyDxAVZoy;mRE&1'w޾4;5wRP˜[M݃|+-p^%}b\p&>몈F4v{߲cg:9&HMkg[ T푯?>}X[J⇷w]3(NcW>E> endobj -789 0 obj << +794 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [147.599 719.428 536.939 732.73] /Subtype/Link/A<> >> endobj -794 0 obj << +799 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [148.388 677.279 401.937 690.581] /Subtype/Link/A<> >> endobj -795 0 obj << +800 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [148.388 635.13 437.803 648.431] /Subtype/Link/A<> >> endobj -796 0 obj << +801 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [376.72 499.626 395.33 512.928] /A << /S /GoTo /D (section.2.4) >> >> endobj -800 0 obj << -/D [798 0 R /XYZ 92.543 812.458 null] ->> endobj -801 0 obj << -/D [798 0 R /XYZ 93.543 749.341 null] ->> endobj -802 0 obj << -/D [798 0 R /XYZ 93.543 713.795 null] ->> endobj -803 0 obj << -/D [798 0 R /XYZ 93.543 671.646 null] ->> endobj -154 0 obj << -/D [798 0 R /XYZ 93.543 553.512 null] ->> endobj -797 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +805 0 obj << +/D [803 0 R /XYZ 92.543 812.458 null] >> endobj 806 0 obj << +/D [803 0 R /XYZ 93.543 749.341 null] +>> endobj +807 0 obj << +/D [803 0 R /XYZ 93.543 713.795 null] +>> endobj +808 0 obj << +/D [803 0 R /XYZ 93.543 671.646 null] +>> endobj +154 0 obj << +/D [803 0 R /XYZ 93.543 553.512 null] +>> endobj +802 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +811 0 obj << /Length 907 /Filter /FlateDecode >> @@ -3963,22 +3973,22 @@ x {؉7P= :p7KiR=GVd+ЌZ-&('2h^σ9t%F|-T@A^mP%or"bpNt+vy;⟕u:T@!iq6l2-HmA/ӝc7B qrҡ#>Bq endstream endobj -805 0 obj << +810 0 obj << /Type /Page -/Contents 806 0 R -/Resources 804 0 R +/Contents 811 0 R +/Resources 809 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R +/Parent 813 0 R >> endobj -807 0 obj << -/D [805 0 R /XYZ 79.787 812.458 null] +812 0 obj << +/D [810 0 R /XYZ 79.787 812.458 null] >> endobj -804 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +809 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -813 0 obj << +818 0 obj << /Length 1359 /Filter /FlateDecode >> @@ -3990,33 +4000,33 @@ D- :!`P72(uxgޥ-&q72# endstream endobj -812 0 obj << +817 0 obj << /Type /Page -/Contents 813 0 R -/Resources 811 0 R +/Contents 818 0 R +/Resources 816 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R -/Annots [ 809 0 R ] +/Parent 813 0 R +/Annots [ 814 0 R ] >> endobj -809 0 obj << +814 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [376.72 494.147 395.33 507.449] /A << /S /GoTo /D (section.2.4) >> >> endobj -814 0 obj << -/D [812 0 R /XYZ 92.543 812.458 null] +819 0 obj << +/D [817 0 R /XYZ 92.543 812.458 null] >> endobj 158 0 obj << -/D [812 0 R /XYZ 93.543 547.687 null] +/D [817 0 R /XYZ 93.543 547.687 null] >> endobj -811 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> +816 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -817 0 obj << +822 0 obj << /Length 1526 /Filter /FlateDecode >> @@ -4030,33 +4040,33 @@ I YL/[ mZ}ڴ]ҥ< uMծ0ʎcnG#ƭ EKp\)˪[;s'1tUV[?oNh[g#COd/&eZVhr}7tNSolXI7v3R5T5@-wJr{[X0q9|mBu?8{Ϝߤl4~"Xm7HE6b?  endstream endobj -816 0 obj << +821 0 obj << /Type /Page -/Contents 817 0 R -/Resources 815 0 R +/Contents 822 0 R +/Resources 820 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R -/Annots [ 810 0 R ] +/Parent 813 0 R +/Annots [ 815 0 R ] >> endobj -810 0 obj << +815 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [363.964 704.074 382.574 717.376] /A << /S /GoTo /D (section.2.4) >> >> endobj -818 0 obj << -/D [816 0 R /XYZ 79.787 812.458 null] +823 0 obj << +/D [821 0 R /XYZ 79.787 812.458 null] >> endobj 162 0 obj << -/D [816 0 R /XYZ 80.787 749.341 null] +/D [821 0 R /XYZ 80.787 749.341 null] >> endobj -815 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +820 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -821 0 obj << +826 0 obj << /Length 627 /Filter /FlateDecode >> @@ -4066,22 +4076,22 @@ lW =g/BaW2 Y+=roeWD.0x iX0HDp}8 &${ {څ3˺iiYl&~D.v,cjs l.aC]YƔ ߆u68K%"xϿc$MWhj$7X#blk BP@[ c^vՇ>+B@c pӝ<\eN&LR{rS 7y9aN4q)O%jN=^xe `nHJ" endstream endobj -820 0 obj << +825 0 obj << /Type /Page -/Contents 821 0 R -/Resources 819 0 R +/Contents 826 0 R +/Resources 824 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R +/Parent 813 0 R >> endobj -822 0 obj << -/D [820 0 R /XYZ 92.543 812.458 null] +827 0 obj << +/D [825 0 R /XYZ 92.543 812.458 null] >> endobj -819 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +824 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -825 0 obj << +830 0 obj << /Length 1267 /Filter /FlateDecode >> @@ -4095,28 +4105,28 @@ jN؇htWv {f4H݄d3:(R#[o~:^LvLv 9|c_-[2m[/2S(˛F3M9ITgw3/}" endstream endobj -824 0 obj << +829 0 obj << /Type /Page -/Contents 825 0 R -/Resources 823 0 R +/Contents 830 0 R +/Resources 828 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R +/Parent 813 0 R >> endobj -826 0 obj << -/D [824 0 R /XYZ 79.787 812.458 null] +831 0 obj << +/D [829 0 R /XYZ 79.787 812.458 null] >> endobj 166 0 obj << -/D [824 0 R /XYZ 80.787 749.341 null] +/D [829 0 R /XYZ 80.787 749.341 null] >> endobj 170 0 obj << -/D [824 0 R /XYZ 80.787 640.249 null] +/D [829 0 R /XYZ 80.787 640.249 null] >> endobj -823 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +828 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -830 0 obj << +835 0 obj << /Length 1991 /Filter /FlateDecode >> @@ -4128,39 +4138,39 @@ M,w };ƹKFCI47r譟̹kАS4rj}v~}n-!BkGThQ)$VZ\^\)[ӐCl6{ga+<n"1~8FucoӼfmpؤi@VZ^z{{?6C endstream endobj -829 0 obj << +834 0 obj << /Type /Page -/Contents 830 0 R -/Resources 828 0 R +/Contents 835 0 R +/Resources 833 0 R /MediaBox [0 0 595.276 841.89] -/Parent 808 0 R -/Annots [ 827 0 R ] +/Parent 813 0 R +/Annots [ 832 0 R ] >> endobj -827 0 obj << +832 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [339.777 527.84 359.475 541.142] /A << /S /GoTo /D (section.B.4) >> >> endobj -831 0 obj << -/D [829 0 R /XYZ 92.543 812.458 null] +836 0 obj << +/D [834 0 R /XYZ 92.543 812.458 null] >> endobj -832 0 obj << -/D [829 0 R /XYZ 93.543 476.913 null] +837 0 obj << +/D [834 0 R /XYZ 93.543 476.913 null] >> endobj -833 0 obj << -/D [829 0 R /XYZ 93.543 248.574 null] +838 0 obj << +/D [834 0 R /XYZ 93.543 248.574 null] >> endobj 174 0 obj << -/D [829 0 R /XYZ 93.543 180.269 null] +/D [834 0 R /XYZ 93.543 180.269 null] >> endobj -828 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +833 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -839 0 obj << +844 0 obj << /Length 1909 /Filter /FlateDecode >> @@ -4173,47 +4183,47 @@ J ΒAb8̑'ٿ`! endstream endobj -838 0 obj << +843 0 obj << /Type /Page -/Contents 839 0 R -/Resources 837 0 R +/Contents 844 0 R +/Resources 842 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R -/Annots [ 834 0 R 835 0 R 836 0 R ] +/Parent 846 0 R +/Annots [ 839 0 R 840 0 R 841 0 R ] >> endobj -834 0 obj << +839 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [399.488 327.035 418.098 342.154] /A << /S /GoTo /D (section.4.3) >> >> endobj -835 0 obj << +840 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [318.086 312.589 336.696 327.709] /A << /S /GoTo /D (section.4.8) >> >> endobj -836 0 obj << +841 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [420.828 298.144 439.438 313.263] /A << /S /GoTo /D (section.4.9) >> >> endobj -840 0 obj << -/D [838 0 R /XYZ 79.787 812.458 null] +845 0 obj << +/D [843 0 R /XYZ 79.787 812.458 null] >> endobj 178 0 obj << -/D [838 0 R /XYZ 80.787 520.414 null] +/D [843 0 R /XYZ 80.787 520.414 null] >> endobj -837 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +842 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -844 0 obj << +849 0 obj << /Length 495 /Filter /FlateDecode >> @@ -4223,22 +4233,22 @@ xڭSMo 1JͮwպI0&ݮwY$}tx 0֧z~=֠XBO@)>UITX&¤EvwŬջլ~ fHp?OL%QJ# Nzgqp Ae˲-, q/۶Z4utްWy2ނO9-kARiK#Qc pއuG_`t7űxKـ HN{QuKPPO|\<\$8ya=W+o9H쇈9`lJq+F: ١{20q&F,X.MC âRX*nJ9Þ: endstream endobj -843 0 obj << +848 0 obj << /Type /Page -/Contents 844 0 R -/Resources 842 0 R +/Contents 849 0 R +/Resources 847 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R +/Parent 846 0 R >> endobj -845 0 obj << -/D [843 0 R /XYZ 92.543 812.458 null] +850 0 obj << +/D [848 0 R /XYZ 92.543 812.458 null] >> endobj -842 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +847 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -849 0 obj << +854 0 obj << /Length 1693 /Filter /FlateDecode >> @@ -4251,42 +4261,42 @@ xڕW u(ɓI7y_v;#Gj:!Fj=?+mv/oO};"H}ǃ"Jz/ endstream endobj -848 0 obj << +853 0 obj << /Type /Page -/Contents 849 0 R -/Resources 847 0 R +/Contents 854 0 R +/Resources 852 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R -/Annots [ 846 0 R ] +/Parent 846 0 R +/Annots [ 851 0 R ] >> endobj -846 0 obj << +851 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [229.192 310.799 249.129 323.826] /A << /S /GoTo /D (section.E.1) >> >> endobj -850 0 obj << -/D [848 0 R /XYZ 79.787 812.458 null] +855 0 obj << +/D [853 0 R /XYZ 79.787 812.458 null] >> endobj 182 0 obj << -/D [848 0 R /XYZ 80.787 749.341 null] +/D [853 0 R /XYZ 80.787 749.341 null] >> endobj 186 0 obj << -/D [848 0 R /XYZ 80.787 642.794 null] +/D [853 0 R /XYZ 80.787 642.794 null] >> endobj 190 0 obj << -/D [848 0 R /XYZ 80.787 286.55 null] +/D [853 0 R /XYZ 80.787 286.55 null] >> endobj -851 0 obj << -/D [848 0 R /XYZ 80.787 220.07 null] +856 0 obj << +/D [853 0 R /XYZ 80.787 220.07 null] >> endobj -847 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +852 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -860 0 obj << +865 0 obj << /Length 1629 /Filter /FlateDecode >> @@ -4298,77 +4308,77 @@ x Ղ|7 |>筃QedhvK_CjQ!1·E" SiCm`m[?[.PKCY!vq=iPWdZH%Zƻdr[f͂elDSɇ&1V*Lq) endstream endobj -859 0 obj << +864 0 obj << /Type /Page -/Contents 860 0 R -/Resources 858 0 R +/Contents 865 0 R +/Resources 863 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R -/Annots [ 852 0 R 854 0 R 856 0 R 853 0 R 855 0 R 857 0 R ] +/Parent 846 0 R +/Annots [ 857 0 R 859 0 R 861 0 R 858 0 R 860 0 R 862 0 R ] >> endobj -852 0 obj << +857 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [286.632 472.75 293.554 487.42] /A << /S /GoTo /D (Hfootnote.8) >> >> endobj -854 0 obj << +859 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [456.25 348.465 463.172 363.134] /A << /S /GoTo /D (Hfootnote.9) >> >> endobj -856 0 obj << +861 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [502.325 348.465 509.247 363.134] /A << /S /GoTo /D (Hfootnote.10) >> >> endobj -853 0 obj << +858 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [102.51 135.974 236.009 150.138] /Subtype/Link/A<> >> endobj -855 0 obj << +860 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [102.51 123.803 385.449 137.967] /Subtype/Link/A<> >> endobj -857 0 obj << +862 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [102.51 111.633 236.009 125.796] /Subtype/Link/A<> >> endobj -861 0 obj << -/D [859 0 R /XYZ 92.543 812.458 null] ->> endobj -862 0 obj << -/D [859 0 R /XYZ 93.543 727.422 null] ->> endobj -863 0 obj << -/D [859 0 R /XYZ 93.543 630.574 null] ->> endobj -864 0 obj << -/D [859 0 R /XYZ 103.506 152.512 null] ->> endobj -865 0 obj << -/D [859 0 R /XYZ 103.506 140.341 null] ->> endobj 866 0 obj << -/D [859 0 R /XYZ 103.506 128.171 null] +/D [864 0 R /XYZ 92.543 812.458 null] >> endobj -858 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F62 552 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +867 0 obj << +/D [864 0 R /XYZ 93.543 727.422 null] +>> endobj +868 0 obj << +/D [864 0 R /XYZ 93.543 630.574 null] >> endobj 869 0 obj << +/D [864 0 R /XYZ 103.506 152.512 null] +>> endobj +870 0 obj << +/D [864 0 R /XYZ 103.506 140.341 null] +>> endobj +871 0 obj << +/D [864 0 R /XYZ 103.506 128.171 null] +>> endobj +863 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F62 557 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +874 0 obj << /Length 1118 /Filter /FlateDecode >> @@ -4379,22 +4389,22 @@ x /;/zWcw,ںLs&lhd: m G5~tۺ#x_ו̿v7u\Wg /1]juϣ*߻8p@UX+H O?+ =pC|Jĺćnru:~gPg#x/b endstream endobj -868 0 obj << +873 0 obj << /Type /Page -/Contents 869 0 R -/Resources 867 0 R +/Contents 874 0 R +/Resources 872 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R +/Parent 846 0 R >> endobj -870 0 obj << -/D [868 0 R /XYZ 79.787 812.458 null] +875 0 obj << +/D [873 0 R /XYZ 79.787 812.458 null] >> endobj -867 0 obj << -/Font << /F39 382 0 R /F62 552 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +872 0 obj << +/Font << /F39 386 0 R /F62 557 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -873 0 obj << +878 0 obj << /Length 1411 /Filter /FlateDecode >> @@ -4405,25 +4415,25 @@ xڥWI >_6TGes޽Ze IoRo2ےJ36M iҸN*1auD`^ifB;WԵ@ IM. =sYq_۵C_Y 押ryxuw֦1LXuȵ]ZOU4õ ڤ(G R þ2dtycB K3 qT9G'eR͌2M cۤkJEwXv.`J#^ڻt2&O I0Yj/\R-MI|ŔB<ި2ճ<蛿ɘ7X?VmSb(ddi1OPyn}*nTy6ܗZXb^Wŷro(᪯BEc%,'dPO0Q4NLrG6DTFaReju)k(TWG= ဎMS Z\c'iſ?`|KǪ2niy&VfC˸|PHDذOq9[l0!1Jo8ll4R_). G GDowD6 endstream endobj -872 0 obj << +877 0 obj << /Type /Page -/Contents 873 0 R -/Resources 871 0 R +/Contents 878 0 R +/Resources 876 0 R /MediaBox [0 0 595.276 841.89] -/Parent 841 0 R +/Parent 846 0 R >> endobj -874 0 obj << -/D [872 0 R /XYZ 92.543 812.458 null] +879 0 obj << +/D [877 0 R /XYZ 92.543 812.458 null] >> endobj -875 0 obj << -/D [872 0 R /XYZ 93.543 602.366 null] +880 0 obj << +/D [877 0 R /XYZ 93.543 602.366 null] >> endobj -871 0 obj << -/Font << /F39 382 0 R /F62 552 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +876 0 obj << +/Font << /F39 386 0 R /F62 557 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -878 0 obj << +883 0 obj << /Length 1132 /Filter /FlateDecode >> @@ -4432,22 +4442,22 @@ xڽ hNt1{Fd}ܼl4Zw/]&90\cJWl%do=5 S.`Yw5]]iOcrM~)p6 ?68ڕQOX.s!ǡ6dG3(QvQɥ`VV?NfTwʂ5 _ fjYmKDq0v:ͧ g~fCı,(PҲ06l"Y܅%KuX~ ߟ ,4(L@"}a:Z'X--|e=QF3A{͌IUBWQ.ht26#fa0-8Ou}({`:&}q!=.Yӿ=ݏa3[ʤve\-gh<}YysNXJoYiUA:"BJu %|޳D:t޼|(Ew h~ujL4\Oԩ7FQbFc *(u y ovÛyamA /2m. M6ѧ$<,brBUCwԴxrJQӣݤ[nnAnepù8Xcf lȋZZiY4\ꣴ*rumSlEuߝ7p<Z^V DeA&3$lD QI _+$e*A?.J,paYuVLu?lrc}Wqnob}d=6& oΑ7ǧP|$(4ΞfBTeyk1X@#)[dɤȴM> endobj -879 0 obj << -/D [877 0 R /XYZ 79.787 812.458 null] +884 0 obj << +/D [882 0 R /XYZ 79.787 812.458 null] >> endobj -876 0 obj << -/Font << /F39 382 0 R /F62 552 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +881 0 obj << +/Font << /F39 386 0 R /F62 557 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -883 0 obj << +888 0 obj << /Length 672 /Filter /FlateDecode >> @@ -4458,22 +4468,22 @@ xڽ oQ&_kCF~<:ѵu ӷɍ4&slpe1tbjzy0BEr_9]tthXmǸo?˲rի|(84PY}灸IwExa1Ȕ w/D endstream endobj -882 0 obj << +887 0 obj << /Type /Page -/Contents 883 0 R -/Resources 881 0 R +/Contents 888 0 R +/Resources 886 0 R /MediaBox [0 0 595.276 841.89] -/Parent 880 0 R ->> endobj -884 0 obj << -/D [882 0 R /XYZ 92.543 812.458 null] ->> endobj -881 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F62 552 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +/Parent 885 0 R >> endobj 889 0 obj << +/D [887 0 R /XYZ 92.543 812.458 null] +>> endobj +886 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F62 557 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +894 0 obj << /Length 1061 /Filter /FlateDecode >> @@ -4484,39 +4494,39 @@ xڽW[s {h`궼+ Xۿͱ:gS/s4m:Kls[GgH]']P0pAFKv͇(BPK y>Uv庈lY%e]/2ʮʞ]o; ,+0^o?} endstream endobj -888 0 obj << +893 0 obj << /Type /Page -/Contents 889 0 R -/Resources 887 0 R +/Contents 894 0 R +/Resources 892 0 R /MediaBox [0 0 595.276 841.89] -/Parent 880 0 R -/Annots [ 885 0 R 886 0 R ] +/Parent 885 0 R +/Annots [ 890 0 R 891 0 R ] >> endobj -885 0 obj << +890 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [112.234 253.23 119.156 265.485] /A << /S /GoTo /D (Hfootnote.11) >> >> endobj -886 0 obj << +891 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 312.917 125.796] /Subtype/Link/A<> >> endobj -890 0 obj << -/D [888 0 R /XYZ 79.787 812.458 null] +895 0 obj << +/D [893 0 R /XYZ 79.787 812.458 null] >> endobj -891 0 obj << -/D [888 0 R /XYZ 90.75 128.171 null] +896 0 obj << +/D [893 0 R /XYZ 90.75 128.171 null] >> endobj -887 0 obj << -/Font << /F39 382 0 R /F62 552 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +892 0 obj << +/Font << /F39 386 0 R /F62 557 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -894 0 obj << +899 0 obj << /Length 1309 /Filter /FlateDecode >> @@ -4528,25 +4538,25 @@ D GBZkbȮ r<<[%0uVj0Y}ZL\ endstream endobj -893 0 obj << +898 0 obj << /Type /Page -/Contents 894 0 R -/Resources 892 0 R +/Contents 899 0 R +/Resources 897 0 R /MediaBox [0 0 595.276 841.89] -/Parent 880 0 R ->> endobj -895 0 obj << -/D [893 0 R /XYZ 92.543 812.458 null] ->> endobj -194 0 obj << -/D [893 0 R /XYZ 93.543 247.828 null] ->> endobj -892 0 obj << -/Font << /F39 382 0 R /F62 552 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +/Parent 885 0 R >> endobj 900 0 obj << +/D [898 0 R /XYZ 92.543 812.458 null] +>> endobj +194 0 obj << +/D [898 0 R /XYZ 93.543 247.828 null] +>> endobj +897 0 obj << +/Font << /F39 386 0 R /F62 557 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +905 0 obj << /Length 1346 /Filter /FlateDecode >> @@ -4559,25 +4569,25 @@ xڵWko YdzR_*׈D~+mv{`yz/f:qP1q_`,&V˼L@"–w;bc8@#EN7_sf endstream endobj -899 0 obj << +904 0 obj << /Type /Page -/Contents 900 0 R -/Resources 898 0 R +/Contents 905 0 R +/Resources 903 0 R /MediaBox [0 0 595.276 841.89] -/Parent 880 0 R +/Parent 885 0 R >> endobj -901 0 obj << -/D [899 0 R /XYZ 79.787 812.458 null] +906 0 obj << +/D [904 0 R /XYZ 79.787 812.458 null] >> endobj 198 0 obj << -/D [899 0 R /XYZ 80.787 349.099 null] +/D [904 0 R /XYZ 80.787 349.099 null] >> endobj -898 0 obj << -/Font << /F39 382 0 R /F26 531 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +903 0 obj << +/Font << /F39 386 0 R /F26 536 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -904 0 obj << +909 0 obj << /Length 736 /Filter /FlateDecode >> @@ -4590,41 +4600,41 @@ xڕT p0]M*GŔa:h3j܅YTmg= endstream endobj -903 0 obj << +908 0 obj << /Type /Page -/Contents 904 0 R -/Resources 902 0 R +/Contents 909 0 R +/Resources 907 0 R /MediaBox [0 0 595.276 841.89] -/Parent 880 0 R -/Annots [ 896 0 R 897 0 R ] +/Parent 885 0 R +/Annots [ 901 0 R 902 0 R ] >> endobj -896 0 obj << +901 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [230.914 579.675 491.138 592.302] /Subtype/Link/A<> >> endobj -897 0 obj << +902 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [92.547 565.229 352.771 576.708] /Subtype/Link/A<> >> endobj -905 0 obj << -/D [903 0 R /XYZ 92.543 812.458 null] +910 0 obj << +/D [908 0 R /XYZ 92.543 812.458 null] >> endobj 202 0 obj << -/D [903 0 R /XYZ 93.543 749.341 null] +/D [908 0 R /XYZ 93.543 749.341 null] >> endobj -906 0 obj << -/D [903 0 R /XYZ 93.543 694.911 null] +911 0 obj << +/D [908 0 R /XYZ 93.543 694.911 null] >> endobj -902 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F43 488 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> +907 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F43 493 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -909 0 obj << +914 0 obj << /Length 923 /Filter /FlateDecode >> @@ -4633,28 +4643,28 @@ xڵVMo *xy{ä9H^Jlяz h0ѣyw!yX7^n* 1pt|yի-/|z#̣<+{TLN`*uzp \n3mztzՕߚeSu$ּNU+euHQg2n{^T+ˍUzWg]ݒZ쏻Y,E{>U'B/+;=<@O8m:+LPqm('H]/9cT}0\ WS endstream endobj -908 0 obj << +913 0 obj << /Type /Page -/Contents 909 0 R -/Resources 907 0 R +/Contents 914 0 R +/Resources 912 0 R /MediaBox [0 0 595.276 841.89] -/Parent 911 0 R +/Parent 916 0 R >> endobj -910 0 obj << -/D [908 0 R /XYZ 79.787 812.458 null] +915 0 obj << +/D [913 0 R /XYZ 79.787 812.458 null] >> endobj 206 0 obj << -/D [908 0 R /XYZ 80.787 749.341 null] +/D [913 0 R /XYZ 80.787 749.341 null] >> endobj 210 0 obj << -/D [908 0 R /XYZ 80.787 644.96 null] +/D [913 0 R /XYZ 80.787 644.96 null] >> endobj -907 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +912 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -914 0 obj << +919 0 obj << /Length 1019 /Filter /FlateDecode >> @@ -4670,22 +4680,22 @@ I k2F,;p.X^vQg<&hB?wxx~_}-ބ{^B_U!1KEI6EV9N783(0.p' Swemro(Nl̤/Xie endstream endobj -913 0 obj << +918 0 obj << /Type /Page -/Contents 914 0 R -/Resources 912 0 R +/Contents 919 0 R +/Resources 917 0 R /MediaBox [0 0 595.276 841.89] -/Parent 911 0 R +/Parent 916 0 R >> endobj -915 0 obj << -/D [913 0 R /XYZ 92.543 812.458 null] +920 0 obj << +/D [918 0 R /XYZ 92.543 812.458 null] >> endobj -912 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +917 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -918 0 obj << +923 0 obj << /Length 1015 /Filter /FlateDecode >> @@ -4698,25 +4708,25 @@ Z jWR 9dmV/> endobj -919 0 obj << -/D [917 0 R /XYZ 79.787 812.458 null] +924 0 obj << +/D [922 0 R /XYZ 79.787 812.458 null] >> endobj 214 0 obj << -/D [917 0 R /XYZ 80.787 410.821 null] +/D [922 0 R /XYZ 80.787 410.821 null] >> endobj -916 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +921 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -922 0 obj << +927 0 obj << /Length 754 /Filter /FlateDecode >> @@ -4730,22 +4740,22 @@ xڍUQo kV(2ntV?ErBɣd;ôX;M"si] @.V`D*9xTOa:[ǘkQt#Cނkvz 𜜢WfI҅Ѵd{H&;vM+%y8lV;&H6\oy@lK6Ib.Bnw,ܾEvx_0ha$0d;A endstream endobj -921 0 obj << +926 0 obj << /Type /Page -/Contents 922 0 R -/Resources 920 0 R +/Contents 927 0 R +/Resources 925 0 R /MediaBox [0 0 595.276 841.89] -/Parent 911 0 R +/Parent 916 0 R >> endobj -923 0 obj << -/D [921 0 R /XYZ 92.543 812.458 null] +928 0 obj << +/D [926 0 R /XYZ 92.543 812.458 null] >> endobj -920 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +925 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -926 0 obj << +931 0 obj << /Length 762 /Filter /FlateDecode >> @@ -4756,25 +4766,25 @@ xڅU 2L 3>x_W= H 6V/{Iw?M)#`\f :zTE 8!Nd$W endstream endobj -925 0 obj << +930 0 obj << /Type /Page -/Contents 926 0 R -/Resources 924 0 R +/Contents 931 0 R +/Resources 929 0 R /MediaBox [0 0 595.276 841.89] -/Parent 911 0 R +/Parent 916 0 R >> endobj -927 0 obj << -/D [925 0 R /XYZ 79.787 812.458 null] +932 0 obj << +/D [930 0 R /XYZ 79.787 812.458 null] >> endobj 218 0 obj << -/D [925 0 R /XYZ 80.787 749.341 null] +/D [930 0 R /XYZ 80.787 749.341 null] >> endobj -924 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +929 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -930 0 obj << +935 0 obj << /Length 1012 /Filter /FlateDecode >> @@ -4783,25 +4793,25 @@ xڭVKo ~=Y%EEȲ8Xd"ɜ6߇14YHD9.Ie>_Je(C'vQ4`;Q!<`tפȃs"͔\2fQvd*fLbB+2Wc 7T1S`Qu(PruCBPP^vB'}7^uv:"3mعj2HXm _T2|{´QF;eQ::ͻ ~|+x|l)+AYomm_^ ~BĭO~ ')`L1S1I)S9T_C[<}>z$?J+բ mJ+y_rɺޒ>VvvWAKE^F5+ՒSkҶx?=7gDD܇@ Oߤ7I b}q^5rd10hC[bݱR5Qv|~6̕] bhoqVeS_i/hķB+khwl· cIno-/r'-a^ Q&: WSæeou\ %v.5rD>j<Ŵ#+%HJ\U?n'Z{QGϪgZx쉁vV` 2LT:OK^GFKfv(&2*)[sbJS5f6|%?2W\lǕ͊Tvwn7J;֏ֶ m]ZlچSVC^OrjVbeOWAl]mIK6.INMR)JDE79hC,C0[D eB; endstream endobj -929 0 obj << +934 0 obj << /Type /Page -/Contents 930 0 R -/Resources 928 0 R +/Contents 935 0 R +/Resources 933 0 R /MediaBox [0 0 595.276 841.89] -/Parent 911 0 R +/Parent 916 0 R >> endobj -931 0 obj << -/D [929 0 R /XYZ 92.543 812.458 null] +936 0 obj << +/D [934 0 R /XYZ 92.543 812.458 null] >> endobj 222 0 obj << -/D [929 0 R /XYZ 93.543 749.341 null] +/D [934 0 R /XYZ 93.543 749.341 null] >> endobj -928 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +933 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -934 0 obj << +939 0 obj << /Length 822 /Filter /FlateDecode >> @@ -4814,22 +4824,22 @@ xڵV w^l*Ձ'}mEkk^ëk#q4tl/[ endstream endobj -933 0 obj << +938 0 obj << /Type /Page -/Contents 934 0 R -/Resources 932 0 R +/Contents 939 0 R +/Resources 937 0 R /MediaBox [0 0 595.276 841.89] -/Parent 936 0 R +/Parent 941 0 R >> endobj -935 0 obj << -/D [933 0 R /XYZ 79.787 812.458 null] +940 0 obj << +/D [938 0 R /XYZ 79.787 812.458 null] >> endobj -932 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +937 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -939 0 obj << +944 0 obj << /Length 941 /Filter /FlateDecode >> @@ -4842,25 +4852,25 @@ L }m|ṵZf.oЦ=*p**r&n&yun_DT7"=W> endobj -940 0 obj << -/D [938 0 R /XYZ 92.543 812.458 null] +945 0 obj << +/D [943 0 R /XYZ 92.543 812.458 null] >> endobj 226 0 obj << -/D [938 0 R /XYZ 93.543 749.341 null] +/D [943 0 R /XYZ 93.543 749.341 null] >> endobj -937 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +942 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -943 0 obj << +948 0 obj << /Length 823 /Filter /FlateDecode >> @@ -4869,22 +4879,22 @@ xڥV[o +ufs[?H,2UkFӴ3Zw\'UVozc+WAA WGdmS==n#+[K^zU9w7yޖ2ܶ/t_]YugMUތGevy [" endstream endobj -942 0 obj << +947 0 obj << /Type /Page -/Contents 943 0 R -/Resources 941 0 R +/Contents 948 0 R +/Resources 946 0 R /MediaBox [0 0 595.276 841.89] -/Parent 936 0 R +/Parent 941 0 R >> endobj -944 0 obj << -/D [942 0 R /XYZ 79.787 812.458 null] +949 0 obj << +/D [947 0 R /XYZ 79.787 812.458 null] >> endobj -941 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +946 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -947 0 obj << +952 0 obj << /Length 1064 /Filter /FlateDecode >> @@ -4896,25 +4906,25 @@ xڥV SKr癸5yeb1`4%P=%5-A<Pw{ endstream endobj -946 0 obj << +951 0 obj << /Type /Page -/Contents 947 0 R -/Resources 945 0 R +/Contents 952 0 R +/Resources 950 0 R /MediaBox [0 0 595.276 841.89] -/Parent 936 0 R +/Parent 941 0 R >> endobj -948 0 obj << -/D [946 0 R /XYZ 92.543 812.458 null] +953 0 obj << +/D [951 0 R /XYZ 92.543 812.458 null] >> endobj 230 0 obj << -/D [946 0 R /XYZ 93.543 478.567 null] +/D [951 0 R /XYZ 93.543 478.567 null] >> endobj -945 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +950 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -951 0 obj << +956 0 obj << /Length 1035 /Filter /FlateDecode >> @@ -4926,25 +4936,25 @@ h VevId*Lt' ӪLvn7RLhQ% Pt;F,C)3UܷhD2->ܘVNH:EpwYKe|W)<\ϧW뉉ľ>V2~=L?/ՒX'V(̊i˪Z-+SݱnN8kyM'Ӵ@K|ۘ>nunc5ujR>F n=/~c:JvAK3sy:As>(Pø endstream endobj -950 0 obj << +955 0 obj << /Type /Page -/Contents 951 0 R -/Resources 949 0 R +/Contents 956 0 R +/Resources 954 0 R /MediaBox [0 0 595.276 841.89] -/Parent 936 0 R +/Parent 941 0 R >> endobj -952 0 obj << -/D [950 0 R /XYZ 79.787 812.458 null] +957 0 obj << +/D [955 0 R /XYZ 79.787 812.458 null] >> endobj 234 0 obj << -/D [950 0 R /XYZ 80.787 532.763 null] +/D [955 0 R /XYZ 80.787 532.763 null] >> endobj -949 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +954 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -955 0 obj << +960 0 obj << /Length 697 /Filter /FlateDecode >> @@ -4953,25 +4963,25 @@ x >(^e0Eeai2ѽw#9/ˏ>W!~=3YkqEH)Cc)FMu0gCv;[d#1C(I3|(ZC:ɗDQ@Iq4SN_X)3 yAHpn)݈K>,lcJN+!.h|LU!vtiG~΍*K֢;*tB*rǼ^d\mB6;+n-|rqZ-mlLAr#ź[d+&AlN#Td$GUʜiHB1rꖷ39ow `4pANZډ#o?4u<&q5b~جH,+ιcťr_ iuooՀgT>4\AVY.uS<'xOFk6DjqT@/ۺ?_Dpz0:<}n>> endobj -956 0 obj << -/D [954 0 R /XYZ 92.543 812.458 null] +961 0 obj << +/D [959 0 R /XYZ 92.543 812.458 null] >> endobj 238 0 obj << -/D [954 0 R /XYZ 93.543 659.626 null] +/D [959 0 R /XYZ 93.543 659.626 null] >> endobj -953 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +958 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -959 0 obj << +964 0 obj << /Length 1153 /Filter /FlateDecode >> @@ -4982,28 +4992,28 @@ e<Ű CDoH q6=ؕ5+O!8"Va۳t VJ 1[.&RQZ%ÂSS Ddr}E#'q_QS=l;3I? &6(.%-0Da!+Rj;nl\Lav'h{W- Lp}9P9O!χar>"p:_䆸n0cREo#=J"ERqTfEA }B'QD9+jF%!gH۷8'xkA ,rY+K乇aax\p$qZMwa7ckTcIG*K8?p ޠ? .eb%-k?jZbg `2tzKO=en=yh<4\n>JF,Ft?z^Ni&嚮p cÿ i#_ =ߠ endstream endobj -958 0 obj << +963 0 obj << /Type /Page -/Contents 959 0 R -/Resources 957 0 R +/Contents 964 0 R +/Resources 962 0 R /MediaBox [0 0 595.276 841.89] -/Parent 961 0 R +/Parent 966 0 R >> endobj -960 0 obj << -/D [958 0 R /XYZ 79.787 812.458 null] +965 0 obj << +/D [963 0 R /XYZ 79.787 812.458 null] >> endobj 242 0 obj << -/D [958 0 R /XYZ 80.787 749.341 null] +/D [963 0 R /XYZ 80.787 749.341 null] >> endobj 246 0 obj << -/D [958 0 R /XYZ 80.787 643.058 null] +/D [963 0 R /XYZ 80.787 643.058 null] >> endobj -957 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +962 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -964 0 obj << +969 0 obj << /Length 795 /Filter /FlateDecode >> @@ -5013,22 +5023,22 @@ s 欖q}"psN ?}'F`T!E1IN;<fA*":eJU_dnoDpqOF%xcqWY_:edɲ9;}Arl_OIc endstream endobj -963 0 obj << +968 0 obj << /Type /Page -/Contents 964 0 R -/Resources 962 0 R +/Contents 969 0 R +/Resources 967 0 R /MediaBox [0 0 595.276 841.89] -/Parent 961 0 R +/Parent 966 0 R >> endobj -965 0 obj << -/D [963 0 R /XYZ 92.543 812.458 null] +970 0 obj << +/D [968 0 R /XYZ 92.543 812.458 null] >> endobj -962 0 obj << -/Font << /F39 382 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> +967 0 obj << +/Font << /F39 386 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -968 0 obj << +973 0 obj << /Length 888 /Filter /FlateDecode >> @@ -5042,25 +5052,25 @@ xڅV fk0 endstream endobj -967 0 obj << +972 0 obj << /Type /Page -/Contents 968 0 R -/Resources 966 0 R +/Contents 973 0 R +/Resources 971 0 R /MediaBox [0 0 595.276 841.89] -/Parent 961 0 R +/Parent 966 0 R >> endobj -969 0 obj << -/D [967 0 R /XYZ 79.787 812.458 null] +974 0 obj << +/D [972 0 R /XYZ 79.787 812.458 null] >> endobj 250 0 obj << -/D [967 0 R /XYZ 80.787 749.341 null] +/D [972 0 R /XYZ 80.787 749.341 null] >> endobj -966 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> +971 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -972 0 obj << +977 0 obj << /Length 868 /Filter /FlateDecode >> @@ -5070,25 +5080,25 @@ xڭVQs g)Z֛h9#:]o  endstream endobj -971 0 obj << +976 0 obj << /Type /Page -/Contents 972 0 R -/Resources 970 0 R +/Contents 977 0 R +/Resources 975 0 R /MediaBox [0 0 595.276 841.89] -/Parent 961 0 R +/Parent 966 0 R >> endobj -973 0 obj << -/D [971 0 R /XYZ 92.543 812.458 null] +978 0 obj << +/D [976 0 R /XYZ 92.543 812.458 null] >> endobj 254 0 obj << -/D [971 0 R /XYZ 93.543 618.978 null] +/D [976 0 R /XYZ 93.543 618.978 null] >> endobj -970 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im1 363 0 R >> +975 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -976 0 obj << +981 0 obj << /Length 1648 /Filter /FlateDecode >> @@ -5099,25 +5109,25 @@ Z B(\0%w0ˁN].^.S0eG'cmJj%͕ڢJ.9Ʊk5nj!߿ 2[%9Q; FAHjeNGHߩ]DG%XF;=%6̫ѷt>jH򧕣z3W\yZjil`)ڢNsU'fggI /v_EJ5htx DqUWL`;81YA#SOzC#W ¼m 5ʒ3ۤ'HƷ gO{P}?1Q:( cR (J)M@ /pH8;|%wi> endobj -977 0 obj << -/D [975 0 R /XYZ 79.787 812.458 null] +982 0 obj << +/D [980 0 R /XYZ 79.787 812.458 null] >> endobj 258 0 obj << -/D [975 0 R /XYZ 80.787 749.341 null] +/D [980 0 R /XYZ 80.787 749.341 null] >> endobj -974 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +979 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -980 0 obj << +985 0 obj << /Length 19 /Filter /FlateDecode >> @@ -5125,20 +5135,20 @@ stream x3PHW0Pp2Ac( endstream endobj -979 0 obj << +984 0 obj << /Type /Page -/Contents 980 0 R -/Resources 978 0 R +/Contents 985 0 R +/Resources 983 0 R /MediaBox [0 0 595.276 841.89] -/Parent 961 0 R +/Parent 966 0 R >> endobj -981 0 obj << -/D [979 0 R /XYZ 92.543 812.458 null] +986 0 obj << +/D [984 0 R /XYZ 92.543 812.458 null] >> endobj -978 0 obj << +983 0 obj << /ProcSet [ /PDF ] >> endobj -984 0 obj << +989 0 obj << /Length 1912 /Filter /FlateDecode >> @@ -5154,35 +5164,35 @@ A %!G(s*,pN SꎅneW]ӣf@)fi6c%9MfGez=2 hz0͋"]kY?)@aloG 6o$W"uk(Ɵ9{v̗H+m(0ۈw~0YJ蹒abTu/nΝiOEj@폊<Ǜ"fct!>@ endstream endobj -983 0 obj << +988 0 obj << /Type /Page -/Contents 984 0 R -/Resources 982 0 R +/Contents 989 0 R +/Resources 987 0 R /MediaBox [0 0 595.276 841.89] -/Parent 986 0 R +/Parent 991 0 R >> endobj -985 0 obj << -/D [983 0 R /XYZ 79.787 812.458 null] +990 0 obj << +/D [988 0 R /XYZ 79.787 812.458 null] >> endobj 262 0 obj << -/D [983 0 R /XYZ 80.787 749.341 null] +/D [988 0 R /XYZ 80.787 749.341 null] >> endobj 266 0 obj << -/D [983 0 R /XYZ 80.787 640.771 null] +/D [988 0 R /XYZ 80.787 640.771 null] >> endobj 270 0 obj << -/D [983 0 R /XYZ 80.787 487.809 null] +/D [988 0 R /XYZ 80.787 487.809 null] >> endobj 274 0 obj << -/D [983 0 R /XYZ 80.787 391.483 null] +/D [988 0 R /XYZ 80.787 391.483 null] >> endobj -982 0 obj << -/Font << /F39 382 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +987 0 obj << +/Font << /F39 386 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -993 0 obj << +998 0 obj << /Length 1935 /Filter /FlateDecode >> @@ -5199,26 +5209,26 @@ b / ?Q4fOzB[֗>L1 “ٽG3SPM.彻8BMI&8^RZ@7݋Y9\|ЏFL-SR4@ ;5&eU72> endobj -988 0 obj << +993 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./iofsl_arch.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 996 0 R +/PTEX.InfoDict 1001 0 R /BBox [0 0 1082 446] -/Group 989 0 R +/Group 994 0 R /Resources << -/Font << /F1 997 0 R>> +/Font << /F1 1002 0 R>> /ProcSet [ /PDF /Text ] >> /Length 1566 @@ -5234,7 +5244,7 @@ x y34C=5|/Z5$q4ϨxZɿr-H_K$Om%L H_Kʓ^K`/C+xl&聄GQuT8~ޛ"R#4u獰Ӑ qt>>mk&h/ (*)GJL|h# (*S闇[iO|'@ei_N@lɧpZ\3qY^qY,G~\G~Rމt®Tb`_-D} endstream endobj -996 0 obj +1001 0 obj << /Author /Creator @@ -5242,7 +5252,7 @@ endobj /CreationDate (D:20120201131529+01'00') >> endobj -997 0 obj +1002 0 obj << /Type /Font /Subtype /TrueType @@ -5250,11 +5260,11 @@ endobj /FirstChar 0 /LastChar 25 /Widths [ 365 666 556 222 222 500 556 277 556 556 666 833 333 610 556 777 610 277 666 556 277 722 500 277 500 500] -/FontDescriptor 998 0 R -/ToUnicode 999 0 R +/FontDescriptor 1003 0 R +/ToUnicode 1004 0 R >> endobj -998 0 obj +1003 0 obj << /Type /FontDescriptor /FontName /BAAAAA+LiberationSans @@ -5265,10 +5275,10 @@ endobj /Descent -211 /CapHeight 910 /StemV 80 -/FontFile2 1000 0 R +/FontFile2 1005 0 R >> endobj -999 0 obj +1004 0 obj << /Length 337 /Filter /FlateDecode @@ -5277,9 +5287,9 @@ stream x]Mn0FvR$Qi@!E*2dI[ г=!cc%~na`yz FR 3嶢;!ۮcc(-͋_Lgo">6۫s_0]D0Ї>O{F)iL8u"h-YEOfi@T$I).#ߙ8rgC I2"-BNyLٜ){8!?B>r 9qM\' 37t쟡d%+.)հN}_dj?en 3.އQA3 ~79L endstream endobj -1000 0 obj +1005 0 obj << -/Length 1001 0 R +/Length 1006 0 R /Filter /FlateDecode /Length1 13504 >> @@ -5322,46 +5332,46 @@ UY !%^Be=H pN׭٪jkZ fwwMS@/@5x$٫U A@J<C7l @6 ;gb TlHFA 6Ƞm?dAţ=80 endstream endobj -1001 0 obj +1006 0 obj 8740 endobj -989 0 obj +994 0 obj << /S /Transparency /CS /DeviceRGB /I true >>endobj -987 0 obj << +992 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [92.547 521.82 187.79 535.266] /Subtype/Link/A<> >> endobj -990 0 obj << +995 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [371.625 184.788 391.383 198.234] /A << /S /GoTo /D (figure.D.1) >> >> endobj -994 0 obj << -/D [992 0 R /XYZ 92.543 812.458 null] +999 0 obj << +/D [997 0 R /XYZ 92.543 812.458 null] >> endobj 278 0 obj << -/D [992 0 R /XYZ 93.543 749.341 null] +/D [997 0 R /XYZ 93.543 749.341 null] >> endobj 282 0 obj << -/D [992 0 R /XYZ 93.543 473.047 null] +/D [997 0 R /XYZ 93.543 473.047 null] >> endobj -995 0 obj << -/D [992 0 R /XYZ 209.804 250.24 null] +1000 0 obj << +/D [997 0 R /XYZ 209.804 250.24 null] >> endobj -991 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R /Im3 988 0 R >> +996 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R /Im3 993 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1010 0 obj << +1015 0 obj << /Length 2585 /Filter /FlateDecode >> @@ -5382,79 +5392,79 @@ A (* endstream endobj -1009 0 obj << +1014 0 obj << /Type /Page -/Contents 1010 0 R -/Resources 1008 0 R +/Contents 1015 0 R +/Resources 1013 0 R /MediaBox [0 0 595.276 841.89] -/Parent 986 0 R -/Annots [ 1002 0 R 1003 0 R 1004 0 R 1014 0 R 1005 0 R 1006 0 R 1007 0 R ] +/Parent 991 0 R +/Annots [ 1007 0 R 1008 0 R 1009 0 R 1019 0 R 1010 0 R 1011 0 R 1012 0 R ] >> endobj -1002 0 obj << +1007 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [153.947 632.609 160.869 647.279] /A << /S /GoTo /D (Hfootnote.12) >> >> endobj -1003 0 obj << +1008 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [492.483 416.432 499.405 431.102] /A << /S /GoTo /D (Hfootnote.13) >> >> endobj -1004 0 obj << +1009 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [350.101 402.13 502.729 415.432] /Subtype/Link/A<> >> endobj -1014 0 obj << +1019 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [79.791 387.54 311.323 400.986] /Subtype/Link/A<> >> endobj -1005 0 obj << +1010 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [207.41 255.278 302.653 267.63] /Subtype/Link/A<> >> endobj -1006 0 obj << +1011 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [234.285 232.319 322.354 244.945] /Subtype/Link/A<> >> endobj -1007 0 obj << +1012 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [220.106 208.684 516.196 221.986] /Subtype/Link/A<> >> endobj -1011 0 obj << -/D [1009 0 R /XYZ 79.787 812.458 null] +1016 0 obj << +/D [1014 0 R /XYZ 79.787 812.458 null] >> endobj 286 0 obj << -/D [1009 0 R /XYZ 80.787 497.208 null] +/D [1014 0 R /XYZ 80.787 497.208 null] >> endobj 290 0 obj << -/D [1009 0 R /XYZ 80.787 354.823 null] +/D [1014 0 R /XYZ 80.787 354.823 null] >> endobj -1015 0 obj << -/D [1009 0 R /XYZ 90.75 140.341 null] +1020 0 obj << +/D [1014 0 R /XYZ 90.75 140.341 null] >> endobj -1016 0 obj << -/D [1009 0 R /XYZ 90.75 128.171 null] +1021 0 obj << +/D [1014 0 R /XYZ 90.75 128.171 null] >> endobj -1008 0 obj << -/Font << /F39 382 0 R /F23 1012 0 R /F15 1013 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> +1013 0 obj << +/Font << /F39 386 0 R /F23 1017 0 R /F15 1018 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1019 0 obj << +1024 0 obj << /Length 1177 /Filter /FlateDecode >> @@ -5467,34 +5477,34 @@ p6U3 QЁUЏ׷j\)~PZ2Q"̰;OKD ~Hd':!y/F=iTn5ĺpEypd W /m_=zN_:\l7PTh#/XyYlYq/ǀI-Pp LGY 8ix3> endobj -1020 0 obj << -/D [1018 0 R /XYZ 92.543 812.458 null] ->> endobj -1021 0 obj << -/D [1018 0 R /XYZ 93.543 749.341 null] ->> endobj -1022 0 obj << -/D [1018 0 R /XYZ 93.543 534.349 null] ->> endobj 1023 0 obj << -/D [1018 0 R /XYZ 93.543 442.482 null] +/Type /Page +/Contents 1024 0 R +/Resources 1022 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 991 0 R >> endobj -294 0 obj << -/D [1018 0 R /XYZ 93.543 295.611 null] ->> endobj -1017 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +1025 0 obj << +/D [1023 0 R /XYZ 92.543 812.458 null] >> endobj 1026 0 obj << +/D [1023 0 R /XYZ 93.543 749.341 null] +>> endobj +1027 0 obj << +/D [1023 0 R /XYZ 93.543 534.349 null] +>> endobj +1028 0 obj << +/D [1023 0 R /XYZ 93.543 442.482 null] +>> endobj +294 0 obj << +/D [1023 0 R /XYZ 93.543 295.611 null] +>> endobj +1022 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1031 0 obj << /Length 1350 /Filter /FlateDecode >> @@ -5509,34 +5519,34 @@ z "qvz|@zCuPm+kʣP~9)@BhG&ʑ(7@&>.m]#kyMi 1Cv™*I1]*Ȯf\Й0Ƭ[#VH:2)^| /DѴLRJ3eGNg\0qC5SaIn$(qܙOkhcoddnESxU쏰NU/C{zCRee0ԓ4}8C?FA6LIz șd;p5'%m`4]c=kd=EOHmT;z_}̞;/X϶%n(pgIrt~E slj endstream endobj -1025 0 obj << +1030 0 obj << /Type /Page -/Contents 1026 0 R -/Resources 1024 0 R +/Contents 1031 0 R +/Resources 1029 0 R /MediaBox [0 0 595.276 841.89] -/Parent 986 0 R ->> endobj -1027 0 obj << -/D [1025 0 R /XYZ 79.787 812.458 null] ->> endobj -298 0 obj << -/D [1025 0 R /XYZ 80.787 655.859 null] ->> endobj -302 0 obj << -/D [1025 0 R /XYZ 80.787 462.109 null] ->> endobj -306 0 obj << -/D [1025 0 R /XYZ 80.787 331.884 null] ->> endobj -1028 0 obj << -/D [1025 0 R /XYZ 80.787 276.895 null] ->> endobj -1024 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] +/Parent 991 0 R >> endobj 1032 0 obj << +/D [1030 0 R /XYZ 79.787 812.458 null] +>> endobj +298 0 obj << +/D [1030 0 R /XYZ 80.787 655.859 null] +>> endobj +302 0 obj << +/D [1030 0 R /XYZ 80.787 462.109 null] +>> endobj +306 0 obj << +/D [1030 0 R /XYZ 80.787 331.884 null] +>> endobj +1033 0 obj << +/D [1030 0 R /XYZ 80.787 276.895 null] +>> endobj +1029 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1037 0 obj << /Length 1828 /Filter /FlateDecode >> @@ -5548,45 +5558,45 @@ xڭ]o ݸTa^n7n ;9Ux3wA*5ԡH{*Gpo&n_!_T)yk_]x0Df/v0*78&-ڽ\3UT۶6Zv poވu\023A=.!7-@ڑ<DD1CAIzs% endstream endobj -1031 0 obj << +1036 0 obj << /Type /Page -/Contents 1032 0 R -/Resources 1030 0 R +/Contents 1037 0 R +/Resources 1035 0 R /MediaBox [0 0 595.276 841.89] -/Parent 986 0 R -/Annots [ 1029 0 R ] +/Parent 991 0 R +/Annots [ 1034 0 R ] >> endobj -1029 0 obj << +1034 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [395.068 604.111 401.99 616.366] /A << /S /GoTo /D (Hfootnote.14) >> >> endobj -1033 0 obj << -/D [1031 0 R /XYZ 92.543 812.458 null] +1038 0 obj << +/D [1036 0 R /XYZ 92.543 812.458 null] >> endobj -1034 0 obj << -/D [1031 0 R /XYZ 93.543 725.188 null] +1039 0 obj << +/D [1036 0 R /XYZ 93.543 725.188 null] +>> endobj +1040 0 obj << +/D [1036 0 R /XYZ 93.543 660.747 null] +>> endobj +1041 0 obj << +/D [1036 0 R /XYZ 93.543 442.985 null] +>> endobj +1042 0 obj << +/D [1036 0 R /XYZ 93.543 258.342 null] +>> endobj +1043 0 obj << +/D [1036 0 R /XYZ 103.506 140.126 null] >> endobj 1035 0 obj << -/D [1031 0 R /XYZ 93.543 660.747 null] ->> endobj -1036 0 obj << -/D [1031 0 R /XYZ 93.543 442.985 null] ->> endobj -1037 0 obj << -/D [1031 0 R /XYZ 93.543 258.342 null] ->> endobj -1038 0 obj << -/D [1031 0 R /XYZ 103.506 140.126 null] ->> endobj -1030 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F23 1012 0 R /F24 699 0 R /F26 531 0 R /F15 1013 0 R >> -/XObject << /Im1 363 0 R >> +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F23 1017 0 R /F24 704 0 R /F26 536 0 R /F15 1018 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1044 0 obj << +1049 0 obj << /Length 1968 /Filter /FlateDecode >> @@ -5604,61 +5614,61 @@ d| ED A\ђ$SFADb"=v]7БCc=}+ t ~P00!Yk5wHڿ XW/L W'n\* P- "*N* endstream endobj -1043 0 obj << +1048 0 obj << /Type /Page -/Contents 1044 0 R -/Resources 1042 0 R +/Contents 1049 0 R +/Resources 1047 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R -/Annots [ 1039 0 R 1040 0 R 1041 0 R ] +/Parent 1056 0 R +/Annots [ 1044 0 R 1045 0 R 1046 0 R ] >> endobj -1039 0 obj << +1044 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [315.965 272.93 322.887 287.6] /A << /S /GoTo /D (Hfootnote.15) >> >> endobj -1040 0 obj << +1045 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [385.431 258.628 392.353 272.883] /A << /S /GoTo /D (Hfootnote.16) >> >> endobj -1041 0 obj << +1046 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [89.754 111.633 462.357 125.58] /Subtype/Link/A<> >> endobj -1045 0 obj << -/D [1043 0 R /XYZ 79.787 812.458 null] +1050 0 obj << +/D [1048 0 R /XYZ 79.787 812.458 null] >> endobj -1046 0 obj << -/D [1043 0 R /XYZ 80.787 585.985 null] +1051 0 obj << +/D [1048 0 R /XYZ 80.787 585.985 null] >> endobj -1047 0 obj << -/D [1043 0 R /XYZ 80.787 474.921 null] +1052 0 obj << +/D [1048 0 R /XYZ 80.787 474.921 null] >> endobj 310 0 obj << -/D [1043 0 R /XYZ 80.787 424.471 null] +/D [1048 0 R /XYZ 80.787 424.471 null] >> endobj -1048 0 obj << -/D [1043 0 R /XYZ 80.787 319.849 null] ->> endobj -1049 0 obj << -/D [1043 0 R /XYZ 90.75 140.126 null] ->> endobj -1050 0 obj << -/D [1043 0 R /XYZ 90.75 128.171 null] ->> endobj -1042 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] +1053 0 obj << +/D [1048 0 R /XYZ 80.787 319.849 null] >> endobj 1054 0 obj << +/D [1048 0 R /XYZ 90.75 140.126 null] +>> endobj +1055 0 obj << +/D [1048 0 R /XYZ 90.75 128.171 null] +>> endobj +1047 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1059 0 obj << /Length 2367 /Filter /FlateDecode >> @@ -5672,34 +5682,34 @@ e7 ]S LU+>6֐Ut@#3n{n UFN.|&G#7RXL'qj VY[V1*XCY1(Rۺk G.eYǤP8;L}TLۅbh}K,3|լ&SH"=fFWzJ,1g_,pMA4ߖŠj9|fE@O K%楨CWmf"gq%uem*&w@fr5y2q22ip1W<=3г,C(Cǘsa&X#K 8}l9ulR0RY ɬ endstream endobj -1053 0 obj << -/Type /Page -/Contents 1054 0 R -/Resources 1052 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R ->> endobj -1055 0 obj << -/D [1053 0 R /XYZ 92.543 812.458 null] ->> endobj -1056 0 obj << -/D [1053 0 R /XYZ 93.543 617.6 null] ->> endobj -1057 0 obj << -/D [1053 0 R /XYZ 93.543 469.859 null] ->> endobj 1058 0 obj << -/D [1053 0 R /XYZ 93.543 321.9 null] +/Type /Page +/Contents 1059 0 R +/Resources 1057 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1056 0 R >> endobj -1059 0 obj << -/D [1053 0 R /XYZ 93.543 158.009 null] +1060 0 obj << +/D [1058 0 R /XYZ 92.543 812.458 null] >> endobj -1052 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] +1061 0 obj << +/D [1058 0 R /XYZ 93.543 617.6 null] >> endobj 1062 0 obj << +/D [1058 0 R /XYZ 93.543 469.859 null] +>> endobj +1063 0 obj << +/D [1058 0 R /XYZ 93.543 321.9 null] +>> endobj +1064 0 obj << +/D [1058 0 R /XYZ 93.543 158.009 null] +>> endobj +1057 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1067 0 obj << /Length 1100 /Filter /FlateDecode >> @@ -5710,28 +5720,28 @@ Fx J?0bZ Hz$: `j\#:,1ZGηBAm ]bpvͥ)N9?yhq9oӲ˘)`la@25^w{"{;L1Ǎ[h@_}pZv4w]A 4.hLbq Wn endstream endobj -1061 0 obj << +1066 0 obj << /Type /Page -/Contents 1062 0 R -/Resources 1060 0 R +/Contents 1067 0 R +/Resources 1065 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R ->> endobj -1063 0 obj << -/D [1061 0 R /XYZ 79.787 812.458 null] ->> endobj -1064 0 obj << -/D [1061 0 R /XYZ 80.787 749.341 null] ->> endobj -1065 0 obj << -/D [1061 0 R /XYZ 80.787 644.699 null] ->> endobj -1060 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] +/Parent 1056 0 R >> endobj 1068 0 obj << +/D [1066 0 R /XYZ 79.787 812.458 null] +>> endobj +1069 0 obj << +/D [1066 0 R /XYZ 80.787 749.341 null] +>> endobj +1070 0 obj << +/D [1066 0 R /XYZ 80.787 644.699 null] +>> endobj +1065 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1073 0 obj << /Length 19 /Filter /FlateDecode >> @@ -5739,91 +5749,123 @@ stream x3PHW0Pp2Ac( endstream endobj -1067 0 obj << -/Type /Page -/Contents 1068 0 R -/Resources 1066 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R ->> endobj -1069 0 obj << -/D [1067 0 R /XYZ 92.543 812.458 null] ->> endobj -1066 0 obj << -/ProcSet [ /PDF ] ->> endobj -1073 0 obj << -/Length 1496 -/Filter /FlateDecode ->> -stream -xڵWKoF Q"yFz)466hR٤$+D䐒뵁(#guk jr RKJ/ CX$8]a}_;nF'{n#ABOX^oOBFd6$.on"[ @_U ĺ3|*ue}%]Twe+!|UXz!5.Kƞ/CDU8'>ӠiQ77u3)o뮬ttn{|r"ag м>5gr}ȱLȂ)PټuuUgc6?uZ"2!F!VV4/PC*bTe]&P6)nPȭnf%l1}{S:t?ZIQAhXWM˪P&{K,^lGH#v -Z2L)1dKXVj㳡M\.1SȀ"<١PF8xԟ}9 -jsG ʳp 1޺)Y5@$".PquܵG7{xiR@a7 #b{=r*+&-*QLQlq=X9:d=+jm&ZM'q) -QdMPAoN$!:\ -X#}ٰ3H@ۙf۫WA4 !Gٻdm3jQdH@{V\w# /C& ##i9?-g=dJVH9(l9I2CIi=~lLAfj9̔uaQܘVN("Gy|y@oxq~zњ0hU-tX WPhQftn ô̂t$IG6]x3T*)(Mc[-MS9sqsW>9HԼF n<[,S~dj=RWslKp35" Vmݝ:SOgx&E/{ ԛkcl&j ^3-J$De3mCҹfzV9896o.[K70sg.\ʦx$幮6}vќ!IT^٘s!f -H@,@13R5f|! $t ,!Y$H;5' 䲘 ߤ?)\m. DP!9]wOoo^n{}΋4DxU7Oû52FbT3E/c_`5A3).s4B }[Ƒ7s YsMKq:,%b/ -Od(0dSr!W -endstream -endobj 1072 0 obj << /Type /Page /Contents 1073 0 R /Resources 1071 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R -/Annots [ 1070 0 R ] ->> endobj -1070 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [436.763 141.451 455.373 154.896] -/A << /S /GoTo /D (section.2.3) >> +/Parent 1056 0 R >> endobj 1074 0 obj << -/D [1072 0 R /XYZ 79.787 812.458 null] ->> endobj -314 0 obj << -/D [1072 0 R /XYZ 80.787 749.341 null] ->> endobj -318 0 obj << -/D [1072 0 R /XYZ 80.787 639.834 null] ->> endobj -322 0 obj << -/D [1072 0 R /XYZ 80.787 283.08 null] +/D [1072 0 R /XYZ 92.543 812.458 null] >> endobj 1071 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F26 531 0 R /F40 383 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] +/ProcSet [ /PDF ] >> endobj -1079 0 obj << -/Length 1702 +1078 0 obj << +/Length 1704 /Filter /FlateDecode >> stream -x}ko6{.dɯ}wm݂ ap'1șGcPDTFI/SA$Q7"i*K1-ǽ77ŸC-rnus2O [m0΂$ ǻWk2baߴ~.sXI"Ko?Pu5MO@^`rMCJ&#~am~5QgR)Q/߄GRh)E lQ%MSO&A(#:*ըh -[!9 +FdEH3}ux:*Uc$EY3ʂPioeJt:^_E$%h2_۪{'BEF1ʃt^*g0Y:,"~/jW |)@ -J`IJ#jۗ D -8 -0c1+:7!2 Y_^jWE@똔W6e#y09推ٰFLUu0I]Os:(SQ tAOto߀+YE(,F@V+\[7SAYMUwD<DW#b}=ۖEӮ;9Ğ -B`_4Wx4LCߟ}V}Q8T:25`]`c2ڪ̵6( 1⿲z6y0V} -lDlHIDjkL x -:<Ħ@X}z*{Y7:V%  Đ>Ci($<^4]f -=3V9?)Km)TfvkSU 5tf]fqq Q$͝~J$P)g;˥E{\ e(7ϛ"1 j=˪? Paͦ=ɄJ:77;nzaXHS~pr| "y0*u!MH7ѕrBドbP@5!u8 +_BYnMPXw zKO&+N"/puHYSR r;"-p>>,cnP64*k_$8`C:CF@t/,틦ufixH@Wd` zz%mEU&aWd;V)f~W0˽jL۔)rrCPT/W!iIɓxq $)< H6H}>tMTu}Ѽ0Vz1Y~MPA<?]39w)‹-xUPCd8?aUCm$2TQ|bkP$ +_c9O~,]xe;TDYgK/sV˚Vw 4 ".Typ묺g4}}:Gr2 PP5t=~%[PL"wTk*QLqyr3Os7;d;+6㭃ADŽ!TЏi4YkFO$ǡ  $[>wx3μ6so@CM Li&0Ȝ7WuYU#Bď#|5G?8̞ endstream endobj -1078 0 obj << +1077 0 obj << /Type /Page -/Contents 1079 0 R -/Resources 1077 0 R +/Contents 1078 0 R +/Resources 1076 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1051 0 R +/Parent 1056 0 R /Annots [ 1075 0 R ] >> endobj +1075 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [436.763 244.639 455.373 258.084] +/A << /S /GoTo /D (section.2.3) >> +>> endobj +1079 0 obj << +/D [1077 0 R /XYZ 79.787 812.458 null] +>> endobj +314 0 obj << +/D [1077 0 R /XYZ 80.787 749.341 null] +>> endobj +318 0 obj << +/D [1077 0 R /XYZ 80.787 647.598 null] +>> endobj +322 0 obj << +/D [1077 0 R /XYZ 80.787 376.794 null] +>> endobj +326 0 obj << +/D [1077 0 R /XYZ 80.787 193.761 null] +>> endobj 1076 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F26 536 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1082 0 obj << +/Length 2334 +/Filter /FlateDecode +>> +stream +xڭn6_˪1,p`ٍ{g2A Kl]qb:4*bny/IHRn $cEL\Tlk3w"0%A7|<{o~qyrA\o4֕3t[;iuy;|=}f ͲX*a5j,pʧﶿ~x]gŌ!ǿorXd x1侗rsDWnhqH̚-ՠgNQ[tfaYQ?Bz*,-')~+e̜Ά{<ۺB2gwPړh) eғB TM`XrA= -E4-J9NxL־UYh|ʾܹS:ɋ(GMu\(X8MK*YSNтe.B "nHc1-'1n@Fxj9whC'ŇsEK^ ҟ[K'D>~a.4`EQŹ]( a<.[7Vd(+^atW B$νGcGH[>e,IEv J%Qmcf1]Sh5[DAEԸQ(޼% ~?Z<\(=s+O>ִx<O뜀3KG cGkaN;⊉@9av[r@̼ %дN81D—?Y幈aC7/>!HHh+6&C.=IuY)B]#w~ViGI"LE+Ap E^2뾁}~bh J/e\E^L H`E#wbI!"l܁w`fnQ8ߩ +m%a(  )eM٘2xONjS"4:eћ +Jxǰ@J+Տ?v2 YlAB)h E ڿ"wơ 3|n&7WGt 0 QPMtҀ)O|/^l}/^Saiͤ8d2aL ĈxBR\R[~{k}@b_,U7ߙOE!$P"=Ab{O'U. MGՊ\& wܽ&J]EyVKjX-ZO㕠B[`?ƥ._z~9H%<۵5 }VA:\x=sdDw8f B н^08C R=3:l%+)F֖b?b$w3sV\82^䉖l7e7N!Juy`H)\uz֚h;i]k +#>ӐL0PR`%26%A^8BS V|ufѦxoEs"{nmQ/gH'B'ZK3Lp'Ml`hR8_pKqRapcgiֵ~b|5f]ZmR|ز Hڤ6,|^t*tIB͘Beȉ^@CkРɪaׯY4M:‘L&M0 Rofj1hǮ%Z5+zU>_>ZbZg9/5c]؂cpL27R̃df^,Y> endobj +1083 0 obj << +/D [1081 0 R /XYZ 92.543 812.458 null] +>> endobj +330 0 obj << +/D [1081 0 R /XYZ 93.543 281.714 null] +>> endobj +1080 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F26 536 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1090 0 obj << +/Length 1514 +/Filter /FlateDecode +>> +stream +x}˒Fk]SUIlX4+Q@e>==6=~Ix;OxW}{R֑y2Yꥩck>Ȅ6)۬$,ꯕ*E)D'ɈCkWw!T +u[Ư߅PwFփ"J\{A`GU?N;!;c;oN~Q(_n&d-AeQ}U | "㫚{C@$NH&mѩPZ0bXe*N0(zUAzBmXܭbE߄S*ۦj]8,zhm_ƫP)i6t*`bgHY7\Ajjk"CgND~ak7jhًW,kAePQ,ђ7XYHgztm,ON%$١{](ѧ$}Nhڊ<PC)yCV]s%?X#[IiYB=}P_'0$3=xkQ&W{œw!z-u: ++|42u"߲ ywFk=ΡDmLƠ<'26ײ!u/-th4*ʰ mوzF6ҰyL,m4;S? Ta h>-iϔ-yD$W׺`JMn'Ma=)q"(mu{p4_ݸlڙ dL浲m`'}t|.w^՞ih; pfzKȿ. +endstream +endobj +1089 0 obj << +/Type /Page +/Contents 1090 0 R +/Resources 1088 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1093 0 R +/Annots [ 1084 0 R ] +>> endobj +1085 0 obj << /Type /XObject /Subtype /Image /Width 659 @@ -6081,236 +6123,227 @@ F yP% %s8rFJ¤C^" 1yC!PC#7jy*L:%C0̱055 yݏ:555 <)KJʌALMME"Pc(**JU􃒒ҏ=BI*,,iS!jHpF!BGnB!!jHpF!BGnB!!jHpF!BGnB!!jHpF!BpF!>BUAEEsҭ?B!Tee|d6!B4Dm7B! UTT,÷BvR /+'+KMCG'B!2gnɍz;" endstream endobj -1075 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [431.913 527.68 451.85 541.126] -/A << /S /GoTo /D (figure.E.1) >> ->> endobj -1080 0 obj << -/D [1078 0 R /XYZ 92.543 812.458 null] ->> endobj -326 0 obj << -/D [1078 0 R /XYZ 93.543 749.341 null] ->> endobj -1081 0 obj << -/D [1078 0 R /XYZ 158.662 207.224 null] ->> endobj -1077 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R >> -/XObject << /Im1 363 0 R /Im4 1076 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -1087 0 obj << -/Length 2427 -/Filter /FlateDecode ->> -stream -xڝYo6BYD=ˡA5dI]mVR]_k+ XpHg~W9rxRGk/5w6['Q^N/CgS8ݫژȽ^%n(W (G;$F1L4hg -f;ow78";3ASN?A8ĺwB_yih];#ﰤu=8:|m© =PRfW~XWyÚ ƩJ7oǺDWL[;ԥK脷vIdуt[n~RʯM uue&2hAJ97ڊ(ĚFݵ!N6[!pPM - -{*yo頱Й$\WALN [m#˱/CM-;r\f>q3a?43 -/ ҟQֵTq / #m$o*/ؙK:`73CqD T e|Al(R"2$Z1Wyt-?TtA|'#] H[1x?t*$б'h' A^ 9mYzی=!h==XuACO}ݲ[[ّ%>Gf@~elc${w1i0,iCrl]7kK!-iN9N 2LUƦըe=uCb UͧꪳsI@"rз;$ %8a4f̗%ߦܓ\imΥ)GU(0-" ,/Q^''.|Rd':rrGKc`AN>k˯={>&6N)gW%z!2í`?/*CkɘWmۗ3rdaCѩ |RPEei拃;L<)FTa䪺alӿn!gjyFN)敐6d&6~N HET3>Ʋ,㩑T@69C+f D͵P tՀ}yOc95+G] -H -h- : d{.R~ :5u}נ&Fd l`4Kyԟy}YTn7?ذ#df/hQwR!PRsܮ@h<M^}ͻ_2ݖ7]qx)vY1)ߏbnKG LzQZQM -@^hqJS!jxDvv[S4<-u+|c({2@#Ra/ 0r>XIS}b/2*H}WY- -endstream -endobj -1086 0 obj << -/Type /Page -/Contents 1087 0 R -/Resources 1085 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1089 0 R -/Annots [ 1082 0 R 1083 0 R 1084 0 R ] ->> endobj -1082 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [439.692 607.778 458.302 621.08] -/A << /S /GoTo /D (section.3.5) >> ->> endobj -1083 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [483.031 607.778 502.729 621.08] -/A << /S /GoTo /D (section.B.2) >> ->> endobj 1084 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.245 127.005 161.855 140.451] -/A << /S /GoTo /D (section.3.1) >> ->> endobj -1088 0 obj << -/D [1086 0 R /XYZ 79.787 812.458 null] ->> endobj -330 0 obj << -/D [1086 0 R /XYZ 80.787 749.341 null] ->> endobj -334 0 obj << -/D [1086 0 R /XYZ 80.787 567.446 null] ->> endobj -338 0 obj << -/D [1086 0 R /XYZ 80.787 232.073 null] ->> endobj -1085 0 obj << -/Font << /F39 382 0 R /F38 371 0 R /F40 383 0 R /F26 531 0 R >> -/XObject << /Im2 364 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1096 0 obj << -/Length 2052 -/Filter /FlateDecode ->> -stream -xڕXnFB!ͣ)R`63rGIjK&ÞyiKY0:Rf m'*v4c^ - f14i7 -g<9ԛ&:ao$rvN tnqt%*7k/J3?"4u}n^e[Qvƅ,M?Uec\vu)1iYo -=} yߪt ĎgƩgV{ݣS*s_U@5 ]G4# $bA)3tMŃyhʿG? 6y]wx{^a Ս -*_)ۛϿ]aJa#mvEΟ}yWw bj4X,J|5i}@ők=^KK b愩B=+MI88Ef D9x(o(VB8K!cYEyGQ HB\"뷋yBn1\U̾t1YkpaV9Lh;p19Ti͞U >hgvYC"1]8IV%eCi̍3ȏ"Mal}MKBdoT%3 "+pZw넒+}#V/ Z6}_*oMȉ\ -SaAE]t؀:fROKwH>8l:ބSPjϼb@L 6twpt׼f2.tS4y(;EFA ˮ15ɜ6 -m&]$ KxXxt73Ǟ|%C, ݈ KU*rmuFN$`<F(³BW@ oV!IFG._G6ZPPOm[1Em<V<'}Q#*Nmxx|UW䬁ęP&AX$yɋ=]to[/Y̤rq̥TB{$m-`biyU/̢kBSNDųh66|E" -`JIJgbE,^0_A~/E.],?~ d;y{; -{aT.B?mNx<b29 H CQ8֢^E͟p -z]z Z6=*=Cst񘈣lAO\~E!$L" ZȞ%,"4,w9-lfm.{B3=!@aMy$"uy8Lsz)ZN#2yL%G]c tL8RVqy;X`KS}=kge2#^J"âoK±Eg>k(`0/@TaMp njQ0_J= Ƿg$$9:Y77 -*h> endobj -1090 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [265.729 552.53 284.339 565.976] -/A << /S /GoTo /D (section.2.1) >> +/Rect [419.157 689.615 439.094 703.061] +/A << /S /GoTo /D (figure.E.1) >> >> endobj 1091 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [397.095 127.149 415.705 140.451] -/A << /S /GoTo /D (section.2.3) >> +/D [1089 0 R /XYZ 79.787 812.458 null] >> endobj 1092 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [207.495 112.703 226.104 126.005] -/A << /S /GoTo /D (section.2.4) >> +/D [1089 0 R /XYZ 145.906 368.656 null] >> endobj -1097 0 obj << -/D [1095 0 R /XYZ 92.543 812.458 null] +334 0 obj << +/D [1089 0 R /XYZ 80.787 234.607 null] >> endobj -342 0 obj << -/D [1095 0 R /XYZ 93.543 698.418 null] +1088 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R >> +/XObject << /Im2 368 0 R /Im4 1085 0 R >> +/ProcSet [ /PDF /Text /ImageC ] >> endobj -346 0 obj << -/D [1095 0 R /XYZ 93.543 447.439 null] ->> endobj -350 0 obj << -/D [1095 0 R /XYZ 93.543 207.637 null] ->> endobj -1094 0 obj << -/Font << /F39 382 0 R /F40 383 0 R /F38 371 0 R /F26 531 0 R >> -/XObject << /Im1 363 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1101 0 obj << -/Length 873 +1098 0 obj << +/Length 2282 /Filter /FlateDecode >> stream -xڕU[8~%؎ݤhX*$t$nm.%3qBst`ՇgsW#~ucR1,<3eZ}Wqb6z"z"z޿ݼo$L2m=-׊fu#4BgVfP^8%eҵtb+ ",ש -!Xvm]Wc"X"5zK=67 q&},X¹p7ۊwSN.[u:"+] -VT0 -ٖpl=;qXB,!za'y{&|H -դwA/ 7/.&8}F91Z38@ONaY`V'eZecqG TaAK!JKT͹va#;!F5ܜl ]0:pêz&4US!Y>_u" 0:>NWmw ͓/ή%ؑaBϜ0'@B=nڹ65ƣfy: ~ t880~f&[p;BW/~/*lI;<F}^ePk1@ΞN5k?vIUTCg[`#/"[y˭l?8h +xڭko6/=xiQD.^6ަ"%W=~}g8C{)pX`Es9Ih +NV_|'2Ypu[KM{3ҖN}Q#Hwv{Gݻ^h c*rHmz]o2p7ms0^s~<lo~}wqq9ȇ<'@4*GY;$a\9w Ƹ +?ЎVZ8"o '^(,~#CMBK|:ꟈh!rf`1fCEG,QuW r#v4iÁ+-{# Fzn1 QSHV`y:A eD'ā;F{r{-EGd"Jּ:Ʀ{3cWQ2U{WwB4 ݷs2X #p`9{yk4C/zgh%kh^Kܷ#ؗÚH[}>,Ok:oł4! w+ɝA!h@0y0=wqpq𢓋xX'SNPց(έROp8MCIfߏE++O?5$R[ ghDPUK(_<bҾG#BIs0@e^t]߀yMf!c>0 } Xv;f*}( C;V;L.Ǜ;UhFYJ6ƨhh+~HqƬfm3< \eg(ϴGY6 LU9%-C +<.'is ʋ#yb #.ɲ\Q0,텱Gt=O"/(FD4|<فЉ_Q4̃7 ?0^."i5SOśxA4d %Pʽ|8=vv MfP(φ֋=Kgȑ.q%-a ZD(9>eU7ܷ47DlDcDAD}E}Jgp=?XuJkxz֣b.Xd,*G";Vre'7dĽuN$6Wld5Ƅޜ,;b]Sq{~Ƞb%`2ga +,)wJb0t_ih4?&dv{ 9ӻ_o߾ëw߯O*_Tj@127:tĠQ͝E +3JuSb¨ 5*[kV&L,jYc-N1LtP((`XcraeStcJe~IMQqvM{'"Mє"ʙCZJ9-R}_|!h:9yB~AF{r +xq5S~?XX,u&sYE+((5vv@%+ +5h2=|OFK"Fá!S~ --KM g@J: aliP[3>UEh +PcG}r*'u *T0#Ѳ]k*jnleJLN*ǏHͻd܃*ΧZqI)^TlBtusʶs۹h,&zu +D4rNC-pLpi@Z0;h7T"} - 橠cXW Y9*8:{1\p&=WE׼>'8;YWPZ 0s$;n*hymb2@j EE ysO՘Bӕ/G (~]0IxG/V)b\6ZOu'&(@Jȳ$s)5V{~0'yK_*`P`52(̒FX0v\O aHg"^C*8itS`خ#p#t1kX2"V ,=tϒ6&-QIPZ6k{zE AJpF}҈U%@  +|6q`<$OLXR ~g'_]J`j#yiKBcL@1,+*"߾wҌIJ͎e~(ˆhuEJ endstream endobj -1100 0 obj << +1097 0 obj << /Type /Page -/Contents 1101 0 R -/Resources 1099 0 R +/Contents 1098 0 R +/Resources 1096 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1089 0 R -/Annots [ 1093 0 R 1098 0 R ] +/Parent 1093 0 R +/Annots [ 1086 0 R 1087 0 R 1094 0 R ] >> endobj -1093 0 obj << +1086 0 obj << /Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [195.99 682.382 378.395 695.827] -/Subtype/Link/A<> +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [452.448 719.428 471.058 732.73] +/A << /S /GoTo /D (section.3.5) >> >> endobj -1098 0 obj << +1087 0 obj << /Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [316.342 573.39 498.748 586.836] -/Subtype/Link/A<> +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [495.787 719.428 515.485 732.73] +/A << /S /GoTo /D (section.B.2) >> >> endobj -1102 0 obj << -/D [1100 0 R /XYZ 79.787 812.458 null] ->> endobj -354 0 obj << -/D [1100 0 R /XYZ 80.787 749.341 null] ->> endobj -358 0 obj << -/D [1100 0 R /XYZ 80.787 647.049 null] +1094 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [156.001 155.897 174.611 169.342] +/A << /S /GoTo /D (section.3.1) >> >> endobj 1099 0 obj << -/Font << /F39 382 0 R /F38 371 0 R >> -/XObject << /Im2 364 0 R >> +/D [1097 0 R /XYZ 92.543 812.458 null] +>> endobj +338 0 obj << +/D [1097 0 R /XYZ 93.543 655.554 null] +>> endobj +342 0 obj << +/D [1097 0 R /XYZ 93.543 273.175 null] +>> endobj +1096 0 obj << +/Font << /F39 386 0 R /F40 387 0 R /F38 375 0 R /F26 536 0 R >> +/XObject << /Im1 367 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1103 0 obj +1105 0 obj << +/Length 1935 +/Filter /FlateDecode +>> +stream +xڝW{o6ߟB TH\86EEȴ-DT=oy`"<CFoVٮn'DZz۽Ea^0Vw::YYǑwJmmi* +TJ,1-ps;/q$^Bw 2d3<%p4+WYwT f2OZ',WDu^f=:S5E>GyvD~~jn2u?UeS;xXy`O|.c3ve}`ھCRsYߌ4/̿)BAY XYo餩!ZUBǼE3=c8dWveg[6T= zbr2v1w*X+_:)B! m~SwW2[SH]tGGgܩh,d(%L'M/cgY~M6&־Mm3E^xZKn# A%q1N16Mߗkv%ijPHVe?pzqu(?uLX(v8{s)X%q 0%usRA܎iY1A' + o#-mhM! e4Ma>$X 0405TvM}2pIkrBD%J2?~WDˉS"apP<'U>'~L<{cO1SLn6B l0oڶ>&iBPl8K ++twx7+2 PsI`.$c#!1XܶU)Zw,̠O-R˥^̗ }` '%D,,9CH@/ M7Oąl3(Sxu" [UAK./!x|}LEڿÉV,MӋf?m|lpWDL. fZA1`KtAfǔh{/t*Őkr +E^{̀!G%%T|ٗQ@oA/\!{-$ϊfxV֎4#^6ʂ=Wvti\* I9d{ǜjI]0=қŨ P2LR-wg ,bטmU IJUY7+{lG{302Y2%3|k| #@# jѢ me/?<0 C2a̖f6R'6D}kNa|嵡kaIyJ 2@tJmPN*燔A'i:6Qtt]0C +endstream +endobj +1104 0 obj << +/Type /Page +/Contents 1105 0 R +/Resources 1103 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1093 0 R +/Annots [ 1095 0 R 1100 0 R 1101 0 R ] +>> endobj +1095 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [252.973 606.144 271.583 619.59] +/A << /S /GoTo /D (section.2.1) >> +>> endobj +1100 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [384.339 127.149 402.949 140.451] +/A << /S /GoTo /D (section.2.3) >> +>> endobj +1101 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [194.739 112.703 213.349 126.005] +/A << /S /GoTo /D (section.2.4) >> +>> endobj +1106 0 obj << +/D [1104 0 R /XYZ 79.787 812.458 null] +>> endobj +346 0 obj << +/D [1104 0 R /XYZ 80.787 749.341 null] +>> endobj +350 0 obj << +/D [1104 0 R /XYZ 80.787 475.52 null] +>> endobj +354 0 obj << +/D [1104 0 R /XYZ 80.787 213.423 null] +>> endobj +1103 0 obj << +/Font << /F39 386 0 R /F38 375 0 R /F40 387 0 R /F26 536 0 R >> +/XObject << /Im2 368 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1110 0 obj << +/Length 871 +/Filter /FlateDecode +>> +stream +xڥU[: ~_ZMy: .ZހZxmf7za~=vjWGhىϗ{_0k4EB8_(C:]@ȣଐ/z2uXtH;B_x$O >lҹ"6#.<?{i>H\0|:ݪf﹚NdJUs@JVBr>:5v8 ,~VYLi{S`F,&lk3$> +endstream +endobj +1109 0 obj << +/Type /Page +/Contents 1110 0 R +/Resources 1108 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1093 0 R +/Annots [ 1102 0 R 1107 0 R ] +>> endobj +1102 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [208.746 682.382 391.151 695.827] +/Subtype/Link/A<> +>> endobj +1107 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [329.098 573.39 511.503 586.836] +/Subtype/Link/A<> +>> endobj +1111 0 obj << +/D [1109 0 R /XYZ 92.543 812.458 null] +>> endobj +358 0 obj << +/D [1109 0 R /XYZ 93.543 749.341 null] +>> endobj +362 0 obj << +/D [1109 0 R /XYZ 93.543 647.049 null] +>> endobj +1108 0 obj << +/Font << /F39 386 0 R /F38 375 0 R >> +/XObject << /Im1 367 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1112 0 obj [380.8 380.8 489.6 761.6 272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272] endobj -1104 0 obj +1113 0 obj [947.3 784.1] endobj -1105 0 obj +1114 0 obj [795.8 801.4 757.3 871.7 778.7 672.4 827.9 872.8 460.7 580.4 896 722.6 1020.4 843.3 806.2 673.6 835.7 800.2 646.2 618.6 718.8 618.8 1002.4 873.9 615.8 720 413.2 413.2 413.2 1062.5 1062.5 434 564.4 454.5 460.2 546.7 492.9 510.4 505.6 612.3 361.7 429.7 553.2 317.1 939.8 644.7 513.5 534.8 474.4 479.5 491.3 383.7] endobj -1106 0 obj +1115 0 obj [777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8] endobj -1107 0 obj +1116 0 obj [277.8 277.8 777.8 500 777.8 500 530.9 750 758.5 714.7 827.9 738.2 643.1 786.3 831.3 439.6 554.5 849.3 680.6 970.1 803.5 762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6] endobj -1109 0 obj +1118 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 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] endobj -1110 0 obj +1119 0 obj [777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000] endobj -1111 0 obj +1120 0 obj [500 500 167 333 556 222 333 333 0 333 584 0 611 500 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 191 278 278 355 556 556 889 667 222 333 333 389 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 278 584 584 584 556 1015 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 667 611 278 278 278 469 556 222 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 500 500 500 334 260 334 584 0 0 0 222 556 333 1000 556 556 333 1000 667 333 1000 0 0 0 0 0 0 333 333 350 556] endobj -1112 0 obj +1121 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 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] endobj -1113 0 obj +1122 0 obj [500 500 167 333 556 222 333 333 0 333 584 0 611 500 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 191 278 278 355 556 556 889 667 222 333 333 389 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 278 584 584 584 556 1015 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 667 611 278 278 278 469 556 222 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 500 500 500 334 260 334 584 0 0 0 222 556 333 1000 556 556 333 1000 667 333 1000 0 0 0 0 0 0 333 333 350 556] endobj -1114 0 obj +1123 0 obj [611 611 167 333 611 278 333 333 0 333 584 0 611 500 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 238 278 333 474 556 556 889 722 278 333 333 389 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 333 333 584 584 584 611 975 722 722 722 722 667 611 778 722 278 556 722 611 833 722 778 667 778 722 667 611 722 667 944 667 667 611 333 278 333 584 556 278 556 611 556 611 556 333 611 611 278 278 556 278 889 611 611 611 611 389 556 333 611 556 778 556 556 500 389 280 389 584 0 0 0 278 556 500 1000 556 556 333 1000 667 333 1000 0 0 0 0 0 0 500 500 350 556] endobj -1115 0 obj << +1124 0 obj << /Length1 1630 /Length2 9702 /Length3 0 @@ -6357,7 +6390,7 @@ k ͈4\H#Ůx&wvWpcƴo/$Z%sfڑ9)65e+Ig/^%"f[l&~eD|a6d$a|\bR9J{t`\|o>&پ-), ^lMӤ~^}w{FW<+OE#1/_(,zkBMFH65/TX58x1Rl>P\jվ`Q0/h}3hGl'_h^8 c3;nGoĽ``r~)H:q}fݙK:7e7vv;]n80gȳZBOo`!6#{>F+7b16@ endstream endobj -1116 0 obj << +1125 0 obj << /Type /FontDescriptor /FontName /HIUEIO+CMMI10 /Flags 4 @@ -6369,9 +6402,9 @@ endobj /StemV 72 /XHeight 431 /CharSet (/A/B/D/E/F/H/I/M/N/R/S/T/U/V/Z/period) -/FontFile 1115 0 R +/FontFile 1124 0 R >> endobj -1117 0 obj << +1126 0 obj << /Length1 1429 /Length2 6326 /Length3 0 @@ -6411,7 +6444,7 @@ iR -wn ⤸v?]򙤕dM%w*uƹv'2pg-)ڌt8_PGIiVdBcI䌎=9gZo}L@DX' G~vʍS GeW2e}2B endstream endobj -1118 0 obj << +1127 0 obj << /Type /FontDescriptor /FontName /UDEMZJ+CMMI12 /Flags 4 @@ -6423,9 +6456,9 @@ endobj /StemV 65 /XHeight 431 /CharSet (/M/N) -/FontFile 1117 0 R +/FontFile 1126 0 R >> endobj -1119 0 obj << +1128 0 obj << /Length1 1751 /Length2 10955 /Length3 0 @@ -6473,7 +6506,7 @@ U =#r^t&cڃmK`u5ZXMR,E38Cr*UPbBZK 7tQ]OYR;ƥ6uej(N" $&!x w@/eFsLލuYRD1CC&2c.]2HdK.?͗Y? `(M'Y_8JN2z6d沵r6}_]/7a$./py(#}ʓY4daΞ6㐚D;>D_a9!fіX? ~Kt# PüA`R +Z1rywFzS e[_pBQ$턙!׏Ѧ bVD/V7hyNs{3v͓h.r2k]V,Z^5 4c{tGsTW*4)17T5&|Û[}pX~Ħ#,Rx;p.Yh+6mWYk_E@5 lq@]u endstream endobj -1120 0 obj << +1129 0 obj << /Type /FontDescriptor /FontName /BSWXNP+CMMI8 /Flags 4 @@ -6485,9 +6518,9 @@ endobj /StemV 78 /XHeight 431 /CharSet (/A/B/D/E/F/H/I/L/O/R/S/T/U/V/Z/a/c/d/e/i/l/n/o/p/t) -/FontFile 1119 0 R +/FontFile 1128 0 R >> endobj -1121 0 obj << +1130 0 obj << /Length1 1457 /Length2 6444 /Length3 0 @@ -6532,7 +6565,7 @@ SHKV9 Su#e:>TSEW0;d]ݞ5ܾ.i1<~즇A n& AƧ5r_p'M3Yr~ g(%X?ug%鰦 (ihHA[ IRmjcC*.r愽~9ko#;u=A63%qfB&K]o9DO<[\^ 7چӣ Xbe9XNOm=ts^;0oV>f8N-IoK5mP1qBt1Iֹ]}` ɀw,a܁yؙ JwOnI>fnƳug/ӹ,H1W3;!!$tۉr;ݺ>n?\F\.yqMt5 t0> endobj -1123 0 obj << +1132 0 obj << /Length1 1482 /Length2 6705 /Length3 0 @@ -6589,7 +6622,7 @@ L 6z 0T1@zyҖbT}[q %:-^4q\^x5sg&7K7X`қ*tV̽&KZ׽E̡vK -`3mu@klsg88i&y-1xHW}Enh endstream endobj -1124 0 obj << +1133 0 obj << /Type /FontDescriptor /FontName /SKDFIX+CMR12 /Flags 4 @@ -6601,9 +6634,9 @@ endobj /StemV 65 /XHeight 431 /CharSet (/colon/one/parenleft/parenright/plus/six) -/FontFile 1123 0 R +/FontFile 1132 0 R >> endobj -1125 0 obj << +1134 0 obj << /Length1 1498 /Length2 6757 /Length3 0 @@ -6650,7 +6683,7 @@ m8 {}us,γ͢tZpt[56VIDG4H%D03 {Et)\R:c58Xڭޞ:Bԟ7,l!SyHlꎛidI$Y _wf+G<|Mё_RaC:żJӥ;O{F&-YA\9e|{vdRBڜyX43Kͅ endstream endobj -1126 0 obj << +1135 0 obj << /Type /FontDescriptor /FontName /LHERGL+CMSY10 /Flags 4 @@ -6662,9 +6695,9 @@ endobj /StemV 40 /XHeight 431 /CharSet (/arrowdblright/asteriskmath/bullet/greaterequal/multiply) -/FontFile 1125 0 R +/FontFile 1134 0 R >> endobj -1127 0 obj << +1136 0 obj << /Length1 1606 /Length2 16155 /Length3 0 @@ -6727,7 +6760,7 @@ GZk g67'tI_9, 6/6CkpeƠQ"Ka<.*]XqI6SakZO~5bYXz%P>1^9YNu=L|}rMvhwmQJlK鼀pQW=c4hJt-MU}5Vu5F endstream endobj -1128 0 obj << +1137 0 obj << /Type /FontDescriptor /FontName /WNSOKY+NimbusMonL-Bold /Flags 4 @@ -6739,9 +6772,9 @@ endobj /StemV 101 /XHeight 439 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/X/Y/a/b/bar/c/colon/d/e/equal/f/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/r/s/six/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 1127 0 R +/FontFile 1136 0 R >> endobj -1129 0 obj << +1138 0 obj << /Length1 1612 /Length2 19270 /Length3 0 @@ -6830,7 +6863,7 @@ KG\ XHM2wneWA*oؐ>]#>  w&scU#٩pIYX:أZ~ lH v^D%xr{xkэv@umN=<8☵Y endstream endobj -1130 0 obj << +1139 0 obj << /Type /FontDescriptor /FontName /TDMBNU+NimbusMonL-Regu /Flags 4 @@ -6842,9 +6875,9 @@ endobj /StemV 41 /XHeight 426 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/ampersand/asterisk/at/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/plus/q/question/quotedbl/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 1129 0 R +/FontFile 1138 0 R >> endobj -1131 0 obj << +1140 0 obj << /Length1 1608 /Length2 13031 /Length3 0 @@ -6900,7 +6933,7 @@ P [`~Z?h@;Vl(]p)z,yNVr-x: 1'YF!CE37҅nqdf"soчl2`0lhY(sKI= U<.8JWf(M7Ͻ}V,ԯ n,Z+}R[R't mH5<Y#TNj{K*Ab/Ɏ D+%d+tHCoX[xJ}g4ʌZH %iK~-mcrG8MgjLxlKV0@$sbʍ f_q-pH\^ɂ3Vo40 Oc z?JBQ{Y-6"VUe;<ЏN6ap<H9CCYvUrn`~$}̄|RA8e6V3<2/{U endstream endobj -1132 0 obj << +1141 0 obj << /Type /FontDescriptor /FontName /WNYMHI+NimbusSanL-Bold /Flags 4 @@ -6912,9 +6945,9 @@ endobj /StemV 141 /XHeight 532 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/a/ampersand/asterisk/b/c/colon/comma/d/e/eight/endash/exclam/f/fi/five/fl/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/question/quotedbl/quotedblleft/quotedblright/quoteright/r/s/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 1131 0 R +/FontFile 1140 0 R >> endobj -1133 0 obj << +1142 0 obj << /Length1 1166 /Length2 11218 /Length3 0 @@ -6966,7 +6999,7 @@ Dhv ̓N^&×я7hC}]O7+74~|%/qA܋A8A/X̾N.%[#ZN iVy,N>-71:[R%ؑ2p(.{dnI endstream endobj -1134 0 obj << +1143 0 obj << /Type /FontDescriptor /FontName /XURBDN+NimbusSanL-Regu /Flags 4 @@ -6978,9 +7011,9 @@ endobj /StemV 85 /XHeight 523 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/ampersand/asterisk/at/b/c/colon/comma/d/e/eight/endash/equal/exclam/f/fi/five/fl/four/g/greater/h/hyphen/i/j/k/l/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/plus/q/question/quotedbl/quotedblleft/quotedblright/quoteright/r/s/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 1133 0 R +/FontFile 1142 0 R >> endobj -1135 0 obj << +1144 0 obj << /Length1 1199 /Length2 7016 /Length3 0 @@ -7021,7 +7054,7 @@ I9 (~!6ekhZirzj0RVn"t߷ R>E(89C3ĺ'Ja/<_Fs?hiNarU ]i%5벳F 0sG2>J/w)6.MK7ɡ?FtQ@yX6_فi SyѰ:9]R*^~ʋUX;LCV5.})^0W'UaWv6ʟJ-WDffg,~ZLO6BدS}0U\9,)}O42Y:[w719P㔣*GEidVM@^JGm_ǍuC\ _5qpL!Úyƻ:S_fwv!*) endstream endobj -1136 0 obj << +1145 0 obj << /Type /FontDescriptor /FontName /FUROLD+NimbusSanL-ReguItal /Flags 4 @@ -7033,246 +7066,253 @@ endobj /StemV 88 /XHeight 523 /CharSet (/A/B/C/E/F/G/I/M/N/P/R/S/T/U/V/a/b/c/d/e/endash/f/fi/g/h/hyphen/i/l/m/n/o/p/parenleft/parenright/quoteright/r/s/t/u/v/w/x/y/z) -/FontFile 1135 0 R +/FontFile 1144 0 R >> endobj -1108 0 obj << +1117 0 obj << /Type /Encoding /Differences [2/fi/fl 33/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright 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 150/endash] >> endobj -697 0 obj << +702 0 obj << /Type /Font /Subtype /Type1 /BaseFont /HIUEIO+CMMI10 -/FontDescriptor 1116 0 R +/FontDescriptor 1125 0 R /FirstChar 58 /LastChar 90 -/Widths 1107 0 R +/Widths 1116 0 R >> endobj -1012 0 obj << +1017 0 obj << /Type /Font /Subtype /Type1 /BaseFont /UDEMZJ+CMMI12 -/FontDescriptor 1118 0 R +/FontDescriptor 1127 0 R /FirstChar 77 /LastChar 78 -/Widths 1104 0 R +/Widths 1113 0 R >> endobj -699 0 obj << +704 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BSWXNP+CMMI8 -/FontDescriptor 1120 0 R +/FontDescriptor 1129 0 R /FirstChar 65 /LastChar 116 -/Widths 1105 0 R +/Widths 1114 0 R >> endobj -698 0 obj << +703 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BLFSES+CMR10 -/FontDescriptor 1122 0 R +/FontDescriptor 1131 0 R /FirstChar 43 /LastChar 61 -/Widths 1106 0 R +/Widths 1115 0 R >> endobj -1013 0 obj << +1018 0 obj << /Type /Font /Subtype /Type1 /BaseFont /SKDFIX+CMR12 -/FontDescriptor 1124 0 R +/FontDescriptor 1133 0 R /FirstChar 40 /LastChar 58 -/Widths 1103 0 R +/Widths 1112 0 R >> endobj -531 0 obj << +536 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LHERGL+CMSY10 -/FontDescriptor 1126 0 R +/FontDescriptor 1135 0 R /FirstChar 2 /LastChar 41 -/Widths 1110 0 R +/Widths 1119 0 R >> endobj -552 0 obj << +557 0 obj << /Type /Font /Subtype /Type1 /BaseFont /WNSOKY+NimbusMonL-Bold -/FontDescriptor 1128 0 R +/FontDescriptor 1137 0 R /FirstChar 45 /LastChar 124 -/Widths 1109 0 R -/Encoding 1108 0 R +/Widths 1118 0 R +/Encoding 1117 0 R >> endobj -383 0 obj << +387 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TDMBNU+NimbusMonL-Regu -/FontDescriptor 1130 0 R +/FontDescriptor 1139 0 R /FirstChar 33 /LastChar 125 -/Widths 1112 0 R -/Encoding 1108 0 R +/Widths 1121 0 R +/Encoding 1117 0 R >> endobj -371 0 obj << +375 0 obj << /Type /Font /Subtype /Type1 /BaseFont /WNYMHI+NimbusSanL-Bold -/FontDescriptor 1132 0 R +/FontDescriptor 1141 0 R /FirstChar 2 /LastChar 150 -/Widths 1114 0 R -/Encoding 1108 0 R +/Widths 1123 0 R +/Encoding 1117 0 R >> endobj -382 0 obj << +386 0 obj << /Type /Font /Subtype /Type1 /BaseFont /XURBDN+NimbusSanL-Regu -/FontDescriptor 1134 0 R +/FontDescriptor 1143 0 R /FirstChar 2 /LastChar 150 -/Widths 1113 0 R -/Encoding 1108 0 R +/Widths 1122 0 R +/Encoding 1117 0 R >> endobj -488 0 obj << +493 0 obj << /Type /Font /Subtype /Type1 /BaseFont /FUROLD+NimbusSanL-ReguItal -/FontDescriptor 1136 0 R +/FontDescriptor 1145 0 R /FirstChar 2 /LastChar 150 -/Widths 1111 0 R -/Encoding 1108 0 R +/Widths 1120 0 R +/Encoding 1117 0 R >> endobj -372 0 obj << +376 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [362 0 R 379 0 R 418 0 R 464 0 R 485 0 R 490 0 R] +/Parent 1146 0 R +/Kids [366 0 R 383 0 R 422 0 R 468 0 R 490 0 R 495 0 R] >> endobj -514 0 obj << +519 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [508 0 R 528 0 R 539 0 R 543 0 R 549 0 R 556 0 R] +/Parent 1146 0 R +/Kids [513 0 R 533 0 R 544 0 R 548 0 R 554 0 R 561 0 R] >> endobj -568 0 obj << +573 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [565 0 R 571 0 R 576 0 R 580 0 R 589 0 R 600 0 R] +/Parent 1146 0 R +/Kids [570 0 R 576 0 R 581 0 R 585 0 R 594 0 R 605 0 R] >> endobj -618 0 obj << +623 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [612 0 R 626 0 R 634 0 R 639 0 R 652 0 R 679 0 R] +/Parent 1146 0 R +/Kids [617 0 R 631 0 R 639 0 R 644 0 R 657 0 R 684 0 R] >> endobj -686 0 obj << +691 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [683 0 R 688 0 R 694 0 R 703 0 R 710 0 R 717 0 R] +/Parent 1146 0 R +/Kids [688 0 R 693 0 R 699 0 R 708 0 R 715 0 R 722 0 R] >> endobj -730 0 obj << +735 0 obj << /Type /Pages /Count 6 -/Parent 1137 0 R -/Kids [725 0 R 734 0 R 740 0 R 746 0 R 750 0 R 754 0 R] +/Parent 1146 0 R +/Kids [730 0 R 739 0 R 745 0 R 751 0 R 755 0 R 759 0 R] >> endobj -766 0 obj << +771 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [760 0 R 771 0 R 779 0 R 784 0 R 791 0 R 798 0 R] +/Parent 1147 0 R +/Kids [765 0 R 776 0 R 784 0 R 789 0 R 796 0 R 803 0 R] >> endobj -808 0 obj << +813 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [805 0 R 812 0 R 816 0 R 820 0 R 824 0 R 829 0 R] +/Parent 1147 0 R +/Kids [810 0 R 817 0 R 821 0 R 825 0 R 829 0 R 834 0 R] >> endobj -841 0 obj << +846 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [838 0 R 843 0 R 848 0 R 859 0 R 868 0 R 872 0 R] +/Parent 1147 0 R +/Kids [843 0 R 848 0 R 853 0 R 864 0 R 873 0 R 877 0 R] >> endobj -880 0 obj << +885 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [877 0 R 882 0 R 888 0 R 893 0 R 899 0 R 903 0 R] +/Parent 1147 0 R +/Kids [882 0 R 887 0 R 893 0 R 898 0 R 904 0 R 908 0 R] >> endobj -911 0 obj << +916 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [908 0 R 913 0 R 917 0 R 921 0 R 925 0 R 929 0 R] +/Parent 1147 0 R +/Kids [913 0 R 918 0 R 922 0 R 926 0 R 930 0 R 934 0 R] >> endobj -936 0 obj << +941 0 obj << /Type /Pages /Count 6 -/Parent 1138 0 R -/Kids [933 0 R 938 0 R 942 0 R 946 0 R 950 0 R 954 0 R] +/Parent 1147 0 R +/Kids [938 0 R 943 0 R 947 0 R 951 0 R 955 0 R 959 0 R] >> endobj -961 0 obj << +966 0 obj << /Type /Pages /Count 6 -/Parent 1139 0 R -/Kids [958 0 R 963 0 R 967 0 R 971 0 R 975 0 R 979 0 R] +/Parent 1148 0 R +/Kids [963 0 R 968 0 R 972 0 R 976 0 R 980 0 R 984 0 R] >> endobj -986 0 obj << +991 0 obj << /Type /Pages /Count 6 -/Parent 1139 0 R -/Kids [983 0 R 992 0 R 1009 0 R 1018 0 R 1025 0 R 1031 0 R] +/Parent 1148 0 R +/Kids [988 0 R 997 0 R 1014 0 R 1023 0 R 1030 0 R 1036 0 R] >> endobj -1051 0 obj << +1056 0 obj << /Type /Pages /Count 6 -/Parent 1139 0 R -/Kids [1043 0 R 1053 0 R 1061 0 R 1067 0 R 1072 0 R 1078 0 R] +/Parent 1148 0 R +/Kids [1048 0 R 1058 0 R 1066 0 R 1072 0 R 1077 0 R 1081 0 R] >> endobj -1089 0 obj << +1093 0 obj << /Type /Pages -/Count 3 -/Parent 1139 0 R -/Kids [1086 0 R 1095 0 R 1100 0 R] +/Count 4 +/Parent 1148 0 R +/Kids [1089 0 R 1097 0 R 1104 0 R 1109 0 R] >> endobj -1137 0 obj << +1146 0 obj << /Type /Pages /Count 36 -/Parent 1140 0 R -/Kids [372 0 R 514 0 R 568 0 R 618 0 R 686 0 R 730 0 R] +/Parent 1149 0 R +/Kids [376 0 R 519 0 R 573 0 R 623 0 R 691 0 R 735 0 R] >> endobj -1138 0 obj << +1147 0 obj << /Type /Pages /Count 36 -/Parent 1140 0 R -/Kids [766 0 R 808 0 R 841 0 R 880 0 R 911 0 R 936 0 R] +/Parent 1149 0 R +/Kids [771 0 R 813 0 R 846 0 R 885 0 R 916 0 R 941 0 R] >> endobj -1139 0 obj << +1148 0 obj << /Type /Pages -/Count 21 -/Parent 1140 0 R -/Kids [961 0 R 986 0 R 1051 0 R 1089 0 R] +/Count 22 +/Parent 1149 0 R +/Kids [966 0 R 991 0 R 1056 0 R 1093 0 R] >> endobj -1140 0 obj << +1149 0 obj << /Type /Pages -/Count 93 -/Kids [1137 0 R 1138 0 R 1139 0 R] +/Count 94 +/Kids [1146 0 R 1147 0 R 1148 0 R] >> endobj -1141 0 obj << +1150 0 obj << /Type /Outlines /First 3 0 R /Last 315 0 R /Count 10 >> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 315 0 R +/Prev 359 0 R +>> endobj 359 0 obj << /Title 360 0 R /A 357 0 R /Parent 315 0 R /Prev 355 0 R +/Next 363 0 R >> endobj 355 0 obj << /Title 356 0 R @@ -7346,11 +7386,11 @@ endobj 315 0 obj << /Title 316 0 R /A 313 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 263 0 R /First 319 0 R -/Last 359 0 R -/Count -11 +/Last 363 0 R +/Count -12 >> endobj 311 0 obj << /Title 312 0 R @@ -7440,7 +7480,7 @@ endobj 263 0 obj << /Title 264 0 R /A 261 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 243 0 R /Next 315 0 R /First 267 0 R @@ -7476,7 +7516,7 @@ endobj 243 0 obj << /Title 244 0 R /A 241 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 207 0 R /Next 263 0 R /First 247 0 R @@ -7540,7 +7580,7 @@ endobj 207 0 obj << /Title 208 0 R /A 205 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 183 0 R /Next 243 0 R /First 211 0 R @@ -7583,7 +7623,7 @@ endobj 183 0 obj << /Title 184 0 R /A 181 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 167 0 R /Next 207 0 R /First 187 0 R @@ -7612,7 +7652,7 @@ endobj 167 0 obj << /Title 168 0 R /A 165 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 111 0 R /Next 183 0 R /First 171 0 R @@ -7711,7 +7751,7 @@ endobj 111 0 obj << /Title 112 0 R /A 109 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 75 0 R /Next 167 0 R /First 115 0 R @@ -7775,7 +7815,7 @@ endobj 75 0 obj << /Title 76 0 R /A 73 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 7 0 R /Next 111 0 R /First 79 0 R @@ -7898,7 +7938,7 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Prev 3 0 R /Next 75 0 R /First 11 0 R @@ -7908,1449 +7948,1463 @@ endobj 3 0 obj << /Title 4 0 R /A 1 0 R -/Parent 1141 0 R +/Parent 1150 0 R /Next 7 0 R >> endobj -1142 0 obj << -/Names [(Doc-Start) 370 0 R (Hfootnote.1) 511 0 R (Hfootnote.10) 866 0 R (Hfootnote.11) 891 0 R (Hfootnote.12) 1015 0 R (Hfootnote.13) 1016 0 R] +1151 0 obj << +/Names [(Doc-Start) 374 0 R (Hfootnote.1) 516 0 R (Hfootnote.10) 871 0 R (Hfootnote.11) 896 0 R (Hfootnote.12) 1020 0 R (Hfootnote.13) 1021 0 R] /Limits [(Doc-Start) (Hfootnote.13)] >> endobj -1143 0 obj << -/Names [(Hfootnote.14) 1038 0 R (Hfootnote.15) 1049 0 R (Hfootnote.16) 1050 0 R (Hfootnote.2) 512 0 R (Hfootnote.3) 513 0 R (Hfootnote.4) 615 0 R] +1152 0 obj << +/Names [(Hfootnote.14) 1043 0 R (Hfootnote.15) 1054 0 R (Hfootnote.16) 1055 0 R (Hfootnote.2) 517 0 R (Hfootnote.3) 518 0 R (Hfootnote.4) 620 0 R] /Limits [(Hfootnote.14) (Hfootnote.4)] >> endobj -1144 0 obj << -/Names [(Hfootnote.5) 617 0 R (Hfootnote.6) 637 0 R (Hfootnote.7) 715 0 R (Hfootnote.8) 864 0 R (Hfootnote.9) 865 0 R (Item.1) 801 0 R] +1153 0 obj << +/Names [(Hfootnote.5) 622 0 R (Hfootnote.6) 642 0 R (Hfootnote.7) 720 0 R (Hfootnote.8) 869 0 R (Hfootnote.9) 870 0 R (Item.1) 806 0 R] /Limits [(Hfootnote.5) (Item.1)] >> endobj -1145 0 obj << -/Names [(Item.2) 802 0 R (Item.3) 803 0 R (appendix.A) 182 0 R (appendix.B) 206 0 R (appendix.C) 242 0 R (appendix.D) 262 0 R] +1154 0 obj << +/Names [(Item.2) 807 0 R (Item.3) 808 0 R (appendix.A) 182 0 R (appendix.B) 206 0 R (appendix.C) 242 0 R (appendix.D) 262 0 R] /Limits [(Item.2) (appendix.D)] >> endobj -1146 0 obj << -/Names [(appendix.E) 314 0 R (chapter*.1) 421 0 R (chapter.1) 2 0 R (chapter.2) 6 0 R (chapter.3) 74 0 R (chapter.4) 110 0 R] +1155 0 obj << +/Names [(appendix.E) 314 0 R (chapter*.1) 425 0 R (chapter.1) 2 0 R (chapter.2) 6 0 R (chapter.3) 74 0 R (chapter.4) 110 0 R] /Limits [(appendix.E) (chapter.4)] >> endobj -1147 0 obj << -/Names [(chapter.5) 166 0 R (figure.D.1) 995 0 R (figure.E.1) 1081 0 R (page.1) 510 0 R (page.10) 582 0 R (page.11) 591 0 R] +1156 0 obj << +/Names [(chapter.5) 166 0 R (figure.D.1) 1000 0 R (figure.E.1) 1092 0 R (page.1) 515 0 R (page.10) 587 0 R (page.11) 596 0 R] /Limits [(chapter.5) (page.11)] >> endobj -1148 0 obj << -/Names [(page.12) 602 0 R (page.13) 614 0 R (page.14) 628 0 R (page.15) 636 0 R (page.16) 641 0 R (page.17) 654 0 R] +1157 0 obj << +/Names [(page.12) 607 0 R (page.13) 619 0 R (page.14) 633 0 R (page.15) 641 0 R (page.16) 646 0 R (page.17) 659 0 R] /Limits [(page.12) (page.17)] >> endobj -1149 0 obj << -/Names [(page.18) 681 0 R (page.19) 685 0 R (page.2) 530 0 R (page.20) 690 0 R (page.21) 696 0 R (page.22) 705 0 R] +1158 0 obj << +/Names [(page.18) 686 0 R (page.19) 690 0 R (page.2) 535 0 R (page.20) 695 0 R (page.21) 701 0 R (page.22) 710 0 R] /Limits [(page.18) (page.22)] >> endobj -1150 0 obj << -/Names [(page.23) 712 0 R (page.24) 719 0 R (page.25) 727 0 R (page.26) 736 0 R (page.27) 742 0 R (page.28) 748 0 R] +1159 0 obj << +/Names [(page.23) 717 0 R (page.24) 724 0 R (page.25) 732 0 R (page.26) 741 0 R (page.27) 747 0 R (page.28) 753 0 R] /Limits [(page.23) (page.28)] >> endobj -1151 0 obj << -/Names [(page.29) 752 0 R (page.3) 541 0 R (page.30) 756 0 R (page.31) 762 0 R (page.32) 773 0 R (page.33) 781 0 R] +1160 0 obj << +/Names [(page.29) 757 0 R (page.3) 546 0 R (page.30) 761 0 R (page.31) 767 0 R (page.32) 778 0 R (page.33) 786 0 R] /Limits [(page.29) (page.33)] >> endobj -1152 0 obj << -/Names [(page.34) 786 0 R (page.35) 793 0 R (page.36) 800 0 R (page.37) 807 0 R (page.38) 814 0 R (page.39) 818 0 R] +1161 0 obj << +/Names [(page.34) 791 0 R (page.35) 798 0 R (page.36) 805 0 R (page.37) 812 0 R (page.38) 819 0 R (page.39) 823 0 R] /Limits [(page.34) (page.39)] >> endobj -1153 0 obj << -/Names [(page.4) 545 0 R (page.40) 822 0 R (page.41) 826 0 R (page.42) 831 0 R (page.43) 840 0 R (page.44) 845 0 R] +1162 0 obj << +/Names [(page.4) 550 0 R (page.40) 827 0 R (page.41) 831 0 R (page.42) 836 0 R (page.43) 845 0 R (page.44) 850 0 R] /Limits [(page.4) (page.44)] >> endobj -1154 0 obj << -/Names [(page.45) 850 0 R (page.46) 861 0 R (page.47) 870 0 R (page.48) 874 0 R (page.49) 879 0 R (page.5) 551 0 R] +1163 0 obj << +/Names [(page.45) 855 0 R (page.46) 866 0 R (page.47) 875 0 R (page.48) 879 0 R (page.49) 884 0 R (page.5) 556 0 R] /Limits [(page.45) (page.5)] >> endobj -1155 0 obj << -/Names [(page.50) 884 0 R (page.51) 890 0 R (page.52) 895 0 R (page.53) 901 0 R (page.54) 905 0 R (page.55) 910 0 R] +1164 0 obj << +/Names [(page.50) 889 0 R (page.51) 895 0 R (page.52) 900 0 R (page.53) 906 0 R (page.54) 910 0 R (page.55) 915 0 R] /Limits [(page.50) (page.55)] >> endobj -1156 0 obj << -/Names [(page.56) 915 0 R (page.57) 919 0 R (page.58) 923 0 R (page.59) 927 0 R (page.6) 558 0 R (page.60) 931 0 R] +1165 0 obj << +/Names [(page.56) 920 0 R (page.57) 924 0 R (page.58) 928 0 R (page.59) 932 0 R (page.6) 563 0 R (page.60) 936 0 R] /Limits [(page.56) (page.60)] >> endobj -1157 0 obj << -/Names [(page.61) 935 0 R (page.62) 940 0 R (page.63) 944 0 R (page.64) 948 0 R (page.65) 952 0 R (page.66) 956 0 R] +1166 0 obj << +/Names [(page.61) 940 0 R (page.62) 945 0 R (page.63) 949 0 R (page.64) 953 0 R (page.65) 957 0 R (page.66) 961 0 R] /Limits [(page.61) (page.66)] >> endobj -1158 0 obj << -/Names [(page.67) 960 0 R (page.68) 965 0 R (page.69) 969 0 R (page.7) 567 0 R (page.70) 973 0 R (page.71) 977 0 R] +1167 0 obj << +/Names [(page.67) 965 0 R (page.68) 970 0 R (page.69) 974 0 R (page.7) 572 0 R (page.70) 978 0 R (page.71) 982 0 R] /Limits [(page.67) (page.71)] >> endobj -1159 0 obj << -/Names [(page.72) 981 0 R (page.73) 985 0 R (page.74) 994 0 R (page.75) 1011 0 R (page.76) 1020 0 R (page.77) 1027 0 R] +1168 0 obj << +/Names [(page.72) 986 0 R (page.73) 990 0 R (page.74) 999 0 R (page.75) 1016 0 R (page.76) 1025 0 R (page.77) 1032 0 R] /Limits [(page.72) (page.77)] >> endobj -1160 0 obj << -/Names [(page.78) 1033 0 R (page.79) 1045 0 R (page.8) 573 0 R (page.80) 1055 0 R (page.81) 1063 0 R (page.82) 1069 0 R] +1169 0 obj << +/Names [(page.78) 1038 0 R (page.79) 1050 0 R (page.8) 578 0 R (page.80) 1060 0 R (page.81) 1068 0 R (page.82) 1074 0 R] /Limits [(page.78) (page.82)] >> endobj -1161 0 obj << -/Names [(page.83) 1074 0 R (page.84) 1080 0 R (page.85) 1088 0 R (page.86) 1097 0 R (page.87) 1102 0 R (page.9) 578 0 R] -/Limits [(page.83) (page.9)] ->> endobj -1162 0 obj << -/Names [(page.i) 369 0 R (page.ii) 381 0 R (page.iii) 420 0 R (page.iv) 466 0 R (page.v) 487 0 R (page.vi) 492 0 R] -/Limits [(page.i) (page.vi)] ->> endobj -1163 0 obj << -/Names [(section*.10) 629 0 R (section*.11) 630 0 R (section*.12) 713 0 R (section*.13) 714 0 R (section*.14) 720 0 R (section*.15) 728 0 R] -/Limits [(section*.10) (section*.15)] ->> endobj -1164 0 obj << -/Names [(section*.16) 729 0 R (section*.17) 737 0 R (section*.18) 743 0 R (section*.19) 744 0 R (section*.2) 583 0 R (section*.20) 757 0 R] -/Limits [(section*.16) (section*.20)] ->> endobj -1165 0 obj << -/Names [(section*.21) 758 0 R (section*.22) 763 0 R (section*.23) 764 0 R (section*.24) 765 0 R (section*.25) 774 0 R (section*.26) 775 0 R] -/Limits [(section*.21) (section*.26)] ->> endobj -1166 0 obj << -/Names [(section*.27) 782 0 R (section*.28) 787 0 R (section*.29) 832 0 R (section*.3) 592 0 R (section*.30) 833 0 R (section*.31) 851 0 R] -/Limits [(section*.27) (section*.31)] ->> endobj -1167 0 obj << -/Names [(section*.32) 862 0 R (section*.33) 863 0 R (section*.34) 875 0 R (section*.35) 906 0 R (section*.36) 1021 0 R (section*.37) 1022 0 R] -/Limits [(section*.32) (section*.37)] ->> endobj -1168 0 obj << -/Names [(section*.38) 1023 0 R (section*.39) 1028 0 R (section*.4) 593 0 R (section*.40) 1034 0 R (section*.41) 1035 0 R (section*.42) 1036 0 R] -/Limits [(section*.38) (section*.42)] ->> endobj -1169 0 obj << -/Names [(section*.43) 1037 0 R (section*.44) 1046 0 R (section*.45) 1047 0 R (section*.46) 1048 0 R (section*.47) 1056 0 R (section*.48) 1057 0 R] -/Limits [(section*.43) (section*.48)] ->> endobj 1170 0 obj << -/Names [(section*.49) 1058 0 R (section*.5) 603 0 R (section*.50) 1059 0 R (section*.51) 1064 0 R (section*.52) 1065 0 R (section*.6) 604 0 R] -/Limits [(section*.49) (section*.6)] +/Names [(page.83) 1079 0 R (page.84) 1083 0 R (page.85) 1091 0 R (page.86) 1099 0 R (page.87) 1106 0 R (page.88) 1111 0 R] +/Limits [(page.83) (page.88)] >> endobj 1171 0 obj << -/Names [(section*.7) 605 0 R (section*.8) 606 0 R (section*.9) 607 0 R (section.2.1) 10 0 R (section.2.2) 14 0 R (section.2.3) 18 0 R] -/Limits [(section*.7) (section.2.3)] +/Names [(page.9) 583 0 R (page.i) 373 0 R (page.ii) 385 0 R (page.iii) 424 0 R (page.iv) 470 0 R (page.v) 492 0 R] +/Limits [(page.9) (page.v)] >> endobj 1172 0 obj << -/Names [(section.2.4) 38 0 R (section.2.5) 50 0 R (section.2.6) 54 0 R (section.2.7) 62 0 R (section.2.8) 66 0 R (section.2.9) 70 0 R] -/Limits [(section.2.4) (section.2.9)] +/Names [(page.vi) 497 0 R (section*.10) 634 0 R (section*.11) 635 0 R (section*.12) 718 0 R (section*.13) 719 0 R (section*.14) 725 0 R] +/Limits [(page.vi) (section*.14)] >> endobj 1173 0 obj << -/Names [(section.3.1) 78 0 R (section.3.2) 82 0 R (section.3.3) 86 0 R (section.3.4) 90 0 R (section.3.5) 94 0 R (section.3.6) 98 0 R] -/Limits [(section.3.1) (section.3.6)] +/Names [(section*.15) 733 0 R (section*.16) 734 0 R (section*.17) 742 0 R (section*.18) 748 0 R (section*.19) 749 0 R (section*.2) 588 0 R] +/Limits [(section*.15) (section*.2)] >> endobj 1174 0 obj << -/Names [(section.3.7) 102 0 R (section.3.8) 106 0 R (section.4.1) 114 0 R (section.4.10) 150 0 R (section.4.11) 154 0 R (section.4.12) 158 0 R] -/Limits [(section.3.7) (section.4.12)] +/Names [(section*.20) 762 0 R (section*.21) 763 0 R (section*.22) 768 0 R (section*.23) 769 0 R (section*.24) 770 0 R (section*.25) 779 0 R] +/Limits [(section*.20) (section*.25)] >> endobj 1175 0 obj << -/Names [(section.4.13) 162 0 R (section.4.2) 118 0 R (section.4.3) 122 0 R (section.4.4) 126 0 R (section.4.5) 130 0 R (section.4.6) 134 0 R] -/Limits [(section.4.13) (section.4.6)] +/Names [(section*.26) 780 0 R (section*.27) 787 0 R (section*.28) 792 0 R (section*.29) 837 0 R (section*.3) 597 0 R (section*.30) 838 0 R] +/Limits [(section*.26) (section*.30)] >> endobj 1176 0 obj << -/Names [(section.4.7) 138 0 R (section.4.8) 142 0 R (section.4.9) 146 0 R (section.5.1) 170 0 R (section.5.2) 174 0 R (section.5.3) 178 0 R] -/Limits [(section.4.7) (section.5.3)] +/Names [(section*.31) 856 0 R (section*.32) 867 0 R (section*.33) 868 0 R (section*.34) 880 0 R (section*.35) 911 0 R (section*.36) 1026 0 R] +/Limits [(section*.31) (section*.36)] >> endobj 1177 0 obj << -/Names [(section.A.1) 186 0 R (section.A.2) 190 0 R (section.A.3) 194 0 R (section.A.4) 198 0 R (section.A.5) 202 0 R (section.B.1) 210 0 R] -/Limits [(section.A.1) (section.B.1)] +/Names [(section*.37) 1027 0 R (section*.38) 1028 0 R (section*.39) 1033 0 R (section*.4) 598 0 R (section*.40) 1039 0 R (section*.41) 1040 0 R] +/Limits [(section*.37) (section*.41)] >> endobj 1178 0 obj << -/Names [(section.B.2) 214 0 R (section.B.3) 218 0 R (section.B.4) 222 0 R (section.B.5) 226 0 R (section.B.6) 230 0 R (section.B.7) 234 0 R] -/Limits [(section.B.2) (section.B.7)] +/Names [(section*.42) 1041 0 R (section*.43) 1042 0 R (section*.44) 1051 0 R (section*.45) 1052 0 R (section*.46) 1053 0 R (section*.47) 1061 0 R] +/Limits [(section*.42) (section*.47)] >> endobj 1179 0 obj << -/Names [(section.B.8) 238 0 R (section.C.1) 246 0 R (section.C.2) 250 0 R (section.C.3) 254 0 R (section.C.4) 258 0 R (section.D.1) 266 0 R] -/Limits [(section.B.8) (section.D.1)] +/Names [(section*.48) 1062 0 R (section*.49) 1063 0 R (section*.5) 608 0 R (section*.50) 1064 0 R (section*.51) 1069 0 R (section*.52) 1070 0 R] +/Limits [(section*.48) (section*.52)] >> endobj 1180 0 obj << -/Names [(section.D.2) 270 0 R (section.D.3) 286 0 R (section.D.4) 302 0 R (section.E.1) 318 0 R (section.E.10) 354 0 R (section.E.11) 358 0 R] -/Limits [(section.D.2) (section.E.11)] +/Names [(section*.6) 609 0 R (section*.7) 610 0 R (section*.8) 611 0 R (section*.9) 612 0 R (section.2.1) 10 0 R (section.2.2) 14 0 R] +/Limits [(section*.6) (section.2.2)] >> endobj 1181 0 obj << -/Names [(section.E.2) 322 0 R (section.E.3) 326 0 R (section.E.4) 330 0 R (section.E.5) 334 0 R (section.E.6) 338 0 R (section.E.7) 342 0 R] -/Limits [(section.E.2) (section.E.7)] +/Names [(section.2.3) 18 0 R (section.2.4) 38 0 R (section.2.5) 50 0 R (section.2.6) 54 0 R (section.2.7) 62 0 R (section.2.8) 66 0 R] +/Limits [(section.2.3) (section.2.8)] >> endobj 1182 0 obj << -/Names [(section.E.8) 346 0 R (section.E.9) 350 0 R (subsection.2.3.1) 22 0 R (subsection.2.3.2) 26 0 R (subsection.2.3.3) 30 0 R (subsection.2.3.4) 34 0 R] -/Limits [(section.E.8) (subsection.2.3.4)] +/Names [(section.2.9) 70 0 R (section.3.1) 78 0 R (section.3.2) 82 0 R (section.3.3) 86 0 R (section.3.4) 90 0 R (section.3.5) 94 0 R] +/Limits [(section.2.9) (section.3.5)] >> endobj 1183 0 obj << -/Names [(subsection.2.4.1) 42 0 R (subsection.2.4.2) 46 0 R (subsection.2.6.1) 58 0 R (subsection.D.2.1) 274 0 R (subsection.D.2.2) 278 0 R (subsection.D.2.3) 282 0 R] -/Limits [(subsection.2.4.1) (subsection.D.2.3)] +/Names [(section.3.6) 98 0 R (section.3.7) 102 0 R (section.3.8) 106 0 R (section.4.1) 114 0 R (section.4.10) 150 0 R (section.4.11) 154 0 R] +/Limits [(section.3.6) (section.4.11)] >> endobj 1184 0 obj << -/Names [(subsection.D.3.1) 290 0 R (subsection.D.3.2) 294 0 R (subsection.D.3.3) 298 0 R (subsection.D.4.1) 306 0 R (subsection.D.4.2) 310 0 R (table.3.1) 655 0 R] -/Limits [(subsection.D.3.1) (table.3.1)] +/Names [(section.4.12) 158 0 R (section.4.13) 162 0 R (section.4.2) 118 0 R (section.4.3) 122 0 R (section.4.4) 126 0 R (section.4.5) 130 0 R] +/Limits [(section.4.12) (section.4.5)] >> endobj 1185 0 obj << -/Kids [1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R] -/Limits [(Doc-Start) (page.11)] +/Names [(section.4.6) 134 0 R (section.4.7) 138 0 R (section.4.8) 142 0 R (section.4.9) 146 0 R (section.5.1) 170 0 R (section.5.2) 174 0 R] +/Limits [(section.4.6) (section.5.2)] >> endobj 1186 0 obj << -/Kids [1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R] -/Limits [(page.12) (page.44)] +/Names [(section.5.3) 178 0 R (section.A.1) 186 0 R (section.A.2) 190 0 R (section.A.3) 194 0 R (section.A.4) 198 0 R (section.A.5) 202 0 R] +/Limits [(section.5.3) (section.A.5)] >> endobj 1187 0 obj << -/Kids [1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R] -/Limits [(page.45) (page.77)] +/Names [(section.B.1) 210 0 R (section.B.2) 214 0 R (section.B.3) 218 0 R (section.B.4) 222 0 R (section.B.5) 226 0 R (section.B.6) 230 0 R] +/Limits [(section.B.1) (section.B.6)] >> endobj 1188 0 obj << -/Kids [1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R] -/Limits [(page.78) (section*.26)] +/Names [(section.B.7) 234 0 R (section.B.8) 238 0 R (section.C.1) 246 0 R (section.C.2) 250 0 R (section.C.3) 254 0 R (section.C.4) 258 0 R] +/Limits [(section.B.7) (section.C.4)] >> endobj 1189 0 obj << -/Kids [1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R] -/Limits [(section*.27) (section.2.3)] +/Names [(section.D.1) 266 0 R (section.D.2) 270 0 R (section.D.3) 286 0 R (section.D.4) 302 0 R (section.E.1) 318 0 R (section.E.10) 354 0 R] +/Limits [(section.D.1) (section.E.10)] >> endobj 1190 0 obj << -/Kids [1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R] -/Limits [(section.2.4) (section.B.1)] +/Names [(section.E.11) 358 0 R (section.E.12) 362 0 R (section.E.2) 322 0 R (section.E.3) 326 0 R (section.E.4) 330 0 R (section.E.5) 334 0 R] +/Limits [(section.E.11) (section.E.5)] >> endobj 1191 0 obj << -/Kids [1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R] -/Limits [(section.B.2) (subsection.D.2.3)] +/Names [(section.E.6) 338 0 R (section.E.7) 342 0 R (section.E.8) 346 0 R (section.E.9) 350 0 R (subsection.2.3.1) 22 0 R (subsection.2.3.2) 26 0 R] +/Limits [(section.E.6) (subsection.2.3.2)] >> endobj 1192 0 obj << -/Kids [1184 0 R] -/Limits [(subsection.D.3.1) (table.3.1)] +/Names [(subsection.2.3.3) 30 0 R (subsection.2.3.4) 34 0 R (subsection.2.4.1) 42 0 R (subsection.2.4.2) 46 0 R (subsection.2.6.1) 58 0 R (subsection.D.2.1) 274 0 R] +/Limits [(subsection.2.3.3) (subsection.D.2.1)] >> endobj 1193 0 obj << -/Kids [1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R] -/Limits [(Doc-Start) (section.B.1)] +/Names [(subsection.D.2.2) 278 0 R (subsection.D.2.3) 282 0 R (subsection.D.3.1) 290 0 R (subsection.D.3.2) 294 0 R (subsection.D.3.3) 298 0 R (subsection.D.4.1) 306 0 R] +/Limits [(subsection.D.2.2) (subsection.D.4.1)] >> endobj 1194 0 obj << -/Kids [1191 0 R 1192 0 R] -/Limits [(section.B.2) (table.3.1)] +/Names [(subsection.D.4.2) 310 0 R (table.3.1) 660 0 R] +/Limits [(subsection.D.4.2) (table.3.1)] >> endobj 1195 0 obj << -/Kids [1193 0 R 1194 0 R] -/Limits [(Doc-Start) (table.3.1)] +/Kids [1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R] +/Limits [(Doc-Start) (page.11)] >> endobj 1196 0 obj << -/Dests 1195 0 R +/Kids [1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R] +/Limits [(page.12) (page.44)] >> endobj 1197 0 obj << -/Type /Catalog -/Pages 1140 0 R -/Outlines 1141 0 R -/Names 1196 0 R -/PageMode/UseOutlines/PageLabels<>6<>]>> -/OpenAction 361 0 R +/Kids [1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R] +/Limits [(page.45) (page.77)] >> endobj 1198 0 obj << +/Kids [1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R] +/Limits [(page.78) (section*.25)] +>> endobj +1199 0 obj << +/Kids [1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R] +/Limits [(section*.26) (section.2.2)] +>> endobj +1200 0 obj << +/Kids [1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R] +/Limits [(section.2.3) (section.A.5)] +>> endobj +1201 0 obj << +/Kids [1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R] +/Limits [(section.B.1) (subsection.D.2.1)] +>> endobj +1202 0 obj << +/Kids [1193 0 R 1194 0 R] +/Limits [(subsection.D.2.2) (table.3.1)] +>> endobj +1203 0 obj << +/Kids [1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R] +/Limits [(Doc-Start) (section.A.5)] +>> endobj +1204 0 obj << +/Kids [1201 0 R 1202 0 R] +/Limits [(section.B.1) (table.3.1)] +>> endobj +1205 0 obj << +/Kids [1203 0 R 1204 0 R] +/Limits [(Doc-Start) (table.3.1)] +>> endobj +1206 0 obj << +/Dests 1205 0 R +>> endobj +1207 0 obj << +/Type /Catalog +/Pages 1149 0 R +/Outlines 1150 0 R +/Names 1206 0 R +/PageMode/UseOutlines/PageLabels<>6<>]>> +/OpenAction 365 0 R +>> endobj +1208 0 obj << /Author(ZIH, TU Dresden)/Title(VampirTrace 5.13 User Manual)/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.10)/Keywords() -/CreationDate (D:20120619100817+02'00') -/ModDate (D:20120619100817+02'00') +/CreationDate (D:20120704134447+02'00') +/ModDate (D:20120704134447+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-1.40.10-2.2 (TeX Live 2009/Debian) kpathsea version 5.0.0) >> endobj xref -0 1199 +0 1209 0000000000 65535 f 0000000015 00000 n -0000137790 00000 n -0000566547 00000 n +0000138091 00000 n +0000569525 00000 n 0000000060 00000 n 0000000090 00000 n -0000148549 00000 n -0000566425 00000 n +0000148850 00000 n +0000569403 00000 n 0000000135 00000 n 0000000168 00000 n -0000148608 00000 n -0000566353 00000 n +0000148909 00000 n +0000569331 00000 n 0000000215 00000 n 0000000251 00000 n -0000154475 00000 n -0000566267 00000 n +0000154776 00000 n +0000569245 00000 n 0000000299 00000 n 0000000339 00000 n -0000154535 00000 n -0000566144 00000 n +0000154836 00000 n +0000569122 00000 n 0000000387 00000 n 0000000431 00000 n -0000157399 00000 n -0000566070 00000 n +0000157700 00000 n +0000569048 00000 n 0000000484 00000 n 0000000522 00000 n -0000157459 00000 n -0000565983 00000 n +0000157760 00000 n +0000568961 00000 n 0000000575 00000 n 0000000655 00000 n -0000159602 00000 n -0000565896 00000 n +0000159903 00000 n +0000568874 00000 n 0000000708 00000 n 0000000771 00000 n -0000159662 00000 n -0000565822 00000 n +0000159963 00000 n +0000568800 00000 n 0000000824 00000 n 0000000888 00000 n -0000159722 00000 n -0000565699 00000 n +0000160023 00000 n +0000568677 00000 n 0000000936 00000 n 0000000977 00000 n -0000159782 00000 n -0000565625 00000 n +0000160083 00000 n +0000568603 00000 n 0000001030 00000 n 0000001074 00000 n -0000162241 00000 n -0000565551 00000 n +0000162542 00000 n +0000568529 00000 n 0000001127 00000 n 0000001166 00000 n -0000169215 00000 n -0000565465 00000 n +0000169519 00000 n +0000568443 00000 n 0000001214 00000 n 0000001269 00000 n -0000173205 00000 n -0000565342 00000 n +0000173509 00000 n +0000568320 00000 n 0000001317 00000 n 0000001372 00000 n -0000173265 00000 n -0000565281 00000 n +0000173569 00000 n +0000568259 00000 n 0000001425 00000 n 0000001473 00000 n -0000176527 00000 n -0000565195 00000 n +0000176831 00000 n +0000568173 00000 n 0000001521 00000 n 0000001575 00000 n -0000176648 00000 n -0000565109 00000 n +0000176952 00000 n +0000568087 00000 n 0000001623 00000 n 0000001679 00000 n -0000179890 00000 n -0000565036 00000 n +0000180194 00000 n +0000568014 00000 n 0000001727 00000 n 0000001782 00000 n -0000183364 00000 n -0000564909 00000 n +0000183668 00000 n +0000567887 00000 n 0000001828 00000 n 0000001866 00000 n -0000183424 00000 n -0000564835 00000 n +0000183728 00000 n +0000567813 00000 n 0000001914 00000 n 0000001961 00000 n -0000183484 00000 n -0000564748 00000 n +0000183788 00000 n +0000567726 00000 n 0000002009 00000 n 0000002049 00000 n -0000198543 00000 n -0000564661 00000 n +0000198847 00000 n +0000567639 00000 n 0000002097 00000 n 0000002145 00000 n -0000201670 00000 n -0000564574 00000 n +0000201974 00000 n +0000567552 00000 n 0000002193 00000 n 0000002236 00000 n -0000201730 00000 n -0000564487 00000 n +0000202034 00000 n +0000567465 00000 n 0000002284 00000 n 0000002330 00000 n -0000201790 00000 n -0000564398 00000 n +0000202094 00000 n +0000567376 00000 n 0000002378 00000 n 0000002423 00000 n -0000204931 00000 n -0000564307 00000 n +0000205235 00000 n +0000567285 00000 n 0000002472 00000 n 0000002522 00000 n -0000207181 00000 n -0000564229 00000 n +0000207485 00000 n +0000567207 00000 n 0000002571 00000 n 0000002630 00000 n -0000209779 00000 n -0000564096 00000 n +0000210083 00000 n +0000567074 00000 n 0000002677 00000 n 0000002737 00000 n -0000209840 00000 n -0000564017 00000 n +0000210144 00000 n +0000566995 00000 n 0000002786 00000 n 0000002835 00000 n -0000213269 00000 n -0000563924 00000 n +0000213573 00000 n +0000566902 00000 n 0000002884 00000 n 0000002927 00000 n -0000213329 00000 n -0000563831 00000 n +0000213633 00000 n +0000566809 00000 n 0000002976 00000 n 0000003021 00000 n -0000215864 00000 n -0000563738 00000 n +0000216168 00000 n +0000566716 00000 n 0000003070 00000 n 0000003104 00000 n -0000215986 00000 n -0000563645 00000 n +0000216290 00000 n +0000566623 00000 n 0000003153 00000 n 0000003184 00000 n -0000232601 00000 n -0000563552 00000 n +0000232905 00000 n +0000566530 00000 n 0000003233 00000 n 0000003270 00000 n -0000232723 00000 n -0000563459 00000 n +0000233027 00000 n +0000566437 00000 n 0000003319 00000 n 0000003361 00000 n -0000235462 00000 n -0000563366 00000 n +0000235766 00000 n +0000566344 00000 n 0000003410 00000 n 0000003439 00000 n -0000238714 00000 n -0000563273 00000 n +0000239018 00000 n +0000566251 00000 n 0000003488 00000 n 0000003530 00000 n -0000238775 00000 n -0000563180 00000 n +0000239079 00000 n +0000566158 00000 n 0000003580 00000 n 0000003637 00000 n -0000241969 00000 n -0000563087 00000 n +0000242273 00000 n +0000566065 00000 n 0000003687 00000 n 0000003728 00000 n -0000245255 00000 n -0000562994 00000 n +0000245559 00000 n +0000565972 00000 n 0000003778 00000 n 0000003818 00000 n -0000247416 00000 n -0000562915 00000 n +0000247720 00000 n +0000565893 00000 n 0000003868 00000 n 0000003913 00000 n -0000250145 00000 n -0000562782 00000 n +0000250449 00000 n +0000565760 00000 n 0000003960 00000 n 0000004003 00000 n -0000250206 00000 n -0000562703 00000 n +0000250510 00000 n +0000565681 00000 n 0000004052 00000 n 0000004090 00000 n -0000252940 00000 n -0000562610 00000 n +0000253244 00000 n +0000565588 00000 n 0000004139 00000 n 0000004182 00000 n -0000255795 00000 n -0000562531 00000 n +0000256099 00000 n +0000565509 00000 n 0000004231 00000 n 0000004268 00000 n -0000258992 00000 n -0000562398 00000 n +0000259296 00000 n +0000565376 00000 n 0000004316 00000 n 0000004360 00000 n -0000259053 00000 n -0000562319 00000 n +0000259357 00000 n +0000565297 00000 n 0000004409 00000 n 0000004435 00000 n -0000259114 00000 n -0000562226 00000 n +0000259418 00000 n +0000565204 00000 n 0000004484 00000 n 0000004521 00000 n -0000272148 00000 n -0000562133 00000 n +0000272452 00000 n +0000565111 00000 n 0000004570 00000 n 0000004607 00000 n -0000273968 00000 n -0000562040 00000 n +0000274272 00000 n +0000565018 00000 n 0000004656 00000 n 0000004694 00000 n -0000275560 00000 n -0000561961 00000 n +0000275864 00000 n +0000564939 00000 n 0000004743 00000 n 0000004783 00000 n -0000277018 00000 n -0000561828 00000 n +0000277322 00000 n +0000564806 00000 n 0000004831 00000 n 0000004868 00000 n -0000277079 00000 n -0000561749 00000 n +0000277383 00000 n +0000564727 00000 n 0000004917 00000 n 0000004976 00000 n -0000279934 00000 n -0000561656 00000 n +0000280238 00000 n +0000564634 00000 n 0000005025 00000 n 0000005076 00000 n -0000282272 00000 n -0000561563 00000 n +0000282576 00000 n +0000564541 00000 n 0000005125 00000 n 0000005174 00000 n -0000283732 00000 n -0000561470 00000 n +0000284036 00000 n +0000564448 00000 n 0000005223 00000 n 0000005273 00000 n -0000286317 00000 n -0000561377 00000 n +0000286621 00000 n +0000564355 00000 n 0000005322 00000 n 0000005384 00000 n -0000289026 00000 n -0000561284 00000 n +0000289330 00000 n +0000564262 00000 n 0000005433 00000 n 0000005492 00000 n -0000290509 00000 n -0000561191 00000 n +0000290813 00000 n +0000564169 00000 n 0000005541 00000 n 0000005606 00000 n -0000291654 00000 n -0000561112 00000 n +0000291958 00000 n +0000564090 00000 n 0000005655 00000 n 0000005720 00000 n -0000293255 00000 n -0000560979 00000 n +0000293559 00000 n +0000563957 00000 n 0000005768 00000 n 0000005810 00000 n -0000293316 00000 n -0000560900 00000 n +0000293620 00000 n +0000563878 00000 n 0000005859 00000 n 0000005883 00000 n -0000295821 00000 n -0000560807 00000 n +0000296125 00000 n +0000563785 00000 n 0000005932 00000 n 0000005955 00000 n -0000297137 00000 n -0000560714 00000 n +0000297441 00000 n +0000563692 00000 n 0000006004 00000 n 0000006059 00000 n -0000299233 00000 n -0000560635 00000 n +0000299537 00000 n +0000563613 00000 n 0000006108 00000 n 0000006142 00000 n -0000301927 00000 n -0000560502 00000 n +0000302231 00000 n +0000563480 00000 n 0000006190 00000 n 0000006238 00000 n -0000301988 00000 n -0000560423 00000 n +0000302292 00000 n +0000563401 00000 n 0000006287 00000 n 0000006319 00000 n -0000302049 00000 n -0000560291 00000 n +0000302353 00000 n +0000563269 00000 n 0000006368 00000 n 0000006396 00000 n -0000302110 00000 n -0000560212 00000 n +0000302414 00000 n +0000563190 00000 n 0000006450 00000 n 0000006490 00000 n -0000316740 00000 n -0000560119 00000 n +0000317052 00000 n +0000563097 00000 n 0000006544 00000 n 0000006596 00000 n -0000316801 00000 n -0000560040 00000 n +0000317113 00000 n +0000563018 00000 n 0000006650 00000 n 0000006682 00000 n -0000321213 00000 n -0000559908 00000 n +0000321526 00000 n +0000562886 00000 n 0000006731 00000 n 0000006763 00000 n -0000321275 00000 n -0000559829 00000 n +0000321588 00000 n +0000562807 00000 n 0000006817 00000 n 0000006854 00000 n -0000323262 00000 n -0000559736 00000 n +0000323575 00000 n +0000562714 00000 n 0000006908 00000 n 0000006942 00000 n -0000325068 00000 n -0000559657 00000 n +0000325381 00000 n +0000562635 00000 n 0000006996 00000 n 0000007045 00000 n -0000325130 00000 n -0000559539 00000 n +0000325443 00000 n +0000562517 00000 n 0000007094 00000 n 0000007128 00000 n -0000325192 00000 n -0000559460 00000 n +0000325505 00000 n +0000562438 00000 n 0000007182 00000 n 0000007253 00000 n -0000331131 00000 n -0000559381 00000 n +0000331444 00000 n +0000562359 00000 n 0000007307 00000 n 0000007339 00000 n -0000338420 00000 n -0000559261 00000 n +0000338941 00000 n +0000562239 00000 n 0000007387 00000 n 0000007410 00000 n -0000338482 00000 n -0000559182 00000 n +0000339003 00000 n +0000562160 00000 n 0000007459 00000 n 0000007544 00000 n -0000338544 00000 n -0000559089 00000 n +0000339065 00000 n +0000562067 00000 n 0000007593 00000 n 0000007672 00000 n -0000412259 00000 n -0000558996 00000 n +0000339127 00000 n +0000561974 00000 n 0000007721 00000 n -0000007784 00000 n -0000415731 00000 n -0000558903 00000 n -0000007833 00000 n -0000007891 00000 n -0000415793 00000 n -0000558810 00000 n -0000007940 00000 n -0000008024 00000 n -0000415855 00000 n -0000558717 00000 n -0000008073 00000 n -0000008161 00000 n -0000418880 00000 n -0000558624 00000 n -0000008210 00000 n -0000008273 00000 n -0000418942 00000 n -0000558531 00000 n -0000008322 00000 n -0000008403 00000 n -0000419004 00000 n -0000558438 00000 n -0000008452 00000 n -0000008518 00000 n -0000420749 00000 n -0000558345 00000 n -0000008568 00000 n -0000008644 00000 n -0000420811 00000 n -0000558266 00000 n -0000008694 00000 n -0000008784 00000 n -0000009156 00000 n -0000009275 00000 n -0000094951 00000 n -0000112898 00000 n -0000113073 00000 n -0000112143 00000 n -0000008836 00000 n -0000112021 00000 n -0000112082 00000 n -0000555359 00000 n -0000555882 00000 n -0000094743 00000 n -0000094904 00000 n -0000111811 00000 n -0000111974 00000 n -0000113260 00000 n -0000113507 00000 n -0000112743 00000 n -0000112256 00000 n -0000113446 00000 n -0000555532 00000 n -0000555185 00000 n -0000115433 00000 n -0000115584 00000 n -0000115735 00000 n -0000115888 00000 n -0000116040 00000 n -0000116193 00000 n -0000116350 00000 n -0000116667 00000 n -0000116826 00000 n -0000116985 00000 n -0000117138 00000 n -0000117295 00000 n -0000117453 00000 n -0000117606 00000 n -0000117759 00000 n -0000117918 00000 n -0000118069 00000 n -0000118222 00000 n -0000118373 00000 n -0000118524 00000 n -0000118676 00000 n -0000118829 00000 n -0000118982 00000 n -0000119135 00000 n -0000119287 00000 n -0000119440 00000 n -0000119593 00000 n -0000119746 00000 n -0000119897 00000 n -0000120050 00000 n -0000120203 00000 n -0000120356 00000 n -0000122776 00000 n -0000120631 00000 n -0000115038 00000 n -0000113620 00000 n -0000120509 00000 n -0000120570 00000 n -0000116509 00000 n -0000122929 00000 n -0000123082 00000 n -0000123235 00000 n -0000123388 00000 n -0000123541 00000 n -0000123694 00000 n -0000123848 00000 n -0000124002 00000 n -0000124155 00000 n -0000124306 00000 n -0000124458 00000 n -0000124610 00000 n -0000124763 00000 n -0000124913 00000 n -0000125066 00000 n -0000125219 00000 n -0000125372 00000 n -0000125525 00000 n -0000125678 00000 n -0000125830 00000 n -0000125983 00000 n -0000126135 00000 n -0000126288 00000 n -0000126441 00000 n -0000126593 00000 n -0000126745 00000 n -0000126898 00000 n -0000127051 00000 n -0000127203 00000 n -0000127355 00000 n -0000127508 00000 n -0000127661 00000 n -0000127814 00000 n -0000127966 00000 n -0000128119 00000 n -0000128272 00000 n -0000128430 00000 n -0000128588 00000 n -0000130789 00000 n -0000130940 00000 n -0000128807 00000 n -0000122333 00000 n -0000120744 00000 n -0000128746 00000 n -0000131098 00000 n -0000131257 00000 n -0000131416 00000 n -0000131568 00000 n -0000131727 00000 n -0000131886 00000 n -0000132038 00000 n -0000132191 00000 n -0000132342 00000 n -0000132494 00000 n -0000132647 00000 n -0000132798 00000 n -0000132951 00000 n -0000133104 00000 n -0000133257 00000 n -0000133410 00000 n -0000133564 00000 n -0000133779 00000 n -0000130506 00000 n -0000128920 00000 n -0000133718 00000 n -0000555705 00000 n -0000134185 00000 n -0000134005 00000 n -0000133905 00000 n -0000134124 00000 n -0000136572 00000 n -0000137187 00000 n -0000136726 00000 n -0000137366 00000 n -0000136879 00000 n -0000137533 00000 n -0000137033 00000 n -0000139789 00000 n -0000139941 00000 n -0000140094 00000 n -0000140248 00000 n -0000140402 00000 n -0000140556 00000 n -0000140709 00000 n -0000138029 00000 n -0000136385 00000 n -0000134226 00000 n -0000137729 00000 n -0000137849 00000 n -0000137909 00000 n -0000137969 00000 n -0000556000 00000 n -0000140861 00000 n -0000141013 00000 n -0000141167 00000 n -0000141321 00000 n -0000141475 00000 n -0000143475 00000 n -0000143627 00000 n -0000143786 00000 n -0000143939 00000 n -0000144094 00000 n -0000144249 00000 n -0000144402 00000 n -0000141691 00000 n -0000139562 00000 n -0000138155 00000 n -0000141630 00000 n -0000554867 00000 n -0000144555 00000 n -0000144706 00000 n -0000144860 00000 n -0000145013 00000 n -0000145167 00000 n -0000145317 00000 n -0000145529 00000 n -0000143240 00000 n -0000141817 00000 n +0000007782 00000 n +0000341931 00000 n +0000561881 00000 n +0000007831 00000 n +0000007894 00000 n +0000415525 00000 n +0000561788 00000 n +0000007943 00000 n +0000008001 00000 n +0000418788 00000 n +0000561695 00000 n +0000008050 00000 n +0000008134 00000 n +0000418850 00000 n +0000561602 00000 n +0000008183 00000 n +0000008271 00000 n +0000421758 00000 n +0000561509 00000 n +0000008320 00000 n +0000008383 00000 n +0000421820 00000 n +0000561416 00000 n +0000008432 00000 n +0000008513 00000 n +0000421881 00000 n +0000561323 00000 n +0000008563 00000 n +0000008629 00000 n +0000423625 00000 n +0000561230 00000 n +0000008679 00000 n +0000008755 00000 n +0000423687 00000 n +0000561151 00000 n +0000008805 00000 n +0000008895 00000 n +0000009267 00000 n +0000009386 00000 n +0000095062 00000 n +0000113009 00000 n +0000113184 00000 n +0000112254 00000 n +0000008947 00000 n +0000112132 00000 n +0000112193 00000 n +0000558235 00000 n +0000558758 00000 n +0000094854 00000 n +0000095015 00000 n +0000111922 00000 n +0000112085 00000 n +0000113371 00000 n +0000113618 00000 n +0000112854 00000 n +0000112367 00000 n +0000113557 00000 n +0000558408 00000 n +0000558061 00000 n +0000115544 00000 n +0000115695 00000 n +0000115846 00000 n +0000115999 00000 n +0000116151 00000 n +0000116304 00000 n +0000116461 00000 n +0000116778 00000 n +0000116937 00000 n +0000117096 00000 n +0000117249 00000 n +0000117406 00000 n +0000117564 00000 n +0000117717 00000 n +0000117870 00000 n +0000118029 00000 n +0000118180 00000 n +0000118333 00000 n +0000118484 00000 n +0000118635 00000 n +0000118787 00000 n +0000118940 00000 n +0000119093 00000 n +0000119246 00000 n +0000119398 00000 n +0000119551 00000 n +0000119704 00000 n +0000119857 00000 n +0000120008 00000 n +0000120161 00000 n +0000120314 00000 n +0000120467 00000 n +0000122887 00000 n +0000120742 00000 n +0000115149 00000 n +0000113731 00000 n +0000120620 00000 n +0000120681 00000 n +0000116620 00000 n +0000123040 00000 n +0000123193 00000 n +0000123346 00000 n +0000123499 00000 n +0000123652 00000 n +0000123805 00000 n +0000123959 00000 n +0000124113 00000 n +0000124266 00000 n +0000124417 00000 n +0000124569 00000 n +0000124721 00000 n +0000124874 00000 n +0000125024 00000 n +0000125177 00000 n +0000125330 00000 n +0000125483 00000 n +0000125636 00000 n +0000125789 00000 n +0000125941 00000 n +0000126094 00000 n +0000126246 00000 n +0000126399 00000 n +0000126552 00000 n +0000126704 00000 n +0000126856 00000 n +0000127009 00000 n +0000127162 00000 n +0000127314 00000 n +0000127466 00000 n +0000127619 00000 n +0000127772 00000 n +0000127925 00000 n +0000128077 00000 n +0000128230 00000 n +0000128383 00000 n +0000128541 00000 n +0000128699 00000 n +0000130937 00000 n +0000131088 00000 n +0000128918 00000 n +0000122444 00000 n +0000120855 00000 n +0000128857 00000 n +0000131246 00000 n +0000131405 00000 n +0000131564 00000 n +0000131716 00000 n +0000131875 00000 n +0000132034 00000 n +0000132186 00000 n +0000132339 00000 n +0000132490 00000 n +0000132642 00000 n +0000132795 00000 n +0000132946 00000 n +0000133099 00000 n +0000133252 00000 n +0000133405 00000 n +0000133558 00000 n +0000133712 00000 n +0000133865 00000 n +0000134080 00000 n +0000130646 00000 n +0000129031 00000 n +0000134019 00000 n +0000558581 00000 n +0000134486 00000 n +0000134306 00000 n +0000134206 00000 n +0000134425 00000 n +0000136873 00000 n +0000137488 00000 n +0000137027 00000 n +0000137667 00000 n +0000137180 00000 n +0000137834 00000 n +0000137334 00000 n +0000140090 00000 n +0000140242 00000 n +0000140395 00000 n +0000140549 00000 n +0000140703 00000 n +0000140857 00000 n +0000141010 00000 n +0000138330 00000 n +0000136686 00000 n +0000134527 00000 n +0000138030 00000 n +0000138150 00000 n +0000138210 00000 n +0000138270 00000 n +0000558876 00000 n +0000141162 00000 n +0000141314 00000 n +0000141468 00000 n +0000141622 00000 n +0000141776 00000 n +0000143776 00000 n +0000143928 00000 n +0000144087 00000 n +0000144240 00000 n +0000144395 00000 n +0000144550 00000 n +0000144703 00000 n +0000141992 00000 n +0000139863 00000 n +0000138456 00000 n +0000141931 00000 n +0000557743 00000 n +0000144856 00000 n +0000145007 00000 n +0000145161 00000 n +0000145314 00000 n 0000145468 00000 n -0000145935 00000 n -0000145755 00000 n -0000145655 00000 n -0000145874 00000 n -0000148181 00000 n +0000145618 00000 n +0000145830 00000 n +0000143541 00000 n +0000142118 00000 n +0000145769 00000 n +0000146236 00000 n +0000146056 00000 n +0000145956 00000 n +0000146175 00000 n +0000148482 00000 n +0000148636 00000 n +0000148968 00000 n 0000148335 00000 n -0000148667 00000 n -0000148034 00000 n -0000145976 00000 n -0000148488 00000 n -0000555011 00000 n -0000150838 00000 n -0000153491 00000 n -0000151052 00000 n -0000150699 00000 n -0000148819 00000 n -0000150991 00000 n -0000153645 00000 n -0000153799 00000 n -0000153953 00000 n -0000154107 00000 n -0000154261 00000 n -0000154595 00000 n -0000153312 00000 n -0000151204 00000 n -0000154414 00000 n -0000556118 00000 n -0000156971 00000 n -0000157519 00000 n -0000156824 00000 n -0000154734 00000 n -0000157338 00000 n -0000157155 00000 n +0000146277 00000 n +0000148789 00000 n +0000557887 00000 n +0000151139 00000 n +0000153792 00000 n +0000151353 00000 n +0000151000 00000 n +0000149120 00000 n +0000151292 00000 n +0000153946 00000 n +0000154100 00000 n +0000154254 00000 n +0000154408 00000 n +0000154562 00000 n +0000154896 00000 n +0000153613 00000 n +0000151505 00000 n +0000154715 00000 n +0000558994 00000 n +0000157272 00000 n +0000157820 00000 n +0000157125 00000 n +0000155035 00000 n +0000157639 00000 n +0000157456 00000 n +0000160143 00000 n +0000159723 00000 n +0000157972 00000 n 0000159842 00000 n -0000159422 00000 n -0000157671 00000 n -0000159541 00000 n -0000162361 00000 n -0000162061 00000 n -0000159981 00000 n -0000162180 00000 n -0000162300 00000 n -0000164766 00000 n +0000162662 00000 n +0000162362 00000 n +0000160282 00000 n +0000162481 00000 n +0000162601 00000 n +0000165067 00000 n +0000165221 00000 n +0000168462 00000 n +0000168615 00000 n +0000165558 00000 n 0000164920 00000 n -0000168159 00000 n -0000168312 00000 n -0000165257 00000 n -0000164619 00000 n -0000162513 00000 n -0000165074 00000 n -0000165135 00000 n -0000165196 00000 n -0000168464 00000 n -0000168623 00000 n -0000168777 00000 n -0000172072 00000 n -0000172533 00000 n -0000169397 00000 n -0000167988 00000 n -0000165396 00000 n -0000168972 00000 n -0000169033 00000 n -0000169094 00000 n -0000169155 00000 n -0000169275 00000 n -0000169336 00000 n -0000172225 00000 n -0000172975 00000 n -0000172379 00000 n -0000173445 00000 n -0000171893 00000 n -0000169536 00000 n -0000173144 00000 n -0000173325 00000 n -0000172754 00000 n -0000173385 00000 n -0000556236 00000 n -0000175791 00000 n -0000175945 00000 n -0000176099 00000 n -0000176252 00000 n -0000179184 00000 n -0000179645 00000 n -0000176708 00000 n -0000175628 00000 n -0000173584 00000 n -0000176405 00000 n -0000176466 00000 n -0000176587 00000 n -0000179338 00000 n -0000179491 00000 n -0000180010 00000 n -0000179021 00000 n -0000176834 00000 n -0000179829 00000 n -0000179950 00000 n -0000180416 00000 n -0000180236 00000 n -0000180136 00000 n -0000180355 00000 n -0000182995 00000 n -0000183149 00000 n -0000185960 00000 n -0000186119 00000 n -0000186272 00000 n -0000186426 00000 n -0000186580 00000 n -0000186734 00000 n -0000186887 00000 n -0000183604 00000 n -0000182848 00000 n -0000180457 00000 n -0000183303 00000 n -0000183543 00000 n -0000187041 00000 n -0000187195 00000 n -0000187349 00000 n -0000189733 00000 n -0000189887 00000 n -0000190041 00000 n -0000190195 00000 n -0000190348 00000 n -0000190502 00000 n -0000190655 00000 n -0000190814 00000 n -0000190973 00000 n -0000191132 00000 n -0000191286 00000 n -0000193851 00000 n -0000194005 00000 n -0000194159 00000 n -0000194313 00000 n -0000194466 00000 n -0000194620 00000 n -0000194772 00000 n -0000194926 00000 n -0000187563 00000 n -0000185749 00000 n -0000183730 00000 n -0000187502 00000 n -0000191501 00000 n -0000189514 00000 n -0000187702 00000 n -0000191440 00000 n -0000556354 00000 n -0000195141 00000 n -0000193656 00000 n -0000191640 00000 n -0000195080 00000 n -0000198328 00000 n -0000201301 00000 n -0000198603 00000 n -0000198189 00000 n -0000195280 00000 n -0000198482 00000 n -0000554142 00000 n -0000554578 00000 n -0000554433 00000 n -0000201455 00000 n -0000204240 00000 n -0000201850 00000 n -0000201154 00000 n -0000198793 00000 n -0000201609 00000 n -0000204393 00000 n -0000204547 00000 n -0000204701 00000 n -0000205173 00000 n -0000204077 00000 n -0000202002 00000 n -0000204870 00000 n -0000204991 00000 n -0000205052 00000 n -0000205113 00000 n -0000207242 00000 n -0000206940 00000 n -0000205312 00000 n -0000207059 00000 n -0000207120 00000 n -0000209412 00000 n -0000209564 00000 n -0000212687 00000 n -0000210023 00000 n -0000209265 00000 n -0000207394 00000 n -0000209718 00000 n -0000209901 00000 n -0000209962 00000 n -0000556472 00000 n -0000212841 00000 n -0000212995 00000 n -0000213390 00000 n -0000212532 00000 n -0000210162 00000 n -0000213148 00000 n -0000213209 00000 n -0000215590 00000 n +0000162814 00000 n +0000165375 00000 n +0000165436 00000 n +0000165497 00000 n +0000168767 00000 n +0000168926 00000 n +0000169081 00000 n +0000172376 00000 n +0000172837 00000 n +0000169701 00000 n +0000168291 00000 n +0000165697 00000 n +0000169276 00000 n +0000169337 00000 n +0000169398 00000 n +0000169459 00000 n +0000169579 00000 n +0000169640 00000 n +0000172529 00000 n +0000173279 00000 n +0000172683 00000 n +0000173749 00000 n +0000172197 00000 n +0000169840 00000 n +0000173448 00000 n +0000173629 00000 n +0000173058 00000 n +0000173689 00000 n +0000559112 00000 n +0000176095 00000 n +0000176249 00000 n +0000176403 00000 n +0000176556 00000 n +0000179488 00000 n +0000179949 00000 n +0000177012 00000 n +0000175932 00000 n +0000173888 00000 n +0000176709 00000 n +0000176770 00000 n +0000176891 00000 n +0000179642 00000 n +0000179795 00000 n +0000180314 00000 n +0000179325 00000 n +0000177138 00000 n +0000180133 00000 n +0000180254 00000 n +0000180720 00000 n +0000180540 00000 n +0000180440 00000 n +0000180659 00000 n +0000183299 00000 n +0000183453 00000 n +0000186264 00000 n +0000186423 00000 n +0000186576 00000 n +0000186730 00000 n +0000186884 00000 n +0000187038 00000 n +0000187191 00000 n +0000183908 00000 n +0000183152 00000 n +0000180761 00000 n +0000183607 00000 n +0000183847 00000 n +0000187345 00000 n +0000187499 00000 n +0000187653 00000 n +0000190037 00000 n +0000190191 00000 n +0000190345 00000 n +0000190499 00000 n +0000190652 00000 n +0000190806 00000 n +0000190959 00000 n +0000191118 00000 n +0000191277 00000 n +0000191436 00000 n +0000191590 00000 n +0000194155 00000 n +0000194309 00000 n +0000194463 00000 n +0000194617 00000 n +0000194770 00000 n +0000194924 00000 n +0000195076 00000 n +0000195230 00000 n +0000187867 00000 n +0000186053 00000 n +0000184034 00000 n +0000187806 00000 n +0000191805 00000 n +0000189818 00000 n +0000188006 00000 n +0000191744 00000 n +0000559230 00000 n +0000195445 00000 n +0000193960 00000 n +0000191944 00000 n +0000195384 00000 n +0000198632 00000 n +0000201605 00000 n +0000198907 00000 n +0000198493 00000 n +0000195584 00000 n +0000198786 00000 n +0000557018 00000 n +0000557454 00000 n +0000557309 00000 n +0000201759 00000 n +0000204544 00000 n +0000202154 00000 n +0000201458 00000 n +0000199097 00000 n +0000201913 00000 n +0000204697 00000 n +0000204851 00000 n +0000205005 00000 n +0000205477 00000 n +0000204381 00000 n +0000202306 00000 n +0000205174 00000 n +0000205295 00000 n +0000205356 00000 n +0000205417 00000 n +0000207546 00000 n +0000207244 00000 n +0000205616 00000 n +0000207363 00000 n +0000207424 00000 n +0000209716 00000 n +0000209868 00000 n +0000212991 00000 n +0000210327 00000 n +0000209569 00000 n +0000207698 00000 n +0000210022 00000 n +0000210205 00000 n +0000210266 00000 n +0000559348 00000 n +0000213145 00000 n +0000213299 00000 n +0000213694 00000 n +0000212836 00000 n +0000210466 00000 n +0000213452 00000 n +0000213513 00000 n +0000215894 00000 n +0000216351 00000 n +0000215755 00000 n +0000213820 00000 n 0000216047 00000 n -0000215451 00000 n -0000213516 00000 n -0000215743 00000 n -0000215804 00000 n -0000215925 00000 n -0000218892 00000 n -0000218712 00000 n -0000216186 00000 n -0000218831 00000 n -0000221377 00000 n -0000221197 00000 n -0000219044 00000 n -0000221316 00000 n -0000224001 00000 n -0000223699 00000 n -0000221516 00000 n -0000223818 00000 n -0000223879 00000 n -0000223940 00000 n -0000226953 00000 n -0000226590 00000 n -0000224127 00000 n -0000226709 00000 n -0000226770 00000 n -0000226831 00000 n -0000226892 00000 n -0000556590 00000 n -0000229543 00000 n -0000229697 00000 n -0000229850 00000 n -0000230186 00000 n -0000229388 00000 n -0000227092 00000 n -0000230003 00000 n -0000230064 00000 n -0000230125 00000 n -0000232386 00000 n -0000235137 00000 n -0000232784 00000 n -0000232247 00000 n -0000230338 00000 n -0000232540 00000 n -0000232662 00000 n -0000235522 00000 n -0000234998 00000 n -0000232936 00000 n -0000235340 00000 n -0000235401 00000 n -0000238500 00000 n -0000241002 00000 n -0000238835 00000 n -0000238361 00000 n -0000235648 00000 n -0000238653 00000 n -0000241203 00000 n -0000241386 00000 n -0000241573 00000 n -0000242030 00000 n -0000240839 00000 n -0000238974 00000 n -0000241725 00000 n -0000241786 00000 n -0000241847 00000 n -0000241908 00000 n -0000243337 00000 n -0000243157 00000 n -0000242169 00000 n -0000243276 00000 n -0000556708 00000 n -0000245042 00000 n -0000247201 00000 n -0000245316 00000 n -0000244903 00000 n -0000243463 00000 n -0000245194 00000 n -0000247477 00000 n -0000247062 00000 n -0000245455 00000 n -0000247355 00000 n -0000248504 00000 n -0000248324 00000 n -0000247616 00000 n -0000248443 00000 n -0000250267 00000 n -0000249965 00000 n -0000248617 00000 n -0000250084 00000 n -0000252604 00000 n -0000253001 00000 n -0000252465 00000 n -0000250393 00000 n -0000252757 00000 n -0000252818 00000 n -0000252879 00000 n -0000255272 00000 n -0000255426 00000 n -0000255580 00000 n -0000255856 00000 n -0000255117 00000 n -0000253127 00000 n -0000255734 00000 n -0000556826 00000 n -0000256751 00000 n -0000256571 00000 n -0000255995 00000 n -0000256690 00000 n -0000258777 00000 n -0000259234 00000 n -0000258638 00000 n -0000256864 00000 n -0000258931 00000 n -0000259174 00000 n -0000261249 00000 n -0000261709 00000 n -0000261401 00000 n -0000261878 00000 n -0000261554 00000 n -0000262072 00000 n -0000262610 00000 n -0000261070 00000 n -0000259360 00000 n -0000262241 00000 n -0000262302 00000 n -0000262363 00000 n -0000262424 00000 n -0000262486 00000 n -0000262548 00000 n -0000264128 00000 n -0000263948 00000 n -0000262749 00000 n -0000264067 00000 n -0000265987 00000 n -0000265746 00000 n -0000264254 00000 n -0000265865 00000 n -0000265926 00000 n -0000267519 00000 n -0000267339 00000 n -0000266126 00000 n -0000267458 00000 n -0000556944 00000 n -0000268578 00000 n -0000268398 00000 n -0000267645 00000 n -0000268517 00000 n -0000269993 00000 n -0000270147 00000 n -0000270452 00000 n -0000269846 00000 n -0000268704 00000 n -0000270331 00000 n -0000270392 00000 n -0000272209 00000 n -0000271968 00000 n -0000270578 00000 n -0000272087 00000 n -0000275132 00000 n -0000275316 00000 n -0000274029 00000 n -0000273788 00000 n -0000272361 00000 n -0000273907 00000 n -0000275682 00000 n -0000274985 00000 n -0000274168 00000 n -0000275499 00000 n -0000275621 00000 n -0000277139 00000 n -0000276838 00000 n -0000275834 00000 n -0000276957 00000 n -0000557062 00000 n -0000278545 00000 n -0000278365 00000 n -0000277265 00000 n -0000278484 00000 n -0000279995 00000 n -0000279754 00000 n -0000278658 00000 n -0000279873 00000 n -0000281136 00000 n -0000280956 00000 n -0000280121 00000 n -0000281075 00000 n -0000282333 00000 n -0000282092 00000 n -0000281249 00000 n -0000282211 00000 n -0000283793 00000 n -0000283552 00000 n -0000282459 00000 n -0000283671 00000 n -0000285002 00000 n -0000284822 00000 n -0000283919 00000 n -0000284941 00000 n -0000557180 00000 n -0000286378 00000 n -0000286137 00000 n -0000285115 00000 n -0000286256 00000 n -0000287588 00000 n -0000287408 00000 n -0000286504 00000 n -0000287527 00000 n -0000289087 00000 n -0000288846 00000 n -0000287701 00000 n -0000288965 00000 n -0000290570 00000 n -0000290329 00000 n -0000289213 00000 n -0000290448 00000 n -0000291715 00000 n -0000291474 00000 n -0000290696 00000 n -0000291593 00000 n -0000293377 00000 n -0000293075 00000 n -0000291841 00000 n -0000293194 00000 n -0000557298 00000 n -0000294559 00000 n -0000294379 00000 n -0000293503 00000 n -0000294498 00000 n -0000295882 00000 n -0000295641 00000 n -0000294672 00000 n -0000295760 00000 n -0000297198 00000 n -0000296957 00000 n -0000296008 00000 n -0000297076 00000 n -0000299294 00000 n -0000299053 00000 n -0000297324 00000 n -0000299172 00000 n -0000299713 00000 n -0000299533 00000 n -0000299433 00000 n -0000299652 00000 n -0000302171 00000 n -0000301747 00000 n -0000299754 00000 n -0000301866 00000 n -0000557416 00000 n -0000316368 00000 n -0000304463 00000 n -0000316306 00000 n -0000316526 00000 n -0000316923 00000 n -0000304301 00000 n -0000302285 00000 n -0000316679 00000 n -0000316862 00000 n -0000306322 00000 n -0000306561 00000 n -0000306832 00000 n -0000307037 00000 n -0000307448 00000 n -0000316283 00000 n -0000319926 00000 n -0000320082 00000 n -0000320238 00000 n -0000320639 00000 n -0000320799 00000 n -0000320960 00000 n -0000321461 00000 n -0000319729 00000 n -0000317062 00000 n -0000321150 00000 n -0000554287 00000 n -0000554722 00000 n -0000320439 00000 n -0000321337 00000 n -0000321399 00000 n -0000323324 00000 n -0000322888 00000 n -0000321629 00000 n -0000323010 00000 n -0000323073 00000 n -0000323136 00000 n -0000323199 00000 n -0000325317 00000 n -0000324883 00000 n -0000323451 00000 n -0000325005 00000 n -0000325254 00000 n -0000327497 00000 n -0000328031 00000 n -0000327354 00000 n -0000325444 00000 n -0000327652 00000 n -0000327715 00000 n -0000327778 00000 n -0000327841 00000 n -0000327904 00000 n -0000327967 00000 n -0000330424 00000 n -0000330577 00000 n -0000330733 00000 n -0000331380 00000 n -0000330262 00000 n -0000328212 00000 n -0000330942 00000 n -0000331005 00000 n -0000331068 00000 n -0000331193 00000 n -0000331256 00000 n +0000216108 00000 n +0000216229 00000 n +0000219196 00000 n +0000219016 00000 n +0000216490 00000 n +0000219135 00000 n +0000221681 00000 n +0000221501 00000 n +0000219348 00000 n +0000221620 00000 n +0000224305 00000 n +0000224003 00000 n +0000221820 00000 n +0000224122 00000 n +0000224183 00000 n +0000224244 00000 n +0000227257 00000 n +0000226894 00000 n +0000224431 00000 n +0000227013 00000 n +0000227074 00000 n +0000227135 00000 n +0000227196 00000 n +0000559466 00000 n +0000229847 00000 n +0000230001 00000 n +0000230154 00000 n +0000230490 00000 n +0000229692 00000 n +0000227396 00000 n +0000230307 00000 n +0000230368 00000 n +0000230429 00000 n +0000232690 00000 n +0000235441 00000 n +0000233088 00000 n +0000232551 00000 n +0000230642 00000 n +0000232844 00000 n +0000232966 00000 n +0000235826 00000 n +0000235302 00000 n +0000233240 00000 n +0000235644 00000 n +0000235705 00000 n +0000238804 00000 n +0000241306 00000 n +0000239139 00000 n +0000238665 00000 n +0000235952 00000 n +0000238957 00000 n +0000241507 00000 n +0000241690 00000 n +0000241877 00000 n +0000242334 00000 n +0000241143 00000 n +0000239278 00000 n +0000242029 00000 n +0000242090 00000 n +0000242151 00000 n +0000242212 00000 n +0000243641 00000 n +0000243461 00000 n +0000242473 00000 n +0000243580 00000 n +0000559584 00000 n +0000245346 00000 n +0000247505 00000 n +0000245620 00000 n +0000245207 00000 n +0000243767 00000 n +0000245498 00000 n +0000247781 00000 n +0000247366 00000 n +0000245759 00000 n +0000247659 00000 n +0000248808 00000 n +0000248628 00000 n +0000247920 00000 n +0000248747 00000 n +0000250571 00000 n +0000250269 00000 n +0000248921 00000 n +0000250388 00000 n +0000252908 00000 n +0000253305 00000 n +0000252769 00000 n +0000250697 00000 n +0000253061 00000 n +0000253122 00000 n +0000253183 00000 n +0000255576 00000 n +0000255730 00000 n +0000255884 00000 n +0000256160 00000 n +0000255421 00000 n +0000253431 00000 n +0000256038 00000 n +0000559702 00000 n +0000257055 00000 n +0000256875 00000 n +0000256299 00000 n +0000256994 00000 n +0000259081 00000 n +0000259538 00000 n +0000258942 00000 n +0000257168 00000 n +0000259235 00000 n +0000259478 00000 n +0000261553 00000 n +0000262013 00000 n +0000261705 00000 n +0000262182 00000 n +0000261858 00000 n +0000262376 00000 n +0000262914 00000 n +0000261374 00000 n +0000259664 00000 n +0000262545 00000 n +0000262606 00000 n +0000262667 00000 n +0000262728 00000 n +0000262790 00000 n +0000262852 00000 n +0000264432 00000 n +0000264252 00000 n +0000263053 00000 n +0000264371 00000 n +0000266291 00000 n +0000266050 00000 n +0000264558 00000 n +0000266169 00000 n +0000266230 00000 n +0000267823 00000 n +0000267643 00000 n +0000266430 00000 n +0000267762 00000 n +0000559820 00000 n +0000268882 00000 n +0000268702 00000 n +0000267949 00000 n +0000268821 00000 n +0000270297 00000 n +0000270451 00000 n +0000270756 00000 n +0000270150 00000 n +0000269008 00000 n +0000270635 00000 n +0000270696 00000 n +0000272513 00000 n +0000272272 00000 n +0000270882 00000 n +0000272391 00000 n +0000275436 00000 n +0000275620 00000 n +0000274333 00000 n +0000274092 00000 n +0000272665 00000 n +0000274211 00000 n +0000275986 00000 n +0000275289 00000 n +0000274472 00000 n +0000275803 00000 n +0000275925 00000 n +0000277443 00000 n +0000277142 00000 n +0000276138 00000 n +0000277261 00000 n +0000559938 00000 n +0000278849 00000 n +0000278669 00000 n +0000277569 00000 n +0000278788 00000 n +0000280299 00000 n +0000280058 00000 n +0000278962 00000 n +0000280177 00000 n +0000281440 00000 n +0000281260 00000 n +0000280425 00000 n +0000281379 00000 n +0000282637 00000 n +0000282396 00000 n +0000281553 00000 n +0000282515 00000 n +0000284097 00000 n +0000283856 00000 n +0000282763 00000 n +0000283975 00000 n +0000285306 00000 n +0000285126 00000 n +0000284223 00000 n +0000285245 00000 n +0000560056 00000 n +0000286682 00000 n +0000286441 00000 n +0000285419 00000 n +0000286560 00000 n +0000287892 00000 n +0000287712 00000 n +0000286808 00000 n +0000287831 00000 n +0000289391 00000 n +0000289150 00000 n +0000288005 00000 n +0000289269 00000 n +0000290874 00000 n +0000290633 00000 n +0000289517 00000 n +0000290752 00000 n +0000292019 00000 n +0000291778 00000 n +0000291000 00000 n +0000291897 00000 n +0000293681 00000 n +0000293379 00000 n +0000292145 00000 n +0000293498 00000 n +0000560174 00000 n +0000294863 00000 n +0000294683 00000 n +0000293807 00000 n +0000294802 00000 n +0000296186 00000 n +0000295945 00000 n +0000294976 00000 n +0000296064 00000 n +0000297502 00000 n +0000297261 00000 n +0000296312 00000 n +0000297380 00000 n +0000299598 00000 n +0000299357 00000 n +0000297628 00000 n +0000299476 00000 n +0000300017 00000 n +0000299837 00000 n +0000299737 00000 n +0000299956 00000 n +0000302475 00000 n +0000302051 00000 n +0000300058 00000 n +0000302170 00000 n +0000560292 00000 n +0000316680 00000 n +0000304767 00000 n +0000316618 00000 n +0000316838 00000 n +0000317236 00000 n +0000304605 00000 n +0000302589 00000 n +0000316991 00000 n +0000317174 00000 n +0000306628 00000 n +0000306868 00000 n +0000307142 00000 n +0000307348 00000 n +0000307760 00000 n +0000316595 00000 n +0000320239 00000 n +0000320395 00000 n +0000320551 00000 n +0000320952 00000 n +0000321112 00000 n +0000321273 00000 n +0000321774 00000 n +0000320042 00000 n +0000317375 00000 n +0000321463 00000 n +0000557163 00000 n +0000557598 00000 n +0000320752 00000 n +0000321650 00000 n +0000321712 00000 n +0000323637 00000 n +0000323201 00000 n +0000321942 00000 n +0000323323 00000 n +0000323386 00000 n +0000323449 00000 n +0000323512 00000 n +0000325630 00000 n +0000325196 00000 n +0000323764 00000 n +0000325318 00000 n +0000325567 00000 n +0000327810 00000 n +0000328344 00000 n +0000327667 00000 n +0000325757 00000 n +0000327965 00000 n +0000328028 00000 n +0000328091 00000 n +0000328154 00000 n +0000328217 00000 n +0000328280 00000 n +0000330737 00000 n +0000330890 00000 n +0000331046 00000 n +0000331693 00000 n +0000330575 00000 n +0000328525 00000 n +0000331255 00000 n 0000331318 00000 n -0000557538 00000 n -0000334390 00000 n -0000333956 00000 n -0000331507 00000 n -0000334079 00000 n -0000334142 00000 n -0000334203 00000 n -0000334266 00000 n -0000334327 00000 n -0000336024 00000 n -0000335712 00000 n -0000334530 00000 n -0000335835 00000 n -0000335898 00000 n -0000335961 00000 n -0000336438 00000 n -0000336252 00000 n -0000336151 00000 n -0000336375 00000 n -0000338202 00000 n -0000338605 00000 n -0000338058 00000 n -0000336480 00000 n -0000338357 00000 n -0000412044 00000 n -0000340673 00000 n -0000412385 00000 n -0000340529 00000 n -0000338745 00000 n -0000412196 00000 n -0000412321 00000 n -0000415205 00000 n -0000415359 00000 n -0000415513 00000 n -0000415917 00000 n -0000415043 00000 n -0000412534 00000 n -0000415668 00000 n -0000557663 00000 n -0000418353 00000 n -0000418507 00000 n -0000418662 00000 n -0000420314 00000 n -0000419066 00000 n -0000418191 00000 n -0000416057 00000 n -0000418817 00000 n -0000420500 00000 n -0000420873 00000 n -0000420161 00000 n -0000419206 00000 n -0000420686 00000 n -0000420987 00000 n -0000421115 00000 n -0000421147 00000 n -0000421477 00000 n -0000421589 00000 n -0000553632 00000 n -0000421799 00000 n -0000422139 00000 n -0000422377 00000 n -0000422951 00000 n -0000423343 00000 n -0000423917 00000 n -0000424490 00000 n -0000435378 00000 n -0000435637 00000 n -0000443049 00000 n -0000443275 00000 n -0000455466 00000 n -0000455737 00000 n -0000463282 00000 n -0000463527 00000 n -0000471347 00000 n -0000471605 00000 n -0000479497 00000 n -0000479775 00000 n -0000496878 00000 n -0000497270 00000 n -0000517502 00000 n -0000518126 00000 n -0000532112 00000 n -0000532657 00000 n -0000544770 00000 n -0000545354 00000 n -0000553271 00000 n -0000557761 00000 n -0000557881 00000 n -0000558001 00000 n -0000558107 00000 n -0000558189 00000 n -0000566619 00000 n -0000566825 00000 n -0000567035 00000 n -0000567228 00000 n -0000567411 00000 n -0000567596 00000 n -0000567777 00000 n -0000567948 00000 n -0000568118 00000 n -0000568289 00000 n -0000568459 00000 n -0000568630 00000 n -0000568799 00000 n -0000568968 00000 n -0000569139 00000 n -0000569309 00000 n -0000569480 00000 n -0000569650 00000 n -0000569824 00000 n -0000569999 00000 n -0000570173 00000 n -0000570342 00000 n -0000570545 00000 n -0000570747 00000 n -0000570950 00000 n -0000571152 00000 n -0000571357 00000 n -0000571564 00000 n -0000571773 00000 n -0000571977 00000 n -0000572173 00000 n -0000572370 00000 n -0000572567 00000 n -0000572774 00000 n -0000572979 00000 n -0000573182 00000 n -0000573385 00000 n -0000573588 00000 n -0000573791 00000 n -0000573997 00000 n -0000574200 00000 n -0000574424 00000 n -0000574664 00000 n -0000574893 00000 n -0000575011 00000 n -0000575127 00000 n -0000575243 00000 n -0000575363 00000 n -0000575487 00000 n -0000575611 00000 n -0000575740 00000 n -0000575822 00000 n -0000575944 00000 n -0000576030 00000 n -0000576114 00000 n +0000331381 00000 n +0000331506 00000 n +0000331569 00000 n +0000331631 00000 n +0000560414 00000 n +0000334703 00000 n +0000334269 00000 n +0000331820 00000 n +0000334392 00000 n +0000334455 00000 n +0000334516 00000 n +0000334579 00000 n +0000334640 00000 n +0000336337 00000 n +0000336025 00000 n +0000334843 00000 n +0000336148 00000 n +0000336211 00000 n +0000336274 00000 n +0000336751 00000 n +0000336565 00000 n +0000336464 00000 n +0000336688 00000 n +0000338723 00000 n +0000339189 00000 n +0000338579 00000 n +0000336793 00000 n +0000338878 00000 n +0000341993 00000 n +0000341745 00000 n +0000339329 00000 n +0000341868 00000 n +0000415244 00000 n +0000343873 00000 n +0000418262 00000 n +0000418416 00000 n +0000415587 00000 n +0000343729 00000 n +0000342133 00000 n +0000415398 00000 n +0000415461 00000 n +0000560539 00000 n +0000418570 00000 n +0000421231 00000 n +0000418912 00000 n +0000418100 00000 n +0000415736 00000 n +0000418725 00000 n +0000421385 00000 n +0000421540 00000 n +0000423189 00000 n +0000421943 00000 n +0000421069 00000 n +0000419052 00000 n +0000421695 00000 n +0000423376 00000 n +0000423749 00000 n +0000423036 00000 n +0000422083 00000 n +0000423562 00000 n +0000423863 00000 n +0000423991 00000 n +0000424023 00000 n +0000424353 00000 n +0000424465 00000 n +0000556508 00000 n +0000424675 00000 n +0000425015 00000 n +0000425253 00000 n +0000425827 00000 n +0000426219 00000 n +0000426793 00000 n +0000427366 00000 n +0000438254 00000 n +0000438513 00000 n +0000445925 00000 n +0000446151 00000 n +0000458342 00000 n +0000458613 00000 n +0000466158 00000 n +0000466403 00000 n +0000474223 00000 n +0000474481 00000 n +0000482373 00000 n +0000482651 00000 n +0000499754 00000 n +0000500146 00000 n +0000520378 00000 n +0000521002 00000 n +0000534988 00000 n +0000535533 00000 n +0000547646 00000 n +0000548230 00000 n +0000556147 00000 n +0000560646 00000 n +0000560766 00000 n +0000560886 00000 n +0000560992 00000 n +0000561074 00000 n +0000569597 00000 n +0000569803 00000 n +0000570013 00000 n +0000570206 00000 n +0000570389 00000 n +0000570574 00000 n +0000570756 00000 n +0000570927 00000 n +0000571097 00000 n +0000571268 00000 n +0000571438 00000 n +0000571609 00000 n +0000571778 00000 n +0000571947 00000 n +0000572118 00000 n +0000572288 00000 n +0000572459 00000 n +0000572629 00000 n +0000572803 00000 n +0000572978 00000 n +0000573155 00000 n +0000573322 00000 n +0000573517 00000 n +0000573718 00000 n +0000573921 00000 n +0000574123 00000 n +0000574327 00000 n +0000574534 00000 n +0000574743 00000 n +0000574950 00000 n +0000575146 00000 n +0000575343 00000 n +0000575540 00000 n +0000575745 00000 n +0000575951 00000 n 0000576154 00000 n -0000576326 00000 n +0000576357 00000 n +0000576560 00000 n +0000576763 00000 n +0000576968 00000 n +0000577174 00000 n +0000577390 00000 n +0000577628 00000 n +0000577871 00000 n +0000577992 00000 n +0000578110 00000 n +0000578226 00000 n +0000578342 00000 n +0000578462 00000 n +0000578586 00000 n +0000578710 00000 n +0000578839 00000 n +0000578930 00000 n +0000579052 00000 n +0000579138 00000 n +0000579222 00000 n +0000579262 00000 n +0000579434 00000 n trailer -<< /Size 1199 -/Root 1197 0 R -/Info 1198 0 R -/ID [<7DE0B1FFC052551AB77C70B9923F63A8> <7DE0B1FFC052551AB77C70B9923F63A8>] >> +<< /Size 1209 +/Root 1207 0 R +/Info 1208 0 R +/ID [ ] >> startxref -576696 +579804 %%EOF diff --git a/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_File.c b/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_File.c index 9647b68d20..f813507c45 100644 --- a/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_File.c +++ b/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_File.c @@ -451,6 +451,10 @@ int OTF_File_seek( OTF_File* file, uint64_t pos ) { read= fread( file->zbuffer, 1, file->zbuffersize, file->file ); */ read= OTF_File_read_internal( file, file->zbuffer, file->zbuffersize ); + if ( 0 == read ) { + + return 0; + } OTF_FILE_Z(file)->next_in= file->zbuffer; OTF_FILE_Z(file)->avail_in= (uInt) read; diff --git a/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_RBuffer.c b/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_RBuffer.c index fe23d9ebfe..bd1fd452b1 100644 --- a/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_RBuffer.c +++ b/ompi/contrib/vt/vt/extlib/otf/otflib/OTF_RBuffer.c @@ -1138,16 +1138,20 @@ int OTF_RBuffer_searchTime( OTF_RBuffer* rbuffer, uint64_t time ) { else if ( time > timeB ) { /* consume all records, so that the caller get none */ - if ( posB > rbuffer->jumpsize ) { - posB -= rbuffer->jumpsize; - } else { - posB = 0; - } - ret= OTF_RBuffer_jump( rbuffer, posB ); - if ( 1 != ret ) { + do { + /* need to loop, so that OTF_RBuffer_jump finds the + start of a zlib block */ + if ( posB > rbuffer->jumpsize ) { + posB -= rbuffer->jumpsize; + } else { + posB = 0; + } + ret= OTF_RBuffer_jump( rbuffer, posB ); + } while ( 1 != ret ); + if ( posB == 0 && 1 != ret ) { OTF_Error( "ERROR in function %s, file: %s, line: %i:\n " - "unsuccessful jump to end pos= %llu.\n", + "unsuccessful jump to begin pos= %llu.\n", __FUNCTION__, __FILE__, __LINE__, (unsigned long long) posB ); return 0;