diff options
author | Michal Baudin <michael.baudin@scilab.org> | 2009-10-22 16:44:45 +0200 |
---|---|---|
committer | Michal Baudin <michael.baudin@scilab.org> | 2009-10-22 16:44:45 +0200 |
commit | bb5aada5eba6a4a1a181e1589f82c2ec501ac75a (patch) | |
tree | 45f73034fae88d1ad9dc9fb6b3a56ea293cfc1a7 /scilab_doc | |
parent | 8a20667347f2a0a00adb84a944d68a0d26946f1a (diff) | |
download | scilab-bb5aada5eba6a4a1a181e1589f82c2ec501ac75a.zip scilab-bb5aada5eba6a4a1a181e1589f82c2ec501ac75a.tar.gz |
fminsearch: updated validation in Manual
Diffstat (limited to 'scilab_doc')
-rw-r--r-- | scilab_doc/neldermead/Makefile | 1 | ||||
-rw-r--r-- | scilab_doc/neldermead/fminsearch-so.pdf | bin | 238829 -> 250095 bytes | |||
-rw-r--r-- | scilab_doc/neldermead/fminsearch.tex | 86 | ||||
-rw-r--r-- | scilab_doc/neldermead/implementations.tex | 4 | ||||
-rw-r--r-- | scilab_doc/neldermead/introduction.tex | 2 | ||||
-rw-r--r-- | scilab_doc/neldermead/macros.tex | 1 | ||||
-rw-r--r-- | scilab_doc/neldermead/method-neldermead.tex | 8 | ||||
-rw-r--r-- | scilab_doc/neldermead/method-spendley.tex | 5 | ||||
-rw-r--r-- | scilab_doc/neldermead/neldermead.pdf | 16066 | ||||
-rw-r--r-- | scilab_doc/neldermead/scripts/fminsearch_demo.m | 18 | ||||
-rw-r--r-- | scilab_doc/neldermead/scripts/fminsearch_rosenbrock.sce | 5 | ||||
-rw-r--r-- | scilab_doc/neldermead/scripts/outfun.m | 5 | ||||
-rw-r--r-- | scilab_doc/neldermead/section-simplex.tex | 10 |
13 files changed, 8407 insertions, 7804 deletions
diff --git a/scilab_doc/neldermead/Makefile b/scilab_doc/neldermead/Makefile index 85dc7ca..437e9cd 100644 --- a/scilab_doc/neldermead/Makefile +++ b/scilab_doc/neldermead/Makefile | |||
@@ -20,6 +20,7 @@ clean: | |||
20 | rm -f *.log | 20 | rm -f *.log |
21 | rm -f *.out | 21 | rm -f *.out |
22 | rm -f *.toc | 22 | rm -f *.toc |
23 | rm -f *.idx | ||
23 | 24 | ||
24 | ortho: | 25 | ortho: |
25 | ispell -t ${RAPPORT}.tex | 26 | ispell -t ${RAPPORT}.tex |
diff --git a/scilab_doc/neldermead/fminsearch-so.pdf b/scilab_doc/neldermead/fminsearch-so.pdf index 05a0864..9b0df46 100644 --- a/scilab_doc/neldermead/fminsearch-so.pdf +++ b/scilab_doc/neldermead/fminsearch-so.pdf | |||
Binary files differ | |||
diff --git a/scilab_doc/neldermead/fminsearch.tex b/scilab_doc/neldermead/fminsearch.tex index 4545f5e..c5960f2 100644 --- a/scilab_doc/neldermead/fminsearch.tex +++ b/scilab_doc/neldermead/fminsearch.tex | |||
@@ -9,6 +9,11 @@ to Matlab's \scifunction{fminsearch}. | |||
9 | 9 | ||
10 | \section{\scifunction{fminsearch}'s algorithm} | 10 | \section{\scifunction{fminsearch}'s algorithm} |
11 | 11 | ||
12 | In this section, we analyse the specific choices used in | ||
13 | \scifunction{fminsearch}'s algorithm. We detail what specific variant | ||
14 | of the Nelder-Mead algorithm is performed, what initial simplex is used, | ||
15 | the default number of iterations and the termination criteria. | ||
16 | |||
12 | \subsection{The algorithm} | 17 | \subsection{The algorithm} |
13 | 18 | ||
14 | The algorithm used is the Nelder-Mead algorithm. This corresponds to the | 19 | The algorithm used is the Nelder-Mead algorithm. This corresponds to the |
@@ -17,6 +22,7 @@ The "non greedy" version is used, that is, the expansion point is | |||
17 | accepted only if it improves over the reflection point. | 22 | accepted only if it improves over the reflection point. |
18 | 23 | ||
19 | \subsection{The initial simplex} | 24 | \subsection{The initial simplex} |
25 | \index{Pfeffer, L.} | ||
20 | 26 | ||
21 | The fminsearch algorithm uses a special initial simplex, which is an | 27 | The fminsearch algorithm uses a special initial simplex, which is an |
22 | heuristic depending on the initial guess. The strategy chosen by | 28 | heuristic depending on the initial guess. The strategy chosen by |
@@ -532,16 +538,25 @@ Optimization terminated: | |||
532 | and F(X) satisfies the convergence criteria using OPTIONS.TolFun of 1.000000e-004 | 538 | and F(X) satisfies the convergence criteria using OPTIONS.TolFun of 1.000000e-004 |
533 | \end{lstlisting} | 539 | \end{lstlisting} |
534 | 540 | ||
535 | A close inspection at the data reveals that the two softwares produces | 541 | We check that the two softwares produces indeed the same intermediate results in terms |
536 | indeed the same intermediate results. | 542 | of iteration, function evaluations, function values and type of steps. |
543 | The only difference is the iteration \#0, which is associated with | ||
544 | function evaluation \#1 in Matlab and with function evaluation \#3 in Scilab. | ||
545 | This is because Scilab calls back the output function once the initial | ||
546 | simplex is computed, which requires 3 function evaluations. | ||
537 | 547 | ||
538 | \subsection{Plot functions} | 548 | \subsection{Output and plot functions} |
539 | 549 | ||
540 | In this section, we check that the plotting features of the | 550 | In this section, we check that the output and plot features of the |
541 | \scifunction{fminsearch} function are the same. | 551 | \scifunction{fminsearch} function are the same. |
552 | We also check that the fields and the content of the \scivar{optimValues} | ||
553 | data structure and the \scivar{state} variable are the same in | ||
554 | both languages. | ||
542 | 555 | ||
543 | The following output function plots in the current graphic | 556 | The following output function plots in the current graphic |
544 | window the value of the current parameter $\bx$. | 557 | window the value of the current parameter $\bx$. |
558 | It also unloads the content of the \scivar{optimValues} | ||
559 | data structure and prints a message in the console. | ||
545 | To let Matlab load that script, save the content in a | 560 | To let Matlab load that script, save the content in a |
546 | .m file, in a directory known by Matlab. | 561 | .m file, in a directory known by Matlab. |
547 | 562 | ||
@@ -552,6 +567,11 @@ function stop = outfun(x, optimValues, state) | |||
552 | stop = false; | 567 | stop = false; |
553 | hold on; | 568 | hold on; |
554 | plot(x(1),x(2),'.'); | 569 | plot(x(1),x(2),'.'); |
570 | fc = optimValues.funccount; | ||
571 | fv = optimValues.fval; | ||
572 | it = optimValues.iteration; | ||
573 | pr = optimValues.procedure; | ||
574 | disp(sprintf ( '%d %e %d -%s- %s\n' , fc , fv , it , pr , state )) | ||
555 | drawnow | 575 | drawnow |
556 | \end{lstlisting} | 576 | \end{lstlisting} |
557 | 577 | ||
@@ -575,6 +595,29 @@ This produces the plot which is presented in figure \ref{fig-fminsearch-matlab-o | |||
575 | \label{fig-fminsearch-matlab-outputfun} | 595 | \label{fig-fminsearch-matlab-outputfun} |
576 | \end{figure} | 596 | \end{figure} |
577 | 597 | ||
598 | Matlab also prints the following messages in the console. | ||
599 | |||
600 | \lstset{language=matlabscript} | ||
601 | \begin{lstlisting} | ||
602 | % Matlab | ||
603 | 1 2.420000e+001 0 -- init | ||
604 | 1 2.420000e+001 0 -- iter | ||
605 | 3 2.005000e+001 1 -initial simplex- iter | ||
606 | 5 5.161796e+000 2 -expand- iter | ||
607 | 7 4.497796e+000 3 -reflect- iter | ||
608 | 9 4.497796e+000 4 -contract outside- iter | ||
609 | 11 4.381360e+000 5 -contract inside- iter | ||
610 | 13 4.245273e+000 6 -contract inside- iter | ||
611 | [...] | ||
612 | 149 2.004302e-008 80 -contract inside- iter | ||
613 | 151 1.122930e-009 81 -contract inside- iter | ||
614 | 153 1.122930e-009 82 -contract outside- iter | ||
615 | 155 1.122930e-009 83 -contract inside- iter | ||
616 | 157 1.107549e-009 84 -contract outside- iter | ||
617 | 159 8.177661e-010 85 -contract inside- iter | ||
618 | 159 8.177661e-010 85 -contract inside- done | ||
619 | \end{lstlisting} | ||
620 | |||
578 | The following Scilab script sets the "OutputFcn" option and then calls | 621 | The following Scilab script sets the "OutputFcn" option and then calls |
579 | the \scifunction{fminsearch} in order to perform the optimization. | 622 | the \scifunction{fminsearch} in order to perform the optimization. |
580 | 623 | ||
@@ -583,6 +626,11 @@ the \scifunction{fminsearch} in order to perform the optimization. | |||
583 | // Scilab | 626 | // Scilab |
584 | function outfun ( x , optimValues , state ) | 627 | function outfun ( x , optimValues , state ) |
585 | plot( x(1),x(2),'.'); | 628 | plot( x(1),x(2),'.'); |
629 | fc = optimValues.funccount; | ||
630 | fv = optimValues.fval; | ||
631 | it = optimValues.iteration; | ||
632 | pr = optimValues.procedure; | ||
633 | mprintf ( "%d %e %d -%s- %s\n" , fc , fv , it , pr , state ) | ||
586 | endfunction | 634 | endfunction |
587 | opt = optimset ( "OutputFcn" , outfun); | 635 | opt = optimset ( "OutputFcn" , outfun); |
588 | [x fval] = fminsearch ( banana , [-1.2 1] , opt ); | 636 | [x fval] = fminsearch ( banana , [-1.2 1] , opt ); |
@@ -602,6 +650,36 @@ in figure \ref{fig-fminsearch-scilab-outputfun}. | |||
602 | Except for the size of the dots (which can be configured in | 650 | Except for the size of the dots (which can be configured in |
603 | both softwares), the graphics are exactly the same. | 651 | both softwares), the graphics are exactly the same. |
604 | 652 | ||
653 | Scilab also prints the following messages in the console. | ||
654 | |||
655 | \lstset{language=scilabscript} | ||
656 | \begin{lstlisting} | ||
657 | // Scilab | ||
658 | 3 2.420000e+001 0 -- init | ||
659 | 3 2.005000e+001 1 -initial simplex- iter | ||
660 | 5 5.161796e+000 2 -expand- iter | ||
661 | 7 4.497796e+000 3 -reflect- iter | ||
662 | 9 4.497796e+000 4 -contract outside- iter | ||
663 | 11 4.381360e+000 5 -contract inside- iter | ||
664 | 13 4.245273e+000 6 -contract inside- iter | ||
665 | [...] | ||
666 | 149 2.004302e-008 80 -contract inside- iter | ||
667 | 151 1.122930e-009 81 -contract inside- iter | ||
668 | 153 1.122930e-009 82 -contract outside- iter | ||
669 | 155 1.122930e-009 83 -contract inside- iter | ||
670 | 157 1.107549e-009 84 -contract outside- iter | ||
671 | 159 8.177661e-010 85 -contract inside- iter | ||
672 | 159 8.177661e-010 85 -- done | ||
673 | \end{lstlisting} | ||
674 | |||
675 | We see that the output produced by the two software are identical, | ||
676 | expect for the two first lines and the last line. | ||
677 | The lines \#1 and \#2 are different is because Scilab computes the | ||
678 | function values of all the vertices before calling back the output function. | ||
679 | The last line is different because Scilab considers that once the optimization | ||
680 | is performed, the type of the step is an empty string. Instead, Matlab | ||
681 | displays the type of the last performed step. | ||
682 | |||
605 | \subsection{Predefined plot functions} | 683 | \subsection{Predefined plot functions} |
606 | 684 | ||
607 | Several pre-defined plot functions are provided with | 685 | Several pre-defined plot functions are provided with |
diff --git a/scilab_doc/neldermead/implementations.tex b/scilab_doc/neldermead/implementations.tex index 2c15246..0cd7be6 100644 --- a/scilab_doc/neldermead/implementations.tex +++ b/scilab_doc/neldermead/implementations.tex | |||
@@ -22,6 +22,7 @@ It provides features such as | |||
22 | \end{itemize} | 22 | \end{itemize} |
23 | 23 | ||
24 | \section{Kelley and the Nelder-Mead algorithm} | 24 | \section{Kelley and the Nelder-Mead algorithm} |
25 | \index{Kelley, C. T.} | ||
25 | 26 | ||
26 | C.T. Kelley has written a book \cite{Kelley1999} on optimization method and devotes a | 27 | C.T. Kelley has written a book \cite{Kelley1999} on optimization method and devotes a |
27 | complete chapter to direct search algorithms, especially the Nelder-Mead | 28 | complete chapter to direct search algorithms, especially the Nelder-Mead |
@@ -168,6 +169,7 @@ based on a local axis by axis search for the optimality of the | |||
168 | computed optimum. | 169 | computed optimum. |
169 | 170 | ||
170 | \section{Burkardt implementations} | 171 | \section{Burkardt implementations} |
172 | \index{Burkardt, John} | ||
171 | 173 | ||
172 | John Burkardt gives several implementations of the Nelder-Mead | 174 | John Burkardt gives several implementations of the Nelder-Mead |
173 | algorithm | 175 | algorithm |
@@ -177,6 +179,7 @@ algorithm | |||
177 | \end{itemize} | 179 | \end{itemize} |
178 | 180 | ||
179 | \section{NAG Fortran implementation} | 181 | \section{NAG Fortran implementation} |
182 | \index{NAG} | ||
180 | 183 | ||
181 | The NAG Fortran library provides the E04CCF/E04CCA routines \cite{NAGE04CCF} which | 184 | The NAG Fortran library provides the E04CCF/E04CCA routines \cite{NAGE04CCF} which |
182 | implements the simplex optimization method. | 185 | implements the simplex optimization method. |
@@ -198,6 +201,7 @@ It can be used to print out the current values of any selection of its parameter | |||
198 | but must not be used to change the values of the parameters. | 201 | but must not be used to change the values of the parameters. |
199 | 202 | ||
200 | \section{GSL implementation} | 203 | \section{GSL implementation} |
204 | \index{Gnu Scientific Library} | ||
201 | 205 | ||
202 | The Gnu Scientific Library provides two Nelder-Mead implementations. | 206 | The Gnu Scientific Library provides two Nelder-Mead implementations. |
203 | The authors are Tuomo Keskitalo, Ivo Alxneit and Brian Gough. | 207 | The authors are Tuomo Keskitalo, Ivo Alxneit and Brian Gough. |
diff --git a/scilab_doc/neldermead/introduction.tex b/scilab_doc/neldermead/introduction.tex index e041af1..35677c0 100644 --- a/scilab_doc/neldermead/introduction.tex +++ b/scilab_doc/neldermead/introduction.tex | |||
@@ -5,6 +5,8 @@ We present the main features of the \scifunction{neldermead} component, and | |||
5 | show how to use the component with a simple example. | 5 | show how to use the component with a simple example. |
6 | 6 | ||
7 | \section{Overview} | 7 | \section{Overview} |
8 | \index{Torczon, Virginia} | ||
9 | \index{Wright, Margaret} | ||
8 | 10 | ||
9 | The Nelder-Mead simplex algorithm \cite{citeulike:3009487}, published in 1965, is an enormously | 11 | The Nelder-Mead simplex algorithm \cite{citeulike:3009487}, published in 1965, is an enormously |
10 | popular search method for multidimensional unconstrained optimization. | 12 | popular search method for multidimensional unconstrained optimization. |
diff --git a/scilab_doc/neldermead/macros.tex b/scilab_doc/neldermead/macros.tex index b713760..8c38808 100644 --- a/scilab_doc/neldermead/macros.tex +++ b/scilab_doc/neldermead/macros.tex | |||
@@ -62,6 +62,7 @@ | |||
62 | 62 | ||
63 | % Scilab macros | 63 | % Scilab macros |
64 | \newcommand{\scifunction}[1]{\textit{#1}} | 64 | \newcommand{\scifunction}[1]{\textit{#1}} |
65 | \newcommand{\scivar}[1]{\textit{#1}} | ||
65 | 66 | ||
66 | % To highlight source code | 67 | % To highlight source code |
67 | \usepackage{listings} | 68 | \usepackage{listings} |
diff --git a/scilab_doc/neldermead/method-neldermead.tex b/scilab_doc/neldermead/method-neldermead.tex index ea17976..397f2f7 100644 --- a/scilab_doc/neldermead/method-neldermead.tex +++ b/scilab_doc/neldermead/method-neldermead.tex | |||
@@ -323,6 +323,9 @@ shrink steps are rare. | |||
323 | 323 | ||
324 | \section{Convergence properties on a quadratic} | 324 | \section{Convergence properties on a quadratic} |
325 | 325 | ||
326 | \index{Han, Lixing} | ||
327 | \index{Neumann, Michael} | ||
328 | |||
326 | In this section, we reproduce one result | 329 | In this section, we reproduce one result |
327 | presented by Han and Neumann \cite{HanNeumann2006}, which states | 330 | presented by Han and Neumann \cite{HanNeumann2006}, which states |
328 | the rate of convergence toward the optimum on a class of quadratic | 331 | the rate of convergence toward the optimum on a class of quadratic |
@@ -1034,6 +1037,8 @@ $10000.0$ & 167 & $3.0e-17$ & $(5.0e-11,-1.0e-10)$ \\ | |||
1034 | \end{figure} | 1037 | \end{figure} |
1035 | 1038 | ||
1036 | \subsection{Sensitivity to dimension} | 1039 | \subsection{Sensitivity to dimension} |
1040 | \index{Han, Lixing} | ||
1041 | \index{Neumann, Michael} | ||
1037 | 1042 | ||
1038 | In this section, we try to reproduce the result | 1043 | In this section, we try to reproduce the result |
1039 | presented by Han and Neumann \cite{HanNeumann2006}, which shows that the | 1044 | presented by Han and Neumann \cite{HanNeumann2006}, which shows that the |
@@ -1204,6 +1209,7 @@ depending on the number of variables} | |||
1204 | \end{figure} | 1209 | \end{figure} |
1205 | 1210 | ||
1206 | \subsection{O'Neill test cases} | 1211 | \subsection{O'Neill test cases} |
1212 | \index{O'Neill, R.} | ||
1207 | 1213 | ||
1208 | In this section, we present the results by O'Neill, who | 1214 | In this section, we present the results by O'Neill, who |
1209 | implemented a fortran 77 version of the Nelder-Mead algorithm | 1215 | implemented a fortran 77 version of the Nelder-Mead algorithm |
@@ -1315,6 +1321,7 @@ Baudin & 4 & 999 & 0 & 5.91 e-9 & 676 & - \\ | |||
1315 | 1321 | ||
1316 | \subsection{Convergence to a non stationnary point} | 1322 | \subsection{Convergence to a non stationnary point} |
1317 | \label{section-mcKinnon} | 1323 | \label{section-mcKinnon} |
1324 | \index{Mc Kinnon, K. I. M.} | ||
1318 | 1325 | ||
1319 | In this section, we analyze the Mc Kinnon counter example | 1326 | In this section, we analyze the Mc Kinnon counter example |
1320 | from \cite{589109}. We show the behavior of the | 1327 | from \cite{589109}. We show the behavior of the |
@@ -1532,6 +1539,7 @@ They also reveal that the Nelder-Mead method can generate simplices which collap | |||
1532 | into a degenerate simplex, by applying repeated inside contractions. | 1539 | into a degenerate simplex, by applying repeated inside contractions. |
1533 | 1540 | ||
1534 | \subsection{Torczon's numerical experiments} | 1541 | \subsection{Torczon's numerical experiments} |
1542 | \index{Torczon, Virginia} | ||
1535 | 1543 | ||
1536 | In her Phd Thesis \cite{Torczon89multi-directionalsearch}, Virginia Torczon | 1544 | In her Phd Thesis \cite{Torczon89multi-directionalsearch}, Virginia Torczon |
1537 | presents the multi-directional direct search algorithm. In order to analyze the | 1545 | presents the multi-directional direct search algorithm. In order to analyze the |
diff --git a/scilab_doc/neldermead/method-spendley.tex b/scilab_doc/neldermead/method-spendley.tex index dcb183f..b6a4724 100644 --- a/scilab_doc/neldermead/method-spendley.tex +++ b/scilab_doc/neldermead/method-spendley.tex | |||
@@ -1,6 +1,9 @@ | |||
1 | \chapter{Spendley's et al. method} | 1 | \chapter{Spendley's et al. method} |
2 | \index{Spendley, W.} | ||
3 | \index{Hext, G. R.} | ||
4 | \index{Himsworth, F. R.} | ||
2 | 5 | ||
3 | In this chapter, we present Spendley's et al. algorithm \cite{Spendley1962} for | 6 | In this chapter, we present Spendley, Hext and Himsworth algorithm \cite{Spendley1962} for |
4 | unconstrained optimization. | 7 | unconstrained optimization. |
5 | 8 | ||
6 | We begin by presenting a global overview of the algorithm. | 9 | We begin by presenting a global overview of the algorithm. |
diff --git a/scilab_doc/neldermead/neldermead.pdf b/scilab_doc/neldermead/neldermead.pdf index 4a3c64b..f2b075a 100644 --- a/scilab_doc/neldermead/neldermead.pdf +++ b/scilab_doc/neldermead/neldermead.pdf | |||
@@ -328,7 +328,7 @@ endobj | |||
328 | << /S /GoTo /D (subsection.5.2.2) >> | 328 | << /S /GoTo /D (subsection.5.2.2) >> |
329 | endobj | 329 | endobj |
330 | 223 0 obj | 330 | 223 0 obj |
331 | (Plot functions) | 331 | (Output and plot functions) |
332 | endobj | 332 | endobj |
333 | 224 0 obj | 333 | 224 0 obj |
334 | << /S /GoTo /D (subsection.5.2.3) >> | 334 | << /S /GoTo /D (subsection.5.2.3) >> |
@@ -665,17 +665,13 @@ endobj | |||
665 | /ProcSet [ /PDF /Text /ImageC ] | 665 | /ProcSet [ /PDF /Text /ImageC ] |
666 | >> endobj | 666 | >> endobj |
667 | 418 0 obj << | 667 | 418 0 obj << |
668 | /Length 1163 | 668 | /Length 1168 |
669 | /Filter /FlateDecode | 669 | /Filter /FlateDecode |
670 | >> | 670 | >> |
671 | stream | 671 | stream |
672 | xYn8+4C"LLHkgش Ki~}y%J_mQWYzX&s=* fA\zt"L | 672 | xYr0+ÞzXRfxLXvIإGWǖ´Mq${9NI'GݿzG |
673 | F q4!\I!+BrVL2) PP"ÀiXP4/@e4<;3,2<O2 | 673 | 糈RGя5R`ى$2AcjBQ,<U#.QLpt=.Tfh,ɐ:Rڜ7LH$nz&jSEXr.RL/oSw"~<x'0@ix |
674 | Q@iw#CR>L/PO"S!v>}p\5=.| [>YF*pcBg:--e.Gӥ{>7J RH_q'rr0'uOgO3:9lE]{K 01Ejun8ja--z_>%))_bĒ,Um)æ]xO:*[ \8˘+bz5(`FK!t?^PUZN{yڔA!;C]Ḵ7y_4+ | 674 | nN"1ITK1teezeje Z,1ByH}Fឪf<cifn3t&Į)j&zXn3gxj9cމ31uew[zOHNJGð-rE7N^O̙^KrmG[X;77zB$;9ftmͯca֖S<4Bމs i~ |
675 | >@_S/Ixi@w xUXƖ;?qzYb*>Id | ||
676 | XW2=țSrߊ&է[\q?õ''e|P | ||
677 | `v2mM-H#O,HG3)mi`/_fdL?Wm3[k-@zg|&}is;՝vOX;\9t!i.@9CCnFY6,\X.MSH&zM'&ؘGX;T.¡;*y;~W) JN5\F{pa夒z6{dp 8H?vV | ||
678 | y'|>=:J} | ||
679 | endstream | 675 | endstream |
680 | endobj | 676 | endobj |
681 | 417 0 obj << | 677 | 417 0 obj << |
@@ -879,15 +875,20 @@ endobj | |||
879 | /ProcSet [ /PDF /Text ] | 875 | /ProcSet [ /PDF /Text ] |
880 | >> endobj | 876 | >> endobj |
881 | 456 0 obj << | 877 | 456 0 obj << |
882 | /Length 1423 | 878 | /Length 1441 |
883 | /Filter /FlateDecode | 879 | /Filter /FlateDecode |
884 | >> | 880 | >> |
885 | stream | 881 | stream |
886 | xZrH+- {dR5y'![I8¯맟<$Re- hι,H;$ | 882 | xZrH+- {̤jɘY8Y(٪HG맟<ge-@hι}Ip$ |
887 | AݝVpQA#,~}ni,IcO3?Up+gr&a|lt$ك;sƜn9=#VAUN=rGťQ;՟9dL]GF>I`xT~H肈K5y | 883 | |
888 | 5ȁ {HTqx1m | 884 | # |
889 | ;\wS1!Glw=^DnyBb;sZ֫8]-"F$}|z^w ň1?!)prOBYN-m+3~U+k_v}'5Qf^C#߀_:h|TWv/۹@Ⱦ | 885 | r5WrYe,!HÑj0S݁BPO\DTPyqX?0aKZ;EFnjw- |
890 | ܦ$'Sc YLJ_=EϭQf=3{3Bm;̬rsm߮64o3ʏ-yۮ)V3TMڽ)GdQ݃g};lȢ>8҄d^v01 3ݨp7̕X@ (@|vpPpC6lq:Ox | 886 | \~)IvG>4{~:l$1gbDȂ~UP-wهQ0j|<CTX'' z}1jƑ!xjh|WsLk`1!4PcY̖OR诼1Ns5(ԨPHް7Ri*/f`cϙsy[;oJ>FFVSը"8**OGygAّ-9hx$R yPIqcàA(=0yjWeF |
887 | )l[48x%SBC¯4dڸU|nGܲܔtvʣ(։EsI%_f&͞5x$% +sÿi$lh`"e&@,*FQolnY MY$q@VTlU &~U[qA*vךsUכ\^n0O:-ǻ)hBfyp~6cQ{u:}KM(:[TVV%=CC=B[O | ||
888 | '^;&ZWfFs6mE'_PR٣<>AN,<+n*0t6yޫh] | ||
889 | x!6#;s*\df ~G TfÛmyboyk<僈}r4.L~aNa^jo?䟂q,roGӱ/WrND]cI,p*yen!Ų\^rLHyuwnճ|M1O%vdWI)xqց,̵\I@J | ||
890 | 6%GŀePe89F^\%}+/3~T+_r}GQfZCt#֍;/П5>>*\US^ͱ@ȡ | ||
891 | ڥ$7SGc YŇW^EϭQbѽ3{ 6Qwj_ٝٙmyFvbt]\|F^mk=70`] M8vzE_=LVؐEip 4A`&b&J@hS{zDqN靎/ 33g@<Md` | ||
891 | endstream | 892 | endstream |
892 | endobj | 893 | endobj |
893 | 455 0 obj << | 894 | 455 0 obj << |
@@ -1098,7 +1099,7 @@ endobj | |||
1098 | /Type /Annot | 1099 | /Type /Annot |
1099 | /Subtype /Link | 1100 | /Subtype /Link |
1100 | /Border[0 0 0]/H/I/C[1 0 0] | 1101 | /Border[0 0 0]/H/I/C[1 0 0] |
1101 | /Rect [105.841 208.824 217.268 219.047] | 1102 | /Rect [105.841 206.504 280.08 219.047] |
1102 | /A << /S /GoTo /D (subsection.5.2.2) >> | 1103 | /A << /S /GoTo /D (subsection.5.2.2) >> |
1103 | >> endobj | 1104 | >> endobj |
1104 | 449 0 obj << | 1105 | 449 0 obj << |
@@ -1137,13 +1138,24 @@ endobj | |||
1137 | /ProcSet [ /PDF /Text ] | 1138 | /ProcSet [ /PDF /Text ] |
1138 | >> endobj | 1139 | >> endobj |
1139 | 496 0 obj << | 1140 | 496 0 obj << |
1140 | /Length 1573 | 1141 | /Length 1582 |
1141 | /Filter /FlateDecode | 1142 | /Filter /FlateDecode |
1142 | >> | 1143 | >> |
1143 | stream | 1144 | stream |
1144 | x[r6++9S2@pjh'bdM%+qMxH6iЂ&EB=8> | 1145 | x[Ks6WVrdxf%VD29#k*Y$O\, |
1145 | *3JY"qaQrʕw%)fquMB1S]&ǿ*1_W_խ:܍^c}`+;Lß$-~))<tvus?6Usjx̐Ju)zm{^r@4 2"N.sЌ>($ 8xpTÿ@f6Xp^rgx0KvYcyf@)6V;O=4N 伏Zq;ڧv.$ | 1146 | "4z[,(4YNf/I v5UHOT(I t>Mxa}9O8))X |
1146 | (CKC=Ijf_tw-y4°S5oUb+:^L` a'_\ppt1L"tBvt)bDhLzyXMYcRo%kJ+!聇piq+h-Nx N !4Aa^iolBw_ U | 1147 | {_Tg(E" |
1148 | Qrʕ | ||
1149 | ջ | ||
1150 | ~ | ||
1151 | 9%n"Π}.=cA5Z | ||
1152 | yT?4RZ | ||
1153 | <JObp,om8؇EtFa 9FQ-<ώ?@с*/W,m8RQDv<..oG:ҎL?yl9h6<8ek | ||
1154 | :-ֱ[!q9u, S":=wnե;3`Y1lZ}o%*[[?oDz:/I_O%JQFYR@d)Hp cj ki562Ĺ0Nj0<>ܺlPv{j|ސf [^ mNKkf!0kalt 6,u9@ړTgZ1 | ||
1155 | Y/}$z}T0hŠ0ΰ8J*zF07u|n]`dfoHlÕwD 'gfu9LC8)vf8mi8]bq{E`Ke-Q+hG%db**Gנ#` | ||
1156 | / l: bՅG"=%}9Ց#'ܬQT,8HwiZrfﺖ6ʚx~S%$>3ZoܢewbRo9rkĦ R4ғl}{:4+S 3x&҉QmJlP's(ΧfX_'E.q~sB | ||
1157 | fu(I\ayL-'0~c7 | ||
1158 | ֧=$l@&Pm=a3_spt1ͬL [:x;:ܕ`wy"b<e | ||
1147 | endstream | 1159 | endstream |
1148 | endobj | 1160 | endobj |
1149 | 495 0 obj << | 1161 | 495 0 obj << |
@@ -1400,11 +1412,11 @@ endobj | |||
1400 | /ProcSet [ /PDF /Text ] | 1412 | /ProcSet [ /PDF /Text ] |
1401 | >> endobj | 1413 | >> endobj |
1402 | 500 0 obj << | 1414 | 500 0 obj << |
1403 | /Length 194 | 1415 | /Length 195 |
1404 | /Filter /FlateDecode | 1416 | /Filter /FlateDecode |
1405 | >> | 1417 | >> |
1406 | stream | 1418 | stream |
1407 | x}0<ōiH@@6 | 1419 | x};@SBsރ&:b+bg7{_fjYbAR` eY?x"<Qs#jLcgOMs-+\l HBs혘">]=6c4)^$uGrz\C-u\X5_"%;@CS |
1408 | endstream | 1420 | endstream |
1409 | endobj | 1421 | endobj |
1410 | 499 0 obj << | 1422 | 499 0 obj << |
@@ -1465,14 +1477,14 @@ endobj | |||
1465 | stream | 1477 | stream |
1466 | xڝɒ۸P$UY4\ͮNK<s`KTwgtDb} | 1478 | xڝɒ۸P$UY4\ͮNK<s`KTwgtDb} |
1467 | [=5nbyxxY>._V>|tYUWfJeMUVٷ_f~>NY'Xz2? | 1479 | [=5nbyxxY>._V>|tYUWfJeMUVٷ_f~>NY'Xz2? |
1468 | {i<'y"2O38Z1e9>i241i,D6W|Y-.n̿t; z3ئq | 1480 | {i<'y"2O38Z1e9>i241i,D6W|Y-.n̿t; z3ئq |
1469 | Y+Rx1n?E(UeC(hl\&mRK`|&u*Ś4C`@qGTE7yƀ8wÇjrz۞[O"xKs2 )!W'_⛙:)끩,o⭒3V mDQTG\td(whnLW4%pgJmP$8wvEm5`@0;\Cw:{'beGQPq | 1481 | ]7mghFԐ=M5 |
1470 | ,POk.G9Q#xrg^Ⱦf8tx"Ĵp Vl0L4;0 Kr] XtH8O7bZ7TqwiAo"B?Cd7SRe | 1482 | g3h3kYpd>W:RR`xH |
1471 | を* vڭZ(c3Xe^ӵٝ8?(tTxBMtr$5dFS | 1483 | FtP@BVK>+8 |
1472 | 2'[һt<Yh(LqѾe/LkG1ne R | 1484 | \N|F_&i8I@ |
1473 | f6g39sӶP퉟g3GlsKRر`1o|y8Fkg(5GxaLL8ahVjeC2\!z̦v] | 1485 | W) T9Ug+@ %y~("Si2ׄkY9mCtr8 |
1474 | rI' | 1486 | = K9D |
1475 | *~5DdlVliP%NCBOxN'{UܡT\ɷk`:`SMVfwov5"k v.3&qv<sep̥|Y(?M':~yv]J3~U%iO\C0e4}A_TXn=Pk!f S]߿) | 1487 | UqRq%Ư]1rNY7YU+JU |
1476 | endstream | 1488 | endstream |
1477 | endobj | 1489 | endobj |
1478 | 520 0 obj << | 1490 | 520 0 obj << |
@@ -1514,21 +1526,22 @@ endobj | |||
1514 | /ProcSet [ /PDF /Text ] | 1526 | /ProcSet [ /PDF /Text ] |
1515 | >> endobj | 1527 | >> endobj |
1516 | 529 0 obj << | 1528 | 529 0 obj << |
1517 | /Length 2442 | 1529 | /Length 2441 |
1518 | /Filter /FlateDecode | 1530 | /Filter /FlateDecode |
1519 | >> | 1531 | >> |
1520 | stream | 1532 | stream |
1521 | xڽZ[o6~0 | 1533 | xڽZ[o6~0 |
1522 | Խh[6oȎJ-$_3M=݇$9 tY_,}5K)ESjy^JdZVM%*{s|s^q_jUy"*o0d2iI;$4Ruxۛ {KʄRͲ->|Lw02YS/r̉ϋ,R_<_4"-*-AZUQ$- | 1534 | Խh[6oȎJ-$_3M=݇$9 tY_,}5K)ESjy^JdZVM%*{s|s^q_jUy"*o0d2iI;$4Ruxۛ {KʄRͲ->|Lw02YS/r̉ϋ,R_<_4"-*-AZUQ$- |
1523 | <-< K{#zT%#Rh*Β{\%@&7U%F=3j:9n?;9<C MO!o =5N2@V9l<?}X~IV9}Ի)ӔK | 1535 | <-< K{#zT%#Rh*Β{\%@&7U%F=3j:9n?;9<C MO!o =5N2@V9l<?}X~I.yR>]~IxHiJ` |
1524 | q'M;exezә3&7/o | 1536 | \k`ԔVum8rԓ1h-ES?0X&i9|Bdňu<P-yfci |
1525 | gZ8rБȫuQ?ZZIfRD3b/YU;lgR8I!2 6>_׃*OkOz'nw | 1537 | S8ܲ<z^ٲ{Uecmkҙ_?nHַz3-~w#Qq~#֑Wy[YI~/V3ug4^K?2wΤqBd@m|f9;/(UמNDPYuQ[Ϧ;e\)HЩ'}W~.WRỉhIt7M=;QXrL|Mxl9obCM2 ϧ`BYSfiSPFP5ՖQMTZzT*)N*QlXJc|20GBHUlY!Қ+ DFTU.d.Kt?8D#~@<@17L@7Nnf+^}nJ |
1526 | (ܬ:_(ޭgQJL2[$Tjv+ | 1538 | -t_<Փ='*u{VJ3FOeINIHO!Zrdx u2 LL^r>!!JJ!hl} at(JH{7d~Q%%\VQg S)MU@RF#ٯ%xqVk}ЍȑIzma#kJ |
1527 | ?+)4D$aכ(i&z>æi<6r8+jMx>< | 1539 | 8P%>N |
1528 | Κ4+4_M | 1540 | a龵>z-; |
1529 | 56ȤZ2mJң%UyLqRr~`RPZ;YtǀQ& =;DPf | 1541 | !on?gvy9m!#Ps|LGU)gifɆ&nSc{WVOYjj/I6OUv )T7$'~ /όमDE_6nt4?$2% 'M6]|ZG*Xm 55Wdz&&G[Fw(x^XpDe2'@A|>h1kٌKFe1gO\%H;O#mX֡V͵FR`@8Ctd1豑g/f.JUCWHJtѠ"[0];if\ ^ ռ=UUڒLi]nwe|.qi |
1530 | є_iU'2*`-Tev!sY$U ̿eZ-vt3_zsW#RESh4BE橞=aV=w۳RBU̞y̞6S`~-/Hr2LrTFzQτmt֚O& | 1542 | h{,o)0 *Ȋ*>Rbo z'CXN_y@U灓/ʦGUsiI} |
1531 | )GS}hVg! +@\_VBӽ$2H8G,)Ჴ<JiJB5~( ZcnD7DLkͬm45XSjWxƁ*1qRȼK5&hAF߁ | 1543 | @v,k;(C-B |
1544 | ;) | ||
1532 | endstream | 1545 | endstream |
1533 | endobj | 1546 | endobj |
1534 | 528 0 obj << | 1547 | 528 0 obj << |
@@ -1591,7 +1604,7 @@ endobj | |||
1591 | /ProcSet [ /PDF /Text ] | 1604 | /ProcSet [ /PDF /Text ] |
1592 | >> endobj | 1605 | >> endobj |
1593 | 541 0 obj << | 1606 | 541 0 obj << |
1594 | /Length 2748 | 1607 | /Length 2747 |
1595 | /Filter /FlateDecode | 1608 | /Filter /FlateDecode |
1596 | >> | 1609 | >> |
1597 | stream | 1610 | stream |
@@ -1603,10 +1616,10 @@ LC0FIjg6)q%M-P-{Yp7ň7\ Mr3,!n | |||
1603 | &T4Ԉ*!/^+0S0ǓlYp>IBψ$#al3* ӭ"2NnNvee`ms | 1616 | &T4Ԉ*!/^+0S0ǓlYp>IBψ$#al3* ӭ"2NnNvee`ms |
1604 | $ωO}-"˰kh)?]Ei4*#OՅA(c&Wly%3{dgNJ2a߄㚘t-I}wqJ<+ | 1617 | $ωO}-"˰kh)?]Ei4*#OՅA(c&Wly%3{dgNJ2a߄㚘t-I}wqJ<+ |
1605 | IᲆԚ) | 1618 | IᲆԚ) |
1606 | ]'qv8Ssw9o}r4xhhjk;B=ll 1mxԟw0* lb/#g | 1619 | ]'qv8Ssw9o}r4xhhjk;B="o^Ĵ;PBX6T@'jlp# |
1607 | J#'3wMm]3!FORC>$[ 5n,'НRdrLbeJto8A\@qՁ` | 1620 | UTb!gL0:r( |
1608 | g\لH@:i&K5 | 1621 | ,$،:^2 D銿-F:**|`D5vM΄]_>In&4nԸ d؟@wJE1)ҽ|qUo\$'[>T;z|,=۩{e-Bm`,q Er|b |
1609 | h'/9O͎J&FQif݁k<IjS,kǴΖi\<+43Px.ƟocIC7m@xS,aL~8iNw!FtDZ-佁jC j\x$ ^ve | 1622 | 9i`=p6kVV M?NZh4a틩8s_bu-:o<.i'V^P4F#H r9ȅhشft7pOQ#KAPL%t1`;s>y֞OZLyx{$]q1܆j#zx8cbwTU0Î1>}*+8\ܢUlo ?5;Jv+E+v$'OM:[sxSģ3C]b?іO[&5hVeһN19iK{^G[7Ǔ#16Rso@'~{qe |
1610 | endstream | 1623 | endstream |
1611 | endobj | 1624 | endobj |
1612 | 540 0 obj << | 1625 | 540 0 obj << |
@@ -2691,7 +2704,7 @@ endobj | |||
2691 | /ProcSet [ /PDF /Text /ImageC ] | 2704 | /ProcSet [ /PDF /Text /ImageC ] |
2692 | >> endobj | 2705 | >> endobj |
2693 | 704 0 obj << | 2706 | 704 0 obj << |
2694 | /Length 2511 | 2707 | /Length 2509 |
2695 | /Filter /FlateDecode | 2708 | /Filter /FlateDecode |
2696 | >> | 2709 | >> |
2697 | stream | 2710 | stream |
@@ -2702,8 +2715,7 @@ xZݏ_>UB#fM&hQZ)sw.Cr8n-ŏ/ | |||
2702 | FX3<VS!=]31Qtp54{Ƌ(o!(=UԘBA(1o\,D_k,A{i<96o1reߺfBH3^TsQ$,M< Էwj | 2715 | FX3<VS!=]31Qtp54{Ƌ(o!(=UԘBA(1o\,D_k,A{i<96o1reߺfBH3^TsQ$,M< Էwj |
2703 | Ȋo~3gLN `)'Hm{&FU\ʮO*wZaeXwL`M%.J賌XA@:&U~O_3 | 2716 | Ȋo~3gLN `)'Hm{&FU\ʮO*wZaeXwL`M%.J賌XA@:&U~O_3 |
2704 | Aa5PʼnT 3Y | 2717 | Aa5PʼnT 3Y |
2705 | g&/wL^ɋ$/30O$ ^t05 | 2718 | g&/wL^ɋ$/30O$ ^t05 |
2706 | ӍTuX,}m&3HRD | ||
2707 | endstream | 2719 | endstream |
2708 | endobj | 2720 | endobj |
2709 | 703 0 obj << | 2721 | 703 0 obj << |
@@ -2845,23 +2857,18 @@ stream | |||
2845 | x[Yo6~h,F"FYlCye[>n{_uf۞ b]nvoONw)EgZ_-کО_.fy&Ooͩgӟ5uQ.{*ɟ8'H]i2-/%â7s0%jN|V`;Z+, | 2857 | x[Yo6~h,F"FYlCye[>n{_uf۞ b]nvoONw)EgZ_-کО_.fy&Ooͩgӟ5uQ.{*ɟ8'H]i2-/%â7s0%jN|V`;Z+, |
2846 | +m%&++Z .[ux#dg2(5pth|+qF~"m:vBD72lEP2uycRmd[ iוhA)<2M9ׯm&ڌFhP | 2858 | +m%&++Z .[ux#dg2(5pth|+qF~"m:vBD72lEP2uycRmd[ iוhA)<2M9ׯm&ڌFhP |
2847 | +qyKUelI25QfAx,]MA/זXpFYzCMsd | 2859 | +qyKUelI25QfAx,]MA/זXpFYzCMsd |
2848 | e,(x=dBũ`68 'zy$O?B~|G4H>8ꙴAt+)٢1NBrG"B|AH\OA_P;hVpn7۫#!"G }'Tg Voc% '#8АsF(uqw<mrA q_p7Z3X~K_!E t]G9A<!-_`oi_8gD7`E | 2860 | e,(x=dBũ`68 'zy$O?B~|G4H>8ꙴAt+)٢1NBrG"B|AH\OA_P;hVpn7۫#!"G }'Tg Voc% '#8АsF(uqw<mrA q_p7Z3X~K_!E t]G9A<Hm) |
2849 | Y"sU䭥prTAm | 2861 | Y |
2850 | eh]WMo?lf4LL&%%G$>D}g/QX3&v蓛8! | 2862 | GFGVHycN_F4-o@/:^DY`)G.8ֺQۿ"o-W"oSX5/Dҿضnx'X`3ەab2))q>*$i=%>{G6Q5@ )lPsR}3 A;_=LB |
2851 | v.U/~f4!hKwCH!u||"SY?ʇo"q3)t | 2863 | Yr,W>~0HSz$agi뉻:>a37 |
2852 | ;[$,q=q7Uv'l/ʇIJ^P]4 | 2864 | xG7ă4. ]=.hPxxYTk- 6!SDHIB4[E<_<Fŧ7w|!QB29qGp뚮~E{/$b@E^uZf놮fR:2wJSA ַn,rbX4}_=ptŀ߬ V6Cu<3RW}mɝj.EC -l \ޘ0M/Hć{nl&IR<Mz77lf NqjBj |
2853 | Yq.ZmL6S$*E^FCQTz`ök c >!MnSB'x5!A)I`R2Isg|p@^ | 2865 | "YF0J(ʰb0LvͬtJ}ۜbSGm;z-uG |
2854 | fRw֕vvEPg#̔M ]1#BDn`ge&2Jp^R9=PT}5/F[~1gzÐ3#G/lG^M)gʊ !lnﯶ++"ޛpwe)] #ތYwz4Qnr | 2866 | nPʪ eN |
2855 | pcv%DpKJJ'M&Ky"!P4d /<]?r©\XF<uvE4얷=z*kZWú-&hQėU(2rV[-~z | 2867 | t-VkN-rZ3eH:%Yu)ع%`N:{t"W nI>"R@ʍ!YL*p皛5\-?鞟+JaC'j|d/iQ0[`zM5]{(Еx&(ur)%[=sJ}Thmnїnܬ鹹+`سdMK|RO2 |
2856 | Oc/wj-%&d*\! YhfKըf.{~|0#Js6[hZ|1'p?t]3ޯzOWd^`t\W@@kxNQJGB r*hrx֑ލENYksw5Jцbh#guzW | 2868 | Y0<X-gܬ6~Um1_OBQU U}U |
2857 | 2869 | !j$]nXpbh[Ѧ,g7scS!~Ay-=.Q4J+wbJ{πt2(G Xhx0@ϵbdy%W\Ң6>GGÖH,QFrr7\cQB Tr,2}+09S2NFL2Tφh Y "YƳCCy{~&eMҨ'tuE!%/7ӤlE/8wלiieAuMq?^lstU | |
2858 | ϱ-]me7Ht(\cƻ)iyM_ʹ1#IIϱ憛-7ܬ5]]BUBMARd>bh3Z]PXULɎ\qSlś}GR<5p9"ceaܬg/uz?XqsSs& | 2870 | :~_8a=Vm˖lЭ]_rVfI?UJR8PD|3 |
2859 | dk ~?Q*3rit@Fnnh|:pu놮wtyn+>|lw@g]g{Cc#!L!OR>,> | 2871 | /rTTϯ7i|i9xllp#$EwKjJ%>͙0T w/#c+b5H6+Rn._1>M}T0vXʋBMqaΟC8\Dw}?_~8TR<z&u?wIZ* p-mGڰ$QxI|9j{ƩZTy [(:2shB4g9ܬj$ > |
2860 | tܬ@iٙvRLrm*k2 9:W2dC@CxLsPQs | ||
2861 | -͒57=7w | ||
2862 | "ܬg | ||
2863 | 1U<H:YtPXi;-/庚nS1q PM- | ||
2864 | ~>bQW Þ}: | ||
2865 | endstream | 2872 | endstream |
2866 | endobj | 2873 | endobj |
2867 | 735 0 obj << | 2874 | 735 0 obj << |
@@ -2877,7 +2884,7 @@ endobj | |||
2877 | /Subtype /Link | 2884 | /Subtype /Link |
2878 | /Border[0 0 0]/H/I/C[1 0 0] | 2885 | /Border[0 0 0]/H/I/C[1 0 0] |
2879 | /Rect [105.839 663.878 128.609 677.574] | 2886 | /Rect [105.839 663.878 128.609 677.574] |
2880 | /A << /S /GoTo /D (equation.1.2.10) >> | 2887 | /A << /S /GoTo /D (equation.2.2.10) >> |
2881 | >> endobj | 2888 | >> endobj |
2882 | 712 0 obj << | 2889 | 712 0 obj << |
2883 | /Type /Annot | 2890 | /Type /Annot |
@@ -2891,7 +2898,7 @@ endobj | |||
2891 | /Subtype /Link | 2898 | /Subtype /Link |
2892 | /Border[0 0 0]/H/I/C[1 0 0] | 2899 | /Border[0 0 0]/H/I/C[1 0 0] |
2893 | /Rect [481.32 288.157 498.245 303.984] | 2900 | /Rect [481.32 288.157 498.245 303.984] |
2894 | /A << /S /GoTo /D (equation.1.2.6) >> | 2901 | /A << /S /GoTo /D (equation.2.2.6) >> |
2895 | >> endobj | 2902 | >> endobj |
2896 | 737 0 obj << | 2903 | 737 0 obj << |
2897 | /D [735 0 R /XYZ 61.362 808.874 null] | 2904 | /D [735 0 R /XYZ 61.362 808.874 null] |
@@ -2973,46 +2980,48 @@ endobj | |||
2973 | /ProcSet [ /PDF /Text ] | 2980 | /ProcSet [ /PDF /Text ] |
2974 | >> endobj | 2981 | >> endobj |
2975 | 2982 | ||
2976 | 772 0 obj << | 2983 | 770 0 obj << |
2977 | /Length 2084 | 2984 | /Length 2083 |
2978 | /Filter /FlateDecode | 2985 | /Filter /FlateDecode |
2979 | >> | 2986 | >> |
2980 | stream | 2987 | stream |
2981 | xڍXKFWs1 | 2988 | xڍXKFWs1 |
2982 | ({ۇ;w[{Մ%hzC痙 c)J$?yyU>[\᧽lwiIeU>tg\:.ɞ~/o]/67mFIRy%CGiUDy2")<l~ĢsBWG*"#~ | 2989 | #]o֞h5a Br hjef17o>~J@ʲ$?yyU>[\᧽lwi$tUN-KYd |
2983 | ) | 2990 | 6?ob`9!+CY6:yJ$3-sk#c3w{i*RhSVQ tT L- fKQ>~w#UoLR eK&En#O4 _jtQ=}3/N ;n|F/̰eb=F&k32_Ϸ)4>QsN*ʊ" |
2984 | oZsrv=?5iB_GB | 2991 | S6ND¥*(#i9r'a!$ |
2985 | 9m=-}9p'%9:1<R}77!FFN^Ƴ%geko!d=?ӭ r[^#;˱ )攁w~5_N$6WQIp zER5(ws+g`x:qAnb;H7IeE}ګ|b|`yUqt3@wz~CY7dM''ڥHg(NeAāG_x}Lr%{ގmX{oL6cH'&]"T )t~ElՎduL>h\RfndEPM .x`O\>hm1f''kȢ @8=),i/&)hPʆ9E@sfsn |J6JI溈m-γ!5S(, ??9lK57YJ8q`fw}A{("ݜ-4l$m | 2992 | Ԥ }Eǒobpj&R4ikisρ;/Љꋷ 12t6/9.[~!n%n >>X(ll |
2986 | ZV=r.&TYlJ7Wî{B{=w'W)2'iĠQ<Sax-n_҂,yT+=HLЙe^$ȤX 0#;iX<E7ƠTmjjAh"츇EY`OZp49p$2Kq&QDl2R(mVhݒ|djZS4kjVƒ^:N9ClspuMYU847$f0!mԧ0fµP軤=|A~מl2*y fEB D=a uNoyј8)up | 2993 | 0O!OEy!6A_ 1 %b |
2987 | YE*jD*wlOxzcZ;_8\8ǻQ99%xw;Zl1 #A3^KobI)8rJ=;!@P{E* Eξ1.&n<و2<~jmfp_LHS섷&EbuT6tiNYE&0j~݆ $gͣu @ISl+jXd^kJ:Bk'f֍g&:gRuX-#õZ`ѻ:jZԜ'.>k4x ]NOD95Tq*Mrg1rF(u2^1+oKqJNG | 2994 | i/&)hPʆ9E@sfsn |J6JI溈m-γ!5S($j6Rsˈ%EVԛ@,%F80_N߅ νZnΏc6_-rAXxe9oLlmLAج|k;ОiIf |
2988 | 4r *y/dN|[]Hk&<GTOw WEJD !F>ؘJV4ﺤffr#GŠ,`wHpQu]uQO`e;1jk+2p>Ϯ_tܑd6z^M:Yq4,PӘZ꿑:L굳ߖ|4+|k}'KWX L,lz*+W`,ݥvm+iL(_arQ'E"x`f $R{A;qˤ | 2995 | dI1hT6Th$.8m˄`c$Kf*Je\$[&YӲX lwd^,{efNI֝4,NPcP7˪ϳ2}e髾ۍ&{,{Xjt\,CBK&bCԞ?2@&{)t#ֲ$*MF |
2996 | "5o{*2[M[5Lu^SuKvX>{i5gOEurMC'=98&*?K^\K3B6fs7=ǧ,p-3#.@&>D_%ac:+]F%|9oq ܬH]>lp8ρ43g04%N!HEBQ OoL+`t^xϲJ{<UM:?F_!aD54d;>&#gh V/Rvh/rq1qdI4F<a}{0?"M}BQ+Х9eVatM-`0*# 1HΚGo\çDWհ<l_o֔OuBN̙Z7xZ3rg9["Ōr11<Scl;>zWG:5lj4^B#yYl'ZȧFf"ǜV\ N8VT&9tӋjYǶJim'gR0°7\l3/xeK#yeVuҚ ϑ9GUfAqH6${VRr3#bPs;plQ#uQO`e;1jk+2p>Ϯ_tܑd6ټ0uͳ,hX1h#u:kgG -p?dlL&+.]a0Ȧev``TYe.k^!HueB | ||
2997 | #*8ɍ,ZO3kH$yډ_&Hg?no[ | ||
2989 | endstream | 2998 | endstream |
2990 | endobj | 2999 | endobj |
2991 | 771 0 obj << | 3000 | 769 0 obj << |
2992 | /Type /Page | 3001 | /Type /Page |
2993 | /Contents 772 0 R | 3002 | /Contents 770 0 R |
2994 | /Resources 770 0 R | 3003 | /Resources 768 0 R |
2995 | /MediaBox [0 0 595.276 841.89] | 3004 | /MediaBox [0 0 595.276 841.89] |
2996 | /Parent 693 0 R | 3005 | /Parent 693 0 R |
2997 | /Group 767 0 R | 3006 | /Group 765 0 R |
2998 | /Annots [ 732 0 R 733 0 R 768 0 R ] | 3007 | /Annots [ 732 0 R 733 0 R 766 0 R ] |
2999 | >> endobj | 3008 | >> endobj |
3000 | 766 0 obj << | 3009 | 764 0 obj << |
3001 | /Type /XObject | 3010 | /Type /XObject |
3002 | /Subtype /Form | 3011 | /Subtype /Form |
3003 | /FormType 1 | 3012 | /FormType 1 |
3004 | /PTEX.FileName (simplex_initialfixed.pdf) | 3013 | /PTEX.FileName (simplex_initialfixed.pdf) |
3005 | /PTEX.PageNumber 1 | 3014 | /PTEX.PageNumber 1 |
3006 | /PTEX.InfoDict 775 0 R | 3015 | /PTEX.InfoDict 773 0 R |
3007 | /BBox [0 0 559.538513 497.242126] | 3016 | /BBox [0 0 559.538513 497.242126] |
3008 | /Group 767 0 R | 3017 | /Group 765 0 R |
3009 | /Resources << | 3018 | /Resources << |
3010 | /ExtGState << | 3019 | /ExtGState << |
3011 | /a0 << | 3020 | /a0 << |
3012 | /CA 1 | 3021 | /CA 1 |
3013 | /ca 1 | 3022 | /ca 1 |
3014 | >> | 3023 | >> |
3015 | >>/Font << /f-0-0 776 0 R>> | 3024 | >>/Font << /f-0-0 774 0 R>> |
3016 | >> | 3025 | >> |
3017 | /Length 718 | 3026 | /Length 718 |
3018 | /Filter /FlateDecode | 3027 | /Filter /FlateDecode |
@@ -3023,23 +3032,23 @@ xVMoAﯘ3J C!7ڪJgnvsj$^~Ӑ~z^K7l8| | |||
3023 | p!I/ bv,Y*-Nj<?<woT9;lڜ\(gN~l8>\MsjyW4%Ve@/j P>|X@]}8b /Bxml[}`RT{/seŕI[e8%=goܬe&nȮEi/{b5S2Jm.^b[X 7(/N-HeC%" \l\y HNML=\d:@vvMm ʍ]yQ2#kEuN˨j/]@tעj$&UKy_ z11n`Wscq$).lpb6({tq8Yr[N4sfep(c{DXZ3dk&4bc}E(Y@VCm"k2$RԪ̾!5۹fڗQ}lu94p7@/#G6h4!No1;;ZVbt .fZx | 3032 | p!I/ bv,Y*-Nj<?<woT9;lڜ\(gN~l8>\MsjyW4%Ve@/j P>|X@]}8b /Bxml[}`RT{/seŕI[e8%=goܬe&nȮEi/{b5S2Jm.^b[X 7(/N-HeC%" \l\y HNML=\d:@vvMm ʍ]yQ2#kEuN˨j/]@tעj$&UKy_ z11n`Wscq$).lpb6({tq8Yr[N4sfep(c{DXZ3dk&4bc}E(Y@VCm"k2$RԪ̾!5۹fڗQ}lu94p7@/#G6h4!No1;;ZVbt .fZx |
3024 | endstream | 3033 | endstream |
3025 | endobj | 3034 | endobj |
3026 | 775 0 obj | 3035 | 773 0 obj |
3027 | << | 3036 | << |
3028 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) | 3037 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) |
3029 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) | 3038 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) |
3030 | >> | 3039 | >> |
3031 | endobj | 3040 | endobj |
3032 | 776 0 obj | 3041 | 774 0 obj |
3033 | << | 3042 | << |
3034 | /Type /Font | 3043 | /Type /Font |
3035 | /Subtype /Type0 | 3044 | /Subtype /Type0 |
3036 | /BaseFont /Arial | 3045 | /BaseFont /Arial |
3037 | /Encoding /Identity-H | 3046 | /Encoding /Identity-H |
3038 | /DescendantFonts [ 777 0 R] | 3047 | /DescendantFonts [ 775 0 R] |
3039 | /ToUnicode 778 0 R | 3048 | /ToUnicode 776 0 R |
3040 | >> | 3049 | >> |
3041 | endobj | 3050 | endobj |
3042 | 777 0 obj | 3051 | 775 0 obj |
3043 | << | 3052 | << |
3044 | /Type /Font | 3053 | /Type /Font |
3045 | /Subtype /CIDFontType2 | 3054 | /Subtype /CIDFontType2 |
@@ -3049,13 +3058,13 @@ endobj | |||
3049 | /Ordering (Identity) | 3058 | /Ordering (Identity) |
3050 | /Supplement 0 | 3059 | /Supplement 0 |
3051 | >> | 3060 | >> |
3052 | /FontDescriptor 779 0 R | 3061 | /FontDescriptor 777 0 R |
3053 | /W [ 0 [ 750 500 500]] | 3062 | /W [ 0 [ 750 500 500]] |
3054 | >> | 3063 | >> |
3055 | endobj | 3064 | endobj |
3056 | 778 0 obj | 3065 | 776 0 obj |
3057 | << | 3066 | << |
3058 | /Length 780 0 R | 3067 | /Length 778 0 R |
3059 | /Filter /FlateDecode | 3068 | /Filter /FlateDecode |
3060 | >> | 3069 | >> |
3061 | stream | 3070 | stream |
@@ -3064,7 +3073,7 @@ x]j0~ | |||
3064 | ,<Mw=!;>nj9>]L8Gm5(*R7;58쮪ӳ*չw6e#Ysk !nT9s | 3073 | ,<Mw=!;>nj9>]L8Gm5(*R7;58쮪ӳ*չw6e#Ysk !nT9s |
3065 | endstream | 3074 | endstream |
3066 | endobj | 3075 | endobj |
3067 | 779 0 obj | 3076 | 777 0 obj |
3068 | << | 3077 | << |
3069 | /Type /FontDescriptor | 3078 | /Type /FontDescriptor |
3070 | /FontName /Arial | 3079 | /FontName /Arial |
@@ -3076,15 +3085,15 @@ endobj | |||
3076 | /CapHeight 1005 | 3085 | /CapHeight 1005 |
3077 | /StemV 80 | 3086 | /StemV 80 |
3078 | /StemH 80 | 3087 | /StemH 80 |
3079 | /FontFile2 781 0 R | 3088 | /FontFile2 779 0 R |
3080 | >> | 3089 | >> |
3081 | endobj | 3090 | endobj |
3082 | 780 0 obj | 3091 | 778 0 obj |
3083 | 233 | 3092 | 233 |
3084 | endobj | 3093 | endobj |
3085 | 781 0 obj | 3094 | 779 0 obj |
3086 | << | 3095 | << |
3087 | /Length 782 0 R | 3096 | /Length 780 0 R |
3088 | /Filter /FlateDecode | 3097 | /Filter /FlateDecode |
3089 | /Length1 7632 | 3098 | /Length1 7632 |
3090 | >> | 3099 | >> |
@@ -3111,10 +3120,10 @@ x@>(F}i"utmo[]2/6GUy]5M7Z3YWXĮMČ | |||
3111 | *R4FWS;"+~FB~VAYEm(T!st?ȧgIɔ藣3!W5u?h~ݝ9'MNݧ3MD.>a8H k>JrKKw!]\$Cwsݥ0АCL\q|/߽ڪ~;):O;^5{mʖUN%@[CsyAkF[ڔViJݓ}yfy`<g<)m NnP<l5hM\b<YXXk<Yov:_:Vks'T*vT;\y?H76<(4SAUAfgJ3%hgɹn'7NVΕ,:BՊZc]hqs@7^nڒk:5_1TiJƆ5]3SQazYdtUHq+hVz;t^Cb<h+VƹxViv鼖K7 | 3120 | *R4FWS;"+~FB~VAYEm(T!st?ȧgIɔ藣3!W5u?h~ݝ9'MNݧ3MD.>a8H k>JrKKw!]\$Cwsݥ0АCL\q|/߽ڪ~;):O;^5{mʖUN%@[CsyAkF[ڔViJݓ}yfy`<g<)m NnP<l5hM\b<YXXk<Yov:_:Vks'T*vT;\y?H76<(4SAUAfgJ3%hgɹn'7NVΕ,:BՊZc]hqs@7^nڒk:5_1TiJƆ5]3SQazYdtUHq+hVz;t^Cb<h+VƹxViv鼖K7 |
3112 | endstream | 3121 | endstream |
3113 | endobj | 3122 | endobj |
3114 | 782 0 obj | 3123 | 780 0 obj |
3115 | 5273 | 3124 | 5273 |
3116 | endobj | 3125 | endobj |
3117 | 767 0 obj | 3126 | 765 0 obj |
3118 | << | 3127 | << |
3119 | /Type /Group | 3128 | /Type /Group |
3120 | /S /Transparency | 3129 | /S /Transparency |
@@ -3125,7 +3134,7 @@ endobj | |||
3125 | /Subtype /Link | 3134 | /Subtype /Link |
3126 | /Border[0 0 0]/H/I/C[1 0 0] | 3135 | /Border[0 0 0]/H/I/C[1 0 0] |
3127 | /Rect [61.366 440.839 78.29 454.673] | 3136 | /Rect [61.366 440.839 78.29 454.673] |
3128 | /A << /S /GoTo /D (figure.1.1) >> | 3137 | /A << /S /GoTo /D (figure.2.1) >> |
3129 | >> endobj | 3138 | >> endobj |
3130 | 733 0 obj << | 3139 | 733 0 obj << |
3131 | /Type /Annot | 3140 | /Type /Annot |
@@ -3134,48 +3143,48 @@ endobj | |||
3134 | /Rect [327.119 443.828 340.803 453.633] | 3143 | /Rect [327.119 443.828 340.803 453.633] |
3135 | /A << /S /GoTo /D (cite.Torczon89multi-directionalsearch) >> | 3144 | /A << /S /GoTo /D (cite.Torczon89multi-directionalsearch) >> |
3136 | >> endobj | 3145 | >> endobj |
3137 | 768 0 obj << | 3146 | 766 0 obj << |
3138 | /Type /Annot | 3147 | /Type /Annot |
3139 | /Subtype /Link | 3148 | /Subtype /Link |
3140 | /Border[0 0 0]/H/I/C[0 1 0] | 3149 | /Border[0 0 0]/H/I/C[0 1 0] |
3141 | /Rect [112.563 324.506 126.248 334.311] | 3150 | /Rect [112.563 324.506 126.248 334.311] |
3142 | /A << /S /GoTo /D (cite.parkinson1972) >> | 3151 | /A << /S /GoTo /D (cite.parkinson1972) >> |
3143 | >> endobj | 3152 | >> endobj |
3144 | 773 0 obj << | 3153 | 771 0 obj << |
3145 | /D [771 0 R /XYZ 38.685 808.874 null] | 3154 | /D [769 0 R /XYZ 38.685 808.874 null] |
3146 | >> endobj | 3155 | >> endobj |
3147 | 774 0 obj << | 3156 | 772 0 obj << |
3148 | /D [771 0 R /XYZ 193.939 571.762 null] | 3157 | /D [769 0 R /XYZ 193.939 571.762 null] |
3149 | >> endobj | 3158 | >> endobj |
3150 | 41 0 obj << | 3159 | 41 0 obj << |
3151 | /D [771 0 R /XYZ 62.362 532.674 null] | 3160 | /D [769 0 R /XYZ 62.362 532.674 null] |
3152 | >> endobj | 3161 | >> endobj |
3153 | 770 0 obj << | 3162 | 768 0 obj << |
3154 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R >> | 3163 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R >> |
3155 | /XObject << /Im5 766 0 R >> | 3164 | /XObject << /Im5 764 0 R >> |
3156 | /ProcSet [ /PDF /Text ] | 3165 | /ProcSet [ /PDF /Text ] |
3157 | >> endobj | 3166 | >> endobj |
3158 | 788 0 obj << | 3167 | 786 0 obj << |
3159 | /Length 2043 | 3168 | /Length 2053 |
3160 | /Filter /FlateDecode | 3169 | /Filter /FlateDecode |
3161 | >> | 3170 | >> |
3162 | stream | 3171 | stream |
3163 | xYIW-%xDs_bLY<90r D]V+{$k XU[6~Xz | 3172 | xYnG+!lz!d%bB(YV>UQr9[M-ղիǓg/ |
3164 | ,#LYYz[nJ9]K\^FLM#.Wzoj|/=3Ť~=n3|g+xw][:&bqچ8e8/+my{[\0XVWo*YAkL5`nGh:ICI8| hD ߧ)9xe7Mb;d2%7S~ - EScEMN6 | 3173 | x$LZ&{5NVH =L4Q.ڠԉLsȝ<۩p |
3165 | 2UZ,āZ%VBH]_ bn|]}]ӄyUr3/S@W+3YChEV3)S?f7۬3Y~ME6F{<kzjm<i'EmK^`,dsӾ{ZH22*-9 Y='nKYYJ8Iq?\w | 3174 | OA2KʇX̭ve%]&YxEqsFQJLT3i0t,ćN]4 #9c=@TR*SJ,+/S1Gcfq'0q㒔[&o_Hc9]z0Ya+)0l[=w)g(O}uf3.a@0Jy5qf,i}fh(6̫X*gh*D\o,AUxfy{tj2`Q?)lv:3X'u*-7>6P7gh@5wZd(1EbyBns+,=X=$!hI집N}0Y+Y |
3166 | $pEeMƸyۚoֹt_ڶ߶Z7OTNЛszuP\Q*Z | 3175 | BEi=7EC:>=IlArjN2yb7"]u1kx:pX}nyn9l|#C]ڬ,m&f3YVDqf@2 |
3167 | I3ՌElpV`{w]F<mY+q\^ J-[A?kSh,ĝ:HyʫCc^C$y}=0WXrQŊr`GưbZݶB&j\<Jl5$*\7sR`Ԋ6>})65v:MVX( ~lYOdl\O!H3wm/ | 3176 | %Tyt:n;jNW? _nOcN Y0طyd30(«\SFŒz7=vwW:L4<S[af |
3168 | endstream | 3177 | endstream |
3169 | endobj | 3178 | endobj |
3170 | 787 0 obj << | 3179 | 785 0 obj << |
3171 | /Type /Page | 3180 | /Type /Page |
3172 | /Contents 788 0 R | 3181 | /Contents 786 0 R |
3173 | /Resources 786 0 R | 3182 | /Resources 784 0 R |
3174 | /MediaBox [0 0 595.276 841.89] | 3183 | /MediaBox [0 0 595.276 841.89] |
3175 | /Parent 794 0 R | 3184 | /Parent 792 0 R |
3176 | /Annots [ 769 0 R 784 0 R ] | 3185 | /Annots [ 767 0 R 782 0 R ] |
3177 | >> endobj | 3186 | >> endobj |
3178 | 785 0 obj << | 3187 | 783 0 obj << |
3179 | /Type /XObject | 3188 | /Type /XObject |
3180 | /Subtype /Image | 3189 | /Subtype /Image |
3181 | /Width 610 | 3190 | /Width 610 |
@@ -3193,44 +3202,44 @@ xю6@QO@0isЇE6 inl | |||
3193 | ms^rIEE ~l/Lɤ/bE\$2)gH|%.\![Y渋W"HdrL.Z>Z\$Hd | 3202 | ms^rIEE ~l/Lɤ/bE\$2)gH|%.\![Y渋W"HdrL.Z>Z\$Hd |
3194 | endstream | 3203 | endstream |
3195 | endobj | 3204 | endobj |
3196 | 769 0 obj << | 3205 | 767 0 obj << |
3197 | /Type /Annot | 3206 | /Type /Annot |
3198 | /Subtype /Link | 3207 | /Subtype /Link |
3199 | /Border[0 0 0]/H/I/C[0 1 0] | 3208 | /Border[0 0 0]/H/I/C[0 1 0] |
3200 | /Rect [141.735 457.545 155.42 467.35] | 3209 | /Rect [141.192 457.545 154.877 467.35] |
3201 | /A << /S /GoTo /D (cite.Spendley1962) >> | 3210 | /A << /S /GoTo /D (cite.Spendley1962) >> |
3202 | >> endobj | 3211 | >> endobj |
3203 | 784 0 obj << | 3212 | 782 0 obj << |
3204 | /Type /Annot | 3213 | /Type /Annot |
3205 | /Subtype /Link | 3214 | /Subtype /Link |
3206 | /Border[0 0 0]/H/I/C[1 0 0] | 3215 | /Border[0 0 0]/H/I/C[1 0 0] |
3207 | /Rect [295.372 144.604 312.296 157.147] | 3216 | /Rect [295.372 144.604 312.296 157.147] |
3208 | /A << /S /GoTo /D (figure.1.2) >> | 3217 | /A << /S /GoTo /D (figure.2.2) >> |
3209 | >> endobj | 3218 | >> endobj |
3210 | 789 0 obj << | 3219 | 787 0 obj << |
3211 | /D [787 0 R /XYZ 61.362 808.874 null] | 3220 | /D [785 0 R /XYZ 61.362 808.874 null] |
3212 | >> endobj | 3221 | >> endobj |
3213 | 790 0 obj << | 3222 | 788 0 obj << |
3214 | /D [787 0 R /XYZ 259.065 534.341 null] | 3223 | /D [785 0 R /XYZ 259.065 534.341 null] |
3215 | >> endobj | 3224 | >> endobj |
3216 | 45 0 obj << | 3225 | 45 0 obj << |
3217 | /D [787 0 R /XYZ 62.362 495.253 null] | 3226 | /D [785 0 R /XYZ 62.362 495.253 null] |
3218 | >> endobj | 3227 | >> endobj |
3219 | 791 0 obj << | 3228 | 789 0 obj << |
3220 | /D [787 0 R /XYZ 227.626 410.427 null] | 3229 | /D [785 0 R /XYZ 227.626 410.427 null] |
3221 | >> endobj | 3230 | >> endobj |
3222 | 792 0 obj << | 3231 | 790 0 obj << |
3223 | /D [787 0 R /XYZ 281.005 300.448 null] | 3232 | /D [785 0 R /XYZ 281.005 300.448 null] |
3224 | >> endobj | 3233 | >> endobj |
3225 | 793 0 obj << | 3234 | 791 0 obj << |
3226 | /D [787 0 R /XYZ 212.41 235.255 null] | 3235 | /D [785 0 R /XYZ 212.41 235.255 null] |
3227 | >> endobj | 3236 | >> endobj |
3228 | 786 0 obj << | 3237 | 784 0 obj << |
3229 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F55 507 0 R /F56 510 0 R /F65 718 0 R /F61 509 0 R /F59 508 0 R /F71 511 0 R /F78 459 0 R >> | 3238 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F55 507 0 R /F56 510 0 R /F65 718 0 R /F61 509 0 R /F59 508 0 R /F71 511 0 R /F78 459 0 R >> |
3230 | /XObject << /Im6 785 0 R >> | 3239 | /XObject << /Im6 783 0 R >> |
3231 | /ProcSet [ /PDF /Text /ImageC ] | 3240 | /ProcSet [ /PDF /Text /ImageC ] |
3232 | >> endobj | 3241 | >> endobj |
3233 | 802 0 obj << | 3242 | 800 0 obj << |
3234 | /Length 3325 | 3243 | /Length 3325 |
3235 | /Filter /FlateDecode | 3244 | /Filter /FlateDecode |
3236 | >> | 3245 | >> |
@@ -3245,130 +3254,129 @@ xn7_!,P@B"fx&CZ4؇4*l+K'_!GebDpsϝFWjϞ | |||
3245 | MӝG(}zhm"*{lnO]1%$1)VQm@og(eE57Qe͐h | 3254 | MӝG(}zhm"*{lnO]1%$1)VQm@og(eE57Qe͐h |
3246 | uE AthLJYlRd4[5Vsn e2n, | 3255 | uE AthLJYlRd4[5Vsn e2n, |
3247 | Φ50+ | 3256 | Φ50+ |
3248 | &Nd].vC]ѵN{QB*}Q | 3257 | &Nd].vC]ѵN{QB*}Q |
3249 | 4:elMD}i~}CUe"= {wT09?%ǯ$FPH7]m힢P]$3i۔Ust4BYO| | 3258 | 4:elMD}i~}CUe"= {wT09C|9Qra͞KbtՆo)1UI1hMiK^:7HGs)t /A|h>kk |
3250 | ,`˘f5]q`yO.>h0b=о!fiC+cJ`U<~X14'_Jfc3ձ7v"WMI7{}˖ ^t#x@ LKAXV#%D<Of4xe&J߰N,THDzvĀPe;ZQ | 3259 | 6<?Dg6V؊wSpEQjUA+Z=Yώ^lEQ0>/EU>7,PN"-ݻbe= |
3251 | `Xq#~P`j/RS?crdiZuK(\A(+pa}}H@bݏUߔuºs4hpfh!;]-k2_i5oN}uM*\Z4pLIȓ#O~n?B:t5б(aZ-q㎩T@U~ jhBkKsl?RuhYaBk½#g4k==}Ƭkcn%?~xaJ&Y3M/7`#CcANp`Ӎmx8 | 3260 | " |
3252 | l ._* _B^^ՓeIŦX1O | 3261 | gt/2/27\p_dJAڰ!aE |
3253 | 4(rڂ\۽+VX){o@|!ue$8gsߋ7dF=$íKfIy.(3Ck-jP!}p?TQx:Ex] pFlj""sS}E F@ | ||
3254 | endstream | 3262 | endstream |
3255 | endobj | 3263 | endobj |
3256 | 801 0 obj << | 3264 | 799 0 obj << |
3257 | /Type /Page | 3265 | /Type /Page |
3258 | /Contents 802 0 R | 3266 | /Contents 800 0 R |
3259 | /Resources 800 0 R | 3267 | /Resources 798 0 R |
3260 | /MediaBox [0 0 595.276 841.89] | 3268 | /MediaBox [0 0 595.276 841.89] |
3261 | /Parent 794 0 R | 3269 | /Parent 792 0 R |
3262 | /Annots [ 795 0 R 796 0 R 797 0 R 799 0 R ] | 3270 | /Annots [ 793 0 R 794 0 R 795 0 R 797 0 R ] |
3263 | >> endobj | 3271 | >> endobj |
3264 | 795 0 obj << | 3272 | 793 0 obj << |
3265 | /Type /Annot | 3273 | /Type /Annot |
3266 | /Subtype /Link | 3274 | /Subtype /Link |
3267 | /Border[0 0 0]/H/I/C[1 0 0] | 3275 | /Border[0 0 0]/H/I/C[1 0 0] |
3268 | /Rect [304.714 336.197 321.638 348.811] | 3276 | /Rect [304.714 336.197 321.638 348.811] |
3269 | /A << /S /GoTo /D (figure.1.3) >> | 3277 | /A << /S /GoTo /D (figure.2.3) >> |
3270 | >> endobj | 3278 | >> endobj |
3271 | 796 0 obj << | 3279 | 794 0 obj << |
3272 | /Type /Annot | 3280 | /Type /Annot |
3273 | /Subtype /Link | 3281 | /Subtype /Link |
3274 | /Border[0 0 0]/H/I/C[0 1 0] | 3282 | /Border[0 0 0]/H/I/C[0 1 0] |
3275 | /Rect [483.271 321.47 496.956 331.275] | 3283 | /Rect [483.271 321.47 496.956 331.275] |
3276 | /A << /S /GoTo /D (cite.NumericalRecipes) >> | 3284 | /A << /S /GoTo /D (cite.NumericalRecipes) >> |
3277 | >> endobj | 3285 | >> endobj |
3278 | 797 0 obj << | 3286 | 795 0 obj << |
3279 | /Type /Annot | 3287 | /Type /Annot |
3280 | /Subtype /Link | 3288 | /Subtype /Link |
3281 | /Border[0 0 0]/H/I/C[0 1 0] | 3289 | /Border[0 0 0]/H/I/C[0 1 0] |
3282 | /Rect [77.445 304.424 91.13 314.229] | 3290 | /Rect [77.445 304.424 91.13 314.229] |
3283 | /A << /S /GoTo /D (cite.NumericalRecipes) >> | 3291 | /A << /S /GoTo /D (cite.NumericalRecipes) >> |
3284 | >> endobj | 3292 | >> endobj |
3285 | 799 0 obj << | 3293 | 797 0 obj << |
3286 | /Type /Annot | 3294 | /Type /Annot |
3287 | /Subtype /Link | 3295 | /Subtype /Link |
3288 | /Border[0 0 0]/H/I/C[0 1 0] | 3296 | /Border[0 0 0]/H/I/C[0 1 0] |
3289 | /Rect [172.544 166.751 180.383 176.557] | 3297 | /Rect [172.544 166.751 180.383 176.557] |
3290 | /A << /S /GoTo /D (cite.Box1965) >> | 3298 | /A << /S /GoTo /D (cite.Box1965) >> |
3291 | >> endobj | 3299 | >> endobj |
3300 | 801 0 obj << | ||
3301 | /D [799 0 R /XYZ 38.685 808.874 null] | ||
3302 | >> endobj | ||
3303 | 802 0 obj << | ||
3304 | /D [799 0 R /XYZ 62.362 771.012 null] | ||
3305 | >> endobj | ||
3292 | 803 0 obj << | 3306 | 803 0 obj << |
3293 | /D [801 0 R /XYZ 38.685 808.874 null] | 3307 | /D [799 0 R /XYZ 62.362 767.286 null] |
3294 | >> endobj | 3308 | >> endobj |
3295 | 804 0 obj << | 3309 | 804 0 obj << |
3296 | /D [801 0 R /XYZ 62.362 771.012 null] | 3310 | /D [799 0 R /XYZ 62.362 759.057 null] |
3297 | >> endobj | 3311 | >> endobj |
3298 | 805 0 obj << | 3312 | 805 0 obj << |
3299 | /D [801 0 R /XYZ 62.362 767.286 null] | 3313 | /D [799 0 R /XYZ 62.362 750.828 null] |
3300 | >> endobj | 3314 | >> endobj |
3301 | 806 0 obj << | 3315 | 806 0 obj << |
3302 | /D [801 0 R /XYZ 62.362 759.057 null] | 3316 | /D [799 0 R /XYZ 62.362 742.599 null] |
3303 | >> endobj | 3317 | >> endobj |
3304 | 807 0 obj << | 3318 | 807 0 obj << |
3305 | /D [801 0 R /XYZ 62.362 750.828 null] | 3319 | /D [799 0 R /XYZ 62.362 734.37 null] |
3306 | >> endobj | 3320 | >> endobj |
3307 | 808 0 obj << | 3321 | 808 0 obj << |
3308 | /D [801 0 R /XYZ 62.362 742.599 null] | 3322 | /D [799 0 R /XYZ 62.362 726.141 null] |
3309 | >> endobj | 3323 | >> endobj |
3310 | 809 0 obj << | 3324 | 809 0 obj << |
3311 | /D [801 0 R /XYZ 62.362 734.37 null] | 3325 | /D [799 0 R /XYZ 62.362 717.912 null] |
3312 | >> endobj | 3326 | >> endobj |
3313 | 810 0 obj << | 3327 | 810 0 obj << |
3314 | /D [801 0 R /XYZ 62.362 726.141 null] | 3328 | /D [799 0 R /XYZ 62.362 709.683 null] |
3315 | >> endobj | 3329 | >> endobj |
3316 | 811 0 obj << | 3330 | 811 0 obj << |
3317 | /D [801 0 R /XYZ 62.362 717.912 null] | 3331 | /D [799 0 R /XYZ 62.362 701.453 null] |
3318 | >> endobj | 3332 | >> endobj |
3319 | 812 0 obj << | 3333 | 812 0 obj << |
3320 | /D [801 0 R /XYZ 62.362 709.683 null] | 3334 | /D [799 0 R /XYZ 62.362 693.224 null] |
3321 | >> endobj | 3335 | >> endobj |
3322 | 813 0 obj << | 3336 | 813 0 obj << |
3323 | /D [801 0 R /XYZ 62.362 701.453 null] | 3337 | /D [799 0 R /XYZ 62.362 684.995 null] |
3324 | >> endobj | 3338 | >> endobj |
3325 | 814 0 obj << | 3339 | 814 0 obj << |
3326 | /D [801 0 R /XYZ 62.362 693.224 null] | 3340 | /D [799 0 R /XYZ 62.362 676.766 null] |
3327 | >> endobj | 3341 | >> endobj |
3328 | 815 0 obj << | 3342 | 815 0 obj << |
3329 | /D [801 0 R /XYZ 62.362 684.995 null] | 3343 | /D [799 0 R /XYZ 62.362 668.537 null] |
3330 | >> endobj | 3344 | >> endobj |
3331 | 816 0 obj << | 3345 | 816 0 obj << |
3332 | /D [801 0 R /XYZ 62.362 676.766 null] | 3346 | /D [799 0 R /XYZ 62.362 628.988 null] |
3333 | >> endobj | 3347 | >> endobj |
3334 | 817 0 obj << | 3348 | 817 0 obj << |
3335 | /D [801 0 R /XYZ 62.362 668.537 null] | 3349 | /D [799 0 R /XYZ 62.362 631.307 null] |
3336 | >> endobj | 3350 | >> endobj |
3337 | 818 0 obj << | 3351 | 818 0 obj << |
3338 | /D [801 0 R /XYZ 62.362 628.988 null] | 3352 | /D [799 0 R /XYZ 62.362 623.078 null] |
3339 | >> endobj | 3353 | >> endobj |
3340 | 819 0 obj << | 3354 | 819 0 obj << |
3341 | /D [801 0 R /XYZ 62.362 631.307 null] | 3355 | /D [799 0 R /XYZ 62.362 614.849 null] |
3356 | >> endobj | ||
3357 | 49 0 obj << | ||
3358 | /D [799 0 R /XYZ 62.362 547.524 null] | ||
3342 | >> endobj | 3359 | >> endobj |
3343 | 820 0 obj << | 3360 | 820 0 obj << |
3344 | /D [801 0 R /XYZ 62.362 623.078 null] | 3361 | /D [799 0 R /XYZ 281.005 457.878 null] |
3345 | >> endobj | 3362 | >> endobj |
3346 | 821 0 obj << | 3363 | 821 0 obj << |
3347 | /D [801 0 R /XYZ 62.362 614.849 null] | 3364 | /D [799 0 R /XYZ 213.156 392.685 null] |
3348 | >> endobj | 3365 | >> endobj |
3349 | 49 0 obj << | 3366 | 53 0 obj << |
3350 | /D [801 0 R /XYZ 62.362 547.524 null] | 3367 | /D [799 0 R /XYZ 62.362 285.725 null] |
3351 | >> endobj | 3368 | >> endobj |
3352 | 822 0 obj << | 3369 | 822 0 obj << |
3353 | /D [801 0 R /XYZ 281.005 457.878 null] | 3370 | /D [799 0 R /XYZ 260.766 213.795 null] |
3354 | >> endobj | 3371 | >> endobj |
3355 | 823 0 obj << | 3372 | 823 0 obj << |
3356 | /D [801 0 R /XYZ 213.156 392.685 null] | 3373 | /D [799 0 R /XYZ 281.005 104.655 null] |
3357 | >> endobj | ||
3358 | 53 0 obj << | ||
3359 | /D [801 0 R /XYZ 62.362 285.725 null] | ||
3360 | >> endobj | ||
3361 | 824 0 obj << | ||
3362 | /D [801 0 R /XYZ 260.766 213.795 null] | ||
3363 | >> endobj | ||
3364 | 825 0 obj << | ||
3365 | /D [801 0 R /XYZ 281.005 104.655 null] | ||
3366 | >> endobj | 3374 | >> endobj |
3367 | 800 0 obj << | 3375 | 798 0 obj << |
3368 | /Font << /F39 386 0 R /F60 552 0 R /F81 551 0 R /F117 751 0 R /F110 755 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F63 722 0 R /F56 510 0 R /F71 511 0 R /F61 509 0 R /F65 718 0 R >> | 3376 | /Font << /F39 386 0 R /F60 552 0 R /F81 551 0 R /F117 751 0 R /F110 755 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F63 722 0 R /F56 510 0 R /F71 511 0 R /F61 509 0 R /F65 718 0 R >> |
3369 | /ProcSet [ /PDF /Text ] | 3377 | /ProcSet [ /PDF /Text ] |
3370 | >> endobj | 3378 | >> endobj |
3371 | 831 0 obj << | 3379 | 830 0 obj << |
3372 | /Length 2267 | 3380 | /Length 2267 |
3373 | /Filter /FlateDecode | 3381 | /Filter /FlateDecode |
3374 | >> | 3382 | >> |
@@ -3383,15 +3391,15 @@ zσN=(6<[/K^͒sܡ+'yb{؆xs ic'R$㦻) | |||
3383 | SD<YQ2D+pp$D K??5R:5;~s6?; | 3391 | SD<YQ2D+pp$D K??5R:5;~s6?; |
3384 | endstream | 3392 | endstream |
3385 | endobj | 3393 | endobj |
3386 | 830 0 obj << | 3394 | 829 0 obj << |
3387 | /Type /Page | 3395 | /Type /Page |
3388 | /Contents 831 0 R | 3396 | /Contents 830 0 R |
3389 | /Resources 829 0 R | 3397 | /Resources 828 0 R |
3390 | /MediaBox [0 0 595.276 841.89] | 3398 | /MediaBox [0 0 595.276 841.89] |
3391 | /Parent 794 0 R | 3399 | /Parent 792 0 R |
3392 | /Annots [ 827 0 R 828 0 R ] | 3400 | /Annots [ 826 0 R 827 0 R ] |
3393 | >> endobj | 3401 | >> endobj |
3394 | 798 0 obj << | 3402 | 796 0 obj << |
3395 | /Type /XObject | 3403 | /Type /XObject |
3396 | /Subtype /Image | 3404 | /Subtype /Image |
3397 | /Width 610 | 3405 | /Width 610 |
@@ -3408,47 +3416,47 @@ xr@QOUn `8BUkwX=dB | |||
3408 | JdrLtR$(%2)2 -2)R&eR&II tI2)2 (LʤLAtˤL$`II@)eR&e*@&eR&cLs[f@)eR&MR dR&e0VʤL$2)2 2)R&eR&II v I | 3416 | JdrLtR$(%2)2 -2)R&eR&II tI2)2 (LʤLAtˤL$`II@)eR&e*@&eR&cLs[f@)eR&MR dR&e0VʤL$2)2 2)R&eR&II v I |
3409 | endstream | 3417 | endstream |
3410 | endobj | 3418 | endobj |
3411 | 827 0 obj << | 3419 | 826 0 obj << |
3412 | /Type /Annot | 3420 | /Type /Annot |
3413 | /Subtype /Link | 3421 | /Subtype /Link |
3414 | /Border[0 0 0]/H/I/C[0 1 0] | 3422 | /Border[0 0 0]/H/I/C[0 1 0] |
3415 | /Rect [429.891 357.916 437.73 367.721] | 3423 | /Rect [429.891 357.916 437.73 367.721] |
3416 | /A << /S /GoTo /D (cite.Fan2002) >> | 3424 | /A << /S /GoTo /D (cite.Fan2002) >> |
3417 | >> endobj | 3425 | >> endobj |
3418 | 828 0 obj << | 3426 | 827 0 obj << |
3419 | /Type /Annot | 3427 | /Type /Annot |
3420 | /Subtype /Link | 3428 | /Subtype /Link |
3421 | /Border[0 0 0]/H/I/C[0 1 0] | 3429 | /Border[0 0 0]/H/I/C[0 1 0] |
3422 | /Rect [519.733 357.916 527.571 367.721] | 3430 | /Rect [519.733 357.916 527.571 367.721] |
3423 | /A << /S /GoTo /D (cite.Fan2002) >> | 3431 | /A << /S /GoTo /D (cite.Fan2002) >> |
3424 | >> endobj | 3432 | >> endobj |
3425 | 832 0 obj << | 3433 | 831 0 obj << |
3426 | /D [830 0 R /XYZ 61.362 808.874 null] | 3434 | /D [829 0 R /XYZ 61.362 808.874 null] |
3427 | >> endobj | 3435 | >> endobj |
3428 | 833 0 obj << | 3436 | 824 0 obj << |
3429 | /D [830 0 R /XYZ 117.983 535.399 null] | 3437 | /D [829 0 R /XYZ 117.983 535.399 null] |
3430 | >> endobj | 3438 | >> endobj |
3431 | 835 0 obj << | 3439 | 833 0 obj << |
3432 | /D [830 0 R /XYZ 231.774 445.822 null] | 3440 | /D [829 0 R /XYZ 231.774 445.822 null] |
3433 | >> endobj | 3441 | >> endobj |
3434 | 57 0 obj << | 3442 | 57 0 obj << |
3435 | /D [830 0 R /XYZ 62.362 402.505 null] | 3443 | /D [829 0 R /XYZ 62.362 402.505 null] |
3436 | >> endobj | 3444 | >> endobj |
3437 | 836 0 obj << | 3445 | 834 0 obj << |
3438 | /D [830 0 R /XYZ 211.883 231.746 null] | 3446 | /D [829 0 R /XYZ 211.883 231.746 null] |
3439 | >> endobj | 3447 | >> endobj |
3440 | 837 0 obj << | 3448 | 835 0 obj << |
3441 | /D [830 0 R /XYZ 281.005 181.965 null] | 3449 | /D [829 0 R /XYZ 281.005 181.965 null] |
3442 | >> endobj | 3450 | >> endobj |
3443 | 838 0 obj << | 3451 | 836 0 obj << |
3444 | /D [830 0 R /XYZ 157.173 117.357 null] | 3452 | /D [829 0 R /XYZ 157.173 117.357 null] |
3445 | >> endobj | 3453 | >> endobj |
3446 | 829 0 obj << | 3454 | 828 0 obj << |
3447 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F92 834 0 R /F61 509 0 R /F55 507 0 R /F56 510 0 R /F78 459 0 R /F59 508 0 R /F65 718 0 R /F63 722 0 R >> | 3455 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F92 832 0 R /F61 509 0 R /F55 507 0 R /F56 510 0 R /F78 459 0 R /F59 508 0 R /F65 718 0 R /F63 722 0 R >> |
3448 | /XObject << /Im7 798 0 R >> | 3456 | /XObject << /Im7 796 0 R >> |
3449 | /ProcSet [ /PDF /Text /ImageC ] | 3457 | /ProcSet [ /PDF /Text /ImageC ] |
3450 | >> endobj | 3458 | >> endobj |
3451 | 842 0 obj << | 3459 | 840 0 obj << |
3452 | /Length 3105 | 3460 | /Length 3105 |
3453 | /Filter /FlateDecode | 3461 | /Filter /FlateDecode |
3454 | >> | 3462 | >> |
@@ -3470,65 +3478,65 @@ El.BQ6[k0 |nBkʧ$g6dj˚^nPe=]V | |||
3470 | "zǩу{zXZlN*? | 3478 | "zǩу{zXZlN*? |
3471 | endstream | 3479 | endstream |
3472 | endobj | 3480 | endobj |
3473 | 841 0 obj << | 3481 | 839 0 obj << |
3474 | /Type /Page | 3482 | /Type /Page |
3475 | /Contents 842 0 R | 3483 | /Contents 840 0 R |
3476 | /Resources 840 0 R | 3484 | /Resources 838 0 R |
3477 | /MediaBox [0 0 595.276 841.89] | 3485 | /MediaBox [0 0 595.276 841.89] |
3478 | /Parent 794 0 R | 3486 | /Parent 792 0 R |
3479 | >> endobj | 3487 | >> endobj |
3480 | 843 0 obj << | 3488 | 841 0 obj << |
3481 | /D [841 0 R /XYZ 38.685 808.874 null] | 3489 | /D [839 0 R /XYZ 38.685 808.874 null] |
3482 | >> endobj | 3490 | >> endobj |
3483 | 61 0 obj << | 3491 | 61 0 obj << |
3484 | /D [841 0 R /XYZ 62.362 739.033 null] | 3492 | /D [839 0 R /XYZ 62.362 739.033 null] |
3485 | >> endobj | 3493 | >> endobj |
3486 | 65 0 obj << | 3494 | 65 0 obj << |
3487 | /D [841 0 R /XYZ 62.362 633.8 null] | 3495 | /D [839 0 R /XYZ 62.362 633.8 null] |
3496 | >> endobj | ||
3497 | 842 0 obj << | ||
3498 | /D [839 0 R /XYZ 62.362 570.837 null] | ||
3499 | >> endobj | ||
3500 | 843 0 obj << | ||
3501 | /D [839 0 R /XYZ 192.436 501.371 null] | ||
3488 | >> endobj | 3502 | >> endobj |
3489 | 844 0 obj << | 3503 | 844 0 obj << |
3490 | /D [841 0 R /XYZ 62.362 570.837 null] | 3504 | /D [839 0 R /XYZ 236.949 447.343 null] |
3491 | >> endobj | 3505 | >> endobj |
3492 | 845 0 obj << | 3506 | 845 0 obj << |
3493 | /D [841 0 R /XYZ 192.436 501.371 null] | 3507 | /D [839 0 R /XYZ 232.635 348.544 null] |
3494 | >> endobj | 3508 | >> endobj |
3495 | 846 0 obj << | 3509 | 846 0 obj << |
3496 | /D [841 0 R /XYZ 236.949 447.343 null] | 3510 | /D [839 0 R /XYZ 178.381 276.759 null] |
3497 | >> endobj | 3511 | >> endobj |
3498 | 847 0 obj << | 3512 | 847 0 obj << |
3499 | /D [841 0 R /XYZ 232.635 348.544 null] | 3513 | /D [839 0 R /XYZ 258.216 215.54 null] |
3500 | >> endobj | 3514 | >> endobj |
3501 | 848 0 obj << | 3515 | 848 0 obj << |
3502 | /D [841 0 R /XYZ 178.381 276.759 null] | 3516 | /D [839 0 R /XYZ 62.362 139.58 null] |
3503 | >> endobj | 3517 | >> endobj |
3504 | 849 0 obj << | 3518 | 849 0 obj << |
3505 | /D [841 0 R /XYZ 258.216 215.54 null] | 3519 | /D [839 0 R /XYZ 62.362 141.9 null] |
3506 | >> endobj | 3520 | >> endobj |
3507 | 850 0 obj << | 3521 | 850 0 obj << |
3508 | /D [841 0 R /XYZ 62.362 139.58 null] | 3522 | /D [839 0 R /XYZ 62.362 133.67 null] |
3509 | >> endobj | 3523 | >> endobj |
3510 | 851 0 obj << | 3524 | 851 0 obj << |
3511 | /D [841 0 R /XYZ 62.362 141.9 null] | 3525 | /D [839 0 R /XYZ 62.362 125.441 null] |
3512 | >> endobj | 3526 | >> endobj |
3513 | 852 0 obj << | 3527 | 852 0 obj << |
3514 | /D [841 0 R /XYZ 62.362 133.67 null] | 3528 | /D [839 0 R /XYZ 62.362 117.212 null] |
3515 | >> endobj | 3529 | >> endobj |
3516 | 853 0 obj << | 3530 | 853 0 obj << |
3517 | /D [841 0 R /XYZ 62.362 125.441 null] | 3531 | /D [839 0 R /XYZ 62.362 108.983 null] |
3518 | >> endobj | ||
3519 | 854 0 obj << | ||
3520 | /D [841 0 R /XYZ 62.362 117.212 null] | ||
3521 | >> endobj | 3532 | >> endobj |
3522 | 855 0 obj << | 3533 | 838 0 obj << |
3523 | /D [841 0 R /XYZ 62.362 108.983 null] | ||
3524 | >> endobj | ||
3525 | 840 0 obj << | ||
3526 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F78 459 0 R /F56 510 0 R /F59 508 0 R /F61 509 0 R /F65 718 0 R /F60 552 0 R /F81 551 0 R >> | 3534 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F78 459 0 R /F56 510 0 R /F59 508 0 R /F61 509 0 R /F65 718 0 R /F60 552 0 R /F81 551 0 R >> |
3527 | /ProcSet [ /PDF /Text ] | 3535 | /ProcSet [ /PDF /Text ] |
3528 | >> endobj | 3536 | >> endobj |
3529 | 3537 | ||
3530 | 861 0 obj << | 3538 | 859 0 obj << |
3531 | /Length 2197 | 3539 | /Length 2196 |
3532 | /Filter /FlateDecode | 3540 | /Filter /FlateDecode |
3533 | >> | 3541 | >> |
3534 | stream | 3542 | stream |
@@ -3539,37 +3547,39 @@ xn7]_ | |||
3539 | 3547 | ||
3540 | H_*-炘 Mx-sd?p!IfF<FU#TSys8 <{HWQ'04`A%_][gt>.~?1 htQ!@< psy;1S_@a{ | 3548 | H_*-炘 Mx-sd?p!IfF<FU#TSys8 <{HWQ'04`A%_][gt>.~?1 htQ!@< psy;1S_@a{ |
3541 | k6Qgz:*AЂ>pSLyF$r6 | 3549 | k6Qgz:*AЂ>pSLyF$r6 |
3542 | nH*W/Xf3ZY+9jNmtn ToϘS3p2"1o@q%e8ŌPq}cTG0SD{Kʓ$W6C۵Nslϙ"E|F:(u0v: ˉpdUU˱t Xxc h)cI&c | 3550 | nH*W/Xf3ZY+9jNmtn ToϘS3p2"b@]2Q|S |
3543 | d O&+|dMe00xH̊cs䜞2BcSW4sD/Qq" ޫɳ;S&nh"-Iu<zO`ww[ | 3551 | g:Np3uId<MMrecQ8ļ]4xna)Rt'9qo:[]3o:: |
3544 | Tu | 3552 | ?s>!2cH/y/ |
3545 | dҠd27N*A/Qb٣'[T4L>\ | 3553 | e$q̳qQq?E_ |
3554 | <ۿ>i2֊Q+тAМT0-[YAM-~w | ||
3555 | #&wW#QfC%*uu?Dj}T6PRZquZ~7Ku|]ȊvֻSлBe3nӅ$ILQmx1b)$9!xGT: | ||
3546 | endstream | 3556 | endstream |
3547 | endobj | 3557 | endobj |
3548 | 860 0 obj << | 3558 | 858 0 obj << |
3549 | /Type /Page | 3559 | /Type /Page |
3550 | /Contents 861 0 R | 3560 | /Contents 859 0 R |
3551 | /Resources 859 0 R | 3561 | /Resources 857 0 R |
3552 | /MediaBox [0 0 595.276 841.89] | 3562 | /MediaBox [0 0 595.276 841.89] |
3553 | /Parent 794 0 R | 3563 | /Parent 792 0 R |
3554 | /Group 858 0 R | 3564 | /Group 856 0 R |
3555 | /Annots [ 856 0 R ] | 3565 | /Annots [ 854 0 R ] |
3556 | >> endobj | 3566 | >> endobj |
3557 | 857 0 obj << | 3567 | 855 0 obj << |
3558 | /Type /XObject | 3568 | /Type /XObject |
3559 | /Subtype /Form | 3569 | /Subtype /Form |
3560 | /FormType 1 | 3570 | /FormType 1 |
3561 | /PTEX.FileName (simplex_flat.pdf) | 3571 | /PTEX.FileName (simplex_flat.pdf) |
3562 | /PTEX.PageNumber 1 | 3572 | /PTEX.PageNumber 1 |
3563 | /PTEX.InfoDict 893 0 R | 3573 | /PTEX.InfoDict 891 0 R |
3564 | /BBox [0 0 347.034149 310.370605] | 3574 | /BBox [0 0 347.034149 310.370605] |
3565 | /Group 858 0 R | 3575 | /Group 856 0 R |
3566 | /Resources << | 3576 | /Resources << |
3567 | /ExtGState << | 3577 | /ExtGState << |
3568 | /a0 << | 3578 | /a0 << |
3569 | /CA 1 | 3579 | /CA 1 |
3570 | /ca 1 | 3580 | /ca 1 |
3571 | >> | 3581 | >> |
3572 | >>/Font << /f-0-0 894 0 R/f-1-0 895 0 R>> | 3582 | >>/Font << /f-0-0 892 0 R/f-1-0 893 0 R>> |
3573 | >> | 3583 | >> |
3574 | /Length 469 | 3584 | /Length 469 |
3575 | /Filter /FlateDecode | 3585 | /Filter /FlateDecode |
@@ -3580,33 +3590,33 @@ xUMk1W̹ɌFHPrB4{9$!͡]M`o=͇< | |||
3580 | n{g6Jvc-cA3i<ad%qڛnXxtDgٙ!vqAwl^i> | 3590 | n{g6Jvc-cA3i<ad%qڛnXxtDgٙ!vqAwl^i> |
3581 | endstream | 3591 | endstream |
3582 | endobj | 3592 | endobj |
3583 | 893 0 obj | 3593 | 891 0 obj |
3584 | << | 3594 | << |
3585 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) | 3595 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) |
3586 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) | 3596 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) |
3587 | >> | 3597 | >> |
3588 | endobj | 3598 | endobj |
3589 | 894 0 obj | 3599 | 892 0 obj |
3590 | << | 3600 | << |
3591 | /Type /Font | 3601 | /Type /Font |
3592 | /Subtype /Type0 | 3602 | /Subtype /Type0 |
3593 | /BaseFont /Arial | 3603 | /BaseFont /Arial |
3594 | /Encoding /Identity-H | 3604 | /Encoding /Identity-H |
3595 | /DescendantFonts [ 896 0 R] | 3605 | /DescendantFonts [ 894 0 R] |
3596 | /ToUnicode 897 0 R | 3606 | /ToUnicode 895 0 R |
3597 | >> | 3607 | >> |
3598 | endobj | 3608 | endobj |
3599 | 895 0 obj | 3609 | 893 0 obj |
3600 | << | 3610 | << |
3601 | /Type /Font | 3611 | /Type /Font |
3602 | /Subtype /Type0 | 3612 | /Subtype /Type0 |
3603 | /BaseFont /Arial | 3613 | /BaseFont /Arial |
3604 | /Encoding /Identity-H | 3614 | /Encoding /Identity-H |
3605 | /DescendantFonts [ 898 0 R] | 3615 | /DescendantFonts [ 896 0 R] |
3606 | /ToUnicode 899 0 R | 3616 | /ToUnicode 897 0 R |
3607 | >> | 3617 | >> |
3608 | endobj | 3618 | endobj |
3609 | 896 0 obj | 3619 | 894 0 obj |
3610 | << | 3620 | << |
3611 | /Type /Font | 3621 | /Type /Font |
3612 | /Subtype /CIDFontType2 | 3622 | /Subtype /CIDFontType2 |
@@ -3616,13 +3626,13 @@ endobj | |||
3616 | /Ordering (Identity) | 3626 | /Ordering (Identity) |
3617 | /Supplement 0 | 3627 | /Supplement 0 |
3618 | >> | 3628 | >> |
3619 | /FontDescriptor 900 0 R | 3629 | /FontDescriptor 898 0 R |
3620 | /W [ 0 [ 750 556 556 445 500 277 556]] | 3630 | /W [ 0 [ 750 556 556 445 500 277 556]] |
3621 | >> | 3631 | >> |
3622 | endobj | 3632 | endobj |
3623 | 897 0 obj | 3633 | 895 0 obj |
3624 | << | 3634 | << |
3625 | /Length 901 0 R | 3635 | /Length 899 0 R |
3626 | /Filter /FlateDecode | 3636 | /Filter /FlateDecode |
3627 | >> | 3637 | >> |
3628 | stream | 3638 | stream |
@@ -3632,7 +3642,7 @@ x]n <ݡ"n(^r6-0C~T4K _zk"* Fee | |||
3632 | 3{}UBI{w_~ | 3642 | 3{}UBI{w_~ |
3633 | endstream | 3643 | endstream |
3634 | endobj | 3644 | endobj |
3635 | 898 0 obj | 3645 | 896 0 obj |
3636 | << | 3646 | << |
3637 | /Type /Font | 3647 | /Type /Font |
3638 | /Subtype /CIDFontType2 | 3648 | /Subtype /CIDFontType2 |
@@ -3642,13 +3652,13 @@ endobj | |||
3642 | /Ordering (Identity) | 3652 | /Ordering (Identity) |
3643 | /Supplement 0 | 3653 | /Supplement 0 |
3644 | >> | 3654 | >> |
3645 | /FontDescriptor 902 0 R | 3655 | /FontDescriptor 900 0 R |
3646 | /W [ 0 [ 750 556 556]] | 3656 | /W [ 0 [ 750 556 556]] |
3647 | >> | 3657 | >> |
3648 | endobj | 3658 | endobj |
3649 | 899 0 obj | 3659 | 897 0 obj |
3650 | << | 3660 | << |
3651 | /Length 903 0 R | 3661 | /Length 901 0 R |
3652 | /Filter /FlateDecode | 3662 | /Filter /FlateDecode |
3653 | >> | 3663 | >> |
3654 | stream | 3664 | stream |
@@ -3656,7 +3666,7 @@ x]j >wl/9[Ќ21}Yw)d| Ǹĕ-S *p滪 | |||
3656 | ="pI"PtM) /W5zmn'Rj+{wS/?"ڕ{@Ns | 3666 | ="pI"PtM) /W5zmn'Rj+{wS/?"ڕ{@Ns |
3657 | endstream | 3667 | endstream |
3658 | endobj | 3668 | endobj |
3659 | 900 0 obj | 3669 | 898 0 obj |
3660 | << | 3670 | << |
3661 | /Type /FontDescriptor | 3671 | /Type /FontDescriptor |
3662 | /FontName /Arial | 3672 | /FontName /Arial |
@@ -3668,13 +3678,13 @@ endobj | |||
3668 | /CapHeight 1005 | 3678 | /CapHeight 1005 |
3669 | /StemV 80 | 3679 | /StemV 80 |
3670 | /StemH 80 | 3680 | /StemH 80 |
3671 | /FontFile2 904 0 R | 3681 | /FontFile2 902 0 R |
3672 | >> | 3682 | >> |
3673 | endobj | 3683 | endobj |
3674 | 901 0 obj | 3684 | 899 0 obj |
3675 | 255 | 3685 | 255 |
3676 | endobj | 3686 | endobj |
3677 | 902 0 obj | 3687 | 900 0 obj |
3678 | << | 3688 | << |
3679 | /Type /FontDescriptor | 3689 | /Type /FontDescriptor |
3680 | /FontName /Arial | 3690 | /FontName /Arial |
@@ -3686,15 +3696,15 @@ endobj | |||
3686 | /CapHeight 1005 | 3696 | /CapHeight 1005 |
3687 | /StemV 80 | 3697 | /StemV 80 |
3688 | /StemH 80 | 3698 | /StemH 80 |
3689 | /FontFile2 905 0 R | 3699 | /FontFile2 903 0 R |
3690 | >> | 3700 | >> |
3691 | endobj | 3701 | endobj |
3692 | 903 0 obj | 3702 | 901 0 obj |
3693 | 231 | 3703 | 231 |
3694 | endobj | 3704 | endobj |
3695 | 904 0 obj | 3705 | 902 0 obj |
3696 | << | 3706 | << |
3697 | /Length 906 0 R | 3707 | /Length 904 0 R |
3698 | /Filter /FlateDecode | 3708 | /Filter /FlateDecode |
3699 | /Length1 8808 | 3709 | /Length1 8808 |
3700 | >> | 3710 | >> |
@@ -3733,9 +3743,9 @@ Gq!c-oA$J&mAfVP | |||
3733 | jbW}-ŏ NH>bf-E_bіؤK.=YK | 3743 | jbW}-ŏ NH>bf-E_bіؤK.=YK |
3734 | endstream | 3744 | endstream |
3735 | endobj | 3745 | endobj |
3736 | 905 0 obj | 3746 | 903 0 obj |
3737 | << | 3747 | << |
3738 | /Length 907 0 R | 3748 | /Length 905 0 R |
3739 | /Filter /FlateDecode | 3749 | /Filter /FlateDecode |
3740 | /Length1 7488 | 3750 | /Length1 7488 |
3741 | >> | 3751 | >> |
@@ -3767,253 +3777,268 @@ ZT5YjN,iy|̉'=]Aǀ{N3*6XMwn^JجiQL U | |||
3767 | Dl: | 3777 | Dl: |
3768 | endstream | 3778 | endstream |
3769 | endobj | 3779 | endobj |
3770 | 906 0 obj | 3780 | 904 0 obj |
3771 | 6137 | 3781 | 6137 |
3772 | endobj | 3782 | endobj |
3773 | 907 0 obj | 3783 | 905 0 obj |
3774 | 5088 | 3784 | 5088 |
3775 | endobj | 3785 | endobj |
3776 | 858 0 obj | 3786 | 856 0 obj |
3777 | << | 3787 | << |
3778 | /Type /Group | 3788 | /Type /Group |
3779 | /S /Transparency | 3789 | /S /Transparency |
3780 | /CS /DeviceRGB | 3790 | /CS /DeviceRGB |
3781 | >>endobj | 3791 | >>endobj |
3782 | 856 0 obj << | 3792 | 854 0 obj << |
3783 | /Type /Annot | 3793 | /Type /Annot |
3784 | /Subtype /Link | 3794 | /Subtype /Link |
3785 | /Border[0 0 0]/H/I/C[1 0 0] | 3795 | /Border[0 0 0]/H/I/C[1 0 0] |
3786 | /Rect [323.644 375.329 340.568 389.116] | 3796 | /Rect [323.644 375.329 340.568 389.116] |
3787 | /A << /S /GoTo /D (figure.1.4) >> | 3797 | /A << /S /GoTo /D (figure.2.4) >> |
3798 | >> endobj | ||
3799 | 860 0 obj << | ||
3800 | /D [858 0 R /XYZ 61.362 808.874 null] | ||
3801 | >> endobj | ||
3802 | 861 0 obj << | ||
3803 | /D [858 0 R /XYZ 259.758 621.338 null] | ||
3788 | >> endobj | 3804 | >> endobj |
3789 | 862 0 obj << | 3805 | 862 0 obj << |
3790 | /D [860 0 R /XYZ 61.362 808.874 null] | 3806 | /D [858 0 R /XYZ 62.362 561.998 null] |
3791 | >> endobj | 3807 | >> endobj |
3792 | 863 0 obj << | 3808 | 863 0 obj << |
3793 | /D [860 0 R /XYZ 259.758 621.338 null] | 3809 | /D [858 0 R /XYZ 62.362 564.318 null] |
3794 | >> endobj | 3810 | >> endobj |
3795 | 864 0 obj << | 3811 | 864 0 obj << |
3796 | /D [860 0 R /XYZ 62.362 561.998 null] | 3812 | /D [858 0 R /XYZ 62.362 556.089 null] |
3797 | >> endobj | 3813 | >> endobj |
3798 | 865 0 obj << | 3814 | 865 0 obj << |
3799 | /D [860 0 R /XYZ 62.362 564.318 null] | 3815 | /D [858 0 R /XYZ 62.362 547.859 null] |
3800 | >> endobj | 3816 | >> endobj |
3801 | 866 0 obj << | 3817 | 866 0 obj << |
3802 | /D [860 0 R /XYZ 62.362 556.089 null] | 3818 | /D [858 0 R /XYZ 62.362 539.63 null] |
3803 | >> endobj | 3819 | >> endobj |
3804 | 867 0 obj << | 3820 | 867 0 obj << |
3805 | /D [860 0 R /XYZ 62.362 547.859 null] | 3821 | /D [858 0 R /XYZ 62.362 531.401 null] |
3806 | >> endobj | 3822 | >> endobj |
3807 | 868 0 obj << | 3823 | 868 0 obj << |
3808 | /D [860 0 R /XYZ 62.362 539.63 null] | 3824 | /D [858 0 R /XYZ 62.362 523.172 null] |
3809 | >> endobj | 3825 | >> endobj |
3810 | 869 0 obj << | 3826 | 869 0 obj << |
3811 | /D [860 0 R /XYZ 62.362 531.401 null] | 3827 | /D [858 0 R /XYZ 62.362 514.943 null] |
3812 | >> endobj | ||
3813 | 870 0 obj << | ||
3814 | /D [860 0 R /XYZ 62.362 523.172 null] | ||
3815 | >> endobj | 3828 | >> endobj |
3816 | 871 0 obj << | 3829 | 871 0 obj << |
3817 | /D [860 0 R /XYZ 62.362 514.943 null] | 3830 | /D [858 0 R /XYZ 173.091 407.646 null] |
3831 | >> endobj | ||
3832 | 872 0 obj << | ||
3833 | /D [858 0 R /XYZ 62.362 370.348 null] | ||
3818 | >> endobj | 3834 | >> endobj |
3819 | 873 0 obj << | 3835 | 873 0 obj << |
3820 | /D [860 0 R /XYZ 173.091 407.646 null] | 3836 | /D [858 0 R /XYZ 62.362 372.667 null] |
3821 | >> endobj | 3837 | >> endobj |
3822 | 874 0 obj << | 3838 | 874 0 obj << |
3823 | /D [860 0 R /XYZ 62.362 370.348 null] | 3839 | /D [858 0 R /XYZ 62.362 364.438 null] |
3824 | >> endobj | 3840 | >> endobj |
3825 | 875 0 obj << | 3841 | 875 0 obj << |
3826 | /D [860 0 R /XYZ 62.362 372.667 null] | 3842 | /D [858 0 R /XYZ 62.362 356.209 null] |
3827 | >> endobj | 3843 | >> endobj |
3828 | 876 0 obj << | 3844 | 876 0 obj << |
3829 | /D [860 0 R /XYZ 62.362 364.438 null] | 3845 | /D [858 0 R /XYZ 62.362 347.98 null] |
3830 | >> endobj | 3846 | >> endobj |
3831 | 877 0 obj << | 3847 | 877 0 obj << |
3832 | /D [860 0 R /XYZ 62.362 356.209 null] | 3848 | /D [858 0 R /XYZ 62.362 339.751 null] |
3833 | >> endobj | 3849 | >> endobj |
3834 | 878 0 obj << | 3850 | 878 0 obj << |
3835 | /D [860 0 R /XYZ 62.362 347.98 null] | 3851 | /D [858 0 R /XYZ 62.362 331.522 null] |
3836 | >> endobj | 3852 | >> endobj |
3837 | 879 0 obj << | 3853 | 879 0 obj << |
3838 | /D [860 0 R /XYZ 62.362 339.751 null] | 3854 | /D [858 0 R /XYZ 62.362 323.293 null] |
3839 | >> endobj | 3855 | >> endobj |
3840 | 880 0 obj << | 3856 | 880 0 obj << |
3841 | /D [860 0 R /XYZ 62.362 331.522 null] | 3857 | /D [858 0 R /XYZ 62.362 315.064 null] |
3842 | >> endobj | 3858 | >> endobj |
3843 | 881 0 obj << | 3859 | 881 0 obj << |
3844 | /D [860 0 R /XYZ 62.362 323.293 null] | 3860 | /D [858 0 R /XYZ 62.362 306.834 null] |
3845 | >> endobj | 3861 | >> endobj |
3846 | 882 0 obj << | 3862 | 882 0 obj << |
3847 | /D [860 0 R /XYZ 62.362 315.064 null] | 3863 | /D [858 0 R /XYZ 62.362 267.285 null] |
3848 | >> endobj | 3864 | >> endobj |
3849 | 883 0 obj << | 3865 | 883 0 obj << |
3850 | /D [860 0 R /XYZ 62.362 306.834 null] | 3866 | /D [858 0 R /XYZ 62.362 269.604 null] |
3851 | >> endobj | 3867 | >> endobj |
3852 | 884 0 obj << | 3868 | 884 0 obj << |
3853 | /D [860 0 R /XYZ 62.362 267.285 null] | 3869 | /D [858 0 R /XYZ 62.362 261.375 null] |
3854 | >> endobj | 3870 | >> endobj |
3855 | 885 0 obj << | 3871 | 885 0 obj << |
3856 | /D [860 0 R /XYZ 62.362 269.604 null] | 3872 | /D [858 0 R /XYZ 62.362 253.146 null] |
3857 | >> endobj | 3873 | >> endobj |
3858 | 886 0 obj << | 3874 | 886 0 obj << |
3859 | /D [860 0 R /XYZ 62.362 261.375 null] | 3875 | /D [858 0 R /XYZ 62.362 244.917 null] |
3860 | >> endobj | 3876 | >> endobj |
3861 | 887 0 obj << | 3877 | 887 0 obj << |
3862 | /D [860 0 R /XYZ 62.362 253.146 null] | 3878 | /D [858 0 R /XYZ 62.362 236.688 null] |
3863 | >> endobj | 3879 | >> endobj |
3864 | 888 0 obj << | 3880 | 888 0 obj << |
3865 | /D [860 0 R /XYZ 62.362 244.917 null] | 3881 | /D [858 0 R /XYZ 62.362 228.459 null] |
3866 | >> endobj | 3882 | >> endobj |
3867 | 889 0 obj << | 3883 | 889 0 obj << |
3868 | /D [860 0 R /XYZ 62.362 236.688 null] | 3884 | /D [858 0 R /XYZ 62.362 220.23 null] |
3869 | >> endobj | 3885 | >> endobj |
3870 | 890 0 obj << | 3886 | 890 0 obj << |
3871 | /D [860 0 R /XYZ 62.362 228.459 null] | 3887 | /D [858 0 R /XYZ 62.362 121.899 null] |
3872 | >> endobj | ||
3873 | 891 0 obj << | ||
3874 | /D [860 0 R /XYZ 62.362 220.23 null] | ||
3875 | >> endobj | ||
3876 | 892 0 obj << | ||
3877 | /D [860 0 R /XYZ 62.362 121.899 null] | ||
3878 | >> endobj | 3888 | >> endobj |
3879 | 859 0 obj << | 3889 | 857 0 obj << |
3880 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F64 554 0 R /F62 571 0 R /F60 552 0 R /F81 551 0 R /F68 872 0 R /F78 459 0 R /F59 508 0 R /F55 507 0 R /F61 509 0 R /F63 722 0 R >> | 3890 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F64 554 0 R /F62 571 0 R /F60 552 0 R /F81 551 0 R /F68 870 0 R /F78 459 0 R /F59 508 0 R /F55 507 0 R /F61 509 0 R /F63 722 0 R >> |
3881 | /XObject << /Im8 857 0 R >> | 3891 | /XObject << /Im8 855 0 R >> |
3882 | /ProcSet [ /PDF /Text ] | 3892 | /ProcSet [ /PDF /Text ] |
3883 | >> endobj | 3893 | >> endobj |
3884 | 913 0 obj << | 3894 | 911 0 obj << |
3885 | /Length 3529 | 3895 | /Length 3518 |
3886 | /Filter /FlateDecode | 3896 | /Filter /FlateDecode |
3887 | >> | 3897 | >> |
3888 | stream | 3898 | stream |
3889 | x[o7_!pF,?Zܥ=@<8dW4Nᐻ䊲-/w)3|n'>ٗߪ0cjb%SVN\pA{幘ܞϔSg:^2S~yޛ'}o.~>0;a2Ť>YoO8SO>ő뉎C<_O^'qNL`8[X. | 3899 | x[Ks7WRUTD~$ˮ*,"T,o7HEJ*9h034ЍÈ}ϋSa$Jb>z3\owpYl'dr?]/z?1vZu|"f,Iۋ_GL1)h:{#TOjcףg;~78&Sn8%\/2N9wΗnw~snxOΘL5Вw=GJ0hl+}z;ެy\ƻnv/kz\lVif2sGؚausE?rڀN]l"/Z'{ƥ@ AS+F^1 5e:6;Q#\~˕JB1ej/%-z˱r[jfԐ-^S}'`0T Zg\f`a5if-xhh |
3890 | wܮp+/2.9Ηnw~sntW֘rL<%ђ#FJh.Vk],fo6jE}zoq~Z.7ٮl2e"zÂU | 3900 | eZD[XOkjA#[F _f |
3891 | 썑#5H;j:uu?kўIn5&wdA#8ack&tVmvbc积[O+Fbnˬ_(KZ@s憷&5ҩ1)̰*#Z A`d3z>_ θ6Gթ'jJ[*4|ҙ*Gt@6nlC6Vm+$;q@v҅홰 KԹiKpa4BF | 3901 | Eg˶йK8 ;BDXznKq a4BF |
3892 | Q p 6--s߿_fOmQP.ZC*N RpQ(2kTUR\l/7RC.jb=I+5!jRa֖$";<}©ˁ0CFB7wm-DgSsye,:b{tqt>0TKq2+RSH]D |g°yLQ-ebƛ|-䖜KO+=JX) | 3902 | \< |
3893 | 'v-Y{O{ol(M5!mPFUr'4NYq)Eb 52s | 3903 | Zm+~ 6,͋.BG,R{>/k-JJu {/֨m1LwV? ѫJnje.Sl,czD?lIXӔ[he b]ں5l_H9N$G;߶H͙ z`9iaN]yt9l^)|! 6IL>5H}/eU/;0f )MW1jTL v(k^9DGcksn#x!T#6̩AܶO+iɇPC&@DFDsbPm"@z@R'/;X b5?>(*!tYg%z@i!:nST!S1wWP |
3894 | !3C`͚C1 1["4DT3dˇ\4xq݇K3-W r_t|wܭb>R:Rx-v4=%UaJدihgt,}zОV6-l~&cBT:j+?a_Qo.7(Xja* :]TPv9*>h8!< | 3904 | eZ$}Lt]*)j/q4ioޛ4,l>Ϗ078j]n.룝[lE9x_$NXĮĄ#+o& ګKl~w=bStAkNΟG |
3895 | %̟_܇2/{LA#0N6O2Ee%*ݲB#O}/"Os^R{>}LmpP:z$h[06BVzېH*#(ˇMw{<ut+)QJ($~y:feE:G.xf:k麔XNNע!KHbB͖6e✌qp8`/RD?J2jk߭'gN~Oc7XF85()125kjVgzᚚ%5wp$ | 3905 | .X-E.niQ2umѪS1(/nOriMjg@V=\Q,;!jcZƧ:%>*#$\ &h5LA S]CIdT6(x*PzÓxi0ܔf~"쥮j/Z(mҡ*K1t"V˶^j=MS8y B=<m_^4 |
3896 | 'kJ>@6'l$e | 3906 | I:Э⯲Sc |
3897 | YWOYu<gZժ | 3907 | 厺]QDvL"qZ:G#q2[|_E?IFRw\e*MPEUAH5sɟ1(wj[cJAh+l~LtY.s+(0;S}|!0yٙ` |
3898 | ֢sGIwTj& IY9 ŋ!Uä/VQx" | 3908 | 2Tɀauy)X(=Q.YP\bD$Y$i)5'.3Si <ۀOvҖg) uХYaa"^6$00$H2 |
3899 | ^`8j2.t`QIxk@HZ}y!e5zJdž{xR`tLp$Ч4(+JVRM'`a/U2\j͚:QٚTx(9p5H,r* ~IO I /l~RXjxф7*eCn(l?j;u)tvMp0Axn 톃]E8US4+>3XX>bQft2`j8@ | 3909 | ^E.lPg+ |
3910 | * ccYVb<u3UŒnYnrZT5D4s Il``B8P3džL.5Շx | ||
3911 | B%M`&<^ )n-Ū|J?)5T | ||
3912 | wuesx՚/+Q$eP B<-46,nEQ>]s%$5^ZO\&V | ||
3913 | ux].^/(W6_P!J2`{GKd٧dY_7T[b ]$ )k+sR(9R590L2o,UK3 | ||
3914 | 9</:5Ϛv^ | ||
3915 | kmXC'gJ | ||
3916 | nrӁ,{碻~{lTH?*^OIj4|QK9=B~8TwIPQgpywљ8% V#<O+f!e)Ӂf }(;xk1cAք !tC11hUqxxi | ||
3917 | dYǾj.OZN]rb9&B8VYT<7vF<MUP֒A@t`k|qhϱp-x,m(w-cj/7@ | ||
3900 | endstream | 3918 | endstream |
3901 | endobj | 3919 | endobj |
3902 | 912 0 obj << | 3920 | 910 0 obj << |
3903 | /Type /Page | 3921 | /Type /Page |
3904 | /Contents 913 0 R | 3922 | /Contents 911 0 R |
3905 | /Resources 911 0 R | 3923 | /Resources 909 0 R |
3906 | /MediaBox [0 0 595.276 841.89] | 3924 | /MediaBox [0 0 595.276 841.89] |
3907 | /Parent 794 0 R | 3925 | /Parent 792 0 R |
3908 | /Annots [ 909 0 R 910 0 R ] | 3926 | /Annots [ 906 0 R 907 0 R 908 0 R ] |
3909 | >> endobj | 3927 | >> endobj |
3910 | 909 0 obj << | 3928 | 906 0 obj << |
3929 | /Type /Annot | ||
3930 | /Subtype /Link | ||
3931 | /Border[0 0 0]/H/I/C[0 1 0] | ||
3932 | /Rect [224.481 504.223 232.319 514.029] | ||
3933 | /A << /S /GoTo /D (cite.citeulike:2122238) >> | ||
3934 | >> endobj | ||
3935 | 907 0 obj << | ||
3911 | /Type /Annot | 3936 | /Type /Annot |
3912 | /Subtype /Link | 3937 | /Subtype /Link |
3913 | /Border[0 0 0]/H/I/C[1 0 0] | 3938 | /Border[0 0 0]/H/I/C[1 0 0] |
3914 | /Rect [468.227 373.835 490.998 386.384] | 3939 | /Rect [468.227 373.835 490.998 386.384] |
3915 | /A << /S /GoTo /D (equation.1.4.41) >> | 3940 | /A << /S /GoTo /D (equation.2.4.41) >> |
3916 | >> endobj | 3941 | >> endobj |
3917 | 910 0 obj << | 3942 | 908 0 obj << |
3918 | /Type /Annot | 3943 | /Type /Annot |
3919 | /Subtype /Link | 3944 | /Subtype /Link |
3920 | /Border[0 0 0]/H/I/C[1 0 0] | 3945 | /Border[0 0 0]/H/I/C[1 0 0] |
3921 | /Rect [287.663 99.758 310.434 112.301] | 3946 | /Rect [287.663 99.758 310.434 112.301] |
3922 | /A << /S /GoTo /D (equation.1.4.35) >> | 3947 | /A << /S /GoTo /D (equation.2.4.35) >> |
3948 | >> endobj | ||
3949 | 912 0 obj << | ||
3950 | /D [910 0 R /XYZ 38.685 808.874 null] | ||
3951 | >> endobj | ||
3952 | 913 0 obj << | ||
3953 | /D [910 0 R /XYZ 243.675 735.564 null] | ||
3923 | >> endobj | 3954 | >> endobj |
3924 | 914 0 obj << | 3955 | 914 0 obj << |
3925 | /D [912 0 R /XYZ 38.685 808.874 null] | 3956 | /D [910 0 R /XYZ 262.645 664.876 null] |
3926 | >> endobj | 3957 | >> endobj |
3927 | 915 0 obj << | 3958 | 915 0 obj << |
3928 | /D [912 0 R /XYZ 243.675 735.564 null] | 3959 | /D [910 0 R /XYZ 235.284 617.891 null] |
3929 | >> endobj | 3960 | >> endobj |
3930 | 916 0 obj << | 3961 | 916 0 obj << |
3931 | /D [912 0 R /XYZ 262.645 664.876 null] | 3962 | /D [910 0 R /XYZ 263.049 528.713 null] |
3932 | >> endobj | 3963 | >> endobj |
3933 | 917 0 obj << | 3964 | 917 0 obj << |
3934 | /D [912 0 R /XYZ 235.284 617.891 null] | 3965 | /D [910 0 R /XYZ 254.342 481.727 null] |
3935 | >> endobj | 3966 | >> endobj |
3936 | 918 0 obj << | 3967 | 918 0 obj << |
3937 | /D [912 0 R /XYZ 263.049 528.713 null] | 3968 | /D [910 0 R /XYZ 267.014 400.649 null] |
3938 | >> endobj | 3969 | >> endobj |
3939 | 919 0 obj << | 3970 | 919 0 obj << |
3940 | /D [912 0 R /XYZ 254.342 481.727 null] | 3971 | /D [910 0 R /XYZ 62.362 312.639 null] |
3941 | >> endobj | 3972 | >> endobj |
3942 | 920 0 obj << | 3973 | 920 0 obj << |
3943 | /D [912 0 R /XYZ 267.014 400.649 null] | 3974 | /D [910 0 R /XYZ 62.362 314.958 null] |
3944 | >> endobj | 3975 | >> endobj |
3945 | 921 0 obj << | 3976 | 921 0 obj << |
3946 | /D [912 0 R /XYZ 62.362 312.639 null] | 3977 | /D [910 0 R /XYZ 62.362 306.729 null] |
3947 | >> endobj | 3978 | >> endobj |
3948 | 922 0 obj << | 3979 | 922 0 obj << |
3949 | /D [912 0 R /XYZ 62.362 314.958 null] | 3980 | /D [910 0 R /XYZ 62.362 298.5 null] |
3950 | >> endobj | 3981 | >> endobj |
3951 | 923 0 obj << | 3982 | 923 0 obj << |
3952 | /D [912 0 R /XYZ 62.362 306.729 null] | 3983 | /D [910 0 R /XYZ 62.362 290.271 null] |
3953 | >> endobj | 3984 | >> endobj |
3954 | 924 0 obj << | 3985 | 924 0 obj << |
3955 | /D [912 0 R /XYZ 62.362 298.5 null] | 3986 | /D [910 0 R /XYZ 62.362 282.042 null] |
3956 | >> endobj | 3987 | >> endobj |
3957 | 925 0 obj << | 3988 | 925 0 obj << |
3958 | /D [912 0 R /XYZ 62.362 290.271 null] | 3989 | /D [910 0 R /XYZ 62.362 273.813 null] |
3959 | >> endobj | 3990 | >> endobj |
3960 | 926 0 obj << | 3991 | 926 0 obj << |
3961 | /D [912 0 R /XYZ 62.362 282.042 null] | 3992 | /D [910 0 R /XYZ 62.362 265.584 null] |
3962 | >> endobj | 3993 | >> endobj |
3963 | 927 0 obj << | 3994 | 927 0 obj << |
3964 | /D [912 0 R /XYZ 62.362 273.813 null] | 3995 | /D [910 0 R /XYZ 62.362 257.355 null] |
3965 | >> endobj | 3996 | >> endobj |
3966 | 928 0 obj << | 3997 | 928 0 obj << |
3967 | /D [912 0 R /XYZ 62.362 265.584 null] | 3998 | /D [910 0 R /XYZ 62.362 249.126 null] |
3968 | >> endobj | 3999 | >> endobj |
3969 | 929 0 obj << | 4000 | 929 0 obj << |
3970 | /D [912 0 R /XYZ 62.362 257.355 null] | 4001 | /D [910 0 R /XYZ 62.362 240.897 null] |
3971 | >> endobj | 4002 | >> endobj |
3972 | 930 0 obj << | 4003 | 930 0 obj << |
3973 | /D [912 0 R /XYZ 62.362 249.126 null] | 4004 | /D [910 0 R /XYZ 62.362 232.667 null] |
3974 | >> endobj | 4005 | >> endobj |
3975 | 931 0 obj << | 4006 | 931 0 obj << |
3976 | /D [912 0 R /XYZ 62.362 240.897 null] | 4007 | /D [910 0 R /XYZ 62.362 224.438 null] |
3977 | >> endobj | 4008 | >> endobj |
3978 | 932 0 obj << | 4009 | 932 0 obj << |
3979 | /D [912 0 R /XYZ 62.362 232.667 null] | 4010 | /D [910 0 R /XYZ 62.362 216.209 null] |
3980 | >> endobj | 4011 | >> endobj |
3981 | 933 0 obj << | 4012 | 933 0 obj << |
3982 | /D [912 0 R /XYZ 62.362 224.438 null] | 4013 | /D [910 0 R /XYZ 62.362 207.98 null] |
3983 | >> endobj | 4014 | >> endobj |
3984 | 934 0 obj << | 4015 | 934 0 obj << |
3985 | /D [912 0 R /XYZ 62.362 216.209 null] | 4016 | /D [910 0 R /XYZ 62.362 199.751 null] |
3986 | >> endobj | 4017 | >> endobj |
3987 | 935 0 obj << | 4018 | 935 0 obj << |
3988 | /D [912 0 R /XYZ 62.362 207.98 null] | 4019 | /D [910 0 R /XYZ 62.362 191.522 null] |
3989 | >> endobj | 4020 | >> endobj |
3990 | 936 0 obj << | 4021 | 936 0 obj << |
3991 | /D [912 0 R /XYZ 62.362 199.751 null] | 4022 | /D [910 0 R /XYZ 62.362 155.12 null] |
3992 | >> endobj | 4023 | >> endobj |
3993 | 937 0 obj << | 4024 | 937 0 obj << |
3994 | /D [912 0 R /XYZ 62.362 191.522 null] | 4025 | /D [910 0 R /XYZ 62.362 157.439 null] |
3995 | >> endobj | 4026 | >> endobj |
3996 | 938 0 obj << | 4027 | 938 0 obj << |
3997 | /D [912 0 R /XYZ 62.362 155.12 null] | 4028 | /D [910 0 R /XYZ 62.362 149.21 null] |
3998 | >> endobj | 4029 | >> endobj |
3999 | 939 0 obj << | 4030 | 939 0 obj << |
4000 | /D [912 0 R /XYZ 62.362 157.439 null] | 4031 | /D [910 0 R /XYZ 62.362 140.981 null] |
4001 | >> endobj | 4032 | >> endobj |
4002 | 940 0 obj << | 4033 | 940 0 obj << |
4003 | /D [912 0 R /XYZ 62.362 149.21 null] | 4034 | /D [910 0 R /XYZ 62.362 132.752 null] |
4004 | >> endobj | 4035 | >> endobj |
4005 | 941 0 obj << | 4036 | 909 0 obj << |
4006 | /D [912 0 R /XYZ 62.362 140.981 null] | 4037 | /Font << /F39 386 0 R /F78 459 0 R /F55 507 0 R /F56 510 0 R /F61 509 0 R /F59 508 0 R /F44 387 0 R /F71 511 0 R /F60 552 0 R /F81 551 0 R /F110 755 0 R /F64 554 0 R /F68 870 0 R >> |
4007 | >> endobj | ||
4008 | 942 0 obj << | ||
4009 | /D [912 0 R /XYZ 62.362 132.752 null] | ||
4010 | >> endobj | ||
4011 | 911 0 obj << | ||
4012 | /Font << /F39 386 0 R /F78 459 0 R /F55 507 0 R /F56 510 0 R /F61 509 0 R /F59 508 0 R /F44 387 0 R /F71 511 0 R /F60 552 0 R /F81 551 0 R /F110 755 0 R /F64 554 0 R /F68 872 0 R >> | ||
4013 | /ProcSet [ /PDF /Text ] | 4038 | /ProcSet [ /PDF /Text ] |
4014 | >> endobj | 4039 | >> endobj |
4015 | 949 0 obj << | 4040 | 946 0 obj << |
4016 | /Length 2681 | 4041 | /Length 2680 |
4017 | /Filter /FlateDecode | 4042 | /Filter /FlateDecode |
4018 | >> | 4043 | >> |
4019 | stream | 4044 | stream |
@@ -4029,440 +4054,465 @@ BC3a88@?86QMZ]8HË`OCf | |||
4029 | 4054 | ||
4030 | bD';S5 8ݑ4ܨG%c0ҘV2ֵ .;rocvv':n06>è;m | 4055 | bD';S5 8ݑ4ܨG%c0ҘV2ֵ .;rocvv':n06>è;m |
4031 | ,>dr;E^{)@˴Wbڐ | 4056 | ,>dr;E^{)@˴Wbڐ |
4032 | ^,'\.W8<EyK=̫9h4V7y.QExgcRdc:y}ep(г~h2ș>QjZ$߭^�%v[DULjӐخ}p3o$*ETQٹOx1P!mߤGruMpAu^N|3*tU~]ƚD9 V | 4057 | ^,'\.W8<EyK=̫9h4V7y.QExgcRdc:y}ep(г~h2ș>QjZ$߭^�%v[DULjӐخ}p3o$*ETQٹOx1P!mߤGruMpAu^N|3*tU~]Jd;蜳9kUp\V!3mvpA,T!m/Kmeuڄglj2P1J]g*ȟ={r=mWg}jWp4E٢HTC8c1fnmszfq\IYQر3Wf2*+zۻs`dwYlNt?a*s/.iks20·ꠕް*f2W}b[_ŒWc; |
4033 | e2fw)0$ۻBUt^VMxv*nuc[Tߥ|۳G*_۳vxַvLJo__-:<HYTM~*0ԌKjC1ÊȪi6wg囔EhN8qe&㙯7;g Fv1nlDkxv2[R6'\K|Ziϰ {`&y(Z5EQ,ixxa0f*CZfT:nչ\ÔePTr2~RLTZV߷Cz | 4058 | eFf[{0LZ8L+-`.O5ήun}ߛ>0fHO |
4059 | ^(jH;zV {r_s\>9W{0mS퉘v֏qmf-ܵ=(am | ||
4060 | V]0!{3jIEgO;gg|J{>ǿ%c3GlS5Z]P4s },meԌQ0E%Qr`ء2-Yϡ"IG | ||
4034 | endstream | 4061 | endstream |
4035 | endobj | 4062 | endobj |
4036 | 948 0 obj << | 4063 | 945 0 obj << |
4037 | /Type /Page | 4064 | /Type /Page |
4038 | /Contents 949 0 R | 4065 | /Contents 946 0 R |
4039 | /Resources 947 0 R | 4066 | /Resources 944 0 R |
4040 | /MediaBox [0 0 595.276 841.89] | 4067 | /MediaBox [0 0 595.276 841.89] |
4041 | /Parent 959 0 R | 4068 | /Parent 956 0 R |
4042 | /Annots [ 945 0 R 946 0 R ] | 4069 | /Annots [ 942 0 R 943 0 R ] |
4043 | >> endobj | 4070 | >> endobj |
4044 | 945 0 obj << | 4071 | 942 0 obj << |
4045 | /Type /Annot | 4072 | /Type /Annot |
4046 | /Subtype /Link | 4073 | /Subtype /Link |
4047 | /Border[0 0 0]/H/I/C[1 0 0] | 4074 | /Border[0 0 0]/H/I/C[1 0 0] |
4048 | /Rect [170.564 351.161 193.334 365.927] | 4075 | /Rect [170.564 351.161 193.334 365.927] |
4049 | /A << /S /GoTo /D (equation.1.4.43) >> | 4076 | /A << /S /GoTo /D (equation.2.4.43) >> |
4050 | >> endobj | 4077 | >> endobj |
4051 | 946 0 obj << | 4078 | 943 0 obj << |
4052 | /Type /Annot | 4079 | /Type /Annot |
4053 | /Subtype /Link | 4080 | /Subtype /Link |
4054 | /Border[0 0 0]/H/I/C[1 0 0] | 4081 | /Border[0 0 0]/H/I/C[1 0 0] |
4055 | /Rect [107.489 191.162 130.259 203.704] | 4082 | /Rect [107.489 191.162 130.259 203.704] |
4056 | /A << /S /GoTo /D (equation.1.4.45) >> | 4083 | /A << /S /GoTo /D (equation.2.4.45) >> |
4057 | >> endobj | 4084 | >> endobj |
4058 | 950 0 obj << | 4085 | 947 0 obj << |
4059 | /D [948 0 R /XYZ 61.362 808.874 null] | 4086 | /D [945 0 R /XYZ 61.362 808.874 null] |
4060 | >> endobj | 4087 | >> endobj |
4061 | 69 0 obj << | 4088 | 69 0 obj << |
4062 | /D [948 0 R /XYZ 62.362 771.012 null] | 4089 | /D [945 0 R /XYZ 62.362 771.012 null] |
4090 | >> endobj | ||
4091 | 948 0 obj << | ||
4092 | /D [945 0 R /XYZ 62.362 683.162 null] | ||
4093 | >> endobj | ||
4094 | 949 0 obj << | ||
4095 | /D [945 0 R /XYZ 201.832 575.489 null] | ||
4096 | >> endobj | ||
4097 | 950 0 obj << | ||
4098 | /D [945 0 R /XYZ 205.283 514.425 null] | ||
4063 | >> endobj | 4099 | >> endobj |
4064 | 951 0 obj << | 4100 | 951 0 obj << |
4065 | /D [948 0 R /XYZ 62.362 683.162 null] | 4101 | /D [945 0 R /XYZ 228.469 455.747 null] |
4066 | >> endobj | 4102 | >> endobj |
4067 | 952 0 obj << | 4103 | 952 0 obj << |
4068 | /D [948 0 R /XYZ 201.832 575.489 null] | 4104 | /D [945 0 R /XYZ 224.152 382.997 null] |
4069 | >> endobj | 4105 | >> endobj |
4070 | 953 0 obj << | 4106 | 953 0 obj << |
4071 | /D [948 0 R /XYZ 205.283 514.425 null] | 4107 | /D [945 0 R /XYZ 150.556 322.101 null] |
4072 | >> endobj | 4108 | >> endobj |
4073 | 954 0 obj << | 4109 | 954 0 obj << |
4074 | /D [948 0 R /XYZ 228.469 455.747 null] | 4110 | /D [945 0 R /XYZ 145.443 258.9 null] |
4075 | >> endobj | 4111 | >> endobj |
4076 | 955 0 obj << | 4112 | 955 0 obj << |
4077 | /D [948 0 R /XYZ 224.152 382.997 null] | 4113 | /D [945 0 R /XYZ 189.311 162.102 null] |
4078 | >> endobj | ||
4079 | 956 0 obj << | ||
4080 | /D [948 0 R /XYZ 150.556 322.101 null] | ||
4081 | >> endobj | ||
4082 | 957 0 obj << | ||
4083 | /D [948 0 R /XYZ 145.443 258.9 null] | ||
4084 | >> endobj | 4114 | >> endobj |
4085 | 958 0 obj << | 4115 | 944 0 obj << |
4086 | /D [948 0 R /XYZ 189.311 162.102 null] | ||
4087 | >> endobj | ||
4088 | 947 0 obj << | ||
4089 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F78 459 0 R /F71 511 0 R /F61 509 0 R /F59 508 0 R /F65 718 0 R >> | 4116 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F78 459 0 R /F71 511 0 R /F61 509 0 R /F59 508 0 R /F65 718 0 R >> |
4090 | /ProcSet [ /PDF /Text ] | 4117 | /ProcSet [ /PDF /Text ] |
4091 | >> endobj | 4118 | >> endobj |
4092 | 967 0 obj << | 4119 | 964 0 obj << |
4093 | /Length 3121 | 4120 | /Length 3120 |
4094 | /Filter /FlateDecode | 4121 | /Filter /FlateDecode |
4095 | >> | 4122 | >> |
4096 | stream | 4123 | stream |
4097 | x[ݓ۶B'jb1&Liδ-Nu-J}w | 4124 | x[s_591'dڙ&u\gڞgpDKɒO$A]],~b:,'g?}Z cQO/&BIn4b.qUNYrOD.NgҘ?m*TV~7EOz}:c0z6a`"Lgg|ekr"m7g:ˆ3:2ir 2y=5"T'b[Nj?yEkx3BXb#X|H~ZʾdɌ4,FRH]t̀ zeyU_Nyf3 ԠwJwCڗ}ܾܸ;u?qzK|^vJ%e>AgGǻƉxνHQ(P$ПqZfrQ<K* _ї)^N,%-/|#uOJkrtuY_kXQґXkC#nYZ\r_ܘf=(;"&gW*Ykfg5j5~$^JWjUei[RȦee:S9;]XѐB":ThJ\K̚)6+kjWҫg^Ͻ=v-T`.KZLR&d?ӢeoЮoqwJ].pFWTk)k6F&O{dq71yG]W|rQ"o5sQ)y;p(Jۍú:67){2lRRx^$]ص |
4098 | tݶ>,WN</vyld*DX\|ゥB.9w`c T* $EtF | 4125 | |8L"@_-& pvl0DZٙ9r3qEgGNev}gF`3rgR~>Pwxt{z |
4099 | zrY{"EBy2eH?X$غި | 4126 | 7P23ɵ+zBM6 ?x'5hN#Cono!8B]`XVc8bKcX4(0 |
4100 | Hgv 91WHh `W0q}p6:ψҭgs\liX, lsx~hƆN qwUb'_:8}$|5hu,2$miTg!h-:`d75ZϸS | 4127 | ;OITnGx !&,(16BiL Sr9>3K4 |
4101 | tXo5*H7y/K|0oCEªѥye ådȵVtneKJzlfO܂ے6ueޱnh?\qL0#ZL+Hw,FJp^di^N܍tLf}#+hZ(p܌8మɴEʳ2MK:ԒVv'Tv_- | 4128 | \xƣȵlGsM TsRD |
4102 | [d(RLs;6R,$D΄\ V\tԼS:s]tcӓ~ dqHE | 4129 | Nߥ/է.{s^6sE$7l&w˾t=>apwfmKsߝq0}6wnZ0-Rq*H6/1R7Jd=X.[Zܞ|GrsX>q#|(!,{/:UEڈ'CcL& GQ#9Gid%BCJ؎|$%6c,niqw6}ePgjz~;Щ_['74moxP,o74oV({ eE]~3pS&9C_:Gow,15K;3<Ɨ,کiOSn> |
4103 | iQHwV^$4ajtA>z9WhBt$ A | 4130 | M?̴z!BSέmvN|O!*yK6/*اeF, |
4104 | BMc \&"e 8(OZ'-BOP\uf s[:{٫tѪӞYGQ՝8(bA*YFȋN|NW.h | 4131 | ,鱓Kt'>T~xCźF펁Jn |
4105 | gO>WDr7f,phh N\;q\M[ul44@)~8A|>:NSq8r]}ddP\|Nh p{qv d Lcư|@NιA(30L Ocnj\O&#b3;Guh>s.NQhRգG Q?4!\W&~faVl\Tٺ>xdwR@ 4#~z=8ZeOh̕`hЬhڮ62;WN:̿vV%vQz>kw | 4132 | O3c^_իu;ݶYoCMyՌlC0:A`mvTjg9Et |
4106 | 8: | 4133 | (__b |
4107 | [7Wz | 4134 | ӭeq0-f,gztj͍1 |
4108 | +Q`!Lh\zq1U$fڶ] _ Ѱ`M;2g0֒8wpFu%+ZĪ(LGkjK!ո_`t&:*NUC?(^L+$瀢uKWTz30by!br\Odr"_U6"bSWMtqJѺ"R&Lv[G/q?ngIS kN?a{?iﯢG5ķ=`y1)Dg|rDz9ƯuZpd&ˆU|4-&V]A:w.7cM3+\0"S4BΑF>r[5:4 7W9`ޯD1" | 4135 | >Wa|NĄ,eʌu^2|h#|<-uK |
4109 | ӛ1y/eO1FXF|bi}[XLPoEhHa_H'O .T/A1S#0)Buh^(9GX5?( | 4136 | o#(G^(d&2G>5 YrPpR z6뙐Kp4T\QoiF[/oE82aX?[Ð}$Av 4 VlVc-*_"sAoUw,G[- 2fXur,NZ |
4110 | n/qXԥ}s #\c¼rԻ[3q>x,̱ ٲ̩ | 4137 | G+K |
4111 | endstream | 4138 | endstream |
4112 | endobj | 4139 | endobj |
4113 | 966 0 obj << | 4140 | 963 0 obj << |
4114 | /Type /Page | 4141 | /Type /Page |
4115 | /Contents 967 0 R | 4142 | /Contents 964 0 R |
4116 | /Resources 965 0 R | 4143 | /Resources 962 0 R |
4117 | /MediaBox [0 0 595.276 841.89] | 4144 | /MediaBox [0 0 595.276 841.89] |
4118 | /Parent 959 0 R | 4145 | /Parent 956 0 R |
4119 | /Annots [ 962 0 R ] | 4146 | /Annots [ 957 0 R 958 0 R ] |
4120 | >> endobj | 4147 | >> endobj |
4121 | 962 0 obj << | 4148 | 957 0 obj << |
4149 | /Type /Annot | ||
4150 | /Subtype /Link | ||
4151 | /Border[0 0 0]/H/I/C[0 1 0] | ||
4152 | /Rect [226.835 395.921 234.673 405.726] | ||
4153 | /A << /S /GoTo /D (cite.citeulike:2122238) >> | ||
4154 | >> endobj | ||
4155 | 958 0 obj << | ||
4122 | /Type /Annot | 4156 | /Type /Annot |
4123 | /Subtype /Link | 4157 | /Subtype /Link |
4124 | /Border[0 0 0]/H/I/C[1 0 0] | 4158 | /Border[0 0 0]/H/I/C[1 0 0] |
4125 | /Rect [467.665 318.553 490.435 331.096] | 4159 | /Rect [467.665 318.553 490.435 331.096] |
4126 | /A << /S /GoTo /D (equation.1.4.52) >> | 4160 | /A << /S /GoTo /D (equation.2.4.52) >> |
4127 | >> endobj | 4161 | >> endobj |
4128 | 968 0 obj << | 4162 | 965 0 obj << |
4129 | /D [966 0 R /XYZ 38.685 808.874 null] | 4163 | /D [963 0 R /XYZ 38.685 808.874 null] |
4130 | >> endobj | 4164 | >> endobj |
4131 | 73 0 obj << | 4165 | 73 0 obj << |
4132 | /D [966 0 R /XYZ 62.362 771.012 null] | 4166 | /D [963 0 R /XYZ 62.362 771.012 null] |
4167 | >> endobj | ||
4168 | 966 0 obj << | ||
4169 | /D [963 0 R /XYZ 142.886 637.115 null] | ||
4170 | >> endobj | ||
4171 | 967 0 obj << | ||
4172 | /D [963 0 R /XYZ 155.265 608.114 null] | ||
4173 | >> endobj | ||
4174 | 968 0 obj << | ||
4175 | /D [963 0 R /XYZ 249.418 518.012 null] | ||
4133 | >> endobj | 4176 | >> endobj |
4134 | 969 0 obj << | 4177 | 969 0 obj << |
4135 | /D [966 0 R /XYZ 142.886 637.115 null] | 4178 | /D [963 0 R /XYZ 239.206 442.964 null] |
4136 | >> endobj | 4179 | >> endobj |
4137 | 970 0 obj << | 4180 | 970 0 obj << |
4138 | /D [966 0 R /XYZ 155.265 608.114 null] | 4181 | /D [963 0 R /XYZ 246.125 350.87 null] |
4139 | >> endobj | 4182 | >> endobj |
4140 | 971 0 obj << | 4183 | 971 0 obj << |
4141 | /D [966 0 R /XYZ 249.418 518.012 null] | 4184 | /D [963 0 R /XYZ 62.362 268.412 null] |
4142 | >> endobj | 4185 | >> endobj |
4143 | 972 0 obj << | 4186 | 972 0 obj << |
4144 | /D [966 0 R /XYZ 239.206 442.964 null] | 4187 | /D [963 0 R /XYZ 215.242 177.64 null] |
4145 | >> endobj | 4188 | >> endobj |
4146 | 973 0 obj << | 4189 | 973 0 obj << |
4147 | /D [966 0 R /XYZ 246.125 350.87 null] | 4190 | /D [963 0 R /XYZ 161.906 101.596 null] |
4148 | >> endobj | ||
4149 | 974 0 obj << | ||
4150 | /D [966 0 R /XYZ 62.362 268.412 null] | ||
4151 | >> endobj | ||
4152 | 975 0 obj << | ||
4153 | /D [966 0 R /XYZ 215.242 177.64 null] | ||
4154 | >> endobj | 4191 | >> endobj |
4155 | 976 0 obj << | 4192 | 962 0 obj << |
4156 | /D [966 0 R /XYZ 161.906 101.596 null] | ||
4157 | >> endobj | ||
4158 | 965 0 obj << | ||
4159 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F61 509 0 R /F78 459 0 R /F63 722 0 R /F65 718 0 R >> | 4193 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F61 509 0 R /F78 459 0 R /F63 722 0 R /F65 718 0 R >> |
4160 | /ProcSet [ /PDF /Text ] | 4194 | /ProcSet [ /PDF /Text ] |
4161 | >> endobj | 4195 | >> endobj |
4162 | 986 0 obj << | 4196 | 982 0 obj << |
4163 | /Length 3019 | 4197 | /Length 3012 |
4164 | /Filter /FlateDecode | 4198 | /Filter /FlateDecode |
4165 | >> | 4199 | >> |
4166 | stream | 4200 | stream |
4167 | x\Yo~ׯDݽslp$V | 4201 | x\Ys~ׯY1Ǻα-'UJl?p)X[MJ*>8 |
4168 | rHȑ P1tB<$[-mmV; | 4202 | Y tQfke&XfkecgXQ3,yDOedX*dXᥔu*KΰD)Êj|.hAd7dfd5dd :RO8J= <)b |
4169 | zSR噳NNw&wbGp4.`{Wg3g?'lc}5.H3:fk}.!LWvvqt贑 | 4203 | M-Oա <xdGfOޅ4jI7L&2700<[F[DsB!&BQ= e=8u9p6X}S7uV~*ZɝV,KP |
4170 | |T:( | 4204 | bވa5!z(EFl9uE[kb">1 |b.VF/CAK=ρ5,l8|S\ ,XnsItt2KO* $|N5&D]|IeIVBh7ŅKy$a|E44|Vp!btUlH~⊃;BkFXgJ??boY,S |
4171 | OZE*Ó<ģ$ZnN५HN: ߤI;n|"evJi糘oE>"sȺt.sϢW8ˤgӐ`8[6$9HpoeCs"u?AjCsTnH})̆;.sd$ye$Zx+{_0ݹrk5!*8ʝ?115ϕ:ۙeVU | 4205 | ˻9S? |
4172 | 'z裑/qeՏVnk2wL[GR*ݦze,߳xX3eవڇ|j`Yo:/vC0-U:꿤ǓKj'IDCbd>!#d%!#9-.\$0۞4֛|Fl(nW[_6:[@r&8+vv/C?w\:`] | 4206 | Q0 |
4173 | ʜRRH>2R*_*%ԠۛezǮ'k! A3/K8]_8KSiXr>9=L ɞ'㈞9}R)Q_+1i?m @F080u $ls;#CrGw$ ^,ӁU"wBPvhީZ{ĥ|(;V3YW=kK҉P>rWG) S@ | 4207 | |
4174 | ѿ֍$0 | ||
4175 | ?xn@K!W~i)ߡfQ3aܢzWU@`SX1|}ӗ帊QEE%4 X~ Mǥt.u.C*ja.sR-༧fAĀPD9qZriaK'0aï:O?CHxoP?Ԑi% | ||
4176 | endstream | 4208 | endstream |
4177 | endobj | 4209 | endobj |
4178 | 985 0 obj << | 4210 | 981 0 obj << |
4179 | /Type /Page | 4211 | /Type /Page |
4180 | /Contents 986 0 R | 4212 | /Contents 982 0 R |
4181 | /Resources 984 0 R | 4213 | /Resources 980 0 R |
4182 | /MediaBox [0 0 595.276 841.89] | 4214 | /MediaBox [0 0 595.276 841.89] |
4183 | /Parent 959 0 R | 4215 | /Parent 956 0 R |
4184 | /Annots [ 963 0 R 964 0 R 978 0 R 979 0 R 980 0 R 981 0 R ] | 4216 | /Annots [ 959 0 R 960 0 R 961 0 R 974 0 R 975 0 R 976 0 R 977 0 R ] |
4185 | >> endobj | 4217 | >> endobj |
4186 | 963 0 obj << | 4218 | 959 0 obj << |
4187 | /Type /Annot | 4219 | /Type /Annot |
4188 | /Subtype /Link | 4220 | /Subtype /Link |
4189 | /Border[0 0 0]/H/I/C[1 0 0] | 4221 | /Border[0 0 0]/H/I/C[1 0 0] |
4190 | /Rect [292.29 755.742 315.061 768.284] | 4222 | /Rect [292.29 755.742 315.061 768.284] |
4191 | /A << /S /GoTo /D (equation.1.4.52) >> | 4223 | /A << /S /GoTo /D (equation.2.4.52) >> |
4192 | >> endobj | 4224 | >> endobj |
4193 | 964 0 obj << | 4225 | 960 0 obj << |
4226 | /Type /Annot | ||
4227 | /Subtype /Link | ||
4228 | /Border[0 0 0]/H/I/C[0 1 0] | ||
4229 | /Rect [435.347 642.056 443.185 651.861] | ||
4230 | /A << /S /GoTo /D (cite.citeulike:2122238) >> | ||
4231 | >> endobj | ||
4232 | 961 0 obj << | ||
4194 | /Type /Annot | 4233 | /Type /Annot |
4195 | /Subtype /Link | 4234 | /Subtype /Link |
4196 | /Border[0 0 0]/H/I/C[1 0 0] | 4235 | /Border[0 0 0]/H/I/C[1 0 0] |
4197 | /Rect [338.783 605.645 361.554 618.188] | 4236 | /Rect [338.783 605.645 361.554 618.188] |
4198 | /A << /S /GoTo /D (equation.1.4.57) >> | 4237 | /A << /S /GoTo /D (equation.2.4.57) >> |
4199 | >> endobj | 4238 | >> endobj |
4200 | 978 0 obj << | 4239 | 974 0 obj << |
4201 | /Type /Annot | 4240 | /Type /Annot |
4202 | /Subtype /Link | 4241 | /Subtype /Link |
4203 | /Border[0 0 0]/H/I/C[1 0 0] | 4242 | /Border[0 0 0]/H/I/C[1 0 0] |
4204 | /Rect [504.991 489.641 527.761 502.183] | 4243 | /Rect [504.991 489.641 527.761 502.183] |
4205 | /A << /S /GoTo /D (equation.1.4.60) >> | 4244 | /A << /S /GoTo /D (equation.2.4.60) >> |
4206 | >> endobj | 4245 | >> endobj |
4207 | 979 0 obj << | 4246 | 975 0 obj << |
4208 | /Type /Annot | 4247 | /Type /Annot |
4209 | /Subtype /Link | 4248 | /Subtype /Link |
4210 | /Border[0 0 0]/H/I/C[1 0 0] | 4249 | /Border[0 0 0]/H/I/C[1 0 0] |
4211 | /Rect [61.366 438.503 87.376 451.045] | 4250 | /Rect [61.366 438.503 87.376 451.045] |
4212 | /A << /S /GoTo /D (theorem.1.4.3) >> | 4251 | /A << /S /GoTo /D (theorem.2.4.3) >> |
4213 | >> endobj | 4252 | >> endobj |
4214 | 980 0 obj << | 4253 | 976 0 obj << |
4215 | /Type /Annot | 4254 | /Type /Annot |
4216 | /Subtype /Link | 4255 | /Subtype /Link |
4217 | /Border[0 0 0]/H/I/C[1 0 0] | 4256 | /Border[0 0 0]/H/I/C[1 0 0] |
4218 | /Rect [61.366 360.369 87.376 374.671] | 4257 | /Rect [61.366 360.369 87.376 374.671] |
4219 | /A << /S /GoTo /D (theorem.1.4.2) >> | 4258 | /A << /S /GoTo /D (theorem.2.4.2) >> |
4220 | >> endobj | 4259 | >> endobj |
4221 | 981 0 obj << | 4260 | 977 0 obj << |
4222 | /Type /Annot | 4261 | /Type /Annot |
4223 | /Subtype /Link | 4262 | /Subtype /Link |
4224 | /Border[0 0 0]/H/I/C[1 0 0] | 4263 | /Border[0 0 0]/H/I/C[1 0 0] |
4225 | /Rect [61.366 281.323 84.136 293.866] | 4264 | /Rect [61.366 281.323 84.136 293.866] |
4226 | /A << /S /GoTo /D (equation.1.4.62) >> | 4265 | /A << /S /GoTo /D (equation.2.4.62) >> |
4266 | >> endobj | ||
4267 | 983 0 obj << | ||
4268 | /D [981 0 R /XYZ 61.362 808.874 null] | ||
4269 | >> endobj | ||
4270 | 984 0 obj << | ||
4271 | /D [981 0 R /XYZ 179.37 730.056 null] | ||
4272 | >> endobj | ||
4273 | 985 0 obj << | ||
4274 | /D [981 0 R /XYZ 253.213 672.054 null] | ||
4275 | >> endobj | ||
4276 | 986 0 obj << | ||
4277 | /D [981 0 R /XYZ 169.075 579.959 null] | ||
4227 | >> endobj | 4278 | >> endobj |
4228 | 987 0 obj << | 4279 | 987 0 obj << |
4229 | /D [985 0 R /XYZ 61.362 808.874 null] | 4280 | /D [981 0 R /XYZ 167.816 521.957 null] |
4230 | >> endobj | 4281 | >> endobj |
4231 | 988 0 obj << | 4282 | 988 0 obj << |
4232 | /D [985 0 R /XYZ 179.37 730.056 null] | 4283 | /D [981 0 R /XYZ 186.371 410.755 null] |
4233 | >> endobj | 4284 | >> endobj |
4234 | 989 0 obj << | 4285 | 989 0 obj << |
4235 | /D [985 0 R /XYZ 253.213 672.054 null] | 4286 | /D [981 0 R /XYZ 195.717 332.622 null] |
4236 | >> endobj | 4287 | >> endobj |
4237 | 990 0 obj << | 4288 | 990 0 obj << |
4238 | /D [985 0 R /XYZ 169.075 579.959 null] | 4289 | /D [981 0 R /XYZ 160.175 255.638 null] |
4239 | >> endobj | 4290 | >> endobj |
4240 | 991 0 obj << | 4291 | 991 0 obj << |
4241 | /D [985 0 R /XYZ 167.816 521.957 null] | 4292 | /D [981 0 R /XYZ 204.229 112.267 null] |
4242 | >> endobj | 4293 | >> endobj |
4243 | 992 0 obj << | 4294 | 980 0 obj << |
4244 | /D [985 0 R /XYZ 186.371 410.755 null] | ||
4245 | >> endobj | ||
4246 | 993 0 obj << | ||
4247 | /D [985 0 R /XYZ 195.717 332.622 null] | ||
4248 | >> endobj | ||
4249 | 994 0 obj << | ||
4250 | /D [985 0 R /XYZ 160.175 255.638 null] | ||
4251 | >> endobj | ||
4252 | 995 0 obj << | ||
4253 | /D [985 0 R /XYZ 204.229 112.267 null] | ||
4254 | >> endobj | ||
4255 | 984 0 obj << | ||
4256 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F59 508 0 R /F63 722 0 R /F61 509 0 R /F65 718 0 R >> | 4295 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F59 508 0 R /F63 722 0 R /F61 509 0 R /F65 718 0 R >> |
4257 | /ProcSet [ /PDF /Text ] | 4296 | /ProcSet [ /PDF /Text ] |
4258 | >> endobj | 4297 | >> endobj |
4259 | 4298 | ||
4260 | 1009 0 obj << | 4299 | 1001 0 obj << |
4261 | /Length 5001 | 4300 | /Length 4983 |
4262 | /Filter /FlateDecode | 4301 | /Filter /FlateDecode |
4263 | >> | 4302 | >> |
4264 | stream | 4303 | stream |
4265 | x\Yo#9~_!0Xb>QX3~.PSu˲[h۪TGϯ8Lf&SvYubL1</S.rg?LZ(%szq~Z! =\\3|}le]jq)-_lo[b7;z>F/:ϟ㙂BuZo|%)LwTvaHŋgL#5tGv | 4304 | x\Ys~`*u}S~2I%w^2VU(5)ۓ_tME/TX4j&gzg_ѤR"9g3zRӋ_-\w'\Mibu]/rs,z'cts O_}{g |
4266 | ퟜW&)=.3젲BX<դE)Hŵ | 4305 | Z356fiv~+92¤8{G%ofDxg$<[v{ୟ_`ߥ=gs]`<_ѹqeCߨ2mRy&͂HA*ExfVvuJLOgCE=hG4krV$(IM1_ kfJPJtjybtPW=!krӘi5o%-\V8aUড়S}nq? [ϑ7T?A]MV |
4267 | NGea:\Y«*h(kL,V=7mюh1}IWw)Zqn`9LoUErLP̩__NW {Ye<w9 | 4306 | gEeFvsX: |
4268 | ~z_r;,s | 4307 | >up20XdNhUj45CnhUedZ>$A |
4269 | (g~%H뾯zOîqC_n>J͍n/gyRafA}X*q FPb飈R?eoYQ酋]]-thDX3#<-M | 4308 | j_"9vQ(/tgj wvG-AȻ3\u%C RFa/S7van&*C0ؗ6Jr"lIa*ElK;DF |
4270 | TP/ѡX ~+buפI== | 4309 | )"mW2y(ud~k|$䢮sP:^(*)+UiZ V12yL72<J&_L6'G{drjvEg? |
4271 | )"Xd#sWjX=v˺N hx̲zV&$ GSdrWn0/d(l6l-W'G329 h8͓~4FCH/l{sq!9!}搝Xh'ls ,f=rG@+v۳6ZOr}S2Wz8K:Efc7yd<͖rȹc9o7 Kͳdʋ" | 4310 | X!=sa!}C |
4272 | u|p>}ގe']gԮ.WC1@qz! ;'e B"pKO|AkU^~OICw | 4311 | dy{rxP [QGg2jjK]2c |
4273 | 5t>ZsW:}N?Ա1>M G | 4312 | OJXHGgF'h]zllAUJriMި=K |
4274 | dy9<(-˨#3MuHM2c | 4313 | XmmIr=Tר8OQ(5O4PۮPl;XGʇ=>#dxXh@5F_u3ںXn" "6^),+YL]ɿ:Q4.ȱ!NJ^FyN՜W)YbTY|9#ik |
4275 | OJXH<#3^ | 4314 | &dz(g`Ĥ6H`o(P |
4276 | I | 4315 | e'%7(k =dx5ׯ]Co`A}qI*tuw")jp0%`*L4->I\ùr?}G>@60#5 GOۚS"(aw FdZMqZlpDġ*9K5ɊN65'KNwvxqPM;;XvxImƪ`*pJh8M1 > |
4277 | gەaƉ`D_=ve H}2JAU]Y_Dudd^Y{!}eWX7g | 4316 | ^Ao=QnI8\k]dIGʄuؕy%ݕ:MIxBwn:8W8ێ&=ijKC]'HN6k~aəIO(`tԤ[ <RU3~h:vI%?%W\K~Y93`Ij;zK-]/{!XHNmd6ش!F1TEм@qVm*uں |
4278 | (9zW%L# | 4317 | &^w4"Ta4op Kt]uId̷Olu~}b<O4Hd6(P C5FG7hķTˣ_, Ly<ȩd»LkDf, |
4279 | S\S5j2#;.;1h1;#A;> | 4318 | tRe2B3;$ |
4280 | \Is-e̘5 3[\麥]tjq7b Frwl ޢ8Ħ 1( x-v\a"Z | 4319 | ?`Rp')dDP dWKnZ53SINc#drj_k8gwZ3cR! DS` |
4281 | 0=z0ДЋ P AXoydXG$kAH>~%#^}I35Y=1y*X畄FٲeE=+4P1X`H | 4320 | mOS/FL'4'z&Tl֛b+} |
4282 | (]qO,=mk`߅t.Uh@,'|HoP$kw | 4321 | y01A/$JWĭ |
4283 | 7xziA Iǧi'tHc2oT!`DH:D> | 4322 | A*LK睁G5p£,<b=rO@/^V@{> p{9oNL; |
4284 | A*̐ | 4323 | F?`7)0z9 |
4285 | 9iPGYx#zG8Tepܿ=xe2 | 4324 | >E?= |
4286 | B 6ڇ#0=FNEkzC]P. ƝACG\Ĵ=k`qѐA{IfqdU$8@0ʨPVΑmXuTRxBc6,WD 5T | 4325 | 8G]@#;h=_:*Jj5i{"!J 6Tg~S{qdU(8@0ʨPVΑmXuTR -X |
4287 | Q#@P&[}ӹґnj>&@|Jv3CcT | 4326 | cA,AvÝ| îQiaN!ِK ')y2;t@>?F3E->O tLΥjBl!SC7Wy9m&bJbrf7Ӕ9Yr-{[{0)VUo{#=j#/@DV]o(GaX6`HS'dgE_ td)+н5ı(+ |
4288 | z}asf"~u@zp@(SxX[#iJ~]"_)xdz>2w"!wrK^U8-r3mqW0|@-jsr%'[Nh۔MHD`(SsDEygX{ 0t"sj'{^Cc(L#}J4aL | 4327 | g9Cp"Dq9<Ee{X{JF\NyH٬o{gt |
4289 | 1Z0{#Z< | 4328 | Hx |
4290 | 1$˙oH }b{=N4a]7#u3p8"w»_0?lQ/i)x|Zou)194AcCuFhaPkHos^Xf4YV^4N'/ #|KכVLHP9揋9`Q^r#ׅ8g.w.0`FA>`O(0sBIGW'\k6|&ٜNڙ_aX | 4329 | FD+V! ƉG0ʇ79`Q^s"W81ɃqxĨ"wN'HUqxD9ƕjB9S9A[*g']X |
4291 | endstream | 4330 | endstream |
4292 | endobj | 4331 | endobj |
4293 | 1008 0 obj << | 4332 | 1000 0 obj << |
4294 | /Type /Page | 4333 | /Type /Page |
4295 | /Contents 1009 0 R | 4334 | /Contents 1001 0 R |
4296 | /Resources 1007 0 R | 4335 | /Resources 999 0 R |
4297 | /MediaBox [0 0 595.276 841.89] | 4336 | /MediaBox [0 0 595.276 841.89] |
4298 | /Parent 959 0 R | 4337 | /Parent 956 0 R |
4299 | /Annots [ 982 0 R 983 0 R 1001 0 R 1002 0 R ] | 4338 | /Annots [ 978 0 R 979 0 R 992 0 R 993 0 R 994 0 R ] |
4300 | >> endobj | 4339 | >> endobj |
4301 | 982 0 obj << | 4340 | 978 0 obj << |
4302 | /Type /Annot | 4341 | /Type /Annot |
4303 | /Subtype /Link | 4342 | /Subtype /Link |
4304 | /Border[0 0 0]/H/I/C[1 0 0] | 4343 | /Border[0 0 0]/H/I/C[1 0 0] |
4305 | /Rect [342.286 697.739 365.057 710.282] | 4344 | /Rect [342.286 697.739 365.057 710.282] |
4306 | /A << /S /GoTo /D (equation.1.4.60) >> | 4345 | /A << /S /GoTo /D (equation.2.4.60) >> |
4307 | >> endobj | 4346 | >> endobj |
4308 | 983 0 obj << | 4347 | 979 0 obj << |
4309 | /Type /Annot | 4348 | /Type /Annot |
4310 | /Subtype /Link | 4349 | /Subtype /Link |
4311 | /Border[0 0 0]/H/I/C[1 0 0] | 4350 | /Border[0 0 0]/H/I/C[1 0 0] |
4312 | /Rect [141.13 639.067 167.14 653.015] | 4351 | /Rect [141.13 639.067 167.14 653.015] |
4313 | /A << /S /GoTo /D (theorem.1.4.2) >> | 4352 | /A << /S /GoTo /D (theorem.2.4.2) >> |
4314 | >> endobj | 4353 | >> endobj |
4315 | 1001 0 obj << | 4354 | 992 0 obj << |
4355 | /Type /Annot | ||
4356 | /Subtype /Link | ||
4357 | /Border[0 0 0]/H/I/C[0 1 0] | ||
4358 | /Rect [472.61 549.962 480.449 559.767] | ||
4359 | /A << /S /GoTo /D (cite.citeulike:2122238) >> | ||
4360 | >> endobj | ||
4361 | 993 0 obj << | ||
4316 | /Type /Annot | 4362 | /Type /Annot |
4317 | /Subtype /Link | 4363 | /Subtype /Link |
4318 | /Border[0 0 0]/H/I/C[1 0 0] | 4364 | /Border[0 0 0]/H/I/C[1 0 0] |
4319 | /Rect [487.048 449.462 503.972 462.004] | 4365 | /Rect [487.048 449.462 503.972 462.004] |
4320 | /A << /S /GoTo /D (figure.1.3) >> | 4366 | /A << /S /GoTo /D (figure.2.3) >> |
4321 | >> endobj | 4367 | >> endobj |
4322 | 1002 0 obj << | 4368 | 994 0 obj << |
4323 | /Type /Annot | 4369 | /Type /Annot |
4324 | /Subtype /Link | 4370 | /Subtype /Link |
4325 | /Border[0 0 0]/H/I/C[1 0 0] | 4371 | /Border[0 0 0]/H/I/C[1 0 0] |
4326 | /Rect [211.996 168.686 234.767 181.229] | 4372 | /Rect [211.996 168.686 234.767 181.229] |
4327 | /A << /S /GoTo /D (equation.1.4.55) >> | 4373 | /A << /S /GoTo /D (equation.2.4.55) >> |
4374 | >> endobj | ||
4375 | 1002 0 obj << | ||
4376 | /D [1000 0 R /XYZ 38.685 808.874 null] | ||
4377 | >> endobj | ||
4378 | 1003 0 obj << | ||
4379 | /D [1000 0 R /XYZ 215.399 730.056 null] | ||
4380 | >> endobj | ||
4381 | 1004 0 obj << | ||
4382 | /D [1000 0 R /XYZ 200.684 672.054 null] | ||
4383 | >> endobj | ||
4384 | 1005 0 obj << | ||
4385 | /D [1000 0 R /XYZ 182.554 614.051 null] | ||
4386 | >> endobj | ||
4387 | 1006 0 obj << | ||
4388 | /D [1000 0 R /XYZ 62.362 427.434 null] | ||
4389 | >> endobj | ||
4390 | 1007 0 obj << | ||
4391 | /D [1000 0 R /XYZ 62.362 429.753 null] | ||
4392 | >> endobj | ||
4393 | 1008 0 obj << | ||
4394 | /D [1000 0 R /XYZ 62.362 421.524 null] | ||
4395 | >> endobj | ||
4396 | 1009 0 obj << | ||
4397 | /D [1000 0 R /XYZ 62.362 413.295 null] | ||
4328 | >> endobj | 4398 | >> endobj |
4329 | 1010 0 obj << | 4399 | 1010 0 obj << |
4330 | /D [1008 0 R /XYZ 38.685 808.874 null] | 4400 | /D [1000 0 R /XYZ 62.362 405.066 null] |
4331 | >> endobj | 4401 | >> endobj |
4332 | 1011 0 obj << | 4402 | 1011 0 obj << |
4333 | /D [1008 0 R /XYZ 215.399 730.056 null] | 4403 | /D [1000 0 R /XYZ 62.362 396.837 null] |
4334 | >> endobj | 4404 | >> endobj |
4335 | 1012 0 obj << | 4405 | 1012 0 obj << |
4336 | /D [1008 0 R /XYZ 200.684 672.054 null] | 4406 | /D [1000 0 R /XYZ 62.362 388.608 null] |
4337 | >> endobj | 4407 | >> endobj |
4338 | 1013 0 obj << | 4408 | 1013 0 obj << |
4339 | /D [1008 0 R /XYZ 182.554 614.051 null] | 4409 | /D [1000 0 R /XYZ 62.362 380.379 null] |
4340 | >> endobj | 4410 | >> endobj |
4341 | 1014 0 obj << | 4411 | 1014 0 obj << |
4342 | /D [1008 0 R /XYZ 62.362 427.434 null] | 4412 | /D [1000 0 R /XYZ 62.362 372.15 null] |
4343 | >> endobj | 4413 | >> endobj |
4344 | 1015 0 obj << | 4414 | 1015 0 obj << |
4345 | /D [1008 0 R /XYZ 62.362 429.753 null] | 4415 | /D [1000 0 R /XYZ 62.362 363.921 null] |
4346 | >> endobj | 4416 | >> endobj |
4347 | 1016 0 obj << | 4417 | 1016 0 obj << |
4348 | /D [1008 0 R /XYZ 62.362 421.524 null] | 4418 | /D [1000 0 R /XYZ 62.362 355.692 null] |
4349 | >> endobj | 4419 | >> endobj |
4350 | 1017 0 obj << | 4420 | 1017 0 obj << |
4351 | /D [1008 0 R /XYZ 62.362 413.295 null] | 4421 | /D [1000 0 R /XYZ 62.362 347.463 null] |
4352 | >> endobj | 4422 | >> endobj |
4353 | 1018 0 obj << | 4423 | 1018 0 obj << |
4354 | /D [1008 0 R /XYZ 62.362 405.066 null] | 4424 | /D [1000 0 R /XYZ 62.362 339.233 null] |
4355 | >> endobj | 4425 | >> endobj |
4356 | 1019 0 obj << | 4426 | 1019 0 obj << |
4357 | /D [1008 0 R /XYZ 62.362 396.837 null] | 4427 | /D [1000 0 R /XYZ 62.362 331.004 null] |
4358 | >> endobj | 4428 | >> endobj |
4359 | 1020 0 obj << | 4429 | 1020 0 obj << |
4360 | /D [1008 0 R /XYZ 62.362 388.608 null] | 4430 | /D [1000 0 R /XYZ 62.362 322.775 null] |
4361 | >> endobj | 4431 | >> endobj |
4362 | 1021 0 obj << | 4432 | 1021 0 obj << |
4363 | /D [1008 0 R /XYZ 62.362 380.379 null] | 4433 | /D [1000 0 R /XYZ 62.362 314.546 null] |
4364 | >> endobj | 4434 | >> endobj |
4365 | 1022 0 obj << | 4435 | 1022 0 obj << |
4366 | /D [1008 0 R /XYZ 62.362 372.15 null] | 4436 | /D [1000 0 R /XYZ 62.362 306.317 null] |
4367 | >> endobj | 4437 | >> endobj |
4368 | 1023 0 obj << | 4438 | 1023 0 obj << |
4369 | /D [1008 0 R /XYZ 62.362 363.921 null] | 4439 | /D [1000 0 R /XYZ 62.362 298.088 null] |
4370 | >> endobj | 4440 | >> endobj |
4371 | 1024 0 obj << | 4441 | 1024 0 obj << |
4372 | /D [1008 0 R /XYZ 62.362 355.692 null] | 4442 | /D [1000 0 R /XYZ 62.362 289.859 null] |
4373 | >> endobj | 4443 | >> endobj |
4374 | 1025 0 obj << | 4444 | 1025 0 obj << |
4375 | /D [1008 0 R /XYZ 62.362 347.463 null] | 4445 | /D [1000 0 R /XYZ 62.362 281.63 null] |
4376 | >> endobj | 4446 | >> endobj |
4377 | 1026 0 obj << | 4447 | 1026 0 obj << |
4378 | /D [1008 0 R /XYZ 62.362 339.233 null] | 4448 | /D [1000 0 R /XYZ 62.362 273.401 null] |
4379 | >> endobj | 4449 | >> endobj |
4380 | 1027 0 obj << | 4450 | 1027 0 obj << |
4381 | /D [1008 0 R /XYZ 62.362 331.004 null] | 4451 | /D [1000 0 R /XYZ 62.362 233.851 null] |
4382 | >> endobj | 4452 | >> endobj |
4383 | 1028 0 obj << | 4453 | 1028 0 obj << |
4384 | /D [1008 0 R /XYZ 62.362 322.775 null] | 4454 | /D [1000 0 R /XYZ 62.362 236.171 null] |
4385 | >> endobj | 4455 | >> endobj |
4386 | 1029 0 obj << | 4456 | 1029 0 obj << |
4387 | /D [1008 0 R /XYZ 62.362 314.546 null] | 4457 | /D [1000 0 R /XYZ 62.362 227.941 null] |
4388 | >> endobj | 4458 | >> endobj |
4389 | 1030 0 obj << | 4459 | 1030 0 obj << |
4390 | /D [1008 0 R /XYZ 62.362 306.317 null] | 4460 | /D [1000 0 R /XYZ 62.362 219.712 null] |
4391 | >> endobj | 4461 | >> endobj |
4392 | 1031 0 obj << | 4462 | 1031 0 obj << |
4393 | /D [1008 0 R /XYZ 62.362 298.088 null] | 4463 | /D [1000 0 R /XYZ 62.362 211.483 null] |
4394 | >> endobj | 4464 | >> endobj |
4395 | 1032 0 obj << | 4465 | 1032 0 obj << |
4396 | /D [1008 0 R /XYZ 62.362 289.859 null] | 4466 | /D [1000 0 R /XYZ 62.362 203.254 null] |
4397 | >> endobj | ||
4398 | 1033 0 obj << | ||
4399 | /D [1008 0 R /XYZ 62.362 281.63 null] | ||
4400 | >> endobj | ||
4401 | 1034 0 obj << | ||
4402 | /D [1008 0 R /XYZ 62.362 273.401 null] | ||
4403 | >> endobj | ||
4404 | 1035 0 obj << | ||
4405 | /D [1008 0 R /XYZ 62.362 233.851 null] | ||
4406 | >> endobj | ||
4407 | 1036 0 obj << | ||
4408 | /D [1008 0 R /XYZ 62.362 236.171 null] | ||
4409 | >> endobj | ||
4410 | 1037 0 obj << | ||
4411 | /D [1008 0 R /XYZ 62.362 227.941 null] | ||
4412 | >> endobj | ||
4413 | 1038 0 obj << | ||
4414 | /D [1008 0 R /XYZ 62.362 219.712 null] | ||
4415 | >> endobj | ||
4416 | 1039 0 obj << | ||
4417 | /D [1008 0 R /XYZ 62.362 211.483 null] | ||
4418 | >> endobj | ||
4419 | 1040 0 obj << | ||
4420 | /D [1008 0 R /XYZ 62.362 203.254 null] | ||
4421 | >> endobj | 4467 | >> endobj |
4422 | 1007 0 obj << | 4468 | 999 0 obj << |
4423 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F65 718 0 R /F61 509 0 R /F63 722 0 R /F78 459 0 R /F71 511 0 R /F81 551 0 R /F60 552 0 R /F64 554 0 R /F110 755 0 R /F68 872 0 R >> | 4469 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F65 718 0 R /F61 509 0 R /F63 722 0 R /F78 459 0 R /F71 511 0 R /F81 551 0 R /F60 552 0 R /F64 554 0 R /F110 755 0 R /F68 870 0 R >> |
4424 | /ProcSet [ /PDF /Text ] | 4470 | /ProcSet [ /PDF /Text ] |
4425 | >> endobj | 4471 | >> endobj |
4426 | 1048 0 obj << | 4472 | 1039 0 obj << |
4427 | /Length 3500 | 4473 | /Length 3503 |
4428 | /Filter /FlateDecode | 4474 | /Filter /FlateDecode |
4429 | >> | 4475 | >> |
4430 | stream | 4476 | stream |
4431 | x[Ks6WRZN%CH*dJnULJ4U4Όd;IHfv"H=e#Oqz⥎]V5SvwuB.ڛVu}uuplޭ7pX*m<śӟOyzlj3)oDs~nDch>țА | 4477 | x[Ks6WRZN%CH*dJnULJ4U4Όd;IHfv"H=e#Oqz⥎]V5SvwuB.ڛVu}uuplޭ7pX*m<śӟOyzlj3)oDs~nDch>țА |
4432 | K]}B;7rĽ;[(߾st! | 4478 | K]}B;7rĽ;[(߾st! |
4433 | 8!: :;8ݜ A}'K4 ֖.VwG =7T sovG{#3 j | 4479 | 8!: :;8ݜ A}'K4 ֖.VwG =7T sovG{#3 j |
4434 | "GBv | 4480 | "GBv |
4435 | \YvTQܸ\fpޜpA8=ek<gޡ}39o϶ z }B | 4481 | KTaІgXoܠX{~qVn7: |
4436 | gßnsނGىxӄŸׯU|r00CpUҦU"+?Ŋơ%<2vd8sܝIkzS-=Hv5XXےwwYA1ocuVfVWK8>$ݑ)62ؗFũà ϰ7gApa/: nu,3ՑO![FHbf"`RYඩI | 4482 | `H'm`{ |
4437 | K<;vnumP'u!P3iiMgC{ZIߞmyx?LU|W/)d)IDWٶp?ds=gBaǼsb^/#SJv(&O}ـ{$+MޥXJ=l T3XsrZ!h:t*6$1GxTYQe@?ؠ7gPݿhܜc#0yPʠLHaDH؞0{{!`GiEBwJ~wV͡a9c U30M\ÿeAx4 | 4483 | f$}1wr30)a,p$BwL6(Xº4곋=~ENo6<*+ |
4438 | +n6O*:0hKt%oDEdl$H,DO7);C5WF4SYtYOkH sBxb|$ۑAb'ҮkZȮ/@MvZ*<"`j\/0 | 4484 | /pS⎛nv57kn>2/;7MQ(8l'?C6l&0!_rpgP⑆v `hDI1j.IGD'SAsf"I`]Fx n䍨d\醛7eg\st*? s )a#XoY?^ss;>`C=c?VWdTuMU]eNt^B,"_ |
4485 | ;zN|x)yyhʚ4Oe3M/|3{3)y![ rbT8l;=ڙb[bA*0`\*A.5+qMg8RnvEΝkn 7JK}^T`bER e g 8Uxfấ]ozG4j&?b/19n%5a4Ufe8Dx; | ||
4486 | .tF | ||
4487 | ~܈hаÁ$<pfܙ>fՂ1輴 Nb]r P#jeVsʻ26g3_ͦq@t~HkdfIi{)݉@i˾rҖw-jCyfz\Ku/* | ||
4488 | 3@5fLj@C'q7kpnn(_'zzxChx5+7@u7KPgitJu(Q.E[ܡೂMQT:å{&Z,W*c.--ak3ND}M%Im2O0;]Єo | ||
4439 | endstream | 4489 | endstream |
4440 | endobj | 4490 | endobj |
4441 | 1047 0 obj << | 4491 | 1038 0 obj << |
4442 | /Type /Page | 4492 | /Type /Page |
4443 | /Contents 1048 0 R | 4493 | /Contents 1039 0 R |
4444 | /Resources 1046 0 R | 4494 | /Resources 1037 0 R |
4445 | /MediaBox [0 0 595.276 841.89] | 4495 | /MediaBox [0 0 595.276 841.89] |
4446 | /Parent 959 0 R | 4496 | /Parent 956 0 R |
4447 | /Group 1005 0 R | 4497 | /Group 997 0 R |
4448 | /Annots [ 1003 0 R 1006 0 R 1042 0 R ] | 4498 | /Annots [ 995 0 R 998 0 R 1033 0 R ] |
4449 | >> endobj | 4499 | >> endobj |
4450 | 1004 0 obj << | 4500 | 996 0 obj << |
4451 | /Type /XObject | 4501 | /Type /XObject |
4452 | /Subtype /Form | 4502 | /Subtype /Form |
4453 | /FormType 1 | 4503 | /FormType 1 |
4454 | /PTEX.FileName (simplex_towardflat.pdf) | 4504 | /PTEX.FileName (simplex_towardflat.pdf) |
4455 | /PTEX.PageNumber 1 | 4505 | /PTEX.PageNumber 1 |
4456 | /PTEX.InfoDict 1071 0 R | 4506 | /PTEX.InfoDict 1062 0 R |
4457 | /BBox [0 0 536.191223 315.21933] | 4507 | /BBox [0 0 536.191223 315.21933] |
4458 | /Group 1005 0 R | 4508 | /Group 997 0 R |
4459 | /Resources << | 4509 | /Resources << |
4460 | /ExtGState << | 4510 | /ExtGState << |
4461 | /a0 << | 4511 | /a0 << |
4462 | /CA 1 | 4512 | /CA 1 |
4463 | /ca 1 | 4513 | /ca 1 |
4464 | >> | 4514 | >> |
4465 | >>/Font << /f-0-0 1072 0 R/f-1-0 1073 0 R>> | 4515 | >>/Font << /f-0-0 1063 0 R/f-1-0 1064 0 R>> |
4466 | >> | 4516 | >> |
4467 | /Length 739 | 4517 | /Length 739 |
4468 | /Filter /FlateDecode | 4518 | /Filter /FlateDecode |
@@ -4474,33 +4524,33 @@ f38$1d^7Ɠ1VA0f | |||
4474 | z:6hDZ(14Fk(GuHfDQu[љulػ_;=(N<u+a &_дҩaK2prP | 4524 | z:6hDZ(14Fk(GuHfDQu[љulػ_;=(N<u+a &_дҩaK2prP |
4475 | endstream | 4525 | endstream |
4476 | endobj | 4526 | endobj |
4477 | 1071 0 obj | 4527 | 1062 0 obj |
4478 | << | 4528 | << |
4479 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) | 4529 | /Creator (cairo 1.5.15 \(http://cairographics.org\)) |
4480 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) | 4530 | /Producer (cairo 1.5.15 \(http://cairographics.org\)) |
4481 | >> | 4531 | >> |
4482 | endobj | 4532 | endobj |
4483 | 1072 0 obj | 4533 | 1063 0 obj |
4484 | << | 4534 | << |
4485 | /Type /Font | 4535 | /Type /Font |
4486 | /Subtype /Type0 | 4536 | /Subtype /Type0 |
4487 | /BaseFont /Arial | 4537 | /BaseFont /Arial |
4488 | /Encoding /Identity-H | 4538 | /Encoding /Identity-H |
4489 | /DescendantFonts [ 1074 0 R] | 4539 | /DescendantFonts [ 1065 0 R] |
4490 | /ToUnicode 1075 0 R | 4540 | /ToUnicode 1066 0 R |
4491 | >> | 4541 | >> |
4492 | endobj | 4542 | endobj |
4493 | 1073 0 obj | 4543 | 1064 0 obj |
4494 | << | 4544 | << |
4495 | /Type /Font | 4545 | /Type /Font |
4496 | /Subtype /Type0 | 4546 | /Subtype /Type0 |
4497 | /BaseFont /Arial | 4547 | /BaseFont /Arial |
4498 | /Encoding /Identity-H | 4548 | /Encoding /Identity-H |
4499 | /DescendantFonts [ 1076 0 R] | 4549 | /DescendantFonts [ 1067 0 R] |
4500 | /ToUnicode 1077 0 R | 4550 | /ToUnicode 1068 0 R |
4501 | >> | 4551 | >> |
4502 | endobj | 4552 | endobj |
4503 | 1074 0 obj | 4553 | 1065 0 obj |
4504 | << | 4554 | << |
4505 | /Type /Font | 4555 | /Type /Font |
4506 | /Subtype /CIDFontType2 | 4556 | /Subtype /CIDFontType2 |
@@ -4510,13 +4560,13 @@ endobj | |||
4510 | /Ordering (Identity) | 4560 | /Ordering (Identity) |
4511 | /Supplement 0 | 4561 | /Supplement 0 |
4512 | >> | 4562 | >> |
4513 | /FontDescriptor 1078 0 R | 4563 | /FontDescriptor 1069 0 R |
4514 | /W [ 0 [ 750 556 556 583 277 556 333 556 500 556]] | 4564 | /W [ 0 [ 750 556 556 583 277 556 333 556 500 556]] |
4515 | >> | 4565 | >> |
4516 | endobj | 4566 | endobj |
4517 | 1075 0 obj | 4567 | 1066 0 obj |
4518 | << | 4568 | << |
4519 | /Length 1079 0 R | 4569 | /Length 1070 0 R |
4520 | /Filter /FlateDecode | 4570 | /Filter /FlateDecode |
4521 | >> | 4571 | >> |
4522 | stream | 4572 | stream |
@@ -4524,7 +4574,7 @@ x]j0E | |||
4524 | -yt^eɢ[I mg# S+$Y^ƚ=8bXpvKP=Ɗ | 4574 | -yt^eɢ[I mg# S+$Y^ƚ=8bXpvKP=Ɗ |
4525 | endstream | 4575 | endstream |
4526 | endobj | 4576 | endobj |
4527 | 1076 0 obj | 4577 | 1067 0 obj |
4528 | << | 4578 | << |
4529 | /Type /Font | 4579 | /Type /Font |
4530 | /Subtype /CIDFontType2 | 4580 | /Subtype /CIDFontType2 |
@@ -4534,13 +4584,13 @@ endobj | |||
4534 | /Ordering (Identity) | 4584 | /Ordering (Identity) |
4535 | /Supplement 0 | 4585 | /Supplement 0 |
4536 | >> | 4586 | >> |
4537 | /FontDescriptor 1080 0 R | 4587 | /FontDescriptor 1071 0 R |
4538 | /W [ 0 [ 750 556 556]] | 4588 | /W [ 0 [ 750 556 556]] |
4539 | >> | 4589 | >> |
4540 | endobj | 4590 | endobj |
4541 | 1077 0 obj | 4591 | 1068 0 obj |
4542 | << | 4592 | << |
4543 | /Length 1081 0 R | 4593 | /Length 1072 0 R |
4544 | /Filter /FlateDecode | 4594 | /Filter /FlateDecode |
4545 | >> | 4595 | >> |
4546 | stream | 4596 | stream |
@@ -4548,7 +4598,7 @@ x]j >wl/9[Ќ21}Yw)d| Ǹĕ-S *p滪 | |||
4548 | ="pI"PtM) /W5zmn'Rj+{wS/?"ڕ{@Ns | 4598 | ="pI"PtM) /W5zmn'Rj+{wS/?"ڕ{@Ns |
4549 | endstream | 4599 | endstream |
4550 | endobj | 4600 | endobj |
4551 | 1078 0 obj | 4601 | 1069 0 obj |
4552 | << | 4602 | << |
4553 | /Type /FontDescriptor | 4603 | /Type /FontDescriptor |
4554 | /FontName /Arial | 4604 | /FontName /Arial |
@@ -4560,13 +4610,13 @@ endobj | |||
4560 | /CapHeight 1005 | 4610 | /CapHeight 1005 |
4561 | /StemV 80 | 4611 | /StemV 80 |
4562 | /StemH 80 | 4612 | /StemH 80 |
4563 | /FontFile2 1082 0 R | 4613 | /FontFile2 1073 0 R |
4564 | >> | 4614 | >> |
4565 | endobj | 4615 | endobj |
4566 | 1079 0 obj | 4616 | 1070 0 obj |
4567 | 266 | 4617 | 266 |
4568 | endobj | 4618 | endobj |
4569 | 1080 0 obj | 4619 | 1071 0 obj |
4570 | << | 4620 | << |
4571 | /Type /FontDescriptor | 4621 | /Type /FontDescriptor |
4572 | /FontName /Arial | 4622 | /FontName /Arial |
@@ -4578,15 +4628,15 @@ endobj | |||
4578 | /CapHeight 1005 | 4628 | /CapHeight 1005 |
4579 | /StemV 80 | 4629 | /StemV 80 |
4580 | /StemH 80 | 4630 | /StemH 80 |
4581 | /FontFile2 1083 0 R | 4631 | /FontFile2 1074 0 R |
4582 | >> | 4632 | >> |
4583 | endobj | 4633 | endobj |
4584 | 1081 0 obj | 4634 | 1072 0 obj |
4585 | 231 | 4635 | 231 |
4586 | endobj | 4636 | endobj |
4587 | 1082 0 obj | 4637 | 1073 0 obj |
4588 | << | 4638 | << |
4589 | /Length 1084 0 R | 4639 | /Length 1075 0 R |
4590 | /Filter /FlateDecode | 4640 | /Filter /FlateDecode |
4591 | /Length1 9600 | 4641 | /Length1 9600 |
4592 | >> | 4642 | >> |
@@ -4615,9 +4665,9 @@ i[ګ+q_l&3fTkI-!ASvP0XQ)%_Y+ | |||
4615 | g+V4lhk=Śl엂D{8_FٝhCp鲶eச_kYK1``[^+ۖT+CU+x:Ȗ3gCX丫WxFcBYW]:EB[Sk)ĕR i2FB`u`kK%-&p'vib3VŖ_3 | 4665 | g+V4lhk=Śl엂D{8_FٝhCp鲶eச_kYK1``[^+ۖT+CU+x:Ȗ3gCX丫WxFcBYW]:EB[Sk)ĕR i2FB`u`kK%-&p'vib3VŖ_3 |
4616 | endstream | 4666 | endstream |
4617 | endobj | 4667 | endobj |
4618 | 1083 0 obj | 4668 | 1074 0 obj |
4619 | << | 4669 | << |
4620 | /Length 1085 0 R | 4670 | /Length 1076 0 R |
4621 | /Filter /FlateDecode | 4671 | /Filter /FlateDecode |
4622 | /Length1 7488 | 4672 | /Length1 7488 |
4623 | >> | 4673 | >> |
@@ -4649,219 +4699,224 @@ ZT5YjN,iy|̉'=]Aǀ{N3*6XMwn^JجiQL U | |||
4649 | Dl: | 4699 | Dl: |
4650 | endstream | 4700 | endstream |
4651 | endobj | 4701 | endobj |
4652 | 1084 0 obj | 4702 | 1075 0 obj |
4653 | 6740 | 4703 | 6740 |
4654 | endobj | 4704 | endobj |
4655 | 1085 0 obj | 4705 | 1076 0 obj |
4656 | 5088 | 4706 | 5088 |
4657 | endobj | 4707 | endobj |
4658 | 1005 0 obj | 4708 | 997 0 obj |
4659 | << | 4709 | << |
4660 | /Type /Group | 4710 | /Type /Group |
4661 | /S /Transparency | 4711 | /S /Transparency |
4662 | /CS /DeviceRGB | 4712 | /CS /DeviceRGB |
4663 | >>endobj | 4713 | >>endobj |
4664 | 1003 0 obj << | 4714 | 995 0 obj << |
4665 | /Type /Annot | 4715 | /Type /Annot |
4666 | /Subtype /Link | 4716 | /Subtype /Link |
4667 | /Border[0 0 0]/H/I/C[1 0 0] | 4717 | /Border[0 0 0]/H/I/C[1 0 0] |
4668 | /Rect [93.978 431.663 110.902 445.449] | 4718 | /Rect [93.978 431.663 110.902 445.449] |
4669 | /A << /S /GoTo /D (figure.1.5) >> | 4719 | /A << /S /GoTo /D (figure.2.5) >> |
4670 | >> endobj | 4720 | >> endobj |
4671 | 1006 0 obj << | 4721 | 998 0 obj << |
4672 | /Type /Annot | 4722 | /Type /Annot |
4673 | /Subtype /Link | 4723 | /Subtype /Link |
4674 | /Border[0 0 0]/H/I/C[1 0 0] | 4724 | /Border[0 0 0]/H/I/C[1 0 0] |
4675 | /Rect [440.019 397.571 456.943 410.114] | 4725 | /Rect [440.019 397.571 456.943 410.114] |
4676 | /A << /S /GoTo /D (figure.1.5) >> | 4726 | /A << /S /GoTo /D (figure.2.5) >> |
4677 | >> endobj | 4727 | >> endobj |
4678 | 1042 0 obj << | 4728 | 1033 0 obj << |
4679 | /Type /Annot | 4729 | /Type /Annot |
4680 | /Subtype /Link | 4730 | /Subtype /Link |
4681 | /Border[0 0 0]/H/I/C[1 0 0] | 4731 | /Border[0 0 0]/H/I/C[1 0 0] |
4682 | /Rect [254.796 161.079 280.806 173.622] | 4732 | /Rect [254.796 161.079 280.806 173.622] |
4683 | /A << /S /GoTo /D (lstnumber.-13.19) >> | 4733 | /A << /S /GoTo /D (lstnumber.-16.19) >> |
4734 | >> endobj | ||
4735 | 1040 0 obj << | ||
4736 | /D [1038 0 R /XYZ 61.362 808.874 null] | ||
4737 | >> endobj | ||
4738 | 1041 0 obj << | ||
4739 | /D [1038 0 R /XYZ 145.04 631.445 null] | ||
4740 | >> endobj | ||
4741 | 1042 0 obj << | ||
4742 | /D [1038 0 R /XYZ 62.362 341.452 null] | ||
4743 | >> endobj | ||
4744 | 1043 0 obj << | ||
4745 | /D [1038 0 R /XYZ 62.362 343.771 null] | ||
4746 | >> endobj | ||
4747 | 1044 0 obj << | ||
4748 | /D [1038 0 R /XYZ 62.362 335.542 null] | ||
4749 | >> endobj | ||
4750 | 1045 0 obj << | ||
4751 | /D [1038 0 R /XYZ 62.362 327.313 null] | ||
4752 | >> endobj | ||
4753 | 1046 0 obj << | ||
4754 | /D [1038 0 R /XYZ 62.362 319.084 null] | ||
4755 | >> endobj | ||
4756 | 1047 0 obj << | ||
4757 | /D [1038 0 R /XYZ 62.362 310.854 null] | ||
4758 | >> endobj | ||
4759 | 1048 0 obj << | ||
4760 | /D [1038 0 R /XYZ 62.362 302.625 null] | ||
4684 | >> endobj | 4761 | >> endobj |
4685 | 1049 0 obj << | 4762 | 1049 0 obj << |
4686 | /D [1047 0 R /XYZ 61.362 808.874 null] | 4763 | /D [1038 0 R /XYZ 62.362 294.396 null] |
4687 | >> endobj | 4764 | >> endobj |
4688 | 1050 0 obj << | 4765 | 1050 0 obj << |
4689 | /D [1047 0 R /XYZ 145.04 631.445 null] | 4766 | /D [1038 0 R /XYZ 62.362 286.167 null] |
4690 | >> endobj | 4767 | >> endobj |
4691 | 1051 0 obj << | 4768 | 1051 0 obj << |
4692 | /D [1047 0 R /XYZ 62.362 341.452 null] | 4769 | /D [1038 0 R /XYZ 62.362 277.938 null] |
4693 | >> endobj | 4770 | >> endobj |
4694 | 1052 0 obj << | 4771 | 1052 0 obj << |
4695 | /D [1047 0 R /XYZ 62.362 343.771 null] | 4772 | /D [1038 0 R /XYZ 62.362 269.709 null] |
4696 | >> endobj | 4773 | >> endobj |
4697 | 1053 0 obj << | 4774 | 1053 0 obj << |
4698 | /D [1047 0 R /XYZ 62.362 335.542 null] | 4775 | /D [1038 0 R /XYZ 62.362 261.48 null] |
4699 | >> endobj | 4776 | >> endobj |
4700 | 1054 0 obj << | 4777 | 1054 0 obj << |
4701 | /D [1047 0 R /XYZ 62.362 327.313 null] | 4778 | /D [1038 0 R /XYZ 62.362 253.251 null] |
4702 | >> endobj | 4779 | >> endobj |
4703 | 1055 0 obj << | 4780 | 1055 0 obj << |
4704 | /D [1047 0 R /XYZ 62.362 319.084 null] | 4781 | /D [1038 0 R /XYZ 62.362 245.022 null] |
4705 | >> endobj | 4782 | >> endobj |
4706 | 1056 0 obj << | 4783 | 1056 0 obj << |
4707 | /D [1047 0 R /XYZ 62.362 310.854 null] | 4784 | /D [1038 0 R /XYZ 62.362 236.793 null] |
4708 | >> endobj | 4785 | >> endobj |
4709 | 1057 0 obj << | 4786 | 1057 0 obj << |
4710 | /D [1047 0 R /XYZ 62.362 302.625 null] | 4787 | /D [1038 0 R /XYZ 62.362 228.564 null] |
4711 | >> endobj | 4788 | >> endobj |
4712 | 1058 0 obj << | 4789 | 1058 0 obj << |
4713 | /D [1047 0 R /XYZ 62.362 294.396 null] | 4790 | /D [1038 0 R /XYZ 62.362 220.335 null] |
4714 | >> endobj | 4791 | >> endobj |
4715 | 1059 0 obj << | 4792 | 1059 0 obj << |
4716 | /D [1047 0 R /XYZ 62.362 286.167 null] | 4793 | /D [1038 0 R /XYZ 62.362 212.105 null] |
4717 | >> endobj | 4794 | >> endobj |
4718 | 1060 0 obj << | 4795 | 1060 0 obj << |
4719 | /D [1047 0 R /XYZ 62.362 277.938 null] | 4796 | /D [1038 0 R /XYZ 62.362 203.876 null] |
4720 | >> endobj | 4797 | >> endobj |
4721 | 1061 0 obj << | 4798 | 1061 0 obj << |
4722 | /D [1047 0 R /XYZ 62.362 269.709 null] | 4799 | /D [1038 0 R /XYZ 62.362 195.647 null] |
4723 | >> endobj | ||
4724 | 1062 0 obj << | ||
4725 | /D [1047 0 R /XYZ 62.362 261.48 null] | ||
4726 | >> endobj | ||
4727 | 1063 0 obj << | ||
4728 | /D [1047 0 R /XYZ 62.362 253.251 null] | ||
4729 | >> endobj | ||
4730 | 1064 0 obj << | ||
4731 | /D [1047 0 R /XYZ 62.362 245.022 null] | ||
4732 | >> endobj | 4800 | >> endobj |
4733 | 1065 0 obj << | 4801 | 1037 0 obj << |
4734 | /D [1047 0 R /XYZ 62.362 236.793 null] | 4802 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F63 722 0 R /F60 552 0 R /F64 554 0 R /F81 551 0 R /F110 755 0 R /F68 870 0 R >> |
4735 | >> endobj | 4803 | /XObject << /Im9 996 0 R >> |
4736 | 1066 0 obj << | ||
4737 | /D [1047 0 R /XYZ 62.362 228.564 null] | ||
4738 | >> endobj | ||
4739 | 1067 0 obj << | ||
4740 | /D [1047 0 R /XYZ 62.362 220.335 null] | ||
4741 | >> endobj | ||
4742 | 1068 0 obj << | ||
4743 | /D [1047 0 R /XYZ 62.362 212.105 null] | ||
4744 | >> endobj | ||
4745 | 1069 0 obj << | ||
4746 | /D [1047 0 R /XYZ 62.362 203.876 null] | ||
4747 | >> endobj | ||
4748 | 1070 0 obj << | ||
4749 | /D [1047 0 R /XYZ 62.362 195.647 null] | ||
4750 | >> endobj | ||
4751 | 1046 0 obj << | ||
4752 | /Font << /F39 386 0 R /F85 512 0 R /F44 387 0 R /F90 514 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F63 722 0 R /F60 552 0 R /F64 554 0 R /F81 551 0 R /F110 755 0 R /F68 872 0 R >> | ||
4753 | /XObject << /Im9 1004 0 R >> | ||
4754 | /ProcSet [ /PDF /Text ] | 4804 | /ProcSet [ /PDF /Text ] |
4755 | >> endobj | 4805 | >> endobj |
4756 | 1091 0 obj << | 4806 | 1081 0 obj << |
4757 | /Length 905 | 4807 | /Length 884 |
4758 | /Filter /FlateDecode | 4808 | /Filter /FlateDecode |
4759 | >> | 4809 | >> |
4760 | stream | 4810 | stream |
4761 | xڝVMs0Wh ԮeK}bizzHm'/~=)v$k*H\yo | 4811 | xڝVMs@Wpa=S؍#0mPZB; %z$6vӴvC+ą6wNLi|.&O"do^|WP6֮'JF,7+x--Ѭ:xwMTf{_:g !z !XGQ&3 D {",dLRߋ2H(j@g~ |
4762 | 2ɅRanL,a2Ea | 4812 | <["lLSa)|lkXAdtiiYӘZ7JI)# E[p'.t`&|́fp^[Ja:Dg2 |
4763 | E%t+^Aj~\5s\KFٴ^{xeF&0ڻ(P`Iǹ(>](LL<\h2`<w/:f2adR | 4813 | s1+#/:NLDS`!xv&psvL;vvU |
4764 | Uƺwq("R&ߦjG\fQD~"}+8\*8ȓ%'cnLDӃ!xv6pstJvqv3^7$!٤HH2 \ #yL7svn8#Z#c/ؖ-C(R%$\cBFCoծ\v=9;%l{{N|dc\pϠA5;%שS@5#RQܺ4wD8r)zc6(DF%FN=Ճ | 4814 | l@H2_ l +svn8%#clK!yb1!ˡ=oBŻrmKi8erCj+{{YQ߈ߏy(n4z|sGC6(D9ѓF%F^AF@LwvFnMFIqXW:ɖjt76h0}ڐZ.lYֶ+3U1^{:5OvfƓoQL}E8|3"*.7nÂ0 i=V,vf'7n4D^.-Pm։ ?ߚU!\ |
4765 | ? | ||
4766 | | ||
4767 | 5%aź҆VA륭$.˭i0j38"ZIҜnګCP_ ahԙpE^Pyr?%~}q*m86!U{LɎ[Y>:Fޠ..O(D_T!& | ||
4768 | endstream | 4815 | endstream |
4769 | endobj | 4816 | endobj |
4770 | 1090 0 obj << | 4817 | 1080 0 obj << |
4771 | /Type /Page | 4818 | /Type /Page |
4772 | /Contents 1091 0 R | 4819 | /Contents 1081 0 R |
4773 | /Resources 1089 0 R | 4820 | /Resources 1079 0 R |
4774 | /MediaBox [0 0 595.276 841.89] | 4821 | /MediaBox [0 0 595.276 841.89] |
4775 | /Parent 959 0 R | 4822 | /Parent 956 0 R |
4776 | /Annots [ 1043 0 R 1044 0 R 1045 0 R 1088 0 R ] | 4823 | /Annots [ 1034 0 R 1035 0 R 1036 0 R 1077 0 R 1078 0 R ] |
4777 | >> endobj | 4824 | >> endobj |
4778 | 1043 0 obj << | 4825 | 1034 0 obj << |
4779 | /Type /Annot | 4826 | /Type /Annot |
4780 | /Subtype /Link | 4827 | /Subtype /Link |
4781 | /Border[0 0 0]/H/I/C[1 0 0] | 4828 | /Border[0 0 0]/H/I/C[1 0 0] |
4782 | /Rect [122.737 726.203 148.747 740.037] | 4829 | /Rect [122.737 726.203 148.747 740.037] |
4783 | /A << /S /GoTo /D (subsection.1.4.3) >> | 4830 | /A << /S /GoTo /D (subsection.2.4.3) >> |
4784 | >> endobj | 4831 | >> endobj |
4785 | 1044 0 obj << | 4832 | 1035 0 obj << |
4786 | /Type /Annot | 4833 | /Type /Annot |
4787 | /Subtype /Link | 4834 | /Subtype /Link |
4788 | /Border[0 0 0]/H/I/C[1 0 0] | 4835 | /Border[0 0 0]/H/I/C[1 0 0] |
4789 | /Rect [317.008 726.203 333.932 740.037] | 4836 | /Rect [317.008 726.203 333.932 740.037] |
4790 | /A << /S /GoTo /D (section.1.2) >> | 4837 | /A << /S /GoTo /D (section.2.2) >> |
4791 | >> endobj | 4838 | >> endobj |
4792 | 1045 0 obj << | 4839 | 1036 0 obj << |
4793 | /Type /Annot | 4840 | /Type /Annot |
4794 | /Subtype /Link | 4841 | /Subtype /Link |
4795 | /Border[0 0 0]/H/I/C[0 1 0] | 4842 | /Border[0 0 0]/H/I/C[0 1 0] |
4796 | /Rect [485.674 729.191 499.358 738.997] | 4843 | /Rect [485.674 729.191 499.358 738.997] |
4797 | /A << /S /GoTo /D (cite.Kelley1999) >> | 4844 | /A << /S /GoTo /D (cite.Kelley1999) >> |
4798 | >> endobj | 4845 | >> endobj |
4799 | 1088 0 obj << | 4846 | 1077 0 obj << |
4800 | /Type /Annot | 4847 | /Type /Annot |
4801 | /Subtype /Link | 4848 | /Subtype /Link |
4802 | /Border[0 0 0]/H/I/C[1 0 0] | 4849 | /Border[0 0 0]/H/I/C[1 0 0] |
4803 | /Rect [142.002 658.688 168.012 671.231] | 4850 | /Rect [142.002 658.688 168.012 671.231] |
4804 | /A << /S /GoTo /D (subsection.1.4.2) >> | 4851 | /A << /S /GoTo /D (subsection.2.4.2) >> |
4805 | >> endobj | 4852 | >> endobj |
4806 | 1092 0 obj << | 4853 | 1078 0 obj << |
4807 | /D [1090 0 R /XYZ 38.685 808.874 null] | 4854 | /Type /Annot |
4855 | /Subtype /Link | ||
4856 | /Border[0 0 0]/H/I/C[0 1 0] | ||
4857 | /Rect [80.841 643.962 94.525 653.767] | ||
4858 | /A << /S /GoTo /D (cite.numericaloptimization) >> | ||
4859 | >> endobj | ||
4860 | 1082 0 obj << | ||
4861 | /D [1080 0 R /XYZ 38.685 808.874 null] | ||
4808 | >> endobj | 4862 | >> endobj |
4809 | 77 0 obj << | 4863 | 77 0 obj << |
4810 | /D [1090 0 R /XYZ 62.362 771.012 null] | 4864 | /D [1080 0 R /XYZ 62.362 771.012 null] |
4811 | >> endobj | 4865 | >> endobj |
4812 | 1089 0 obj << | 4866 | 1079 0 obj << |
4813 | /Font << /F39 386 0 R /F44 387 0 R >> | 4867 | /Font << /F39 386 0 R /F44 387 0 R >> |
4814 | /ProcSet [ /PDF /Text ] | 4868 | /ProcSet [ /PDF /Text ] |
4815 | >> endobj | 4869 | >> endobj |
4816 | 1099 0 obj << | 4870 | 1088 0 obj << |
4817 | /Length 2100 | 4871 | /Length 2129 |
4818 | /Filter /FlateDecode | 4872 | /Filter /FlateDecode |
4819 | >> | 4873 | >> |
4820 | stream | 4874 | stream |
4821 | xڝXAs6_=<}fEvzҙǖI@Q6tA> | 4875 | xڝYIsFWpN+fH*T2U@D4%y[7dSAtZԋśw?najF/.v` f&,.տ^?,Wq]~xW3L6n{_F\ڍZ\U=|ة-2|sUAePm0wH*Tk_m5p|YY]EzFq[:0tteX |
4822 | eǘNu><#%mff&JU?MTVAתGqp{$rxGDۆ9cfժl-:9Na&DS?9ݭ@^;&B '<cmo1GY4 | 4876 | !2sJSґ}4%l8F)/"TIVk' 9b5# |
4823 | /zToicL67ƳÌ^MyFFwksU8lJj | 4877 | (~o(/f1nc;SEhY&3Zg/ C:&oVؗ) |
4824 | 9~<qO㘉lpOM[zԙ$SGTfb.ֲC7(za0f{͐szL<Y<)E;o>e?H{=KkaN:u-)WZrHveu}ֿHiZh7ݬM,4Եj߾X+źDz'YSYԄPsLElDz'<j!ß669!5+ S8\gE>JP5Z ,4F+WPN=ܴ_kWOH}&L>}NgCG/m{K5N`Ot> C"@jI/$5-uիS (r,Tp{_ | 4878 | .ޥ|(ԡ&]{S֯&|N$---է U~`FXfLGS#r)x3UDPGi'5X2O1T|N[*V^RF@C}hr(Ǵ ]}0917ͬNB<^蚸! |
4825 | NPMd"m%xn^/08')ÿC@~X_KJ$隊d vNWqgk] V~ pf | 4879 | h@j$I=#h_$hkjU:x,Up"{[ |
4826 | vA]wyj|ʋJpʵ90;"81vsq?';Iu')ubr>_2cYiq8й | 4880 | NlFiEFڨ0ifwk<i/:49E2IkՄbށm}VRN)赲Rwz!7t 7ɖyb6ϖ>| |
4827 | $PH3JI3xn.(/'I=v*`ƶu4!MS&w/5~O*lkv4[}3|SvVA.|^6@5\@0V64-ՀݙMAmV2)*=$|PP*".QFd \6/iIL4mڨOAYt,`y9wG"Lx(Y:~ޕjlXxM0<AIۖ@2?W-КLҮbo?Ki,M"i}z@&ghJ\JAIPHo/T4if15y~w/Z_ | 4881 | v.9/sTxiyW건×i}GWɣ,iR- XQ}W |
4882 | #ƙ* 9W&Z BK4@Nch~j pj+]G#$ҷ | ||
4828 | endstream | 4883 | endstream |
4829 | endobj | 4884 | endobj |
4830 | 1098 0 obj << | 4885 | 1087 0 obj << |
4831 | /Type /Page | 4886 | /Type /Page |
4832 | /Contents 1099 0 R | 4887 | /Contents 1088 0 R |
4833 | /Resources 1097 0 R | 4888 | /Resources 1086 0 R |
4834 | /MediaBox [0 0 595.276 841.89] | 4889 | /MediaBox [0 0 595.276 841.89] |
4835 | /Parent 1102 0 R | 4890 | /Parent 1091 0 R |
4836 | /Annots [ 1096 0 R ] | 4891 | /Annots [ 1085 0 R ] |
4837 | >> endobj | 4892 | >> endobj |
4838 | 1096 0 obj << | 4893 | 1085 0 obj << |
4839 | /Type /Annot | 4894 | /Type /Annot |
4840 | /Subtype /Link | 4895 | /Subtype /Link |
4841 | /Border[0 0 0]/H/I/C[0 1 0] | 4896 | /Border[0 0 0]/H/I/C[0 1 0] |
4842 | /Rect [347.259 560.891 360.944 570.696] | 4897 | /Rect [419.25 560.891 432.934 570.696] |
4843 | /A << /S /GoTo /D (cite.Spendley1962) >> | 4898 | /A << /S /GoTo /D (cite.Spendley1962) >> |
4844 | >> endobj | 4899 | >> endobj |
4845 | 1100 0 obj << | 4900 | 1089 0 obj << |
4846 | /D [1098 0 R /XYZ 61.362 808.874 null] | 4901 | /D [1087 0 R /XYZ 61.362 808.874 null] |
4847 | >> endobj | 4902 | >> endobj |
4848 | 81 0 obj << | 4903 | 81 0 obj << |
4849 | /D [1098 0 R /XYZ 62.362 771.012 null] | 4904 | /D [1087 0 R /XYZ 62.362 771.012 null] |
4850 | >> endobj | 4905 | >> endobj |
4851 | 85 0 obj << | 4906 | 85 0 obj << |
4852 | /D [1098 0 R /XYZ 62.362 441.619 null] | 4907 | /D [1087 0 R /XYZ 62.362 424.891 null] |
4853 | >> endobj | 4908 | >> endobj |
4854 | 89 0 obj << | 4909 | 89 0 obj << |
4855 | /D [1098 0 R /XYZ 62.362 299.677 null] | 4910 | /D [1087 0 R /XYZ 62.362 283.267 null] |
4856 | >> endobj | 4911 | >> endobj |
4857 | 1101 0 obj << | 4912 | 1090 0 obj << |
4858 | /D [1098 0 R /XYZ 275.642 210.031 null] | 4913 | /D [1087 0 R /XYZ 275.642 195.78 null] |
4859 | >> endobj | 4914 | >> endobj |
4860 | 1097 0 obj << | 4915 | 1086 0 obj << |
4861 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F71 511 0 R /F61 509 0 R /F78 459 0 R /F59 508 0 R >> | 4916 | /Font << /F39 386 0 R /F44 387 0 R /F55 507 0 R /F56 510 0 R /F71 511 0 R /F61 509 0 R /F78 459 0 R /F59 508 0 R >> |
4862 | /ProcSet [ /PDF /Text ] | 4917 | /ProcSet [ /PDF /Text ] |
4863 | >> endobj | 4918 | >> endobj |
4864 | 1107 0 obj << | 4919 | 1096 0 obj << |
4865 | /Length 3722 | 4920 | /Length 3722 |
4866 | /Filter /FlateDecode | 4921 | /Filter /FlateDecode |
4867 | >> | 4922 | >> |
@@ -4887,47 +4942,47 @@ BWA<+ˡRuSbO'(Oe4G=Uo-X Pt^,vP'g4A?ֹ݉, | |||
4887 | }A.\CR<C1JҨBfTAHǴ(,asÓPt_SN\Bv4e^cT3y>,b. | 4942 | }A.\CR<C1JҨBfTAHǴ(,asÓPt_SN\Bv4e^cT3y>,b. |
4888 | endstream | 4943 | endstream |
4889 | endobj | 4944 | endobj |
4890 | 1106 0 obj << | 4945 | 1095 0 obj << |
4891 | /Type /Page | 4946 | /Type /Page |
4892 | /Contents 1107 0 R | 4947 | /Contents 1096 0 R |
4893 | /Resources 1105 0 R | 4948 | /Resources 1094 0 R |
4894 | /MediaBox [0 0 595.276 841.89] | 4949 | /MediaBox [0 0 595.276 841.89] |
4895 | /Parent 1102 0 R | 4950 | /Parent 1091 0 R |
4896 | /Annots [ 1103 0 R ] | 4951 | /Annots [ 1092 0 R ] |
4897 | >> endobj | 4952 | >> endobj |
4898 | 1103 0 obj << | 4953 | 1092 0 obj << |
4899 | /Type /Annot | 4954 | /Type /Annot |
4900 | /Subtype /Link | 4955 | /Subtype /Link |
4901 | /Border[0 0 0]/H/I/C[1 0 0] | 4956 | /Border[0 0 0]/H/I/C[1 0 0] |
4902 | /Rect [484.755 442.882 501.679 455.425] | 4957 | /Rect [484.755 442.882 501.679 455.425] |
4903 | /A << /S /GoTo /D (figure.3.1) >> | 4958 | /A << /S /GoTo /D (figure.3.1) >> |
4904 | >> endobj | 4959 | >> endobj |
4905 | 1108 0 obj << | 4960 | 1097 0 obj << |
4906 | /D [1106 0 R /XYZ 38.685 808.874 null] | 4961 | /D [1095 0 R /XYZ 38.685 808.874 null] |
4907 | >> endobj | 4962 | >> endobj |
4908 | 1109 0 obj << | 4963 | 1098 0 obj << |
4909 | /D [1106 0 R /XYZ 231.319 717.502 null] | 4964 | /D [1095 0 R /XYZ 231.319 717.502 null] |
4910 | >> endobj | 4965 | >> endobj |
4911 | 1110 0 obj << | 4966 | 1099 0 obj << |
4912 | /D [1106 0 R /XYZ 242.873 600.3 null] | 4967 | /D [1095 0 R /XYZ 242.873 600.3 null] |
4913 | >> endobj | 4968 | >> endobj |
4914 | 1111 0 obj << | 4969 | 1100 0 obj << |
4915 | /D [1106 0 R /XYZ 228.384 508.16 null] | 4970 | /D [1095 0 R /XYZ 228.384 508.16 null] |
4916 | >> endobj | 4971 | >> endobj |
4917 | 93 0 obj << | 4972 | 93 0 obj << |
4918 | /D [1106 0 R /XYZ 62.362 488.772 null] | 4973 | /D [1095 0 R /XYZ 62.362 488.772 null] |
4919 | >> endobj | 4974 | >> endobj |
4920 | 1112 0 obj << | 4975 | 1101 0 obj << |
4921 | /D [1106 0 R /XYZ 245.265 387.597 null] | 4976 | /D [1095 0 R /XYZ 245.265 387.597 null] |
4922 | >> endobj | 4977 | >> endobj |
4923 | 1113 0 obj << | 4978 | 1102 0 obj << |
4924 | /D [1106 0 R /XYZ 188.529 312.769 null] | 4979 | /D [1095 0 R /XYZ 188.529 312.769 null] |
4925 | >> endobj | 4980 | >> endobj |
4926 | 1105 0 obj << | 4981 | 1094 0 obj << |
4927 | /Font << /F39 386 0 R /F44 387 0 R /F78 459 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F61 509 0 R /F65 718 0 R /F63 722 0 R >> | 4982 | /Font << /F39 386 0 R /F44 387 0 R /F78 459 0 R /F55 507 0 R /F59 508 0 R /F56 510 0 R /F61 509 0 R /F65 718 0 R /F63 722 0 R >> |
4928 | /ProcSet [ /PDF /Text ] | 4983 | /ProcSet [ /PDF /Text ] |
4929 | >> endobj | 4984 | >> endobj |
4930 | 1117 0 obj << | 4985 | 1106 0 obj << |
4931 | /Length 1446 | 4986 | /Length 1446 |
4932 | /Filter /FlateDecode | 4987 | /Filter /FlateDecode |
4933 | >> | 4988 | >> |
@@ -4936,152 +4991,152 @@ xYMs"7+(NJRqz.Lưߧ%H`{fRwZ3W˨w~!}% | |||
4936 | ^8$VӳKnP&Ga$9RrFN Ky(~&#]b[fɃ@r6Gg"^7(tv_83ϽhFquxWxgu_SM|SG4ƭZ/SRƛtzP|鰁_r | 4991 | ^8$VӳKnP&Ga$9RrFN Ky(~&#]b[fɃ@r6Gg"^7(tv_83ϽhFquxWxgu_SM|SG4ƭZ/SRƛtzP|鰁_r |
4937 | endstream | 4992 | endstream |
4938 | endobj | 4993 | endobj |
4939 | 1116 0 obj << | 4994 | 1105 0 obj << |
4940 | /Type /Page | 4995 | /Type /Page |
4941 | /Contents 1117 0 R | 4996 | /Contents 1106 0 R |
4942 | /Resources 1115 0 R | 4997 | /Resources 1104 0 R |
4943 | /MediaBox [0 0 595.276 841.89] | 4998 | /MediaBox [0 0 595.276 841.89] |
4944 | /Parent 1102 0 R | 4999 | /Parent 1091 0 R |
5000 | >> endobj | ||
5001 | 1107 0 obj << | ||
5002 | /D [1105 0 R /XYZ 61.362 808.874 null] | ||
5003 | >> endobj | ||
5004 | 1108 0 obj << | ||
5005 | /D [1105 0 R /XYZ 62.362 634.714 null] | ||
5006 | >> endobj | ||
5007 | 1109 0 obj << | ||
5008 | /D [1105 0 R /XYZ 62.362 634.714 null] | ||
5009 | >> endobj | ||
5010 | 1110 0 obj << | ||
5011 | /D [1105 0 R /XYZ 233.129 643.529 null] | ||
5012 | >> endobj | ||
5013 | 1111 0 obj << | ||
5014 | /D [1105 0 R /XYZ 233.129 643.529 null] | ||
5015 | >> endobj | ||
5016 | 1112 0 obj << | ||
5017 | /D [1105 0 R /XYZ 344.072 626.483 null] | ||
5018 | >> endobj | ||
5019 | 1113 0 obj << | ||
5020 | /D [1105 0 R /XYZ 344.072 626.483 null] | ||
5021 | >> endobj | ||
5022 | 1114 0 obj << | ||
5023 | /D [1105 0 R /XYZ 116.387 609.437 null] | ||
5024 | >> endobj | ||
5025 | 1115 0 obj << | ||
5026 | /D [1105 0 R /XYZ 116.387 609.437 null] | ||
5027 | >> endobj | ||
5028 | 1116 0 obj << | ||
5029 | /D [1105 0 R /XYZ 62.362 572.356 null] | ||
5030 | >> endobj | ||
5031 | 1117 0 obj << | ||
5032 | /D [1105 0 R /XYZ 62.362 572.356 null] | ||
4945 | >> endobj | 5033 | >> endobj |
4946 | 1118 0 obj << | 5034 | 1118 0 obj << |
4947 | /D [1116 0 R /XYZ 61.362 808.874 null] | 5035 | /D [1105 0 R /XYZ 286.262 575.345 null] |
4948 | >> endobj | 5036 | >> endobj |
4949 | 1119 0 obj << | 5037 | 1119 0 obj << |
4950 | /D [1116 0 R /XYZ 62.362 634.714 null] | 5038 | /D [1105 0 R /XYZ 286.262 575.345 null] |
4951 | >> endobj | 5039 | >> endobj |
4952 | 1120 0 obj << | 5040 | 1120 0 obj << |
4953 | /D [1116 0 R /XYZ 62.362 634.714 null] | 5041 | /D [1105 0 R /XYZ 338.254 558.299 null] |
4954 | >> endobj | 5042 | >> endobj |
4955 | 1121 0 obj << | 5043 | 1121 0 obj << |
4956 | /D [1116 0 R /XYZ 233.129 643.529 null] | 5044 | /D [1105 0 R /XYZ 338.254 558.299 null] |
4957 | >> endobj | 5045 | >> endobj |
4958 | 1122 0 obj << | 5046 | 1122 0 obj << |
4959 | /D [1116 0 R /XYZ 233.129 643.529 null] | 5047 | /D [1105 0 R /XYZ 146.393 541.253 null] |
4960 | >> endobj | 5048 | >> endobj |
4961 | 1123 0 obj << | 5049 | 1123 0 obj << |
4962 | /D [1116 0 R /XYZ 344.072 626.483 null] | 5050 | /D [1105 0 R /XYZ 146.393 541.253 null] |
4963 | >> endobj | 5051 | >> endobj |
4964 | 1124 0 obj << | 5052 | 1124 0 obj << |
4965 | /D [1116 0 R /XYZ 344.072 626.483 null] | 5053 | /D [1105 0 R /XYZ 62.362 504.538 null] |
4966 | >> endobj | 5054 | >> endobj |
4967 | 1125 0 obj << | 5055 | 1125 0 obj << |
4968 | /D [1116 0 R /XYZ 116.387 609.437 null] | 5056 | /D [1105 0 R /XYZ 62.362 504.538 null] |
4969 | >> endobj | 5057 | >> endobj |
4970 | 1126 0 obj << | 5058 | 1126 0 obj << |
4971 | /D [1116 0 R /XYZ 116.387 609.437 null] | 5059 | /D [1105 0 R /XYZ 62.362 487.796 null] |
4972 | >> endobj | 5060 | >> endobj |
4973 | 1127 0 obj << | 5061 | 1127 0 obj << |
4974 | /D [1116 0 R /XYZ 62.362 572.356 null] | 5062 | /D [1105 0 R /XYZ 62.362 487.796 null] |
4975 | >> endobj | 5063 | >> endobj |
4976 | 1128 0 obj << | 5064 | 1128 0 obj << |
4977 | /D [1116 0 R /XYZ 62.362 572.356 null] | 5065 | /D [1105 0 R /XYZ 62.362 473.069 null] |
4978 | >> endobj | 5066 | >> endobj |
4979 | 1129 0 obj << | 5067 | 1129 0 obj << |
4980 | /D [1116 0 R /XYZ 286.262 575.345 null] | 5068 | /D [1105 0 R /XYZ 62.362 473.069 null] |
4981 | >> endobj | 5069 | >> endobj |
4982 | 1130 0 obj << | 5070 | 1130 0 obj << |
4983 | /D [1116 0 R /XYZ 286.262 575.345 null] | 5071 | /D [1105 0 R /XYZ 277.695 473.069 null] |
4984 | >> endobj | 5072 | >> endobj |
4985 | 1131 0 obj << | 5073 | 1131 0 obj << |
4986 | /D [1116 0 R /XYZ 338.254 558.299 null] | 5074 | /D [1105 0 R /XYZ 277.695 473.069 null] |
4987 | >> endobj | 5075 | >> endobj |
4988 | 1132 0 obj << | 5076 | 1132 0 obj << |
4989 | /D [1116 0 R /XYZ 338.254 558.299 null] | 5077 | /D [1105 0 R /XYZ 370.275 456.023 null] |
4990 | >> endobj | 5078 | >> endobj |
4991 | 1133 0 obj << | 5079 | 1133 0 obj << |
4992 | /D [1116 0 R /XYZ 146.393 541.253 null] | 5080 | /D [1105 0 R /XYZ 370.275 456.023 null] |
4993 | >> endobj | 5081 | >> endobj |
4994 | 1134 0 obj << | 5082 | 1134 0 obj << |
4995 | /D [1116 0 R /XYZ 146.393 541.253 null] | 5083 | /D [1105 0 R /XYZ 158.097 438.977 null] |
4996 | >> endobj | 5084 | >> endobj |
4997 | 1135 0 obj << | 5085 | 1135 0 obj << |
4998 | /D [1116 0 R /XYZ 62.362 504.538 null] | 5086 | /D [1105 0 R /XYZ 158.097 438.977 null] |
4999 | >> endobj | 5087 | >> endobj |
5000 | 1136 0 obj << | 5088 | 1136 0 obj << |
5001 | /D [1116 0 R /XYZ 62.362 504.538 null] | 5089 | /D [1105 0 R /XYZ 62.362 401.93 null] |
5002 | >> endobj | 5090 | >> endobj |
5003 | 1137 0 obj << | 5091 | 1137 0 obj << |
5004 | /D [1116 0 R /XYZ 62.362 487.796 null] | 5092 | /D [1105 0 R /XYZ 62.362 401.93 null] |
5005 | >> endobj | 5093 | >> endobj |
5006 | 1138 0 obj << | 5094 | 1138 0 obj << |
5007 | /D [1116 0 R /XYZ 62.362 487.796 null] | 5095 | /D [1105 0 R /XYZ 62.362 384.884 null] |
5008 | >> endobj | 5096 | >> endobj |
5009 | 1139 0 obj << | 5097 | 1139 0 obj << |
5010 | /D [1116 0 R /XYZ 62.362 473.069 null] | 5098 | /D [1105 0 R /XYZ 62.362 384.884 null] |
5011 | >> endobj | 5099 | >> endobj |
5012 | 1140 0 obj << | 5100 | 1140 0 obj << |
5013 | /D [1116 0 R /XYZ 62.362 473.069 null] | 5101 | /D [1105 0 R /XYZ 62.362 370.794 null] |
5014 | >> endobj | 5102 | >> endobj |
5015 | 1141 0 obj << | 5103 | 1141 0 obj << |
5016 | /D [1116 0 R /XYZ 277.695 473.069 null] | 5104 | /D [1105 0 R /XYZ 62.362 370.794 null] |
5017 | >> endobj | 5105 | >> endobj |
5018 | 1142 0 obj << | 5106 | 1142 0 obj << |
5019 | /D [1116 0 R /XYZ 277.695 473.069 null] | 5107 | /D [1105 0 R /XYZ 460.875 370.794 null] |
5020 | >> endobj | 5108 | >> endobj |
5021 | 1143 0 obj << | 5109 | 1143 0 obj << |
5022 | /D [1116 0 R /XYZ 370.275 456.023 null] | 5110 | /D [1105 0 R /XYZ 460.875 370.794 null] |
5023 | >> endobj | 5111 | >> endobj |
5024 | 1144 0 obj << | 5112 | 1144 0 obj << |
5025 | /D [1116 0 R /XYZ 370.275 456.023 null] | 5113 | /D [1105 0 R /XYZ 62.362 333.713 null] |
5026 | >> endobj | 5114 | >> endobj |
5027 | 1145 0 obj << | 5115 | 1145 0 obj << |
5028 | /D [1116 0 R /XYZ 158.097 438.977 null] | 5116 | /D [1105 0 R /XYZ 62.362 333.713 null] |
5029 | >> endobj | 5117 | >> endobj |
5030 | 1146 0 obj << | 5118 | 1146 0 obj << |
5031 | /D [1116 0 R /XYZ 158.097 438.977 null] | 5119 | /D [1105 0 R /XYZ 62.362 319.656 null] |
5032 | >> endobj | 5120 | >> endobj |
5033 | 1147 0 obj << | 5121 | 1147 0 obj << |
5034 | /D [1116 0 R /XYZ 62.362 401.93 null] | 5122 | /D [1105 0 R /XYZ 62.362 319.656 null] |
5035 | >> endobj | 5123 | >> endobj |
5036 | 1148 0 obj << | 5124 | 1148 0 obj << |
5037 | /D [1116 0 R /XYZ 62.362 401.93 null] | 5125 | /D [1105 0 R /XYZ 119.794 319.656 null] |
5038 | >> endobj | 5126 | >> endobj |
5039 | 1149 0 obj << | 5127 | 1149 0 obj << |
5040 | /D [1116 0 R /XYZ 62.362 384.884 null] | 5128 | /D [1105 0 R /XYZ 119.794 319.656 null] |
5041 | >> endobj | 5129 | >> endobj |
5042 | 1150 0 obj << | 5130 | 1150 0 obj << |
5043 | /D [1116 0 R /XYZ 62.362 384.884 null] | 5131 | /D [1105 0 R /XYZ 62.362 283.245 null] |
5044 | >> endobj | 5132 | >> endobj |
5045 | 1151 0 obj << | 5133 | 1151 0 obj << |
5046 | /D [1116 0 R /XYZ 62.362 370.794 null] | 5134 | /D [1105 0 R /XYZ 62.362 283.245 null] |
5047 | >> endobj | ||
5048 | 1152 0 obj << | ||
5049 | /D [1116 0 R /XYZ 62.362 370.794 null] | ||
5050 | >> endobj | ||
5051 | 1153 0 obj << | ||
5052 | /D [1116 0 R /XYZ 460.875 370.794 null] | ||
5053 | >> endobj | ||
5054 | 1154 0 obj << | ||
5055 | /D [1116 0 R /XYZ 460.875 370.794 null] | ||
5056 | >> endobj | ||
5057 | 1155 0 obj << | ||
5058 | /D [1116 0 R /XYZ 62.362 333.713 null] | ||
5059 | >> endobj | 5135 | >> endobj |
5060 | 1156 0 obj << | 5136 | 1103 0 obj << |
5061 | /D [1116 0 R /XYZ 62.362 333.713 null] | 5137 | /D [1105 0 R /XYZ 271.78 256.214 null] |
5062 | >> endobj | ||
5063 | 1157 0 obj << | ||
5064 | /D [1116 0 R /XYZ 62.362 319.656 null] | ||
5065 | >> endobj | ||
5066 | 1158 0 obj << | ||
5067 | /D [1116 0 R /XYZ 62.362 319.656 null] | ||
5068 | >> endobj | ||