diff --git a/changelog b/changelog index 160ae63..c4acf60 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,4 @@ +20081122 tpd src/axiom-website put website under change control 20081122 tpd zips/gcl-2.6.8pre3.unixport.makefile.patch added 20081122 tpd zips/gcl-2.6.8pre3.unixport.init_gcl.lsp.in.patch added 20081122 tpd zips/gcl-2.6.8pre3.cmpnew.gcl_cmpflet.lsp.patch added diff --git a/src/axiom-website/CATS/index.html b/src/axiom-website/CATS/index.html new file mode 100644 index 0000000..b74f1c8 --- /dev/null +++ b/src/axiom-website/CATS/index.html @@ -0,0 +1,128 @@ + + + + (CATS) Computer Algebra Test Suite + + + +This work is part of the Computer Algebra Test Suite (CATS). +These files show the results that Axiom computes given the +set of integrals listed in +
+  Spiegel, Murray R. 
+  Mathematical Handbook of Formulas and Tables
+  Schaum's Outline Series McGraw-Hill 1968 
+
+

+Each integral is computed by Axiom and compared against the +published result. +

+Each Axiom result is differenced from the published result +and reduced to a constant (usually 0). +

+ + + Schaums 14.59-14.83  + source + pdf
+ Schaums 14.84-14.104  + source + pdf
+ Schaums 14.104-14.112  + source + pdf
+ Schaums 14.113-.119  + source + pdf
+ Schaums 14.120-14.124  + source + pdf
+ Schaums 14.125-14.143  + source + pdf
+ Schaums 14.144-14.162  + source + pdf
+ Schaums 14.163-14.181  + source + pdf
+ Schaums 14.182-14.209  + source + pdf
+ Schaums 14.210-14.236  + source + pdf
+ Schaums 14.237-14.264  + source + pdf
+ Schaums 14.265-14.279  + source + pdf
+ Schaums 14.280-14.298  + source + pdf
+ Schaums 14.299-14.310  + source + pdf
+ Schaums 14.311-14.324  + source + pdf
+ Schaums 14.325-14.338  + source + pdf
+ Schaums 14.339-14.368  + source + pdf
+ Schaums 14.369-14.398  + source + pdf
+ Schaums 14.399-14.428  + source + pdf
+ Schaums 14.429-14.439  + source + pdf
+ Schaums 14.440-14.450  + source + pdf
+ Schaums 14.451-14.460  + source + pdf
+ Schaums 14.461-14.470  + source + pdf
+ Schaums 14.471-14.508  + source + pdf
+ Schaums 14.509-14.524  + source + pdf
+ Schaums 14.525-14.539  + source + pdf
+ Schaums 14.540-14.561  + source + pdf
+ Schaums 14.562-14.589  + source + pdf
+ Schaums 14.590-14.603  + source + pdf
+ Schaums 14.604-14.614  + source + pdf
+ Schaums 14.615-14.625  + source + pdf
+ Schaums 14.626-14.635  + source + pdf
+ Schaums 14.636-14.645  + source + pdf
+ Schaums 14.646-14.677  + source + pdf
+ + \ No newline at end of file diff --git a/src/axiom-website/CATS/schaum1.input.pamphlet b/src/axiom-website/CATS/schaum1.input.pamphlet new file mode 100644 index 0000000..615d907 --- /dev/null +++ b/src/axiom-website/CATS/schaum1.input.pamphlet @@ -0,0 +1,1430 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum1.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.59~~~~~$\displaystyle +\int{\frac{dx}{ax+b}}$} +$$\int{\frac{1}{ax+b}}= +\frac{1}{a}~\ln(ax+b) +$$ +<<*>>= +)spool schaum1.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(a*x+b),x) +--R +--R log(a x + b) +--R (1) ------------ +--R a +--R Type: Union(Expression Integer,...) +--E 1 + +--S 2 +bb:=1/a*log(a*x+b) +--R +--R log(a x + b) +--R (2) ------------ +--R a +--R Type: Expression Integer +--E + +--S 3 14:59 Schaums and Axiom agree +cc:=bb-aa +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.60~~~~~$\displaystyle +\int{\frac{x~dx}{ax+b}}$} +$$\int{\frac{x}{ax+b}}= +\frac{x}{a}-\frac{b}{a^2}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x/(a*x+b),x) +--R +--R +--R - b log(a x + b) + a x +--R (1) ---------------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=x/a-b/a^2*log(a*x+b) +--R +--R - b log(a x + b) + a x +--R (2) ---------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:60 Schaums and Axiom agree +cc:=bb-aa +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.61~~~~~$\displaystyle +\int{\frac{x^2~dx}{ax+b}}$} +$$\int{\frac{x^2}{ax+b}}= +\frac{(ax+b)^2}{2a^3}-\frac{2b(ax+b)}{a^3}+\frac{b^2}{a^3}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2/(a*x+b),x) +--R +--R 2 2 2 +--R 2b log(a x + b) + a x - 2a b x +--R (1) ------------------------------- +--R 3 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=(a*x+b)^2/(2*a^3)-(2*b*(a*x+b))/a^3+b^2/a^3*log(a*x+b) +--R +--R 2 2 2 2 +--R 2b log(a x + b) + a x - 2a b x - 3b +--R (2) ------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 9 +cc:=bb-aa +--R +--R 2 +--R 3b +--R (3) - --- +--R 3 +--R 2a +--R Type: Expression Integer +--E +@ +This factor is constant with respect to $x$ as shown by taking the +derivative. It is a constant of integration. +<<*>>= +--S 10 14:61 Schaums and Axiom differ by a constant +differentiate(cc,x) +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.62~~~~~$\displaystyle +\int{\frac{x^3~dx}{ax+b}}$} +$$\int{\frac{x^3}{ax+b}}= +\frac{(ax+b)^3}{3a^4}-\frac{3b(ax+b)^2}{2a^4}+ +\frac{3b^2(ax+b)}{a^4}-\frac{b^3}{a^4}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(x^3/(a*x+b),x) +--R +--R 3 3 3 2 2 2 +--R - 6b log(a x + b) + 2a x - 3a b x + 6a b x +--R (1) -------------------------------------------- +--R 4 +--R 6a +--R Type: Union(Expression Integer,...) +--E +@ +and the book expression is: +<<*>>= +--S 12 +bb:=(a*x+b)^3/(3*a^4)-(3*b*(a*x+b)^2)/(2*a^4)+(3*b^2*(a*x+b))/a^4-(b^3/a^4)*log(a*x+b) +--R +--R 3 3 3 2 2 2 3 +--R - 6b log(a x + b) + 2a x - 3a b x + 6a b x + 11b +--R (2) --------------------------------------------------- +--R 4 +--R 6a +--R Type: Expression Integer +--E +@ + +The difference is a constant with respect to x: +<<*>>= +--S 13 +cc:=aa-bb +--R +--R 3 +--R 11b +--R (3) - ---- +--R 4 +--R 6a +--R Type: Expression Integer +--E +@ + +If we differentiate each expression we see that this is the integration +constant. +<<*>>= +--S 14 14:62 Schaums and Axiom differ by a constant +dd:=D(cc,x) +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.63~~~~~$\displaystyle +\int{\frac{dx}{x~(ax+b)}}$} +$$\int{\frac{1}{x~(ax+b)}}= +\frac{1}{b}~\ln\left(\frac{x}{ax+b}\right) +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(1/(x*(a*x+b)),x) +--R +--R - log(a x + b) + log(x) +--R (1) ----------------------- +--R b +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb:=1/b*log(x/(a*x+b)) +--R +--R x +--R log(-------) +--R a x + b +--R (2) ------------ +--R b +--R Type: Expression Integer +--E + +--S 17 +cc:=aa-bb +--R +--R x +--R - log(a x + b) + log(x) - log(-------) +--R a x + b +--R (3) -------------------------------------- +--R b +--R Type: Expression Integer +--E +@ +but we know that $$\log(a)-\log(b)=\log(\frac{a}{b})$$ + +We can express this fact as a rule: +<<*>>= +--S 18 +logdiv:=rule(log(a)-log(b) == log(a/b)) +--R +--R a +--I (4) - log(b) + log(a) + %I == log(-) + %I +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E +@ +and use this rule to rewrite the logs into divisions: +<<*>>= +--S 19 14:63 Schaums and Axiom agree +dd:=logdiv cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ +so we can see the equivalence directly. + +\section{\cite{1}:14.64~~~~~$\displaystyle +\int{\frac{dx}{x^2~(ax+b)}}$} +$$\int{\frac{1}{x^2~(ax+b)}}= +-\frac{1}{bx}+\frac{a}{b^2}~\ln\left(\frac{ax+b}{x}\right) +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(1/(x^2*(a*x+b)),x) +--R +--R a x log(a x + b) - a x log(x) - b +--R (1) --------------------------------- +--R 2 +--R b x +--R Type: Union(Expression Integer,...) +--E +@ + +The original form given in the book expands to: +<<*>>= +--S 21 +bb:=-1/(b*x)+a/b^2*log((a*x+b)/x) +--R +--R a x + b +--R a x log(-------) - b +--R x +--R (2) -------------------- +--R 2 +--R b x +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R a x + b +--R a log(a x + b) - a log(x) - a log(-------) +--R x +--R (3) ------------------------------------------ +--R 2 +--R b +--R Type: Expression Integer +--E +@ + +We can define the following rule to expand log forms: +<<*>>= +--S 23 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E +@ +and apply it to the difference +<<*>>= +--S 24 14:64 Schaums and Axiom agree +divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.65~~~~~$\displaystyle +\int{\frac{dx}{x^3~(ax+b)}}$} +$$\int{\frac{1}{x^3~(ax+b)}}= +\frac{2ax-b}{2b^2x^2}+\frac{a^2}{b^3}~\ln\left(\frac{x}{ax+b}\right) +$$ +<<*>>= +)clear all +--S 25 +aa:=integrate(1/(x^3*(a*x+b)),x) +--R +--R 2 2 2 2 2 +--R - 2a x log(a x + b) + 2a x log(x) + 2a b x - b +--R (1) ----------------------------------------------- +--R 3 2 +--R 2b x +--R Type: Union(Expression Integer,...) +--E + +--S 26 +bb:=(2*a*x-b)/(2*b^2*x^2)+a^2/b^3*log(x/(a*x+b)) +--R +--R 2 2 x 2 +--R 2a x log(-------) + 2a b x - b +--R a x + b +--R (2) ------------------------------- +--R 3 2 +--R 2b x +--R Type: Expression Integer +--E + +--S 27 +cc:=aa-bb +--R +--R 2 2 2 x +--R - a log(a x + b) + a log(x) - a log(-------) +--R a x + b +--R (3) -------------------------------------------- +--R 3 +--R b +--R Type: Expression Integer +--E + +--S 28 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 29 14:65 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.66~~~~~$\displaystyle +\int{\frac{dx}{(ax+b)^2}}$} +$$\int{\frac{1}{(ax+b)^2}}= +\frac{-1}{a~(ax+b)} +$$ +<<*>>= +)clear all + +--S 30 +aa:=integrate(1/(a*x+b)^2,x) +--R +--R 1 +--R (1) - --------- +--R 2 +--R a x + a b +--R Type: Union(Expression Integer,...) +--E + +--S 31 +bb:=-1/(a*(a*x+b)) +--R +--R 1 +--R (2) - --------- +--R 2 +--R a x + a b +--R Type: Fraction Polynomial Integer +--E + +--S 32 14:66 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.67~~~~~$\displaystyle +\int{\frac{x~dx}{(ax+b)^2}}$} +$$\int{\frac{x}{(ax+b)^2}}= +\frac{b}{a^2~(ax+b)}+\frac{1}{a^2}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(x/(a*x+b)^2,x) +--R +--R (a x + b)log(a x + b) + b +--R (1) ------------------------- +--R 3 2 +--R a x + a b +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=b/(a^2*(a*x+b))+1/a^2*log(a*x+b) +--R +--R (a x + b)log(a x + b) + b +--R (2) ------------------------- +--R 3 2 +--R a x + a b +--R Type: Expression Integer +--E + +--S 35 14:67 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.68~~~~~$\displaystyle +\int{\frac{x^2~dx}{(ax+b)^2}}$} +$$\int{\frac{x^2}{(ax+b)^2}}= +\frac{ax+b}{a^3}-\frac{b^2}{a^3~(ax+b)} +-\frac{2b}{a^3}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(x^2/(a*x+b)^2,x) +--R +--R 2 2 2 2 +--R (- 2a b x - 2b )log(a x + b) + a x + a b x - b +--R (1) ------------------------------------------------ +--R 4 3 +--R a x + a b +--R Type: Union(Expression Integer,...) +--E +@ +and the book expression expands into +<<*>>= +--S 37 +bb:=(a*x+b)/a^3-b^2/(a^3*(a*x+b))-((2*b)/a^3)*log(a*x+b) +--R +--R 2 2 2 +--R (- 2a b x - 2b )log(a x + b) + a x + 2a b x +--R (2) -------------------------------------------- +--R 4 3 +--R a x + a b +--R Type: Expression Integer +--E +@ + +These two expressions differ by the constant +<<*>>= +--S 38 +cc:=aa-bb +--R +--R b +--R (3) - -- +--R 3 +--R a +--R Type: Expression Integer +--E +@ + +That this expression is constant can be shown by differentiation: +<<*>>= +--S 39 14:68 Schaums and Axiom differ by a constant +D(cc,x) +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.69~~~~~$\displaystyle +\int{\frac{x^3~dx}{(ax+b)^2}}$} +$$\int{\frac{x^3}{(ax+b)^2}}= +\frac{(ax+b)^2}{2a^4}-\frac{3b(ax+b)}{a^4}+\frac{b^3}{a^4(ax+b)} ++\frac{3b^2}{a^4}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(x^3/(a*x+b)^2,x) +--R +--R 2 3 3 3 2 2 2 3 +--R (6a b x + 6b )log(a x + b) + a x - 3a b x - 4a b x + 2b +--R (1) ---------------------------------------------------------- +--R 5 4 +--R 2a x + 2a b +--R Type: Union(Expression Integer,...) +--E + +--S 41 +bb:=(a*x+b)^2/(2*a^4)-(3*b*(a*x+b))/a^4+b^3/(a^4*(a*x+b))+(3*b^2/a^4)*log(a*x+b) +--R +--R 2 3 3 3 2 2 2 3 +--R (6a b x + 6b )log(a x + b) + a x - 3a b x - 9a b x - 3b +--R (2) ---------------------------------------------------------- +--R 5 4 +--R 2a x + 2a b +--R Type: Expression Integer +--E + +--S 42 +cc:=aa-bb +--R +--R 2 +--R 5b +--R (3) --- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 43 14:69 Schaums and Axiom differ by a constant +dd:=D(cc,x) +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.70~~~~~$\displaystyle +\int{\frac{dx}{x~(ax+b)^2}}$} +$$\int{\frac{1}{x~(ax+b)^2}}= +\frac{1}{b~(ax+b)}+\frac{1}{b^2}~\ln\left(\frac{x}{ax+b}\right) +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(1/(x*(a*x+b)^2),x) +--R +--R (- a x - b)log(a x + b) + (a x + b)log(x) + b +--R (1) --------------------------------------------- +--R 2 3 +--R a b x + b +--R Type: Union(Expression Integer,...) +--E +@ +and the book says: +<<*>>= +--S 45 +bb:=(1/(b*(a*x+b))+(1/b^2)*log(x/(a*x+b))) +--R +--R x +--R (a x + b)log(-------) + b +--R a x + b +--R (2) ------------------------- +--R 2 3 +--R a b x + b +--R Type: Expression Integer +--E + +--S 46 +cc:=aa-bb +--R +--R x +--R - log(a x + b) + log(x) - log(-------) +--R a x + b +--R (3) -------------------------------------- +--R 2 +--R b +--R Type: Expression Integer +--E +@ +So we look at the divlog rule again: +<<*>>= +--S 47 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E +@ + +we apply it: +<<*>>= +--S 48 14:70 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.71~~~~~$\displaystyle +\int{\frac{dx}{x^2~(ax+b)^2}}$} +$$\int{\frac{1}{x^2~(ax+b)^2}}= +\frac{-a}{b^2~(ax+b)}-\frac{1}{b^2~x}+ +\frac{2a}{b^3}~\ln\left(\frac{ax+b}{x}\right) +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(1/(x^2*(a*x+b)^2),x) +--R +--R 2 2 2 2 2 +--R (2a x + 2a b x)log(a x + b) + (- 2a x - 2a b x)log(x) - 2a b x - b +--R (1) --------------------------------------------------------------------- +--R 3 2 4 +--R a b x + b x +--R Type: Union(Expression Integer,...) +--E +@ +and the book says: +<<*>>= +--S 50 +bb:=(-a/(b^2*(a*x+b)))-(1/(b^2*x))+((2*a)/b^3)*log((a*x+b)/x) +--R +--R 2 2 a x + b 2 +--R (2a x + 2a b x)log(-------) - 2a b x - b +--R x +--R (2) ------------------------------------------ +--R 3 2 4 +--R a b x + b x +--R Type: Expression Integer +--E + +--S 51 +cc:=aa-bb +--R +--R a x + b +--R 2a log(a x + b) - 2a log(x) - 2a log(-------) +--R x +--R (3) --------------------------------------------- +--R 3 +--R b +--R Type: Expression Integer +--E +@ +which calls for our divlog rule: +<<*>>= +--S 52 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E +@ +which we use to transform the result: +<<*>>= +--S 53 14:71 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.72~~~~~$\displaystyle +\int{\frac{dx}{x^3~(ax+b)^2}}$} +$$\int{\frac{1}{x^3~(ax+b)^2}}= +-\frac{(ax+b)^2}{2b^4x^2}+\frac{3a(ax+b)}{b^4x}- +\frac{a^3x}{b^4(ax+b)}-\frac{3a^2}{b^4}~\ln\left(\frac{ax+b}{x}\right) +$$ +<<*>>= +)clear all + +--S 54 +aa:=integrate(1/(x^3*(a*x+b)^2),x) +--R +--R (1) +--R 3 3 2 2 3 3 2 2 2 2 +--R (- 6a x - 6a b x )log(a x + b) + (6a x + 6a b x )log(x) + 6a b x +--R + +--R 2 3 +--R 3a b x - b +--R / +--R 4 3 5 2 +--R 2a b x + 2b x +--R Type: Union(Expression Integer,...) +--E + +--S 55 +bb:=-(a*x+b)^2/(2*b^4*x^2)+(3*a*(a*x+b))/(b^4*x)-(a^3*x)/(b^4*(a*x+b))-((3*a^2)/b^4)*log((a*x+b)/x) +--R +--R 3 3 2 2 a x + b 3 3 2 2 2 3 +--R (- 6a x - 6a b x )log(-------) + 3a x + 9a b x + 3a b x - b +--R x +--R (2) --------------------------------------------------------------- +--R 4 3 5 2 +--R 2a b x + 2b x +--R Type: Expression Integer +--E + +--S 56 +cc:=aa-bb +--R +--R 2 2 2 a x + b 2 +--R - 6a log(a x + b) + 6a log(x) + 6a log(-------) - 3a +--R x +--R (3) ----------------------------------------------------- +--R 4 +--R 2b +--R Type: Expression Integer +--E + +--S 57 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 58 +dd:=divlog cc +--R +--R 2 +--R 3a +--R (5) - --- +--R 4 +--R 2b +--R Type: Expression Integer +--E + +--S 59 14:72 Schaums and Axiom differ by a constant +ee:=D(dd,x) +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.73~~~~~$\displaystyle +\int{\frac{dx}{(ax+b)^3}}$} +$$\int{\frac{1}{(ax+b)^3}}= +\frac{-1}{2a(ax+b)^2} +$$ +<<*>>= +)clear all + +--S 60 +aa:=integrate(1/(a*x+b)^3,x) +--R +--R 1 +--R (1) - ---------------------- +--R 3 2 2 2 +--R 2a x + 4a b x + 2a b +--R Type: Union(Expression Integer,...) +--E + +--S 61 +bb:=-1/(2*(a*x+b)^2) +--R +--R 1 +--R (2) - -------------------- +--R 2 2 2 +--R 2a x + 4a b x + 2b +--R Type: Fraction Polynomial Integer +--E + +--S 62 +cc:=aa-bb +--R +--R a - 1 +--R (3) ---------------------- +--R 3 2 2 2 +--R 2a x + 4a b x + 2a b +--R Type: Expression Integer +--E + +--S 63 +dd:=aa/bb +--R +--R 1 +--R (4) - +--R a +--R Type: Expression Integer +--E + +--S 64 14:73 Schaums and Axiom differ by a constant +ee:=D(dd,x) +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.74~~~~~$\displaystyle +\int{\frac{x~dx}{(ax+b)^3}}$} +$$\int{\frac{x}{(ax+b)^3}}= +\frac{-1}{a^2(ax+b)}+\frac{b}{2a^2(ax+b)^2} +$$ +<<*>>= +)clear all + +--S 65 +aa:=integrate(x/(a*x+b)^3,x) +--R +--R - 2a x - b +--R (1) ---------------------- +--R 4 2 3 2 2 +--R 2a x + 4a b x + 2a b +--R Type: Union(Expression Integer,...) +--E + +--S 66 +bb:=-1/(a^2*(a*x+b))+b/(2*a^2*(a*x+b)^2) +--R +--R - 2a x - b +--R (2) ---------------------- +--R 4 2 3 2 2 +--R 2a x + 4a b x + 2a b +--R Type: Fraction Polynomial Integer +--E + +--S 67 14:74 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.75~~~~~$\displaystyle +\int{\frac{x^2~dx}{(ax+b)^3}}$} +$$\int{\frac{x^2}{(ax+b)^3}}= +\frac{2b}{a^3(ax+b)}-\frac{b^2}{2a^3(ax+b)^2}+ +\frac{1}{a^3}~\ln(ax+b) +$$ +<<*>>= +)clear all + +--S 68 +aa:=integrate(x^2/(a*x+b)^3,x) +--R +--R 2 2 2 2 +--R (2a x + 4a b x + 2b )log(a x + b) + 4a b x + 3b +--R (1) ------------------------------------------------- +--R 5 2 4 3 2 +--R 2a x + 4a b x + 2a b +--R Type: Union(Expression Integer,...) +--E + +--S 69 +bb:=(2*b)/(a^3*(a*x+b))-(b^2)/(2*a^3*(a*x+b)^2)+1/a^3*log(a*x+b) +--R +--R 2 2 2 2 +--R (2a x + 4a b x + 2b )log(a x + b) + 4a b x + 3b +--R (2) ------------------------------------------------- +--R 5 2 4 3 2 +--R 2a x + 4a b x + 2a b +--R Type: Expression Integer +--E + +--S 70 14:75 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.76~~~~~$\displaystyle +\int{\frac{x^3~dx}{(ax+b)^3}}$} +$$\int{\frac{x^3}{(ax+b)^3}}= +\frac{x}{a^3}-\frac{3b^2}{a^4(ax+b)}+\frac{b^3}{2a^4(ax+b)^2}- +\frac{3b}{a^4}~\ln(ax+b) +$$ +<<*>>= +)clear all +--S 71 +aa:=integrate(x^3/(a*x+b)^3,x) +--R +--R (1) +--R 2 2 2 3 3 3 2 2 2 3 +--R (- 6a b x - 12a b x - 6b )log(a x + b) + 2a x + 4a b x - 4a b x - 5b +--R ------------------------------------------------------------------------ +--R 6 2 5 4 2 +--R 2a x + 4a b x + 2a b +--R Type: Union(Expression Integer,...) +--E + +--S 72 +bb:=(x/a^3)-(3*b^2)/(a^4*(a*x+b))+b^3/(2*a^4*(a*x+b)^2)-(3*b)/a^4*log(a*x+b) +--R +--R (2) +--R 2 2 2 3 3 3 2 2 2 3 +--R (- 6a b x - 12a b x - 6b )log(a x + b) + 2a x + 4a b x - 4a b x - 5b +--R ------------------------------------------------------------------------ +--R 6 2 5 4 2 +--R 2a x + 4a b x + 2a b +--R Type: Expression Integer +--E + +--S 73 14:76 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.77~~~~~$\displaystyle +\int{\frac{dx}{x(ax+b)^3}}$} +$$\int{\frac{1}{x(ax+b)^3}}= +\frac{3}{2b(ax+b)^2}+\frac{2ax}{2b^2(ax+b)^2}- +\frac{1}{b^3}*\ln\left(\frac{ax+b}{x}\right) +$$ + +<<*>>= +)clear all + +--S 74 +aa:=integrate(1/(x*(a*x+b)^3),x) +--R +--R (1) +--R 2 2 2 2 2 2 +--R (- 2a x - 4a b x - 2b )log(a x + b) + (2a x + 4a b x + 2b )log(x) +--R + +--R 2 +--R 2a b x + 3b +--R / +--R 2 3 2 4 5 +--R 2a b x + 4a b x + 2b +--R Type: Union(Expression Integer,...) +--E + +--S 75 +bb:=(a^2*x^2)/(2*b^3*(a*x+b)^2)-(2*a*x)/(b^3*(a*x+b))-(1/b^3)*log((a*x+b)/x) +--R +--R 2 2 2 a x + b 2 2 +--R (- 2a x - 4a b x - 2b )log(-------) - 3a x - 4a b x +--R x +--R (2) ----------------------------------------------------- +--R 2 3 2 4 5 +--R 2a b x + 4a b x + 2b +--R Type: Expression Integer +--E + +--S 76 +cc:=aa-bb +--R +--R a x + b +--R - 2log(a x + b) + 2log(x) + 2log(-------) + 3 +--R x +--R (3) --------------------------------------------- +--R 3 +--R 2b +--R Type: Expression Integer +--E + +--S 77 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 78 +dd:=divlog cc +--R +--R 3 +--R (5) --- +--R 3 +--R 2b +--R Type: Expression Integer +--E + +--S 79 14:77 Schaums and Axiom differ by a constant +ee:=D(dd,x) +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.78~~~~~$\displaystyle +\int{\frac{dx}{x^2(ax+b)^3}}$} +$$\int{\frac{1}{x^2(ax+b)^3}}= +\frac{-a}{2b^2(ax+b)^2}-\frac{2a}{b^3(ax+b)}- +\frac{1}{b^3x}+\frac{3a}{b^4}~\ln\left(\frac{ax+b}{x}\right) +$$ +<<*>>= +)clear all + +--S 80 +aa:=integrate(1/(x^2*(a*x+b)^3),x) +--R +--R (1) +--R 3 3 2 2 2 +--R (6a x + 12a b x + 6a b x)log(a x + b) +--R + +--R 3 3 2 2 2 2 2 2 3 +--R (- 6a x - 12a b x - 6a b x)log(x) - 6a b x - 9a b x - 2b +--R / +--R 2 4 3 5 2 6 +--R 2a b x + 4a b x + 2b x +--R Type: Union(Expression Integer,...) +--E + +--S 81 +bb:=-a/(2*b^2*(a*x+b)^2)-(2*a)/(b^3*(a*x+b))-1/(b^3*x)+((3*a)/b^4)*log((a*x+b)/x) +--R +--R 3 3 2 2 2 a x + b 2 2 2 3 +--R (6a x + 12a b x + 6a b x)log(-------) - 6a b x - 9a b x - 2b +--R x +--R (2) ---------------------------------------------------------------- +--R 2 4 3 5 2 6 +--R 2a b x + 4a b x + 2b x +--R Type: Expression Integer +--E + +--S 82 +cc:=aa-bb +--R +--R a x + b +--R 3a log(a x + b) - 3a log(x) - 3a log(-------) +--R x +--R (3) --------------------------------------------- +--R 4 +--R b +--R Type: Expression Integer +--E + +--S 83 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 84 14:78 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.79~~~~~$\displaystyle +\int{\frac{dx}{x^3(ax+b)^3}}$} +$$\int{\frac{1}{x^3(ax+b)^3}}= +-\frac{1}{2bx^2(ax+b)^2}+ +\frac{2a}{b^2x(ax+b)^2}+ +\frac{9a^2}{b^3(ax+b)^2}+ +\frac{6a^3x}{b^4(ax+b)^2}- +\frac{6a^2}{b^5}~\ln\left(\frac{ax+b}{x}\right)$$ + +<<*>>= +)clear all + +--S 85 +aa:=integrate(1/(x^3*(a*x+b)^3),x) +--R +--R (1) +--R 4 4 3 3 2 2 2 +--R (- 12a x - 24a b x - 12a b x )log(a x + b) +--R + +--R 4 4 3 3 2 2 2 3 3 2 2 2 3 4 +--R (12a x + 24a b x + 12a b x )log(x) + 12a b x + 18a b x + 4a b x - b +--R / +--R 2 5 4 6 3 7 2 +--R 2a b x + 4a b x + 2b x +--R Type: Union(Expression Integer,...) +--E + +--S 86 +bb:=-1/(2*b*x^2*(a*x+b)^2)_ + +(2*a)/(b^2*x*(a*x+b)^2)_ + +(9*a^2)/(b^3*(a*x+b)^2)_ + +(6*a^3*x)/(b^4*(a*x+b)^2)_ + +(-6*a^2)/b^5*log((a*x+b)/x) +--R +--R (2) +--R 4 4 3 3 2 2 2 a x + b 3 3 2 2 2 +--R (- 12a x - 24a b x - 12a b x )log(-------) + 12a b x + 18a b x +--R x +--R + +--R 3 4 +--R 4a b x - b +--R / +--R 2 5 4 6 3 7 2 +--R 2a b x + 4a b x + 2b x +--R Type: Expression Integer +--E + +--S 87 +cc:=aa-bb +--R +--R 2 2 2 a x + b +--R - 6a log(a x + b) + 6a log(x) + 6a log(-------) +--R x +--R (3) ----------------------------------------------- +--R 5 +--R b +--R Type: Expression Integer +--E + +--S 88 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 89 14:79 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.80~~~~~$\displaystyle +\int{(ax+b)^n~dx}$} +$$\int{(ax+b)^n}= +\frac{(ax+b)^{n+1}}{(n+1)a}{\rm\ provided\ }n \ne -1 +$$ +<<*>>= +)clear all +--S 90 +aa:=integrate((a*x+b)^n,x) +--R +--R n log(a x + b) +--R (a x + b)%e +--R (1) ------------------------- +--R a n + a +--R Type: Union(Expression Integer,...) +--E + +--S 91 +bb:=(a*x+b)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R (a x + b) +--R (2) -------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 92 +cc:=aa-bb +--R +--R n log(a x + b) n + 1 +--R (a x + b)%e - (a x + b) +--R (3) ------------------------------------------ +--R a n + a +--R Type: Expression Integer +--E +@ +This messy formula can be simplified using the explog rule: +<<*>>= +--S 93 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 94 +dd:=explog cc +--R +--R n + 1 n +--R - (a x + b) + (a x + b)(a x + b) +--R (5) -------------------------------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 95 14:80 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.81~~~~~$\displaystyle +\int{x(ax+b)^n~dx}$} +$$\int{x(ax+b)^n}= +\frac{(ax+b)^{n+2}}{(n+2)a^2}-\frac{b(ax+b)^{n+1}}{(n+1)a^2} +{\rm\ provided\ }n \ne -1,-2 +$$ +<<*>>= +)clear all +--S 96 +aa:=integrate(x*(a*x+b)^n,x) +--R +--R 2 2 2 2 n log(a x + b) +--R ((a n + a )x + a b n x - b )%e +--R (1) --------------------------------------------- +--R 2 2 2 2 +--R a n + 3a n + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 97 +bb:=((a*x+b)^(n+2))/((n+2)*a^2)-(b*(a*x+b)^(n+1))/((n+1)*a^2) +--R +--R n + 2 n + 1 +--R (n + 1)(a x + b) + (- b n - 2b)(a x + b) +--R (2) -------------------------------------------------- +--R 2 2 2 2 +--R a n + 3a n + 2a +--R Type: Expression Integer +--E + +--S 98 +cc:=aa-bb +--R +--R (3) +--R 2 2 2 2 n log(a x + b) n + 2 +--R ((a n + a )x + a b n x - b )%e + (- n - 1)(a x + b) +--R + +--R n + 1 +--R (b n + 2b)(a x + b) +--R / +--R 2 2 2 2 +--R a n + 3a n + 2a +--R Type: Expression Integer +--E + +--S 99 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 100 +dd:=explog cc +--R +--R (5) +--R n + 2 n + 1 +--R (- n - 1)(a x + b) + (b n + 2b)(a x + b) +--R + +--R 2 2 2 2 n +--R ((a n + a )x + a b n x - b )(a x + b) +--R / +--R 2 2 2 2 +--R a n + 3a n + 2a +--R Type: Expression Integer +--E + +--S 101 +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.82~~~~~$\displaystyle +\int{x^2(ax+b)^n~dx}$} +$$\int{x^2(ax+b)^n}= +\frac{(ax+b)^{n+2}}{(n+3)a^3}- +\frac{2b(ax+b)^{n+2}}{(n+2)a^3}+ +\frac{b^2(ax+b)^{n+1}}{(n+1)a^3} +{\rm\ provided\ }n \ne -1,-2,-3 +$$ + +<<*>>= +)clear all +--S 102 +aa:=integrate(x^2*(a*x+b)^n,x) +--R +--R (1) +--R 3 2 3 3 3 2 2 2 2 2 3 n log(a x + b) +--R ((a n + 3a n + 2a )x + (a b n + a b n)x - 2a b n x + 2b )%e +--R ----------------------------------------------------------------------------- +--R 3 3 3 2 3 3 +--R a n + 6a n + 11a n + 6a +--R Type: Union(Expression Integer,...) +--E + +--S 103 +bb:=(a*x+b)^(n+3)/((n+3)*a^3)-(2*b*(a*x+b)^(n+2))/((n+2)*a^3)+(b^2*(a*x+b)^(n+1))/((n+1)*a^3) +--R +--R (2) +--R 2 n + 3 2 n + 2 +--R (n + 3n + 2)(a x + b) + (- 2b n - 8b n - 6b)(a x + b) +--R + +--R 2 2 2 2 n + 1 +--R (b n + 5b n + 6b )(a x + b) +--R / +--R 3 3 3 2 3 3 +--R a n + 6a n + 11a n + 6a +--R Type: Expression Integer +--E + +--S 104 +cc:=aa-bb +--R +--R (3) +--R 3 2 3 3 3 2 2 2 2 2 3 +--R ((a n + 3a n + 2a )x + (a b n + a b n)x - 2a b n x + 2b ) +--R * +--R n log(a x + b) +--R %e +--R + +--R 2 n + 3 2 n + 2 +--R (- n - 3n - 2)(a x + b) + (2b n + 8b n + 6b)(a x + b) +--R + +--R 2 2 2 2 n + 1 +--R (- b n - 5b n - 6b )(a x + b) +--R / +--R 3 3 3 2 3 3 +--R a n + 6a n + 11a n + 6a +--R Type: Expression Integer +--E + +--S 105 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 106 +dd:=explog cc +--R +--R (5) +--R 2 n + 3 2 n + 2 +--R (- n - 3n - 2)(a x + b) + (2b n + 8b n + 6b)(a x + b) +--R + +--R 2 2 2 2 n + 1 +--R (- b n - 5b n - 6b )(a x + b) +--R + +--R 3 2 3 3 3 2 2 2 2 2 3 n +--R ((a n + 3a n + 2a )x + (a b n + a b n)x - 2a b n x + 2b )(a x + b) +--R / +--R 3 3 3 2 3 3 +--R a n + 6a n + 11a n + 6a +--R Type: Expression Integer +--E + +--S 107 14:82 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ +\section{\cite{1}:14.83~~~~~$\displaystyle +\int{x^m(ax+b)^n}~dx$} +$$\int{x^m(ax+b)^n} +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^{m+1}(ax+b)^n}{m+n+1} ++\frac{nb}{m+n+1}\int{x^m(ax+b)^{n-1}}\\ +\\ +\displaystyle +\frac{x^{m+1}(ax+b)^{n+1}}{(m+n+1)a} +-\frac{mb}{(m+n+1)a}\int{x^{m-1}(ax+b)^n}\\ +\\ +\displaystyle +\frac{-x^{m+1}(ax+b)^{n+1}}{(n+1)b} ++\frac{m+n+2}{(n+1)b}\int{x^m(ax+b)^{n+1}}\\ +\end{array} +\right. +$$ + +<<*>>= +--S 108 14:83 Axiom cannot do this integration +aa:=integrate(x^m*(a*x+b)^n,x) +--R +--R x +--R ++ m n +--I (1) | %U (b + %U a) d%U +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp60-61 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum1.input.pdf b/src/axiom-website/CATS/schaum1.input.pdf new file mode 100644 index 0000000..1c316b5 --- /dev/null +++ b/src/axiom-website/CATS/schaum1.input.pdf @@ -0,0 +1,3029 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/FPGSSG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ZTNFWY+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/KHZWRY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T5盯t1e!oDl4;fӂͯb +jK$Sօvk@y4㌙̢Q46 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/DKLHRG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/OOVPHA+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/IORQIL+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/ZHEONB+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/OZINXB+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length 824 +>> +stream +xݘK0 +Bxc@<.,@b>~$inJPrbObJʗ(4Fm?)DueٷƋfJT`ZudbMH.I|l`'A!1Ã.E8]~yN*tx^ 5@<.N>>ng}DDT!>wPyr? 6McCW N,BRVĕ|`o/pJ=hnjaG YMYBW pȫoh[ifՏ'4zs\AVgÛ|N=CpÑ9M=x4 N=ڃ]!E ɃÏ CEdx"*FLwˀNkc| +%q #7 >MIE|i8@JΎ|2 u$%zDף@ }4x+ ƌ YcX Bcpv3$};c}c#lKnH0V`W}Cs҇Rl?wç-T-8ھ+$ 홗+DmEzVEDI,ԜZQRa(EѬ(EʇILNr?C'X&WfO2;2HgmfI= F +endstream +endobj +40 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 40 0 R +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 44 0 R +/BaseFont/NBNZIE+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 643 +>> +stream +xՖMs0@ +acő2Õh{(Ӂ J~>+q,v0Ҟ {~䌮mSxPZ]NЅ@W}_tb}ő/t+j_fwZ'Ov2? ?)SK% q8(r2glkAV7MeYMade)1/A&NNEZM؊JK/j7xR(H)iHD"hp@~wd_(\.(9c;wi5ڎ&lŇ u\.Eczh] [)}YϏ?Mת|?W>OsEOewvӒj{ x{C +endstream +endobj +47 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 45 0 R +>> +endobj +42 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 51 0 R +/BaseFont/FYUDNE+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/FXSWPD+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/KOKODZ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/RRBBFY+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 647 +>> +stream +xڵUM0W,kWb$VK7{H,8Ҷ\{83Ɋi1~P,^hB&Ϗ@h&Z|?b5eTctmV*f乬0d.E D!Ԅ,4dCLcgP(utD[ Bh>@\ +2l3D(aX(s2,gJ#9ּODUA2 SC&f]i, 5uMt)R(:dȻPoL݉6 qIJ 2Oב0 Pvg*<|:,_X~,vǢ> +~N ݤCJݟ"=4|X mf X. q> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 677 +>> +stream +xVMo0 Wh7#a첺KivG[vaH + ۲jޭ׊IbHq4[ 0RnPFOk8SzH 2e=zmTV+pR<*+J(Z~M a 1=[(F@WEK  EeMQ kk6õ'Ȟ DX1r2l )РdCizJH֞1Tˡ>K[5]h!rC%ɾֲ#v-Q [*ـtP̘Kq)C;[&ҀabQ3CbۍW*ےpTA ?p5O abn;-?514!4UK>O!H++oTuNrwxɷ%ObE1˒94S-+">{r/@ 'tl@^4gw9sFEiQ(= OaH{U<gz˲KN1>bl~ _Eߩ!O1QurSuC ݘJ+Zmu5wm{|<l,i)gt*xE}Qu߂#8=zx +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 821 +>> +stream +xW]o0}Wik_W bC &%IeIϵ6NFL0s8'$.țTTd&*&Y=Ȃ +zr..eDq0?53oBI2#>'۬B3Gb>yl;D+Bw_brB aq[δ$ dvr(NNڨ> +VG@HKc@Phd1=sL值cBjd1vx'#svÀ^,Ciu)˂zg5:MI?2nMĥ1z\"VFb3QsWWe]Ӫz΀'% H-pLQF ǟ:4_I/ +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 1157 +>> +stream +xWKo6W('+>e c^:v;%[By}Ï2`~c.>*IJsۄ3lhXn'R*f-\T\>NbZr32kI'LԮv$IF!.65ȫ/$*=&QV>*x2\9%O(Oe?$KZ,f)|)<ѵE#VwMzg#]ˍo!.HU#a +V7N9q{x_Ob&eZIkEÖ~d[[nhz+h4hh+kE蒔u"t2]q&J#ZFD6?:<S +j'sߟXALVQX ޤѽD+)@*;"V,J=;3Abuj& I3{.<{`oVv ,eM08 c|O|F,>F:@rB4<2"q2BF( (S?0, ]|ς޳ ·ֆ"KYdl:pX|z&:nWA:A)@'G)JP+G+3:$~[G:r~OydQzZ$z~c4+3v+zӿ- +endstream +endobj +78 0 obj +<< +/F3 16 0 R +/F7 35 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F8 38 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 456 +>> +stream +xT;s0 +8RmɈQ c@Kt!b/ο/(Џvt> Q$iJlͽ"%/ W$7ܔwiݻ)h7423n6F)XM-.8y;&2>D$}|6 uG_Uɏͽм{#G89IgYó"gpjitIg KɌ +ذlZ\C}dlo#R*ĕLdyF cf93 +*BjZn\e z#FYf]a/4ԡ,8ۆHW'mH-C|br~!H$ cZӥGj8H=<Ž:vnX`|<4pke|܁HYDi냴J\* y~ eC +endstream +endobj +82 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 719 +>> +stream +xڵVMo0 W5#[rq.{+EZ`޿e9>*[#IŌ5{v9T HŖߘAVl:ӓQodefqvioi_U`+klŒX(#4ΰL( zfWDso߸c$oNODq9vU{|U]ɱFA5HIM$)18BAP$J7FKCPVz8R+9JHTP:1 N1EԆHV! -@-zĐK4֛6+GB}7$ jچR]ޞ:JNfh&@Pni;S +)A{l~oP{L{ 4:=z@QY1]$tKu99@%*ޝʖyu-WE"EVN볪Rލ矆7s%8opGsr4]VӀb@!`o=C!j|?l~ܮ9n"pӴ.NojY5:(I쭳Z4[}F6,+u$b$#+ɮDX'T#}JzeW(-Puھy_*zO]// џ*yp+|ay=9Y +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 1143 +>> +stream +xWMo6WRJ"ߤ Т"=&. +z ȶ6[4ChINE/8Cr(=8}'PF2fDg(՜f?}1I%]5 _u~L>~AJJ#=%)x;n41+. +Ey⍌VMhXduK +pmrc56,(GEU e^7HR gqK=Bj'X,(18Ċr +Iko>Y/}q8㺬{ʗ!yް?m}8>dӸw`x5>e/x=h'k"p藦IH7W_;}q>OҺpywSz->nSe2 lM2 +$n*h68#qCѐCtKV)ų/˾<5`cToγma|l̩|\<>a]η{7 +XB[x5ސy[ȝ]GNcu~z>L*wai_ԬVm|1cN N$7vWX7_1J[DY38c@}H1햕@e꼈0 >,㮊(AhBit֬T!32I7so]$\(wqPњ:W,Qh2tgKgWut e\!b,VÜBTPZdHBղH0C:GjCu 865܀j#{AƘ z13&fߖ). ,-`g[l E=Ǭ/ࢨ, Z8~kmx9ɀO4ofgoѩlz?uop!B!b! dӣ8 r2zXKֿ*y>ͦ)<Ry^mHMɴtkA9~W ׮Z3TBHQI%X }* GU=u߫_Rqkg)H$}0n!ߨ6Li½| +endstream +endobj +90 0 obj +<< +/F3 16 0 R +/F7 35 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F8 38 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 665 +>> +stream +xVK0Wp4I yH9jjY=VTlURCl32,KKv} ;yǴ`9`6[ >}*K"nSVfEA=hd48J? +bbO)>*ևβW> lpoC ѬV98)3$*\\*Ch'̰!!B'+mlkFCǑM}Ň:+w,8´4I~w{Yِ͚B2+/`e +endstream +endobj +94 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 970 +>> +stream +xڵVM6WhM Rthsi]NڪCQ2)QZwZǑ ?[IBïDsj) Pw+SZwUVG9*4ֺ_BgdRR">>$n1YR[j5D K ++ӆIyEe08Vy}Dʡ**5ar,U_~ɒu_)2,qEHȀDZ.OhrPG 2ޚݐ<%v#@MIM97ҸL\Pn|n%;Xmn!㤑$Lw0cl +$/**S%@*OTx˞*fRETtuTiFde'*B7 +i:\AcNΕpq)WrˮF\]#sG,NO؍xsY)`h|ɩƆ$rx.ع\1,櫯I<v3]n'hټl)p{~` +Yϊ,pE7T$gP*O\ +Iq҈|VAu?>}9>/jŷժjUMSUIvz]Z0;u G JԲ؆16a@v!<::Rkq~Ke5ghi<tߟSi??0x~E)k;Ժ&;D:OhݾZ=S[u{U`۠Z/Jh?W[c>#>Z03t/5,&Y0Kbr}]9 zpKLp/m"\)`=tf̲1U\|g|xie^S'tYW9kt ngwϣ( +endstream +endobj +98 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 281 +>> +stream +x}RAo WplP@ja-ULZmݺ?*ښLwzރ^ + xRu}K +`Xr7A%λz J?)&K3N..+gEdx?"SCN't۹x&~:\X7QǧNkuԅn·FmYW6秣d.iOA; 3P/r3=[UnsY{hA_k˲?OFq324\p*G\sf^nw2Rw^ +endstream +endobj +102 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 680 +>> +stream +xڽMo1 +7 ύ p[ti#J{7fD  a#=y;;K̾(B Td:#9L\֣KMrȵWpAאYr$*!)!3W$? ޙPmj"(rж$Wm ;E, +& M<@ny W`1 +QCҮaxH* %K&C^C93`=/As[{LZ9@JÓ%# KZmNZē28@̌ (gR$pBz7O av|=BQ;ͺIxN[Z f=jIL9o5͗uQ.rlmW!*XLLn[>Eϋ> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 735 +>> +stream +x͖Ko1| + w@4\hZi4RPZ׻}$"*Ż߿K0F6\ޓə$\dhFj"w#QQ.{i]?N4qt́!_g)+j0P .FJN^$ >&T[wT)o`ЕauRV";9@<+rʸȢU4dʺ><S`x/@69Ӹ+n]^ ̀c`m^Jn+`MV+nRdvH@ h{,с^]kA +Sl X$5#dJPrیSEHW/h+R^i8`?Fgenȋ#p"7NQn*'<ɓA?Hmv+p<4a,+aeeO4zMmv|Qݮ*+;^zPzBiOŨ,FI1^.+|]TԉM*1?yVepw9n)Q)w! +b?A!2Fit|C}Z<׏9npiіlw'M٘ON7n~otXnis*\NwTwɿ>VÛb{[mtt|N_+^ +@C=깪 s6gg +endstream +endobj +110 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length 987 +>> +stream +xV]o6}߯ y)y꽬j)cS]DIV <"'!M8ܓv|PL*&*&1Okt3.!+2%} +ېCZP*V)e͠TvГdML30ah8rTamIPiWӲzxf$^Bj~`HB14h< Pd=-ELwbu+ Q^vvۿ# &'@˔Lj +R%G-kْ4ݓe#<{[h2bICt̻ҫYt;^9U86FELobQowMSf۵Gދց(MgvlcSf,juޝ:JHMS92}Y 2(*y*@c]) 1\@l9Ncs6TbLm.ʿż=LQruT*ͷ/:8>֮O_o;cTJZԍs <ʶlv|2I9u5vYHZU^D**P>_~Q]S5>?_[TA{ҨWh/pGDw8^9DjAkcݶmR%A|՟An~.뫪uik_|@(60Roħ[hq癉[AKu@ +endstream +endobj +114 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 114 0 R +>> +endobj +117 0 obj +<< +/Filter[/FlateDecode] +/Length 334 +>> +stream +xmRr0*$z˦K$ep0F` v&|f-E!jam4l,4WP8=G!U붝;wڄ9ep~s>aԦ +endstream +endobj +118 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +116 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 118 0 R +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 1011 +>> +stream +xXKo7W𨕲4g%thhri6v% ˁʿ!>]oB{旟OwRMR8[0HRfԴM>zV;Õt.tM~ :X Sփ6gG/ck<wTb2 R҂g=P0Íj MJl5J3er#癪ŋ=A\3nM-,!02W^CS—&ܴ:hxFicxδ ch$Ai)M@Jgl4v7H2=}~=?sqis>M qyU\E$r⼼UE39歬HhQߪXd-#A?;v$ӯ692bZ8hY20^Pȸ=gpQԥ(X~oa`3Wkl><<> +endobj +120 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +125 0 obj +<< +/Filter[/FlateDecode] +/Length 728 +>> +stream +xڽVKo0 Wh'5# KئlY K?ʲ#ǎ CdHf8gY޳5J,EVVջ(nBX'T -t>ؿn7aqV ˰V H|B:0Q EN2sfyĘcX &Zȧب~X&[ԑkNOYr-Qb}6 o=}NSpX&a!Oxy}` +endstream +endobj +126 0 obj +<< +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +>> +endobj +124 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 126 0 R +>> +endobj +129 0 obj +<< +/Filter[/FlateDecode] +/Length 618 +>> +stream +xV[@~qΝKCMɠTI]5vw;+nۤI˃Ü͇qVN|tǓ^+OVCzt1.fw|t>F6 E׵ kmNɠV}㎣_ Ss2sLY1X2,Lh :IP:J4qw\ү,qG*AR&n7ƷBS"V=i3J*,`bU1<&3P>J?)(} vaJg(> gn OS}ygq/:,TkW'lG8v5a )qPm'4 3 E[0PA}a,ʕ)o?#;ǒ*c O𰩥zŠ~phZ8Q;i!:hh*Px /S{pYEL>}[L +t=Sv[5fl꫐U G' /JwluȲ.is]K>2ق RŒxAe ,~YJ^ +endstream +endobj +130 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +128 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 130 0 R +>> +endobj +133 0 obj +<< +/Filter[/FlateDecode] +/Length 1033 +>> +stream +xVMo6W(C.9^vͥQ H1]*CQdd 3yȄ3iZTd&S S!@g"c{mg!,S20xB!$xSΐ=ȿDx`59C!` Ӯ{?wg߄M2b" Cx?Qd\5S\i՚/ DkfΚy<ͽ7} +rc0@cbA2 q7"k;C 4iO \=χ""o`Sd妾My6˛T[͝mC쬀sOP5#RѽݮZk0pXڳ4H{u.01V+U!!b;_g2{Tx8T{3 +k4]8wa??xxz{ clOWG3p3<}ʩ2{r!;=9njuZXU\ZZ/*ux(6eoY䛆ս69OVbHWzKWVI +~@kQ߯Jx,u*C*W*oooweI꜏H3̝9/0w/N]+9k^Y"K:KSEɿnڄGe"r +endstream +endobj +134 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +132 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 134 0 R +>> +endobj +137 0 obj +<< +/Filter[/FlateDecode] +/Length 429 +>> +stream +xSn0IˀuvtUVG}I_dHN$-:oK:(F2-Q(ʪeDOM7C Ȧ]7[ۡWcv<1M#1 bGEM<ZE  ^&ԅi%VG .~ ;71 c %#Ѕ:,! ђ1IJrep;q q&n2?? ЎM<wbx9ɮ^[uUz5}d'X?}oAC tۗw uUFDhxa8`E~痪lZ{)f<}jVlP:fDs֏7$&pU%v5 +endstream +endobj +138 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +136 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 138 0 R +>> +endobj +141 0 obj +<< +/Filter[/FlateDecode] +/Length 1152 +>> +stream +xXMo6W ۀ/E=6K: U}>(QH\i88Iʒܑ0L~<% I(B 0w. 9;(~_kޅsä!tt#VP\sӐo`dBeVh͔-O0M\I,UD4Ð/}<Ϩ6yIM`>%Zf11*J\乿;4vhO߄绌I#^4W8uH'@$Y)W~DO av]mH.,BŮNUq{>ՏUx\jJ F%;ֱBcTm47b[mm;V Tś=/t]JI2 +5̗ej IGhpts:@c]DZARꇪ8CF/wLS\ewih9D-lXN$P˅ҠLǥĢfSp@)Ejs|~<}_> +endobj +140 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 142 0 R +>> +endobj +145 0 obj +<< +/Filter[/FlateDecode] +/Length 373 +>> +stream +xڥAo0=ֶVH8lQ(Ց(M*EtsNx~('&v@R,)@aɁ?z{o 1 ;6!8G)v̅(X+vk@]0̃yf5IE>嫶M/EQHX\r@D '5i `;.{&*̆SŅpBT?6SyqvoF.Ö\"3٘3Mͷd vZ7"ulOfvfiƺ39Ԕkv03QG+fpCDxƔQ\js4ɋ0)PFwpYԜIG\f4 <11Иn}D +endstream +endobj +146 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +144 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 146 0 R +>> +endobj +149 0 obj +<< +/Filter[/FlateDecode] +/Length 739 +>> +stream +xڽUMo@WawH\&U{ziJ6D*M)=0`ܒL>Ɨp Bo9EA>]'\sT587#қ&dC87 g,$'TB\;C.f I!$T[ܿUU'ƀ{E +' +&2`nǰdm\ +2S4XECkf{\).#X 2e5/=@;$=(Vpe("COJCv,ўy[D$2mjsQGC?l8̶˸%qan7p Qv g`yv¡z4=(Gl)=)GN@|,)UOX+}Lҫ`loLWxZ IqyKw]߇?WU(?w1x)PIcnE* u8,9q,"vuQx粱6bc\rlV<=l9|]n`ЋD}DYNKgQ.> +endobj +148 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 150 0 R +>> +endobj +153 0 obj +<< +/Filter[/FlateDecode] +/Length 870 +>> +stream +xVKo0 W4*Q/;@iX &Ead)b'}`Æ"GR)J-qL Ҍh%^& &E8ɂb%De'L4qr'OgrSj1"c$nh|'qb&LDZfT҄Gc)dP3gú||rSZkNbpx5DygUsɮFvDp"@jAY bk`E2j&6D,cʈH=k`,Exh57L(I߾$BûeSXGJ>N E,Iây֮F.uޥF|De1yѩl@.eR$J$9"l[ZZDƘ*'i!, ӻ|z! +]R[@RsbSd|{G!LI;<`]=lO2=_q_Mdqmi;P7pLߐ<6>(Fc\ᨉe>VG;kx[> +endobj +152 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 154 0 R +>> +endobj +157 0 obj +<< +/Filter[/FlateDecode] +/Length 884 +>> +stream +xWn@LRf:sH]h,iP݆RP +"=wDZS(b8s=I gKo"B131YMULxs2vJ=9s zzxdH +SLI_)FޕEbEo_,+ ق3P.pEQ9Ӓ`3ˬjW8 Yd j ]%y ǴJȁɚ696LW/Bf> lNmczp0980LKy'Άp܋/ZCè$2Ue{v3 }:q%*nnv(hPF+\%JfMF +Fmօu\UcW&mTgz[J PR[oOVK rv]NQяmsl %؟-߳uzm=\Ϻrҥ IφN /nE2+#yMavG] lP0Կ%-:_fWҰVNWj=oj +[{(=NώaUo,/՗e9ٜ~9fɗN?ѴFը V?>Z*T1o\s&d[$'$k9]]">VP5NY)4NPN/ѧ* rcLȆB#qH/: +-/1zr16GX z~RҼUc9>Y{bۢt3¿"]N&}Z-O +5:ڎϯ7"~xIr9lt~>?*ZOhZlwPnXmu98 +endstream +endobj +158 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +156 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 158 0 R +>> +endobj +161 0 obj +<< +/Filter[/FlateDecode] +/Length 958 +>> +stream +xVKo@+'x}:R +# 06 ¿ga=e~|^"nyEN^ +催>Ũ$ׂ2FV/>̘r@>Kt*zsRʆ06.`EL 䂖޾veд4DRpV>f5t +ka%P [5vn{@XĤ9"RA4\Xnz @SCARUXxcTiiO96x*,=E}rɸ{tO1k PT\̖UauY8迕)e`(7u 2in~Y#1ݘ{%?a7^8XخLM|AQ.& `c' {5?n]KX[{K>ϽU7w_6W˦5oA·ӛ9ZX?JEE!>48y)daW P SwʜQϢj6~٣`e02ۥ UBZz>P +"=G ac(dsQ'B/2$5vez +Dynq<<NfR:=g} 2QV,OQ$'WY^YCYɬżN-'$kc?ՙ8^gtmDgjG5_\_o=vw<߆f3>byZysUqtt)GVX>Ww?z _O~K +endstream +endobj +162 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +160 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 162 0 R +>> +endobj +165 0 obj +<< +/Filter[/FlateDecode] +/Length 1029 +>> +stream +xWKo7W𨕲9| ]F4P PwH.Ɔ j9|pEeܓL~RS 0#RmB&oD 7&խ6#4ve2r32Yuc20Z=HKe0&[y(@BxZjjDPHUqR21o5o]$alk1KQḖ~=jnHǘ)YxBI*5){lIwv2&&դgb2Uh49 +*+`i2zT9ͤ!QAr5ZPΏVWj x٥F^,fsy4D.HT`=@ R`"xsE_̍ă#H"ax *Χ(saKa +A,F[Gr6|_m.jSo/*nEUTM>6KVaSp1B::g`[z3.gv ЪݖvKٴUqxtv!?WÓ0IٓFh`4!jy~[}e®ĕZ0 LC +}%j (!j{|Xm/N?' t+2U'BU`Ynw9 w6)?Ly֪+5Z%X& bEi;{ovXA7b,zaz᪮˦yug"v |MťsnH2=!xɖȥy-y p`:t]'w]׾y;M +endstream +endobj +166 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +164 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 166 0 R +>> +endobj +169 0 obj +<< +/Filter[/FlateDecode] +/Length 375 +>> +stream +xڭAo0=b [e;*Ju$ +po'Eٖ^}}{  *zG3f!pH2C2DiH+&d:x_EĴ M1f8@lӍe +0G`OxZ!B)7m 7EQDXa\r`(ڃӺ^ݷP/Mis3gj^yN +Q}> +endobj +168 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 170 0 R +>> +endobj +173 0 obj +<< +/Filter[/FlateDecode] +/Length 1094 +>> +stream +xWKo6W#f^vͥQ H5u'@!)znݢ{.oy +^입{q#H.$;4pXnKŎ߽avÁԌ>hp) M~P$ Y.*4^] d0p \[n5![X肗&$z(;$zcEPHIE"f,W_΍ @+Nwz8G&$`ȍ4'Bq"[ +0ɐ(,ז8)~#1΀.`HeڇPkǐ[;$"}V jTVE1gofΘ4kLθrRL,/r!*>yIPrsϏ r4 +h.5htRp`p]z~{ ^aRbѷj=\5AČ*R\dx*:hm@ .e=ؽk|\ы:u'2((E'1Uuzxr]s宺h.2eYO˛9(hSPPP41B'- s]E +2?zQ'2;X{eNPe|&cg&~\!P{>1ߦ ߤ8ly'uR7L^ cF2wUe^xM)+yGOOCT|]7N?r \o( pWԙxQz,UIFh(%z,^y߬JQa^?O=5 ?wڠ@j^ՆTrj+=yDww%W +MVj{vEk} idl S!`VpkO[54 +f%֯P? ?rt_0 +endstream +endobj +174 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +172 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 174 0 R +>> +endobj +177 0 obj +<< +/Filter[/FlateDecode] +/Length 312 +>> +stream +xڅRMS0+r @`cM> +endobj +176 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 178 0 R +>> +endobj +181 0 obj +<< +/Filter[/FlateDecode] +/Length 1112 +>> +stream +xXKo7W𨕲#rKQhri6VP pܗ6rM %r^ȌF1@*V"(߽^r!P^7;>{q{co <9J*B\"TA]) `#Xdq !}=f'VHvX)щǘР\(VHI0^ĀpUs*!Ìwo"^@΅AVps2!5` bU{X &4}3!:jqD +[ ΎNBCf1)d9 , c:aw}q̽|WJja?03$$у Ӹ0 DH1$&RLJSoG/̀4ggJ)=.8y=Tͽ"Iz7,&%(NPL0|^f }O㱦^i@- FoL` R| & JӧXSzn 6ЅD4f|$e!ĂR0:fhHN,#!{%6DwݝSkөFS@NgADSXĶXUr]u9٭,U,VS7f̅J\Ӣ +A"Ժ ߕeޒ4iMj$d_-5iB!E_jUnI``t/(&~mѳ9W3mI! 8|EWu}?=>R^fp8p}XWXdoìҋx"#TsJ/e8U% +jT%*inNNiw -b.wTҋ<}n՟1ખ*p6B3cC1g~KmN2?LsMrM&e3}Q +endstream +endobj +182 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +180 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 182 0 R +>> +endobj +185 0 obj +<< +/Filter[/FlateDecode] +/Length 383 +>> +stream +xڵTR0Y$Aac貲FdPqc6{r_9TE9t%;@N\@t@FO+ B@_ZZ&+-OOSsm̛%:^gwilOz~/9'Tn÷ŎWv_O,BJٚr"8"|}Wypv[?n*UPJ\&gOMb槵kyaؕAaԡ6G+b/ǹúTmcmK> +endobj +184 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 186 0 R +>> +endobj +189 0 obj +<< +/Filter[/FlateDecode] +/Length 725 +>> +stream +xVKo0+|AJc Zv)iCYiIm˿gl'w[HŎg$(ݢCo'g1ID/H3b o/SW%ZəF8!! +OуQ'.Y}m`(Yc0l31Kj"6#V#|p)41VG :4C砽 aO@ k( Ҟ&eS|9J Fgup{0K]"N0@rbjJi-#^33j|2uӦ~9Oظ)mBCl]M}sS Hڶ~ڬsh$6F( @5w˸dCis B\N_k'>@G0u;]tFa&z[+xm"Z|T.,3hh(su7v><Lۻ[,RvṢ^38 o^Q83Ut0Td\FǏʒ|x}<~-wDŽOC47E\ +eIOjawϑ;]F(_13qH3r=G岫njS<<%绾^;w4x륓ƄQRڿ|O!*~?~i_b +endstream +endobj +190 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 52 0 R +/F7 35 0 R +/F3 16 0 R +/F9 45 0 R +/F8 38 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +188 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 190 0 R +>> +endobj +193 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xڥTMo0Wpdo>$Cn8,+UI} J6*gϼ10ʬ|>7'r$%EO cTMlOElI\ţ 4yy, +GsW J␙x}.o2 GMW~ ÐX^_$HC07AD\NC*H!!3zAxgCAXYд]R'mdG!C]9 -;;!I8VsM! Wz(ܙWrc>4Q'[RTݶZ_07ێNʐBT~Hx:LE4s(#XTp8խC@< +5)ʈVt7bV7C?}26)Drkj4{V}|.*5m~(_V+)?HQ7XESB.wr[D^%@QLma1 +endstream +endobj +194 0 obj +<< +/F3 16 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +192 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 194 0 R +>> +endobj +197 0 obj +<< +/Filter[/FlateDecode] +/Length 997 +>> +stream +xVn6+ ̈́4yMQht($[u Lecߗ/=)=n S>\J=r; \ïH1%Ja~1b@&٧QX;r+k˜QօzT43DHbel2"Eo XW$"^\\N,f$S*w 4Rr"=(G|`I,S n 3 +s`r,Z>F0mFXp/[R3A:W#;_z 1q}0#_)LuQf6MڒN.cՏX1a(dy5vl7ہl0@T& ˦DQ{3 r´檨c}:=%>w0Gb$WyZ.XFmX/sf-R6Edϟͷ>%,s8c]ъٚ+Hޔ7?.j3c#=]BRʰU&z&=p<g&uBbƻfBFzOţ Yrw |$:3F$]a祼bݾ,qU]'<_mFSx1p+ary}LS>V۳<3*BZ\XWkhT'EIQ/> +endobj +196 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 198 0 R +>> +endobj +201 0 obj +<< +/Filter[/FlateDecode] +/Length 414 +>> +stream +xڭTO0WbReA۱q3z0Yۨ6-P(h<b w&, I\Iԕ> !߀Sᡌ0N +qx.9T+ 6K OFT!&#ճ"уKNzk'uyqXy7m{k2'|㟔(:O*i=:#Z VU oma2Ѓ,Ǟr\nW[ˆbם +^Dr/V$jwD> +endobj +200 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 202 0 R +>> +endobj +205 0 obj +<< +/Filter[/FlateDecode] +/Length 1141 +>> +stream +xWKo6WR@ 9|.|)-c׽tMJ]Diڜ'oH'2<&~>v^&\R!ԨhC%~c +rE8~䟶Ǜ:jg9* B+oK,@:#Z/,QB=(* +y:*:a^\GxFś %ѭ*HMfVM4S`XnTtL5W,.;?GĒJVޔ0F43Fk˳~_{놅al٦T m3m'坓Bsd9"2A_${dL|1-U$cZ +~L>xvۀvhR.is|S1ni$Kְ\'uh\ +ͥ2" `#o-&"ʺ@B)z3SaEȏ܇ +ߖrj~aų-+}G"𰀾 B\>c3*yYaDp/j4@2 B= jnj&ci0p9y^.;D5|[X[Sݰy §afd+-ky4&Cu|5RjiE#u5XZSx*|<-MwC?u7uI2 +笈a}>LѸYXq_:8c>B} ,9*=>? sX6a)gӪn:P;wչ޺)' ќtʎ(P6>,| iPEƸ^ۜO4ta4<=?cR:/&<RL-rjmӺ$Oa]zh5ic&o4k4Nk<` ʹC60ƃͳ94UK;'YP.#ZӽT;mLH\1o뇠s~s^⸟ Ew)n2"p{ +EVq(HY^q?Y `cMO]x?.0䅗[jP+CZ޶0 =;;=HNү5Pr\:;`uxVg}7_ +endstream +endobj +206 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 45 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +204 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 206 0 R +>> +endobj +209 0 obj +<< +/Filter[/FlateDecode] +/Length 579 +>> +stream +xVM0WSo'HZܚ])"A@aWMkl Vڪixy80o1Q _@r +}DGC cDE.%D[bՖb,"5x :R}YbC978T84ϲsdx㡌EPh]jJ.Cn-.)cvjl$2$ ?jb=gPz|ΟJ}gHh9ޥyIovɴxިިo5Rsٝө|V"t1]7=ÎLIB m Տb4ٻpڭO\ê8gL-ix kޟKKQ$ISebGU_Ү6EQZ9 z*f@,FYFYV 1q̴TlۣBXܴ 5{d`AGҊ^zu7n.]n?WH_xHk#&S{=˗}m*:?It7t岿CSzu|^a.P?7D$ +endstream +endobj +210 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +208 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 210 0 R +>> +endobj +215 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 214 0 R +/BaseFont/ESBUTL+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 1024 +>> +stream +xWKGW%x4]oDJ%#Kx^)Fʏ7hYUT}]}`'}bTlVXY:{ o㧆yM0 e\M4@tn$Ρұ˽c{m%΃X*͕a"Wp\ZK41W;4IfTZՅi"ŕJ:!(b&E܂;WI=$/NOzHcӎP u#MQ&GKs*8]4x+lLp6X ܝFXHfԖ-&{dO0,}p24"~s ӟPw%{zf2n)hFL@nF%G hT-ɼ!>Y]MyrkGBdNV6m{UjnW=o>njSެ?\n6xhh/ºogE:;/ѡiz1kkuUbBe)Τ +]dY\#WUZM\̫G + 9 R(EgOWEUIz|o\v˱r1>OIP^9HJ5O +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F7 35 0 R +/F2 13 0 R +/F9 45 0 R +/F3 16 0 R +/F8 38 0 R +/F14 215 0 R +/F11 56 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +212 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +222 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 221 0 R +/BaseFont/YBJVEW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +223 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +aMZNT)@\XK~^fٝnM\Ɛo`*򐽜wMz6Í17X\y eԕ'ʤ0і|~A?%QXdvڎen0ǕYOMPo 1II_{Fd +m3V0pe!rҞr/rSʼOcU6.8\_a͕B//uU4J[)zw +X"Q-/Ed +endstream +endobj +224 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 222 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 224 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/FPGSSG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3815 +/Length3 533 +/Length 4366 +>> +stream +xgXۚ (0 tHPJ^EB tMD^Az"E# ]"ҋ{9s>g7|ߟ}{ֽ޵RjJARAA GbКP0&0aYۧ>>AdhaneYw6H'AP$(VJU51A1TiTDY_R`WWmH/;\tυ "_9'ԩ?WځYmw  +xy1ھȡNz47ZdO|ĭ$^c[X .?r.ђt^1ξux˹lwuW0T厗Bk,LS*dkj!%[&Y {1ֶ] +;C@J]24'}5[BD>F,; G^ɇc jnl~Q[FO~Ia6+%VO''-1 Hs'-p| oŵDL^D&%x(6tp"9eS- J&X Yx;Z{ +vb#Δvg>[Qv /N}&e|rһvx8^)VTƖp(!gJ"nYqE}Pp)VRwMsT!IkQa1ye9-T¿Ӳ84Uv+cݏ㳉TkI2Wpjdr*t~&fyPZ&});]=cG:!u?~+oI 0:x917WL\s dt0CD`H~88ܻxG0z:$!0@Jһn;#ɱ~lwl9)ۼyJnA +1yx;uavxNMQ=ʻC>v{ _$ZW9ڍHuY/}!U",̟3l~qWЛkw5vH֦[E{YKM@X[!Kw*3.(=`k >gϖ7fzW&}}Y$U!Z=eBYuigv2{g ئJ:Ki/YY{l7{Sz[m" iL>Ee +-a 4FXNa!~ wkHY!!d~vCwcDxO.ԨmHrt .CnF/ɤ!|Uɜp lJ/#Pahذ)(60cڱC1`} i.Ŭ }~=A%ҍ Uْ7X ㆻo \*Uӯf 0 @aFA/4VzɌ;tڻes Dx ssx|׼cMDyO/$?Czt&7BR)cҜ *,WDx1IS{ qbOee@@ XȑV57mm`JE^~kG K?Y"J cWaϔ͞ tX=qcD;=q_ 7T% dqܟB,E/ <_}Й_QJ8&('w/S qID=,y_x=Yg +I<.|/7l]·TIܢzwN9٪) +X-=o an4JCL ݅qbza@YϋP>A`שׂՏ'eQο5t]h"in~0( Ycmk0M*oxzm:aPIm} AKKh6 |PP5sjӯv'44:SZ9pr%/Li|&7-<)5m%}N=cq9v/p㥽N\=ޚrÏwh~['w3wL]~s'eV`*"tMԚ$^n-bC466,!K5 +Sݮm{3˚iC%uNT{ +M| b%z8So5 (Zlx_$~˥uN+DgH6R+bZ?2-\v&MM~]決E/]Y V/ MWD)nDk*rwU?v'AUBV/vd)7;#!jR2xXzv⛅3UJ}חf{$ tM@ ޏUs{oNTi|baw7aiJЋCjRpwB=inKcc7eDKK(]t<GםJ㤼\y'Uz}x途ļ'(sؿqj\A^ULb9 +=T"ݵ/rHᙑ.oH\Lba¦Aѩ/(?Ҩh-γԭ{.PjgfTx,"e}vIYη0~r0S?ԏ H8HҟUG(gZldPUhBt[i没k8>ab[ɴA^ߴg[0\PjDS#5^:l_Ɉ$/.34[$?~;ZJ> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAHVOWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, ݼ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/KHZWRY+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 11374 +/Length3 533 +/Length 11928 +>> +stream +xUpAŒ%[̲,fX33Ibfffffffff&zfލ/UuV>9"PҞHHZA@N.d ԷYY +99D.V.V&HdbjOD%D;doI$oo +kboNheڻ );"hD02 & K?-6rϔ#/?IrYY2V?p?Qַ=ЖHhkRUؤF ϊ뛃 ,ḾD +DA@#9)qѿC?%4TiJ,\oylAD Wϑ-&bihe4!R׷4ҷ5rvebe$g DlRd&be```dghiN97 4x+KSQb1`QPν(F4'WS5Xtܖ~{IpGy𜈯v^9-_i=&".j; _\‚ n5Y2V:E$ 7lr1"paWAE&Jtof0o~ɕM $دAϰ4~J}X:'a4{Lz_@uva'*0ʡEM6o ͜IT!x%D" 0+KRpbL\LPO601\ǵԓMcng4 g=y$n9:X\u;3BcPS6ug.v3e8GOe* ]bccBEqR C+Eifa #R,7+Vϲj?ƈ[L{]])ɞ-JN-sgZl޾T;w&a@X+Nܵ}U WDVvпkĬ/; *`Μ1ljD0L,I|-{ GiP1o?ԣ:X5X~'v9,b/Ǝ@vhypA~\#;UElENE&`Y+olL6n)%įGWONHx$=ps"ni-&Q~f+_uI^wBطw zOw%#yzz(h5mA~jǧ FRNy4۷ڳ/aB@~٨4ˊ/a04Ze_9S$؉sGN-nRBw R^[n*rSѻi1lGgd2r8KV2p!+rc_xczd?FZ>j3&ꃑaa`Im bM'+2i3|\AqMYx /z1fHM +NJ+%`hs<7%# A3AE%O󘲔!u%ͼ(;z&-^_k9ZAva:YxccLTR;aww(v>Ř%la;.7=)ʘ l{Nكxq wڬ8څjB*%-v 1t@K fWJfAT}IN>deupȔ*QbSCVL`SOQJ7bqyqeXG.7mc8uJ_* 9\Z s!Ʀ\*NpɕEWRY^bo E8%^dbzJNHRBuYw8,UsE4hM'S͍ȁ5ot`b>ظ\#mGV¡D$k̹ښ.Y(4, 9Y֍N9FE~u.v 0D7UkJpF=דKAId]AD9{򨊽a[5R#iJM8ֆl;00/SZV3Dڛ_%q*;KO~XA[j8$l̃΁!wյйE|ϸ(@,bH.{sF_fJEJ :wW_";"iE>맜% t&:,.rAdLk86]qj\>-<*`)mNk-x! +~02/: +Z8x>̚A2͌o K)2ehqOm! &v>WY=;_]_x+ldHyyU5-R!,}]Y&}eiVSdLD

Pb0@&lYy $ ΌS[;r212M߀ϳrKӸ垯c`4Ifo5&8-`j[q"sVAT߯}$E?2Zh"fB|6$dqF~;Q(f3Ҽ?tQd@z<)swlUeY40e@껁SV, KK~uB lp]{Iw".c57{N!BsQaJ?8$wwqKzRFn=PXfu(;? l,?j&PիV8fH Ue- :`1R)V6J ͒Aaa3h1tn -Qr{Hҗ}y +ߡ"6mZuu#QvL)m[XԨom}.{|p87A>:8P\0fl O۽#;6!k%ѲE >f`t6ƷnD9#Oz56uےJg +d@JK=i|~M'$]_/(>x8C66+2=)=0hGk# +Nlj4lp +eh4T#1i2#~O,W@{&~l˛\6ڞtoŪ@.댖jFO*º?-5牖^~o\Д:W4 gl79qzTKY<{Ė }v~29^-c-k@?ՎkGײw7.I5!r?攲yE${cl/bsIS;EM.0V X$|s4+2=ƫ̕ʙv2ʃaDԩL _H$Iڈ)2Ƨl̼i F[}M<^dO`!tlz>VoucG^Trt$~ 2  [fqr4˻\.QG|O m}] "ĊbeFDeءq5]J~&h/=EHp5ۉd×vPp)8g"hqV`ܚ~[̨ +p ʵc V? k4_ё/h)UW:8"M+T`KÅdc+%j#~!EvC~żd3d:A72D?~i(9h>*\21.ZS+`TcGeI1fL6ɧPϒ2U2@CsuS˓!:ylRmvNQv +(j"=W*g&b m4Ș5 9HiF8ӗw!r F@wp,Y*%xO}'Fe2 +a㲉VZ3Hk$)EXyƹJ3x +L면 mDo4.uwjw};><CקIz1HǜXEb5|ҲQڲ]D_¢@f#3`N B.`w|`h%Mtd?^rťw@3!^x an^B2"Ėxx|G mj&_!ܛc-4R:VM5j'LjANEjf!dn=f`)WYzބNʵzy]6gxU!fPCsJ44҄1V$i]<~uĀ>S9bP(:Uw%dz0 bFd^ +v-5JfJLj. ƛ7 !/"ݮol}J.LfWyU֠L矫<6}$ 8 6=rJ64WЃ͌4GD/ow=/v)p3%ݧeo.Cd'w)!ud]%nf2@=v i +%MՍz/lϿ6DwP(:`T0lG[L`剁abK3,".UQq@!O {p+dʨs YQ:۩Rfܹ?|A1`8Rޫfhą/ .+!8Lf ʬU -m&=ZN/~ mNx vbU̫P _B˭)֚x_GZ^Rԯ- +eI^ ff}@RV7=ሰQ lYln/\Ax+ϸ"5=RD =YePd ኖf0?nQ{';R+pq')7o陣cf P0ۓv;ъuTv:;w]oRv j(6bkY \^x8ɆIcz Vc~X,8њ RfĆz2/|'vUwR9iJJ?nCC3; + خ o.oKMt`IS Hv, z)VjO7xFB԰O)E;mblk*z=S {#4aȹ3[TKZ l%hAlvdML +rty$cփD֣hUT؃|uQ"T6Iw@ ۱QݞX9_^+#2It>vp-wG>LA.%pRg3>p[7$yM!/q+wݚ +8 ;V,m'Y& +aGNVc2!`HTFʢ$E=,Q +QljY\%]͐ۑ):8_ &pWgd40˸yif*j$T9)r3nQt)6ͅy B +ѭ6? 8Ir`]\^%/Zn>\z̘M·%tRq6|ȣXL28l'z,)Ljq7Xt +n6?}fet Uל+!4AE1ua]<|y}YHKƠRǟ&\,ٜ\He&z{8$GJf%^誩D_mP/ScdM3.%^~K;և!B{+]Tq?ZCa*6M7aW^T[~]ga>7y )!|\0 * +#ѵ7ފ|]Ec[Q;y(%K%D&$nK9Gw-O<)Z4wm`j}R򧻽V^ +o]YFq7&nie1n(~~u7UjJ,Wepe$Eh)u)"|K03!EouNf =&*|NЭC]I~m.y0qq یi0EE)z }A9( dEn6'3u3o*.|+?Lgqqw4{`)jkg;vB(46*T 3,=o1vN,5`6>zA<7;\j_P)|sqCY1 α?StNIo^TN_OyX+}t'"DXf&jE!*tթL:1E ¯lg + ʧT9K'JJ3*@\a 8~6Uۂa/3 ؏f,sY[)hlaQ=fT@O6F쳯S}_BaDw.6D=!x!L @ =ZB ]`9"Ч-1cnk o[8b:Co,m'PZd٧Yn&]$' EKz,|Qw A +ٖC +<(>rG%N1nؚlz"8*5ڽ A-vu':"aH5Z4t@?)-ΟobhYble"9G9q蚢'@eg7+ p9FH#/UJxԝ䒬!{x  ʘnj;8;)Z|[[P[pi|oVÐ+7-|+L>*B5}!"-ayO= +wM +[W/|f@UB}xB> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1RfU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \QxQ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/IORQIL+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 930 +/Length2 1975 +/Length3 534 +/Length 2622 +>> +stream +xRi<{ *PxeA!kFjRgxY0KXB$"Il'T$:)$;Ts:~{|y}=WunJ{Vt F涖($F"a** 4  4PhM{46чTsyy5sU0 H7H5!(,6R(~La0 + AD zA4bF0 +L/@mը:I(a7}S(8uZT TS,I l$Al,E@DS!i# &4&xɭY@`bi~Yg9~]ըo5/ CFY҈tDкz p`ītH`,#itK% ՕQi򄼼V/ ǿqYOb}{Bl~ xb^H@!AL? +3f33zP(]A]@ E"Jd3xZۼ~o<3 É,50@BEbb(9p Cg<9!)LG(-閍n&PshIq~`TkOfvESH̏UHi[Bw}9ieC)nU0.Is oix2yW!beA-M Gm#F$^;*d7q(&ޝOTG,ٌT~e/W-7DwMVoz =hgz +)Pۗ7)#HNJ_/@3P?Ce9?|!x_"v>z(a]Co?JRu[`øhw>O#*R>6L]cB?|Lfo$jŦ5OZi 9uNEvM$Yj?6K{bb{.δDPf ؖ3a۝f_0R7rVN*P9.|el-)7%2UR=5Vu1#Wul{L^_N3?6^\ZMR~0{a)_{w'ZM<h;TX4C_. K*jĪJVʗW'VT9ej =%kM8!m+a>KFI@ NΗQjԡ9-3ZoGF,UAR+{%3Z)t'+-1i-qR7E~-w{$/JB6=FRR3Rtw,>)G*Ek0oUǎy]NxQsObss2>"-[G:ctfn/R%+-Ne\X^S#-(Q=OJk\fkUD(*'O%lz~@Y9S% 6rNvYܖe@j}@ 1.>\!ֳI2+T2${*}͘sN]v\-i|vz|'JDk MUorД4tyw!Ub6? /:nfW>5/D֩}Ij`ep3zƓAt~Tq.5-< +޸eHZM^c"Xlszn׿8TaFu7  S+~PYԌ|o~J]H1#e.Y%=ĻY:YJԓ5)>%S.;cGy);I; <{W*WnݖE/%-G+_º.0IqZV5ؼI6LؘnI z.j;>}^p`w:%OP1VtJ] WYPfMt=s768~#ږhWs{.>N /ߍz4'#-l;y}w"iƄgŢe3qr!~R<&Lpo_NdۚTR}Us' +5k{śFT0.X!4d&˨?:sT,DVコMCuPjծB+ɶCݣq]%jgG'(}u[n!sx~ +% Q0!%Pǖ| +0~=Y:{Nbׁ"UCb9v>/A|Q:<PzF}ϼj6{(UEUO^/m^ŝc3 1mvHQNWn^J#S-GaD +H`T] +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/ZHEONB+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2496 +/Length3 533 +/Length 3041 +>> +stream +xy<a4G[=m3Mʘy0ƌ,IdY%$({ KɒP$GsK[)T'ЀJ+ (@vp8DRR$*EOQBSS2Ȁ +GTPjHDХzH.tమw@{4OLtWc''VT )L,o,Ao! t t!Q J߱(TS&2|3igH  UB511Rjv&*ⳙgHIH?/o#)&%gʦ +7lZYØڑw=,? U j\{O]xZYG=,CP"\te%!x{Pwgϕrfs&%:Tfb *o9*[{UM7gN'MJecԌZwXà[32IZ]w!->#.A6ZqzgNtXʹ6U(JᅈOOƙUw2]~ sr#GGݲ=OOS5_fY6o3~!cC.zذpBAڃJfVWQ<`?pW坈Owh{연g;Iɥ!}_H~`[:nil܃0&3@e +WjFG V6$**krCUS^ܡ.UI%tI[a\k! u֊j>kl ;iT˧caLjBRPv~R5 <RmpUz IP'caсwK*w{b ӏ +0vBƯvϿB̑4yb[ܣXg}jMKzjf=ڪ>oêǧ]IY0߈lTmV^ &`M}M{^X(7WIc ky:]ZKۍH"'D`M1d2Z+ۂhQ-bBjו]̊É+KvskbxMp2vgk m[AUɆ&ۓ\`9#UPk c)(JՊidhr=TD4,^ވ8}^ko*<1`0rkUސk垍ʗ~a3Ms⑿IG' DX)@DT¼8gj +7 +Z>j\{&5+)ꈎcaR9oPܭGV,G}v{'(Qw?kLxhN۟gigc-1T poqu7 V'J*~9{>}OC1o[I=*O.8E*L-++,"y k-2.ɴȆqg6g\ES_e2\`Aw GNvs2{ДO'wPB %Oh4Mrw7Xt<%0 sj˅" gK#m}G瘷M,OBa標,϶&AO108ݏe5c鄛nTa6_ kWu9ǚNt6U!3c;{?FӈyxrDjT‚ݶ-u +g/뻕?tVd @S);3 +=L)ȩAĽ(b j<-|0?'?/+!+!W]Ŀv61\\euVMGsetЩشb|ODBq}8y ʕ=_1Q&Qm9#iX6ƹv\?(.g?b]7='0̞şwX6R^\|Gܕv)mу0ܮuv6fs qQ"}w9骰VWB +S'F^~ɫkſ}L(j9B+ՔY.~SZ>ޙI}^ 'CN\W?Vǜ6εjZ5ڧuߔ^yy!F!Sp3xOc[)ϼd񺨞Y Vq Q" +1%O> {[[tT&l7%NVf\)K꿋QIM@7ʇ300=j_o̊:l޲^ӖMW *? vtEF}Xz[}-i|huNsH2\kn4~8oóUxrUgq%4g3'\  g-/UZ=8vw<sCIܮ\Jd~kNg}CWiɌ5Rn=6~rqy&cswֹ yrֳǾ]-%:eKΞEH'$7|yqMP tcuDK8|G|8>^6'@ݘ\3ŋhwSH`%ghj'y՞vDjIBTq zxYgPͳxx_A^pic6)SDˣPAn@?@ xꁧC  N +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/OZINXB+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1964 +/Length3 533 +/Length 2497 +>> +stream +xy<%Ȗ= 3fNGa,1fґ[Ttd_Ѣ9H-h c'3=ns_~>}?83l! + 8(C$L[ۆnKdX +`P +lL c:6]& dA$"p"4AH 9`E \`u$`(@Hl@t3=|mCJ'@V pJ2Nd0pfV,1ֿ6>Ju&> 7H 3 'dѿz_ќ@2BVu`ɊNk +@2bDj0BqZˁ~pDv0JlRY Âo!_߬eG'1D:";5#줁 ``\ `FF0 + +l44|$X g a v1_ K]~ǝ~brw۴UE`lq;\b6QN 9-ezGI|^[^ˆ ~޵Qٗ6qv֨!r~c`x]!,.1]bg*H!;fS}u;bɺL7H|K2O'{Aö{ģc("#7ONn֨qR:Mrb3&648X:_?r;0t'6;'mWE)Tٍ9:.HȥBr-A{xeἋK5̅S7}|>]OѿIzd=GyiY5jGcGb?JI#p] HZ¸9cǘsE4զp[i +Fc'2i+G/h5lS]bStkYX&Js=1- ˜g3Ӕ_M]c2.23}*uDe3}2I 6,,Z>d6s ݅OrbzŨ)ĔX$ XO$%.lsG:ˇBr ߾^,2״7Wk.Pzf=f S;Ğ0 +-Z4OxpdH4G> >|V3_)倍lg\ն聫gw>]zb63nkOݯKDxG˩#o'ol]E؋{]Nn>ѤyˏCj{e,N1W6y +>c2ף3=ώlU; JSryW3%dg>_/d9?+\ɦW +ء5Ʃ{nN]ʢ 1/eos}ez-D]z^,Yl!-njaOiSn*KJ8y#߃.%'EQ+IVw|ΨE #d_͡ MMGDtn{$Z;PbWb0|b~p?(nQ{PfsntcX!Zr9U#ɚUFXwq!]_0G%xuśX`:g/])1<|dV#jX¹1)=;|eg7 ]C/[.MO,Xc_)O'V)FeN^3>ē %挱 +5E{*Mڊl| &J1LΜW7J{i2Z=c*4+qwrMS2=BhʥW=\qu^* z=YE.^/c.;Qu񮧔rJ-QҘ',M/I\fkE/\b0U޺gP ;E,vmݣ%?7- +o[4*Q{[|=gX'jjm5Rq(x-Nm Y-2_>O fЈ0EB +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/NBNZIE+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2125 +>> +stream +xgXSii*x( 14%rGR0$H`Cb0t(HDaQ`(B1"D\쟽^{{>~/1,.@`H Y0 + YY 09L]L>l'ĄA: B!8$^`bqD>" f$DF#X,@Y@D`Y&ÿ"!f 0^#5ĜdPb!`p76Ji?/mS900hl<dI}f0upBnpDC5x|k;Dnss?Yޜp^1(Ac0XQ|Y|nz0 ) A&_Q1enX,`cW>ʆ|M f3vğ((oIa6nW_? N+6e{Ehy;1qjz`ehC~w+]pW.5ąs #.ӊoKyV(tYP8'#*^QeQR)I4 dHO'yN=\Nlӓ3oZҊWyO.ZP]fq)ovV)ݫɁc++m GeÞ$鬄 T;܉* 9{V* /.O>:?aà[Lܣn# )&m+Yp6IiY6zT}=1!z>ډb9in afdR/x+Ou\CLu9e^pkڣ^ ~FOQH ftwꓔdKם9ONvӀS+BG^6W&~>@\,VN8|t]}Đ~U\esntKB;6zqanmѾSj*a)ĆڎVG<զ&iƧoj +{<̌i j90ڃS[՜"gIa{KAf3x.C=Wt1 'RE^[#(/'YoJ2׺)yY~"j̳ +SuM6ܒ'}*^%o}Cbc?Md(4>!4y''#Oy3e^75&Vґs5qb6 +sT^Ե@7(5n{Lno;|I|߳K[Z]s?%Vե.c~d(Ps3DnQ Q;*K̸wK1vMI* iQ*Rr&^j^9/,c `*2Y  C H^lN +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/FYUDNE+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2893 +/Length3 533 +/Length 3448 +>> +stream +xyƾe-˘L d !d(d,elB2Q -򺻟}>Oy{?uswyבCvxM!ա`( +06€5:rĘF҉ N@P$`6 +B @#1F#ec?]Z!@#dK'Bp@#a`0 $p h!<B<G|~D2HO,s/KSnhA{\OR`O!x/HÆa ~ G`Iֿ$b`?5N]r9̠*PՐӳHGKF+NVՄE -mLȬ[F%m׳Ny!~BIx-Pʝ~Tz}Ec .,aڡHSsb$@缈:M}]v\|p4XȩTW/^:29V05ȓtjX񜘨^FBˇ/f޼̻rE*g/c[e-AddF]ϏvX) d&x(2CMfMT7Ȭ1$hפ`~5WNA{p@Ւ/ym7TU_(XVlJvjn/-.釒$4g/h-Og^TD n8r=#Ӳ5  +wn y!n8RZ^O ]1n !Q:*2F-3ɴo TyFy|ӏGy!n➟{iXk=7\M +j*Vn )EmȹA'tS;*ClIޱ/SUI\Ës %:@Iv5:_GD+wMMtmFV0j2hl6m]4}j?&h3CBxnNSPK+,]'OLE8T_ok/h݈CyJj8#Sj!f Wp/^,VF#^HhvV-`A>fӃ5)QuܿhLH ~{T||cq ks֐a(Ygd 3o>$YcE.!gе" legI}V ꖍq1͢,{X 6M{,s~2Zm/glvA;6߀kfQ@Թ7-n(sȕkw߰h+{2ͭB/U+n(j4[h𚹏oF4ˌͼps4yi}l@$WL_Nġ-ֲkzfl$"aU}=g":JC#wn>䘚@KVU>-i jH}|!ul8i;O+z6E:zeagBo{`|}fcŲ]<_L~ׯ =]rNvEg}`gnF`yV+j|X|ug2zMw!r)'iIɫR(.k{]s7j>~7KWa36ݭث Ojv}Fju?C~S7=t8*Uni7w{_S5=),TNJ_;[A)>^zeX(>1Kt3^usUޒ7]b~ueć}tׇ÷P~ G7CDLR_rRb"Tӆ] +7#<;_>={89*TrNuDhϘ 1k|}jj1}bԲUL4H?oLG33:5AÙjJ\~Cَj)3Q%[|tGE`g9 G\=-"WOk=4rZGߦpזGxO -Yۦ(ݗ̶vTӹT}lkYH > +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1294 +/Length3 533 +/Length 1830 +>> +stream +x{8T)vDɣNdQn3KqiqK,3XEk0doޒlivRmvdp*SHTml"r&vg?>w?~pi0ȑB p8 La!m@ +Y +Y8ss@,x رv> !0dd*(l* q@d0ϏpO!1LE00FaMFb #t% %b4(cʖIXcC9ܑ`̏2aFܯ63B@f m!enV YtL & 8< dp>ĢmFoяnn B!}VKƄ< k$F+xj,*Y4{*;e`lIg/͂Or1ޠrbAOu8, *HW{6;RN@nk_Jl +5?SO,gL}_ld5vbgzAUc}[.[f.t*Yq¥,o;WD'OJVSC8@Si0b]ўy&;Օ, MɲL|WmKw*>T9]|ߊ1-Ya&#wĊ=Q5wduQ*VSrD + 3 +8R>\Y&K20ֈOwvk)m6Y򻝭5܃I>ˮs9K!_dw@ԉ'qm߅總qN (l&mߜyxa&u;M'YɋdP/yu +n*j.22*; ~ "jѨ]W$2z^6yg/1P:iu!rK2{_.-l~Fz0Mn6A|^ +L!*W^QT+YR]Σ~}{Hmfy:~yѲe%>鑩g%#GK_nYzcȶ7vL]}}9 jotMLc0yNjC/LK*/vfj`leZn+ExnK|FLgX +mo(b!uҟU}Q81.z=~,Dޡ?FvpY;zh!롛JK aGP䍵t]VY22%.w `J%#:eL6p֟4<.e7O+g{71OOӚ?_>v/M7? ~\ua,JN@> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDDH;RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@FĠ(%`1#ttpLȆt"ƀ$^KS3KaQLqȯm b$"M;.%a#}N:yŽ}-r5Rn@V.t0Y3^6~tv"_mx-{v,>PYZSpjTl&I?#č__ Q}=z%x/+!ܳ5{C|hDe'2Wavy"dz#x(~S)|@LAN ,F1QH>򅞛XsIM)#b TX4ŹW?:qGFUip97jiǻ6_I>GL{9vS9~6fKyb-"CJE*[4$C(}ﷱRf*H^s i![]Nmgjz%qi-?[%jdkxYi%n nA\g +.uIP'|o;ojPrOQmӯoǦ@Wl +k^E9"E3OP!C{x) ~N\ZAwZ= -iTI 42nG 9yrav1ۅbt=̶~bBҼu lz.-Ő@O ?D4︥z(>1Djl;%1FXhl\IsC"wg%ϙF RUl$gUosvU->>+I}=J ]DS=Nռ\ fo )2C.ǿ)Y H5|07jkѐaMrtLK7q  )]5ksڴP&$,dpbz'/[D~do@}tOnԬjM'GUז=7- +v!/},TKRlTa"'Hk="Ż1v;ԥT/ڕPf7ZZp/`sEƎovsHƕ#){ +\7߲JoyV~KR;Zm̚C?l?4iX:8.ɻYSz[WD229m$x<ifl1޵™I0=%_qt~%qrD|Bv#*909&JYL[ڕ5"O+TF$zW8(`lefxr6`Z|9]q3.3jU3`ܳVzrdR兆ضvBU/[Q[662 t^AtBЈωb'=IY o}h0;[h_Y.ahsX7LLx>V{LM[wLRn5Э#YO+;ߕҚ7#W? ܼ~Py!?b +l E a\ +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/RRBBFY+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10049 +/Length3 533 +/Length 10607 +>> +stream +xUT\Ѷ;+\.U@!Ip<w @sK~{==ZZC +" x% pq992nK3L" J\¼o(20C%rA-a@鯉#P +eZxqyA ZAl0?`6@.Y򂸹2 s!65Ao\Ql[:A}Cq7ؿK!APO*yX:B` RPwyzyBs$Ғ7d%_3A}ƜWw&vCa@mK _N%-( _e0'DI)Ϭu{3mkkN8̿00>E +8-~Px3$k2?zz{,.4s,a6PHiG =tI;\ګL\t5 nw^Q#N{@*}n5zot?%)[j53i~4:.dF~PQu@\CǠw#Ϧ'yr^973J:m'3E\xf:ldQgW@op9f\ +LЧAfƩj;j=c~_O?S˩| 0`rsEyAL}l8!^2ɚ +S襕"QȢlC,[Z?옇>VO~CE춝7MuT`K1{Tj֯AAW76S?f>Z3"q-A)@Aj"* 53DEmr`h0_F.%H$kz"X2$)q6s6 #ɕ!NaߌŝT^LW4#.Wb~(/QXY筛'ա})#ѬJ +\d:%P˃j}åO{}ڒ%~g ky"r^gM/`QC;𷛮/_8V F.GbƋZ\uД['r XZUrv2&1uy6lDpJL*Ag#ȭaX+Kl Uol^"K-O Mf{/o}SeK@E*~I h/ڏcHv29F$kF>s[6<(}ƕv90,cH]|۸|!=գ`9SsR}qV-Jz5'oQʔj^S\ǧqùOqI^U^{g; :R.2.V@>aJ‹g]4Fu$Wg88,n?}i:0#/)/O^t~pA`>KLGʇ0˗wH O?ZPc"TOR}ɀPw|-cN,.nߍ*5/yTe769M jqN3z zbħ1j>(n^EǶaD+9S`'“|L*U1>$O ƾSJ-l||$Yϐ P&BtؐeCaEIUxv[ڜp~=Gn(^+łJ 6hͽ{\iᱯO"γ/BC zkKSͯ>e0#o4@9?"p +6K9*ZB-/lBq!jv(wVOLa^!O>~ L5lP?L0Ml/D-|D[}3,g}q5 QLj ^b)&)&5"I8"O:h- \uz'&N#Wܭ'+ %]ﬦׯyGnc1?{i3z{:bH@"a@5w(Sٰ~kF߃vS0 ֽHy.gIȶp>ݣ9hP}s*HeLb#% =Ewy!佽C+:W'_^{O)8Apa"tT@5|U^+݈rGw +O;qX^TlhRBL>h%%I%}0+G}GjtwX_?F!XqߍIx-a|ɏ+g^DKxnbD3?Wp+r_7~0;Ǘ4,J@AC~i33D*8*#,VԊU(2fMYҞÖ2Y'sB/SmD=U#ݢ/IiCM;IiD.omKt'OWzjk՘krI&.1Om +oXK&r*BbJL;5LHWi詄A 5Vm7R&aѧ0SC׳A2OYyU w€m0vFSI؂~^73tf#Y423CEh]JWu7QhJ4jKV%1ٙ^C.[xB.\~ fo19ŭUtWb'f[WƔzH6Tm3̬02+ NƓx$Y0@v]SF[,=14sJp| 9!vLcʗf!3.D`)rDZ!Jk׊8Ciʜ&C VG +MZV)dOaASXab pz CHˏ.wi9҅t<橰wc)v7x摘ZUz%o"Qng)BZά‡nY-؜xX%s=O-U`ufMB_~کm58ӵگʬE'Cmß\&?55313h5 +Sȷf4G3*bW"u_ts' +wDsx8zUF3d-ĮiPxeVݮY/gͰ"36LD^껵3iU-ᵳ@^qs$#џ`{=zӚ|ާ bq&3=$Gb<+R?0& i!7~).cKN3u:{$"c {߰ * +;NO8 m}<;Lo^Sn= s'a!l(wXU3gI3G*V9P:H{/(zs%or5F eɜ<ej$Av];\QEBZA2<&mU}TIDĐ 4  w1)WJ: C?6%MC@ Řs̮W.?ƒ1 >?rW#Clc(fJV;V;8:)bi}|YyM:kz.n#fT|";5:DQ?P$ v %:,g!x7eC+.ĽOٽ\u~N7ҋ9^ז.a(6l/%銗Q.zY|竅>%*sYZj5XҐK{$X[ oeme$&Kڋo*%K]ek@C3fs0$^B,cZ`iٴÚzh>9. wYWW֖.Ɂ@DH7S>H$}s?ܥfHM.2"ɚZX{di N/0Qa?G桹#FPk |t/JB+d}UueM)Dw ]F%#u!%KS=(J%Cph㫈폺f:82JG !wё[l4 ;m`'st6PE(u7wRl^ }7o4>WCl')7 FePHbu>q@`w'Uxl=6By*x\suEIcp[@Bh_~ Ƅ; ك/?P?u _񗇬]N.It;U'喟%5lɢ -p`U4B<<y,|>'A}&G"CtP dh ZG{JvrnE8M. w, uokf !OisVC!%Ih~@Zt6t&_i|*.=u]&S4Tܦt˜tx^ܨ0ۃ Φ`B|BVGB:1`W.v9.yOWjf4uwg7Ca:^᭡j2lw3,eLjԎj5hM6GN)ߎu6SQ"<I~OqG⋇th[s6* F'l5`R."|,Dy9fD! +=&吪M:UۭՌ*\#P 2{yhr ?ǑqF2L`=4B$M뻐?܇B4Id;1 GRl_,T2QЩgF7^B4> 92Qm' ݏpـ5[J#v-.}lBbx]w$F5}޴/=Kp-b?g퀜~Õt}Ꮷe*cS”XK`̦: A6sR;xgA~!P҄F8v +,A8 z-Mo*nj\d۴eV M!\xg_Z]9;Ozi_^|O_!)ØTDxj0s-GB|/.os>tW`iFtd^W Z&"?흓άvfs]Z)Ƙ3]" ,JmRpDD;I֏wKj @] NtR$X/g@+Kep7Z1z!nzZ(Q8 $yl&dga$/<- _)D-Z{кm%97e+@"xت&0\[RAY19J^4B&n"Qm>=b6؝oX&@ B5WnI5d [[i;|8On*|;YM|SdUOj zsǮrjʌ]5!!/L` +~[bPPܡ*OϓU,M@w;[lzQK6Oq ?ieinOY2iz-׈qpSQ7gP*(4?ʑJ/D._?QZiCbnTmrZa5ah0M4@hM]JL7&ȠizfU P.pG,x4FJzU 4}`vfaq1 $(B{Hh9.yO&|cF)]'8&Wֽs;Y=\C7=I4&\ls'?ge{9u )@u,uV'@oHI nj1:QqEX.1~D+dKW*T'&A[19K5ulYuwyX'TDCn\ ŽPǸ ՜oܠuڧQLbF5b{Ã9wUB">{SÍGUmmlT.>2~mX* R f4-eF4{3':Xm͒KVν"w` /[կpc7ɻU䎇%񖥨Dʠٴ2hBOʢچd)J3 nM_ן|}X!~6@;J? ZɅVX]}.a#U/  +kU`G G57^XXS (}*9ֽ[h^ 7d'?E>u~u2@DTCu6ӵ!xf#~LO'dRD_2[\Z* +U\7LA qpI5*Zpu84=[-\S&FUKW2^ڜI6ɉ9/}lyU 7EѶX-+Pr>&d<@/OnaW$!WHl-A3wtq=WXyN=Hg~a󅷳Z^0o#kB3mqL;{n ?E< #JHIJe7~}_7=p˶v {I.صcNPjF>clӱt oP{S \I x[yYGqni'1J:NU>~5;\|ee<\StORM4=}"޷>בVtHݹn]g~32᜝߁I)5 0o$Y+ +ӧc<(|l)GQY_ݬro?˕yd2WMjanD_MზǟT>frHF[>a`hv;] 6X#@tr$eR >nְ4S* QDa蟜& +͇g.̰) 1( s5H \d5m#ECu>fQuAAc0z<7Qz=ջ(lw2Rb: +q^:Nx5;~-[;]:IP+X}o)칦=y po<@8I j~kU0A'X/YUzqԠ5ň(B&OrגqAO?[i2Jjf>c>%s-BݘM3J4'^BajrVFw? Ĩ+k40'e?4<" F#b僁nGBFwŲM:t]? ک2~Dxo}i>C6[S.S kG?έ +endstream +endobj +214 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/ESBUTL+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 213 0 R +/Flags 68 +>> +endobj +213 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D5)4Gɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\n w +endstream +endobj +221 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/YBJVEW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 220 0 R +/Flags 68 +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5591 +>> +stream +xUT\ۖq SV.K &x`݃{p 8soK~{sEG&v89@@ @RYS 90$]!09 " > 7 '@jm0J2;@\es 9d =@W7 `% `:b%hK;qu{0>s2)N0 +]y53뿡{P{8aWw./8e<j)hm yn2P/X +XۻA!࿃<O v} i]ؿjPG3/5_\^C |oI;Z:M#¿SIH8yr8y7 _ڎPwOOs3<?k+ /%Ƨ "()+%˅yk江 X3S\[J8tNl$ɾA'4C %g)"(WZhzF6XLq>:M{!1 ΒxӋص(^n"xX-TD΋Nl 4cFe3ZkdʚF9x}N\+/\Aih *ي2F46)e?Rsd$kߘ#-qײxTw'g#v}Lஃz4| ՜\ )G3v^vO HcQI*=dX|xݍ1(C"n![޹$P8w#'J>r&8'KGsVC :^AfL1;s.H׌V%ښ_}M3G`MD'+-w~\r tpJDu z#gWdB{CچuL!a! ikk +2_ aL%@In^RC >51y9fuX)f gHn\X QN.[KX2``gU \1Bzdu&c.np;ﮭI%.iu塬mAa# #2iQі<4,fVtY" _Ѱ^FzeeLZg<22M#Gz ü ޚZP.NWºI|S@OlڈJ(Kz\hpj,o%йHHG ynf-5^uUt{W}2+8N޸_;a.Bc,㸄7YNd#~S$Z 6˴!O> +d& +׷wPNFzpentiP"+[M!x$~8UӂaF}-~<ًf)ѳ_,p!s͹"ޣfȀ%POOgꃥd| R%6ڿP}7Z$ 7k 20}X/XQTg) H=P-q%BYkW |7d:: S–y?V*FU/Y'#<.w.~ʴܝ${42K<4ϧMƛ@MVnjYT{!FRHs}JzrqMhchlc16d6ʺwt;("_qlSh '#g5iNK[rz^CϱQ4">bX#zάtf4E) !:Uڑ: |iˇM1*vH?\#p k[bD+* KhJwf^lńV9*gvv*9n@URؐJϦo3e}KZetgW<=Ά9f^а4'& +/7s,%-y?"s +WRx.[4RK.b@MMÈ6P:t^{ӗ|_~" GѺDQE'.O0*{F6雘/UstCA쨔.V%SX)=Y_b^ j7|Fύ0rb5p UZk!_<8+RsX #zu7iu# {(6KFUPťtǭ6NX˂Ҽv +*iezeVQj& f_?i`h~!g<-@a$®Ckm +_e+CCTFTzQ(¡.K/Q٫X,|o3SQ~adWo>>gºkI谱> Yr7B2O4y/}xX0 ޓл &)x,ʐx@rBcoAT'nY䕄 IJIG$dIyVH{yE*2Z>9# ֪ߝ!Uh&4G\=> +Oo'` 9.zvE/gmE +"b Wi3]Z߈PRp&n|@xsGm+ݠ1wy؇Xo{Bb2glY+䱹?r1H:`~/Q1f:ouV)YӰkY"fmŢW#ORM-3R-Z.ltֈb#J+݃G97sWxbتw|T5EsJһ}m(ƕ2&˒Aq:ycMdAآVjX~hYv'^x,?od qFEao̡c^R ]bLtT>#&kbM@4 +:\!#^t?[NJH)mfk@>6=ly0/oW@7m*l8!w0YUկT'^ڶ ~4U*)5Sy01WVLWԣK%b?1-rO'ۗ^5 =6ϯSKk)cgG|cS?\&n`4\5ugJusѼ0OJ.1 8o9 +-E 4iৈZIE_.&C`3cKnMðDr%5o/݃a)2񎡆bliT֙z_[#X<`>W4=h3gڏ㍄ᓋ7PvKz8.V}%.˩XvnpE5{DղduQ=JĹl`\!Wegnbs]*Q,m6/|Kc2-xițfKJ&b aUcd<%?ZbDq5[=(FO R_g]?4(NLZdC +yxj6w}DHMLx"fBk+x~:e3f}MbIH3 u%Y1z+7L`#Ebp++}hfw#l 7$lK4[;'^`fM03!8m*3)CYu@GOlh[T ўq3 !&"׭4I=4k"79ȯ :2G]j[_| eO?Ogj jiIu<Wm\rGWEH6ƈkڹjˎl䓈".RoH'eHgtC/ZBTaA1HjީOir< ä[~[+'ZY6nkFg=F\Du&!wբPj[)lm֏@[lURoOW^{`6k_ 1ˡ`Q}ҿN"Lɵ[hNu1nUśk,q]yK\o/Ak2ݼT$?k~ҭ7/OGA' )XeWhckw@107vw{㑅qy\/ ^_lhݑ#쬒v3}n%7%{_oiKnmgWA ٥ZGCiXGX3 'ih5a.i*T&rL,c~oe"jef} S#e@osWu[SQ`ϽSLS4HҠ/EB)׫^}Mu],\Glv EVkspKzCS~)Anlzo8]yz0={ܶacP +Â]liH69' +:̃-&_ʄNZk{Pk*>Nxb~6J6LjR4ZK'ʩy#PZj//UʥMsJ4; kZ8cy:8͚Ugsd@Ƈh4[*+xl8RZ،Pq +'9f${9 }N }d_(O@> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 226 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 39 0 R 19 0 R] +/Parent 226 0 R +>> +endobj +226 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 225 0 R +>> +endobj +41 0 obj +<< +/Type/Page +/Resources 42 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +227 0 obj +<< +/Type/Pages +/Count 3 +/Kids[41 0 R 48 0 R 67 0 R] +/Parent 225 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 228 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 228 0 R +>> +endobj +228 0 obj +<< +/Type/Pages +/Count 2 +/Kids[71 0 R 75 0 R] +/Parent 225 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 229 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 229 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 229 0 R +>> +endobj +229 0 obj +<< +/Type/Pages +/Count 3 +/Kids[79 0 R 83 0 R 87 0 R] +/Parent 225 0 R +>> +endobj +225 0 obj +<< +/Type/Pages +/Count 10 +/Kids[226 0 R 227 0 R 228 0 R 229 0 R] +/Parent 3 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +231 0 obj +<< +/Type/Pages +/Count 2 +/Kids[91 0 R 95 0 R] +/Parent 230 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +232 0 obj +<< +/Type/Pages +/Count 3 +/Kids[99 0 R 103 0 R 107 0 R] +/Parent 230 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 113 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +115 0 obj +<< +/Type/Page +/Resources 116 0 R +/Contents[17 0 R 4 0 R 117 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +119 0 obj +<< +/Type/Page +/Resources 120 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +233 0 obj +<< +/Type/Pages +/Count 3 +/Kids[111 0 R 115 0 R 119 0 R] +/Parent 230 0 R +>> +endobj +123 0 obj +<< +/Type/Page +/Resources 124 0 R +/Contents[17 0 R 4 0 R 125 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +127 0 obj +<< +/Type/Page +/Resources 128 0 R +/Contents[17 0 R 4 0 R 129 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +131 0 obj +<< +/Type/Page +/Resources 132 0 R +/Contents[17 0 R 4 0 R 133 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +234 0 obj +<< +/Type/Pages +/Count 3 +/Kids[123 0 R 127 0 R 131 0 R] +/Parent 230 0 R +>> +endobj +230 0 obj +<< +/Type/Pages +/Count 11 +/Kids[231 0 R 232 0 R 233 0 R 234 0 R] +/Parent 3 0 R +>> +endobj +135 0 obj +<< +/Type/Page +/Resources 136 0 R +/Contents[17 0 R 4 0 R 137 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +139 0 obj +<< +/Type/Page +/Resources 140 0 R +/Contents[17 0 R 4 0 R 141 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +236 0 obj +<< +/Type/Pages +/Count 2 +/Kids[135 0 R 139 0 R] +/Parent 235 0 R +>> +endobj +143 0 obj +<< +/Type/Page +/Resources 144 0 R +/Contents[17 0 R 4 0 R 145 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +147 0 obj +<< +/Type/Page +/Resources 148 0 R +/Contents[17 0 R 4 0 R 149 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +151 0 obj +<< +/Type/Page +/Resources 152 0 R +/Contents[17 0 R 4 0 R 153 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +237 0 obj +<< +/Type/Pages +/Count 3 +/Kids[143 0 R 147 0 R 151 0 R] +/Parent 235 0 R +>> +endobj +155 0 obj +<< +/Type/Page +/Resources 156 0 R +/Contents[17 0 R 4 0 R 157 0 R 19 0 R] +/Parent 238 0 R +>> +endobj +159 0 obj +<< +/Type/Page +/Resources 160 0 R +/Contents[17 0 R 4 0 R 161 0 R 19 0 R] +/Parent 238 0 R +>> +endobj +238 0 obj +<< +/Type/Pages +/Count 2 +/Kids[155 0 R 159 0 R] +/Parent 235 0 R +>> +endobj +163 0 obj +<< +/Type/Page +/Resources 164 0 R +/Contents[17 0 R 4 0 R 165 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +167 0 obj +<< +/Type/Page +/Resources 168 0 R +/Contents[17 0 R 4 0 R 169 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +171 0 obj +<< +/Type/Page +/Resources 172 0 R +/Contents[17 0 R 4 0 R 173 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +239 0 obj +<< +/Type/Pages +/Count 3 +/Kids[163 0 R 167 0 R 171 0 R] +/Parent 235 0 R +>> +endobj +235 0 obj +<< +/Type/Pages +/Count 10 +/Kids[236 0 R 237 0 R 238 0 R 239 0 R] +/Parent 3 0 R +>> +endobj +175 0 obj +<< +/Type/Page +/Resources 176 0 R +/Contents[17 0 R 4 0 R 177 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +179 0 obj +<< +/Type/Page +/Resources 180 0 R +/Contents[17 0 R 4 0 R 181 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +241 0 obj +<< +/Type/Pages +/Count 2 +/Kids[175 0 R 179 0 R] +/Parent 240 0 R +>> +endobj +183 0 obj +<< +/Type/Page +/Resources 184 0 R +/Contents[17 0 R 4 0 R 185 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +187 0 obj +<< +/Type/Page +/Resources 188 0 R +/Contents[17 0 R 4 0 R 189 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +191 0 obj +<< +/Type/Page +/Resources 192 0 R +/Contents[17 0 R 4 0 R 193 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +242 0 obj +<< +/Type/Pages +/Count 3 +/Kids[183 0 R 187 0 R 191 0 R] +/Parent 240 0 R +>> +endobj +195 0 obj +<< +/Type/Page +/Resources 196 0 R +/Contents[17 0 R 4 0 R 197 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +199 0 obj +<< +/Type/Page +/Resources 200 0 R +/Contents[17 0 R 4 0 R 201 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +203 0 obj +<< +/Type/Page +/Resources 204 0 R +/Contents[17 0 R 4 0 R 205 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +243 0 obj +<< +/Type/Pages +/Count 3 +/Kids[195 0 R 199 0 R 203 0 R] +/Parent 240 0 R +>> +endobj +207 0 obj +<< +/Type/Page +/Resources 208 0 R +/Contents[17 0 R 4 0 R 209 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +211 0 obj +<< +/Type/Page +/Resources 212 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 223 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +244 0 obj +<< +/Type/Pages +/Count 3 +/Kids[207 0 R 211 0 R 218 0 R] +/Parent 240 0 R +>> +endobj +240 0 obj +<< +/Type/Pages +/Count 11 +/Kids[241 0 R 242 0 R 243 0 R 244 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 42 +/Kids[225 0 R 230 0 R 235 0 R 240 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +245 0 obj +<< +>> +endobj +246 0 obj +null +endobj +247 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 245 0 R +/Threads 246 0 R +/Names 247 0 R +>> +endobj +xref +0 248 +0000000000 65535 f +0000131472 00000 n +0000138274 00000 n +0000137919 00000 n +0000138124 00000 n +0000131636 00000 n +0000004047 00000 n +0000000009 00000 n +0000060656 00000 n +0000060472 00000 n +0000000913 00000 n +0000065321 00000 n +0000065135 00000 n +0000001906 00000 n +0000070560 00000 n +0000070372 00000 n +0000002823 00000 n +0000138024 00000 n +0000003740 00000 n +0000138074 00000 n +0000003992 00000 n +0000131739 00000 n +0000010815 00000 n +0000082793 00000 n +0000082604 00000 n +0000004108 00000 n +0000088065 00000 n +0000087875 00000 n +0000005054 00000 n +0000093369 00000 n +0000093180 00000 n +0000005990 00000 n +0000006966 00000 n +0000096299 00000 n +0000096105 00000 n +0000007920 00000 n +0000099640 00000 n +0000099454 00000 n +0000008866 00000 n +0000009830 00000 n +0000010727 00000 n +0000131924 00000 n +0000012675 00000 n +0000102442 00000 n +0000102251 00000 n +0000010877 00000 n +0000011871 00000 n +0000012587 00000 n +0000132029 00000 n +0000020732 00000 n +0000104875 00000 n +0000104681 00000 n +0000012737 00000 n +0000013708 00000 n +0000108632 00000 n +0000108437 00000 n +0000015324 00000 n +0000016276 00000 n +0000110771 00000 n +0000110576 00000 n +0000017183 00000 n +0000018165 00000 n +0000113429 00000 n +0000113243 00000 n +0000019142 00000 n +0000019887 00000 n +0000020607 00000 n +0000132134 00000 n +0000021680 00000 n +0000020794 00000 n +0000021544 00000 n +0000132327 00000 n +0000022772 00000 n +0000021742 00000 n +0000022636 00000 n +0000132432 00000 n +0000024201 00000 n +0000022834 00000 n +0000024065 00000 n +0000132618 00000 n +0000024861 00000 n +0000024263 00000 n +0000024792 00000 n +0000132723 00000 n +0000025840 00000 n +0000024923 00000 n +0000025715 00000 n +0000132828 00000 n +0000027255 00000 n +0000025902 00000 n +0000027119 00000 n +0000133119 00000 n +0000028124 00000 n +0000027317 00000 n +0000028055 00000 n +0000133224 00000 n +0000029365 00000 n +0000028186 00000 n +0000029229 00000 n +0000133410 00000 n +0000029828 00000 n +0000029427 00000 n +0000029782 00000 n +0000133517 00000 n +0000030783 00000 n +0000029892 00000 n +0000030646 00000 n +0000133625 00000 n +0000031793 00000 n +0000030847 00000 n +0000031656 00000 n +0000133823 00000 n +0000033055 00000 n +0000031857 00000 n +0000032918 00000 n +0000133931 00000 n +0000033597 00000 n +0000033119 00000 n +0000033527 00000 n +0000134039 00000 n +0000034884 00000 n +0000033661 00000 n +0000034747 00000 n +0000134238 00000 n +0000035887 00000 n +0000034948 00000 n +0000035750 00000 n +0000134346 00000 n +0000036713 00000 n +0000035951 00000 n +0000036643 00000 n +0000134454 00000 n +0000038022 00000 n +0000036777 00000 n +0000037885 00000 n +0000134751 00000 n +0000038659 00000 n +0000038086 00000 n +0000038589 00000 n +0000134859 00000 n +0000040087 00000 n +0000038723 00000 n +0000039950 00000 n +0000135050 00000 n +0000040644 00000 n +0000040151 00000 n +0000040598 00000 n +0000135158 00000 n +0000041658 00000 n +0000040708 00000 n +0000041521 00000 n +0000135266 00000 n +0000042803 00000 n +0000041722 00000 n +0000042666 00000 n +0000135465 00000 n +0000043962 00000 n +0000042867 00000 n +0000043825 00000 n +0000135573 00000 n +0000045195 00000 n +0000044026 00000 n +0000045058 00000 n +0000135764 00000 n +0000046500 00000 n +0000045259 00000 n +0000046363 00000 n +0000135872 00000 n +0000047059 00000 n +0000046564 00000 n +0000047013 00000 n +0000135980 00000 n +0000048429 00000 n +0000047123 00000 n +0000048292 00000 n +0000136277 00000 n +0000048925 00000 n +0000048493 00000 n +0000048879 00000 n +0000136385 00000 n +0000050313 00000 n +0000048989 00000 n +0000050176 00000 n +0000136576 00000 n +0000050880 00000 n +0000050377 00000 n +0000050834 00000 n +0000136684 00000 n +0000051891 00000 n +0000050944 00000 n +0000051743 00000 n +0000136792 00000 n +0000052615 00000 n +0000051955 00000 n +0000052545 00000 n +0000136991 00000 n +0000053898 00000 n +0000052679 00000 n +0000053750 00000 n +0000137099 00000 n +0000054496 00000 n +0000053962 00000 n +0000054450 00000 n +0000137207 00000 n +0000055924 00000 n +0000054560 00000 n +0000055776 00000 n +0000137406 00000 n +0000056687 00000 n +0000055988 00000 n +0000056641 00000 n +0000137514 00000 n +0000059023 00000 n +0000124348 00000 n +0000124152 00000 n +0000056751 00000 n +0000057763 00000 n +0000058862 00000 n +0000137622 00000 n +0000060408 00000 n +0000125766 00000 n +0000125571 00000 n +0000059087 00000 n +0000060010 00000 n +0000060350 00000 n +0000133021 00000 n +0000131844 00000 n +0000132239 00000 n +0000132537 00000 n +0000132933 00000 n +0000134653 00000 n +0000133329 00000 n +0000133733 00000 n +0000134147 00000 n +0000134562 00000 n +0000136179 00000 n +0000134967 00000 n +0000135374 00000 n +0000135681 00000 n +0000136088 00000 n +0000137821 00000 n +0000136493 00000 n +0000136900 00000 n +0000137315 00000 n +0000137730 00000 n +0000138206 00000 n +0000138229 00000 n +0000138251 00000 n +trailer +<< +/Size 248 +/Root 2 0 R +/Info 1 0 R +>> +startxref +138372 +%%EOF diff --git a/src/axiom-website/CATS/schaum10.input.pamphlet b/src/axiom-website/CATS/schaum10.input.pamphlet new file mode 100644 index 0000000..6149cc0 --- /dev/null +++ b/src/axiom-website/CATS/schaum10.input.pamphlet @@ -0,0 +1,2310 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum10.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.210~~~~~$\displaystyle\int{\frac{dx}{\sqrt{x^2-a^2}}}$} +$$\int{\frac{1}{\sqrt{x^2-a^2}}}=\ln\left(x+\sqrt{x^2-a^2}\right)$$ +<<*>>= +)spool schaum10.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(sqrt(x^2-a^2)),x) +--R +--R +--R +-------+ +--R | 2 2 +--R (1) - log(\|x - a - x) +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +--R | 2 2 +--R (2) log(\|x - a + x) +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x - a + x) - log(\|x - a - x) +--R Type: Expression Integer +--E + +--S 4 +logmul1:=rule(c*log(a)+c*log(b) == c*log(a*b)) +--R +--I (4) c log(b) + c log(a) + %I == c log(a b) + %I +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 14:210 Schaums and Axiom differ by a constant +dd:=logmul1 cc +--R +--R 2 +--R (5) - log(- a ) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.xxx~~~~~$\displaystyle\int{\frac{x~dx}{\sqrt{x^2-a^2}}}$} +$$\int{\frac{x}{\sqrt{x^2-a^2}}}=\sqrt{x^2-a^2}$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(x/(sqrt(x^2-a^2)),x) +--R +--R +--R +-------+ +--R | 2 2 2 2 +--R - x\|x - a + x - a +--R (1) ----------------------- +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=sqrt(x^2-a^2) +--R +--R +-------+ +--R | 2 2 +--R (2) \|x - a +--R Type: Expression Integer +--E + +--S 8 14:xxx Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.211~~~~~$\displaystyle +\int{\frac{x^2~dx}{\sqrt{x^2-a^2}}}$} +$$\int{\frac{x^2}{\sqrt{x^2-a^2}}}= +\frac{x\sqrt{x^2-a^2}}{2}+\frac{a^2}{2}\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 9 +aa:=integrate(x^2/sqrt(x^2-a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 | 2 2 2 2 4 | 2 2 +--R (- 2a x\|x - a + 2a x - a )log(\|x - a - x) +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (- 2x + a x)\|x - a + 2x - 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 4x\|x - a - 4x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 10 +bb:=(x*sqrt(x^2-a^2))/2+a^2/2*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 | 2 2 +--R a log(\|x - a + x) + x\|x - a +--R (2) ----------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 11 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R - a log(\|x - a + x) - a log(\|x - a - x) +--R (3) ----------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 12 14:211 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 2 +--R a log(- a ) +--R (4) - ----------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.212~~~~~$\displaystyle +\int{\frac{x^3~dx}{\sqrt{x^2-a^2}}}$} +$$\int{\frac{x^3}{\sqrt{x^2-a^2}}}= +\frac{(x^2-a^2)^{3/2}}{3}+a^2\sqrt{x^2-a^2} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(x^3/sqrt(x^2-a^2),x) +--R +--R +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x - 5a x + 6a x)\|x - a + 4x + 3a x - 9a x + 2a +--R (1) ------------------------------------------------------------ +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x - 3a )\|x - a - 12x + 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=(x^2-a^2)^(3/2)/3+a^2*sqrt(x^2-a^2) +--R +--R +-------+ +--R 2 2 | 2 2 +--R (x + 2a )\|x - a +--R (2) -------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 15 14:212 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.213~~~~~$\displaystyle\int{\frac{dx}{x\sqrt{x^2-a^2}}}$} +$$\int{\frac{1}{x\sqrt{x^2-a^2}}}= +\frac{1}{a}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(1/(x*sqrt(x^2-a^2)),x) +--R +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R 2atan(--------------) +--R a +--R (1) --------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=1/a*asec(x/a) +--R +--R x +--R asec(-) +--R a +--R (2) ------- +--R a +--R Type: Expression Integer +--E + +--S 18 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R 2atan(--------------) - asec(-) +--R a a +--R (3) ------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 19 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (4) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 20 +dd:=asecrule cc +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x \|x - a - x +--R - 2%i log(------------------) + 4atan(--------------) - %pi +--R x a +--R (5) ----------------------------------------------------------- +--R 2a +--R Type: Expression Complex Integer +--E + +--S 21 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 22 +ee:=atanrule dd +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R - 2%i log(------------------) - 2%i log(-----------------------) - %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R (7) ---------------------------------------------------------------------- +--R 2a +--R Type: Expression Complex Integer +--E + +--S 23 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2%i log(\|x - a - x + %i a) - 2%i log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R - 2%i log(x |------- + %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R | 2 +--R \| x +--R / +--R 2a +--R Type: Expression Complex Integer +--E + +--S 24 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 2%i log(\|x - a + %i a) + 2%i log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R - 2%i log(\|x - a - x - %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R / +--R 2a +--R Type: Expression Complex Integer +--E + +--S 25 14:213 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R %pi +--R (10) - --- +--R 2a +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.214~~~~~$\displaystyle +\int{\frac{dx}{x^2\sqrt{x^2-a^2}}}$} +$$\int{\frac{1}{x^2\sqrt{x^2-a^2}}}= +\frac{\sqrt{x^2-a^2}}{a^2x} +$$ +<<*>>= +)clear all + +--S 26 +aa:=integrate(1/(x^2*sqrt(x^2-a^2)),x) +--R +--R +--R 1 +--R (1) - ---------------- +--R +-------+ +--R | 2 2 2 +--R x\|x - a - x +--R Type: Union(Expression Integer,...) +--E + +--S 27 +bb:=sqrt(x^2-a^2)/(a^2*x) +--R +--R +-------+ +--R | 2 2 +--R \|x - a +--R (2) ---------- +--R 2 +--R a x +--R Type: Expression Integer +--E + +--S 28 14:214 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 1 +--R (3) -- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.215~~~~~$\displaystyle\int{\frac{dx}{x^3\sqrt{x^2-a^2}}}$} +$$\int{\frac{1}{x^3\sqrt{x^2-a^2}}}= +-\frac{\sqrt{x^2-a^2}}{2a^2x^2}+\frac{1}{2a^3} +\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(1/(x^3*sqrt(x^2-a^2)),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 3 | 2 2 4 2 2 \|x - a - x +--R (4x \|x - a - 4x + 2a x )atan(--------------) +--R a +--R + +--R +-------+ +--R 2 3 | 2 2 3 3 +--R (- 2a x + a )\|x - a + 2a x - 2a x +--R / +--R +-------+ +--R 3 3 | 2 2 3 4 5 2 +--R 4a x \|x - a - 4a x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=sqrt(x^2-a^2)/(2*a^2*x^2)+1/(2*a^3)*asec(x/a) +--R +--R +-------+ +--R | 2 2 2 x +--R a\|x - a + x asec(-) +--R a +--R (2) ----------------------- +--R 3 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R 2atan(--------------) - asec(-) +--R a a +--R (3) ------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 32 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 33 +dd:=atanrule cc +--R +--R +-------+ +--R | 2 2 +--R - \|x - a + x + %i a x +--R - %i log(-----------------------) - asec(-) +--R +-------+ a +--R | 2 2 +--R \|x - a - x + %i a +--R (5) ------------------------------------------- +--R 3 +--R 2a +--R Type: Expression Complex Integer +--E + +--S 34 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (6) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 35 +ee:=asecrule dd +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R - 2%i log(------------------) - 2%i log(-----------------------) - %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R (7) ---------------------------------------------------------------------- +--R 3 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 36 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2%i log(\|x - a - x + %i a) - 2%i log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R - 2%i log(x |------- + %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R | 2 +--R \| x +--R / +--R 3 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 37 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 2%i log(\|x - a + %i a) + 2%i log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R - 2%i log(\|x - a - x - %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R / +--R 3 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 38 14:215 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R %pi +--R (10) - --- +--R 3 +--R 4a +--R Type: Expression Complex Integer +--E + +@ + +\section{\cite{1}:14.216~~~~~$\displaystyle\int{\sqrt{x^2-a^2}}~dx$} +$$\int{\sqrt{x^2-a^2}}= +\frac{x\sqrt{x^2-a^2}}{2}-\frac{a^2}{2}\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(sqrt(x^2-a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 | 2 2 2 2 4 | 2 2 +--R (2a x\|x - a - 2a x + a )log(\|x - a - x) +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (- 2x + a x)\|x - a + 2x - 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 4x\|x - a - 4x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=(x*sqrt(x^2-a^2))/2-a^2/2*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 | 2 2 +--R - a log(\|x - a + x) + x\|x - a +--R (2) ------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 41 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R a log(\|x - a + x) + a log(\|x - a - x) +--R (3) --------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 42 14:216 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 2 +--R a log(- a ) +--R (4) ----------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.217~~~~~$\displaystyle\int{x\sqrt{x^2-a^2}}~dx$} +$$\int{x\sqrt{x^2-a^2}}= +\frac{(x^2-a^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 43 +aa:=integrate(x*sqrt(x^2-a^2),x) +--R +--R +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x + 7a x - 3a x)\|x - a + 4x - 9a x + 6a x - a +--R (1) ----------------------------------------------------------- +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x - 3a )\|x - a - 12x + 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 44 +bb:=(x^2-a^2)^(3/2)/3 +--R +--R +-------+ +--R 2 2 | 2 2 +--R (x - a )\|x - a +--R (2) ------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 45 14:217 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.218~~~~~$\displaystyle +\int{x^2\sqrt{x^2-a^2}}~dx$} +$$\int{x^2\sqrt{x^2-a^2}}= +\frac{x(x^2-a^2)^{3/2}}{4}+\frac{a^2x\sqrt{x^2-a^2}}{8}- +\frac{a^4}{8}\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 46 +aa:=integrate(x^2*sqrt(x^2-a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 4 3 6 | 2 2 4 4 6 2 8 | 2 2 +--R ((8a x - 4a x)\|x - a - 8a x + 8a x - a )log(\|x - a - x) +--R + +--R +-------+ +--R 7 2 5 4 3 6 | 2 2 8 2 6 4 4 6 2 +--R (- 16x + 24a x - 10a x + a x)\|x - a + 16x - 32a x + 20a x - 4a x +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (64x - 32a x)\|x - a - 64x + 64a x - 8a +--R Type: Union(Expression Integer,...) +--E + +--S 47 +bb:=(x*(x^2-a^2)^(3/2))/4+(a^2*x*sqrt(x^2-a^2))/8-a^4/8*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 4 | 2 2 3 2 | 2 2 +--R - a log(\|x - a + x) + (2x - a x)\|x - a +--R (2) ----------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 48 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R a log(\|x - a + x) + a log(\|x - a - x) +--R (3) --------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 49 14:218 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 4 2 +--R a log(- a ) +--R (4) ----------- +--R 8 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.219~~~~~$\displaystyle +\int{x^3\sqrt{x^2-a^2}}~dx$} +$$\int{x^3\sqrt{x^2-a^2}}= +\frac{(x^2-a^2)^{5/2}}{5}+\frac{a^2(x^2-a^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 50 +aa:=integrate(x^3*sqrt(x^2-a^2),x) +--R +--R +--R (1) +--R +-------+ +--R 9 2 7 4 5 6 3 8 | 2 2 10 2 8 +--R (- 48x + 76a x - 3a x - 35a x + 10a x)\|x - a + 48x - 100a x +--R + +--R 4 6 6 4 8 2 10 +--R 35a x + 40a x - 25a x + 2a +--R / +--R +-------+ +--R 4 2 2 4 | 2 2 5 2 3 4 +--R (240x - 180a x + 15a )\|x - a - 240x + 300a x - 75a x +--R Type: Union(Expression Integer,...) +--E + +--S 51 +bb:=(x^2-a^2)^(5/2)/5+(a^2*(x^2-a^2)^(3/2))/3 +--R +--R +-------+ +--R 4 2 2 4 | 2 2 +--R (3x - a x - 2a )\|x - a +--R (2) ---------------------------- +--R 15 +--R Type: Expression Integer +--E + +--S 52 14:219 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.220~~~~~$\displaystyle +\int{\frac{\sqrt{x^2-a^2}}{x}}~dx$} +$$\int{\frac{\sqrt{x^2-a^2}}{x}}= +\sqrt{x^2-a^2}-a\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 53 +aa:=integrate(sqrt(x^2-a^2)/x,x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 \|x - a - x | 2 2 2 2 +--R (- 2a\|x - a + 2a x)atan(--------------) - x\|x - a + x - a +--R a +--R (1) ------------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R Type: Union(Expression Integer,...) +--E + +--S 54 +bb:=sqrt(x^2-a^2)-a*asec(x/a) +--R +--R +-------+ +--R | 2 2 x +--R (2) \|x - a - a asec(-) +--R a +--R Type: Expression Integer +--E + +--S 55 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R (3) - 2a atan(--------------) + a asec(-) +--R a a +--R Type: Expression Integer +--E + +--S 56 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 57 +dd:=atanrule cc +--R +--R +-------+ +--R | 2 2 +--R - \|x - a + x + %i a x +--R (5) %i a log(-----------------------) + a asec(-) +--R +-------+ a +--R | 2 2 +--R \|x - a - x + %i a +--R Type: Expression Complex Integer +--E + +--S 58 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (6) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 59 +ee:=asecrule dd +--R +--R (7) +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R 2%i a log(------------------) + 2%i a log(-----------------------) + a %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R -------------------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 60 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 2%i a log(\|x - a - x + %i a) + 2%i a log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R 2%i a log(x |------- + %i a) - 2%i a log(x) + 2%i a log(- 1) + a %pi +--R | 2 +--R \| x +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 61 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2%i a log(\|x - a + %i a) - 2%i a log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R 2%i a log(\|x - a - x - %i a) - 2%i a log(x) + 2%i a log(- 1) + a %pi +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 62 14:220 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R a %pi +--R (10) ----- +--R 2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.221~~~~~$\displaystyle +\int{\frac{\sqrt{x^2-a^2}}{x^2}}~dx$} +$$\int{\frac{\sqrt{x^2-a^2}}{x^2}}= +-\frac{\sqrt{x^2-a^2}}{x}+\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 63 +aa:=integrate(sqrt(x^2-a^2)/x^2,x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 2 | 2 2 2 +--R (- x\|x - a + x )log(\|x - a - x) + a +--R (1) -------------------------------------------- +--R +-------+ +--R | 2 2 2 +--R x\|x - a - x +--R Type: Union(Expression Integer,...) +--E + +--S 64 +bb:=-sqrt(x^2-a^2)/x+log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R x log(\|x - a + x) - \|x - a +--R (2) ---------------------------------- +--R x +--R Type: Expression Integer +--E + +--S 65 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x - a + x) - log(\|x - a - x) - 1 +--R Type: Expression Integer +--E + +--S 66 14:221 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 +--R (4) - log(- a ) - 1 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.222~~~~~$\displaystyle +\int{\frac{\sqrt{x^2-a^2}}{x^3}}~dx$} +$$\int{\frac{\sqrt{x^2-a^2}}{x^3}}= +-\frac{\sqrt{x^2-a^2}}{2x^2}+\frac{1}{2a} +\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 67 +aa:=integrate(sqrt(x^2-a^2)/x^3,x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 3 | 2 2 4 2 2 \|x - a - x +--R (4x \|x - a - 4x + 2a x )atan(--------------) +--R a +--R + +--R +-------+ +--R 2 3 | 2 2 3 3 +--R (2a x - a )\|x - a - 2a x + 2a x +--R / +--R +-------+ +--R 3 | 2 2 4 3 2 +--R 4a x \|x - a - 4a x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 68 +bb:=-sqrt(x^2-a^2)/(2*x^2)+1/(2*a)*asec(x/a) +--R +--R +-------+ +--R | 2 2 2 x +--R - a\|x - a + x asec(-) +--R a +--R (2) ------------------------- +--R 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 69 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R 2atan(--------------) - asec(-) +--R a a +--R (3) ------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 70 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (4) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 71 +dd:=asecrule cc +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x \|x - a - x +--R - 2%i log(------------------) + 4atan(--------------) - %pi +--R x a +--R (5) ----------------------------------------------------------- +--R 4a +--R Type: Expression Complex Integer +--E + +--S 72 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 73 +ee:=atanrule dd +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R - 2%i log(------------------) - 2%i log(-----------------------) - %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R (7) ---------------------------------------------------------------------- +--R 4a +--R Type: Expression Complex Integer +--E + +--S 74 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2%i log(\|x - a - x + %i a) - 2%i log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R - 2%i log(x |------- + %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R | 2 +--R \| x +--R / +--R 4a +--R Type: Expression Complex Integer +--E + +--S 75 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 2%i log(\|x - a + %i a) + 2%i log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R - 2%i log(\|x - a - x - %i a) + 2%i log(x) - 2%i log(- 1) - %pi +--R / +--R 4a +--R Type: Expression Complex Integer +--E + +--S 76 14:222 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R %pi +--R (10) - --- +--R 4a +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.223~~~~~$\displaystyle\int{\frac{dx}{(x^2-a^2)^{3/2}}}$} +$$\int{\frac{1}{(x^2-a^2)^{3/2}}}= +-\frac{x}{a^2\sqrt{x^2-a^2}} +$$ +<<*>>= +)clear all + +--S 77 +aa:=integrate(1/(x^2-a^2)^(3/2),x) +--R +--R +--R 1 +--R (1) - --------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x - a - x + a +--R Type: Union(Expression Integer,...) +--E + +--S 78 +bb:=-x/(a^2*sqrt(x^2-a^2)) +--R +--R x +--R (2) - ------------ +--R +-------+ +--R 2 | 2 2 +--R a \|x - a +--R Type: Expression Integer +--E + +--S 79 14:223 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 1 +--R (3) - -- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.224~~~~~$\displaystyle +\int{\frac{x~dx}{(x^2-a^2)^{3/2}}}$} +$$\int{\frac{x}{(x^2-a^2)^{3/2}}}= +\frac{-1}{\sqrt{x^2-a^2}} +$$ +<<*>>= +)clear all + +--S 80 +aa:=integrate(x/(x^2-a^2)^(3/2),x) +--R +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R (1) --------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x - a - x + a +--R Type: Union(Expression Integer,...) +--E + +--S 81 +bb:=-1/sqrt(x^2-a^2) +--R +--R 1 +--R (2) - ---------- +--R +-------+ +--R | 2 2 +--R \|x - a +--R Type: Expression Integer +--E + +--S 82 14:224 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.225~~~~~$\displaystyle +\int{\frac{x^2dx}{(x^2-a^2)^{3/2}}}$} +$$\int{\frac{x^2}{(x^2-a^2)^{3/2}}}= +\frac{-x}{\sqrt{x^2-a^2}}+\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate(x^2/(x^2-a^2)^(3/2),x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 2 2 | 2 2 2 +--R (- x\|x - a + x - a )log(\|x - a - x) - a +--R (1) ------------------------------------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x - a - x + a +--R Type: Union(Expression Integer,...) +--E + +--S 84 +bb:=-x/sqrt(x^2-a^2)+log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R \|x - a log(\|x - a + x) - x +--R (2) --------------------------------- +--R +-------+ +--R | 2 2 +--R \|x - a +--R Type: Expression Integer +--E + +--S 85 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x - a + x) - log(\|x - a - x) - 1 +--R Type: Expression Integer +--E + +--S 86 14:225 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 +--R (4) - log(- a ) - 1 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.226~~~~~$\displaystyle +\int{\frac{x^3dx}{(x^2-a^2)^{3/2}}}$} +$$\int{\frac{x^3}{(x^2-a^2)^{3/2}}}= +\sqrt{x^2-a^2}-\frac{a^2}{\sqrt{x^2-a^2}} +$$ +<<*>>= +)clear all + +--S 87 +aa:=integrate(x^3/(x^2-a^2)^(3/2),x) +--R +--R +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (- 2x + 4a x)\|x - a + 2x - 5a x + 2a +--R (1) -------------------------------------------- +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (2x - a )\|x - a - 2x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 88 +bb:=sqrt(x^2-a^2)-a^2/sqrt(x^2-a^2) +--R +--R 2 2 +--R x - 2a +--R (2) ---------- +--R +-------+ +--R | 2 2 +--R \|x - a +--R Type: Expression Integer +--E + +--S 89 14:226 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.227~~~~~$\displaystyle +\int{\frac{dx}{x(x^2-a^2)^{3/2}}}$} +$$\int{\frac{1}{x(x^2-a^2)^{3/2}}}= +\frac{-1}{a^2\sqrt{x^2-a^2}}- +\frac{1}{a^3}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 90 +aa:=integrate(1/(x*(x^2-a^2)^(3/2)),x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 2 2 \|x - a - x | 2 2 +--R (- 2x\|x - a + 2x - 2a )atan(--------------) + a\|x - a - a x +--R a +--R (1) -------------------------------------------------------------------- +--R +-------+ +--R 3 | 2 2 3 2 5 +--R a x\|x - a - a x + a +--R Type: Union(Expression Integer,...) +--E + +--S 91 +bb:=-1/(a^2*sqrt(x^2-a^2))-1/a^3*asec(x/a) +--R +--R +-------+ +--R x | 2 2 +--R - asec(-)\|x - a - a +--R a +--R (2) ----------------------- +--R +-------+ +--R 3 | 2 2 +--R a \|x - a +--R Type: Expression Integer +--E + +--S 92 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R - 2atan(--------------) + asec(-) +--R a a +--R (3) --------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 93 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 94 +dd:=atanrule cc +--R +--R +-------+ +--R | 2 2 +--R - \|x - a + x + %i a x +--R %i log(-----------------------) + asec(-) +--R +-------+ a +--R | 2 2 +--R \|x - a - x + %i a +--R (5) ----------------------------------------- +--R 3 +--R a +--R Type: Expression Complex Integer +--E + +--S 95 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (6) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 96 +ee:=asecrule dd +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R 2%i log(------------------) + 2%i log(-----------------------) + %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R (7) -------------------------------------------------------------------- +--R 3 +--R 2a +--R Type: Expression Complex Integer +--E + +--S 97 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 2%i log(\|x - a - x + %i a) + 2%i log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R 2%i log(x |------- + %i a) - 2%i log(x) + 2%i log(- 1) + %pi +--R | 2 +--R \| x +--R / +--R 3 +--R 2a +--R Type: Expression Complex Integer +--E + +--S 98 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2%i log(\|x - a + %i a) - 2%i log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R 2%i log(\|x - a - x - %i a) - 2%i log(x) + 2%i log(- 1) + %pi +--R / +--R 3 +--R 2a +--R Type: Expression Complex Integer +--E + +--S 99 14:227 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R %pi +--R (10) --- +--R 3 +--R 2a +--R Type: Expression Complex Integer +--E + +@ + +\section{\cite{1}:14.228~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^2-a^2)^{3/2}}}$} +$$\int{\frac{1}{x^2(x^2-a^2)^{3/2}}}= +-\frac{\sqrt{x^2-a^2}}{a^4x}-\frac{x}{a^4\sqrt{x^2-a^2}} +$$ +<<*>>= +)clear all + +--S 100 +aa:=integrate(1/(x^2*(x^2-a^2)^(3/2)),x) +--R +--R +--R 1 +--R (1) - ----------------------------------- +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (2x - a x)\|x - a - 2x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 101 +bb:=-sqrt(x^2-a^2)/(a^4*x)-x/(a^4*sqrt(x^2-a^2)) +--R +--R 2 2 +--R - 2x + a +--R (2) ------------- +--R +-------+ +--R 4 | 2 2 +--R a x\|x - a +--R Type: Expression Integer +--E + +--S 102 14:228 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 2 +--R (3) - -- +--R 4 +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.229~~~~~$\displaystyle +\int{\frac{dx}{x^3(x^2-a^2)^{3/2}}}$} +$$\int{\frac{1}{x^3(x^2-a^2)^{3/2}}}= +\frac{1}{2a^2x^2\sqrt{x^2-a^2}}- +\frac{3}{2a^4\sqrt{x^2-a^2}}- +\frac{3}{2a^5}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 103 +aa:=integrate(1/(x^3*(x^2-a^2)^(3/2)),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 5 2 3 | 2 2 6 2 4 4 2 \|x - a - x +--R ((- 24x + 18a x )\|x - a + 24x - 30a x + 6a x )atan(--------------) +--R a +--R + +--R +-------+ +--R 4 3 2 5 | 2 2 5 3 3 5 +--R (12a x - 7a x + a )\|x - a - 12a x + 13a x - 3a x +--R / +--R +-------+ +--R 5 5 7 3 | 2 2 5 6 7 4 9 2 +--R (8a x - 6a x )\|x - a - 8a x + 10a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 104 +bb:=1/(2*a^2*x^2*sqrt(x^2-a^2))-3/(2*a^4*sqrt(x^2-a^2))-3/(2*a^5)*asec(x/a) +--R +--R +-------+ +--R 2 x | 2 2 2 3 +--R - 3x asec(-)\|x - a - 3a x + a +--R a +--R (2) ----------------------------------- +--R +-------+ +--R 5 2 | 2 2 +--R 2a x \|x - a +--R Type: Expression Integer +--E + +--S 105 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R - 6atan(--------------) + 3asec(-) +--R a a +--R (3) ---------------------------------- +--R 5 +--R 2a +--R Type: Expression Integer +--E + +--S 106 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 107 +dd:=atanrule cc +--R +--R +-------+ +--R | 2 2 +--R - \|x - a + x + %i a x +--R 3%i log(-----------------------) + 3asec(-) +--R +-------+ a +--R | 2 2 +--R \|x - a - x + %i a +--R (5) ------------------------------------------- +--R 5 +--R 2a +--R Type: Expression Complex Integer +--E + +--S 108 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (6) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 109 +ee:=asecrule dd +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R 6%i log(------------------) + 6%i log(-----------------------) + 3%pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R (7) --------------------------------------------------------------------- +--R 5 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 110 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 6%i log(\|x - a - x + %i a) + 6%i log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R 6%i log(x |------- + %i a) - 6%i log(x) + 6%i log(- 1) + 3%pi +--R | 2 +--R \| x +--R / +--R 5 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 111 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 6%i log(\|x - a + %i a) - 6%i log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R 6%i log(\|x - a - x - %i a) - 6%i log(x) + 6%i log(- 1) + 3%pi +--R / +--R 5 +--R 4a +--R Type: Expression Complex Integer +--E + +--S 112 14:229 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R 3%pi +--R (10) ---- +--R 5 +--R 4a +--R Type: Expression Complex Integer +--E +@ +\section{\cite{1}:14.230~~~~~$\displaystyle\int{(x^2-a^2)^{3/2}}~dx$} +$$\int{(x^2-a^2)^{3/2}}= +\frac{x(x^2-a^2)^{3/2}}{4}-\frac{3a^2x\sqrt{x^2-a^2}}{8}+ +\frac{3}{8}a^4\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 113 +aa:=integrate((x^2-a^2)^(3/2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 4 3 6 | 2 2 4 4 6 2 8 | 2 2 +--R ((- 24a x + 12a x)\|x - a + 24a x - 24a x + 3a )log(\|x - a - x) +--R + +--R +-------+ +--R 7 2 5 4 3 6 | 2 2 8 2 6 4 4 +--R (- 16x + 56a x - 42a x + 5a x)\|x - a + 16x - 64a x + 68a x +--R + +--R 6 2 +--R - 20a x +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (64x - 32a x)\|x - a - 64x + 64a x - 8a +--R Type: Union(Expression Integer,...) +--E + +--S 114 +bb:=(x*(x^2-a^2)^(3/2))/4-(3*a^2*x*sqrt(x^2-a^2))/8+3/8*a^4*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 4 | 2 2 3 2 | 2 2 +--R 3a log(\|x - a + x) + (2x - 5a x)\|x - a +--R (2) ----------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 115 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R - 3a log(\|x - a + x) - 3a log(\|x - a - x) +--R (3) ------------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 116 14:230 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 4 2 +--R 3a log(- a ) +--R (4) - ------------ +--R 8 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.231~~~~~$\displaystyle\int{x(x^2-a^2)^{3/2}}~dx$} +$$\int{x(x^2-a^2)^{3/2}}=\frac{(x^2-a^2)^{5/2}}{5}$$ +<<*>>= +)clear all + +--S 117 +aa:=integrate(x*(x^2-a^2)^(3/2),x) +--R +--R +--R (1) +--R +-------+ +--R 9 2 7 4 5 6 3 8 | 2 2 10 2 8 +--R (- 16x + 52a x - 61a x + 30a x - 5a x)\|x - a + 16x - 60a x +--R + +--R 4 6 6 4 8 2 10 +--R 85a x - 55a x + 15a x - a +--R / +--R +-------+ +--R 4 2 2 4 | 2 2 5 2 3 4 +--R (80x - 60a x + 5a )\|x - a - 80x + 100a x - 25a x +--R Type: Union(Expression Integer,...) +--E + +--S 118 +bb:=(x^2-a^2)^(5/2)/5 +--R +--R +-------+ +--R 4 2 2 4 | 2 2 +--R (x - 2a x + a )\|x - a +--R (2) --------------------------- +--R 5 +--R Type: Expression Integer +--E + +--S 119 14:231 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.232~~~~~$\displaystyle\int{x^2(x^2-a^2)^{3/2}}~dx$} +$$\int{x^2(x^2-a^2)^{3/2}}= +\frac{x(x^2-a^2)^{5/2}}{6}+\frac{a^2x(x^2-a^2)^{3/2}}{24}- +\frac{a^4x\sqrt{x^2-a^2}}{16}+ +\frac{a^6}{16}\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 120 +aa:=integrate(x^2*(x^2-a^2)^(3/2),x) +--R +--R +--R (1) +--R +-------+ +--R 6 5 8 3 10 | 2 2 6 6 8 4 10 2 +--R (- 96a x + 96a x - 18a x)\|x - a + 96a x - 144a x + 54a x +--R + +--R 12 +--R - 3a +--R * +--R +-------+ +--R | 2 2 +--R log(\|x - a - x) +--R + +--R +-------+ +--R 11 2 9 4 7 6 5 8 3 10 | 2 2 +--R (- 256x + 832a x - 912a x + 404a x - 68a x + 3a x)\|x - a +--R + +--R 12 2 10 4 8 6 6 8 4 10 2 +--R 256x - 960a x + 1296a x - 772a x + 198a x - 18a x +--R / +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (1536x - 1536a x + 288a x)\|x - a - 1536x + 2304a x - 864a x + 48a +--R Type: Union(Expression Integer,...) +--E + +--S 121 +bb:=(x*(x^2-a^2)^(5/2))/6+(a^2*x*(x^2-a^2)^(3/2))/24-(a^4*x*sqrt(x^2-a^2))/16+a^6/16*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 6 | 2 2 5 2 3 4 | 2 2 +--R 3a log(\|x - a + x) + (8x - 14a x + 3a x)\|x - a +--R (2) -------------------------------------------------------- +--R 48 +--R Type: Expression Integer +--E + +--S 122 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 6 | 2 2 6 | 2 2 +--R - a log(\|x - a + x) - a log(\|x - a - x) +--R (3) ----------------------------------------------- +--R 16 +--R Type: Expression Integer +--E + +--S 123 14:232 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 6 2 +--R a log(- a ) +--R (4) - ----------- +--R 16 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.233~~~~~$\displaystyle\int{x^3(x^2-a^2)^{3/2}}~dx$} +$$\int{x^3(x^2-a^2)^{3/2}}= +\frac{(x^2-a^2)^{7/2}}{7}+\frac{a^2(x^2-a^2)^{5/2}}{5} +$$ +<<*>>= +)clear all + +--S 124 +aa:=integrate(x^3*(x^2-a^2)^(3/2),x) +--R +--R +--R (1) +--R 13 2 11 4 9 6 7 8 5 10 3 +--R - 320x + 1072a x - 1240a x + 467a x + 112a x - 105a x +--R + +--R 12 +--R 14a x +--R * +--R +-------+ +--R | 2 2 +--R \|x - a +--R + +--R 14 2 12 4 10 6 8 8 6 10 4 12 2 +--R 320x - 1232a x + 1736a x - 973a x + 21a x + 175a x - 49a x +--R + +--R 14 +--R 2a +--R / +--R +-------+ +--R 6 2 4 4 2 6 | 2 2 7 2 5 +--R (2240x - 2800a x + 840a x - 35a )\|x - a - 2240x + 3920a x +--R + +--R 4 3 6 +--R - 1960a x + 245a x +--R Type: Union(Expression Integer,...) +--E + +--S 125 +bb:=(x^2-a^2)^(7/2)/7+(a^2*(x^2-a^2)^(5/2))/5 +--R +--R +-------+ +--R 6 2 4 4 2 6 | 2 2 +--R (5x - 8a x + a x + 2a )\|x - a +--R (2) ------------------------------------ +--R 35 +--R Type: Expression Integer +--E + +--S 126 14:233 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.234~~~~~$\displaystyle +\int{\frac{(x^2-a^2)^{3/2}}{x}}~dx$} +$$\int{\frac{(x^2-a^2)^{3/2}}{x}}= +\frac{(x^2-a^2)^{3/2}}{3}-a^2\sqrt{x^2-a^2}+ +a^3\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 127 +aa:=integrate((x^2-a^2)^(3/2)/x,x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 3 2 5 | 2 2 3 3 5 \|x - a - x +--R ((24a x - 6a )\|x - a - 24a x + 18a x)atan(--------------) +--R a +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x + 19a x - 12a x)\|x - a + 4x - 21a x + 21a x - 4a +--R / +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x - 3a )\|x - a - 12x + 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 128 +bb:=(x^2-a^2)^(3/2)/3-a^2*sqrt(x^2-a^2)+a^3*asec(x/a) +--R +--R +-------+ +--R 2 2 | 2 2 3 x +--R (x - 4a )\|x - a + 3a asec(-) +--R a +--R (2) --------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 129 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R 3 \|x - a - x 3 x +--R (3) 2a atan(--------------) - a asec(-) +--R a a +--R Type: Expression Integer +--E + +--S 130 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (4) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 131 +dd:=asecrule cc +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R 3 \| x 3 \|x - a - x 3 +--R - 2%i a log(------------------) + 4a atan(--------------) - a %pi +--R x a +--R (5) ----------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 132 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 133 +ee:=atanrule dd +--R +--R (7) +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R 3 \| x 3 - \|x - a + x + %i a 3 +--R - 2%i a log(------------------) - 2%i a log(-----------------------) - a %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R ---------------------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 134 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R 3 | 2 2 3 | 2 2 +--R 2%i a log(\|x - a - x + %i a) - 2%i a log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R 3 |x - a 3 3 3 +--R - 2%i a log(x |------- + %i a) + 2%i a log(x) - 2%i a log(- 1) - a %pi +--R | 2 +--R \| x +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 135 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 3 | 2 2 3 | 2 2 +--R - 2%i a log(\|x - a + %i a) + 2%i a log(\|x - a - x + %i a) +--R + +--R +-------+ +--R 3 | 2 2 3 3 3 +--R - 2%i a log(\|x - a - x - %i a) + 2%i a log(x) - 2%i a log(- 1) - a %pi +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 136 14:234 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R 3 +--R a %pi +--R (10) - ----- +--R 2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.235~~~~~$\displaystyle +\int{\frac{(x^2-a^2)^{3/2}}{x^2}}~dx$} +$$\int{\frac{(x^2-a^2)^{3/2}}{x^2}}= +-\frac{(x^2-a^2)^{3/2}}{x}+\frac{3x\sqrt{x^2-a^2}}{2}- +\frac{3}{2}a^2\ln\left(x+\sqrt{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 137 +aa:=integrate((x^2-a^2)^{3/2}/x^2,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 3 4 | 2 2 2 4 4 2 | 2 2 +--R ((12a x - 3a x)\|x - a - 12a x + 9a x )log(\|x - a - x) +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x + 3a x + 4a x)\|x - a + 4x - 5a x - 3a x + 2a +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (8x - 2a x)\|x - a - 8x + 6a x +--R Type: Union(Expression Integer,...) +--E + +--S 138 +bb:=-(x^2-a^2)^(3/2)/x+3*x*sqrt(x^2-a^2)/2-3/2*a^2*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 2 | 2 2 +--R - 3a x log(\|x - a + x) + (x + 2a )\|x - a +--R (2) ------------------------------------------------- +--R 2x +--R Type: Expression Integer +--E + +--S 139 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 2 +--R 3a log(\|x - a + x) + 3a log(\|x - a - x) + 2a +--R (3) ----------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 140 14:235 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 2 2 +--R 3a log(- a ) + 2a +--R (4) ------------------ +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.236~~~~~$\displaystyle +\int{\frac{(x^2-a^2)^{3/2}}{x^3}}~dx$} +$$\int{\frac{(x^2-a^2)^{3/2}}{x^3}}= +-\frac{(x^2-a^2)^{3/2}}{2x^2}+\frac{3}{2}\sqrt{x^2-a^2}- +\frac{3}{2}a\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 141 +aa:=integrate((x^2-a^2)^(3/2)/x^3,x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 4 3 2 | 2 2 5 3 3 \|x - a - x +--R ((- 24a x + 6a x )\|x - a + 24a x - 18a x )atan(--------------) +--R a +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 8x + 2a x + 3a x)\|x - a + 8x - 6a x - 3a x + a +--R / +--R +-------+ +--R 4 2 2 | 2 2 5 2 3 +--R (8x - 2a x )\|x - a - 8x + 6a x +--R Type: Union(Expression Integer,...) +--E + +--S 142 +bb:=-(x^2-a^2)^(3/2)/(2*x^2)+(3*sqrt(x^2-a^2))/2-3/2*a*asec(x/a) +--R +--R +-------+ +--R 2 2 | 2 2 2 x +--R (2x + a )\|x - a - 3a x asec(-) +--R a +--R (2) ----------------------------------- +--R 2 +--R 2x +--R Type: Expression Integer +--E + +--S 143 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x - a - x x +--R - 6a atan(--------------) + 3a asec(-) +--R a a +--R (3) -------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 144 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 145 +dd:=atanrule cc +--R +--R +-------+ +--R | 2 2 +--R - \|x - a + x + %i a x +--R 3%i a log(-----------------------) + 3a asec(-) +--R +-------+ a +--R | 2 2 +--R \|x - a - x + %i a +--R (5) ----------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 146 +asecrule:=rule(asec(x) == 1/2*%pi+%i*log(sqrt(1-1/x^2)+%i/x)) +--R +--R +------+ +--R | 2 +--R |x - 1 +--R x |------ + %i +--R | 2 +--R \| x +--R 2%i log(---------------) + %pi +--R x +--R (6) asec(x) == ------------------------------ +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 147 +ee:=asecrule dd +--R +--R (7) +--R +-------+ +--R | 2 2 +--R |x - a +--R x |------- + %i a +-------+ +--R | 2 | 2 2 +--R \| x - \|x - a + x + %i a +--R 6%i a log(------------------) + 6%i a log(-----------------------) + 3a %pi +--R x +-------+ +--R | 2 2 +--R \|x - a - x + %i a +--R --------------------------------------------------------------------------- +--R 4 +--R Type: Expression Complex Integer +--E + +--S 148 +ff:=expandLog ee +--R +--R (8) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 6%i a log(\|x - a - x + %i a) + 6%i a log(\|x - a - x - %i a) +--R + +--R +-------+ +--R | 2 2 +--R |x - a +--R 6%i a log(x |------- + %i a) - 6%i a log(x) + 6%i a log(- 1) + 3a %pi +--R | 2 +--R \| x +--R / +--R 4 +--R Type: Expression Complex Integer +--E + +--S 149 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 6%i a log(\|x - a + %i a) - 6%i a log(\|x - a - x + %i a) +--R + +--R +-------+ +--R | 2 2 +--R 6%i a log(\|x - a - x - %i a) - 6%i a log(x) + 6%i a log(- 1) + 3a %pi +--R / +--R 4 +--R Type: Expression Complex Integer +--E + +--S 150 14:236 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R 3a %pi +--R (10) ------ +--R 4 +--R Type: Expression Complex Integer +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp68-69 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum10.input.pdf b/src/axiom-website/CATS/schaum10.input.pdf new file mode 100644 index 0000000..8271532 --- /dev/null +++ b/src/axiom-website/CATS/schaum10.input.pdf @@ -0,0 +1,3941 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/XGVGVP+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/EEFPIB+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TAMYWG+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/IJTCAF+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/EBENTK+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/CSSXYP+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PFTUWD+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/XQGLQC+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/TAMMEO+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/RJRYYM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1122 +>> +stream +x՘K5 +wXU\x*̉$p!@T1?X{iYle1W__&-G@{VC9;YxCë׬N5 iYNCD~xLLvv jvyOE +t"s + jWD OϿloڔOtVGQHt<\#k[ ^r:zQa[,o\g~ __5nc}&DY, +6vWTF֨.jQ%/Bu9 6biƤ=iبFGOt5 =`zh{\|RdװO 61ٯjQ9;{;J%PnQ_>`i53;\koѪVٮZDNWgQ?k'> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 821 +>> +stream +x=o0 + yǏc.E]IAsId)˲% Ox䑺:!AJC'~w{go +[kAkpQfKFn[Q<>a+P(1i X#9vwa%Zx#~ KZ* n@6Bv&0 vɌ%`@Z陽{G7^AM;>|S6+Y3A_M\V^Ee}$D*, P5›%ǯ  ,kuu\XQo{> +ܕ11yc+nس C Q +3]ht] @ëhx497Koq'CCWLngN Y1(WYj^ +KQ.BBeCN]?OJljsih(@<).EN4MrN8 i}Inh9)sBWNΉq";NoNHIuI n@ ;f}k*kf +Rd+@歄N#Ae;,-Ji7rRZHgvfM!?Ec'4姫Z~/jtl=:1VK=qʼnLރ}ũ^NVKiJ٣k[6+ +1MDތ++5E2_p8bg2 ^!`\=8<'@(^dhd/2g8FİS 1Xm uxa& w +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F8 39 0 R +/F10 45 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/IAEDAF+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/SPMOLI+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/RKAXVR+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 879 +>> +stream +xڭn:} +n +Hq9!)4=HiPlזQ_^%Y79 e!?wQG{$(aɀhsBSL)˓Ԩ%wiºP*g6..lBVn& ~ HPzB+iKSu񢃤 "҄d䣜^H?!9Fc.$k*A+ārgfKKAP0N,qrC&G;t260axtX(1j@D\(CVk`zG4ڠ ([1e/f0>jMB#J!5ޑvq~t&F;6tnŚg)fR&jX fH@DBd,r[(iN iNQT3IZz۲=uԻrKS7mXAzc%CW* hW ljW/j6uܼwoX;q ^GuxSە4.,WUu?嶬ru,-eV:.qT۲^)W˯H͡HǞ]y27OF hM&79IER?eӳGdzzU$7֔<[Kھӱn8.ĉ3-әK0B9;8#ά I1>CBX\NgegjYl\,3Jq.nRॊ4xIi_l+hyr/tljqm!򲇫'0ʁ ?/.g*τ鋖5OǦs<{&g +q 3h!~Y~ л +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 239 +>> +stream +xmOo0 >!H;؁oHB/#L4N~~Y/.40gؙ͞\G`jP+0O %$0I8P|ntMޗNl9Yu]-+ЏSOއyHĵ#2y<Mw9҂!ķucmW>$$˘<=]~@*Cfn*qdz=ql/T5MR  Gy15p^e +endstream +endobj +70 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 756 +>> +stream +xVn0+xpBR\ ТI(dM 8Nj +;\زP{3oƴ- \.dhFjHE.3S΅.Qu]Wϧ8pS8`Б-"8d."iaTvN3j V{"4_t yP~AI40A'Na "E*ڔ 8K$p, +۽,hMRH>$X@T +38jq4nZHc%5^}9Rppʹs-r w ܾQMaHd"pv2(hЖv;$w< =PJ`AѾɠ8Ό=P +Ls^rtEf?^tTAE]huXCZ[y_G,e:RqqDajQmr֪VP"nf˓㯨ƓiqeV GׂVע.!/E}hCR]0h|F/cx SiΜ:4r|3.U8UxbhGsn +u$i$} 5a ˦^>~,[O!8\~&3Cl6uիԯAZ'^rQ*ڪr +ٷwks9ab~Wߦx7q^>ܧb1OfL%_пrPueu Q785 +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 1041 +>> +stream +xVKo6W(G+3|ȥhh]參]@I4Muzz1z.Ǚo .gq}]W mgլ +P`ya{Xd0:5Y@XO&d"{˽cc) :"R#H~ %s\C7߳1Nu$6B> $ + +|dr8 lO8ŝ?&q837&Ԩ`"E3A C*@Q鲽 D(<3`LrY*\("HLN C2z'dS魅GqbOPZ LLf?b%GNЇ> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 285 +>> +stream +xڥRMO0+z,v 5zrs= _% 믷lv{7y3o*`=M6[$%P+ +dX ܽ@=D%S25y JqxvT8L}yH0qun*bX qvE)-.ӏvtN̵n4,~;,yduH3ϣL}SOzhӦ,N>&R¬ ILFW{~{xT{MXxt~Of*Cο_o=}*BK8㘹 ,1N68 +endstream +endobj +82 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 964 +>> +stream +xWKoFW쑊[-V/ cvTǀ@~|g_$E6@uY7ofI1k;ńfXj@}ÚP;OB޼mכ}5B?' loi UղNi8R/b +ZmxktJyeToU8VHPMUgMk/qh/#6nT2[Ӟ;h*A eo_N\g 9Źn!Q}JSIGv9 :)v#='aZvpz0Ά#8@5rES+0bkCEŻ٩6눣T49Rv:ky,Pg" +ϯ>=L?7zM+pu޴m}yrsdW1_U`ڃO?׎| +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +91 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 90 0 R +/BaseFont/CQTQCY+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 842 +>> +stream +xڭVMo@+dg;R.ҚJnP)V"Hxƻv8͛^ŋh@,BzcN%"~3PO?.^9!уѕ M3u=(!vF-9 #~ +tY&6xyAAQrˑBCBmXq :q:9̼{RLh1 r +P!CJrA#>$b5=h "HTE3!Y7 {oa/ϥ~rc.Hb0 +. +иp m>A;P̀TT/R-;fs2 RC +xnq*e֫Zhf_'-aRk/5+96R>z6Ⱦȴ>*2*9 #݄g'gJHt? &IkN>LhkwڷUPULXKF6r;riH>k*|}|q}s-gdwrc{K%b|WLRnWSӿ~|i* 8VM5^X\M1ϱZyѢsP|ƞ#a!2qu>\voF`8?/pV| f?Ƞ w=h >G2]phVb/R^]=3=#gf4ECw#U`j=8mH?kuн쑿;٣U=}*O +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xVM0Wdub'H\ڲU{dst%^4P5'&3a 6\Y@@D" $ "O!Jh~Ͼ !HA[9<·vlnPAqorxQsHgU8J~g]|i>HǑhZ6z:6]:V^a!YȈbz@ fDv綠 +(uM:R-!چ>um寅W*" q!9L_ږarwW[VAƤgпP +Ti➮!7診ÔYAѡ }(HO{ôسlM9Pb|B]KЖAzibtw^ +K)8L,j֨$i4jEM&fbg; +endstream +endobj +97 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 537 +>> +stream +xڵVn0+|2krip+=D*mrHb\7ÛǼ"Sj߾%H:EyC$屒( "c~$JJqDyQ+"|E8^Ѭ01Q9@cn@Tlj!܁-K;VUW֡ x2) C) N%# L&W2ᶘvhA]iL)+RnG# +MO\r +r8iˍa=iocP˺{;>4w֠Nll^SgÈEYBg/\։NC--NLnZ[N&8S:βf*_S +endstream +endobj +101 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 275 +>> +stream +xڽRn0+R v<.j=45=Pb),*~})&JkO> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 824 +>> +stream +xڵVKS0WhZY/g&v +XK18!@f $~|W9vmjb0:=$$ (B`RD@%@W/,.0#t<ⱒ3*Y\n*CFC_r T[f5y$qY? ĹvSLa%f6PLZt۟#ea` Z(:جx$еC!$ =~2D}jpr&@L1#̆"Ռx24Ӱh1'LjMhǩBD0k7iLJ .R|pŷ>ψ0%tmJ,~ܐ}0ӣ]"͙X![.G +zr _Н[(m[]~Zw >l[K#1n羾"#g + Cƒmֻ1g\a&Yׯ/Xw~aZ.R.<+Xރҋ`1 gnQEER]hy-HO"GS^o\*^?7 +ʨ`ש<5v9Zʸt1˓(^M\e ^V;Ey2zyi^$gb\.k7a==vZ˺0y/W|1 eI,Z2;fm{nj:y mk +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 1067 +>> +stream +xWKo7WBR/E=6X;Jju]@U ?×}YnNe3曏sˏ"Td`VjSx z>Kn>޾51g˔!L\[(agZ.Nއ\"pYAiYkD g=y8NdB0IXZ` B[D!e0-0Q +^ IL  =;tBxÃG? $CtxuLȺC%LamFQB;&[dL-+0ikkf1 `m;lVabܫh&Z|byk1" 8KJp.$zAwJqr@B +3W3H1nu\&={)E~r8RagBYzҰ-5`[ 23Zj}U H܄b0.0UsPbyÐUɶLQP?nӴRc:<i0~Rb=E8ڣrX**lJ*6%ŌٔBz@1}3䲃Cx {XyGXo=݂:n2˺x'/F>G|K?džj@s}XNh.jiwWwχ/Э`ۭN㳿(kޜ^S_K +&Y +lsV)e$PHh )Ї~ +%TZ>(뾞?&SIRP:EqT6o>ǏVt[TsqY F, age^Q1=^QL^gU %YqIe/-Yt:Fzy 9/m?]tOxxz'?>7y^/$ɧ nnvWSIn}OHϲk=~퇹ͅQ.iBDj{AE*71hU\.ֽF1EbrQ$0R LW,@<]*s +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xڕV0+|lcc)٪=f]))MRTaC[$D3=3HHZ#YDcB4ᄅRw}CaJCu2 y1@tƂxy~}L 4WUWq*5K,mBWP z{K!JY!ڗ[˽)nv=ʰF͡LHw_L*r5_b]TλN{6b Q M15gp;hgIn64AfO) 1:M不LK L 6ܨ6ӋOU&~Sk–d c(m:dbV(Uc1Y=g! j6ͷ. lGhoFJ VmJ:{u{p+~uݠ q)t-$Wn687He*p[,gr/Ԓ9WҨ~eQ}cj \"th;}P'Trj)53~=]>:HT*LS]&<: +endstream +endobj +117 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 575 +>> +stream +xڭVˎ +،a"e6S*"jHd)MdR>`ֱ ㌆ \p=]6$ P IbI4dA"RCrHg"$V]+&yn0ǰ)e<iGno榇)S@u9]j/nFu.}X01zBs׿:Ozoߟ~]9vqUg}[32]4U՝K +K 䬶j<D15(͂VWFbG1Bs$me-qdӓ&[G6{ൣ%b) +sM-鋑 kOzS-p5}mRSo3 +ݣfA)c:4}==ard^ oKW=?y$tr8Uo"x_ :` +endstream +endobj +121 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 426 +>> +stream +xڵTn0+|B&frT[&@" )@rxPM0׽8]0 f4,ן-ֿ*Lֵrf*^#W E> +endstream +endobj +125 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 987 +>> +stream +xڵWKo6W(K3|ȥhh].nͦNIzI"Q7L +)=Kٷ{@ 7fA8øuB/9#| +?[D*RXL~߱ +E()"͖0P*=8P;]ه&[c>Ur"xm8ujȘ9F&D==A k)q,%@.G5W¹d1B) Iu+r ! +ړ+0+" wCZl;Cu U݄$p@dNK{BIBX\ +lSZx%R,R*eG콴k X򲍥!H/wNz]RL|rU[#HleKMeRcc/!t~ǭ4M V1"fnf4yY\)]?*d7_Nػ`Ў z|>GGDM#fae\M7{gg۹~#@jz$7~U~WJn5V)sPCTzs?/xRXUٷ OSŇ3EU[[;NFRk4cy},C(tx+:ÏU؜ ٠V'TT}U,vy\ miIeVdJϩ\ēLSPF9"B4R$Hi? }(HOMF*nO3?n !+?`8ZnF_tƫT)ð R9s4Q_)|PgT8;02dk~Kdʒb<~,͛ ww混oɿnZ/ ~?&E*b7šV`lo78\j +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 276 +>> +stream +xڭRn0.6>)EQRȺ[R0K@$6_椋7o4<>F\ݞx @* IIсхT9Ѕr'^C6kF]}RH +V{CQ3Z@XH!}I^6IYp5mmaVjϧEgK6Ø4Y^mUzzh:7xүjq>G17؞uCD1^#Um;[n3H0dž= m K'ewª +endstream +endobj +133 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 864 +>> +stream +xڥVMs6WHEOB3>Sk0;Ug RTطow.H1[wffh-ZDaE(va;8] ,=@,(@m"+ 8>yXSڲ@eXZ{v +CfRJ) +0$e GJ < ii'9tq7uc M:F+-$*$켴y%Bx?OUxo.vO3=Mlkqq꼺lW}#h=ޮ*y|2u/o?lXqjbg\;3 ^վ}m 7SvL#ܬ·>^I^0> +'eb~/^bK +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1192 +>> +stream +xڵWKo6WhY+\f^Jl wHEH<8}3Cr7"1^m~$AJTT/ *_5Q믛WeeHXR8_![B밣2ԉу@\UI/zYU]QpHU\qDb4GBHʪ=*tL;~~0H)-1fRW#AĊZoP<@HxJ= + pof0a &r<i5>:Аqȏ;U31+Eޯ2p*׍ -RcYQ;ryS{QΆbő8liR=ТD\;Ca -m@j#XV&#kJRrw\Pk-mCy}-Rq~LGPiHؐL0*P1!L2\=q=5ǓeL㵳F{L{BX iH⨓sV{Ε h3-;1!,gޓG# +XQdĂjfmIy"̤ȮIBI\E72eyv~_Q<Nm?y!A6Ze{_pC_[Юp:/sg͖%"SWŠѴ'Gy3XR O9)lcc6kNiIWн78ᔰ]!ah2Dջo9"8"Ԁnȱ@fz(ԉ<ى9 "8O%6>Ah'gć] +Yp.-1t^" +h݄?ûνB(,%0UsLe4=o[W<dJ/]3[f6t:I s$uA—˱UKN1N֙ՌC˽ nAI]]Dsm[Ict&d\W}޾j޿.\2%墁hxc~^ʄLN~!7aKQcݿA +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 279 +>> +stream +xڥRMO0+zCmx=xp- +% 믷RX5.'{뼶#A ƻ=@H$PP$9.ҧ̉O +])w0TC;RK0`G+I=,X`Z  )-yfELn,̫0Gvv#L7]'7i]}œTF17WnzBrn(kZL i0#slڰ4/Og@ D٬O +endstream +endobj +145 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1018 +>> +stream +xWKo7WB)c\:lǕ]T3|ܗ9D]΋3|gkkE@1obYML +`AÇ5 h6oW iXcjv!.6샍<fju0NO6X?"0jfJ[r,3Jjf V(ܿpoэwzޜպ~>bX]*8Ídڔ6hcq@~D9W= g8&Ѐ@#ND{2GzЧWqg.ك.(z!觾\FpCrrgcFeyEg~B^3ryL g]'Ѻ#1!։9M!5&gB`~_tjjɟV.*aoE&qI6bb'cuJfSYw➲DuWnփñDPz's֧7O]m4(_bz&MoV4Xza9_\L^<cI.":ѫ,$&<غZ(ё'0MLԈCkHŧA3!7ZoW5X3G |꾗+' F=./קh+J/ +%'}t:G +zΧ~p<+xīi +&;n 8HG~s1{x B0a +ͳ#a+WcwQvnlj^]O^^>r !@_?B߾@X3 +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 928 +>> +stream +xWKo@+4twDApp-T*?];~7.|3c ]t{ɞ_h&5(֟ ΀6lR)!Ň6ڐLta[R̂wI6*5a0`(fܨ+Cc|&R k"s=*3 R'10yBZfnC$jAA9 .P%e̺)'sB ЦĔT9̧ݰD G)h)LC"V(xU hl Vz "9cFQ} o{]h;X覓SP!*MvRޫ$?2Ʌ#S+xOc4{])cUǜrϲE=rz<v[xoY@U{C,HjI3#4)U¥4!TdIj"y=冣!b.헺ĸWRqɥ%eWC:vˡBԸcΒBecSQ..7v \&?e8F5hmsr[o,vW\E.> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xVˎ0+AJ&6#%ͮJ\J||afUG׏s= +@1B` t<3 c9BH ( _q,V7r2m~ "4)өLf."Ѩ|P!zyC8wB2!hMnTr02:Lv9ʡoހr6Lj"/4g6%߽EOU\e{kY=~oE;8<֌ܤA2h3VɴՉZ.E)QNfBB|eCQjKYX.5 yA5гV1M *W)Pg &*y +.%Ru~?Np'7_dTΕt"Ȼr1s8BƱ4"ʯF*:6~)B5]bK9rt&f0%gzNmL}OD_i;VC#N v+_1;RqŊ,6ȝߖZާc.:nh e@kSg\]LYs +% ; +endstream +endobj +157 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 549 +>> +stream +xVMo0WR(2k#-6r+;THm@iLꏟJk5_HyhL)}|A$HZD +bH+7QPA1`F?o"끱L<zϕ۽#T3WѥJ138(mtA}sb繱laIwaތr}}'ҧYO6h{UhыЁ^SE%e0 v2"pgp$ƑNAy@c4<~7mC+ƾ8Le7Y~yI:v(e6_ʙt385,c|m@ jѳ(BgNLRL +clll2a u'# Z@m['Q#sgi /lG&C2ĘȻx=w^y{GUm.uxoUYN8] P@D_Bï ?5Ɨ$tx$ E;s3-g?SeFPijc3emuo +endstream +endobj +161 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xuQN0{AJvm'H=H8P(:y( Rce Eeg3^ 2bh9TK0o!nN'RHO c!۬L?I<=ɇ%kaL%4{eں;P}Y7!E+Pv(RKoqa9٭+n[\gk2um㫐<5-\8kbs.5P1%s217ߓu +endstream +endobj +165 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 1008 +>> +stream +xWK6W(!çh{ic7[T)gHJnP_D3fd8'$<~&?o*IEPdӻdJN) 7o qL& &*H1,9-*B!vDhtV.d =eTeD1PXrʘ r*`{"(1qάJG`AL|`i&1d%.UfF*uVC'0$SY, T8+#!z[òM8`ʡ6>]3$`Kvpa:`8!;Z`vƶ@d,c`i Hb-fcK +K E5j J4a]jfqtF{.I T.L :8 )vH!+UɅ&$ 9RqJ"I@fxڒLj.U߷\NgEAt#V~9UeS v7LqL5@McT%_氋~]cy؟S?j:[vu+וrT8 +wL}AU +endstream +endobj +169 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 171 +>> +stream +xu;0 w~dp͋"Q6*$V-{ӝY2H!%T0V!)(/pKQjCst^i1@ $m5+YVK-rmOȨ\T֩G3.y[b_| i#) g&*S3'= +endstream +endobj +173 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1042 +>> +stream +xڵWMo6W\r/A=6KMbqݵ@~|j^,Ùy d3~%wŤ"Of5V3Jt^|b>~߼53o\e:0i_) YdZÜ!\mɿ02J@]'bB C!gʾ+˼# a֓cԠDI> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 594 +>> +stream +xڝVM0W 5`)٪=J+EY6B&*;a̛̒ A[/c<I_(}B"3_D(xb٦ȧvMlżGX`F _3|pWА$)h\xOI֙3c|n.^ ~k 쀹@5BC׿n ^ih#I?IМd~ +endstream +endobj +181 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 577 +>> +stream +xڵV0+|Y(5q$.mU"ŠHـTe|l6`V[_&1o3319hw%YޓH_ ɀ $~C6"SRk0FGp) u4D0p{SX786Ys&Sb RLЍ[OjRxR>-ʃUt뺬81[^B{ۤ/ރ0OVqDs2n6J u6PQ,5 = :Вi%]񼴄D$d)VgK/'Dʦҳ + dPAlHҏ+0+9. +endstream +endobj +185 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 395 +>> +stream +xڵTn0+|KCj=4J4!), +D|| 6 i jy3o0p '.r@$ "ɁwjAbyOHrNHo2@0sݖjgCNEmH Jߝ46VY[++&9L'mVm IÚmyn'm1{TѿN9jaIO O ɂ(u*mp|Ez%*4M>0 +]ƍ:5FIaX6jt >¨εqSYyXRZfYZltsr9i: Vg1Qԭ@,\ʓNpuEPѾd"\+ CrX{_# +endstream +endobj +189 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 833 +>> +stream +xڽO0+|La~Vi0m]F@JKJPXiA⏟;eHzq{)"@E}8r7HRPaŀ 4tQ1”2]ˉUc,]N$2`R΅&?-s0^~]9t:9p1B@-biNEofLȆ1pH-4oSV`4@}B̋u 8(a#D`tawPCU+>I4>,L mCS ¤}.f;'bnWTF 9h%dAe!ԘJ6b+zI35>>NJQ]:іщ5ASxjJ@`9u"AXdj"*wik_+=lBBkZ>>" m?Wm1ONf•}Ci/W/]Xz>fjӍ +endstream +endobj +193 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 812 +>> +stream +xVMo0 Wh/orذv؎kvYNҴK:,GY%] -=zlD Ubz&DH4#F!l8 +->\$L1 v97ez<=(#v(|Z7aI2rH0*>8Wtl$8dkKFwJyΫtymUy2Ԉց+h7$Hlm\C%7>B1 dgiJ o6Y +|yx_6 $j {A.fa;X'0D湑+d3ؓZQHbmW i:C9tjh oA^];: "2oLFvvt +XIhO)" 2Wu܁N8=E +BO(W0gn0CNY{dƔB4iЈv̹q&Z]mazQw&M8bZs,f1;לyڔ. +NbP4<0>VKcl>7̓WW> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 1040 +>> +stream +xWKo8QZ4ߔ 䰋MƽjqR] +DJ@>of8 J(E [$B=Ҍ1cL*>-@s~Z5QNrm1 %ʚA>x0К4K{ʫֆ!yNʇã%B¦D G&yޡwL5L4Eщ!K28 ،hwZ P=3) Ҿ~+^lZ'Htc&)a0$31"IHt,xd2A}Fm-ˁFn4th[wb"Y% +2&2;D֡\MwGF#9"V#28Έ>D f 9zjcrw&\D$r$FZ'wԳ j *6!^Opodby; nX@3Bzd8\(g}n̉.]PaSp=t"Fô&&n~ruq&sx)\rjݯ}""ܬ:*Dtr2[+]61 +rsQ87^Ffڧ\\mño2)/&ܯGLAL6t*82O_6 }<utܜN0Beڐ}=r|Z\j~xzaxf4F\s.q@׼o/֨]Nph^ W%_^£D_5LԠɠ~)KSUY5L 9аvlOr,} j +e#(tݯL.nf?jӻ~W_;Op:s)m0o~SbƆ +endstream +endobj +201 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 198 +>> +stream +xuP=0o,Ck[(#L7q0X _ Lwݻ%B +#a' HjwA{IuwgomaJ몎@3F|_ĞG’ )P9aSWi<2ल\zAUîntfUiCԩn~q}„K< XP9ޘ PlO +endstream +endobj +205 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 926 +>> +stream +xڵWMo6W(K~ȡEE{lKW@ɺI6uRw!diB3of 8'7$.?7Ť"߉jBbBTqnfq!y0he:0:B~K`+h U'}rC ˼#Ai͔#w|P/3lδ$w"Jd_Q&5(YR +1ZPb = 4 0dX{&fNr rS3gkKlj=O 6f<̈RZQSh8…QN|P0lzrDPϪP-?Q0졆z1K(YGGF1^`遼Wvo,XHɒ1%CZ5N7>fgU!d`Js°ѫT(BB a&3,:ZuBꡱaD=iRQAjVXT3n#@A@AЙT{iyqWg<ɨS7_,"q#ݶ-/dwwxpJ/f=of)W7eF8Rˋf 7͒<+ J#k:>Rhި֛ë:Z'/ecezW]Zm7f.aYذ$j89S +PV"8G-*gR>aUXN_DhO]'_n:zuurЂÿAMPgzJϟoUb +endstream +endobj +209 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 1051 +>> +stream +xڵVKo7W(!E|)Q/US>v}IJ +yrofI8|$q|ۼUD(&F`Vj)Mv߽_ B^`v?n7L&(nbʯCw"YT09C `{ 0^R$(,(lV<4S&M)CHbWl36!+44@zHii'`#b\&ŪjlZ`  +aW:}a>$I sx1P #e.! :^_`Q^2g@zbe:C` L 3X^^p,:v⽮>f3Wro [1%7dmZN-N&<\P|%|l&|fc8,Tbhڬ= ~Gfv^oS,f2$DM1oº%@^Ȝ㈭n)$J&&şD8O|N?F?aS =|k ioEߴԫA.tJǺƌs ~"G28i8sAW3+gV3_`uuX#^LU|Aҙ)~V s86y{Ƙ(9$j/0ҥx|/L +endstream +endobj +213 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 574 +>> +stream +xڕV0+|1Gʥmj)J(FH$%J||۰YbB{x(mYD"$|qspB}㕋 y.)g0̾aB|qCPD a˶QD(s"*MZ)f1esݩܔezӗ$|羫,a8϶/\>NӾ~XϪ>l!ެznm1ؾ?KpڼQYeÌjYZ:lzD!FALʿuu*W Ma[6jdeL":yd{ 4H%tVSPK,4pOBSLz@r|(iCV5Z6Bjz`F z"()E;xц^4)Fɸ)^  sHI)١jQ>H]]Rw +U24Axgͨʼ:jV h7Axʄ ,V}!BO9Mi*c +e?% +endstream +endobj +217 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xڵVMo0(kb)ծr[5!TM5TC]_7y +h~m\D#'@biDR-|H ʏjScT~+ʝ:D::bo@?v$a ۽'Y?5J-ztMݎ(#4kćkYb o"ҙZU"șٽɻ M.hjBjPh4օa- }2em-A"jWdK7I?%XM[*0Ԝ0Am%V.F&2x$FPM b#BIq:˜.;tTr*2Sbܜ'ꦸA>7!{ospm9> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 396 +>> +stream +xڵTn0+|dK.IzhhBRXRT m2ߌ߼Tܺ1uZwŊ$V Q,} J 8!FµKZH0-RJ?ͷpdI"^=o[(I _S95wmxƴ4md; +^"s8D9NE+vs39 +V2K|GS +m̋PVs_gTH> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 981 +>> +stream +xڭWn6+ ߤ dѢ]6 ;ΌIm)z%u,"yx/€1ԏ_OpR1& +P~, ?/M}^vѐrc +ڧ0!yVYPypYaCc`sBgN#>[''@u*Tm+rG{0 6C.3һ.ցiz@x qi v̶5+ Ծ&61raiٔ$Fxc$ {B 9 Am@kr"|cI)" `\n;JHƥ[s\3φu=Ybm.VfӅ(#5REm cLDShK(2s3hOn'pD2xfe,+tP fJ ҠU][tTTC@3>QbJ* WlzamDKN^aF`_aSSbܞnnxXaxsPMdpxs'q[2/kn"S;PzMؙry۟_i[,UEwg}Dk23FVKfªƁϱ%lAC1kLs.gEdFn!=O?%\ +MXhcET}$exV.?]Ǫ8`*_l!y_,nx{{ӄޤ"CMp^/) *SV}q&Rʦl_99inNV`${[UbY&jz ¿;LHd{P 3Ok3闫'^|-~:Ǝj^w8z<rleI7U?Y9&skz;ZͯTs*j +endstream +endobj +229 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 1219 +>> +stream +xVn7+xp_%$x|Z($ M6{Ɂ1Y{"%O(|~Dvo%b#͈QNB>8[cƸZ}`ƹ[<{#N{]hkT`,$.v:iH֖XDJ@Zߡwgd9.9HOg$,FQsHH +j*hD_GͶhS璍?bvAQֵ~Wc_ԦcB +Y\Isaψ4<(!J5L֑2N$%iL,U;ĉee99 .}'DusH.s=>ׅ3Zȝm%9%Rԓj%X9)3@ˤrIUCRN:|/a:&#.9س\a0,0l۶ž6]0 Qyn grQAX=(:LYp[rf93˜1M(L Mu$LY7EM/M[w81zeU9t&OY}Ei?L'2 +M;֩827C&-4O(7@g sS=D0f 2GO]yq Hvqs‹t:LO)$:ݱ}\c2w{E)f_??=fvt%6+ެY9s_^2 +lJPe#BKWb9KkN$ep̀w啂 + P[XoҦ|J~p(AB%=.;?Ħm;>\Q_\uC*R/}jŽvY8U-CUlXXwD-x[T۞s q&y{?2ꡟG򈢊hx I +'AqtrAY{?-45>q;,^qGx|zO~Bc|ySzs1;L5M OW)O<ͶdqXj®1yܱNIi/ y7k>He3 +Qksx-Z|vufѶzW?SV?N\ +endstream +endobj +233 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 562 +>> +stream +xڝVQ0~߯ \n-R_yeĩCC J mO Ak'> ^h/9J A}A1J?~u0^/ L/ϓ8,v<:8\(!` T8Xo[0q;jI^"F|y\n3_<=m!_{!eD(PJǪ3'>&O!ŦU`"aS}y/ámrvl^.Jurߛ|:3G'j;i'E6uޤxHX֟8ЯIa%zYT,r01 :Mh̃B`JQ1_(2?~7yuAuQ Z#6з鬭 [Ɛ-/2 +4FdZG~ C +)_4cـ82KB¯tA͇'x!M21vmjM %z!m }Q+*ïX$ ,sa>FR?UtU HxN ) ^=hD@V$UupH +endstream +endobj +237 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xڭVM WpY + DʥmjS[hC"Kib%[Օ D#x{<c3Id(Hw &aL49H?D8 ^͏C<_PQLH 0ǰt4Aqz7"w&j3(LE=gl/O;vi(0SMVZ: ~9:xYTi,rOG>FҮE^n,4Z,"g]mtȴZti(ѺP// C æ*̵*{i$fKkD$"ԞH oΐX'Y/-﷗p;yFRǐ"|BPN9l-eBK ݣY?7@oRp׮6TR r)0&fKUioqJb Iנ3pm½}杯~PAM!TUQ@ؙ׊vO3Fk)UtjyJf'p&z&IUU/˘9 +endstream +endobj +241 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 429 +>> +stream +xڵTM0WRr8C8PJn=HC@P폯$[vg͛8| GsH)P]_ѡt6x +F(ܠ-Tr@pȲt[UE^KK?O%HA҉ ثX0 )>C]DT=#!>-2n)MMTYDss C1# бZڈmXکrevED.;eMp yoCotm(#W}{J u2A&]^WEIZ $K^W/_.wk,WxUU]𲙣YVnK"dD?mo? d] .cxWߎ~zӳ˞~F?Pz_B JM,aB, +endstream +endobj +245 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 1185 +>> +stream +xڥWn6+!À7E3E츛&qn&u|H(N2H}^Tw\[jg(ֲBJc>/L.>/pc_v?b\ Xt)!R9dM."P$"| +Vޗp,)M5X + t\ +W`B]& ޖM,`#_O%'V, ՠԙX)HK!R;ea]T'Svggz=ae_yoS٭b&( +o=B&ͧe+qWh{.hhCA'տw)ƒUWhLM7>T|E(p?F@ T)#WO:U`Vj'6' 5;+Lu*}RfUKPp؝Inw>S$&[͔ܸ4NW%H$r)z^o{X] q#9j 3V8u:b'cS=z9ހ}ID*"źhE*q|Gfaͨ}e (PPQЀ(9" 8[Jil&N^M$®fԠL?Z2)N2ٞA P/m}x +@vWџ<6> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 327 +>> +stream +xڵSN@bf:wL[ @@SjB>b p FC3ԙt Vh PhNB+&% 3I@WX$Y 0-*(8%hnobPǨc\8 Gb7MQW>~V,_~\P }ra weC.NҏlTwnۢ.ө[ 7&fTLlxbLWc}Z82 B;)~5Ptr@r'p0ؿ)8P +u)!G +endstream +endobj +253 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 922 +>> +stream +xڥWN@}WCwV},K1HR. +TM%>{׎ ޙ33{ J(E7_>ىDL!Ҍ6Ddz f⌝ 69_|hTR; Xr!q" l\ )-X:#Vx"%MXKFud% v3Nu&0]i2ml|lJR_o|H0D\19x +0NJ'O bMWiR( jgƭ=ikG<:;s.) 4]aV&o.X6 FGA8N:>ģMx_<L'~!.-;$(#lԏT&7(}LJIDaGWL7>\>$.Ӫ)w)M8&kаh7);W-7ztԬWr5oFc2͋p MtkULG ˥=ʖCnYVlQ SF둖>ʼ6S3d}C˲6Dc*,&"ANHG!vorݯxY>=}X&rsH>8by4p./GWa4}%ݩ0*HpTÒUt"XFlX8ϙ#JQyS6#B~y|noWwqf\Vzu5?k|yh# +:m-p&ϖwQ +endstream +endobj +257 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 1328 +>> +stream +xڵWKoFWHYzgmN(Vu k +wArXR[L.;}38㼺˷Ʉn40F&i݇@UWWo|+ǜ6$eʻ*LAguD0g+]IS5¦oT `kֹ{Ex;9wXM(6XSL " jfxșa/j@05U9ЎB[g ~o3sm{Kʹ] s] _M{yBx&wf `+wcrJ6^y2b~fEDŽB{Yٞzf{^NP[j}41 +eBw].t`t* = B)y$s=͌eN.9͙SOa1`/#,p}8›F$O_qToO ҧq;EPRB!׭3$}'}˴N\M/?6czhJ pL?HK9TqՓk`vJ S&)eq8q:Ó&W)zv:Kzѽc.QKR)Qsi):٭9-5uftճRoup|V1R˽0![O팿ɹ`m)tݶ}^5n|~7 ?}~[:7順ɧOW4'YY]oMrWL흦EhL1o%[GMȜ|ʻ)O돁"dr^zS<^b9]%VJ%K'8^ ^ J{?W~} +endstream +endobj +261 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 377 +>> +stream +xڥTo0b^m mÖvHU'hzyx+`B = ]9K@0,9 Ym|S8e:#Qlvxk;ůW @ ґvD.%7 Ln)nf*nŲXF*((@U`jd`KG>XTu*z`aoWWuRik9$d݅~q]fŴw}_Y &r_E8UZmOy y#q썢"[-Xg2N/%$KN?]kGvJz6@D`Q%oqw? +endstream +endobj +265 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 1029 +>> +stream +xVn6+<|SfiJ;M n!H%i +t#Q}J||{:> [Ѳ&߽jAv=c W5ӏ窱*V"] +%}%-1s >|N5$9ր%$B70"ޅ~NzfT+LoBq[M& AmгY B<4AmJL:ܯ)RɉT)ƶQ0 +NHt '&㯖{o +UΜ[UKdw|rFkXAh])Ia õ8r8Hg{Gc}Jp4K*q}4etCoKn0p TcACarak)k7b~ b`* "V@ ma= 7jڽqJyv/(kdZ_SK<LJ M/K8^?~8}?rǯ? #^]S&>֩kсZ9tp "ms~*,u\qhXJ)eG!֤p;YCXSP:5H:'c\Tɥ n/o< + (VH8CUň]}>3`TcXI +{lQ=bx-'rQ\D43橠n&hʊt#Z`=D6+[@srjLZUNO V؄H7 3u7`(-o-\CWҷ\铊1/$.ӳ2h.ϒߙ{RUIARC)඿C{{yt~r~zF)oC@ߛ77SJSCOL:ZV#aE,j\4VQl0)ɔɪP+C?W7#bRO `"~}R:a +endstream +endobj +269 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 218 +>> +stream +xڥP=o07:͝IP;o!n@@IPZNwx +j xJ2YH9ir y!|Kv +܅> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 1119 +>> +stream +xWn#7+xT[C" 9f4LL ؎#ǧtEpYUE +QB)Gn^"&h;ҌQiӊ37.dyF8cJ*xFe($.zXQDjDbgnjPKA\)|)0c|^f fR"Z`>88io)%Ɓ(7}ʕ+p*s" ee83# `Ή|ЗXK!Mhhvg2zxVʕLK~ALJ{ҎJ+ ]1ȥ֗b^F& +jD"ژ66?B36\9mr+iĘ),Ґ25S79o~5 + iZcSi P;R 8QM1FKS)L(ٟ ז'p X0 =9D+qfnVѡ`B,P=F(nTKMSvsi`_?QT<Ht1-oݻI qq7Dqq)01\C}whMw߯Cg FƇx5ˡ{ٷzw׼mەss|w}T oLl +(έ8~T# 42Uxq`]NW`?  +0%Dx + S%ox^* c +ĉz\H!F]Y46g@Ҷo{lWS/Ba&yKzk +9 *q [ɴ؉[Q2Z]}ZDa<κjy&}Ri`t#^8ISPħYHn#ll>J_sl$ӿ+u~?> e~u|:쟟{w!dNK;^H/:uw-.:8al 3ҹ;A52˸DkOjZ`穄{<&~sMu IeY@ sfظh4v{u[KJ[1  +endstream +endobj +277 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 619 +>> +stream +xڥVˎ0+1a)]fؕV24BJJRJ^? $$,"!h O ?J?~u0^8,rN.`a.fX_AROt!NYv]L lam׈GkakP[* 2׸c+e>$C启 -! + aG1oϴE]VPwokEOWmErPf\泹sc볧IYL'vɜï9S2}'OUoǜzN"A-/AW46tHy(Y!A'XN椸 +,4^mB:`*+gYWiM'e3v5!>PycTd3<~Ynפ]al􁆭ףL#| +Q8"e3 FCbo)m\8z4['`motKWW2ضV~mp4RZ+Ld-ݍQۍSk]bߊ L9yˡ7JF)i{Q߰ Y-h9kEK8܄DEH+ +endstream +endobj +281 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 584 +>> +stream +xڵVM0WpY(578R.mUJbPl@TMtb;trAߌ߼?pqTEc._D(/$)I* A)[9"$Q]N1^ΐ"Yot:uOo׏A_ _\_~zG3ױ~DٵGFnWj{O@v;w9HE\ĩ 29<jΧ3D GdXЂ`cdinWKFݾf擩Zp A0`p$\W_W WjmUi",y[ٸMHAPWEF(Wk*An*@["@J(,kHȃ͆2 !O/J_q N"Gy-DDC2|Fh zy9L=ڙrPt07̊x8|ȆbdK=FIqy_ $42M={7 }N8 Jr|*> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 412 +>> +stream +xڵTn0+|B&^H=tICí@B¢J&P\f<~> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 1209 +>> +stream +xWnF+(ӭ1\28cL= f,c\j^WSJ +ѷ{$BoH3bF n1٧ qv?k>DZ_2ADX=EtaQDjD[gNJhpkd&o)Ai6˿,CYDޖ-,v@D!N)1`DY=Ї\!Γ:$L] $̡~=TόfvgD2g@4(޽h[dF`W8$Pa[ݎhFb>'a-#9W9Xu"#IjNl5Erߌ~V*ɘ7ѱ>PcILX#iGЏ#wCzןL /@~Դ7Aٳfe|v +>zǨb|Lmώ*rAYɊzQ-&Cپit`lNCy+4CujUtyȫ&;M(Q(8JQ6i-<@1fNוbl8w+A)P@S\=M&>u vߏHWq Ң.b8 ,_vþyZb hd´FE4yp9nyGkx~wcT)OL\*LSp jdbT{xP,1pi/5X9u_6wL>|5ϥ+6\S$4\T1Z=iSJL#(_BY!vof3M9Y%60cqwCr1?%zaefIDǟ??ԋ8?# ubzuj77-'[V/J?^2c~v۱*.Xs4?fZ3A tns=Pڗ%ƏYQ 5/֡/x{6 9L Vc;?|&|ZݼM0aG3oP+'5MZ` +endstream +endobj +293 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 294 +>> +stream +xڵR=O0!>'H RFB/%AJvPF{wg#J(E%2f DHHpHݿ:DKo Q:IYvƚYUZ%Bڵ㔴y#Ͳ&횾nhN>*4=a/ =gz6oʽw-^[`ukjA|q.'6P׳n< @zf0fմ +endstream +endobj +297 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 1189 +>> +stream +xWKo7WhY! R)c^lו T;$}IA<8}3CI!%gv^3BiY0˶?}§ RCeWn[DцD$?^A "d,:FhdTu;8<)`(K}ou +5L=?B<ފUNcy˱e!K۲-ٿ . g {gse!ƽ90KvF%χ1O1 +JUQ 6~Lp(ݐ.Hnaski%:ys<=$NThWz_SOm?n]4H#dܜ=V`fxWmh nnO ,.2>Re*/R3Citr:Jt_ 87;ϧdږsWحv.^qnu*Nv mu{+nW߷! ,\QD˻Ǘݗ}8\#Z]WgjCZ; ښo߰8C1WJiϟ%ĈEVo*~L/qpul̙K>7X3> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 586 +>> +stream +xڭVQϚ0}߯ ||"&l[G S.c?~8Z4&蹷E'm>iBC@wS? 8]$1w<.~BaJ303JlĉeŔ-Va9> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 563 +>> +stream +xڵV͎0)|YQjq$.mUJQcR6 T`+j{rн>@x${ĈC|.YH =1 yS҅>ܝ60>]ib٥ak]b+Ynd +2kuF􋛦TG>R&nEx)H[IjՕ|f+G +4:.-Y:E' DRbsH,`M#ܥ?LԫOEEPVMSlC1U8M/FDUQBxii0>s6l@}<>ԎQS y +[_8T [$Ⅎ; +߀v!BXBAm&e'..q#ZD4-ֱlq5N<">(0V0z0t`0~t]br%Vdgsqn4U!9jV =?zΝUdcfo[l,ͼ&glW=ĸz,/kaY֢VO42/*𢨋b&y@3 +endstream +endobj +309 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 421 +>> +stream +xڵTn0+|B&6&DKRnĦJx@T/3޼y6F$EHGtFF +͐CM",,{x0~߽gDtwAL5_s}2N42d Z[\tlQBjK-x;-dk:t&#_u%Ɉ_$lIr,4f[ik\BOg*)vL?Vm@F!?vCt]]wJ^֥-duoU(2EXq>O$l&ʖa.ڸen7pҜ eYm%bzWj: +endstream +endobj +313 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +318 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 317 0 R +/BaseFont/EVJXTH+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +319 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +cVU*%ܢ~Uq{aݙQ lxJE +6"匎tk 7y42T+ /g~$c \a8٢ȏ4 +O3Ntwqboۏ+&^BgweXy24d C`ٵJ scSDvnWyE*7]EUʵTR]I k$j~d. +endstream +endobj +320 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 318 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 320 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/XGVGVP+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3986 +/Length3 533 +/Length 4538 +>> +stream +xg8kːH-H:Dm1D'z {g !D I!jt(_}?{_\ͩ',rF8c`PQ܊84q*!h) XR w`=)1 Ba@>E.P @-$+s P7#F`0v,@7KFƹD9c @ 4/1CpwGGms6 H;j98߭ش(߻jx#Fk0n*/4J"h,'_\g xp/)H2Z|3aXgk#($/ߡ|ŁbPRIHWquG)! & SqX텶deY + Ycev:8aʑLdqD:1i|uZ - yۡvOGRUkctM&Ģ;VK<>*ұsDc`aɗ+R6SʞI9ǵE V)X<q 'h|uV7ƣ!u+Q{??H'Og|&˳7%J(kf~!pq炄mST߱^j`(+ S>pnP#j& dVf$ [Q&ӽ._x?gkr+S{Ddqݳ*mculSdleBSeQ`@v +OX~eï./ erd>Oh}o1[̏问oՅY+d)?&3٭,^NБwoE#)*HH gRn22jjkֺ.ԇܩ9yŗ\^l(eomvy"7\zZbX7ٯ{"zK^C$!.ST 4@Ɋ,ib#h]BNNcBQ ?PȸQLEB_[ LSiST;YV#d+7K{9A5ݳ-ب[ݥ79UiTl;V_g - ܽ)OS?KI3k%KǦ&szKc?XV3(u'5=W]዇N=.}КDqPbkfޡ  Cx\!8KO#YJE?RˆHrv9V! y lȤV{u0&Ź[\Է5?GWqU N˥3;ˑŏViq\%YPO `ڧP|~(D*;ZeS'W -q"0/\>nנ&nt\d|giDdz֖Ǥ J k$O/ּX 2*K7 S;-"%闘GZ[4 bX汕ls!A^`y,usq;-< V`nNliUߢqs8yިvF1v< 5H:cXC<1|'$Q1m,҉wQ;Ԑ =d|j}@i԰uM,Ǔ»TGo0e4+S/d烔R),/22

r+9K1X!ݙJ!D'O/tET-E)$%{9Eᤵ¨rdXؚN%}P{ `z%E]}jdDO_ KWiإ֣632;2 @X>% RϮ 8s_ͥœk Rr+OxY[p5akVN(b+%̦|&ʲjϯ|aXHv"W#)4Xkv5lPxлT-*zZkwU$J(?h;ź 1!$m,w3 !ٻ#1&"Ɗ>9l+W{n+^[J|anΰ)W]`(.?XHK!fsn +)qMpqɰ6v{cSu`j9x~=V|GR,ԗnS,I{ W+ a}kR,K:vuOkO3w5+sL(M_-gZBX39^@#%|HA *9KG )) _^{4_-?:\lIl # 2o<&1.GKQBKKB-Fk@DLo#`UA>6V`?'{֩aԗ5/BU,~1Ϛ02L.΁"c<".nnڮFCjY|*8yqIKvJT#2x2({bu.ZͲuZf&RZig^٥ +ZJJta3.~]ށ^57'=$rkY)"$1O?ECoZLfT67ߺ* c67UR1RP##>qfWb=Y ͂{~8wZ)Jm2Og|c}9$<)yOa_KuZLkgBFN07skVg;- #+3E@GyPԮܣu'plLmIVͶVB J;vGⷩr͗D)s%׿n7Opko I#2RSɋ'Ug/+_z,GVB'1 jvsg$!Gi(ǀ:Z"<÷f +>[GALFŌgQPծjR{IQك 7Z/G^iG/RjmZz̛݄]n;An0ؐ+u'tWs5=iEa޷7iꨅ[1C\699W ݆Jx V5Jh#gGWOI[KT߯JPG/3-*V +ҥs Rη0܂0DEJ܁&VDL%EgIƩ OSb> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4273 +/Length3 533 +/Length 4821 +>> +stream +xgXۚ*EZ6%ҋ@ M4 %$B )R7E H w*HwADzU:s\k5g>[F*p7; +# +ȁt ! O bnP BT@`9%%HF:8b@jBA*4EtGdC"0X1HdO!~QRB 8!(J?Qn d?[Oh_\ _B_p7 GS: P=\EGs6h߭ftp߻ rpAIHO 7APOğ:;į *'E0Xgk }$e%Ta^h4/u_A 0T<6w nI}ʖ$#}T.bSNa4[Q\JU1?X`<`wWcDmw6"R>֤7փ[lu3R /kMr g:"i6?*PJ F?נ;&Gʢ&/>h9ͭx%7s]Kn~JRZ5&6'Մ⢜we/Q ufC2+_]U<-\D0P`@>,Ѿ1*O9?,sLge;!8MQvuImT]:3-'=~0S:/zB(SdfVoQٙ]ux\dzLa`.W-m!rl:]$iGk:֙>i!s(kG.n)EzVbnyW5|=ks@01 оSbމ_6aɹ[ؒ0oUiQp}Aa +T`\7''Xk9hKlh< R2y$gMMlX[7+s:|fl2⛎{ ժS"@DcKχY*foTs()|wޙ73R_.'(#|`˿h6`@MP:w߲֊ngyl*IW8,?_r5pL_UN)--M1(ERN^vn +F"o`FvϘgGىWNiZr-藿q6瘞RX F͜2  +$`|j!BU˯}BTX}u/K: QW"gׁ;>qÎ] UV]*9W8 hĝZl"|Tpڤ:z8{qn(qBu7fsƆiKCBvT2#w2A]`e-lEurgWH쮪 EonqNPO-I§-?)p>$Ϛ<hc{p@ٖ&5/x5 1[wI)8~^W sAmCR,+ +Т;$qr H_yMɒ%, 7Ѐ[NRM~1B]s cY6~v ʘß*Y]7NKhC/TS~"D=|[= +F{NUI}"@ӽ /a{V6\פ0jFzWGaZBqm) G˨۩e≮I{:lq?}$2:ĕL}v|7T4"RN/w;)37߱/n7# r}|7ёZ"nЈ^tc0a>tT<x#|o7ԲW,b zdɚvmᥐK&.uzΙ#zN.lzHKFUၰnL<.v!7;(ӑݜxa=̔ +D3O=AAf,N.VX;٬ka w'=lOT7](fpVW4V  jWnu/>'K(Yt+x\kdÇ}͡b8JVɪ x˥S +-: B6pڱbc3FyP 2WR00|`(f~|0D͐{9uv)h`qx 2K<}A\DtSkKfm0ؑy&NgnH~Tp*ѯػn+lkyܕGt$jKQUB3&e+Gz]_h]Zj ob4SMdύ:;Fw1/H7{^> x^EE~,ήWh{W úwk]'E~ghD+#7|"oq,3s>$oGi>_ 8zKP)\TiGW)smaEu6o. БyT0d;0aqh\WLzskE/4i#'N(BlͬS9+|-+8U=/q3@B+gTH]_|%V"3FUJ@7 sDQ XAd}+Q(0+E2CgZX4"dL8ekƫk§; &@}F LFUnQ]iH13kY?[:gyA Ǽ^̨u+aV'4!E&']!:N2\m|TL.$*/=co~$oW0#'+*ZzmRiLZ;49TabW~d̮tdGfʏeaor3r-Pފbuke-䙓`ey(TϮ<7ǻ]ZC?PpfH/hԠ =0`k ۥ#DӫNTa)|]Y~|EPBMQ;Mg&079 j[OO4gzR—Ҫ q!z ,SK%.i(1'aI L89j%Z0u3Q-;ø_5p2~nzQk_p$9lL:44Oezmw'G_ɬ:"fi@ SW|@D<xh!NU:wea)M^|6YVqS]!G[b[4Aw.ZB3{~bcu֑:Q9u4ACQÄSl_ e0ǿ\m!]B6&r)i[.V1k}KZɮ4$מ<}d=ZJacP +sNryNsJ^A9ƍ G1(rF +/?sA@7W(ڙ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/TAMYWG+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ONG뿊j K3lg?qt|_¿?g,l tA G%;;qq W%(Ϭ#ϛw[1CTWf:aZ&"2.c` +}. +|yהUx3(RoȄWo|x]:(63-v>y.rWubmlHqQQa +mT#T[l.4SO n`2Dd}'$Ab,c=cy·m,jvMr)nCBфdu;5ƒ +A |=~_C%3eI߶=vX4pCW$~zTGЖlNxxlM{Y~TY_A }mtWRiRVꇌ<%a{[c=]͒G0C=؆ k叙Rj3&憶B]TzkJ3ˑIԀ}-|4敐=TL +\S^$Å|?y%˫ fFě >v/EI5׸N_(9>pUz*cy%7eVʒEo.Ia/߶W+ |b,'$g%#_)UASO%i6.U+M5R>5ˮhP\8a(C$_[9qȳzpoX)n S~t\Fx8%\/q͐oE HtdEV=g32[dͫ63<2r' + T2 6H)"YnyyU,"\;_1t;B*aBUq" +o^/wrG; MED^zޑY;F\㈱+}/æ 7v:#D`)cc1Mԥ5~tWr :DtzP)7+ݐқ64٢^ͅEX.og%Ƹ5S\gaD[v䄷E%WQA~-#~:s$LLiczgZv^߾R+sI)>WJ줛2289̭>| {N^LmE8PSdd,.19 ;jgm&ʞZsr9-vzu20d@AІZ-#p=`=$7(t‰3Y$<}Qh7 +B9wF.c:Ϣdjs?6m% cly4u |`__UNiT? rhxz}h'&},2zc`. I`b nk9!5Cpߞ@٪9/IMYڎsh,ߖ1b}q?v?qTe)òa_~>ܶ\LDoucD;)iwȚoP1B˥#Y{-4Wu17y̖+xC!|vGD5Q&];b\hC^ic[ƿYӂcV\ 嶃xQNRl^,5+H)nFs,|C"G&nnJϵml˫#UyYI zqfňMA/]}O$d6b6Տr0~F=nˈ8.QY-U>BUi.6oqJ|Ol(07]oLf~9oH@BPeMR^6L4j.7ׄy_{>X`B/;y5^9dCֹ6j}8o)QeWBYCRte턣%0dic)U!s㴡 'M$EvוhRObf?P9ӊ3Q8TjQύxꓝcPha( Y#*?Rg]X`VZx5v]ý%6_NAتi2i-G"/zG1sЏS~!@l룰~pswY鯕z۟^ ;=,3f+e"^&\GK|dYhG|"3y)zʪ`K +f%Ԩ4IX?%[n\b;/6NPg63>Ŋu&钗<++K]L3bFq0+՚~ +ɏ4z{W^J .6߈xQZ[~=y$i2@2UZEetRE;8etAlKmig}j7 8CDNςFI +cJ0&FUszF1p/>ӎs!^ ާ(l4a*v~M5Fpw~?Ix+3獃W/*ߜ\;ϝo b 7كXHљr]^黫Nl6ʞYc$s +]YsdR\ i6Y%. +]Dhӊ^&$Gt-Uf߼efzGu8'BC^0l%BmY)*R)Y]QaG5Az@G޼^r0?eZجsܩCM'5R. RC!7ÁRiD¥v=(97<8X9_0n'U5=H9=yd_ m/M]>:qi_ng^ +-2E Omq F7Yc ْ=[I1rjt$8LO +E򦼐i[\aTw3+ CK[f-{qy9qVyӵm'UZrP82+ kq}$@mҁB "{(y}W\Ԧ=qa1pGqiWͥ b1"Жmj8Ӎq瓙) 7C$GM, $ =[d-: )7 uGNK&cqp> ӎ%xx>M~ıM!/үrˇAH)wr'AV enRAb3>G7|&Y-z[7&BY|{h"E#g쵋!YEwݙiz^)gr0$M]&2#_>~VkFo6;.#o]RΣh zCw5R;W E5HH׭4: ,ԕ̄8P~K09yjW7v6D u@XEOXKZyN"Zd'Ǹ)|$Shf.Es69Em1f^P;w$1! +_;hZ{Gygn#2 +w$Q!0÷pXiK;鐠0Fqsu2}|:Jؐ[v|ȭg<20DI/J + ݀]xgkm񘥒RRQ+ɁǬxto 3O2k8͠heF™Ȕv^~K FzZoXM;O9#ulRYT1``mEE ck.| +!ZAz +3 nG ~GDc`κʡޜ)ل_qo&#Ti11Yծ'e Une1V<\od# L]HRi0#RX\!Ԇ?^lZdfgF۾o(3{m|/YWc0q -ࡨ{Yy߰[I4Vݗvxg{wrE" <W SҼ'%̶@~}'GaY!GN*v2=Ҽ O tPyOR̼kbj*#iW4d +M1BU= JyQϦV;yoY23F"(7t޴>(%[CRS)\Ge9ŚO6avniji驏"qa+Djt7ٯ<~%MR'%f|jQ]uɌF&}XLT6\~WP`kN؊.=wL۸NφMSuo%">'yzkS'r֢Q$fbC:1z\g 'gfp|{uDJNJZluOo)K#Gui +h~!\@vXo9_RgÊ\)~1n94φS1*Ncab"k `:.6F[WԞ#@XotUpӬ҂D#KTr]'Z_I +[oi.6^ NS~QA\p4Ky'Nj~zd _"vk\ڲG:xm4+"`nZ6VK +ѧpSOs t #zVmЕa NIyxi[tTÿonm9E>G_J9*dwP ((ǰ޲~Җn7R"HKLl&2 j4'G^vl)~6b>I[='*L̴CKɎYtlk%Pr!'4ZLy "=Oڔ_"ktEXvIzRd^]wkT!SQK + $+ J_t GJ@[GFzTݞE'V=]# 7\, p|ZW7l+}?"~4{8T}OXttdK+y3ꅆ}lyIIAQS!dqx^XBʅ_':/47RKQզ*^$Q`mhu0~Gڌ\n13W|δ]^2d0o`nҵжQޚc=}En鳮D*d=ߩ/Բ;hgF eޮaUI Z=SRE%wgZ^ ND3F֍ܚ:Wܳ>O$NA&{= +lɜcv G7TDM]"6Yi|Y҉6EԻ9L!|> V>)w\-̱iգl~0TJxw_j6}u9th1-Vvͻ +mfY-ߠ81g5c1šW.9kw&ŸŌ`> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4612 +/Length3 533 +/Length 5158 +>> +stream +xeXT}%őAf(NI``QchDQ[@BR<+)qA0b60{8 + & | usgq\s)h t`,cjnG> GxÁF:aa6 +àn5FM,UD#`@_U ±@;CAp?4(+ՅQX/ag} hOEC({>B0 N +`$5.n0Mz(.jP?7gm dd?2v߸o\X;]{Da!N?'ζtSOxX_hKǵ[yy1g`|$.f]`)P,ʬ%ֹi|E)SdŷRc?4^i#EB~*Tj8Q 5,ˇnq'=J 5ܞק7c꧜u5| qƖ`1CWњe7,jӊ25˜. $HZ8iwtf1xGfl)&\0p5@` DM[7%g0xϽ7խh&/xIxSV s \o-oe \Rkܜ!֣ h֒覑ZۮPn:Qe.:Tl;͖%wăuR}{Si)Y~+V}ȯx=`J CGc_EjH}{=L4DG<*n$9#JR pzV™1 K:<S87LJD#Egc$sv0l!فS(ʽsGΩyO8nx&Ilg#Jp_Jtg uK36ls8͹oWtgΞRÑf̗l.FP˝3(X8MX6ϪG]R)r3nv{!*q7:rknʏ%2ny1Q/SNRs %SWo*ɿ/{4JYp= Qf ʹDd]s|r@ӶbfGE!wUg1cY2o}1]ܘ{Nk9C @zLVSb6R\ +L+ʜ`:5M|JsVW +ǝm" +qcJ Ο0r ۊ3H(W6׶JӧةjX PTf1srp,8 jF1=mgN&,=! Fg =[gtU3Mq쭞㔛y7NwS\T;B7xui\ݚrY[wN;zWd!JKgtx<޼>?EU)'?rQ瑒էҗ=e +aOpsd٠mVWK=-ª #4׾*%h՚xۺm:dPa.6!)~}H° ͶW1%92̋禦C #lLPJ~ 89_(oy-ЪjȀP;ܸޔdߘ+ +~[YHdÍ̹vA xG +iM{oq)bѪgHnCXmTiϾa@:29]Pa_6V5NKXmXDOI$17wC]'倵eP~J"䙟b"t—} }4廉G-DA ިf>Ev4I)N65f01W 2YKm.do؟C]%*>`4+޻e`y-^WD<N=:J.9i2h4 ~ݛY˦4M6 +yx{hYLpbh.By RȚ9Sð:g%zo7;(=rw +mwx$yhi?C 󍒴rY<3t_Zo$J빭WqĎV] / HɃYkEd+/p]O B$O}ҽ3>!ByP%K3 "&${h|bYUYk_޶+3KȡSj]ukm.,+`fii_8~gmr-՗ ڱKrhGUʾa0t,3{\IKTh8[yw ?)*2| RuWKG#ߝA2B5!?u^g<ۢ_OCʺEHX2]6|@pT꫸UpvfP$'X llf+~jA4g[%9xӲ0R)P֜1LOGouvlt'& 襛4UBw M}d+Q *a4W)ڞ6v).| v@71Wwak'7wHE +1UtJ|D tZ^v?R Q+Vށ TNyn35-<~CD8W0]ZVֻ*/9M1=ًŢ փ}3Ԕ#ki`e.\#Gj؄sz!E|I~h~Z)N+9X.8[Xf43;ndxtP?򦵾ٌZicU2_o--x +"}Bt5NM;6Y)4Wy*ô{<kwlR,l)'GrH(jsQpd$%Ʉ'$K>ϫYU}Z>> +̼KZq|dg7*:<]'ɏϔ&6f3U?g gyAg[-sR*Ol e(p`Ig9$K*/e[K%iYv 2prGj&8Hb6,+oo~n4:CKd2+yX;ӲY뵩QE;&O=8RaG%ț>a  zǍ`r"b[P+ A%BblP[\Hx{tƜ;w*BG8B֩%Uɗ +TL-y=ӏ$^ZĈF7ˀAs 7kŒV"!,Ue>v|?@:Z"hAB +r>| TfɬiobMb;|/Wz&sn3Egw;ybEv`߈G $9 '\T ,fڀl0k&3yꐠ_n &CG|Q\|BG;h 2G6D&64ㅽETMkƧNj/`12DϟaM{RI>$ׁ;ћ߮=3!i&: F٣)šݵVV]L]m-XRT!Qr)ӀDZ9eQIVI/-9,ʟA@>%Ylfr?Ԏ~W?IL`(yw,7 zI]Cu ҹt .X@gn#E}Ji/?VѲJd*$jGh_Wǭe蟈X!K|ɸk`M@\C\nѮNBk7>0tRYxAPy?D-`H T +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/EBENTK+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4645 +/Length3 533 +/Length 5199 +>> +stream +xgTSkQ H/J@)^J I@ +4&bC(#]D@:itHΚΗYm֜s><{Y]7SC\8,ALR\Ran# JHP8&TJK.GAVF,8/<͝CaxH̹ Z($_TC 4Gz#H8 ) D Hu!>^,"\@?ID ]Ƹ~s1wsm4a[Aa|H<@Z#SǡFհnh$W +孍C"LQ;FGbG8ܟZZƷ D[PXm!3|5!*MR(wUC;epduOk41=/Ϣ# =o%_բrǃluכ~Mcwc $tNbxbE )|z~o6kc1̹3CI'S]o#u Yc:ڤí ֙$½l( ﻐgfK] + {KfՂj +5 +.c-@aG"'-\:5+t*9>Đ8c/ BYUrDxGo⺳Cm\ J);z,WB0GhWyb2CMo1,O:UI\Bwjv-zmM Okw;R/w"n^Jɾ?\A>nFH]ҰlŤ0 w|Z)oV8doK+ףv ׏\rd:Yddnfc>^`FvVLDkv~?̈́)vARS;dVG}T`fcK{-(ʅwvWCs,v^ґ(/LԏM14o94'\Z(ICYvqk lfrQxYSGl 7Yj_Ӽ_[ x~:|{*~a6aIsGXi 4e]-Aq]'Ĝ/+D]&c^}C\ibtLjRn͛> +Z1t=T*ߪ.?mb-ۇGk4$Rwjƅ*R805Ҥu]2 W7 Wȶ5?8q* c|XEn 聒hZ_fQ#ˮS^5gO?FXUSr=vviR}S#aLs" 3@L30,~lAyZzg{e;Fo1`E\RoF`aziݣб[5@ _*MVD$k6KB-ibv-TBhDmo%AW܍VRZߕ׌(EZ'{%> IGl+Zɽy%PhNde˛ՈOբW;|cMj[Dwa{f97c0@g]-GSvIc3@(q$6(.V'ĻBCw1=5|貆;FLIPPD*CQZPϳ: d*`Xi_,zg5 +z귮G-{ȃF~T}j`M = EM [!(p]Tq(1vAّRLYLeO@b_+qug;$!p,yבL/RǾj*=/aAPk*?͏jBr\z1^S-]$> ~SY2kí.:AJ;D- lFh:@d*/sظуR:3e\-ΛgOedcyR~%UJ)Zi(l3`+7rxMrsTLv:2g!ъ¡k _CMEkQG~3RYQ*fv_\jPr_EdSR,7Rr<]{AVg_gaƯt-|a}daVkK݄T L8ݰwdI=Ά C# %ܦGAՕP $g_.mW ) E=vNì_j|D`_w}S<njf+g{$ϯxj> }5Bn&As_h )җYuȕ )`-+UWÛU%4B,(4{Ez)ܞ?X(>@;kxXP90s*ԙtCnbv.+fFl77H&z<:ihaqp'M*gE&]HP"m-m!̍x-_ށ}0;)R ٻ^ˌ;mdCdDu58v .Wx{XI&ByW"ߘL+!O,d+$׹ Gd 7^2-"5%Q{7[G7 QэiOb!nKmӇ5ˏp OX5KG!%2.8 8wtIcjj3.h < LS?NEd`^rx%p۹'Xo`;rIUbs#&Щ1Y9|DA(%1%of ;)loB(\9-Ջ,&qj::e4,9Y41;FKBז8&|"9Pr;#3KgT9FH4Zo}DQJgMkڶk\s5n86=,@dSM:x̛8'2]ƍ +bƈH1dqȎ,{1L;{{-4%Tu:bF}\{W0Gr]g#WobxX6u$%ؘ/eȳxP쎈9ZףGTxM'U_?)XFNȘt;GysԻ=݃_v{δ +$ZQ^̲ )h(:ZZzv6A&PVjwM+Ggb8? O(ߏ]n6Lq5s[ V5c׈]gQA,.=ˈD7Wf4)$`s!UAEKc 2jS„͔ +pCmj}z[܂l`RŒPtw{ ݩ+Zķ~tq)gք'x}S*RNΠB@poytEgv}pcJS ~/'T`ֲ.LTg-DMOm%IGK[+Y[`(Wt)؉t<ܐ;WJF]˱Ax;#*PC>[^ӿ{@cbY֛XS:',GIJzBM-SCf)p,`wtKj*!+)+,wǕq@YFgk׏*&Pԩf4M [A(z7.ΡEy1I9f)z)~aCWfEۊ3.Y (ح)ooO\Pһ7+vK^%lܜ-tN4!1B ]Zjl^/qÈbtFκf K{P|Iݑ:$ͳI"g=YItleݓ<_TC(e_׽ =d> >( u) 0,Nؾ[Nz#${t6иDh,izV|5g5|V #Bρ nfG,эy.<=m;cVY{719=H766<j;'t/|3.3x0σ OHOXW +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/CSSXYP+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 886 +/Length2 1710 +/Length3 534 +/Length 2349 +>> +stream +xRy<?edk,%o5dXkeRY;,̌p&J +1i%IRIȒJd~s?|>秵 @b, ` h iG l X#b-`0- +!Z0!.p!2 CԄLn,2rӁ]K%`@! @ĄT93,%M .@gI. Ia1|Ra("Kt(7~lNIV'1 :+ lEq.  +g:sItg 8B\r0@%9rdR~!rnYu_PWCwc"A ƈdb)@bI|" +@L +@H2ʐJ+bÖV98"+dBIlI\[1CE7ϐ $:Ie,b(KkZWlmY($@bME8VL&:&h43^Β"M*[LDS $bm{ϡrrN㟐J^YjGRkcPU=n[%LqO)>F=A\]t99h#ss&輒81Zރmէf4T ѫI#̩u҇[/9؇k1%R1l˩e +iۙj+ȿe& %^]wSvr }Kkiٱ[>(%L \R2z~EA 4uM?GP}i<~:ixb=~㧚0B:u*b `JӋ (rJرCf +N0 S)T}͟&;Xqx%2 5 +ߨ܇^6N볦XH_k5{ݷj~x`WZ!/itũ/OӀG VE/n4$_y\ {̬-Q+VP bQcҁīC*3JbE6MͶ??g$8$*$^!IGvtqwJ^6As= +jQYdŠV:Tv +30gNM35s{W[%AWn{Mـi8xV6io%,?+'>aF/J:0];Y{NS7C>(W+zCOyy#ƗI +aw* (ߩ¸/rJIҸ#Dmg]+K +~IL gjҳOO8beZ2>ad3q9ɒᶸ8ae"pS3g왦)=f B[iS5S7>_ +7]*nw9 g3]yccI'?0ZTZ{ 'zUUꎸƜ53<9=~~xmT4(x@"OT{")X`J@ >-ss袢~JsR}B|ze!(tڛmgn}g DKV͈dȲV[k(eTI| Z8βt3a7/4B*pfϐwQDܬmkx\#0 ҚٶN~D~KhV|֜74U`ƺΝ[pβ;'~4ۄ҂ԕtkql2% +Kû== mY{WknqkMe?U%C#~ (4neJm6EL)~q9@$\~y[Ӂ)DX̤'/T.Ӽmٷ&mni3+xG;!P/3r eg90a +d7몊M:7MfaN/,ݻ<#A | ѕ0s]Z ޼'|ԅw =~UFWGSqe,a- +?Z{ nYy%wY Co4 Ab{a +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/PFTUWD+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 1752 +/Length3 533 +/Length 2293 +>> +stream +xk8DZF2(#3 `r% K2f^ c13T4Q!B2m-b"*CQRjMZum_}!cU`Cngu`PQ\/Om{=pdoLAU .K,yLR_\],I')PwJj? )>y62sK{T.[SK(_a,笡(ϖiїG,r% +Ćez>zKMn -R~NZ"{c+l|m˥6R7Qir57E> $/vB_*ˇh.i> +P4z~/!NvដBTiٍU{R6egߑ?3x`NSZ)>꼅[QW>ksuy"UCk#UFw?USLl ^jih? r䣈OYND\M"n*&y|L2<͗[r[7S˯ V!$m'̼#GDX2Y^dx!-`j!G`NHE؞ځuT +?)`$uF +[+v{\ww5hgTryrkKV+޹-vmjb-^-Ֆomv3rfG/͒a"gLH>y ѽVL:ht*[8 0':,dt㊴EKrԻ HtyZ5'窿Os{"=GB8ğ8#/6{(=9jN1_Qo3ꨭAY;'XɶƜ+(;U٭VЊ) vL4Wx^Uf쾾[QILܛ*LoLaf,~Rl3!'/h+Ѣ B%g䏁7|!T&>!5+?K{A|@6wZxX6fR!ZW$%~OxᓱfVcLۦP$AꈊQp^WwM*(pbf #EY6tm2'cbP]瓡Z%+1'c9Cɢ!C~ǹN> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1671 +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ !S U[PZZZ4<8Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?"'Yـ̼ʂTr0SQfB!P!Xh%d+$$0]_QkdkiLjf +榵 +C2 KS=]L , L.-*J+'aL`(V&s͞##5ˁJNaz&CIMXǞ;w\[Žg40њ3;nY($ǝg0eXWҞ1Jԗ]aKuz]XU- ݣ%6 t6,`N|+Kgdq;)yAWpq3z]K&j؟u~x?˰ *wO٭\vwv%|3:YY}|v߿Xd?/ya^:-w^fys[Ӟ|g;} +[ף~m7 {?hr=<ɩ qKݮ<:w}Լ8wÛK3?'lqf>H~I9qŧϞM69}o=[,_JqUl9Y&˩H)n;AۍvCNǏy2`R\=#cGeIC6Xp0zm%2pz,+`-4rˇ6I7o|qmG/gl\_}ªzmSV=(|5p9}T= +SvnQ[).46p0, HIM,*M, +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/TAMMEO+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 40 0 R +/Flags 4 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2182 +/Length3 533 +/Length 2721 +>> +stream +xy<E!-28ˈ4d/3Mfa%6(ٲJXDD, T-C9u;}y>(8`4MЊBiµH`s*(d , Dp8`.rR:w@վSH%dI[!8,PpFS"pKS ^ <G|@?ɖKJ@jT(2A_=ek5p?7T?[X1MŒD?t +) R4R?Z]hhO&ҰDΔG!Ȋ +4 K A2G}C>bF[v5,L;B+[ g5*!i`-ױֲ$(xаd"%Tjw07GIɸ 9XS+ty}Kb~e*%)yA9ǟշmT=A9ߦNX{fA6VXA[k8md>*;f +whrzB`^v~KXu>iB/4_m0TnG  Xeݱ.-YЀ/\󟢒Rݘ_[Mnʽ/Vx+%A#HRgNW!Mw t46M*['1W$S. 6KZ5f{@(>9*FX4\W>z]ϼ5>^۳l[콐LQ+W)Nn; JyՈ+Z +<˹t/^WOY͹GQx겑.l=D'LzҤܔvM^<y1HZP̻2+ZqLI#TFĬƷ]Vt}6h)Z|:1VgPfH9'iC u[H<3hLsé2)\wLk&yog]7\ߦ2x3㓛/}2m'M".?׍-=Qzdʌt;2V]}nrWM*}1q gzwئ*isヤ,-8{:?]m}|4[FsW0 ϟ/(np9pX$hXE34ìL&?VCEw F[vYPV:KzEMuva=ArS* +w#dЂM\L#0 g*ìX4ODAԗsR oCJ "ly쪑1U,zH=]>?h-=Q4<1~ ~4}+DJ@ ]p:+2{5UfṇⴘGVuvbgInFwDbZC:8$xI?q6iCVMQ7>f<80g9ZsiFp?~lX2 iDip*%cw;W×&MmKC!aDb4 + K@D +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/RJRYYM+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1103 +/Length3 533 +/Length 1639 +>> +stream +xSU uLOJu+53Rp4W2 TURK2\KR --Js ̭LKU9(3=DAY\17(391O7$#5hHrbBp~rfjIcNBHKBPjqjQYjBJfrBRjzf>Uyi +TYjQ1] +`j*ݙSƥ/]膻%悌tbnfN%TA~nAiIjo~JjQT|SS2Kse=Ks2sRt M L n)% +i9ũ`Լt H_mHB$3JB* R |CFE +z@@cŢY暗\XtS~EA-мTOS sc #hriQQj^ 8- eC(5"5iMyy= eye~/ț1gFɡ&+Uq)Ңcs}`b <*1 7NĤgw-E-$xUaë,-Yv可UEӽDv4N;vR>ͯkO/LΓq™c}˲Y.'iKh:$EQfqQ %f(qRqR?n q;U^}Q;gw3u*;a@:"-f,O6}vBχyݿ< V#x|+?4U#+߳ ZU;| =ed_ lV3_-t*Ǧ)._=_bg7=])u[nZpmLvӓ^l=]|rA26eU߿D ǀB5j0 9'5$?7( 5uxJ +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IAEDAF+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw3AXFv!˘1̢19I!K%'%d߷$EB#L@H&`@d" LB$P[: 2C`@6|؀ #$P$ L&Ӡ`Ҽ2)V~*{$:@/%}o?p?7\?c)K>JA2A@g#'$?wM +h@ #P,LE?tFdo~?8TM N`OvZ4]? aQ#QMAf.83\4H'iހ-@#А +D05uDiꈋlƀ:yC%2 ;_yoH pTȕB-÷qHi[Tv\GKLg>R|Q寸j7>6hql[GZ`@Hv;f}/ D / K3>Mwz*iS)vE-֒/-%^(gw ƗtNJڊV*6 ۚguY"7MR60qK-Hk;"i 2QX 1!?2T9=S};W(E$5<,2iA!)_xx*2k:/]@7iSK3KIP~!2PuEo)s{Fjx50nNr=M5.ژέ<S0a$?bދ6m4H/\@:%t-Vf*m_߬S'5]QB ڏMSo̮L`q{(h8au&o4puz^2rnؾH 4XRDqzNbZU['= 5r48Qts|11VLj9r]xizAdгOǹ?V'LQ=/$ϙq vlEhU$RS0=WO |}握ZWUxsajѫ$.3w5Ğ8J $do69 +e6=ZڍӍն%cKiFxîb.sNlRh;&эmʍ$>(ss {t71 \^__-~+w8r!ʴǵ]'4L+qx >ZzvʁG~s97.wSh^/ˢNwźB≑NwC  +{mvg_sB^TFXAy#eEXs;Jx~z2%WU턀UuoL|y7W{kݶ1H5 +<sJh`Og#jпrL $/_V2{>JmP;"TN 0+w~QN1zRnwʪRjnJHes3ˮXУGNeseڠ#L.FMfXC,j"} uQ$t|Ϯ|߾ +Uq a꬚Иak>#g"ܧMgj37 l^j X!ͯ"lGuQ}IruZ'd[dK[~E Nآjf^{]#ӎԙwM7خJV#)۴ tYթՠapn|'s8M[]Tk~!|@܈xs +*5 iu.4}搠n>31UȻ>hv|ڢd2x]B:# +7<N=[ڥ92e3q@Or#i!gsgϏ~H|P;qVE/ o +`.7=tQǘx7>yS&-r]y3*49{Ӈ^i;GNX2SO}wUT-A{tj򰄕C(LPY230L^6_ +t ׳jBUP-̘hL1b4Zp\Ez.hw!{BLHVw87V3 aɸ؊G,o_[ă8mߺ_b/ +/]**pq? =VhxIiۂOrZwc"[*K0S>-/fqDLy{Y ڤ9;GB1,^zO> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMYf$8_wymVF-\/׌Gc+|,',1'Ts=7 {AfrYyً_]5ZQves< X+ _IAxa}ltZm/Ty!Deɶ+VԨE ) dt%&4ⲣ'Y䮉/DR~лm_>.J.y־C6XU Ϯn\Su`]372;4#{ӿk^e<™1[k2.rDr(EEN +n9_^| ?>>g+.]{uў{'?]֟ײwM~8xhsSnhjC=%MȡU Gfnpa2, +_^@BD&A#2Cu +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/RKAXVR+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10301 +/Length3 533 +/Length 10859 +>> +stream +xUTѶq܃q qwܝl4wwwIpkpws=~o=V=Ԝ}5kꡨɿ2ٛ휘ؘ +jjl6fVV1$jjqN `D DB;C,,tPqDmA+Sc;% @ + Tq#@̘fVN?dJ9;gq')=/; dĢhw>_c ׿K9(ouc[+P:8; {3ߥ)̬m*dlce*jga+e(e2jdj p8ٙ;EE^TKCU[9;?g?+7.yoIڙڛYYŤ!fTbbnL& ;' 9d%<fM!?os@ 7) 2+a9 ]Kq:r^sW5J5 'V1_9o# d{LtLdE#fdFprKڃ7SK-]XҖ*S41q ە%ܕaAn_y`$QȝЎR'e㈩KFz6BgF{ɐ,,xd0# RjL^RytgP?(;l.$sc'BkФǒ_N%¼h!{UoI/u$;f6TW4z|$Ep-[Mp>vmS_5CYՍgv,]aXnM9[C07flTZFSz^j3Ź&jcDQ À'va0|ƚ` 1KRP3- lvO⣊=6lpPY"`ʪu8?S +;;r931 t-) ʛȷBc,1{꩗ A xmוS#(+l:3\ =]@Հ`VܝNdŇm(ܐ{Ŷc8w2uX9WU,~^U![oX{X8) +.X%{E:O s [SHxmԬV~St$շpjOFaya kYt}(¦bM<سLILYE +$dIKt n Sfd6ZcͤۅOiRiF_ܿ㕦bH8! jŭ'``^HRferAe'+ŷ h|'/QUXs V{xQ`lǁXgD2T]F*/Ī=k4P3Ի" +4 +A:*䗦;6?/}oT&`aggT!^T zIqm9OC_{rC*pЎ‚B}(z(>4XkS;sfH Q}p˄*,:+$`̤EEx1KB1ލBαT  4Zbƞp +WD==)4]I}IACCU"EmRES(6H/GU@"Ćƭ̈́V)dm4H\d xi,קPP{y ٘/=$19E~4kXoQŧlΟF,YFI̓wJ@y=p''4FGd4tw_0h^յKyMʞYZee!~tEG{*y@p-*OlK?aPLYܙylP#Br-ƮZh<@LZ6 #:=O I@w TKLMi8[ĆToKd*d%qVNO8U^{>~[܊4^ؘ> [2xaK%ܪKf/4ᛅr(b*llS>K˛0 >$4fh.(ExwhAHGqһ/C7Fᬺ mޠ]8nsH3]4Xi>zi[6vl@#R '@+GbGy@ `WFȼ!/h +k[vV R-BP/!E8ja޽9Vj>X#9$t: r%:y;m-ƞH/pFY:I#Aď,;WWs^*tЊ=&>[޻SQ8=cPҒMA +\Rc,ڳ&p Yc$4G婀i`-H &F=DGA!9:_ K-A]2wo c]rpl'#_1d&|&b:DCnqq~ <ۺZ轱PcD!Q5KlC1Јf]*sĿK@/)"FuZ_ T<HZtXTG">$ZHr+}Fb3N_T`H|0\q;<&hB`f٩C'2Av[T"T6\n TK1fLN399mnnqgCGz*0aע+P)3dtSuy _(' wV<}{K`pÄROXWwV ].6umA +/ 9Ԟώ/+):^MMSBʭw-dZ}1q_L,-U9';5d.`毲ب9'6D& ! h7,ˆE"~WZ-EW3^ik_l1vÉ/M ?,`kArNqFt5 ڢּIf2??:E78$qBb\7[AsYo7 rXmV MoVy'-d3( gg.U;K/V' nzo٘/W7䵗X?HlnYZSŒ2tb?2 Ѩ`< E'GnKn'RjG`Ќ{V+ۺH?|Z%?)~bN;xJZ񲗥|]("1=j4"*jtVlgڪpYU&N"ÉzDe: )=p$ 'n=L+36#RLŵkĶduS?Yۗ 5_uޮ5? *܌Un`{h<G*(uz%'Z'T]  + 0sh=xQpR2CJy$h 㤓K +[?4rJ3І'K<6R'>K)T@umFif)mkxޤ徢etfQZD<>^ԃ#fB&^dCfM%z{mo[mWV"sISp +q%2s(\1EN9ч^hO*'XM6(4VLG>~Wʊ\4o~6,''a?;/RfPHpRuj.5xҤ;-}"3j؊njԞUqW^yLp Ӭ?]Ӝ a8`UXF CT$(=q0t> VQ qX6#4] ˝n_tĞI |%͕뾄 h>=mP2-B*\"90{#ȶV% q{Ah!.16ʞJℽI^wfnX ekv0n]nГ',3a4zgNAdm3fЊo6̡ZRz]9ӳ&~BIg?0 0O{j~AԿ3ރ[y]ф^QsS +ͣ:%_;~C)`ԠFeзm!eVOi3A3z -!sr54]QgMTB5+ VY&y%3GظJYqqȂO?0ͭ'P(kzM3 |Zo BptJO'6d:."`Pr8Z@:3q1ϚfS(^ܯ:@ҘMV:1(Ϙ{n˪|nU9NiKokB-5pY9P4 qlc?eK\:9Y.Xz3¦a˕ "ȹF$7,81ΣtB2VRlDGR.>-=tJ*OuSF*:$*6Rŧ YBUZIlN:v&@sx9G[ b" yna&WPevw՞8Oo!YO :=d'v<2axZ}iן2Rn̹5\nkdӈԯ|[:Li,b RYt)]Q$6Gz$Nsip Of+#k(`.wg |ǩ 2:YJBR%mSуr` RMhfP _}c>TaO]aKSNxNw)"fԽoE<.GB`PQET e 4ػ6PYiA.4~JM`褤hOtw tΜ n?sZ64z?'9HȨnG21!Ҧ-?UOQ D@&JK[tlIL"M3la nF_-[3GRm|r#V@KD`rFV%sMq]5P$XRBquVtE "KIӧ,r \CͶr"8a1RW^3Ud Mpwn/0a)Kdwék9Iy՜D6̘ҟ8e{Q5)(<9J0!?a!kVf$`QRXuǯ1f+d (,[Kۜ~NxOǐ[r0Ek/[^Ų>:氮;K5$n2JRaQ Qp:,#ѥ'kŜ/FbЦv@~Q@@Ft r?jC6C.zZL,z^7QVVhZ}Yԟ"< pqĎ}#|381y -vX{}$Vy-q(3I1OơW.L orD4/)PyjcƱWF EXdf!T ?ù}ޟwzԞ̉\Ú*4;(y J7sN/{ zEC(<`C8M/tdȪ/KEmpPw + 3l@d!]"9{襮ye_Γo[}x pLt |!`A9L|a o nDqH$ܨh?3,6`+R9 IM"6FF6o1D'O'Hcڌ0lI :6}$Hc%9a,i9 6Iݫx)s'qN{c~] lRg 昮 :Vr=_ahB(48*t}:餠} =H'B15,0F,c=+opw~Ɗa+}VpYͬ,NnRRÆucWNv#kd,Wk~s|Qar)^!H THR"uiM +W&P>gyh|AE``l(qmru5cj3i[' |qC7vqSv%{ŜCxy6\ ``,EZ[t:8q'e-8T3*A%9ZcE~ښO59R +g.).k bSn%aģ|&%x"Y%AbQFg:(zS pgH|jw+'ρdA@>k7B++dLheh獆 +<-MѮnzZA嵪kDIxE">fV9l[U(0|.v+m9 s[5 t~w.hrfE>đeE$*5kt ހ& eBc#S$M*%Vry7LL T#4Cgr̯܎ MkFdM+8l T $'mAGH2"(3ЗlW ##Hb_M}FuƄaJ2"H7/t2Z?~h+tVN ,СT4Gy^W1TpL$UvO8>NJܩ}),>iw| XFmxoᏞp؇tgTgq:s^; )97WuB?cW|K@lNpUfqO%0D[H +3=!Ci8"AQÓ, ]Wކ&U7אHnM{BcJCͅ+ +uJaDԊfc˺g|4O +LgY`jSŰf!O*p(>[)[ugr[9֝r yw'Si +O2cD"4M\]qC>]^P톄@E %ph]Zmtۗ+`SkͯmEZ5xPSZt=y!Vi ƎI"><-H$h voo 5"&o+ZܧNW71W=g奞tusϦ^:@PR`DǙ| "ݢlUXÕK^ImɉBl\OQU +ç46B=kE< p ,1Dۦ]v +aF^(Ә8oyK^ ˻}d"FcAaYPxzNԓό=n)?Um oi1[n~w2?T=2j1`iv_޸1 +VsWCK]DUU4Kz>$A/~4GPPPՔCAzvz@Oڀ!Nk$_ +endstream +endobj +90 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/CQTQCY+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 89 0 R +/Flags 68 +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D90$9Rɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +317 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/EVJXTH+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 316 0 R +/Flags 68 +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O N9}eC]EؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b` +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185349-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 322 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 322 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 322 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 322 0 R +>> +endobj +322 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 52 0 R] +/Parent 321 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +323 0 obj +<< +/Type/Pages +/Count 4 +/Kids[67 0 R 71 0 R 75 0 R 79 0 R] +/Parent 321 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +324 0 obj +<< +/Type/Pages +/Count 4 +/Kids[83 0 R 87 0 R 94 0 R 98 0 R] +/Parent 321 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +325 0 obj +<< +/Type/Pages +/Count 4 +/Kids[102 0 R 106 0 R 110 0 R 114 0 R] +/Parent 321 0 R +>> +endobj +321 0 obj +<< +/Type/Pages +/Count 16 +/Kids[322 0 R 323 0 R 324 0 R 325 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +327 0 obj +<< +/Type/Pages +/Count 4 +/Kids[118 0 R 122 0 R 126 0 R 130 0 R] +/Parent 326 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +328 0 obj +<< +/Type/Pages +/Count 4 +/Kids[134 0 R 138 0 R 142 0 R 146 0 R] +/Parent 326 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +329 0 obj +<< +/Type/Pages +/Count 4 +/Kids[150 0 R 154 0 R 158 0 R 162 0 R] +/Parent 326 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +331 0 obj +<< +/Type/Pages +/Count 2 +/Kids[178 0 R 182 0 R] +/Parent 330 0 R +>> +endobj +330 0 obj +<< +/Type/Pages +/Count 5 +/Kids[166 0 R 170 0 R 174 0 R 331 0 R] +/Parent 326 0 R +>> +endobj +326 0 obj +<< +/Type/Pages +/Count 17 +/Kids[327 0 R 328 0 R 329 0 R 330 0 R] +/Parent 3 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +333 0 obj +<< +/Type/Pages +/Count 4 +/Kids[186 0 R 190 0 R 194 0 R 198 0 R] +/Parent 332 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +334 0 obj +<< +/Type/Pages +/Count 4 +/Kids[202 0 R 206 0 R 210 0 R 214 0 R] +/Parent 332 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +335 0 obj +<< +/Type/Pages +/Count 4 +/Kids[218 0 R 222 0 R 226 0 R 230 0 R] +/Parent 332 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +336 0 obj +<< +/Type/Pages +/Count 4 +/Kids[234 0 R 238 0 R 242 0 R 246 0 R] +/Parent 332 0 R +>> +endobj +332 0 obj +<< +/Type/Pages +/Count 16 +/Kids[333 0 R 334 0 R 335 0 R 336 0 R] +/Parent 3 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +338 0 obj +<< +/Type/Pages +/Count 4 +/Kids[250 0 R 254 0 R 258 0 R 262 0 R] +/Parent 337 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +339 0 obj +<< +/Type/Pages +/Count 4 +/Kids[266 0 R 270 0 R 274 0 R 278 0 R] +/Parent 337 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +340 0 obj +<< +/Type/Pages +/Count 4 +/Kids[282 0 R 286 0 R 290 0 R 294 0 R] +/Parent 337 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 319 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +342 0 obj +<< +/Type/Pages +/Count 2 +/Kids[310 0 R 314 0 R] +/Parent 341 0 R +>> +endobj +341 0 obj +<< +/Type/Pages +/Count 5 +/Kids[298 0 R 302 0 R 306 0 R 342 0 R] +/Parent 337 0 R +>> +endobj +337 0 obj +<< +/Type/Pages +/Count 17 +/Kids[338 0 R 339 0 R 340 0 R 341 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 66 +/Kids[321 0 R 326 0 R 332 0 R 337 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +343 0 obj +<< +>> +endobj +344 0 obj +null +endobj +345 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 343 0 R +/Threads 344 0 R +/Names 345 0 R +>> +endobj +xref +0 346 +0000000000 65535 f +0000147560 00000 n +0000157299 00000 n +0000156944 00000 n +0000157149 00000 n +0000147724 00000 n +0000004048 00000 n +0000000009 00000 n +0000080116 00000 n +0000079932 00000 n +0000000913 00000 n +0000084953 00000 n +0000084767 00000 n +0000001906 00000 n +0000090076 00000 n +0000089888 00000 n +0000002823 00000 n +0000157049 00000 n +0000003740 00000 n +0000157099 00000 n +0000003993 00000 n +0000147827 00000 n +0000014700 00000 n +0000099888 00000 n +0000099699 00000 n +0000004109 00000 n +0000105350 00000 n +0000105160 00000 n +0000005055 00000 n +0000110852 00000 n +0000110663 00000 n +0000005991 00000 n +0000006967 00000 n +0000113509 00000 n +0000113315 00000 n +0000007921 00000 n +0000008867 00000 n +0000116111 00000 n +0000115916 00000 n +0000010483 00000 n +0000118082 00000 n +0000117896 00000 n +0000011434 00000 n +0000121108 00000 n +0000120917 00000 n +0000012398 00000 n +0000013393 00000 n +0000014589 00000 n +0000147932 00000 n +0000015756 00000 n +0000014762 00000 n +0000015656 00000 n +0000148037 00000 n +0000021476 00000 n +0000123055 00000 n +0000122861 00000 n +0000015818 00000 n +0000016789 00000 n +0000126610 00000 n +0000126415 00000 n +0000017696 00000 n +0000018678 00000 n +0000129267 00000 n +0000129081 00000 n +0000019655 00000 n +0000020400 00000 n +0000021352 00000 n +0000148236 00000 n +0000021895 00000 n +0000021538 00000 n +0000021850 00000 n +0000148341 00000 n +0000022910 00000 n +0000021957 00000 n +0000022786 00000 n +0000148446 00000 n +0000024211 00000 n +0000022972 00000 n +0000024087 00000 n +0000148551 00000 n +0000024676 00000 n +0000024273 00000 n +0000024631 00000 n +0000148751 00000 n +0000025911 00000 n +0000024738 00000 n +0000025775 00000 n +0000148856 00000 n +0000028034 00000 n +0000140436 00000 n +0000140242 00000 n +0000025973 00000 n +0000026983 00000 n +0000027898 00000 n +0000148961 00000 n +0000028790 00000 n +0000028096 00000 n +0000028745 00000 n +0000149066 00000 n +0000029509 00000 n +0000028852 00000 n +0000029463 00000 n +0000149267 00000 n +0000029967 00000 n +0000029572 00000 n +0000029921 00000 n +0000149375 00000 n +0000031054 00000 n +0000030031 00000 n +0000030929 00000 n +0000149483 00000 n +0000032397 00000 n +0000031118 00000 n +0000032260 00000 n +0000149591 00000 n +0000033147 00000 n +0000032461 00000 n +0000033101 00000 n +0000149896 00000 n +0000033906 00000 n +0000033211 00000 n +0000033860 00000 n +0000150004 00000 n +0000034516 00000 n +0000033970 00000 n +0000034470 00000 n +0000150112 00000 n +0000035766 00000 n +0000034580 00000 n +0000035641 00000 n +0000150220 00000 n +0000036226 00000 n +0000035830 00000 n +0000036180 00000 n +0000150427 00000 n +0000037365 00000 n +0000036290 00000 n +0000037228 00000 n +0000150535 00000 n +0000038833 00000 n +0000037429 00000 n +0000038696 00000 n +0000150643 00000 n +0000039296 00000 n +0000038897 00000 n +0000039250 00000 n +0000150751 00000 n +0000040590 00000 n +0000039360 00000 n +0000040453 00000 n +0000150958 00000 n +0000041793 00000 n +0000040654 00000 n +0000041656 00000 n +0000151066 00000 n +0000042543 00000 n +0000041857 00000 n +0000042497 00000 n +0000151174 00000 n +0000043276 00000 n +0000042607 00000 n +0000043230 00000 n +0000151282 00000 n +0000043724 00000 n +0000043340 00000 n +0000043678 00000 n +0000151489 00000 n +0000044996 00000 n +0000043788 00000 n +0000044871 00000 n +0000151597 00000 n +0000045351 00000 n +0000045060 00000 n +0000045305 00000 n +0000151705 00000 n +0000046669 00000 n +0000045415 00000 n +0000046532 00000 n +0000151813 00000 n +0000047447 00000 n +0000046733 00000 n +0000047401 00000 n +0000151921 00000 n +0000048208 00000 n +0000047511 00000 n +0000048162 00000 n +0000152309 00000 n +0000048787 00000 n +0000048272 00000 n +0000048741 00000 n +0000152417 00000 n +0000049906 00000 n +0000048851 00000 n +0000049758 00000 n +0000152525 00000 n +0000051004 00000 n +0000049970 00000 n +0000050856 00000 n +0000152633 00000 n +0000052331 00000 n +0000051068 00000 n +0000052183 00000 n +0000152840 00000 n +0000052713 00000 n +0000052395 00000 n +0000052667 00000 n +0000152948 00000 n +0000053925 00000 n +0000052777 00000 n +0000053777 00000 n +0000153056 00000 n +0000055275 00000 n +0000053989 00000 n +0000055115 00000 n +0000153164 00000 n +0000056033 00000 n +0000055339 00000 n +0000055987 00000 n +0000153371 00000 n +0000056752 00000 n +0000056097 00000 n +0000056706 00000 n +0000153479 00000 n +0000057332 00000 n +0000056816 00000 n +0000057286 00000 n +0000153587 00000 n +0000058599 00000 n +0000057396 00000 n +0000058451 00000 n +0000153695 00000 n +0000060117 00000 n +0000058663 00000 n +0000059957 00000 n +0000153902 00000 n +0000060863 00000 n +0000060181 00000 n +0000060817 00000 n +0000154010 00000 n +0000061616 00000 n +0000060927 00000 n +0000061570 00000 n +0000154118 00000 n +0000062229 00000 n +0000061680 00000 n +0000062183 00000 n +0000154226 00000 n +0000063701 00000 n +0000062293 00000 n +0000063553 00000 n +0000154531 00000 n +0000064212 00000 n +0000063765 00000 n +0000064166 00000 n +0000154639 00000 n +0000065420 00000 n +0000064276 00000 n +0000065272 00000 n +0000154747 00000 n +0000067035 00000 n +0000065484 00000 n +0000066887 00000 n +0000154855 00000 n +0000067596 00000 n +0000067099 00000 n +0000067550 00000 n +0000155062 00000 n +0000068912 00000 n +0000067660 00000 n +0000068764 00000 n +0000155170 00000 n +0000069314 00000 n +0000068976 00000 n +0000069268 00000 n +0000155278 00000 n +0000070732 00000 n +0000069378 00000 n +0000070572 00000 n +0000155386 00000 n +0000071535 00000 n +0000070796 00000 n +0000071489 00000 n +0000155593 00000 n +0000072303 00000 n +0000071599 00000 n +0000072257 00000 n +0000155701 00000 n +0000072899 00000 n +0000072367 00000 n +0000072853 00000 n +0000155809 00000 n +0000074395 00000 n +0000072963 00000 n +0000074247 00000 n +0000155917 00000 n +0000074873 00000 n +0000074459 00000 n +0000074827 00000 n +0000156124 00000 n +0000076361 00000 n +0000074937 00000 n +0000076201 00000 n +0000156232 00000 n +0000077131 00000 n +0000076425 00000 n +0000077085 00000 n +0000156340 00000 n +0000077878 00000 n +0000077195 00000 n +0000077832 00000 n +0000156448 00000 n +0000078483 00000 n +0000077942 00000 n +0000078437 00000 n +0000156556 00000 n +0000079868 00000 n +0000141853 00000 n +0000141658 00000 n +0000078547 00000 n +0000079470 00000 n +0000079810 00000 n +0000149798 00000 n +0000148142 00000 n +0000148656 00000 n +0000149172 00000 n +0000149699 00000 n +0000152211 00000 n +0000150328 00000 n +0000150859 00000 n +0000151390 00000 n +0000152112 00000 n +0000152029 00000 n +0000154433 00000 n +0000152741 00000 n +0000153272 00000 n +0000153803 00000 n +0000154334 00000 n +0000156846 00000 n +0000154963 00000 n +0000155494 00000 n +0000156025 00000 n +0000156747 00000 n +0000156664 00000 n +0000157231 00000 n +0000157254 00000 n +0000157276 00000 n +trailer +<< +/Size 346 +/Root 2 0 R +/Info 1 0 R +>> +startxref +157397 +%%EOF diff --git a/src/axiom-website/CATS/schaum11.input.pamphlet b/src/axiom-website/CATS/schaum11.input.pamphlet new file mode 100644 index 0000000..fc3117e --- /dev/null +++ b/src/axiom-website/CATS/schaum11.input.pamphlet @@ -0,0 +1,2522 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum11.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.237~~~~~$\displaystyle\int{\frac{dx}{\sqrt{a^2-x^2}}}$} +$$\int{\frac{1}{\sqrt{a^2-x^2}}}=\ln\left(x+\sqrt{a^2-x^2}\right)$$ +<<*>>= +)spool schaum11.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(sqrt(a^2-x^2)),x) +--R +--R +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R (1) - 2atan(----------------) +--R x +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=asin(x/a) +--R +--R x +--R (2) asin(-) +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R \|- x + a - a x +--R (3) - 2atan(----------------) - asin(-) +--R x a +--R Type: Expression Integer +--E + +--S 4 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 5 +dd:=atanrule cc +--R +--R +---------+ +--R | 2 2 +--R - \|- x + a + %i x + a x +--R (5) %i log(-------------------------) - asin(-) +--R +---------+ a +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 6 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (6) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 7 +ee:=asinrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R \| a - \|- x + a + %i x + a +--R (7) - %i log(--------------------) + %i log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 8 +ff:=rootSimp ee +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R %i\|x - a - %i x - \|x - a + x - %i a +--R (8) - %i log(-------------------) + %i log(-----------------------) +--R a +-------+ +--R | 2 2 +--R \|x - a + x + %i a +--R Type: Expression Complex Integer +--E + +--S 9 14:238 Schaums and Axiom agree +gg:=complexNormalize ff +--R +--R (9) 0 +--R Type: Expression Complex Integer +--E + +@ + +\section{\cite{1}:14.238~~~~~$\displaystyle\int{\frac{x~dx}{\sqrt{a^2-x^2}}}$} +$$\int{\frac{x}{\sqrt{a^2-x^2}}}=\sqrt{a^2-x^2}$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(x/(sqrt(a^2-x^2)),x) +--R +--R +--R 2 +--R x +--R (1) ---------------- +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=-sqrt(a^2-x^2) +--R +--R +---------+ +--R | 2 2 +--R (2) - \|- x + a +--R Type: Expression Integer +--E + +--S 12 14:238 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R (3) - a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.239~~~~~$\displaystyle +\int{\frac{x^2~dx}{\sqrt{a^2-x^2}}}$} +$$\int{\frac{x^2}{\sqrt{a^2-x^2}}}= +\frac{x\sqrt{a^2-x^2}}{2}+\frac{a^2}{2}\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(x^2/sqrt(a^2-x^2),x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 3 | 2 2 2 2 4 \|- x + a - a +--R (- 4a \|- x + a - 2a x + 4a )atan(----------------) +--R x +--R + +--R +---------+ +--R 3 2 | 2 2 3 3 +--R (- x + 2a x)\|- x + a + 2a x - 2a x +--R / +--R +---------+ +--R | 2 2 2 2 +--R 4a\|- x + a + 2x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=-(x*sqrt(a^2-x^2))/2+a^2/2*asin(x/a) +--R +--R +---------+ +--R | 2 2 2 x +--R - x\|- x + a + a asin(-) +--R a +--R (2) --------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2 \|- x + a - a 2 x +--R - 2a atan(----------------) - a asin(-) +--R x a +--R (3) --------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 16 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 17 +dd:=atanrule cc +--R +--R +---------+ +--R | 2 2 +--R 2 - \|- x + a + %i x + a 2 x +--R %i a log(-------------------------) - a asin(-) +--R +---------+ a +--R | 2 2 +--R \|- x + a + %i x - a +--R (5) ----------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 18 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (6) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 19 +ee:=asinrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 2 \| a 2 - \|- x + a + %i x + a +--R - %i a log(--------------------) + %i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R (7) ---------------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 20 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 2 |- x + a 2 | 2 2 +--R - %i a log(a |--------- - %i x) - %i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 2 | 2 2 2 2 +--R %i a log(\|- x + a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 21 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) - %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 2 | 2 2 2 2 +--R %i a log(%i\|x - a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 22 14:239 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E + +@ + +\section{\cite{1}:14.240~~~~~$\displaystyle +\int{\frac{x^3~dx}{\sqrt{a^2-x^2}}}$} +$$\int{\frac{x^3}{\sqrt{a^2-x^2}}}= +\frac{(a^2-x^2)^{3/2}}{3}+a^2\sqrt{a^2-x^2} +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(x^3/sqrt(a^2-x^2),x) +--R +--R +--R +---------+ +--R 4 | 2 2 6 2 4 +--R 3a x \|- x + a + x - 3a x +--R (1) --------------------------------------- +--R +---------+ +--R 2 2 | 2 2 2 3 +--R (3x - 12a )\|- x + a - 9a x + 12a +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=(a^2-x^2)^(3/2)/3-a^2*sqrt(a^2-x^2) +--R +--R +---------+ +--R 2 2 | 2 2 +--R (- x - 2a )\|- x + a +--R (2) ------------------------ +--R 3 +--R Type: Expression Integer +--E + +--S 25 14:240 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 3 +--R 2a +--R (3) - --- +--R 3 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.241~~~~~$\displaystyle\int{\frac{dx}{x\sqrt{a^2-x^2}}}$} +$$\int{\frac{1}{x\sqrt{a^2-x^2}}}= +\frac{1}{a}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 26 +aa:=integrate(1/(x*sqrt(a^2-x^2)),x) +--R +--R +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R log(----------------) +--R x +--R (1) --------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 27 +bb:=-1/a*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +--R \|- x + a + a +--R log(----------------) +--R x +--R (2) - --------------------- +--R a +--R Type: Expression Integer +--E + +--S 28 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R log(----------------) + log(----------------) +--R x x +--R (3) --------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 29 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R log(\|- x + a + a) + log(\|- x + a - a) - 2log(x) +--R (4) ------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 30 +ee:=complexNormalize dd +--R +--R x +--R 2log(-------) +--R +----+ +--R | 2 +--R \|- x +--R (5) - ------------- +--R a +--R Type: Expression Integer +--E + +--S 31 14:241 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R 2log(\|- 1 ) +--R (6) ------------ +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.242~~~~~$\displaystyle +\int{\frac{dx}{x^2\sqrt{a^2-x^2}}}$} +$$\int{\frac{1}{x^2\sqrt{a^2-x^2}}}= +\frac{\sqrt{a^2-x^2}}{a^2x} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(1/(x^2*sqrt(a^2-x^2)),x) +--R +--R +--R +---------+ +--R | 2 2 2 2 +--R a\|- x + a + x - a +--R (1) ----------------------- +--R +---------+ +--R 2 | 2 2 3 +--R a x\|- x + a - a x +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=-sqrt(a^2-x^2)/(a^2*x) +--R +--R +---------+ +--R | 2 2 +--R \|- x + a +--R (2) - ------------ +--R 2 +--R a x +--R Type: Expression Integer +--E + +--S 34 14:242 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.243~~~~~$\displaystyle\int{\frac{dx}{x^3\sqrt{a^2-x^2}}}$} +$$\int{\frac{1}{x^3\sqrt{a^2-x^2}}}= +-\frac{\sqrt{a^2-x^2}}{2a^2x^2}+\frac{1}{2a^3} +\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 35 +aa:=integrate(1/(x^3*sqrt(a^2-x^2)),x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 2 | 2 2 4 2 2 \|- x + a - a +--R (2a x \|- x + a + x - 2a x )log(----------------) +--R x +--R + +--R +---------+ +--R 2 3 | 2 2 2 2 4 +--R (- a x + 2a )\|- x + a + 2a x - 2a +--R / +--R +---------+ +--R 4 2 | 2 2 3 4 5 2 +--R 4a x \|- x + a + 2a x - 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 36 +bb:=-sqrt(a^2-x^2)/(2*a^2*x^2)-1/(2*a^3)*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 \|- x + a + a | 2 2 +--R - x log(----------------) - a\|- x + a +--R x +--R (2) ----------------------------------------- +--R 3 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 37 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R log(----------------) + log(----------------) +--R x x +--R (3) --------------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 38 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R log(\|- x + a + a) + log(\|- x + a - a) - 2log(x) +--R (4) ------------------------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 39 +ee:=complexNormalize dd +--R +--R x +--R log(-------) +--R +----+ +--R | 2 +--R \|- x +--R (5) - ------------ +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 40 14:243 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R log(\|- 1 ) +--R (6) ----------- +--R 3 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.244~~~~~$\displaystyle\int{\sqrt{a^2-x^2}}~dx$} +$$\int{\sqrt{a^2-x^2}}= +\frac{x\sqrt{a^2-x^2}}{2}-\frac{a^2}{2}\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(sqrt(a^2-x^2),x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 3 | 2 2 2 2 4 \|- x + a - a +--R (- 4a \|- x + a - 2a x + 4a )atan(----------------) +--R x +--R + +--R +---------+ +--R 3 2 | 2 2 3 3 +--R (x - 2a x)\|- x + a - 2a x + 2a x +--R / +--R +---------+ +--R | 2 2 2 2 +--R 4a\|- x + a + 2x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=(x*sqrt(a^2-x^2))/2+a^2/2*asin(x/a) +--R +--R +---------+ +--R | 2 2 2 x +--R x\|- x + a + a asin(-) +--R a +--R (2) ------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2 \|- x + a - a 2 x +--R - 2a atan(----------------) - a asin(-) +--R x a +--R (3) --------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 44 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (4) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 45 +dd:=asinrule cc +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 2 \| a 2 \|- x + a - a +--R - %i a log(--------------------) - 2a atan(----------------) +--R a x +--R (5) ------------------------------------------------------------ +--R 2 +--R Type: Expression Complex Integer +--E + +--S 46 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 47 +ee:=atanrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 2 \| a 2 - \|- x + a + %i x + a +--R - %i a log(--------------------) + %i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R (7) ---------------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 48 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 2 |- x + a 2 | 2 2 +--R - %i a log(a |--------- - %i x) - %i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 2 | 2 2 2 2 +--R %i a log(\|- x + a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 49 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) - %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 2 | 2 2 2 2 +--R %i a log(%i\|x - a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 50 14:244 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.245~~~~~$\displaystyle\int{x\sqrt{a^2-x^2}}~dx$} +$$\int{x\sqrt{a^2-x^2}}= +\frac{(a^2-x^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 51 +aa:=integrate(x*sqrt(a^2-x^2),x) +--R +--R +--R +---------+ +--R 4 3 2 | 2 2 6 2 4 4 2 +--R (- 3a x + 6a x )\|- x + a - x + 6a x - 6a x +--R (1) -------------------------------------------------- +--R +---------+ +--R 2 2 | 2 2 2 3 +--R (3x - 12a )\|- x + a - 9a x + 12a +--R Type: Union(Expression Integer,...) +--E + +--S 52 +bb:=-(a^2-x^2)^(3/2)/3 +--R +--R +---------+ +--R 2 2 | 2 2 +--R (x - a )\|- x + a +--R (2) --------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 53 14:245 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 3 +--R a +--R (3) - -- +--R 3 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.246~~~~~$\displaystyle +\int{x^2\sqrt{a^2-x^2}}~dx$} +$$\int{x^2\sqrt{a^2-x^2}}= +\frac{x(a^2-x^2)^{3/2}}{4}+\frac{a^2x\sqrt{a^2-x^2}}{8}- +\frac{a^4}{8}\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 54 +aa:=integrate(x^2*sqrt(a^2-x^2),x) +--R +--R +--R (1) +--R +---------+ +--R 5 2 7 | 2 2 4 4 6 2 8 +--R ((- 8a x + 16a )\|- x + a - 2a x + 16a x - 16a ) +--R * +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R atan(----------------) +--R x +--R + +--R +---------+ +--R 7 2 5 4 3 6 | 2 2 7 3 5 5 3 7 +--R (2x - 17a x + 24a x - 8a x)\|- x + a - 8a x + 28a x - 28a x + 8a x +--R / +--R +---------+ +--R 2 3 | 2 2 4 2 2 4 +--R (32a x - 64a )\|- x + a + 8x - 64a x + 64a +--R Type: Union(Expression Integer,...) +--E + +--S 55 +bb:=-(x*(a^2-x^2)^(3/2))/4+(a^2*x*sqrt(a^2-x^2))/8+a^4/8*asin(x/a) +--R +--R +---------+ +--R 3 2 | 2 2 4 x +--R (2x - a x)\|- x + a + a asin(-) +--R a +--R (2) ----------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 56 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 4 \|- x + a - a 4 x +--R - 2a atan(----------------) - a asin(-) +--R x a +--R (3) --------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 57 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 58 +dd:=atanrule cc +--R +--R +---------+ +--R | 2 2 +--R 4 - \|- x + a + %i x + a 4 x +--R %i a log(-------------------------) - a asin(-) +--R +---------+ a +--R | 2 2 +--R \|- x + a + %i x - a +--R (5) ----------------------------------------------- +--R 8 +--R Type: Expression Complex Integer +--E + +--S 59 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (6) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 60 +ee:=asinrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 4 \| a 4 - \|- x + a + %i x + a +--R - %i a log(--------------------) + %i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R (7) ---------------------------------------------------------------------- +--R 8 +--R Type: Expression Complex Integer +--E + +--S 61 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 4 |- x + a 4 | 2 2 +--R - %i a log(a |--------- - %i x) - %i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 4 | 2 2 4 4 +--R %i a log(\|- x + a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 8 +--R Type: Expression Complex Integer +--E + +--S 62 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) - %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 4 | 2 2 4 4 +--R %i a log(%i\|x - a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 8 +--R Type: Expression Complex Integer +--E + +--S 63 14:246 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.247~~~~~$\displaystyle +\int{x^3\sqrt{a^2-x^2}}~dx$} +$$\int{x^3\sqrt{a^2-x^2}}= +\frac{(a^2-x^2)^{5/2}}{5}+\frac{a^2(a^2-x^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 64 +aa:=integrate(x^3*sqrt(a^2-x^2),x) +--R +--R +--R (1) +--R +---------+ +--R 8 3 6 5 4 | 2 2 10 2 8 4 6 6 4 +--R (- 15a x + 65a x - 60a x )\|- x + a - 3x + 40a x - 95a x + 60a x +--R -------------------------------------------------------------------------- +--R +---------+ +--R 4 2 2 4 | 2 2 4 3 2 5 +--R (15x - 180a x + 240a )\|- x + a - 75a x + 300a x - 240a +--R Type: Union(Expression Integer,...) +--E + +--S 65 +bb:=(a^2-x^2)^(5/2)/5-(a^2*(a^2-x^2)^(3/2))/3 +--R +--R +---------+ +--R 4 2 2 4 | 2 2 +--R (3x - a x - 2a )\|- x + a +--R (2) ------------------------------ +--R 15 +--R Type: Expression Integer +--E + +--S 66 14:247 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 5 +--R 2a +--R (3) - --- +--R 15 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.248~~~~~$\displaystyle +\int{\frac{\sqrt{a^2-x^2}}{x}}~dx$} +$$\int{\frac{\sqrt{a^2-x^2}}{x}}= +\sqrt{a^2-x^2}-a\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 67 +aa:=integrate(sqrt(a^2-x^2)/x,x) +--R +--R +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 2 \|- x + a - a 2 +--R (a\|- x + a - a )log(----------------) - x +--R x +--R (1) ---------------------------------------------- +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R Type: Union(Expression Integer,...) +--E + +--S 68 +bb:=sqrt(a^2-x^2)-a*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R \|- x + a + a | 2 2 +--R (2) - a log(----------------) + \|- x + a +--R x +--R Type: Expression Integer +--E + +--S 69 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R (3) a log(----------------) + a log(----------------) + a +--R x x +--R Type: Expression Integer +--E + +--S 70 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R (4) a log(\|- x + a + a) + a log(\|- x + a - a) - 2a log(x) + a +--R Type: Expression Integer +--E + +--S 71 +ee:=complexNormalize dd +--R +--R x +--R (5) - 2a log(-------) + a +--R +----+ +--R | 2 +--R \|- x +--R Type: Expression Integer +--E + +--S 72 14:248 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R (6) 2a log(\|- 1 ) + a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.249~~~~~$\displaystyle +\int{\frac{\sqrt{a^2-x^2}}{x^2}}~dx$} +$$\int{\frac{\sqrt{a^2-x^2}}{x^2}}= +-\frac{\sqrt{a^2-x^2}}{x}+\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 73 +aa:=integrate(sqrt(a^2-x^2)/x^2,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +---------+ +--R | 2 2 \|- x + a - a | 2 2 2 2 +--R (2x\|- x + a - 2a x)atan(----------------) + a\|- x + a + x - a +--R x +--R ----------------------------------------------------------------------- +--R +---------+ +--R | 2 2 +--R x\|- x + a - a x +--R Type: Union(Expression Integer,...) +--E + +--S 74 +bb:=-sqrt(a^2-x^2)/x-asin(x/a) +--R +--R +---------+ +--R | 2 2 x +--R - \|- x + a - x asin(-) +--R a +--R (2) -------------------------- +--R x +--R Type: Expression Integer +--E + +--S 75 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R \|- x + a - a x +--R (3) 2atan(----------------) + asin(-) +--R x a +--R Type: Expression Integer +--E + +--S 76 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (4) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 77 +dd:=asinrule cc +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R \| a \|- x + a - a +--R (5) %i log(--------------------) + 2atan(----------------) +--R a x +--R Type: Expression Complex Integer +--E + +--S 78 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 79 +ee:=atanrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R \| a - \|- x + a + %i x + a +--R (7) %i log(--------------------) - %i log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 80 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R |- x + a | 2 2 +--R %i log(a |--------- - %i x) + %i log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R | 2 2 +--R - %i log(\|- x + a - %i x - a) - %i log(a) - %i log(- 1) +--R Type: Expression Complex Integer +--E + +--S 81 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R %i log(%i\|x - a + %i x - a) + %i log(%i\|x - a - %i x) +--R + +--R +-------+ +--R | 2 2 +--R - %i log(%i\|x - a - %i x - a) - %i log(a) - %i log(- 1) +--R Type: Expression Complex Integer +--E + +--S 82 14:249 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.250~~~~~$\displaystyle +\int{\frac{\sqrt{a^2-x^2}}{x^3}}~dx$} +$$\int{\frac{\sqrt{a^2-x^2}}{x^3}}= +-\frac{\sqrt{a^2-x^2}}{2x^2}+\frac{1}{2a} +\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate(sqrt(a^2-x^2)/x^3,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 2 | 2 2 4 2 2 \|- x + a - a +--R (- 2a x \|- x + a - x + 2a x )log(----------------) +--R x +--R + +--R +---------+ +--R 2 3 | 2 2 2 2 4 +--R (- a x + 2a )\|- x + a + 2a x - 2a +--R / +--R +---------+ +--R 2 2 | 2 2 4 3 2 +--R 4a x \|- x + a + 2a x - 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 84 +bb:=-sqrt(a^2-x^2)/(2*x^2)+1/(2*a)*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 \|- x + a + a | 2 2 +--R x log(----------------) - a\|- x + a +--R x +--R (2) --------------------------------------- +--R 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 85 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R - log(----------------) - log(----------------) +--R x x +--R (3) ----------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 86 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - log(\|- x + a + a) - log(\|- x + a - a) + 2log(x) +--R (4) --------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 87 +ee:=complexNormalize dd +--R +--R x +--R log(-------) +--R +----+ +--R | 2 +--R \|- x +--R (5) ------------ +--R a +--R Type: Expression Integer +--E + +--S 88 14:250 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R log(\|- 1 ) +--R (6) - ----------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.251~~~~~$\displaystyle\int{\frac{dx}{(a^2-x^2)^{3/2}}}$} +$$\int{\frac{1}{(a^2-x^2)^{3/2}}}= +-\frac{x}{a^2\sqrt{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 89 +aa:=integrate(1/(a^2-x^2)^(3/2),x) +--R +--R +--R +---------+ +--R | 2 2 +--R - x\|- x + a + a x +--R (1) -------------------------- +--R +---------+ +--R 3 | 2 2 2 2 4 +--R a \|- x + a + a x - a +--R Type: Union(Expression Integer,...) +--E + +--S 90 +bb:=x/(a^2*sqrt(a^2-x^2)) +--R +--R x +--R (2) -------------- +--R +---------+ +--R 2 | 2 2 +--R a \|- x + a +--R Type: Expression Integer +--E + +--S 91 14:251 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.252~~~~~$\displaystyle +\int{\frac{x~dx}{(a^2-x^2)^{3/2}}}$} +$$\int{\frac{x}{(a^2-x^2)^{3/2}}}= +\frac{-1}{\sqrt{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 92 +aa:=integrate(x/(a^2-x^2)^(3/2),x) +--R +--R +--R 2 +--R x +--R (1) -------------------------- +--R +---------+ +--R 2 | 2 2 2 3 +--R a \|- x + a + a x - a +--R Type: Union(Expression Integer,...) +--E + +--S 93 +bb:=1/sqrt(a^2-x^2) +--R +--R 1 +--R (2) ------------ +--R +---------+ +--R | 2 2 +--R \|- x + a +--R Type: Expression Integer +--E + +--S 94 14:252 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 1 +--R (3) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.253~~~~~$\displaystyle +\int{\frac{x^2dx}{(a^2-x^2)^{3/2}}}$} +$$\int{\frac{x^2}{(a^2-x^2)^{3/2}}}= +\frac{-x}{\sqrt{a^2-x^2}}+\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 95 +aa:=integrate(x^2/(a^2-x^2)^(3/2),x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +---------+ +--R | 2 2 2 2 \|- x + a - a | 2 2 +--R (2a\|- x + a + 2x - 2a )atan(----------------) - x\|- x + a + a x +--R x +--R ------------------------------------------------------------------------ +--R +---------+ +--R | 2 2 2 2 +--R a\|- x + a + x - a +--R Type: Union(Expression Integer,...) +--E + +--S 96 +bb:=x/sqrt(a^2-x^2)-asin(x/a) +--R +--R +---------+ +--R x | 2 2 +--R - asin(-)\|- x + a + x +--R a +--R (2) ------------------------- +--R +---------+ +--R | 2 2 +--R \|- x + a +--R Type: Expression Integer +--E + +--S 97 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R \|- x + a - a x +--R (3) 2atan(----------------) + asin(-) +--R x a +--R Type: Expression Integer +--E + +--S 98 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 99 +dd:=atanrule cc +--R +--R +---------+ +--R | 2 2 +--R - \|- x + a + %i x + a x +--R (5) - %i log(-------------------------) + asin(-) +--R +---------+ a +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 100 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (6) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 101 +ee:=asinrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R \| a - \|- x + a + %i x + a +--R (7) %i log(--------------------) - %i log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 102 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R |- x + a | 2 2 +--R %i log(a |--------- - %i x) + %i log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R | 2 2 +--R - %i log(\|- x + a - %i x - a) - %i log(a) - %i log(- 1) +--R Type: Expression Complex Integer +--E + +--S 103 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R %i log(%i\|x - a + %i x - a) + %i log(%i\|x - a - %i x) +--R + +--R +-------+ +--R | 2 2 +--R - %i log(%i\|x - a - %i x - a) - %i log(a) - %i log(- 1) +--R Type: Expression Complex Integer +--E + +--S 104 14:253 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.254~~~~~$\displaystyle +\int{\frac{x^3dx}{(a^2-x^2)^{3/2}}}$} +$$\int{\frac{x^3}{(a^2-x^2)^{3/2}}}= +\sqrt{a^2-x^2}-\frac{a^2}{\sqrt{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 105 +aa:=integrate(x^3/(a^2-x^2)^(3/2),x) +--R +--R +--R 4 +--R x +--R (1) - ------------------------------------ +--R +---------+ +--R 2 2 | 2 2 2 3 +--R (x - 2a )\|- x + a - 2a x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 106 +bb:=sqrt(a^2-x^2)+a^2/sqrt(a^2-x^2) +--R +--R 2 2 +--R - x + 2a +--R (2) ------------ +--R +---------+ +--R | 2 2 +--R \|- x + a +--R Type: Expression Integer +--E + +--S 107 14:254 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R (3) 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.255~~~~~$\displaystyle +\int{\frac{dx}{x(a^2-x^2)^{3/2}}}$} +$$\int{\frac{1}{x(a^2-x^2)^{3/2}}}= +\frac{-1}{a^2\sqrt{a^2-x^2}}- +\frac{1}{a^3}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 108 +aa:=integrate(1/(x*(a^2-x^2)^(3/2)),x) +--R +--R +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 2 2 \|- x + a - a 2 +--R (a\|- x + a + x - a )log(----------------) + x +--R x +--R (1) --------------------------------------------------- +--R +---------+ +--R 4 | 2 2 3 2 5 +--R a \|- x + a + a x - a +--R Type: Union(Expression Integer,...) +--E + +--S 109 +bb:=1/(a^2*sqrt(a^2-x^2))-1/a^3*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 \|- x + a + a +--R - \|- x + a log(----------------) + a +--R x +--R (2) --------------------------------------- +--R +---------+ +--R 3 | 2 2 +--R a \|- x + a +--R Type: Expression Integer +--E + +--S 110 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R log(----------------) + log(----------------) + 1 +--R x x +--R (3) ------------------------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 111 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R log(\|- x + a + a) + log(\|- x + a - a) - 2log(x) + 1 +--R (4) ----------------------------------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 112 +ee:=complexNormalize dd +--R +--R x +--R - 2log(-------) + 1 +--R +----+ +--R | 2 +--R \|- x +--R (5) ------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 113 14:255 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R 2log(\|- 1 ) + 1 +--R (6) ---------------- +--R 3 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.256~~~~~$\displaystyle +\int{\frac{dx}{x^2(a^2-x^2)^{3/2}}}$} +$$\int{\frac{1}{x^2(a^2-x^2)^{3/2}}}= +-\frac{\sqrt{a^2-x^2}}{a^4x}-\frac{x}{a^4\sqrt{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 114 +aa:=integrate(1/(x^2*(a^2-x^2)^(3/2)),x) +--R +--R +--R +---------+ +--R 2 3 | 2 2 4 2 2 4 +--R (4a x - 2a )\|- x + a + 2x - 5a x + 2a +--R (1) --------------------------------------------- +--R +---------+ +--R 4 3 6 | 2 2 5 3 7 +--R (a x - 2a x)\|- x + a - 2a x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 115 +bb:=-sqrt(a^2-x^2)/(a^4*x)+x/(a^4*sqrt(a^2-x^2)) +--R +--R 2 2 +--R 2x - a +--R (2) --------------- +--R +---------+ +--R 4 | 2 2 +--R a x\|- x + a +--R Type: Expression Integer +--E + +--S 116 14:256 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.257~~~~~$\displaystyle +\int{\frac{dx}{x^3(a^2-x^2)^{3/2}}}$} +$$\int{\frac{1}{x^3(a^2-x^2)^{3/2}}}= +\frac{1}{2a^2x^2\sqrt{a^2-x^2}}- +\frac{3}{2a^4\sqrt{a^2-x^2}}- +\frac{3}{2a^5}\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 117 +aa:=integrate(1/(x^3*(a^2-x^2)^(3/2)),x) +--R +--R +--R (1) +--R +---------+ +--R 4 3 2 | 2 2 6 2 4 4 2 +--R ((9a x - 12a x )\|- x + a + 3x - 15a x + 12a x ) +--R * +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R log(----------------) +--R x +--R + +--R +---------+ +--R 4 3 2 5 | 2 2 6 2 4 4 2 6 +--R (3a x + 5a x - 4a )\|- x + a + 2x - a x - 7a x + 4a +--R / +--R +---------+ +--R 6 4 8 2 | 2 2 5 6 7 4 9 2 +--R (6a x - 8a x )\|- x + a + 2a x - 10a x + 8a x +--R Type: Union(Expression Integer,...) +--E + +--S 118 +bb:=-1/(2*a^2*x^2*sqrt(a^2-x^2))+3/(2*a^4*sqrt(a^2-x^2))-3/(2*a^5)*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R +---------+ | 2 2 +--R 2 | 2 2 \|- x + a + a 2 3 +--R - 3x \|- x + a log(----------------) + 3a x - a +--R x +--R (2) --------------------------------------------------- +--R +---------+ +--R 5 2 | 2 2 +--R 2a x \|- x + a +--R Type: Expression Integer +--E + +--S 119 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R 3log(----------------) + 3log(----------------) + 2 +--R x x +--R (3) --------------------------------------------------- +--R 5 +--R 2a +--R Type: Expression Integer +--E + +--S 120 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R 3log(\|- x + a + a) + 3log(\|- x + a - a) - 6log(x) + 2 +--R (4) ------------------------------------------------------------- +--R 5 +--R 2a +--R Type: Expression Integer +--E + +--S 121 +ee:=complexNormalize dd +--R +--R x +--R - 3log(-------) + 1 +--R +----+ +--R | 2 +--R \|- x +--R (5) ------------------- +--R 5 +--R a +--R Type: Expression Integer +--E + +--S 122 14:257 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R 3log(\|- 1 ) + 1 +--R (6) ---------------- +--R 5 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.258~~~~~$\displaystyle\int{(a^2-x^2)^{3/2}}~dx$} +$$\int{(a^2-x^2)^{3/2}}= +\frac{x(a^2-x^2)^{3/2}}{4}-\frac{3a^2x\sqrt{a^2-x^2}}{8}+ +\frac{3}{8}a^4\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 123 +aa:=integrate((a^2-x^2)^(3/2),x) +--R +--R +--R (1) +--R +---------+ +--R 5 2 7 | 2 2 4 4 6 2 8 +--R ((- 24a x + 48a )\|- x + a - 6a x + 48a x - 48a ) +--R * +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R atan(----------------) +--R x +--R + +--R +---------+ +--R 7 2 5 4 3 6 | 2 2 7 3 5 5 3 +--R (- 2x + 21a x - 56a x + 40a x)\|- x + a + 8a x - 44a x + 76a x +--R + +--R 7 +--R - 40a x +--R / +--R +---------+ +--R 2 3 | 2 2 4 2 2 4 +--R (32a x - 64a )\|- x + a + 8x - 64a x + 64a +--R Type: Union(Expression Integer,...) +--E + +--S 124 +bb:=(x*(a^2-x^2)^(3/2))/4+(3*a^2*x*sqrt(a^2-x^2))/8+3/8*a^4*asin(x/a) +--R +--R +---------+ +--R 3 2 | 2 2 4 x +--R (- 2x + 5a x)\|- x + a + 3a asin(-) +--R a +--R (2) --------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 125 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 4 \|- x + a - a 4 x +--R - 6a atan(----------------) - 3a asin(-) +--R x a +--R (3) ---------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 126 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (4) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 127 +ee:=asinrule cc +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 4 \| a 4 \|- x + a - a +--R - 3%i a log(--------------------) - 6a atan(----------------) +--R a x +--R (5) ------------------------------------------------------------- +--R 8 +--R Type: Expression Complex Integer +--E + +--S 128 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 129 +ff:=atanrule ee +--R +--R (7) +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 4 \| a 4 - \|- x + a + %i x + a +--R - 3%i a log(--------------------) + 3%i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R ------------------------------------------------------------------------ +--R 8 +--R Type: Expression Complex Integer +--E + +--S 130 +gg:=expandLog ff +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 4 |- x + a 4 | 2 2 +--R - 3%i a log(a |--------- - %i x) - 3%i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 4 | 2 2 4 4 +--R 3%i a log(\|- x + a - %i x - a) + 3%i a log(a) + 3%i a log(- 1) +--R / +--R 8 +--R Type: Expression Complex Integer +--E + +--S 131 +hh:=rootSimp gg +--R +--R (9) +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R - 3%i a log(%i\|x - a + %i x - a) - 3%i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 4 | 2 2 4 4 +--R 3%i a log(%i\|x - a - %i x - a) + 3%i a log(a) + 3%i a log(- 1) +--R / +--R 8 +--R Type: Expression Complex Integer +--E + +--S 132 14:258 Schaums and Axiom agree +ii:=complexNormalize hh +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.259~~~~~$\displaystyle\int{x(a^2-x^2)^{3/2}}~dx$} +$$\int{x(a^2-x^2)^{3/2}}=\frac{(a^2-x^2)^{5/2}}{5}$$ +<<*>>= +)clear all + +--S 133 +aa:=integrate(x*(a^2-x^2)^(3/2),x) +--R +--R +--R (1) +--R +---------+ +--R 8 3 6 5 4 7 2 | 2 2 10 2 8 4 6 +--R (5a x - 30a x + 60a x - 40a x )\|- x + a + x - 15a x + 55a x +--R + +--R 6 4 8 2 +--R - 80a x + 40a x +--R / +--R +---------+ +--R 4 2 2 4 | 2 2 4 3 2 5 +--R (5x - 60a x + 80a )\|- x + a - 25a x + 100a x - 80a +--R Type: Union(Expression Integer,...) +--E + +--S 134 +bb:=-(a^2-x^2)^(5/2)/5 +--R +--R +---------+ +--R 4 2 2 4 | 2 2 +--R (- x + 2a x - a )\|- x + a +--R (2) ------------------------------- +--R 5 +--R Type: Expression Integer +--E + +--S 135 14:259 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 5 +--R a +--R (3) - -- +--R 5 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.260~~~~~$\displaystyle\int{x^2(a^2-x^2)^{3/2}}~dx$} +$$\int{x^2(a^2-x^2)^{3/2}}= +\frac{x(a^2-x^2)^{5/2}}{6}+\frac{a^2x(a^2-x^2)^{3/2}}{24}- +\frac{a^4x\sqrt{a^2-x^2}}{16}+ +\frac{a^6}{16}\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 136 +aa:=integrate(x^2*(a^2-x^2)^(3/2),x) +--R +--R +--R (1) +--R +---------+ +--R 7 4 9 2 11 | 2 2 6 6 8 4 +--R (- 36a x + 192a x - 192a )\|- x + a - 6a x + 108a x +--R + +--R 10 2 12 +--R - 288a x + 192a +--R * +--R +---------+ +--R | 2 2 +--R \|- x + a - a +--R atan(----------------) +--R x +--R + +--R +---------+ +--R 11 2 9 4 7 6 5 8 3 10 | 2 2 +--R (- 8x + 158a x - 639a x + 982a x - 592a x + 96a x)\|- x + a +--R + +--R 11 3 9 5 7 7 5 9 3 11 +--R 48a x - 388a x + 1062a x - 1266a x + 640a x - 96a x +--R / +--R +---------+ +--R 4 3 2 5 | 2 2 6 2 4 4 2 +--R (288a x - 1536a x + 1536a )\|- x + a + 48x - 864a x + 2304a x +--R + +--R 6 +--R - 1536a +--R Type: Union(Expression Integer,...) +--E + +--S 137 +bb:=-(x*(a^2-x^2)^(5/2))/6+(a^2*x*(a^2-x^2)^(3/2))/24+(a^4*x*sqrt(a^2-x^2))/16+a^6/16*asin(x/a) +--R +--R +---------+ +--R 5 2 3 4 | 2 2 6 x +--R (- 8x + 14a x - 3a x)\|- x + a + 3a asin(-) +--R a +--R (2) ------------------------------------------------ +--R 48 +--R Type: Expression Integer +--E + +--S 138 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 6 \|- x + a - a 6 x +--R - 2a atan(----------------) - a asin(-) +--R x a +--R (3) --------------------------------------- +--R 16 +--R Type: Expression Integer +--E + +--S 139 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 140 +dd:=atanrule cc +--R +--R +---------+ +--R | 2 2 +--R 6 - \|- x + a + %i x + a 6 x +--R %i a log(-------------------------) - a asin(-) +--R +---------+ a +--R | 2 2 +--R \|- x + a + %i x - a +--R (5) ----------------------------------------------- +--R 16 +--R Type: Expression Complex Integer +--E + +--S 141 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (6) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 142 +ee:=asinrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 6 \| a 6 - \|- x + a + %i x + a +--R - %i a log(--------------------) + %i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R (7) ---------------------------------------------------------------------- +--R 16 +--R Type: Expression Complex Integer +--E + +--S 143 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 6 |- x + a 6 | 2 2 +--R - %i a log(a |--------- - %i x) - %i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 6 | 2 2 6 6 +--R %i a log(\|- x + a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 16 +--R Type: Expression Complex Integer +--E + +--S 144 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 6 | 2 2 6 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) - %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 6 | 2 2 6 6 +--R %i a log(%i\|x - a - %i x - a) + %i a log(a) + %i a log(- 1) +--R / +--R 16 +--R Type: Expression Complex Integer +--E + +--S 145 14:260 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.261~~~~~$\displaystyle\int{x^3(a^2-x^2)^{3/2}}~dx$} +$$\int{x^3(a^2-x^2)^{3/2}}= +\frac{(a^2-x^2)^{7/2}}{7}+\frac{a^2(a^2-x^2)^{5/2}}{5} +$$ +<<*>>= +)clear all + +--S 146 +aa:=integrate(x^3*(a^2-x^2)^(3/2),x) +--R +--R +--R (1) +--R +---------+ +--R 12 3 10 5 8 7 6 9 4 | 2 2 14 +--R (35a x - 336a x + 1015a x - 1260a x + 560a x )\|- x + a + 5x +--R + +--R 2 12 4 10 6 8 8 6 10 4 +--R - 133a x + 721a x - 1575a x + 1540a x - 560a x +--R / +--R +---------+ +--R 6 2 4 4 2 6 | 2 2 6 3 4 +--R (35x - 840a x + 2800a x - 2240a )\|- x + a - 245a x + 1960a x +--R + +--R 5 2 7 +--R - 3920a x + 2240a +--R Type: Union(Expression Integer,...) +--E + +--S 147 +bb:=(a^2-x^2)^(7/2)/7-(a^2*(a^2-x^2)^(5/2))/5 +--R +--R +---------+ +--R 6 2 4 4 2 6 | 2 2 +--R (- 5x + 8a x - a x - 2a )\|- x + a +--R (2) ---------------------------------------- +--R 35 +--R Type: Expression Integer +--E + +--S 148 14:261 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 7 +--R 2a +--R (3) - --- +--R 35 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.262~~~~~$\displaystyle +\int{\frac{(a^2-x^2)^{3/2}}{x}}~dx$} +$$\int{\frac{(a^2-x^2)^{3/2}}{x}}= +\frac{(a^2-x^2)^{3/2}}{3}-a^2\sqrt{a^2-x^2}+ +a^3\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 149 +aa:=integrate((a^2-x^2)^(3/2)/x,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 3 2 5 | 2 2 4 2 6 \|- x + a - a +--R ((3a x - 12a )\|- x + a - 9a x + 12a )log(----------------) +--R x +--R + +--R +---------+ +--R 4 3 2 | 2 2 6 2 4 4 2 +--R (3a x - 12a x )\|- x + a + x - 9a x + 12a x +--R / +--R +---------+ +--R 2 2 | 2 2 2 3 +--R (3x - 12a )\|- x + a - 9a x + 12a +--R Type: Union(Expression Integer,...) +--E + +--S 150 +bb:=(a^2-x^2)^(3/2)/3+a^2*sqrt(a^2-x^2)-a^3*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R 3 \|- x + a + a 2 2 | 2 2 +--R - 3a log(----------------) + (- x + 4a )\|- x + a +--R x +--R (2) ----------------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 151 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R 3 \|- x + a + a 3 \|- x + a - a 3 +--R 3a log(----------------) + 3a log(----------------) + 4a +--R x x +--R (3) --------------------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 152 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R 3 | 2 2 3 | 2 2 3 3 +--R 3a log(\|- x + a + a) + 3a log(\|- x + a - a) - 6a log(x) + 4a +--R (4) --------------------------------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 153 +ee:=complexNormalize dd +--R +--R 3 x 3 +--R - 6a log(-------) + 4a +--R +----+ +--R | 2 +--R \|- x +--R (5) ----------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 154 14:262 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R 3 +---+ 3 +--R 6a log(\|- 1 ) + 4a +--R (6) -------------------- +--R 3 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.263~~~~~$\displaystyle +\int{\frac{(a^2-x^2)^{3/2}}{x^2}}~dx$} +$$\int{\frac{(a^2-x^2)^{3/2}}{x^2}}= +-\frac{(a^2-x^2)^{3/2}}{x}+\frac{3x\sqrt{a^2-x^2}}{2}- +\frac{3}{2}a^2\ln\left(x+\sqrt{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 155 +aa:=integrate((a^2-x^2)^{3/2}/x^2,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 2 3 4 | 2 2 3 3 5 \|- x + a - a +--R ((6a x - 24a x)\|- x + a - 18a x + 24a x)atan(----------------) +--R x +--R + +--R +---------+ +--R 4 3 2 5 | 2 2 6 2 4 4 2 6 +--R (3a x + 2a x - 8a )\|- x + a + x - 3a x - 6a x + 8a +--R / +--R +---------+ +--R 3 2 | 2 2 3 3 +--R (2x - 8a x)\|- x + a - 6a x + 8a x +--R Type: Union(Expression Integer,...) +--E + +--S 156 +bb:=-(a^2-x^2)^(3/2)/x-(3*x*sqrt(a^2-x^2))/2-3/2*a^2*asin(x/a) +--R +--R +---------+ +--R 2 2 | 2 2 2 x +--R (- x - 2a )\|- x + a - 3a x asin(-) +--R a +--R (2) --------------------------------------- +--R 2x +--R Type: Expression Integer +--E + +--S 157 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2 \|- x + a - a 2 x +--R 6a atan(----------------) + 3a asin(-) +--R x a +--R (3) -------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 158 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (4) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 159 +dd:=asinrule cc +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 2 \| a 2 \|- x + a - a +--R 3%i a log(--------------------) + 6a atan(----------------) +--R a x +--R (5) ----------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 160 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 161 +ee:=atanrule dd +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R a |--------- - %i x +---------+ +--R | 2 | 2 2 +--R 2 \| a 2 - \|- x + a + %i x + a +--R 3%i a log(--------------------) - 3%i a log(-------------------------) +--R a +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R (7) ---------------------------------------------------------------------- +--R 2 +--R Type: Expression Complex Integer +--E + +--S 162 +ff:=expandLog ee +--R +--R (8) +--R +---------+ +--R | 2 2 +---------+ +--R 2 |- x + a 2 | 2 2 +--R 3%i a log(a |--------- - %i x) + 3%i a log(\|- x + a + %i x - a) +--R | 2 +--R \| a +--R + +--R +---------+ +--R 2 | 2 2 2 2 +--R - 3%i a log(\|- x + a - %i x - a) - 3%i a log(a) - 3%i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 163 +gg:=rootSimp ff +--R +--R (9) +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R 3%i a log(%i\|x - a + %i x - a) + 3%i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R 2 | 2 2 2 2 +--R - 3%i a log(%i\|x - a - %i x - a) - 3%i a log(a) - 3%i a log(- 1) +--R / +--R 2 +--R Type: Expression Complex Integer +--E + +--S 164 14:263 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (10) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.264~~~~~$\displaystyle +\int{\frac{(a^2-x^2)^{3/2}}{x^3}}~dx$} +$$\int{\frac{(a^2-x^2)^{3/2}}{x^3}}= +-\frac{(a^2-x^2)^{3/2}}{2x^2}+\frac{3}{2}\sqrt{a^2-x^2}- +\frac{3}{2}a\sec^{-1}\left|\frac{x}{a}\right| +$$ +<<*>>= +)clear all + +--S 165 +aa:=integrate((a^2-x^2)^(3/2)/x^3,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ | 2 2 +--R 4 3 2 | 2 2 2 4 4 2 \|- x + a - a +--R ((- 3a x + 12a x )\|- x + a + 9a x - 12a x )log(----------------) +--R x +--R + +--R +---------+ +--R 4 3 2 5 | 2 2 6 2 4 4 2 6 +--R (4a x + 3a x - 4a )\|- x + a + 2x - 3a x - 5a x + 4a +--R / +--R +---------+ +--R 4 2 2 | 2 2 4 3 2 +--R (2x - 8a x )\|- x + a - 6a x + 8a x +--R Type: Union(Expression Integer,...) +--E + +--S 166 +bb:=-(a^2-x^2)^(3/2)/(2*x^2)-(3*sqrt(a^2-x^2))/2+3/2*a*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 \|- x + a + a 2 2 | 2 2 +--R 3a x log(----------------) + (- 2x - a )\|- x + a +--R x +--R (2) ----------------------------------------------------- +--R 2 +--R 2x +--R Type: Expression Integer +--E + +--S 167 +cc:=aa-bb +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R - 3a log(----------------) - 3a log(----------------) - 2a +--R x x +--R (3) ---------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 168 +dd:=expandLog cc +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - 3a log(\|- x + a + a) - 3a log(\|- x + a - a) + 6a log(x) - 2a +--R (4) ---------------------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 169 +ee:=complexNormalize dd +--R +--R x +--R (5) 3a log(-------) - a +--R +----+ +--R | 2 +--R \|- x +--R Type: Expression Integer +--E + +--S 170 14:264 Schaums and Axiom differ by a constant +ff:=rootSimp ee +--R +--R +---+ +--R (6) - 3a log(\|- 1 ) - a +--R Type: Expression Integer +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp68-69 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum11.input.pdf b/src/axiom-website/CATS/schaum11.input.pdf new file mode 100644 index 0000000..cb7ac08 --- /dev/null +++ b/src/axiom-website/CATS/schaum11.input.pdf @@ -0,0 +1,3980 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/XGVGVP+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/EEFPIB+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TAMYWG+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=0w m"G-5 ݌1*$&>r^ !Ȣ$O QiHh,ʶ3˼3%\m-y%!ξXTơ0)N'Qri%/`o! +zˉaTF +YĈicѪQh6A +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/IJTCAF+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/EBENTK+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/CSSXYP+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PFTUWD+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/XQGLQC+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/TAMMEO+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/RJRYYM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1104 +>> +stream +x՘I7 :>FEQK^@I\@ ?4hFciNcSEEm it^yЁ|?|^J:y``0$K/sh1m֎*@M>w( 4xmVx{ uDG5DcP$ MP ų~Ц gcУNC`?i,ߔ9$u +Beuٖ%:(ͧuVgD)IEtĠcĩ\b/*TÀ(3kt=hY}l` p 7/6RuManU֮Nj6nMPQ[i5AtIP z-hK&h .cHfYG"[8g6DjuI8L%wO˥;bk@~LY]婍S8+ysjbCYU moڛ3WA$/)YBAfN;SnBN0zg/Cf+358%d=Qeϥ:E@Fc^̑qqE!W+1i9L dwU&+9 g3 F΂8~qkqJ=C!qx[Ro9D^IMY.ܲGj{+YY[c/wdf8?M{j,WV'+UE]r. bZE=.:hЅq4B7 +WDc<Р#a:e.]FSݸ P m9(߶1>69>z>JBYA̬$+e @¸FX6}!![OvIr'{9$ .pӣI ˸t3-qJK\c6 +ɲNEnI)w(;C^ﭐ#^l隋 y+*= ꑍXzX +։hevώY0U;߷}6Ӥ7Fj.HkHąX  +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 39 0 R +/F9 42 0 R +/F3 16 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 818 +>> +stream +x=0{~ʤȞvW0pВ+jчm8 X+}?Dz|wZxF `J 펵<[T@Owf2hF|ЁX|<:<bGqVoZq @RS|IKm2<㦝9![yah@F8ݶ\Dr>Ia==ew;r^֮@>9QVSk*% ]0&c&$YwKt T;1TAaE}*^4/0Kc`F1! +2] fTYaƭa0fqWc&%fc7賙a+f&E7g,zf]-!! OR`(WBNQ@O~% +Υ%-[s"*Lxl0$dkLrCJg>|Ҙ&ÄL+1>0)=))}|zo}~<5; _M|+10yj 2$F?1wS(o^L[kA5Nj^jkŴ]ě&׍xu&ߖ\Rwkk՗b\IS뼽8/N}z:єG<*S/Ws> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/IAEDAF+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/SPMOLI+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/RKAXVR+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 849 +>> +stream +xVߏ8~/nmo$^VwWҦ8 mЂD7|3!qNHwyC^ƯIEff5dBQ kC<&aD!DO+%s*#s fY(1g#y o4]ϗ`JtQ[!23aIqV/2ibBuf惴3&%(1"#x7kM,d)ߟ2HcRFL`U^Rﻻ{TȈ؄{9gPjOL F3sRg +ӵjot#ٍ0: J0OG-n +`q7) #OСQǜHi^讞YwNwr{LWLni| + +TF= `Φ hl>AQ[˧j1_ۻ/]5]?xD댮}ꡎަǫ{UfϹ-jEF #V1tlMe!ewӔE h Q9zٖ'C<&pM)7{btlzց:T, +r&wzT̮٥ʢBtC~ wLd"uհPf'[6W5^pX=a{__!o==LE.!Jޕ7 +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 580 +>> +stream +xV0+|Y J8R.mU{L64BJ*ll,aU`ޘ{o AkO}|@|ԗR7=”]ĔJ9ł 4gCa:u3# pnAnubtw /S`grFg32Sl{%1[gŻMVY\";֬yY4,Uĉ!Vټ" i0'T,ycS-s1#`k2gHV֛|iqcmiO'eCF4RUF9d7EE6"7od߲5 Bv;Ŕ/Z>d8P BO~ġ|d[q1TV"f km4ahlwfU֗yPiusd m46ꪞs*Ԟc"`NbX/hkWWBӦe|r;ЍTêgL{S;v:xyv<pX#&_Y +[# P L B૶ +!THW"~ ^GB +endstream +endobj +70 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 381 +>> +stream +xڽTn0^"?HHv萰Qj(R54Є*]rϹ?F4܄a@")@ ݳ†r˷_G$Iq0)|H:eA8?B9Ɩp4@0u;@G&~fEjC#!pit`m_j(}e*Z:?Y;:Ǥ *5iZY~dt<,x:j~=\Fo%=07BNmm%G\feBw~*0iUjMoXfU5=!?҆~Plz[g۶ͫ> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 757 +>> +stream +xVMo0 Wh+ Æv\pҴ ]a.?ʒ#'N,K#H! #wy|"Fp $[9E }DN9*WDW/8pڻpn@By T :QMlHp' N[<!-(I&pa~J `mA r+a BAŦd!5NZF@)$k,ыl/BҜjt*n `H!RsP20lץmRz ܁pJB6"26t(Ώr](v[B7ؓ)Jˮ]=V~Ly؛{ɁJCa"]½Z +!TǙilWɮ%ic&_1/*|Z-sު1 3/ (KE0rڼwxj0-ӻeY}ZfuUׂע]]}OJvÄV2tc4+4$p`?i %_Du,X/4(ZnjN޹.=?Mm1{\YVǟ}_wgGzǃ![76+RsCG4a]QZ}/h/&χULhqCXno?o?&պZyL&aUZ_WW +{ޣL. )# +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 1032 +>> +stream +xڥVKoFW쑴}?R)c\&ueUξՒFܙofofHD 3 +[$BH3bFh1c\5 Xqڏ۟o5ri˜!Rx˯X,’hr&b1Y| +(l[@w[(CsySYXߣwN[eA #2)90%dϐ'E&+u) nUYg%Z{A%"g#baY9в 60M,/c83@ 1 +)$@@frx014!rNғ'Ak<\%J12FXs*FоJvpWhtRh2e)SM ݔi$_D[Ց Lϓ\1ek9O%\xpEFKQą6s[%9V/}^AB8`^I&~$%,7u|̍ D0]i-N1iʦZoU2U^Lܿڵ]hwv(T HmC&ǧC'~5'kS x2A`ο4`g'f`@liqCܐ!j}HO88·:pdע~ji Ы2mǥS_jIL`\]2H`ES֕2̪>ԝ> +\y;>v//?>/ !d, 9ubX<75_ݚ/qݟvNj5r5B\IX2# riSY9gD pXj{|5d YlU +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 583 +>> +stream +xڽVM0W 51q\fr+64BJ*_'`XD ~<3!jަ'r ad$LbA!Ib$>$s1~M? !Y +b$0ZyM5J孊ojGqJDqS%?db| +Sùb>WNE+Jvy||ecV9ē$ PT,*xbWT}!Bn}YuHVr%3l@ZHg<쏻LY Bb +T~7〓2V'r02 +SX̻h#ɡʱ 3 Pi bzSKQdE}&qHf]I\ ( \q +&{nazm=nu1hH쎲DޣFoIY %iQ,[^:16^m Ze<*#iB"6l}cXt$7HXpI-iguY#]d):ӤZ9 rZso)~'W̻}چdʨS +> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 590 +>> +stream +xڵVn0WR8R/MWӖ[Ckl`r1aͼgJ PwpW,q +D"(jq1$cş'@b|DF1kw7ӈ, ABk  7EQ?f$.SBׄٞBL8$NLg+9+)Eʈ(ey4>L!7L~VK}//'#{A PmSFrQPWJT!&L4?6$O3W2;1~ g=Qr&gΡ"i?߮Zׇn_n۝~ھtϕ)j-z$i"|nM=zu[Wh'E1wORMDQ2Y,'/=0ЬW %}8-TzB {633}8˞Gr/UKC"rPn7,μGj9@pSKcyUco[KukƕdCӬnm}U]S*pC2]lӜorcJJp.OL1LUlyj4!Y Ï> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 241 +>> +stream +xڵQ=O07:u$ڦ2D8%E +zPD%t~g);L0FLK'BcDKNER(!+(޹,0 C6oں;1zߤHf"1(9;̮aS%7G%9h6GңxsM44]14S' +endstream +endobj +94 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 972 +>> +stream +xVn7+E!E^hѢN.keL d9`ˮ +cvцCsI8'Hl~#,gIEwf5V1!P!@9FⓏ?f ̛"eJc_)X#T1BN)D6 yG48+/gZGFr23-=u^ E!cAg kȳ"sSY])-An ;r̘@S(A.b +XTp`FbB`G.b 59aކ͌'ѪՑBK.P28%Ӿhh d@&R(FyF[C- ܹ5b6*c$ V&f"1 +<{J $s6/7\LH1)2]I?] y_*]sWiDtZQ`~܋x e~a!96;dlS)Y$}i&^-8ghN!07ӵ۾:y~ הk@[Oǭp9z1)IuYOU5_lwͧ}uܔFeQ=@9y{JOÿnocÎzg}uYj5_t|~ϰIcoz'<"pr'I|jFfgmRv{w7KcЬwc;^^UEW8"*= Njӑi=L^nt_2Mx˰<_ j +endstream +endobj +98 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +103 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 102 0 R +/BaseFont/CQTQCY+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 884 +>> +stream +xڵVKo@+7ɾrA.[ T +mI*xƻv#|3|;6a!=y)HE߈`5Vdb3ʹУ ~9E+xv893ă7 ,Cr-8Oa U]iC LC_{Vj8C~ (_37rav% W F[\1X.8qq3=hA \cɅ{|a'aͲwRunj~}5bſӀP,z]bSk{m4X,]+8#V}P">! GcyDc;tc!* +A |D[PUBALtоg W0Ljkrw{滇jqCk7e[:]IqxBq;"> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 453 +>> +stream +xڵUAO0+zb[ +4N17LA64xt눚 }~+#f@nev~I +03 `D|Ɂхń:{S$t}e-Z߶+> 9@do$hIexmy/fl:^miY6\XB<> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 831 +>> +stream +xڵV]o0}߯c(v$6Ǖi@YDiƤ]NH"m$:k€1rO'ab0$Mx&B##3zAgdSL \F +E'mJs G ~Ql"" )=ɂN v؟ DlP̐*P ֓;ݱ9&ՠyQ)cLTXԚ&hi n S mC$\~i"mD1FT }VةX|}|M+ylugH9snmeWd'e1ujIbΔ}b)F :Jy |Λв8Gs=nf/o%t5?ᜊx3>k {ۼub\78b,ec)Wkޛ.fŪGbQːA +/=(TT^|2_/<<܊K*MkGS覮7iwzW)w ʧ~Ͳ,{@"_'DzAm;i'\[F"T?ݣ4](op$͒;~[Οyry^k|۟V=%ͩBpDwFpP6T&[[m:pw8B c4ƚ}4Vf4hv/ˡXn^M_ο̟j6kN) J4opTG_ +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 1099 +>> +stream +xڵWKo7W+9|-R)c\Ǖ T;|i}Ȋ&o8&qNIxL~ܬ+"l$F0 &>UB>k%ϛ_W q"eJ&=*δ$T1]8xrACfPӰƐ/y#ѩ 9ēe!  jL5dl? E &L@"#ӺrDC$Aj1Ђca*ȲC} +FÚXG j`+725ECxRC3#Y9bW _0iKDqc1∨##!" &8V'׎-h%^h|5<[FEʜwW38pI^q=f( CdT ̚BeQPIÖ7̖m!2;;`OzI1%8lvA扸 +8`!ؐ`y)כ[y2ΠGKJa3D/W_` c*:AZ7w#1м>Z@t$Skrfw_ۊ~lf\'t`Q) }I7>|H:O)23( nbgN>4;JԱ9nd4NiMcDf\jv?>>|}l~_1Ʀy}fq1XjVTlE!M`™WYj^Jan\:cZ&I0wϴ.~R +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 524 +>> +stream +xVK0+|L9Wb;R 88%RP[,kBdyHbd^ʹ=0*@F )F$!H^ @9(a$H|a#͌ +␇YA2Oc> uNy> 2,=複fz𗕮go槰R 2%ę> +S^r﬩)dJ!%SAUkt*oګޛ@6_kյYols~Kׁ9欋R W^&ƻ3ZϨL2!tM cEG$J]S}hUv(+k7 Í$*\ #GZW0n:W㿜 Np]tH0 V};UE^veS(Es󗇧2æO>R4mYV'ql\ =G:W~(\ !1&&y78 +endstream +endobj +121 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE0 Dwc2؍FD`DceG!ӝӁ#砃%+MkH(2`e1g^ߘ֢x19NuQ:k9dglK"Bbz~% +endstream +endobj +125 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 969 +>> +stream +xڭVMo6W(yC.9^NͥV65u@~|Zi% E̛J3go_7Ť"ۿjBe +׿^WB @!yL@ FG? DV`BDC@--L9B5re~'ch|d-@UB +KifA9f,G@J$Oz=x7pb͙3#vS񨐜L|jXSɬJP1$Cf( c6i f%":ü `Ξ3f|`Tcv49bRV c!H\ +80BsIà_Υ^1Rِ+Jb2yh&=0$}2 Rw c^wB/ " 3kF!gB2f8 9 !tC:'b4<0K#Z̺&2Ɋ_HD{"lS'J=l?/Q"P4 +bvynZjjgOrtLroPSv㘀jf0 m}>Ozzxj4뮩6&_RJRX[Ug'0pPշJp'j257ebn( m&H^צFN<đ<_..M TB:S{쓫,u([W j=rE gqP,^TIׅu)SAl4ݦNwZվfD)&!?}FG|N1SW: Il.Ӧװ.;[^NS[(F߭sέEnOy"G>AQK0 +/m͏|@|*|yp' +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 602 +>> +stream +xVˮ0+4vl#i˭%7K(@TGޱ, 93G"@/d# BA811ǯk!p¼4B2+}C^`8*WAeJezz. +q8-ooI<%O԰*OE~>s|ۼ_Iًt)~RZe riַwV(7epU\R;I}1UzPL]+4-řYu5};7;_|h ͛@3(DL0;gR9gĥ +pjG}yUkvk:=mӞO׈jj٣j +A=E">)x0bܢОjG$sFJ LdR.'*MLMiO lۀZ$^@y961V=0<E8k/tUA7< +endstream +endobj +133 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 590 +>> +stream +xڵVMo02?p^v-H (!+ǯ! 6Vb03̛y j._DrW@D`9Iߋ?O8Mb8\n`Y@T. SAm {$1.SBof{ +*Gܒ8*qLWrV"RWQ؛oFl) [Ѻ.xRGIP&@=7uAU,FC_G_ pؐ,ETwbj".f>rMΡ"i7߶\ׇv_nyڼe_؏[Y{[ID~lQUnvOژ=I/{B(n'ʎ~)Vɤao(S.o"5pjf̰,{ɽT5/{ pDg9;pd +9mWQ=%Zd_Wf\I:v4oۗXU=EbH7$?bcܜ挌eDϿGxUcv=P +PspubB ef{S;nb(~4?4cƓL(Z$t)]qx +endstream +endobj +137 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 239 +>> +stream +xڵQ;O07:G@``(CT\'RPR׃ *Fwdnʥ2 3T f'BcB+NYPh+i!{}PXLDZڈ?)?,*I13e[̅#(ۗ謧kf. UU>. My?|,aQEv.>(|f+TC{S +endstream +endobj +141 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 892 +>> +stream +xڝVn8Wp)7  dѢ`f9q7@v@⤶|Yl9o(uι2aA'89W jBO*7 ]}h%}}xXFт., 1lg6ugbNǼހ\NNmDp1'Dh 2oUR6攻-HKx,JXBwPJTeϰ͠6Em^XG` Mɯ-#] ڔutA4H-w88S+"]p6&}jsFHc=Zdݗ;p$1MbV۳A8 Nٝ N?zGeQ?T;Xq+(}Z췅P0+&>wEWAv'lbĊA6?S!Wh]i*~j,cTRxp,˳yQ_{wa ^CNЎ/Ǫ̛jnkiZhFQS^(W;ՕQaZ4pV՛hU>@2)!F+urŭ^5=jنtUzq`Gl*$W"+L>G"k@POBfCJ)=h_H.\>qO~?rlj^s|=%-z.z>,no#m\o氎l|Ѷt:=p@]kh韑BvR?-CȵBj5/L?g\^ +endstream +endobj +145 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1169 +>> +stream +xڭWKo6W𸏐K|)q.b@IumU)iIQ gof(8'_H\~$_*"\N`Vj,SF-xjχxMA)^AV6t<9;(^͔%^ЖCCP'Sy)vD1*!9f 'X\J kΜ+»>3oA"LO=Ƈ@DHDQǖ+^p4xDLq?bE3 .9y<`0gЏ.L tK\J8@gV.W7X2rrq)kGIUYr(Vq9dV1>f E`rl#й8*Pw؏Փ[ޅYER1Xq}X&vOWuL.uhF uIrt[;d*@^ֆvkrm%L≱!cQ=a̕J,R>NM"doSxQ <0!rLzH2 |''a`e3jLjd6LLQ)lקSxscUO% Ȥՠ0 TT-y HKMcڻGphFJBFYnۋl=lko~^vfpY +m5Xb*WPª͞}E:t|`hhq}p\jؚ[N* !fC{}k7ܶ Ͷi^N;0H!hMg7T@y;ؗ!Є`EYVD!.~í{G0豖p3PcIEPai%x +6"^tEJ6r˅j|Nu{nZ[*Bf=Ω[mme9=!Y&ANk:^e@rF#$53+1A>/za ]uǧ'?) ܸ +Qzn%b 7f{Pxenި۵OiwhkR + )JAP +V5whĢϝVg8{~"c8j-^CiV^z2G&|Q/#D +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 590 +>> +stream +xڽVˎ0+Ø)]J+1!I*Gl RU"ŀ9$-P6?p3|# #~gY, >?_OkKy:/o(Յ8#q!A* 4}. ])9~̪ljG_+YH*%ۧ]gu?5 +&Q.kTԚ٢d=ԡ˖:eD(s x|L$y^FI$Ovb) +ٲr s;lSfŃ[ogT}~&DLf 3 +SFS7+60a"ժ[(u^O%_+2*~wy SP)1HEL%ŵMwFSkACSV jƘnb"jqnn/6^c QxU#Ca4)W9p;@UxI"ͳF&zogl'k0Hk> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 599 +>> +stream +xڽVM0WRrH\ڲU-= aH,Aď$y3y3lDbBP79<XK++}}0~aD$w)?3-vgc,jGa˽l|qwDFz6#,AqʣHk&K@m꡸Lp$n&o&*ZDũ/8&>@7ˣ]@n9#w 4Dm|aǵu\5;z. LBH4z0LbrQry*ƘP/;Za%Cw9njGͫȮu7ٱ;6R:`N%2N\iZ̳Od{I +endstream +endobj +157 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 330 +>> +stream +xڭRN0 +/H*;u%-FbHIS ԏlj]HE{}وJQzG7Ii%JސaɈ({0^Xk% vg$" @$%L, ((׺)xIzeke֗K#h ,ߛGYHJCwO9|Ӂw 2iaPEϝ"vטξ]i\wfd1޷r*&ιjݾu[ԕe1+jzzj]_ l|3+^/ vG_W-~<I +aļg1+7c +endstream +endobj +161 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 1013 +>> +stream +xWr6+ś":vY %ˉflٕ2Ń"DfQoH9e3 "Td~O 0 5)\PinBɧ )Yi| Z)!D6-&1ms>IJJ2]A3ea&ڟ\q +m_D` X#1 s5yK YKCѡ +z&W~r>2tI4gNg5]SŜ#Tp&Mm ɴ)FtM࣏킯{@pl&bdu}MMy?:I:7JxisV̲_qC &nA8 sq)yYI7>t~B[,XmV۠OGRcCY7hUm'D + s2lN{ %eǫyͺ?Wx0y\zsbe(01KjWqqn]wq8vb үPZa +endstream +endobj +165 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 942 +>> +stream +xWKo7WBR)c^MTǕ D;CaKD9oR[o SFhöS[ƽƲ/ +A50aaǢlP*,pϬ:J k'R`W[z VX'lh{.eT簱p%U۬ОL$ gU(ӏȤqFa!e&)y&03 +V@2Qq ?GZ$0%L7rU^ +\%͹wj}%1=17.pF+wG{82E|+' + @(02:/'3T<80yHABiM1y{̥ڳqwSi`.?'@ԸN(M I3K?WaU toۖjiHq,)!L}fUӌY(.P_5*i@Wʲqzv뱝M!뼜cޒˎ(W7]uXq/jo\fIwYeP=SYT?B8>]~%W^)ּvo NCzM ̳)sp`)pWxe y{s5b*3ѣ\ܖ}$n]c\peYʄY ++}yY^)<[fnr_WLJbWLMp} +^z$9:kx`O<!! +uLgs!ImTDe%#N\V>>ޜ6 eqjg!qаLݒ vQeLknM8a20 +endstream +endobj +169 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 414 +>> +stream +xڽTO0W!e-k)q3qI% fdb"{ !V<;ws` 03 #:ZԠ +C6ma,xY,b 1 i'dzȑgh$Z*40B=ނ> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 963 +>> +stream +xWMo0+|LXz_J +#,Ҳ@m%ďgl'l>] $xf޼yI!%{:{h4[}b3;#ag.Ps˼6]a KE0YQhp Ŋr0`(fܨ+Cc)Ytքt*UPi:n(BXΠD ɦ'hQ#b!y$ĄGG@`ThRAa[ BC.EtmWl-,9kA=S +,mE=ޭxBI 4tAmPקI +)S1G'M`JIFH=EIƎ:7Ik/9qǎ'A64&8hȩ1܎& 62:La0&xT[8jzgKx誏HsԷ:z#B**"X}iv0ðL <OH{7Czs.B՛(hf]msn=Xm66IHр7iөv0Tۇm.ۇ2> ?`'uϙr0des8X}o1N5)Kf)#_M$HrDWӁq2\>+_<ծDA[*A˃jʼznˌ~Th?xuD4No_8/n\HhOF3E*lnLoooWv}OˠbZ}M@z|jyGR EϪ}ل|hmyliDD(.$5H?p +3L^W:UW̳jf'ģ"ev qn-h3R+Tw3 G~<(h>=y +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 563 +>> +stream +xV߯0}I[’F'oVr˒M6#&-mQޫ1vJ}p`Ng$Ip~i H~_TR%,gR 3ܾ6"uQYB/Tzկ\~ÁNG"""#;Ѱ`A:UmJUx fxuR^Y67KbT lQ> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 543 +>> +stream +xڽVM0W2klcZU{h=] H! h_;0!rg33 2_@80;Ȉ) 9rjEfr(nZ2I[ .#Nw1XN0G@(̉\`1YQ6J[:ݭTbL@.NۼܨeQ9ɒ4ӱE:B-i0O*<(3e$9¹o$hLH=IT33I|'3Λ1V1}Y6-#ۺ0Cfm*rSf+7À߼L*kЂ:YF75J'H,e̋JYp#F0+^p٦[y>Uo7l;@sToHS%r "d5jy_isi>Ѩ`/ PU +7OjBeЇm +*.u7QYv3F_ۻ2Lsp5rq~7 +endstream +endobj +185 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1052 +>> +stream +xWKoFW쑴k[/E=6a ЮP6Pȏ.)KR{.|30V=؇X}5T.lRRu RG3Lj:O5h|yM= gRSz*")뾧<H +̽dTz ~?TqIbBC +s/iAh ,!ɠkZwYaW#Cp03Յ"n'{OT%^G, ېEtcX^n\7AK/<,4r7A1%Bj>l[:Q FTzKeJ:)% qeOIΘ!A:b4 bFᱪŢ9!2a8=+QqӺ'RT/V 1@jI}8&TXZ u%6.vY,wґtFpΉ.mBB.rrW3z`QI)ewb89)tGLGCN&?hk;ͩ.dDɺ;n?Ԛѫ&wM^=<}]Z F;i\gK8ņwʹuUxN_$zB #3:Bǫܠ}<9XFyw󩕍^Мb7ϬySdeН~KVzD4ZU[*W9zYdN^ 8 +ဖuɪdZp0 <5|ww᷷۫oid'B?:Hy +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 500 +>> +stream +xڽVn0+|E6 尫MWnel0YQhՏIi*gތX}_ 218ۓ#@3Bsjal|Y_mډ Fٹ .EVBRBZ5itW?<\ʨulχ謋1U5=uNB'[n~neD=JJ'!7zDhj[Vv,܋#qƥHp.*){6np^&4{*cgkn?֗2𥳐}|%j#-M"w~ZWv4;~Wbl9;mE#,ts5)b̝Lq.vԹ,Z,SO3C}RydY8J_Ee|.vbBfjHit[7Lsp_;T +endstream +endobj +193 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 818 +>> +stream +xڵV[o0~W1S/bC &]*uh(~q>s/j6$rD[N l@p9OMcє9tQE:3ɀ'ak=> y$fqN(7iE53zU({;fn^.'lOɚ(FӮGu%<u%O|0[΋Kwe ƗAjl-E1/Vu<3:̳ 7yƇn=ۆqi[bM)TMu^$QB>;|Jp(n/3'TgPTup%/xs(=&jB,xH_0f2,X=M: Ud#f_OQPZ<|o6=lT`7gS~iI`:'焝mola"jHC+RR1Z݆CwUfqQ#70@z\S~]Uu H +endstream +endobj +197 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 829 +>> +stream +xVMo1W4HZ5cC/&BHDH +T%R~|kڻ Q/⏙y7QB)C} %b&H3b†e3UvɮF\M5jV!?cV#,.Fe7;&F߈SJEX$qCmKtQ9B.~vEF2*$aW8[cs# +.Y?p^2<0TfӘ֓ [ADDT-4a<-rEpgԐ% Q^rE6?[o$y"M5ΡU)E7=&A| 7ƖL1Vڑ)&ΉN}Cddi8YMP+`/S<1Sjƌ4P#8ܸNu}>Ӫ}gjq]inq/1 '2䌱q\\r^X{].4N*/r4^unXd5ǻk^ L avsfͶ\mfr +endstream +endobj +201 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 979 +>> +stream +xVKo6W(uC.9| R)c4$֎6-!)J]@BR3O;EbRgbPdc%lM]}6Z֟3LFGߓ:J4*1އe!Aԁf!4+P/30mδ$w{> lȜQ[5G&,-ATq36Ă;H/ $0dP{yG*O/Ʀ tS88ؒDX 54G s6ef̈!@ @^#!t?YĚ9e>`gdfS ".q姪%R{yGg<C)CC8¢#NmE@aM8,\ +0򉝯; L7!P~{$sUMOX|w f2:dtЙ;N,Wcqu6sK.CTPpcC~c +{o!9 )Gb TxIAyqZ΃w;f[튑8|!́|q7?T% +(}NgY6}9][`V +(U[5oXʶs+6V,N EV4?iQOtTQ笪w!HpVmGs)t\`^mӄ-8:;SgbֶOAܣ<;_GU>+ ;wR1[7Iogw?`Os$ߐai0\s/FoכS1?bڿjީS6vf\(WQa'/gab&I 8|eC6/#-!f|:68E{;jPvjps^_ϧr)SZYh$ 4y7ݏ&` +endstream +endobj +205 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 579 +>> +stream +xV0+|A +u;eִZR TM>ۄ8`gRp3D"BzOhd$C)Rp¢TSb D-mLJ"SI-Ы,2XzP,rjΛ}]nkuYMGn>2]Wm?7t>li5 BQu \bsx MG̴X2X5#*o}Eq.^ޮj 3!ԋW]˅lz_r2y]ZMgO Ub$D 0(KZ@fܒ8T81"\isoXh g6,܂r8-?_tgߜG_Z) +>jNK/Y:i͕t[e6k-(%%l`kHG'.>J7n;H4K) 17fl0lS> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 552 +>> +stream +xڽVˎ0+ 6)>2Uj "SV64Cck{= Cx{>a +\l@Nl&(BFMHp;M rMViWC%^; sz1~_c?9 72C̢2uϏS &/1R}8̉$Д :8C?m* pTur8^,j;쟒,\ı}9QT*ix.IԊ)UqEZ-ŴhiZzTc1>yun3t5:m_>ʬU=Fȩ/K-5j.J3+˂U]O,MsZW7ҩpZ fܸt^p7y͹˖]: wsVoYG> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 905 +>> +stream +xVKo;+ω.K &i +ڴ$A7Hx3ɤ y}p9D򖼚M("njBbBp#*8E3jqnƐi_4)DGKbe4GbXV:<r7\ΰ E'9%͙n\6 :8VT'ƒ>.XZSRA Q:_Lh1@qό#2BI &ck>Tgp-9]ls%0yo%14SɌJ1BpOF7 +ų+7yjs0N.zXP(x>k) >KJpL_C ;_x.cJz~5;xx1cvxS.$9! Z %!=}pdoEÔEC{k!;s^KG*<$ 1X`Qy 8C @̤µp0??.O_9~փL _|UA8eQd}w؁WQ)n=Qu=XwOzTE} t *x%RIIB*)BvA*uJT`x5/ho(`vFr `ߛcW* f}:ը7d $y+UVP4fhzf>TXn^0N#~y_|zenғ6RҰzRC2H4BYNzt [*x'Q}XmSPSWmS&n^Wq{]6["_^+Y,uM_CL9-]  |O +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 1059 +>> +stream +xڽVn#7+x춆Y$njrh;c@8(||d/MK>ŮI8<|]WD(&A`Vj)M?|,/@{C<&ؠ$ߒ[oRtP3 +1g_c޶=yvJ"A2ª桙2NRm2ib"eIz[nj [h*Pb yvyLnٹcJސikp2m 0HKi/dˈ힚y4/a 33mD3ɴCCCfA#' +"g%nMuwߴ`6<1UaycɄfq6Fkm9:ZO?h}'YK$E%i*f=Z`9F +Man ^MVq2{մ]0)Xꗒj'}=')VmRBpU--TmU5! ԡ=\ +/V}VzF4J 8O\ ͧ 5GgTZpT햍|P$<.VCi>r*Gqg;[PAR˟y +Bc\vRd/mXeUPO>6IקOUqsx~ٽ@; t뺦wwtq0V2>pOTBF + Upxj| +wyK +endstream +endobj +221 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 506 +>> +stream +xڵo0+|$Loêզi[ف!JRN`!!rAVkm|s ΁@@r GHqxzL&aMMs@|[L՝7&xduro( zdh )?X:6~nTd69on2/Nƕ|jėֶGeLMZe[.uýo1,2b%zH [AtI,% 4VJKHjS]]< cE2i`:HJ}zIIf? ;|^RlYZM?ʸg[{t>E]Z> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 982 +>> +stream +xڽWKo6W(ū1Ç Т٢=6 dl$:);),o Eot-k?BVJ@Ͷ?~$ !>rVBi| YA&ҢXPOa[o&9[8p=0pNN,4MIP,!=C:#:T*[s=O,b(6i~oWl{3aihbS A:Zrp69'[1XRO<5԰DN%hdJؚI,A2B;-'3;-,C O&i|GO =Ģ7?TT:&e)]̶r@_4=n9}eԢ66jБ%8qr5|p>nh|e;y+!J2bqH,)NH nt +h{7B<*K*va^>8{셤;HBssVy:ݰM5[M㬿ȻA5Q]1ݥ\7zՆ { F!3p^o_veWeb]e͕,ln{Xe~Lag?;8džK#7dψW YB*}4V8(n7f> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 1209 +>> +stream +xWKo6W(KR4[Ǯ{jhn ͦI@~|$Rd;)Bo8CW2VTav}/+.JsjTE Pwk+9#tl{]9괗A*U^"DΓZiE_ڡƨqіZ]QށnW}@?& \PsVhED2$?ֻ14Ud v^"&YKՃS;'8T/3`R4A1.@0g*tNS 1v&@ʙ! +dU:CծjmjD0zu 5cs`^TSmsЙ~ex<_2r23c@9T +_<"zTDi#@c UZ5F51at7y`tm;klL6Μ_n\@?.(ʡP@h +|7j$˂2{byiIGHriq⋑u~r=CoV_(|Www}|蹋!R1}=5ɷ}756Zrfubkzws^qH2 +|Jg YoHm +R /iP%ؑ~16ݭ{iK[Mx̐.j^Șu!%ۊ@nФYWC8륌 q>`{MשwTIכ&ŷ(,Uo+@-X(,XتiB]19֢PᎈbPU(V7{! Lۣ$ɳswH="[X(o8X~oJ; y"2|'}R:qQN ;X|X|X?Mf]Nifɛ u&zw(`;$rFTv5ˋciN[]j=%.Me'1FoI٠1҂\9c\aPڿ`{[?ڄh +endstream +endobj +233 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 523 +>> +stream +xڵVˮ0+EEV.v &E +%ĭm=Üx@B` x<=cHGr@`G`9qo_mHGTʷ!#ZVvYYcWkcGvE$#[Ҡ0}D('~2&(\3|!fYD#t'8 ac|YN&6oޔݔЂW# MxWnm"aR0qhaӥdc_д-r%asUWQ|.&.y=B*>ZT 4=*C6o0#jړTR{wMy\F_mm_ʄ'M qTd=8TJGEgS'<O\ۑe¦2Cs cUDW~Xuѻ狩O0e#T$fʼ-~zfz9¦5n>4۲/2Jjw> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 196 +>> +stream +xuP= @ \/׻K(VQnҊ:(퇢H呼B@I0тbHeI2:-قo&@!"ίAG`R">e.Zm=YnµrRM^bh;BrҘI%5'8~뱮~U݊ yg0Z|GɄ;p ^`RY +endstream +endobj +241 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 1180 +>> +stream +xڥWKo6W踏K2KQhsiJM k +wH"E뭳'fmeǏׇ +\hNj6T-xjχii Jr.& +r&n3pa^܏R10TThaidk :|aXFh"̲3ym+Lr1$4d6Ve` TC^s'"\P5/AJQPkhM[34y +M5mC&y?yw4/8mi3{2yk'[IY~N +YLɈuR)þmkm$h|Im`7W8dҽi?`rw;?2>QR92Z8 l,W+ fmQ +j۵*-Mq% 2;WKǸs0@1w(b5ցa**귒Z{RJMW5{v6Yiij;MMWA]T0G)`@Ǟʀ5&^4(dI3Arw_pģ0A/C'+W5 eHwp _'zI*|3/ͼzd w:? [\-K;>XO?$!n?nΗ!v8g!F!ɼ/.o_cPdn{moqG;tV$\U un$=+ۨ@)bL!G( K=#ҀKې/eppڰm+YCfAsOx)ZE +* X2^m aEY`sWx1.~5Ra4zyZ0)*GPn +TJ+̓y5WԪ}D_g~"Ae\ֈXiBWd]' IjCt 9s@N3ThiOsQ+Us13~FNj_ؒW -q||C)]CWD>}6nJvL v/r?bá +9lvlw_9Xi ^O?ө" ԧ&O_ΈlyUq݌T2Ux'n"ƿ҆k +endstream +endobj +245 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 616 +>> +stream +xڕVM0WR)ivl'FҖ#ͭi,J +TM%~|vB 'x潙06^>y3=Ie?D Q½7e=a8fHz( +2Bh})n/ C\ט]D84@K X Wds汨]c[Q^GERs <0qvX05tCtU蕗T&ԱK ˹)bYO=ܔ'{ȰEt+ ׀U Yn@nt}4n' k04kaea7fURwAvZOKP4=}8:ʪӐSIH%p۰lk{9 WU cgcZ6C< `k;e֘)RHgqOGt I9)6jaܴfik d: +y ?,il.h,6gOE=tsFJM`p_xjFjt_C0Qjg&ue?sH +endstream +endobj +249 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 595 +>> +stream +xڵVM0WR(8٪UOYnH5ll@TMl\77&A +P/_tq ́@@ 8 a df7d07,8wY$v zf?oHxŘsJ1ARKtGSYuT:|T>V;ufsui[~HGs$m[Ce$ϗ⠣0QP+рXjg&0ނ?< 1!gWܾn<6"Ɯ/K}ͺacRNCꬳ:J Fr;iުKSGԮ,fBL7@?Btk|-p{Y62EFgHkص(eNf{YX\98Cb_h5Linhd@+HoIu5}lpj7kHV0lM\oWFnGK LRW⼆IbrtP:N~CLǾ29_uMɡ,Š|!ƣXd5ɴJ~= +endstream +endobj +253 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 391 +>> +stream +xڭO0+b!--t،>xY x  &r{wJPmE4RQE($KF{S'vT캏-)%@×Jui7Y4; &b&U`=~:X~ܚUiǻҨ)?=mJk 3~wDWxO}'s(;Mpj~u\;{ᗲmtq8qiFo=E&m26+Lv~щ. +MZ'D5Y7oc&B-lL~2ͳƗZ,㳅m./*}6ar)T7P!h4Q!I #"3'_U +endstream +endobj +257 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 932 +>> +stream +xڥW[O0~߯cήv*i0m{)-UiKb'M:}qsAP_>ىDL! +iFBX"ab8csP㪜/N4*I Hr.&߃c-Dۤ :<RZD*=("uA* J2bl-V (]4.#Nv&0; +\i27d| mJB_}H0D蜡19h +0GO2Ě.9%Ҥ4rӘj-­MU0 '~!.-[$(#l7O&7(mLRI8a7X?D2?b|@&Mnڷ3n ĵ1EvMTͺ~`㷾P +!&mOi]UQ_p* wec߯F1SFA3Ls*btDO J ;) +wїU(5a!:ퟘ_W퀡Qƹl֎:bΧ֗ٹ[IU.$P4I6*35XQ]xmﰉ'&eGȪi<JfXdLINi5o!9k74XW蚩C BS#ҭZ+G:8tmVaw{O;rdQnԋfG$=TTapƩ 4ƀ?YrUɹ~?oc~ uApu}|OVKG@> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 1286 +>> +stream +xڵXKo6W >_:E{lK1Ԁ뺶n(R(Qv=ͺ\s.7^4WA4 -݇[ |<'5b[l<ِ`s0uNX]cX ׶aa3?$ nw㈹{a!p#^OؖHGA;i& a ~= 2); +O +2'q<1PL( roS(ttHd O '( +r|9@=\W|[ڇyD&vhS*;b ɪ y­R-T䯂^=z_{ +U+#as+LϷͻ0+0b+ =ݷJrK~Jdzl zck,Pn_8u9h}FvT>XjF`z *2ݴn~N1S9JXpV.Qz$^?_5'3RND䯭w +gΔtvj$&<MCf+l".mU +@9ur{lGs3(0$}:6kyvشגa{}ب=]ߜl1zi>\0u)H0Rov,*zS6O~(zG)W/\ٹ"(2@1m1IflZ +E,,7eZ'6ChKU@h Ȋv;#KI, `}VZG+tc6Su O!#- nl;/ TJKN- B )*P²GNuh4ֻֻ uy)RArU{Wi{J,pYO儿*jUW-INqQR9W}MyZ }޽~Ѱ #Zj; ꐎEv򢓗ڔR`|ԤصKs> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 597 +>> +stream +xڭV0+|AJuۉeeSRi?ہv mAqf2~y"!h FO4F*ReQB",Y}`< LDc*HB,`Ib*%RDpe_AHrs<&kz4†fNya.709"=ǐbWyy)1W^A-ǗWL˲UTߛrlv1=lnWWfy/֕}dqgKo^GIQw->rk[(,crM|g3ŧ^ymRl*ްSNtY^H]dn.-IJ:Fa^ގ :YS/a}.}ea;%.վi1Џ?6p+\ (&:z52}:t4zf;WWjR?N]SFSx73 ߩI=-*d&p^T$fX) +endstream +endobj +269 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 619 +>> +stream +xڵVQϚ0}߯˒:Vl m/-ߓml ՘8u2Wڢ ˆ@9=0]:~" ]ABAq(@+D1 [` %3Oz{Qi Lzf[e"8<2HPfמy iAoag}7Y0̗`۳D-\TrT6b1L"a}RsCIݏFQ ΊA֎wU4 +%(ŭd!1pWR6-t1=KHgmGJ"Sצ;!Zg_ H/M4+k2X'݀[}[/h<]@=x@^yqTM<V:\aV4b9l*= 9D:33AꀄGe1ּectQ[ګ/*v[YR1iH5xH_\P4!D'/"DjZᆺTՄ=SݩN[^ZsWnfx zG: 7<޳K{-^o{q4W%a> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 407 +>> +stream +xڥTn0+|B&#Fʡj=4J(uI%Zk0QIQ\gYl|Mh }A(/@t@8w!#/@bKjN<ӬS?1̉]02g|l n?meąIYGB}d@B˽LmLlX:6XVV|Kôʆ=t]X(:4ᵗR +kgL6[S[[<^N+l*uMn*_VE4Mk6v)ʾ1L |y|FY; LC‘EUmv7Jti٫U8Yآ2K釲 ZcTOq ^u=;5̸?\lfcvR ( +endstream +endobj +277 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 1061 +>> +stream +xWMoFWHjw|hQhzi,'l9]T;AZJr˙y;*(Xo/;Q0A(wbDˢR\9Yg>,SEMjecJP҅ G>Ѥ6$583f]TCSn\3\Gxfc Q*2UzN+;нYX|84A&mJLZ~`ŔW@ WqƈDP־Uc*uR@Uw +81#Rlׯ UD/+='s8l2WhbP+idck õ6:<4+?JX]\06V@(~\~ +B9dZvn<%q8m߻4Dؓ'#\b2мߴOJ۹wPtUuLvqݽl>>/7M@fvӔ|׷{f򟇀+&~fCā3QE.&(D::x@)ZTKPI˯!-s&zdEh*\ ]z, {,.F25K3kUn'܁Y%BbįkZ7O*8ϓm~&ŀEQw1E;E3Χt+ΐZGo3Ygjٝ?Kۋ2ICi M& 1%Ft7%30U//ϛwk}5<%GձٛZ\v+t4UIm8H*uel^#͛v5i c8ѥZTRA S= &D3L`^?<<vn6aeq^Ym[VxW9n xTg4HT~Q/8> +˵ +endstream +endobj +281 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 141 +>> +stream +xm0Cwt5z #"E0l1T]J2aɲ, =&9ZHB!ЭEaHۓXia:D~Z+6*=~UOs^:~~>q^@sSؗeL'ǹ+ +endstream +endobj +285 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 1116 +>> +stream +xڵWKo7WB_:E{lK1v׀츲@~|]r_"{J>)D DL! ҌQic3U}Z|iF8cJ*xFe($.zUta,("5Df0Dp1h9mn5l D!>f 0<ޚE*=xzY´fH7 FEOJ\{>r8X׈"ee|rB0Ĉ>QK,CXϒDAs&p kC5PΞcD7#@L;{w9V:c!8ԖZ'Ĵ!Vw-{yLX4K^,T04rs95QG11߁ HpɉrjQ#jԜ4^tR8o~ i1/'$hli`.#呌'2:EAKK)Ls(_IVCnglk˓hEJ +3ВC2/gmor(X\#^(I#y7q}6AZn/9Ksg1jJWcmv>Z`[㌿ДiNQts +n!ݶ/M۵YI}x5mo޶5-u%V^b_k#U? bx6FVK>qZ&(M=s<2$bMW0E+%u˾;\' + 멿h9$e""t*B@>Lc<׋srͤWBPWxcXFq46"We9' kԙ9œ-#> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 534 +>> +stream +xŖK0>!gvġU٪UCɭCC@l?&6΃]yؙo&(DA=}{L + +HJ #F ` Ocl$T$?/q Gs2#EGw GuJ#EAȇe]356x0b*o"Wc1-,i TKUM5P;^dУQT!22iJ=UN"Ag>; v¹5܃FN*?ٟʧ & '\''n-NZy&!ZO"+Vdzނ& +[Lݙ|k)]]@q ĭއHQu 0—3W̘ML[|;]}x_m̥~ZXsՍ$?> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 1196 +>> +stream +xWKo7W(Y! R)c\:USEcܗl=DZ΃373R,=go5-f_ l݇5@I Z}kYF +]XL~ +{%f\5-Id:r9,1a>۩q)N\qGcJe;"FJ)\ &@~g[.1Wg"iܛIjβvig<\RQ9ŀ]UTGm_3áwC" $ZR#;S+,pDsrMThW;_SGyd%nso\) gP^<.tDt)RRTK ?* +mn R( ^M{9LJ)QjP;ű'}2 +cRe& GSCƋ~4K8Bl>͋`MJt\G`U2#j%UD`\Dv̈*@9+aV6UCA mB*E~{7>ғj'fpiT̺DeJtS()_j-Okh@lӹ#aK=ޟ+BJuoe4ܱz6Mt]3#fl]Pޖih.vOa ĝ$hr&e! yCt\!opGm-}YW,r0ΐ{Xrŕ N6lfGhђ alk@*qY)bh_0rmCOz*^n~gIK$BDûׅMCݭ/ |3V|yj+>bYt9#BKm%,[%+YA˫9³ܖg^iNDuM%$kK  \RC(Ba8ijuh$ܯpW2ey>ĈyV|we{px|y8o}pyj)ԖۖVY{S%' r8bl0ܐ{YSwaEqtnaTW|~1 DlX(aO e%|5> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xV0+|͚)٪=fVB4&)IU*;! {l"`xfޛy +"!h O4D2?PL",Xs~aq".><1-”2m$).Xoy8׼ __Cɫ_mº-$yc0%cYN޼ޟMQM{2^'(t߻bTYV`\ᡚ~̣2_} q k5F%߬go҆ۮS-P"j])bYzpyU>CFø2,o=^^ˆec|/W&LbAtg]1$#Ű36LW$VQٳ(ܖ@{49JzHN'+:?(A D[ S*}4C +endstream +endobj +301 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 594 +>> +stream +xڭVM0W2q\fV=u-= ŠHـJ56ě./7fͼ!J.t) -r үρRe~w?[5`N Ƒ4(oBBA'ĝL ARu MFG5>H霐G=lG&Ip׉X\TzͲ41Fv«:eA1_]h[YGlf6.cuÛ2(n2'~NXzLDټ>8M_! Ӈq/c~/Ss{hW]H`>AS+r_UKm`EqkINY +&unfypagV~Wk˂ӣqZ1tN:bƣDQyZSX +endstream +endobj +305 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 296 +>> +stream +xڵRN0Lޖ!q1pt'.XW@4~ -1;WsJQ&sBJ^Q$%#@\.L8|S'5lI53q8f`LJI1QHx2ԛdrԲ cq}_4y_7U[j;]3-gqwq鏕RIn>O߫ގ[r(bYZy]MWMWe ˖\Yႉpi)kI'AHr sI?]:a +endstream +endobj +309 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 1208 +>> +stream +xWKO$7Wڸʯ6(l,RC& X+e"OnwX=zʆI!%a3q{^3BiY0˶?}:f}gVo>o=}o +\XM~O +8x%f\ 4vGI`1B[&MRr)$mFXxP}}SQhMSгX%:8Oז,n.Df0R8OL0 g+3D4ޘ$]Y:д3R.*qypZ `܆%J4n̳gVxDG +DgS+,=bn{ɅvMm#@YȽ=j!<  q*_T9*@ZCECT*B w@0;kLƳ?i)u&w:s@ +`wnlq1KWi9z 4a/KU'xNcE7oz :BM/ՁsxZH&m]awR۹p<_@g;R ۷OnFTC5YDi۳ۇ~GGD{pHpζw,r0Jx=Isw"X#mIfߺMq42אpKI"|GRäto޻7V.$?#R6bz8nݧ/j:rCQT*tES`".YFNQOj@NطJF35tM !f;YiIԔugSG |zĢ<{kR5Okj.! yx">ϒLJ/~_ ?B7`s>7 BRuBxBzql\LUin_^^,V.P `^e9Wk>x^ +VZyQO@_ +(![%獊G܂ԩbE,\ګ]^_-\ˍ *N17^v.?? +endstream +endobj +313 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F14 103 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 512 +>> +stream +xVK0W 1RZU=4J4 0 +Vdل(j}0 !|G + pr #. zmW{ 1vE/§ht` q&1|v . f39FHq'F9 ly1d)W;':NK,-.^; ,8cR{LgNhѭ)|"_'255zeh Z^6M*r'c듐xpc0 &id['UYv;=@ I<]lm‰?@I甽vs;P?0(&R*B_ԾLiPlvtwIԤu_i WŋgQ] t*Uj/o\L,RCU!L,\:l򲶺R,glɕ,vZbXHyӵ'ֽ:=]`܀ r1f7< +endstream +endobj +317 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +322 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 321 0 R +/BaseFont/EVJXTH+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +323 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +ccVU*žE9'V ,3; Vsb11HN</gtmW _]&@S-}kLqyLP>f'L踌Q? ē?%8 +*s4ݶfKӄ>8ޝ +Wcaz1F +ǮD%Tj S}dޗ;r;vrf[km"R{K + $Hkd/ +endstream +endobj +324 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 322 0 R +>> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 324 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/XGVGVP+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3815 +/Length3 533 +/Length 4365 +>> +stream +xgXۚ6`@PJ*"$@$$!$Tқ )DtKQ@Dzrp9gg5|Ϻ׻22J@-#sPFR ,C@H ZG(ee H(#VP@- tqkvAExWy Z``HW@#<8/\‘0< D~3飝1@_2g <^?S1h/pHcWCP(cs6K#p@# CjGCQHJ%!=u>)s:CQ?uw ekkm*ב4"xK_be>#-)--sn<ena8Cp(/ߡ451>`0P$' TBd + rE?UCނvFOA|b;QALMr8;ң%G3==~Y-2Hi^/OsO/J_%k(Z~ Tߣfނ͛_;ŘdJћކŲ*.v\ PpնUpۂuk aְ#gɿFW"{teЖ .g\jKẝghɢWl)+N˥DqR MA]fYI{"Ô^EU 5o1 [O2=8 KŤBs+Bh,bA¼ Bb!2w]/k QJp>_~J?jOU,鞚x@uWU[UFNO9SѮNIjnp`Vqoi$:YYb/$iT:#ǐJ!#a ⎟ا$Yu4tk+6amginEZaP@=qkW,Ɍ7\-qwn+=%i,S,~M-e˥ޢ|4O D˟;gqHB6};q'X_7_+pA?C?Q͍oz>H~nux;MD];K1ĖoO5~!Yt\ 8 L,Et +JZօo,RogOw#R[R@V5A ~!+ 0qGS){f{~C#Zex!,V=g"o]T%^p5x$#Q@˙\uqRi;PvFjWӴAGm~ԼTN%< ;2mۨ!?Om~RYܝ$R^6Vt9;HwY%(!w[ ,n͟1hz%u'ߛkpMҖ_) YH_^ wu!E@/)PcqBE +zeĹV܍#SjWb %j?ܵ=5fs!#˱mrЃۂMN]$ nsPtEWJ&snåi\&ᢦ{ӱvrwOwh= 7 , Qf|5cc ̟1tM(W6oVfK_c3J,TPrpGFyUnX_ram,߃"LB$_;+iot,u=H>8)&*mle^H&Hm)S=s/XIǤxKGeO=$* ^ 2mlj]~hVaG: TD;\e򖣭4 =0rWKC$?Y!cOT3, r +_4' UqE¬d=Y򄞮~qNLxW + 2ʍ_KJ'neEEQ&6V&~EOYoRRJ>Gu '[*[T.w֪WRt&,BEVɆ v$G m1NC:0Ff|BA/cBys+7,O$BY~G_LP.[Rȧ -CBMLOt8 L]`c/{<+09}M@9f3%"\*\vY!eFttYb^;|- +ϔkXtX|2iokj$,=#vd7f!dph^"Nt#VWP\ۦ>1zʴq1Ҿ}%;] IP&P<`d>m<*%\J%3"S`/#u?C(_VW1wi8nFzQܲn3·::Bc*K iw9/_#rA}eH GIu~XV`GtB? %m(uf@eJI,y5 ۚl :JЭWQ7x^8hz3-3S˩ɯ>uC.MFV!kv>.kx]ë1LO{3)BƒVh Q hW'ϢFĤ>[aqKoT}3c^1ON:F,M1zqcXOz=mZ;McƹX2SYK8#!Un[f:X=6i{RiNP+.@7o>W e7լp$U mQM>);]#Y\xWm#xxd̘ lu5}ͿoGR݆H@ ?J&^ f}a/lQ;̥,Y@6F0`[3_~2'k9Ljm (*&ȣ+GW=aJ vM}M(-eyfL{ ³ӎͶ(>nMHU +y82ɇEKe]HZ\hMR!KliBHyJ3Ÿ,j_f%Ȭs:ys{YwUbV-}),*V?D w( `@ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/EEFPIB+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4273 +/Length3 533 +/Length 4821 +>> +stream +xgXۚ*EZ6%ҋ@ M4 %$B )R7E H w*HwADzU:s\k5g>[F*p7; +# +ȁt ! O bnP BT@`9%%HF:8b@jBA*4EtGdC"0X1HdO!~QRB 8!(J?Qn d?[Oh_\ _B_p7 GS: P=\EGs6h߭ftp߻ rpAIHO 7APOğ:;į *'E0Xgk }$e%Ta^h4/u_A 0T<6w nI}ʖ$#}T.bSNa4[Q\JU1?X`<`wWcDmw6"R>֤7փ[lu3R /kMr g:"i6?*PJ F?נ;&Gʢ&/>h9ͭx%7s]Kn~JRZ5&6'Մ⢜we/Q ufC2+_]U<-\D0P`@>,Ѿ1*O9?,sLge;!8MQvuImT]:3-'=~0S:/zB(SdfVoQٙ]ux\dzLa`.W-m!rl:]$iGk:֙>i!s(kG.n)EzVbnyW5|=ks@01 оSbމ_6aɹ[ؒ0oUiQp}Aa +T`\7''Xk9hKlh< R2y$gMMlX[7+s:|fl2⛎{ ժS"@DcKχY*foTs()|wޙ73R_.'(#|`˿h6`@MP:w߲֊ngyl*IW8,?_r5pL_UN)--M1(ERN^vn +F"o`FvϘgGىWNiZr-藿q6瘞RX F͜2  +$`|j!BU˯}BTX}u/K: QW"gׁ;>qÎ] UV]*9W8 hĝZl"|Tpڤ:z8{qn(qBu7fsƆiKCBvT2#w2A]`e-lEurgWH쮪 EonqNPO-I§-?)p>$Ϛ<hc{p@ٖ&5/x5 1[wI)8~^W sAmCR,+ +Т;$qr H_yMɒ%, 7Ѐ[NRM~1B]s cY6~v ʘß*Y]7NKhC/TS~"D=|[= +F{NUI}"@ӽ /a{V6\פ0jFzWGaZBqm) G˨۩e≮I{:lq?}$2:ĕL}v|7T4"RN/w;)37߱/n7# r}|7ёZ"nЈ^tc0a>tT<x#|o7ԲW,b zdɚvmᥐK&.uzΙ#zN.lzHKFUၰnL<.v!7;(ӑݜxa=̔ +D3O=AAf,N.VX;٬ka w'=lOT7](fpVW4V  jWnu/>'K(Yt+x\kdÇ}͡b8JVɪ x˥S +-: B6pڱbc3FyP 2WR00|`(f~|0D͐{9uv)h`qx 2K<}A\DtSkKfm0ؑy&NgnH~Tp*ѯػn+lkyܕGt$jKQUB3&e+Gz]_h]Zj ob4SMdύ:;Fw1/H7{^> x^EE~,ήWh{W úwk]'E~ghD+#7|"oq,3s>$oGi>_ 8zKP)\TiGW)smaEu6o. БyT0d;0aqh\WLzskE/4i#'N(BlͬS9+|-+8U=/q3@B+gTH]_|%V"3FUJ@7 sDQ XAd}+Q(0+E2CgZX4"dL8ekƫk§; &@}F LFUnQ]iH13kY?[:gyA Ǽ^̨u+aV'4!E&']!:N2\m|TL.$*/=co~$oW0#'+*ZzmRiLZ;49TabW~d̮tdGfʏeaor3r-Pފbuke-䙓`ey(TϮ<7ǻ]ZC?PpfH/hԠ =0`k ۥ#DӫNTa)|]Y~|EPBMQ;Mg&079 j[OO4gzR—Ҫ q!z ,SK%.i(1'aI L89j%Z0u3Q-;ø_5p2~nzQk_p$9lL:44Oezmw'G_ɬ:"fi@ SW|@D<xh!NU:wea)M^|6YVqS]!G[b[4Aw.ZB3{~bcu֑:Q9u4ACQÄSl_ e0ǿ\m!]B6&r)i[.V1k}KZɮ4$מ<}d=ZJacP +sNryNsJ^A9ƍ G1(rF +/?sA@7W(ڙ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/TAMYWG+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ONG뿊j K3lg?qt|_¿?g,l tA G%;;qq W%(Ϭ#ϛw[1CTWf:aZ&"2.c` +}. +|yהUx3(RoȄWo|x]:(63-v>y.rWubmlHqQQa +mT#T[l.4SO n`2Dd}'$Ab,c=cy·m,jvMr)nCBфdu;5ƒ +A |=~_C%3eI߶=vX4pCW$~zTGЖlNxxlM{Y~TY_A }mtWRiRVꇌ<%a{[c=]͒G0C=؆ k叙Rj3&憶B]TzkJ3ˑIԀ}-|4敐=TL +\S^$Å|?y%˫ fFě >v/EI5׸N_(9>pUz*cy%7eVʒEo.Ia/߶W+ |b,'$g%#_)UASO%i6.U+M5R>5ˮhP\8a(C$_[9qȳzpoX)n S~t\Fx8%\/q͐oE HtdEV=g32[dͫ63<2r' + T2 6H)"YnyyU,"\;_1t;B*aBUq" +o^/wrG; MED^zޑY;F\㈱+}/æ 7v:#D`)cc1Mԥ5~tWr :DtzP)7+ݐқ64٢^ͅEX.og%Ƹ5S\gaD[v䄷E%WQA~-#~:s$LLiczgZv^߾R+sI)>WJ줛2289̭>| {N^LmE8PSdd,.19 ;jgm&ʞZsr9-vzu20d@AІZ-#p=`=$7(t‰3Y$<}Qh7 +B9wF.c:Ϣdjs?6m% cly4u |`__UNiT? rhxz}h'&},2zc`. I`b nk9!5Cpߞ@٪9/IMYڎsh,ߖ1b}q?v?qTe)òa_~>ܶ\LDoucD;)iwȚoP1B˥#Y{-4Wu17y̖+xC!|vGD5Q&];b\hC^ic[ƿYӂcV\ 嶃xQNRl^,5+H)nFs,|C"G&nnJϵml˫#UyYI zqfňMA/]}O$d6b6Տr0~F=nˈ8.QY-U>BUi.6oqJ|Ol(07]oLf~9oH@BPeMR^6L4j.7ׄy_{>X`B/;y5^9dCֹ6j}8o)QeWBYCRte턣%0dic)U!s㴡 'M$EvוhRObf?P9ӊ3Q8TjQύxꓝcPha( Y#*?Rg]X`VZx5v]ý%6_NAتi2i-G"/zG1sЏS~!@l룰~pswY鯕z۟^ ;=,3f+e"^&\GK|dYhG|"3y)zʪ`K +f%Ԩ4IX?%[n\b;/6NPg63>Ŋu&钗<++K]L3bFq0+՚~ +ɏ4z{W^J .6߈xQZ[~=y$i2@2UZEetRE;8etAlKmig}j7 8CDNςFI +cJ0&FUszF1p/>ӎs!^ ާ(l4a*v~M5Fpw~?Ix+3獃W/*ߜ\;ϝo b 7كXHљr]^黫Nl6ʞYc$s +]YsdR\ i6Y%. +]Dhӊ^&$Gt-Uf߼efzGu8'BC^0l%BmY)*R)Y]QaG5Az@G޼^r0?eZجsܩCM'5R. RC!7ÁRiD¥v=(97<8X9_0n'U5=H9=yd_ m/M]>:qi_ng^ +-2E Omq F7Yc ْ=[I1rjt$8LO +E򦼐i[\aTw3+ CK[f-{qy9qVyӵm'UZrP82+ kq}$@mҁB "{(y}W\Ԧ=qa1pGqiWͥ b1"Жmj8Ӎq瓙) 7C$GM, $ =[d-: )7 uGNK&cqp> ӎ%xx>M~ıM!/үrˇAH)wr'AV enRAb3>G7|&Y-z[7&BY|{h"E#g쵋!YEwݙiz^)gr0$M]&2#_>~VkFo6;.#o]RΣh zCw5R;W E5HH׭4: ,ԕ̄8P~K09yjW7v6D u@XEOXKZyN"Zd'Ǹ)|$Shf.Es69Em1f^P;w$1! +_;hZ{Gygn#2 +w$Q!0÷pXiK;鐠0Fqsu2}|:Jؐ[v|ȭg<20DI/J + ݀]xgkm񘥒RRQ+ɁǬxto 3O2k8͠heF™Ȕv^~K FzZoXM;O9#ulRYT1``mEE ck.| +!ZAz +3 nG ~GDc`κʡޜ)ل_qo&#Ti11Yծ'e Une1V<\od# L]HRi0#RX\!Ԇ?^lZdfgF۾o(3{m|/YWc0q -ࡨ{Yy߰[I4Vݗvxg{wrE" <W SҼ'%̶@~}'GaY!GN*v2=Ҽ O tPyOR̼kbj*#iW4d +M1BU= JyQϦV;yoY23F"(7t޴>(%[CRS)\Ge9ŚO6avniji驏"qa+Djt7ٯ<~%MR'%f|jQ]uɌF&}XLT6\~WP`kN؊.=wL۸NφMSuo%">'yzkS'r֢Q$fbC:1z\g 'gfp|{uDJNJZluOo)K#Gui +h~!\@vXo9_RgÊ\)~1n94φS1*Ncab"k `:.6F[WԞ#@XotUpӬ҂D#KTr]'Z_I +[oi.6^ NS~QA\p4Ky'Nj~zd _"vk\ڲG:xm4+"`nZ6VK +ѧpSOs t #zVmЕa NIyxi[tTÿonm9E>G_J9*dwP ((ǰ޲~Җn7R"HKLl&2 j4'G^vl)~6b>I[='*L̴CKɎYtlk%Pr!'4ZLy "=Oڔ_"ktEXvIzRd^]wkT!SQK + $+ J_t GJ@[GFzTݞE'V=]# 7\, p|ZW7l+}?"~4{8T}OXttdK+y3ꅆ}lyIIAQS!dqx^XBʅ_':/47RKQզ*^$Q`mhu0~Gڌ\n13W|δ]^2d0o`nҵжQޚc=}En鳮D*d=ߩ/Բ;hgF eޮaUI Z=SRE%wgZ^ ND3F֍ܚ:Wܳ>O$NA&{= +lɜcv G7TDM]"6Yi|Y҉6EԻ9L!|> V>)w\-̱iգl~0TJxw_j6}u9th1-Vvͻ +mfY-ߠ81g5c1šW.9kw&ŸŌ`> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}2^B$at`&?{d}|(6TC%6@!\9 zX*nCdX2u8Oϖju8djFTZ;OխF;Lj'"Ōh hqi\B$®̏TẼum$PwV~KM6NRo'~Ͱ k2|̜֐s8;;3sW(Ϥ9Pl^, &94kCubH]\}CUw1G}<{D VJέ.q=z_Q6S\]YQނ&8\w|ig<ŝsR7 "T"pc'7HloR9=(*fsC,<H֫Y%BG"(FζHs}"HwsvăXuM}}QttԙZgJ`.8Xc 6Wu[%w.({[ 4hH,zA%&/su#K+(QⵜKS512J~W-w,'| mrbMҒ,h^ zFLw[URVu 5R:Q/ tG61,X[w4@Oy#EFJ5+0= ++t˧v8A*J4"_I%11n ׎Uy R=)UR28Ls^3(1Mt#}a~ +}ٱ58y5>.Q{/_}a)rTk +QfR5MqbP +ű响ew]9g5`ј]o$~4q􍹋q0Ӝ"ylXqQW}N*Ya> +z7@md f;=ޞeI~sO>5xeKU~z#$s}-*{ KWK?rhLKl@k_9ic[AVlUKۖV7?kޛ+Yƨ#eu>_{g@]lrPOsIf4TsEWg.{d8paZolY4'y<#8H͹|=~Ow*h༝6 HU*DTj:ߑ?eoHpfbk_ CBvO6({sہ&ݞnp-tƗX +q6u+@$J=HK~r`)_ðnj"'Q_IvD]hIWۡ8Y'B%,Gr@+G0=Yر69“TPDZ;Z1|4r ArXwdoV&W0jXǴH! S2{hjQ > =ݍ~8=ؐP.wOdjI>ì4Јb w VCIJ4&'ȿfF69O{tid/.y{p *R3nN:7>T[&~~{+hY2k wPU9l˳R<&'%/OΓ5tyl4c;D_u2z4[Ze+yT3<WU3\q (M="{Zÿ<+AuklHT)sw\ңn||avqh$f=iBqX˒sx8#6l:/@w@;Ҙ[똕z5PGk#)S#[e!g*{Wܑ)rܘjUnXyh1+7}0״HZvn:f jkD{ػ WSĺ߫6:شH5sNo)nG#i 7\$;԰)„Ksmɛi: 8110|h)͋=W*瑈lbhcJ٬L;ήRh=$(c9 M7W="ӷJa>~,Sݩgq £8Aֹ[PYa\s>`d[FXh(+tu6hC=Zvj\]Il\ CZeFZK.:Q˲k5h4 wE*|L聴K6/ޠ6)>~7حV# "uL/)ɠ}M[S M+]5$gsO1M wa%6Lb7 .єٕ \'֡#z]L<bq,0UDi|w'u0}Ot&\W! ,@Ҩ~U¶]j`~mHn2x+n|IqB)sk^66KNLC}9:VZ>(=*%䖩ǣy tk8CL1q6rو‹>4U~mڪbkusWų yzx"V𤆢bk0ifA{7oC }ҼTE j"Y 'H\˃8':&)cfxr#fUYnj%{ +ӜZ,E7\p~',K-TkkWV?iY1z *Gryw=eһ#{pܾ®fcD]O +/Nڕ^J|L,h|]Bvu%u!똆l$YZM;p |]q0u:`[j~|Gcw6;BԖjKps#T]^qK/cmyeĴYQ }G4#YvʼnJy uSC;T{sQOt\6+wwPqŽ'f|#مA,hiU WII^)/0 sMNro`{h7$M\^^za|8%R%[ڠ8)3(t,ECpG4wTYDɒ!Ч(SUVJQm> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1R:Z:[U׿|32xt1_ ϕߺ`\p$ha0N _I]3iyY DVU 7r HA^w  y1 " +47!2 +bu.1~Zr[RN^~\+|Ы> :cltZݫ:9 +5TJn0z kj[G {dOo9ZF_Y3RT:h7E4FD5Œ8xRX98<^)4-L/(t MΠ6Dt B +ͮ 0WE Yuz)EV'&yݻ'KiC1\Zi-@as}|׬ q{90K{:OG+% n*zwG9.+m|1{ +Q|'+Wc1 +, "- _'L9\3|׫W} @FSxZ=8>=z^|FD N)֤0=:& \%2[y[ebhsrwEQ&$ȓta4c&/sC%xJ$Ð@O + ~3*TRe@cM+"O0"Öc[vfoj; $)Cߡbaχ\]f&l#Fvn%T*ffyz $ +w7$ Tڮh[}:6+GFwDoI Xlqv֒`ޢ[ +-6u?2_?>]˰k+ݚgN]jTҁ$t=.m +."p8a7/Rqo}i7KfgM}9qvQ2$("OFvMg:pǪ3{, "E%gQ1iSIM؃ C*2(r^ ]0ݪq^8nޫ@p2'`Kv2]5yKD/ gBbmh{.;sr>}!S;?J.ιj?āڸyR/clIlV"xKՠ>xHZ֟?y0c!ƯSMOi  + j]?֕ l~0*H[6($^p#)`+;dJQʟiMJ|F3#ˆBQ%a}8-LBѯM݁C[ +.gk!"!qrgDM˦b'Tp\%KCԛ7䠾2 י)Z:"l h%㤝޼,$deo~vT뮒Q Zc7`q_jR29o{ϢrΊ稑WZOWq6GHs|O.{탖$ae士 ]?ځ>oGjEb1K屻÷yCÑ-dǖ#ट2mէdiib߷nWE|cD(]=b=1(eR%^`KmjI1td22.:o.y= Y*ȩ)[#EcȈ<[Tj +#͹Fguq(ߒqT93H8QJpQ!J:Q6>?aQ9.7Rp,;Ɍdt`e{SwO(uH[jٍl;i 'T5Mk}OjF (K>e=*0|I S)P0^{iG얡P kf lX6pP/_FZhTyOhN꣛b/k% w}kef5`Y}weql}| +DrI*h%ki[LOYe5Pv@UxB|!]bR,~#PZN`;1dr:+MfOzKFЫd"J#^#r3ePP=ޝZ+-)&p[)=;TqDR-{5g 8!zU=)8k|SZߏ"pڦP8&*#3|P2HFi=y+u_SK,cD +fDa*fnr+D>yuz}kT>r9u&a\4)ҫ+yRj#/(J?Y:wc}+BJge VwjxLjz^?LRACrwhk͎FCEo;>^;+{h=U^pvBGˁ~Jӗ2h46)N15I>1ϩbmP'۷z$bh"NfFOP8Ҽ|4;'f҉RGvnFNHf NڡHgmoD D;}m/{)PA OUIJr5gƏ ^N9ngrȱ|dD)UC41Vc@ϙ}Os\Ws2nǨtgqP+&Sd_};{&:QbG<> U SIpAw"Bh֐dd%7IiE4LLaD**+(IrL/Zn3olIsTpkKwO]!U1WG*M) ;u`2$/ݖW&;XeGsWH;k3#g$*N$+;udTaxf_׀Nz%-fN eM!LLBQ@m1$ccˠLc (6pZ[d|lZf3ovlE7xq2y֓aFvԃyc{C_Usnp TR|߬b٠l=#0ub=sz *9'Bcg3^(*x@<7Kn x!]/ft;QW 6^Cץzg僢ݣoH U&I|*L8`Oq֛K)nJ::VJ|P_w _fKغlڼdzK8t͠+B~-Y?6MDAXYlKnc: +Oxؒ 6?8==޸!,iA.D0 eT,u%e7mTv:3ޘR ۥfno5PAvKS)*mYZl-hKyj7|L25;QQZpa2Q,mo\uwQ2^GW%Beg?w ԞȒa 7f{&N#EKUFe,CDWNE-G!9Rqꖍɒ mf"%MIjgwWWKDSRfdK4 O0  +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/CSSXYP+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 886 +/Length2 1710 +/Length3 534 +/Length 2349 +>> +stream +xRy<?edk,%o5dXkeRY;,̌p&J +1i%IRIȒJd~s?|>秵 @b, ` h iG l X#b-`0- +!Z0!.p!2 CԄLn,2rӁ]K%`@! @ĄT93,%M .@gI. Ia1|Ra("Kt(7~lNIV'1 :+ lEq.  +g:sItg 8B\r0@%9rdR~!rnYu_PWCwc"A ƈdb)@bI|" +@L +@H2ʐJ+bÖV98"+dBIlI\[1CE7ϐ $:Ie,b(KkZWlmY($@bME8VL&:&h43^Β"M*[LDS $bm{ϡrrN㟐J^YjGRkcPU=n[%LqO)>F=A\]t99h#ss&輒81Zރmէf4T ѫI#̩u҇[/9؇k1%R1l˩e +iۙj+ȿe& %^]wSvr }Kkiٱ[>(%L \R2z~EA 4uM?GP}i<~:ixb=~㧚0B:u*b `JӋ (rJرCf +N0 S)T}͟&;Xqx%2 5 +ߨ܇^6N볦XH_k5{ݷj~x`WZ!/itũ/OӀG VE/n4$_y\ {̬-Q+VP bQcҁīC*3JbE6MͶ??g$8$*$^!IGvtqwJ^6As= +jQYdŠV:Tv +30gNM35s{W[%AWn{Mـi8xV6io%,?+'>aF/J:0];Y{NS7C>(W+zCOyy#ƗI +aw* (ߩ¸/rJIҸ#Dmg]+K +~IL gjҳOO8beZ2>ad3q9ɒᶸ8ae"pS3g왦)=f B[iS5S7>_ +7]*nw9 g3]yccI'?0ZTZ{ 'zUUꎸƜ53<9=~~xmT4(x@"OT{")X`J@ >-ss袢~JsR}B|ze!(tڛmgn}g DKV͈dȲV[k(eTI| Z8βt3a7/4B*pfϐwQDܬmkx\#0 ҚٶN~D~KhV|֜74U`ƺΝ[pβ;'~4ۄ҂ԕtkql2% +Kû== mY{WknqkMe?U%C#~ (4neJm6EL)~q9@$\~y[Ӂ)DX̤'/T.Ӽmٷ&mni3+xG;!P/3r eg90a +d7몊M:7MfaN/,ݻ<#A | ѕ0s]Z ޼'|ԅw =~UFWGSqe,a- +?Z{ nYy%wY Co4 Ab{a +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/PFTUWD+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 1752 +/Length3 533 +/Length 2293 +>> +stream +xk8DZF2(#3 `r% K2f^ c13T4Q!B2m-b"*CQRjMZum_}!cU`Cngu`PQ\/Om{=pdoLAU .K,yLR_\],I')PwJj? )>y62sK{T.[SK(_a,笡(ϖiїG,r% +Ćez>zKMn -R~NZ"{c+l|m˥6R7Qir57E> $/vB_*ˇh.i> +P4z~/!NvដBTiٍU{R6egߑ?3x`NSZ)>꼅[QW>ksuy"UCk#UFw?USLl ^jih? r䣈OYND\M"n*&y|L2<͗[r[7S˯ V!$m'̼#GDX2Y^dx!-`j!G`NHE؞ځuT +?)`$uF +[+v{\ww5hgTryrkKV+޹-vmjb-^-Ֆomv3rfG/͒a"gLH>y ѽVL:ht*[8 0':,dt㊴EKrԻ HtyZ5'窿Os{"=GB8ğ8#/6{(=9jN1_Qo3ꨭAY;'XɶƜ+(;U٭VЊ) vL4Wx^Uf쾾[QILܛ*LoLaf,~Rl3!'/h+Ѣ B%g䏁7|!T&>!5+?K{A|@6wZxX6fR!ZW$%~OxᓱfVcLۦP$AꈊQp^WwM*(pbf #EY6tm2'cbP]瓡Z%+1'c9Cɢ!C~ǹN> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1671 +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ !S U[PZZZ4<8Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?"'Yـ̼ʂTr0SQfB!P!Xh%d+$$0]_QkdkiLjf +榵 +C2 KS=]L , L.-*J+'aL`(V&s͞##5ˁJNaz&CIMXǞ;w\[Žg40њ3;nY($ǝg0eXWҞ1Jԗ]aKuz]XU- ݣ%6 t6,`N|+Kgdq;)yAWpq3z]K&j؟u~x?˰ *wO٭\vwv%|3:YY}|v߿Xd?/ya^:-w^fys[Ӟ|g;} +[ף~m7 {?hr=<ɩ qKݮ<:w}Լ8wÛK3?'lqf>H~I9qŧϞM69}o=[,_JqUl9Y&˩H)n;AۍvCNǏy2`R\=#cGeIC6Xp0zm%2pz,+`-4rˇ6I7o|qmG/gl\_}ªzmSV=(|5p9}T= +SvnQ[).46p0, HIM,*M, +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/TAMMEO+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 40 0 R +/Flags 4 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2182 +/Length3 533 +/Length 2721 +>> +stream +xy<E!-28ˈ4d/3Mfa%6(ٲJXDD, T-C9u;}y>(8`4MЊBiµH`s*(d , Dp8`.rR:w@վSH%dI[!8,PpFS"pKS ^ <G|@?ɖKJ@jT(2A_=ek5p?7T?[X1MŒD?t +) R4R?Z]hhO&ҰDΔG!Ȋ +4 K A2G}C>bF[v5,L;B+[ g5*!i`-ױֲ$(xаd"%Tjw07GIɸ 9XS+ty}Kb~e*%)yA9ǟշmT=A9ߦNX{fA6VXA[k8md>*;f +whrzB`^v~KXu>iB/4_m0TnG  Xeݱ.-YЀ/\󟢒Rݘ_[Mnʽ/Vx+%A#HRgNW!Mw t46M*['1W$S. 6KZ5f{@(>9*FX4\W>z]ϼ5>^۳l[콐LQ+W)Nn; JyՈ+Z +<˹t/^WOY͹GQx겑.l=D'LzҤܔvM^<y1HZP̻2+ZqLI#TFĬƷ]Vt}6h)Z|:1VgPfH9'iC u[H<3hLsé2)\wLk&yog]7\ߦ2x3㓛/}2m'M".?׍-=Qzdʌt;2V]}nrWM*}1q gzwئ*isヤ,-8{:?]m}|4[FsW0 ϟ/(np9pX$hXE34ìL&?VCEw F[vYPV:KzEMuva=ArS* +w#dЂM\L#0 g*ìX4ODAԗsR oCJ "ly쪑1U,zH=]>?h-=Q4<1~ ~4}+DJ@ ]p:+2{5UfṇⴘGVuvbgInFwDbZC:8$xI?q6iCVMQ7>f<80g9ZsiFp?~lX2 iDip*%cw;W×&MmKC!aDb4 + K@D +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/RJRYYM+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1103 +/Length3 533 +/Length 1639 +>> +stream +xSU uLOJu+53Rp4W2 TURK2\KR --Js ̭LKU9(3=DAY\17(391O7$#5hHrbBp~rfjIcNBHKBPjqjQYjBJfrBRjzf>Uyi +TYjQ1] +`j*ݙSƥ/]膻%悌tbnfN%TA~nAiIjo~JjQT|SS2Kse=Ks2sRt M L n)% +i9ũ`Լt H_mHB$3JB* R |CFE +z@@cŢY暗\XtS~EA-мTOS sc #hriQQj^ 8- eC(5"5iMyy= eye~/ț1gFɡ&+Uq)Ңcs}`b <*1 7NĤgw-E-$xUaë,-Yv可UEӽDv4N;vR>ͯkO/LΓq™c}˲Y.'iKh:$EQfqQ %f(qRqR?n q;U^}Q;gw3u*;a@:"-f,O6}vBχyݿ< V#x|+?4U#+߳ ZU;| =ed_ lV3_-t*Ǧ)._=_bg7=])u[nZpmLvӓ^l=]|rA26eU߿D ǀB5j0 9'5$?7( 5uxJ +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IAEDAF+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw3AXFv!˘1̢19I!K%'%d߷$EB#L@H&`@d" LB$P[: 2C`@6|؀ #$P$ L&Ӡ`Ҽ2)V~*{$:@/%}o?p?7\?c)K>JA2A@g#'$?wM +h@ #P,LE?tFdo~?8TM N`OvZ4]? aQ#QMAf.83\4H'iހ-@#А +D05uDiꈋlƀ:yC%2 ;_yoH pTȕB-÷qHi[Tv\GKLg>R|Q寸j7>6hql[GZ`@Hv;f}/ D / K3>Mwz*iS)vE-֒/-%^(gw ƗtNJڊV*6 ۚguY"7MR60qK-Hk;"i 2QX 1!?2T9=S};W(E$5<,2iA!)_xx*2k:/]@7iSK3KIP~!2PuEo)s{Fjx50nNr=M5.ژέ<S0a$?bދ6m4H/\@:%t-Vf*m_߬S'5]QB ڏMSo̮L`q{(h8au&o4puz^2rnؾH 4XRDqzNbZU['= 5r48Qts|11VLj9r]xizAdгOǹ?V'LQ=/$ϙq vlEhU$RS0=WO |}握ZWUxsajѫ$.3w5Ğ8J $do69 +e6=ZڍӍն%cKiFxîb.sNlRh;&эmʍ$>(ss {t71 \^__-~+w8r!ʴǵ]'4L+qx >ZzvʁG~s97.wSh^/ˢNwźB≑NwC  +{mvg_sB^TFXAy#eEXs;Jx~z2%WU턀UuoL|y7W{kݶ1H5 +<sJh`Og#jпrL $/_V2{>JmP;"TN 0+w~QN1zRnwʪRjnJHes3ˮXУGNeseڠ#L.FMfXC,j"} uQ$t|Ϯ|߾ +Uq a꬚Иak>#g"ܧMgj37 l^j X!ͯ"lGuQ}IruZ'd[dK[~E Nآjf^{]#ӎԙwM7خJV#)۴ tYթՠapn|'s8M[]Tk~!|@܈xs +*5 iu.4}搠n>31UȻ>hv|ڢd2x]B:# +7<N=[ڥ92e3q@Or#i!gsgϏ~H|P;qVE/ o +`.7=tQǘx7>yS&-r]y3*49{Ӈ^i;GNX2SO}wUT-A{tj򰄕C(LPY230L^6_ +t ׳jBUP-̘hL1b4Zp\Ez.hw!{BLHVw87V3 aɸ؊G,o_[ă8mߺ_b/ +/]**pq? =VhxIiۂOrZwc"[*K0S>-/fqDLy{Y ڤ9;GB1,^zO> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMYf$8_wymVF-\/׌Gc+|,',1'Ts=7 {AfrYyً_]5ZQves< X+ _IAxa}ltZm/Ty!Deɶ+VԨE ) dt%&4ⲣ'Y䮉/DR~лm_>.J.y־C6XU Ϯn\Su`]372;4#{ӿk^e<™1[k2.rDr(EEN +n9_^| ?>>g+.]{uў{'?]֟ײwM~8xhsSnhjC=%MȡU Gfnpa2, +_^@BD&A#2Cu +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/RKAXVR+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10301 +/Length3 533 +/Length 10859 +>> +stream +xUTѶq܃q qwܝl4wwwIpkpws=~o=V=Ԝ}5kꡨɿ2ٛ휘ؘ +jjl6fVV1$jjqN `D DB;C,,tPqDmA+Sc;% @ + Tq#@̘fVN?dJ9;gq')=/; dĢhw>_c ׿K9(ouc[+P:8; {3ߥ)̬m*dlce*jga+e(e2jdj p8ٙ;EE^TKCU[9;?g?+7.yoIڙڛYYŤ!fTbbnL& ;' 9d%<fM!?os@ 7) 2+a9 ]Kq:r^sW5J5 'V1_9o# d{LtLdE#fdFprKڃ7SK-]XҖ*S41q ە%ܕaAn_y`$QȝЎR'e㈩KFz6BgF{ɐ,,xd0# RjL^RytgP?(;l.$sc'BkФǒ_N%¼h!{UoI/u$;f6TW4z|$Ep-[Mp>vmS_5CYՍgv,]aXnM9[C07flTZFSz^j3Ź&jcDQ À'va0|ƚ` 1KRP3- lvO⣊=6lpPY"`ʪu8?S +;;r931 t-) ʛȷBc,1{꩗ A xmוS#(+l:3\ =]@Հ`VܝNdŇm(ܐ{Ŷc8w2uX9WU,~^U![oX{X8) +.X%{E:O s [SHxmԬV~St$շpjOFaya kYt}(¦bM<سLILYE +$dIKt n Sfd6ZcͤۅOiRiF_ܿ㕦bH8! jŭ'``^HRferAe'+ŷ h|'/QUXs V{xQ`lǁXgD2T]F*/Ī=k4P3Ի" +4 +A:*䗦;6?/}oT&`aggT!^T zIqm9OC_{rC*pЎ‚B}(z(>4XkS;sfH Q}p˄*,:+$`̤EEx1KB1ލBαT  4Zbƞp +WD==)4]I}IACCU"EmRES(6H/GU@"Ćƭ̈́V)dm4H\d xi,קPP{y ٘/=$19E~4kXoQŧlΟF,YFI̓wJ@y=p''4FGd4tw_0h^յKyMʞYZee!~tEG{*y@p-*OlK?aPLYܙylP#Br-ƮZh<@LZ6 #:=O I@w TKLMi8[ĆToKd*d%qVNO8U^{>~[܊4^ؘ> [2xaK%ܪKf/4ᛅr(b*llS>K˛0 >$4fh.(ExwhAHGqһ/C7Fᬺ mޠ]8nsH3]4Xi>zi[6vl@#R '@+GbGy@ `WFȼ!/h +k[vV R-BP/!E8ja޽9Vj>X#9$t: r%:y;m-ƞH/pFY:I#Aď,;WWs^*tЊ=&>[޻SQ8=cPҒMA +\Rc,ڳ&p Yc$4G婀i`-H &F=DGA!9:_ K-A]2wo c]rpl'#_1d&|&b:DCnqq~ <ۺZ轱PcD!Q5KlC1Јf]*sĿK@/)"FuZ_ T<HZtXTG">$ZHr+}Fb3N_T`H|0\q;<&hB`f٩C'2Av[T"T6\n TK1fLN399mnnqgCGz*0aע+P)3dtSuy _(' wV<}{K`pÄROXWwV ].6umA +/ 9Ԟώ/+):^MMSBʭw-dZ}1q_L,-U9';5d.`毲ب9'6D& ! h7,ˆE"~WZ-EW3^ik_l1vÉ/M ?,`kArNqFt5 ڢּIf2??:E78$qBb\7[AsYo7 rXmV MoVy'-d3( gg.U;K/V' nzo٘/W7䵗X?HlnYZSŒ2tb?2 Ѩ`< E'GnKn'RjG`Ќ{V+ۺH?|Z%?)~bN;xJZ񲗥|]("1=j4"*jtVlgڪpYU&N"ÉzDe: )=p$ 'n=L+36#RLŵkĶduS?Yۗ 5_uޮ5? *܌Un`{h<G*(uz%'Z'T]  + 0sh=xQpR2CJy$h 㤓K +[?4rJ3І'K<6R'>K)T@umFif)mkxޤ徢etfQZD<>^ԃ#fB&^dCfM%z{mo[mWV"sISp +q%2s(\1EN9ч^hO*'XM6(4VLG>~Wʊ\4o~6,''a?;/RfPHpRuj.5xҤ;-}"3j؊njԞUqW^yLp Ӭ?]Ӝ a8`UXF CT$(=q0t> VQ qX6#4] ˝n_tĞI |%͕뾄 h>=mP2-B*\"90{#ȶV% q{Ah!.16ʞJℽI^wfnX ekv0n]nГ',3a4zgNAdm3fЊo6̡ZRz]9ӳ&~BIg?0 0O{j~AԿ3ރ[y]ф^QsS +ͣ:%_;~C)`ԠFeзm!eVOi3A3z -!sr54]QgMTB5+ VY&y%3GظJYqqȂO?0ͭ'P(kzM3 |Zo BptJO'6d:."`Pr8Z@:3q1ϚfS(^ܯ:@ҘMV:1(Ϙ{n˪|nU9NiKokB-5pY9P4 qlc?eK\:9Y.Xz3¦a˕ "ȹF$7,81ΣtB2VRlDGR.>-=tJ*OuSF*:$*6Rŧ YBUZIlN:v&@sx9G[ b" yna&WPevw՞8Oo!YO :=d'v<2axZ}iן2Rn̹5\nkdӈԯ|[:Li,b RYt)]Q$6Gz$Nsip Of+#k(`.wg |ǩ 2:YJBR%mSуr` RMhfP _}c>TaO]aKSNxNw)"fԽoE<.GB`PQET e 4ػ6PYiA.4~JM`褤hOtw tΜ n?sZ64z?'9HȨnG21!Ҧ-?UOQ D@&JK[tlIL"M3la nF_-[3GRm|r#V@KD`rFV%sMq]5P$XRBquVtE "KIӧ,r \CͶr"8a1RW^3Ud Mpwn/0a)Kdwék9Iy՜D6̘ҟ8e{Q5)(<9J0!?a!kVf$`QRXuǯ1f+d (,[Kۜ~NxOǐ[r0Ek/[^Ų>:氮;K5$n2JRaQ Qp:,#ѥ'kŜ/FbЦv@~Q@@Ft r?jC6C.zZL,z^7QVVhZ}Yԟ"< pqĎ}#|381y -vX{}$Vy-q(3I1OơW.L orD4/)PyjcƱWF EXdf!T ?ù}ޟwzԞ̉\Ú*4;(y J7sN/{ zEC(<`C8M/tdȪ/KEmpPw + 3l@d!]"9{襮ye_Γo[}x pLt |!`A9L|a o nDqH$ܨh?3,6`+R9 IM"6FF6o1D'O'Hcڌ0lI :6}$Hc%9a,i9 6Iݫx)s'qN{c~] lRg 昮 :Vr=_ahB(48*t}:餠} =H'B15,0F,c=+opw~Ɗa+}VpYͬ,NnRRÆucWNv#kd,Wk~s|Qar)^!H THR"uiM +W&P>gyh|AE``l(qmru5cj3i[' |qC7vqSv%{ŜCxy6\ ``,EZ[t:8q'e-8T3*A%9ZcE~ښO59R +g.).k bSn%aģ|&%x"Y%AbQFg:(zS pgH|jw+'ρdA@>k7B++dLheh獆 +<-MѮnzZA嵪kDIxE">fV9l[U(0|.v+m9 s[5 t~w.hrfE>đeE$*5kt ހ& eBc#S$M*%Vry7LL T#4Cgr̯܎ MkFdM+8l T $'mAGH2"(3ЗlW ##Hb_M}FuƄaJ2"H7/t2Z?~h+tVN ,СT4Gy^W1TpL$UvO8>NJܩ}),>iw| XFmxoᏞp؇tgTgq:s^; )97WuB?cW|K@lNpUfqO%0D[H +3=!Ci8"AQÓ, ]Wކ&U7אHnM{BcJCͅ+ +uJaDԊfc˺g|4O +LgY`jSŰf!O*p(>[)[ugr[9֝r yw'Si +O2cD"4M\]qC>]^P톄@E %ph]Zmtۗ+`SkͯmEZ5xPSZt=y!Vi ƎI"><-H$h voo 5"&o+ZܧNW71W=g奞tusϦ^:@PR`DǙ| "ݢlUXÕK^ImɉBl\OQU +ç46B=kE< p ,1Dۦ]v +aF^(Ә8oyK^ ˻}d"FcAaYPxzNԓό=n)?Um oi1[n~w2?T=2j1`iv_޸1 +VsWCK]DUU4Kz>$A/~4GPPPՔCAzvz@Oڀ!Nk$_ +endstream +endobj +102 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/CQTQCY+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 101 0 R +/Flags 68 +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D90$9Rɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +321 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/EVJXTH+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 320 0 R +/Flags 68 +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O N9}eC]EؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b` +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185349-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +326 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 52 0 R] +/Parent 325 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 327 0 R +>> +endobj +327 0 obj +<< +/Type/Pages +/Count 4 +/Kids[67 0 R 71 0 R 75 0 R 79 0 R] +/Parent 325 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +328 0 obj +<< +/Type/Pages +/Count 4 +/Kids[83 0 R 87 0 R 91 0 R 95 0 R] +/Parent 325 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +329 0 obj +<< +/Type/Pages +/Count 4 +/Kids[99 0 R 106 0 R 110 0 R 114 0 R] +/Parent 325 0 R +>> +endobj +325 0 obj +<< +/Type/Pages +/Count 16 +/Kids[326 0 R 327 0 R 328 0 R 329 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +331 0 obj +<< +/Type/Pages +/Count 4 +/Kids[118 0 R 122 0 R 126 0 R 130 0 R] +/Parent 330 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 332 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 332 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 332 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 332 0 R +>> +endobj +332 0 obj +<< +/Type/Pages +/Count 4 +/Kids[134 0 R 138 0 R 142 0 R 146 0 R] +/Parent 330 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +333 0 obj +<< +/Type/Pages +/Count 4 +/Kids[150 0 R 154 0 R 158 0 R 162 0 R] +/Parent 330 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +335 0 obj +<< +/Type/Pages +/Count 2 +/Kids[178 0 R 182 0 R] +/Parent 334 0 R +>> +endobj +334 0 obj +<< +/Type/Pages +/Count 5 +/Kids[166 0 R 170 0 R 174 0 R 335 0 R] +/Parent 330 0 R +>> +endobj +330 0 obj +<< +/Type/Pages +/Count 17 +/Kids[331 0 R 332 0 R 333 0 R 334 0 R] +/Parent 3 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +337 0 obj +<< +/Type/Pages +/Count 4 +/Kids[186 0 R 190 0 R 194 0 R 198 0 R] +/Parent 336 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +338 0 obj +<< +/Type/Pages +/Count 4 +/Kids[202 0 R 206 0 R 210 0 R 214 0 R] +/Parent 336 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 339 0 R +>> +endobj +339 0 obj +<< +/Type/Pages +/Count 4 +/Kids[218 0 R 222 0 R 226 0 R 230 0 R] +/Parent 336 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +341 0 obj +<< +/Type/Pages +/Count 2 +/Kids[246 0 R 250 0 R] +/Parent 340 0 R +>> +endobj +340 0 obj +<< +/Type/Pages +/Count 5 +/Kids[234 0 R 238 0 R 242 0 R 341 0 R] +/Parent 336 0 R +>> +endobj +336 0 obj +<< +/Type/Pages +/Count 17 +/Kids[337 0 R 338 0 R 339 0 R 340 0 R] +/Parent 3 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +343 0 obj +<< +/Type/Pages +/Count 4 +/Kids[254 0 R 258 0 R 262 0 R 266 0 R] +/Parent 342 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +344 0 obj +<< +/Type/Pages +/Count 4 +/Kids[270 0 R 274 0 R 278 0 R 282 0 R] +/Parent 342 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 345 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 345 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 345 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 345 0 R +>> +endobj +345 0 obj +<< +/Type/Pages +/Count 4 +/Kids[286 0 R 290 0 R 294 0 R 298 0 R] +/Parent 342 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 323 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +347 0 obj +<< +/Type/Pages +/Count 2 +/Kids[314 0 R 318 0 R] +/Parent 346 0 R +>> +endobj +346 0 obj +<< +/Type/Pages +/Count 5 +/Kids[302 0 R 306 0 R 310 0 R 347 0 R] +/Parent 342 0 R +>> +endobj +342 0 obj +<< +/Type/Pages +/Count 17 +/Kids[343 0 R 344 0 R 345 0 R 346 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 67 +/Kids[325 0 R 330 0 R 336 0 R 342 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +348 0 obj +<< +>> +endobj +349 0 obj +null +endobj +350 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 348 0 R +/Threads 349 0 R +/Names 350 0 R +>> +endobj +xref +0 351 +0000000000 65535 f +0000148990 00000 n +0000158917 00000 n +0000158562 00000 n +0000158767 00000 n +0000149154 00000 n +0000004048 00000 n +0000000009 00000 n +0000082105 00000 n +0000081921 00000 n +0000000913 00000 n +0000086769 00000 n +0000086583 00000 n +0000001906 00000 n +0000091892 00000 n +0000091704 00000 n +0000002823 00000 n +0000158667 00000 n +0000003740 00000 n +0000158717 00000 n +0000003993 00000 n +0000149257 00000 n +0000014682 00000 n +0000101704 00000 n +0000101515 00000 n +0000004109 00000 n +0000106975 00000 n +0000106785 00000 n +0000005055 00000 n +0000112279 00000 n +0000112090 00000 n +0000005991 00000 n +0000006967 00000 n +0000114936 00000 n +0000114742 00000 n +0000007921 00000 n +0000008867 00000 n +0000117538 00000 n +0000117343 00000 n +0000010483 00000 n +0000119509 00000 n +0000119323 00000 n +0000011434 00000 n +0000122535 00000 n +0000122344 00000 n +0000012398 00000 n +0000013393 00000 n +0000014571 00000 n +0000149362 00000 n +0000015735 00000 n +0000014744 00000 n +0000015635 00000 n +0000149467 00000 n +0000021425 00000 n +0000124482 00000 n +0000124288 00000 n +0000015797 00000 n +0000016768 00000 n +0000128037 00000 n +0000127842 00000 n +0000017675 00000 n +0000018657 00000 n +0000130694 00000 n +0000130508 00000 n +0000019634 00000 n +0000020379 00000 n +0000021301 00000 n +0000149666 00000 n +0000022185 00000 n +0000021487 00000 n +0000022140 00000 n +0000149771 00000 n +0000022746 00000 n +0000022247 00000 n +0000022701 00000 n +0000149876 00000 n +0000023762 00000 n +0000022808 00000 n +0000023638 00000 n +0000149981 00000 n +0000025054 00000 n +0000023824 00000 n +0000024930 00000 n +0000150181 00000 n +0000025817 00000 n +0000025116 00000 n +0000025772 00000 n +0000150286 00000 n +0000026587 00000 n +0000025879 00000 n +0000026542 00000 n +0000150391 00000 n +0000027008 00000 n +0000026649 00000 n +0000026963 00000 n +0000150496 00000 n +0000028251 00000 n +0000027070 00000 n +0000028115 00000 n +0000150696 00000 n +0000030421 00000 n +0000141865 00000 n +0000141669 00000 n +0000028313 00000 n +0000029325 00000 n +0000030283 00000 n +0000150803 00000 n +0000031058 00000 n +0000030485 00000 n +0000031012 00000 n +0000150911 00000 n +0000032152 00000 n +0000031122 00000 n +0000032027 00000 n +0000151019 00000 n +0000033528 00000 n +0000032216 00000 n +0000033390 00000 n +0000151323 00000 n +0000034236 00000 n +0000033592 00000 n +0000034190 00000 n +0000151431 00000 n +0000034553 00000 n +0000034300 00000 n +0000034507 00000 n +0000151539 00000 n +0000035785 00000 n +0000034617 00000 n +0000035660 00000 n +0000151647 00000 n +0000036571 00000 n +0000035849 00000 n +0000036525 00000 n +0000151854 00000 n +0000037345 00000 n +0000036635 00000 n +0000037299 00000 n +0000151962 00000 n +0000037768 00000 n +0000037409 00000 n +0000037722 00000 n +0000152070 00000 n +0000038935 00000 n +0000037832 00000 n +0000038798 00000 n +0000152178 00000 n +0000040380 00000 n +0000038999 00000 n +0000040243 00000 n +0000152385 00000 n +0000041154 00000 n +0000040444 00000 n +0000041108 00000 n +0000152493 00000 n +0000041937 00000 n +0000041218 00000 n +0000041891 00000 n +0000152601 00000 n +0000042451 00000 n +0000042001 00000 n +0000042405 00000 n +0000152709 00000 n +0000043740 00000 n +0000042515 00000 n +0000043603 00000 n +0000152916 00000 n +0000044958 00000 n +0000043804 00000 n +0000044820 00000 n +0000153024 00000 n +0000045556 00000 n +0000045022 00000 n +0000045510 00000 n +0000153132 00000 n +0000046782 00000 n +0000045620 00000 n +0000046657 00000 n +0000153240 00000 n +0000047529 00000 n +0000046846 00000 n +0000047483 00000 n +0000153348 00000 n +0000048256 00000 n +0000047593 00000 n +0000048210 00000 n +0000153736 00000 n +0000049585 00000 n +0000048320 00000 n +0000049447 00000 n +0000153844 00000 n +0000050269 00000 n +0000049649 00000 n +0000050223 00000 n +0000153952 00000 n +0000051373 00000 n +0000050333 00000 n +0000051225 00000 n +0000154060 00000 n +0000052488 00000 n +0000051437 00000 n +0000052340 00000 n +0000154267 00000 n +0000053753 00000 n +0000052552 00000 n +0000053605 00000 n +0000154375 00000 n +0000054516 00000 n +0000053817 00000 n +0000054470 00000 n +0000154483 00000 n +0000055252 00000 n +0000054580 00000 n +0000055206 00000 n +0000154591 00000 n +0000056443 00000 n +0000055316 00000 n +0000056295 00000 n +0000154798 00000 n +0000057802 00000 n +0000056507 00000 n +0000057641 00000 n +0000154906 00000 n +0000058492 00000 n +0000057866 00000 n +0000058446 00000 n +0000155014 00000 n +0000059760 00000 n +0000058556 00000 n +0000059612 00000 n +0000155122 00000 n +0000061269 00000 n +0000059824 00000 n +0000061108 00000 n +0000155329 00000 n +0000061976 00000 n +0000061333 00000 n +0000061930 00000 n +0000155437 00000 n +0000062356 00000 n +0000062040 00000 n +0000062310 00000 n +0000155545 00000 n +0000063823 00000 n +0000062420 00000 n +0000063675 00000 n +0000155653 00000 n +0000064623 00000 n +0000063887 00000 n +0000064577 00000 n +0000155761 00000 n +0000065402 00000 n +0000064687 00000 n +0000065356 00000 n +0000156149 00000 n +0000065977 00000 n +0000065466 00000 n +0000065931 00000 n +0000156257 00000 n +0000067195 00000 n +0000066041 00000 n +0000067047 00000 n +0000156365 00000 n +0000068768 00000 n +0000067259 00000 n +0000068620 00000 n +0000156473 00000 n +0000069549 00000 n +0000068832 00000 n +0000069503 00000 n +0000156680 00000 n +0000070352 00000 n +0000069613 00000 n +0000070306 00000 n +0000156788 00000 n +0000070943 00000 n +0000070416 00000 n +0000070897 00000 n +0000156896 00000 n +0000072291 00000 n +0000071007 00000 n +0000072143 00000 n +0000157004 00000 n +0000072616 00000 n +0000072355 00000 n +0000072570 00000 n +0000157211 00000 n +0000074032 00000 n +0000072680 00000 n +0000073871 00000 n +0000157319 00000 n +0000074750 00000 n +0000074096 00000 n +0000074704 00000 n +0000157427 00000 n +0000076233 00000 n +0000074814 00000 n +0000076085 00000 n +0000157535 00000 n +0000077010 00000 n +0000076297 00000 n +0000076964 00000 n +0000157742 00000 n +0000077788 00000 n +0000077074 00000 n +0000077742 00000 n +0000157850 00000 n +0000078268 00000 n +0000077852 00000 n +0000078222 00000 n +0000157958 00000 n +0000079776 00000 n +0000078332 00000 n +0000079615 00000 n +0000158066 00000 n +0000080472 00000 n +0000079840 00000 n +0000080426 00000 n +0000158174 00000 n +0000081857 00000 n +0000143283 00000 n +0000143088 00000 n +0000080536 00000 n +0000081459 00000 n +0000081799 00000 n +0000151225 00000 n +0000149572 00000 n +0000150086 00000 n +0000150601 00000 n +0000151127 00000 n +0000153638 00000 n +0000151755 00000 n +0000152286 00000 n +0000152817 00000 n +0000153539 00000 n +0000153456 00000 n +0000156051 00000 n +0000154168 00000 n +0000154699 00000 n +0000155230 00000 n +0000155952 00000 n +0000155869 00000 n +0000158464 00000 n +0000156581 00000 n +0000157112 00000 n +0000157643 00000 n +0000158365 00000 n +0000158282 00000 n +0000158849 00000 n +0000158872 00000 n +0000158894 00000 n +trailer +<< +/Size 351 +/Root 2 0 R +/Info 1 0 R +>> +startxref +159015 +%%EOF diff --git a/src/axiom-website/CATS/schaum12.input.pamphlet b/src/axiom-website/CATS/schaum12.input.pamphlet new file mode 100644 index 0000000..7d5d77a --- /dev/null +++ b/src/axiom-website/CATS/schaum12.input.pamphlet @@ -0,0 +1,2870 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum12.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.265~~~~~$\displaystyle +\int{\frac{dx}{ax^2+bx+c}}$} +$$\int{\frac{1}{ax^2+bx+c}}= +\left\{ +\begin{array}{l} +\displaystyle\frac{2}{\sqrt{4ac-b^2}}\tan^{-1}\frac{2ax+b}{\sqrt{4ac-b^2}}\\ +\displaystyle\frac{1}{\sqrt{b^2-4ac}}\ln\left( +\frac{2ax+b-\sqrt{b^2-4ac}}{2ax+b+\sqrt{b^2-4ac}}\right) +\end{array} +\right. +$$ +<<*>>= +)spool schaum12.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(a*x^2+b*x+c),x) +--R +--R (1) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 2 +bb1:=2/sqrt(4*a*c-b^2)*atan((2*a*x+b)/sqrt(4*a*c-b^2)) +--R +--R +--R 2a x + b +--R 2atan(------------) +--R +---------+ +--R | 2 +--R \|4a c - b +--R (2) ------------------- +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 3 +bb2:=1/sqrt(b^2-4*a*c)*log((2*a*x+b-sqrt(b^2-4*a*c))/(2*a*x+b+sqrt(b^2-4*a*c))) +--R +--R +--R +-----------+ +--R | 2 +--R - \|- 4a c + b + 2a x + b +--R log(---------------------------) +--R +-----------+ +--R | 2 +--R \|- 4a c + b + 2a x + b +--R (3) -------------------------------- +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R Type: Expression Integer +--E + +--S 4 +cc1:=aa.1-bb1 +--R +--R (4) +--R +---------+ +--R | 2 +--R \|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 2a x + b +--R - 2\|- 4a c + b atan(------------) +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 5 +cc2:=aa.1-bb2 +--R +--R (5) +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R - \|- 4a c + b + 2a x + b +--R - log(---------------------------) +--R +-----------+ +--R | 2 +--R \|- 4a c + b + 2a x + b +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R Type: Expression Integer +--E + +--S 6 +cc3:=aa.2-bb1 +--R +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b 2a x + b +--R 2atan(----------------------) - 2atan(------------) +--R 2 +---------+ +--R 4a c - b | 2 +--R \|4a c - b +--R (6) --------------------------------------------------- +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 7 +cc4:=aa.2-bb2 +--R +--R (7) +--R +-----------+ +--R +---------+ | 2 +--R | 2 - \|- 4a c + b + 2a x + b +--R - \|4a c - b log(---------------------------) +--R +-----------+ +--R | 2 +--R \|- 4a c + b + 2a x + b +--R + +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R 2\|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R / +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 8 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (8) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 9 +dd3:=atanrule cc3 +--R +--R (9) +--R +---------+ +--R | 2 +--R \|4a c - b + 2%i a x + %i b +--R %i log(-----------------------------) +--R +---------+ +--R | 2 +--R \|4a c - b - 2%i a x - %i b +--R + +--R +---------+ +--R | 2 2 +--R (- 2a x - b)\|4a c - b + 4%i a c - %i b +--R - %i log(------------------------------------------) +--R +---------+ +--R | 2 2 +--R (2a x + b)\|4a c - b + 4%i a c - %i b +--R / +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Complex Integer +--E + +--S 10 +ee3:=expandLog dd3 +--R +--R (10) +--R +---------+ +--R | 2 2 +--R %i log((2a x + b)\|4a c - b + 4%i a c - %i b ) +--R + +--R +---------+ +--R | 2 2 +--R - %i log((2a x + b)\|4a c - b - 4%i a c + %i b ) +--R + +--R +---------+ +--R | 2 +--R %i log(\|4a c - b + 2%i a x + %i b) +--R + +--R +---------+ +--R | 2 +--R - %i log(\|4a c - b - 2%i a x - %i b) - %i log(- 1) +--R / +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Complex Integer +--E + +--S 11 14:265 Schaums and Axiom agree +ff3:=complexNormalize ee3 +--R +--R (11) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.266~~~~~$\displaystyle +\int{\frac{x~dx}{ax^2+bx+c}}$} +$$\int{\frac{x}{ax^2+bx+c}}= +\frac{1}{2a}\ln(ax^2+bx+c)-\frac{b}{2a}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 12 +aa:=integrate(x/(a*x^2+b*x+c),x) +--R +--R (1) +--R [ +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R log(a x + b x + c)\|- 4a c + b +--R / +--R +-----------+ +--R | 2 +--R 2a\|- 4a c + b +--R , +--R +---------+ +--R | 2 +---------+ +--R (2a x + b)\|4a c - b 2 | 2 +--R - 2b atan(----------------------) + log(a x + b x + c)\|4a c - b +--R 2 +--R 4a c - b +--R -------------------------------------------------------------------] +--R +---------+ +--R | 2 +--R 2a\|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 13 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 14 +bb1:=1/(2*a)*log(a*x^2+b*x+c)-b/(2*a)*t1.1 +--R +--R +--R (3) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R log(a x + b x + c)\|- 4a c + b +--R / +--R +-----------+ +--R | 2 +--R 2a\|- 4a c + b +--R Type: Expression Integer +--E + +--S 15 +bb2:=1/(2*a)*log(a*x^2+b*x+c)-b/(2*a)*t1.2 +--R +--R +--R +---------+ +--R | 2 +---------+ +--R (2a x + b)\|4a c - b 2 | 2 +--R - 2b atan(----------------------) + log(a x + b x + c)\|4a c - b +--R 2 +--R 4a c - b +--R (4) ------------------------------------------------------------------- +--R +---------+ +--R | 2 +--R 2a\|4a c - b +--R Type: Expression Integer +--E + +--S 16 +cc1:=aa.1-bb1 +--R +--R (5) +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R 2a\|- 4a c + b +--R Type: Expression Integer +--E + +--S 17 +cc2:=aa.2-bb1 +--R +--R (6) +--R +---------+ +--R | 2 +--R b\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R - 2b\|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R / +--R +-----------+ +---------+ +--R | 2 | 2 +--R 2a\|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 18 +cc3:=aa.2-bb1 +--R +--R (7) +--R +---------+ +--R | 2 +--R b\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R - 2b\|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R / +--R +-----------+ +---------+ +--R | 2 | 2 +--R 2a\|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 19 14:266 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.267~~~~~$\displaystyle +\int{\frac{x^2dx}{ax^2+bx+c}}$} +$$\int{\frac{x^2}{ax^2+bx+c}}= +\frac{x}{a}-\frac{b}{2a^2}\ln(ax^2+bx+c)+\frac{b^2-2ac}{2a^2} +\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(x^2/(a*x^2+b*x+c),x) +--R +--R +--R (1) +--R [ +--R 2 +--R (2a c - b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R (- b log(a x + b x + c) + 2a x)\|- 4a c + b +--R / +--R +-----------+ +--R 2 | 2 +--R 2a \|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R 2 (2a x + b)\|4a c - b +--R (- 4a c + 2b )atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R (- b log(a x + b x + c) + 2a x)\|4a c - b +--R / +--R +---------+ +--R 2 | 2 +--R 2a \|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 21 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 22 +bb1:=x/a-b/(2*a^2)*log(a*x^2+b*x+c)+(b^2-2*a*c)/(2*a^2)*t1.1 +--R +--R +--R (3) +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R (- b log(a x + b x + c) + 2a x)\|- 4a c + b +--R / +--R +-----------+ +--R 2 | 2 +--R 2a \|- 4a c + b +--R Type: Expression Integer +--E + +--S 23 +bb2:=x/a-b/(2*a^2)*log(a*x^2+b*x+c)+(b^2-2*a*c)/(2*a^2)*t1.2 +--R +--R +--R (4) +--R +---------+ +--R | 2 +--R 2 (2a x + b)\|4a c - b +--R (- 4a c + 2b )atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R (- b log(a x + b x + c) + 2a x)\|4a c - b +--R / +--R +---------+ +--R 2 | 2 +--R 2a \|4a c - b +--R Type: Expression Integer +--E + +--S 24 +cc1:=bb1-aa.1 +--R +--R (5) +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R 2 | 2 +--R 2a \|- 4a c + b +--R Type: Expression Integer +--E + +--S 25 14:267 Schaums and Axiom differ by a constant +dd1:=complexNormalize cc1 +--R +--R 2 3 2 2 +--R (- 2a c + b )log(- 16a c + 4a b ) +--R (6) --------------------------------- +--R +-----------+ +--R 2 | 2 +--R 2a \|- 4a c + b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.268~~~~~$\displaystyle +\int{\frac{x^m~dx}{ax^2+bx+c}}$} +$$\int{\frac{x^m}{ax^2+bx+c}}= +\frac{x^{m-1}}{(m-1)a}-\frac{c}{a}\int{\frac{x^{m-2}}{ax^2+bx+c}}- +\frac{b}{a}\int{\frac{x^{m-1}}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 26 14:268 Axiom cannot compute this integral +aa:=integrate(x^m/(a*x^2+b*x+c),x) +--R +--R +--R x m +--I ++ %N +--I (1) | --------------- d%N +--R ++ 2 +--I c + %N b + %N a +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.269~~~~~$\displaystyle +\int{\frac{dx}{x(ax^2+bx+c)}}$} +$$\int{\frac{1}{x(ax^2+bx+c)}}= +\frac{1}{2c}\ln\left(\frac{x^2}{ax^2+bx+c}\right)- +\frac{b}{2c}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(1/(x*(a*x^2+b*x+c)),x) +--R +--R +--R (1) +--R [ +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R (- log(a x + b x + c) + 2log(x))\|- 4a c + b +--R / +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R - 2b atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R (- log(a x + b x + c) + 2log(x))\|4a c - b +--R / +--R +---------+ +--R | 2 +--R 2c\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 28 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 29 +bb1:=1/(2*c)*log(x^2/(a*x^2+b*x+c))-b/(2*c)*t1.1 +--R +--R +--R (3) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +-----------+ +--R x | 2 +--R log(--------------)\|- 4a c + b +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R Type: Expression Integer +--E + +--S 30 +bb2:=1/(2*c)*log(x^2/(a*x^2+b*x+c))-b/(2*c)*t1.2 +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R (2a x + b)\|4a c - b x | 2 +--R - 2b atan(----------------------) + log(--------------)\|4a c - b +--R 2 2 +--R 4a c - b a x + b x + c +--R (4) ------------------------------------------------------------------- +--R +---------+ +--R | 2 +--R 2c\|4a c - b +--R Type: Expression Integer +--E + +--S 31 +cc1:=bb1-aa.1 +--R +--R (5) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b +--R + +--R 2 2 3 +--R (- 8a c + 2a b )x - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +-----------+ +--R 2 x | 2 +--R (log(a x + b x + c) - 2log(x) + log(--------------))\|- 4a c + b +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R Type: Expression Integer +--E + +--S 32 +dd1:=expandLog cc1 +--R +--R (6) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R + +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R + +--R 2 +--R 2b log(a x + b x + c) +--R / +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R Type: Expression Integer +--E + +--S 33 14:269 Schaums and Axiom differ by a constant +ee1:=complexNormalize dd1 +--R +--R 3 2 2 +--R b log(- 16a c + 4a b ) +--R (7) - ---------------------- +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.270~~~~~$\displaystyle +\int{\frac{dx}{x^2(ax^2+bx+c)}}$} +$$\int{\frac{1}{x^2(ax^2+bx+c)}}= +\frac{b}{2c^2}\ln\left(\frac{ax^2+bx+c}{x^2}\right)-\frac{1}{cx}+ +\frac{b^2-2ac}{2c^2}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 34 +aa:=integrate(1/(x^2*(a*x^2+b*x+c)),x) +--R +--R +--R (1) +--R [ +--R 2 +--R (2a c - b )x +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R (b x log(a x + b x + c) - 2b x log(x) - 2c)\|- 4a c + b +--R / +--R +-----------+ +--R 2 | 2 +--R 2c x\|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R 2 (2a x + b)\|4a c - b +--R (- 4a c + 2b )x atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R (b x log(a x + b x + c) - 2b x log(x) - 2c)\|4a c - b +--R / +--R +---------+ +--R 2 | 2 +--R 2c x\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 35 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 36 +bb1:=b/(2*c^2)*log((a*x^2+b*x+c)/x^2)-1/(c*x)+(b^2-2*a*c)/(2*c^2)*t1.1 +--R +--R +--R (3) +--R 2 +--R (- 2a c + b )x +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +-----------+ +--R a x + b x + c | 2 +--R (b x log(--------------) - 2c)\|- 4a c + b +--R 2 +--R x +--R / +--R +-----------+ +--R 2 | 2 +--R 2c x\|- 4a c + b +--R Type: Expression Integer +--E + +--S 37 +bb2:=b/(2*c^2)*log((a*x^2+b*x+c)/x^2)-1/(c*x)+(b^2-2*a*c)/(2*c^2)*t1.2 +--R +--R +--R (4) +--R +---------+ +--R | 2 +--R 2 (2a x + b)\|4a c - b +--R (- 4a c + 2b )x atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 +---------+ +--R a x + b x + c | 2 +--R (b x log(--------------) - 2c)\|4a c - b +--R 2 +--R x +--R / +--R +---------+ +--R 2 | 2 +--R 2c x\|4a c - b +--R Type: Expression Integer +--E + +--S 38 +cc1:=bb1-aa.1 +--R +--R (5) +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +-----------+ +--R 2 a x + b x + c | 2 +--R (- b log(a x + b x + c) + 2b log(x) + b log(--------------))\|- 4a c + b +--R 2 +--R x +--R / +--R +-----------+ +--R 2 | 2 +--R 2c \|- 4a c + b +--R Type: Expression Integer +--E + +--S 39 +dd1:=expandLog cc1 +--R +--R (6) +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R + +--R 2 +--R (- 2a c + b ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R + +--R 2 2 +--R (4a c - 2b )log(a x + b x + c) +--R / +--R +-----------+ +--R 2 | 2 +--R 2c \|- 4a c + b +--R Type: Expression Integer +--E + +--S 40 14:270 Schaums and Axiom differ by a constant +ee1:=complexNormalize dd1 +--R +--R 2 3 2 2 +--R (- 2a c + b )log(- 16a c + 4a b ) +--R (7) --------------------------------- +--R +-----------+ +--R 2 | 2 +--R 2c \|- 4a c + b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.271~~~~~$\displaystyle +\int{\frac{dx}{x^n(ax^2+bx+c)}}$} +$$\int{\frac{1}{x^n(ax^2+bx+c)}}= +-\frac{1}{(n-1)cx^{n-1}}- +\frac{b}{c}\int{\frac{1}{x^{n-1}(ax^2+bx+c)}}- +\frac{a}{c}\int{\frac{1}{x^{x-2}(ax^2+bx+c)}} +$$ +<<*>>= +)clear all + +--S 41 14:271 Axiom cannot compute this integral +aa:=integrate(1/(x^n*(a*x^2+b*x+c)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------------- d%N +--R ++ 2 n +--I (c + %N b + %N a)%N +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.272~~~~~$\displaystyle +\int{\frac{dx}{(ax^2+bx+c)^2}}$} +$$\int{\frac{1}{(ax^2+bx+c)^2}}= +\frac{2xa+b}{(4ac-b^2)(ax^2+bx+c)}+ +\frac{2a}{4ac-b^2}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 42 +aa:=integrate(1/(a*x^2+b*x+c)^2,x) +--R +--R +--R (1) +--R [ +--R 2 2 +--R (2a x + 2a b x + 2a c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (2a x + b)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R , +--R +---------+ +--R | 2 +---------+ +--R 2 2 (2a x + b)\|4a c - b | 2 +--R (4a x + 4a b x + 4a c)atan(----------------------) + (2a x + b)\|4a c - b +--R 2 +--R 4a c - b +--R ---------------------------------------------------------------------------- +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 43 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 44 +bb1:=(2*a*x+b)/((4*a*c-b^2)*(a*x^2+b*x+c))+(2*a)/(4*a*c-b^2)*t1.1 +--R +--R (3) +--R 2 2 +--R (2a x + 2a b x + 2a c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (2a x + b)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 45 +bb2:=(2*a*x+b)/((4*a*c-b^2)*(a*x^2+b*x+c))+(2*a)/(4*a*c-b^2)*t1.2 +--R +--R (4) +--R +---------+ +--R | 2 +---------+ +--R 2 2 (2a x + b)\|4a c - b | 2 +--R (4a x + 4a b x + 4a c)atan(----------------------) + (2a x + b)\|4a c - b +--R 2 +--R 4a c - b +--R ---------------------------------------------------------------------------- +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R Type: Expression Integer +--E + +--S 46 +cc1:=aa.1-bb1 +--R +--R (5) 0 +--R Type: Expression Integer +--E + +--S 47 +cc2:=aa.2-bb1 +--R +--R (6) +--R - +--R +---------+ +--R | 2 +--R 2a\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R 4a\|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R / +--R +-----------+ +---------+ +--R 2 | 2 | 2 +--R (4a c - b )\|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 48 +cc3:=aa.1-bb2 +--R +--R (7) +--R +---------+ +--R | 2 +--R 2a\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R - 4a\|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R / +--R +-----------+ +---------+ +--R 2 | 2 | 2 +--R (4a c - b )\|- 4a c + b \|4a c - b +--R Type: Expression Integer +--E + +--S 49 14:272 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.273~~~~~$\displaystyle +\int{\frac{x~dx}{(ax^2+bx+c)^2}}$} +$$\int{\frac{x}{(ax^2+bx+c)^2}}= +-\frac{bx+2c}{(4ac-b^2)(ax^2+bx+c)}- +\frac{b}{4ac-b^2}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 50 +aa:=integrate(x/(a*x^2+b*x+c)^2,x) +--R +--R +--R (1) +--R [ +--R 2 2 +--R (a b x + b x + b c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (- b x - 2c)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R 2 2 (2a x + b)\|4a c - b +--R (- 2a b x - 2b x - 2b c)atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R | 2 +--R (- b x - 2c)\|4a c - b +--R / +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 51 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 52 +bb1:=-(b*x+2*c)/((4*a*c-b^2)*(a*x^2+b*x+c))-b/(4*a*c-b^2)*t1.1 +--R +--R +--R (3) +--R 2 2 +--R (- a b x - b x - b c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (- b x - 2c)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 53 +bb2:=-(b*x+2*c)/((4*a*c-b^2)*(a*x^2+b*x+c))-b/(4*a*c-b^2)*t1.2 +--R +--R +--R (4) +--R +---------+ +--R | 2 +--R 2 2 (2a x + b)\|4a c - b +--R (- 2a b x - 2b x - 2b c)atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R | 2 +--R (- b x - 2c)\|4a c - b +--R / +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R Type: Expression Integer +--E + +--S 54 +cc1:=bb1-aa.1 +--R +--R (5) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b +--R + +--R 2 2 3 +--R (- 8a c + 2a b )x - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R 2 | 2 +--R (4a c - b )\|- 4a c + b +--R Type: Expression Integer +--E + +--S 55 +dd1:=expandLog cc1 +--R +--R (6) +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R + +--R - +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R + +--R 2 +--R 2b log(a x + b x + c) +--R / +--R +-----------+ +--R 2 | 2 +--R (4a c - b )\|- 4a c + b +--R Type: Expression Integer +--E + +--S 56 14:273 Schaums and Axiom differ by a constant +ee1:=complexNormalize dd1 +--R +--R 3 2 2 +--R b log(- 16a c + 4a b ) +--R (7) - ------------------------- +--R +-----------+ +--R 2 | 2 +--R (4a c - b )\|- 4a c + b +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.274~~~~~$\displaystyle +\int{\frac{x^2~dx}{(ax^2+bx+c)^2}}$} +$$\int{\frac{x^2}{(ax^2+bx+c)^2}}= +\frac{(b^2-2ac)x+bc}{a(4ac-b^2)(ax^2+bx+c)}+ +\frac{2c}{4ac-b^2}\int{\frac{1}{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 57 +aa:=integrate(x^2/(a*x^2+b*x+c)^2,x) +--R +--R +--R (1) +--R [ +--R 2 2 2 +--R (2a c x + 2a b c x + 2a c ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R ((- 2a c + b )x + b c)\|- 4a c + b +--R / +--R +-----------+ +--R 3 2 2 2 2 3 2 2 2 | 2 +--R ((4a c - a b )x + (4a b c - a b )x + 4a c - a b c)\|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R 2 2 2 (2a x + b)\|4a c - b +--R (4a c x + 4a b c x + 4a c )atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R ((- 2a c + b )x + b c)\|4a c - b +--R / +--R +---------+ +--R 3 2 2 2 2 3 2 2 2 | 2 +--R ((4a c - a b )x + (4a b c - a b )x + 4a c - a b c)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 58 +t1:=integrate(1/(a*x^2+b*x+c),x) +--R +--R +--R (2) +--R [ +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R , +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R 2atan(----------------------) +--R 2 +--R 4a c - b +--R -----------------------------] +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Union(List Expression Integer,...) +--E + +--S 59 +bb1:=((b^2-2*a*c)*x+b*c)/(a*(4*a*c-b^2)*(a*x^2+b*x+c))+(2*c)/(4*a*c-b^2)*t1.1 +--R +--R (3) +--R 2 2 2 +--R (2a c x + 2a b c x + 2a c ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R ((- 2a c + b )x + b c)\|- 4a c + b +--R / +--R +-----------+ +--R 3 2 2 2 2 3 2 2 2 | 2 +--R ((4a c - a b )x + (4a b c - a b )x + 4a c - a b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 60 +bb2:=((b^2-2*a*c)*x+b*c)/(a*(4*a*c-b^2)*(a*x^2+b*x+c))+(2*c)/(4*a*c-b^2)*t1.2 +--R +--R (4) +--R +---------+ +--R | 2 +--R 2 2 2 (2a x + b)\|4a c - b +--R (4a c x + 4a b c x + 4a c )atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R ((- 2a c + b )x + b c)\|4a c - b +--R / +--R +---------+ +--R 3 2 2 2 2 3 2 2 2 | 2 +--R ((4a c - a b )x + (4a b c - a b )x + 4a c - a b c)\|4a c - b +--R Type: Expression Integer +--E + +--S 61 14:274 Schaums and Axiom agree +cc1:=aa.1-bb1 +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.275~~~~~$\displaystyle +\int{\frac{x^m~dx}{(ax^2+bx+c)^n}}$} +$$ +\begin{array}{lr} +\displaystyle\int{\frac{x^m}{(ax^2+bx+c)^n}}= +&\displaystyle-\frac{x^{m-1}}{(2n-m-1)a(ax^2+bx+c)^{n-1}}\\ +&\\ +&\displaystyle+\frac{(m-1)c}{(2n-m-1)a}\int{\frac{x^{m-2}}{(ax^2+bx+2)^n}}\\ +&\\ +&\displaystyle-\frac{(n-m)b}{(2n-m-1)a}\int{\frac{x^{m-1}}{(ax^2+bx+c)^n}} +\end{array} +$$ +<<*>>= +)clear all + +--S 62 14:275 Axiom cannot compute this integral +aa:=integrate(x^m/(a*x^2+b*x+c)^n,x) +--R +--R +--R x m +--I ++ %N +--I (1) | ------------------ d%N +--R ++ 2 n +--I (c + %N b + %N a) +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.276~~~~~$\displaystyle +\int{\frac{x^{2n-1}~dx}{(ax^2+bx+c)^n}}$} +$$\begin{array}{lr} +\displaystyle\int{\frac{x^{2n-1}}{(ax^2+bx+c)^n}}= +&\displaystyle\frac{1}{a}\int{\frac{x^{2n-3}}{(ax^2+bx+c)^{n-1}}}\\ +&\\ +&\displaystyle-\frac{c}{a}\int{\frac{x^{2n-3}}{(ax^2+bx+c)^n}}\\ +&\\ +&\displaystyle-\frac{b}{a}\int{\frac{x^{2n-2}}{(ax^2+bx+c)^n}} +\end{array} +$$ +<<*>>= +)clear all + +--S 63 14:276 Axiom cannot compute this integral +aa:=integrate(x^(2*n-1)/(a*x^2+b*x+c)^n,x) +--R +--R +--R x 2n - 1 +--I ++ %N +--I (1) | ------------------ d%N +--R ++ 2 n +--I (c + %N b + %N a) +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.277~~~~~$\displaystyle +\int{\frac{dx}{x(ax^2+bx+c)^2}}$} +$$\begin{array}{lr} +\displaystyle\int{\frac{1}{x(ax^2+bx+c)^2}}= +&\displaystyle\frac{1}{2c(ax^2+bx+2)}\\ +&\\ +&\displaystyle-\frac{b}{2c}\int{\frac{1}{(ax^2+bx+c)^2}}\\ +&\\ +&\displaystyle+\frac{1}{c}\int{\frac{1}{x(ax^2+bx+c)}} +\end{array} +$$ +<<*>>= +)clear all + +--S 64 +aa:=integrate(1/(x*(a*x^2+b*x+c)^2),x) +--R +--R +--R (1) +--R [ +--R 2 3 2 2 4 2 3 +--R ((6a b c - a b )x + (6a b c - b )x + 6a b c - b c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) +--R + +--R 2 2 +--R - 2a b c x + 4a c - 2b c +--R * +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +-----------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|- 4a c + b +--R , +--R +--R 2 3 2 2 4 2 3 +--R ((- 12a b c + 2a b )x + (- 12a b c + 2b )x - 12a b c + 2b c) +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) +--R + +--R 2 2 +--R - 2a b c x + 4a c - 2b c +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +---------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 65 +t1:=integrate(1/(a*x^2+b*x+c)^2,x) +--R +--R +--R (2) +--R [ +--R 2 2 +--R (2a x + 2a b x + 2a c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (2a x + b)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R , +--R +---------+ +--R | 2 +---------+ +--R 2 2 (2a x + b)\|4a c - b | 2 +--R (4a x + 4a b x + 4a c)atan(----------------------) + (2a x + b)\|4a c - b +--R 2 +--R 4a c - b +--R ---------------------------------------------------------------------------- +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 66 +t2:=integrate(1/(x*(a*x^2+b*x+c)),x) +--R +--R +--R (3) +--R [ +--R b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 | 2 +--R (- log(a x + b x + c) + 2log(x))\|- 4a c + b +--R / +--R +-----------+ +--R | 2 +--R 2c\|- 4a c + b +--R , +--R +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R - 2b atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R +---------+ +--R 2 | 2 +--R (- log(a x + b x + c) + 2log(x))\|4a c - b +--R / +--R +---------+ +--R | 2 +--R 2c\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 67 +bb1:=1/(2*c*(a*x^2+b*x+c))-b/(2*c)*t1.1+1/c*t2.1 +--R +--R +--R (4) +--R 2 2 2 2 +--R (- 2a b c x - 2a b c x - 2a b c ) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 3 2 2 4 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + 4a b c - b c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) - 2a b c x +--R + +--R 2 2 +--R 4a c - 2b c +--R * +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +-----------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|- 4a c + b +--R Type: Expression Integer +--E + +--S 68 +bb2:=1/(2*c*(a*x^2+b*x+c))-b/(2*c)*t1.2+1/c*t2.1 +--R +--R +--R (5) +--R +---------+ +--R 2 3 2 2 4 2 3 | 2 +--R ((4a b c - a b )x + (4a b c - b )x + 4a b c - b c)\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 2 2 2 2 | 2 +--R (- 4a b c x - 4a b c x - 4a b c )\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) - 2a b c x +--R + +--R 2 2 +--R 4a c - 2b c +--R * +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R / +--R +-----------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 69 +bb3:=1/(2*c*(a*x^2+b*x+c))-b/(2*c)*t1.1+1/c*t2.2 +--R +--R +--R (6) +--R +---------+ +--R 2 2 2 2 | 2 +--R (- 2a b c x - 2a b c x - 2a b c )\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 3 2 2 4 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x - 8a b c + 2b c) +--R * +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R \|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) - 2a b c x +--R + +--R 2 2 +--R 4a c - 2b c +--R * +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R / +--R +-----------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 70 +bb4:=1/(2*c*(a*x^2+b*x+c))-b/(2*c)*t1.2+1/c*t2.2 +--R +--R +--R (7) +--R 2 3 2 2 4 2 3 +--R ((- 12a b c + 2a b )x + (- 12a b c + 2b )x - 12a b c + 2b c) +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) - 2a b c x +--R + +--R 2 2 +--R 4a c - 2b c +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +---------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|4a c - b +--R Type: Expression Integer +--E + +--S 71 +cc1:=aa.1-bb1 +--R +--R (8) +--R a b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R a b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 72 +dd1:=expandLog cc1 +--R +--R (9) +--R a b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R + +--R a b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R + +--R 2 +--R - 2a b log(a x + b x + c) +--R / +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 73 14:277 Schaums and Axiom differ by a constant +ee1:=complexNormalize dd1 +--R +--R 3 2 2 +--R a b log(- 16a c + 4a b ) +--R (10) --------------------------- +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.278~~~~~$\displaystyle +\int{\frac{dx}{x^2(ax^2+bx+c)^2}}$} +$$\begin{array}{lr} +\displaystyle\int{\frac{1}{x^2(ax^2+bx+c)^2}}= +&\displaystyle-\frac{1}{cx(ax^2+bx+c)}\\ +&\\ +&\displaystyle-\frac{3a}{c}\int{\frac{1}{(ax^2+bx+c)^2}}\\ +&\\ +&\displaystyle-\frac{2b}{c}\int{\frac{1}{x(ax^2+bx+c)^2}} +\end{array} +$$ +<<*>>= +)clear all + +--S 74 +aa:=integrate(1/(x^2*(a*x^2+b*x+c)^2),x) +--R +--R +--R (1) +--R [ +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (6a c - 6a b c + a b )x + (6a b c - 6a b c + b )x +--R + +--R 2 3 2 2 4 +--R (6a c - 6a b c + b c)x +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +-----------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|- 4a c + b +--R , +--R +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (- 12a c + 12a b c - 2a b )x + (- 12a b c + 12a b c - 2b )x +--R + +--R 2 3 2 2 4 +--R (- 12a c + 12a b c - 2b c)x +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +---------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 75 +t1:=integrate(1/(a*x^2+b*x+c)^2,x) +--R +--R +--R (2) +--R [ +--R 2 2 +--R (2a x + 2a b x + 2a c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R | 2 +--R (2a x + b)\|- 4a c + b +--R / +--R +-----------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|- 4a c + b +--R , +--R +---------+ +--R | 2 +---------+ +--R 2 2 (2a x + b)\|4a c - b | 2 +--R (4a x + 4a b x + 4a c)atan(----------------------) + (2a x + b)\|4a c - b +--R 2 +--R 4a c - b +--R ---------------------------------------------------------------------------- +--R +---------+ +--R 2 2 2 3 2 2 | 2 +--R ((4a c - a b )x + (4a b c - b )x + 4a c - b c)\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 76 +t2:=integrate(1/(x*(a*x^2+b*x+c)^2),x) +--R +--R +--R (3) +--R [ +--R 2 3 2 2 4 2 3 +--R ((6a b c - a b )x + (6a b c - b )x + 6a b c - b c) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) +--R + +--R 2 2 +--R - 2a b c x + 4a c - 2b c +--R * +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +-----------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|- 4a c + b +--R , +--R +--R 2 3 2 2 4 2 3 +--R ((- 12a b c + 2a b )x + (- 12a b c + 2b )x - 12a b c + 2b c) +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 2 2 3 2 2 +--R ((- 4a c + a b )x + (- 4a b c + b )x - 4a c + b c) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 2 2 3 2 2 +--R ((8a c - 2a b )x + (8a b c - 2b )x + 8a c - 2b c)log(x) +--R + +--R 2 2 +--R - 2a b c x + 4a c - 2b c +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +---------+ +--R 2 3 2 2 2 3 3 2 4 2 3 | 2 +--R ((8a c - 2a b c )x + (8a b c - 2b c )x + 8a c - 2b c )\|4a c - b +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 77 +bb1:=-1/(c*x*(a*x^2+b*x+c))-((3*a)/c)*t1.1-(2*b)/c*t2.1 +--R +--R +--R (4) +--R 3 2 3 2 2 2 2 3 +--R (- 6a c x - 6a b c x - 6a c x) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 2 4 3 3 5 2 2 2 4 +--R ((- 6a b c + a b )x + (- 6a b c + b )x + (- 6a b c + b c)x) +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +-----------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 78 +bb2:=-1/(c*x*(a*x^2+b*x+c))-((3*a)/c)*t1.2-(2*b)/c*t2.1 +--R +--R +--R (5) +--R 2 2 4 3 3 5 2 2 2 4 +--R ((- 6a b c + a b )x + (- 6a b c + b )x + (- 6a b c + b c)x) +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R + +--R +-----------+ +--R 3 2 3 2 2 2 2 3 | 2 +--R (- 12a c x - 12a b c x - 12a c x)\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R / +--R +-----------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 79 +bb3:=-1/(c*x*(a*x^2+b*x+c))-((3*a)/c)*t1.1-(2*b)/c*t2.2 +--R +--R +--R (6) +--R +---------+ +--R 3 2 3 2 2 2 2 3 | 2 +--R (- 6a c x - 6a b c x - 6a c x)\|4a c - b +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 2 4 3 3 5 2 2 2 4 +--R ((12a b c - 2a b )x + (12a b c - 2b )x + (12a b c - 2b c)x) +--R * +--R +---------+ +--R +-----------+ | 2 +--R | 2 (2a x + b)\|4a c - b +--R \|- 4a c + b atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +-----------+ +---------+ +--R | 2 | 2 +--R \|- 4a c + b \|4a c - b +--R / +--R +-----------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|- 4a c + b +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R Type: Expression Integer +--E + +--S 80 +bb4:=-1/(c*x*(a*x^2+b*x+c))-((3*a)/c)*t1.2-(2*b)/c*t2.2 +--R +--R +--R (7) +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (- 12a c + 12a b c - 2a b )x + (- 12a b c + 12a b c - 2b )x +--R + +--R 2 3 2 2 4 +--R (- 12a c + 12a b c - 2b c)x +--R * +--R +---------+ +--R | 2 +--R (2a x + b)\|4a c - b +--R atan(----------------------) +--R 2 +--R 4a c - b +--R + +--R 2 3 3 2 4 2 2 3 +--R ((4a b c - a b )x + (4a b c - b )x + (4a b c - b c)x) +--R * +--R 2 +--R log(a x + b x + c) +--R + +--R 2 3 3 2 4 2 2 3 +--R ((- 8a b c + 2a b )x + (- 8a b c + 2b )x + (- 8a b c + 2b c)x) +--R * +--R log(x) +--R + +--R 2 2 2 2 2 3 3 2 2 +--R (- 6a c + 2a b c)x + (- 7a b c + 2b c)x - 4a c + b c +--R * +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +---------+ +--R 2 4 2 3 3 4 3 3 2 5 2 4 | 2 +--R ((4a c - a b c )x + (4a b c - b c )x + (4a c - b c )x)\|4a c - b +--R Type: Expression Integer +--E + +--S 81 +cc1:=aa.1-bb1 +--R +--R (8) +--R 2 +--R 6a +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R / +--R 2 +--R a x + b x + c +--R + +--R 2 +--R 6a +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R / +--R 2 +--R a x + b x + c +--R / +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 82 +dd1:=expandLog cc1 +--R +--R (9) +--R 2 +--R 6a +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (8a c - 2a b )x +--R + +--R 3 +--R 4a b c - b +--R + +--R 2 +--R 6a +--R * +--R log +--R +-----------+ +--R 2 2 2 | 2 2 2 +--R (2a x + 2a b x - 2a c + b )\|- 4a c + b + (- 8a c + 2a b )x +--R + +--R 3 +--R - 4a b c + b +--R + +--R 2 2 +--R - 12a log(a x + b x + c) +--R / +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E + +--S 83 14:278 Schaums and Axiom differ by a constant +ee1:=complexNormalize dd1 +--R +--R 2 3 2 2 +--R 6a log(- 16a c + 4a b ) +--R (10) --------------------------- +--R +-----------+ +--R 2 2 | 2 +--R (4a c - b c)\|- 4a c + b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.279~~~~~$\displaystyle +\int{\frac{dx}{x^m(ax^2+bx+c)^n}}$} +$$\begin{array}{lr} +\displaystyle\int{\frac{1}{x^m(ax^2+bx+c)^n}}= +&\displaystyle-\frac{1}{(m-1)cx^{m-1}(ax^2+bx+c)^{n-1}}\\ +&\\ +&\displaystyle-\frac{(m+2n-3)a}{(m-1)c}\int{\frac{1}{x^{m-2}(ax^2+bx+c)^n}}\\ +&\\ +&\displaystyle-\frac{(m+n-2)b}{(m-1)c}\int{\frac{1}{x^{m-1}(ax^2+bx+c)^n}} +\end{array} +$$ +<<*>>= +)clear all + +--S 84 14:279 Axiom cannot compute this integral +aa:=integrate(1/(x^m*(a*x^2+b*x+c)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | --------------------- d%N +--R ++ m 2 n +--I %N (c + %N b + %N a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p71 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum12.input.pdf b/src/axiom-website/CATS/schaum12.input.pdf new file mode 100644 index 0000000..b24e1d4 --- /dev/null +++ b/src/axiom-website/CATS/schaum12.input.pdf @@ -0,0 +1,3958 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/XGVGVP+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/EEFPIB+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TAMYWG+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/IJTCAF+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/EBENTK+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/CSSXYP+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PFTUWD+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/XQGLQC+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/TAMMEO+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +45 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/RJRYYM+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 999 +>> +stream +xK5 | +wŒ%?8U\!d؏lӳ.{~R`͔7+6؜~5!9zʏWo͟7o_ 5GbXHn^/tFRGitD@2@|y: L|O]612`n ߙ<ӠĀL:h1Tݴ_f?oYx׾KouDxte+?: M wkpV#pڜˀ؜!6wTl q7QF]VBnɪ6_a +*(#,W ;@+)Rm>"V'-iՆ4VђVMˀiRSkD-É9CG@-<3BgSkGaCCPs{q6\a/8K9^,)OeQ e|e]e娆*)R0`ݘiq=ԗ?q+erˮ/dž2t؂ʎ, +EiSuyE펗^sVy)횧_I- 7V N\kt +l.i*3YOV<\D-YZo<6\PD"Sc/t#6ݱ[d9Rw>q$X3pس$֝% E+otUA"H-1]%pS4Z۩=Sv9`p!|O:N.4eDeQ Mq !Uy]|vj,X4Ḧ.pjhkKEGHfH@abtEKE.VZF#mku?}VUtwy#z}4[}7&F] +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F9 41 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/IAEDAF+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +55 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 54 0 R +/BaseFont/SPMOLI+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +56 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +59 0 obj +<< +/Encoding 56 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 58 0 R +/BaseFont/RKAXVR+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 62 0 R +/BaseFont/CQTQCY+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +64 0 obj +<< +/Filter[/FlateDecode] +/Length 1193 +>> +stream +xXn#7+[rSܚ!8HSFZ1 K-# +Oqm3.&^)! A=~A?-Q@;$)Vâ@˟o2:)eEvCobvmq-FZJ܆/oAiVp,)6AC5 +r1BE|ߢ6 3T'oK$00?$Ki+|WWA- #x)C~J+g!fn(DžHb!UT*0sV-~7$6K Z֠XjƛEܳ) SM٨1p#=*RE@!nW0caIGkpK+`bA< +Ɩ X:įyd*1@ `=}҄ݳ' +QA1adN/Dh1jBP vvXQ]vo֐>hc’4LB_8RԕWCqHҮL= +05m8EG~`v(C3NX {m[UpխV22yGN G{B#>%'|2q'W^RD_Z~NG$=ޥr6X +j{BrW{0w[rҢdVt*hȚRX㓤łk6(c-EA3{'uwk) _b)axUGޝ\sѴk0#.Wx-35G!S"rFY>]b +&0wI58(EJK>R9vfo aF@26WrC<:ޟOp<ն%اZ wU2i +endstream +endobj +65 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 65 0 R +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 453 +>> +stream +xڵUN0>fѸ޲R/r %QP[ԏǵD}qlyc# Asd[tfT eWQQ!Q'`>' `rх;QgOh*GxC”t031ʭxnMH!K-|;e-&C* Dqp~lD< R{QRݔi]Tj@blyk$_q2|%dL8[tZrawm1/M?"o"Oh300ZZ|_+R@t7PD/ ]2 Y]N}`S.,&}>~\탂>MAKG[!M' ؕ,rPP:> +endobj +67 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 517 +>> +stream +xV=o0+8JHb.E[mQp$\?QEeF$N=QB)Z!XIdըzD֜oƿrlQϱ0*?ͶpNNr"`tuoӇ)qʉ!Sf24QuIdb_2XdE;Oe\TX W=v5/^O1Ǡw$zivۑ6.Y 8 +x*'v3}w`to:jbAwic~je:nJW7oX,W˷|w?ԩbo4 am&C=zeʑ^I(ͅ IZ݊5P;+ Ok)MZsU4W}L&Tg#CCA.d7&r| EIj4T I_*pv'ϘDh's%8zuW7h} +endstream +endobj +73 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 510 +>> +stream +xڽAO0 |[U$M$. Gr1=i JۑHg8'[Kr^..@ˬ&1 39)%ޤTBΓwޗׄ +lHh'UN]jms6PIis oOϛ;jnCw_kyzVL +c cFە!.%.Y,D1 1U)<@H[l3~wUBJl"q.0c6LCF(CnKd K@_fd~aLh  IX:E#R˝V532Ukמl+a**a>cEךXQQyˠ! mWh*;cȏBi1q5~K]M'd:BPSiedLc_GoBX.~_5eRZVB +endstream +endobj +77 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 539 +>> +stream +xڽV]o0}߯ R(soHlӦ=-}H"1@iLꏟc'4!qVꌄ}ls  g!n1*T$?ġJJ|@} +9AG>YAZ +bf@%MƋQ{h3תsZ@P<^ZXa*/U7٥[z +0Qa[ɻJ} +endstream +endobj +81 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 401 +>> +stream +xڭTO0Wbeii[I<~?Xt˶ $ rMGyIa3_9oʊRNYпڡ2ϳom+ڵinnBRODWzqB@֢)#fP)?4 +endstream +endobj +85 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 963 +>> +stream +xڽWMo6W,R0KhSrv:m*!)J.Z37oސZ(c׏$\R!QTMs~{VvE,ʹp. +. ǰBQ+H% &ݦ.)yE4MTP_q|$`d.(FL5Hc~F@*2!˻nFd׸7P6L61S=cS⬦#U\3*q*Z!-&\h5&jRQ@rԿ<%͔UPи j'SJ,fDCF).gW҄,+'lk &6 "azanZFERp guI *l[c|ޚ I0CL ǡ]N5zW}fW%D:偰ϽQ5Q+ Gr]ed.s){쏇qSx%ǣ/ ЫcXFﶽ~s|{lM]5E{+ ڟzUկ&;)x+dk̢9㗻 ,JˢƧ 陴6YK <,DÔ}~z7 jrbl79COu?lbXj=ClLBF2VJ[L <3̻uūV2x5H3q815Q%*yUd}?.DzGzNyԌNh\5T> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 527 +>> +stream +xڕUKo0 W(Ǒ"ʒzvڼSvH|ɔp"9/H"BA|.HI<R3M/eT~'0bBrmh~iնjCaah5ȸu杉w1\'O:P +$ƗU,X^X +(܏tzѯ@+lXg{0~PGk/nQWc"_|ƼLn&ȌL5"AP5.BasL\?c@݀Bԥvł#܄,NX~/Ĩae#YFeVC !ŧ,fSTqHK,aBY2o͝sYZNwS,mY[{zsO u 觃U&v|1(X}4I@Q}g6^&UgX<$ǡ :yf-xNmY~ +endstream +endobj +93 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 550 +>> +stream +xVK0+|Cv3~ƕ"8Bn*v{R<~dӤvk{f<7F) +EnxV{H-Q) +(w_?@")T +an3>wGѴ6FuB}~vk?#S2Coc 0rj)ظ]I]&jgs$A,ڱ> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 441 +>> +stream +xV=O0"v\"!aHP!jO4%uTH"ž9`BXsnє +`Q }bMR k һS4k@bsRydmwZj>"O4_7M+h:_6ŮHu63xE2*DeFS۠RDק$y> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 504 +>> +stream +xV;O0*#~TbQ 3$!$hQ R81ws@̀I>>#h$X2 D*A)1JbZÏqju4/A +!XnF#@Z8\i$|. n;l<$6ⵘzI"(G3%[=M,ȁ]*[[;7MX,~*}uTxeYV___YjRu]]D}WUlrT$DY2(Ȥܧ짫 O,Cg>-fcVƠRΜ~1>O +endstream +endobj +105 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 150 +>> +stream +xu@D{bˣe`K#-uby$`bV32 01Cl`FJrO:K^!qP/DQ5͞ )Zli}H ժoØ|y_S_u<B-)eC2 +endstream +endobj +109 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 990 +>> +stream +xڽWK6W(BR)cSV M'I=1ćZ7|3 gG/_OǷŤ"jBbBoq,+SArћI!Iht 2 8`2HjHeXu?T$&ʆ?56/QE:[cb^)q6>!jxiSM֦tA%7Lw R e+zU*{$ADux6v56#k)}޶|}zh#k}Ksx(놛ThT>75sm m.4]R> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 565 +>> +stream +xڭVM0Wh 6VKlժ-= "6TeW *w0$|dU_g=cϛP@mϩJh"Q!"9UJ`BX##IO<@J&=P֘8$~m5Κ>) +7@T +7yv>vii8o}2R +.; ;l(UJP,J.pxhN߽5;`Y۾,aA)'8uy&l_dCV3VknAմ;E%Gn`yD/I yKߓ4h#~%/T`1yg0P8CMF@14gjǓrߖp pmya2Ж*6qcl1Sqg:SA2RW:f8o|<+3(jdrت a!s|/xcb`ک?EcSb'&sh:w5s O| \X%OE +> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 529 +>> +stream +xڽV=o0+8M1@Nю05 +NxPP$HKDĻ{=VU(@Bb)$} 1.ԕMNNC#)8LLA$*Krx~RP2ٗŔr/&eB*#+fTo7\0io> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 526 +>> +stream +xVK0+|LƎq% 64-ڤjEql'ae& Fq @wM6H$9V@`$0 @.SH }=!#,XtC}+ V}v4 O*y%G%oѩ Q./TK7k/@;U5Muh}ǂrp:SIes…Y_wG3)6 J2-f6Sќk\jwm}lbV[ +Ӿ&mx='K-y4B1wbihxdgGPKN5E;"k +endstream +endobj +125 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 913 +>> +stream +xVK:_͕ 9Gbb@ (HRR+͏8v7 tc<ʒ}a=]?9p-?3pVh(^/ +ʪLW ڗ~X +ȸD1tEPe~>u$X媺/NƓUX\8AcQfoA񲹹]mMu4%8-{ႴP`sn@ +" n.&>,S{dQS]. $θԓe;FHweofz51?GLz[A}$O +dYf"WWC)pPpX +A*4XLvL3^AatuS{Z)c;Ɓǃcz[4$N0 yM11נ-Ezg0nO᜴\ -mДВFΡFJdy(MBɇh@b>(eMU.xlR>AAHPeVLi\[*Jky4 :zM@Ψ4: C KnoinE7:ѶluM%a~ T_Wh:W%h Њѩ%13:oH+ҩ0.o,B?EhkTSlA? J jT i2ŶzT-Vu}UvϥH!jg6\^x>i6׻׻ou8|܅Ƴz;fu}8J*k>Ϋ>k>b~uj z:=T8t(hvS/0'*(f"-YxO~^[uAܦDHNZʥu5Ǵ4c}mh]4 +endstream +endobj +129 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F3 16 0 R +/F2 13 0 R +/F9 41 0 R +/F8 38 0 R +/F10 45 0 R +/F12 55 0 R +/F13 59 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 958 +>> +stream +xWn9+xlC A9&:ŝZ'|K7 -{Atika{H QB)Cq_K$F6HnÌqܰokz}cHS%z0*AAX]z2$p%VP5399YN i,5uiO"7PHkhH:?|eฮb2/DV1-I:@CF, hbyp` +<ތ:B"26,"ov &r vɃ'֖<̚hdosAA2')،<#Y ؈ /XMZt 3~0g /_*W=v_%(&Hh:rҿy{p5l5UWß=^ uC:$i3Ɵ^.3`Tf]c0*c%RrJ# ybRٴ8Z}zҹE1~-MteJ6'kx )Mҧɪlxv +|uQiٍin7TҦs+]#bQqڂq_ӰzSeqLZa)DdMUtoJ@݋ZI1 ~/K(4<x8?J5__> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 546 +>> +stream +xڵV +8$ؘzZuOKV#7TeW;Y 1f&Q /D忐TqDRAUϏH%l0H;7~]GgDpjϼO5ο!Tw^" !혏«8Ut{0u(RHy)5SXN ܕ8`u +ELu#9{wqS%DrV?y1E='ELyǀ"!DNqδuB S_;6|P1(Ûyߊ'm' drQΦW58$Ձ1)Ɓ8'[WABy2T+Ga.p)Hk- Px8&az=[#z{ouj5 pI9$Kw`!cc=i;6fQ6OF( +=oO_gS/')`4˜W +endstream +endobj +137 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 545 +>> +stream +xڭVMo0 WhǐOK*˰t؎oAҢGnb'fl,IQ#S&R!ؖ>{iXHCGd$Je燈KKlTD '"qF1;yKUV%%TZ[x n?XHDs¡6^݅Iji͉V$=Wšs4#;5Q{}i䯯` Z4:HcWGm5QWfY0s qMoPf+xRY bxjeR86Gu+۫r_Yrb OTrZNZ#Ȳp?L3M7J3-gF\;-?i; bVp +endstream +endobj +141 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 499 +>> +stream +xVn0 +~)ZtjU,Y5 +tP||K& isE"J(E['t,ϘD80bšPGC1^8o 0cE7F̔QU[vQS JnNi˼\1?u+>^F(9 |5TN哹 0sgzK.&R |4m+;X`:]H(BeiQxww _}I9Hߏzkoqr z&E\a0Z cd^JZ6FAEM.AxX\uڠQ=e&4(0ZS{I+ |H\Np˞ ɄCg?ո]r[#ıdDf"ø_6_/1˗噸05~)G _4R +endstream +endobj +145 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 521 +>> +stream +xV;o0+8R1( СVue1`KJ_VJ:A#{>QB4-&28S(_ bQ<aBFI-qUEψ"Xe$`T x0 +%nfu2sDG&4xYfGЃ1Rp6^Œ\x Gceh-x$v-B@8ˆ"M0-p8|81L4"4rx8[2I]fLr#&9tE$/Y3+/d%d8"/^8uw^}R$ΘSY$q11*ʻM[ Vp{!u&v]ݗv)׫7gcc/Т S9g;_;W KO P \?:690T@\4 +endstream +endobj +149 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 1055 +>> +stream +xWKo6W([+C_ hSǮOn +,TIɢtj`/4|7=ľ?r3f5;p_] uuޓb0Ͻ ! +)L +5yLi5}.#U^r+Ycw$=}2/NNrc>m.XCi2+c,cphJ9&[͕d= Up0}Z.v#~ԄU9QSh"Թs@݁\xb ІjÝq1Gz6I\hVGKi ŝ]5% 7.^/uNU͙ڌ<{R0cd+a4b*e1;X5h*#&^rO 4k`56PFraK!ƕ4+!F/wwqm 10W "}*& 3A!*2Vm88q*-tQvw:?v_v/| B4Qh &qҽKVph7onOkSkwM /kj*9ܯLFH6]&-iiw}!%_K}`h,Vu3R{ +#>E߇!% xx$~HSY}XpcR@m_G,9FvL6Ip(DURkbQv #㡄(X69 +N> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 585 +>> +stream +xڭVK0W#6+R5[iDDHUvp`mH<7 +IүoKu9YDC:~{a^`c`Ss} wʉx(X2_QG^T}8gŭJPn,Jp}kU5[^CV; +Ֆ3eT톙P|u{˻ρ:y[}ʯFE$SੲQP͉ @mSW̜X32Yd-3L6Z>=6^hxbwiM;N-5Yi] +t<9ǵ7[ALjzߨ[{56>iDl727^z6KU~}hصi+cK{BlNȏn -4rOٰV!Rz08|2̼k5%=#x?3TH+'!qd?| +endstream +endobj +157 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 550 +>> +stream +xڥVM Wpa2+R5[ַHvV\)?({6"!h }Gʑ.DRPa ;g”"B$̤!"I ` +8NZ?"O0*Hn IIOO"!O{Lz?Fs Վlf&in yu-^&L*LXzipQuj,yoA;r hRysQUD;F&ͮٞiDPh ^zpE wݖ2T>e.ygm +endstream +endobj +161 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 497 +>> +stream +xV=O0"]"!fhR!!@!Hxm66,swwb%X7\j4 hHbA.&e6kP1#'XSDܨ<#a2Rv>Lsxf=|~cRUw4oϯ[7\#Ho>|95prˇɸ#h3$iOO R<,# mlŴ +lbh6m2EzcY#+bdԠ$w DR;R{*hOhNո;5ҮB ì.x].yǒ?)yI>xAšgB0au\_npYEz b!-oG1l,nMbJf:͎kJF,]jjkj\j4K)io)IL/ +endstream +endobj +165 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 546 +>> +stream +xVM0+|tڎcǕ8"ⰛCRTmhw0 CAi(b + i u>0@, +D βGdz,7]L"`f8owpX7ժڻO4 +%wf[$(K2{S.?7+eAܞ%'<8*U2E=LB}"rڳ lTpi, x% S6L,F0IIːpx2l#lF6wŷ`F4ٚn^.)hpS?J]EmKʞWwnB> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 994 +>> +stream +xWKo6WR@e uC4JyMXˆET?CQn\VJ8Gqq}a\A +( ,EVOόDPgbk'?>e"b)o +c #:_ x?wu~Ww_vK~b@*C. +Y<񊤄Šc!ZPқ0A1$UsFs!ưt Mi02QHqNQL&?(Sa"Fb@9I'Pf 2)\ueܭ1s@>gpp P:9ۅ^\Mʅ ЧJS,%ȀICUGflj8y6#18eV]4YoUzt dՁڟ#K%6dloԍ6_Nģorȥ+&F M'\绖IBnei*W' UJjjaS C`MMZOV" ζ7z. +endstream +endobj +173 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F12 55 0 R +/F10 45 0 R +/F13 59 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1026 +>> +stream +xXˎ6+G!|(@6E]6(dw: @0@%EԃOE,>9ͤ=x}wBά0@aw?7~Ǖܫo +>|޲Nt6(Ž.JF Gэ& @7S[/e2( NG! 9A@CFZɸ}1 +@(L/xVVɷ-k-KϔpFxQQ]IJ:P̭ ԜO _%eh?=mO F xs@x_kRz s ~A(?GBFh@>C1} +z)KW:Oê -bCY8G640of/e 6 njT/U[ŠA]uXQ+BsШ E{1¹3E 4Yx)6ݷV؂\ a=4\fZtcQ >cT`QG$#5oV0S+crta& x.-tӀwu b cMj4BG90"L}޾7o'h7>SY3?yŗ\ghy(0x;m$#6bF&nCQ Hs-2uش<_m %cOjn@<#ںh˪! +lLɔN9b0ҙf TģM[SZI_U+dXO+18jU^hՃ]ht>%p^Q5]+A00?)$s>ms-KnNEևW] Ԁ3AEdI[Eip)C]V6愃%\Uf`A ^4|yYPz}[3PmM"^q ٮu",Hm8ƃ`;R񧹞VB +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 583 +>> +stream +xڭVM0W!6 Klժ-=-Y)D4TeW *w,6Uxy s#zB>=D$c"/KP%XGO+m|ۚf)ƧcVڼ02n}J_g{:οN(z +kTw&PxV˱:Pj_uKXۢ^B :tڣ6qSWam͓E;7)I[1 FoPyBXI i h+eyR{A\#۽=X"㖞cÈ~bHf1dP`xa2r^ѱGҲHq}C Ba=+l `Wt^[qeKNi7L0xd8i;3y>ĀMFPBL]w27zS,XgچJm8Alb4'4Rc!@*z2nK'l(@[k˾] fgI.]}جGʭ3 j*{ySbif,M4٭ +endstream +endobj +181 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 594 +>> +stream +xڽV]o0}߯ 'Ƒ2-Ǎz JISZyȤkB$=܏s FCksr,9*pDrAF;Lȏ(#4N~Csj{f!spJWAZk4 n)kÃfxY<`zYaQMںoHߨ2,%[j6b#!dHg̏F.se*hE9 Сpǫ>vzg<3&BxSe!\󒎏ܳX~!] XV4wva^&zJA'9V{8]_ha +bzy ojz;8l +I-o7Qu-7,jK=92(_-I}/\2s[EZ{{S}ܖHs"lRX0*4DzkfzlU?ᇌDUҽ%ն8LF/_뒉tC zF%[]zc 'K>*I]+E7Cy`W61-&9-ZZfQ~K! +endstream +endobj +185 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 534 +>> +stream +xVMo0 Wh7cQvq1@m?v +3a()||ԋ([AZ(#b~ +tPx+ϷYǦ)@*Y}J7K}zS*mVgA2Fиg7n\( XNwƦɥ"e͜3WsA1)/A)k)\Ti$퓝HP~7NJq15,W #|kIG)tqL%!Rl\9C3-O%QDG}rq3uCi"#Ό'F^MΊ{s0%2q̧ĊˆXls!ؼ4:{XDk +eM,z`hm4f4NDB.k7|~?n{i|߿^6qtհcH3}m5BwgBi!S !xh_3t)+ Ɍ +3@,o$e]<7!6aU}lw +endstream +endobj +189 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 397 +>> +stream +xڥO0=vYZ$4ѣ 7@_6Fb>NnW'q[۬R/bYn>[4ղ7Ukc0CElSb FS~QTY*ᔹ(.]$ +endstream +endobj +193 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 1014 +>> +stream +xWM6W(B.9KѦ@OY%n8),PwH&AÛC,KμfD8'$^ o*"!F0 &:BćhV>}kg!,S20}U Eb>vTZ} +=fDx`59Cpi]LJnfSZ%}ͤ!jnj O:>۴i5އa<ee +3+ Xg%@!+[S"g>J>+Q66b0e~<^DTLcvnæa\%XO;czCfݿ臒gXU~]S9U]]rV0' `Q MپX-7~ՙúf2B5KbVvk0. P_)XD`BEDs LHFI7͋VTPH-T5J t5 oPxô_BQͲl_gZGOdL4Id$*b8=wfR"ϩkF9LJێj|m|zЍ7ߜðN~Thqy(0kx;NpyRɆq1z.x\0Oe**mo.m{ iӷ> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 601 +>> +stream +xڭVo 0`*2-6zJvEJ|I9`{/`BR4k @Q(@a%@ "!J j Y(~,W Qu[m=-Md!+rtY2JLC[t\IO(eGnFdw3 y<덵3w(gN?@(&jzIO8Utڏ^j`Cr:c,:-?7#̛j}[֫ cl"8ִ'>v‚^KU+땁45gTq؀g;{ƪS@:a&T6i`(X\!9Pe1RS:FΐCWpuBzE$$0ioTnD? pןq?&;{`13:AfʢwS^2.}t.mSC.rjM||o4S(=Fې9sPx_㠐Aq1'> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 575 +>> +stream +xVAo WpĶp˴tڎoc(&MiIԦ1zs= ZRv5ЇfuҥP)V*H5|AJ}0$6,5H FmABAdDڗ7ov*ip훰sfQ pf#"+ SDZ+W%3*/vgs@xq mHC1otA7&3y!mipl +&;FWxp<2=Wi撼i&K@4h=v}>u/5:iruܼ'w&r,m!,7͏wP􈾨tq`%\q_$/oLOӗ=/qVsR_Ӎr{9/na}guCf +:pjG*7e%T)q{k K*['ɪ]ֵ׮u/L> +endstream +endobj +205 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 458 +>> +stream +xVMO0+z\ڵ]?V/F0O$&x ?ޮA@]}J[pFʁZ(H2Ho!Bb*ar Wuټ-nQuX,ƺ=5U]9E)ݰq|`B AX ʘ{\n0Mrej C>TY3c(Ҿm13Rݴ`Ӧ_ն ; +EcNidٶMD2I? 9 }+DS xh> +ߖ +픙{ۙWS}N1sY.'cEVӆJ x\ #qأX.IS%-ZҶ0?HOJ\˽S6:,~blf3s1j=ڀ,)"IO@ĉ285Nk`^| +endstream +endobj +209 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 523 +>> +stream +xVMo 7̇îv{Vzp')$UbICZ.1y p1X;߳a@Jl$%HXr]@DH$It Bbudr5'W"ঌ08$0qsmL)>X'BZ&l2,՞fyr6j&vpN4hAurk.[ 6 u:Z@ &Mk_Ԏ"Tr*٥'@}z%7(Ɇө$)i')}FPg1OC,{ ˌJ4.H8QOׁþ}IQ`L[́>9z8)`v)F87b[V,Ţv?i+ov62qnsŷzYrU.{_S}^Qdt1֛UQ|WxNjј`bBo:˧|P4'OB#Cx#?$ mWëBS ̫ q? +endstream +endobj +213 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 1073 +>> +stream +xXKo6W".9|ȥhSƧX :NM +IiEQ{(_diڄQ ?ȯpI$(I9'=4:A5kT#wܿQ J. +&:@#.0Y()pF&ݤwp@~4$cQ%W yo2b +o֧**5aAQ-d`+x[vqe)l]{H,}h\SxsGIj.:yQv& 3!|a;OT9fQ9$#ZkL@b⓼͝T rTbxV9O=bK@7`:0|wgCAE\acykCe3 A&qI@}!a $lFYkݰ%`UY )28 Ug$|wk.V_0 p3`-1uB Mt)"`ITXFC|^!ΗhɩHpa`$:$S + QI]a<^Fؗгa2L=w%4_.+q̆)!jB׽Be&b^7珰Gxuv_7|2 +" +ŐQ NJ7#֞ G>zi$=JjhN^C2} .9@w:kx.1Y1Ө&x2~X"_& wre[N.ޫr*B:MK[PNYL4om}"'2' {6i8PePz[7v;; A +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 613 +>> +stream +xڭVMo0 WhǑbɲleX:lةNU +E"GIqIIԣDR'I |) SgA)D!B$4 i2DxI߫GErKx2#b#j#d/2ȆϥZ8S„c=y"ւ$ +Xo`)@m﹤lUaV@kfcedu)i9)qVL-ry6WZd!j>Ӹ1l.O< +endstream +endobj +221 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 600 +>> +stream +xVn0+xŇH1@/E=E QpwIJ$kABkwHqCT[‘ʔ@$aA3Y]{1I!X{yD{ s%ի&١yG}OzwLb\Q_A*ek7;px GLX3b%Q@>oS먜ðs uy*M>aB$pt,$T- fuip穌 +NT0aG´i<#:WxwBĎ6SF#̼BƝLuXM͚6mZAe U7힞//??]ӷCL>N匶75=4iwҥ7u$bCFG{ +.)]N$\{ +)^qgEOt:γ +ỶֆۚK~}ɗesjΟŲv-dx:ez}=\W*?mJ3nnٟhR*+Kkf[ w +endstream +endobj +225 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 1080 +>> +stream +xXKo7WR`ee.|hQH=Q d AU?>>}(N-ˮyqH2{V>~f?/ߢdf?A0R#O4JD$^P΄af=?yq^~8nj^O>aTiuU%Q"Q s VP+d2q= \맧;aϵ|+JȤJZ', D2?HLtIMT*֬DlY>Ӣ2 x낥]i] \bs0phl_+I߱)m~:ڕ+@eDP_v%0\ Ǟ4^D{Sk]*N˅5]P˼Ƹ&2b1:\hJT[Ȑw`AV5@ YZB(&o/K /zРiAk|b')T"i"*2jC*D4Um\Hƥɏ$gFBϛyoAj;:4 F .ȶ-zٰL2"v=P;]lHlʻ5969*(:"/(/WFQ亍zp-I~EW!=~ǜ糫jyHE_otyq1`FWc iPi4OuDOL{aShĂeqWjӇY>iK׎70ue߉ pNIYm9}(K +endstream +endobj +229 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F12 55 0 R +/F10 45 0 R +/F13 59 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 945 +>> +stream +xKo6zñ8|ȡE"=l/b@llٰԃzl( p??Q+,{ Roq@M!pŅ@]o/hZza >dB]~M(@VJЊq>M9)a;Ve5mpz0V<2b(QbbrC(òId #7ux]U1_U2mNL +Aj*Y\l - 녪bYao)ۙVF̚))\haB*1naMkX{ 7G8CeleP‰@7:.vHTs0dCivBti8CnvHIs)>fA ϣDB)UK'S+zfB{]:pOh?H I!æ>`C,q4#d\bx!@o']mAI2!GZSìAbcҶٕC?Rnu'<܋x ڏO@L RA v /8H?(g&ijz昝+4쬉KQ7a5}77j _'+.yk=xUxpQΫ>;^V1dWO4MqE'6)?%͵d\W\rӄ&kUP_g޻PŠΣ*Wg˄aXx@xxK X*_l]4*.GN_r[.rF0ipiV݉(! +endstream +endobj +233 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F3 16 0 R +/F7 35 0 R +/F12 55 0 R +/F2 13 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 1042 +>> +stream +xXK6W([> =6>epZ P;$%Q/[WHj^ +GJ~bHޓBC8Uk +- +[(剂"x!x?-7'`F{Ls&m \ˊ@Pr!P)#L5ȽkHJ hu0(e\UeI:͒qDp0=TjH0#ڄ㡝 +}o5. Ao<* E"@TA.):1A;6m}o EƕlLy5U*L :φ>}0`iȘ6iA6L0Uןڪz` >.֫@^=0:{|1ur}:}qC7ہ[<$k9tz__?<?wԫٝv/ f5Tv-EpO +SÿF] +endstream +endobj +237 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 639 +>> +stream +xVK0+|Lڵ?╸  ‰J)*U%]=?vh$Dr2{7a v,|HPH  II#ĐQE@B(E ldCN9hKɣ@cҮ?epD*EH*Ð{c4V^6џLj*S3Y_ÉMBY qtG"\Czujd~7P>M +\RcmR28 mL馇5`^āی*aDQۍ1,D~ nlj`2Q˃oMʈP,oHɦb1ć`[ڊu{$uEO]C +'>U3oK6VzY6I2SWA>̥슨>‘$!*ׂR,Y9p׌zp~y63{n ;馈K|OӏM'v,.Fa5LBbn3Y5$O!+Cn.?`]v=.BB[_4E8W,LMy[DdzfQ%2XZzLIp2OV(ˌq˖ +endstream +endobj +241 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 626 +>> +stream +xڵVMo0 W(Ǒ"˔leX:liNU$A"GJQKM98&)||qySݦiUTiD`ʏoC%MS[!Me.!!{2$'"RH|ȼaјUĭr島~ ~tus2 qQ P9O 6A'&Z70[2[ h| @LƜ! m9ݧ!Eߌ`ʃ~() Q,=+UʙϭL;(VMliW~eh/[ {؟3RBgXK=aUԓ7 pk;&%={4]U_P9)͠Wkwz,^-Ϲ,JL-̦qB !@@hC;:Y]dB'75c 8?jaSup ,zkGQs7Yptu>f i|m_c#WOެSmf~i'k*2y}ǵ!̐jbbRrR%u]< aAfWT*V䘬fEa?R +endstream +endobj +245 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xڵVMo0WGll*UO 9TZvDYTc {Cx oga ,<# (I$ +$_?C(A>FA.%=aʄdA W$SP].3=6j"[[]nN]IjũKdDp[e3g"l sC-|d*Hs. 2L|ՕS.Q9~@Py$fQPcVH(O56B/VRSMF hӤDOǃieL\fZtLwݛp<LӜ['6 \4P^B@t|oAyi=eƔ/$:*o,vOgk%s+NxA1Vy<vcӼGkn{AM%ַ7iT`#$IUf1j~Ӹj逥aTDbTQMYal[1Mdj_f|ԌH˒:_u@FԺs,.(z +eAŔA? +endstream +endobj +249 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 610 +>> +stream +xW;o0+8J(ocѤhB[!6\@Iȏ/y%S")(dﻣ#zo G5ߑ""K*_+ԘUoog!LHk΄\QQ;dĔIʫO&i 7fNί8:Ls'&Q\ȫݰl"U[[yP$BK[X 'C<9eĝN0MJEAqیP.Mέ +ᦫW9œP#=Nk2PyHï++غoRKZ'1y֙ȗ})_/WԗA[').mO.ͬ=IѥrI7Hfa;iWL9Kwg'&Nܭ=$z> l$PJJG)9J'`}e7G''3}tjxt)D;e֋Wb͠S|]2Aqե{pu) M˸e8ȓ1M~U4 G ?e(c>sr2 +mF$."v|oQJ;Ax|qw;?|sƿ DV+iw#7z +endstream +endobj +253 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 651 +>> +stream +xڕV0 ,@6[ޥh (+lNAH19iAoJN/h(’5EO _/ x{Jܲ:(m:`b +V)jꡚєăц2V7}7ejsĴUma֔Pw6kxnKm/J,]#MέL}aP +%\BwLjOg A#:e Kl34gQǧ8%g f|qfu7IԆ.[̸-r]n=;O\A;A kHM +(6sqq> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 683 +>> +stream +xڕVn0+tJ%襨SV$5 +NR\PR| #C#5|>#QEdQ){f0'A=H9Y`,Ms*.zЙͤwU"0/ ~2cweeɆGDzMS{o5b0c݌YݘiAo|:X5 $q3xNO FO?kA!`i̜Dnf OùT$ಒX^Nп<_z:^}"&0k?t뀮#Q8=Mܦ/ui% 败I+Qczy<" S4Mg$,%t9Kʒm{_7T+#N>6:|sH>Jy֞B8"C1&flt{k^kDǭ +_1,"\I˂;mEV m%ڙq8T hjH"aLڬ*/`Y0mNٵK)f -XkYҒ$;eZ'c E dC{YT{m/2_X1SH;{ٮay + c^}ò .]Q]G2yUȫJ93}C?P{i +endstream +endobj +261 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 648 +>> +stream +xVK WpCƬKl[֭GiTʮvsHvpq^0RE0|B=S'ҌhpʼnVa5nj*J3o 0cUUqf+,MQ^n;A+kl Xr#M?\xc;q'J[~x'yĥۉ0> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 531 +>> +stream +xՖn0>Gi))ڱe (P$A(fH9Aҡ@ß( efYb5 ÈakNB +oUY_E1bZs1s᜶fTӱ9ߏK<~NԑS-4Ǡ~ev(:mDHgJ&KÃ@i#a*mod`9ȘBALUQP8x/Lݙ3@,F\bpwOO?߻1 ֯} {.v.>-aXPʀMiK ~s DQUڈKi_;>x*DXDTK@Q`#ZfGS\KPwx[DKvmh뜶v9CiO.57@%c_a/eWjkܥK#2y a#A99.4{XRUDIH?[ +endstream +endobj +269 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 573 +>> +stream +xV=o0+8J1(?D)ZmUŒd.H:Rt~==PX|7S #AGI$H? !Y@2[#hv6 um39!_Hv틄 }ڕ37}y8ʌTrU]IGݛ]t7pXxlvyU|Wb&h,PFqcxF0A <21LH5*ӟ :)daǨ>&\cA,"ڡ  #XtDr!Tp~J cN{ݷDi& eR}ڭSϢm2|/Ln(> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +x=0 Dwc2؍C7!PeGt{:p PcB _A'ȻA> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 1081 +>> +stream +xXnF+8IR%H xNm`f,+& `J6c`](~UUay"+tG$'9E~~qS΅=o0v^NoRGr|L,($%}!< $G`5Hr#< +.IrbY)"E١ۭ@ԄEy+j T/6p LuVb{,l}drrϕS7I +X1eK}fz`'ffEQKq&֎F]! LS:Akж~')Vp;er5I#XO', 1arr|q`p`]@!X")#eXF$OȫO'B&6\nɌta)jO9nxP /2.6:. @CsJ BB)n#tkp{"YzC&՜ \272`B zA%V 8и) /p ̷I1˗v[R0^,Nf'c4ZxXY^3+lxlokowj}|r];r?xJC +TzЈȘ_Bk.|v3$WS& +c~q"i-/5\!]1w+/]%]ǭQIWܐx[kS6j1jta+~O|D0~`?hCRCD.,SeGl9FMv[g8KXnbߍq; Խ\a8l#09edJG4c.dDzsa%TlkS-C[q6k,ݏt*H6^5QyȋuR%o6{`U.4Kfd%-HF*EK+ԩL?c$ +endstream +endobj +281 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 611 +>> +stream +xW=0+TBVLrIqL+\GZX亸~H{f=3\(՝aǟBmq#ko%7+]bůgW]Tc(w:,*-*7&*A$atjz+xeN cՖ%VMne}ްǥacL-#h'U0uD2.,c +^Q<n_҂5*kc +ߋs@ijvZ;Ƣ #eCCk:$J I48Dy6 $Qn{(tiM#kj^>kEJ8 +nW]bF7"w 9&9zD~wR浥S{gAe*],Q⢆ +qG;Rڑm2EG?mb@/P%3I@^]fTJ^b/%1nx]um<(tT&S*fMfdz&[˸Egbw1 +endstream +endobj +285 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 692 +>> +stream +xڵVI0Wl;Lժ'&=Mf$@!U8P_vf'L -s B62˗S>,RP(I % P(Ho"!CLA ` U<&z%3s3q +fޔ@ +endstream +endobj +289 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 711 +>> +stream +xڝVM Wh'Y٪UO]t$JHUvJ㋁+`;=1ޛ`B}d/ѧbHy$Q;(h,1B?D%v J!G?/ְ*NY[eߝc$oX^w]]t'6 .PyZ_v*K3g 7rU dQvuFD,U_'<Y \L4@H5vSթ)0]V}Uk̞k bdҝ&?x> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 689 +>> +stream +xڝVMo0 Wh;oYvvZvhrɒ*KII"Tl |.>[ +(߅P%/O?KWʺoC(1Ò 0^70%* /,Juk8R;t;]OW d.Bq1%vx,yr)&o ɟl}(Q|")NjyfG>$N }N.td +mg)$LF9V*D$욹kCJM">MfMt+46%sTg +endstream +endobj +297 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 675 +>> +stream +xWKo0WpVfmDj-JJU%{R~|,/x{fH@JS`ObD' +_ffQ<2(>~  яK@XYeN% +8lڈ0 +]/R8aÕAdK`+L0S3w3JmB !~Ig##2=|!V(nd2B2}Hv;2`J_l@rJ4!,C/)^J—fRY:CQ!x0k͗5B,uLܔ0B<ٝRhn` +C(@:g%249"3F62-z[ܬl}d`f(h&ЛX^'}׃{zlaWQ@\_kTaE}M̦#Lx2?LK6v[i Ԭ6OǓ YE:79"[5 +< 2̓o/#LL.LA.n;+_\ZDݏj9ZRlzuxߖ:Hߧ]gxh//t|z!O97ǖlQ=a2l6F?wWe}|f k#> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 631 +>> +stream +xڭW; +(hy 6\fRfE)d5\s,@uo}̧'*D3i?R%_5l1ơYaiDW8i)𘘓I-sh+ȌK\y=b^;%P|:TO}7NtL5@0k-b"܃+ČK ~9"(Y/dw. sq&cqƮ +V(r,09M$eɔf{Jy!R +`\`zZT]A:*^scy +,o3wf6v/u%0Nl{R)(jy8rbYHKSy2 t=_"Gm#.,>w>GP@A$r r y_:&W[vvditTJVɠG'o% *l]+¥ 嘁R'eTbaS4=ܲnSˣ'߹Ld?3O\"-͟H! +endstream +endobj +305 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 713 +>> +stream +xڝVˎ0+XanfvfWZ 4TeF3YPi> lH,ÏsyYFOч}YT絈"s#$H.y=Fk$_owHh^[7%|]G#\4!&n'ɺ +i6дmB α2ӆBrV8N4I <IUl0]L7yPn)*S +VA= +ۢ +4@sXSX*2#|p +D+Y28ٲpK}4W% +¸,>Bі$8q%а5rOΆx# ƿmd +0 +O-%-w-I\l]McS]$2pIݬ\IvCM*eb*MDfY6iz gUX{K$;yJKo1 @+d;?e&}lnwa32x;"zyUA0J +endstream +endobj +309 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 713 +>> +stream +xڭWM@ Wp!7Kl[n JJUvk l0m<6 $Mc˧C}"ȓ\ů@DӀ(h|ʘ <˰MDh*pmA.F/G%HBi[F-akօCne9U9Oqe +rS@ _ŖUfy/+ l`lH"(}\YkKE&:h1@^uR ]02jyBBUnf(>(_L;xqǎ l1>7F./#1" ^1eyE8j>l\$ep +n9H%.JFʮ3("KT6e g)S|:Cw$7ou--}0'qPFe2>>ӄu+,a+xKQLI8ˇ>: n|cy`3?LuR9 ι)#L0{=8ȮY;Nlp +P.iR )0dnVcyۀ@su/٩dk)M{B,%@2 t釰> o&]b6 >o{{~ä# PLC͓,Cm%îxl +endstream +endobj +313 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 601 +>> +stream +xVMo0 Wh7b}[vq `?]ۡkK(I9>O+3A,gjTWrjJ_:krwS^"[vvCvb0I$־. +Ђ;y"õU? +>VK8n JCi(=}(WTSw`` +taEj)pX-Gn&&k|J~=qu~-p%TEtt "^VO >y"hB#QxgGzu [#?wq~ބSB!cvc0N[f +- i[ z>9Ne)=9xO%2_&\ 9XI TXG1mC9QӍ%57#å^B,Y>ݗE7z#.yO.}tuvK9;Z +endstream +endobj +317 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 463 +>> +stream +xV=O0"v\"d % j!H8N&ŎZB\컳߽<p1gnu6t%ހ""I(gcZCdDH[ޔc QOjZ6vҿPJAhum3iٲ8eA^G +CbPԮB#D v@ev Dl8>\Ra,u\}1wbV|̌%{RO=)^r2>,f Ȝ>DED}Z qɕQN^F,}uE*@Ы+Z/v^$LBN,=6%N'> =FNh0`2Pdw*XGl$?RRzHPLr/ֱr<@ ۚhI,xK3gc!B&M'iꂤry +endstream +endobj +321 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 1253 +>> +stream +xXIo6WR@G %@-)2 ;Jb؃:yE֒d&Ӣ( %mB%a%k-AF&DH)T2CeWLPj6ɨϨnjq_|oOr7[:7,vWԻo N2Bβ$guYw뇪X-*[y7OeOfRd\`-GHekj}{'~rᆩx;;wC>EF0=ɠL#bvJ nFgkb0SS~yE>!@ qCy:{ܔgby(vߗx0N qYH:""`b>g@FqLްѲw#C{7Ɯd OL(H$ j*a# +*qj3J;e*$2:.WnS@yڷV *\Yح@Li_>S0eyK=fuYcl`Yu$B! 2l_`$`{i?9v1H*5H4 $Ϡ͑G l(g4 EZeíAuР!;g@u]IIv7+XcOr.MbYc]^FDlISNzx +%(S|cDua :8P>闪gx=tmbۋ'{S~U!G'ċcAz=?PWa@FHp$hhd V<YC= +1/ Rd$ 3e +P(} zrN[M&qEp8;QDs`‰B ֈE[oࣚwWFu%@dHFUIclW^wW3VAnb(Rq"/I&޿C{4|11)\ +3{g@)o["6'=  okZ81*ލ<.^Km>YʢR#4_x|16ˢUͧ]//^Uj^gSr$O5OS_~=10NP2RNJh^nL'\ •흸.Q.tMNgTG ?$oBò.XjdYW}|Zn7~#ҧ]H6ӰLR/ +endstream +endobj +325 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F12 55 0 R +/F10 45 0 R +/F13 59 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +330 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 329 0 R +/BaseFont/EVJXTH+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +331 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aZNT)@\X#CUƸ0 po025>C+=$z&}My(TROt•MH{,N*>uպtt}5W خU(nK,D5Tc +endstream +endobj +332 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 330 0 R +>> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 332 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/XGVGVP+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3966 +/Length3 533 +/Length 4517 +>> +stream +xgXۚQ)B"BStI$tiҋCAHM^H&Ugf3k{YϺ}\p# +D 9! +x4aU"+ <@`DZNBFN\)\G_Y +$ E.!H3Ġ ޢ d{;{QBa ͤǁ(׿ZhStAaA(=@LwqP=\Y;p8{A@A8>O6]4 +&A°hO 㮆BdpvGC\13uSuSП&]G bz鬙_U~fC+291سD AF7[! Yik$r>{v6^;X+Hh0/w:/IjS摪9x[ˁyRF +/|ŮeRXOw AqfOB햙vܾyD!~chJ*\!ERd:R- +TP}԰<Wq"'`j 0=Puc֢1{5vC`Sb{=LƷtFؤҸH[ ͒]Z=Cρ݇}{@TnRRx7t?4 91>*O3>.ŧl9@UOhnR3KKK*d*J& Yˬ\WG 麗nhlw +jtd+OǾ $e"Sc曰ñgs?$#cwpf +5?BU#魐RgN!X0p+2d1?! H?+ˠc>{^o3'nS 7ZVE\TT'urClKsۣplΑn;pkB9l&fjz8ΞV0f'ǻJMчIiaKqٍ؞vۑz˃wx ?6x^AdZ6FCwQ4. Ik^m_/9קx@)#yW ޤzѩL7ޙe&M7:;tFozqݺNjygu2U# +R%p;1gi(7]%OS޴', 5m'6 ",H%8#<}!^_-:N-0l2AxJ Fk+4e?Y_dvM`ţnXч~~^ң +?lh꣝P)idI >kGuwi-N +(-`] $ip96u }'$"kDf./@:xw  +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/EEFPIB+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{oR $@$ M  +ATi""H J " v{9s>g7׬z޵xLThg +&%. ͤ)qI:"^0,HK~n$ u"# hoԅpT= 0aC\`(D`qBfl?.IIp pF!@0z[p?\oNa7%p+H4o1Cp-?Gs6E`C4!{W C!]TP@/ 髅 DMXwE#=?$45LtD5M`H/_= 2m4\p`yaRSCb7y99 B!t5eT]0Ͽ}Y"ODs眮sin8nj-^˸W<~E)>q76dg$1@[9:Ҿ؅ñE\Zv!IDa:[ruDb]h`GJ-xf7[XO؛)8VMdBb3eL3@?U4ik@nȊf 9V qy_ܳta! CޥEvquLljԅc=* +G ^fQ gFrbH9X~H~!_F,m#T by#߰*VP!!:'^X&;7ug4੨wR+n<8}|ɼ05 +|89U3-N{1V̜Z+P^6)?svٳws"9Od竌m'vɼ;s{2:mO/Nל8z-9s SrC/uu_Z?# jY[".W>5rtQf^{͒DžhЊvr*R ֲاmdltԖ[>."c% HcZzfEsXsjQ*YVX[T>04o730ڨd!DكӝxAY^>cu(NE699~6-D&'K+)F)LC_핽Fo}g` ዆]Nrdvmsd%9'~VE\y C +L HyI9xD=n)Kݣ}FXtghipW"{!Y}M٭z$Y*B&\=1PpWbټLK{aLSV-|cX=&<$zx6ی#8?r&ɪ>_f!z˘6k$gM){!qW8~^}ζ)k#jIJE3$"4*ۀqd,AoImt>14F|S'GԛD3&ݪO`A-_acw%7?%c,0)40]>rP_?rf}odyhl C"[HUUaF:|7,C$讃aЁl3uk#<nO0]>ؾjlIR8.V&W^fP:7ka&럌~xeJҘCWTSՁRfxh-㸁_ꪝT +f/nk2T"w~OYmqÁk0#4va +c:/w^K6k!aqKOʚ{nE0Qk]l$a+᳧Ǘȃ8A1fBۃro{U6詫߂r{i)AnO/uf1tϬ2WYQlTc+qK5 zX_ +R/ud9xZu)xEl"or[N\YmᬒD +m^4T;x"quF~/M|,C8J;{ܿS5;Tʽ]wfC[p4C/oӁ$sN1>G"j]wpp9p.RӳȖW3T mV$#?PK:x!C~<ᯯ9]P2@ +տf&jSs&t3JWW2U&" _^@)/):h_gXu7 45 +ƀC9/õ 4+{3+>v}ѽO~+TRءH7*׶h{bFZLS^'0^=r6ak~܀iX8n^|f YFQ[jUі ڔ7̓)Q #Xװt ǀ(~f4=-ItcM!n{:@JNoȶ}qm ;/|ү],Xy@O& ^˄:(t?^*Y;޻#28t,!i|wA'+&^Ŧe2qn@g"a;:aQ7Z-~jz९]lR^٧tM pFK_OkNH.7q8Umot.j!͎ +=:(eKBPZƟɄ- Akh{&ܬgT:ܴYNqͬSJd%_\jpI~<Q+ +o2}FUs;i9:=>V1yku﶑lu G 1׸YNq9n H)i_PWR:>yo١l8= !S;'<'Zb-ǻ.LJ$EIcsuBq/ZZ:L~0EdDu=B6em.ן' cOm~!e' +__U&]U fON_];2wUrjV@Fp85ޠLq"860PKרl=N(̃ +Gy+mm#xK0"VGa %<ܝE D*a=gw]xe'n|: +cz&l>/q.jaUgT-t@qJ +&&4(e&BᶶEqj*;^A];Z%lZW<Niۿ]eguAv׸苼a❫RR(k6 +twZ5SEU Ko)e^XՖ. 8d-ɈQy1YM|X l0'f0N̦ר[;WA ב|sVBtWȗKݵvxTOwǪk>;[HSYaP!SJ)V:y! ` F%pG^e˒xx豟_WEEg]3H;G,0;n}qv 92GH H[%:w5~Uu_tT3? b&u4 +4j̤lK/Y2MY> T=dsC0]J.{Mi:OK7!NfƝu i0I!,]&%Hlp&2.JzFs-tp1]$} ]Aow+~RPɤ<5sPǽ$Ӂ_7,ߺ`V qasHO!gwS^WǜH(}fFܦ65墇ۇ} n5$p}Qfܞ91#<=e?kRx@LX #Eg~ v߄m;7r N)%}m&f bLANl㲚6bGaojy#B- u*]8\"Į"Oꃖd3|QؓDىY +)Y +QnTŜJgz(ÓQ.DSΙ  dP T> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ONG뿊j K3lg?qt|_¿?g,l tA G%;;qq W%(Ϭ#ϛw[1CTWf:aZ&"2.c` +}. +|yהUx3(RoȄWo|x]:(63-v>y.rWubmlHqQQa +mT#T[l.4SO n`2Dd}'$Ab,c=cy·m,jvMr)nCBфdu;5ƒ +A |=~_C%3eI߶=vX4pCW$~zTGЖlNxxlM{Y~TY_A }mtWRiRVꇌ<%a{[c=]͒G0C=؆ k叙Rj3&憶B]TzkJ3ˑIԀ}-|4敐=TL +\S^$Å|?y%˫ fFě >v/EI5׸N_(9>pUz*cy%7eVʒEo.Ia/߶W+ |b,'$g%#_)UASO%i6.U+M5R>5ˮhP\8a(C$_[9qȳzpoX)n S~t\Fx8%\/q͐oE HtdEV=g32[dͫ63<2r' + T2 6H)"YnyyU,"\;_1t;B*aBUq" +o^/wrG; MED^zޑY;F\㈱+}/æ 7v:#D`)cc1Mԥ5~tWr :DtzP)7+ݐқ64٢^ͅEX.og%Ƹ5S\gaD[v䄷E%WQA~-#~:s$LLiczgZv^߾R+sI)>WJ줛2289̭>| {N^LmE8PSdd,.19 ;jgm&ʞZsr9-vzu20d@AІZ-#p=`=$7(t‰3Y$<}Qh7 +B9wF.c:Ϣdjs?6m% cly4u |`__UNiT? rhxz}h'&},2zc`. I`b nk9!5Cpߞ@٪9/IMYڎsh,ߖ1b}q?v?qTe)òa_~>ܶ\LDoucD;)iwȚoP1B˥#Y{-4Wu17y̖+xC!|vGD5Q&];b\hC^ic[ƿYӂcV\ 嶃xQNRl^,5+H)nFs,|C"G&nnJϵml˫#UyYI zqfňMA/]}O$d6b6Տr0~F=nˈ8.QY-U>BUi.6oqJ|Ol(07]oLf~9oH@BPeMR^6L4j.7ׄy_{>X`B/;y5^9dCֹ6j}8o)QeWBYCRte턣%0dic)U!s㴡 'M$EvוhRObf?P9ӊ3Q8TjQύxꓝcPha( Y#*?Rg]X`VZx5v]ý%6_NAتi2i-G"/zG1sЏS~!@l룰~pswY鯕z۟^ ;=,3f+e"^&\GK|dYhG|"3y)zʪ`K +f%Ԩ4IX?%[n\b;/6NPg63>Ŋu&钗<++K]L3bFq0+՚~ +ɏ4z{W^J .6߈xQZ[~=y$i2@2UZEetRE;8etAlKmig}j7 8CDNςFI +cJ0&FUszF1p/>ӎs!^ ާ(l4a*v~M5Fpw~?Ix+3獃W/*ߜ\;ϝo b 7كXHљr]^黫Nl6ʞYc$s +]YsdR\ i6Y%. +]Dhӊ^&$Gt-Uf߼efzGu8'BC^0l%BmY)*R)Y]QaG5Az@G޼^r0?eZجsܩCM'5R. RC!7ÁRiD¥v=(97<8X9_0n'U5=H9=yd_ m/M]>:qi_ng^ +-2E Omq F7Yc ْ=[I1rjt$8LO +E򦼐i[\aTw3+ CK[f-{qy9qVyӵm'UZrP82+ kq}$@mҁB "{(y}W\Ԧ=qa1pGqiWͥ b1"Жmj8Ӎq瓙) 7C$GM, $ =[d-: )7 uGNK&cqp> ӎ%xx>M~ıM!/үrˇAH)wr'AV enRAb3>G7|&Y-z[7&BY|{h"E#g쵋!YEwݙiz^)gr0$M]&2#_>~VkFo6;.#o]RΣh zCw5R;W E5HH׭4: ,ԕ̄8P~K09yjW7v6D u@XEOXKZyN"Zd'Ǹ)|$Shf.Es69Em1f^P;w$1! +_;hZ{Gygn#2 +w$Q!0÷pXiK;鐠0Fqsu2}|:Jؐ[v|ȭg<20DI/J + ݀]xgkm񘥒RRQ+ɁǬxto 3O2k8͠heF™Ȕv^~K FzZoXM;O9#ulRYT1``mEE ck.| +!ZAz +3 nG ~GDc`κʡޜ)ل_qo&#Ti11Yծ'e Une1V<\od# L]HRi0#RX\!Ԇ?^lZdfgF۾o(3{m|/YWc0q -ࡨ{Yy߰[I4Vݗvxg{wrE" <W SҼ'%̶@~}'GaY!GN*v2=Ҽ O tPyOR̼kbj*#iW4d +M1BU= JyQϦV;yoY23F"(7t޴>(%[CRS)\Ge9ŚO6avniji驏"qa+Djt7ٯ<~%MR'%f|jQ]uɌF&}XLT6\~WP`kN؊.=wL۸NφMSuo%">'yzkS'r֢Q$fbC:1z\g 'gfp|{uDJNJZluOo)K#Gui +h~!\@vXo9_RgÊ\)~1n94φS1*Ncab"k `:.6F[WԞ#@XotUpӬ҂D#KTr]'Z_I +[oi.6^ NS~QA\p4Ky'Nj~zd _"vk\ڲG:xm4+"`nZ6VK +ѧpSOs t #zVmЕa NIyxi[tTÿonm9E>G_J9*dwP ((ǰ޲~Җn7R"HKLl&2 j4'G^vl)~6b>I[='*L̴CKɎYtlk%Pr!'4ZLy "=Oڔ_"ktEXvIzRd^]wkT!SQK + $+ J_t GJ@[GFzTݞE'V=]# 7\, p|ZW7l+}?"~4{8T}OXttdK+y3ꅆ}lyIIAQS!dqx^XBʅ_':/47RKQզ*^$Q`mhu0~Gڌ\n13W|δ]^2d0o`nҵжQޚc=}En鳮D*d=ߩ/Բ;hgF eޮaUI Z=SRE%wgZ^ ND3F֍ܚ:Wܳ>O$NA&{= +lɜcv G7TDM]"6Yi|Y҉6EԻ9L!|> V>)w\-̱iգl~0TJxw_j6}u9th1-Vvͻ +mfY-ߠ81g5c1šW.9kw&ŸŌ`> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}2^B$at`&?{d}|(6TC%6@!\9 zX*nCdX2u8Oϖju8djFTZ;OխF;Lj'"Ōh hqi\B$®̏TẼum$PwV~KM6NRo'~Ͱ k2|̜֐s8;;3sW(Ϥ9Pl^, &94kCubH]\}CUw1G}<{D VJέ.q=z_Q6S\]YQނ&8\w|ig<ŝsR7 "T"pc'7HloR9=(*fsC,<H֫Y%BG"(FζHs}"HwsvăXuM}}QttԙZgJ`.8Xc 6Wu[%w.({[ 4hH,zA%&/su#K+(QⵜKS512J~W-w,'| mrbMҒ,h^ zFLw[URVu 5R:Q/ tG61,X[w4@Oy#EFJ5+0= ++t˧v8A*J4"_I%11n ׎Uy R=)UR28Ls^3(1Mt#}a~ +}ٱ58y5>.Q{/_}a)rTk +QfR5MqbP +ű响ew]9g5`ј]o$~4q􍹋q0Ӝ"ylXqQW}N*Ya> +z7@md f;=ޞeI~sO>5xeKU~z#$s}-*{ KWK?rhLKl@k_9ic[AVlUKۖV7?kޛ+Yƨ#eu>_{g@]lrPOsIf4TsEWg.{d8paZolY4'y<#8H͹|=~Ow*h༝6 HU*DTj:ߑ?eoHpfbk_ CBvO6({sہ&ݞnp-tƗX +q6u+@$J=HK~r`)_ðnj"'Q_IvD]hIWۡ8Y'B%,Gr@+G0=Yر69“TPDZ;Z1|4r ArXwdoV&W0jXǴH! S2{hjQ > =ݍ~8=ؐP.wOdjI>ì4Јb w VCIJ4&'ȿfF69O{tid/.y{p *R3nN:7>T[&~~{+hY2k wPU9l˳R<&'%/OΓ5tyl4c;D_u2z4[Ze+yT3<WU3\q (M="{Zÿ<+AuklHT)sw\ңn||avqh$f=iBqX˒sx8#6l:/@w@;Ҙ[똕z5PGk#)S#[e!g*{Wܑ)rܘjUnXyh1+7}0״HZvn:f jkD{ػ WSĺ߫6:شH5sNo)nG#i 7\$;԰)„Ksmɛi: 8110|h)͋=W*瑈lbhcJ٬L;ήRh=$(c9 M7W="ӷJa>~,Sݩgq £8Aֹ[PYa\s>`d[FXh(+tu6hC=Zvj\]Il\ CZeFZK.:Q˲k5h4 wE*|L聴K6/ޠ6)>~7حV# "uL/)ɠ}M[S M+]5$gsO1M wa%6Lb7 .єٕ \'֡#z]L<bq,0UDi|w'u0}Ot&\W! ,@Ҩ~U¶]j`~mHn2x+n|IqB)sk^66KNLC}9:VZ>(=*%䖩ǣy tk8CL1q6rو‹>4U~mڪbkusWų yzx"V𤆢bk0ifA{7oC }ҼTE j"Y 'H\˃8':&)cfxr#fUYnj%{ +ӜZ,E7\p~',K-TkkWV?iY1z *Gryw=eһ#{pܾ®fcD]O +/Nڕ^J|L,h|]Bvu%u!똆l$YZM;p |]q0u:`[j~|Gcw6;BԖjKps#T]^qK/cmyeĴYQ }G4#YvʼnJy uSC;T{sQOt\6+wwPqŽ'f|#مA,hiU WII^)/0 sMNro`{h7$M\^^za|8%R%[ڠ8)3(t,ECpG4wTYDɒ!Ч(SUVJQm> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1R:Z:[U׿|32xt1_ ϕߺ`\p$ha0N _I]3iyY DVU 7r HA^w  y1 " +47!2 +bu.1~Zr[RN^~\+|Ы> :cltZݫ:9 +5TJn0z kj[G {dOo9ZF_Y3RT:h7E4FD5Œ8xRX98<^)4-L/(t MΠ6Dt B +ͮ 0WE Yuz)EV'&yݻ'KiC1\Zi-@as}|׬ q{90K{:OG+% n*zwG9.+m|1{ +Q|'+Wc1 +, "- _'L9\3|׫W} @FSxZ=8>=z^|FD N)֤0=:& \%2[y[ebhsrwEQ&$ȓta4c&/sC%xJ$Ð@O + ~3*TRe@cM+"O0"Öc[vfoj; $)Cߡbaχ\]f&l#Fvn%T*ffyz $ +w7$ Tڮh[}:6+GFwDoI Xlqv֒`ޢ[ +-6u?2_?>]˰k+ݚgN]jTҁ$t=.m +."p8a7/Rqo}i7KfgM}9qvQ2$("OFvMg:pǪ3{, "E%gQ1iSIM؃ C*2(r^ ]0ݪq^8nޫ@p2'`Kv2]5yKD/ gBbmh{.;sr>}!S;?J.ιj?āڸyR/clIlV"xKՠ>xHZ֟?y0c!ƯSMOi  + j]?֕ l~0*H[6($^p#)`+;dJQʟiMJ|F3#ˆBQ%a}8-LBѯM݁C[ +.gk!"!qrgDM˦b'Tp\%KCԛ7䠾2 י)Z:"l h%㤝޼,$deo~vT뮒Q Zc7`q_jR29o{ϢrΊ稑WZOWq6GHs|O.{탖$ae士 ]?ځ>oGjEb1K屻÷yCÑ-dǖ#ट2mէdiib߷nWE|cD(]=b=1(eR%^`KmjI1td22.:o.y= Y*ȩ)[#EcȈ<[Tj +#͹Fguq(ߒqT93H8QJpQ!J:Q6>?aQ9.7Rp,;Ɍdt`e{SwO(uH[jٍl;i 'T5Mk}OjF (K>e=*0|I S)P0^{iG얡P kf lX6pP/_FZhTyOhN꣛b/k% w}kef5`Y}weql}| +DrI*h%ki[LOYe5Pv@UxB|!]bR,~#PZN`;1dr:+MfOzKFЫd"J#^#r3ePP=ޝZ+-)&p[)=;TqDR-{5g 8!zU=)8k|SZߏ"pڦP8&*#3|P2HFi=y+u_SK,cD +fDa*fnr+D>yuz}kT>r9u&a\4)ҫ+yRj#/(J?Y:wc}+BJge VwjxLjz^?LRACrwhk͎FCEo;>^;+{h=U^pvBGˁ~Jӗ2h46)N15I>1ϩbmP'۷z$bh"NfFOP8Ҽ|4;'f҉RGvnFNHf NڡHgmoD D;}m/{)PA OUIJr5gƏ ^N9ngrȱ|dD)UC41Vc@ϙ}Os\Ws2nǨtgqP+&Sd_};{&:QbG<> U SIpAw"Bh֐dd%7IiE4LLaD**+(IrL/Zn3olIsTpkKwO]!U1WG*M) ;u`2$/ݖW&;XeGsWH;k3#g$*N$+;udTaxf_׀Nz%-fN eM!LLBQ@m1$ccˠLc (6pZ[d|lZf3ovlE7xq2y֓aFvԃyc{C_Usnp TR|߬b٠l=#0ub=sz *9'Bcg3^(*x@<7Kn x!]/ft;QW 6^Cץzg僢ݣoH U&I|*L8`Oq֛K)nJ::VJ|P_w _fKغlڼdzK8t͠+B~-Y?6MDAXYlKnc: +Oxؒ 6?8==޸!,iA.D0 eT,u%e7mTv:3ޘR ۥfno5PAvKS)*mYZl-hKyj7|L25;QQZpa2Q,mo\uwQ2^GW%Beg?w ԞȒa 7f{&N#EKUFe,CDWNE-G!9Rqꖍɒ mf"%MIjgwWWKDSRfdK4 O0  +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/CSSXYP+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 984 +/Length2 2363 +/Length3 534 +/Length 3036 +>> +stream +xSi<{bk()m̒ ;![PcY4F %Kv$"}X +hBRt-t:~{|yATЄJC*M *p8DNΐbD*K5IDh"`H =耼¦J'4"K,t/*Ò;*҃T@Dl7S[*8:z)ئ+3 + +ߩ ͏ 4lR d}[?7'_FK&)d_:H,xFY~5g Y3:DSI,3EH8tBh,RUջ:@qw9MQ @֌Ǒ"ۧ4-SRS+,]K *ˉ~qɦ}E^܃Ke5E +MNsY%(MQNKj?-}K!"vU u.ۉyszQ3RYFP'ƫG m5{7ܼ-䡤M&C%b; |=4=m׋bu.!y%NiJ5sN,Mサڙ=u`Rؑ9j׍IEOSDd/t=@ߑbWʝ7EBgJ aI {F5!XGzm] VV&=F=eo#Xnw}:ePAp{[mUNrF퐳Ӌ +^yk7nv}b"u`/VƤwl)9`Nʇu;P1Sc,>=.\_w><;)G#D%|wpgJ;hrL *II V4xsطm}G'R|Cz+8k悗?(kt `s *—’cF_2x Qc^7UzpܘMiuGW^ Tp8НG3- ?XNb'rfd-|3GJ>~[!)%cHGt5ݎ)/^i"+'ޢ!ف464"+ *NIjs!>3Q`;ℲW}rg>JII+nriao:ᖵF{6}d +ز.R>rbMh"#rf[\S15{ `(:Ď~R蝊gy &lcI#TA-GcMHе?)'qy}jAW%l)a\A-,tΪL@$.s};:v#۳~C2]m܌ +JQ:b5Lw}鶂;Q2]i{/%J{g2[m׮j +-_];pqXa4{=t-UW5-s]Z?L bEW?۱,!K +w%+wŦi^ U%~O\ڳg5D +PA-7[sB19 ^ãe^vxD?>Zaf,bv5XVHZ@}wξJMie}|䎪ѐKA[j\ONzѪَ1x Z#oi] ,Mnbԯ%(8¥%:1բT#{z`pba[%kn eI +=pQ$c;,^p%Dq[ [+{?kť򊪎0Ul5$M9c_)ˏF(3fck~4&Wϩi0DTBÏQē55-NroXMbo9+NO^<V2; G']QlsU9_+n̓^0+ٵ)EcUgw'^(_[`Q)lN[+M [t; \\9#I8awNҐODXU&]y0 +tzZlm5q%(G4ɽ˫85^v[.s^m 9Oo;uSR&m5E'Cu;NΙ)o%K9Gv2Gcq0iEQ{vnDZ1395Oc~FojXrOG罟q,tw-ZDjtl./3l̺';oR$5l_I03O#YҔۅש*LvH;POko7Z!US񚮴ӆ%#҄{^ru06Ae왫_. ϻD]0L72v?ws a$Z7A/3]|9:ąZ0H3 {|=rL膭5yzɣJqxLWIkڙBQ}~9}Jh6h +Ⱦˍ4f{ꕦ݇!4!8ѩd,6B +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/PFTUWD+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2538 +/Length3 533 +/Length 3083 +>> +stream +xk8TǍt&Ia"f"3 I$cfd0fDCJHȱ#*$2HFHRN Elڽ˾}a}{~x`AupzǺpITY> ssr#E!}Jqi0V%3-:VQtJ@c̵=EU{'G8|"^xo^ʔgԒs(]BD)4ڭ[k_ESжR^ӹứTwɑ=$Ҟc~ɔkHXúO +b` -$uxr(etʬ:N /U |sKs֩:vuj!V-2A};w䮪Rsi% Ghԋ_Ƙ ږ87*gll2X٦XjU']Kb] -S GT@T1Jbkޜ3=4zT"x~3/~D;LP!.8Q"ki[gnIo":*|Ssӝ(ku{m~VS֒B=xK=-S̯}-FEwdۖ]լ@5 +MC|dCh3$ xTHYC9|-hh[,Pq -//" wNl.ohЍL@iTMұ' ^Z3PCr>g>fK?SyP;x1d6py"m6B'jnL2֕ҞٖEC%_E2ņ*EGQFj[_LW +v<28}all'@sBl`Zpph2CT=ɝUu+[ȟnLEĝ3!=ÉvC!w}"7 |֟@ܽz> 1+>1lv g /_4p^QSz@' aӖ19O}xDZDŤ%DK-Vo)kp^xQ& ȝaa4^ IF c ^[5W9ʓM)l?I.Uq+5};gpe*Wks?M~\ (d@b2\d'XRt1Ժ +Zs>nQ;/$ƾʳ9Oo2.X]+|7EY8tjwb\rv+;Ƅg]L;T\f;>W?R~ӳ{lZ'B6y4*BBWRJC4nfdˢ> *[6>E(o&I"`w֗-| +sXN~a5n-Iyg/'dOS}4(3 +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/XQGLQC+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1508 +/Length3 533 +/Length 2043 +>> +stream +xiXYi("(&!$ + +QLXd1@IR!idiâ((QhQD*.0YDq=7Tss/ʌmoS cp*"o`@ +'cd(@x[j2G P/ 0`A"#`.TE1!X#V GEA8 WUׯYk#!81a6Sg&''~t5X 'F_ n8DBɊ +AX@`4B7 ^j"_MK' Q[(]#ܹ)Iᴷ^ҎǺ}qkxǸ%9׃&( +6ˁ?ӮI +1 Ef&Uwz%VunkjV(,.@}c%~,/quҌzkMa'`:]FڶL1-{bk{Bzׂ<]='xE\NoFB[ lMte_3sZLk|D1t3|ELȭsZmVLnNCAk˦5rW);e=d+Izr"t"{<~%3HPGd*47$FA-?w®ejLqi:Ɣf)(;4ޚf7Č쬃OF?Xs/zBwn;@@`΄.M?Zk=,^p}ak0mC<[4X[%r{G*~/{T4dLRE<IK{}pm3N)eԏ~2=%ҽŸ s6[(XSʘΠD>[f8)6bز3"l(/>B3ڍvI\O>{RlE[_*~9Pslu[ș9p3v*cOazG/nS}ZZLZ|.6uN 1ÒFJ +Tu!nOFLvc_߬A%|i͒ +Y8/S_ӥ~"}$ R|{SpzG8p_Tj9|'|0v2,B$ϳ$#%1ʠ=O7<{֭Yɟ#ESdr7˩ cT둟\ar[ۃD 2">) G ]>l +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/TAMMEO+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1820 +/Length3 533 +/Length 2360 +>> +stream +xk8T#bF""L32&3QKeLY3 \ƈ$P)T\"5$ +ʥB'~N9ywz}oUQf4$@, +d2 \]݂ R8 eIFP qv7m/ !G.ye7Rc riTudMx".!5*_5R߸>G>|Z|]ᛪme6WvUJO 4p*o,^<ֿP^,X_<mf&GWa-6Yz>2N)n^*VM9r6CDžY訵}H4z"#TsT,Osfۄ9PzY%9e})$dw],W;,a2#cOq&ٌ^_HMO,t1x)D]+_*@^ot_jCh `%4~퉚 o>P1P?9_oPlbC)c;l +hzF5GTUmB}G&rp)~ǓZ] eE<3}1hj`/5}-U&]d'fw|7syFKp&" 0|=}|UI`Oy9>+ZmFjmwpMRP1H323?~˦cm:`!,^0i{β4q.w'bMWq_MɪC]O]':}2b.ϻZ'j[k[g']b\ŧfEg;[g"T+E"CIj^_h?Uy"n6ޜ.}HC Ptke7.7!/zG]96KC9/\_zȐnQQN~Fx6e\N} (=u ؅twIs.gōҼGv7-'.n/0誴96x9zvn'YE ~&WX +=;;!yEJp}3zK?gr|BD۞Uf J=6~ަPr׊:r9\3Jn~X5[x|®.3 k|c~O?jp ;b +5{^dO,_-)_SQ$FoS"t\jd$qΈYF[,IpL>3Jrqwk8#D5|~-(ԜK2)IPnwRp^ݦޝ:ZN  jrgº<lWij{wovY¿SN; Xc"-NJh7IhKcy8{T⵵P4cÚg"C&nbR?M7F=dE:9~$ֆc"5OQr}im4jTO\XНѱSˠߙ"5_y#_tŴ濼2A +yQ?V +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/RJRYYM+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?+(2Wɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\x +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IAEDAF+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3040 +/Length3 533 +/Length 3590 +>> +stream +xynH( AԁffFy HH0"#"Ձ55e/(++)@]\IJJRjcxHQQHbF~BZ# H  'ݐ(,@O,#P/RHG,:@}CP_43װàp`pD$h@Ɀ[!(_]#" kc=H,DVKG(a"=04KGb6TW@?j?)Q$#CG+v}(І"`x NC +Ue@X^W-uiT(*Rx<K?u4$$Kt&P99 !gη9rA iiĮ:ɵD{1NrK7q2􌲽}aGu$S>I㾽ХuږP~xW϶G=w⑪It7F8+V;Uq*иb6|^mSmLrHIL|I\x{`xFRԽ0j@m>H! u"ջg%&ji߇X3x:RBX~p.鰕̳>.wbuK/3n;ʰ~υbw9e! I2T\˃vQ4.\-Q\eͣL %\0{c~A9+X}޶~ jp?w2}.W {;{u>g[K*F +E4[G6˱6~MW9~ޜ)獏`r#r@NqDD?X>(=ԺS.j:ˈ7É̕jg)P߽3eW]U^B]:عu%u`Hy3<_9do]6\+(O(ScL U{xˍC6}څӫ*wSl!wDkS,9.AꔮVg:}xbrIF {x-xҊKF[*h!5 ,KImƳ|0uZ +'ɠ&욣*s֖ZjSK_(C/jxܥ\e$dnU*Hw,3=]MIJy nck&XoeD4gۗiDm0qq'd/"/k6s׼x!*X.LgU%t3AoW Wf|bҴ`?vOR"&xb\ner9uÊd{V { ^&#Uz0ޚ3[R^avWT]oL~O(VP`x8oi~[ݻ0fr۾4?砪YM?ౝ4a +,74Wh"+Izm!SYIn緆jg?%32 +=#ǓJ*TCu3P| %m&0\;ro +w5 =-})e&=V)jNJA]ݱIߤtZR0",x Ri;>S/w/l8A5D^AHY+߫G=4YO ε ̏5%s7E <9(U +kl;x7H 1Aog|Gvz޲,42vg_ǨQSA?HF÷@r߱YN./1V ~jD 9#mxܴnM֤Aߣ|[=db2 >OS},WHARj[6>0L[ y{ lv5]9(Z諻hdP0E^g*icndr.Tfv#gWt*pAi6ʖepSf93_69Soy_\$(q)*nw:{՜"ɁhAv#j3/#26OY} b<+ +젊Mg2M~Nb1>t6MTaBxĀXq '"}鴖@)'#LU]jf7]uar 5m'͎INO(i( )]q9 +yNHB?WT`A`͆)yX~tF8كEOPk?LY%l#Y.MX"z#.pbma')?1IFvi_~>U?( CIUSpYd@@·߈tyѥ 5UVu^ԕ!_(,/uskoc'?nM8Z o,ќ:}' f+;tijDq$Xwf ñ\L,f eV ~aC+ZZRt +O +2핀-`aRbCC +Tȝq}E˫p"nt%ޮW1nB6?yRoq.iQrXH3=aI!(‰S*]ظ 9h]-~Tv@ym< +\%Pnbk6f_S3 jnC "+K1?Y| f<Ǥ_N_v9-_٧Y > +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1670 +>> +stream +xkTHQ9ճzK 44$\ Lfd"bUDTjEZ˥U*Z/UE4BmWiuuu|λM3 r`"&p@ n| ^`SD(NeH>[Cպ1 +B!Q.&`J"G*wwB͖mَA {c&)'Ȥ0( +Dpj:vGuSB" +?|]co +kwZؕD_ў:vϸyXڥ'| +#s 7w5u_Zp +2%-x䗷zSC5z9@鉣?&F~۴^F_ 2> %3XziñCscU3ݷc'5Mfߺ.o.ݾrg]ٔ墢w{z_?0$H :s$wD:Mf1 S]i!\ϙs6hg֞b5[[mJQ ̽ QEe؎+ 8.|ziz>Q-{nKǚ׋-JDq3Ͱ[)F3Q %q;f6k(aV趬Xυ|p?nPՁ>L/*~ajzZya]K6C"9hv1努e1"zsX"wϩoM*v dυYsil˒~ZkŶE4aLyh[ra": 8qX&*DIxJ&Np6ҋhύ#ZyPs4:ףO<4I) zUGc^%nkZ".{V~m:{u>1HD +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/RKAXVR+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0R2f03&)*0;J)vKH6xPLڝ<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqȯ- b$"AM^o]"Lg{GB/RĄ#?8f(͑Nb0D:HdNeoψaL#cSqn6,,s \S cnl™L^:O^aqJO3er]ŮiE*=RwfQ$>v ҧƥ3.L^ [M^Pƭ萚?(%)p촟9 Sk.7 M?h)[^_z9Q Ck#^{j/ZxNM\xcHc4k>\}B\[a>: +j)7hRdKg/vy:3PïS~?^1T=+|7,v)Pu%*&p cƯEFozAWz9T`]ؗY~syA>4vsPU؇]xR?J=ՑKZ8@?Uٮ[ #ѫ̽|dԨf_ueNۢWWSCyVv +,\z4;q biǻ]I:GL}9zC9~6jkyb "JoE*5Z%(}aRg*H^[![mv-䧫$qi#{VV65۰X_J777|zs32c:J%>Ʒ7ԫj{QsL/2یSɧ}CX6nlwٴU"Rc +Zz(]='+ݪJS=ܓ}\6 +fn (2.ǽ)^ P%l 'rs&|aޥ rZuLU7q*^5𱳜sڴP& $dpbrz%/ƚEe1ed/C]Tw.ԌjuGQז7,{w!.~,PKTlTn,'@k9"Ż1v=ԩT'ڑ_jZwgsDƎovqHc\߲Lk~ZvKR;Zm̚E=;4qH:8.ɫISz[[H229e(x<izt1ֹނ釉#09)_~t~%rr*D|B66#2) ):JiLk=ڕտW#TF zV8.gla{t6`X7|9Mq35.-jӶE`˾;&c{rdR兆C%[/[Qק4r!tn~tBЈˎd&<I Co}h +[`WQ&oF{|tu [wLRn5#!ΙO)mwߕК6"V߼~ɰy!?b +l A Y +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/CQTQCY+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 61 0 R +/Flags 4 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10142 +/Length3 533 +/Length 10697 +>> +stream +xUP%qww6.ni]76 4nӸLssLTC˕IEMQLޕ *`ebaAu63rr3r5Ž 'A@:8z:[YXhEۙ9[\-TL\=a[[?>q(92! LL\fV7wp+m +rϒ_.?I9Mm=f +3K ws ?٬V7# `jlR ɛZ*jdke"loak`WE%dϴ3? ETDǺUl!g?qm0_?m4q{S+{ %;7#;bcp25{+' Ϭ gln9fff&*Jgk8,8ԴAoA|j\kq-;>hm|80 o~Np3eNHu%x]# +)<]dAT0N i3w'~,nT\}9e`ABA~H1R$yLk=:) ++p +J^g:$rgsb|>4.5)o{|7ԺbC%P$b;̓&EP~u3k(i2,Ij%{&?C;Nݘ"6CY \?ν Y\,}}m2O-ycW +Bgmz'Hz%^y92rA4~*(rg<'b УY'O{fT$0*Mp9I HT xEN_PbtXxM{*oQ=yW`f!FD.2nWҭ L$~.G;#O/.1/onA5 d}jv?{[-i;(Z%?rQ\2PlXD#F=1d| Kn ]@n cFY_expXI`lQb(ua֨w|J1+b@J˛|&+H]g b҂$b7} +A{9us\.(x9]ʴؙBаv)2raNlLNYE8Ӏ9pU*+Sٴ)MI[C㯲?/o+xz*:&7͔$Ktͩ99yc+F!h3K&LγhI!`=jяKGrg%jQ䞉~V<{U Cn|AUhY@x2JI ;D4ieYgx)=J +sWQlAdQlr, N-E0,-5Wcs<(8ݎqHHE]COf? +xc/ G\Sg^<~a"1i#rmk)'GҬ)iD nq5 VDU>wtϷ41WĎ@c-$L74bc|+=|2*? 3x|KX*.=CDK/ hoj\X PW |P;f*˘o"8[uz'X5/.{"@ d8|K|$ڦp5XAl;ښb0868x9%y:#pd%2/q'8l)t +$"%<ЏiFvhQVGRXUVLgJ0ƽ[y:NL/3d{+4>y%%E[[c5ƓO'^4 HGsp|ھƢ-md=ghJڎKen|wi#`c[ӆ#[*4.FjaXCvxk#&PP_ośԡ%RZ~;%#/ l/SbnȜ{xmKFlW.*(ՇEȓ A wpX90X\ o?6))<ѵɪ(m>>:;R8^R7":9yç2@{oQVr9rŘ2r:.yDWxbFf>pv 5wpk6z,v +LK-hC,J뢒h[Ktevf.qWԊ<+AЈ1Sd:V2hHS]"bEljf_+s.J{TgphSEYw#<<7@dd*o&ڭ~/ *=`Rm6lj5G0OVV4FԾ~ǧd ~hyus޴WDะV>U/nV|s׽dHcϯI#?_`K>D|P3[Mx6}8Լ-Փ ]X^JCq74YuYH3Ж <[:Aݨeus϶N(;X>BdZ('<(E5ӻA!LrNaٵ:炆I{*k(:8dk<',d ? VnMo$~쉎O2n_5@wGoa +ϞMheqMKr0qUpV։Ӂ&F[)HG'Cf +ى= lRпl2[9A7KBwΡVezSiJ|wd4C_8Db tzNk+4lvȄG_ө ;ݸuo俻L__!HeSSLPWư~?o-z 4s̮j#8o靟1#lR^d>G]!!ڽ=z|tqQ+"f^WH vXZ E+JN7?)HdAhVC QjjhdжM}>i4 +pB@,W  $4'C$ avf~"l69p!s#9H$[*^}zLE8ϯF=cVUs,^pq/qZ^9#gRhߌ!Ӱb.edUJd$SEt^j&qeGvn/T@{cg[Uc}[."!59l2!,l ew=,=xW_pL0َtoƽcR BG] Q?S*dF&wJb$ɀWu;@|Tl:GtuC.fn/`MT׽ּ(ۺ_OlA&>|9pwmKAemi>Mu]soaO[3 td3H}}+װ.ZV}pK`f +|{^p;q2 +‚WzűL-W--G>i#$Xh{>32/W^jHЪ&_]b~kF>rUSF٭.-8muǚ $&r"q}1fy10oP[ +$'g-(-8#Kk%Rq+e{Zqͽ|)&Zަ.l+m(#_t@B(¶)gmY*^Dc='=$mA#]S;C K7H ָ!l;n3FHgjnLCe)umFBl}|lʲ!YY g=wsfV @"K4pQ;9J^y eb^ W\MD^ϣS+Wc" ǔpfl?zR>OrQ'kjyhYT3r# uHexpᖅIP=1;|F <Rm[Yk&M6rOZN_|ScKQQp=?ƄZQ$]fjcmKzYaXgf۠u! +{+A :^pZ^fzSL*ϥRuH_ũCa[֓D_!E'spcmk oiRQ5 og!xfqQg[G1eކZf׏yc8^Z-Kѱ,va&Y2l`EKuSТTɑ1šh3jL +ߵ^bTR8qI@TЎYnZ_Kq`-B`i^o|:[N*WX(Mds ZtNfxqcXrτ<8-gy;v]rY+FZ N +KrtP7xG'z:\$"dH)y_>[5sxiFDT,d:qټ 0odqqۤ^Fq.!,P_KUOG-.dG꛷J +Zy^ FA i=]'Zh܂;8>T;E;9iNtQ|A𦠉nOHO'1]SUb՚< l|-Ч3-X(îaEWwx|ʻ\< +~E_x^yBtg鵆;o{Kwl1ao4BKDywos]tJ=I)PY:w|͵oRf0 ذiep\ ' iL}^ОQVdUpT̏*7tdʙ:OD +_ٰ33. o,͋EϞzV7v5ұˌ̦#gY %cb^/^C8>L{tfI2 xE@$bΩ{)UfR^ӟB@<4iRDMN\pt(,Q_~ZrgR OOzB1 SKwe⮴#ٯ[}"QBe0r5e x=PlXAb4PNAV]MAKb}C9hlj}23u0q~FiW,ɦ0(B#n7vq^ >P`V2?Q /fUwoԀ417VQl_lNuT[eN瀢Tm`̟L}[AԤ|62QM%H( >|"or}J֝GXo#+gUgㄸACF2zN{&;rJ>T~ilRN{~H>u*#> ǔT_"zf\:V»IhδG\Hgb"TQdg*"m+A$vu?[+,{k׿[aK+se?A3jƞ9ˊjp/G ȃܼ6zͪzEmBzpDT9?y Y3IQNu*4;#x&yi}dRA$ѺHM@cq6 +UBg;Mm9w^H$7-.g +Fk 50Ohm[J X~14-% 8)b.:+^N` 7.!)l7YxcB3\֝ +ul: RLIC&9 KP\WEz璎?4E_|Vʇ,ta[$ͮ(ؚ}C(?#^1%@ɆQ}tZA(s܎I!{B$f G.x |ayv3z irw9-~~^6-/(xѦdZt0owr +Pey*~BXW`e6cK>"09x {m6k#q 06X¦}$zj{T~n_e~'(Y,{\倥[Җyj1+w5wy +s[tp^t ?w^@dˉɿ̂TBP_$=u`nˌ\]UW&EMnss'B"@,:V:c9>i˵z;{N*ZWn:@it=3fnZJPy'^(T>3W^q +,x;UحF'b헓Uy-c,:{)(Q@jm[-MO8mJl' rFbk$46-SrGyGfKЖx";Bi)JrW-Ě0.ʟE׋8׃xl %kݹ۔QQUD>w0CIx\ܺ6#5_pFG`,XZ,V ]K¹~ft@3Y/}*ΩH QO19B80$i#ffټ=o>іPx+?] +r W/pQ$k*j㯧fP^UxW*Z鞾J|+[^VOF$h=:+"Ep逧~W/Kɿ #KP,qL4\*d ئ:tAfH_/tjHh=F2'ZN JpTǎ@/PC{領?gk0ڠ +6s>Xwb!z<R6&-ڂMCIF:+-xx 32qS|ݐ8[U>{{(ݔ |؁1%(D50?Gw\>@؊}w$ nغ;lsb>¹fWޑ Sh{@r^bmmpV 8[ +.]*f̖u=K7cQ < LU~26-~&Jj\:Hi1K2 +LQUOnp{UXLh}RW!1&|&<\>ZU0%_ qb & [Wkݯǣ q +Grqg1M38ޮH896ʕ'F;BѣN TCͮ!!28Fp%+c^^"ص&F!뛯_j^`>LC}?6pa ݜZyDBW-O|0&֘T9m1t(SCNB4_;RI|U8 RN_&uEڷ2'fUeN=9*uI]U8փ.ԙe!D*͝)'TO_-;Lj)s_C˙﹠*g +cW?t`7_ΘEw)=IJְ8b6.~Zϓ/3 / ATzz*'*y4u/yA#`=?˱Iژ^r[-8b#W@[K*hBI4S dSPgU2k{ڏMO/?Lbm`RP JD!9G :0wS<@Gw|yö&AtP(I5Fo՚&M@ӄqv2ajEdBD!㙏URϕ{oC/0Ғ_GƧ<\6F,7ѭG +endstream +endobj +329 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/EVJXTH+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 328 0 R +/Flags 68 +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O N9}eC]EؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b` +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185350-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 64 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +66 0 obj +<< +/Type/Page +/Resources 67 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +334 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 66 0 R] +/Parent 333 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +335 0 obj +<< +/Type/Pages +/Count 4 +/Kids[70 0 R 74 0 R 78 0 R 82 0 R] +/Parent 333 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +336 0 obj +<< +/Type/Pages +/Count 4 +/Kids[86 0 R 90 0 R 94 0 R 98 0 R] +/Parent 333 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 338 0 R +>> +endobj +338 0 obj +<< +/Type/Pages +/Count 2 +/Kids[114 0 R 118 0 R] +/Parent 337 0 R +>> +endobj +337 0 obj +<< +/Type/Pages +/Count 5 +/Kids[102 0 R 106 0 R 110 0 R 338 0 R] +/Parent 333 0 R +>> +endobj +333 0 obj +<< +/Type/Pages +/Count 17 +/Kids[334 0 R 335 0 R 336 0 R 337 0 R] +/Parent 3 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 340 0 R +>> +endobj +340 0 obj +<< +/Type/Pages +/Count 4 +/Kids[122 0 R 126 0 R 130 0 R 134 0 R] +/Parent 339 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 341 0 R +>> +endobj +341 0 obj +<< +/Type/Pages +/Count 4 +/Kids[138 0 R 142 0 R 146 0 R 150 0 R] +/Parent 339 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 342 0 R +>> +endobj +342 0 obj +<< +/Type/Pages +/Count 4 +/Kids[154 0 R 158 0 R 162 0 R 166 0 R] +/Parent 339 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 343 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 344 0 R +>> +endobj +344 0 obj +<< +/Type/Pages +/Count 2 +/Kids[182 0 R 186 0 R] +/Parent 343 0 R +>> +endobj +343 0 obj +<< +/Type/Pages +/Count 5 +/Kids[170 0 R 174 0 R 178 0 R 344 0 R] +/Parent 339 0 R +>> +endobj +339 0 obj +<< +/Type/Pages +/Count 17 +/Kids[340 0 R 341 0 R 342 0 R 343 0 R] +/Parent 3 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 346 0 R +>> +endobj +346 0 obj +<< +/Type/Pages +/Count 4 +/Kids[190 0 R 194 0 R 198 0 R 202 0 R] +/Parent 345 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 347 0 R +>> +endobj +347 0 obj +<< +/Type/Pages +/Count 4 +/Kids[206 0 R 210 0 R 214 0 R 218 0 R] +/Parent 345 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 348 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 348 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 348 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 348 0 R +>> +endobj +348 0 obj +<< +/Type/Pages +/Count 4 +/Kids[222 0 R 226 0 R 230 0 R 234 0 R] +/Parent 345 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 349 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 349 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 349 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +350 0 obj +<< +/Type/Pages +/Count 2 +/Kids[250 0 R 254 0 R] +/Parent 349 0 R +>> +endobj +349 0 obj +<< +/Type/Pages +/Count 5 +/Kids[238 0 R 242 0 R 246 0 R 350 0 R] +/Parent 345 0 R +>> +endobj +345 0 obj +<< +/Type/Pages +/Count 17 +/Kids[346 0 R 347 0 R 348 0 R 349 0 R] +/Parent 3 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +352 0 obj +<< +/Type/Pages +/Count 4 +/Kids[258 0 R 262 0 R 266 0 R 270 0 R] +/Parent 351 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 354 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 354 0 R +>> +endobj +354 0 obj +<< +/Type/Pages +/Count 2 +/Kids[286 0 R 290 0 R] +/Parent 353 0 R +>> +endobj +353 0 obj +<< +/Type/Pages +/Count 5 +/Kids[274 0 R 278 0 R 282 0 R 354 0 R] +/Parent 351 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +355 0 obj +<< +/Type/Pages +/Count 4 +/Kids[294 0 R 298 0 R 302 0 R 306 0 R] +/Parent 351 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 356 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 356 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 356 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 331 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +357 0 obj +<< +/Type/Pages +/Count 2 +/Kids[322 0 R 326 0 R] +/Parent 356 0 R +>> +endobj +356 0 obj +<< +/Type/Pages +/Count 5 +/Kids[310 0 R 314 0 R 318 0 R 357 0 R] +/Parent 351 0 R +>> +endobj +351 0 obj +<< +/Type/Pages +/Count 18 +/Kids[352 0 R 353 0 R 355 0 R 356 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 69 +/Kids[333 0 R 339 0 R 345 0 R 351 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +358 0 obj +<< +>> +endobj +359 0 obj +null +endobj +360 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 358 0 R +/Threads 359 0 R +/Names 360 0 R +>> +endobj +xref +0 361 +0000000000 65535 f +0000147972 00000 n +0000158284 00000 n +0000157929 00000 n +0000158134 00000 n +0000148136 00000 n +0000004048 00000 n +0000000009 00000 n +0000079121 00000 n +0000078937 00000 n +0000000913 00000 n +0000083937 00000 n +0000083751 00000 n +0000001906 00000 n +0000089176 00000 n +0000088988 00000 n +0000002823 00000 n +0000158034 00000 n +0000003740 00000 n +0000158084 00000 n +0000003993 00000 n +0000148239 00000 n +0000014634 00000 n +0000098988 00000 n +0000098799 00000 n +0000004109 00000 n +0000104259 00000 n +0000104069 00000 n +0000005055 00000 n +0000109563 00000 n +0000109374 00000 n +0000005991 00000 n +0000006967 00000 n +0000112907 00000 n +0000112713 00000 n +0000007921 00000 n +0000116290 00000 n +0000116104 00000 n +0000008867 00000 n +0000118638 00000 n +0000118447 00000 n +0000009831 00000 n +0000010825 00000 n +0000121306 00000 n +0000121112 00000 n +0000012441 00000 n +0000013451 00000 n +0000014523 00000 n +0000148344 00000 n +0000021645 00000 n +0000122722 00000 n +0000122528 00000 n +0000014696 00000 n +0000126621 00000 n +0000126426 00000 n +0000015667 00000 n +0000016619 00000 n +0000128600 00000 n +0000128405 00000 n +0000017526 00000 n +0000018508 00000 n +0000131257 00000 n +0000131071 00000 n +0000019485 00000 n +0000020230 00000 n +0000021497 00000 n +0000148449 00000 n +0000022278 00000 n +0000021707 00000 n +0000022233 00000 n +0000148648 00000 n +0000022975 00000 n +0000022340 00000 n +0000022930 00000 n +0000148753 00000 n +0000023665 00000 n +0000023037 00000 n +0000023620 00000 n +0000148858 00000 n +0000024384 00000 n +0000023727 00000 n +0000024339 00000 n +0000148963 00000 n +0000024965 00000 n +0000024446 00000 n +0000024920 00000 n +0000149163 00000 n +0000026199 00000 n +0000025027 00000 n +0000026063 00000 n +0000149268 00000 n +0000026906 00000 n +0000026261 00000 n +0000026861 00000 n +0000149373 00000 n +0000027636 00000 n +0000026968 00000 n +0000027591 00000 n +0000149478 00000 n +0000028259 00000 n +0000027698 00000 n +0000028213 00000 n +0000149679 00000 n +0000028946 00000 n +0000028322 00000 n +0000028900 00000 n +0000149787 00000 n +0000029280 00000 n +0000029010 00000 n +0000029234 00000 n +0000149895 00000 n +0000030545 00000 n +0000029344 00000 n +0000030408 00000 n +0000150003 00000 n +0000031294 00000 n +0000030609 00000 n +0000031248 00000 n +0000150111 00000 n +0000032007 00000 n +0000031358 00000 n +0000031961 00000 n +0000150499 00000 n +0000032717 00000 n +0000032071 00000 n +0000032671 00000 n +0000150607 00000 n +0000033928 00000 n +0000032781 00000 n +0000033768 00000 n +0000150715 00000 n +0000035161 00000 n +0000033992 00000 n +0000035024 00000 n +0000150823 00000 n +0000035891 00000 n +0000035225 00000 n +0000035845 00000 n +0000151030 00000 n +0000036620 00000 n +0000035955 00000 n +0000036574 00000 n +0000151138 00000 n +0000037303 00000 n +0000036684 00000 n +0000037257 00000 n +0000151246 00000 n +0000038008 00000 n +0000037367 00000 n +0000037962 00000 n +0000151354 00000 n +0000039339 00000 n +0000038072 00000 n +0000039202 00000 n +0000151561 00000 n +0000040108 00000 n +0000039403 00000 n +0000040062 00000 n +0000151669 00000 n +0000040842 00000 n +0000040172 00000 n +0000040796 00000 n +0000151777 00000 n +0000041523 00000 n +0000040906 00000 n +0000041477 00000 n +0000151885 00000 n +0000042253 00000 n +0000041587 00000 n +0000042207 00000 n +0000152092 00000 n +0000043545 00000 n +0000042317 00000 n +0000043385 00000 n +0000152200 00000 n +0000044847 00000 n +0000043609 00000 n +0000044710 00000 n +0000152308 00000 n +0000045614 00000 n +0000044911 00000 n +0000045568 00000 n +0000152416 00000 n +0000046392 00000 n +0000045678 00000 n +0000046346 00000 n +0000152524 00000 n +0000047110 00000 n +0000046456 00000 n +0000047064 00000 n +0000152912 00000 n +0000047691 00000 n +0000047174 00000 n +0000047645 00000 n +0000153020 00000 n +0000048981 00000 n +0000047755 00000 n +0000048844 00000 n +0000153128 00000 n +0000049766 00000 n +0000049045 00000 n +0000049720 00000 n +0000153236 00000 n +0000050525 00000 n +0000049830 00000 n +0000050479 00000 n +0000153443 00000 n +0000051167 00000 n +0000050589 00000 n +0000051121 00000 n +0000153551 00000 n +0000051874 00000 n +0000051231 00000 n +0000051828 00000 n +0000153659 00000 n +0000053223 00000 n +0000051938 00000 n +0000053086 00000 n +0000153767 00000 n +0000054020 00000 n +0000053287 00000 n +0000053974 00000 n +0000153974 00000 n +0000054804 00000 n +0000054084 00000 n +0000054758 00000 n +0000154082 00000 n +0000056183 00000 n +0000054868 00000 n +0000056023 00000 n +0000154190 00000 n +0000057426 00000 n +0000056247 00000 n +0000057266 00000 n +0000154298 00000 n +0000058744 00000 n +0000057490 00000 n +0000058607 00000 n +0000154505 00000 n +0000059567 00000 n +0000058808 00000 n +0000059521 00000 n +0000154613 00000 n +0000060377 00000 n +0000059631 00000 n +0000060331 00000 n +0000154721 00000 n +0000061125 00000 n +0000060441 00000 n +0000061079 00000 n +0000154829 00000 n +0000061919 00000 n +0000061189 00000 n +0000061873 00000 n +0000154937 00000 n +0000062754 00000 n +0000061983 00000 n +0000062708 00000 n +0000155325 00000 n +0000063621 00000 n +0000062818 00000 n +0000063575 00000 n +0000155433 00000 n +0000064453 00000 n +0000063685 00000 n +0000064407 00000 n +0000155541 00000 n +0000065168 00000 n +0000064517 00000 n +0000065122 00000 n +0000155649 00000 n +0000065925 00000 n +0000065232 00000 n +0000065879 00000 n +0000155856 00000 n +0000066242 00000 n +0000065989 00000 n +0000066196 00000 n +0000155964 00000 n +0000067599 00000 n +0000066306 00000 n +0000067462 00000 n +0000156072 00000 n +0000068394 00000 n +0000067663 00000 n +0000068348 00000 n +0000156180 00000 n +0000069270 00000 n +0000068458 00000 n +0000069224 00000 n +0000156288 00000 n +0000070165 00000 n +0000069334 00000 n +0000070119 00000 n +0000156578 00000 n +0000071038 00000 n +0000070229 00000 n +0000070992 00000 n +0000156686 00000 n +0000071897 00000 n +0000071102 00000 n +0000071851 00000 n +0000156794 00000 n +0000072712 00000 n +0000071961 00000 n +0000072666 00000 n +0000156902 00000 n +0000073609 00000 n +0000072776 00000 n +0000073563 00000 n +0000157109 00000 n +0000074506 00000 n +0000073673 00000 n +0000074460 00000 n +0000157217 00000 n +0000075291 00000 n +0000074570 00000 n +0000075245 00000 n +0000157325 00000 n +0000075938 00000 n +0000075355 00000 n +0000075892 00000 n +0000157433 00000 n +0000077490 00000 n +0000076002 00000 n +0000077330 00000 n +0000157541 00000 n +0000078873 00000 n +0000142265 00000 n +0000142070 00000 n +0000077554 00000 n +0000078477 00000 n +0000078815 00000 n +0000150401 00000 n +0000148554 00000 n +0000149068 00000 n +0000149584 00000 n +0000150302 00000 n +0000150219 00000 n +0000152814 00000 n +0000150931 00000 n +0000151462 00000 n +0000151993 00000 n +0000152715 00000 n +0000152632 00000 n +0000155227 00000 n +0000153344 00000 n +0000153875 00000 n +0000154406 00000 n +0000155128 00000 n +0000155045 00000 n +0000157831 00000 n +0000155757 00000 n +0000156479 00000 n +0000156396 00000 n +0000157010 00000 n +0000157732 00000 n +0000157649 00000 n +0000158216 00000 n +0000158239 00000 n +0000158261 00000 n +trailer +<< +/Size 361 +/Root 2 0 R +/Info 1 0 R +>> +startxref +158382 +%%EOF diff --git a/src/axiom-website/CATS/schaum13.input.pamphlet b/src/axiom-website/CATS/schaum13.input.pamphlet new file mode 100644 index 0000000..678e41c --- /dev/null +++ b/src/axiom-website/CATS/schaum13.input.pamphlet @@ -0,0 +1,5196 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum13.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.280~~~~~$\displaystyle +\int{\frac{dx}{\sqrt{ax^2+bx+c}}}$} +$$\int{\frac{1}{\sqrt{ax^2+bx+c}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{\sqrt{a}}\ln\left(2\sqrt{a}\sqrt{ax^2+bx+c}+2ax+b\right)\\ +\\ +\displaystyle +-\frac{1}{\sqrt{-a}}\sin{-1}\left(\frac{2ax+b}{\sqrt{b^2-4ac}}\right)\\ +\\ +\displaystyle +\frac{1}{\sqrt{a}}\sinh^{-1}\left(\frac{2ax+b}{\sqrt{4ac-b^2}}\right) +\end{array} +\right. +$$ +<<*>>= +)spool schaum13.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (1) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 2 +bb1:=1/sqrt(a)*log(2*sqrt(a)*sqrt(a*x^2+b*x+c)+2*a*x+b) +--R +--R +--------------+ +--R +-+ | 2 +--R log(2\|a \|a x + b x + c + 2a x + b) +--R (2) -------------------------------------- +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 3 +bb2:=-1/sqrt(-a)*asin((2*a*x+b)/sqrt(b^2-4*a*c)) +--R +--R 2a x + b +--R asin(--------------) +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R (3) - -------------------- +--R +---+ +--R \|- a +--R Type: Expression Integer +--E + +--S 4 +bb3:=1/sqrt(a)*asinh((2*a*x+b)/sqrt(4*a*c-b^2)) +--R +--R 2a x + b +--R asinh(------------) +--R +---------+ +--R | 2 +--R \|4a c - b +--R (4) ------------------- +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 5 +cc1:=bb1-aa.1 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 +--R log(2\|a \|a x + b x + c + 2a x + b) +--R + +--R - +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 6 +cc2:=bb1-aa.2 +--R +--R (6) +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a log(2\|a \|a x + b x + c + 2a x + b) +--R + +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ \|- a \|a x + b x + c - \|- a \|c +--R - 2\|a atan(------------------------------------) +--R a x +--R / +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 7 +cc3:=bb2-aa.1 +--R +--R (7) +--R - +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +-+ 2a x + b +--R - \|a asin(--------------) +--R +-----------+ +--R | 2 +--R \|- 4a c + b +--R / +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 8 +cc4:=bb2-aa.2 +--R +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c 2a x + b +--R - 2atan(------------------------------------) - asin(--------------) +--R a x +-----------+ +--R | 2 +--R \|- 4a c + b +--R (8) -------------------------------------------------------------------- +--R +---+ +--R \|- a +--R Type: Expression Integer +--E + +--S 9 +cc5:=bb3-aa.1 +--R +--R (9) +--R - +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2a x + b +--R asinh(------------) +--R +---------+ +--R | 2 +--R \|4a c - b +--R / +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 10 +cc6:=bb3-aa.2 +--R +--R (10) +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ \|- a \|a x + b x + c - \|- a \|c +---+ 2a x + b +--R - 2\|a atan(------------------------------------) + \|- a asinh(------------) +--R a x +---------+ +--R | 2 +--R \|4a c - b +--R ----------------------------------------------------------------------------- +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 11 +dd1:=simplifyLog cc1 +--R +--R (11) +--R log +--R +--------------+ +--R +-+ +-+ | 2 +--R ((4a x + 2b)\|c + (- 2b x - 4c)\|a )\|a x + b x + c +--R + +--R 2 +-+ +-+ 2 2 +--R (4a x + 4b x + 4c)\|a \|c - 2a b x + (- 4a c - b )x - 2b c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 12 14:280 Schaums and Axiom differ by a constant +ee1:=ratDenom dd1 +--R +--R +-+ +-+ +--R +-+ - 2a\|c + b\|a +--R \|a log(----------------) +--R a +--R (12) ------------------------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.281~~~~~$\displaystyle +\int{\frac{x~dx}{\sqrt{ax^2+bx+c}}}$} +$$\int{\frac{x}{\sqrt{ax^2+bx+c}}}= +\frac{\sqrt{ax^2+bx+c}}{a}-\frac{b}{2a}\int{\frac{1}{\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(x/sqrt(a*x^2+b*x+c),x) +--R +--R +--R (1) +--R [ +--R +--------------+ +--R +-+ | 2 2 +--R (2b\|c \|a x + b x + c - b x - 2b c) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R - 2b x\|a \|a x + b x + c + (4a x + 2b x)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R 4a\|a \|c \|a x + b x + c + (- 2a b x - 4a c)\|a +--R , +--R +--R +--------------+ +--R +-+ | 2 2 +--R (- 2b\|c \|a x + b x + c + b x + 2b c) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R - b x\|- a \|a x + b x + c + (2a x + b x)\|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 +---+ +--R 2a\|- a \|c \|a x + b x + c + (- a b x - 2a c)\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 12 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 13 +bb1:=sqrt(a*x^2+b*x+c)/a-b/(2*a)*t1.1 +--R +--R (3) +--R - +--R b +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 +--R 2\|a \|a x + b x + c +--R / +--R +-+ +--R 2a\|a +--R Type: Expression Integer +--E + +--S 14 +bb2:=sqrt(a*x^2+b*x+c)/a-b/(2*a)*t1.2 +--R +--R (4) +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--------------+ +--R \|- a \|a x + b x + c - \|- a \|c +---+ | 2 +--R - b atan(------------------------------------) + \|- a \|a x + b x + c +--R a x +--R ------------------------------------------------------------------------ +--R +---+ +--R a\|- a +--R Type: Expression Integer +--E + +--S 15 +cc1:=bb1-aa.1 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 2 +--R (- 2b\|c \|a x + b x + c + b x + 2b c) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 2b\|c \|a x + b x + c + b x + 2b c) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 +-+ +-+ +--R - 4c\|a \|a x + b x + c + (2b x + 4c)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R 4a\|a \|c \|a x + b x + c + (- 2a b x - 4a c)\|a +--R Type: Expression Integer +--E + +--S 16 +cc2:=bb1-aa.2 +--R +--R (6) +--R +--------------+ +--R +---+ +-+ | 2 2 +---+ +--R (- 2b\|- a \|c \|a x + b x + c + (b x + 2b c)\|- a ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ +-+ | 2 2 +-+ +--R (4b\|a \|c \|a x + b x + c + (- 2b x - 4b c)\|a ) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ | 2 +---+ +-+ +-+ +--R - 4c\|- a \|a \|a x + b x + c + (2b x + 4c)\|- a \|a \|c +--R / +--R +--------------+ +--R +---+ +-+ +-+ | 2 +---+ +-+ +--R 4a\|- a \|a \|c \|a x + b x + c + (- 2a b x - 4a c)\|- a \|a +--R Type: Expression Integer +--E + +--S 17 +cc3:=bb2-aa.1 +--R +--R (7) +--R +--------------+ +--R +---+ +-+ | 2 2 +---+ +--R (- 2b\|- a \|c \|a x + b x + c + (b x + 2b c)\|- a ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ +-+ | 2 2 +-+ +--R (- 4b\|a \|c \|a x + b x + c + (2b x + 4b c)\|a ) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ | 2 +---+ +-+ +-+ +--R - 4c\|- a \|a \|a x + b x + c + (2b x + 4c)\|- a \|a \|c +--R / +--R +--------------+ +--R +---+ +-+ +-+ | 2 +---+ +-+ +--R 4a\|- a \|a \|c \|a x + b x + c + (- 2a b x - 4a c)\|- a \|a +--R Type: Expression Integer +--E + +--S 18 +cc4:=bb2-aa.2 +--R +--R +--------------+ +--R | 2 +-+ +--R - 2c\|a x + b x + c + (b x + 2c)\|c +--R (8) -------------------------------------- +--R +--------------+ +--R +-+ | 2 +--R 2a\|c \|a x + b x + c - a b x - 2a c +--R Type: Expression Integer +--E + +--S 19 14:281 Schaums and Axiom differ by a constant +dd1:=ratDenom cc4 +--R +--R +-+ +--R \|c +--R (9) - ---- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.282~~~~~$\displaystyle +\int{\frac{x^2dx}{\sqrt{ax^2+bx+c}}}$} +$$\int{\frac{x^2}{\sqrt{ax^2+bx+c}}}= +\frac{2ax-3b}{4a^2}\sqrt{ax^2+bx+c}+\frac{3b^2-4ac}{8a^2} +\int{\frac{1}{\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(x^2/sqrt(a*x^2+b*x+c),x) +--R +--R (1) +--R [ +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 12b )x + 32a c - 24b c)\|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 2 2 +--R (- 16a c + 8a b c + 3b )x + (- 32a b c + 24b c)x - 32a c + 24b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 3 2 2 2 +-+ +--R ((- 16a c - 4a b )x + (- 8a b c + 6b )x + (- 32a c + 24b c)x)\|a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 +--R 16a b x + (32a c - 8a b )x + (24a b c - 18b )x +--R + +--R 2 2 +--R (32a c - 24b c)x +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R +--------------+ +--R 2 2 +-+ +-+ | 2 +--R (32a b x + 64a c)\|a \|c \|a x + b x + c +--R + +--R 3 2 2 2 2 2 2 +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|a +--R , +--R +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((- 16a b c + 12b )x - 32a c + 24b c)\|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 2 2 +--R (16a c - 8a b c - 3b )x + (32a b c - 24b c)x + 32a c - 24b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 2 2 3 3 2 2 2 +---+ +--R ((- 8a c - 2a b )x + (- 4a b c + 3b )x + (- 16a c + 12b c)x)\|- a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 2 2 +--R (8a b x + (16a c - 4a b )x + (12a b c - 9b )x + (16a c - 12b c)x) +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R +--------------+ +--R 2 2 +---+ +-+ | 2 +--R (16a b x + 32a c)\|- a \|c \|a x + b x + c +--R + +--R 3 2 2 2 2 2 2 +---+ +--R ((- 16a c - 4a b )x - 32a b c x - 32a c )\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 20 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 21 +bb1:=(2*a*x-3*b)/(4*a^2)*sqrt(a*x^2+b*x+c)+(3*b^2-4*a*c)/(8*a^2)*t1.1 +--R +--R (3) +--R 2 +--R (- 4a c + 3b ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 +--R (4a x - 6b)\|a \|a x + b x + c +--R / +--R 2 +-+ +--R 8a \|a +--R Type: Expression Integer +--E + +--S 22 +bb2:=(2*a*x-3*b)/(4*a^2)*sqrt(a*x^2+b*x+c)+(3*b^2-4*a*c)/(8*a^2)*t1.2 +--R +--R (4) +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R 2 \|- a \|a x + b x + c - \|- a \|c +--R (- 4a c + 3b )atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ | 2 +--R (2a x - 3b)\|- a \|a x + b x + c +--R / +--R 2 +---+ +--R 4a \|- a +--R Type: Expression Integer +--E + +--S 23 +cc1:=aa.1-bb1 +--R +--R (5) +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 12b )x + 32a c - 24b c)\|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 2 2 +--R (- 16a c + 8a b c + 3b )x + (- 32a b c + 24b c)x - 32a c + 24b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 12b )x + 32a c - 24b c)\|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 2 2 +--R (- 16a c + 8a b c + 3b )x + (- 32a b c + 24b c)x - 32a c + 24b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 2 2 +-+ | 2 +--R (- 24b c x - 48b c )\|a \|a x + b x + c +--R + +--R 3 2 2 2 +-+ +-+ +--R ((24a b c + 6b )x + 48b c x + 48b c )\|a \|c +--R / +--R +--------------+ +--R 2 2 +-+ +-+ | 2 +--R (32a b x + 64a c)\|a \|c \|a x + b x + c +--R + +--R 3 2 2 2 2 2 2 +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|a +--R Type: Expression Integer +--E + +--S 24 +cc2:=aa.2-bb1 +--R +--R (6) +--R +--------------+ +--R 3 2 2 +---+ +-+ | 2 +--R ((16a b c - 12b )x + 32a c - 24b c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 +--R (- 16a c + 8a b c + 3b )x + (- 32a b c + 24b c)x - 32a c +--R + +--R 2 2 +--R 24b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 3 2 2 +-+ +-+ | 2 +--R ((- 32a b c + 24b )x - 64a c + 48b c)\|a \|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 +--R (32a c - 16a b c - 6b )x + (64a b c - 48b c)x + 64a c +--R + +--R 2 2 +--R - 48b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R 2 2 +---+ +-+ | 2 +--R (- 24b c x - 48b c )\|- a \|a \|a x + b x + c +--R + +--R 3 2 2 2 +---+ +-+ +-+ +--R ((24a b c + 6b )x + 48b c x + 48b c )\|- a \|a \|c +--R / +--R +--------------+ +--R 2 2 +---+ +-+ +-+ | 2 +--R (32a b x + 64a c)\|- a \|a \|c \|a x + b x + c +--R + +--R 3 2 2 2 2 2 2 +---+ +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|- a \|a +--R Type: Expression Integer +--E + +--S 25 +cc3:=aa.2-bb1 +--R +--R (7) +--R +--------------+ +--R 3 2 2 +---+ +-+ | 2 +--R ((16a b c - 12b )x + 32a c - 24b c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 +--R (- 16a c + 8a b c + 3b )x + (- 32a b c + 24b c)x - 32a c +--R + +--R 2 2 +--R 24b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 3 2 2 +-+ +-+ | 2 +--R ((- 32a b c + 24b )x - 64a c + 48b c)\|a \|c \|a x + b x + c +--R + +--R 2 2 2 4 2 2 3 3 +--R (32a c - 16a b c - 6b )x + (64a b c - 48b c)x + 64a c +--R + +--R 2 2 +--R - 48b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R 2 2 +---+ +-+ | 2 +--R (- 24b c x - 48b c )\|- a \|a \|a x + b x + c +--R + +--R 3 2 2 2 +---+ +-+ +-+ +--R ((24a b c + 6b )x + 48b c x + 48b c )\|- a \|a \|c +--R / +--R +--------------+ +--R 2 2 +---+ +-+ +-+ | 2 +--R (32a b x + 64a c)\|- a \|a \|c \|a x + b x + c +--R + +--R 3 2 2 2 2 2 2 +---+ +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|- a \|a +--R Type: Expression Integer +--E + +--S 26 +cc4:=aa.2-bb2 +--R +--R (8) +--R +--------------+ +--R 2 2 | 2 +--R (- 12b c x - 24b c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R ((12a b c + 3b )x + 24b c x + 24b c )\|c +--R / +--R +--------------+ +--R 2 2 +-+ | 2 3 2 2 2 2 +--R (16a b x + 32a c)\|c \|a x + b x + c + (- 16a c - 4a b )x - 32a b c x +--R + +--R 2 2 +--R - 32a c +--R Type: Expression Integer +--E + +--S 27 14:282 Schaums and Axiom differ by a constant +dd4:=ratDenom cc4 +--R +--R +-+ +--R 3b\|c +--R (9) - ------ +--R 2 +--R 4a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.283~~~~~$\displaystyle +\int{\frac{dx}{x\sqrt{ax^2+bx+c}}}$} +$$\int{\frac{1}{x\sqrt{ax^2+bx+c}}}= +\left\{ +\begin{array}{l} +\displaystyle +-\frac{1}{\sqrt{c}} +\ln\left(\frac{2\sqrt{c}{\sqrt{ax^2+bx+c}}+bx+2c}{x}\right)\\ +\\ +\displaystyle +\frac{1}{\sqrt{-c}}\sin^{-1}\left(\frac{bx+2c}{|x|\sqrt{b^2-4ac}}\right)\\ +\\ +\displaystyle +-\frac{1}{\sqrt{c}}\sinh^{-1}\left(\frac{bx+2c}{|x|\sqrt{4ac-b^2}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (1) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 28 +bb1:=-1/sqrt(c)*log((2*sqrt(c)*sqrt(a*x^2+b*x+c)+b*x+2*c)/x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c + b x + 2c +--R log(---------------------------------) +--R x +--R (2) - -------------------------------------- +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 29 +bb2:=1/sqrt(-c)*asin((b*x+2*c)/(x*sqrt(b^2-4*a*c))) +--R +--R b x + 2c +--R asin(---------------) +--R +-----------+ +--R | 2 +--R x\|- 4a c + b +--R (3) --------------------- +--R +---+ +--R \|- c +--R Type: Expression Integer +--E + +--S 30 +bb3:=-1/sqrt(c)*asinh((b*x+2*c)/(x*sqrt(4*a*c-b^2))) +--R +--R b x + 2c +--R asinh(-------------) +--R +---------+ +--R | 2 +--R x\|4a c - b +--R (4) - -------------------- +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 31 +cc1:=aa-bb1 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c + b x + 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R / +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 32 +cc2:=aa-bb2 +--R +--R (6) +--R +--------------+ +--R +-+ | 2 +--R +---+ 2\|c \|a x + b x + c - b x - 2c +-+ b x + 2c +--R \|- c log(---------------------------------) - \|c asin(---------------) +--R x +-----------+ +--R | 2 +--R x\|- 4a c + b +--R ------------------------------------------------------------------------ +--R +---+ +-+ +--R \|- c \|c +--R Type: Expression Integer +--E + +--S 33 +cc3:=aa-bb3 +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c b x + 2c +--R log(---------------------------------) + asinh(-------------) +--R x +---------+ +--R | 2 +--R x\|4a c - b +--R (7) ------------------------------------------------------------- +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 34 +dd1:=expandLog cc1 +--R +--R (8) +--R +--------------+ +--R +-+ | 2 +--R log(2\|c \|a x + b x + c + b x + 2c) +--R + +--R +--------------+ +--R +-+ | 2 +--R log(2\|c \|a x + b x + c - b x - 2c) - 2log(x) +--R / +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 35 +ee1:=ratDenom dd1 +--R +--R (9) +--R +--------------+ +--R +-+ +-+ | 2 +--R \|c log(2\|c \|a x + b x + c + b x + 2c) +--R + +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R \|c log(2\|c \|a x + b x + c - b x - 2c) - 2log(x)\|c +--R / +--R c +--R Type: Expression Integer +--E + +--S 36 14:283 Schaums and Axiom differ by a constant +ff1:=complexNormalize ee1 +--R +--R 2 +-+ +--R log(4a c - b )\|c +--R (10) ------------------ +--R c +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.284~~~~~$\displaystyle +\int{\frac{dx}{x^2\sqrt{ax^2+bx+c}}}$} +$$\int{\frac{1}{x^2\sqrt{ax^2+bx+c}}}= +-\frac{\sqrt{ax^2+bx+c}}{cx}-\frac{b}{2c}\int{\frac{1}{x\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 37 +aa:=integrate(1/(x^2*sqrt(a*x^2+b*x+c)),x) +--R +--R (1) +--R +--------------+ +--R +-+ | 2 2 2 +--R (- 4b x\|c \|a x + b x + c + 2b x + 4b c x) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +-+ | 2 2 2 2 +--R (2b x + 8c)\|c \|a x + b x + c + (- 8a c + b )x - 6b c x - 8c +--R / +--R +--------------+ +--R 2 | 2 2 2 +-+ +--R 8c x\|a x + b x + c + (- 4b c x - 8c x)\|c +--R Type: Union(Expression Integer,...) +--E + +--S 38 +t1:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (2) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 39 +bb:=-sqrt(a*x^2+b*x+c)/(c*x)-b/(2*c)*t1 +--R +--R +--------------+ +--R +-+ | 2 +--------------+ +--R 2\|c \|a x + b x + c - b x - 2c +-+ | 2 +--R - b x log(---------------------------------) - 2\|c \|a x + b x + c +--R x +--R (3) --------------------------------------------------------------------- +--R +-+ +--R 2c x\|c +--R Type: Expression Integer +--E + +--S 40 +cc:=aa-bb +--R +--R (4) +--R +--------------+ +--R | 2 2 +-+ +--R (4b c\|a x + b x + c + (- 2b x - 4b c)\|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R | 2 2 +-+ +--R (- 4b c\|a x + b x + c + (2b x + 4b c)\|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R | 2 2 +-+ +--R - 2b c\|a x + b x + c + (b x + 2b c)\|c +--R / +--R +--------------+ +--R 2 +-+ | 2 2 3 +--R 8c \|c \|a x + b x + c - 4b c x - 8c +--R Type: Expression Integer +--E + +--S 41 +dd:=expandLog cc +--R +--R (5) +--R +--------------+ +--R | 2 2 +-+ +--R (4b c\|a x + b x + c + (- 2b x - 4b c)\|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R | 2 2 +-+ +--R (- 4b c\|a x + b x + c + (2b x + 4b c)\|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R log(2c\|a x + b x + c + (- b x - 2c)\|c ) +--R + +--R +--------------+ +--R | 2 +--R (4b c log(c) + 4b c log(2) - 2b c)\|a x + b x + c +--R + +--R 2 2 2 +-+ +--R ((- 2b x - 4b c)log(c) + (- 2b x - 4b c)log(2) + b x + 2b c)\|c +--R / +--R +--------------+ +--R 2 +-+ | 2 2 3 +--R 8c \|c \|a x + b x + c - 4b c x - 8c +--R Type: Expression Integer +--E + +--S 42 +ee:=ratDenom dd +--R +--R (6) +--R +--------------+ +--R +-+ +-+ | 2 +--R 2b\|c log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R +-+ | 2 +-+ +--R - 2b\|c log(2c\|a x + b x + c + (- b x - 2c)\|c ) +--R + +--R +-+ +--R (2b log(c) + 2b log(2) - b)\|c +--R / +--R 2 +--R 4c +--R Type: Expression Integer +--E + +--S 43 14:284 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R +-+ +--R (b log(c) + 2b log(2) - b)\|c +--R (7) ------------------------------ +--R 2 +--R 4c +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.285~~~~~$\displaystyle +\int{\sqrt{ax^2+bx+c}}~dx$} +$$\int{\sqrt{ax^2+bx+c}}= +\frac{(2ax+b)\sqrt{ax^2+bx+c}}{4a}+ +\frac{4ac-b^2}{8a}\int{\frac{1}{\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(sqrt(a*x^2+b*x+c),x) +--R +--R +--R (1) +--R [ +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 4b )x + 32a c - 8b c)\|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +--R (- 16a c + b )x + (- 32a b c + 8b c)x - 32a c + 8b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 3 2 2 2 +-+ +--R ((- 16a c - 4a b )x + (- 40a b c - 2b )x + (- 32a c - 8b c)x)\|a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 +--R 16a b x + (32a c + 24a b )x + (56a b c + 6b )x +--R + +--R 2 2 +--R (32a c + 8b c)x +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +--R (32a b x + 64a c)\|a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|a +--R , +--R +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 4b )x + 32a c - 8b c)\|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +--R (- 16a c + b )x + (- 32a b c + 8b c)x - 32a c + 8b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 2 2 3 3 2 2 2 +---+ +--R ((- 8a c - 2a b )x + (- 20a b c - b )x + (- 16a c - 4b c)x)\|- a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 2 2 +--R (8a b x + (16a c + 12a b )x + (28a b c + 3b )x + (16a c + 4b c)x) +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 +--R (16a b x + 32a c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +---+ +--R ((- 16a c - 4a b )x - 32a b c x - 32a c )\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 45 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 46 +bb1:=((2*a*x+b)*sqrt(a*x^2+b*x+c))/(4*a)+(4*a*c-b^2)/(8*a)*t1.1 +--R +--R (3) +--R 2 +--R (4a c - b ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 +--R (4a x + 2b)\|a \|a x + b x + c +--R / +--R +-+ +--R 8a\|a +--R Type: Expression Integer +--E + +--S 47 +bb2:=((2*a*x+b)*sqrt(a*x^2+b*x+c))/(4*a)+(4*a*c-b^2)/(8*a)*t1.2 +--R +--R (4) +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R 2 \|- a \|a x + b x + c - \|- a \|c +--R (4a c - b )atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ | 2 +--R (2a x + b)\|- a \|a x + b x + c +--R / +--R +---+ +--R 4a\|- a +--R Type: Expression Integer +--E + +--S 48 +cc1:=aa.1-bb1 +--R +--R (5) +--R +--------------+ +--R 2 2 | 2 +--R (4b c x + 8b c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R ((- 4a b c - b )x - 8b c x - 8b c )\|c +--R / +--R +--------------+ +--R +-+ | 2 2 2 2 +--R (16a b x + 32a c)\|c \|a x + b x + c + (- 16a c - 4a b )x - 32a b c x +--R + +--R 2 +--R - 32a c +--R Type: Expression Integer +--E + +--S 49 +cc2:=aa.2-bb1 +--R +--R (6) +--R +--------------+ +--R 3 2 2 +---+ +-+ | 2 +--R ((- 16a b c + 4b )x - 32a c + 8b c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +---+ +--R ((16a c - b )x + (32a b c - 8b c)x + 32a c - 8b c )\|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 3 2 2 +-+ +-+ | 2 +--R ((32a b c - 8b )x + 64a c - 16b c)\|a \|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +-+ +--R ((- 32a c + 2b )x + (- 64a b c + 16b c)x - 64a c + 16b c )\|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R 2 2 +---+ +-+ | 2 +--R (8b c x + 16b c )\|- a \|a \|a x + b x + c +--R + +--R 3 2 2 2 +---+ +-+ +-+ +--R ((- 8a b c - 2b )x - 16b c x - 16b c )\|- a \|a \|c +--R / +--R +--------------+ +--R +---+ +-+ +-+ | 2 +--R (32a b x + 64a c)\|- a \|a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +---+ +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|- a \|a +--R Type: Expression Integer +--E + +--S 50 +cc3:=aa.1-bb2 +--R +--R (7) +--R +--------------+ +--R 3 2 2 +---+ +-+ | 2 +--R ((16a b c - 4b )x + 32a c - 8b c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +---+ +--R ((- 16a c + b )x + (- 32a b c + 8b c)x - 32a c + 8b c )\|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 3 2 2 +-+ +-+ | 2 +--R ((- 32a b c + 8b )x - 64a c + 16b c)\|a \|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +-+ +--R ((32a c - 2b )x + (64a b c - 16b c)x + 64a c - 16b c )\|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R 2 2 +---+ +-+ | 2 +--R (8b c x + 16b c )\|- a \|a \|a x + b x + c +--R + +--R 3 2 2 2 +---+ +-+ +-+ +--R ((- 8a b c - 2b )x - 16b c x - 16b c )\|- a \|a \|c +--R / +--R +--------------+ +--R +---+ +-+ +-+ | 2 +--R (32a b x + 64a c)\|- a \|a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +---+ +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|- a \|a +--R Type: Expression Integer +--E + +--S 51 +cc4:=aa.2-bb2 +--R +--R (8) +--R +--------------+ +--R 2 2 | 2 +--R (4b c x + 8b c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R ((- 4a b c - b )x - 8b c x - 8b c )\|c +--R / +--R +--------------+ +--R +-+ | 2 2 2 2 +--R (16a b x + 32a c)\|c \|a x + b x + c + (- 16a c - 4a b )x - 32a b c x +--R + +--R 2 +--R - 32a c +--R Type: Expression Integer +--E + +--S 52 14:285 Schaums and Axiom differ by a constant +dd4:=ratDenom cc4 +--R +--R +-+ +--R b\|c +--R (9) ----- +--R 4a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.286~~~~~$\displaystyle +\int{x\sqrt{ax^2+bx+c}}~dx$} +$$ +\begin{array}{rl} +\displaystyle +\int{x\sqrt{ax^2+bx+c}}=&\displaystyle\frac{(ax^2+bx+c)^{3/2}}{3a}\\ +&\\ +&\displaystyle-\frac{b(2ax+b)}{8a^2}\sqrt{ax^2+bx+c}\\ +&\\ +&\displaystyle-\frac{b(4ac-b^2)}{16a^2}\int{\frac{1}{\sqrt{ax^2+bx+c}}} +\end{array} +$$ +<<*>>= +)clear all + +--S 53 +aa:=integrate(x*sqrt(a*x^2+b*x+c),x) +--R +--R +--R (1) +--R [ +--R 2 2 3 5 2 2 2 4 +--R (96a b c + 48a b c - 18b )x + (384a b c - 96b c)x +--R + +--R 3 3 2 +--R 384a b c - 96b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 +--R (- 144a b c + 24a b c + 3b )x +--R + +--R 2 3 3 2 5 2 2 3 4 2 +--R (- 288a b c - 144a b c + 54b c)x + (- 576a b c + 144b c )x +--R + +--R 4 3 3 +--R - 384a b c + 96b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 3 2 3 5 3 2 2 2 4 4 +--R (- 192a b c - 16a b )x + (- 384a c - 336a b c - 4a b )x +--R + +--R 2 2 3 5 3 +--R (- 1056a b c - 16a b c + 6b )x +--R + +--R 2 3 2 2 4 2 3 3 2 +--R (- 768a c - 288a b c + 72b c)x + (- 384a b c + 96b c )x +--R * +--R +--------------+ +--R +-+ | 2 +--R \|a \|a x + b x + c +--R + +--R 4 3 2 6 3 2 3 5 +--R (128a c + 96a b )x + (672a b c + 120a b )x +--R + +--R 3 2 2 2 4 4 2 2 3 5 3 +--R (768a c + 816a b c - 12a b )x + (1632a b c + 64a b c - 30b )x +--R + +--R 2 3 2 2 4 2 3 3 2 +--R (768a c + 480a b c - 120b c)x + (384a b c - 96b c )x +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R 3 2 2 2 2 2 2 +-+ +-+ +--R ((384a c + 288a b )x + 1536a b c x + 1536a c )\|a \|c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 +--R (- 576a b c - 48a b )x + (- 1152a c - 864a b c)x - 2304a b c x +--R + +--R 2 3 +--R - 1536a c +--R * +--R +-+ +--R \|a +--R , +--R +--R 2 2 3 5 2 2 2 4 +--R (- 96a b c - 48a b c + 18b )x + (- 384a b c + 96b c)x +--R + +--R 3 3 2 +--R - 384a b c + 96b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 2 3 3 2 5 2 +--R (144a b c - 24a b c - 3b )x + (288a b c + 144a b c - 54b c)x +--R + +--R 2 3 4 2 4 3 3 +--R (576a b c - 144b c )x + 384a b c - 96b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 3 2 3 5 3 2 2 2 4 4 +--R (- 96a b c - 8a b )x + (- 192a c - 168a b c - 2a b )x +--R + +--R 2 2 3 5 3 2 3 2 2 4 2 +--R (- 528a b c - 8a b c + 3b )x + (- 384a c - 144a b c + 36b c)x +--R + +--R 3 3 2 +--R (- 192a b c + 48b c )x +--R * +--R +--------------+ +--R +---+ | 2 +--R \|- a \|a x + b x + c +--R + +--R 4 3 2 6 3 2 3 5 +--R (64a c + 48a b )x + (336a b c + 60a b )x +--R + +--R 3 2 2 2 4 4 2 2 3 5 3 +--R (384a c + 408a b c - 6a b )x + (816a b c + 32a b c - 15b )x +--R + +--R 2 3 2 2 4 2 3 3 2 +--R (384a c + 240a b c - 60b c)x + (192a b c - 48b c )x +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R 3 2 2 2 2 2 2 +---+ +-+ +--R ((192a c + 144a b )x + 768a b c x + 768a c )\|- a \|c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 +--R (- 288a b c - 24a b )x + (- 576a c - 432a b c)x - 1152a b c x +--R + +--R 2 3 +--R - 768a c +--R * +--R +---+ +--R \|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 54 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 55 +bb1:=(a*x^2+b*x+c)^(3/2)/(3*a)-(b*(2*a*x+b))/(8*a^2)*sqrt(a*x^2+b*x+c)-(b*(4*a*c-b^2))/(16*a^2)*t1.1 +--R +--R (3) +--R 3 +--R (- 12a b c + 3b ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 2 2 2 +-+ | 2 +--R (16a x + 4a b x + 16a c - 6b )\|a \|a x + b x + c +--R / +--R 2 +-+ +--R 48a \|a +--R Type: Expression Integer +--E + +--S 56 +bb2:=(a*x^2+b*x+c)^(3/2)/(3*a)-(b*(2*a*x+b))/(8*a^2)*sqrt(a*x^2+b*x+c)-(b*(4*a*c-b^2))/(16*a^2)*t1.2 +--R +--R (4) +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R 3 \|- a \|a x + b x + c - \|- a \|c +--R (- 12a b c + 3b )atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R 2 2 2 +---+ | 2 +--R (8a x + 2a b x + 8a c - 3b )\|- a \|a x + b x + c +--R / +--R 2 +---+ +--R 24a \|- a +--R Type: Expression Integer +--E + +--S 57 +cc1:=aa.1-bb1 +--R +--R (5) +--R 2 2 3 5 2 2 2 4 3 +--R (96a b c + 48a b c - 18b )x + (384a b c - 96b c)x + 384a b c +--R + +--R 3 2 +--R - 96b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 2 3 3 2 5 2 +--R (- 144a b c + 24a b c + 3b )x + (- 288a b c - 144a b c + 54b c)x +--R + +--R 2 3 4 2 4 3 3 +--R (- 576a b c + 144b c )x - 384a b c + 96b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 5 2 2 2 4 3 +--R (96a b c + 48a b c - 18b )x + (384a b c - 96b c)x + 384a b c +--R + +--R 3 2 +--R - 96b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 2 3 3 2 5 2 +--R (- 144a b c + 24a b c + 3b )x + (- 288a b c - 144a b c + 54b c)x +--R + +--R 2 3 4 2 4 3 3 +--R (- 576a b c + 144b c )x - 384a b c + 96b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 3 2 2 4 2 3 3 2 4 +--R (128a c + 48a b c - 36b c)x + (512a b c - 192b c )x + 512a c +--R + +--R 2 3 +--R - 192b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|a \|a x + b x + c +--R + +--R 2 2 3 5 3 2 3 2 2 4 2 +--R (- 192a b c + 56a b c + 6b )x + (- 384a c - 144a b c + 108b c)x +--R + +--R 3 3 2 4 2 3 +--R (- 768a b c + 288b c )x - 512a c + 192b c +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R +--------------+ +--R 3 2 2 2 2 2 2 +-+ +-+ | 2 +--R ((384a c + 288a b )x + 1536a b c x + 1536a c )\|a \|c \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 +--R (- 576a b c - 48a b )x + (- 1152a c - 864a b c)x - 2304a b c x +--R + +--R 2 3 +--R - 1536a c +--R * +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 58 +cc2:=aa.2-bb1 +--R +--R (6) +--R 2 2 3 5 2 2 2 4 3 +--R (96a b c + 48a b c - 18b )x + (384a b c - 96b c)x + 384a b c +--R + +--R 3 2 +--R - 96b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 +--R (- 144a b c + 24a b c + 3b )x +--R + +--R 2 3 3 2 5 2 2 3 4 2 +--R (- 288a b c - 144a b c + 54b c)x + (- 576a b c + 144b c )x +--R + +--R 4 3 3 +--R - 384a b c + 96b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 5 2 2 2 4 +--R (- 192a b c - 96a b c + 36b )x + (- 768a b c + 192b c)x +--R + +--R 3 3 2 +--R - 768a b c + 192b c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 +--R (288a b c - 48a b c - 6b )x +--R + +--R 2 3 3 2 5 2 2 3 4 2 +--R (576a b c + 288a b c - 108b c)x + (1152a b c - 288b c )x +--R + +--R 4 3 3 +--R 768a b c - 192b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 2 3 2 2 4 2 3 3 2 4 +--R (128a c + 48a b c - 36b c)x + (512a b c - 192b c )x + 512a c +--R + +--R 2 3 +--R - 192b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|a \|a x + b x + c +--R + +--R 2 2 3 5 3 2 3 2 2 4 2 +--R (- 192a b c + 56a b c + 6b )x + (- 384a c - 144a b c + 108b c)x +--R + +--R 3 3 2 4 2 3 +--R (- 768a b c + 288b c )x - 512a c + 192b c +--R * +--R +---+ +-+ +-+ +--R \|- a \|a \|c +--R / +--R 3 2 2 2 2 2 2 +---+ +-+ +-+ +--R ((384a c + 288a b )x + 1536a b c x + 1536a c )\|- a \|a \|c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 +--R (- 576a b c - 48a b )x + (- 1152a c - 864a b c)x - 2304a b c x +--R + +--R 2 3 +--R - 1536a c +--R * +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 59 +cc3:=aa.1-bb2 +--R +--R (7) +--R 2 2 3 5 2 2 2 4 3 +--R (96a b c + 48a b c - 18b )x + (384a b c - 96b c)x + 384a b c +--R + +--R 3 2 +--R - 96b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 +--R (- 144a b c + 24a b c + 3b )x +--R + +--R 2 3 3 2 5 2 2 3 4 2 +--R (- 288a b c - 144a b c + 54b c)x + (- 576a b c + 144b c )x +--R + +--R 4 3 3 +--R - 384a b c + 96b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 5 2 2 2 4 +--R (192a b c + 96a b c - 36b )x + (768a b c - 192b c)x +--R + +--R 3 3 2 +--R 768a b c - 192b c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 2 2 2 4 6 3 +--R (- 288a b c + 48a b c + 6b )x +--R + +--R 2 3 3 2 5 2 2 3 4 2 +--R (- 576a b c - 288a b c + 108b c)x + (- 1152a b c + 288b c )x +--R + +--R 4 3 3 +--R - 768a b c + 192b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 2 3 2 2 4 2 3 3 2 4 +--R (128a c + 48a b c - 36b c)x + (512a b c - 192b c )x + 512a c +--R + +--R 2 3 +--R - 192b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|a \|a x + b x + c +--R + +--R 2 2 3 5 3 2 3 2 2 4 2 +--R (- 192a b c + 56a b c + 6b )x + (- 384a c - 144a b c + 108b c)x +--R + +--R 3 3 2 4 2 3 +--R (- 768a b c + 288b c )x - 512a c + 192b c +--R * +--R +---+ +-+ +-+ +--R \|- a \|a \|c +--R / +--R 3 2 2 2 2 2 2 +---+ +-+ +-+ +--R ((384a c + 288a b )x + 1536a b c x + 1536a c )\|- a \|a \|c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 +--R (- 576a b c - 48a b )x + (- 1152a c - 864a b c)x - 2304a b c x +--R + +--R 2 3 +--R - 1536a c +--R * +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 60 +cc4:=aa.2-bb2 +--R +--R (8) +--R 2 3 2 2 4 2 3 3 2 4 +--R (64a c + 24a b c - 18b c)x + (256a b c - 96b c )x + 256a c +--R + +--R 2 3 +--R - 96b c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 2 3 5 3 2 3 2 2 4 2 +--R (- 96a b c + 28a b c + 3b )x + (- 192a c - 72a b c + 54b c)x +--R + +--R 3 3 2 4 2 3 +--R (- 384a b c + 144b c )x - 256a c + 96b c +--R * +--R +-+ +--R \|c +--R / +--R +--------------+ +--R 3 2 2 2 2 2 2 +-+ | 2 +--R ((192a c + 144a b )x + 768a b c x + 768a c )\|c \|a x + b x + c +--R + +--R 3 2 3 3 3 2 2 2 2 2 2 2 3 +--R (- 288a b c - 24a b )x + (- 576a c - 432a b c)x - 1152a b c x - 768a c +--R Type: Expression Integer +--E + +--S 61 14:286 Schaums and Axiom differ by a constant +dd4:=ratDenom cc4 +--R +--R 2 +-+ +--R (8a c - 3b )\|c +--R (9) ---------------- +--R 2 +--R 24a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.287~~~~~$\displaystyle +\int{x^2\sqrt{ax^2+bx+c}}~dx$} +$$\int{x^2\sqrt{ax^2+bx+c}}= +\frac{6ax-5b}{24a^2}(ax^2+bx+c)^{3/2}+ +\frac{5b^2-4ac}{16a^2}\int{\sqrt{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 62 +aa:=integrate(x^2*sqrt(a*x^2+b*x+c),x) +--R +--R +--R (1) +--R [ +--R 3 3 2 3 2 5 7 3 +--R (1536a b c - 1920a b c - 96a b c + 120b )x +--R + +--R 3 4 2 2 3 4 2 6 2 +--R (3072a c - 768a b c - 4800a b c + 1200b c)x +--R + +--R 2 4 3 3 5 2 2 5 2 4 +--R (9216a b c - 13824a b c + 2880b c )x + 6144a c - 9216a b c +--R + +--R 4 3 +--R 1920b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 4 4 2 4 2 6 8 4 +--R (- 768a c + 1440a b c - 288a b c - 15b )x +--R + +--R 3 4 2 3 3 5 2 7 3 +--R (- 6144a b c + 7680a b c + 384a b c - 480b c)x +--R + +--R 3 5 2 2 4 4 3 6 2 2 +--R (- 6144a c + 1536a b c + 9600a b c - 2400b c )x +--R + +--R 2 5 3 4 5 3 2 6 2 5 +--R (- 12288a b c + 18432a b c - 3840b c )x - 6144a c + 9216a b c +--R + +--R 4 4 +--R - 1920b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 5 2 4 2 3 4 7 +--R (- 1536a c - 2304a b c - 96a b )x +--R + +--R 4 2 3 3 2 5 6 +--R (- 12544a b c - 3456a b c - 16a b )x +--R + +--R 4 3 3 2 2 2 4 6 5 +--R (- 13056a c - 18240a b c - 80a b c + 20a b )x +--R + +--R 3 3 2 3 2 5 7 4 +--R (- 31104a b c + 480a b c + 24a b c - 30b )x +--R + +--R 3 4 2 2 3 4 2 6 3 +--R (- 18432a c + 768a b c + 2816a b c - 720b c)x +--R + +--R 2 4 3 3 5 2 2 +--R (- 7680a b c + 11520a b c - 2400b c )x +--R + +--R 2 5 2 4 4 3 +--R (- 6144a c + 9216a b c - 1920b c )x +--R * +--R +--------------+ +--R +-+ | 2 +--R \|a \|a x + b x + c +--R + +--R 5 4 3 8 5 2 4 2 3 4 7 +--R (3072a b c + 768a b )x + (6144a c + 11264a b c + 896a b )x +--R + +--R 4 2 3 3 2 5 6 +--R (30208a b c + 9984a b c - 32a b )x +--R + +--R 4 3 3 2 2 2 4 6 5 +--R (21504a c + 31488a b c - 320a b c + 80a b )x +--R + +--R 3 3 2 3 2 5 7 4 +--R (42624a b c - 4896a b c + 152a b c + 210b )x +--R + +--R 3 4 2 2 3 4 2 6 3 +--R (21504a c - 2304a b c - 6464a b c + 1680b c)x +--R + +--R 2 4 3 3 5 2 2 +--R (10752a b c - 16128a b c + 3360b c )x +--R + +--R 2 5 2 4 4 3 +--R (6144a c - 9216a b c + 1920b c )x +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R 4 3 3 3 4 2 3 2 2 +--R (12288a b c + 3072a b )x + (24576a c + 30720a b c)x +--R + +--R 3 2 3 3 +--R 73728a b c x + 49152a c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 5 2 4 2 3 4 4 +--R (- 6144a c - 9216a b c - 384a b )x +--R + +--R 4 2 3 3 3 4 3 3 2 2 2 +--R (- 49152a b c - 12288a b c)x + (- 49152a c - 61440a b c )x +--R + +--R 3 3 3 4 +--R - 98304a b c x - 49152a c +--R * +--R +-+ +--R \|a +--R , +--R +--R 3 3 2 3 2 5 7 3 +--R (- 1536a b c + 1920a b c + 96a b c - 120b )x +--R + +--R 3 4 2 2 3 4 2 6 2 +--R (- 3072a c + 768a b c + 4800a b c - 1200b c)x +--R + +--R 2 4 3 3 5 2 2 5 +--R (- 9216a b c + 13824a b c - 2880b c )x - 6144a c +--R + +--R 2 4 4 3 +--R 9216a b c - 1920b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 4 4 2 4 2 6 8 4 +--R (768a c - 1440a b c + 288a b c + 15b )x +--R + +--R 3 4 2 3 3 5 2 7 3 +--R (6144a b c - 7680a b c - 384a b c + 480b c)x +--R + +--R 3 5 2 2 4 4 3 6 2 2 +--R (6144a c - 1536a b c - 9600a b c + 2400b c )x +--R + +--R 2 5 3 4 5 3 2 6 2 5 +--R (12288a b c - 18432a b c + 3840b c )x + 6144a c - 9216a b c +--R + +--R 4 4 +--R 1920b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 5 2 4 2 3 4 7 +--R (- 768a c - 1152a b c - 48a b )x +--R + +--R 4 2 3 3 2 5 6 +--R (- 6272a b c - 1728a b c - 8a b )x +--R + +--R 4 3 3 2 2 2 4 6 5 +--R (- 6528a c - 9120a b c - 40a b c + 10a b )x +--R + +--R 3 3 2 3 2 5 7 4 +--R (- 15552a b c + 240a b c + 12a b c - 15b )x +--R + +--R 3 4 2 2 3 4 2 6 3 +--R (- 9216a c + 384a b c + 1408a b c - 360b c)x +--R + +--R 2 4 3 3 5 2 2 +--R (- 3840a b c + 5760a b c - 1200b c )x +--R + +--R 2 5 2 4 4 3 +--R (- 3072a c + 4608a b c - 960b c )x +--R * +--R +--------------+ +--R +---+ | 2 +--R \|- a \|a x + b x + c +--R + +--R 5 4 3 8 5 2 4 2 3 4 7 +--R (1536a b c + 384a b )x + (3072a c + 5632a b c + 448a b )x +--R + +--R 4 2 3 3 2 5 6 +--R (15104a b c + 4992a b c - 16a b )x +--R + +--R 4 3 3 2 2 2 4 6 5 +--R (10752a c + 15744a b c - 160a b c + 40a b )x +--R + +--R 3 3 2 3 2 5 7 4 +--R (21312a b c - 2448a b c + 76a b c + 105b )x +--R + +--R 3 4 2 2 3 4 2 6 3 +--R (10752a c - 1152a b c - 3232a b c + 840b c)x +--R + +--R 2 4 3 3 5 2 2 +--R (5376a b c - 8064a b c + 1680b c )x +--R + +--R 2 5 2 4 4 3 +--R (3072a c - 4608a b c + 960b c )x +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R 4 3 3 3 4 2 3 2 2 +--R (6144a b c + 1536a b )x + (12288a c + 15360a b c)x +--R + +--R 3 2 3 3 +--R 36864a b c x + 24576a c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R + +--R 5 2 4 2 3 4 4 +--R (- 3072a c - 4608a b c - 192a b )x +--R + +--R 4 2 3 3 3 4 3 3 2 2 2 +--R (- 24576a b c - 6144a b c)x + (- 24576a c - 30720a b c )x +--R + +--R 3 3 3 4 +--R - 49152a b c x - 24576a c +--R * +--R +---+ +--R \|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 63 +t1:=integrate(sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 4b )x + 32a c - 8b c)\|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +--R (- 16a c + b )x + (- 32a b c + 8b c)x - 32a c + 8b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 2 3 3 2 2 2 +-+ +--R ((- 16a c - 4a b )x + (- 40a b c - 2b )x + (- 32a c - 8b c)x)\|a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 +--R 16a b x + (32a c + 24a b )x + (56a b c + 6b )x +--R + +--R 2 2 +--R (32a c + 8b c)x +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +--R (32a b x + 64a c)\|a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +-+ +--R ((- 32a c - 8a b )x - 64a b c x - 64a c )\|a +--R , +--R +--R +--------------+ +--R 3 2 2 +-+ | 2 +--R ((16a b c - 4b )x + 32a c - 8b c)\|c \|a x + b x + c +--R + +--R 2 2 4 2 2 3 3 2 2 +--R (- 16a c + b )x + (- 32a b c + 8b c)x - 32a c + 8b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 2 2 3 3 2 2 2 +---+ +--R ((- 8a c - 2a b )x + (- 20a b c - b )x + (- 16a c - 4b c)x)\|- a +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 2 3 3 2 2 2 +--R (8a b x + (16a c + 12a b )x + (28a b c + 3b )x + (16a c + 4b c)x) +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 +--R (16a b x + 32a c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 2 2 +---+ +--R ((- 16a c - 4a b )x - 32a b c x - 32a c )\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 64 +bb1:=(6*a*x-5*b)/(24*a^2)*(a*x^2+b*x+c)^(3/2)+(5*b^2-4*a*c)/(16*a^2)*t1.1 +--R +--R (3) +--R 2 2 3 5 2 3 2 2 4 +--R ((- 192a b c + 288a b c - 60b )x - 384a c + 576a b c - 120b c) +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 3 3 2 2 2 4 6 2 +--R (192a c - 240a b c - 12a b c + 15b )x +--R + +--R 2 3 3 2 5 2 4 2 3 4 2 +--R (384a b c - 576a b c + 120b c)x + 384a c - 576a b c + 120b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 4 3 2 5 3 2 3 4 +--R (- 384a c - 96a b )x + (- 832a b c - 16a b )x +--R + +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (- 960a c - 96a b c + 20a b )x + (- 96a b c + 144a b c - 30b )x +--R + +--R 2 3 2 2 4 3 +--R (- 384a c + 896a b c - 120b c)x + 640a b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|a \|a x + b x + c +--R + +--R 4 6 4 3 2 5 3 2 3 4 +--R 384a b x + (768a c + 448a b )x + (1472a b c - 16a b )x +--R + +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (1152a c - 192a b c + 40a b )x + (- 32a b c - 512a b c + 90b )x +--R + +--R 2 3 2 2 4 3 +--R (384a c - 1216a b c + 120b c)x - 640a b c +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R +--------------+ +--R 3 3 +-+ +-+ | 2 +--R (1536a b x + 3072a c)\|a \|c \|a x + b x + c +--R + +--R 4 3 2 2 3 3 2 +-+ +--R ((- 1536a c - 384a b )x - 3072a b c x - 3072a c )\|a +--R Type: Expression Integer +--E + +--S 65 +bb2:=(6*a*x-5*b)/(24*a^2)*(a*x^2+b*x+c)^(3/2)+(5*b^2-4*a*c)/(16*a^2)*t1.2 +--R +--R (4) +--R 2 2 3 5 2 3 2 2 4 +--R ((- 192a b c + 288a b c - 60b )x - 384a c + 576a b c - 120b c) +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 3 3 2 2 2 4 6 2 +--R (192a c - 240a b c - 12a b c + 15b )x +--R + +--R 2 3 3 2 5 2 4 2 3 4 2 +--R (384a b c - 576a b c + 120b c)x + 384a c - 576a b c + 120b c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 4 3 2 5 3 2 3 4 +--R (- 192a c - 48a b )x + (- 416a b c - 8a b )x +--R + +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (- 480a c - 48a b c + 10a b )x + (- 48a b c + 72a b c - 15b )x +--R + +--R 2 3 2 2 4 3 +--R (- 192a c + 448a b c - 60b c)x + 320a b c +--R * +--R +--------------+ +--R +---+ | 2 +--R \|- a \|a x + b x + c +--R + +--R 4 6 4 3 2 5 3 2 3 4 +--R 192a b x + (384a c + 224a b )x + (736a b c - 8a b )x +--R + +--R 3 2 2 2 4 3 2 2 3 5 2 +--R (576a c - 96a b c + 20a b )x + (- 16a b c - 256a b c + 45b )x +--R + +--R 2 3 2 2 4 3 +--R (192a c - 608a b c + 60b c)x - 320a b c +--R * +--R +---+ +-+ +--R \|- a \|c +--R / +--R +--------------+ +--R 3 3 +---+ +-+ | 2 +--R (768a b x + 1536a c)\|- a \|c \|a x + b x + c +--R + +--R 4 3 2 2 3 3 2 +---+ +--R ((- 768a c - 192a b )x - 1536a b c x - 1536a c )\|- a +--R Type: Expression Integer +--E + +--S 66 +cc1:=aa.1-bb1 +--R +--R (5) +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (9216a b c - 6144a b c - 8064a b c + 1536a b c + 180b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (18432a c + 36864a b c - 77568a b c + 4200b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (147456a b c - 135168a b c - 82944a b c + 26880b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (98304a c + 73728a b c - 301056a b c + 69120b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (245760a b c - 368640a b c + 76800b c )x + 98304a c +--R + +--R 2 6 4 5 +--R - 147456a b c + 30720b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 8 +--R - 3072a c - 6912a b c + 13440a b c + 672a b c - 828a b c +--R + +--R 10 +--R - 15b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 9 5 +--R (- 55296a b c + 36864a b c + 48384a b c - 9216a b c - 1080b c)x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (- 55296a c - 110592a b c + 232704a b c - 12600b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (- 294912a b c + 270336a b c + 165888a b c - 53760b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (- 147456a c - 110592a b c + 451584a b c - 103680b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (- 294912a b c + 442368a b c - 92160b c )x - 98304a c +--R + +--R 2 7 4 6 +--R 147456a b c - 30720b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (9216a b c - 6144a b c - 8064a b c + 1536a b c + 180b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (18432a c + 36864a b c - 77568a b c + 4200b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (147456a b c - 135168a b c - 82944a b c + 26880b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (98304a c + 73728a b c - 301056a b c + 69120b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (245760a b c - 368640a b c + 76800b c )x + 98304a c +--R + +--R 2 6 4 5 +--R - 147456a b c + 30720b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 8 +--R - 3072a c - 6912a b c + 13440a b c + 672a b c - 828a b c +--R + +--R 10 +--R - 15b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 9 5 +--R (- 55296a b c + 36864a b c + 48384a b c - 9216a b c - 1080b c)x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (- 55296a c - 110592a b c + 232704a b c - 12600b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (- 294912a b c + 270336a b c + 165888a b c - 53760b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (- 147456a c - 110592a b c + 451584a b c - 103680b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (- 294912a b c + 442368a b c - 92160b c )x - 98304a c +--R + +--R 2 7 4 6 +--R 147456a b c - 30720b c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (- 15360a b c - 12800a b c - 960a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (- 30720a b c - 107520a b c - 22400a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (- 245760a b c - 143360a b c )x + (- 163840a b c - 368640a b c )x +--R + +--R 2 6 7 +--R - 409600a b c x - 163840a b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|a \|a x + b x + c +--R + +--R 4 4 3 3 3 2 5 2 7 6 +--R (5120a b c + 19200a b c + 4800a b c + 80a b c)x +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (92160a b c + 76800a b c + 5760a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (92160a b c + 322560a b c + 67200a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (491520a b c + 286720a b c )x + (245760a b c + 552960a b c )x +--R + +--R 2 6 7 +--R 491520a b c x + 163840a b c +--R * +--R +-+ +-+ +--R \|a \|c +--R / +--R 5 2 4 3 3 5 5 +--R (73728a b c + 61440a b c + 4608a b )x +--R + +--R 5 3 4 2 2 3 4 4 +--R (147456a c + 516096a b c + 107520a b c)x +--R + +--R 4 3 3 3 2 3 4 4 3 2 3 2 +--R (1179648a b c + 688128a b c )x + (786432a c + 1769472a b c )x +--R + +--R 3 4 3 5 +--R 1966080a b c x + 786432a c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 6 3 5 2 2 4 4 3 6 6 +--R (- 24576a c - 92160a b c - 23040a b c - 384a b )x +--R + +--R 5 3 4 3 2 3 5 5 +--R (- 442368a b c - 368640a b c - 27648a b c)x +--R + +--R 5 4 4 2 3 3 4 2 4 +--R (- 442368a c - 1548288a b c - 322560a b c )x +--R + +--R 4 4 3 3 3 3 +--R (- 2359296a b c - 1376256a b c )x +--R + +--R 4 5 3 2 4 2 3 5 3 6 +--R (- 1179648a c - 2654208a b c )x - 2359296a b c x - 786432a c +--R * +--R +-+ +--R \|a +--R Type: Expression Integer +--E + +--S 67 +cc2:=aa.2-bb1 +--R +--R (6) +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (9216a b c - 6144a b c - 8064a b c + 1536a b c + 180b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (18432a c + 36864a b c - 77568a b c + 4200b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (147456a b c - 135168a b c - 82944a b c + 26880b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (98304a c + 73728a b c - 301056a b c + 69120b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (245760a b c - 368640a b c + 76800b c )x + 98304a c +--R + +--R 2 6 4 5 +--R - 147456a b c + 30720b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 8 +--R - 3072a c - 6912a b c + 13440a b c + 672a b c - 828a b c +--R + +--R 10 +--R - 15b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 +--R - 55296a b c + 36864a b c + 48384a b c - 9216a b c +--R + +--R 9 +--R - 1080b c +--R * +--R 5 +--R x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (- 55296a c - 110592a b c + 232704a b c - 12600b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (- 294912a b c + 270336a b c + 165888a b c - 53760b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (- 147456a c - 110592a b c + 451584a b c - 103680b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (- 294912a b c + 442368a b c - 92160b c )x - 98304a c +--R + +--R 2 7 4 6 +--R 147456a b c - 30720b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (- 18432a b c + 12288a b c + 16128a b c - 3072a b c - 360b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (- 36864a c - 73728a b c + 155136a b c - 8400b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (- 294912a b c + 270336a b c + 165888a b c - 53760b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (- 196608a c - 147456a b c + 602112a b c - 138240b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (- 491520a b c + 737280a b c - 153600b c )x - 196608a c +--R + +--R 2 6 4 5 +--R 294912a b c - 61440b c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 8 +--R 6144a c + 13824a b c - 26880a b c - 1344a b c + 1656a b c +--R + +--R 10 +--R 30b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 +--R 110592a b c - 73728a b c - 96768a b c + 18432a b c +--R + +--R 9 +--R 2160b c +--R * +--R 5 +--R x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (110592a c + 221184a b c - 465408a b c + 25200b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (589824a b c - 540672a b c - 331776a b c + 107520b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (294912a c + 221184a b c - 903168a b c + 207360b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (589824a b c - 884736a b c + 184320b c )x + 196608a c +--R + +--R 2 7 4 6 +--R - 294912a b c + 61440b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (- 15360a b c - 12800a b c - 960a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (- 30720a b c - 107520a b c - 22400a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (- 245760a b c - 143360a b c )x + (- 163840a b c - 368640a b c )x +--R + +--R 2 6 7 +--R - 409600a b c x - 163840a b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|a \|a x + b x + c +--R + +--R 4 4 3 3 3 2 5 2 7 6 +--R (5120a b c + 19200a b c + 4800a b c + 80a b c)x +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (92160a b c + 76800a b c + 5760a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (92160a b c + 322560a b c + 67200a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (491520a b c + 286720a b c )x + (245760a b c + 552960a b c )x +--R + +--R 2 6 7 +--R 491520a b c x + 163840a b c +--R * +--R +---+ +-+ +-+ +--R \|- a \|a \|c +--R / +--R 5 2 4 3 3 5 5 +--R (73728a b c + 61440a b c + 4608a b )x +--R + +--R 5 3 4 2 2 3 4 4 +--R (147456a c + 516096a b c + 107520a b c)x +--R + +--R 4 3 3 3 2 3 4 4 3 2 3 2 +--R (1179648a b c + 688128a b c )x + (786432a c + 1769472a b c )x +--R + +--R 3 4 3 5 +--R 1966080a b c x + 786432a c +--R * +--R +--------------+ +--R +---+ +-+ +-+ | 2 +--R \|- a \|a \|c \|a x + b x + c +--R + +--R 6 3 5 2 2 4 4 3 6 6 +--R (- 24576a c - 92160a b c - 23040a b c - 384a b )x +--R + +--R 5 3 4 3 2 3 5 5 +--R (- 442368a b c - 368640a b c - 27648a b c)x +--R + +--R 5 4 4 2 3 3 4 2 4 +--R (- 442368a c - 1548288a b c - 322560a b c )x +--R + +--R 4 4 3 3 3 3 +--R (- 2359296a b c - 1376256a b c )x +--R + +--R 4 5 3 2 4 2 3 5 3 6 +--R (- 1179648a c - 2654208a b c )x - 2359296a b c x - 786432a c +--R * +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 68 +cc3:=aa.1-bb2 +--R +--R (7) +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (9216a b c - 6144a b c - 8064a b c + 1536a b c + 180b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (18432a c + 36864a b c - 77568a b c + 4200b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (147456a b c - 135168a b c - 82944a b c + 26880b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (98304a c + 73728a b c - 301056a b c + 69120b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (245760a b c - 368640a b c + 76800b c )x + 98304a c +--R + +--R 2 6 4 5 +--R - 147456a b c + 30720b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 8 +--R - 3072a c - 6912a b c + 13440a b c + 672a b c - 828a b c +--R + +--R 10 +--R - 15b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 +--R - 55296a b c + 36864a b c + 48384a b c - 9216a b c +--R + +--R 9 +--R - 1080b c +--R * +--R 5 +--R x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (- 55296a c - 110592a b c + 232704a b c - 12600b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (- 294912a b c + 270336a b c + 165888a b c - 53760b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (- 147456a c - 110592a b c + 451584a b c - 103680b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (- 294912a b c + 442368a b c - 92160b c )x - 98304a c +--R + +--R 2 7 4 6 +--R 147456a b c - 30720b c +--R * +--R +---+ +--R \|- a +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c + 2a x)\|a x + b x + c - 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 4 4 3 3 3 2 5 2 7 9 5 +--R (18432a b c - 12288a b c - 16128a b c + 3072a b c + 360b )x +--R + +--R 4 5 3 2 4 2 4 3 8 4 +--R (36864a c + 73728a b c - 155136a b c + 8400b c)x +--R + +--R 3 5 2 3 4 5 3 7 2 3 +--R (294912a b c - 270336a b c - 165888a b c + 53760b c )x +--R + +--R 3 6 2 2 5 4 4 6 3 2 +--R (196608a c + 147456a b c - 602112a b c + 138240b c )x +--R + +--R 2 6 3 5 5 4 2 7 +--R (491520a b c - 737280a b c + 153600b c )x + 196608a c +--R + +--R 2 6 4 5 +--R - 294912a b c + 61440b c +--R * +--R +--------------+ +--R +-+ +-+ | 2 +--R \|a \|c \|a x + b x + c +--R + +--R 5 5 4 2 4 3 4 3 2 6 2 +--R - 6144a c - 13824a b c + 26880a b c + 1344a b c +--R + +--R 8 10 +--R - 1656a b c - 30b +--R * +--R 6 +--R x +--R + +--R 4 5 3 3 4 2 5 3 7 2 +--R - 110592a b c + 73728a b c + 96768a b c - 18432a b c +--R + +--R 9 +--R - 2160b c +--R * +--R 5 +--R x +--R + +--R 4 6 3 2 5 2 4 4 8 2 4 +--R (- 110592a c - 221184a b c + 465408a b c - 25200b c )x +--R + +--R 3 6 2 3 5 5 4 7 3 3 +--R (- 589824a b c + 540672a b c + 331776a b c - 107520b c )x +--R + +--R 3 7 2 2 6 4 5 6 4 2 +--R (- 294912a c - 221184a b c + 903168a b c - 207360b c )x +--R + +--R 2 7 3 6 5 5 2 8 +--R (- 589824a b c + 884736a b c - 184320b c )x - 196608a c +--R + +--R 2 7 4 6 +--R 294912a b c - 61440b c +--R * +--R +-+ +--R \|a +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (- 15360a b c - 12800a b c - 960a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (- 30720a b c - 107520a b c - 22400a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (- 245760a b c - 143360a b c )x + (- 163840a b c - 368640a b c )x +--R + +--R 2 6 7 +--R - 409600a b c x - 163840a b c +--R * +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|a \|a x + b x + c +--R + +--R 4 4 3 3 3 2 5 2 7 6 +--R (5120a b c + 19200a b c + 4800a b c + 80a b c)x +--R + +--R 3 2 4 2 4 3 6 2 5 +--R (92160a b c + 76800a b c + 5760a b c )x +--R + +--R 3 5 2 3 4 5 3 4 +--R (92160a b c + 322560a b c + 67200a b c )x +--R + +--R 2 2 5 4 4 3 2 6 3 5 2 +--R (491520a b c + 286720a b c )x + (245760a b c + 552960a b c )x +--R + +--R 2 6 7 +--R 491520a b c x + 163840a b c +--R * +--R +---+ +-+ +-+ +--R \|- a \|a \|c +--R / +--R 5 2 4 3 3 5 5 +--R (73728a b c + 61440a b c + 4608a b )x +--R + +--R 5 3 4 2 2 3 4 4 +--R (147456a c + 516096a b c + 107520a b c)x +--R + +--R 4 3 3 3 2 3 4 4 3 2 3 2 +--R (1179648a b c + 688128a b c )x + (786432a c + 1769472a b c )x +--R + +--R 3 4 3 5 +--R 1966080a b c x + 786432a c +--R * +--R +--------------+ +--R +---+ +-+ +-+ | 2 +--R \|- a \|a \|c \|a x + b x + c +--R + +--R 6 3 5 2 2 4 4 3 6 6 +--R (- 24576a c - 92160a b c - 23040a b c - 384a b )x +--R + +--R 5 3 4 3 2 3 5 5 +--R (- 442368a b c - 368640a b c - 27648a b c)x +--R + +--R 5 4 4 2 3 3 4 2 4 +--R (- 442368a c - 1548288a b c - 322560a b c )x +--R + +--R 4 4 3 3 3 3 +--R (- 2359296a b c - 1376256a b c )x +--R + +--R 4 5 3 2 4 2 3 5 3 6 +--R (- 1179648a c - 2654208a b c )x - 2359296a b c x - 786432a c +--R * +--R +---+ +-+ +--R \|- a \|a +--R Type: Expression Integer +--E + +--S 69 +cc4:=aa.2-bb2 +--R +--R (8) +--R 2 2 4 4 3 6 2 5 +--R (- 960a b c - 800a b c - 60b c )x +--R + +--R 2 5 3 4 5 3 4 +--R (- 1920a b c - 6720a b c - 1400b c )x +--R + +--R 2 5 4 4 3 6 3 5 2 +--R (- 15360a b c - 8960b c )x + (- 10240a b c - 23040b c )x +--R + +--R 2 6 7 +--R - 25600b c x - 10240b c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 4 2 3 3 5 2 7 6 +--R (320a b c + 1200a b c + 300a b c + 5b c)x +--R + +--R 2 2 4 4 3 6 2 5 +--R (5760a b c + 4800a b c + 360b c )x +--R + +--R 2 5 3 4 5 3 4 2 5 4 4 3 +--R (5760a b c + 20160a b c + 4200b c )x + (30720a b c + 17920b c )x +--R + +--R 6 3 5 2 2 6 7 +--R (15360a b c + 34560b c )x + 30720b c x + 10240b c +--R * +--R +-+ +--R \|c +--R / +--R 4 2 3 3 2 5 5 +--R (4608a b c + 3840a b c + 288a b )x +--R + +--R 4 3 3 2 2 2 4 4 +--R (9216a c + 32256a b c + 6720a b c)x +--R + +--R 3 3 2 3 2 3 3 4 2 2 3 2 +--R (73728a b c + 43008a b c )x + (49152a c + 110592a b c )x +--R + +--R 2 4 2 5 +--R 122880a b c x + 49152a c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 5 3 4 2 2 3 4 2 6 6 +--R (- 1536a c - 5760a b c - 1440a b c - 24a b )x +--R + +--R 4 3 3 3 2 2 5 5 +--R (- 27648a b c - 23040a b c - 1728a b c)x +--R + +--R 4 4 3 2 3 2 4 2 4 +--R (- 27648a c - 96768a b c - 20160a b c )x +--R + +--R 3 4 2 3 3 3 3 5 2 2 4 2 +--R (- 147456a b c - 86016a b c )x + (- 73728a c - 165888a b c )x +--R + +--R 2 5 2 6 +--R - 147456a b c x - 49152a c +--R Type: Expression Integer +--E + +--S 70 14:287 Schaums and Axiom differ by a constant +dd4:=ratDenom cc4 +--R +--R +-+ +--R 5b c\|c +--R (9) - -------- +--R 2 +--R 24a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.288~~~~~$\displaystyle +\int{\frac{\sqrt{ax^2+bx+c}}{x}}~dx$} +$$\int{\frac{\sqrt{ax^2+bx+c}}{x}}= +\sqrt{ax^2+bx+c}+\frac{b}{2}\int{\frac{1}{\sqrt{ax^2+bx+c}}} ++c\int{\frac{1}{x\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 71 +aa:=integrate(sqrt(a*x^2+b*x+c)/x,x) +--R +--R +--R (1) +--R [ +--R +--------------+ +--R +-+ | 2 +-+ +-+ +--R (4c\|a \|a x + b x + c + (- 2b x - 4c)\|a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (2b\|c \|a x + b x + c - b x - 2b c) +--R * +--R log +--R 2 +-+ 2 2 +-+ +--R ((- 2a b x - 8a c x)\|c + (4a c x + 4b c x + 8c )\|a ) +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 2 2 +-+ +-+ 2 3 +--R (- 2a b x + (- 8a c - b )x - 8b c x - 8c )\|a \|c + 4a c x +--R + +--R 2 2 +--R 6a b c x + 8a c x +--R / +--R +--------------+ +--R 2 | 2 +--R (4b c x + 8c )\|a x + b x + c +--R + +--R 2 2 2 +-+ +--R ((- 4a c - b )x - 8b c x - 8c )\|c +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R - 2b x\|a \|a x + b x + c + (4a x + 2b x)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R 4\|a \|c \|a x + b x + c + (- 2b x - 4c)\|a +--R , +--R +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R (2c\|- a \|a x + b x + c + (- b x - 2c)\|- a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (2b\|c \|a x + b x + c - b x - 2b c) +--R * +--R +--------------+ +--R +---+ +-+ | 2 +---+ +--R \|- a \|c \|a x + b x + c - c\|- a +--R atan(-------------------------------------) +--R +-+ +--R a x\|c +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R - b x\|- a \|a x + b x + c + (2a x + b x)\|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 +---+ +--R 2\|- a \|c \|a x + b x + c + (- b x - 2c)\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 72 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 73 +t2:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (3) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 74 +bb1:=sqrt(a*x^2+b*x+c)+b/2*t1.1+c*t2 +--R +--R (4) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R 2c\|a log(---------------------------------) +--R x +--R + +--R +-+ +--R b\|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ +-+ | 2 +--R 2\|a \|c \|a x + b x + c +--R / +--R +-+ +-+ +--R 2\|a \|c +--R Type: Expression Integer +--E + +--S 75 +bb2:=sqrt(a*x^2+b*x+c)+b/2*t1.2+c*t2 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 +--R +---+ 2\|c \|a x + b x + c - b x - 2c +--R c\|- a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ \|- a \|a x + b x + c - \|- a \|c +--R b\|c atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ | 2 +--R \|- a \|c \|a x + b x + c +--R / +--R +---+ +-+ +--R \|- a \|c +--R Type: Expression Integer +--E + +--S 76 +cc1:=aa.1-bb1 +--R +--R (6) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R - 2c\|a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R 2c\|a log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R - +--R +-+ +--R b\|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +-+ +--R b\|c +--R * +--R log +--R 2 +-+ 2 2 +-+ +--R ((- 2a b x - 8a c x)\|c + (4a c x + 4b c x + 8c )\|a ) +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 2 2 +-+ +-+ 2 3 +--R (- 2a b x + (- 8a c - b )x - 8b c x - 8c )\|a \|c + 4a c x +--R + +--R 2 2 +--R 6a b c x + 8a c x +--R / +--R +--------------+ +--R 2 | 2 +--R (4b c x + 8c )\|a x + b x + c +--R + +--R 2 2 2 +-+ +--R ((- 4a c - b )x - 8b c x - 8c )\|c +--R + +--R +-+ +--R 2c\|a +--R / +--R +-+ +-+ +--R 2\|a \|c +--R Type: Expression Integer +--E + +--S 77 +cc2:=aa.2-bb1 +--R +--R (7) +--R +--------------+ +--R +-+ | 2 +--R +---+ +-+ 2\|c \|a x + b x + c - b x - 2c +--R - 2c\|- a \|a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 +--R +---+ +-+ 2\|c \|a x + b x + c - b x - 2c +--R 2c\|- a \|a log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R - +--R +---+ +-+ +--R b\|- a \|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +---+ +-+ | 2 +---+ +--R +-+ +-+ \|- a \|c \|a x + b x + c - c\|- a +---+ +-+ +--R 2b\|a \|c atan(-------------------------------------) + 2c\|- a \|a +--R +-+ +--R a x\|c +--R / +--R +---+ +-+ +-+ +--R 2\|- a \|a \|c +--R Type: Expression Integer +--E + +--S 78 +cc3:=aa.1-bb2 +--R +--R (8) +--R +--------------+ +--R +-+ | 2 +--R +---+ +-+ 2\|c \|a x + b x + c - b x - 2c +--R - 2c\|- a \|a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 +--R +---+ +-+ 2\|c \|a x + b x + c - b x - 2c +--R 2c\|- a \|a log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +---+ +-+ +--R b\|- a \|c +--R * +--R log +--R 2 +-+ 2 2 +-+ +--R ((- 2a b x - 8a c x)\|c + (4a c x + 4b c x + 8c )\|a ) +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 3 2 2 2 +-+ +-+ 2 3 +--R (- 2a b x + (- 8a c - b )x - 8b c x - 8c )\|a \|c + 4a c x +--R + +--R 2 2 +--R 6a b c x + 8a c x +--R / +--R +--------------+ +--R 2 | 2 +--R (4b c x + 8c )\|a x + b x + c +--R + +--R 2 2 2 +-+ +--R ((- 4a c - b )x - 8b c x - 8c )\|c +--R + +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ +-+ \|- a \|a x + b x + c - \|- a \|c +---+ +-+ +--R - 2b\|a \|c atan(------------------------------------) + 2c\|- a \|a +--R a x +--R / +--R +---+ +-+ +-+ +--R 2\|- a \|a \|c +--R Type: Expression Integer +--E + +--S 79 +cc4:=aa.2-bb2 +--R +--R (9) +--R +--------------+ +--R +-+ | 2 +--R +---+ 2\|c \|a x + b x + c - b x - 2c +--R - c\|- a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 +--R +---+ 2\|c \|a x + b x + c - b x - 2c +--R c\|- a log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +--------------+ +--R +---+ +-+ | 2 +---+ +--R +-+ \|- a \|c \|a x + b x + c - c\|- a +--R b\|c atan(-------------------------------------) +--R +-+ +--R a x\|c +--R + +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ \|- a \|a x + b x + c - \|- a \|c +---+ +--R - b\|c atan(------------------------------------) + c\|- a +--R a x +--R / +--R +---+ +-+ +--R \|- a \|c +--R Type: Expression Integer +--E + +--S 80 +dd4:=ratDenom cc4 +--R +--R (10) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R - \|c log(---------------------------------) +--R x +--R + +--R +--------------+ +--R | 2 +-+ +--R +-+ 2c\|a x + b x + c + (- b x - 2c)\|c +-+ +--R \|c log(--------------------------------------) + \|c +--R 2c x +--R Type: Expression Integer +--E + +--S 81 +ee4:=expandLog dd4 +--R +--R (11) +--R +--------------+ +--R +-+ +-+ | 2 +--R - \|c log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R +-+ | 2 +-+ +-+ +--R \|c log(2c\|a x + b x + c + (- b x - 2c)\|c ) + (- log(c) - log(2) + 1)\|c +--R Type: Expression Integer +--E + +--S 82 14:288 Schaums and Axiom differ by a constant +ff4:=complexNormalize ee4 +--R +--R +-+ +--R (- log(c) - 2log(2) + 2)\|c +--R (12) ---------------------------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.289~~~~~$\displaystyle +\int{\frac{\sqrt{ax^2+bx+c}}{x^2}}~dx$} +$$\int{\frac{\sqrt{ax^2+bx+c}}{x^2}}= +-\frac{\sqrt{ax^2+bx+c}}{x^2} ++a\int{\frac{1}{\sqrt{ax^2+bx+c}}} ++\frac{b}{2}\int{\frac{1}{x\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate(sqrt(a*x^2+b*x+c)/x^2,x) +--R +--R +--R (1) +--R [ +--R +--------------+ +--R +-+ | 2 2 2 +--R (4b x\|c \|a x + b x + c - 2b x - 4b c x) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R (8c x\|a \|a x + b x + c + (- 4b x - 8c x)\|a \|c ) +--R * +--R +--------------+ +--R +-+ +-+ | 2 +-+ +-+ 2 +--R (2\|c - 2x\|a )\|a x + b x + c + 2x\|a \|c - 2a x - b x - 2c +--R log(-----------------------------------------------------------------) +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 2 2 +--R (2b x + 8c)\|c \|a x + b x + c + (- 8a c + b )x - 6b c x - 8c +--R / +--R +--------------+ +--R | 2 2 +-+ +--R 8c x\|a x + b x + c + (- 4b x - 8c x)\|c +--R , +--R +--R +--------------+ +--R +-+ | 2 2 2 +--R (4b x\|c \|a x + b x + c - 2b x - 4b c x) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R (16c x\|- a \|a x + b x + c + (- 8b x - 16c x)\|- a \|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R \|a x + b x + c - \|c +--R atan(------------------------) +--R +---+ +--R x\|- a +--R + +--R +--------------+ +--R +-+ | 2 2 2 2 +--R (2b x + 8c)\|c \|a x + b x + c + (- 8a c + b )x - 6b c x - 8c +--R / +--R +--------------+ +--R | 2 2 +-+ +--R 8c x\|a x + b x + c + (- 4b x - 8c x)\|c +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 84 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 85 +t2:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (3) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 86 +bb1:=-sqrt(a*x^2+b*x+c)/x+a*t1.1+b/2*t2 +--R +--R (4) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R b x\|a log(---------------------------------) +--R x +--R + +--R +-+ +--R 2a x\|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ +-+ | 2 +--R - 2\|a \|c \|a x + b x + c +--R / +--R +-+ +-+ +--R 2x\|a \|c +--R Type: Expression Integer +--E + +--S 87 +bb2:=-sqrt(a*x^2+b*x+c)/x+a*t1.2+b/2*t2 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 +--R +---+ 2\|c \|a x + b x + c - b x - 2c +--R b x\|- a log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R +-+ \|- a \|a x + b x + c - \|- a \|c +--R 4a x\|c atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ | 2 +--R - 2\|- a \|c \|a x + b x + c +--R / +--R +---+ +-+ +--R 2x\|- a \|c +--R Type: Expression Integer +--E + +--S 88 +cc1:=aa.1-bb1 +--R +--R (6) +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R (- 4b c\|a \|a x + b x + c + (2b x + 4b c)\|a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R (4b c\|a \|a x + b x + c + (- 2b x - 4b c)\|a \|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 8a c\|c \|a x + b x + c + 4a b c x + 8a c ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (8a c\|c \|a x + b x + c - 4a b c x - 8a c ) +--R * +--R +--------------+ +--R +-+ +-+ | 2 +-+ +-+ 2 +--R (2\|c - 2x\|a )\|a x + b x + c + 2x\|a \|c - 2a x - b x - 2c +--R log(-----------------------------------------------------------------) +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R - 2b c\|a \|a x + b x + c + (b x + 2b c)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 2 +-+ +--R 8c\|a \|c \|a x + b x + c + (- 4b c x - 8c )\|a +--R Type: Expression Integer +--E + +--S 89 +cc2:=aa.2-bb1 +--R +--R (7) +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R (- 4b c\|a \|a x + b x + c + (2b x + 4b c)\|a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R (4b c\|a \|a x + b x + c + (- 2b x - 4b c)\|a \|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 8a c\|c \|a x + b x + c + 4a b c x + 8a c ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +---+ +-+ +-+ | 2 2 +---+ +-+ +--R (16c\|- a \|a \|c \|a x + b x + c + (- 8b c x - 16c )\|- a \|a ) +--R * +--R +--------------+ +--R | 2 +-+ +--R \|a x + b x + c - \|c +--R atan(------------------------) +--R +---+ +--R x\|- a +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R - 2b c\|a \|a x + b x + c + (b x + 2b c)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 2 +-+ +--R 8c\|a \|c \|a x + b x + c + (- 4b c x - 8c )\|a +--R Type: Expression Integer +--E + +--S 90 +cc3:=aa.1-bb2 +--R +--R (8) +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R (- 4b c\|- a \|a x + b x + c + (2b x + 4b c)\|- a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R (4b c\|- a \|a x + b x + c + (- 2b x - 4b c)\|- a \|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +---+ +-+ +-+ | 2 2 +---+ +-+ +--R (8c\|- a \|a \|c \|a x + b x + c + (- 4b c x - 8c )\|- a \|a ) +--R * +--R +--------------+ +--R +-+ +-+ | 2 +-+ +-+ 2 +--R (2\|c - 2x\|a )\|a x + b x + c + 2x\|a \|c - 2a x - b x - 2c +--R log(-----------------------------------------------------------------) +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 16a c\|c \|a x + b x + c + 8a b c x + 16a c ) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R - 2b c\|- a \|a x + b x + c + (b x + 2b c)\|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 2 +---+ +--R 8c\|- a \|c \|a x + b x + c + (- 4b c x - 8c )\|- a +--R Type: Expression Integer +--E + +--S 91 +cc4:=aa.2-bb2 +--R +--R (9) +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R (- 4b c\|- a \|a x + b x + c + (2b x + 4b c)\|- a \|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R (4b c\|- a \|a x + b x + c + (- 2b x - 4b c)\|- a \|c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R 2c\|a x + b x + c + (- b x - 2c)\|c +--R log(--------------------------------------) +--R 2c x +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 16a c\|c \|a x + b x + c + 8a b c x + 16a c ) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +-+ | 2 2 +--R (- 16a c\|c \|a x + b x + c + 8a b c x + 16a c ) +--R * +--R +--------------+ +--R | 2 +-+ +--R \|a x + b x + c - \|c +--R atan(------------------------) +--R +---+ +--R x\|- a +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R - 2b c\|- a \|a x + b x + c + (b x + 2b c)\|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 2 +---+ +--R 8c\|- a \|c \|a x + b x + c + (- 4b c x - 8c )\|- a +--R Type: Expression Integer +--E + +--S 92 +dd4:=ratDenom cc4 +--R +--R (10) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R - 2b\|c log(---------------------------------) +--R x +--R + +--R +--------------+ +--R | 2 +-+ +--R +-+ 2c\|a x + b x + c + (- b x - 2c)\|c +-+ +--R 2b\|c log(--------------------------------------) - b\|c +--R 2c x +--R / +--R 4c +--R Type: Expression Integer +--E + +--S 93 +ee4:=expandLog dd4 +--R +--R (11) +--R +--------------+ +--R +-+ +-+ | 2 +--R - 2b\|c log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R +-+ | 2 +-+ +--R 2b\|c log(2c\|a x + b x + c + (- b x - 2c)\|c ) +--R + +--R +-+ +--R (- 2b log(c) - 2b log(2) - b)\|c +--R / +--R 4c +--R Type: Expression Integer +--E + +--S 94 14:289 Schaums and Axiom differ by a constant +ff4:=complexNormalize ee4 +--R +--R +-+ +--R (- b log(c) - 2b log(2) - b)\|c +--R (12) -------------------------------- +--R 4c +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.290~~~~~$\displaystyle +\int{\frac{dx}{(ax^2+bx+c)^{3/2}}}$} +$$ +\int{\frac{1}{(ax^2+bx+c)^{3/2}}}= +\frac{2(2ax+b)}{(4ac-b^2)\sqrt{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 95 +aa:=integrate(1/(a*x^2+b*x+c)^(3/2),x) +--R +--R +--R +--------------+ +--R | 2 +-+ +--R - 2x\|a x + b x + c + 2x\|c +--R (1) -------------------------------------------------------- +--R +--------------+ +--R +-+ | 2 2 2 +--R (b x + 2c)\|c \|a x + b x + c - 2a c x - 2b c x - 2c +--R Type: Union(Expression Integer,...) +--E + +--S 96 +bb:=(2*(2*a*x+b))/((4*a*c-b^2)*sqrt(a*x^2+b*x+c)) +--R +--R 4a x + 2b +--R (2) ---------------------------- +--R +--------------+ +--R 2 | 2 +--R (4a c - b )\|a x + b x + c +--R Type: Expression Integer +--E + +--S 97 +cc:=aa-bb +--R +--R (3) +--R +--------------+ +--R +-+ | 2 2 +--R 4b\|c \|a x + b x + c - 2b x - 4b c +--R ----------------------------------------------------------------------- +--R +--------------+ +--R 2 2 | 2 3 2 2 +-+ +--R (8a c - 2b c)\|a x + b x + c + ((- 4a b c + b )x - 8a c + 2b c)\|c +--R Type: Expression Integer +--E + +--S 98 14:290 Schaums and Axiom differ by a constant +dd:=ratDenom cc +--R +--R +-+ +--R 2b\|c +--R (4) ----------- +--R 2 2 +--R 4a c - b c +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.291~~~~~$\displaystyle +\int{\frac{x~dx}{(ax^2+bx+c)^{3/2}}}$} +$$\int{\frac{x}{(ax^2+bx+c)^{3/2}}}= +\frac{2(bx+2c)}{(b^2-4ac)\sqrt{ax^2+bx+c}} +$$ +<<*>>= +)clear all + +--S 99 +aa:=integrate(x/(a*x^2+b*x+c)^(3/2),x) +--R +--R +--R 2 +-+ +--R 2x \|c +--R (1) -------------------------------------------------------- +--R +--------------+ +--R +-+ | 2 2 2 +--R (b x + 2c)\|c \|a x + b x + c - 2a c x - 2b c x - 2c +--R Type: Union(Expression Integer,...) +--E + +--S 100 +bb:=(2*(b*x+2*c))/((b^2-4*a*c)*sqrt(a*x^2+b*x+c)) +--R +--R - 2b x - 4c +--R (2) ---------------------------- +--R +--------------+ +--R 2 | 2 +--R (4a c - b )\|a x + b x + c +--R Type: Expression Integer +--E + +--S 101 +cc:=aa-bb +--R +--R (3) +--R +--------------+ +--R +-+ | 2 2 +--R - 8c\|c \|a x + b x + c + 4b c x + 8c +--R ----------------------------------------------------------------------- +--R +--------------+ +--R 2 2 | 2 3 2 2 +-+ +--R (8a c - 2b c)\|a x + b x + c + ((- 4a b c + b )x - 8a c + 2b c)\|c +--R Type: Expression Integer +--E + +--S 102 14:291 Schaums and Axiom differ by a constant +dd:=ratDenom cc +--R +--R +-+ +--R 4\|c +--R (4) - --------- +--R 2 +--R 4a c - b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.292~~~~~$\displaystyle +\int{\frac{x^2~dx}{(ax^2+bx+c)^{3/2}}}$} +$$\int{\frac{x^2}{(ax^2+bx+c)^{3/2}}}= +\frac{(2b^2-4ac)x+2bc}{a(4ac-b^2)\sqrt{ax^2+bx+c}} ++\frac{1}{a}\int{\frac{1}{\sqrt{ax^2+bx+c}}} +$$ +<<*>>= +)clear all + +--S 103 +aa:=integrate(x^2/(a*x^2+b*x+c)^(3/2),x) +--R +--R +--R (1) +--R [ +--R +--------------+ +--R +-+ | 2 2 2 +--R ((b x + 2c)\|c \|a x + b x + c - 2a c x - 2b c x - 2c ) +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R +-+ | 2 2 +-+ +-+ +--R 2c x\|a \|a x + b x + c + (- 2b x - 2c x)\|a \|c +--R / +--R +--------------+ +--R +-+ +-+ | 2 +--R (a b x + 2a c)\|a \|c \|a x + b x + c +--R + +--R 2 2 2 +-+ +--R (- 2a c x - 2a b c x - 2a c )\|a +--R , +--R +--R +--------------+ +--R +-+ | 2 2 2 +--R ((2b x + 4c)\|c \|a x + b x + c - 4a c x - 4b c x - 4c ) +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ | 2 2 +---+ +-+ +--R 2c x\|- a \|a x + b x + c + (- 2b x - 2c x)\|- a \|c +--R / +--R +--------------+ +--R +---+ +-+ | 2 +--R (a b x + 2a c)\|- a \|c \|a x + b x + c +--R + +--R 2 2 2 +---+ +--R (- 2a c x - 2a b c x - 2a c )\|- a +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 104 +t1:=integrate(1/sqrt(a*x^2+b*x+c),x) +--R +--R (2) +--R [ +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R / +--R +-+ +--R \|a +--R , +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R 2atan(------------------------------------) +--R a x +--R -------------------------------------------] +--R +---+ +--R \|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 105 +bb1:=((2*b^2-4*a*c)*x+2*b*c)/(a*(4*a*c-b^2)*sqrt(a*x^2+b*x+c))+1/a*t1.1 +--R +--R (3) +--R +--------------+ +--R 2 | 2 +--R (4a c - b )\|a x + b x + c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R 2 +-+ +--R ((- 4a c + 2b )x + 2b c)\|a +--R / +--R +--------------+ +--R 2 2 +-+ | 2 +--R (4a c - a b )\|a \|a x + b x + c +--R Type: Expression Integer +--E + +--S 106 +bb2:=((2*b^2-4*a*c)*x+2*b*c)/(a*(4*a*c-b^2)*sqrt(a*x^2+b*x+c))+1/a*t1.2 +--R +--R (4) +--R +--------------+ +--R +--------------+ +---+ | 2 +---+ +-+ +--R 2 | 2 \|- a \|a x + b x + c - \|- a \|c +--R (8a c - 2b )\|a x + b x + c atan(------------------------------------) +--R a x +--R + +--R 2 +---+ +--R ((- 4a c + 2b )x + 2b c)\|- a +--R / +--R +--------------+ +--R 2 2 +---+ | 2 +--R (4a c - a b )\|- a \|a x + b x + c +--R Type: Expression Integer +--E + +--S 107 +cc1:=aa.1-bb1 +--R +--R (5) +--R +--------------+ +--R +-+ | 2 2 2 +--R 4b c\|c \|a x + b x + c - 2b c x - 4b c +--R ----------------------------------------------------------------------------- +--R +--------------+ +--R 2 2 2 | 2 2 3 2 2 2 +-+ +--R (8a c - 2a b c)\|a x + b x + c + ((- 4a b c + a b )x - 8a c + 2a b c)\|c +--R Type: Expression Integer +--E + +--S 108 +cc2:=aa.2-bb1 +--R +--R (6) +--R +--------------+ +--R 2 2 +---+ | 2 +--R (- 8a c + 2b c)\|- a \|a x + b x + c +--R + +--R 3 2 2 +---+ +-+ +--R ((4a b c - b )x + 8a c - 2b c)\|- a \|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 2 2 +-+ | 2 +--R (16a c - 4b c)\|a \|a x + b x + c +--R + +--R 3 2 2 +-+ +-+ +--R ((- 8a b c + 2b )x - 16a c + 4b c)\|a \|c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ +-+ | 2 2 2 +---+ +-+ +--R 4b c\|- a \|a \|c \|a x + b x + c + (- 2b c x - 4b c )\|- a \|a +--R / +--R +--------------+ +--R 2 2 2 +---+ +-+ | 2 +--R (8a c - 2a b c)\|- a \|a \|a x + b x + c +--R + +--R 2 3 2 2 2 +---+ +-+ +-+ +--R ((- 4a b c + a b )x - 8a c + 2a b c)\|- a \|a \|c +--R Type: Expression Integer +--E + +--S 109 +cc3:=aa.1-bb2 +--R +--R (7) +--R +--------------+ +--R 2 2 +---+ | 2 +--R (8a c - 2b c)\|- a \|a x + b x + c +--R + +--R 3 2 2 +---+ +-+ +--R ((- 4a b c + b )x - 8a c + 2b c)\|- a \|c +--R * +--R log +--R +--------------+ +--R +-+ +-+ | 2 +-+ +--R (2\|a \|c - 2a x)\|a x + b x + c + 2a x\|c +--R + +--R 2 +-+ +--R (- 2a x - b x - 2c)\|a +--R / +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R + +--R +--------------+ +--R 2 2 +-+ | 2 +--R (- 16a c + 4b c)\|a \|a x + b x + c +--R + +--R 3 2 2 +-+ +-+ +--R ((8a b c - 2b )x + 16a c - 4b c)\|a \|c +--R * +--R +--------------+ +--R +---+ | 2 +---+ +-+ +--R \|- a \|a x + b x + c - \|- a \|c +--R atan(------------------------------------) +--R a x +--R + +--R +--------------+ +--R +---+ +-+ +-+ | 2 2 2 +---+ +-+ +--R 4b c\|- a \|a \|c \|a x + b x + c + (- 2b c x - 4b c )\|- a \|a +--R / +--R +--------------+ +--R 2 2 2 +---+ +-+ | 2 +--R (8a c - 2a b c)\|- a \|a \|a x + b x + c +--R + +--R 2 3 2 2 2 +---+ +-+ +-+ +--R ((- 4a b c + a b )x - 8a c + 2a b c)\|- a \|a \|c +--R Type: Expression Integer +--E + +--S 110 +cc4:=aa.2-bb2 +--R +--R (8) +--R +--------------+ +--R +-+ | 2 2 2 +--R 4b c\|c \|a x + b x + c - 2b c x - 4b c +--R ----------------------------------------------------------------------------- +--R +--------------+ +--R 2 2 2 | 2 2 3 2 2 2 +-+ +--R (8a c - 2a b c)\|a x + b x + c + ((- 4a b c + a b )x - 8a c + 2a b c)\|c +--R Type: Expression Integer +--E + +--S 111 14:292 Schaums and Axiom differ by a constant +dd4:=ratDenom cc4 +--R +--R +-+ +--R 2b\|c +--R (9) ----------- +--R 2 2 +--R 4a c - a b +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.293~~~~~$\displaystyle +\int{\frac{dx}{x(ax^2+bx+c)^{3/2}}}$} +$$\int{\frac{1}{x(ax^2+bx+c)^{3/2}}}= +\frac{1}{c\sqrt{ax^2+bx+c}} ++\frac{1}{c}\int{\frac{1}{x\sqrt{ax^2+bx+c}}} +-\frac{b}{2c}\int{\frac{1}{(ax^2+bx+c)^{3/2}}} +$$ +<<*>>= +)clear all + +--S 112 +aa:=integrate(1/(x*(a*x^2+b*x+c)^(3/2)),x) +--R +--R +--R (1) +--R +--------------+ +--R | 2 2 +-+ +--R ((b x + 2c)\|a x + b x + c + (- 2a x - 2b x - 2c)\|c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +--------------+ +--R | 2 2 +-+ +--R 2b x\|a x + b x + c + (- 2a x - 2b x)\|c +--R / +--R +--------------+ +--R 2 +-+ | 2 2 2 2 3 +--R (b c x + 2c )\|c \|a x + b x + c - 2a c x - 2b c x - 2c +--R Type: Union(Expression Integer,...) +--E + +--S 113 +t1:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (2) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 114 +t2:=integrate(1/(a*x^2+b*x+c)^(3/2),x) +--R +--R +--------------+ +--R | 2 +-+ +--R - 2x\|a x + b x + c + 2x\|c +--R (3) -------------------------------------------------------- +--R +--------------+ +--R +-+ | 2 2 2 +--R (b x + 2c)\|c \|a x + b x + c - 2a c x - 2b c x - 2c +--R Type: Union(Expression Integer,...) +--E + +--S 115 +bb:=1/(c*sqrt(a*x^2+b*x+c))+1/c*t1-b/(2*c)*t2 +--R +--R (4) +--R +--------------+ +--R 2 2 | 2 +--R (2a c x + 2b c x + 2c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R (- a b x + (- 2a c - b )x - 3b c x - 2c )\|c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R 2 | 2 3 2 2 2 +-+ +--R - 2c \|a x + b x + c + (- a b x + (2a c - b )x + b c x + 2c )\|c +--R / +--R +--------------+ +--R 2 2 2 3 +-+ | 2 2 3 +--R (2a c x + 2b c x + 2c )\|c \|a x + b x + c - a b c x +--R + +--R 3 2 2 2 3 4 +--R (- 2a c - b c )x - 3b c x - 2c +--R Type: Expression Integer +--E + +--S 116 +cc:=aa-bb +--R +--R (5) +--R +--------------+ +--R 2 2 2 | 2 +--R ((- 4a c - b )x - 8b c x - 8c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R (4a b x + (8a c + 4b )x + 12b c x + 8c )\|c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R 2 2 2 | 2 +--R ((4a c + b )x + 8b c x + 8c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R (- 4a b x + (- 8a c - 4b )x - 12b c x - 8c )\|c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R +--------------+ +--R 2 2 2 | 2 +--R ((4a c + b )x + 8b c x + 8c )\|a x + b x + c +--R + +--R 3 2 2 2 +-+ +--R (- 4a b x + (- 8a c - 4b )x - 12b c x - 8c )\|c +--R / +--R +--------------+ +--R 2 2 2 2 3 +-+ | 2 2 3 +--R ((4a c + b c)x + 8b c x + 8c )\|c \|a x + b x + c - 4a b c x +--R + +--R 3 2 2 2 3 4 +--R (- 8a c - 4b c )x - 12b c x - 8c +--R Type: Expression Integer +--E + +--S 117 +dd:=ratDenom cc +--R +--R (6) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R - \|c log(---------------------------------) +--R x +--R + +--R +--------------+ +--R | 2 +-+ +--R +-+ 2c\|a x + b x + c + (- b x - 2c)\|c +-+ +--R \|c log(--------------------------------------) + \|c +--R 2c x +--R / +--R 2 +--R c +--R Type: Expression Integer +--E + +--S 118 +ee:=expandLog dd +--R +--R (7) +--R +--------------+ +--R +-+ +-+ | 2 +--R - \|c log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R +-+ | 2 +-+ +--R \|c log(2c\|a x + b x + c + (- b x - 2c)\|c ) +--R + +--R +-+ +--R (- log(c) - log(2) + 1)\|c +--R / +--R 2 +--R c +--R Type: Expression Integer +--E + +--S 119 14:293 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R +-+ +--R (- log(c) - 2log(2) + 2)\|c +--R (8) ---------------------------- +--R 2 +--R 2c +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.294~~~~~$\displaystyle +\int{\frac{dx}{x^2(ax^2+bx+c)^{3/2}}}$} +$$\begin{array}{rl} +\displaystyle\int{\frac{1}{x^2(ax^2+bx+c)^{3/2}}}= +&\displaystyle-\frac{ax^2+bx+c}{c^2x\sqrt{ax^2+bx+c}}\\ +&\\ +&\displaystyle+\frac{b^2-2ac}{2c^2}\int{\frac{1}{(ax^2+bx+c)^{3/2}}}\\ +&\\ +&\displaystyle-\frac{3b}{2c^2}\int{\frac{1}{x\sqrt{ax^2+bx+c}}} +\end{array} +$$ +<<*>>= +)clear all + +--S 120 +aa:=integrate(1/(x^2*(a*x^2+b*x+c)^(3/2)),x) +--R +--R +--R (1) +--R +--------------+ +--R 3 3 2 2 2 +-+ | 2 +--R ((- 24a b c - 6b )x - 48b c x - 48b c x)\|c \|a x + b x + c +--R + +--R 2 4 2 3 3 2 2 2 3 +--R 24a b c x + (48a b c + 24b c)x + 72b c x + 48b c x +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R 3 3 2 2 2 2 3 +-+ +--R ((4a b c - 9b )x + (64a c - 24b c)x + 40b c x + 32c )\|c +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 2 2 4 2 3 3 3 2 2 2 +--R (- 32a c + 24a b c)x + (- 48a b c + 24b c)x + (- 80a c + 8b c )x +--R + +--R 3 4 +--R - 56b c x - 32c +--R / +--R +--------------+ +--R 4 2 3 3 4 2 5 | 2 +--R ((16a c + 4b c )x + 32b c x + 32c x)\|a x + b x + c +--R + +--R 3 4 4 2 3 3 4 2 5 +-+ +--R (- 16a b c x + (- 32a c - 16b c )x - 48b c x - 32c x)\|c +--R Type: Union(Expression Integer,...) +--E + +--S 121 +t1:=integrate(1/(a*x^2+b*x+c)^(3/2),x) +--R +--R +--------------+ +--R | 2 +-+ +--R - 2x\|a x + b x + c + 2x\|c +--R (2) -------------------------------------------------------- +--R +--------------+ +--R +-+ | 2 2 2 +--R (b x + 2c)\|c \|a x + b x + c - 2a c x - 2b c x - 2c +--R Type: Union(Expression Integer,...) +--E + +--S 122 +t2:=integrate(1/(x*sqrt(a*x^2+b*x+c)),x) +--R +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R (3) -------------------------------------- +--R +-+ +--R \|c +--R Type: Union(Expression Integer,...) +--E + +--S 123 +bb:=-(a*x^2+2*b*x+c)/(c^2*x*sqrt(a*x^2+b*x+c))+(b^2-2*a*c)/(2*c^2)*t1-(3*b)/(2*c^2)*t2 +--R +--R (4) +--R +--------------+ +--R 3 2 2 2 | 2 +--R (- 6a b c x - 6b c x - 6b c x)\|a x + b x + c +--R + +--R 2 4 3 3 2 2 2 +-+ +--R (3a b x + (6a b c + 3b )x + 9b c x + 6b c x)\|c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R +--------------+ +--R 3 2 2 2 2 3 | 2 +--R (2a b c x + (8a c + 2b c)x + 10b c x + 4c )\|a x + b x + c +--R + +--R 2 2 4 3 3 2 2 2 +--R (- 8a c + 2a b )x + (- 16a b c + 2b )x + (- 12a c - 6b c)x +--R + +--R 2 3 +--R - 12b c x - 4c +--R * +--R +-+ +--R \|c +--R / +--R +--------------+ +--R 3 3 3 2 4 +-+ | 2 3 4 +--R (4a c x + 4b c x + 4c x)\|c \|a x + b x + c - 2a b c x +--R + +--R 4 2 3 3 4 2 5 +--R (- 4a c - 2b c )x - 6b c x - 4c x +--R Type: Expression Integer +--E + +--S 124 +cc:=aa-bb +--R +--R (5) +--R 2 4 3 2 3 2 2 2 3 +--R ((72a b c + 6b )x + (144a b c + 108b c)x + 288b c x + 192b c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 3 4 2 2 4 3 +--R (- 48a b c - 36a b c)x + (- 240a b c - 36b c)x +--R + +--R 3 3 2 2 2 3 4 +--R (- 240a b c - 228b c )x - 384b c x - 192b c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R x +--R + +--R 2 4 3 2 3 2 2 2 +--R (- 72a b c - 6b )x + (- 144a b c - 108b c)x - 288b c x +--R + +--R 3 +--R - 192b c +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 3 4 2 2 4 3 +--R (48a b c + 36a b c)x + (240a b c + 36b c)x +--R + +--R 3 3 2 2 2 3 4 +--R (240a b c + 228b c )x + 384b c x + 192b c +--R * +--R +--------------+ +--R +-+ | 2 +--R 2\|c \|a x + b x + c - b x - 2c +--R log(---------------------------------) +--R +-+ +--R 2x\|c +--R + +--R 2 4 3 2 3 2 2 2 3 +--R ((- 60a b c - 5b )x + (- 120a b c - 90b c)x - 240b c x - 160b c ) +--R * +--R +--------------+ +--R +-+ | 2 +--R \|c \|a x + b x + c +--R + +--R 2 2 3 4 2 2 4 3 3 3 2 2 +--R (40a b c + 30a b c)x + (200a b c + 30b c)x + (200a b c + 190b c )x +--R + +--R 2 3 4 +--R 320b c x + 160b c +--R / +--R 4 3 3 3 5 2 4 2 5 6 +--R ((48a b c + 4b c )x + (96a c + 72b c )x + 192b c x + 128c ) +--R * +--R +--------------+ +--R | 2 +--R \|a x + b x + c +--R + +--R 2 4 2 3 4 4 3 3 3 +--R (- 32a c - 24a b c )x + (- 160a b c - 24b c )x +--R + +--R 5 2 4 2 5 6 +--R (- 160a c - 152b c )x - 256b c x - 128c +--R * +--R +-+ +--R \|c +--R Type: Expression Integer +--E + +--S 125 +dd:=ratDenom cc +--R +--R (6) +--R +--------------+ +--R +-+ | 2 +--R +-+ 2\|c \|a x + b x + c - b x - 2c +--R 6b\|c log(---------------------------------) +--R x +--R + +--R +--------------+ +--R | 2 +-+ +--R +-+ 2c\|a x + b x + c + (- b x - 2c)\|c +-+ +--R - 6b\|c log(--------------------------------------) - 5b\|c +--R 2c x +--R / +--R 3 +--R 4c +--R Type: Expression Integer +--E + +--S 126 +ee:=expandLog dd +--R +--R (7) +--R +--------------+ +--R +-+ +-+ | 2 +--R 6b\|c log(2\|c \|a x + b x + c - b x - 2c) +--R + +--R +--------------+ +--R +-+ | 2 +-+ +--R - 6b\|c log(2c\|a x + b x + c + (- b x - 2c)\|c ) +--R + +--R +-+ +--R (6b log(c) + 6b log(2) - 5b)\|c +--R / +--R 3 +--R 4c +--R Type: Expression Integer +--E + +--S 127 14:294 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R +-+ +--R (3b log(c) + 6b log(2) - 5b)\|c +--R (8) -------------------------------- +--R 3 +--R 4c +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.295~~~~~$\displaystyle +\int{(ax^2+bx+c)^{n+1/2}}~dx$} +$$\begin{array}{rl} +\displaystyle\int{(ax^2+bx+c)^{n+1/2}}= +&\displaystyle\frac{(2ax+b)(ax^2+bx+c)^{n+1/2}}{4a(n+1)}\\ +&\\ +&\displaystyle+\frac{(2n+1)(4ac-b^2)}{8a(n+1)} +\int{(ax^2+bx+c)^{n-1/2}} +\end{array} +$$ +<<*>>= +)clear all + +--S 128 14:295 Axiom cannot compute this integral +aa:=integrate((a*x^2+b*x+c)^(n+1/2),x) +--R +--R +--R 2n + 1 +--R x ------ +--R ++ 2 2 +--I (1) | (c + %N b + %N a) d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.296~~~~~$\displaystyle +\int{x(ax^2+bx+c)^{n+1/2}}~dx$} +$$\int{x(ax^2+bx+c)^{n+1/2}}= +\frac{(ax^2+bx+c)^{n+3/2}}{a(2n+3)}- +\frac{b}{2a}\int{(ax^2+bx+c)^{n+1/2}} +$$ +<<*>>= +)clear all + +--S 129 14:296 Axiom cannot compute this integral +aa:=integrate(x*(a*x^2+b*x+c)^(n+1/2),x) +--R +--R +--R 2n + 1 +--R x ------ +--R ++ 2 2 +--I (1) | %N (c + %N b + %N a) d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.297~~~~~$\displaystyle +\int{\frac{dx}{(ax^2+bx+c)^{n+1/2}}}$} +$$\begin{array}{rl} +\displaystyle\int{\frac{1}{(ax^2+bx+c)^{n+1/2}}}= +&\displaystyle\frac{2(2ax+b)}{(2n-1)(4ac-b^2)(ax^2+bx+c)^{n-1/2}}\\ +&\\ +&\displaystyle ++\frac{8a(n-1)}{(2n-1)(4ac-b^2)}\int{\frac{1}{(ax^2+bx+c)^{n-1/2}}} +\end{array} +$$ +<<*>>= +)clear all + +--S 130 14:297 Axiom cannot compute this integral +aa:=integrate(1/(a*x^2+b*x+c)^(n+1/2),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------------------- d%N +--R ++ 2n + 1 +--R ------ +--R 2 2 +--I (c + %N b + %N a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.298~~~~~$\displaystyle +\int{\frac{dx}{x(ax^2+bx+c)^{n+1/2}}}$} +$$\begin{array}{rl} +\displaystyle\int{\frac{1}{x(ax^2+bx+c)^{n+1/2}}}= +&\displaystyle\frac{1}{(2n-1)c(ax^2+bx+c)^{n-1/2}}\\ +&\\ +&\displaystyle ++\frac{1}{c}\int{\frac{1}{x(ax^2+bx+c)^{n-1/2}}}\\ +&\\ +&\displaystyle +-\frac{b}{2c}\int{\frac{1}{(ax^2+bx+c)^{n+1/2}}} +\end{array} +$$ +<<*>>= +)clear all + +--S 131 14:298 Axiom cannot compute this integral +aa:=integrate(1/(x*(a*x^2+b*x+c)^(n+1/2)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------------------- d%N +--R ++ 2n + 1 +--R ------ +--R 2 2 +--I %N (c + %N b + %N a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp72-73 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum13.input.pdf b/src/axiom-website/CATS/schaum13.input.pdf new file mode 100644 index 0000000..91d46bd --- /dev/null +++ b/src/axiom-website/CATS/schaum13.input.pdf @@ -0,0 +1,6474 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/DAGAHN+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RNVRKZ+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/ILYXAT+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/CUZXIF+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LMGIYY+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/ODAUEJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/JVWFOH+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/EXUCWU+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/YYOXVY+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/FGLNQJ+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1159 +>> +stream +xYɎ7 +tFP(Zko%UTK/3%QJEIp|08&,HGb:w>o??{I"`%m$ !h{oWYڎ$h(ɦf7 +ϗ^'(!^Y_#> ֋ShRaC.Fy'U>nC2D>Ҷ`$1o/%> <64!4/-ٽ{ Z31Ya@t҇͗CC҅a@Hܙe`Kl_3J8lpR3txR;vxmSMXB$]kldq' hm#(mc>7>p Ŝ 5aMh/v0?}`Ӡn20b +1m FAzotz$q'2)\bϤKRdLe +񫂏ѠO׏Qw *9eW9u ḞZ^ :.X]&h+q&InxNJIB!!8EGJGA_}1zkǕ`hiD*??^id6xtÓ/0ązHg>}lFMKm㡼O|mrPIqëXHyrpQFF" pz&s;W r;>Wkr738 +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 39 0 R +/F9 42 0 R +/F3 16 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 423 +>> +stream +x=O0 w~;q$ćJ'>> r?6媔V )~y`xQ:u1*ԏA,P_-H;-oթ@Hѹq 8 P-T[,a L +ޮ`SiUDI`5@i[HeޗL}zSCײ%țKi4l65Ss̖ƟKf%SF`%|qT9^*FVLM!!4NG7@˲+rEVƽ{d| +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/MENOBT+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +59 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/YKQUPE+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/DWDXYZ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/SYZIWX+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 1339 +>> +stream +xXn[7+<ME]6^rgUv Ȗɨ^N|c(m$w>w (=DL!=ҌD*t͂-1c\-nPqK׿_~= cHE)R0VJGCXI:y5!?9N GX[b5zBP;1i`,|)A6P0^,62sXA 2StEg +Id !hMa,,i8; @4ýCk,K,Ovp %uGKw} DJZd2MPC 55iLT9ydQ T(slQM̉!i kC([ 'Fr$w KN@ԗfT!zXh p8BȰ1,Jh} 8s?7c͵PB&} oicnA(#Bxycĭjte cGUj vpߞC=G&ZwJ ;Eˇ9gٰQJUбH:#yV 4$ 1rΌ08as-c9$Qj4?^X9] Qf!SP3xL£~ dlhȸp'*#^7n 9BIn-NT Ho=X0b +NIgΪ:KE *1tȹnFݼNv$}X4Ap qcf +Y/an%(;?l.Ks5**sĺ ӕt /]8g&hA;2=Ӫ=Co؞D//SGp_`v+\P'aN Vٷ2jn&e-ay}Ǘc{H=m\>y=fm$ݮ +bwc|i]r\/ӟ|uwqZmwrȉ\Z)HpSr(4SFpXg5Alx~! M6%\L<` _6Q +;}wx:0SI]͏M*тj"tQ6NzU[ZMq\0W-.'\5I}G!=r@ǒS:Chr ͧt4+#1vOlѴpJ)"zLT@˭3۩7$M0%H 4tz#RY ɀ +endstream +endobj +69 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 507 +>> +stream +xŕo +8bSHLKM;ein%;ʲHS9Ra hIJx|yRfєIA  "Y\y1Np3czZ۪ZdYtv\ln !u(RE!YA[9bvxG8d/!b /HA!߉qdš8z]qdZSrFr.>ꂺF=r A;&v󹾷兛(8^,SD:"eilIu 0 +endstream +endobj +73 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 502 +>> +stream +x͖=o0 +}Gԥ*Tfk:J `R|@RԡYb}ܽG%%tg#MD;R(J_C̄A4 ߒ'DfAA#\{F[[Q|cI^wVn:f;4pOMuȺ@Zʢl=;͹ݳXԊpkʕ$594l@*nv*V xAx nUc;]2cw^(xT̕nRԘ7 ړ<&_ŤbzlzU~\Ŷ8 n%9Lnsx wu9 8Xgv[Az`K$*cmE꒿ڄrTwuXÃF:-QW[}2Mi/6pbbeKp@;5.5UBPș]sEdzÄ&4hvCFk +endstream +endobj +77 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 563 +>> +stream +xڵV=o0+8J5Hb.E [mUIp?>'hT4"wG޽w D h}L"KFd1 a͉QG6;3FldWc9J9+pm3nҀ7YOff.haL) + {eqJy5ޒ>™CU?zpr˾)npw\B&џL W +4GCQVՍu _G>ԘN_ԨR7⮝A{fGgEiE(\]B 2Qtų;YM9>88le+U,oَ]&.i N8Vj La}}Wnww߷ۧf +_7 ͟> {y8n['U4Le <.i}Ek|q8=^X +3*:t+t BXRU`6OE-%V!j^U2@C̅ՀVNOZ;6|7)ӦeA,KZGLY"4[՟^63c +endstream +endobj +81 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 584 +>> +stream +xڵVAo0WBvq^Ӧ6nciKT6 $}38'+bo_u1I 3wD@Lg+GL!YTF7 `* Ld5.5b#oc$^èݺx鿼BR#>ly8p4IH*,ǰ<+rdQ| $ + +endstream +endobj +85 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xڵMo0+|LO%JvDs#([2|&)QuG%=%q-Phj5Hur}KAxΦ{HPgMʼ$bSY|Sˬzz[Pݐq܋6b'_cYjb\,OΝpN(`zEyr=|;e@,38ܼ:;Uss9J~Ư| $C|Xh-QY1ؙ +endstream +endobj +89 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 1003 +>> +stream +xWn6+{`6E;dh +nb>4-NgP4K}s.0`,|þݾU  p`+nPww5Y۷yMp\$@ {`>AZx [Fx`wQ~~?w\WQ[ +r +um9SGLqP%Ƅ~zWwNj*k-#29'!`9Z 'ᔂpb gWYЫx!(t|Ɩ2tܴ smUߦvYF圪:1|Sp?=Kx:"k:<> &M"dzïO4vnؿ:}s^H7 ]ckeq{ g@EMjcqC%-xi8~'Wz})swZ ?yqm%H~B$5xa A(s(U`ʒXF} h]oT%p8!r=N ѭ =}*MiU'}qwVu%.TTMT:4Z)Vڅ&FVIWVuO:vjY%QryR +͌7޷xB5#j&lQY O-LV !W/wONRL<(K𨶲-6>:3 +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 582 +>> +stream +xڽVMo0 Whב" +2,6y  i%׵K`ȢHJ|$(m>w dQ(4#!8o#8FEc,nAWǘQIM;i3X6Om3FLo{5U}_{0A3O+J7gx`h@Y(L;' 16Ff$طа*#H;-"7fl\4 Gؗq짟ƀ2$ W mg7C(=*Xh?˷X9~<#H*aAnճİV3~jQ뷻a]EĖ_Ww_ D} I'P|z*̢L5qcu +ҕ+> vg | O7J 2\P}ݴ1GFlaO8APk9Oe{6Apn/$T4-w,¥={M.5" ]V|@Kgv7<2> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 551 +>> +stream +xڭVK0+|t9?╸ $'*.mAkm^aY_xf<7319`xW+@\%Зq!)'"$W^4ᤡIo4k.kuR$=LM<jX$P +BqcD,@҈Y|R)bʄsl3;b3)%djl)؞ N'5|7A%DPv^~ㅢrf:lO;Ʀ{:l{q9ț&-s5ln$U#`$H]E4&#YIpyZ"BDMq9,hm:,Zl7X􆲋2_uy_UJAOu<2j=>h[{Wd/E^I@U唈MEI +endstream +endobj +101 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 466 +>> +stream +xVO0WIwW/F0zݜX xKW69d#\fɘp { E)»DG"` AIoUPP:ܬ*XVirovr5XXAO~qGQAljI Ϟb9a]cvcy]*ŏrpCR + `j63闎P\)_j_!pBpl1П5=UE<(ddlK}[4cыd~Ɛ0us=s;iX @*%ٷ⓶A#a{7{[͆ehZ6xgk_ ie+/S' &cV}!QM"w/\n +endstream +endobj +105 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 577 +>> +stream +xVKo0WdeƑzc˭hTm$Dʏ2ͱ\laߌ1RtD~k&%V2(T\`#L)7̲wDfXA0.7[4cr%{1MBK0g"' 9΅Y&oy=rI˝bz *_.#> 4$sߍ IMg5ma8Tqr>D`{TR 'J(WkSvE6\ʈ(AӦc$ǘ bw!7%2INvdA^QxhCurxғHs3B*jA,cB;L t56ٓLYghIg3Cri\D6<,6֮s_{YCdQLY Dzpӎptw7p8 bY'~cM#.?5UEOhθ6ƙkZ z4ɍ%yՙ&ŧD +endstream +endobj +109 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 640 +>> +stream +xڵVKs W(#ONN{ltz9c3L~| YPhre߷ !ҟ/b~q$2Ab11eD8M')9,Y(0a!Q$%N0C8~QzB4ZԬRՋιL.b W|=Pϫ ?,:ݛf=nd+”;2]l5 +2X\4/pjES(Y\(^9R\ūa!!)+-2CV[Rdj wRn[q¢ޥ"Md ^T!E*g8i{\45=0 +p5AHdm1ilbj߀o"ۡ#N)",5XNCz[b`+}>t^An7uGǫ.oЌ38 ѺŇ?ךi +endstream +endobj +113 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 177 +>> +stream +xu10wō%ʵЖ:h1 MV0 ݽ޻80,\R , Fjɍ1mw @!Q,x +KE .TWVQ) q¢S"v eܽ1use/1)<7Ѓp'Hk +endstream +endobj +117 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 1183 +>> +stream +xڽXn7+xѤ).̀/F9sfƲl`l'${útY۫XDe<:ܾJ Dsji PᗻFZ΅jh%ؽ;~ZG. +҇* A&-PMD :KaUL( +O~= + 5fTI\ 0m $e&DTC +x0AC[ !{(!lpҢpiԡL:3)툤(+)G|33CaO0&GtB2`0> A C +55MF1y}?nRx)4 (Cf=cGK!6 Mܳ b;kj'UȕN*}3\wNX16eT5yfV=9j09:XmEؠ#գ(zpdl\ChڊV>3/O} |Z`; + w~*^̒w|GJI8_ve"(}JYsa&fׇQCQG9qoӱWK_T p3ժWU~_񩓆ͅyHA۝/]>u\k [}׼_t5???>u~vWl2 };Ok@;|Z3أ_-} 9bY)>Ѧ]K/1s$b}K-_~tP2¢u>{* @J*L1ebt_QRv}v^),ƞf*뀪 #X zFnÒ`kҭ>PI4A"ֹX׈"(^jA.[P9O:`Yܪ Ȣ5N;9a\䷋l(߳QJ|p ]G9 |gD@|*R)2YD}5Z^/ͅP Í4V'4z}{nd칇URKlw9!~(.a>FM #5VOe[`a pp>D[BFaW75 +endstream +endobj +121 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 694 +>> +stream +x՗Ms :|;u:QOUfbܙ"@!=$]òB|-f@U@N*Q¯%bW%ImqZh5O]ƒ`qĒ +?3ɥ)!ŵ jHo0ƽ-(qs؆37ڵei0ӆrۤ%QmutbFLf[|[@UprrM[ ~mNP=?K0JLH]?@L\Yl.^&S&ɥL'wgr׉Ӎ |I7aZ +vk +uSTub(*3qTE!*!BYP8fjk2'aqM8;fK@k.+Q|箎9jHN_ +t\U +UwĀzܿQ~d;6ǧ{i*}F6}?O@נKi(ُ +endstream +endobj +125 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 589 +>> +stream +xڭVM0+|G3W"'VJRUBݥ!H8&mR;-4<{fތQB)"+L"CLH3Z_c8O"1kvv7CUoʈ͏?uUI*iuϚ2܉"fJpW6<v ?õ2JI@)mEjb16Fw Z(js)_x[v +,@ 8WU~bN.e7rT[$5yĪǮ]\F#T' +" w*dK + +Jt +j\Tw5g:Nv<ϳCoJ{'ֹp`m6I4j{YI)Aٵc(uTv,~=o: ;¢y>lGX?c}sBd,,rA iܱZX,L@HVe> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 613 +>> +stream +xڵVˎ +X!scGML.[F(TeI4_mTg ^s (mm>0TeUg$H&dSs!x_Q0!Y$9(Ž' Kf ,PUP!! ҫ0P&V+̦Bu/=X΀g> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 608 +>> +stream +xWˎ0^&TNvA,fR! "؉1Hv{=Aof@5J+@AAK*%yrn$z!zSq-C+76rQ7ry9ê^|3nGR3= DjmM;8A`1ReaLq\ VQ ,<5&P"R1LU*Rlz1bq"@}Ad>iVt:gݔRbnSy>Ftf.O?5Dܢ$pv"tX{Vd3_oqScK%+_YB>Yb>+ ! Y( ")0ӯM1hߥ.sl1-Xfm71d[(r!vaCtG\*#%XV0Tbxu0fEH$qf8Bg=[m5s &l}8?<w?c +$QgN@0M+\մLY^創 +endstream +endobj +137 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 609 +>> +stream +xڽV; +(&J.Rh8m)DIbm1smfo'/ȁHrIo'TV{5ql&^~%P[)ߤW}5Trɯu +w5E*a_5\gxg"(wr ט2=Էp_:1nYgPsuPٍ`~[o/fPNşL*ؠp/u8_LU# u)QBnNY1ķ$[QRX$ x@<^w)Wn Pɸv|=*ן'6tgdr> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 653 +>> +stream +xڵM0 +S?V"8BnC + v9?v;A/Ncw<;3E]ޣpK-P IRJ +AKYݗ(> +*h廯GQAHM5Y^DPv%67KƇ٫왴!&f4{rv*mvMs{\O +gޣ.2-fy#BDe6A%zAF̢3S{b[4 ʊePXd]ɷW9lPSSE'%nπݐJL&3tk:QT@x~r8?=_^?>~OKJ}}}޴mI#iw,M b&afv+Pɐm" 4s Pa?@fN`ͯT8㬲'ÀIΣ+>Bfy޼.i=DU 9jWd'HmAZlĦ#xXnRqg .(\MAݏRݟ>ƕִTxk欋[BGs(ϮI%J%ͨҥR0u}P *+ +endstream +endobj +145 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 641 +>> +stream +xڽMo0>BVf7KM[n@(m䰕kc/M(#{>‘δDR$SaI3%P6{YιNvxvҟ7#LH=c¥ K"OM;J';3= +tV{{Fo(wUz0ўfFn/?UZUֈ'DrlV-W Fn.cL w_;iO"W)>|C&ͪ_Tb@aؘt +X3qY X+t]CAt] +FcoS1Uޢ_ WB$5s^72iZo/dv +gV0Tvy)[u{'fʦ"s*6STq<*"V"2!,{`Ii]mҀ= B^Fd+nǃwÕnMZaeY16),<,R?Q +/_A0u?p~|:>??:_O/ZL\h[~3Q@ +K+=K=ݨBc V@Ew.KZC`;E\x6% Bf2ZYQXcʭCqL +endstream +endobj +149 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 382 +>> +stream +xڵSn0E6~;A +ڱd;$P"_6ЄYs_VfT +dK) Ű |@#D%cƨg@ +,EHh$֎-I89pDy8!CfppeHU^dDƜ +oX-Y|'G Y[t1љݔm2*T\ +nt] 6wݾjkVj>=;iCm:4BŘ%yoou镧zj^.-1BۺisY>o'U}S݁&̟u3Kpԏpn`j_3&ܺ۳=Zh/? +' .C1"W +endstream +endobj +153 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 1403 +>> +stream +xXKo6W7?V 9|MEE{캗vul E4|3CoEY(FlZ DfۙeV߭xKr"i"SρVr"M +b/\ 0 DC*Cj>4` :>6oρpګ9K&sR>Nxv=覷S$ =$%ƫ >Rz{),=GzW֧e_cW(E VXQJB LPl 锒(!Q"$bjxY)oI9yd*D+eEn9n JyPD!L}=R *+Vx9.ꊆE@u~Isk*RO>GjUžqbxfUQZ;3u 1ƌo#L0Uk8ps@r уP?jnNw%+NTpKPlI -Bu^-*lϬu3@U|3:~76ws={f>nf)"rYlX )XT[2,3s%ep=8$10G,=UJpo۸˵w=>$$8kB(H{@ lxDoja?͉y8)9G &Yb(Y犃AhE +T!NmNL(hD^PC\`Zq4{p//(ۖ58Q ͋Xymv +F nJ~ qӟ\ +4ȑw>o\'XV3 6o..P?& 2is Y!N=DՉZD~hn1]v0TQUyaDf<~BPvqUpu.?|@K1\Xǃݔ@䖥\jЯ>e7SۃH67Vmno3'!m&=|/fuys~<fOl8vqXy7uc1'Z!luw4ɭe(\[qJguv6ԩ +ہ.=qc0-M~fslTֆ~G@ϳ~S\g}f3ڧ@Q*槻wp|@ahR*%+i-[]"`ifH +Pxwq`\`F9Ī/F2`3X|rJ- +b!!62&9\YAU >UX]F<8&,}Xl~Tr>=U[ +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 476 +>> +stream +xU]O0}WzKK_f527͇[ڹFff \ "!hLEWy| H(E"4Os~,LR>:,lm#QBb6V~P#EdBw v5&= J74*Ė)+lvu %,I#%Wl4"˿`>s0,$Gze.1٧*uFJkPz)V"Al)ũ^F 39$Ȇͪp>AlU5 +k^o4Uˢe Ͱ/w6r fr]UvizDx:an?'.>rÁ`KMӓ4akj0'_n&Y؁Q&֕Q&_|k˩ +endstream +endobj +161 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 536 +>> +stream +xՖˎ0} +/HZuղ #UI4"xOBf(|8d }>*@f"EQ! K&fψ Lif_*+KZ ,bu؈2)U̺uX _\ię6^Y6{$(!sYQ4U-< uu[0VA4@m~B|nSEO1nS$ \gyx^})0(uDޮ猜LIXs6l +k@X Պf ++p-K T|u~iE]O۶M4pld<=nnZY[ =50M>$O+W#6aU68l3E|e>18w{~Eʌ1^̌wݲ +endstream +endobj +165 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 416 +>> +stream +xڽTAo0W!ž-E]؁aq$FY?~"3^{"&!h 3=q09 ̨^5_tlC4w2hAsښY˕X'v۔($VօhO +F3%l`l6vebpsj~嫬s|0CZ9>t0]4ıԸ<[aV/r<].Dp| $Y+o;l=-k=ܪ+ZgKL 3].`RzUؿt[Y +endstream +endobj +169 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 1087 +>> +stream +xWK6WG% RtSƽ4J[q6 w@~|(R6_(3oyɄQ-+IB{854PYOoVݯW*¹R8*$8OfkEJRDuN$njPE"`~" dt&1`")±pPiPֈ\rPbWH3LB@A2bR^`;C73@]vv;^Iq)yR9~*EMOǔ˖3KA޸6N3nDt$jpBiVP)K3倉J9GiTQX@4h 3H9)ēʐj8C.8YfEvh\_NYBu }2θ*LpܰpE>g.sVR(3We2pٙ6z:J[`|X!1nJ6#G &( m)1䴄Ӄ WJ e3Qa %ͣ.`8 +812i2hJ>KPpcwR҉J`+غ}_O}6S%O8S=l8[Ҵ7K8ɛu{:ƏƐ2AzgN[_?ocWͪ6~æ۶ͺYunM+YW-eOya[6=RR)yk4O~s:)[]Xq;^J<6%%csd3jZzҖqg9?e7ecy-7Pr Hu:PލB6gz9/8U "|"&r d܆&u4KIBkR,Ǩyq:{v"9)ϱ'4bME3jre~-v>wMp>>>s5tMOk> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 578 +>> +stream +xڭVM WpĶp٪=խ[hjwJKI Û75pc1{$HP<ErERq#K~]]jewӉ"qRVB“sQe:^.xRijmn__jڄ/FrCpF]KTUWe[^-`3irs:;tsE\kÔGo&IGû KcIndfrJ}[ XL.1MQa$%s5< ̩vfjph6Amr4pcw'6x)"zk4'{^"?TLL&ad޸,A&8/SD聳1mLÝPsG: >U{cx=Õke/^k%XS +endstream +endobj +177 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 548 +>> +stream +xVM0+|LX9']m8I{(xid]X$zq쾱g޼E!hoHDR$!sA*`QP-ćGX=>~Vk)Mtkj!M[b:ֻ~kaEх[ÌK Tp{9bdh"f)3&m\y'mts^X1yn!9p62R Mt1S3МwhmA?b0-CdA4[YQoI%^X$x$#$a2je@*dR4ӡ> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 365 +>> +stream +xڵTMO0+z,]XAfqI2`3a/ka;y?m +0Ym0|K$@"%@p@B&p ]glb:4 9a۸ܲš{ ]5x@BH>H<3Cq蘪i{{A[q7(qKP_<ʝ`+cZm,"|Wz{|ڂ!4ܖq0><~޳|i77UZdvLc5/r廟BdrfbECϻ݄9Ÿ_3C"Q"3lx@e-r*"w3v|S2d&1S9 &Z +endstream +endobj +185 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1114 +>> +stream +xXKo6Wh%C^v i-i@JԇDJdho>w =um;IQuw?uFr;f,W4~gLJл{ Ywݾ3)CˇdjT )*pa@hՁ@\Ǵtt`eܽ(C9ҮXq鰩2@Zqc;6A PYJ|5=Cv?1'7P#ZØ!vΙ"ʼ^qe\(6\ +Z|gm n\(b^7{甬ry;Z.Bb q˂,K{c^Ee+RS.hX*T3.]kUbKhLgQ:RP0IF\s~: xW1H˗Q+ra&Cf2.3cfU?#7Z\.S$/lz mԟC{AX:>j!XLBSP=|!| Z:MvN9_8)?/{cQ<g}ZTUaxӯO/c~7ܜ~p_R,~&<$jrjnp I%Ƙ =10;-'`eO &fHqL9ͳ^rxa4d{Վ9eS>L> 6䷲}5H!fʇq̶p9V&S9b*v~t+ M\d0=wX-{ZSWpK/(KU<^Q^T*pjD%ӄ'l)!v%%WDu19iV-b5s]^WY~Sؒ͘ +hξJPI{y蛆o;pePbђo -7uMݜwVT(ĵWPD߿~q<Ԃtު`Y}v#DԴ/R/_y4Xa>FS/_+3:aw_eQ//! +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 686 +>> +stream +xW;o0+8u()&EN2Ud AK)DYZ^(ww=HNzD|F@Oh(˕DWdk^a$<<_ArR)Uk.!ɨq8+a?3I8xxGҚB0u_B]jNIZR`B52ӇZXa* Ifb2.m=Z@x,Up[C:Rw aw-L\ '!t]GyP#&}^bTFϚ.` ɚzRp;(Pae0wѶbxI1a,7_:fGkjzˆTO&;EP.&k[M.Lw<9 'G?Mx{HHQ~p~xrhwi|wh,rf&İ +endstream +endobj +193 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 586 +>> +stream +xڭVK0W#61Klժֻ 6Te *`\&iw3y|3RA }ȣ[&PFH1Jw},/"ɤQ6vԛ}c׾^<,6j~oB̤T21sP|ڸ /ģ+to/6,Sfރ%5藢O ǽ[ t4k]R٥߿Uc.> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 559 +>> +stream +xڵVM Wp 0"jjo+V%&9NdؤT f7a8' zq/$1̔A**Ah R-KJUUd~?NW'9wv&!P{`=Nttzed̒q3K.J\l*֦/x5I7.F?OOcuxڮw6~i_?SW'#WKVw9B~o6-:/] Yc܍YGpV}f{"|lwf.YALg _hBG*bw/x#_"5@y06fc:B 0WѓQT߈IMqIM{IOw/%~no,qqq=uby4Lж7T )THL4:= ?ova+pS_p\-BxprT]#'a^UaxIThH/`isB89/RBLWmôvq ZQV +endstream +endobj +201 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 701 +>> +stream +xڵWn0&KQhV[A@IǗ")HUu/z>x0c Te%@}$.%PRrP+ TH^4r‹\ek/]i>֯ƈayGi +ho\dV85i6C 8Iۘ?qY$d(K2 @Ӡ].Tz']<>>t| +ͅ3/ -+:rmKN'D爹h6#ƪb _;̰d5y Z 5ͫKߔ J;o,$HT!d2k=vz'LNIA1d.#sAy8C:3B}<.nYMXhhd=9H*bm~ _3qUɀFgY% l +2R)D`bb[%>Ăe )6 4$#-w9ʙWa0U*kFQj=Y1$\&R\ЈPK;NDȆmx$} g=~x"]9rN s@cJ04w؆=k *U<.j8"mX 3oj_ڳΊ_4qɠ 4I0(*c$rw}\JqU*eҤʤ +endstream +endobj +205 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 713 +>> +stream +xڽWM Wc0R/UU{ls{4Tv{H@lXQ7o4=Bժ)? +AjA +Zb/% 囪\R+o--# ֌WJ Ѧ"Rl٦n-07A,m˶}us8=`z0É$ 8}f^7NPH"e:z7fctmҀ3>ss0vAl*",yb<ƴTE31M{Fr$L,xS!5ٝ//?OseZ֊A߳wCMPuMі*#8)=M| );&Fk7*3D49?Y}rї]*E'01<(@q%:?n|98؄3 +:Tlql<{}j< b xJTEZog%$pO 0g{o icfd8[iީ+Nן{ ISoꐹji9)oy4Rt}uD̤פ$7 o:=dGr& 9) *?0z{uWu7ѴF*H V s%qxɪ,!(SOh]Bb7ä=1R2LR0eۿ ( +endstream +endobj +209 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 616 +>> +stream +xڽV0+|Eی DfVzlsXJR)+wbX쐴*1!䑨 4L%6$faH y @̅W:'7BIX$+@`ʼnKܜ2$fϳ9)8Ʊ8|̴+ &E7s/)u\nkmS1. SZzZnB LX} 6s3)zom*7lhj Ƒ:®Ζ urtq"Q xf fĝ꿱(4ySڒF69%O F685`ODςHC^y>ZϿz?lyfAG 6 *X|,eiQ )$rIJEw͚pRdo嬜|L ꦫTFE1TX_cRgtYݦw ^}1 P bM <zU~:Wtn6xFv2V+԰}q[MrސG(ϏK@i>j|a#i$ʰ>o4 +endstream +endobj +213 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +x=0 Dwc3؍C7!PeGt{:d- Pc!R Lʀ +ݹA<t9T6I\v0>PfsGzm_PDHC> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 1170 +>> +stream +xXKo7WQ gKѦ@OJu5P;|-jEB7gw]ᄍ}Vv /fTk$Ϳۘmjs^Zpësi@‡*%, ؜-&9 z[S]$SDy~$٣`ө|^A4%etd[F? rȗ_}ϧ4@΄ 6U F2B1hblK$nAϢw%ni:3q82̙`Ľ5"U5Tib +֪nyh M ,9Xa̚p `0N #i+Kjض)m̷2$"ɀTZYj? C]lUS66gnQ8HS"Df&t"D/SW,23b@ ΀tC (* w!pUTޑ=?\Yt}N>YݪLp1$HF0^ q^ ѿ +w0a@+VRP/,5$Y =Mq(fɯKMO~lvߠY:5 ='3x֢q+TP4ND~]U"oq|O9ӰoN?nsק%3ϾHy(]N0Y(9z8{ih+ g BPЧq8h8l[q6-o+#'_w^X·ĊD$"^A{}JQKP$~.%oeMl=O]a9hXO~-*Ӓ[0EJi“r6!kEU\PBTBZh&HSw*  +`> +eUj/>vaR e{Θsِ%y/@LjSmoU0+r>p)k'v ;c%Htf;9IҜagm;l&b{xvìޝ"y6uӀ?/d:T +endstream +endobj +221 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 630 +>> +stream +xڭW=0 +\B6fmYj3e&e.b/\q?1`lB{Z:?/?đ*%wӒ~7j2 kIw6\J\hd-zKKsޖZ66X0ٻtdyY/aqm6&, -E*BF5޻!%|^`ۜ&pOP +[gq$ zSqPp[ޒRa)rkG:Jg#ǀ#E+`= SA0j`jecy=T\5|Xr?v_ӟKm\u% gY}m7¨}0xAvPQ5yۓźvN!윖<~.OSv^s5lfOyD 3E-y +4]ҀGEix7Obå&lg7 r +endstream +endobj +225 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 685 +>> +stream +xڥW0,3cj )|.U+㏏EIZP").wvfH31|c/XeIƭa/?w:~gq)0ur3;Ԃb\ob0"[-rkTe΢>I/=\pQ_CNoH_o\c?ޱ.`2b1i=bPMY'rR\~<={k0E ^U.d#0`jza2ȲI0 +S9ZI$Hz*E@6SI(Ja0;)kN@9bRK-qmŰ5̜ 6.ۚZ\#&,DVV֗17o+7" J~p +VԮkq $/O;xǸ +K(M +endstream +endobj +229 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 640 +>> +stream +xڥVK WpaVjj=Q*M|pb'69` co% r'!?0 1 +?fD3'ZSc2*#\Fa?_E1b84i3&>SݻJ)=u'ě0߯a0L`_$q~!A=F]ķ$8:Ut-;Jq,;$C)|]4Y+Ąk{ma*{>iQy6]}]"U_V"'_蓄$:LY .Ig=ƾm =Ե8u>Cae6Y/"=Tް_Z]ެw"ʺh<%PLvFoZ[~"*g,gubzWO%phxwSٕj5ʤߊ@T,Z85zӼˢ"zQy`} qè)(Ǩ2ƮF`KiuFȫeܭ+%=ǣ/L(M=nʳS\aiֆT3-J4ԙT|eUZ}W`B.G!.}L*i+d$Kw3 +endstream +endobj +233 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 644 +>> +stream +xVM0Wp4PKlժ(VM?qMUUbc|QBi>z[eLDhUߣEXqRȨz a9ƜQ +3FH +HZHd3!\~? t?fn^BLӺ:hR^J4 ycP7W + Ѕ ;Qq"9`GʼnㄨvL)r_*J\iTSOW, .(8dVx#_r/UC\YE\^Y-yܙnR+[L P;] <Á fF +s./ʱ[`QND`,3y|y_b`fe +ڄv|vMqQm8Iٍ m> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 615 +>> +stream +xV;o0+8J(KQhV[@Iȏ/EROR,UeU#Pon ]j;$I) ‚m3!ydjcNyv1x ۴N`'myk^,@} +aBJ=n"@*ƸQUcbC}LõSܞ?_ij._~훳<^ے]I~Otp{#EhmW4YOȱdFolp-i|u=Q{LJ&_ɘgoEn'< +XKYUA ,GU쨠+~ؗ2oJC6ٓu= r X2 K>>6g`5_KKƞVIRRXgKkOJRR|SZA!'#z5qngSpнpLcsJE1&wDqvUCh2:v<=a8 bV'\.jv<^5&IzןXBSom6,f_g mEyR)k  wu +endstream +endobj +241 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 711 +>> +stream +xڵW; +(^m\vqHiS܏c6<3|1J|878M./pB":JHź=T ս+:|!PDk6ȦLutz[%))O:YŜ >;AO%:-qR3 WwjTO׬[^O'%0:Y ֖\_2>T6xJvطJjSkCėN%H͝a@RN?{~Bݏq+}N4WO bH9c'"fP ƾB</gZYj,mQzWvyU[sOxX+/)jWzm#QEz%c8bSMm.` +*&uRٗc IX4_Xu[VO<<xw^ȓn|ytՖhۢnٲk{clՑs;~8Ѷ})~U`]w5Ŀ Ӡ5p" i)^}' +^HqA56͠T@4ߘ0AڸUd9퓰𷗐TL? W(̮R ++~颚u:WOU5XUeq~ɠr^\J*`- ty@N +endstream +endobj +245 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 612 +>> +stream +xڝVMo0WEf=KM[n]]U(!kvbƞ7o:tDv>HZaA[Q{AR^5&ՋxWs2>\J^aC8;w;f1G~̝EG鈳\uNPW.ý{zp<HwIHkP0ƁzGڀ0ػ'soj,YsסI+wjA^OK豲f%7TLAdW`czgB:Ś@X%Tbdnktri+<ܼν.TlXS08yY?utТ#R<`ǼubQ:ښ&"Q&Yg +QRVv~oEWg|G_co)~8ީ6Ų|B/E+| +aUV) +h޶:( +endstream +endobj +249 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 625 +>> +stream +xڭW=  Y>._댥XdwF;+ BxoM]s8A&[b:R%nԷ%1 ڸI,_C)41k[u~Ǯ,T^?wcH 2 y)%9߳2=۶ b5v1wOo$U~n\9w^W,Ks/UG9Vh 0k`nQ}2rc,s $|/Ri᫆GAuWdκKQSj[_.{4J@uO4_s.{UL x+v*n!(Cc*pۍج ={ 2SU|>kEċ0`{ rxg%H6ߙ% j =8Ô-8GcyqMu꿬N-zQ'^͕~W7UVZ[$.XW\2F#=_{%tj$o^jsIG[$7u˗^X>*JzNԏ(_&d4"NwI +endstream +endobj +253 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 646 +>> +stream +xڥVKo0+|L9r#6Rq)UaN$7Y?f<|е $%PZr|^@L^՗?/qqTRI^Pc Tg gqZ(7?-rSUw0T1ޟfT,x `[?Zc](Esa{&.rMZBM]'J?6zgf1§ +ȼ`"6T[xrϞ_f?˜9~E r1[[E,ALZXN&?#| v[T0|w{O?Kq$~ϺކTcujHHmʇKb2[sqYm1gF T޲8dKc9{ƕeVxh  d.[@mbb zClı2}-z#W RyIYX$p 6mK |Y4!>(HWlɦh7U]0Mٶ[J7-u'~B.Pl20fGXkIqr(vbP^2ջtzb.j%MsеRv3y=3V1 +endstream +endobj +257 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 622 +>> +stream +xڭVn0,> q(Ů ƅ |F<$JKrEpWC̛yo(DJ3we<=04aah>Ư0!?;" Ws{(" .33+=<}esF޾#^wij-eVR'̧G8N/[{$,o}&aI~gfYm8 6}m6یLjXuӣ).[UCgbJmP k+r m9EG*>DZśef.5Q9}e} hnW m˞Y r@Aur^T\ϵF1s3hp3U$Wd?Gak~nM|+( :m%AXۤEqۏ +~*;,YkhM!]6NpL% Qռ|Ad,Hui=fXUa_TܒU@uS/c +&콒lo H7|4"+oyp~=~xV8WusdUA"UB;J䉞Q^T,RyQ=L峫M q` " *oLay +endstream +endobj +261 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 618 +>> +stream +xV=o0+8J5(KQhV[A6 K$R ?4IɤErPQiAw=>2E6",Yj?T1%jߪ~EaJ &ʍ0 ^#D +AY{޼;1#UvucW¤/^xN ԘטS;/BTrd>' le]I24E!'Q2vu s }x 0=,T)ƒfaKyZ#N%`)g̴NarCqLx_imY@QׅE&#$&%`ô s=oHEHuR1Notd6u@#'犘ӯZTxy5HFRHE/*_ A*{iVWv~߿9Q…~i= 5^'hB _Mp +endstream +endobj +265 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 550 +>> +stream +xڵUM0WL GfVz`a*I_1T.g7o ʳ> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 1161 +>> +stream +xXn$7 +t%(j`.A2r(wgHTRIvc\&E=>Rj3`O,>gܽyL"W~eFrYc,Gz~w[g~x0Ͻ K$gB{HYJK({4Л]9:fW_pȵa3g!3+ +n!k뤠q!fp8.'d".DT|ei(w\7e#=7j zĿ'J5*ehό~$Y7HK\c~d"$US_ґ"8wΧysL{UWҍY_\yTu"ī\lO j1JK-nV%7?k! p!|E+s1*..F0=ٸI7P(\(0[ŷt7R!=e-m/l@+g2])tHZCZ, j7Nƛld;l_Q(nI4(8A +LD]$*K:,51Ҳ <1#Oi +>f!4J _|-Z]U}+I?MRtմH&)!)B!w=M7|595]th@]ݧ?^vw}|8\v֤?~HMGyPS5# %"Sҧ:=-y -4ϽqbFZ?NiaӿJb}vqLAeuV=@̅5& ++JX[6b>?}|HmC:a+n y[.sb,V\/m9tI] +t}e' +m!y*t3YKaM,^fDض51sax L*m Mt,ʆ{\碬f4mD);Um,J<^̭ȥ> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 686 +>> +stream +xڭ <dX6\fRfE)$>+@HH|-?8{??/@z/37uz믦~p؜`uBni,8(2>_iM@9gJy 7Cz з/ĕfd'= >z?xGPJo,=d{e]5cyr^@P&jzS+$XJ=O5U܂O8`zQS mL($-q:_ΉTF1S$,2AxTC(,%*]C*~1"!x iHF@ꘖ1XX޲De{*']RQ:ױ?)QfBEqֱuc`Qµh~* ^3DqQSD~8&$+*En9,{>BpNVTB 7V3}ޑ.^-2=4z˛VMfc ^\t[6( ^ee&曡}&=F٪䜭^G$MzA;E,Z[ZX˧ 2͛vJML} {kX֟B.||j +endstream +endobj +277 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 654 +>> +stream +xڥWr0((fg&eF]B֌ .!M HHNM/?#UB44'T%|=PkʀTwa3nXUp +\BGww1 0B9lݷ b6#Ena A3j~Xj9r\xώBUۀ6̂~&"q!DD2AA2gWLB(TIS}1lب#b Zz>RsDkE-f5_;g5V[:% +02 WRrCխ<[}$ %hZ#DZoHk%Ty}kX[5kfjˏVsF{nqap+:sख़|\I&T ݹ܁&MkE+K.OdVgCFNn pTI_Ʃ.8`NOhcd\uj,ͅå?6[vaӦ|g94N@LwzC؎XkSX(;<iZzGGn`c*Q.?i$.d4`'cf _>5 +endstream +endobj +281 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 699 +>> +stream +xڥW0,G$ e.J; Rpq)QsC\Q욉^+tyz| bVV2nTo]>h8rj9*hh +|cq){<<-z%5ƽv(+72^`qK4>ё v}o4Z$XIYax{mBr t[:v)/z֑e}$_iFrmh'7skܵL?(τC9[`Z8<ӈcŋ@ @@nt!$jD5@l2nI{H= QdH.*,A@4,@]W'/iBJd$Qj\ 03; "fL>:RR;cŁVUqPj\#9/9-h 1N]X誐.uu&םoð%[럡'>C{`iuM r;\zw`Uq^r4>)t)9LOhhΑeU]VB{{ή[> kSiPܤ'V?4]<~ѩ$cnr6j5hmX7kNGǡ5:LXUJaSu^gesξU?WntF5:.[RdS6iEk: \gnY/$Yƕ _.=Ǒ +endstream +endobj +285 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 671 +>> +stream +xڽWKs WpA,pL̤!"@BV; cafq> ' ʬdUo >h8r)2j #\۟7&XxtJXkF4]s~^(֍Hsm~ǃM; +^,B2vd$9ycN!}z1?/ߎK7+> +{ +(2 YfG_u9ѸS+ۣX !r3UvoT;k'ArLh|u o}<}Fyl M-K'HH5&DQD|MjW-7Z +RU!K7,Lhx<X:ŞQ\{J%ROK"(@qYtSuF[r/`_BCrWllC6ףdR⭐#BgF,kͨ-BLS|D ]R*\MoI0OJVhtXO5 +̒> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 694 +>> +stream +xڭVM WHR/UwV=mz+y4TeI? V 3͛*ʶ>e=f*Ȫą<>>KAxd([~Ҍ0eGXIz:9ivhR4A8.#elSs7aC^|ѡa󺹵Qw/|Ov}=lG=k?OpSEE' -v߬'|~=4M 4ɟm7mx.5 1/kH!EİdN>6q[~s$%ZJמNk.<% F ξ4 hN\, 5hqtEj@sY.5\QnI@,&P OHG%̦eO40=u*YmF +AxIMO Օ +_Y= Q'ⴞFt[+Ycx)zQ]5=b6خƄ Wlp12/k*GJEm +S(SN轆ixe|C63CF4[I\vg^`ogecSq_ Fg5Y7EBLx'l֭ OO7b+l͋X_V!Vt\ԟY(KQ ]/~g +endstream +endobj +293 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 681 +>> +stream +xڽW;o0+8Ju(X4)Zt*ԩ n b._$&e9)y$a*g^at+ԟ~~/!#+@b\`SPr$-ǥEӼN̶I͍&VT27yS [@9;y1[ܨC20iXPݸq`~w۔]aQ0y[ *d'T EH +nG3>v6tJ {ДA0Bb39}\2 GIk!$ZǼV}xV,P>,xY[Nq9^M" +*Z[[ć!Ie.:b" &M#4S! ;C:>ć dY8='t +Q"xbne?2FA=(ǰ]GEN7mLpEj$JC.+A.?(t<9bp+h"[KY1*9*ü0EMHEM@ +[FRW3G +B,F_ssJ71aq/7:ҖN3®+ݑ4uqi`N\]L>\.8M;G]HK6gIQy}p?6nOOϻ/a|SUl0])e_ؾ|[ * +endstream +endobj +297 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 739 +>> +stream +xڭW;0 +<9zP]f [ +t~|eIe[R\zQG#SrLҽg%I/I%=5?_*\!z־5S^ 鵿0 S^oLM=iZS]Ls25;"{+D+HO 5^""\5Mb; 'BĄs7w룉l=dd EMy ~g1u)p]lSpN +RK 6a| ~]Av5@`%׵ü:dfZs^ThYq^ +*9t}?|=pF>xpHC~)qd!TaҴ`$ 3<#w`$ܛZ[p#K,G +ϟUMYdLJA.T5H> (pۨkOg/4.*92mU*qf ᙧ(Ёrl1 &`wP$TޤKYb4_6 {ADăt\A`G>}@@tТT(.e2( ?j`H`wm{g_"dRBs{*Ƕ?EE^;Ʃe; ZFb)o֭`Rs*M!Vcpr 不㻿x +endstream +endobj +301 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 779 +>> +stream +xڭWn0Y!gvR EaFʌM.sx8vl{SⶀۧvsCxѷ,? EZE +$iDDkl/.!mLvdF+Ĥݽ+VnƉPynΎ&R etIppȾ~y7糺:9gm ^8NGl ֗c2*!dx)J`Z`ȍ:1f1rƇ RZ?)>|ifW*# +ϞljKWXftaXy>ji.KCK3cG:S[~#M\=Hf:4*M497C,H^ՙun}|t=>_O*D=zKY z.)UK3;>5;S3Ҙ(2v\t.O'Cfp] ę<ӥK +ӬЮ[IBFDZJf%}w9ɪ\9E}X܀hY5aj* [wtٛ5\"\'Z4\ʆ -;xTS_NY"[/s3/1έxlꔵ*`T/"S n}ؘ۪Ql OÝѴ JjVֽTދ> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 782 +>> +stream +xڽWMo1+] Epܺ(T\JrR<^ٵwm'T^{1͛mC;J -tFN l6ZBTJ}K/.[tWQI'CXߍa_qLdxpo mc ؗBpA0kQŽpE +3|JqHOJ=0{}q2jPT$% 1b7FQXI+ޡu3́!a<) \zаP-8OpqLw)';CpLv?\}^Ra^9 ֔ӳjEqY}^#'ұԌQژ jF8 **FQJ0hmTPb` +GY;}9njDbuʇo!w=>-j(.{ڄȬUq*U+㬋 L_H-@%o9>>|O" k_CQ~Ϯm#ˣVRدJS (+'u:3S\,}kDPUY*fd:Ζʘp+bX*H*VL(| UN+_DLN#Փ<mqobAgN&$C]7PG=c% ^ +#I :PuH9!?SPZPȓD _VY&H,[1$vZY3n3zl{ +endstream +endobj +309 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 699 +>> +stream +xڭW R<Ȱ, 22.Ja].A 8yaݷog&!; wޘ F_?{.A݁;9)!:s =Gi~1zښK9+zԆ1ڞZtSaq咊KNtWs89g-|%vZq$t˜ɹNᔿ~ n%Q)w Ǥs oT .Ta^)*`k7jq$4(6]h݂}[GIys g:قª;drO\p\v|`VcCkpwtGM .Y1@RR<I\m@&竪TSm ?mN~㠉(0 Z0MȚ@TLUkhL6 +ѫMPM?IZۄH+>".šR &TWكZ;'ogb3}<8.7՚Hך>/iNi,K#&цQ_y4*D&=u;$}_*/i7j&|Y3kQOdكEE@EQUM$~EgΪ+~#Z*pM%su4uuαA}uKۿFja`m1E%䡳 +endstream +endobj +313 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 738 +>> +stream +xڝ˒ E +-LI`J&UYj F#e{%0Ї}q=@IP qw?m>tڧбvΘ>LF;dhqo{%*7R RV@$,\af~nt7eL!X:+n4߀> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 677 +>> +stream +xڭW=o0+8J5$;m +t,UR P%JE)qP4$d+xa)] +kUJ4Z&qju?Sŵ?wuCoS7~a/omKHmnf2`P)ayIi"66V(#Qt bɻ؜6H+#QઐL-3[&㿖<ՌթY:>51!p}U3HނE{ӊ[W'myud#ȇuo@X}RkاȱP$bՕ2gV.NKʛQ!31G4P9 M.U6ZԘok0mC76DG6ؕ +,#\B^|J0y nuItutq:Sa~ڹ!3K8Qm&ϼѩZ(A@9f&x]4Z5m7_;A$Ɠ [\Ct+nњ dždOZLw)ʺX[JE*Ձ:TŒ%Օ{@W30`1tXC~ߧeȔ݉E3wTFʟ.d5@ T G{(C7?XmJ)Q$=}[)2eрk `3(˗7r +endstream +endobj +321 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 663 +>> +stream +xڵVM0+rL㙱.#F9UYqYV?ױ$u>ԅ^7D%Dvc^Ile9dZVZf%C)?|KQJABPsQj1s&RvIkJmVa fX5de"0YI۱mMʐC7{m}z$E7I.Zi1& +B*"lk\0WP,Ӝd1Ȱ)S|Z]tppHBfbj'C?V}?VY~"V]S5S8_ͽҢ ^gL&s a>vj7C9qzqE7Mǧ_߇SjmTeek< ͻrzF@xSw&ĕѮ[In7My +endstream +endobj +325 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length 700 +>> +stream +xڭWɎ!+8cuOAA(H9F9ؖ_||0[/3\ {0"ŗ˫OᏰrR&kaF)AAc㨥FA+A%Ӥ!Y0ؼl}!@'ɺpqJ)pN%pL&I zp@ dJW\ woגۋRpphKX"ve.to+4SG$GZC kt}JY A"F;:+ +gcn0#c+^Mx +m#qW:k^;\U "PZ$ BUIE3T/SbJ@9EBU @sbQY,eUd,%= 0ԱQ I$W}q.ks' +_T&ͷ{qx|ώeĥ~幷: ;d$Ts0n8n8ҬN?{]:g$/5+pD= 6+_<WH V3'ĽcyHːJc c~"̵(OlaJy)_[]G(Яw/RKj󩍚 Xl.MuNx۔+Oot7l(SO͆%f ]%4*rY@lHbIyd;6H)·çxm +endstream +endobj +329 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 329 0 R +>> +endobj +332 0 obj +<< +/Filter[/FlateDecode] +/Length 708 +>> +stream +xڵW=s +(uA.m&qfRf˥=c7I{|$d:'!VQ}:$27:OH5.ԁ` qSFzRo~1[m`2ZA1~A\{(M$I&ɋPڊem.k#:m8cQd8QA13 pd/c/ϧb.yq u%LQ_BZD^DH\+%ԄKry7($ds Vyd<8ukyIi^ sRM^% ̪8>Nw.+ԫ +̕5eR[~4c1;6eoaLއ1ҾoQ۝n,f?yeLnnk8J ߊL'l B+(#pI$UNN+uSɫA?ɸԿ8UM|M%%RFń(*BJR - չ#m8yQKD% Iz-J4<[D/(В[Jk{XK-]JnKWD]9{nͤ +a#Bȧ;Iң5 F_B +endstream +endobj +333 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +331 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 333 0 R +>> +endobj +336 0 obj +<< +/Filter[/FlateDecode] +/Length 674 +>> +stream +xڭV=s +(uAeY$LuQ;$].B!YKkt.@Q)KtQ18NN I0:+NR~;H `t`_WS^KK?N_R1TDžW#G@qyC6]L[m!dil<6Z[SR.fgx]k-zA=5{0-fײIV{5:^"f\J^Uh=dz*&/复J9cuͪtm*GXnH,y>fZ@]͑,y jvjhK7LL}SܤLæcΰcsOwo K1 7N#*TР  &(镄QP'R eKM=JId7@:v?9G~aB@I6@=y:גk6nZ)ɾڣv\;!!#~>} wV +endstream +endobj +337 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +335 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 337 0 R +>> +endobj +340 0 obj +<< +/Filter[/FlateDecode] +/Length 648 +>> +stream +xڵW˒ +8qIapM%S9n Hd tӃVT/ÓA;tbT _Mܵ$BͩiPc~N/ixݵF#Z @}Ai}jE(!j_xh>/WOLSaڥ(C{|~+AKS6IxRbybxֵn%/I<h'H +jz94\ú\5!ϥDɯ$YYP $u:}saj/:P=1%:Z_>AAU=)lxt7:HCPܑv$HccTƒ:RaŢ+Zt 9ne@+Ld 1!u"eG$9zC+K`ž0VNJ$-]}]}op +#͡VS4d sdb\R zvog+[O N* +nLAAe ^Fwϻ9m0 崋%k +xƕv,h`r}@COCE+o<}n1G(xޭ._N}';3ĝՂvdJ +endstream +endobj +341 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +339 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 341 0 R +>> +endobj +344 0 obj +<< +/Filter[/FlateDecode] +/Length 757 +>> +stream +xڵWM0+rL㱽.#F9UYqYV?q'^ęG ^s^<~X_ ,lmX((AUdˊ 8/iRjRSJln@pvJn\ QJkUnJBi>Ûa˂ v'@r<= x{:&Ħ:Ҫ/ǬiwXE"H2YnpM8d.E<0ĸ{$Ph,h^WZya@;u2DRY!& j#b0A#E*&o5}[څfJ~rU1VTʑټOmtm//?=OE k_7)^޾nkv;7'!]7lpIp6894Y?*$34.H /n\zgǤr%LF_-< <5$ʈ: }^>. }UqϡD.PRU"[ctb^;@WdhH`$IFK* e\4/-5,WfU Ys+b  +eFgJ'<8]&Z A1p uB $N8Rב25ShF -O x 9r4}TyqoׯF/P7k$Fkkca査+ś +endstream +endobj +345 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +343 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 345 0 R +>> +endobj +348 0 obj +<< +/Filter[/FlateDecode] +/Length 642 +>> +stream +xڭV= +(1 FEJm]鮉v9;{of0셅|>=J`JQְ ?Z.5oLˍ2JRŁV`iyiJN_:gq){{ ª8R ˆɂ^F 4CRK +^y2v;FZi.K/2b-ێ]-pF)Qz1Ec'ˠЍQ+jA!TTJ=$ (*x禷FZsiCNB$ZzU&V v'@/asDPx#WUVV f8 qpS.>Й!BLI?QcSMFy^vzK%B8<4ι*EF[L"AguJa&,D1$x :7Oܨ>6Ѡ3+!QtExha28V +6A +֕eƯb{]2{;yW6 §7-+ĿX$qмTS GHQ*qKmInuA]!>95 vGDPlAPkѬ#| c9PpqTbVn֋O:K+;v~= o/ +endstream +endobj +349 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +347 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 349 0 R +>> +endobj +352 0 obj +<< +/Filter[/FlateDecode] +/Length 701 +>> +stream +xڭ͎ } +Ȃ1Uzav+a8 IC DcQT/g*M4A:}i󦃗A{]~:OmM^<0䅿+neO@e>F k7n eWt!1];B Ftp^ٺw F ,Y9=}ܨd@8bNȀV+ôQ$<7m .@IzoWlL$.%&j7OΘI; , av (ǻ0Ҕ f؃҄f תT\Ddb['zdb]'`2+e +;N` Yhj#?+0N Pph8 "x{ |IXeYGR⎚Ϟ>8сi)_gKڮK&C&mɹc(woVL(ܚiWOuONP`’ ۋņr1Y`CJ h)GDTVg%"` Ku{so,)mn7<mɕm[kDQH`ȵ?UBȱٲuˆK_%e{zv멏AiH}0z_Z +endstream +endobj +353 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +351 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 353 0 R +>> +endobj +356 0 obj +<< +/Filter[/FlateDecode] +/Length 689 +>> +stream +xڭW=s0 +4JI!A$^uy;8kN2LJH#$8BK!LJGͿ͗ݽ Ȧ'n_}5}kЭ^iRhўB + +2IASPJxFcr鞺hz)h +A$`t%-!K AkFN(I ЖςԆaTbiЉ!6Zxjrj/1 xE(@\6⢂v=#8o 52֟j.k!db_}Ja'N`4A~FgNFLk{;Қ @m$Je8r"ge8 uYr[#|S0S!«84a-z+me^V961 +[?}d}F Sq- 7$iYS|Q/vQas_qfh;TGjpu&ᮾVD|9g9#9w*-k`-?L +endstream +endobj +357 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +355 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 357 0 R +>> +endobj +360 0 obj +<< +/Filter[/FlateDecode] +/Length 690 +>> +stream +xڭWMo0 W,#Q)eX:l-y$Ȋ]!'R8H"b(>-d%eqWsqUXQUXbS>(6ٔuNkSne;JY-XfgSۺ4L}%#cѰß,RE&YBf-cfٷK VxfY+!eB&!Dt<F0h ci;r1pod|& ܃%>uVZEWf,uɚbx萁.$s6 g^"Fq + {Ehsƽ)RgpN? [}a1DU=\ ֽ:O5"pC#Gʯy~^"D*E^] JE7CAe::u%b;$)"L|#f`ôt> +endobj +359 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 361 0 R +>> +endobj +364 0 obj +<< +/Filter[/FlateDecode] +/Length 647 +>> +stream +xڭW! xXLrIqL +WÇoYenA}$31 +|g_̍ΰFr$ɸ4;~ ƥݼɥ&;iXpA8O5p%)BRzE"Έst=[?7bޟ7YP:OГ*t n0o'l uCt.ӛM TpfZq"Q 6J`EF4|yQs@ ǥQ +C}^{ &g-GJfq.] qiH'uPJ)-]$htNOZ 湯tbL3àL-9̒$M;#ʎ1[>f9>m%y +E6^o\QD껩9PorpBq z[qk0KQ,iX-FؾS-^{S>:5@,l?"@Ҝ7.Ts'0-KH!UneHËl3Ypn%*gM#{nՔsI` R'2^T#-1n6%};~pP +endstream +endobj +365 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +363 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 365 0 R +>> +endobj +368 0 obj +<< +/Filter[/FlateDecode] +/Length 540 +>> +stream +xڵUMs0WcB!8p+=PS3;WH S.j}oИRLܦ 5tM#XI} kI.ip]]FL*{H( e{f\u$ghOA9Z̸S%&4=T88Z +DNķ,Iy=R!{P/ϡiJx 8l4E_`y\!$DpF +Ň!l=%˻P &OsPѨxvlҼWaS0+yO!`~ +$2NPdܛmX%v $q>q5m: +L4$L7^kpuWmP>搋X'/("0XDçgeZq}qf6r<翭:|t]~+&NQ8ݙ!^dݶie;*84 t[(D?Ow}/_0'ʔ1R\~٫ +endstream +endobj +369 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +367 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 369 0 R +>> +endobj +372 0 obj +<< +/Filter[/FlateDecode] +/Length 1071 +>> +stream +xXɎ6+xCŀ/A9}ԝ@;dOHb{碥VTR[DL!'1 +aBǯ:cƸĭ}#N g1M9)DI79B ʠ?kV§x|ACKVĆ,EB0xNP7H4m@K}Kh9N $7cÈ N$8YBPR6m|&s.}gkJ:XhHfgjv}sl~\0)(Yq<&FSlEJ2}3/5lٚFzAَ(Ut9I`fBY0^mlf@@ ÚāP_rezq* f41S W-@*J8&WIQ.Mk?)V5I#yQ,r)]`ls%[=`,r[53S"ƠƊP^"Gnv&o7 Ii*T-XVVl">V3X> 矌<ŖEܬhmwXmr^S|K.֟/c|K`dhbQw_ǧǧot3C;}9 }K̔QбVp0WF"c!6a*srhfP&*anW,6䌗s3t8[.oaZ<ߵ(=}6V]YOEg|˯ +f濥@8o;>]/E +Y&?#́L"==-L4gZ- +yu7Z0k+.OkkMZ qmэλ#6`]܈dx+)H+XM/Ǎw T:כVI>S=v^|ލ6iBh] > +endobj +371 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 373 0 R +>> +endobj +376 0 obj +<< +/Filter[/FlateDecode] +/Length 594 +>> +stream +xڭ;o0~ +R"gƠNѢSNUYp >HZ~h!LEw'% 3|S F  dF,cJ;g8?'T5&k׾2~~@)ih"fBT7ӣHh~/o_HA{8-==/C>R.)sJ߽YA*J ZTT?cW@u! &oq#X{PA?6>v@eST !15)m܋ |jB +k…zk~rLORjGj[3tXplъz1<'5JT]rJ(j/6E0{0#:DxVp%UTzzШt}mbc@$//_tCEO&j'M( Dfq(v3L :@9E/魪kIepV;u[ ZtgͽV`k>W@Q?ޚn;_tzcwl7ow!wҬcG#)$ +Ii$6WٗO9 +endstream +endobj +377 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +375 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 377 0 R +>> +endobj +380 0 obj +<< +/Filter[/FlateDecode] +/Length 546 +>> +stream +xVK0W!v6^٪UO]zZ(R&?$U%0D h.[2,eߑa0$e#b O")+vvU+XχxiÒ'cGl+gWѮȣzWAWa͘׉ar +0uBބv|omOSpp97[aJ ,Imٛ- +endstream +endobj +381 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +379 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 381 0 R +>> +endobj +384 0 obj +<< +/Filter[/FlateDecode] +/Length 515 +>> +stream +xVn0+xR$5@.A=E-` Qbr"YT@t̛70k*i @A䠺O BNy"Y +0 _6 ޾lvu̺4o.o4o +"y9oB%Oi @A`qk58d1أ)8ufaa hl~mĉRX㍿uz|ERgY&-H(ĐM6VdMyv#d:Lk!<+{ iDlZN:Y:T 3)+" kOfnu|LYi$9:'tY"{>O4t2V՟Օ.j_wj3bIKM5):٤&%ΚhRb~ fSէl +VJ;եk>Pxr/O)iRΨ*E_e +0 +endstream +endobj +385 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +383 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 385 0 R +>> +endobj +388 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xڵVM0WE&ϕzc˭PU=˦m.{l{rȁG܂ 6?\Z÷/)$YJQU=ӔJN)$Kfۇla:l֤τ +Q"x v<. 2`gE+Z&j$g]"ϘDp<|J ݸ r{:kERtݱ{t|KmI^}vi54pnˁ5,-O +@1!/WM@Mc$o:_„SFS irk+ 1qq5 Y oExh=Bu]$^Gnv_1 ;!`:+)=/#͜Ŵ -WN5V}ҫJ0*Ie焹36B!9Jh[.ӟ{elByܱrE,_K6/*7?e67ؖoE] +endstream +endobj +389 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +387 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 389 0 R +>> +endobj +392 0 obj +<< +/Filter[/FlateDecode] +/Length 573 +>> +stream +xڭVn0+xcP"N[ݪ$5 +IRKZ5%QR\>fgfB ѧrw$rӨ + CD(T|e[,"cKn,LQ|51fR;?FF8WK`+u01j!*q +xFF!ms&{c}9Fvns fMG4M o Wu\wD`+)]1Q<%ϳY?&%3ڎ32OFY +@F:aڲv&(]JCu (}sa%Y) +ܮ_/4q"^Xe>|r࠱{yZ`7Ju7=)|P@z6ʗuX?=<~߅_y±8=l3fmǺ.8i6'6&\7,4.I/e])2x"oL/zĿ"Yd9嬃zZ] +׷1+[-GC99Mݭ$҅5\a-\hؗcAM +endstream +endobj +393 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +391 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 393 0 R +>> +endobj +396 0 obj +<< +/Filter[/FlateDecode] +/Length 554 +>> +stream +xVKo0 W(#Q K6i0`H#+_r`C}ŏɄ眓 cR+r+3[MO?(c2{OoMJ8aBc^ДkpKc5e wg9{90 znLVʢ}~%A{Cb+Y!抾M#zȘv]0N#G-MmOܻ.1V}qҵs~Q! A7L@ N8oG:bUx("Nm|TZf"GPi'kFLXv>~vurʸp!]^-5lVdc>P *y;\e(`DuA` eG1s 4K +aşmnϿv}Z>~{ʺ16\JLf^:CQª Z1<|o# ₩Hִ*pAƺ2/ +> +endobj +395 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 397 0 R +>> +endobj +400 0 obj +<< +/Filter[/FlateDecode] +/Length 614 +>> +stream +xڝVn0+xcP&.r)խ\@I.-$D>P 7gHI:!;|E-ȔFRTaJU˯L``y6 Lii&.LFR`o1O9yܐ8ӊWS\lwwBSGH qF< jkEv.6?k7r`Wf+)KIbSťQBm>< ae0IXR k"L"kIgdB YK<L$'j/$VnVX0{xLecYvXxO.k?{HR.B eѻڛ$%8px||<C$㥡~[zE׉ádm#%1^Ma}r)Ln/w/Ezh__UfU8qgPo!$-Ci uwOYZR+הZ[o +]z +endstream +endobj +401 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +399 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 401 0 R +>> +endobj +404 0 obj +<< +/Filter[/FlateDecode] +/Length 558 +>> +stream +xڭVMo0WhLlJLMV=hF4LꏯcL + `y?8}_=a@'Z'$ AAv"!*(q#{ BHƨw[p!n|.98Ǎ?Dy^6h_蜾V JA k1n0Rab,͆YM]y*:\T2E+!`쇌 Ä)fL[چ!:qDN6 cթĈbP.J"պY +/-'QK*]=E^SWZ @,k4:rh:iOG SR2s0ʐV vy_yպ̗"MMKcbb_v7}%`阄9$8\M>#ϕ@3a̰w*Y85)dSZa;02:\ڟ/ٽ>;C:\ !LϨu4h92)]+ݳ%Tnuinp}z#\$J:Q*e-5O +endstream +endobj +405 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +403 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 405 0 R +>> +endobj +408 0 obj +<< +/Filter[/FlateDecode] +/Length 409 +>> +stream +xڝTAO0+z,e}eу&$lf?^F 9Y/}{-"bѽ7C:ȋKGû=#0A \p7|rc;cCf;2 \G,hOuJV\߇*Z ߠǼma~6a`9G4(ק FG@0 Ь!N DEeZʛ?+V.\FBTo&>ݮQQ$yl-95Hm؛T-`*¯;-Tdsm> +endobj +407 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 409 0 R +>> +endobj +412 0 obj +<< +/Filter[/FlateDecode] +/Length 1136 +>> +stream +xXKoFWQr ѩf +PP5P;*C ݙٙfH0#+y~WT*}G VjgsW7sίl~eޠ 1G4p%(T+bo4 l!mDpA"#QnIr^f !c> +endobj +411 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 413 0 R +>> +endobj +416 0 obj +<< +/Filter[/FlateDecode] +/Length 642 +>> +stream +xڭM0!YKlժ.=m EۄC*ؘ r1 1~% ⎉#gQ,%'* ab(Oyܻc%%㬍Gq +7/0;UiEb#SPaz)[˽BҔ~h7'´v]-B>KpJ1#3ߎ&L0%Zñ~uw䌇[iUTIȯ5t2l[D*aN Z'sdy ѧHkt֍Vnk*~}Nv>ֽBS^B3-&N;0G/ LDm=b6LꞸɶrHA}u[oF-z˞wBy<뺽vls(-2[N6egݩ7N U;G%#`Wٟ궉}yJ׍ayxU=XۺZWBp,[#OaxXQt^ϋa$ޠ\d[/lޥ~f\L/1@K1j (Wv/G\. q88OMa&ؔ\\w5vǚ_`xe$Zh-wOe +endstream +endobj +417 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +415 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 417 0 R +>> +endobj +420 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xVMo0Wh 6tڴNs+ADHS&? IL}^@0!`9o(k (V ɰ  #H0_Dw7@3m1/korV[KҸrE/mp頡? +Q:lrF\ۉT]g̷T7 $r> +endobj +419 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 421 0 R +>> +endobj +424 0 obj +<< +/Filter[/FlateDecode] +/Length 546 +>> +stream +xڽVn0+x,")> R)c[ +'uP||iJˤB$@uM.wggc0`_<' h$HEӏo1Z(I 9?0IYC̿ !HO2(qTD(^.Tv+ix k[Eհjtz3s)#3$wM eJ9kl8I,\Inٳ +qPnk)k䒁]R {JSa+c|VCZτA.-\*T܉W]*/3}o]|ڟϏOc?O"͐׾w=PUt{NMMMIOۤ4nnCE"E ӡA7yK>H ~08Mj4>/`<ϟRZ$rz©t sN>Jζ+nR9˝mU6N61@UE436"ua0~tp3`F\*,T֫k+KD`Uvz HIJ#ll]'5 +endstream +endobj +425 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +423 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 425 0 R +>> +endobj +428 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xڵW=o0+<xwd@\,p|mӜvn86 颺y2/&cɽLm?8c#K1FOi/ڂؤ8 0$k/nѵ+ 30 ]{4^>&5'd;6ʩ-NSe* t }Qis +[+ng@|a[oCYΐ&%MŘn}X gdvP}ܴeթ5=*8qQ +nq[XS.5/?pv7lۺXIs}i޿-/vwfU@LAՎ.b=_k_O͠lj;o 踻zn +afJ!PK ܩ +endstream +endobj +429 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +427 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 429 0 R +>> +endobj +432 0 obj +<< +/Filter[/FlateDecode] +/Length 554 +>> +stream +xڵV=o0+8JH? d)h:Ȅc (0ʎtG{H`|-V7=IHrP|K Brɒ ,]@B; ꜳrʓwk'4)e -w`ߪ`g1lj=Z!o& +(6<uT;֗N]=חLڢol]OM~.Rn}5om +endstream +endobj +433 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +431 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 433 0 R +>> +endobj +436 0 obj +<< +/Filter[/FlateDecode] +/Length 592 +>> +stream +xڵV=o0+8J5(?t)j2Hk 9Q/*hDw=CngkʑID?h(’%JMThfAĴ~RFXfi6g,a480T'6zmq/iQ6qjSyEg|,'C6@aNq{U[oO织}km24,M[2d[Q$e,G:L=GՆfYajYɺzzVYی7Ðv07fϾ.H낷s ZϐywBtP–:֦Pw26t}TD+Phr1ɾ% +endstream +endobj +437 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +435 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 437 0 R +>> +endobj +440 0 obj +<< +/Filter[/FlateDecode] +/Length 623 +>> +stream +xڵWn0+x*P&)K^:E{luz8A Kq,m'H"C{fhJWYb +d)hKd5h +(n ƥM +PVɯپ׼ΈzR̩Zg(m_ u|nS6#cr+}+rk#vr"Rߎ0ҁF˄&~ѸMWEi31pcҸƮ!Z";)VyD!zn;'5ڧ~ F*f=!0F37REBUJ0#$Jҏ\a/ ./eԨV7R&XM}rNmX#[O.5Eӊ%q"eⅷ>\tDը(T^T_~攺WS2S^+⺖3HӞWq 'H Bޛ.z]z}뇴  5}ޘEao_퓏$U)OJ~}Oo>u]Ifh! + \«IyV}^!c3O屄Өn\RpE,бH[7K9 +endstream +endobj +441 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +439 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 441 0 R +>> +endobj +444 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xOO0~AR֖h܌ 7d.&f3n-0-c\Ӿo^+`n6-0*Vo@X`9sSPpqZJ DsEF3@}.:EәfVv.qz]ŜN?qB?<Gp#`RGA^% ꥌѸ~D v|"O~;UĞrޓoU0lktGҦ2Zlf{e12ɧ}rA6^A<Rߟ˛j|n7a[_"i`c)$*L 1O~@1 +endstream +endobj +445 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +443 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 445 0 R +>> +endobj +448 0 obj +<< +/Filter[/FlateDecode] +/Length 561 +>> +stream +xڽVM0WL1CVJ,4RQJlYB04r=afM\u Cґ> +3$#>uG 3\`cN%iGjՊ-]; Ka_p"ndaʬn=3 ޫd*{єF9ўo`x>/1y0i!Le!  Ia[# O=mޮ <4"3 +|ZIaeD0"=y &1鑭U,w;M1G d M\͔Z1S*"|ڧ cY)r}uzrot=ԟ8_}-aR/bƷȿѳGKn|TT0h8UV'e6SUؗ#AUmIGͭ'u{L=]*0a Hm|H~ſwG}-͇rS6YtOlOq~e0bߦⰋ?vqӌfL ܩWr~]$;2**e/4| +endstream +endobj +449 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +447 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 449 0 R +>> +endobj +452 0 obj +<< +/Filter[/FlateDecode] +/Length 161 +>> +stream +x}0 Dwc28iQ&*R "!uw~AZ2+vPC- )>YOGlCn.-4U޺> Ҿ&iΫ]ř,M+&2): +endstream +endobj +453 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +451 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 453 0 R +>> +endobj +456 0 obj +<< +/Filter[/FlateDecode] +/Length 1039 +>> +stream +xڽWM6Wh[!_⇁q/ֻ@ ?CR)AD 9|HBP>!y~]I"$#DXs"K5fܸ߯^+dU.tKWp`,-[*-’s>fiHqJ2( Iy` 02KV f.($,ă=]νCq>0ltG 0M/DG[ `փp6}44).s2xMfA c&db5NB-& 05 LĘ }pڣG] w.YR(XuL] N3w2=FW k)e8N1:-JB'MX R(|hhU K`/A>Gde.uC_"q n̸Cqiʘ}σI3,d/ aI"u&Hț'՝ 2 LN(*9bhe9VQ,ʉ Yeq4NGX^SCY%<{@Ez-E@H{x:jŮUnylַJ\j{c %_ nJ].pb2FQyWUp߁}ðfݥlOIЇs|*$ͭϩ.EZ@ygh#[wg%YNb~MLX-騇霑hm2crm߇ju=OOp:u!c G,T:޼i@ڸ?JJk(0nqs y<)3 +(O,+̹5 >_,oQkrf]q*QrOYpx61~'# +endstream +endobj +457 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +455 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 457 0 R +>> +endobj +460 0 obj +<< +/Filter[/FlateDecode] +/Length 276 +>> +stream +xuQn0m@*j[@x HZJ!^% z-("FBhNBvӾ! M.vɘGԓ+>ɚƒs=,*;IM65\1>"~aS6s> +endobj +459 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 461 0 R +>> +endobj +464 0 obj +<< +/Filter[/FlateDecode] +/Length 1032 +>> +stream +xڽWM6W(!R"i`/E7A{lK, )nf.ȏC%Y^;H-ͼ7L8|$ ywZTd)9wx4b~Xf (]"@ B es*fCJRه֥vg3m - 3D$P|2;:S>\!,s&sA'kVhzL L~\M{;!0m"z +Mb0 +$\^2PImܔDeHIQs'ȳNDtEtZJfDIY+plkX`iq=V1i0c"9RLZ(IG +XDaQX:cJδ@œ]?e@DN4dVMD27[33vː&[g"e203 &1H JL7(N[́m#ÏndnnJԄ m􀞤Feϊ<+Ǒ]̻]%C/EID/!iÊhfw(}v1. yP=ˬ*j¦^\ݖrӵ)TJRim+/ͼ㓻suFkԵ:lw%vY[KqێiGMGM,U +zu_]Yh߆?y(zg+q3ݤc +琺^7+O+0^UY?{x"3Sccܨ, +gYtɆ +q'MƦ#;y]dhSdC!M*ZOA+96G**pB@Uс ,kϑ(i^{uz::؛nSoYڭO["Zܵ员C(&n'fG0qRwZT#X3cy;+TGn7v/e᪂> +endstream +endobj +465 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +463 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 465 0 R +>> +endobj +468 0 obj +<< +/Filter[/FlateDecode] +/Length 268 +>> +stream +xuQ=O0U#1"7Q24 ?'Dݽ{a@F@zf6VD#H@KݾP}J(\ s2}tg;YSxpwۣE]UeeyM?d' 2ƦEvٰ-Y&A7M趐i +s~ +B+Nuw, ITƞO]uxʃ;=z,*ˆC3˱47_n:| +endstream +endobj +469 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +467 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 469 0 R +>> +endobj +472 0 obj +<< +/Filter[/FlateDecode] +/Length 1142 +>> +stream +xXMo7W(Y!ER.cS V'A!wX#rf8ޛ!eo"B1GbP۝{*ݭxkC<&*!d2i UO&D.1,hqg,ȯ7X"Yys%B$mH:!KNzW͔!<.fRJI{8fbͳSUy + lxVΆ;caKfrZ˲ +lLoZbm +3EOB El @aJ%x)5dF-2ϞP< FҋDt69gP3!ךF+`Ε% 3N6x| &\Mp&Aܜrgh&Wbۚo͛:d̮l0fp-ÅƝXxlhs*@RϨx<k*7B뒱}꽻S`PPHPp6`v\71,u.D +o`KvC(l \Wؤ9.q0, ('HML?H [f;Nd$Q#9R6?|>nKB#(dҗRgurbN1J`~q ,%Ï"̄ Y~vRypU`I,$EluO5^HG(i1OG8~o_on|8 Naؿ:O̖Thq"P֢V;lP\? +FלVj>_cT1yz ?U̺نѸ.#yv5u[>RE{6YD y*}ߩ88m܏R+` _5jy}+}@ eR1g r;ias )*E^ ӨqrH=/Uo L#<;ūj^Lw(# +-6O?W&e +endstream +endobj +473 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +471 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 473 0 R +>> +endobj +476 0 obj +<< +/Filter[/FlateDecode] +/Length 633 +>> +stream +xڭVn0+x,&)>u=5)JYp :@>+a;}H."J(Edtq2(>!͈f+ND駇!Z ?_X?!,̲ע[Y1*ik6hlp5ȻrWG؞WDf +) fE)`yk+연X'Z"痳'QoEx4/]3~^V"ݝǍbUXRQ =  ֒tU0N 6*aTn;6|3n=8`$pT2hKayrHT 2x[>t"x> +endobj +475 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 477 0 R +>> +endobj +480 0 obj +<< +/Filter[/FlateDecode] +/Length 632 +>> +stream +xڭVM0Wp4P=Klժ.=] 4Zn? LhLyo1ʘ{Ƿ\xxSŽ(Nq I"Ω(g w;R4F`JxGKO $vO|y<`U?7JqRJ h5m:!$T;{3yGUw)D"(uu..H#FZ?@X&j~28rʧNx M$C:b] !KkBAshsfm6^]W'4jƑO[YZw͋'i d8ݺ޲%N~';ϕJ3 PQ=t-icwh-qܵ5LJpRch2bL%>$gUG_|>6b<9 c#2^we>V焹M7y@e'Sg'IzU' \$b$ɵ^qGb#gT&Ԡ:91,Ao-m9im=_d?OD{W͒73~ ^ߜۤ2r)hakeF3e,7> +endobj +479 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 481 0 R +>> +endobj +484 0 obj +<< +/Filter[/FlateDecode] +/Length 611 +>> +stream +xڭVKo0WEf~Dʥj-RDI[i|捇8R؃Y3盙 Ag/Sq*TF"X%*>L0bJ$! KZ$8KA,2)nLD/_X22-k +8 *9@9e>-Gg=Jݒ_MLuXX2"[嵿 G/\)j Lpt ˟r?([MCon*i8*u,S@زQJ؈]$`(%]-W^`A3v ⋆W-Pŏ3r%]wݍЭ! C~\U# +wI'/o&TuH3ew]ǚU159(Mm_mk+'1ī;o!~R)rnZ%1xPc?wha +endstream +endobj +485 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +483 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 485 0 R +>> +endobj +488 0 obj +<< +/Filter[/FlateDecode] +/Length 640 +>> +stream +xڭVK0Wp"c^fr+=Fjw?Ƙ%Q3osBHRH A Y&է)B2D<͑kDHgJ2Ii} fNt qR:%[cKt.0vC>3&H:evdWN>*bW=$/ :s;*9 +PReR%fRvQnϗrxf1,o1%Bb(-|ҜMq6$e&nz.m>4MAP ui+%f+c={B,DIoĸ2gfްׯJ.P[mapQlyЊS6^@|SH }RS7 +#l; +v+}G+g㕟`ʈ.΃wE +endstream +endobj +489 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +487 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 489 0 R +>> +endobj +492 0 obj +<< +/Filter[/FlateDecode] +/Length 688 +>> +stream +xڭWMs0Wp2’x&vtcí􀱝g&?$ϵ.X{ (up&$H"']99$⁒Nz%GbA#K#L*roˡa,HU(˳0롗vRѪ]CWYCL hiCÓL`'[$5bq-LfGwYY+‚+2!9"x R } /s[юͼv{tt`C{"`jbe[MNN{pעoN~ 9mY;|v#Ò#0,HPKKv (JQ0Luj>'T3(}Tk-k[Dnt8\7A.ZY:QU@/mNf`o + BغB Iչ oAj Wp)zѬgÂu95fr[oJ/! Ď=Zg(.Ns$I&p邤-~Ygm&> +endobj +491 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 493 0 R +>> +endobj +496 0 obj +<< +/Filter[/FlateDecode] +/Length 196 +>> +stream +xu?0w?ō%J`t4A$ࠉ^E޻@p!Av^B +"`` $7_  ~d| )R. *;L:}L](S3uSP*f_uY7EXGQͿq{5Ҋ!6 R +endstream +endobj +497 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +495 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 497 0 R +>> +endobj +500 0 obj +<< +/Filter[/FlateDecode] +/Length 1101 +>> +stream +xXKo7WGc2KQhri6dEu +ȏ]r\;Az]y͐a1rC+ hN"va]q.-wjݯ4qioR M~ +gn5T@]Txr4CCG*m/"9Ju'앬,&F)j[5E"@yQL[/UN|qC9'cMYg[ǹZL/ԖcL&V$Tkw9YhFD1Ch P] Adʟ#y: +rR1!\RkF;3k jm^mFyGPnZ|kJ9gY&wflF|ɔ39aT@RHSƱWGHWn8HGpʭxy&`g~+ }HvE  JP&Hx}َyi .pMFo mLI u f̍0nN=7R9zoy#TˍZ[r*FIP~$`\II*b(z_.u[ĝaeJ0tRB|?>HܪUw :\37cn;3V+41!%=ݍ^Ny])O8aA^G!V;7ב˗wǛXEj6jiދz%/D/AC~WF!7y>2Lw[ >i֭/0R1-D#|5О&~mӾqYP^UI5{h}:$9Ιe6^kSUL_Bԧ+eeFpӄU d카 s sdJQ  %`lrrr60B`G쮟?x»{on?ի||x/~/(spt@ȩ#9 >?᠟8(=%90_uO:KT~v.']I%Ǫ+W3JFY"u (D +endstream +endobj +501 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +499 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 501 0 R +>> +endobj +504 0 obj +<< +/Filter[/FlateDecode] +/Length 675 +>> +stream +xڵVK0Wp?1DKl[Tw%@iR&?~!`Cm{Bogc< qz/#8+>!nxx~9۾w6_n;q,gՃ@($&q}7ѹG7jc섏a*lZO' ]{y^:n B&H*-ƙ2m\&- +VV) #3Y&ke`? D@n:0ZPt#TʹDC(sb%=yjϞr3үVU6bE4-6wͽ:<96A:l T8_G ,_.r2хub?qQXi&p*6 E@&9ߝꬡ.NpT㜅CIX'+ +?CU;h$H.7 nf*w֌~ًvLq)jy FLQ2%uiP]%I\$70U]> +endobj +503 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 505 0 R +>> +endobj +508 0 obj +<< +/Filter[/FlateDecode] +/Length 598 +>> +stream +xWM0+|Lc+qAt! &*]r(x%nm77SDjB=zۭ) Uu_QK"ܰ{wS`ĂҦ}DaJkVfx OILE+}0`(UT8xq3ƈvʌ-ĽGe 7nry9`]}dB1~_59 +/*^yO7` s*0Lkm_?GA>cjwSI+u&3[ yFhr1 + X2I-'\j2Dbh!&qQZX]/IꯈnʪNPoQplJalo RR;@ iBJKR tʛipJY$\$S?]?n?%aنg7FX:A]Y)FAK,[xa&sYl&ke~{,㷻[v}m_5A\"T-5%^ +endstream +endobj +509 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +507 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 509 0 R +>> +endobj +512 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xV0+|$L<`)VZU=tX0i$j?`8Rc7q A S4+刃a\#S_WDpftMw((^s߉ A@I3&Ž'xjAqh?zg=K Lf0d/0X +~uEמ!i}VW;RY(B!S\FwX3i> +endobj +511 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 513 0 R +>> +endobj +516 0 obj +<< +/Filter[/FlateDecode] +/Length 196 +>> +stream +xu? @ w?E;$ZG6ϩ"JK{yP#B ]ƭ2 +!I%PkkmOBT!# +/T=J/r/iQr^zAdbKƚ6nE:_s m s +y>o~VE]_~_EYTSy4:2bPx(ꤩ[ITH +endstream +endobj +517 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +515 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 517 0 R +>> +endobj +520 0 obj +<< +/Filter[/FlateDecode] +/Length 1230 +>> +stream +xXKo6Wh KѦ@O@n @uȏ%Rcc7PgRKeܓL~~! H*$hFp*Ա9bj!{DfblQ{!u\@%F >Wz\ט"}s6[4W,U)8$k*(>8cڭrlT~&er;€Iw>6aw9Ƹi`i?upM*,[\^kD:uҫ8 +N&]_Ӧ?L<~/ +endstream +endobj +521 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +519 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 521 0 R +>> +endobj +524 0 obj +<< +/Filter[/FlateDecode] +/Length 676 +>> +stream +xVK0Wp<6GKln$h*M8Pi|^ΣjUr0Gq5|t ߝD)qBQ8n>z!]xN섄DgS ,)H qH\j6!st$M73%4h#6&pnC;KOʷDTv,q31823ql.f@unga)`p6,SlA8ĊW$Z͑E +(UyL`cI>Yg2^<Ю)& hDQ]֫o5| +endstream +endobj +525 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +523 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 525 0 R +>> +endobj +528 0 obj +<< +/Filter[/FlateDecode] +/Length 718 +>> +stream +xڝW=o0+4J1((uvlEd5 +Itp'R$V x$}|;&%)ǧC}`RWY#YYTe|| ZY2osљ\q.ͫi?lXѶ7}ۢm/{%a^w2l"sksm4<2RfǼ#.x8C9A>9q54&ڧ-"3Q^aׂ\yr=-8VQXT{ +Ƀ[0TuSme r2q( +^oo`b@%X݌_U Fr0@N]P_9PGX $DUQ~J8@mL2D/C4e+ D 5DCW%t)9BR0s +gy ZFY,S˴9n0(!(\;j h͟}?qw~y=|~??>;7E7=]G0x CR{St@· +8E N7X=t@\x 2K)KYˑNrthROcCa䄭=s<g'A9M`q޷+IϓF AX,gquŵaMB1$BѥR c5G +endstream +endobj +529 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +527 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 529 0 R +>> +endobj +532 0 obj +<< +/Filter[/FlateDecode] +/Length 627 +>> +stream +x=  +J;+0 _m\8JwM[܏`Z]m U [#\m +  ab)'=o@",WMwbf er$Z~q:܁ىuelΑj`aB56!3?gdAꑬcLѮع\ɫ +endstream +endobj +533 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +531 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 533 0 R +>> +endobj +536 0 obj +<< +/Filter[/FlateDecode] +/Length 552 +>> +stream +xڵVn0+xjPp R Z [ 'LJ")[Ht!H>fA$-Mo#h Q(0cA&M"$}1%"qEE篅G{' ]N.T:kueާ9V̭ ʺ׬mYT&<M&J̟S^tRZ%{ $|hph!^j$&ex SJw(8F  e$%d+@PmžJvrR>)ծx֛@\ +[ !%b}sϘij9u0M;Ai2y 󥘉a3r)`GD.鰽d`;VAYD۵XMHZjhz*␸/.a8U5b]ެ,/9pu8ѻ_3h3<`ǘ73a?,> +endobj +535 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 537 0 R +>> +endobj +540 0 obj +<< +/Filter[/FlateDecode] +/Length 1116 +>> +stream +xWKoFWekۀ)j!Z4LJme +.K!̷;ˏd4=~#,ί ZEwD3IP-I1K2Ige]>O` e2KuH_6yk|֮fQ%?dX)}U]EEᲝ;J!I IN=8?U ڀH_>y/_?_BԲ n 4gY0qVx{/Ey7b/.@/EyfrwwqӮnY{z[X'bdN񛪃3cj?0!ίarFAZ̈́Kjyef0J駱Z*]{76*%.ݘ䉷a5T(LЩWv "`VP` B|/<sGbYLW׺ɽ*ɬ없S9 A{'dQ瀥 +?]xVY0Ne6GNg#V,Ъj^g_QeH4w.fa8Ų&窠&_pg XgXksDԉʗ0CЯP#O L?a4"]BTD_7mcwB\-+L &Z<<ׂ-@0:~ P  =ĵ`BO>R%8@,^ -(w ˖ˇ<p.]ɱu1hO`AvpE,M#`<@Q@Ȁ*ٚW©O_ g|7*I`\ '/csrmɈw}qVhy o<yg8L~;"yO;XXe@`g>[mE` v{Xe?Lc(a}>oQ\\a-Ύ`<;Α|ʓrΑ 9NװM6A)}N]4 g8]Ƭ5TUT=mdNb?p!չE 5dVѕ?Kd*kyC)b%xxqdHd#A}/[+Q +endstream +endobj +541 0 obj +<< +/F14 67 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F12 59 0 R +/F13 63 0 R +>> +endobj +539 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 541 0 R +>> +endobj +544 0 obj +<< +/Filter[/FlateDecode] +/Length 1308 +>> +stream +xXKo7WҜ@-顇ƽ$JYQl.r.Z33pS~.~<;~% LB3a~3P ӳg҅cN{eʛ*Y@&l'2؉l[PLz{Y++0`ϸeZU+0P2_p Yo?)kU,X&Mu!%X ֻ/sMiǜ<*}3&HyL4ei&K#=$lCgY3mݟnBE|j +r 9ԺC,2n6SUe0 Aקy8I~M n_3ꟲCUtMh]tC e"Aݖ X_|Y "v (}Eڳs3Rкa"sOBeއH ߃\ڃx63Lwr*!+Ӌ|!r}Tc"7ћz$5eNQ []J䲼 STUo&JK'~ ?l/j\W7ޯwbstlcry޽_/Ѣ\m?h;_-ffǸ4WoZ$+0eּpDX辦eNJUJ͑= '4-k2 +(>SkhA=Y?\]z;/? DJ|>>"Sts1;CL{V}20(ϟO;l3 Y u5bcveHS"ɱRpMAS<πdgXi־+,> +endobj +543 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 545 0 R +>> +endobj +548 0 obj +<< +/Filter[/FlateDecode] +/Length 1019 +>> +stream +xWɎ7+x =rsX}d8b hd@>d/M6` ^$\ُRl |^^Û;RC7_n_7 I\hGTHZn+QݥaK ֳ8 {d)kwl#ar2\ZeR3!bđsǍc4a,U?c.2Rbt, r+k,qXT+q'5wTyF> !rGuG(;ֽV)L3ܹA=؉JmpCl勡/L\KTD9$BS1%,|Խ丒dgʬdmTQJԾ :wJmu&Mb;]u ڣ!daB"L^%HeGbU]ʆcM`·r rI[_ZQټtt/*k& VVƆa۳tڡrtԒ s Qm@h3=΄:;?bK &Wv/vzzU*SafjmZpډG`,GBS^ecRαATeMp+ хlA$[Ňڻ7Cvpbl9*mŖvIs/nz M/n%(ځA(^E!H)Dz|.cW\ǿΛq=v޼ZQ:ZzޔܖV7x,e 2/gXƋ6v=;YhkulBe b֑Li&a1qO_RiU (p ufZuNE[剭r3GB_$4ˏ]T}=r|ڜN4/+ +lqΧ{?"h|=<>n>4}TkbTuч +endstream +endobj +549 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +547 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 549 0 R +>> +endobj +554 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 553 0 R +/BaseFont/HDDSQW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +555 0 obj +<< +/Filter[/FlateDecode] +/Length 267 +>> +stream +xePn +V +ajRT)-ʁ8Pտ1n/0̲;.`=<4 !/!B+`Q 9-`ŽR O"D k\;xL A7[?Q&$y b{!TJ(t~`ڏ+eDtޕCRq&smFW 2rv'`Z(6+&>OuZ١㖫\_P۪D>X,>?MkdS +endstream +endobj +556 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 554 0 R +>> +endobj +551 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 556 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/DAGAHN+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4022 +/Length3 533 +/Length 4570 +>> +stream +xgXۚiRR wB%@Ո*)Ҥ(5tiREH833sͷ|>YzOj*A`X ^LR\ T30Jj8$ bax$(y$% +`)@ǡ]\@A5.y Ca 8܁X8!@[&Ho$$%4tF1L:(g> +s +)X?D$ !YX 5} a0>x$hE q[- hwu0w4qqGAIhoME@ q>?$!ZmC>_M( {+Z?~@[8$yn<_|a8ƸM0 CKw(UU_4PLJ-# _}RG( o}p8$_p~(tH?$ņ&w&2rݲ(T&{>ؽE~A|^ 7pK)ȫ*@1ߟl]h;., ;2HlD.޳ydCHFgBb>q_/Q$3a_)!M 愈~vfіHrdBy*djp5x_P/pIֺKڊKY[T>zVgz/%\:jQ!a'"EOeA>$5U2` 1+N8L eg/)ǩIg'951'  q/2ƴ'vM>Kǒ*^C^1Ob9K#T%٩ʢM9m?i)<׬[`{\t=E oݠp:җmR;"iĺØ~E3:5RGӎ )p)9 +\~Q3i n)!W4vmdr"H&J1NɏNiɸ\: !j)(8!0X +˪9:~K9p#IdC; ޔևPs=FЫR#ڱ$N@1;ex[]ӔdiVoy'ӝoáz*\Gu~PkqaIǂ,fV7V,DNn !QPO܀#FLӌ[kܜS^6dIXwo A<>FR})cKk KG ڍ,9rGn)d^XN[cosP-i T݉.,)Z/iDa.(J\}aJI]YL%y0cu.ae/C];f4@wIWl|Z!˚p]bH_ +c0G(Δ~xDN)Vu)q,$t>Ue49k)-+WfB&pv LW@;Th[*eLOeH <=;X + + ^r+g@J%]PA2mX>fu;k ;omb6|f&Uzء)݂EB&kA'T{|pfO>Re˿x0ڣƳzҚ>#wriXěǛЙm"'݈wІ3V{巠$93_\Rm~t7'E$8W/u!R)WY&j4^DVh[O˹h `/!37>(p )!;XeؔYȦxKM> Jp>n]RT%RϨ#n|cxiى]v֓ϗb0˽Gb[xg/9UTn%;ЪQ&s+VϭA,QਁPa[>G^˶. +SFOӥ_*)02t;peynx…FD)?d͔N9EJz#Ke~1C|gg+ƍ^\ F3 }d-6Au-xNUJpݥxya9GU,1lc'9>A!Y-b*x-q4#1qN&pk,?ҨOv.^RU, +9a:Jh/'D*zie`)"*}'{Ts2 +,mԛfwPh>K7_JXZym!v2ѢY7}V\֠ +Z!VM[6U揉%cF. &A H )6ELJ[H{jݞ{.Α5Lkqv06}ۚw-_#f0/v#{Oq}@UV# + (deۥx> O[rt_ vQLU8nC69 ^*gjFząp"(;jgע Ð5u9()^vNm]o!4ơ, _벞%tS〯UwVeߏޔ1k?0BWꐌ-3$^jmY1{״,q0wל*y0F< \>y>^_ir;I/u`BVؔOf2h:ɠͽ ] \,]RfSq蘯qNso&̘\m֘bY9ǻԠqB@=_mwpLaZ#< QACkT4߯9<O?)0d%yh?T8BF.hbkgr4jDA +UGúwX4n+|EnQٴ*+Wr4}VVD%UIwj#,4RiE8c;`쯐i-IEu3Rn}*x*L=ז {9$6s}岫X|³Ga5&^{#z0/NfZ`UEH]s#_IEހkQHUO$V\j>SnA8V;gCe5Y=:PɈ3B(iC۷Ha)2wŵDc-GaA_hY'㪪"Vaq|Y|e%M't4]%}VUi4=Ipm%0koOʎh]_9- ]^hț ? ht'{V7-(āWĞ}}z g㢱hs1["ă,V:A\ Ed>x3':~ لs;éׇ4_5iF֠.*y?;l+:T<+7ȿI0fUI>4N7e36OV Ã&s_Ҏ'?otCFfK>,^^fPY^Pe~M8Q -9RBגxAW6yڄN5ެcy4 C2iD8cgcK/SJ>ʒ)?  8(DR'R +PԶ$reqRn3~993m 5mږOݑ0ù1+ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/RNVRKZ+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{oR $@$ M  +ATi""H J " v{9s>g7׬z޵xLThg +&%. ͤ)qI:"^0,HK~n$ u"# hoԅpT= 0aC\`(D`qBfl?.IIp pF!@0z[p?\oNa7%p+H4o1Cp-?Gs6E`C4!{W C!]TP@/ 髅 DMXwE#=?$̌mE5M`H/_= 2m4\p`yaRSCb7y99 B!t5eT]0Ͽ}Y"ODs眮sin8nj-^˸W<~E)>q76dg$1@[9:Ҿ؅ñE\Zv!IDa:[ruDb]h`GJ-xf7[XO؛)8VMdBb3eL3@?U4ik@nȊf 9V qy_ܳta! CޥEvquLljԅc=* +G ^fQ gFrbH9X~H~!_F,m#T by#߰*VP!!:'^X&;7ug4੨wR+n<8}|ɼ05 +|89U3-N{1V̜Z+P^6)?svٳws"9Od竌m'vɼ;s{2:mO/Nל8z-9s SrC/uu_Z?# jY[".W>5rtQf^{͒DžhЊvr*R ֲاmdltԖ[>."c% HcZzfEsXsjQ*YVX[T>04o730ڨd!DكӝxAY^>cu(NE699~6-D&'K+)F)LC_핽Fo}g` ዆]Nrdvmsd%9'~VE\y C +L HyI9xD=n)Kݣ}FXtghipW"{!Y}M٭z$Y*B&\=1PpWbټLK{aLSV-|cX=&<$zx6ی#8?r&ɪ>_f!z˘6k$gM){!qW8~^}ζ)k#jIJE3$"4*ۀqd,AoImt>14F|S'GԛD3&ݪO`A-_acw%7?%c,0)40]>rP_?rf}odyhl C"[HUUaF:|7,C$讃aЁl3uk#<nO0]>ؾjlIR8.V&W^fP:7ka&럌~xeJҘCWTSՁRfxh-㸁_ꪝT +f/nk2T"w~OYmqÁk0#4va +c:/w^K6k!aqKOʚ{nE0Qk]l$a+᳧Ǘȃ8A1fBۃro{U6詫߂r{i)AnO/uf1tϬ2WYQlTc+qK5 zX_ +R/ud9xZu)xEl"or[N\YmᬒD +m^4T;x"quF~/M|,C8J;{ܿS5;Tʽ]wfC[p4C/oӁ$sN1>G"j]wpp9p.RӳȖW3T mV$#?PK:x!C~<ᯯ9]P2@ +տf&jSs&t3JWW2U&" _^@)/):h_gXu7 45 +ƀC9/õ 4+{3+>v}ѽO~+TRءH7*׶h{bFZLS^'0^=r6ak~܀iX8n^|f YFQ[jUі ڔ7̓)Q #Xװt ǀ(~f4=-ItcM!n{:@JNoȶ}qm ;/|ү],Xy@O& ^˄:(t?^*Y;޻#28t,!i|wA'+&^Ŧe2qn@g"a;:aQ7Z-~jz९]lR^٧tM pFK_OkNH.7q8Umot.j!͎ +=:(eKBPZƟɄ- Akh{&ܬgT:ܴYNqͬSJd%_\jpI~<Q+ +o2}FUs;i9:=>V1yku﶑lu G 1׸YNq9n H)i_PWR:>yo١l8= !S;'<'Zb-ǻ.LJ$EIcsuBq/ZZ:L~0EdDu=B6em.ן' cOm~!e' +__U&]U fON_];2wUrjV@Fp85ޠLq"860PKרl=N(̃ +Gy+mm#xK0"VGa %<ܝE D*a=gw]xe'n|: +cz&l>/q.jaUgT-t@qJ +&&4(e&BᶶEqj*;^A];Z%lZW<Niۿ]eguAv׸苼a❫RR(k6 +twZ5SEU Ko)e^XՖ. 8d-ɈQy1YM|X l0'f0N̦ר[;WA ב|sVBtWȗKݵvxTOwǪk>;[HSYaP!SJ)V:y! ` F%pG^e˒xx豟_WEEg]3H;G,0;n}qv 92GH H[%:w5~Uu_tT3? b&u4 +4j̤lK/Y2MY> T=dsC0]J.{Mi:OK7!NfƝu i0I!,]&%Hlp&2.JzFs-tp1]$} ]Aow+~RPɤ<5sPǽ$Ӂ_7,ߺ`V qasHO!gwS^WǜH(}fFܦ65墇ۇ} n5$p}Qfܞ91#<=e?kRx@LX #Eg~ v߄m;7r N)%}m&f bLANl㲚6bGaojy#B- u*]8\"Į"Oꃖd3|QؓDىY +)Y +QnTŜJgz(ÓQ.DSΙ  dP T> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON%=]) 뿎_E5%a_P38Z>s/_3[Ljf~h:`#JZ {ϸR jQguM-qi+30-q10>i ؼ_kJbXFǫ7>.zUbH;VXnFT嫺^J{BW16O6iH$ňsv`zS8d?06-JR6]UJt7]]"\x RqWJE\EǠvwB1ힱFnC6_5|b&9ZhBc| eӀ^ zѡRo[;AQ8+[e=Mщ#hKzcP' o<O~PIltJH t*&G.é x`BEaƼP3\ŗ$~^bk\'/S|8J*D=̱ǼCP2+e"|7뤰o+݈ c~>1sFbޔ?˪u'4O*&lQ)^rVjpk4^eh|ۏcvI;„k)RkZ=+Z{h+MPD0 lŸ)N*&$%$gCGtBkq=d`o=dў֟7uT` 撃|{1""ғ_Ip(6pOt4MgY]"QF'UC7v,va:8tۦ4(aHaS*314\5tbIц=xrH!͟;&{2sRܘq1r$ f^ur!'NA(a%tq%ND?Ylz͚NAxhG"4[qN//ζ]~ʫrH !@ײJvԏ{Hs*Wt|oD$vqfOQHr}$?Ɨ}C} +ÁaSq;h"iޔq 1{ޘ&LiVpd"`:=n Mh]lQB",{Hr ƳscܚW^J֏a?jrۢ竨 ?9n|A~մDx3-;bo_Ź$yUh%EvljVr>bAs?]j'/"l c2xk3VeOu-99Ɯ;O:2O hCtL8LEȁKpv:uu|ЙwvG\`z(4›@swqŜ;#GYgpMJ291t<:>gZ/*Cm94k<>4Ql1?v$i0ZFDiϐ}hšW^@tvJoOl՜痤Ȧxpm9S4oK\GMGྸ8TٲaYBڰ/?X Rn[UX&:1W"4;dLG7QXz_}R+dV}#(~OѮ1R]Mv4!/1-Ll_ Ьi1r}(HE g}GjiVU79݇!}gUx 77 +%Z6kU@E۪?=mbYP& 􀀗.o'FM2 +19B|?SbeCbSϬI*G!~NΪD4}@׸C%eH>'|tvq.BǷu?3e7$M v1K]BZ޲])Y/&}Dlk<=B,O_ cBj~2!\E^h`rG҃g5sn>(в}YPB+sCtԬCe!?Tt:2x`Dv Vp2Ѵ1qޅ&J"4) 1?n(i?ƜiETB *k5بFh2ެDk#_ۙͼ= LeU0ťA3qjT$`7.']({3Nbźz]tpxGƥy`d&Pi8J~jO?T+Cz`Mw[ZoT(-IEBӞx<4\h *`cIB2:p lG~Lʥ4g>oe +5O!"[gA$1܃u*ǹZz#lCzNQIi I9H/JSAZs6nY{&DȤS<$ >5+$0:M) CXxX1!pLF\l0h0^Z͒ӎnZkVB#ݝKˑ?"gq_ +m)fǩ ccHkxG7 reJeauJ +𡎞ΠZzsS* <> 5A6|Hr{ߏ*(4yq'=J0dСdMm=EfzSRVqn3;Ԓ§m,1?'zET>.瞕3$̻#4SI9 QR +(sd"L^A^,L{.^Uv'6e,XL9yݎN,ڹDt2)\4 +."iEs~wg#~*X| o^Ќ Q3z:YJ!!/upyydBXy~ڬۈ( +=mo^O^a uI2LOlֹsT&jx)߿A䡐f@g4"N|;@K +Gm_ Ujh/7HM *މ]o$[לSwTѦ./{Z7b޳/JxlLa"f^nXgb8GzlII-~ 95epu"yS^ȴ-.0*ϡsc3 !x,DH DYL9-r:/*(JP7tJD} u5yK9ܒ1CɎϽ-sDWvhEp͗͘3%6$_VZJ'tږ{=@I@a 8VFZX׶*^p_LqsK(}̕Jo>x\n@]!]n=@.S{jF踰8ICϴqAShK65ƸZKLt6Gs͖uhVY"rYrB+}d:8Z͟0 R(y qTOdNkQqi_ %g{Ib}Sv'kd!#d|Q&YewI-_bcCtv셔劆uL xW8So^iGh~ݒo{a%lHM`n-Qq;>3p}VJ%XXn.sC< 6xRI)KcVs2M|숢ބ}a(AF _H;g'SawJ6d;MD(#؎lƣ^~#@J:xi{/ZuK]}^ΡruH +"575<Ψ5]ݢn Vf*@]$LʼncjUk+(vEjZN%.&AuĢL+U6`3hC m]u%>"9ydL!"B,5}e9pz&3S]E.cӅ iׇ ^lzV]ilEQSJdǯoe_sv圢mjAitRt$_faA2m14b`HiiKrtv%8[(Ԯdu#l!#X|=1 8ATw#dv>+)T gAّ`+PMVvy& W.yU̫p(h5'lEUGH;im\gCI©ͺ vG<թW9k(`S!=.338>:"z%'%iR@eIֺt7^_|#qݺ4x4h. kwf;ͷ/Q aJU.씿}pi?Gc}bgÁuIhxK1Ѱyj1Fm5P0tz[@-+jOsM K7ΪuAiCwiA"q*KO͓ka^ه$֎a-7G]g}/}ũC?̨ f8ʼnjqbwxV c/_5.m#6Cci07-LHz%Z S +ӧ{؃l=f+|zʰӤz~:|r7C7^϶"/tc}F2R;KRc^roY?liQz7OwuZ&6zY`Gwr~5xbcdxM;VGq Ք \IO1]Ge&KfZҡdGBÃF:޵@tox_D ʐYCD{<@~k'm/5Tms, +$=)2w/i;xAKq̐I~%_ k%^_ïyw̄#K%ykU孏##n}=DXPn.H y xMpl6 ]FDf?At=yڧVJB~^:~%ޕDBÏbFx6Npz<$ʠ(Q8z<`L~/d]S!^`̯jSk /(6A4cb]#mF?.x7+CgZ ./`2yc07Z +}h(Spoͱ>"YW"VAzITŗ_jx43#2woװ*)LSjܒ3NH/ ' # ~|FnP`woY' \d1Ol;#g*.J[o +무W [,DcpHqR">Gd;w.זvƴz6? Y*mݻ/Hd5 +S߾ ܜx:ye]ZGx3xìzoPXuJ_˳ɱJa+P;POb 0nJ +4Ug LEp$y9C%R8bfyCu9_6W@܇p1kBtC&&׏13!vROD +!a`+U'Ev"r)3knGTzΕo/}v=FuTKDc62^1D֣}EpFer].Lw)pznfz7X%Gwh"Į#Pr.ҧ^%d9;-KnvRɧkjBt}?o+c;~r\7rt9Z޶ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/CUZXIF+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %WL3y?vMZªmӛK6I\+-->aP(O/ӗ:0TzGԇASdG.Cw^.t\\[d]ѶMi߭_p5OnPVrzvA&jv0W*4{r:J\W^o}.{8=Cʎ)L2yܪvߣ[/6uE 1vˬ*fחjP9]_w5!gM}H0tZTtdQ!zwaJH#[ *iUsՕu-i1Uw.[;lu *$8:DzRe[eWrqo􂥔{=xHYY:\E#Sߐ$0`(9AivOQ<]c:[nxm@/y?*3>ߎ6S ]-uq^9+rϖ%w +b֠m+υ3?{K&܃I)2-s 9{}я<[;i"RDP2)\Pq#1U6ݦ4bA?'z\]CPCrro2%>* IVBW2е*?c@91p;'5{ NKvKs葻R,K\@_9ic[A\ooF+n~R ;W %QG\ɴW,&ϐ:䨹Ti$ZX.O%j].ph ړkVobU4'}<# LS&D\>ߑi0`Dxfrk_ KJ ~O>$6; W&np t簰X۠ +quK@$m3bv3hQ9UOX@Њ+{ӷCyN'JTV5c{a 1cc2s/)Hbh$PP2)aЬMd(eN'3+$W2谢nU1! ;ݍ~4=ؐP.wOdH=_:fUNx`LL~ +;GDI&'(dF69O+ztIihe!,-ysh*V3nN:7 *5۠wId~#k wPU%l˳R26' ?_[ ty|4sփF$_\X̉2zZ[:e+y4\3|WW3]qi RL9^#:+EscbHLMg\{[W _֟'(7G0]7rFW;Iz˄0^%-pFb$/Tl^(v. 1;j<F3F:R Chy N(sIܻuuP +E]S}ǟ@K4*b-]dUy`! {rjznkT#+?McbBՁ+V܎^FscAYc季52Ƭ ;?B_" +kYv۝#.Lit$}f0ZH-R|4Gקv b"DKE.ZѤ<} !X&r_kMلCT>9(DLtyo CV7[uSryǝͬÄaW.׿<nqZ"GSzrR7kWV~eg/R< + p9V-Z7i3ν(辞Wv3"&%#U[ !I\2{'[&4#\]C_ȉY,v?9I`뒔AVBAu +2ؽ;iX+T05MAKaZw5q\]VůLy]{ =Opi g)!&i i. ӯtYVy!6PyvKqUϱD=< + ^;>3-Ry\{{^g=7? kքˊ:&?W,ݙqf㥩gvk;=u)KlAJ\W u_ƎS|&Y8nKߐ3a {%zC{ B/-}G4 2ez{Z2Q QmL?k X$7e}l'T%}V,O8|Uxj:l^P>JF`?`[ E&zWFDEB^e78,EٕVM`.DSFeҹ,?[_NdW\MnkT&'6o'\[>jed}Ԃ;\"T ui~pPvjikݛl))BN"̥ĖE4uqv%S6OMHm.ɷثCGd^<L]+"5=rQ'/L#-l"ϥݯH"`s=!<*9EPiﺰ-ntk8=|I_>L%Ne/:_R0xcųra !gzmϣ5֭{>gϰˈg>1>u8lLŘ# +*Ik]1suT-w9F|q=|RC,i,n\֣7F>~i~ElW&BFmd]ucYR!=NA1pbsO:,rAג=EO- { сw|Ŀxp =ӗYO +Iϟ,Ϙ= U֞ߥU;׼;rܼ-{pܾ©zsDm}'Ή +/NU^K|N.hz]\vu%u+1ǫl=$׫&Y:M:p B־8S*^ZfIfd5Kſ ?Q|bG%b!.{.ޢzbISļ(񹁏j] lJDD!Rz$O;uE(8QPU3$v4gܕ$9&$;M}+Ҧ/$xxrd(pv>pk/mPz Ӗf9[r,C%i4(8#p*,xIKkcT?;y%L~x6Sy?D# \؇Y +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/LMGIYY+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1R&zU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \Qxn +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/ODAUEJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1061 +/Length2 2813 +/Length3 534 +/Length 3512 +>> +stream +xSiPRJҠ2OO + BTHwŋb6::Hߋ 5_v>ߘrZS=$*/NYc<5铄!a~ᅫmůW*$(DY1ϔ 2W,^>ha<>a܌$7Lc։izTK΍kv ,u(J>Wԩ%114^SdQ]Ue[|W.,E#v#vu9_˾Y}eҝsp޹|['p I(gc#eV$`dbib-ܲ)s{C>L*~칤"#nwE3L %ًSCpnڶz} /'aZgjW +2r/bd'>)'0*B (sJ ԜT)H陾ȷmuK(߰kBdLr +Yjdi_͚0)Xds% Jc3yexKsO'rj!T%nTG^ <{mJ#|~T 6'--:oSV9>!+%ymR``w`Cljkx/4Fok@ǻkWZ?&_0rі<|9ϸ,m7 .Wڅ#G9nVHVmi}S<{s҄mԄ}寊1]03i}__{z>^Y|P}=N#@zL#^p5HqP` uelkuqkt%e!}\I(cjgiœ/jb2K8.3pF/o)Q-#yF+ 1tgL&>Vɬ.JXfL9BüGlāp~نiE֏}[hDLMnsC5p.Νv.l~"iΐM;V",JmWy㎦\}1~&KKx}EtVw/6 J.|-/ 3(UHW4;a_:F\0v|+t$J?ȸrd|Ò\w3ӛYQrDa>/Tvy--6,le";G$б ݗt5 =ij%_N$>e{a[܌,rJyU#{P){:K8 +P0g|ݵ.__Z" TP8EػZhA0!o{ơcLOn8_`3dfT^mz"ol-}=ePGm 8_V&2tj,}X٭UaK{a+eu]8Ϲ Ž!EMxU %zKGy{Lˢz4Fl%k[m)-2LfŎFTy,|nnҩ/HWoq{dɘ3wF[&KySvڴھ}qbhYE$6窪CZ"ic(ː"[~m +g'5^"V,*vߨUVu'xJU.aڅ-b[>l8Qʈ)P޻=NynwEl=t1ZK*g:]i}IC)_E7]1GxqFTA4'%.,s!ir>2N&J!,N(,[Xm9*$ӷi!sﱳlcT.]Z0o.$KSXiT69t +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/JVWFOH+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2312 +/Length3 533 +/Length 2859 +>> +stream +xy<ǩ.K%O"Č4KD cYDh*kȒ5")YNIeȾo,F8=t?s;<ݿ\ϭj#{d !%lpEES +$3 D}}N44.R[ãC)_< P6UL@ +!6 bKi00!c߷Pc 8X H<߱,I>d@ +)m.@ +͉#Q%on`ps:h cX8tHl8Bqz]KH| EhZ?u՜4,$~%ٞu+gݟ]; Ds _5z{JBmd 80$Th49$ @5o\KՆgD-mKP@}?k@0\ +O +-es`ԌTڣJ .!Jf}j:|c:.Hz/poH`w4h׽?dվ޻fܾ$Ǭ;//߁I0o0#MUz)pIӧa^l6:5 +ǚ:1o7 +$G?8<".8LI0$:[Y#x]b _hd YJA]~(B*l>{Nfq^9n=W2㼳c7~$ԣCܛq"kxMd3+loYi)S=t{7&Z]d\y L([PaVńIjpME >ZYdIؓ"\H*8?f3#-*. _>3{`j(|:m_ hf˛:\*+N7"8}׫hQZBfڰOe!ݶ/1sg"|R8U z)66?8A+?CItWzKMb`YXFdLd5:G|=ӚJRbd&Ɲ^tEc!a +gez{ΟMjx`9ZLXO9[&ZMKJkNc1d!lHsUv<.WAGL_0?'ػ~(-?18ŀfI?AHflZuu݁t{A5)Ju^WP*h)UE85nH Hwfd-DLleS9vH<^@gZ!_2}xL-赠̋f!+mʫ;iav!r;J臨~J5{wO522MQoCAv.Ω]3~НDM\/n˝?[|1)JyQ-قrT7G֖]s[EPKb܎r0ްzR۲-]oWrA:"(fZЊ@O]A^V&qlqA|c܀a酬pO(Bi\{8H޷+g#w|8\)Ef7 4FQ=Q˗%dw0YC;x5vD촷3x{V՞U72NIZvGӟ$XGR +s랤ЯξbXgm|%7gE3?RW7ihѠuqHk:|swIH U%%hϨ3˧{mmım"UPּKT14#~~QoX o7kQ`P{nUӮHq{ܭ]mu//V_g +:&I9gn(zdk*;%OgNf}:j?qE.u2,ޠ +p[y :MHjGܒHKCR;:4_}w Meyln0 _@a(ATGby~ZL. +wBȓ|8eyw Vi=ӟoVV=Yv۰wmtHRSdk/})Be"\)Q(hLÉXo>,^eaBi1LO>o{{`,aA(_%6f3ZtgfRY(viSַfT +%0?wwx6}:1٤%-t= F3D ymdHቩ7 dpuyYFgXgs&?p +C+{Jsn4q4#f'H7c)sq{<}œzM{S%. iN@kK&;.#iԣ01پ=;tU+E^`Cg?&z /m A֓V.(]rJۊlI lb'86Sbd庥)aɛ %N??R z0ĝd݋b"6픺1&a>KRkfXbE0 e`5.o=T#7G@J|OIWۆ7M<A FPyxwG +endstream +endobj +38 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/EXUCWU+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 37 0 R +/Flags 68 +>> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1202 +/Length3 533 +/Length 1743 +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ !S U[PZZZ4<8Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D5"9ƪ֞=Mlvs3J85{Qm֦'8,dJtꭼ_]tVUkycy _?FMqgL6{̸==.c]~Vނ'Ğu9r#rF;g=~zCxYA}w{*~[bycYȏooY8x﯂~nO9Q~zmMAMy{xV0fyRcZ v1wꫨ\UP0h̅&X0צ#VӺN}c,oX5~i 63F)>;]|ud+]o0^%\#YyLG%d%[Znog5_ϒm}/109>+ ƬO:~5ֶdeucYvXhD߁%;슓 4R U ?{VCʵݬ_ Eځ7ljʙOL>#ӿ{^Š,O}G&Y1~CO.f]Wo.}[_j |3e>_4ϕ巵CԹ eMW?(3U~Q9E%E\\P +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/YYOXVY+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 40 0 R +/Flags 4 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1622 +/Length3 533 +/Length 2152 +>> +stream +x{ C4. C, -!rzB̀<!0p5PcíC *KpLQL3B  t~C#t(j˥2 9˟o-c t2ĥ~TY!c@id*:LbZY Æ/!?eŢtPTʦ+vO F 6_.,(8aX7JZ _/pk?H8 ikU>[4= tF Odzޒmyf$i{<޺U_=ybIҨAr($XUot[\ =T3hFȚ^z~ Չ"D*.]WVK:^95neHGM;j #g̻VMV|$6pXan#zPs"6Տ~fChĺɃiXt,sK0*Fyy+{`v]bVvZ 7_}>4(6?Wi?)sHDjSH-#OvV}E)]]fߎ?̔>J5Ju9i{2%sK5uʏFO)yǒԚ0 ۘZ{iw ZL7c׍4T%2'm"[v+IP'{I/hy@L)]+=Sz]:FR3W܇;2qs;uD]rO_@b`PﴷnzI`_Ҧ32+];r}YL?sS@/"*xQ{ 3O%Ud5k.i٪3T&7yIPZulF;ڪ ^m+B79dZZcud^֓?Xӫ$g01=FVچeKvjPGxScm$tĘV{L^g[}d8rmCE`CCtN9(QڡhQy)sNkǭFKA]=_2wUPO?ߝsi-ε( j(25`xaLl j$?x_V TCɼw)KW>).KiG5:fGDa26qn֯iQBLH %>zUztKO'9yj_AS,:_O|A׊0= SN5j1{ߡ87L&7 Rˆ\Y+O8{=b_ ;~dUW9pb _8k -.~YrǻJ^2gqU:ȴ@O/gEoȂʈ +Ra}l񦍧'S&gҏSwHze~ż +g +n9GutDc]M0V1>>XR]4+wPIq' U1aƻtH^|X|Oq 7nXUDZڴwA{tW=$V-['LG\TɭI\PʃpD;U'H7W9ծOKus}dS[QQ%WnTt\/ >"zW| ,;>6H\V5+rY.;vv\TMu| +*.jKt} ~8oQwD4e=w¾j OTOi#y: > +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1345 +/Length3 533 +/Length 1883 +>> +stream +xkTg&A1\+"C6(&$("@^Xd0D^e٪\*rS]. HXg~ٳz:3y/Jg<O"7__ +/D 0qِ@rt9  l +e +1,8& YȀk<Ăi X(^B@Cl>\ $JX\N@H$(FPVT$ e:'S \ 3C(+*S$ pAWWg63208l2 h |!:̉إALsEb': ̦ # Z!D>5+Oޖga}_k5Z>#‰"$7O DhL:l,_C8 $lGLO[ 'r ;`Gt 8X4!AhX>!A4T-?[//k^$#Vq͝\i9쇷q1ܼ{@n{ Ѩ>8)Yo&'H9KJ'wO@Cs@! +%ob[J{pC=ԅ a>S)“}4Wzl^o?slpWSֹM5fJS{s':J^aԬvV{WqI_!.h1a*Z:d&dGtdRcow0f\-*؄VJP9D-MBoM9fkDu4`U{~ӏhGU+yrc05n\}iU|3ݙ_po-w%#Dtn +MN(,0쉩}R$]\WXxbSuMҾ_5k+zxA"wK~x!(ye];%_ FVdc[J:9M;<_,Y<.DSj]ePlr/l"AV 1}ڇ:&Q[Ýk\B4Hvb70 UqX} ,OM24l;H )ߠ1aOt%\&p"ݟI:7ijX?cr݆vx=h*W'۞_O6Vv\ Kjy:f܉G#ž5+n;]7>f\Ok*F3]\q/c|5e]4G6S .j=܁\o9y5^>}}1OpkP&h d +'c +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/MENOBT+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3040 +/Length3 533 +/Length 3590 +>> +stream +xynH( AԁffFy HH0"#"Ձ55e/(++)@]\IJJRjcxHQQHbF~BZ# H  'ݐ(,@O,#P/RHG,:@}CP_43װàp`pD$h@Ɀ[!(_]#" kc=H,DVKG(a"=04KGb_]K +KC!G` 92~M A@" -;)HV W!`ye8_X _P KH,ptkwѐHS /Uә@=4;7Ħe$H8-=X 336-'w-?ԑLWT'F@j[BU^V<QjOIGoo':ሯXMoVY?@yJML1!_$1%qE} IcST{Y 3HcdVhIbMK `k`1O,V2ߵ-̸*1? U䆰&|'Sr5/Z}FԺpD1r472Жs>@F9f^9Pcmy .]Dޭ}\m.ɦKXqm:.q"K@*]#l1j.6]%@IH4C56p^:se͏v)_w>:M +*p6 ū{-{n1l"RF.G|r)+Qsw8kܴ[ҁyLf]% _gpys7>1Zʍ|șF;=_`T>|GRN~v^E:.#'3W͟@}p]w*W{jwb6nׁ!EQ[>fh: ;|˓ vpP>WS7O2/WYS/76xkLfSM܁&҃/M`uSZ &羲J]f.&"ByR3K+"lc/m1kf;Ԁ,%dTbi*$wkZ[WOtkO/}\qq^rwiaU yKw55'Cևkb)Ѭl_YŝŠ]e`ٺ0YWߖ,ZYL^{z{&:'L6B^PH=I"؃p*mD + +]Y-,xttZWrmxk8?xnIy]ćA(]QS_v1mJM>(R2j[-B%enu˜I}nbf5tr3v҄*Ь_m磉h'-ᶅOf%Y2Z(\TO*ӪP }@_#'ĒvNnpȽ!+}3R4} ?-dZ=<9)QXuu&iKhIZLvrZÈ?1.zJALܽ={)!Œ'#gh|l9>2d=9/8J2#3?H3JTq+xR"5Eq? {ˢo@Lڝf~FO ߶F +Mf9X%UP$爎TbhqӺU6Y~mYxPlAɀ r1@ 7HX.6E +z-hiIY(Z<):WJe 52R!w-/‰c!Ɩx^EOd4FN 7'Cp1|"FD 4, +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/YKQUPE+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?;04Uɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\Ùw +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/DWDXYZ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2356 +>> +stream +x{8T%aO ːCa1ˆ"eZ3safL4SL-T.a"w"R*e"EDB)3iwssZ]ﳾ맥7遐#2010(CC;X0fO`ApE cabj1E ,=4X.͵B H8+ O'+ +& 1!Q0Bd@r2ņLDD F@@EA"p<1Bq#P_ +o}DSCYAA}A N"P`-Lf:t# f„tL"omc{{םX^`}URb(f(́F0 YH`NegG`L#ql6Ms  CCC3#%`@4ҁ}R{tt+*/="XZY Yxѡq J%qWjl&L2?)mW3(};k8}u\2PT~ELfSޭwZkMۢBlfaOϳ(5!ٜهŚyUt?=uϟ(?æ("WdߘEG\r2m΁ydS싌,ms@kpxō)kRQ[un:&*']5}1O*]+[E,28ߡn:Sǀ^i* 4azltj}U ON-3{J쵬pp15w>tF{4MBZJPWo +rm{Yl*d%\Imoi~_`zCtx@ Vɾ:lCހ}5*'A + RYu^R~3rIǹ.) ܲ1Hlh=)6V oX$D8YF1fM +)J 6b2LLy;*i{_n%xNa zr.U 3SaaIedkvZ(69ѹ|tlHp 9ZzcVxZLX9eyW|ch1wW]cB_Ų2'Ѿ.pjF!(c]cNd{?u$ʋ7~.nN^{yIƤT(Hx‹/J5wzP FλaB#S7~1|[uF7{:ӚƩ[0g*yN)!poj=rplRW2 v7 xun`Q czH:+fj3\!_ͥHL +H\%Zv!k/&5F)Ȩ+:HZk=+/i!wyErڦ ~՗sfdr @z?~;4QY%%jѾy}J37BGIf~xI&kb AW1ng ҡ 5 qe[*WW]w[9|Tv/ZWjsLg +z<ĦlrQ|imuN{$GifG:|zx W l\f4gOWt'G5,d],<""ܦP݇Ե9dKƵM\b')S SB +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/SYZIWX+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9929 +/Length3 533 +/Length 10480 +>> +stream +xUT{a]n`Bpw .Npwww ιK~UPkYYUEEY$`(debaPQ;L\& > +//Pde`^`K+W 8ݿT@Q;3hj`z1/rv3@s+d 0 KO?G g4w,JRnJ&v;67z Tt09T "fSYW[-O "]ͬn {g+ tte3U1ۻ{9׬+g'P寀Y&io`؛8WS9x|~fcryXXW= $+daaagk w=~ 2*ҞѮUPϾD hp +췦n 6|81n+_?x> Ȯt&z_i"(=s.se#*&[5{ctZ Q-T&6c@3A̢*RauC8]"`ˑ@gZ*⑦_ s$e^hHM4ȷ')/{ld$0*o[ى liln?>L؅$˃t_F{Dө'Nପt8F{l1b3+_pż) iB":r%(9XDrv~XX3!nZa5A\iȻuidБM|$QF~Μ +^uKxK_>Q"΄ lweܖoie.2ZxMI]77]?Zք%~HԹR9ޱ=!GFY}en+&>Դa>#أctcұ'ܙpÑ۵◽3C +y]۲kpEZ*E]k0"L!BA7m% tAWNЀaC؄MZG5e݈I(q~izfߊ<~l% Y5bSz$`-hCZG8cdD&F4&VQ4\fq!E)xI`>&K3Og5kC0CFRH{:% ^S3Mբ ^~mዊSA8vqxOcf 7-9>c^rJ?a)Щ}B"!- +F"*KT5(/uËdc4v0XzvgF_?`٧R7'h9-Q[ ӨOn+74Fryטpl+^a/dsW+,SԙJ'Na07n}c)"itdke6ËyePKA=16ǰGŵg6m'0rڜ5+Qt=Ճ@9oϻqzA+O?pU| D8ܐMIyƱg3Zق Ǿu ǏX'BPjJ| ={E y}Jf͈1)u/.L1†X,mʨ,GYzZR_~i_U[s*tdޕ=hnRiZ?}(8krҋ~ť" xվkxC'*@x޿|(s~lRqqH=^5bmiU^v:%CW^c4fi*.8 $;.Xe9z$_,jgŀͽ +)?\)D3(\uu~-Qώ+S7*Z=MƝNK-Q%SrR"zV:t< cG'˧'y'B^;٨x2'|q9Y8G7svhX]yc0#c,]-)s\Z<8Ri9H3<t+6+gv]U94Ln;^Uc]pQMN!F2d~lD 00 7g0d4xT{Bמv֧+j|!J96$g 7$}iX`~Ѫ1Z7ׇ3kS%_VB, Zgݾ5̯9ea9R `~Ը\!X"5!UdZ8?Qzt[|te(` r1/(\Ewb@BdL[@ }nVr-5vznm{!{oDǀo<9+jxK/؅R2Ǽ}O3;_/. +)rM*ћy(7⚐"i:jZtt9.(<T"FkNeQ/yS;z6M'7 UH~$YsRX7kXVYLhTs|bk)2XI{#'‡σRY,~WK6Չ SC*?Ч RTpܵӠMSt9pʼnU&E{CDX2S"R㭝kIyg*>ޗ^d#U#̖Љ`iJJ3?aD@:=E&} P*c)n/+Ifok7=/jK5qLɏWRpƙE0)27Rz Lۅ>YRKY +2uO{C%* +h`Id ;GTb +EdkCfG|X b>":aB+Kvao./8ISI[r _\nymMch95 !{$,d*9t6m-q%Q?f#jo!z2Z8J-‚?fXBe~G}p1+M9Fkx_W4#qӈe?$Ȏ)SϘDHJa2gy ;Ga쵅1^)h/DŽ/U*)t)yEuNuvkRu ;R} oPyܺv +x-Z, *v!A]th׆|4xݸP*%o\6qᏫia)@w8T&j_Ax,;u9q_ `<ݧ/Ô]WSo)H*}^,AsBMc8l_!aG?QNE^SO& RGIO EW#E(ȘkJf_*wG/Vμj{V?d^PSLirшT6ݷOTY ϫ`4Ćx]2%׼m O> 4 kI7vEc t`x0<W}摢 ?ݦ?噈^2jC] ,@uqF,UpWɈwuj +$ ۺW]I2-^9E?}] )͝8E$QԾϹ_5,*f+& _$f|Y]SMMy& VZ1H*Q-/i@M pp(9Q1_ %X?N0[́)^8@V1s|)$noO #(B0WT|m}#['w,ˎtG7v5)?T\&]_y͑$XFvfiGo\ygr_Chx0[|EZق}d{C?v0Mp(Qlb=;e] I>;Ϊ;*ߍKkо~HzOrT-R.H&Σ``-ϑ 쟎m"S="$+4dm+ &IM W܀ =v'o|+3z륧E-.,l$ +I #5KO.儶t"eZhn{F4fv^3[+יCm#LTta +;}D\"&1حh|Đ=JSs `9 ܕ_U$/yX3ʹegn6X蜲P&QlӒyZ/S6dTj"*|viRT)kN%X2U0WbΝ-۫J},y97wU HLJe5/6(GI&esy*ױ5-.}_ +ɭ$nX#=iXFJN*s c(}n1yr[Wڨ87YdM3{L!jt]4 +\kBwZh́Dv +V7OR ؑtLhQ[jnM|!*on^0?$xXLzn]0_p-`/MR^ۙRXfsDz6dž<_#īV柣yY&6*:jm[XaOE.x"3.vN=( +[)R AvW g]W)34NJQ% +Aݙ/# bï_RPoz{++#abOK.7SɁ!{Y2oiP<((J-BYeB}}*Ę!;XKPZGExj mSOݒiUr7}j.8ML5W 璈s^FSҮN Y3BpiVy'Y1(Tk7/s!WsqT뮈Wx\L<)}r2(ѳ-JΠ9_ ~W"ML!gRյ GuV٬{6JoQymk6f5 $rD̥}@;,ĄM +9gWᚷjmowU9 .-P]Q|Lq.O;L⇾i崈S'cq krFW?!oa1fi7,( 3 ?(G+”RytVTW_"K:t7pqArhz\y~'o׿A},L-ȀY:G *"H!H0ʄR߃[(Uw~c5$V` y|T*X|#"gIA " riMF 8 }_8{rFYNTs[ w٣(G*YD@#+ x2Wn߉2[u`,_#ODxɫ{^>S;6fќt׸;HRwv.SS00t5*DQk[ w_)Bt4)?FQLi͔V{pJ][__b`D3nR{xdntMfiLRY'F?iv}h-DKv> +endobj +552 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5594 +>> +stream +xUT\ۖq S¥@p ,C= ksoK~{sD% q*8;!@@(@V]W ypdݠ%* +6}AQ~Q^&`e%v-[kK5?^q@ݡnP@ pg @a8οWfc7TWppаt#A[Pw@ݜn5=UFX:l. _2] hֶ;O;$'mWWqxe=$77m}o;Y;CN6] ¿S8{q x~o$/@HPe9🪵 fa3B83朴g ZFH"`=+gU[B.Huk#+1ޝB|)TFQLR+Ϳ \`ŏ+J'yFǥQłf(=%sU.6#+,NZō=aDğTpds#cy[C.-Axӌِ9Z& ߲|7fz>VFFBY x*a3,=W6(}f DlMmuyH@o +/se:Etّ6TDɂ[9ɣ<'htKraFE7ACj_)G13o_Q[<_n0J(/h\P +C )x wke#y+aƇ_TAw͛p; s)3zWWn-e[K6DgKf~ګ(/vTzvrBƴ}=oglu1vR"(@X-lPx&&8äv,:oϕ$H +-lȓPK(T~fko{VvO9w=[W4T~h*v}}@.ǪbzrBv3ܚjFsR =@8C6KH'C}Z.czE()IncݏFq\fQ\# 5ť07,KL2‘(\^ًM +_ƴ}[_4rƔbeAp8^\ ILH,%qQ};|+[# +ocQf"Vvceb:~lk\*X#t(}0Wۊcm5̗y,śa1ɫO*h1kե*vX5PwlB-Z&*Pu; Z x"??sP ZYVN"pq織`ǭ׃b\`o9@\pufs9WWx >W+P.]#Bl?-x| Z0^.y/e3Ambϐ )~$=mK=lHCU}J;_fh\Ъ{ӳ¨ !BTH795Y FCfQ,uPG#Qvt.ƚOg܁1{PdlI1~S?ĶȚIpë)V 3+;In%G+@jA,2!D<=v)TV U p:JX gvh?" ى,YRqdW,1]ƞXj\%\S{{L \/wdJ +@ib\hRWYm +/m;V3.&UtGf*OUYs٬dߣrM*EWrgDĮ rR@k 㨢Cp&pݩOr"L]i #ߐW$Zʟ~#x"9v]#jl? r`07&5TNک/TNx"b;iz}M db2-9q O+sz}.ʪoW>y_N%PD{&5~\W~̬Xe'}qQX]Hґx{F>d}%`#U\yZЬî\ޞc;.~͵mBݏ/x1^GTq~OCny, I|.ԃH**ZTCs!pd̂Bv IHfoF _ǫK$S38X5*gAZx&&h~Iv0vokNn; 戆QL1!9@13ER@3`I[HLÃm_nQK{ҪsNŅqQ ͽPr!sF[~̻PE;on?JaJU*R +yE֮>d, h|i{NTΒ66I?=0˟f Fu4ʣT;W|N1t涞lfD66o' V JsH#v-Az^_eTX+ +DˌK.19F_uxh>yu(IuMm~?^ͫи,iy;Je||,r#/ /8E4bXN'$?1if_^=%U"}蓮΀,j_=Iw:G!͘YSҪ 7;*g+9r3[V.c&Bi´ﲷ0jHC _TIVCZeݘ$ȪDw7͜vGf^8v_iՙb;'<*t|u "'xrAϱhypԸF!/0ąi6m]mXצ-UP1{i9j7j|k={µ|$%|4;@.I`lB5ϔwER*Q dN%l_=)m6| fJ; ȰJyqt\ +ԩ@K +hP_ +bEr*Ͷv%r(>p(b}hLJ ]Dx?y)< xbԷkfH\G|" ځ]ҏJj/vJ9ƵύVr>I9hdu%sA\hz;@?07 ۊξ\r% G59'57,?)Gc"VSgQ"3EJմ1a(.TP$&g +i=9h7H2ꫩ0\T.6H0ݛ4oƕY9=DT=~2K{߀Z8?Vj}?ZO\:>yfD|ieh3}:oTZ㺔cOP ^%KEE,#-I5TЭFem T* +# SmO#c!IlmLGrד2>nxeC-*[: 3 _6 +))>DM +cYF%Љ׶| !ɞ` +!=Nſ{_z,Y2 X=mOJe"UȦ0>0P@ +㲋x`7@#qVBf֡غSN+~*e :&59qQ\6~)$5%)ꌎ:URYHUVеMAo·{qgen<ٛ/.>Kgeh>iOyQZKN\roCJP('(_t[5r19hZ>i GJ,YC;6(}_6 +q+̳3l'WLO#My>U)lbL{Etk$17+tΈ7rd9F^Ӂp_7ȷhR,?m'y!BCD[wmEaKa-y&oBo^G#u8y Auρ6xOI8cJsR>H6TK; +Ex}(~ ;-cZkYšDsb&h9O +-@豘Ywn;19_w|yI6OIRlPto(0'gzSqS+aMGwq,Ņ֗ƲГwɡ!q2/ScV0ހ"ǔ8~i"Arz4LE9ۘzkǐ斊" +Idף}lc"<ȼԸS(UF-(= H5DV5=t2RXp [7dW:&<#FFtąW4[I{[rK:qMW7.HS{J&x"MH$qk'@nWhO>,7S//?`tC8;Zv +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185350-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 558 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 559 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 559 0 R +>> +endobj +559 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 48 0 R] +/Parent 558 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 560 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 560 0 R +>> +endobj +560 0 obj +<< +/Type/Pages +/Count 2 +/Kids[52 0 R 70 0 R] +/Parent 558 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 561 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 561 0 R +>> +endobj +561 0 obj +<< +/Type/Pages +/Count 2 +/Kids[74 0 R 78 0 R] +/Parent 558 0 R +>> +endobj +558 0 obj +<< +/Type/Pages +/Count 7 +/Kids[5 0 R 559 0 R 560 0 R 561 0 R] +/Parent 557 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 563 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 563 0 R +>> +endobj +563 0 obj +<< +/Type/Pages +/Count 2 +/Kids[82 0 R 86 0 R] +/Parent 562 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 564 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 564 0 R +>> +endobj +564 0 obj +<< +/Type/Pages +/Count 2 +/Kids[90 0 R 94 0 R] +/Parent 562 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 565 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 565 0 R +>> +endobj +565 0 obj +<< +/Type/Pages +/Count 2 +/Kids[98 0 R 102 0 R] +/Parent 562 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 566 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 566 0 R +>> +endobj +566 0 obj +<< +/Type/Pages +/Count 2 +/Kids[106 0 R 110 0 R] +/Parent 562 0 R +>> +endobj +562 0 obj +<< +/Type/Pages +/Count 8 +/Kids[563 0 R 564 0 R 565 0 R 566 0 R] +/Parent 557 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 568 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 568 0 R +>> +endobj +568 0 obj +<< +/Type/Pages +/Count 2 +/Kids[114 0 R 118 0 R] +/Parent 567 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 569 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 569 0 R +>> +endobj +569 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 567 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 570 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 570 0 R +>> +endobj +570 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 567 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 571 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 571 0 R +>> +endobj +571 0 obj +<< +/Type/Pages +/Count 2 +/Kids[138 0 R 142 0 R] +/Parent 567 0 R +>> +endobj +567 0 obj +<< +/Type/Pages +/Count 8 +/Kids[568 0 R 569 0 R 570 0 R 571 0 R] +/Parent 557 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 573 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 573 0 R +>> +endobj +573 0 obj +<< +/Type/Pages +/Count 2 +/Kids[146 0 R 150 0 R] +/Parent 572 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 574 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 574 0 R +>> +endobj +574 0 obj +<< +/Type/Pages +/Count 2 +/Kids[154 0 R 158 0 R] +/Parent 572 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 575 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 575 0 R +>> +endobj +575 0 obj +<< +/Type/Pages +/Count 2 +/Kids[162 0 R 166 0 R] +/Parent 572 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 576 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 576 0 R +>> +endobj +576 0 obj +<< +/Type/Pages +/Count 2 +/Kids[170 0 R 174 0 R] +/Parent 572 0 R +>> +endobj +572 0 obj +<< +/Type/Pages +/Count 8 +/Kids[573 0 R 574 0 R 575 0 R 576 0 R] +/Parent 557 0 R +>> +endobj +557 0 obj +<< +/Type/Pages +/Count 31 +/Kids[558 0 R 562 0 R 567 0 R 572 0 R] +/Parent 3 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 578 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 579 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 579 0 R +>> +endobj +579 0 obj +<< +/Type/Pages +/Count 2 +/Kids[182 0 R 186 0 R] +/Parent 578 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 580 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 580 0 R +>> +endobj +580 0 obj +<< +/Type/Pages +/Count 2 +/Kids[190 0 R 194 0 R] +/Parent 578 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 581 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 581 0 R +>> +endobj +581 0 obj +<< +/Type/Pages +/Count 2 +/Kids[198 0 R 202 0 R] +/Parent 578 0 R +>> +endobj +578 0 obj +<< +/Type/Pages +/Count 7 +/Kids[178 0 R 579 0 R 580 0 R 581 0 R] +/Parent 577 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 583 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 583 0 R +>> +endobj +583 0 obj +<< +/Type/Pages +/Count 2 +/Kids[206 0 R 210 0 R] +/Parent 582 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 584 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 584 0 R +>> +endobj +584 0 obj +<< +/Type/Pages +/Count 2 +/Kids[214 0 R 218 0 R] +/Parent 582 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 585 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 585 0 R +>> +endobj +585 0 obj +<< +/Type/Pages +/Count 2 +/Kids[222 0 R 226 0 R] +/Parent 582 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 586 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 586 0 R +>> +endobj +586 0 obj +<< +/Type/Pages +/Count 2 +/Kids[230 0 R 234 0 R] +/Parent 582 0 R +>> +endobj +582 0 obj +<< +/Type/Pages +/Count 8 +/Kids[583 0 R 584 0 R 585 0 R 586 0 R] +/Parent 577 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 588 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 588 0 R +>> +endobj +588 0 obj +<< +/Type/Pages +/Count 2 +/Kids[238 0 R 242 0 R] +/Parent 587 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 589 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 589 0 R +>> +endobj +589 0 obj +<< +/Type/Pages +/Count 2 +/Kids[246 0 R 250 0 R] +/Parent 587 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 590 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 590 0 R +>> +endobj +590 0 obj +<< +/Type/Pages +/Count 2 +/Kids[254 0 R 258 0 R] +/Parent 587 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 591 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 591 0 R +>> +endobj +591 0 obj +<< +/Type/Pages +/Count 2 +/Kids[262 0 R 266 0 R] +/Parent 587 0 R +>> +endobj +587 0 obj +<< +/Type/Pages +/Count 8 +/Kids[588 0 R 589 0 R 590 0 R 591 0 R] +/Parent 577 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 593 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 593 0 R +>> +endobj +593 0 obj +<< +/Type/Pages +/Count 2 +/Kids[270 0 R 274 0 R] +/Parent 592 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 594 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 594 0 R +>> +endobj +594 0 obj +<< +/Type/Pages +/Count 2 +/Kids[278 0 R 282 0 R] +/Parent 592 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 595 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 595 0 R +>> +endobj +595 0 obj +<< +/Type/Pages +/Count 2 +/Kids[286 0 R 290 0 R] +/Parent 592 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 596 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 596 0 R +>> +endobj +596 0 obj +<< +/Type/Pages +/Count 2 +/Kids[294 0 R 298 0 R] +/Parent 592 0 R +>> +endobj +592 0 obj +<< +/Type/Pages +/Count 8 +/Kids[593 0 R 594 0 R 595 0 R 596 0 R] +/Parent 577 0 R +>> +endobj +577 0 obj +<< +/Type/Pages +/Count 31 +/Kids[578 0 R 582 0 R 587 0 R 592 0 R] +/Parent 3 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 598 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 599 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 599 0 R +>> +endobj +599 0 obj +<< +/Type/Pages +/Count 2 +/Kids[306 0 R 310 0 R] +/Parent 598 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 600 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 600 0 R +>> +endobj +600 0 obj +<< +/Type/Pages +/Count 2 +/Kids[314 0 R 318 0 R] +/Parent 598 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 601 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 328 0 R 19 0 R] +/Parent 601 0 R +>> +endobj +601 0 obj +<< +/Type/Pages +/Count 2 +/Kids[322 0 R 326 0 R] +/Parent 598 0 R +>> +endobj +598 0 obj +<< +/Type/Pages +/Count 7 +/Kids[302 0 R 599 0 R 600 0 R 601 0 R] +/Parent 597 0 R +>> +endobj +330 0 obj +<< +/Type/Page +/Resources 331 0 R +/Contents[17 0 R 4 0 R 332 0 R 19 0 R] +/Parent 603 0 R +>> +endobj +334 0 obj +<< +/Type/Page +/Resources 335 0 R +/Contents[17 0 R 4 0 R 336 0 R 19 0 R] +/Parent 603 0 R +>> +endobj +603 0 obj +<< +/Type/Pages +/Count 2 +/Kids[330 0 R 334 0 R] +/Parent 602 0 R +>> +endobj +338 0 obj +<< +/Type/Page +/Resources 339 0 R +/Contents[17 0 R 4 0 R 340 0 R 19 0 R] +/Parent 604 0 R +>> +endobj +342 0 obj +<< +/Type/Page +/Resources 343 0 R +/Contents[17 0 R 4 0 R 344 0 R 19 0 R] +/Parent 604 0 R +>> +endobj +604 0 obj +<< +/Type/Pages +/Count 2 +/Kids[338 0 R 342 0 R] +/Parent 602 0 R +>> +endobj +346 0 obj +<< +/Type/Page +/Resources 347 0 R +/Contents[17 0 R 4 0 R 348 0 R 19 0 R] +/Parent 605 0 R +>> +endobj +350 0 obj +<< +/Type/Page +/Resources 351 0 R +/Contents[17 0 R 4 0 R 352 0 R 19 0 R] +/Parent 605 0 R +>> +endobj +605 0 obj +<< +/Type/Pages +/Count 2 +/Kids[346 0 R 350 0 R] +/Parent 602 0 R +>> +endobj +354 0 obj +<< +/Type/Page +/Resources 355 0 R +/Contents[17 0 R 4 0 R 356 0 R 19 0 R] +/Parent 606 0 R +>> +endobj +358 0 obj +<< +/Type/Page +/Resources 359 0 R +/Contents[17 0 R 4 0 R 360 0 R 19 0 R] +/Parent 606 0 R +>> +endobj +606 0 obj +<< +/Type/Pages +/Count 2 +/Kids[354 0 R 358 0 R] +/Parent 602 0 R +>> +endobj +602 0 obj +<< +/Type/Pages +/Count 8 +/Kids[603 0 R 604 0 R 605 0 R 606 0 R] +/Parent 597 0 R +>> +endobj +362 0 obj +<< +/Type/Page +/Resources 363 0 R +/Contents[17 0 R 4 0 R 364 0 R 19 0 R] +/Parent 608 0 R +>> +endobj +366 0 obj +<< +/Type/Page +/Resources 367 0 R +/Contents[17 0 R 4 0 R 368 0 R 19 0 R] +/Parent 608 0 R +>> +endobj +608 0 obj +<< +/Type/Pages +/Count 2 +/Kids[362 0 R 366 0 R] +/Parent 607 0 R +>> +endobj +370 0 obj +<< +/Type/Page +/Resources 371 0 R +/Contents[17 0 R 4 0 R 372 0 R 19 0 R] +/Parent 609 0 R +>> +endobj +374 0 obj +<< +/Type/Page +/Resources 375 0 R +/Contents[17 0 R 4 0 R 376 0 R 19 0 R] +/Parent 609 0 R +>> +endobj +609 0 obj +<< +/Type/Pages +/Count 2 +/Kids[370 0 R 374 0 R] +/Parent 607 0 R +>> +endobj +378 0 obj +<< +/Type/Page +/Resources 379 0 R +/Contents[17 0 R 4 0 R 380 0 R 19 0 R] +/Parent 610 0 R +>> +endobj +382 0 obj +<< +/Type/Page +/Resources 383 0 R +/Contents[17 0 R 4 0 R 384 0 R 19 0 R] +/Parent 610 0 R +>> +endobj +610 0 obj +<< +/Type/Pages +/Count 2 +/Kids[378 0 R 382 0 R] +/Parent 607 0 R +>> +endobj +386 0 obj +<< +/Type/Page +/Resources 387 0 R +/Contents[17 0 R 4 0 R 388 0 R 19 0 R] +/Parent 611 0 R +>> +endobj +390 0 obj +<< +/Type/Page +/Resources 391 0 R +/Contents[17 0 R 4 0 R 392 0 R 19 0 R] +/Parent 611 0 R +>> +endobj +611 0 obj +<< +/Type/Pages +/Count 2 +/Kids[386 0 R 390 0 R] +/Parent 607 0 R +>> +endobj +607 0 obj +<< +/Type/Pages +/Count 8 +/Kids[608 0 R 609 0 R 610 0 R 611 0 R] +/Parent 597 0 R +>> +endobj +394 0 obj +<< +/Type/Page +/Resources 395 0 R +/Contents[17 0 R 4 0 R 396 0 R 19 0 R] +/Parent 613 0 R +>> +endobj +398 0 obj +<< +/Type/Page +/Resources 399 0 R +/Contents[17 0 R 4 0 R 400 0 R 19 0 R] +/Parent 613 0 R +>> +endobj +613 0 obj +<< +/Type/Pages +/Count 2 +/Kids[394 0 R 398 0 R] +/Parent 612 0 R +>> +endobj +402 0 obj +<< +/Type/Page +/Resources 403 0 R +/Contents[17 0 R 4 0 R 404 0 R 19 0 R] +/Parent 614 0 R +>> +endobj +406 0 obj +<< +/Type/Page +/Resources 407 0 R +/Contents[17 0 R 4 0 R 408 0 R 19 0 R] +/Parent 614 0 R +>> +endobj +614 0 obj +<< +/Type/Pages +/Count 2 +/Kids[402 0 R 406 0 R] +/Parent 612 0 R +>> +endobj +410 0 obj +<< +/Type/Page +/Resources 411 0 R +/Contents[17 0 R 4 0 R 412 0 R 19 0 R] +/Parent 615 0 R +>> +endobj +414 0 obj +<< +/Type/Page +/Resources 415 0 R +/Contents[17 0 R 4 0 R 416 0 R 19 0 R] +/Parent 615 0 R +>> +endobj +615 0 obj +<< +/Type/Pages +/Count 2 +/Kids[410 0 R 414 0 R] +/Parent 612 0 R +>> +endobj +418 0 obj +<< +/Type/Page +/Resources 419 0 R +/Contents[17 0 R 4 0 R 420 0 R 19 0 R] +/Parent 616 0 R +>> +endobj +422 0 obj +<< +/Type/Page +/Resources 423 0 R +/Contents[17 0 R 4 0 R 424 0 R 19 0 R] +/Parent 616 0 R +>> +endobj +616 0 obj +<< +/Type/Pages +/Count 2 +/Kids[418 0 R 422 0 R] +/Parent 612 0 R +>> +endobj +612 0 obj +<< +/Type/Pages +/Count 8 +/Kids[613 0 R 614 0 R 615 0 R 616 0 R] +/Parent 597 0 R +>> +endobj +597 0 obj +<< +/Type/Pages +/Count 31 +/Kids[598 0 R 602 0 R 607 0 R 612 0 R] +/Parent 3 0 R +>> +endobj +426 0 obj +<< +/Type/Page +/Resources 427 0 R +/Contents[17 0 R 4 0 R 428 0 R 19 0 R] +/Parent 619 0 R +>> +endobj +430 0 obj +<< +/Type/Page +/Resources 431 0 R +/Contents[17 0 R 4 0 R 432 0 R 19 0 R] +/Parent 619 0 R +>> +endobj +619 0 obj +<< +/Type/Pages +/Count 2 +/Kids[426 0 R 430 0 R] +/Parent 618 0 R +>> +endobj +434 0 obj +<< +/Type/Page +/Resources 435 0 R +/Contents[17 0 R 4 0 R 436 0 R 19 0 R] +/Parent 620 0 R +>> +endobj +438 0 obj +<< +/Type/Page +/Resources 439 0 R +/Contents[17 0 R 4 0 R 440 0 R 19 0 R] +/Parent 620 0 R +>> +endobj +620 0 obj +<< +/Type/Pages +/Count 2 +/Kids[434 0 R 438 0 R] +/Parent 618 0 R +>> +endobj +442 0 obj +<< +/Type/Page +/Resources 443 0 R +/Contents[17 0 R 4 0 R 444 0 R 19 0 R] +/Parent 621 0 R +>> +endobj +446 0 obj +<< +/Type/Page +/Resources 447 0 R +/Contents[17 0 R 4 0 R 448 0 R 19 0 R] +/Parent 621 0 R +>> +endobj +621 0 obj +<< +/Type/Pages +/Count 2 +/Kids[442 0 R 446 0 R] +/Parent 618 0 R +>> +endobj +450 0 obj +<< +/Type/Page +/Resources 451 0 R +/Contents[17 0 R 4 0 R 452 0 R 19 0 R] +/Parent 622 0 R +>> +endobj +454 0 obj +<< +/Type/Page +/Resources 455 0 R +/Contents[17 0 R 4 0 R 456 0 R 19 0 R] +/Parent 622 0 R +>> +endobj +622 0 obj +<< +/Type/Pages +/Count 2 +/Kids[450 0 R 454 0 R] +/Parent 618 0 R +>> +endobj +618 0 obj +<< +/Type/Pages +/Count 8 +/Kids[619 0 R 620 0 R 621 0 R 622 0 R] +/Parent 617 0 R +>> +endobj +458 0 obj +<< +/Type/Page +/Resources 459 0 R +/Contents[17 0 R 4 0 R 460 0 R 19 0 R] +/Parent 624 0 R +>> +endobj +462 0 obj +<< +/Type/Page +/Resources 463 0 R +/Contents[17 0 R 4 0 R 464 0 R 19 0 R] +/Parent 624 0 R +>> +endobj +624 0 obj +<< +/Type/Pages +/Count 2 +/Kids[458 0 R 462 0 R] +/Parent 623 0 R +>> +endobj +466 0 obj +<< +/Type/Page +/Resources 467 0 R +/Contents[17 0 R 4 0 R 468 0 R 19 0 R] +/Parent 625 0 R +>> +endobj +470 0 obj +<< +/Type/Page +/Resources 471 0 R +/Contents[17 0 R 4 0 R 472 0 R 19 0 R] +/Parent 625 0 R +>> +endobj +625 0 obj +<< +/Type/Pages +/Count 2 +/Kids[466 0 R 470 0 R] +/Parent 623 0 R +>> +endobj +474 0 obj +<< +/Type/Page +/Resources 475 0 R +/Contents[17 0 R 4 0 R 476 0 R 19 0 R] +/Parent 626 0 R +>> +endobj +478 0 obj +<< +/Type/Page +/Resources 479 0 R +/Contents[17 0 R 4 0 R 480 0 R 19 0 R] +/Parent 626 0 R +>> +endobj +626 0 obj +<< +/Type/Pages +/Count 2 +/Kids[474 0 R 478 0 R] +/Parent 623 0 R +>> +endobj +482 0 obj +<< +/Type/Page +/Resources 483 0 R +/Contents[17 0 R 4 0 R 484 0 R 19 0 R] +/Parent 627 0 R +>> +endobj +486 0 obj +<< +/Type/Page +/Resources 487 0 R +/Contents[17 0 R 4 0 R 488 0 R 19 0 R] +/Parent 627 0 R +>> +endobj +627 0 obj +<< +/Type/Pages +/Count 2 +/Kids[482 0 R 486 0 R] +/Parent 623 0 R +>> +endobj +623 0 obj +<< +/Type/Pages +/Count 8 +/Kids[624 0 R 625 0 R 626 0 R 627 0 R] +/Parent 617 0 R +>> +endobj +490 0 obj +<< +/Type/Page +/Resources 491 0 R +/Contents[17 0 R 4 0 R 492 0 R 19 0 R] +/Parent 629 0 R +>> +endobj +494 0 obj +<< +/Type/Page +/Resources 495 0 R +/Contents[17 0 R 4 0 R 496 0 R 19 0 R] +/Parent 629 0 R +>> +endobj +629 0 obj +<< +/Type/Pages +/Count 2 +/Kids[490 0 R 494 0 R] +/Parent 628 0 R +>> +endobj +498 0 obj +<< +/Type/Page +/Resources 499 0 R +/Contents[17 0 R 4 0 R 500 0 R 19 0 R] +/Parent 630 0 R +>> +endobj +502 0 obj +<< +/Type/Page +/Resources 503 0 R +/Contents[17 0 R 4 0 R 504 0 R 19 0 R] +/Parent 630 0 R +>> +endobj +630 0 obj +<< +/Type/Pages +/Count 2 +/Kids[498 0 R 502 0 R] +/Parent 628 0 R +>> +endobj +506 0 obj +<< +/Type/Page +/Resources 507 0 R +/Contents[17 0 R 4 0 R 508 0 R 19 0 R] +/Parent 631 0 R +>> +endobj +510 0 obj +<< +/Type/Page +/Resources 511 0 R +/Contents[17 0 R 4 0 R 512 0 R 19 0 R] +/Parent 631 0 R +>> +endobj +631 0 obj +<< +/Type/Pages +/Count 2 +/Kids[506 0 R 510 0 R] +/Parent 628 0 R +>> +endobj +514 0 obj +<< +/Type/Page +/Resources 515 0 R +/Contents[17 0 R 4 0 R 516 0 R 19 0 R] +/Parent 632 0 R +>> +endobj +518 0 obj +<< +/Type/Page +/Resources 519 0 R +/Contents[17 0 R 4 0 R 520 0 R 19 0 R] +/Parent 632 0 R +>> +endobj +632 0 obj +<< +/Type/Pages +/Count 2 +/Kids[514 0 R 518 0 R] +/Parent 628 0 R +>> +endobj +628 0 obj +<< +/Type/Pages +/Count 8 +/Kids[629 0 R 630 0 R 631 0 R 632 0 R] +/Parent 617 0 R +>> +endobj +522 0 obj +<< +/Type/Page +/Resources 523 0 R +/Contents[17 0 R 4 0 R 524 0 R 19 0 R] +/Parent 634 0 R +>> +endobj +526 0 obj +<< +/Type/Page +/Resources 527 0 R +/Contents[17 0 R 4 0 R 528 0 R 19 0 R] +/Parent 634 0 R +>> +endobj +634 0 obj +<< +/Type/Pages +/Count 2 +/Kids[522 0 R 526 0 R] +/Parent 633 0 R +>> +endobj +530 0 obj +<< +/Type/Page +/Resources 531 0 R +/Contents[17 0 R 4 0 R 532 0 R 19 0 R] +/Parent 635 0 R +>> +endobj +534 0 obj +<< +/Type/Page +/Resources 535 0 R +/Contents[17 0 R 4 0 R 536 0 R 19 0 R] +/Parent 635 0 R +>> +endobj +635 0 obj +<< +/Type/Pages +/Count 2 +/Kids[530 0 R 534 0 R] +/Parent 633 0 R +>> +endobj +538 0 obj +<< +/Type/Page +/Resources 539 0 R +/Contents[17 0 R 4 0 R 540 0 R 19 0 R] +/Parent 636 0 R +>> +endobj +542 0 obj +<< +/Type/Page +/Resources 543 0 R +/Contents[17 0 R 4 0 R 544 0 R 19 0 R] +/Parent 636 0 R +>> +endobj +636 0 obj +<< +/Type/Pages +/Count 2 +/Kids[538 0 R 542 0 R] +/Parent 633 0 R +>> +endobj +546 0 obj +<< +/Type/Page +/Resources 547 0 R +/Contents[17 0 R 4 0 R 548 0 R 19 0 R] +/Parent 637 0 R +>> +endobj +550 0 obj +<< +/Type/Page +/Resources 551 0 R +/Contents[17 0 R 4 0 R 555 0 R 19 0 R] +/Parent 637 0 R +>> +endobj +637 0 obj +<< +/Type/Pages +/Count 2 +/Kids[546 0 R 550 0 R] +/Parent 633 0 R +>> +endobj +633 0 obj +<< +/Type/Pages +/Count 8 +/Kids[634 0 R 635 0 R 636 0 R 637 0 R] +/Parent 617 0 R +>> +endobj +617 0 obj +<< +/Type/Pages +/Count 32 +/Kids[618 0 R 623 0 R 628 0 R 633 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 125 +/Kids[557 0 R 577 0 R 597 0 R 617 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +638 0 obj +<< +>> +endobj +639 0 obj +null +endobj +640 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 638 0 R +/Threads 639 0 R +/Names 640 0 R +>> +endobj +xref +0 641 +0000000000 65535 f +0000196155 00000 n +0000217164 00000 n +0000216808 00000 n +0000217014 00000 n +0000196319 00000 n +0000004048 00000 n +0000000009 00000 n +0000127509 00000 n +0000127325 00000 n +0000000913 00000 n +0000132378 00000 n +0000132192 00000 n +0000001906 00000 n +0000137617 00000 n +0000137429 00000 n +0000002823 00000 n +0000216914 00000 n +0000003740 00000 n +0000216964 00000 n +0000003993 00000 n +0000196422 00000 n +0000014737 00000 n +0000147429 00000 n +0000147240 00000 n +0000004109 00000 n +0000152701 00000 n +0000152511 00000 n +0000005055 00000 n +0000158005 00000 n +0000157816 00000 n +0000005991 00000 n +0000006967 00000 n +0000161826 00000 n +0000161632 00000 n +0000007921 00000 n +0000008867 00000 n +0000164994 00000 n +0000164799 00000 n +0000010483 00000 n +0000167037 00000 n +0000166851 00000 n +0000011434 00000 n +0000169494 00000 n +0000169303 00000 n +0000012398 00000 n +0000013393 00000 n +0000014626 00000 n +0000196527 00000 n +0000015384 00000 n +0000014799 00000 n +0000015295 00000 n +0000196713 00000 n +0000022598 00000 n +0000171685 00000 n +0000171491 00000 n +0000015446 00000 n +0000175583 00000 n +0000175389 00000 n +0000016417 00000 n +0000017427 00000 n +0000177000 00000 n +0000176805 00000 n +0000018334 00000 n +0000019316 00000 n +0000179656 00000 n +0000179470 00000 n +0000020293 00000 n +0000021038 00000 n +0000022451 00000 n +0000196818 00000 n +0000023285 00000 n +0000022660 00000 n +0000023240 00000 n +0000197004 00000 n +0000023967 00000 n +0000023347 00000 n +0000023922 00000 n +0000197109 00000 n +0000024710 00000 n +0000024029 00000 n +0000024665 00000 n +0000197392 00000 n +0000025474 00000 n +0000024772 00000 n +0000025429 00000 n +0000197497 00000 n +0000026173 00000 n +0000025536 00000 n +0000026128 00000 n +0000197683 00000 n +0000027447 00000 n +0000026235 00000 n +0000027312 00000 n +0000197788 00000 n +0000028209 00000 n +0000027509 00000 n +0000028164 00000 n +0000197974 00000 n +0000028942 00000 n +0000028271 00000 n +0000028896 00000 n +0000198080 00000 n +0000029591 00000 n +0000029005 00000 n +0000029545 00000 n +0000198270 00000 n +0000030352 00000 n +0000029655 00000 n +0000030306 00000 n +0000198378 00000 n +0000031176 00000 n +0000030416 00000 n +0000031130 00000 n +0000198668 00000 n +0000031537 00000 n +0000031240 00000 n +0000031491 00000 n +0000198776 00000 n +0000032995 00000 n +0000031601 00000 n +0000032859 00000 n +0000198967 00000 n +0000033873 00000 n +0000033059 00000 n +0000033827 00000 n +0000199075 00000 n +0000034646 00000 n +0000033937 00000 n +0000034600 00000 n +0000199266 00000 n +0000035443 00000 n +0000034710 00000 n +0000035397 00000 n +0000199374 00000 n +0000036235 00000 n +0000035507 00000 n +0000036189 00000 n +0000199565 00000 n +0000037028 00000 n +0000036299 00000 n +0000036982 00000 n +0000199673 00000 n +0000037865 00000 n +0000037092 00000 n +0000037819 00000 n +0000199963 00000 n +0000038690 00000 n +0000037929 00000 n +0000038644 00000 n +0000200071 00000 n +0000039256 00000 n +0000038754 00000 n +0000039210 00000 n +0000200262 00000 n +0000040946 00000 n +0000039320 00000 n +0000040798 00000 n +0000200370 00000 n +0000041606 00000 n +0000041010 00000 n +0000041560 00000 n +0000200561 00000 n +0000042326 00000 n +0000041670 00000 n +0000042280 00000 n +0000200669 00000 n +0000042926 00000 n +0000042390 00000 n +0000042880 00000 n +0000200860 00000 n +0000044288 00000 n +0000042990 00000 n +0000044152 00000 n +0000200968 00000 n +0000045050 00000 n +0000044352 00000 n +0000045004 00000 n +0000201356 00000 n +0000045782 00000 n +0000045114 00000 n +0000045736 00000 n +0000201464 00000 n +0000046331 00000 n +0000045846 00000 n +0000046285 00000 n +0000201572 00000 n +0000047720 00000 n +0000046395 00000 n +0000047584 00000 n +0000201763 00000 n +0000048590 00000 n +0000047784 00000 n +0000048544 00000 n +0000201871 00000 n +0000049360 00000 n +0000048654 00000 n +0000049314 00000 n +0000202062 00000 n +0000050103 00000 n +0000049424 00000 n +0000050057 00000 n +0000202170 00000 n +0000050988 00000 n +0000050167 00000 n +0000050942 00000 n +0000202460 00000 n +0000051885 00000 n +0000051052 00000 n +0000051839 00000 n +0000202568 00000 n +0000052685 00000 n +0000051949 00000 n +0000052639 00000 n +0000202759 00000 n +0000053002 00000 n +0000052749 00000 n +0000052956 00000 n +0000202867 00000 n +0000054459 00000 n +0000053066 00000 n +0000054311 00000 n +0000203058 00000 n +0000055273 00000 n +0000054523 00000 n +0000055227 00000 n +0000203166 00000 n +0000056142 00000 n +0000055337 00000 n +0000056096 00000 n +0000203357 00000 n +0000056966 00000 n +0000056206 00000 n +0000056920 00000 n +0000203465 00000 n +0000057794 00000 n +0000057030 00000 n +0000057748 00000 n +0000203755 00000 n +0000058593 00000 n +0000057858 00000 n +0000058547 00000 n +0000203863 00000 n +0000059488 00000 n +0000058657 00000 n +0000059442 00000 n +0000204054 00000 n +0000060284 00000 n +0000059552 00000 n +0000060238 00000 n +0000204162 00000 n +0000061093 00000 n +0000060348 00000 n +0000061047 00000 n +0000204353 00000 n +0000061923 00000 n +0000061157 00000 n +0000061877 00000 n +0000204461 00000 n +0000062729 00000 n +0000061987 00000 n +0000062683 00000 n +0000204652 00000 n +0000063531 00000 n +0000062793 00000 n +0000063485 00000 n +0000204760 00000 n +0000064265 00000 n +0000063595 00000 n +0000064219 00000 n +0000205050 00000 n +0000065713 00000 n +0000064329 00000 n +0000065565 00000 n +0000205158 00000 n +0000066583 00000 n +0000065777 00000 n +0000066537 00000 n +0000205349 00000 n +0000067421 00000 n +0000066647 00000 n +0000067375 00000 n +0000205457 00000 n +0000068304 00000 n +0000067485 00000 n +0000068258 00000 n +0000205648 00000 n +0000069159 00000 n +0000068368 00000 n +0000069113 00000 n +0000205756 00000 n +0000070037 00000 n +0000069223 00000 n +0000069991 00000 n +0000205947 00000 n +0000070902 00000 n +0000070101 00000 n +0000070856 00000 n +0000206055 00000 n +0000071825 00000 n +0000070966 00000 n +0000071779 00000 n +0000206443 00000 n +0000072788 00000 n +0000071889 00000 n +0000072742 00000 n +0000206551 00000 n +0000073754 00000 n +0000072852 00000 n +0000073708 00000 n +0000206659 00000 n +0000074637 00000 n +0000073818 00000 n +0000074591 00000 n +0000206850 00000 n +0000075559 00000 n +0000074701 00000 n +0000075513 00000 n +0000206958 00000 n +0000076420 00000 n +0000075623 00000 n +0000076374 00000 n +0000207149 00000 n +0000077267 00000 n +0000076484 00000 n +0000077221 00000 n +0000207257 00000 n +0000078151 00000 n +0000077331 00000 n +0000078105 00000 n +0000207547 00000 n +0000079043 00000 n +0000078215 00000 n +0000078997 00000 n +0000207655 00000 n +0000079901 00000 n +0000079107 00000 n +0000079855 00000 n +0000207846 00000 n +0000080733 00000 n +0000079965 00000 n +0000080687 00000 n +0000207954 00000 n +0000081674 00000 n +0000080797 00000 n +0000081628 00000 n +0000208145 00000 n +0000082500 00000 n +0000081738 00000 n +0000082454 00000 n +0000208253 00000 n +0000083385 00000 n +0000082564 00000 n +0000083339 00000 n +0000208444 00000 n +0000084258 00000 n +0000083449 00000 n +0000084212 00000 n +0000208552 00000 n +0000085132 00000 n +0000084322 00000 n +0000085086 00000 n +0000208842 00000 n +0000085963 00000 n +0000085196 00000 n +0000085917 00000 n +0000208950 00000 n +0000086687 00000 n +0000086027 00000 n +0000086641 00000 n +0000209141 00000 n +0000088033 00000 n +0000086751 00000 n +0000087897 00000 n +0000209249 00000 n +0000088811 00000 n +0000088097 00000 n +0000088765 00000 n +0000209440 00000 n +0000089541 00000 n +0000088875 00000 n +0000089495 00000 n +0000209548 00000 n +0000090240 00000 n +0000089605 00000 n +0000090194 00000 n +0000209739 00000 n +0000090952 00000 n +0000090304 00000 n +0000090906 00000 n +0000209847 00000 n +0000091709 00000 n +0000091016 00000 n +0000091663 00000 n +0000210137 00000 n +0000092447 00000 n +0000091773 00000 n +0000092401 00000 n +0000210245 00000 n +0000093245 00000 n +0000092511 00000 n +0000093199 00000 n +0000210436 00000 n +0000093987 00000 n +0000093309 00000 n +0000093941 00000 n +0000210544 00000 n +0000094580 00000 n +0000094051 00000 n +0000094534 00000 n +0000210735 00000 n +0000095991 00000 n +0000094644 00000 n +0000095855 00000 n +0000210843 00000 n +0000096817 00000 n +0000096055 00000 n +0000096771 00000 n +0000211034 00000 n +0000097536 00000 n +0000096881 00000 n +0000097490 00000 n +0000211142 00000 n +0000098266 00000 n +0000097600 00000 n +0000098220 00000 n +0000211530 00000 n +0000098961 00000 n +0000098330 00000 n +0000098915 00000 n +0000211638 00000 n +0000099699 00000 n +0000099025 00000 n +0000099653 00000 n +0000211829 00000 n +0000100475 00000 n +0000099763 00000 n +0000100429 00000 n +0000211937 00000 n +0000101282 00000 n +0000100539 00000 n +0000101236 00000 n +0000212128 00000 n +0000102001 00000 n +0000101346 00000 n +0000101955 00000 n +0000212236 00000 n +0000102746 00000 n +0000102065 00000 n +0000102700 00000 n +0000212427 00000 n +0000103091 00000 n +0000102810 00000 n +0000103045 00000 n +0000212535 00000 n +0000104417 00000 n +0000103155 00000 n +0000104269 00000 n +0000212825 00000 n +0000104877 00000 n +0000104481 00000 n +0000104831 00000 n +0000212933 00000 n +0000106196 00000 n +0000104941 00000 n +0000106048 00000 n +0000213124 00000 n +0000106648 00000 n +0000106260 00000 n +0000106602 00000 n +0000213232 00000 n +0000108077 00000 n +0000106712 00000 n +0000107929 00000 n +0000213423 00000 n +0000108894 00000 n +0000108141 00000 n +0000108848 00000 n +0000213531 00000 n +0000109710 00000 n +0000108958 00000 n +0000109664 00000 n +0000213722 00000 n +0000110505 00000 n +0000109774 00000 n +0000110459 00000 n +0000213830 00000 n +0000111329 00000 n +0000110569 00000 n +0000111283 00000 n +0000214120 00000 n +0000112201 00000 n +0000111393 00000 n +0000112155 00000 n +0000214228 00000 n +0000112581 00000 n +0000112265 00000 n +0000112535 00000 n +0000214419 00000 n +0000113969 00000 n +0000112645 00000 n +0000113821 00000 n +0000214527 00000 n +0000114828 00000 n +0000114033 00000 n +0000114782 00000 n +0000214718 00000 n +0000115610 00000 n +0000114892 00000 n +0000115564 00000 n +0000214826 00000 n +0000116329 00000 n +0000115674 00000 n +0000116283 00000 n +0000215017 00000 n +0000116709 00000 n +0000116393 00000 n +0000116663 00000 n +0000215125 00000 n +0000118226 00000 n +0000116773 00000 n +0000118078 00000 n +0000215415 00000 n +0000119086 00000 n +0000118290 00000 n +0000119040 00000 n +0000215523 00000 n +0000119988 00000 n +0000119150 00000 n +0000119942 00000 n +0000215714 00000 n +0000120799 00000 n +0000120052 00000 n +0000120753 00000 n +0000215822 00000 n +0000121535 00000 n +0000120863 00000 n +0000121489 00000 n +0000216013 00000 n +0000122950 00000 n +0000121599 00000 n +0000122790 00000 n +0000216121 00000 n +0000124557 00000 n +0000123014 00000 n +0000124397 00000 n +0000216312 00000 n +0000125875 00000 n +0000124621 00000 n +0000125715 00000 n +0000216420 00000 n +0000127261 00000 n +0000190446 00000 n +0000190251 00000 n +0000125939 00000 n +0000126862 00000 n +0000127203 00000 n +0000201258 00000 n +0000197295 00000 n +0000196632 00000 n +0000196923 00000 n +0000197214 00000 n +0000198569 00000 n +0000197602 00000 n +0000197893 00000 n +0000198188 00000 n +0000198486 00000 n +0000199864 00000 n +0000198884 00000 n +0000199183 00000 n +0000199482 00000 n +0000199781 00000 n +0000201159 00000 n +0000200179 00000 n +0000200478 00000 n +0000200777 00000 n +0000201076 00000 n +0000206345 00000 n +0000202361 00000 n +0000201680 00000 n +0000201979 00000 n +0000202278 00000 n +0000203656 00000 n +0000202676 00000 n +0000202975 00000 n +0000203274 00000 n +0000203573 00000 n +0000204951 00000 n +0000203971 00000 n +0000204270 00000 n +0000204569 00000 n +0000204868 00000 n +0000206246 00000 n +0000205266 00000 n +0000205565 00000 n +0000205864 00000 n +0000206163 00000 n +0000211432 00000 n +0000207448 00000 n +0000206767 00000 n +0000207066 00000 n +0000207365 00000 n +0000208743 00000 n +0000207763 00000 n +0000208062 00000 n +0000208361 00000 n +0000208660 00000 n +0000210038 00000 n +0000209058 00000 n +0000209357 00000 n +0000209656 00000 n +0000209955 00000 n +0000211333 00000 n +0000210353 00000 n +0000210652 00000 n +0000210951 00000 n +0000211250 00000 n +0000216710 00000 n +0000212726 00000 n +0000211746 00000 n +0000212045 00000 n +0000212344 00000 n +0000212643 00000 n +0000214021 00000 n +0000213041 00000 n +0000213340 00000 n +0000213639 00000 n +0000213938 00000 n +0000215316 00000 n +0000214336 00000 n +0000214635 00000 n +0000214934 00000 n +0000215233 00000 n +0000216611 00000 n +0000215631 00000 n +0000215930 00000 n +0000216229 00000 n +0000216528 00000 n +0000217096 00000 n +0000217119 00000 n +0000217141 00000 n +trailer +<< +/Size 641 +/Root 2 0 R +/Info 1 0 R +>> +startxref +217262 +%%EOF diff --git a/src/axiom-website/CATS/schaum14.input.pamphlet b/src/axiom-website/CATS/schaum14.input.pamphlet new file mode 100644 index 0000000..3452b30 --- /dev/null +++ b/src/axiom-website/CATS/schaum14.input.pamphlet @@ -0,0 +1,621 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum14.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.299~~~~~$\displaystyle +\int{\frac{dx}{x^3+a^3}}$} +$$\int{\frac{1}{x^3+a^3}}= +\frac{1}{6a^2}\ln\frac{(x+a)^2}{x^2-ax+a^2} ++\frac{1}{a^2\sqrt{3}}\tan^{-1}\frac{2x-a}{a\sqrt{3}} +$$ +<<*>>= +)spool schaum14.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(x^3+a^3),x) +--R +--R +--R +-+ +--R +-+ 2 2 +-+ (2x - a)\|3 +--R - \|3 log(x - a x + a ) + 2\|3 log(x + a) + 6atan(------------) +--R 3a +--R (1) ---------------------------------------------------------------- +--R 2 +-+ +--R 6a \|3 +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(6*a^2)*log((x+a)^2/(x^2-a*x+a^2))+1/(a^2*sqrt(3))*atan((2*x-a)/(a*sqrt(3))) +--R +--R 2 2 +-+ +--R x + 2a x + a +-+ (2x - a)\|3 +--R log(--------------) + 2\|3 atan(------------) +--R 2 2 3a +--R x - a x + a +--R (2) --------------------------------------------- +--R 2 +--R 6a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x + 2a x + a +--R - log(x - a x + a ) + 2log(x + a) - log(--------------) +--R 2 2 +--R x - a x + a +--R (3) -------------------------------------------------------- +--R 2 +--R 6a +--R Type: Expression Integer +--E + +--S 4 14:299 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.300~~~~~$\displaystyle +\int{\frac{x~dx}{x^3+a^3}}$} +$$\int{\frac{x}{x^3+a^3}}= +\frac{1}{6a}\ln\frac{x^2-ax+a^2}{(x+a)^2} ++\frac{1}{a\sqrt{3}}\tan^{-1}\frac{2x-a}{a\sqrt{3}} +$$ +<<*>>= +)clear all + +--S 5 +aa:=integrate(x/(x^3+a^3),x) +--R +--R +--R +-+ +--R +-+ 2 2 +-+ (2x - a)\|3 +--R \|3 log(x - a x + a ) - 2\|3 log(x + a) + 6atan(------------) +--R 3a +--R (1) -------------------------------------------------------------- +--R +-+ +--R 6a\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 6 +bb:=1/(6*a)*log((x^2-a*x+a^2)/(x+a)^2)+1/(a*sqrt(3))*atan((2*x-a)/(a*sqrt(3))) +--R +--R 2 2 +-+ +--R x - a x + a +-+ (2x - a)\|3 +--R log(--------------) + 2\|3 atan(------------) +--R 2 2 3a +--R x + 2a x + a +--R (2) --------------------------------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 7 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x - a x + a +--R log(x - a x + a ) - 2log(x + a) - log(--------------) +--R 2 2 +--R x + 2a x + a +--R (3) ------------------------------------------------------ +--R 6a +--R Type: Expression Integer +--E + +--S 8 14:300 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.301~~~~~$\displaystyle +\int{\frac{x^2~dx}{x^3+a^3}}$} +$$\int{\frac{x^2}{x^3+a^3}}= +\frac{1}{3}\ln(x^3+a^3) +$$ +<<*>>= +)clear all + +--S 9 +aa:=integrate(x^2/(x^3+a^3),x) +--R +--R +--R 3 3 +--R log(x + a ) +--R (1) ------------ +--R 3 +--R Type: Union(Expression Integer,...) +--E + +--S 10 +bb:=1/3*log(x^3+a^3) +--R +--R 3 3 +--R log(x + a ) +--R (2) ------------ +--R 3 +--R Type: Expression Integer +--E + +--S 11 14:301 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.302~~~~~$\displaystyle +\int{\frac{dx}{x(x^3+a^3)}}$} +$$\int{\frac{1}{x(x^3+a^3)}}= +\frac{1}{3a^3}\ln\left(\frac{x^3}{x^3+a^3}\right) +$$ +<<*>>= +)clear all + +--S 12 +aa:=integrate(1/(x*(x^3+a^3)),x) +--R +--R +--R 3 3 +--R - log(x + a ) + 3log(x) +--R (1) ------------------------ +--R 3 +--R 3a +--R Type: Union(Expression Integer,...) +--E + +--S 13 +bb:=1/(3*a^3)*log(x^3/(x^3+a^3)) +--R +--R 3 +--R x +--R log(-------) +--R 3 3 +--R x + a +--R (2) ------------ +--R 3 +--R 3a +--R Type: Expression Integer +--E + +--S 14 +cc:=aa-bb +--R +--R 3 +--R 3 3 x +--R - log(x + a ) + 3log(x) - log(-------) +--R 3 3 +--R x + a +--R (3) --------------------------------------- +--R 3 +--R 3a +--R Type: Expression Integer +--E + +--S 15 14:302 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.303~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^3+a^3)}}~dx$} +$$\int{\frac{1}{x^2(x^3+a^3)}}= +-\frac{1}{a^3x}-\frac{1}{6a^4}\ln\frac{x^2-ax+a^2}{(x+a)^2} +-\frac{1}{a^4\sqrt{3}}\tan^{-1}\frac{2x-a}{a\sqrt{3}} +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(1/(x^2*(x^3+a^3)),x) +--R +--R +--R (1) +--R +-+ +--R +-+ 2 2 +-+ (2x - a)\|3 +-+ +--R - x\|3 log(x - a x + a ) + 2x\|3 log(x + a) - 6x atan(------------) - 6a\|3 +--R 3a +--R ----------------------------------------------------------------------------- +--R 4 +-+ +--R 6a x\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb:=-1/(a^3*x)-1/(6*a^4)*log((x^2-a*x+a^2)/(x+a)^2)-1/(a^4*sqrt(3))*atan((2*x-a)/(a*sqrt(3))) +--R +--R 2 2 +-+ +--R x - a x + a +-+ (2x - a)\|3 +--R - x log(--------------) - 2x\|3 atan(------------) - 6a +--R 2 2 3a +--R x + 2a x + a +--R (2) ------------------------------------------------------- +--R 4 +--R 6a x +--R Type: Expression Integer +--E + +--S 17 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x - a x + a +--R - log(x - a x + a ) + 2log(x + a) + log(--------------) +--R 2 2 +--R x + 2a x + a +--R (3) -------------------------------------------------------- +--R 4 +--R 6a +--R Type: Expression Integer +--E + +--S 18 14:303 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.304~~~~~$\displaystyle +\int{\frac{dx}{(x^3+a^3)^2}}$} +$$\int{\frac{1}{(x^3+a^3)^2}}= +\frac{x}{3a^3(x^3+a^3)} ++\frac{1}{9a^5}\ln\frac{(x+a)^2}{x^2-ax+a^2} ++\frac{2}{3a^5\sqrt{3}}\tan^{-1}\frac{2x-a}{a\sqrt{3}} +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(1/(x^3+a^3)^2,x) +--R +--R +--R (1) +--R 3 3 +-+ 2 2 3 3 +-+ +--R (- x - a )\|3 log(x - a x + a ) + (2x + 2a )\|3 log(x + a) +--R + +--R +-+ +--R 3 3 (2x - a)\|3 2 +-+ +--R (6x + 6a )atan(------------) + 3a x\|3 +--R 3a +--R / +--R 5 3 8 +-+ +--R (9a x + 9a )\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 20 +bb:=x/(3*a^3*(x^3+a^3))+1/(9*a^5)*log((x+a)^2/(x^2-a*x+a^2))+2/(3*a^5*sqrt(3))*atan((2*x-a)/(a*sqrt(3))) +--R +--R (2) +--R 2 2 +-+ +--R 3 3 x + 2a x + a 3 3 +-+ (2x - a)\|3 2 +--R (x + a )log(--------------) + (2x + 2a )\|3 atan(------------) + 3a x +--R 2 2 3a +--R x - a x + a +--R ----------------------------------------------------------------------- +--R 5 3 8 +--R 9a x + 9a +--R Type: Expression Integer +--E + +--S 21 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x + 2a x + a +--R - log(x - a x + a ) + 2log(x + a) - log(--------------) +--R 2 2 +--R x - a x + a +--R (3) -------------------------------------------------------- +--R 5 +--R 9a +--R Type: Expression Integer +--E + +--S 22 14:304 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.305~~~~~$\displaystyle +\int{\frac{x~dx}{(x^3+a^3)^2}}$} +$$\int{\frac{x}{(x^3+a^3)^2}}= +\frac{x^2}{3a^3(x^3+a^3)} ++\frac{1}{18a^4}\ln\frac{x^2-ax+a^2}{(x+a)^2} ++\frac{1}{3a^4\sqrt{3}}\tan^{-1}\frac{2x-a}{a\sqrt{3}} +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(x/(x^3+a^3)^2,x) +--R +--R +--R (1) +--R 3 3 +-+ 2 2 3 3 +-+ +--R (x + a )\|3 log(x - a x + a ) + (- 2x - 2a )\|3 log(x + a) +--R + +--R +-+ +--R 3 3 (2x - a)\|3 2 +-+ +--R (6x + 6a )atan(------------) + 6a x \|3 +--R 3a +--R / +--R 4 3 7 +-+ +--R (18a x + 18a )\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=x^2/(3*a^3*(x^3+a^3))+1/(18*a^4)*log((x^2-a*x+a^2)/(x+a)^2)+1/(3*a^4*sqrt(3))*atan((2*x-a)/(a*sqrt(3))) +--R +--R (2) +--R 2 2 +-+ +--R 3 3 x - a x + a 3 3 +-+ (2x - a)\|3 2 +--R (x + a )log(--------------) + (2x + 2a )\|3 atan(------------) + 6a x +--R 2 2 3a +--R x + 2a x + a +--R ------------------------------------------------------------------------ +--R 4 3 7 +--R 18a x + 18a +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x - a x + a +--R log(x - a x + a ) - 2log(x + a) - log(--------------) +--R 2 2 +--R x + 2a x + a +--R (3) ------------------------------------------------------ +--R 4 +--R 18a +--R Type: Expression Integer +--E + +--S 26 14:305 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.306~~~~~$\displaystyle +\int{\frac{x^2~dx}{(x^3+a^3)^2}}$} +$$\int{\frac{x^2}{(x^3+a^3)^2}}= +-\frac{1}{3(x^3+a^3)} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(x^2/(x^3+a^3)^2,x) +--R +--R +--R 1 +--R (1) - --------- +--R 3 3 +--R 3x + 3a +--R Type: Union(Expression Integer,...) +--E + +--S 28 +bb:=-1/(3*(x^3+a^3)) +--R +--R 1 +--R (2) - --------- +--R 3 3 +--R 3x + 3a +--R Type: Fraction Polynomial Integer +--E + +--S 29 14:306 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.307~~~~~$\displaystyle +\int{\frac{dx}{x(x^3+a^3)^2}}$} +$$\int{\frac{1}{x(x^3+a^3)^2}}= +\frac{1}{3a^3(x^3+a^3)}+\frac{1}{3a^6}\ln\left(\frac{x^3}{x^3+a^3}\right) +$$ +<<*>>= +)clear all + +--S 30 +aa:=integrate(1/(x*(x^3+a^3)^2),x) +--R +--R +--R 3 3 3 3 3 3 3 +--R (- x - a )log(x + a ) + (3x + 3a )log(x) + a +--R (1) ------------------------------------------------ +--R 6 3 9 +--R 3a x + 3a +--R Type: Union(Expression Integer,...) +--E + +--S 31 +bb:=1/(3*a^3*(x^3+a^3))+1/(3*a^6)*log(x^3/(x^3+a^3)) +--R +--R 3 +--R 3 3 x 3 +--R (x + a )log(-------) + a +--R 3 3 +--R x + a +--R (2) -------------------------- +--R 6 3 9 +--R 3a x + 3a +--R Type: Expression Integer +--E + +--S 32 +cc:=aa-bb +--R +--R 3 +--R 3 3 x +--R - log(x + a ) + 3log(x) - log(-------) +--R 3 3 +--R x + a +--R (3) --------------------------------------- +--R 6 +--R 3a +--R Type: Expression Integer +--E + +--S 33 14:307 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.308~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^3+a^3)^2}}~dx$} +$$\int{\frac{1}{x^2(x^3+a^3)^2}}= +-\frac{1}{a^6x}-\frac{x^2}{3a^6(x^3+a^3)} +-\frac{4}{3a^6}\int{\frac{x}{x^3+a^3}} +$$ +<<*>>= +)clear all + +--S 34 +aa:=integrate(1/(x^2*(x^3+a^3)^2),x) +--R +--R +--R (1) +--R 4 3 +-+ 2 2 4 3 +-+ +--R (- 2x - 2a x)\|3 log(x - a x + a ) + (4x + 4a x)\|3 log(x + a) +--R + +--R +-+ +--R 4 3 (2x - a)\|3 3 4 +-+ +--R (- 12x - 12a x)atan(------------) + (- 12a x - 9a )\|3 +--R 3a +--R / +--R 7 4 10 +-+ +--R (9a x + 9a x)\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 35 +t1:=integrate(x/(x^3+a^3),x) +--R +--R +-+ +--R +-+ 2 2 +-+ (2x - a)\|3 +--R \|3 log(x - a x + a ) - 2\|3 log(x + a) + 6atan(------------) +--R 3a +--R (2) -------------------------------------------------------------- +--R +-+ +--R 6a\|3 +--R Type: Union(Expression Integer,...) +--E + +--S 36 +bb:=-1/(a^6*x)-x^2/(3*a^6*(x^3+a^3))-4/(3*a^6)*t1 +--R +--R (3) +--R 4 3 +-+ 2 2 4 3 +-+ +--R (- 2x - 2a x)\|3 log(x - a x + a ) + (4x + 4a x)\|3 log(x + a) +--R + +--R +-+ +--R 4 3 (2x - a)\|3 3 4 +-+ +--R (- 12x - 12a x)atan(------------) + (- 12a x - 9a )\|3 +--R 3a +--R / +--R 7 4 10 +-+ +--R (9a x + 9a x)\|3 +--R Type: Expression Integer +--E + +--S 37 14:308 Schaums and Axiom agree +cc:=aa-bb +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.309~~~~~$\displaystyle +\int{\frac{x^m~dx}{x^3+a^3}}$} +$$\int{\frac{x^m}{x^3+a^3}}= +\frac{x^{m-2}}{m-2}-a^3\int{\frac{x^{m-3}}{x^3+a^3}} +$$ +<<*>>= +)clear all + +--S 38 14:309 Axiom cannot compute this integral +aa:=integrate(x^m/(x^3+a^3),x) +--R +--R +--R x m +--I ++ %L +--I (1) | -------- d%L +--R ++ 3 3 +--I a + %L +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.310~~~~~$\displaystyle +\int{\frac{dx}{x^n(x^3+a^3)}}$} +$$\int{\frac{1}{x^n(x^3+a^3)}}= +\frac{-1}{a^3(n-1)x^{n-1}}-\frac{1}{a^3}\int{\frac{1}{x^{n-3}(x^3+a^3)}} +$$ +<<*>>= +)clear all + +--S 39 14:310 Axiom cannot compute this integral +aa:=integrate(1/(x^n*(x^3+a^3)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ------------- d%L +--R ++ 3 3 n +--I (a + %L )%L +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p73 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum14.input.pdf b/src/axiom-website/CATS/schaum14.input.pdf new file mode 100644 index 0000000..107608d --- /dev/null +++ b/src/axiom-website/CATS/schaum14.input.pdf @@ -0,0 +1,2081 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/DAGAHN+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RNVRKZ+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/ILYXAT+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂ԓ~ u^I B_Dq( dJI3\Z6//o! +d= 1ݺH!Z7AI\0m,Z8Jcj6D +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/CUZXIF+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LMGIYY+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/ODAUEJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/JVWFOH+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/EXUCWU+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/YYOXVY+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 846 +>> +stream +xn1<3BSqUe#K2'BH.$@b/;ӑF jwťQhS ϻ-*@4Ãq d7Wx*H!ҍH + qnkւxS +.?Aݠ`C^PJ Ͻ\z;]sߗ${XCcvCz4Ғ=hyk;дiDErɪZV\U0U9$ē4.A|"ퟥa iFq%4i4dj-MEV ր|B@$i3`r%97c$-=+΀q?o'4S\s&74ū݆)D6sCZ# 5T|k~vOGDecyZri\:75zv*9R6ASE'x$٘} +p!Om +w3bUXè=cw4|H؂#@)Lcpv}eżdhȯ4, !srH#ⷼw:>Fícq>R?9psy8f_$I /ݷ\"}+fPY'.6L4Q@P?$zscR"46ԂJ\Ρz7òkP KD%v(]8RxT'+ +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/FGLNQJ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/MENOBT+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +55 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 54 0 R +/BaseFont/YKQUPE+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +56 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +59 0 obj +<< +/Encoding 56 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 58 0 R +/BaseFont/DWDXYZ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 62 0 R +/BaseFont/SYZIWX+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +64 0 obj +<< +/Filter[/FlateDecode] +/Length 1131 +>> +stream +xڥWKo7W(!.c\+;dIdT;|D3|3Ky$a|\\H%,(B 0 RAMosDso/o4qisä&tgD1 Nd.B:x ^CfPm䙀L}E>Gt#9ēÜ%xa6ލ{",W}7L S #]Ect@hf!&øy火pdz<\ޘ9)D3ge y7:(fRyo_!"u^#yU_fR'wUM0~^vE~iUͯK_~YN⢺!qInU4f;xQDA=Ώ"8rMӲO A%E 0Ɔ)W=Ͼ_yYu tB r9`|~ٗf1(ف>U;xoObǑCDw^kjSVP["3F,mY}uDNd$\C(#!HYHh{KlϯݽG~2GhMWXϷ϶S9?'[gT6K7_] +endstream +endobj +65 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 65 0 R +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 269 +>> +stream +xڥR=O0otu$)1QoJL$J@ ++N**rJƭ6L%V{Èa5'F}F?%kc$ V\р/(`ƈ=SqiQ`F +jGyB;$vdǵo%)Ys[<iLMPW|_ҷsDrAmcL`!*)6rmqǪqEz&T> +endobj +67 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 1110 +>> +stream +xڥWn7 }Wq/-Q] S;qmRhFs[f%<<<䎙! {ͤ+3lŸEqk.%Vybi{܍JA'Tmk$ȒQ*{gPHt#m{rZԦ+\ -Q (XWc4t˳,Y:: W6)EšPaAhǴ-ɭPeb_8~U A!L)>f5DL8OM+(Wh7jb˷q6{ˎW.30Gs. ԅ22(*(M,UFEDHIUgkf33 K'&EyOiɇ_ߟ'R~F\ b?y.KmWWDm6TMUP8fs$caxfS+t$͑7zp>hN7*I9KZZ*ӺJ= +bB/tJ#mm\uTL/q6~_S,;AKua?+̶ Mï^19V{RLi{jb Oąq rJ"Qq:/ySKIiBVKk@ +endstream +endobj +73 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 755 +>> +stream +xڽVKo@Wфxo#qhդjSC/ɀKD$Uׯ`CF lfy};,9[񁽛]b $M3`Fl*/XX'T4u::of~\?|;|bňTPHHJerX<.gُ#[rsW<G|wO70Sӓ$Ո(T:wNYqv*ҁ Iᑼ\ȣ8S%[@ oܢXUw"1  Qb5d^`~2LGHҀ`.jܱ\P +hR!n {%%^uKqk ZQބsm>m ֵU 8f $Lib9@OD@0vBw(ekl8ڞ9ӕUcZl .z!rjT]$0/ jFe=S4jsG\+PFK\lOz?GݖƍWw`@R܏2v A +J} +bO*W:l[dO/F㥟1Oݍ8rtp Qh9/[ R͂~XO.D[gBc@%EuM;$=ON?#+{t:< $T']*D?m\/l6gY<ÝEƝ*~N'Վ0d +endstream +endobj +77 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F13 59 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 818 +>> +stream +xڽVn1}WKwn$^&UЗDZRF$"Jc{^"s8pY|`KPTlYa(jX +=ƛibx344̃7т¤)yаBO)v!]̩ ~1`q Ʉ ]Q$'@K+Š݇epU+sR:-h&P%/Ҟ\ ~1l\xM+D5N  `"ph@ɥ+Ёn4ߠ<Hp 3PsuF2C&t] +6ЉkRIBpY +Vu*6̈́*@5iEٜFevr 43^9K\}t! $Z5hҎ4HA:T|aZЦh2NǼ@KLnQ.ZU)Ĺp*xTW3 "b~X ֫r;,4zaHhQ\ },TD]9=l^Ved1؍{+\ ÷jE7 & +Wj')A"~.5'pBkuW&MFEMKd,=yX'} +?/bp{ڮw1(ھn/bC֎ޖ,h)GQQVN}NP.ʻ [y:|.i/:?mS= +넪ݣYvtVrJUEGcUf!u g<)D@Q{ +&ye? +endstream +endobj +81 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 222 +>> +stream +xڥP=o0+ 6~?p$T@%T +D:{qPPaF `v`3 +PQaBw}Q%Im{/˓/|mp17n\ +dsUl> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 1239 +>> +stream +xڭWKo6W𸏈&|)j\ŀn][ǵ t wDIFCi {.?גpI$߉(RRWj]qj(&_?_\k~ JSYV`0$u1ⷓ!W{B w@ J[j5fG,Pp!)$R uH)/CQi})^M+M9$dxyJL ~\( pɪ8§ZPTS !r&!Y\Y uqm|n9hLlM;ڜ"I%ۭG-ƹ56˽cyj efde"~bTAqV! , XM;݆RfҧYIKΫkؔ f ;[Z]3kS 4ÎԜ{kv=hp3'Ӊ MZ}eЃ*;XIpأs5 cG/o2L]-IwV$Xx;U&aI{arl^R|0ѕ$ڙ%3+;uc9B PU"W4ˇszW^n`Fz^,?~yÊ+p\TBU¦ + iVtH(4&AhlB_qESJUXW_lA35=#>6e!?B|S2po؄J#&;3s`.PtbND1#0tO_㟼(eM^-8IO7.+tzx֪ [mlQn^z~Wv8wsês2CW?.Kd''V~FbMt3e7 +W[LZ7πRg ~S7qkfV=4HcA1Λ#Ϙ鎻eTyNly_FXzg\A +X%AD!!$y2R.|⏖ҧwc 7 +endstream +endobj +89 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 245 +>> +stream +xڭR=O07:]?H ED QbM u*,/~;Pz;XǜEF0o/ Em5M&5ؿ?e}"j.J)f¦v!KcׇaطMP=!dO:0jo2e$8 1(*o'Cݪ0v㹭,?hfq~)48JjR TIÄ:06/ +endstream +endobj +93 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 1223 +>> +stream +xڵXn6+x $LcqlI-:Y|$WY!=}z(! (fo>f&i +0'*V(MS7+p.|2fOa("a1-#`P@LVԭʰ"l¶9ĀdN<q#Z|=5/y +LW@1,e@'2 ћF`9A #P[wRP +mHvsɌp6a!qFBߎ-2J(nC>KԲmIF$[Vy'FT:h9I)Wаqa ͤ-<10^GI9@z+՗虉}CB(ϩ` т,-JeE$ 4zPgDCDBU`- L qZ08? ]=GIB'M>hk@O @ i(F:6:3 1.L'W0 #}F$&a8aT>#4aP42-,B ,j:t#񓴯 v=zChR-CI:8:tI|rIj+k#$ffqr3Ͳ4HPɍ=[JUP\>B"]Cyu~|z;KjAۑ`ʰU+*'EhB%`un~+"EK} W9Zʃ<jt4gl1 ~rSrBe]Gդ_~1 VevKVrԧ?(grx}'b7)ab,wwQWnUv|zgw:zC߷17ѻ_ĊRlN4IN/8Ş/]CzwY޶w;>|Dcf&J+le1Q] 2pB(ѳ|-9H+hZ+9o>PJj R+_-I+/f6L5wu.NɕWEḰ7c +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 323 +>> +stream +xڭSMO0+z,1RYr*nM[(l,ce73L(MR4>_XQ|3DC*P2I&t)n=O]\{6뙤`@8UД(6;Aٔ?gNy t,c5+%ܸ] +TZWV\ߟkknk16"ƴ*}a +,G8twe: 9eo*saĊƘRy^UY<ЏW W@nfˏJ + XEo1IB +endstream +endobj +101 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 1222 +>> +stream +xڵXKo7WB R)c^Tǵ t wH>5+΃373$B8ܓ|O_UD(&F`Vj)M߽؊ +z^| Z\W?^53o)\dK|t $T1TڊJ6A\1E"@qeHpa8`z3=]3eR9DoD1I1!Na7Bt{ich.s_W |*gs9vБ91Ag#dQr cJɜ=üM)Y}L0 ]9'hVLuhPڻP粯I(BWV-m]jP̠6.B&:{"\ȇ3aV ޚn6$@mjR +xH(54|`PA3iQj&u]cژ7Z`"3 צ~CwYc2t9A0OtMAqcʡաrPI 5KL<}nޠD*2n%{$m;3rtCGfߥ=⦯J=+[xh+Cd/ ֩pܼM{n䮹uuoft&jTbUyX|;1!a4MZI^ѱ4W0JK]?2}?ޏjDMKi{[6pCm`"41z_5ђ1p*O!*WvT3dC@-sl<|!Ae0A,ϿX+*sS⍵,'\?.Ϗiw7{YͬW `-v6ډ +T]mc9fۢU]^W>\mKhE?`BVNke$mD(Jm,P,8SrF|7h3@h04KB\%+Я4CN'3`! - ne;gZ]^5 =@sϼϵ  +=XH+ +endstream +endobj +105 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 320 +>> +stream +xڭSN0>:Bv~-qQUkB%D Hqb +"@2zvvgWA2 +GSQQ PhNB=&.#ryFWEH܄ =E&i|oC粘Py1Qy?d~tី:ƴvxOẽ +s,^?[lc=76oG^}}JA. 頭X0uSimWrެM;ᅱZgBmYDryз c4 "Rt,{'@ +endstream +endobj +109 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 756 +>> +stream +xVn1^&M +ѰJth#QEϵ=L&E2=kO%~>w+$Bw1 +a# chfdǘ1F7vQTo.4ri˜!Rx +Bʷ`H$.B"jCE}FW@. ~"81D A\XT5 _`EUR6ꯪԈV$CXp%Zɑ=#}ާ=fl%qu MD9bMj!<&X&.a 5+$ ftX¡MqeISo3M˒$AmVnDWM4V']2#R7ԕM~(nGgeFQ2.Y7[b,f׬W;87mEk}JtC3y (E@= 6)+81h[uO'D5Ӳ˦45nT "ߏ{7_-_ 7Ug{,ϧx/E6: -&wiga%&$6BѲA`(qW<-(s1 СdDf/lҍO4"nWm6<>=vra_,b[;Zq:sr1lmz+*^Lj]_+:j +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 957 +>> +stream +xڽWn7}WqR.F}i6֮P P;}׵  ˙ó\v3{^+bn5Jw/+w~-^7!r¤?R)U)=U V8 ȤB;?Tf$>œFru1/Cser1UqH qcrfN2|3G<u9)  rkiܹ!=jPqIE\x=݃Էขjnv= NqMX:#2<Lz薋>?ݭi [_. nb=AV[߇UKtOtхa $83& .$8q$(p׹Bnm@06 Z t3ni:,9Y۬o295\tE}RˇKFu1Cia}fhV.+.橬41R' PUo"v-dԻfwp|=ltA7in.od]: $Vog< +ATT҈\x8722RU:׉B& uyt_wbӺINPF *InXh [90hI\[_ V`Uw>v)LJOuqut>ǿ^qΗeq5T L$e^ګME"s45QQ}#FQD.Xsv5fE9I\A^(?B^AuD@}+OM& ww˦noKYڮKǺl^Y:xkc#[)P UgJ +5U2TY g@.dLӿ$aI +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 223 +>> +stream +xڥPN@-]nﵱ% ">-$|ITvv4)w~Fw d߿2_2h _}(2nea]#4aH"?3O&]h +-)j<ٵuO\3{S]ak~?O%˶lL#:Z_GĒRgl,7h +endstream +endobj +121 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 1062 +>> +stream +xWM6W( n( (]uIѢ(I4@e33 4a'=vU+~%ՄZJw/VsU0cnj Lr9p6*F'_N0 E 1P;V@cg#'@sJ+s(# +xZEi1ġAFo6P1r~3E^Ku ^?Z^hf|!C%V$sXEZAp"XK=3̣<ڡwxI#&DSØ8W6Ĥ@|vXCcYembpM #IKha/@ajrȗD~W]Y:[+C9Z\̪Y%=*- %:^P2{ J~SYQr#UR2T9y%>pZt"2gLcYN>ke:ZnNȢ: 01* JIAJKcʞچmV4ZSVD"|?|tc t g'\y't&ar kJkF8D8h՛þ{ZQpR0g4y*o鮮omӝXod)y=O0H9_F2 +6tG6 Oipfr_mC  {c%=r06v bRhۨGT.R-,.RQPrDdLr IFJF)y\4*g>& =eP731>D>dPoBشH.waj}sx#St1n!w-vszž?=)zE _os=gnŰhsd#xKl`UB~}|7̗ǙJǙOgۯ6|㮿?~7{ +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 921 +>> +stream +xVKo8WRZćv"Ş6U q.ߡHIPLf€1rG5Wād~ +-E}X!P%DPѵEaQ jB2Z *Q3׎ +pq*X3Y a)R\>L_B&Ipxbau=6^//~4LFFOwOCpZ@*hshҳ1tw +WEz\"TOW%݄. Xnjo"A0siPʛ-WL2+x d{Jd'}j^KjiL6J`E# "A'@ qm Rh0A΁Z' 5ԞMiGXӇAi3R<ڂj,ˡf.IeP9RF 0=+C4bPգ>0w̭;H) HzšCSӓ%>{7T1]Ẍ!0J!cDO'YMwtz$?F467C|$hh@HG0 ٓRfm]bcnf;6nU~p/:l،7EV2Ru8}]Wet.iƗfVM1]dȖH_;̯ϛ￿ŵB +Xc3֍rƫfn'YB0Agrnx^ KV:\/  +endstream +endobj +129 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F3 16 0 R +/F2 13 0 R +/F9 41 0 R +/F8 38 0 R +/F12 55 0 R +/F11 52 0 R +/F13 59 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 833 +>> +stream +xڽVKo@+7tߏH=hQ'.ԭdFJ( "zXNPD7oflBRH#y?=IL(R釛IWv;j&Og8pA)(ÕoAVR\Pyyr1E7$E8`PA[<S?/5(Yܕ0`4pH`J< +nT +٨ xуu?ㆱ +>Ë蚉OH"eLFkDi<eq +0j"̠UW?&7qfۙv1+Ghפ6XӥFئa#F,h.@ +D+Xrɸd"8Lp%#-5CAWy*PQY]&lUt7Lzm7b3gYq;>ԐL8#k`K) Iq㱁C€bx" cx\뿶 SILدqT^ʭ}vS$;!hP{c8(fd\J. +-i~1I _,ʒN(4Rᒔk09_|yQ,~|vb;{\獕֏> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +138 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 137 0 R +/BaseFont/HDDSQW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +139 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aZNT)@\X#CUƸ0 po025>C+=$z&}My(TROt•MH{,N*>uպtt}5W خU(nTzg +X"IkTxc +endstream +endobj +140 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 138 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 140 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/DAGAHN+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3936 +/Length3 533 +/Length 4487 +>> +stream +xgXۚ" EBE(D  %{KHBMliRD) +"HIMҔJ;33sͷ|>YzOi(C:`] $18Dk!`AA"ƞs%ړ0@tJ[R @W7_"щVa."eOړ0.BPx+ +!0<h{!za CGA7 +%==~qqQ] x_ esu뿡{'g;m͓!u]"VS_l4]-= / 硎8 {`1!~O ULS'HFngk~/*KfK;2HW!ݾMiNQlO|b *o:[jP -6:ִ]{4>i]bj&W/|iGy#@ٶ*h % +I@KT񎲘q+M,\{+~gbfhFV{>F֤/XBӖy]&rcAP*,f +2xsEҡ]KӉmX)iM5< \=ft(ݔg)ҎW΂IhZ*#j}*7,3H>b\}+I$&v_Is3ؾt2#R<ة}_ |ZFNMZo{_c6sYE+x:^7J#&&~*TBernbGމO/٫ZH^ם\-#o.-egԯ< TjFq\^Jo.+fG2y-}E?'qFvnH%; zFPK²R#[>o׉۳y~ut͍7d#v6o@<&@5It7T&-f[K3|=C^&UŻm_DLsZO;tB6uH(k1 Y>y=}!l2I8F2> XxcDiXR>Z%ۖ)WW\ΝxjLV{FUXC2vubզ+:?0_ere=]ϲj,}M3rNoyiTv~]] d`颴Dv3caf/7\:{ұhBq+#Xba 10*}bP_nDLi°}V~pʭJ͡}P?޴LXr靛Wnf'5_=:}iˠS7-E; O5×O'ɴ +}R/hrc;%ߡg/=Ɉ5seJ-'!,_L}-JtOV1H6&;ʆfgJF7j{5Y;b__i95p +AETqtnc'Id@|^6"1nX:3D;; \4_?1҇%Ku:IChM`~ 3ƀbaүlBȖ :Vx.bXg7u +K87g:DMwܕ+ +!-KH׺lD?+.ZmX)kA=G+M^Ѱhܼn{֫f׶ +)vZq/ L@ea$J@2SP#KPUq cI  +'Q/NpwT=?;Q~CJ1to{`ӓ>D?I=}5rv<SA Ni9OOsam6 ͚hJq70Ĥqwas[-Y*GoH/N[}TyQ,@!n3`5gae+/a~q+%!>xT i)︄/-LdWWvmH_颵>!ՑAa[TE-jW[zhz JZ\UzǨ(OxEn1+V'pzdM+$B7AsPĵфҭN2fʏ(ŶX)=FYt:?F +M"ۀ:ۤo5U6Nu@!r2|#_*w7oE?¨MF9\J9T{f$!3ϊv^VC)8eo:KIk5FS]h2,}h)e0}5-uC3up oT|@EHh-U֒`Z>5y9yGEF=<WrymWHꑈJhۡd _7S/nM90=ia3rv za{XP +|5cxovӏ=Z[۠W,*X:j<5ivD ,s P?]ңLq4uL]HO +pHd6 +j`%%c̺Ɲ{5ZrPpwS +ePuIjI[S>"o$%.Ӯx_w{0);=4IѳOyIz*ZPPϠ3buZ\ܞ*:ɭ]|;ԡf@(}s166paBw2T之j8t`-^-> )wa_UTwd9FBN6VCP9vJ5 ۶GocR/?:akē{־\w"փwFOyBzs?LbKqbu婸;'xXL V>հݏ)tސtRB#ր+A"Zv7B 8j"h&&F*iFƉ(YkZ=부5DH\hIWi?uI[Ra;h<_2f/B0Z"D< HS"~3*v%a.>B [5%uEt5YenEE'#9 \5W>]Xa(<ƞHru':30@ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/RNVRKZ+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{oR $@$ M  +ATi""H J " v{9s>g7׬z޵xLThg +&%. ͤ)qI:"^0,HK~n$ u"# hoԅpT= 0aC\`(D`qBfl?.IIp pF!@0z[p?\oNa7%p+H4o1Cp-?Gs6E`C4!{W C!]TP@/ 髅 DMXwE#=?$̌mE5M`H/_= 2m4\p`yaRSCb7y99 B!t5eT]0Ͽ}Y"ODs眮sin8nj-^˸W<~E)>q76dg$1@[9:Ҿ؅ñE\Zv!IDa:[ruDb]h`GJ-xf7[XO؛)8VMdBb3eL3@?U4ik@nȊf 9V qy_ܳta! CޥEvquLljԅc=* +G ^fQ gFrbH9X~H~!_F,m#T by#߰*VP!!:'^X&;7ug4੨wR+n<8}|ɼ05 +|89U3-N{1V̜Z+P^6)?svٳws"9Od竌m'vɼ;s{2:mO/Nל8z-9s SrC/uu_Z?# jY[".W>5rtQf^{͒DžhЊvr*R ֲاmdltԖ[>."c% HcZzfEsXsjQ*YVX[T>04o730ڨd!DكӝxAY^>cu(NE699~6-D&'K+)F)LC_핽Fo}g` ዆]Nrdvmsd%9'~VE\y C +L HyI9xD=n)Kݣ}FXtghipW"{!Y}M٭z$Y*B&\=1PpWbټLK{aLSV-|cX=&<$zx6ی#8?r&ɪ>_f!z˘6k$gM){!qW8~^}ζ)k#jIJE3$"4*ۀqd,AoImt>14F|S'GԛD3&ݪO`A-_acw%7?%c,0)40]>rP_?rf}odyhl C"[HUUaF:|7,C$讃aЁl3uk#<nO0]>ؾjlIR8.V&W^fP:7ka&럌~xeJҘCWTSՁRfxh-㸁_ꪝT +f/nk2T"w~OYmqÁk0#4va +c:/w^K6k!aqKOʚ{nE0Qk]l$a+᳧Ǘȃ8A1fBۃro{U6詫߂r{i)AnO/uf1tϬ2WYQlTc+qK5 zX_ +R/ud9xZu)xEl"or[N\YmᬒD +m^4T;x"quF~/M|,C8J;{ܿS5;Tʽ]wfC[p4C/oӁ$sN1>G"j]wpp9p.RӳȖW3T mV$#?PK:x!C~<ᯯ9]P2@ +տf&jSs&t3JWW2U&" _^@)/):h_gXu7 45 +ƀC9/õ 4+{3+>v}ѽO~+TRءH7*׶h{bFZLS^'0^=r6ak~܀iX8n^|f YFQ[jUі ڔ7̓)Q #Xװt ǀ(~f4=-ItcM!n{:@JNoȶ}qm ;/|ү],Xy@O& ^˄:(t?^*Y;޻#28t,!i|wA'+&^Ŧe2qn@g"a;:aQ7Z-~jz९]lR^٧tM pFK_OkNH.7q8Umot.j!͎ +=:(eKBPZƟɄ- Akh{&ܬgT:ܴYNqͬSJd%_\jpI~<Q+ +o2}FUs;i9:=>V1yku﶑lu G 1׸YNq9n H)i_PWR:>yo١l8= !S;'<'Zb-ǻ.LJ$EIcsuBq/ZZ:L~0EdDu=B6em.ן' cOm~!e' +__U&]U fON_];2wUrjV@Fp85ޠLq"860PKרl=N(̃ +Gy+mm#xK0"VGa %<ܝE D*a=gw]xe'n|: +cz&l>/q.jaUgT-t@qJ +&&4(e&BᶶEqj*;^A];Z%lZW<Niۿ]eguAv׸苼a❫RR(k6 +twZ5SEU Ko)e^XՖ. 8d-ɈQy1YM|X l0'f0N̦ר[;WA ב|sVBtWȗKݵvxTOwǪk>;[HSYaP!SJ)V:y! ` F%pG^e˒xx豟_WEEg]3H;G,0;n}qv 92GH H[%:w5~Uu_tT3? b&u4 +4j̤lK/Y2MY> T=dsC0]J.{Mi:OK7!NfƝu i0I!,]&%Hlp&2.JzFs-tp1]$} ]Aow+~RPɤ<5sPǽ$Ӂ_7,ߺ`V qasHO!gwS^WǜH(}fFܦ65墇ۇ} n5$p}Qfܞ91#<=e?kRx@LX #Eg~ v߄m;7r N)%}m&f bLANl㲚6bGaojy#B- u*]8\"Į"Oꃖd3|QؓDىY +)Y +QnTŜJgz(ÓQ.DSΙ  dP T> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON%=]) 뿎_E5%a_P38Z>s/_3[Ljf~h:`#JZ {ϸR jQguM-qi+30-q10>i ؼ_kJbXFǫ7>.zUbH;VXnFT嫺^J{BW16O6iH$ňsv`zS8d?06-JR6]UJt7]]"\x RqWJE\EǠvwB1ힱFnC6_5|b&9ZhBc| eӀ^ zѡRo[;AQ8+[e=Mщ#hKzcP' o<O~PIltJH t*&G.é x`BEaƼP3\ŗ$~^bk\'/S|8J*D=̱ǼCP2+e"|7뤰o+݈ c~>1sFbޔ?˪u'4O*&lQ)^rVjpk4^eh|ۏcvI;„k)RkZ=+Z{h+MPD0 lŸ)N*&$%$gCGtBkq=d`o=dў֟7uT` 撃|{1""ғ_Ip(6pOt4MgY]"QF'UC7v,va:8tۦ4(aHaS*314\5tbIц=xrH!͟;&{2sRܘq1r$ f^ur!'NA(a%tq%ND?Ylz͚NAxhG"4[qN//ζ]~ʫrH !@ײJvԏ{Hs*Wt|oD$vqfOQHr}$?Ɨ}C} +ÁaSq;h"iޔq 1{ޘ&LiVpd"`:=n Mh]lQB",{Hr ƳscܚW^J֏a?jrۢ竨 ?9n|A~մDx3-;bo_Ź$yUh%EvljVr>bAs?]j'/"l c2xk3VeOu-99Ɯ;O:2O hCtL8LEȁKpv:uu|ЙwvG\`z(4›@swqŜ;#GYgpMJ291t<:>gZ/*Cm94k<>4Ql1?v$i0ZFDiϐ}hšW^@tvJoOl՜痤Ȧxpm9S4oK\GMGྸ8TٲaYBڰ/?X Rn[UX&:1W"4;dLG7QXz_}R+dV}#(~OѮ1R]Mv4!/1-Ll_ Ьi1r}(HE g}GjiVU79݇!}gUx 77 +%Z6kU@E۪?=mbYP& 􀀗.o'FM2 +19B|?SbeCbSϬI*G!~NΪD4}@׸C%eH>'|tvq.BǷu?3e7$M v1K]BZ޲])Y/&}Dlk<=B,O_ cBj~2!\E^h`rG҃g5sn>(в}YPB+sCtԬCe!?Tt:2x`Dv Vp2Ѵ1qޅ&J"4) 1?n(i?ƜiETB *k5بFh2ެDk#_ۙͼ= LeU0ťA3qjT$`7.']({3Nbźz]tpxGƥy`d&Pi8J~jO?T+Cz`Mw[ZoT(-IEBӞx<4\h *`cIB2:p lG~Lʥ4g>oe +5O!"[gA$1܃u*ǹZz#lCzNQIi I9H/JSAZs6nY{&DȤS<$ >5+$0:M) CXxX1!pLF\l0h0^Z͒ӎnZkVB#ݝKˑ?"gq_ +m)fǩ ccHkxG7 reJeauJ +𡎞ΠZzsS* <> 5A6|Hr{ߏ*(4yq'=J0dСdMm=EfzSRVqn3;Ԓ§m,1?'zET>.瞕3$̻#4SI9 QR +(sd"L^A^,L{.^Uv'6e,XL9yݎN,ڹDt2)\4 +."iEs~wg#~*X| o^Ќ Q3z:YJ!!/upyydBXy~ڬۈ( +=mo^O^a uI2LOlֹsT&jx)߿A䡐f@g4"N|;@K +Gm_ Ujh/7HM *މ]o$[לSwTѦ./{Z7b޳/JxlLa"f^nXgb8GzlII-~ 95epu"yS^ȴ-.0*ϡsc3 !x,DH DYL9-r:/*(JP7tJD} u5yK9ܒ1CɎϽ-sDWvhEp͗͘3%6$_VZJ'tږ{=@I@a 8VFZX׶*^p_LqsK(}̕Jo>x\n@]!]n=@.S{jF踰8ICϴqAShK65ƸZKLt6Gs͖uhVY"rYrB+}d:8Z͟0 R(y qTOdNkQqi_ %g{Ib}Sv'kd!#d|Q&YewI-_bcCtv셔劆uL xW8So^iGh~ݒo{a%lHM`n-Qq;>3p}VJ%XXn.sC< 6xRI)KcVs2M|숢ބ}a(AF _H;g'SawJ6d;MD(#؎lƣ^~#@J:xi{/ZuK]}^ΡruH +"575<Ψ5]ݢn Vf*@]$LʼncjUk+(vEjZN%.&AuĢL+U6`3hC m]u%>"9ydL!"B,5}e9pz&3S]E.cӅ iׇ ^lzV]ilEQSJdǯoe_sv圢mjAitRt$_faA2m14b`HiiKrtv%8[(Ԯdu#l!#X|=1 8ATw#dv>+)T gAّ`+PMVvy& W.yU̫p(h5'lEUGH;im\gCI©ͺ vG<թW9k(`S!=.338>:"z%'%iR@eIֺt7^_|#qݺ4x4h. kwf;ͷ/Q aJU.씿}pi?Gc}bgÁuIhxK1Ѱyj1Fm5P0tz[@-+jOsM K7ΪuAiCwiA"q*KO͓ka^ه$֎a-7G]g}/}ũC?̨ f8ʼnjqbwxV c/_5.m#6Cci07-LHz%Z S +ӧ{؃l=f+|zʰӤz~:|r7C7^϶"/tc}F2R;KRc^roY?liQz7OwuZ&6zY`Gwr~5xbcdxM;VGq Ք \IO1]Ge&KfZҡdGBÃF:޵@tox_D ʐYCD{<@~k'm/5Tms, +$=)2w/i;xAKq̐I~%_ k%^_ïyw̄#K%ykU孏##n}=DXPn.H y xMpl6 ]FDf?At=yڧVJB~^:~%ޕDBÏbFx6Npz<$ʠ(Q8z<`L~/d]S!^`̯jSk /(6A4cb]#mF?.x7+CgZ ./`2yc07Z +}h(Spoͱ>"YW"VAzITŗ_jx43#2woװ*)LSjܒ3NH/ ' # ~|FnP`woY' \d1Ol;#g*.J[o +무W [,DcpHqR">Gd;w.זvƴz6? Y*mݻ/Hd5 +S߾ ܜx:ye]ZGx3xìzoPXuJ_˳ɱJa+P;POb 0nJ +4Ug LEp$y9C%R8bfyCu9_6W@܇p1kBtC&&׏13!vROD +!a`+U'Ev"r)3knGTzΕo/}v=FuTKDc62^1D֣}EpFer].Lw)pznfz7X%Gwh"Į#Pr.ҧ^%d9;-KnvRɧkjBt}?o+c;~r\7rt9Z޶ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/CUZXIF+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %WL3y?vMZªmӛK6I\+-->aP(O/ӗ:0TzGԇASdG.Cw^.t\\[d]ѶMi߭_p5OnPVrzvA&jv0W*4{r:J\W^o}.{8=Cʎ)L2yܪvߣ[/6uE 1vˬ*fחjP9]_w5!gM}H0tZTtdQ!zwaJH#[ *iUsՕu-i1Uw.[;lu *$8:DzRe[eWrqo􂥔{=xHYY:\E#Sߐ$0`(9AivOQ<]c:[nxm@/y?*3>ߎ6S ]-uq^9+rϖ%w +b֠m+υ3?{K&܃I)2-s 9{}я<[;i"RDP2)\Pq#1U6ݦ4bA?'z\]CPCrro2%>* IVBW2е*?c@91p;'5{ NKvKs葻R,K\@_9ic[A\ooF+n~R ;W %QG\ɴW,&ϐ:䨹Ti$ZX.O%j].ph ړkVobU4'}<# LS&D\>ߑi0`Dxfrk_ KJ ~O>$6; W&np t簰X۠ +quK@$m3bv3hQ9UOX@Њ+{ӷCyN'JTV5c{a 1cc2s/)Hbh$PP2)aЬMd(eN'3+$W2谢nU1! ;ݍ~4=ؐP.wOdH=_:fUNx`LL~ +;GDI&'(dF69O+ztIihe!,-ysh*V3nN:7 *5۠wId~#k wPU%l˳R26' ?_[ ty|4sփF$_\X̉2zZ[:e+y4\3|WW3]qi RL9^#:+EscbHLMg\{[W _֟'(7G0]7rFW;Iz˄0^%-pFb$/Tl^(v. 1;j<F3F:R Chy N(sIܻuuP +E]S}ǟ@K4*b-]dUy`! {rjznkT#+?McbBՁ+V܎^FscAYc季52Ƭ ;?B_" +kYv۝#.Lit$}f0ZH-R|4Gקv b"DKE.ZѤ<} !X&r_kMلCT>9(DLtyo CV7[uSryǝͬÄaW.׿<nqZ"GSzrR7kWV~eg/R< + p9V-Z7i3ν(辞Wv3"&%#U[ !I\2{'[&4#\]C_ȉY,v?9I`뒔AVBAu +2ؽ;iX+T05MAKaZw5q\]VůLy]{ =Opi g)!&i i. ӯtYVy!6PyvKqUϱD=< + ^;>3-Ry\{{^g=7? kքˊ:&?W,ݙqf㥩gvk;=u)KlAJ\W u_ƎS|&Y8nKߐ3a {%zC{ B/-}G4 2ez{Z2Q QmL?k X$7e}l'T%}V,O8|Uxj:l^P>JF`?`[ E&zWFDEB^e78,EٕVM`.DSFeҹ,?[_NdW\MnkT&'6o'\[>jed}Ԃ;\"T ui~pPvjikݛl))BN"̥ĖE4uqv%S6OMHm.ɷثCGd^<L]+"5=rQ'/L#-l"ϥݯH"`s=!<*9EPiﺰ-ntk8=|I_>L%Ne/:_R0xcųra !gzmϣ5֭{>gϰˈg>1>u8lLŘ# +*Ik]1suT-w9F|q=|RC,i,n\֣7F>~i~ElW&BFmd]ucYR!=NA1pbsO:,rAג=EO- { сw|Ŀxp =ӗYO +Iϟ,Ϙ= U֞ߥU;׼;rܼ-{pܾ©zsDm}'Ή +/NU^K|N.hz]\vu%u+1ǫl=$׫&Y:M:p B־8S*^ZfIfd5Kſ ?Q|bG%b!.{.ޢzbISļ(񹁏j] lJDD!Rz$O;uE(8QPU3$v4gܕ$9&$;M}+Ҧ/$xxrd(pv>pk/mPz Ӗf9[r,C%i4(8#p*,xIKkcT?;y%L~x6Sy?D# \؇Y +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/LMGIYY+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1R&zU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \Qxn +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/ODAUEJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2137 +>> +stream +xRiTi[@0vBm"J(LUB 8B@EdDPDlE&bTPYVf 33g͙?޽}LV{o9x!D +@ т@@P CD;;)$KDH- +ePyH XpAd ! +a('.;"|@!( ,P("`ALr s偰yͧ6KB/;gPdn$(<*Ǿ\.GC @@@55d 15!bp!S A }a}mBܼ~B"Sw>_U+@`A0QIT_v}5aXHVC `D7HYYDBX%Jx 'RH6O[)і pA(p34?av#`pYeDcMٙ'ƑdgtF"66$韙~.=\+`cC2pSfCʥdbɑ윟zMMw":$NHgɢ6A# WSmUdsg*}pvEOе~u8.(]tC6P Fb2>d4ne/)a*\th)3"6{"XmY-^Ӱyam[2hu;^E^{Scobr A)nbS퐔s%K L+[܋84+ j}Ah;<6d fGmHH[6-R5uXf n=~-\\bvho'kM#mx ұɓjbi Q٪7.J}svf٫Ɔ;> +t|wՌE5kfq5'2TԘE靲ѮC?Ύ?u +m9Pr;fy"V,Bh5eCEXy,?xY9na%eLҺ`afFr'\qn'ÏNe'-a,I}B5ի{TR0mWRE*><82G8XqIE3Vƥ+3pZvz?`تs(|=lJn/T/[{噀u98imqϚ/T%Ryo>"~zqZ„T5qyn۵N:j2HRk)? 7B؝!u,);KSUj:5w&y{C֢\UZM%]7里$4om•LkDKfN(NB33[];FSIC-/XÇ5 BQ EjzPZ>bCUm#C}fzeGql0mŸ!BJG/^6qMpk Ω +?m>J3j0 &3bbLݶxe1#k]ja2 #m + S iiZK?]ѵuۃVa˷T7C)a]V8V%q0/lm(N/%ӿ2h8]>lcrG3 W{E_HZڑݿ'8h O@O4+ԛ> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2214 +/Length3 533 +/Length 2765 +>> +stream +xy<#o4YBEfېmP,)313E*PZ,)ۋ,Gs+a03"Q0p`} Ct$Өx& hip=6JGQ4@:T{3_N&ੀ K#AfQ([AA@D2 x$2˚E~Dߟ-XT~94*% ^M{y: o~ bQ(x?>ޗL Ac1A:`G#tVg'H$|Z32J Ԁ#d9$bL70:H%J>6NV?</W>%:9pku/YR 4"JL<)ܜ `Z: t!jy}H  M(t?b=*뿜!ά1Y>Oy¯7jˡXsW +Ń3֢W8hӲëa2+[V&N>ֻYjAU~!xFgvs\๢A%e }|c'Ű s_j{0B(o1L +sn>t"#R(5_XS8*;Wx'Pl"iln8Sٟqry_>}q%~_v9@XWfh R`=* fڦމ轨:2gGܩsBjQEu6ϊ\CWU.3r})sA59W5"l*Ol<-!-W0\`scCgyym! ].5rHç~2k5爛:ki8Jژ(>RO%ޏy(, qU?$[FC%ۯG"3&TixV.YLi5h{DU;I9UEipb8nϊ굽{/ӝ DwLP !>w& "A Plͻ[|"iG6%{5bڇ"*0lHOy7M + :xutM͑nOݥ2YҘT4Js!ࠈgFs_HEXw2i~l1U#2WA(:dS޵޿kyz:MHgh vb*ٚhv!.-b4duv e<5ؽUsjhnj+Z2EcvGX +\3VCh)_ߚjIo'Z?+ܮ #tg8Oys!{zL,<.)b'4>O] +[в䰅0yW&[h6KjBޓMqݭz6>꤁ѧ[8H%7MD-pO ]_ST:W76}RhSs#C%[RRI?zp q"t4UX=p)}\}p $IhSqwo}w<# ~ NNNØcҼsXǣVdߴYԕn]JMᔙMu{Hc> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2042 +/Length3 533 +/Length 2582 +>> +stream +xy<ǕDc)X*=aJd cJ1`2f2xB( o[d* EeH%=|\}7l=ԁ,)D # 0#l$B@Ẕ8`>7}sa&ȡS),HLi{h;bziۓ!\81WbinQfMu,Mq4ndH;xb38YZ,`f5M+@#c[GErbnWֵ]l ƒ[Ȍ~NNOK2?k^֛/h 8\(LqzS$ kJR4sJΑ5^iVsg ao'I~AO-{ay%Z1*U +rAz]cgu=Wxw霕\U|\ اNZ$ #r b:NXcm>=SB~:D"3nzh=9¾P@ܬ{k\Yj䶿.g0CSNTr)[+9Q(p;BauK>ԑ/ >XmھQL|Uzt!oB 62PQ)f0焗잀*P8C%sG3[TOm7l/|n$wK4TRfxD211ӎ?#w`YȔt$3fI8l?i5bkAI\(WR/I  õcfR%rC}U]w=ttwxA|~uz5ᶆAMWJi+BG5<메}O͎⇯ΎFٗnƳ[bM8[i'a@T1x"?Ӱl̬i&_#lܹ7~2a7 8%U|f T"P]%OOn8{[[s#l^vrSՎۄG;E~:{Z" +.Y5uhތrIHt?S۰Ma{$yL,xp<鈟 aMxS|4!kBElQ8~0TUҫQ +6IJObs ? ]Nj+H픨z3(@XW't[qcgX+ƽҘ1-_wy6%zG]VipoҾ6ܩ=6i3V;!4??=9Oa֑_T,^78TDu3֠uq;dKU]Ҋ*WsQ ajQ]}lcidY;m֭!\vMb+JM,I):U(cD]΄ 5z.T*JşͬL /0COݴ[ *46.ڝ^#>@ETHL +';^.T +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/YYOXVY+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2125 +>> +stream +xgXSi)!a@ +J(BbB'#e0# \`H Mb2`(HD J/PB1"Dd;:gמs~|>}@a.LEcq; +/18Ilp&AqhY8 81ø, \VdAdp'C@8LL2hpрkpRp8 P 2kfVe +'K+duR#@Ia2h\wy0bp}¡Ɵ`{q@{YgĂ""`Fef1L +ĠlBbQ)ёPVy3 X`̬MU2 /u0$Fdx97ᆍf*VPc5Y +#Dh%<#3;Te6W'2s }K1K_Oo"XJrXi*&D۷ͫ ܩUN e +_4uU:3&f0ةwca\ӻ>¨c ++f/j]T<cdX5?.Rj9DC BT}WT6̴y{I ^j=XdvW훁N@=8!f]{{uJjRʊzk딫Y$u¥ey,_Djw0ʢ/K:v._o˗,Cp{,RNg1a`m85V˽-ZB^tB*VWU;%.vR,`KnQˁQnܪ%OΦKPޏ[Nz >LFG;UʣfĊ= j('GJ/R"ϒ}PQtkG `Z4Ԝ+{2974ujs_zQZ?uH!-K1~B'[I>"ߘPMLCFof+_ǽk?jnyQhoMQLnm9m~Nx۽G$[T<* zJ20hSML]j`"ufЁܦrT#ޙO 99$&Vjn9_. /c 2 $L: +l +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/FGLNQJ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw3B1scEc0rB(OȒ["dY,ْ<:y~}s}?ZItK1aH8&H5`o@@  IӌL 4 + uM:*d/o&dKЧ 2@7H !( HpЧP?>AP( D&ziP?Lht@OW+dqJ?H=NF H'TՂGñGaK@%SS I ԟ&LLԧyQ@D?u?Id&$P:H#L7Xcs +?2i{SbY3@ {_+v;C#Id`$H20B`'LM j:?h @kDkP HcNWI@"4 |5_-7C~~R/RS-o9ȲW#T45l0ub\Sݷ* nӡYִc?E.(:N%!uiƻ^Om;nQHZ>Kٝ%;'c6"> C#6fS,ND[' +}D|三񡖾~MT(SO,]֗%?2T>=]y7[(I$9,4"aA)_x)0m8/MT¦*f{gASf&"/*>ZbT}# e(S6^#W$6xUVh'j\fJRj5ʧZ̭Y? S0a(?|ޓ6m8H+◘G:!t)Z{v* +mWۨS#5]Q\ ܏MS,cq{(h8bjt&n4pm|A_82rܮ۾H0-[DqzVbZ5;'=48~pQtq|>6Zˈ>r}xIz^DгOǹ??$LQO`q nLyhE$RCƵW-yKA>sСBPͫ*Y\5U4Y{bϫ%\Qji<(k,N mbf^FJwб%M‡w#װLbrww1Uus)iwepz+)ƱO<&z\dyBTN#2 v%ؘ9R/~\s1cQa`cE5ugg4WZw|d0[>PD=zg(0]?Ħb3]YЂEę^לe=<sPHa\R(!_Z +#+0؁o/6jxZMtf,B 䰠O6뜅&Dd9ę%lk7+Ira5;xǬٺĎRi&T&z.uB͊;^uDjnbc.Ŀ۝lPiļ܁6OMCKǒR ^kC%Ds!_"GX F~kO9ߥ.f$xX+}'^s@.JJ+<qIls `a,~Bk{";z&<8+\݇y+]2~8%ο.y*8d63U;~}<RYrs܀^̲ V;ә$%lg(Kiľ>Gld= P'0vb`M&ɛ/߳+_·/̮iU\o:*&$zJt#>ϻ>hn|ڢd"x]D:% 78莗9[9eSq@Wr#,!gsМgϏ~T=qNE/w o׵o0~:cL+vIur5Oks + 9 ta}i f8h51pv.vD]|#<U+)=uHUbD.˛ %;!~F:By,c6;1~C >rcS$<"EJ]$mMtzPkK^()mYck6fuV륃YW飼|+^)81|TAaDr"ͦ +:W1E)E6| +ɞ2X+bW[I#?-^ƥqԉ7Y ϐGJWBӥNq塀{s-(Z8Mgv#zBY YZ89rJHyZfZ3@EMq)|Wd~IL r$Z3b~蠑J.>٘a]&1opܧՃ@szGl ˵,P>&*tA6X'Eb> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1669 +>> +stream +xkXe5$qTJJ< e[N",! ;21;."b@X"f$U!EP\_w+KWߺ2=0L6 myzm AN_1AȎ 0 +Ix4B\.bL ej +:.ȓ& T"qPH1Vہ `TRJLL#P~D rfۈBBR\qZ:J$p5qԭX2֟P V>tX_TQ +Js"t"B:Wa z;{Vޘ +E6c8q9:G d.n|3 |/A{/G;n1QP}~uc0idB:}5g5/BL"!4L 0#;f₶\GU Gao1'f2of) +B z:vtSBQ* +>ymb6\7U_j,=l5Rо+7X)ȏjkhm=yq'TExsKw٢ƇgX nij7~ip  '鉬x6΋K&%nst2ywLOĨhe2Xl//H+)7_87 :l75v:.DZ۝ +Wt@Ed8-lR7|8 %o{2596>s'1t&}ׄSߑYY޶zFmq*f#̧Wq'j9`ښĈ۫X&v6{wr[pw$Q5˱]>]%Kk&6Fj(xASBB[̾Î9G]q7 d?x0>$25+e5ܴRR(Ql{ 5/}=$,g.J%;uS8z^?Z+m֍k V%),(|{9TMǧYXWڠ'ɞt_A^t"5xӝz ȕLVXSRnV9(pڷ(:,o$w'-Lr Y ?L. [kg(VY]/+^u6ԋtϵZyHc$w* +xTaqd䓤]/en=*yЃQ6U#6[Fv n8sy܁7߀DGa&0JD +endstream +endobj +54 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/YKQUPE+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 53 0 R +/Flags 68 +>> +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?;04Uɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\Ùw +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/DWDXYZ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2356 +>> +stream +x{8T%aO ːCa1ˆ"eZ3safL4SL-T.a"w"R*e"EDB)3iwssZ]ﳾ맥7遐#2010(CC;X0fO`ApE cabj1E ,=4X.͵B H8+ O'+ +& 1!Q0Bd@r2ņLDD F@@EA"p<1Bq#P_ +o}DSCYAA}A N"P`-Lf:t# f„tL"omc{{םX^`}URb(f(́F0 YH`NegG`L#ql6Ms  CCC3#%`@4ҁ}R{tt+*/="XZY Yxѡq J%qWjl&L2?)mW3(};k8}u\2PT~ELfSޭwZkMۢBlfaOϳ(5!ٜهŚyUt?=uϟ(?æ("WdߘEG\r2m΁ydS싌,ms@kpxō)kRQ[un:&*']5}1O*]+[E,28ߡn:Sǀ^i* 4azltj}U ON-3{J쵬pp15w>tF{4MBZJPWo +rm{Yl*d%\Imoi~_`zCtx@ Vɾ:lCހ}5*'A + RYu^R~3rIǹ.) ܲ1Hlh=)6V oX$D8YF1fM +)J 6b2LLy;*i{_n%xNa zr.U 3SaaIedkvZ(69ѹ|tlHp 9ZzcVxZLX9eyW|ch1wW]cB_Ų2'Ѿ.pjF!(c]cNd{?u$ʋ7~.nN^{yIƤT(Hx‹/J5wzP FλaB#S7~1|[uF7{:ӚƩ[0g*yN)!poj=rplRW2 v7 xun`Q czH:+fj3\!_ͥHL +H\%Zv!k/&5F)Ȩ+:HZk=+/i!wyErڦ ~՗sfdr @z?~;4QY%%jѾy}J37BGIf~xI&kb AW1ng ҡ 5 qe[*WW]w[9|Tv/ZWjsLg +z<ĦlrQ|imuN{$GifG:|zx W l\f4gOWt'G5,d],<""ܦP݇Ե9dKƵM\b')S SB +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/SYZIWX+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 61 0 R +/Flags 4 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9623 +/Length3 533 +/Length 10176 +>> +stream +xUp3㈙3k,l1[d[F̒Ŵ>{7}ط̿*"*&P)VpqpH!Jl2n@! @{##]lm ҌP$.` ᯉ9hi tf$A ?^qh].@+6ddNNhm Ff"#_i+w,y]\rIiyK ws9wHl;؂Ct:Z]. NheUE7s$p+e*gdfipsq3 [;]S@QW?뿪mnZNe?c폋o9 +|2dV`k9JJ˗ pp2m;PQ!Ϭ }w hpʰρoZI2R"]זWG;*lG‹lzxS>$9?/r+)REBf)%E >٦3 /bރOKM!# ާE ZK )_-eVƖVߣԼT2`dQP)]XtDO/uiF]H,B'wQQA?#T6RY,LdpGǶg ATW95+^&?U9ӣvq݃}Myo$۱ڽ_Ș餖‘|:l[ +^iZ'+Fr<&Iknxž{F[FW9u۞@{EfmT?j\X |%y ZiUNF|qJ)|MD8wH}rO"Bhw{M?*ǰ%22Ӷ?(7 +KFv~Tb r9O;PFv%; UĦJy&wmw^\Y\2l%q`U-?F(K$U !i>Yjgu +M_`K9Mw@/vKաd:RsPysT)H|7e#ݮ)+eM&sM!))f*|>PswbP;7\3%67J4˰j +ӹ撼+~Q<pO۫/*6 3KD/8偩Rv1QkOދ.5x8(yRf7] qؚ&Gﺡ尥fq!kkQ Gӆm}-Xovj>rNܹV)RR{y2^2w&i+PxvI z\uw6~EXJh0nSc:$L2 r|K|JSZϣ,vSrnL{ "fw\M5׾R照 &n\# H7\ "Vh.ݹc9JTEod1 Mla#%TcStVhbo(RetadWW)z֜sXȶROXI4cTZ#`p=_%t3\U$XjH d|D +#iiX1fx1}Dp+H| TNt/xN xO7z`Xբ {i~1Mo4gD MALT_w\iƛl4z^Œ_adB-@'M j4~VNą}s(xeq~m|㏅Kv A»8N/?v/Yu_$p(Y|޵{ inGtdűZVMgf\I ¤CMMk&k. +@b{)k/+CyL.ev1Y>6$zqSAʙKRBLlY^f`k }hAg[2nXخгW^҂M_fZNr-W -S+6v3~JÀfY\} $./F$ߊL3mXOf +OZc&]/~_rNJQ[82 0?(]-Eghܽ=z$9 +@CC}k'l>%[ *Axy텆n^PbV9~T/xL)wu +.s7"ޣfS x 3ozrE X,#x7 +AL  eZQ5ʪ kqoX1e=<RJxW"*p>W >2*S6 l}vAUn ߩUOPO*(_/2rHeih?? =fBvE}SDqp5cY >)< Bt(ڌyoz %DQCpl~I(XA k^Nى+soʅ"8v΀opOEo%E,fdwR&a5W{?99K:Ymi)I߳ۈ|`NWOOM`_ $/SYHSF7B L(Vh[ѽQdB`}g&0\ ogm˂ňw25,v|eR$tshm[?LɺKr$7o{7XnLiOonGίeCWYa9¾6SrO,mku>DXz{xaX"3U~ IF-cwb +ֈs!IHz!`LagZG34Uo1 xt\chq {!+ʲ"nޭO+nFSkcjE( w=[#w3%?]btLNy1v56&If-O8pTB*C~6b0+04vt;VUVQd~y-*+ +FXb6gb"Hwо [<$kmx RTL_'m +rсh򼼁ÃV,t q>IL]tj_eau@DO;ɾ!"'S$uk"r/֏>rj!9'}I?!ytv.#D)^Z_<G,￾ S;"1mrҍC+If?Ugw3qµ̈́bwg|ѕKm!4ژJ \I;BB$[gl +{5RV+ԃ_ƫ:1/j6~Ykk8|=.; G)Oql`J#!hHXHۚT έ8Gɧc?Re>$ Y6jA~Y~, +Dg)WOڶɑbz3# |7~s18`:C Y=yjlU[PEG*t3WKЀ63ִ c0fSB*1rG6B?᩹Ѫ郚Çڵي=IXݺϡZ>z_A0|yQW+!&p֢,W ƒÿܾ/ xJbJKF_^*X~(pb +Y9z؞OO^F)-=-x[u]^o0HsOjݮhͪwf` tx#W(8"n k!nk=9uܨHѻb[˳{fN2h)3bGzɑ.-hΈ~]>C@Ӈ'*RY#&, oO "^#_ƴs$0vTb)VA,ߢ\C;A}=E8>r@>#zEG\@Zs.|By(* 5L3 g%&pf@Qs~Q/'d:qXJAIq ".C׺gIqn 5-(gI=!x[XjCqb:*5iC%G:g,u&3nn4(֝Yw8bo}Eq)۫sbN+QM> tlz>X(UP;.j+ +q9=oj8JO3^Od7JY/d@`j\ýomΘxfs X1 &Dϥ/=jɃ9CEϏ׶u?< GR-]>$nζ/=U/t`EHd}ɛԪxMo~Ne??;Lme_^WɿqK܂|}b_ǁw !ࠈ?-F7|g<ü^v~eft_qc=89CYQŏlW|B.̲淳 GBiqEڟPP,MsA6 [˰0;f}@G&=^(Qu=-b<{* Us~Rb7g3io0_8W% Ҙ|j43˒y/j cLMV!>CF<1/"P ^&շ~D!N|4i(7qI4m6. M% %/tl>dE}4P܉Ntw[ ;l8(~S6!MGRTcOxlP,xϯ&g!Tx0PiT"J ChELM-4 D1۰Ȥuêjo~)lih5EeA]j)sFKD>G?(٦,D~spvqCqऺ"𬡱WC5߽QCZ1dKU{u#ȖwsɋR(2aePQٞ:Zc#]1"⋅A8u\ TR]cN `g (2Ph[sMVax (<5Qk©#Zv=V+*- }BQxۇZ96g:|x^ _s(̰[o, dvz{O?WODʌf `xS葝18__)>Qd5>}ל/h-LΔC)*^a9h7L,Ca@jjLgٸ١a{n,_b쥟ɏlG#F{F>WT[qنe/ CRN%17|T B9!CeԾ +z_<Z $J 咬㒉 +%g?q;  +)T=θ>&lK7գ:}=]kQdKE ̰,Pu@Aw9-cQo{mZ)7TD͘'HJzOQA/Ю 8zBCZvx^*zưa|w,CJM^ ޣS_4VL"m´}կᦘvx ZC:IDk(vZK8<_JI8oC™k,J5=|i_gLgu^ԏ]JwK엧DWj.iˈtR\[ XC +nG1B@r|.{t_o/5NQyܦ1h!V8REI'˯lDŻ~!㯥N5sO2w0ԚFV_RF7ަͽskVjZ(Ǩd^bcڲj@y(ԫL>}Fh~vh!iU^֋g=]vyhƕAk:V*tt=|tkT>Ԡ"-F| KwzM􅄷$~BK*iv2h7D%ֺ1<@g)ܐ0ͱ[VSy(PkxgNϴskDOo1_pJND3sOnr-گ;K埫I.t+!MsY.Q*RUH)f'sZ<:@Ѻ-M"LD/\9N/{=a$ZOZe67Db?zbάIo,rd kqX" +)Cm$\\ۼ}a +Ko%)cU;^sD"%:0 #ִq.93 >j +oo͸ouG& k-*ڿ[s1٦֕X$L3@PWi{!_k ;;rwȤ{V멱C-W" 'ڌdGǙVqͯ&}'/M=mr/ED?|y{Nb!]ܛ+V^*%Ώ&V.y8_URI?lK dwdi'I!~;tuًޕ\d{OFtin%(MfϊX>=g ,[~YtRyTP!2z#9n53s#N) eK3$D3(ɛBLH邉NggecwԂDR*F wն#e(|,^)OȪN3 ΐri +gԼ-¯#V>&Ĕ."}PeU#fŜ{/)PAƉKNڠѮ;,~Zڻ\=& D.'-پٷQ S|7g:"BYiEpE LW^UJ7~s:$Rf8 +&ۅ l]CeUu.û2Qťws=(ff$Y<08 ͗8zzblD[(Ypl%蛐=op q\fQ/=؏_Ԣ%\$PU+ݫ=1N#n3w'MJ; qu%]vVi[hʨs'z7&^'TTѰU\slBdɭjHvnH*< "d*0?avgҤ :&n<~E0Z(} ūCLS Vuk⚕5D5湪 |[۝IUJ`4,SAVLAȉ&+XPݧ/I>D.~p[ .s7NWAi]қoĦm6Y?ŴWomr&@٥\é' ź2BQ/Z͠E*,EG + +o<(WZUȍݩLyDѿ~B.416W喍#3o);gGvWf;EugLxBB'2:S˩"eͷŽQ mmʵ9Ys] +O~/ +Uh/V$íFlOyB7]xԪ[D-L6j0k)- ǣX(W HҦ@Sq9GI輘S+ܡkpw|!dfǴQ(7~{{_Q5 :Vމ!+ˍNRi|JlW8ܨkϵ૳ 󝷃r6?5;*Q1:ZAY9qkE`h\̾4y+z>(%cAm~ Lf?G~t_~+IaD,IP#> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5594 +>> +stream +xUT\ۖq S¥@p ,C= ksoK~{sD% q*8;!@@(@V]W ypdݠ%* +6}AQ~Q^&`e%v-[kK5?^q@ݡnP@ pg @a8οWfc7TWppаt#A[Pw@ݜn5=UFX:l. _2] hֶ;O;$'mWWqxe=$77m}o;Y;CN6] ¿S8{q x~o$/@HPe9🪵 fa3B83朴g ZFH"`=+gU[B.Huk#+1ޝB|)TFQLR+Ϳ \`ŏ+J'yFǥQłf(=%sU.6#+,NZō=aDğTpds#cy[C.-Axӌِ9Z& ߲|7fz>VFFBY x*a3,=W6(}f DlMmuyH@o +/se:Etّ6TDɂ[9ɣ<'htKraFE7ACj_)G13o_Q[<_n0J(/h\P +C )x wke#y+aƇ_TAw͛p; s)3zWWn-e[K6DgKf~ګ(/vTzvrBƴ}=oglu1vR"(@X-lPx&&8äv,:oϕ$H +-lȓPK(T~fko{VvO9w=[W4T~h*v}}@.ǪbzrBv3ܚjFsR =@8C6KH'C}Z.czE()IncݏFq\fQ\# 5ť07,KL2‘(\^ًM +_ƴ}[_4rƔbeAp8^\ ILH,%qQ};|+[# +ocQf"Vvceb:~lk\*X#t(}0Wۊcm5̗y,śa1ɫO*h1kե*vX5PwlB-Z&*Pu; Z x"??sP ZYVN"pq織`ǭ׃b\`o9@\pufs9WWx >W+P.]#Bl?-x| Z0^.y/e3Ambϐ )~$=mK=lHCU}J;_fh\Ъ{ӳ¨ !BTH795Y FCfQ,uPG#Qvt.ƚOg܁1{PdlI1~S?ĶȚIpë)V 3+;In%G+@jA,2!D<=v)TV U p:JX gvh?" ى,YRqdW,1]ƞXj\%\S{{L \/wdJ +@ib\hRWYm +/m;V3.&UtGf*OUYs٬dߣrM*EWrgDĮ rR@k 㨢Cp&pݩOr"L]i #ߐW$Zʟ~#x"9v]#jl? r`07&5TNک/TNx"b;iz}M db2-9q O+sz}.ʪoW>y_N%PD{&5~\W~̬Xe'}qQX]Hґx{F>d}%`#U\yZЬî\ޞc;.~͵mBݏ/x1^GTq~OCny, I|.ԃH**ZTCs!pd̂Bv IHfoF _ǫK$S38X5*gAZx&&h~Iv0vokNn; 戆QL1!9@13ER@3`I[HLÃm_nQK{ҪsNŅqQ ͽPr!sF[~̻PE;on?JaJU*R +yE֮>d, h|i{NTΒ66I?=0˟f Fu4ʣT;W|N1t涞lfD66o' V JsH#v-Az^_eTX+ +DˌK.19F_uxh>yu(IuMm~?^ͫи,iy;Je||,r#/ /8E4bXN'$?1if_^=%U"}蓮΀,j_=Iw:G!͘YSҪ 7;*g+9r3[V.c&Bi´ﲷ0jHC _TIVCZeݘ$ȪDw7͜vGf^8v_iՙb;'<*t|u "'xrAϱhypԸF!/0ąi6m]mXצ-UP1{i9j7j|k={µ|$%|4;@.I`lB5ϔwER*Q dN%l_=)m6| fJ; ȰJyqt\ +ԩ@K +hP_ +bEr*Ͷv%r(>p(b}hLJ ]Dx?y)< xbԷkfH\G|" ځ]ҏJj/vJ9ƵύVr>I9hdu%sA\hz;@?07 ۊξ\r% G59'57,?)Gc"VSgQ"3EJմ1a(.TP$&g +i=9h7H2ꫩ0\T.6H0ݛ4oƕY9=DT=~2K{߀Z8?Vj}?ZO\:>yfD|ieh3}:oTZ㺔cOP ^%KEE,#-I5TЭFem T* +# SmO#c!IlmLGrד2>nxeC-*[: 3 _6 +))>DM +cYF%Љ׶| !ɞ` +!=Nſ{_z,Y2 X=mOJe"UȦ0>0P@ +㲋x`7@#qVBf֡غSN+~*e :&59qQ\6~)$5%)ꌎ:URYHUVеMAo·{qgen<ٛ/.>Kgeh>iOyQZKN\roCJP('(_t[5r19hZ>i GJ,YC;6(}_6 +q+̳3l'WLO#My>U)lbL{Etk$17+tΈ7rd9F^Ӂp_7ȷhR,?m'y!BCD[wmEaKa-y&oBo^G#u8y Auρ6xOI8cJsR>H6TK; +Ex}(~ ;-cZkYšDsb&h9O +-@豘Ywn;19_w|yI6OIRlPto(0'gzSqS+aMGwq,Ņ֗ƲГwɡ!q2/ScV0ހ"ǔ8~i"Arz4LE9ۘzkǐ斊" +Idף}lc"<ȼԸS(UF-(= H5DV5=t2RXp [7dW:&<#FFtąW4[I{[rK:qMW7.HS{J&x"MH$qk'@nWhO>,7S//?`tC8;Zv +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185351-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 141 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 141 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 64 0 R 19 0 R] +/Parent 141 0 R +>> +endobj +66 0 obj +<< +/Type/Page +/Resources 67 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 142 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 142 0 R +>> +endobj +142 0 obj +<< +/Type/Pages +/Count 2 +/Kids[66 0 R 70 0 R] +/Parent 141 0 R +>> +endobj +141 0 obj +<< +/Type/Pages +/Count 5 +/Kids[5 0 R 21 0 R 44 0 R 142 0 R] +/Parent 3 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 143 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 143 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 143 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 144 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 144 0 R +>> +endobj +144 0 obj +<< +/Type/Pages +/Count 2 +/Kids[86 0 R 90 0 R] +/Parent 143 0 R +>> +endobj +143 0 obj +<< +/Type/Pages +/Count 5 +/Kids[74 0 R 78 0 R 82 0 R 144 0 R] +/Parent 3 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +146 0 obj +<< +/Type/Pages +/Count 2 +/Kids[106 0 R 110 0 R] +/Parent 145 0 R +>> +endobj +145 0 obj +<< +/Type/Pages +/Count 5 +/Kids[94 0 R 98 0 R 102 0 R 146 0 R] +/Parent 3 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +148 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 147 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 139 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +149 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 147 0 R +>> +endobj +147 0 obj +<< +/Type/Pages +/Count 6 +/Kids[114 0 R 148 0 R 126 0 R 149 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 21 +/Kids[141 0 R 143 0 R 145 0 R 147 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +150 0 obj +<< +>> +endobj +151 0 obj +null +endobj +152 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 150 0 R +/Threads 151 0 R +/Names 152 0 R +>> +endobj +xref +0 153 +0000000000 65535 f +0000106784 00000 n +0000110324 00000 n +0000109969 00000 n +0000110174 00000 n +0000106948 00000 n +0000004049 00000 n +0000000009 00000 n +0000039741 00000 n +0000039557 00000 n +0000000913 00000 n +0000044527 00000 n +0000044341 00000 n +0000001906 00000 n +0000049766 00000 n +0000049578 00000 n +0000002823 00000 n +0000110074 00000 n +0000003740 00000 n +0000110124 00000 n +0000003994 00000 n +0000107051 00000 n +0000011844 00000 n +0000059578 00000 n +0000059389 00000 n +0000004110 00000 n +0000064850 00000 n +0000064660 00000 n +0000005056 00000 n +0000070154 00000 n +0000069965 00000 n +0000005992 00000 n +0000006968 00000 n +0000072599 00000 n +0000072405 00000 n +0000007922 00000 n +0000075664 00000 n +0000075478 00000 n +0000008868 00000 n +0000078551 00000 n +0000078360 00000 n +0000009832 00000 n +0000010826 00000 n +0000011745 00000 n +0000107156 00000 n +0000021419 00000 n +0000080984 00000 n +0000080790 00000 n +0000011906 00000 n +0000012877 00000 n +0000084539 00000 n +0000084344 00000 n +0000014493 00000 n +0000086516 00000 n +0000086322 00000 n +0000015445 00000 n +0000016455 00000 n +0000087933 00000 n +0000087738 00000 n +0000017362 00000 n +0000018344 00000 n +0000090589 00000 n +0000090403 00000 n +0000019321 00000 n +0000020066 00000 n +0000021271 00000 n +0000107261 00000 n +0000021868 00000 n +0000021481 00000 n +0000021823 00000 n +0000107366 00000 n +0000023262 00000 n +0000021930 00000 n +0000023114 00000 n +0000107645 00000 n +0000024288 00000 n +0000023324 00000 n +0000024152 00000 n +0000107750 00000 n +0000025377 00000 n +0000024350 00000 n +0000025241 00000 n +0000107855 00000 n +0000025779 00000 n +0000025439 00000 n +0000025734 00000 n +0000107960 00000 n +0000027302 00000 n +0000025841 00000 n +0000027154 00000 n +0000108065 00000 n +0000027727 00000 n +0000027364 00000 n +0000027682 00000 n +0000108345 00000 n +0000029234 00000 n +0000027789 00000 n +0000029086 00000 n +0000108450 00000 n +0000029739 00000 n +0000029296 00000 n +0000029693 00000 n +0000108556 00000 n +0000031248 00000 n +0000029802 00000 n +0000031099 00000 n +0000108664 00000 n +0000031752 00000 n +0000031312 00000 n +0000031706 00000 n +0000108772 00000 n +0000032783 00000 n +0000031816 00000 n +0000032646 00000 n +0000109058 00000 n +0000034015 00000 n +0000032847 00000 n +0000033878 00000 n +0000109166 00000 n +0000034422 00000 n +0000034079 00000 n +0000034376 00000 n +0000109274 00000 n +0000035760 00000 n +0000034486 00000 n +0000035623 00000 n +0000109465 00000 n +0000036979 00000 n +0000035824 00000 n +0000036819 00000 n +0000109573 00000 n +0000038110 00000 n +0000037043 00000 n +0000037950 00000 n +0000109681 00000 n +0000039493 00000 n +0000101075 00000 n +0000100880 00000 n +0000038174 00000 n +0000039097 00000 n +0000039435 00000 n +0000107552 00000 n +0000107471 00000 n +0000108251 00000 n +0000108170 00000 n +0000108963 00000 n +0000108880 00000 n +0000109872 00000 n +0000109382 00000 n +0000109789 00000 n +0000110256 00000 n +0000110279 00000 n +0000110301 00000 n +trailer +<< +/Size 153 +/Root 2 0 R +/Info 1 0 R +>> +startxref +110422 +%%EOF diff --git a/src/axiom-website/CATS/schaum15.input.pamphlet b/src/axiom-website/CATS/schaum15.input.pamphlet new file mode 100644 index 0000000..0c01fbb --- /dev/null +++ b/src/axiom-website/CATS/schaum15.input.pamphlet @@ -0,0 +1,1332 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum15.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.311~~~~~$\displaystyle +\int{\frac{dx}{x^4+a^4}}$} +$$\int{\frac{1}{x^4+a^4}}= +\frac{1}{4a^3\sqrt{2}} +\ln\left(\frac{x^2+ax\sqrt{2}+a^2}{x^2-ax\sqrt{2}+a^2}\right) +-\frac{1}{2a^3\sqrt{2}}\tan^{-1}\frac{ax\sqrt{2}}{x^2-a^2} +$$ +<<*>>= +)spool schaum15.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(x^4+a^4),x) +--R +--R +--R (1) +--R +------+ +------+2 +------+ +--R | 1 8 | 1 4 +-+ | 1 2 +--R |------ log(16a |------ + 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+2 +------+ +--R | 1 8 | 1 4 +-+ | 1 2 +--R - |------ log(16a |------ - 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+ +--R 4 | 1 4 | 1 +--R 4a |------ 4a |------ +--R +------+ 4| 12 +------+ 4| 12 +--R | 1 \|256a | 1 \|256a +--R 2 |------ atan(-------------------- - 2 |------ atan(--------------------) +--R 4| 12 +------+ 4| 12 +------+ +--R \|256a 4 | 1 +-+ \|256a 4 | 1 +-+ +--R 4a |------ - x\|2 4a |------ + x\|2 +--R 4| 12 4| 12 +--R \|256a \|256a +--R / +--R +-+ +--R \|2 +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(4*a^3*sqrt(2))*log((x^2+a*x*sqrt(2)+a^2)/(x^2-a*x*sqrt(2)+a^2))-1/(2*a^3*sqrt(2))*atan((a*x*sqrt(2))/(x^2-a^2)) +--R +--R +-+ 2 2 +-+ +--R +-+ - a x\|2 - x - a +-+ a x\|2 +--R \|2 log(-------------------) - 2\|2 atan(-------) +--R +-+ 2 2 2 2 +--R a x\|2 - x - a x - a +--R (2) ------------------------------------------------- +--R 3 +--R 8a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R (3) +--R +------+ +------+2 +------+ +--R 3 | 1 8 | 1 4 +-+ | 1 2 +--R 4a |------ log(16a |------ + 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+2 +------+ +--R 3 | 1 8 | 1 4 +-+ | 1 2 +--R - 4a |------ log(16a |------ - 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +--R 4 | 1 +--R 4a |------ +--R +------+ 4| 12 +--R 3 | 1 \|256a +--R 8a |------ atan(--------------------) +--R 4| 12 +------+ +--R \|256a 4 | 1 +-+ +--R 4a |------ - x\|2 +--R 4| 12 +--R \|256a +--R + +--R +------+ +--R 4 | 1 +--R 4a |------ +--R +------+ 4| 12 +-+ 2 2 +--R 3 | 1 \|256a - a x\|2 - x - a +--R - 8a |------ atan(-------------------- - log(-------------------) +--R 4| 12 +------+ +-+ 2 2 +--R \|256a 4 | 1 +-+ a x\|2 - x - a +--R 4a |------ + x\|2 +--R 4| 12 +--R \|256a +--R + +--R +-+ +--R a x\|2 +--R 2atan(-------) +--R 2 2 +--R x - a +--R / +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Integer +--E + +--S 4 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 5 +dd:=atanrule cc +--R +--R (5) +--R +------+ +------+2 +------+ +--R 3 | 1 8 | 1 4 +-+ | 1 2 +--R 4a |------ log(16a |------ + 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+2 +------+ +--R 3 | 1 8 | 1 4 +-+ | 1 2 +--R - 4a |------ log(16a |------ - 4a x\|2 |------ + x ) +--R 4| 12 4| 12 4| 12 +--R \|256a \|256a \|256a +--R + +--R +------+ +--R 4 | 1 +-+ +--R (- 4 + 4%i)a |------ + %i x\|2 +--R +------+ 4| 12 +--R 3 | 1 \|256a +--R 4%i a |------ log(---------------------------------) +--R 4| 12 +------+ +--R \|256a 4 | 1 +-+ +--R (4 + 4%i)a |------ + %i x\|2 +--R 4| 12 +--R \|256a +--R + +--R +------+ +--R 4 | 1 +-+ +--R (- 4 + 4%i)a |------ - %i x\|2 +--R +------+ 4| 12 +--R 3 | 1 \|256a +--R - 4%i a |------ log(---------------------------------) +--R 4| 12 +------+ +--R \|256a 4 | 1 +-+ +--R (4 + 4%i)a |------ - %i x\|2 +--R 4| 12 +--R \|256a +--R + +--R +-+ 2 2 +-+ 2 2 +--R - a x\|2 + %i x - %i a - a x\|2 - x - a +--R - %i log(-------------------------) - log(-------------------) +--R +-+ 2 2 +-+ 2 2 +--R a x\|2 + %i x - %i a a x\|2 - x - a +--R / +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 6 +ee:=rootSimp dd +--R +--R (6) +--R +-+ +--R +-+ 2 2 x\|2 + (1 + %i)a +--R log(a x\|2 + x + a ) + %i log(-----------------) +--R +-+ +--R x\|2 + (1 - %i)a +--R + +--R +-+ +-+ 2 2 +--R x\|2 + (- 1 - %i)a - a x\|2 + %i x - %i a +--R - %i log(-------------------) - %i log(-------------------------) +--R +-+ +-+ 2 2 +--R x\|2 + (- 1 + %i)a a x\|2 + %i x - %i a +--R + +--R +-+ 2 2 +--R - a x\|2 - x - a +-+ 2 2 +--R - log(-------------------) - log(- a x\|2 + x + a ) +--R +-+ 2 2 +--R a x\|2 - x - a +--R / +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 7 +ff:=expandLog ee +--R +--R (7) +--R +-+ 2 2 +-+ 2 2 +--R %i log(a x\|2 + %i x - %i a ) - %i log(a x\|2 - %i x + %i a ) +--R + +--R +-+ +-+ +--R %i log(x\|2 + (1 + %i)a) - %i log(x\|2 + (1 - %i)a) +--R + +--R +-+ +-+ +--R %i log(x\|2 + (- 1 + %i)a) - %i log(x\|2 + (- 1 - %i)a) +--R + +--R (- 2 - %i)log(- 1) +--R / +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 8 +gg:=complexNormalize ff +--R +--R %i %i +--R %i log(--) - %i log(- --) + (- 2 - %i)log(- 1) +--R 2 2 +--R (8) ---------------------------------------------- +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 9 14:311 Schaums and Axiom differ by a constant +hh:=expandLog gg +--R +--R %i log(%i) - %i log(- %i) + (- 2 - %i)log(- 1) +--R (9) ---------------------------------------------- +--R 3 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.312~~~~~$\displaystyle +\int{\frac{x~dx}{x^4+a^4}}$} +$$\int{\frac{x}{x^4+a^4}}= +\frac{1}{2a^2}\tan^{-1}\frac{x^2}{a^2} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(x/(x^4+a^4),x) +--R +--R +--R 2 +--R x +--R atan(--) +--R 2 +--R a +--R (1) -------- +--R 2 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=1/(2*a^2)*atan(x^2/a^2) +--R +--R 2 +--R x +--R atan(--) +--R 2 +--R a +--R (2) -------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 12 14:312 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.313~~~~~$\displaystyle +\int{\frac{x^2~dx}{x^4+a^4}}$} +$$\int{\frac{x^2}{x^4+a^4}}= +\frac{1}{4a\sqrt{2}} +\ln\left(\frac{x^2-ax\sqrt{2}+a^2}{x^2+ax\sqrt{2}+a^2}\right) +-\frac{1}{2a\sqrt{2}}\tan^{-1}\frac{ax\sqrt{2}}{x^2-a^2} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(x^2/(x^4+a^4),x) +--R +--R +--R (1) +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R - |----- log(64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R |----- log(- 64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+3 +-----+3 +--R 4 | 1 4 | 1 +--R 64a |----- 64a |----- +--R +-----+ 4| 4 +-----+ 4| 4 +--R | 1 \|256a | 1 \|256a +--R 2 |----- atan(--------------------- - 2 |----- atan(---------------------) +--R 4| 4 +-----+3 4| 4 +-----+3 +--R \|256a 4 | 1 +-+ \|256a 4 | 1 +-+ +--R 64a |----- - x\|2 64a |----- + x\|2 +--R 4| 4 4| 4 +--R \|256a \|256a +--R / +--R +-+ +--R \|2 +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=1/(4*a*sqrt(2))*log((x^2-a*x*sqrt(2)+a^2)/(x^2+a*x*sqrt(2)+a^2))-1/(2*a*sqrt(2))*atan((a*x*sqrt(2))/(x^2-a^2)) +--R +--R +-+ 2 2 +-+ +--R +-+ - a x\|2 + x + a +-+ a x\|2 +--R \|2 log(-------------------) - 2\|2 atan(-------) +--R +-+ 2 2 2 2 +--R a x\|2 + x + a x - a +--R (2) ------------------------------------------------- +--R 8a +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R (3) +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R - 4a |----- log(64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R 4a |----- log(- 64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+3 +--R 4 | 1 +--R 64a |----- +--R +-----+ 4| 4 +--R | 1 \|256a +--R 8a |----- atan(---------------------) +--R 4| 4 +-----+3 +--R \|256a 4 | 1 +-+ +--R 64a |----- - x\|2 +--R 4| 4 +--R \|256a +--R + +--R +-----+3 +--R 4 | 1 +--R 64a |----- +--R +-----+ 4| 4 +-+ 2 2 +--R | 1 \|256a - a x\|2 + x + a +--R - 8a |----- atan(--------------------- - log(-------------------) +--R 4| 4 +-----+3 +-+ 2 2 +--R \|256a 4 | 1 +-+ a x\|2 + x + a +--R 64a |----- + x\|2 +--R 4| 4 +--R \|256a +--R + +--R +-+ +--R a x\|2 +--R 2atan(-------) +--R 2 2 +--R x - a +--R / +--R +-+ +--R 4a\|2 +--R Type: Expression Integer +--E + +--S 16 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 17 +dd:=atanrule cc +--R +--R (5) +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R - 4a |----- log(64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+3 +--R 4 | 1 +-+ +--R (- 64 + 64%i)a |----- + %i x\|2 +--R +-----+ 4| 4 +--R | 1 \|256a +--R 4%i a |----- log(-----------------------------------) +--R 4| 4 +-----+3 +--R \|256a 4 | 1 +-+ +--R (64 + 64%i)a |----- + %i x\|2 +--R 4| 4 +--R \|256a +--R + +--R +-----+3 +--R 4 | 1 +-+ +--R (- 64 + 64%i)a |----- - %i x\|2 +--R +-----+ 4| 4 +--R | 1 \|256a +--R - 4%i a |----- log(-----------------------------------) +--R 4| 4 +-----+3 +--R \|256a 4 | 1 +-+ +--R (64 + 64%i)a |----- - %i x\|2 +--R 4| 4 +--R \|256a +--R + +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R 4a |----- log(- 64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-+ 2 2 +-+ 2 2 +--R - a x\|2 + x + a - a x\|2 + %i x - %i a +--R - log(-------------------) - %i log(-------------------------) +--R +-+ 2 2 +-+ 2 2 +--R a x\|2 + x + a a x\|2 + %i x - %i a +--R / +--R +-+ +--R 4a\|2 +--R Type: Expression Complex Integer +--E + +--S 18 +ee:=expandLog dd +--R +--R (6) +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R - 4a |----- log(64a x\|2 |----- + 16a |----- + x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+ +-----+3 +-----+2 +--R | 1 4 +-+ | 1 4 | 1 2 +--R 4a |----- log(64a x\|2 |----- - 16a |----- - x ) +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-----+ +-----+3 +--R | 1 4 | 1 +-+ +--R 4%i a |----- log((64 + 64%i)a |----- + x\|2 ) +--R 4| 4 4| 4 +--R \|256a \|256a +--R + +--R +-----+ +-----+3 +--R | 1 4 | 1 +-+ +--R - 4%i a |----- log((64 + 64%i)a |----- + %i x\|2 ) +--R 4| 4 4| 4 +--R \|256a \|256a +--R + +--R +-----+ +-----+3 +--R | 1 4 | 1 +-+ +--R 4%i a |----- log((64 + 64%i)a |----- - %i x\|2 ) +--R 4| 4 4| 4 +--R \|256a \|256a +--R + +--R +-----+ +-----+3 +-----+ +--R | 1 4 | 1 +-+ | 1 +--R - 4%i a |----- log((64 + 64%i)a |----- - x\|2 + 4a log(- 1) |----- +--R 4| 4 4| 4 4| 4 +--R \|256a \|256a \|256a +--R + +--R +-+ 2 2 +-+ 2 2 +--R log(a x\|2 + x + a ) + %i log(a x\|2 + %i x - %i a ) +--R + +--R +-+ 2 2 +-+ 2 2 +--R - %i log(a x\|2 - %i x + %i a ) - log(a x\|2 - x - a ) +--R + +--R (- 1 - %i)log(- 1) +--R / +--R +-+ +--R 4a\|2 +--R Type: Expression Complex Integer +--E + +--S 19 +ff:=rootSimp ee +--R +--R (7) +--R +-+ 2 2 +-+ 2 2 +--R %i log(a x\|2 + %i x - %i a ) - %i log(a x\|2 - %i x + %i a ) +--R + +--R +-+ +-+ +--R %i log(x\|2 + (1 + %i)a) - %i log(%i x\|2 + (1 + %i)a) +--R + +--R +-+ +-+ +--R %i log(- %i x\|2 + (1 + %i)a) - %i log(- x\|2 + (1 + %i)a) - %i log(- 1) +--R / +--R +-+ +--R 4a\|2 +--R Type: Expression Complex Integer +--E + +--S 20 14:313 Schaums and Axiom differ by a constant +gg:=complexNormalize ff +--R +--R %i log(2) - %i log(- 1) - %i log(- 2) +--R (8) ------------------------------------- +--R +-+ +--R 4a\|2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.314~~~~~$\displaystyle +\int{\frac{x^3~dx}{x^4+a^4}}$} +$$\int{\frac{x^3}{x^4+a^4}}= +\frac{1}{4}\ln(x^4+a^4) +$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(x^3/(x^4+a^4),x) +--R +--R +--R 4 4 +--R log(x + a ) +--R (1) ------------ +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=1/4*log(x^4+a^4) +--R +--R 4 4 +--R log(x + a ) +--R (2) ------------ +--R 4 +--R Type: Expression Integer +--E + +--S 23 14:314 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.315~~~~~$\displaystyle +\int{\frac{dx}{x(x^4+a^4)}}~dx$} +$$\int{\frac{1}{x(x^4+a^4)}}= +\frac{1}{4a^4}\ln\left(\frac{x^4}{x^4+a^4}\right) +$$ +<<*>>= +)clear all + +--S 24 +aa:=integrate(1/(x*(x^4+a^4)),x) +--R +--R +--R 4 4 +--R - log(x + a ) + 4log(x) +--R (1) ------------------------ +--R 4 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 25 +bb:=1/(4*a^4)*log(x^4/(x^4+a^4)) +--R +--R 4 +--R x +--R log(-------) +--R 4 4 +--R x + a +--R (2) ------------ +--R 4 +--R 4a +--R Type: Expression Integer +--E + +--S 26 +cc:=aa-bb +--R +--R 4 +--R 4 4 x +--R - log(x + a ) + 4log(x) - log(-------) +--R 4 4 +--R x + a +--R (3) --------------------------------------- +--R 4 +--R 4a +--R Type: Expression Integer +--E + +--S 27 14:315 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.316~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^4+a^4)}}$} +$$\int{\frac{1}{x^2(x^4+a^4)}}= +-\frac{1}{a^4x}-\frac{1}{4a^5\sqrt{2}} +\ln\left(\frac{x^2-ax\sqrt{2}+a^2}{x^2+ax\sqrt{2}+a^2}\right) ++\frac{1}{2a^5\sqrt{2}}\tan^{-1}\frac{ax\sqrt{2}}{x^2-a^2} +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(1/(x^2*(x^4+a^4)),x) +--R +--R +--R (1) +--R +------+ +------+3 +------+2 +--R 4 | 1 16 +-+ | 1 12 | 1 2 +--R a x |------ log(64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+3 +------+2 +--R 4 | 1 16 +-+ | 1 12 | 1 2 +--R - a x |------ log(- 64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+3 +--R 16 | 1 +--R 64a |------ +--R +------+ 4| 20 +--R 4 | 1 \|256a +--R - 2a x |------ atan(-----------------------) +--R 4| 20 +------+3 +--R \|256a 16 | 1 +-+ +--R 64a |------ - x\|2 +--R 4| 20 +--R \|256a +--R + +--R +------+3 +--R 16 | 1 +--R 64a |------ +--R +------+ 4| 20 +--R 4 | 1 \|256a +-+ +--R 2a x |------ atan(----------------------- - \|2 +--R 4| 20 +------+3 +--R \|256a 16 | 1 +-+ +--R 64a |------ + x\|2 +--R 4| 20 +--R \|256a +--R / +--R 4 +-+ +--R a x\|2 +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=-1/(a^4*x)-1/(4*a^5*sqrt(2))*log((x^2-a*x*sqrt(2)+a^2)/(x^2+a*x*sqrt(2)+a^2))+1/(2*a^5*sqrt(2))*atan((a*x*sqrt(2))/(x^2-a^2)) +--R +--R +-+ 2 2 +-+ +--R +-+ - a x\|2 + x + a +-+ a x\|2 +--R - x\|2 log(-------------------) + 2x\|2 atan(-------) - 8a +--R +-+ 2 2 2 2 +--R a x\|2 + x + a x - a +--R (2) ---------------------------------------------------------- +--R 5 +--R 8a x +--R Type: Expression Integer +--E + +--S 30 +cc:=aa-bb +--R +--R (3) +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R 4a |------ log(64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R - 4a |------ log(- 64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+3 +--R 16 | 1 +--R 64a |------ +--R +------+ 4| 20 +--R 5 | 1 \|256a +--R - 8a |------ atan(-----------------------) +--R 4| 20 +------+3 +--R \|256a 16 | 1 +-+ +--R 64a |------ - x\|2 +--R 4| 20 +--R \|256a +--R + +--R +------+3 +--R 16 | 1 +--R 64a |------ +--R +------+ 4| 20 +-+ 2 2 +--R 5 | 1 \|256a - a x\|2 + x + a +--R 8a |------ atan(----------------------- + log(-------------------) +--R 4| 20 +------+3 +-+ 2 2 +--R \|256a 16 | 1 +-+ a x\|2 + x + a +--R 64a |------ + x\|2 +--R 4| 20 +--R \|256a +--R + +--R +-+ +--R a x\|2 +--R - 2atan(-------) +--R 2 2 +--R x - a +--R / +--R 5 +-+ +--R 4a \|2 +--R Type: Expression Integer +--E + +--S 31 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 32 +dd:=atanrule cc +--R +--R (5) +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R 4a |------ log(64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+3 +--R 16 | 1 +-+ +--R (- 64 + 64%i)a |------ + %i x\|2 +--R +------+ 4| 20 +--R 5 | 1 \|256a +--R - 4%i a |------ log(-------------------------------------) +--R 4| 20 +------+3 +--R \|256a 16 | 1 +-+ +--R (64 + 64%i)a |------ + %i x\|2 +--R 4| 20 +--R \|256a +--R + +--R +------+3 +--R 16 | 1 +-+ +--R (- 64 + 64%i)a |------ - %i x\|2 +--R +------+ 4| 20 +--R 5 | 1 \|256a +--R 4%i a |------ log(-------------------------------------) +--R 4| 20 +------+3 +--R \|256a 16 | 1 +-+ +--R (64 + 64%i)a |------ - %i x\|2 +--R 4| 20 +--R \|256a +--R + +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R - 4a |------ log(- 64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +-+ 2 2 +-+ 2 2 +--R - a x\|2 + x + a - a x\|2 + %i x - %i a +--R log(-------------------) + %i log(-------------------------) +--R +-+ 2 2 +-+ 2 2 +--R a x\|2 + x + a a x\|2 + %i x - %i a +--R / +--R 5 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 33 +ee:=expandLog dd +--R +--R (6) +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R 4a |------ log(64a x\|2 |------ + 16a |------ + x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+3 +------+2 +--R 5 | 1 16 +-+ | 1 12 | 1 2 +--R - 4a |------ log(64a x\|2 |------ - 16a |------ - x ) +--R 4| 20 4| 20 4| 20 +--R \|256a \|256a \|256a +--R + +--R +------+ +------+3 +--R 5 | 1 16 | 1 +-+ +--R - 4%i a |------ log((64 + 64%i)a |------ + x\|2 ) +--R 4| 20 4| 20 +--R \|256a \|256a +--R + +--R +------+ +------+3 +--R 5 | 1 16 | 1 +-+ +--R 4%i a |------ log((64 + 64%i)a |------ + %i x\|2 ) +--R 4| 20 4| 20 +--R \|256a \|256a +--R + +--R +------+ +------+3 +--R 5 | 1 16 | 1 +-+ +--R - 4%i a |------ log((64 + 64%i)a |------ - %i x\|2 ) +--R 4| 20 4| 20 +--R \|256a \|256a +--R + +--R +------+ +------+3 +--R 5 | 1 16 | 1 +-+ +--R 4%i a |------ log((64 + 64%i)a |------ - x\|2 ) +--R 4| 20 4| 20 +--R \|256a \|256a +--R + +--R +------+ +--R 5 | 1 +-+ 2 2 +--R - 4a log(- 1) |------ - log(a x\|2 + x + a ) +--R 4| 20 +--R \|256a +--R + +--R +-+ 2 2 +-+ 2 2 +--R - %i log(a x\|2 + %i x - %i a ) + %i log(a x\|2 - %i x + %i a ) +--R + +--R +-+ 2 2 +--R log(a x\|2 - x - a ) + (1 + %i)log(- 1) +--R / +--R 5 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 34 +ff:=rootSimp ee +--R +--R (7) +--R +-+ 2 2 +-+ 2 2 +--R - %i log(a x\|2 + %i x - %i a ) + %i log(a x\|2 - %i x + %i a ) +--R + +--R +-+ +-+ +--R - %i log(x\|2 + (1 + %i)a) + %i log(%i x\|2 + (1 + %i)a) +--R + +--R +-+ +-+ +--R - %i log(- %i x\|2 + (1 + %i)a) + %i log(- x\|2 + (1 + %i)a) +--R + +--R %i log(- 1) +--R / +--R 5 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E + +--S 35 14:316 Schaums and Axiom differ by a constant +gg:=complexNormalize ff +--R +--R - %i log(2) + %i log(- 1) + %i log(- 2) +--R (8) --------------------------------------- +--R 5 +-+ +--R 4a \|2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.317~~~~~$\displaystyle +\int{\frac{dx}{x^3(x^4+a^4)}}$} +$$\int{\frac{1}{x^3(x^4+a^4)}}= +-\frac{1}{2a^4x^2}-\frac{1}{2a^6}\tan^{-1}\frac{x^2}{a^2} +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(1/(x^3*(x^4+a^4)),x) +--R +--R +--R 2 +--R 2 x 2 +--R - x atan(--) - a +--R 2 +--R a +--R (1) ----------------- +--R 6 2 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=-1/(2*a^4*x^2)-1/(2*a^6)*atan(x^2/a^2) +--R +--R 2 +--R 2 x 2 +--R - x atan(--) - a +--R 2 +--R a +--R (2) ----------------- +--R 6 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 38 14:317 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.318~~~~~$\displaystyle +\int{\frac{dx}{(x^4-a^4)}}$} +$$\int{\frac{1}{(x^4-a^4)}}= +\frac{1}{4a^3}\ln\left(\frac{x-a}{x+a}\right) +-\frac{1}{2a^3}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(1/(x^4-a^4),x) +--R +--R +--R x +--R - log(x + a) + log(x - a) - 2atan(-) +--R a +--R (1) ------------------------------------ +--R 3 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=1/(4*a^3)*log((x-a)/(x+a))-1/(2*a^3)*atan(x/a) +--R +--R x - a x +--R log(-----) - 2atan(-) +--R x + a a +--R (2) --------------------- +--R 3 +--R 4a +--R Type: Expression Integer +--E + +--S 41 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 3 +--R 4a +--R Type: Expression Integer +--E + +--S 42 14:318 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.319~~~~~$\displaystyle +\int{\frac{x~dx}{(x^4-a^4)}}$} +$$\int{\frac{x}{(x^4-a^4)}}= +\frac{1}{4a^2}\ln\left(\frac{x^2-a^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 43 +aa:=integrate(x/(x^4-a^4),x) +--R +--R +--R 2 2 2 2 +--R - log(x + a ) + log(x - a ) +--R (1) ----------------------------- +--R 2 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 44 +bb:=1/(4*a^2)*log((x^2-a^2)/(x^2+a^2)) +--R +--R 2 2 +--R x - a +--R log(-------) +--R 2 2 +--R x + a +--R (2) ------------ +--R 2 +--R 4a +--R Type: Expression Integer +--E + +--S 45 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 2 2 x - a +--R - log(x + a ) + log(x - a ) - log(-------) +--R 2 2 +--R x + a +--R (3) -------------------------------------------- +--R 2 +--R 4a +--R Type: Expression Integer +--E + +--S 46 14:319 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.320~~~~~$\displaystyle +\int{\frac{x^2~dx}{x^4-a^4}}$} +$$\int{\frac{x^2}{x^4-a^4}}= +\frac{1}{4a}\ln\left(\frac{x-a}{x+a}\right) ++\frac{1}{2a}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 47 +aa:=integrate(x^2/(x^4-a^4),x) +--R +--R +--R x +--R - log(x + a) + log(x - a) + 2atan(-) +--R a +--R (1) ------------------------------------ +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 48 +bb:=1/(4*a)*log((x-a)/(x+a))+1/(2*a)*atan(x/a) +--R +--R x - a x +--R log(-----) + 2atan(-) +--R x + a a +--R (2) --------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 49 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 50 14:320 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.321~~~~~$\displaystyle +\int{\frac{x^3~dx}{x^4-a^4}}$} +$$\int{\frac{x^3}{x^4-a^4}}= +\frac{1}{4}\ln(x^4-a^4) +$$ +<<*>>= +)clear all + +--S 51 +aa:=integrate(x^3/(x^4-a^4),x) +--R +--R +--R 4 4 +--R log(x - a ) +--R (1) ------------ +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 52 +bb:=1/4*log(x^4-a^4) +--R +--R 4 4 +--R log(x - a ) +--R (2) ------------ +--R 4 +--R Type: Expression Integer +--E + +--S 53 14:321 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.322~~~~~$\displaystyle +\int{\frac{dx}{x(x^4-a^4)}}$} +$$\int{\frac{1}{x(x^4-a^4)}}= +\frac{1}{4a^4}\ln\left(\frac{x^4-a^4}{x^4}\right) +$$ +<<*>>= +)clear all + +--S 54 +aa:=integrate(1/(x*(x^4-a^4)),x) +--R +--R +--R 4 4 +--R log(x - a ) - 4log(x) +--R (1) ---------------------- +--R 4 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 55 +bb:=1/(4*a^4)*log((x^4-a^4)/x^4) +--R +--R 4 4 +--R x - a +--R log(-------) +--R 4 +--R x +--R (2) ------------ +--R 4 +--R 4a +--R Type: Expression Integer +--E + +--S 56 +cc:=aa-bb +--R +--R 4 4 +--R 4 4 x - a +--R log(x - a ) - 4log(x) - log(-------) +--R 4 +--R x +--R (3) ------------------------------------- +--R 4 +--R 4a +--R Type: Expression Integer +--E + +--S 57 14:322 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.323~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^4-a^4)}}$} +$$\int{\frac{1}{x^2(x^4-a^4)}}= +\frac{1}{a^4x}+\frac{1}{4a^5}\ln\left(\frac{x-a}{x+a}\right) ++\frac{1}{2a^5}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 58 +aa:=integrate(1/(x^2*(x^4-a^4)),x) +--R +--R +--R x +--R - x log(x + a) + x log(x - a) + 2x atan(-) + 4a +--R a +--R (1) ----------------------------------------------- +--R 5 +--R 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 59 +bb:=1/(a^4*x)+1/(4*a^5)*log((x-a)/(x+a))+1/(2*a^5)*atan(x/a) +--R +--R x - a x +--R x log(-----) + 2x atan(-) + 4a +--R x + a a +--R (2) ------------------------------ +--R 5 +--R 4a x +--R Type: Expression Integer +--E + +--S 60 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 5 +--R 4a +--R Type: Expression Integer +--E + +--S 61 14:323 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.324~~~~~$\displaystyle +\int{\frac{dx}{x^3(x^4-a^4)}}$} +$$\int{\frac{1}{x^3(x^4-a^4)}}= +\frac{1}{2a^4x^2}+\frac{1}{4a^6}\ln\left(\frac{x^2-a^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 62 +aa:=integrate(1/(x^3*(x^4-a^4)),x) +--R +--R +--R 2 2 2 2 2 2 2 +--R - x log(x + a ) + x log(x - a ) + 2a +--R (1) --------------------------------------- +--R 6 2 +--R 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 63 +bb:=1/(2*a^4*x^2)+1/(4*a^6)*log((x^2-a^2)/(x^2+a^2)) +--R +--R 2 2 +--R 2 x - a 2 +--R x log(-------) + 2a +--R 2 2 +--R x + a +--R (2) -------------------- +--R 6 2 +--R 4a x +--R Type: Expression Integer +--E + +--S 64 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 2 2 x - a +--R - log(x + a ) + log(x - a ) - log(-------) +--R 2 2 +--R x + a +--R (3) -------------------------------------------- +--R 6 +--R 4a +--R Type: Expression Integer +--E + +--S 65 14:324 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp73-74 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum15.input.pdf b/src/axiom-website/CATS/schaum15.input.pdf new file mode 100644 index 0000000..ed97370 --- /dev/null +++ b/src/axiom-website/CATS/schaum15.input.pdf @@ -0,0 +1,2698 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/EPDDUL+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/KVUYWP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TDRAGN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@E{b +D}oALLXB"h"T3s@!iJF!Wl_m)AwҰ;2oK D̢Li:b}KǦY2El%8ȤBE)YcXFf.RV(Ҡ$ΘJ%1nk#6E +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/TTPPSS+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/DVERRS+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/JVJPAF+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/AKAVIY+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/MDCDGI+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/SBDKQW+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 827 +>> +stream +x嗹n1<K 93LFUlr49?SqϨ>RSr˟Ql%5tһ]$xP\t-6k$8ߑ$t2oOFZM%*n?bNsrӔ%@nhܺ>me@CFí%z<6@MԜ %InpZ<)m +%a:aÓ. +endstream +endobj +44 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F9 42 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/CTTIMM+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +52 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/CYJLNJ+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/SNUSKE+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/QWISBQ+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 1198 +>> +stream +xڽWKo7W7R;C.4KQhri6-QKj_<8}3y;_ϫd lup]L#[a xeW/o3(kօ&z ȣ[\$7^寣a+ +CYJ^*P(.D߰wgT"GMEsS2"c%WچH;qw/t}D")1GEtx  qBn8"Dn5P"Ťdm5 + C^4dY+$5 ץ 6$~2E%5>H%Hg1li[ŰTj^DiE{7pI~Am\j^ +[cJ P\K NL5^ۧORDR3L(sɹQT~Ǩцh! 1 &=71k 'z "ܖvA4W^bI1nڱt ;ǁr k$TN +&d +Pvt&EicRSi#ӆ8N +Gš Ծ_1e}!.^fetHoX7'~Oo4ԫ5I=@BB +:d%Ї1khB^:xfRK[v3 +pR??@χ{^z~sX| VCf7)n6}_YKo]Wo뻧ffOrQͱ- 3(t1#c2y>[do[ +ąx wAQ>/siϝ {[,"}x@7;JMA+xYXU/Uw(NBX( ; #{J<ՙpe)lJn%aQ8:A:IϿNBCfߖV[\}'Zm %e"A*x` {AYc&Bڀ)s1RSRL8ڱCUYWJ5<,^2otJo sfUT8N ǁJ!wcrjƎvj}T״H͢TL][_?o':oas>\Jݟ!P.'\+UJ@ +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 641 +>> +stream +xڥVˎ0+L~ ͦ*S6IˆJ3T$vx4 ,>|}α/5pg>c +t~KA=?q-'<36it:~[Yh&T4 ;u9 ao66c'cB-hE 5 HF2i6zx?hR`ϖCwj,dx|j@a+FxZ(|(1J߉fr8.yx?%ŒԶT*" f}~mfZiRu:{j\ޥsMr.(jw_n?A CgsBY9=qȥ:ӗN,;#)=]eXb`1 t8IิeÕsvV"]TnKwgRf +Wu()_+/ʯ9?/ [>@3K|{V\n+-I01/_U_Sq” +|/Ya^Mۿ +%u f.߼ +^Yq +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 653 +>> +stream +xڥVK0W,;~H\ڲU{dskzvSDT?؄<,P0g<73vGq,I)d?I"I,h$y}0^X&kJ /PWve,F:'U-gwΏ}nP.˽kHHٵg_a.7vԨŽVh5Pd9"AL_lV_w,,=||{Hl&T9YLU U>0GCG1 mA_aY~[ݔp)qއu:;gQzyj*w$n^c:S]L%u\`+a@Y}hݝ ᝮ-vwӅ$'3lvھs>+8[+kn劯g2y\ͯxe{JA3CTH4&͓p%B7 )3b}l^C +endstream +endobj +70 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 571 +>> +stream +xڵ=o0 +.(M1@NюC($2 .I[Mʎj(ݑ9hZNo@6OȰ0D4ύB{Lpd_"Xn/9OATeFUo஌,#xcA^l'PN]-!̵ O` +Hީ'VB1rF)f{YފrrJ?$V8^[Ts3O]UI~Zh \Vzhô`g9 YF {0LN?^GM'\ݿh+]H:l5 +=ߌ0̟g.1jl-x߽qk)Uzc qiVE!645f> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xVMo0WR LlviڡVv@Hiش?c‡MJIblP(>du# CARC$ $=}()C^bN5#53yuV@+>dy 6C;ڦ~^r.efظڶe8\!xG]UO›w{edP`PFN|s,kGBE +Yy$HʋZP'vnx/l]`=]^E bw1D-y]qB!_>m7k3іHPkf.u^UiPynQ"&$Ʃqmdq #q>OdsJ;tb;pٞ!D0'VF"L հjE沞6^p(o['S_IAgLE;]Ll +O71:>e܀bi5i.F}H0JG?#*4f̢ahT0KU׸qn4h㶪|^d\ݰcο02c\1Kq +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 310 +>> +stream +xڭRN0 9zm8HSP4<)xlR +$|ٝxwe"$&]x x +Xn aFr% el04ؕatߔۨ"G|Wd&j> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 737 +>> +stream +xVn@}W#3{GU}lK &H"w^_0(R"!ݙ3gΙ5f8g7>'璡!FH/GFx5 QH\3NDR]|#wK%:LRa lH#0RmjvHh߰ O "ZUP 8$`]LѱM`"v/|'H4K(0>iKTkD@F6M*pW2 ΄: +civ]x4va<F#d$qXCXܪZKƎ^O rH]vb-`+.F=\7DLsTP$;xLx(Ӆ]n,5fejS$UQo6vwDuy>m\dr 92KN,gubjMm=$G29LTFzh?J%cduCtbZ[~:+ӓ?'),wqr9NeIfIu#Q%/Xp!5ZX?/ޗ뇻v-RtrcE_Ir txk]|5 +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F9 42 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 1246 +>> +stream +xڽXKo6W]oDs)Sf{iJq l6-!)jypf2`?~`_+KnjV޼wN ךYn30\IBנ"e6N 9z)8Ѭ4~՞PoA[Z?JͥGJ\rW^S ƥ+f /OHV zcr,MA yy + #-\gPf8 ;QJxP|hYyY5 |Wf#rhV\7">W +:& 5qw +[mFa(aSɇ(ǜSy~=p)@t%9ޖԝ"(R)ȡ(<@m`SiOwK@lm8hJ!S}WpӒ#L`rY'YԵo,{(*@_qby1~)e: <Bd%ce +7&6 +fLJZV4 F^_RbX?Zfc:eS6k"ETEBk&$pJ[I f4XlA?oCᬌѥE4b4X=ʦhqO+).8GO"$ܹMë2){!ەv]D:ٵݝNvon9^a.:Y˛}xh7xծ{Smt穣ŗԦ޴(6UV1jXхWB\sv~95!<+Χ`C +?]:gB$= [c9 |EEZpimZyռ9j2-8#E.dh)e">>~"V'%G6yA+)%$X5i{2\ cr_n<8@U=RN.^ퟢD=mq_cipfttBۥ>HLb_CmQ 輋uKjbZ#axTvƝ5vPtm_OQ0YmΗpz 4!_no>Q];]8*@qÇK:l7n홟^Rug$ } +f$-DR,܅~h7#O[5Bj. 77\ +endstream +endobj +90 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 613 +>> +stream +xڽVn0,%,(> 2Q€6l`?>$RU8 9P8|;Lo q%1T@b\h4]QuALfadޓIƒu%4#"]3 +B1vͬIJ>|lkJ?DGޞz3- +6E1߆~/PԬҙ{$39T ivr+?/[|:Vc,C&X^*>ףAZ p c} ֱid$lj7En7TSu/HaݬT_X gw"{5KP< hXcwE'g2/.C,2!ܾĺ =Flu<:ܶ; $ vbJKr5\df3l0N[E|1]g8]9] $]IS +C}c)KAز,zzLb> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 650 +>> +stream +xڭVK0WlveHskz@)DT?~%vA±=3oM0K`O}9~ 9P$$HLrP~'Hê:R. cDfd +1R7' F ~|H_LN%9 + .9<"\\jǘl< PJY(Ҁ(l7ͅ.u{$ +s\\b2〡Hr"F'΍a? EgůNk ݯU= +t*tF4jnYV$5wZd_{5hUĄRmn5:jB:m+f}ATkSAfᇋ'hո@c҃z^5zn8ܮE1$4 JFd։z|']^y~ګ$jd!Y;˻d45p㣡: &-^wYy+JK}.1QapLѵ[xϻU+uѻfaq .eSWvv5UKp$.c;GWuEZ^b@Ei֥`mO* +BWB%Ghp"\d4|) +endstream +endobj +98 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 632 +>> +stream +xڽVˎ0+ L#u6SeW@ +E&L$#r} чjvG9ҹG",Y +T}`=ŌhD Liz +b$+,!Cax,L@ ${?JAjK.J$u!jY7Yiad|jfƝ9`R<~[Ln +A1%T ]eM<{,ȗuy*M`C$ɓ]j2cEȘ4zzv&hچ] F/RazjIfDYV*Ο[Ѱ1E: +~rrkx*Rq ;/~6&<ьp#֕1mۧf7Mq(׼{x_|G޾owfYbȈSS +އcB'$Afx5zp81%'}Ǵ]6#K_1p*#е v2xQ0Z\0:;~B楂y\W(Ց +endstream +endobj +102 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 575 +>> +stream +xVM0WR(2JVm".Qv?`Bx3#c v.t}Oб EbE4V_!B?#$0ީyuku|DHp*b&~*BZ+-v)=B1}Nqyb&޶sov{O.ܙ+HEya6>qpY.ebTK.ڍmX=<'g|y+vqߍߤ,Cݛ>|t,˷* Q4# +y\H|P'rִ>5'ʐ${nGؘ +endstream +endobj +106 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 379 +>> +stream +xڽTMo@Wbw פ~hzJT 6]҂)f̂C>е7CQyrqaIW CN}Ji{@aGd2 +XPa-طJU!{om`?`ӣRgT^Qa >h|(ހf_^Ft崞f@`bmUXI&O4}pՆ5)s)|Ātqln2ScΓ(MgY [$ǣ˙`|&[pNȡݓv[=u|!{TV +q7 t.ŒG2BW/Q( +endstream +endobj +110 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length 696 +>> +stream +xŖKo@{vm$TKC"$IU;klc iUsa&@6g}5C Jfai@d7tnvPwo_זe@š=yӢ1!K.䢪$2 hU'}L$C_ 3 NRb+&lD:+'^nR{4˺ CD8rGk0q|\GX3 lXI60yHPx53SSSw*~ 0jEZ`.1CRG5M[jZu,N$gr=ti|NoE^HAFI79dIi*І[vIQ. l lvF\…liƱ(Y쿵lY.7t/egId7y>.|?No{Klc8Cn=զS;iIfNF$)=u GC㍟3Ŝ2;[@gbJ[/6WmDsVl/4F!#"Q؏?6G嫤ߒv^&3_b(ԃ:fSt}^Uy6űl0s>e%)U@^AcB鿙my8d +endstream +endobj +114 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 114 0 R +>> +endobj +117 0 obj +<< +/Filter[/FlateDecode] +/Length 830 +>> +stream +xڽVn1}WK=2!R5dž4$Ғ4%T *<3s0B{|rL"hdJpq !R,i7OKKt:B\5gHQj2rʷ]asAS[޲LJ<$y*$]^IU 9\ < +e>#"[lB0n)K )xka=֚XKKeABJ lD + BBYNd-&_!=T|C,w(T}kK{9M4 RV4FTYRkB89KsAaWCVUC`UZEl+sv7>E.ztNht ɡ$Oh@GNm-hsW=l nQT*Y~ZuԬOʱ:oUҖvExIQWfX ֫b;䆮bNȷ,W9p66/mZ d1؍}<;*_1ɝwDJ +1$TXKA]ʛIc99Pig,W+)E\'BXUJ`?f1=mW=O +ouUeCVӮX.%ܣ[I=P.ɻ ɚ[..tѣ]^ujڪ=;U+ݣYvtV|gGUXxXz9s(BvG]_i}j˛mbՖlWa|- +endstream +endobj +118 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +116 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 118 0 R +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 223 +>> +stream +xڥP=o0+h;~ۀ!UIԪSV: pHV"iSwt>8j!$,Q`itPcsmP)$ɦ~xZ?Cn^EdbR,rw F+0JC̫cy}Sԝ\3X{S]k;5^YU?eW'QjI +\rޝj8Jb 4҂,x6f jh +endstream +endobj +122 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +120 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +125 0 obj +<< +/Filter[/FlateDecode] +/Length 1216 +>> +stream +xڭWK7 W7;hE =6>%NAp"X>/Ic<3IGr8Lp!#_؏{@qOf[:\il;ԛu0Ͻ *+L.If% Nq$8P_Eǝa- G,B9h˽cC:6V74W.$bƼwnnn~n^soLt%'q- B;0&*)|fBbV +G8fmrg[RG+2PN2lklmÍkl簾uFkS#Dd⛤k`j4%}e\Î\3JRf]4 gKKA!pe +'1U1DkRqkbb:T_gڛX30. 7,YC8~oR3K)+bB[ /l 'W+[ aQe-҈ аD|eѸukuy]Uz' . ƿ24ͼ<4ܪnTad3XDž8~|n;M} P'>O.' +endstream +endobj +126 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +124 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 126 0 R +>> +endobj +129 0 obj +<< +/Filter[/FlateDecode] +/Length 703 +>> +stream +xڭVM0W@oi/U٪=SSRnO/apyyQ$OɇrvOybsgiiB˵LʏSBfDHĤ3")U F&2"M4Q~IP + +FDq8薉(mm*N>WF|ܚQFN(ڍElo\ʿyyὙ=7<ϫ,h'-ߚ`f/#V*br2|z)'?C*MVqH=9iZ ]ևzG1-dŤC@& +% I䙟G6Qi3՝e[Fq+E >EfKq]( +VXdj.y,a +61(Hެq8kZr5> +endobj +128 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 130 0 R +>> +endobj +133 0 obj +<< +/Filter[/FlateDecode] +/Length 628 +>> +stream +xڥVM0Wlv#qiVͭ!MRJ; {f{3`|,O$*S?$$ I!Br cHa0EJG `pYU)u z3D՛(B +V{g1#^NMl`]؈ Y4ҢP]T1甆ҏ@[,] gl?Վ|P6ÖZ_u?֑r]ղmmQr&~n4W1#; 7 =4R-+O*k~gx_k4"O> u'łw(f: ꌦkb>z4,]mۺcj!7$3ݪ<~ ߛf67.݈&)}WANdo5p2#jUߩ:FmG+5{^TAflð7!t^6cdx?~7ͩP!0.c Tl~zy g3 ++48ϊwۃ&v)/lQ[ӧ"+OeEaf?s +endstream +endobj +134 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +132 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 134 0 R +>> +endobj +137 0 obj +<< +/Filter[/FlateDecode] +/Length 610 +>> +stream +xڵW=o0+ P7Ōm[mU a Ǘ:QE뻎HJ!rdRPijb(3{218cb,"R`#D8,IOue,Lc>Cǿo LijL298tWlY U+I\f۝ͬ;S6d(QR0ᾗ򼘴^T97rKPx*Q9Ǥ틸斅?$3UHw{4c(L` +:sMòs<3A2Rbk2wQJ%^C])c\baEU:ŒYŮSz|t(÷B,9@UbhN"$k6=ZQ̇6.kh)#j(YM>}}S׾3"qk?]z @J3m}Me# +endstream +endobj +138 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +136 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 138 0 R +>> +endobj +141 0 obj +<< +/Filter[/FlateDecode] +/Length 542 +>> +stream +xڽn >K%[`RMS)iTj:flvȏw}\ gP4C*UHTRK%G{Zݯfcx\ "S*k[$\D(Ib\dJ5b\-k #7#D;)pIDQkR_ =v6토zgóެqAg> +endobj +140 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 142 0 R +>> +endobj +145 0 obj +<< +/Filter[/FlateDecode] +/Length 514 +>> +stream +xVM0WR xmB=#[6J4 )@[> +endobj +144 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 146 0 R +>> +endobj +149 0 obj +<< +/Filter[/FlateDecode] +/Length 861 +>> +stream +xڽV]O:}fgJ<*Te%E +tKV Uq6.xfgΙ ]]-5f/Jpq [;Kfv*?-tէ?cCtU)!EU̸<>х( ~22n=xnZN:y L6RT4ȴJfi>;Գibx +{?Ӌ=|3W1qXMONZM! Y9ȑƀ$ BB;I8vY!@zв3 CT%g#|kD[hmzm` =QB{zvi5!a + +-fпF-ǠD.q} /1 +Tݲ$8.\V~NevEῑhQI `] .H ۋ`w**~ m`ݼ?,4a_s6R`2CJxzgv8Fģ k!Y9M k c fjrh布i?х5LUPĨնzl*n^k;U@z9?IVecorܯ\ԳL}М麪m<3yFF9CFl+ع@(Čھnٚg['R}x$RJhIA(|B)iڷS1fla}L^}Q5VQiC jmj4Em}y(rGQ)g_e-\|m~d~N/oګo7ftq> +endobj +148 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 150 0 R +>> +endobj +153 0 obj +<< +/Filter[/FlateDecode] +/Length 921 +>> +stream +xڽVMo7W(Y~ S4FkWu N3$wEV$r9 Xz~ݜLjPmfV3;m淫_r),u~ieGtUtaBV)@ϸMGv44ɀq[/CM>}ޱ)O,Cr,a hD]uHAL Yƌ;/9B;$uY.E\PƶQPP1+AD`zf!\cO yzpx/hЮ`$"^雴`[ABĀ*$mcu0+Xq5s ++uD4HPmƚHO֌{0095YV~KRԛ5_cl%$gEH֎ `h~%:"L]f S7)7+eS Aʃ8GBK ] .BV8h憽Ў DRݝOW -gaz'ӯ[MeN7YsTtň%JvmЅv AɀyS~/i{>ml]ւCEh1=qs2gjg sBQ+z6>cg!ߟ b;K("g"| <ɣc@]π> +endobj +152 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 154 0 R +>> +endobj +157 0 obj +<< +/Filter[/FlateDecode] +/Length 212 +>> +stream +xu1o0p6 uHRT\@J߇Tdw޻'.pm !@-Q` 1 PIBԳ0PaV藢NMw^X=8'D> +endobj +156 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 158 0 R +>> +endobj +161 0 obj +<< +/Filter[/FlateDecode] +/Length 842 +>> +stream +xڵV[OA~WcKÜ3&YIHR;t/L$!sof ݰcoVg3V3n f3?爤geϿ>hAɘE d\.9V;n+;]nXb8p`Bjް.uyG@>efa)r׽}l]cbCE +CP+H;@{ݹ¼0wd5XY"lw.ـ8,p|H <qE w-]m:PkWSƒ{:fY;?e{ M*!Pۈ!oi;6t,U1},9IqJ&4vdVIE?[]}5.#FܱZ5ެ97D@h9?F%[[6zyr{l{//U5m(q:P*K=(yz󦊯!Zy u1S%ԡj1U;7.HCNXQD 3P~k̽~yWN9o,_8-%أ^ #'VG%U_xHREz~W'962lkJ/FJ@hT 5C55)YG <)zp}q9ՁK’ϻyyj"P^&}o} +endstream +endobj +162 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +160 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 162 0 R +>> +endobj +165 0 obj +<< +/Filter[/FlateDecode] +/Length 223 +>> +stream +xڥPn0+l8RT U'7p VJVK8hfq ^d)Xf5/0 ՂPJ0S!m}P%ɇ}oؿ߾]"2{'RutIFPf)Hf[̆}s8rU̞Dz(e?W'QE6Dn>d~ fSTp ;sh# +endstream +endobj +166 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +164 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 166 0 R +>> +endobj +169 0 obj +<< +/Filter[/FlateDecode] +/Length 929 +>> +stream +xڽWKo6Wh oEE6]@qTo'E!)YdyǼ1a`.?5C J"8øӀȖ?~rDi&%TY@+h1km +`H몤cevi;BiȼHf,2{$tn]纏[yQȋS_t%%k=IC =ӊMo!`@)@S2`,H?`uhNa}]U[ &UE7S0emU\Qm< tֺu[ՈKvjvvtM˦@;\BI$M* &>^ݪ?B\dHf/M/ढJpMC"n6]:fٵbaQF|^MۺMèn':Ofv-FCUOofWի5>~5-cL/BFU3yCiϥ ?"+ՄC}@ 4LVYQ ?cJ=Yf g~կt_w7S# $w8%V9=Dgt]MgA&LhU$mOt!I^lYqv\+rrM:Oza^U.LB(iydSK!E{{fs-.*EzyRڴto?> +endobj +168 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 170 0 R +>> +endobj +173 0 obj +<< +/Filter[/FlateDecode] +/Length 728 +>> +stream +xڽVMO@Wѡdg)V U{lK1HNpCPj;H/og*Bj;sa _F3IlDkaD"FL0i(:Y+&#nIf}qſ?u>+7gK2Oq1q"N&IT9argބ_X.'S(BAZLm* +mizR9_]?nJwWq]&<RK hl+> +endobj +172 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 174 0 R +>> +endobj +177 0 obj +<< +/Filter[/FlateDecode] +/Length 819 +>> +stream +xڭVKO1WxKUcI/% mhJR@wލ7H"R0BV؇ D? N6xQH5R*S\YTSjr92=,@ц` L')[@9BR:tNi Ôփ7SV5;> +endobj +176 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 178 0 R +>> +endobj +181 0 obj +<< +/Filter[/FlateDecode] +/Length 223 +>> +stream +xڥP=o0+ 6~vlH TJL` ¿NJvbzNw3Ρ,afG D=Af( 3ŒELqiDP$uݩB.tm"iϞ,ypRƏ`J!Ώ ;*ֹߛ"񎏺 <)_qQdKm1W/1Z|JpI93vh +endstream +endobj +182 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +180 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 182 0 R +>> +endobj +185 0 obj +<< +/Filter[/FlateDecode] +/Length 990 +>> +stream +xڵVMo6W!~/Kh(dw8c!)\Qh⃥3o{p9#+y\)"&F0 &wB.ŧm}segބ=tHaҖ?S9jP| +ba(Ιǜ!_7qA*eDi2͔ 0fQCC9UZycƖA@IںUgXŠB2^ĥ@.s4>#3pǡ?1=-H|;nnDhfժruB(|nbt!I}㨕Kj`83r\i( )gzi. pL3kc:3r~^׻^-yQLre=r> +endobj +184 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 186 0 R +>> +endobj +189 0 obj +<< +/Filter[/FlateDecode] +/Length 212 +>> +stream +xu1o0w~ōplU*J$JZ)LEt>wO:PR)2 ! %@ep/q!k"fdˮ.xeU}VdevL5Up>Dbb+m4jJFmg:,C?4u_/_o\N9oI̗d&?R +endstream +endobj +190 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +188 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 190 0 R +>> +endobj +193 0 obj +<< +/Filter[/FlateDecode] +/Length 942 +>> +stream +xڝVn8+!/LRLEZ泌M=M$9&qNH#/IE_jB-0ϛB +w Tyϼ >ta@!lP|4r +6je(zBcΐ 8#uF&)f})yG10ԡr֠*ƥ!5[ 똱ixPb > 8 9Te`pʔ!Lp9Byۂ#\!qqm1%R1X%Ky +Rsw dsbt97!it3~VM7| Nal00d8t@!Fu0/oa(e'ޏʮ3CǧH5+ϻSmt1-qjc5d挲\Ш͢'{@%K&Nsxfβ19+Lbxig0Ķ7c.t' YyWWO!D3%;UP?TZ o;@-6~m"py +qQ[ oUUVS;x+>RmFX}WSߥм` +/ƮNq9~{³mш V߬y '-0J(atH +L]/V\b.~zzTWχ?9~+Px~*$ww "ؠx6[mxWnrӠ.lyʨu6̌Pl1 i,Kޢ:hcPr +_SX褲T:_I(LKjpkzw7]ʌe7Pa?&DÔ^^FB?tR{Nɓrk3Ќg[va +m•IMo]8L +endstream +endobj +194 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 49 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +192 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 194 0 R +>> +endobj +197 0 obj +<< +/Filter[/FlateDecode] +/Length 248 +>> +stream +xڭQ=O07ڃ]GD@L[P"{H޻{wF=ŒgPB}é@F[#B1&ٽw%&J(T~r!un/iqW'Rd8r*pYfB&rռo>w!Mfݑ&.'myfOcMS%e\+Pd#f!_q&k8n/xZub(Z,ŕ"eNynf*{x +endstream +endobj +198 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +196 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 198 0 R +>> +endobj +203 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 202 0 R +/BaseFont/CWRGGI+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +1\։*Ebߢ~U ,3; VsK%pIiQNtk 7KKjoh g~$f e}n~D0X%; B\)q)VSU:LlqdS3ԻңD) o2v-C-zac Ω i‹> +endobj +200 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/EPDDUL+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4025 +/Length3 533 +/Length 4575 +>> +stream +xeXkԡ;NAj`!fnA i$IH!1~}?{\\Ŧo$aU#EDd*"R@!K apU* *EA@IY1iYQq F8#*|UR@%w(u!Hg h"B@o!: +""@Gh}3i  t:7AoXX Qnn`o9sC"PR3_lPGSM$ jaPG}qهq۟j&:}ҿio7 `@K$r#Y|ajpG  ;Bj;PPTJW 慂j%@ ğ]# n v uddng8;d70<X*qC7ڷOF 42-Ox0zx)dur"7xvvP@s÷J;% VN"t|ߗ͡JZ(q9=DF_%6vc{xXW,TɝK:S*q{PرjlgSK^Y}Ӛ"s-z Gl_/侙q7lr3'}ՎhǹO `Q 2+Oia}ѵOOuQ) +|IƘXف"gw>r> 2Ywb=9 2&<{b0+ޏLXI>]heoS,O),mxIOrN!YvǦ;as6Ao\i[(%̯.Ik>&X?4`&5&Kc;ElF_R`vj"͵3Կ ; ++E+&8Z,6^o13[2t-j+p}J7!b Wd/Q/78get%\KKSeV( ' Pyz<`jTغc8OWKhFrؕq!us\Iw:GMhLQjwR(Y[S؀km/ȿ2zbŘk.9XqS] Y=Z%1#u6j5D]L ֏9cf*;M+Dj9]*}C.\ ^m8  +.>sv-lz2}cw&?}>T /wq3(0f_쎍Ŭۅ7@n?%U'e˶=c0$r@00zK=.G- + IP5WHZ|+U8YSs̚)E66|[tUBZVa5Cջ}s{ OqU( +$YT[)(&,r>zoP `nUڳr#ϥ=6XƩ&!o*U$=>+e#ͻ%{gBXVL94@XSEb+KFbH]>}k85rɳL[6GYuӞD)Η$_ ̀a )W5uģPj+,qJf 3{R8HR=&@S|sy-fi %bއ]+yT t)cόsJWV>85J٣u?g(/NiV>k'mX=d^E*0=lс'>E*],9*Dr$mGK cɻ -ǾdLy.Q;_?Pp9bάؓ6JUƩ[{ИakSz +_y_v餈$2cXz)CO[QyanM3v9|O^|""ZVvmPfijDobhjyN+%>[UAti0qo&]s0+ȋN7!Rpe-~h;tiL8=n,e³&굠\80 +,S$ CUDz7 @6]]6/&? UT {~03LwW޷Gi,хp-ęZ028>]{Rge,G1O{-tf,x5.\g;,Ks*Sj,@S[`6Ԑ|ϭ$]Dug^!ly?;_xtm)Mwd|ՠ~K+(Q-́Lmobc"hdb<u_B_[Qp_3;"}q/ #FYl3 Y27vҷ2|jH],m15?@T?kYFU㾨VG + WF-BB٠~ח?' fr_(>rO1.1&dO>8iˆh sT)&[ibx@Ourj>1]EBAdӫBCD幚gU1|6s+xYA' ܠpn +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/KVUYWP+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsABDOWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, G +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/TDRAGN+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON *:@PgCϘh m1Y AJw(ii;w;?7= {J- DKPY3GG736b槩t´LEd\0\ %b~9z)e˫fPb͋uWQ= m,f[Xa}$>B]Rz)9 ]<٤##فuMɣ\ڨJG(I;w]Ti*M80vetp%54H]N(qI + YǴ{a|Y;<ŋS܆j v:k%+zO{/EJKgmQ{ziDᄇHn6E'-َ=B8,|/t#k_ ˛X9<(tS@hl#+m\yJ*:4I $iMU{%4:6a\ez 2_3/fL2 mq d֔#&g#'˳[?Bi$+!1,{Щ8 2I 1~JBE3W̌r7|_ykqPr|0 O!(pT0KoBmˬ%a\^mhWt#.gvG`T mرs[;{m>\РXLU"M(RlVФsmЉe'eFiɗC#4福˴?yKqcLˑ/Wxɱ88M@x8T)fΏR5kF:Zt{Yt~CO{lQʆ;ShT8vq+ʽ#%^*yQ?BI#! c^UtI.ڡYvRț= +fDQ r2?OQ_A )<HG69['Fd.As.X3d^у rm=7j1чP>PSE]Ҕ+lq=J5e էܦ!.q9"[kg?~Fh{>{^rz]^Lfs[:t-K,v"mlp<>ij:c~y`1qnǻ (:tjy$j;U&'lF5bm}IpwgkKsTS1~=Q[7:yg)UpQ3r馮ɲeƂ],7 +7Ch7`ysc3U #u.(OdֳoeoS'%> +R%K C$O_|j=<_]Ѡ1qQj+'IDrvg߰Sr9Iݼ %p4 "/ph s7KA_>5!ߊ,ԋ/{6f +eȚW-mgxewNe,=lREݚ=YDp rw|~c*)w6kCn) +kN_y}Y)**=Us_B#?{LX-c,q5z~PfRe iþ|`%HmVaj_4vR $53DbKcG}ZlI!hbZo-WXB쎈j=)* +LDvHu>4x(05@'Ǭ"<mZۣ"'YkV ZyST݌XvDoœV-L(4klٖWMGhuo͊gA)0^ȿ6I6(llazNN%fqL]>Z'|9S :!]m^~P#Q%an ֙̔s`ߐ4yƔ.uIz| +Y#k9z˶bwdlh]o =|>}^vj&8 rɴsy飁#m~K ϹpBS@&}gA ='lυ6QՇ(Si5 GK`0XD0RBiC{NH( +'Ф2Dsҧ g Pq +%`֟%';QF" Un eϺ8sdk(,.2sʇ{KlV2Md5UeҬ[l (E_cCF؜%!GaޱX'$F}0_+akٷ?}}cg{xgYzg`͞WD 4MVxaѦ~Eng6R$0#U8F$JƩQi֓~#Jݸv_ltlf:}*NjuM%/yW8W=CgĦ(aV9ҫ5?#Siׯ6:5m\hmƿS񢴶 +& M{1Hd;ped|ɏ& +vp1 *F)o>q n .`LYιS Oj\&~9Bn=, ҈K;H;{/7(8<>Qs~%Toy<;qr`#-N657ԫx'vkzl]sz:Lɾ#S-^D|tӾi9܈{S)U[e2 A$:zbы@n2Z۳%%{ c&;膗9Hp%My!|èfV>΍d/x:>`"1,clg1Y紸cTd^*>*B`nG]+/_-sKƈ%;>̥]RSo4_6c|R[i)(|i[5q'!14r.4Xkac]N⫴z~1-pPe2W*AHr黥wtDP +&LM{ b$Y=ӮBKANcD-1pdj- '3}Afdָ 'p[Aʌ3)vA~krwߊ'vrF"ٶcBZ`\w\x˘7i#.{i21~#휝PL9ׇ5U+x4`;{Fg*4æ_ha ,ѷwz;a!)F*"Jċ#X׈:V$vCw.BȺ-Zɪwͫf0'T6*Ai;M䛨;:ե2T +*n̠ -w=L6>穓1qHpO %_xjAf8̘OuQML3׊3_Ə&xbTZҦ_뭺[Ivų~GM)ƗC%*ƖsIZ_Iё|np˴~{Czȷ҈!m.l"@JE7ݳU7 pDFf#Y@R}ƒ$x?7iY YOƵ.={qM\ZdHDW \^jl(~pD>\׋|;͌qF~f (UڭAcI;L/+ɫݹF>>&}'^ɅCуfuCO9cS r(ouMGhc +c]O\k3\=b|x8?F@~9bF -۽' aiYGnC <ٮt`4|ό +VKQ} vcQf uV^$a=*=[CQl= Ta#r.ܷr2hV/.Kۋ=j0sy%E7x>p=yOJV9mN$CbTdT#lE {yuA@頺 韤y4WTFVi|pb{ $z3M-v_s1޲P_efDQ`o8ri1|(QJཧShɹ}N9Z+Qs5%*lH1 SE8>Vj o_1y: +/OKbz#Oy@> kf޳53aJQn6DofoV0Hl|F )x-vV0$GLy=D \JRY[ojU!hB =0Qmt9Ii狁)B@%)<1񈸘=h;T'ʈzFfrr_A5e_@Ir.(P|{f1f'KE0ۗLџ !oDnz|T̊K2%_&mŘ*<&2>W}7 w'dZjIU>mp75ɩM˵qdF;y])_aTܰ^iu:8fa?i]vgt"|G1@VD9.Ep)Ru`aha[ýYQG6˅/a'rh2x=,E|J@oPvLy^b~h0HERݍپq:{{R%ȟfG2K@&g4}Z! 癨&\mU1¡ܣ]"T#{q &!66Kʃ'D<}N}WN^EI":N:tbN 蕜槁K!&=[ l'SxQFyuѠBݙ7rD5Ά+US;/&criӟ c%Uڏ-jDnEBt]mm=G5.:ͧY( UߥlG,=N7O{ dX; +8]vm +XsL-0HhN~']Z%>|Eָet߿hV)Eܴ<3!!l.ugk;'8O*La +LG '6~+NҶɩ3 x1C?r|2ЍrUK.QKQa{ɽeг-Gn>REjeكM +7eH]iO37Xy/VS'p&m<v}2{NT,iI 9zJѡ}-RS7(CNdi>aEz)D8dSzͱ@S+ܽ<2.1C&Lݣ~&HVzx} 2,䁮W>ZaA%=>OzGV#An4X2 6#n,tWBCDdh~C=MpjZ* u{ɖxWf ?ދ i8`;X lf_?̀؍Ka?w~7(L<ʒ:W\٭<>Ϭ Re:W٭ZQ-aYcW˰zŐO[IE@Juٻ0UwX`!ޕ@9x`Kvz94@o{,IENH5'=RuדYJUh 3hQޛ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/TTPPSS+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"THhZ(&H/TH)A0T]"HQ9y2|g׻~{ml&pu@bqbPq"HP* CZH8Ն㐊  RҊ2?H rvpɁ40H# 2\!p4A 4dO)DP(rā(,@($rg $SEA@4o1Cp]/4#E[ApbܼpH+./8MWhAP(_$st9ў?u$wk@ OWng z

= b'V8jpv:v( +N<Lϊ粇3ړ*8tؚ(T wANkݛڼ ΫlSWA*k:a6z}vu_[qd|އALlNn[Mu@MGew?0 BŜ(D=Q6f9'H4/=M#)XMϿzy׭*gTk\ьs7j=#(NJc#r@k^FA؋x2Z '|bsi%_ۚX_9и7cpHX%{Uho'䪋=cR=.UQ۲:LZzty &>Gc?ؚ $Sν/F_y^Po|͡ը9*s5ҙݏ죺 +qVR=5"mIRHͩGw95ڈ`]/ï7􍹋ҝ#|vT\b2r}wNA 1Bqz=ė$Y}j%_CLU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'ӁYUks#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+ی,07M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"Nf\!eÊVyDŽ.t7AxbCB p=9=ګ#m|5trcfET18@Wg iG3g=mD9˅Ŝ([/ G S">GUQ0S]Ey1Eי@*䛃)JGq5> r\47V)Dϫ,Ȕ +*/PlZεu5e|"o}&=J{f7IFNb3X&*l93#yfB GiEsMx(|iWx6 +7¾Yjr'@wB#EN:|'w -7wR(Ms8Z=4_R8WkO$ +ͻg كsvhVCԳv^yN\M]i"L.U4^ʧVvt77XS:+o4ff=&iW_˲\pdJkt#1d#g7Ѫ{jD;F& //vZ7kygFv}78ck8Yi6eD9'z`z'X;D̛~+Xp֊ ̴Ζx;lf&vrGSȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPT}Toq7&qynʄ[lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|p/3x$Hէuryz{B ^\Y.+tB| @\tgƙ9HnlٵaxTԥ^Sd:8.Mx+MØX9':2nSMtp1:!1g0AJ. 60(Li'_&ZFbh>Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&(pFDun6TeT]ٖ* +{ řw`y -?X.ή$Jo +ON.s *}p2*c%KNDn}/:]q +7A%WgQAؼ|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],o=byl0uDiBwGM}؏ 度<t"l@Au?fa[pt5z0?|$X7J:N|_zuGk[|Ϟaq˼ɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩkmsOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R7u,,,[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 891 +/Length2 1911 +/Length3 534 +/Length 2543 +>> +stream +xRgTSUizR 4P0& " 8 H" J@PJQ@Edhyfwks>oOsfMt 4DZ6.v>H4D 6L"i8h Q06@4:#I&u)`Md<X t<d5n`0   x4|]#HL lP tօ|:@"Jbc]Fַ+~ê8*A2, -"$oQGB[H@|I%G 7 sN^NXk{kbqd#Ͼo!#DߑotFPhd ď@8  9|pC/DD:R3pLF,2P_=3G gUzQ`? ܄c1`j+ӓFb@odl&8kGL$W 6\*!င,|fK 㯌L;@%8_Е[ñSf`曧C\/`Skhd=G:Bi XzZ~vX*iX(,GmuM֟-DqwZ̚) ΠV$cCZ"nV?\P)ݿFr$b*4*=H ^> 7zn$믿<soǐzYnH(t1Pe)_!LK5+S0Sx|O"=빩^YR|MfpvfQןP~4,~,Bl XZG\\='-&NW4WluR N腔ϳ/*˴ӧ>l!TprQ<i-P#g4yauoG($~=Z.;xb1xI@~Ug);'- d]pQ6Y9_ +֠ӳڶ~Շ'K=: 弪O`r\`5]'2!ħ#s3OCc+i"OPUufp)toqҁ7UOSwe*[/N*C>LPNg??J2o*駟&m#xI?D~D&a8!2WngnkV~}(vٱ,쾎 W9f"\7w]M/eE綖V0SՅTxPJ`3բ@h +P/XW% y.&)Ѣg\jX@ TM7JuŌYE\Knϻ^M9#c|hYWfQ[jY}foF;tLd\~NfIY#`FӡaZ^ +#q1y-gD)^9Gf= +,ݫX6ܴ,~~y^k(n@9\>}-9Fk-`>)=JIQuWV]X٪Pϭejy.C(ku5P!)h9rynN^i,3鉒8Dp.|Zh?<\ e9{*4V_2+)x^(J~Adԅe)M˺E] ڡCAF=ošՙSn[bG +Bu 7~`_p%&ɼDnʶ_y.rn}ϮG/E)'Q kfуkNmVEgӽk9$2Ӛ[ V]1KGKۆXyUx6(n, gN^P;ߺe_qws6sk|ȴ;Yu6|7]U3 7,(̽iʤlCڊ(pZRwϗW|]`7C{Xy\“IU!eQix:zӠq}9j䝥i,q§~Qj;RRِH:rDK.Blþd4Z=1v$l{n+QmPĬnWTa>Mnҡ!uX<YF\LILWtH[Mq8(쎩DR2fp|MEZ TJʂ#쑆A3"pmbe/N +>*>pASWշ/;vaV>wT(|ÄC(Q!yF+rC: +_>oOqLc@ 54L +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/AKAVIY+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 1665 +/Length3 533 +/Length 2202 +>> +stream +xy<q8ipCd2(882$10̘X"['xI9mHK'%]v$KII{^s}|?|3Oe6Lk4D+GG;$$sLȚq1@`qh1,>O:V\X2840PB!3"B|C3˧-`j!N?}²L屾A6GlBN*b*3rb +41ؿ:܆`8?o/}r d pdRA6~st^];.A! 1gαTg:B k69xw;Ͻ]g2Y ӾY#SbCC)4 +/#_=DaR?@!*MW*fF(cmC`L1"_n=YS,xSln!`(H#rg[p-;O$\5Cv[(-#|2I#dڣo"=tԄDđuUke8Pʷw@Jy`ffK|p={nysmrg +r{/\SG^ܬ|sI +Ub?q- e+ [bp a ++ ?YH7Ux[/a3SQ1 $ױf&D1@Z-2!8koWW$ߟg>[ h،9\x3fO u5*s6q9WUQLmgW=; +/>8d0-AYCˎz+6vu6 kҤN[DEK{ȵaGI;=IkK˝9rϽ7V:5 LK)s|}{*LrE yk2i@ӉF>ֺvۘ;{*Wm` \j5Fmǰ$zr2mGBkj(?~*]Dn&2vΏ~|Y +k^$~x╚ϐjin!,@Yɖ!96[/z\"mS#S0cvY!oͽlU.L%G?rZwf!^y$Srʾ΢TtPoץl"+έW%շ&|/v$^DO N(G!AWt64ci7v~vHh{hW9Ef=-eO׭Sm^D@&[ȔoрoMFJ/#: ԛ]fl,E*.%E!:P +Y:q`Oٛ.7.呧awǽTtɤ_Mj#isLTl_TH7o( yPKeI5f(nFHY"6"q&byA<?@ad6Hf`{ +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/MDCDGI+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2042 +/Length3 533 +/Length 2582 +>> +stream +xy<ǕDJR"cfc,Cjh423&hf,ެJ[:bK^42Cz3ٗҙ.1Px#՞Q<^ 30Sr^GW!x*ӼJ{ަ b^Ɗ^p+P.1&*ԉ]s_EY|ʠ3)bݔe2lߪ#ؽ9Mji 4` +Fo o[\+rPl6rWjhHPj9} xchmQ*4)Y^1^r[P3Ers+.w!jhW=`4^ + 6O-3g䁃'U6'?>ih~y>J0n#F'.&}*(2&KَjJ+Zu+⡆T5kWk~Y;ڪ_^ybPj딵*,cIi7 V $p/:A_b vkqzҲ3}z +œ uRRxCz&I O{0/bT&rG\PSKd_36"C+1[W7.נu91MWd+]7Z&c6~ϯ n,# }+X3@/79xI_usv斕 ,!*KpI֝׃f̷3X8S|kAsbd+/qLGCe>sO:oh)Wq%r^I+>;j J(5#uO[mzo<'II*!Hn{'.~tlSfSQCmഽ05&xT+U(9Z- [+>)~-`h#95OjK^i a.emA*_ 5K9KJRV.b6eǽ,+W8E%}K3WT{ەcBrP^8"FTs@,.oYF趨u)'O]>TZf&ۏ*bPM[/|WZ9O0 ]L{t`'l$0.nE S5`YcxhgֆMcpu}UQ +Ѷ$cɒ}#8~|Vn5~F*<}pkݱFk%VO4D8 {*dS2l9s|yQeNŝ4:lZ}vS[etG0jMUM-{'"+Q}"HH^=lBB͕%X+}T{~f3"M.f)7}:.0"nߺSfL}~FjՍGގrKr=_]Sfhd آIBiQ?3YPf$.cRp +Xw]1j8lZ)2P+nd'c>rR۹:(rg:%%P?-=8Y{ik0y&:$7 5Dw{&^Wj*]@׺'WOo5O-LӸqfraoyfnU.TWk+c9VL'Lul3.}݂%Ƿ,U]/">*,|,Gկf`AxPs0w!Z="$={f)6T۲w_"jIʗ:/'(tdvwATX +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/SBDKQW+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1670 +>> +stream +xkTHQ9ճzK 44/&xLfd"bUDTjEZ˥U*Z/UE4BmWiuuu|λ0,!d,M-d9|a!;&`xP(Lc$ ӨqSH@ 29N, Ѓ)LO<,_8 OR&@>LǣR]A!)PZm<_"Q9J)Q D01 Ƣ_Bq$șm# ++IRrNi ( Rcjne̠R W 2R DPkp|ҹ 㘘GHp1س&T(`љ>J sQt{9Yu3tZ35[-L;&u﫯9yb (a)I6[:9{@m5IxQbǩ 0ۍTf7ʍ?xUˡM~D%F ]2yӰޫ'R{LP& ^* XZ31NCu *bubUUv©>C( l QGC"#_{?m\VM+e/8# Xy$!a9uU*iܙѓ&ZinXptol_>η.IhLrA;C=O/xxjj9fayRk#&{m|gYzIxcVΊ]Lw94 3Y}jskOگK[MrԢ bQEE+}8.xzi㵁:^oKGA~RxQ;[F %;f6D+eVض̘E|p?vʍP^\/*~AJ:ye]K.K"9hv1eKE4d_߱H]rY?XA3I5ʳkx mY Jrܥ0 +dfU(7p(0TlUb^h[tu+WDlў.X~XI*VU4GSeyTkOv?AFVle6`nq%8 +S4)~ +endstream +endobj +48 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/CTTIMM+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 47 0 R +/Flags 68 +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw31]2fn h FNRȒǒ%'%d߷lEB# o~7'? _x +wFԟp8H5f$.Փ 0$ +@ ILhAb<T$occÝٵ _@FޟpoZ99*F$Q=kJӉ++ ;`*PQUWhK%] UZ4ZJA*j@ zobt0^l h|^+f;.31>fo@`Uc@pVN&;/W/i˳^z ӏDדė\.cu +ĕ5o6ba %яDߺ8yDY[[ƛRn牦o9DJrj9&HWpVgTfАnjNmE8=\p+rShxb@+ߙ-erTH$AXt4^Ȇ&`u1tZil>הD;QAeZ=!kϠbe_dꌾaʶoR>pUr^L@HHm]2W0wy93dʀajCVE<{VNQ5tЖ+l}WHN0[I +/9Ӳ{,ڨDNSq]H G@]y\amu٫>ps/.GJo7 ?tcC«kolxjWɟ]x0 pղϙ-xS1\# +qF3e!WvU!Ff7{@/ݱ%ll֝k諲$_VH}7rÐA6Ur2l-w`r1 .,o%'>~Bxd(f&Dݣdx-fh ь^U 6fGXNvy+/^4?w߄g7<׿$<|813<Ȑ3^%+GL_DV +;2; e=_mbXGeUPJcy(umox=<^VʲN}S )/dכwfM;[JmyU֡.!S^ Q(; t𺛽ϥ;_G%FE:DiCJ ؽisOn[]~4*u<9⹞4]Faqݾ4-)h.{]rfRZbg~DBܡԄH?Ǎ̍Uog%;iY}ǡtXp[\"#HLԔ[dg)΄݇L^ +HEk:+ΆǏ"*pH=SB,C]J7#\"GXZwk#ԉ^V݉8("n4evb6D@hlGq:,9FG9$l2({G.5cc\3.s*QWF,1hdҊhi)diH@`!Y4j&gD6լ6F*ghT|~hR V*s%XR%N_͏9>(1ߋ KF<9U?0}G4`zݚA/K+:\WsM&gP(v5VVGcFIi ҂8mÔӷd4G)lWceֺEQeQhl1:a"޶q۟L!f΂KOܓؒ ,WG9#J|d[2µ5}WݸTck:m%hyPGs3H]U}O es:+t)~s\? /I 4{]b +,s;X{!6}}ѯ]Ρ{!ĨS$| vەT飯j}+Y-89BdaQ2B-&r6Z1ũnF4~ +ʙ[-#|O K9QԽ -n- ԩg%w ԧϐ֚BЦ`~q묽{{#8Z0Cet!zB^ ]^<5zFH}ZnR;HE u-|W%qLbZ=lz*oF)9ݔiUj.`xһOryFm!5+4QƤj ~vلXB'Cܙ|p +fی/ APkU +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/CYJLNJ+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D9Kɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\Sw +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/SNUSKE+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0hGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&gu p HIvt +[QtGB&d"-D2Cpu4~za:;* 0ٗk_8%& c1cF*$)MD&OTH0267V3:}pxb0scedBt5A C?S(?*\^] ڱYQ*gV%Nl=.0*{7瀺=^);ćFT?|!sxf*\'+e̾]#?CS%O% Pb +rj(di6zB/ZUΡ۔2+*p*qH9IES_k|W~To\'wC`"xن+)yoV0ǎvߕ7GԶl)"66ּҍ-hL\Aإ2 dmM j}Z ^3 +xT~h3vj[]6}ͫ!X(7v橂 +>d~uO9Sω}VPGV<`OCKULdt=ѺCCN\]v5]_9в4oï#KK1|G"Г,'ȏ;;n^+ +O/QێDIżZ+2{cHc-}9hR]JXLS +mήŇp%GU)AKhʾ٩wk"vxmar9Efw:e=k6IFMv"_;R ̿6\n z&A!Ÿc qvwNvބߛ Nl]`exO<ּEr)Aͪtz]{m\ 1>hQ.S-IQSMl"kd,ڽv#PRihWc~Bq㗃^hU0j ;! W)s`|fwػ+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;\I+e2m hW?]rSJRL]e⸢ـjotԺ̴U!/s[qʑIb~K MVnlE^ro٘HˀyYh +A#>'fE\K$e7Wţ 'o[de|ĕ֪7< V1~-S3/3NeCUA\l9^OiG$R\|@놟Kz{^w`Pc|22[7Y35AlI1-K הC:g=ᦊvF> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9951 +/Length3 533 +/Length 10509 +>> +stream +xUT\Ѷ!xw +wݽ)(p\$;]w  sνG/=Gֿ6{5M6I+g ;';@ZYKd! sw;H)(t@!@غH: `Ks'-񯉥@ r|  +v44NN`;qK?G _.?I9`+5@i7\n.upP1w?ossG?Ύ.Pwl8T/8eSwsW &Y-m(mտ3M +R,qܵ`.e?kYW7[M +dt7w2XWSII9{ظyܜ i;] /g +@^ K@Muee" Wz๧Ƞ`m帽-!F{4_'^Fëo^؂3?RXM >AP婹󔍮bmjO,bхuGťT٬JK(A㪴R=]:d{ӄO•P/%;tğvnoXuDO*&PҸ.X8M>CY)ds0e"}ku<{0@Ch+K˾cVwՉX!l XVЬHCWm1ɯbjƁQHGdPB'2UekyRinz!+)uTQn!QZ۬d{n&2[KG9ރ=iF% +_ۛIϬgi~TS3r3 ~q%85xyr@Hozjyꯉ?5t" xH*v0nLÜeK7`l5ENJJ*Ld+ Gz$c#; H!*sP#cG+pPUsr7ŕq;za*>K?scڜ5~`O}/ +Zݰ(7鎼:t˕"#{gKTpItk?\#F"ml' h["mY`ĚK!1lYw-k'{7R>3ȼFΖ[//\2Ūӈ +ʖj{IP_4C-[0ğ5f#|A:__n!3#UMUr[`|1,wq-=aBVco‹\l$Vg9SB;7_N=ܢ>r |rg.VU N# }]I=}9sĵffcIU TNQ}Ml+eL*ʛi؋*1?(~a[OL'1Seqd;uױ=p(,(Iwd^ޛyMpȹa2P핿s!i}XXL3Hgᱯ9I{?R KcFȲ ܙ3uT7@o5/Ѐ Gͪ$y4sK!.hSK]q*՗X3g{|- Ch?Hǚu8|Ueϫ=a4EwJ8(^a^l`S˩T,F4$fX*$\kŦU.T5ї/6|76YaC4(л ~rxm;% HD饾Y3wrCi :4.蟔=Ǽ%PvlW]oD ?F3?}{;pq. )NMZ_P](}+zK;}>w7EΊ\:j8k)p+xW#8#(]#}6zFm}0:;z*m3rBieai"<wF޷œ:t2Yxߗh]vjVpIg +} ˇ[4W%?58?hOmT&ZUYd~jB !.0Sֽ6kjI0/vEUK1%[m +d{v=%paCpNyRKlG:jy"}ɧ^])rOߔz|M3N?CCU05M|oq G&67OYbB7Z_7XFXI|gUE>o,j'7Kv2^O"xv6]! BXMpyB(ύY;2%QB;IoM`s{&VS]wC%o%T~[hDl&[35Ece{M#%CFg}K2O +'ӁW[ m%{2/u%T -Ď>R+^oH8W3mOϒ<$R4 cdq~6ʽ; xD!T啁:rr|pFu*IXga:/|w2]y`mv  ߰{b~Y8܃c*>䨹-D r蟡8'WR摝1F12fW! % }iBe-֡ewgH2InPc&~m#ʡy5a./Bre)zM=gbZ~!J+:)ghxSJƳ/'5R3UW]wc?#G`` A~%SuE<3S]u?w͙&,0B"U; 9V BrCVt_ϷфlΰVa\Q͚9yOuf.UJͺJl:'2Լ EKYq8Թ&AH0Ykb >'mv&]w`$ݖb\j.̪E7HDXׇ2 ŐBv(2}Nrkt녙dAEh`(eg5KZ29{<*\quvb0zEY~"c7iHU$x#acB:ѧ@4/3]wYuψmwAYPky$$;Ր3;z,EfNۧ}j`A(SF> dI,IT.}P;krGeӗv[6! O!Pr+/Ez0Env3w鶜[;TFGF%8 W8jc߀d:&VpvA !LsYڏ`8*u-$ \֐~~-\uxQwBHM@ϊ۴^MvO=_v>]ZoO`ddFx8sd'=Ĝ85(p~ 3; {կ0EIAAp /̣ȶBU+ۍI㿾;ULROL6k. bvE-J(R@`ix<9ild͓E -*4C}۞u=\'yf ყF0VRcP{1n `}%+&d_iiYh7VSk#{֚N,Sk<?l-6WU8S5yM{D̙rǒ 愽;QJJE2/XpFSakxFII="*+`S}zsD.\;'YfGq<̇S?%[mL<>rkVS+lt#~&9c"ڏip}ñ?PyI8:k[#'u]9\Q~'j(6^6 J>%W  ۦCit$:M;H\*+J۶/a.JBN l+)* ( #om2D6ue**J6o{MG6vͩ~>LWGmLa-$_c%c2 ;mD|Ƭ`фWN5âfAW+b}gոb +6j"A۹LM]&`v-dfOf9/Y VQҶcduz4#V`1~5euijC~P"|_I3IKgb絞DKW*GaOjxh]:#n{WRe!~ !+3iV1:哟T樺੘*뻏sS23Ss +oRqYk^)>8\3+qG5+xP)–%̔sǓF7A JӚs-|{^vLut˚C֢e'#AX5*ZK~5N62ERb2S;X_Oaa.SB)8J:/I-{l閖"s-8!vRNضIƵl~2+ {;Hц{YdjL1ߕ_RcJԘ(%8|)j2ʇna2$J56ʺY^`Lܩ5A\SOk${Qth'Jxg% mPٯH%;Lv{)K#|Z-=ۖ( +[Bi(2{pMz橡lQ~*D-,ɈwO549sEo+Γq GJ&,p2|/H1K=p -/L]k7QW9T2{SUg2(|M5܆bfXHvVT%*p9;p%nCDfNBv]oruy pΖdʥ\2D| -!ۢJB<(-!j iz\H D CWM,Cȟs|[G,"S>BpwY^$.M9U"17NCl>)h9aΗ;.A:Ɔ\DYTKDCR=2"lp|p>ff]3qu/^HRy פLIDWj|Սa*g-ޤSx1P g{< J'ՑMY>V|o@e3wqLo 3DUNnq |\T7<7ydAdW:FI&@YM_wU">tS{;6r}.W;3\ rPDTQeCx2K Z<brXNMp+c]G%f'IrIxj$EO1~-//dl p]%|n8{ Ck:+AT⒘ό]6;-s8jnӞV7Md:H~둧 @rM$Un5 yvl-v'^%ƹPc,k,cT9ސtڥj?h7uyX6;ĬB!uHSX7g=oMMw$<ݫHMjO$H\ޡoEG@ZF+ڍc?(ű)]v3*$r|KA;؀"ˏfb_oܧŒWOAۂ)5G7~Ҙ1h&z T MfAֆJj=, C I64ӊ2j8+ԉiJg2gy"4AKUw-\׍?f.R}aqK(sI{.Pk;"Mh">K"q%ݬ:jnLI9K0&M}A؎iL1]RaO3i6*u U3j4=2n#\qoz1ֶUVV+(r +d#I{-?7_1v +zSP}f^XAGOِ5s",u{ 8]C+48j8lTƐ{\YmH/duk0gE> &F>@4D$cH~KL❄ n~Ln s+V*qE߮dF7D 0tCܝ!hh= +endstream +endobj +202 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/CWRGGI+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 201 0 R +/Flags 68 +>> +endobj +201 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5594 +>> +stream +xUT\ۖq + P+@m; pp` fZAma8\@)9۸!lyB,9Y)!.Ύ>@Kj,cN9[:}pqr@@@5w>/85(f-lr +a0o(DX:Cԡΐޟ\2 + +Ju5-a]W(_?kCü nnoO[Ms ,!p +N%-)<@A~njsy@d܂Bp8fm`gzCqg9h-:뷌)@fƬ {VϢL\6 o##1ޝBS*$WQ[=+>W jS:6:.&4C$ОvAxXaq*fiC T@䇋&ӕr 3j :f›fΆd!2<7p 5xXW9**&%vb?"Lt_YmZ28omW5d'f#Ywe+<i&'^Yź'\x=\bω9.F[+) +ҞoMUJ:yP*Jwt?c /'"^Pv$S<$yP'FW2ӿ(?N7v SdZʈ<}xim`oJWAN+=*8Hq/+l{k+E<<ύ뢆W$$EPjlbLMqqXBuޞSIZ h[Ȁ;4`eܺIΩ{)$Ulz=5 ]NU:2Bv3ܚjFs =@86yKH'C}jCzE( qncݏFq\&\Ů# ~<ڝJͷmɥIna}d\1sNp85z#v ưlV_~s\DJx"egO㘛~2:$U3{F5󜻃ѪB0`58Wf3qͬ9c¾?|_>5dť6=p,zKˌ2B(^ًM_ƴ|[_4rĔbeAp^s_ IL;/%qR~;x#S# +ocVb ]cE*RFŰ_ +nF谍Z5*Sa@Eq>:@xmE׶K}C8aeѬycw'_~hs n{4Go*-glʟ~#p"9v}Jl?5r`0&iUT/@*SES?SkaHsѝ4ݾ&wty1.F.ak9]>{W.%:&+/Q{'lQDz$'4~\1 U|̬Xe#}qQX]H _rL=]Ķs䚿*?bVyZجͦTޞc;Nm~mB/8y18_4"6x3\g i@ mUT XPzϕ >jZ1y+k@VA*qӀ?'Nhc%V/vt3a݋nF!]0d(gfɋfAwx8kҦAH!r$~Cij7݅$ɏHn2R^Q#-?6#4 Q/ 0vogNn+P`ㄆQL1&!@13" I)-$A̮/`j(%νzixx\^obBø(s^W9͐9- +`"7v%1@tʕ? b)NQk +2Y~0h|i{NTc%>mlz`?q3ɕGV +T +˝p#:m] ͈}MQll>nfU"#z-Aj^OeTh+ +DˌKX/1%9$6׍`!"Ce(}4.p>WS=qYlAӪJ|I8xeG^@4n^}+W7a=Ew}yqJ6Cz]f̗M^UAt}t`VIn? +i̚b+RhD`k(ΠnU[9p .JA#y*VniKR*'GAV!\iа:1±N΄%JǷZ8MIœ B}E\5a$N i"6mɂvnOQIB,ؿKz,\+H ^XFdC &TT2HH-dJvT6ҩmOWï7Sy3&dh%<8:.xjWEFD^[ݰ"9gmv9s?F8A^R^W&s&f"bu/vlX/Fx$;K%HZ )SaM4|^2y6\Ȓ^[js4ԟU ]EgFRZy +I焣Oۓ I@ +*ј6TYAԸw0L&!bp5Yubx*8f#]4voB$Tf.* 'jzɶU,e\tOzK^" q?Oĥ[N~{߀Z8>Th~?ZO\:>{eD0|io3{:gXZ㶔@P ^%MEE(#%I9TЭJemR, +% SiwH#c! 6}YnFK|ۓ`3etu0oMÊZ"U^t\ 'i4l+k{DQ| NĪ*ot,!;MT9mx* Z$x$p7¿[һ(}w+Iaf9VgW#O3Q+ruk:i\ /Ԇf{^)l]|6с>R=}[8ь"O|l&m:->vR֠c2O!W%ej[2n.討,N P. T!eṘxz m +-|kWWƑA_kkp[/kyOStVNDN~XˋR\r&$@bJ n*Ex'~;o / 4brԂc4}D2Ԇ(.tvl7QHlr9E5,WggMru#FP +}RJYE^; H`n Wfi`t79zF^ӂq_7ȵhR* ,?m#~!BMDSwmEnK-y&o\w^[#Uᬘ;mȟ@UB-q,$/}l)v? +ENzZƸ:ײ4 i9y(o>[o+ڶbf!܉<9Bƌz0~z%>%~Zr~\{KBBjp>MBM]7yF_CO%ĉJȽL}G[╣Ť zc&9hxL+fڎn&< 0M&yl#=C[^ +(f»caIN FIҪ@7" <9w1rL3U8,b=VŬʪ{sEWt ڇMIè +}c%=-x"[.f_ W2eo> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 207 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 207 0 R +>> +endobj +207 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 206 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 208 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 208 0 R +>> +endobj +208 0 obj +<< +/Type/Pages +/Count 2 +/Kids[45 0 R 63 0 R] +/Parent 206 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 209 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 209 0 R +>> +endobj +209 0 obj +<< +/Type/Pages +/Count 2 +/Kids[67 0 R 71 0 R] +/Parent 206 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 210 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 210 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 210 0 R +>> +endobj +210 0 obj +<< +/Type/Pages +/Count 3 +/Kids[75 0 R 79 0 R 83 0 R] +/Parent 206 0 R +>> +endobj +206 0 obj +<< +/Type/Pages +/Count 9 +/Kids[207 0 R 208 0 R 209 0 R 210 0 R] +/Parent 3 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 212 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 212 0 R +>> +endobj +212 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 211 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 213 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 213 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 213 0 R +>> +endobj +213 0 obj +<< +/Type/Pages +/Count 3 +/Kids[95 0 R 99 0 R 103 0 R] +/Parent 211 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 113 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +214 0 obj +<< +/Type/Pages +/Count 2 +/Kids[107 0 R 111 0 R] +/Parent 211 0 R +>> +endobj +115 0 obj +<< +/Type/Page +/Resources 116 0 R +/Contents[17 0 R 4 0 R 117 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +119 0 obj +<< +/Type/Page +/Resources 120 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +123 0 obj +<< +/Type/Page +/Resources 124 0 R +/Contents[17 0 R 4 0 R 125 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +215 0 obj +<< +/Type/Pages +/Count 3 +/Kids[115 0 R 119 0 R 123 0 R] +/Parent 211 0 R +>> +endobj +211 0 obj +<< +/Type/Pages +/Count 10 +/Kids[212 0 R 213 0 R 214 0 R 215 0 R] +/Parent 3 0 R +>> +endobj +127 0 obj +<< +/Type/Page +/Resources 128 0 R +/Contents[17 0 R 4 0 R 129 0 R 19 0 R] +/Parent 217 0 R +>> +endobj +131 0 obj +<< +/Type/Page +/Resources 132 0 R +/Contents[17 0 R 4 0 R 133 0 R 19 0 R] +/Parent 217 0 R +>> +endobj +217 0 obj +<< +/Type/Pages +/Count 2 +/Kids[127 0 R 131 0 R] +/Parent 216 0 R +>> +endobj +135 0 obj +<< +/Type/Page +/Resources 136 0 R +/Contents[17 0 R 4 0 R 137 0 R 19 0 R] +/Parent 218 0 R +>> +endobj +139 0 obj +<< +/Type/Page +/Resources 140 0 R +/Contents[17 0 R 4 0 R 141 0 R 19 0 R] +/Parent 218 0 R +>> +endobj +218 0 obj +<< +/Type/Pages +/Count 2 +/Kids[135 0 R 139 0 R] +/Parent 216 0 R +>> +endobj +143 0 obj +<< +/Type/Page +/Resources 144 0 R +/Contents[17 0 R 4 0 R 145 0 R 19 0 R] +/Parent 219 0 R +>> +endobj +147 0 obj +<< +/Type/Page +/Resources 148 0 R +/Contents[17 0 R 4 0 R 149 0 R 19 0 R] +/Parent 219 0 R +>> +endobj +219 0 obj +<< +/Type/Pages +/Count 2 +/Kids[143 0 R 147 0 R] +/Parent 216 0 R +>> +endobj +151 0 obj +<< +/Type/Page +/Resources 152 0 R +/Contents[17 0 R 4 0 R 153 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +155 0 obj +<< +/Type/Page +/Resources 156 0 R +/Contents[17 0 R 4 0 R 157 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +159 0 obj +<< +/Type/Page +/Resources 160 0 R +/Contents[17 0 R 4 0 R 161 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +220 0 obj +<< +/Type/Pages +/Count 3 +/Kids[151 0 R 155 0 R 159 0 R] +/Parent 216 0 R +>> +endobj +216 0 obj +<< +/Type/Pages +/Count 9 +/Kids[217 0 R 218 0 R 219 0 R 220 0 R] +/Parent 3 0 R +>> +endobj +163 0 obj +<< +/Type/Page +/Resources 164 0 R +/Contents[17 0 R 4 0 R 165 0 R 19 0 R] +/Parent 222 0 R +>> +endobj +167 0 obj +<< +/Type/Page +/Resources 168 0 R +/Contents[17 0 R 4 0 R 169 0 R 19 0 R] +/Parent 222 0 R +>> +endobj +222 0 obj +<< +/Type/Pages +/Count 2 +/Kids[163 0 R 167 0 R] +/Parent 221 0 R +>> +endobj +171 0 obj +<< +/Type/Page +/Resources 172 0 R +/Contents[17 0 R 4 0 R 173 0 R 19 0 R] +/Parent 223 0 R +>> +endobj +175 0 obj +<< +/Type/Page +/Resources 176 0 R +/Contents[17 0 R 4 0 R 177 0 R 19 0 R] +/Parent 223 0 R +>> +endobj +179 0 obj +<< +/Type/Page +/Resources 180 0 R +/Contents[17 0 R 4 0 R 181 0 R 19 0 R] +/Parent 223 0 R +>> +endobj +223 0 obj +<< +/Type/Pages +/Count 3 +/Kids[171 0 R 175 0 R 179 0 R] +/Parent 221 0 R +>> +endobj +183 0 obj +<< +/Type/Page +/Resources 184 0 R +/Contents[17 0 R 4 0 R 185 0 R 19 0 R] +/Parent 224 0 R +>> +endobj +187 0 obj +<< +/Type/Page +/Resources 188 0 R +/Contents[17 0 R 4 0 R 189 0 R 19 0 R] +/Parent 224 0 R +>> +endobj +224 0 obj +<< +/Type/Pages +/Count 2 +/Kids[183 0 R 187 0 R] +/Parent 221 0 R +>> +endobj +191 0 obj +<< +/Type/Page +/Resources 192 0 R +/Contents[17 0 R 4 0 R 193 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +195 0 obj +<< +/Type/Page +/Resources 196 0 R +/Contents[17 0 R 4 0 R 197 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +199 0 obj +<< +/Type/Page +/Resources 200 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +225 0 obj +<< +/Type/Pages +/Count 3 +/Kids[191 0 R 195 0 R 199 0 R] +/Parent 221 0 R +>> +endobj +221 0 obj +<< +/Type/Pages +/Count 10 +/Kids[222 0 R 223 0 R 224 0 R 225 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 38 +/Kids[206 0 R 211 0 R 216 0 R 221 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +226 0 obj +<< +>> +endobj +227 0 obj +null +endobj +228 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 226 0 R +/Threads 227 0 R +/Names 228 0 R +>> +endobj +xref +0 229 +0000000000 65535 f +0000116127 00000 n +0000122463 00000 n +0000122108 00000 n +0000122313 00000 n +0000116291 00000 n +0000004047 00000 n +0000000009 00000 n +0000051249 00000 n +0000051065 00000 n +0000000913 00000 n +0000056123 00000 n +0000055937 00000 n +0000001906 00000 n +0000061362 00000 n +0000061174 00000 n +0000002823 00000 n +0000122213 00000 n +0000003740 00000 n +0000122263 00000 n +0000003992 00000 n +0000116394 00000 n +0000013396 00000 n +0000071174 00000 n +0000070985 00000 n +0000004108 00000 n +0000076445 00000 n +0000076255 00000 n +0000005054 00000 n +0000081749 00000 n +0000081560 00000 n +0000005990 00000 n +0000006966 00000 n +0000084600 00000 n +0000084406 00000 n +0000007920 00000 n +0000087102 00000 n +0000086916 00000 n +0000008866 00000 n +0000009830 00000 n +0000089993 00000 n +0000089798 00000 n +0000011446 00000 n +0000012397 00000 n +0000013297 00000 n +0000116579 00000 n +0000020469 00000 n +0000091971 00000 n +0000091777 00000 n +0000013458 00000 n +0000095525 00000 n +0000095331 00000 n +0000014429 00000 n +0000015439 00000 n +0000096942 00000 n +0000096747 00000 n +0000016346 00000 n +0000017328 00000 n +0000099599 00000 n +0000099413 00000 n +0000018305 00000 n +0000019050 00000 n +0000020322 00000 n +0000116684 00000 n +0000021290 00000 n +0000020531 00000 n +0000021245 00000 n +0000116870 00000 n +0000022123 00000 n +0000021352 00000 n +0000022078 00000 n +0000116975 00000 n +0000022874 00000 n +0000022185 00000 n +0000022829 00000 n +0000117161 00000 n +0000023630 00000 n +0000022936 00000 n +0000023585 00000 n +0000117266 00000 n +0000024120 00000 n +0000023692 00000 n +0000024075 00000 n +0000117371 00000 n +0000025139 00000 n +0000024182 00000 n +0000024992 00000 n +0000117661 00000 n +0000026668 00000 n +0000025201 00000 n +0000026521 00000 n +0000117766 00000 n +0000027461 00000 n +0000026730 00000 n +0000027416 00000 n +0000117952 00000 n +0000028291 00000 n +0000027523 00000 n +0000028246 00000 n +0000118057 00000 n +0000029105 00000 n +0000028353 00000 n +0000029059 00000 n +0000118164 00000 n +0000029864 00000 n +0000029169 00000 n +0000029818 00000 n +0000118361 00000 n +0000030427 00000 n +0000029928 00000 n +0000030381 00000 n +0000118469 00000 n +0000031397 00000 n +0000030491 00000 n +0000031261 00000 n +0000118660 00000 n +0000032501 00000 n +0000031461 00000 n +0000032365 00000 n +0000118768 00000 n +0000032908 00000 n +0000032565 00000 n +0000032862 00000 n +0000118876 00000 n +0000034411 00000 n +0000032972 00000 n +0000034263 00000 n +0000119173 00000 n +0000035298 00000 n +0000034475 00000 n +0000035252 00000 n +0000119281 00000 n +0000036110 00000 n +0000035362 00000 n +0000036064 00000 n +0000119472 00000 n +0000036904 00000 n +0000036174 00000 n +0000036858 00000 n +0000119580 00000 n +0000037630 00000 n +0000036968 00000 n +0000037584 00000 n +0000119771 00000 n +0000038328 00000 n +0000037694 00000 n +0000038282 00000 n +0000119879 00000 n +0000039475 00000 n +0000038392 00000 n +0000039327 00000 n +0000120070 00000 n +0000040682 00000 n +0000039539 00000 n +0000040534 00000 n +0000120178 00000 n +0000041078 00000 n +0000040746 00000 n +0000041032 00000 n +0000120286 00000 n +0000042194 00000 n +0000041142 00000 n +0000042058 00000 n +0000120582 00000 n +0000042601 00000 n +0000042258 00000 n +0000042555 00000 n +0000120690 00000 n +0000043805 00000 n +0000042665 00000 n +0000043668 00000 n +0000120881 00000 n +0000044796 00000 n +0000043869 00000 n +0000044671 00000 n +0000120989 00000 n +0000045889 00000 n +0000044860 00000 n +0000045753 00000 n +0000121097 00000 n +0000046296 00000 n +0000045953 00000 n +0000046250 00000 n +0000121296 00000 n +0000047572 00000 n +0000046360 00000 n +0000047424 00000 n +0000121404 00000 n +0000047968 00000 n +0000047636 00000 n +0000047922 00000 n +0000121595 00000 n +0000049184 00000 n +0000048032 00000 n +0000049048 00000 n +0000121703 00000 n +0000049616 00000 n +0000049248 00000 n +0000049570 00000 n +0000121811 00000 n +0000051001 00000 n +0000110418 00000 n +0000110223 00000 n +0000049680 00000 n +0000050603 00000 n +0000050943 00000 n +0000117564 00000 n +0000116499 00000 n +0000116789 00000 n +0000117080 00000 n +0000117476 00000 n +0000119075 00000 n +0000117871 00000 n +0000118272 00000 n +0000118577 00000 n +0000118984 00000 n +0000120485 00000 n +0000119389 00000 n +0000119688 00000 n +0000119987 00000 n +0000120394 00000 n +0000122010 00000 n +0000120798 00000 n +0000121205 00000 n +0000121512 00000 n +0000121919 00000 n +0000122395 00000 n +0000122418 00000 n +0000122440 00000 n +trailer +<< +/Size 229 +/Root 2 0 R +/Info 1 0 R +>> +startxref +122561 +%%EOF diff --git a/src/axiom-website/CATS/schaum16.input.pamphlet b/src/axiom-website/CATS/schaum16.input.pamphlet new file mode 100644 index 0000000..caf8bfd --- /dev/null +++ b/src/axiom-website/CATS/schaum16.input.pamphlet @@ -0,0 +1,748 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum16.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.325~~~~~$\displaystyle +\int{\frac{dx}{x(x^n+a^n)}}$} +$$\int{\frac{1}{x(x^n+a^n)}}= +\frac{1}{na^n}\ln\frac{x^n}{x^n+a^n} +$$ +<<*>>= +)spool schaum16.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(x*(x^n+a^n)),x) +--R +--R n log(x) n +--R - log(%e + a ) + n log(x) +--R (1) --------------------------------- +--R n +--R n a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(n*a^n)*log(x^n/(x^n+a^n)) +--R +--R n +--R x +--R log(-------) +--R n n +--R x + a +--R (2) ------------ +--R n +--R n a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R n +--R n log(x) n x +--R - log(%e + a ) - log(-------) + n log(x) +--R n n +--R x + a +--R (3) ------------------------------------------------ +--R n +--R n a +--R Type: Expression Integer +--E + +--S 4 +dd:=expandLog cc +--R +--R n log(x) n n n n +--R - log(%e + a ) + log(x + a ) - log(x ) + n log(x) +--R (4) ---------------------------------------------------------- +--R n +--R n a +--R Type: Expression Integer +--E + +--S 5 14:325 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.326~~~~~$\displaystyle +\int{\frac{x^{n-1}~dx}{x^n+a^n}}$} +$$\int{\frac{x^{n-1}}{x^n+a^n}}= +\frac{1}{n}\ln(x^n+a^n) +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(x^(n-1)/(x^n+a^n),x) +--R +--R +--R n log(x) n +--R log(%e + a ) +--R (1) -------------------- +--R n +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=1/n*log(x^n+a^n) +--R +--R n n +--R log(x + a ) +--R (2) ------------ +--R n +--R Type: Expression Integer +--E + +--S 10 +cc:=aa-bb +--R +--R n log(x) n n n +--R log(%e + a ) - log(x + a ) +--R (3) ----------------------------------- +--R n +--R Type: Expression Integer +--E + +--S 11 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 12 14:326 Schaums and Axiom agree +dd:=explog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.327~~~~~$\displaystyle +\int{\frac{x^m~dx}{(x^n+a^n)^r}}$} +$$\int{\frac{x^m}{(x^n+a^n)^r}}= +\int{\frac{x^{m-n}}{(x^n+a^n)^{r-1}}} +-a^n\int{\frac{x^{m-n}}{(x^n+a^n)^r}} +$$ +<<*>>= +)clear all + +--S 13 14:327 Axiom cannot compute this integral +aa:=integrate(x^m/(x^n+a^n)^r,x) +--R +--R +--R x m +--I ++ %J +--I (1) | ----------- d%J +--R ++ n n r +--I (a + %J ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.328~~~~~$\displaystyle +\int{\frac{dx}{x^m(x^n+a^n)^r}}$} +$$\int{\frac{1}{x^m(x^n+a^n)^r}}= +\frac{1}{a^n}\int{\frac{1}{x^m(x^n+a^n)^{r-1}}} +-\frac{1}{a^n}\int{\frac{1}{x^{m-n}(x^n+a^n)^r}} +$$ +<<*>>= +)clear all + +--S 14 14:328 Axiom cannot compute this integral +aa:=integrate(1/(x^m*(x^n+a^n)^r),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%J +--R ++ m n n r +--I %J (a + %J ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.329~~~~~$\displaystyle +\int{\frac{dx}{x\sqrt{x^n+a^n}}}$} +$$\int{\frac{1}{x\sqrt{x^n+a^n}}}= +\frac{1}{n\sqrt{a^n}}\ln\left(\frac{\sqrt{x^n+a^n}-\sqrt{a^n}} +{\sqrt{x^n+a^n}+\sqrt{a^n}}\right) +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(1/(x*sqrt(x^n+a^n)),x) +--R +--R +--R (1) +--R +---------------+ +--+ +--R n | n log(x) n n log(x) n | n +--R - 2a \|%e + a + (%e + 2a )\|a +--R log(-------------------------------------------------) +--R n log(x) +--R %e +--R [------------------------------------------------------, +--R +--+ +--R | n +--R n\|a +--R +----+ +---------------+ +--R | n | n log(x) n +--R \|- a \|%e + a +--R 2atan(-------------------------) +--R n +--R a +--R - --------------------------------] +--R +----+ +--R | n +--R n\|- a +--R Type: Union(List Expression Integer,...) +--E + +--S 16 +bb:=1/(n*sqrt(a^n))*log((sqrt(x^n+a^n)-sqrt(a^n))/(sqrt(x^n+a^n)+sqrt(a^n))) +--R +--R +-------+ +--+ +--R | n n | n +--R \|x + a - \|a +--R log(------------------) +--R +-------+ +--+ +--R | n n | n +--R \|x + a + \|a +--R (2) ----------------------- +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E + +--S 17 +cc1:=aa.1-bb +--R +--R (3) +--R +---------------+ +--+ +--R n | n log(x) n n log(x) n | n +--R - 2a \|%e + a + (%e + 2a )\|a +--R log(-------------------------------------------------) +--R n log(x) +--R %e +--R + +--R +-------+ +--+ +--R | n n | n +--R \|x + a - \|a +--R - log(------------------) +--R +-------+ +--+ +--R | n n | n +--R \|x + a + \|a +--R / +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E + +--S 18 +dd1:=expandLog cc1 +--R +--R (4) +--R +---------------+ +--+ +--R n | n log(x) n n log(x) n | n +--R log(2a \|%e + a + (- %e - 2a )\|a ) +--R + +--R +-------+ +--+ +-------+ +--+ +--R | n n | n | n n | n +--R log(\|x + a + \|a ) - log(\|x + a - \|a ) - n log(x) + log(- 1) +--R / +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E + +--S 19 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (5) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 +ee1:=explog dd1 +--R +--R (6) +--R +-------+ +--+ +-------+ +--+ +--R n | n n n n | n | n n | n +--R log(2a \|x + a + (- x - 2a )\|a ) + log(\|x + a + \|a ) +--R + +--R +-------+ +--+ +--R | n n | n +--R - log(\|x + a - \|a ) - n log(x) + log(- 1) +--R / +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E + +--S 21 +ff1:=complexNormalize ee1 +--R +--R n log(a) + 4log(- 1) +--R (7) -------------------- +--R +----------+ +--R | n log(a) +--R 2n\|%e +--R Type: Expression Integer +--E + +--S 22 14:329 Schaums and Axiom differ by a constant +gg1:=explog ff1 +--R +--R n log(a) + 4log(- 1) +--R (8) -------------------- +--R +--+ +--R | n +--R 2n\|a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.330~~~~~$\displaystyle +\int{\frac{dx}{x(x^n-a^n)}}$} +$$\int{\frac{1}{x(x^n-a^n)}}= +\frac{1}{na^n}\ln\left(\frac{x^n-a^n}{x^n}\right) +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(1/(x*(x^n-a^n)),x) +--R +--R +--R n log(x) n +--R log(%e - a ) - n log(x) +--R (1) ------------------------------- +--R n +--R n a +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=1/(n*a^n)*log((x^n-a^n)/x^n) +--R +--R n n +--R x - a +--R log(-------) +--R n +--R x +--R (2) ------------ +--R n +--R n a +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R n n +--R n log(x) n x - a +--R log(%e - a ) - log(-------) - n log(x) +--R n +--R x +--R (3) ---------------------------------------------- +--R n +--R n a +--R Type: Expression Integer +--E + +--S 26 +dd:=expandLog cc +--R +--R n log(x) n n n n +--R log(%e - a ) + log(x ) - log(x - a ) - n log(x) +--R (4) -------------------------------------------------------- +--R n +--R n a +--R Type: Expression Integer +--E + +--S 27 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (5) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 28 +ee:=explog dd +--R +--R n +--R log(x ) - n log(x) +--R (6) ------------------ +--R n +--R n a +--R Type: Expression Integer +--E + +--S 29 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (7) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 30 14:330 Schaums and Axiom agree +ff:=logpow ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.331~~~~~$\displaystyle +\int{\frac{x^{n-1}dx}{x^n-a^n}}$} +$$\int{\frac{x^{n-1}}{x^n-a^n}}= +\frac{1}{n}\ln(x^n-a^n) +$$ +<<*>>= +)clear all + +--S 31 +aa:=integrate(x^(n-1)/(x^n-a^n),x) +--R +--R +--R n log(x) n +--R log(%e - a ) +--R (1) -------------------- +--R n +--R Type: Union(Expression Integer,...) +--E + +--S 32 +bb:=1/n*log(x^n-a^n) +--R +--R n n +--R log(x - a ) +--R (2) ------------ +--R n +--R Type: Expression Integer +--E + +--S 33 +cc:=aa-bb +--R +--R n log(x) n n n +--R log(%e - a ) - log(x - a ) +--R (3) ----------------------------------- +--R n +--R Type: Expression Integer +--E + +--S 34 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 35 14:331 Schaums and Axiom agree +dd:=explog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.332~~~~~$\displaystyle +\int{\frac{x^m~dx}{(x^n-a^n)^r}}$} +$$\int{\frac{x^m}{(x^n-a^n)^r}}= +a^n\int{\frac{x^{m-n}}{(x^n-a^n)^r}} ++\int{\frac{x^{m-n}}{(x^n-a^n)^{r-1}}} +$$ +<<*>>= +)clear all + +--S 36 14:332 Axiom cannot compute this integral +aa:=integrate(x^m/(x^n-a^n)^r,x) +--R +--R +--R x m +--I ++ %J +--I (1) | ------------- d%J +--R ++ n n r +--I (- a + %J ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.333~~~~~$\displaystyle +\int{\frac{dx}{x^m(x^n-a^n)^r}}$} +$$\int{\frac{1}{x^m(x^n-a^n)^r}}= +\frac{1}{a^n}\int{\frac{1}{x^{m-n}(x^n-a^n)^r}} +-\frac{1}{a^n}\int{\frac{1}{x^m(x^n-a^n)^{r-1}}} +$$ +<<*>>= +)clear all + +--S 37 14:333 Axiom cannot compute this integral +aa:=integrate(1/(x^m*(x^n-a^n)^r),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------------- d%J +--R ++ m n n r +--I %J (- a + %J ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.334~~~~~$\displaystyle +\int{\frac{dx}{x\sqrt{x^n-a^n}}}$} +$$\int{\frac{1}{x\sqrt{x^n-a^n}}}= +\frac{2}{n\sqrt{a^n}}\cos^{-1}\sqrt{\frac{a^n}{x^n}} +$$ +<<*>>= +)clear all + +--S 38 +aa:=integrate(1/(x*sqrt(x^n-a^n)),x) +--R +--R +--R (1) +--R +---------------+ +----+ +--R n | n log(x) n n log(x) n | n +--R 2a \|%e - a + (%e - 2a )\|- a +--R log(-------------------------------------------------) +--R n log(x) +--R %e +--R [------------------------------------------------------, +--R +----+ +--R | n +--R n\|- a +--R +--+ +---------------+ +--R | n | n log(x) n +--R \|a \|%e - a +--R 2atan(-----------------------) +--R n +--R a +--R ------------------------------] +--R +--+ +--R | n +--R n\|a +--R Type: Union(List Expression Integer,...) +--E + +--S 39 +bb:=2/(n*sqrt(a^n))*acos(sqrt(a^n/x^n)) +--R +--R +--+ +--R | n +--R |a +--R 2acos( |-- ) +--R | n +--R \|x +--R (2) ------------ +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E + +--S 40 +cc1:=aa.1-bb +--R +--R (3) +--R +---------------+ +----+ +--R +--+ n | n log(x) n n log(x) n | n +--R | n 2a \|%e - a + (%e - 2a )\|- a +--R \|a log(-------------------------------------------------) +--R n log(x) +--R %e +--R + +--R +--+ +--R +----+ | n +--R | n |a +--R - 2\|- a acos( |-- ) +--R | n +--R \|x +--R / +--R +----+ +--+ +--R | n | n +--R n\|- a \|a +--R Type: Expression Integer +--E + +--S 41 14:334 Axiom cannot simplify this expression +cc2:=aa.2-bb +--R +--R +--+ +---------------+ +--+ +--R | n | n log(x) n | n +--R \|a \|%e - a |a +--R 2atan(-----------------------) - 2acos( |-- ) +--R n | n +--R a \|x +--R (4) --------------------------------------------- +--R +--+ +--R | n +--R n\|a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.335~~~~~$\displaystyle +\int{\frac{x^{p-1}~dx}{x^{2m}+a^{2m}}}$ provided $0>= +)clear all + +--S 42 14:335 Axiom cannot compute this integral +aa:=integrate(x^(p-1)/(x^(2*m)+a^(2*m)),x) +--R +--R +--R x p - 1 +--I ++ %J +--I (1) | ---------- d%J +--R ++ 2m 2m +--I a + %J +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.336~~~~~$\displaystyle +\int{\frac{x^{p-1}dx}{x^{2m}-a^{2m}}}$ provided $0>= +)clear all + +--S 43 14:336 Axiom cannot compute this integral +aa:=integrate(x^(p-1)/(x^(2*m)-a^(2*m)),x) +--R +--R +--R x p - 1 +--I ++ %J +--I (1) | - ---------- d%J +--R ++ 2m 2m +--I a - %J +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.337~~~~~$\displaystyle +\int{\frac{x^{p-1}~dx}{x^{2m+1}+a^{2m+1}}}$ provided $0>= +)clear all + +--S 44 14:337 Axiom cannot compute this integral +aa:=integrate(x^(p-1)/(x^(2*m+1)+a^(2*m+1)),x) +--R +--R +--R x p - 1 +--I ++ %J +--I (1) | ------------------ d%J +--R ++ 2m + 1 2m + 1 +--I a + %J +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.338~~~~~$\displaystyle +\int{\frac{x^{p-1}~dx}{x^{2m+1}-a^{2m+1}}}$ provided $0>= +)clear all + +--S 45 14:338 Axiom cannot compute this integral +aa:=integrate(x^(p-1)/(x^(2*m+1)-a^(2*m+1)),x) +--R +--R +--R x p - 1 +--I ++ %J +--I (1) | - ------------------ d%J +--R ++ 2m + 1 2m + 1 +--I a - %J +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp74-75 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum16.input.pdf b/src/axiom-website/CATS/schaum16.input.pdf new file mode 100644 index 0000000..af7bd7b --- /dev/null +++ b/src/axiom-website/CATS/schaum16.input.pdf @@ -0,0 +1,2228 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/EPDDUL+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/KVUYWP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TDRAGN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂ԓ~ u^I B_Dq( dJI3\Z6//o! +d= 1ݺH!Z7AI\0m,Z8Jck6F +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/TTPPSS+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/DVERRS+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/JVJPAF+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/AKAVIY+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/MDCDGI+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/SBDKQW+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +45 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/CTTIMM+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +48 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 47 0 R +/BaseFont/CYJLNJ+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +49 0 obj +<< +/Filter[/FlateDecode] +/Length 1154 +>> +stream +xYK6 W80"G +=5ɡElH6?l˲4ENAQ>=J7?on +-nU:xJ^}nop^8!AY^"n/B ?w ,0:(/Vo_VxY,V~U?}ʚhc;Ɣcx^f.$S>Ay]k[0Ӛ/s䏘v`2jAZ%9W1 !ӥȧ j@ABq+ K{RWeB!dF]=0(]fDD1A6 xq t'+ *QH34@f !09 '>tha-; 9#?y{~sY)K@6P]^2h^Qc10 &@Sf1zf;m,y"!@ #ҼkHnj|Fxmv]h&'UPT8Мcm&䁡Te1;%{nAAS "jQDAoS&ш;E8",0,. 0o(#,X^ы).1H2%T:VW)hb+o1"@Cdm:2ʩu78WS^qUQ] 0XBwO_v{hDIb$ $q1I6IL,];IjL^%Q.(ΑC $aW|އ +endstream +endobj +50 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F11 48 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 50 0 R +>> +endobj +55 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 54 0 R +/BaseFont/SNUSKE+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +56 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +59 0 obj +<< +/Encoding 56 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 58 0 R +/BaseFont/QWISBQ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 62 0 R +/BaseFont/CWRGGI+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +64 0 obj +<< +/Filter[/FlateDecode] +/Length 834 +>> +stream +xUn0+x)`F\ R4-c^%*Aݿ-ڒ60$3KgavI2.AH6eQ,3RNjg]iB5}= HP# 8,!/Ai VGS[E@i!SȀ,Ũ[iv5>|*;o!&]v<җ]za5H}3 'EH +-!!oTѼ]2l#2"8<ӊ7pcYPS `Ԥ3!N;`m*HҒe>R :L $+_E#Di1%V[5Nʁ-%]!ʶ%.@>HFmG" hА79}3zaЍa@-#@)H8oƑb|Z,Lsys_VeyWUˋ:RQjnonU4Neaw+-CUUI1ZWu1.xvfٷ<'|⎸(>CWC$fΥI*\"ծ''P7> +endobj +52 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 65 0 R +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 346 +>> +stream +xSMO0+z1v+717@E4A68hLRyޏoF +f+B IG ~r |t!rp;$ᩐ\S(p s"o˦vxӉ )ҁk+㧂8"/ˊks~285rz1܋Io85$8u;EWof5b-Ə9七Aw675J1q:g2bz&gTXl+ey%֧QWn:S[Ad  h74ebOBIڲZg_AS +endstream +endobj +69 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +67 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 813 +>> +stream +xڽMo0  HJ kf-t^W sò?JR E)RR g;j~(&Y}#ՄZDL)Г+^YLWd,32%}˗8D$ӊPŲ8e6e#`К7`̅h7&08gkj "PL0+fδ$?Pxc DF8I28y42fGPO $:~xi{;AA1>!]*C20' +1,Ɉd%֌ɞ[aB*$;&gZ͋y/@96AZ%0NCcV3X4/C `!5&%>Np'QƠ*4 l]0vlI|T4~^OHPxlxrqsLN\UU +^,ȧNƓl< +)V:X,n[> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 875 +>> +stream +xVKo8WR 9hH{ٺ[M rCQZ9gr'R ;o;,',>~Pz;DBT =bJ 5Ňsc?b'^{*|̴^ovVE.R,'z99lƣN⯗|_u/}qȟr,*"\T^*L܌Qo%l1m9dC\tB&T5v4wDa|6 +.uE~_sA9| +t%0R&īZ0eh[0ќP:FOy ᥽o:xI{k/Q.p +6@@ 8VajocKd e-D +/%R­~7NFMd #ݖ$8{G҂ɤF!zcZ Xi@7Tt2Z{ُwj\c99C.9eηf R(ޏ6 Dm.NI OH_~6²O̞X#O΅D_8>"=I c\VWd,ST6⿫^ q+ΫvcG7@ںڸo/ h{`jJi\y,muݦd2mZeE?!MݳmBTfaezȗ:/fc>WHŦ_Twc*Ћc}+ vq ܏U3!qV79\2K}\zX}ErA`5c? +endstream +endobj +77 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F9 42 0 R +/F10 45 0 R +/F11 48 0 R +/F13 59 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 826 +>> +stream +xڵVMO@WRL8*Tp,$ RR5;&P[xyv +R>>ӓsI!; " ~$e5,nɹ&%CP-d0JT )CΦHC9T[, 7C r<$ˁff2  ,̲ ሇ<*!u"SMkx#qUy^}'%&U*e Z&G/`yr6Pubʀ{)&TEb #%ў(C&^+N!mblB]h-".rܒ*Fz'"b֗jz' F<=0#GX S¼n:-€bFRyH90.rV:Y[)^2%θdUOM\uEBƈm}KmI٠-9D*;e{lY﷥oKszؕa\),=LI)[u PQsɼ5mϑ'SW8A*IA}K/*jiYe ;92bT%*_,JQ\?=MB]r0iwyQ +endstream +endobj +81 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F11 48 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 1075 +>> +stream +xW[o4~W)Ԯ+E ᅦ+ea(l s|Itb>|EP|^I"$4#F!l8 +m3UuW4j˜!R8:$͊h$6vr2v aH7b i4q8P )zb'Cl%x(~8D]er ?siRޡ$,$և̄@=^ ꏻyafG1ZO9"pK6^JBVF-aPa1xʜF}IcAX\ḟ`z +!7 <)D8,V}#@ԸvAW@OP~tsȊ |isȘ?hI˵e% .5H z!(Ϩ.)Ix"5_D$33:rK x)_S9Q> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 533 +>> +stream +xڵV=o0+`7]:ELF6._(K$R6jH= QB) x}F=QF CXsb?}M0~J&EqOhfcܝ> y:"~L:$DgE8$Wϩ.>gz@A2BqXQWRfUlU8cv^Uv8_ӝEmK3e[\٨mږ3IfMH'I4qr{޻|AD]ϓ; KJń>'sQs^ˌWH?o] ¦~ ,E{Ŕ%B;Yeo* V +endstream +endobj +89 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 588 +>> +stream +xVM0W)5͇!RCYn+P$U~|m!vxf<~71ȁ>wx r`a:/܀l!Ɵ'ah,&9z0~󹊴~<Ulu"ʍDo|8pP'm q!`0~$Xq yE3y m\Wh78©|W^JTN Ŭm6Ĝ$و`# +(j润D E.C fWKԍ\`~o$7*J5AS +=M j+@ `IQv^;xWGj>~ ?E7M 2?d:4U$:dN(+2l*! 56(7˄nKOB/i 2!ck"3U6YgHg"-ܚcG]){;ju.nENEͰ)-O݋E0wN 2.Q_ep/y +endstream +endobj +93 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x}=0wōmȕ^:hJA~Ԑ@ +)!a¦N`HL0jwIJ> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 839 +>> +stream +xڥUKO@WRBegKUcI/% R @j;~m@)~켿of̤ݰt/N5-f̂pqBp>sfvbԲ &Nh][عU^c\P|Fv44 pȸ[!y߰3ʳU(0$7*RȉLlֵu$S-ʰ3XCB CPn"3B<¼5VX8b"[*J 91)@i +^X&_Ʒyҭx!!Ǯ j =;Jx Jk 1*!m:;x}{›bzM1t>PQ@p֢dIg<4T*xS%ݩ&Q$??>CՆ(PUR TSzӪt\еAJ15CVRy7`Ɓ AlRӵ\w +RE_oÜfTMRjdѺjXߖO뛇ij=eɋr5_<*_^qȝ2Hiln(9R-14H¤vMo,y]duLw>(5yr$%ŧ#ɁԣbD Q0[_/*ů]l֏\8zhqu8<ჄXF6^_î|ZEml>k^OtގTu)Ӆ7#l?sf34^ڟ(އ,5)c{=ϧNj|;s^;^JKĴh:O ?&Coݵ$ +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F2 13 0 R +/F7 35 0 R +/F11 48 0 R +/F3 16 0 R +/F8 38 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 504 +>> +stream +xڽo0Wefj"jiiO)o*H)DU?c+购k^.' +%0\eטJ-8@F\D$Ȟ*Y@`u<>Tŏ+@b>|;8wk"6($U!ouim6ǘ/k2]+) +\Y\z;x ׍XK;өH_ 6qnMOW9yK. S#c;/5 b.tUt%>.J FJqaݭCO盦ֶwFtД֋~<^@Ȉiyj$XfV5SogN7ϨqRfşPcڬߗ378BS8O hx k'sO1dhHC1rIwv3?IWs{+h$Cdžg~1)z]\) d(Ics2{ w +endstream +endobj +105 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 86 +>> +stream +x=!0 P)Ѳ2KHu CccY7L[ogOTˏ(ܖĖP{iS +endstream +endobj +109 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 819 +>> +stream +xڵ[o0~AJJ}Al²IRɦnhsl&V}Ism'3 bz(&Y|'ՄZUb'@ +gKzyznHRC,Sҧ0:| ڴ*FmtMRG)X*4f<3d'fLYBBmr@<HGLK6\" 67BFʌ*vPO%Wꔁ#J=P^ÜNaLJ$3-6fPt +DӁ pǤU?wz#p+##Cs[&\ww K/;!,y  v((Sh"Z +>s +K:2Kz rb 6q?lm%'TܒTd<SFzb' X9X2aTeWmk,xus!ܮ|3|{(xzk(gUTm"K7YRR&SMMNQGGZlNcκ2N\0-O"Zc0SF { %1B:Gw7s{;9].zU{|}+E<^1@BjXD1o~ ΟY'5<^ļ , k9Y5=."5PSEY=a#H7XmKJDg  +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F11 48 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 878 +>> +stream +xVKoFW쥀e~E"9%Q k (VHHQAcu1|Px~_S,X!MAS-3oˏ 8شP`3T,8qa\~߿IYoOkOMU6muzz=SELL +7&eo̴abZ8wz}8PJqs/Òȸԡ|ފ裺SAp"hAY$(+)'I`aw?tt QvrvaBgɅ&~5 +T urŊ zhnC\Bd +#C Ô +t^,0WIW%V_b8}{D[^xM``X3`9'y2"jU¡=%=|x35yY^ tfF Hz%*4OMe'M`17um +Oy0w{X5ScMwHqC:C;D_ :d>d9<)&h6u]u&x$\#\(ϭ&ٶBSrtt4 >`"Ɉ_ݻ}ãe Uu6o%Ҿ>8_Q Y]U6IKv<}r}FJl]Ƈc'mp[r7CeMj5;=ozU<6Oī +gNj'Nx~p%:+g $i~Oz)eSvl&B+|^&:S*<ʅ#sjJs,u_3 oN̨._0 +endstream +endobj +117 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F2 13 0 R +/F11 48 0 R +/F8 38 0 R +/F3 16 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 829 +>> +stream +xVN1+42~ۑX*TtYM H#H!R2ԏ=' ,{!#|I$I?f`Td2s9e]&!§1{`K+(A]nއ$s 'T[,7 iqNw!:V2- ,VYDsWF0PHM`:%WXIi +v/٢2?A/HԆ',l,gILPS&#W)ex:W v)m"Ba+!MܦKQ"24tٹ)/㭧J4$RPf09{GZ Dn1 (6 &u6(&o orr@Ѩym'NvX)/Ez)nC[-v̂ *[nǖi6t) -@nJ{{uXL"=^kTGw`#5^ 9֒Sϥ]&?-9UUUAr.{Pzk\09^az˛Vas5/S\ͪnYU:e9:$cǓl}8+Z^Wz9ɏ֑XJ>MQQ* << pny7Ib۷ Eʅ 9Í~brhiJR Cgy!]68Eo졚d qܳ3]nN{^THD<- +endstream +endobj +121 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F2 13 0 R +/F11 48 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 969 +>> +stream +xڝVn6+x Mŝ| \byLc#; S\XY&qNH|D~^}PljB`Jw]u0rϼ e:0 G2ѻYOb>|=r4Σq0m=yvFN0ᣛs}$˼#C⹏m$pK`J)[$1&噱lQ S-ii'!z (pɄ$5jl$9}-OH Xfdr!#=Z,XɌ0bZ!F1x"s#-z"CΠ߯tv^2tL7^G +6"F/%Cҵc¬Ph 5Џ6fOX x\ƪ]MƾtTޠz~kӬCoE TkaKDw`1(}5fIXUPw= zTr=6yK(P~dm\߂ٴ W`/ 3l\ia̳ٮZiQfE2}ߊ.+lyN:#e {-yw<<>!G>Oi|pwd3v;0~FPmPƛ*sZ<ؕ9 +ئ^r1<[)m{mdjmHo& +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F11 48 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 591 +>> +stream +xڵVM0WR91RVmC6ʲH-X_q`/Ό=3&%??зlv$({D%!ybʾcB~OSF|TQۍ0؞NSBcOQ[prM5kݮ5ֻjYup_\$6/I/+K6R # a'v941u>@\`!e yQ+_|!z# X;>Wĸ9i$.q`O zb%Eէ@;NSf{ijmL@Xb1Nh0si3[E8T!-=\ϕ;]i<C yn=$ښ,@b!&BH__`Zu|z<`{ZmaVu\@T܋Ez隴-sr(JڟQjZ߇ZЫ2u$-Hk/vE&,W5Р,,(kxd}ugڜ$nH݉tS6ISoĬw\d\ +endstream +endobj +129 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 1213 +>> +stream +xXn7}We;ûQ?S$ +ɦ`P[m!vF:ٕH̙3E e)>I0?{*JjQXb @$=6o^pIK%# +>mO[lkĂwB]me %2.V04GqKpTc::s@zm Z SWAj79yLb\H&b[Gjdmv;8suiLq2Tݴ :vDۦ!2#wa~& I$ i|N o( 8ʫoco"tDIJ]7@3K +,HiM{">6s%p.ǫKFg2cCG_2OJO~Q*΀cСr`0)Pv0 fcD"1D +4{DCKv 7Jm !Fvz#3[mR` =K)eXtr#'ꗝЁY sEL"O?@6H;+CBw<l|%6ѝlO(X茩?_e}Otc#f ,}Z0:5IA9Xi$K H_=DZN j@:;_񭮖N$Wm|MrQԨkT~o5Ϳg\Ab\&-,,&gG_4ъ8:Zl5ꨜ=G.pD`- `z1A(gP$5E^g h> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 1302 +>> +stream +xXMo7WR@49\>S$FD) j".!Kr+%e3|qք3G?旯IE#ՄZń 4TгÕ70sʐƯ[aͻh! )Cbm4y&6mbYff"MkarJyYƨ㴨kw7#ED23-Ɇbκ-b@O0 *?Cܤ0%=>| q7Yy t8îbnuMaD}k(XW2sAVd[hDo 8 OH%!0p%3XB sPfZbZ"1 2i1(xFDzbfZ$ !4_D 3X w!X`ΕpH.﷥iq>N7 ,ߙxd „뀔Ĝ(\n|XD>j,!|*cvC!ϰ9URTpSB{TEagwkR@XB% áx ~E\9P>R]!>mv8&ڜ Ea/anA(@\&T뫶n,2c\'WZHK6G.]PU E2:eu]k!yܗqOi%*C~q4*l$d +k=EM <?P!90xU/}j窉䤘BLۊbbve. lKDh Hr;TVMW8U#P4"QURO՞,|2bVmYw"Tu6Uf$5"J߬-<Ss*zD&iψ~nEUH"B[S- rwG{^DZ&w4 p߶4(x 'OIng{Q +(w_}#cY5Q$ +H7DANř5}Ѓky}*}&s>nb}bDZXKWe-t_ۋ~|hlycH`@8$f@+ϊnvwƻ*8|Z?z{X}|X&'>꺛==EF\1,GS< ?jk5 "1uCɋ /{Ͼ}S$ ;.mO_}7ܩQ!lH֡jghv*y?q_Y=dM~S_v^8 +ͿM[V +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F11 48 0 R +/F3 16 0 R +/F2 13 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1402 +>> +stream +xXMo7W쥀rmԇu䘨@([MȒ`wH.l9 +P%9{|3TUӺ>VK앨\T?+Ũт2V~?a|J9y>a\O?ߜRV9 8{9"0! ɈT7Xnw.@ϳuf⬦FU$ZWs5k*yuSa{ `؄Y~5gp 1OXf1$n؂R G&? IHPXVe&j5t7!q @$Su$2DN6ClS@S)juಲuN݊ϩ枸 QHd ȹi<j;fygNH۽p4=L5vpEӳ~[-5RV_R|a1)4ʸh>MӾ~21V+T`dTZG .CE8Cn#'[&!CX?a;Ļ6Xfe7+&2Ml8[8SфZַ@0JQ"]փ%GQp_Lf<qxf<9*,iY;4 }maٶJEʓ2 +cB% (' ^Rjpo$ #\EQQs*{,f0 n\ȼX +1±x4H@@+JVWƢ*Q9qM"8j4uCېL(- UKa&w:Iak_i'h>1"|?O("K(NځቛK( 3., [,``s?1b4`pY0S2Rꔿ6ptY> *%vGT9m8qC)8T,B7lbu}@!;^BƋ#V<ۼ(KJH?8[d{S,4T<pTo"Hڤk^y׏ta uG^X03RϸnԧfVHu?jY1115T"6HfP;XcMHȻ+ &Mh^-}_OZoWoi֏_-&,&{t8 mxq3÷ٲm//v,Dj-Xѿ}p˧ff )+'߿ØD y/w=lm[6 ,`)>C:]ϼoWww_;V/)]Lb./c2`bh{h, +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 55 0 R +/F7 35 0 R +/F11 48 0 R +/F3 16 0 R +/F2 13 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 1388 +>> +stream +xXKo7WR@49|E"96*P4&BdI;$܇Qܝp87g$>~ -.^*",~'F0 A߿ UQ!@ފwAMKC<&EF9$ ])U'a[yG4(7E+֌ £%\$gɋ@ {LKrK7 ƨUrr߂ +ZA  N>:fU#v S"D݅M(,I{> +b~lݮbfuT a2gOeT+PЪf^80v3 {-WC)dLu1@"*u,$pq0o'}+8D0^sx_KG[u!,jY^HѶcpw+y=\<sF:# "m_ SRD V,cb" q~tՐoy"z\.֑ Y3%LLԉ'cgmT躔G"Q& +˄nX(=,}TyhbcӑT*͏d=6@mp ȁp_0rқvF{BmȦQv3ѓpdvB!z o4SI:lc +|dx; Ƙɜ&|?LgX uʵ}xHoCQ +TRc*9GGC]O8 FB=>ҁgrB- +F2ز1"??(@bXw5 +l{=IG=  +<$83Z#/΅[M=Vhf0< \eX]Z]@, +0.^<ݫ6ݗgDA1IwJ)FѥPz"yICLMyUQeQ8G%>5b!7<7WDž%"lM۔`w֡'p<:0W~_]&͟Ջpq*dpu16#xam^f}hR~P6p> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +150 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 149 0 R +/BaseFont/EKDXSQ+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +151 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +1\։*Ebߢ~U ,3; VsK%pIiQNtk 7KKjoh g~$f e}n~D0X%; B> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 152 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/EPDDUL+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3988 +/Length3 533 +/Length 4537 +>> +stream +xg8keE AѣaB S3Jt(D Qwѣ5zN/k}cϟ빞ߗb" a4NXLDLfp_L(&"Qp Zʊx'8(&-'qON\q"q@~5?\2@0 +E8ءv8g8whq@q>"@ c>DĀ0hwBE`A;b20?[po. oNoJ䢆ߧkHC;v(?  008w9/68 GC"h'$KBxh"0 tCzh!~OQ :T_OWb@L}Z?"V H@;``gaaJU+,!e%2E#puSucp4Ͽ}Y;"~O;3"=.td{:eapBޔ,u4ܳG$tsNQoCbNo+?-0k=ia-etoz$Wl]x SȪR(S׆fnskRs;yVd);U@ 0ᥗ :zH fIӧL"v =P~v]6.3]hJsh㋟sDc'S~}cےy\kC{D)nxnc +V'2=LNpzWqfX)H" uۙGŗ &Ɗ`ӂcτk‚ +Rz,im 1Gt,:BH{hEF6^;SDN)p~ ߝD-.(#Lqz,b.*]BqMh)^qV(i^}L%Y>B4s +Oݻr7R%KTdVZ.'J'Y ak>^#`w(|é y⹗>QM]hp +f" 1S#VƉv2A8/=^EOEJ]xe'm{}hYӚ=manIek-$BƯ#_V$G %qd0) 8&tJ=<ݵ0y%$!tϑpV;GWgҎ޾})ً37~(8+ynZ:?3Tipѫb3{9]<}ܱ&︩a{YP\macJVjѦ(*ΕN]f6nnUUuEU k 7 +# +cz*Ig AGogћo?UMӜp~i%tp8á44T%%cS)X4X: g,*B ^`+~x#lUgWk5'EԒjԏ-1iאTS'궀17/HB\/f[tq&P]fQ@;9UxB!aOig.0ݷ8 =YJ4Tz,Tܱ,}>\RӞXP@ôN,keSlcOODY.Q\ηuT Ե]m_XR~2 6Vsv <=ކ^ ǁoHȢí)97Hp2|GH7)nߓ ʚ㭈 9c_1߯۫g\`3ǫYB*_2H4 I:/, ڋ=R$vt-.k,jd&뎔Bے\9T8BOh6ą`aqPv~b981y~Qغ +U|L؊]L Y5e -r'xL}hsp'w5CDIwq^S6wcڋe}s{;>( k I;iCN!$A|I9T`TՕYC"$4iSJ␴/̮h&Y9E& Ĥw[)Rz|x9ڵVk4ДINXZҜnr2u֓?j\O [BՓ55qґǕ7d)X y#Xn[h#,a뙦Q]9hWӭAǗ;gX&([;33sMP#_c?[5hgrj |X8nZscsrBƣm'^N’=[+<`AfpIKjmN22 ^_#>Փ{TNFq)]Qd{S> &gDҁW%X S I0k#dtt}eu6J%Y>65(r,_ڳ/ʰj:dž_WvUU} Hy(QT<ha^ u|;G׸)G +qgG")+7q9mFֶ9nm\Wcgަ!& 0{w[&mmzAk" VWjp"0v$8ޤwn5I-o c:_{VΔ5g_= FtnM%Svя94ah9@ULxn?ٸݸ-ɗU>9||S| / Lh)QGQ+GMۨEP \LI[p[e +/FyM!ע6.[6wTd.OsMfkϨNGpnz`XvskY"5ؘeiSRS/YH1p6m]hmN Œ#j&I1fU0 +l*47 I͏Cz: 2xEg[}*cR%&`bl4#hoY~wcN0ߠ&S$΋3ޝ\%=yP56X`Yva^ff(߽жQWȎffohy[^jrLenߟUZ~?"vVRpW2i}_=ZCe)Lޝ?j>C>(}pKٮu'Ξzxj)rvIy|/%thnʩ%^Xd]?~s;e;W/O} ~ChvDx}Npaڼx'P`8j^_ R]TNK/h|R[,<)ʸA 7 cG*5,/4}"O6uX2np%ޖtCtޗe~Ő85rܔKy+UsEg^EzT+U6`1U"i︣% 60> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsABDOWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, G +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/TDRAGN+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9090 +/Length3 533 +/Length 9645 +>> +stream +xeT\qC4ݝwKpw rf}e|5:_*ZJ5MVqK{ =ԙS d@t;C̝AN. +#˅J hkm `d 9͡esg  дڂ=q0_ '+Ȓ `i tXmZt%W_.?I9-`% +]z4`7qU!G[b {g#@w._l K[ȿW@q5WIdf X@̃sD`גUaױfn u_P38ں 9ϙ-& [BPKsGJw( {w/V.^N{!(UjCm\@R^>f. ?ogle? ;ꧩp°BAhZA0\ +YmM]mC}m2=6>;UH~s4!BMLz99M 6ժ++lޅB94KE!E@mQ-n&A8I4Q mC̏:j8RYJ*#_ 3[jzv~*sT b4g?)W>eiu~T\dlko&#I3n#5;M2B 8c[FZ B2Bc#aua2*p˦GLr0 TV5 +@73JQI|Vdv8N٤>l*GUqGb[PAgeR<ׂqx?"9ہaNIY1HKMM^)-+5/Eح|n ̇ SI3,q-M6QYw \?FיC >n" I-qޜlaAbg $Ⱥ́Z}&G>E(Imcf"PkJM&>#\_}u Al@YEӟtN-t4t|~C~|hPF 2 Crupn1|bMف5tzb~2q JQBSZfTM}β7?Fߦ4fզ-]$ +/ͧ37%ore9ZP|/ڟSv .dh$8jUbi)_*4B+Bs&-剢|03S*QDa}9TKU10:}_ȵ9Ebd\]݋'xc77dkNmDHI}HW`${(]}Ӱ"@+*hJK_pCɬ|4SÄ=(?Ȥu/#a"y9GgGqݑc)q"aht418cjO!-4m{}4N Y4 aT<=,s=qhj95!fg+ f^V-ėKygτ%QpY;|馮ɴ dB(/F~|IKdHwfQ,Lh5Ǽ W +"?sRu:>w:ԟ>S1_.i>E"1U KRoULO9\fG“e,i;8ې^ՠ6g`4jIu󛽜i.gWͲrN!4ײqy-שy|]>0Zf{0F J QwPXх]wjI.YJHݠl4*v/P4e\vY 'V%Ɇd~XnGLf5K`KZP3MF[=1HV=Ύ;iPR$XPuǘ}x],dBgcŚױ9 TNeC߆l*u,Ȩ!Ҧ?!'GE#(|Y1Uf ^D'}19W>Xjt7)~8l*hW u\ f@lkbRʜziC)IQY%_cRʗizЭICo,ŮRuCff ؁"CC1x [ +=tiW4s`)+-9jex.Ԗ +  /Hw#@>A V=9i:!ga$r FJ7 SIL0_xCGUUIG*ju9} LYʛM*|I(B=qWH Q9IHv2> {to"],rL?/?^G,替i6Ғ䥌^-b=c%fPMwG^R +LKPS_:b&"Wyҧ97ThgVORSu>pIQq +*isIMUˢ8"V=ZΊm q\?iVr(4ۀCl< i0F}9 2KgJ+;b?sTI,7`tA1b|ŨW=wQ>EJSug>B(I#8Ma5D$y 1uWAuF*J$z&˓AɂZewzp\,sY"dg#HGg0F곥p1t"V*v$<%{ADkj׮WpH*ug}T8pǢۏnսosLIoXAKD +^6@ l VrՄ9f!~]E1û-RKtkYc~ W\BY?821ĚEEdt B 5m$bΉolA{SY3.i0YNUa!fMXM&lYP y8.R%1|)< %K·_nyfmǶ+8 ϊ;1|$sk6C./KVY]yh/ CqQWȿ.,, +91 X[,:NdF+&؝jT~y=p\--$ˣdHSƓ봸{(@ oe C dĬojƭ{_5Ehq>}2%3sB:<%<ԓ3TgԺ99) Tr:9g!œJ{&JeP@póRPZ_/;bשx ͽzShߩGsiyT= +W=sv*Dwӱ'XMf Dh}3AbuHgwIC 00Rh1\oݨLYqaB%b1I;^>!N I]CdJ/CGG*1:zPj!?2V& #C],€'yơZՈ3 +JYzT&PeXcaǍF DK8=%{936ZAOr>PCkS o#_ :1zCnbl4ߧv;m~;0%ex$B1#hgnG{@IDD"9^M7yZ Ԫ$K݈;/ÏBW;8gsɏj+0{?}xxjco9Ȏ9iўW11OLϐO#C^ח^n]Kwf,ލ!OVO&_| {q\%mNNIp3Ly?ʹ A 1Šn3qߎMfʦ='{ +_NȄq}^5zĽSXIBVc,؍l{2jcfKÒ;.rW@n9D:-p_voe~M]8ӑ&]8 sS6Rr:kOD~&XNV]L!VJj=#ܛ 0h [Pۦ,:BK)wCN\aXx +H= +#hkxgNj)[Hx ;OD=w+3'uIJ + ՝aޯ$6}I:]=^ []v="VPu$yF<2Fwƿg_sCƂ].񗊊$M㌔{"\(*+8lkE7b`W#9@d|xBAscE! x<[xnpĨ9ڸDͥĢaR3r, J~\вCN;YzЙ}MX&7ROɗwsE|!P^2dዽ7".-j1ci莥QJwC/1= Ȯ?}(KA%to 'D'c2{6WOc~f;:6 x]ƏY1:#K_;pʵG\KƵ+[lVu^,(2̑8֩?JEp +Ͳk94~8 fbJyoByxOlKa2jOn?nϭg HŜc!/۞2vFV/Lnc;7|il6ْ|[ GrVySUch']SUHMhSbL{%V4tW0),ƏR&2Khh/]rkE禜 +\Tp8Ub@؋xN7Im#C +k_$jcP!? 3c3󥷰؉kY$b>/D*/ gנ·smBs9Gӏ +wY &ދ@͞0ذ~٥v[ȒAG7s%'& u;0&jZe=-i$"g.dAߩmȟX΀ O N:LhAt t]!%33l&mHU]MgoO `[SAMH 6nB;AVp@zXoBȀY`,ND(n +[?%R?X9&V^#EZe &6#rMBfxz~In3kՑ1^uwgIBv1MsȾnPW!)2S4ٓQEX%ՌB}4_ +Wv}= WԚOCulg +YG_uf9)a@v3e&?%P4~_ާ!G.mX^'Y;s 3aji>Q.} `m$/_n(GxSC*Zpe[1Dviw1m'/c5=Nm20eQSr8J+9_X=꟪&2.7ut4!X۝ى%քW|щ+ZT=}[O^='t:CCV%E`. 'tGn^~cu2G15I:^-)׬QDpI5pƏ2#a"Hhߠ܊Y cX3 t._ DڣsQ8vvW:Π*3H (N5P'K0rf`AE_HPIZː? Fa(7d4" |dz+_I̟2 +ƨbDž&vyxZX`wb·.Ǩ<|0~0rPڲ(]S1ĕ/ڊlyYT]/8TMDw;FBfD:UAl~bI5,w#GrltwRQܻCFMu+9 ^.q& R΍2/8-$ɴ}6%2Cvl3Fw6-G%|"#gA)[Lufo!˭ v!,:GдJr`Fٶk?3SSTބ9@-h, +x7Q+?çMؠ,tˑZ"ח8:kuvd*߿1NNK-zE)+N(5~^:xfhɌaRuz~ jIun~X8& +sT/h+ßL(pzЅo?roA $d2tVZ~1K-؏lQ].(mZ<| q:}RVowl}L~ƌG s5<9W͉<5,C_l <^},Bc5zv]sj_ErxۆSޡqvNyF2ɳ侻Q{6>\Nǒڟ'1u]=DMӷhI8x,Sv.պtbkMD5\CtNO5˚z12JK{DSK* ȗkiw>L_ i\TXSY^԰}tI]]q;:gZ]g] +v[1荇Fq'E#h~Wd5y(枒NݰL=ܓNۅ y^w*I.*!Y&ա93Ѡ:I"[E)[ɳ4Y^Ѓxix)ӥɔe#8OoPaU`AEaQۉwTmc~_d3-pzzg*qoA<]޾pڭV0UT׆`g=pg Ey ֻLٻwxz3yH}"7{߳v/!kǤȩ&̣DZOzpc +ڑZx2G6Y]N> F7R(r]]Xj. Ǭ3>>SkageNm'ҋ`3 .A@ԯM&Qw61$bFi(pulWKљhU[鬳Z~F85m6)z~Ynbacq?Qm)"Zhت͢YpLm?ӫT}ϩ¥H@G)s qFg(U>#RJy,c (~*B)MQxvԳ6ɭu?\5 0AsG;Tx +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/TTPPSS+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4949 +/Length3 533 +/Length 5499 +>> +stream +xgXSM +*Z@z #!  E@4* Ҥ; +(sνw9w3晽^{p 1M 'ȂT!b (!1hu(! @@* 1QDRV]**ttpIT\X$ AqN!0( +d!8_aH=B  ÁH4P:h H/ϖ A|Ap>4o1CpMOJG>C`Az8 *octpPvD!@IHMn@PO1114465"8_ag{=XJTXTߦia82Ap(/ߩTU1>B !1 IIW)QIJIcW + ԓk9mey7 `5w [,4tƒHyU8Kߖ.< ִ\{6 yj!r@6xtXAƫ-o2V p}&zi,ddZe90t\fͮ^ڶƛj^\<Ǐ>"H|+$k.KrMے7QFF8KK)@TVNAMem2%}MqwuW!G0gWRO_ç'1O?Jq0r{XAl3 BerKg~V'N%Ӝ&*W +RVsҐC@m$o^2# T&NnmK,ebJoG"c߂U@IC;Y@"mE.>rkw\5A$~6x߸\/jo S8^^r)Σfr> }g㰷pTj?$?#a1='g9|RdyE7Kx8[0 +vvNVnU}i+Ptg_i`E1E+ED +`q׀nyqB$,3̼&WXV8:"%6$6Iȉ0Hq4ł8Uuݛb"bmi'#vul&6[:|R'U y3)iO/Ш[ {Yf߇mvB(WIye\әn "dGY/ YجJ/ _j\U +U(-5# +1k|+XtËi &>I>Y!ֽ'W 4l}W%M.Ung.eZj;!V{yFi9Ej4ʏ#?m{/j8,MXx8vBi~-G[6i=<=H5_8A#> DD%oq*0Mv)<dPm +<94yԢOfN5_͢HF[j۾p42H\u]ˢGch!>ċܵ ]kQL@pe}.yJa9lJ{,g;³/>1Q,ݏo_sSLۼd4>y/ڤC KbvKk "B^o9?ؚdJ/?fuJɹv |ՐH9X=Ӷmaن`GނDm]]YӤ)# +$ `Y -m6 RMbGK8#s +}8oTMxO_>p"b۸;Qx=gL߄(mm=voڒqVR,6~lsWcVd_t|PExu[0 v>rerft:Ŀ9%2\Kk<~]Ϳq=eW bA|kR0&15gC,?KZTHl4 +o8猛xk BRM+ј 9LG^}vҐ}ec&}qy]KR@e˥_ܦ5RdnxqfosmP'83&/Pn~O(kK]rRc16H҅)CM=R9p.p^S_ȐiZ$gH䃽aIʖ1yuC>żtv>)Ve~XFɗe_ 飩ċ|fbͪ19ѼjQ3v4uuXf MX8GO=R-=ƶG1Dyg/f 5AnPK25I4ue2dqZ\$w)ikJCr%jM/'Q^%?EOt"'^Z/WEbS/Y'j(Wf^Ix' + };[]/qPF16~ǽ:m̴\hBݺvgP?j!Γa +?;TMpp|V[zz%xT"^,&TsD {9FogqF 3Z?v7|#)]$vHr18m&Ȩ^% :{lkcҢZm4ht-}㞈1A!f*udmO~?b ̷K9^,*ˇ:"zw_5IK.b`.dwQAW?NgրIHt|!2=BSmU/:wҩuQ_%_AT 8TdZڋi)-$ku?{;$  ZHe.mJP *JҸ9N^ M,x UP…{z )Ʉd|Bwⶉ˯i=;o2 ZE3fG^~3o2[Qcw9/7JFnR +X)h*0qaY1}6@O1xhH~栟S|Z{ 6biTTT#aNpqhU&:tQ&pi<7a5!O3%^ER{NyC#9Kj;ŗ–Lr KlS",Z#n5qlX5ԴOy5~<*+iH +>z:q n7!rko,pOI3δ>@ &l"=&B.5W^iHf_*e +'$>xW%nҪ ެg2x-5KZySKQ,]`AwO +􋄴 B^cJJym^.%e\,NV'iϕ G\ ɱ7G=Կ2ߙ͞ ~>C~Dbe0a\X*l +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/DVERRS+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 5428 +/Length3 533 +/Length 5983 +>> +stream +xeT\ݖ! AAS V@E@p]N>ݣ?wwܽ5|;5bf璵EXCp/7P^SΘHE(WT +f< w@YR e!H  Ll0> +Ayq0P_܀z7b m6(5 + +Cuwgtd ym!v-ğ~?4` ׿+`Z`ֿP*.( *5N6(0 j# AnJPOe !pE3x 9XQCᨗ^.?AB=@G_)mP=Pۂw*997#.>?WH(* ?p;DU(Dڸ#8gxBl?Y)@,AA0k>/>̷O,wNnD҇&|%T[Ch]TΥ ܾӲ46vJI|%mKo +ҽfhf"יk<-M{U'!T?zv˙.M<(r5ís@,'ŕˀb/NXo +O,g$~yr~Cpΰ^o+>vD$J07퓍ݓXҷ,d\HUxr<<9Xwq T!{jo>ȍCLYi]\>Ei J +"e,νDs''NӃaSx<| YwTs5 +ZϹØ֍\B{tFæ Ń|w:i;(_h5ڋ:3 ڲEb!ι Y.*;oړϾ.R߳_I=ũ!~R*sG&'zL{]?QEat<7#GmכD]\Fb,92GrFJݱzN9eb;LJlsg?tk}3Y4L'D8FOC^?vgm(eށ9E%U8G~,.SNVh 1T^zICaPϼn޽VKCl@ ;aX(sD*!Lq%zaT&TE_;U'jiA/N8T'm<>g}9fjBslToD.uqߙZ[~aN9H9'qmC ^5KKU ;aޤ^j2&fT$>&'S޹L!m|mKݽ,%Nj]ݻNUEbܠG28TPp ttS3%-n:I§aK(6MO~(Z%I_ns\cU6TM$+Sr5VArL|vf/߭`&H`#iI|a&{+y+qX{pV-bxj:Li:s%K(q?=ײ~?c^߲5%kcF6WV<)xFA 3Q^iu6?STc +NzSͧ$$/vʥNxt]+8.f(A< 9i4g`~4 y(L"sO\8m\sݫ1ѥx7աzӨ~T0zKtVB׃tӤ-zEja4[j@yg5_)D~ggLeQ~(g}F:l^H~0)tq?Wz*"p1.9.l@W=}+FY% +2C4lO%3Y<6U^yg ԫ>h!̛Z̊`T (қuY)&5YtiR8`^(:ң2Dl@ !XQ%OZWrd*;_ )>{-lAl8"01 + |l?^[9&ۏ;ھJZGQK3mi'UeB]b}.?e5۲7|&!1]̀?Ҕ|8*4ڜn7DLP2Œ! PkHYkA}id0ZZZ[jI-@MPH%ki9|#c 4*a[ա]pT~Ntckfwu80(Y\'+K1AD\J}x⦔t-YM4;K'KE/y[C1@\wˠNCQr.gFc֦Ó,㤝΋杞;V>fjxOh^c4GyV 4EX'$Sj3 j&=QU岃s6|OM\|F6Xb-6֡Kt#RE?I%,.P'7:׳Mx9-5V-Q1$^ons|[TPR_B׋iRI~!]ߵI[kL!*v0Ntn/JrR&4]{b=8"Kx7яe] EmX}vJvmx]%#3xq +)g0Efߢ|,t:`WFulv>|<"/MfKrE</ȀK̼픭ݞdiy<_{sY׮Z;:$+GD(c$Sr|\EXX,hS_[VV i~fE=q#愇Fy W[4[.noZz2/bשqa :D~[lFzc5JJfܨKEl^\ Wknν2f{ذc).Ipy&wt]#rͭY:kK&'lVSL3ޔ)LÂOǃ$hǷl,jd$Y&~Z q5k4<_[dx'lUaτf UR)&w\N[$Be˫hq ˣ+=k)|c^Jfu.x(IZ}4e#PĻD֫3r߲¢{,,= WY o(P\֪N=^e4*eaE!_D[Uyi d*@}Mml)tB"N gKL9/xeo>5Xa$\ͶϜr&r"*&2Za}֥bKoܔ>N"wLJRM'-.է,2Lʡ2ʦ*KF6J4ۮ +HHQ^bN,4z66^U@b 3wŶu蠟rAi1uU`s\'xk*/ІHNs14^2kTtf9;uTspVEvG51_)2{}T'\_eJ;cIF繣>|nlRERb#WPlfh-Bhs0)Vt߉7|EWjVҴ:^>R^[4GłʻJ[oCm#rr|/Hn,g;=± ˜ zG}k1]  Rl}E̶.E_Zƛv;޺=^ސCm.AHp^-S>*UK彍ms5^ǘcB9x r!#?&XgNMgKIT9c +FMߝmq^M9}"@-|k$lHNVep'Qx5c|C$#zy*bɳ]8.~oJaJl("M*>7=7Ic/%q{b~D͙È}v,. XOzMyv;ա$ZtUByA[cCn-yI$)l`d'/*!<3_mf/{ɹbYT;r8+Boz7 C鴶 )<'WȾF#PT%*N^z9ӄI&7FW)ӝFCNjvf7~M$j@9gHL~f.IkDq"C[:%9*,c*' l`0p#n +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/JVJPAF+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 891 +/Length2 1834 +/Length3 534 +/Length 2476 +>> +stream +xRk@*Kꮪ}͓\:wjf_x+9!?{Y ^C{tΝ ~D׎]Դ疷J/zX(&ᝩ?rIm8RݝvlsmTL99+sKX}3Em#!23V1XZ/|a[CNV .JntIՔhƳYo_Px5$gچMw4"\VO[4|RqiLZ/uLn@PCHiO]e5ȟFN3(NU7iTKAu,,MePJj;0k&h*O슭 +zWvMfN[m:ʆLfliąZcv9;O=y#`ZbHPm 'oyQ`W'hϹ=ro=RgzXhZc)-_o ͸F֞C]~UJ8r_(g:`6/4+P是u.ƧcuK{]Wu mw'}#QXaW + Ӓ0яZq ;D/]6/0.|"tbǴ/Szd|whx0?#ӽG_/LҮ??mJc5BdE, af5p*I߆koNe >% ɾɺ8j]Tem>\)ʹ۰JeO4 Jݙ,&U{4'lv!'6^DѹzTƌ5fuC9R1^pqϤ}ӹWćUѵ`g75!=%o ߩONz]8-T{]HVaKJqY靷Մg3]=e-\uUّoZƖPWKF-_Ja5uR}(-q.t4~)PjTKpX&o(on 4.%{({{gn\FRc4!RRjֲ-Y*+_!>,9a^=9&Wzɤ&k `Kr/ W;bBKaS_qb_aeO^cJhwn][7Up6<~h!L?!µ9sǓcZ)y͝h4ҢAQgi(2dۍzWv[T^+/Wُ|(X*FWUn>z+n N;]W}tVwi-M*'@+ B P  $L: ! +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/AKAVIY+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3296 +/Length3 533 +/Length 3852 +>> +stream +xy~yw~:ELͥ5N]I#m##}8 8Y` QQm"Izt$ +++>8@V)! +J (I&b]\I.%@!bQH`$b'!($0@a1$24q8-ހCŠ (q@2`=?e_-_ E*p=828d=NÜu}p8c$_>ő{0D!n gAc}ꓐ8,Jpy(LO뭋ǠM$+yc~$'!ii]Ϯ)K Y=1_5ɔX'ƓՍv@c .9 I@#JK?PZNU8m0,_F_P]TKE}8jgɐ0 +&O(V֚c237#|sz *dkaOȆh"̜9º{pPFQ[hv)=4>UZl 庘$܇ɵ)gB`KE͔)LIqʩʘ-uϺUBƧ8 ?W=œ3|x{ۊdUYh#o{lx9*+qWeдgu2k'q֬KuWK\C m7\LWpj63Bھw8;TwbV{eZڥL7 Ɗ-4q#;p/[8Ȩs*ZqBoՕ.Eύ%ım +s'NJWw539X9U*fV1 + P]fх(*@߽,G} TK*H*65΀ݙ.5wDm|w-贚-vmUFl[r5~^RMaf$z=e]=W CvUc&0#3$Zioʃ:^YƝKъx<9G9lqx+ՑB=,cc +뱚jX Fg[~;3*g,[ mbxIP4/ѧ_lpq-u!-%+:{apBoL4Jb~σڔݾ!0ZRju\֕Ubu\:4h?I nVe{m_F9: Vme@'D,7ڕbl$˜#ϯ_9btgq.U^ERLWEd] +^?mCWlLݖ9 <1<|or@emF4Dk}( &z2L&V_ppg<^){_Uo}w畕Öp{fǥ }K9;k!6AbE4vQ-x[9,˟LM]֍3+u9T5̪lޗY y_]dg꾷8J kP*^ns,tZ&t6y bnѭOfbU{vO&99{Do:5fa3qTV=Ln,<"c҇PO[yҖ%^7m6Gf5BGGUym:oc黡Χ]F3]ͷ< ߚ~9ڦd4v"JJb›\gϐ2{A EMT#{-|0ÒĖ̞0&]Q/D&ht: o/-kȮ|()1~$MByOvy#oԾl1(K/6a7twvsy\;#io{v3Xvj^Ҩ6p:Z֒Tvʄ _9;K=.y.,f3#@V, OɻY՜":|{}ZlB)6+=15^O^aqŶ9*Yud$ZjsI3ঀ*PʓRf3;Ԓ+/.yP*BKX\ֱw;P?ab[sk:q$:d"ȝddlvMFCPȺFc ccF1u ƥ_b +f; OMڨoZ__Ds,_Vi"q+ > +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 2284 +/Length3 533 +/Length 2827 +>> +stream +xy<X +2 10LR{2 8cF$r:XfY.ha(RcWu=۹<AM 4_ВFeh#H `٠%B AQxFF- 4F_o@9-8N + 2Ms/.4`J$?<D'N4?) Jp   |ʆOd3V(H4j[@=mk?p?7\߇[2d{P ыG[q-6O6k.r: NNch~xL,he;>O 1{Eeq\,g-^6rB> ºzNVko=@H\F>̷KE/A6p)ұAɨ&,o,^h˛"v%`L;( \>[2cumd[>jrZ/~jԸ뢲cX<=Q3'\ TJ{qۏ'%j&wief;6'jEw^A| pTXEe_-E׺^Mf=:;%-RtY}yҏ<Tcz7+ +ȱ.qd6yQ;+lq6&fꡖP + F'E^" [|wBë<. _Q̾!Il"ǷE4Ӊ]|bkjT7yov/'s{nIܞ0m9/I9#HLu&+yȚW=P- $3<) f{,- {E*^dRx aٴij uWeʕ$H$=W^O|7iID^Kdow#be9Ƀ$9ld9 $yX:>C5e~\Pu!nWPuxXw.R uRCw0 'Tmv~`o +_QLn.D9OKKZ+?̨IR{!W|RDfB(IWE~dOg(xzw2ŵ +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/SBDKQW+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?;0\ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\^w +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/CTTIMM+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 43 0 R +/Flags 4 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1525 +/Length3 533 +/Length 2057 +>> +stream +x{ü0CDB B8h'$gN  iC_0/ƀrXBxWt5X?coY,W)^:? a s١и|k` g: @¤rX0@BH$ 3Y|s@BHL~>/D8a著̟kkpxH$GDQ~Z[9L.pwȁ@{Lfd̜$@DssL"Dq $@B `%kHÑ0}: 7%]tt]xiPaӄRCx,P]گnrohR:j֮V+N4-$`P +j$@gGG~YBaJFd?{MU^3WfY$.3uj[ ^ie#}4!=sƳPclJW|ےShX 摢FXEN&Z,s'v<b*DyF?_q=%;'K#1j׶<{e%*aۏoX2] 3rza$FeL;~oUTr<;+W@&w۳PZѝUϹ|J/a0h.|Kc6c{9YFH# WfHaչ+;*# Et-Gڮ*4\2̙7 +ۚiTJMU\U0Xv^ ù;uȣ|b"1-@oF L2ַ-i@cU3.ص';r7~"hv0mL}x0St_+yc+; fv}6wUŤl8Ȑ𩺆e M>ފ FJD{*E}E.W߮AJUooar+Bn~H‰1mS65}bw|ktDlQ]}Hck\^ʭyX8ʋQ% K,4nH\f"tGv3˩v +>ZP8Bt[g#wxɝK&&gfOX-3"-Ͽ# +۝(Qkpyd=WJrջݎ 6WĆǾf=6jקo-$'?ܻ[;~hCȗ^U?}Q LS+v %Gȉ1wUnz͖Ano1`bvo:FDG]7N0੏̖w(!J)}Q1>dǓeb2.=*eB㐑'3оybݨ nF{ɋ/qQCW$N3߄9͐NKjO+*o=Eh^wj\pb:7W%5*{|tH }*gہ+ntܛMwl ^JX[m|ҔĤNDca-nH+'nofR҅wLwURcL+9s/CoQ*ںASecܧZn)jk=sh@4(G:_\Z96>`OmvOŨKBJSe,3[$ bOb\ř=MɳmQzcn7<R+:E['E͜:512 + lRnc-]j/)/iջx횲k%, lFpA{ +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/CYJLNJ+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1286 +/Length3 533 +/Length 1826 +>> +stream +xiTSgDZ +(H#kB.1,bTh +{.$7! a񠢎`D#EPp-* "- H,(&Be|3~{tǑ!n +q >  Kt!EB +I$  VD  PH> +TÏ."@|AGW0Bt6e 0d6pp0_Cx a@ӏP( WP$` 4deGĘҸ`oV citAEsv.&+j +CHg(eaZ +"؇DADt^(E6eS ]QTɃŸD(3O_Vۋ2w!|蟍RQ(܈#83#]5 j<"a=`I vP2|._َ?LD6%5udaS;{5^i-'֝Ү77?16̈Kmcٚc-+V*ؖ*onx*xS˩@ WߩbϛdksG&NTei>Rۺ#/r_GȜEgdXmVăW)=lumdS]LU"3څs9_avz{F&&TCL%Vg^IhU}!k9x`yޙ\s3ӌ잸zP~kЙ:Gy7糞BgmE&*J/}]~æՙ/O}kyúwdѵAb>&As ̐Wu4,.0p{&2&42V[%SgN>7Bv]J^ugBM_n4Y`gm>i tL?myZW߀浥Ѓ((kGd·"><6aР[ڎX82 6(Xb;$&ON lufd_E͞3hԜMR{k7vH)X5B z<ݞt##Y8~3pLـ@9͜ F\Rn +:*'u +<:5+p)YDӁ@R[XxNe *M^w٥:ȋTїTkIK~9y8ٿ/-zҎ*@TfŶNCr1%#1k^hW?;>RM닙RYdroϣB;)B$DìQ̯. tri ɻ#(vǝʝc^LOmоe|tTG/b^AƧX;WkI )_lVSfĒuܤ }e;O]a|ݤA)֒wVPиu*sxyԌTPil%-uzeDr-?G ZV:bg$-cY5w]i;:*Eu:D K +ڃyKB9$Fʀ1|0`a:_!?9؋ +endstream +endobj +54 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/SNUSKE+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 53 0 R +/Flags 68 +>> +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3373 +/Length3 533 +/Length 3929 +>> +stream +xy~} xU KE+51+dC;aM˻SMk`\Vv4xu?AגǽVmr0N=pAg$D;z\ErbBWg ,)Prfvy`1I'^HP?sIlbZ%KLE%o3 7龟wdr ?/Y#ld.NS;hI`&W.n5T^WSG:TxoA +7[I3ْEhD!^TVQ=+(ګΚZ2y\0)u5 DzߨW>hj8GJ=E(E3/ɴi{`-.`-W-5ʦm1̵.й}10P$zCcjc1myR +>s7X.BաUzШѸ߬:To7.TD~La# eܜa̹cw8 SW4a`(),J[sS)x +/Uylk*o6vw +EKjӷ^6_V̷_y +jO+1t(oZak֎>S5BoJ~e ~L~8.gw:R<ʜ]Y6GN +DcV~֩-MFyGsͽ@=&.q*+o9m1.w;ofYװ]謌%>0\$i|;j_xdy(*oH@(dU$j>7;W#_;"]QRvv>* ~m3&={(` ˠ:T]1w(wk217Q4ng\jXa>|Z/U p {.qy8 ?0{Fa;qvYAd.nID*_j󢷵UŸE<\)[eE5iP&ǭoQNYͬ~VvcN.۰{s)JУ-yl&hxxw%WN_>N>QC?6CPx݂_zFxEMwT㎣iVсٌ؍G*el)CjTtkn35FG߽nY:Ѣ +M\hn1/Jݺ,5u[H m2T,/Vq ӫzJqѪڙ}ϻ6rqHvap$Qx+5Fz'+ f)̲8y fa_eQ'qY/MOsnP#7cOpv>:*Tzfxӻ_|OɌV;wtċ'<j ;~G$fի'+RIʆv>m:0[fUQ/Ksg_{FmYIė鴢Cԥ5vчV+3?!Sv< & +TCPkrBFC҅n-7*(6}^>)m`Junu^+\hu\9ymf"ks7_2)Sj%c(-{;_ _>? D/P +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QWISBQ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO {Ba12FH֌\Sd KȝHDBrۥLhRzjѽiuT04v[Ή+gL/ܓPIG,}c]pPJR0_1 ?(/KöTX&͏XVoŸ/I}u->PSјguۥ$le7){zP'N1ޮRF(*&k&<ɦoN{ϼW1SȎ<_v +r[ $'yĘK1^yުGO4׳/8|e%cGfS~f,5{?xģC*#>/Udݹ8a1>wRtR%Owj<喀B)SC!KQk,|f֪\uuJߦ_WscyVN*,RcW?:qGFE4?q;jiǻ7_I>GL{9vS +~6fKyb-2!@Y׃"i- m!վpzX W$9ɴ +۽.c35=׸ ɟWV55vhPi%n vA\g +.uIP'|LnljPHQmӯOǦ@Wl k^E9rcg*k!CFwpS=xkݗkuni4q%A/dKF;;4䌷3b+-Ĩz]7ńy~h]Z3a=g5/08 㵢 5HH\ `!sI#0fDh/9J3.*ե4 5L43Z|}] +WzT_$Df{y'?Uo-Nk&Sd]SֳfaDk`ndʱ-!K"2nbD~Rj2Wco5iuY]MIY\O ^vc-^$ǁ螢=Y՚N@b{,pۓ.S-IQSml"kd,ڽv#PRihWc~Bqӗ^(U0j 8! Tػm0e;;ݕ$w'N5gaLҼg5MyDZyN^͚*6ۺ"鉸n&㡐O3c_ahsX7LLx>V{LM[wLJn-Э#.YO+;|Jiݛ W? ܼ~Py!?b +l E  +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/CWRGGI+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 61 0 R +/Flags 4 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10110 +/Length3 533 +/Length 10668 +>> +stream +xUTᶥ67݂ltcw q$Kp sνG/=GWCfYPj[:dX8X9J@Vvv $df(ersŝ!@Ώ@vnο@trZ۸%; f@%37_ 30P +@< +T  KVhik4Y:%hW?G _. ?I9-@KMz4`7qaϰ +'gw7d 8T/8%ÿO`_-[W[/ gh '|MUl4 h7`¿jҎN@ 73GK35;/ 7cg_eZ. 9) ;;;?o8 DBώoRIK2\" +^kM򫥻]i<`7^Wyc :/[nGbυ6=w eS VTvhW!}n]rlNezj8W:ߕDԸ|%1iMxFAXlfxSfgTuƚ%!91zv ]dX&>"#BdLpMnFIAl+%K91 E^4l:6):1۾{*<ó}=vKWLf IrGo ptI-85diz"30<ӱ$ +5pS RF*d"Ls^TAB5㼉b ݖ*h}g3gϏ<ͧc*&4[_ d"g+8sZZd<%KHX}g'/3#+)zcJ$do%_.a=]:T; $[ L+>955y0+WS-΃ +|_<^a?yw 0cft#=G+6"DFx<Q ]̂"d0Ёer kNKe2WS1}U&V笒dC;W|in'C¶if\ݑE}ΗY\ +^|\Y܆oiۘa")w-ِ?|v* ɵFUMZ 3aڙGVni]` NPe,x XISb͵y䄬%Ê6J%$M>Zf3o北[-e'HŎ O.>*pW٧n'u^=ڽ}oS!Jg = ~hfd\I\Go/sV5# }vZ~?Z HNܺ_ANQ*%o2w6ǥ`|j ShwWnƆMw:9b7xC#\9En%a'T"I|H }3u;]B +079j&jICiY#<S`%T4Gaa-m!n@{[IR_HƱzkn3\5WJȕP6؎{;|v' #.I[~$+wpC&֙SHՒF󊯲<\ Hz'{Jf7M}o +GˇźG;d +>WBkedbkNw"o\^e5({}*1oQ_G\4CKY10-lƚ~e4l0,hp*js-v=J<2XvF)hQU1/D$~ɑ`uFĞ \BcqԐLɲ|tl$*F?WK3&_GpQ1ׯuLU;#[zy>[y#CE2[x`+n8\q-SszzU1qSlqY:0,/U s9svy2_K)7-/ +8$3X=D/{]y׺7H%'dtP@UPKk~z/2X BȰR,rR&6'O]_MɼԸ70dݎKCLx[E#y|5 ۢչWSwF[S>C KR7$u=Eմl5.A[Nc;[%(g8: >:A9'-3)?#xߟm Ox_1T^Q֞}/pJKQym)bH%fo=a盅3 =il`GPR݆ ۠5wM?DK*}(^ E\T>6hqpӷO-xi&ϓCh?(*W摇z=CMlV DDtb[ 41p)Dn<:ΟؔRC9ahLq>_ rFW ϏƳOeXBB0KɽM܈~-زU[T7H~#%F^B IJz̲2zxɋ%(c~;uVc$~[ou!@[Sɡ(L[uTe/joC^:;Bϥ9_ObESe|ˬsiTyv*!j'xi>' ~tM1>wKD9e=M-'vؘs|U|x: o,Ѩ[23Umߩ7 ir ̲ &QQ@zz 2ۻdKc>3Du{?̩Ho m`#Txc~ ='kB~>-UZMwaOfD@SH_s*/>L} BuR'xo]y[bMmP^q"gȟJluNmBHϡbe <=уk,{VV "4?uA3]GBe;~I ~|!:?nl9i<@K4c㭓Ž\.95BEOO= lZ_L/EQqwbOb>˜ڌimEe)v&#>-Ɨq1msDY !XtLfK^ !#@N{v'?!8/C.ְ98R)>HI0.Lr)!8ZL Jl~[7kS"3!bntnqDXL.;i'v{Ϭ|ЀRDI'ǞtJtrk9fu|0GD!AJm@@D0ǜWY' }8*O}j K:XYEt}y'Xy|I}k-T7ԲN4XZHyT)::JthF nGV szQ>g)t({t?/IT,YH2"ؒNu f땭u6F}&iZqk&>&|h|C!9v&c9'#U{,sq[!֧G:D<rhu G*X*G89lƺ][zOiF E?Ͷ |VW./a&O?z7-OYԟ!kCǵ5oq(t}kQn}Aj_W`Ħ-(yBˑ~SyNkSozvh7D@pӿs"SglP?{78ctj`(^urzd-a4+cN.쩇ާ5l7Moσ(/X3Ɵ5˞y4@MNXe}Z.@}8dL~mZMj%aaiOa6|5*Wϩ7HkHC'EkKx@>+*7ޗ_#{;&dx:+5*ʧ'х\E~4ann4xJ`͜dñLLA<= i v T'Z,)ӜL}čbaA%vHXycqb O'psv8atm2snK^M08"zwPucO-+y5ҴeFܭb+]{^ tOBJM) ػ>c=ν95ʨ3j}UDŽYBC^p[c:G>cm.՚џ/ӣ#g7rTw N<*87:y~O@Y_ąD8OתL^I>`'av{UZy{8h<{b9G KPs!2K2*{8}q`} ]Ξ\Ӂܪ"ߛ^F$epxh%(sƝ +P.u\sj'6mGIXJF2DŮc iOkÔ5ՖQk])`3a9S]cR;8Ol}z|ixld{˾6'4l ] 8ؒTLkf |I6Y7 +Ih;)Sؖۧ* 8?e #0 Ui-)VcKdȴLdWIT2BjW7#/]#K\D%R)@!\:5@fn[!4F6/N!gt4kUCEeL^ЦYʥx v,;s7Dæ`M⹄k*4nʞ0j:i16jB.)O+HJ+"ηTK_F8k;/w9V-̨hKǤm+ʹ8tLS Mu!|Eu[] +D* ig KY:hN8߾TF Fо.Ȟ ;oȶY,5%_Z5)k0ME8懑*{Dd4N` !'Yjen +װOXvot7uvs0e3%ݵ7#j6>;4oiCY#w  n^rF̅Nn-lC*TkZVB8FrLߑ-剖`TOh 3&%UA`ݏR^#DgH*Qq#P8 ہE/v>ny*1 M +d45b&G1v0 +]7q(G X?l_/sD+|>`vډVs72v +~xs[阑yEŭv"I-W?:a^UWƩU'?'2Ƴ9Nͼi;S +WPW/Э.Zh-M딒[ɣ}]j= 6PqmEVͪ"&rJ)h5ŭG7p;ywc\Vvk`E+orcwu,pf4W)XhXlVXS\v7Q٧I  ѐ%hi6?\Y:^7}_BCNƀ/قG_s ?5obW,_-~eao"}vǼ 5O&C~naEK)E5ix[aIxIoժiq*T_3MnMUN;<ݷ;z%< G^f8V)d~uĤCō|b\!UhsցMlw?zߛ==xPjoB ~3p+ +=["yG)=4c#'!z+y~:DC}s]qln3*$R|kAϑP;AyQM-~ o's5ox m D9L4Y +=V fguqSc.L<ڏVpo4ݞ{4>h>,<*q*=|)jΣvЭe+oreB!ܔ 䝞0H ;OZ*ϝ NwF/rfk2x5N-1qCSK}f[/t5woJ.2LWT@s] ,oi>}nbPI+^t3Ł(PԺ/bFLDVl;c> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 49 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +51 0 obj +<< +/Type/Page +/Resources 52 0 R +/Contents[17 0 R 4 0 R 64 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 51 0 R] +/Parent 153 0 R +>> +endobj +66 0 obj +<< +/Type/Page +/Resources 67 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +155 0 obj +<< +/Type/Pages +/Count 2 +/Kids[70 0 R 74 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 6 +/Kids[5 0 R 154 0 R 66 0 R 155 0 R] +/Parent 3 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +157 0 obj +<< +/Type/Pages +/Count 2 +/Kids[82 0 R 86 0 R] +/Parent 156 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +158 0 obj +<< +/Type/Pages +/Count 2 +/Kids[94 0 R 98 0 R] +/Parent 156 0 R +>> +endobj +156 0 obj +<< +/Type/Pages +/Count 6 +/Kids[78 0 R 157 0 R 90 0 R 158 0 R] +/Parent 3 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 160 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 160 0 R +>> +endobj +160 0 obj +<< +/Type/Pages +/Count 2 +/Kids[106 0 R 110 0 R] +/Parent 159 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +161 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 159 0 R +>> +endobj +159 0 obj +<< +/Type/Pages +/Count 6 +/Kids[102 0 R 160 0 R 114 0 R 161 0 R] +/Parent 3 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +163 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 162 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 164 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 151 0 R 19 0 R] +/Parent 164 0 R +>> +endobj +164 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 162 0 R +>> +endobj +162 0 obj +<< +/Type/Pages +/Count 6 +/Kids[126 0 R 163 0 R 138 0 R 164 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 24 +/Kids[153 0 R 156 0 R 159 0 R 162 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +165 0 obj +<< +>> +endobj +166 0 obj +null +endobj +167 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 165 0 R +/Threads 166 0 R +/Names 167 0 R +>> +endobj +xref +0 168 +0000000000 65535 f +0000115874 00000 n +0000119987 00000 n +0000119632 00000 n +0000119837 00000 n +0000116038 00000 n +0000004049 00000 n +0000000009 00000 n +0000044194 00000 n +0000044010 00000 n +0000000913 00000 n +0000049030 00000 n +0000048844 00000 n +0000001906 00000 n +0000054269 00000 n +0000054081 00000 n +0000002823 00000 n +0000119737 00000 n +0000003740 00000 n +0000119787 00000 n +0000003994 00000 n +0000116141 00000 n +0000015755 00000 n +0000064217 00000 n +0000064028 00000 n +0000004110 00000 n +0000070020 00000 n +0000069830 00000 n +0000005056 00000 n +0000076306 00000 n +0000076117 00000 n +0000005992 00000 n +0000006968 00000 n +0000079090 00000 n +0000078896 00000 n +0000007922 00000 n +0000083247 00000 n +0000083056 00000 n +0000008868 00000 n +0000009862 00000 n +0000086382 00000 n +0000086188 00000 n +0000011478 00000 n +0000087790 00000 n +0000087604 00000 n +0000012487 00000 n +0000090156 00000 n +0000089961 00000 n +0000013452 00000 n +0000014404 00000 n +0000015632 00000 n +0000116246 00000 n +0000021442 00000 n +0000092290 00000 n +0000092096 00000 n +0000015817 00000 n +0000016788 00000 n +0000096528 00000 n +0000096333 00000 n +0000017695 00000 n +0000018677 00000 n +0000099185 00000 n +0000098999 00000 n +0000019654 00000 n +0000020399 00000 n +0000021306 00000 n +0000116432 00000 n +0000021968 00000 n +0000021504 00000 n +0000021923 00000 n +0000116537 00000 n +0000023075 00000 n +0000022030 00000 n +0000022916 00000 n +0000116642 00000 n +0000024244 00000 n +0000023137 00000 n +0000024085 00000 n +0000116922 00000 n +0000025364 00000 n +0000024306 00000 n +0000025205 00000 n +0000117027 00000 n +0000026711 00000 n +0000025426 00000 n +0000026575 00000 n +0000117132 00000 n +0000027424 00000 n +0000026773 00000 n +0000027379 00000 n +0000117318 00000 n +0000028192 00000 n +0000027486 00000 n +0000028147 00000 n +0000117423 00000 n +0000028552 00000 n +0000028254 00000 n +0000028507 00000 n +0000117528 00000 n +0000029664 00000 n +0000028614 00000 n +0000029527 00000 n +0000117810 00000 n +0000030351 00000 n +0000029727 00000 n +0000030305 00000 n +0000117918 00000 n +0000030620 00000 n +0000030415 00000 n +0000030574 00000 n +0000118026 00000 n +0000031726 00000 n +0000030684 00000 n +0000031577 00000 n +0000118217 00000 n +0000032902 00000 n +0000031790 00000 n +0000032742 00000 n +0000118325 00000 n +0000034029 00000 n +0000032966 00000 n +0000033869 00000 n +0000118433 00000 n +0000035285 00000 n +0000034093 00000 n +0000035136 00000 n +0000118721 00000 n +0000036060 00000 n +0000035349 00000 n +0000036014 00000 n +0000118829 00000 n +0000037572 00000 n +0000036124 00000 n +0000037412 00000 n +0000118937 00000 n +0000039173 00000 n +0000037636 00000 n +0000039013 00000 n +0000119128 00000 n +0000040874 00000 n +0000039237 00000 n +0000040714 00000 n +0000119236 00000 n +0000042561 00000 n +0000040938 00000 n +0000042401 00000 n +0000119344 00000 n +0000043946 00000 n +0000110164 00000 n +0000109969 00000 n +0000042625 00000 n +0000043548 00000 n +0000043888 00000 n +0000116828 00000 n +0000116351 00000 n +0000116747 00000 n +0000117715 00000 n +0000117237 00000 n +0000117634 00000 n +0000118624 00000 n +0000118134 00000 n +0000118541 00000 n +0000119535 00000 n +0000119045 00000 n +0000119452 00000 n +0000119919 00000 n +0000119942 00000 n +0000119964 00000 n +trailer +<< +/Size 168 +/Root 2 0 R +/Info 1 0 R +>> +startxref +120085 +%%EOF diff --git a/src/axiom-website/CATS/schaum17.input.pamphlet b/src/axiom-website/CATS/schaum17.input.pamphlet new file mode 100644 index 0000000..6939c30 --- /dev/null +++ b/src/axiom-website/CATS/schaum17.input.pamphlet @@ -0,0 +1,3077 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum17.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.339~~~~~$\displaystyle +\int{\sin ax ~dx}$} +$$\int{\sin ax}= +-\frac{\cos{ax}}{a} +$$ +<<*>>= +)spool schaum17.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sin(a*x),x) +--R +--R +--R cos(a x) +--R (1) - -------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=-cos(a*x)/a +--R +--R cos(a x) +--R (2) - -------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:339 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.340~~~~~$\displaystyle +\int{x\sin{ax}~dx}$} +$$\int{x\sin{ax}}= +\frac{\sin{ax}}{a^2}-\frac{x\cos{ax}}{a} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*sin(a*x),x) +--R +--R +--R sin(a x) - a x cos(a x) +--R (1) ----------------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=sin(a*x)/a^2-(x*cos(a*x))/a +--R +--R sin(a x) - a x cos(a x) +--R (2) ----------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:340 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.341~~~~~$\displaystyle +\int{x^2\sin{ax}~dx}$} +$$\int{x^2\sin{ax}}= +\frac{2x}{a^2}\sin{ax}+\left(\frac{2}{a^3}-\frac{x^2}{a}\right)\cos{ax} +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2*sin(a*x),x) +--R +--R +--R 2 2 +--R 2a x sin(a x) + (- a x + 2)cos(a x) +--R (1) ------------------------------------ +--R 3 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=(2*x)/a^2*sin(a*x)+(2/a^3-x^2/a)*cos(a*x) +--R +--R 2 2 +--R 2a x sin(a x) + (- a x + 2)cos(a x) +--R (2) ------------------------------------ +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 9 14:341 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.342~~~~~$\displaystyle +\int{x^3\sin{ax}~dx}$} +$$\int{x^3\sin{ax}}= +\left(\frac{3x^2}{a^2}-\frac{6}{a^4}\right)\sin{ax} ++\left(\frac{6x}{a^3}-\frac{x^3}{a}\right)\cos{ax} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(x^3*sin(a*x),x) +--R +--R +--R 2 2 3 3 +--R (3a x - 6)sin(a x) + (- a x + 6a x)cos(a x) +--R (1) --------------------------------------------- +--R 4 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=((3*x^2)/a^2-6/a^4)*sin(a*x)+(6*x/a^3-x^3/a)*cos(a*x) +--R +--R 2 2 3 3 +--R (3a x - 6)sin(a x) + (- a x + 6a x)cos(a x) +--R (2) --------------------------------------------- +--R 4 +--R a +--R Type: Expression Integer +--E + +--S 12 14:342 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.343~~~~~$\displaystyle +\int{\frac{\sin{ax}}{x}}~dx$} +$$\int{\frac{\sin{ax}}{x}}= +ax-\frac{(ax)^3}{3\cdot 3!}+\frac{(ax)^5}{5\cdot 5!}-\cdots +$$ +<<*>>= +)clear all + +--S 13 14:343 Schaums and Axiom agree by definition +aa:=integrate(sin(x)/x,x) +--R +--R +--R (1) Si(x) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.344~~~~~$\displaystyle +\int{\frac{\sin{ax}}{x^2}}~dx$} +$$\int{\frac{\sin{ax}}{x^2}}= +-\frac{\sin{ax}}{x}+a\int{\frac{\cos{ax}}{x}} +$$ +<<*>>= +)clear all + +--S 14 14:344 Axiom cannot compute this integral +aa:=integrate(sin(a*x)/x^2,x) +--R +--R +--R x +--I ++ sin(%I a) +--I (1) | --------- d%I +--R ++ 2 +--I %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.345~~~~~$\displaystyle +\int{\frac{dx}{\sin{ax}}}$} +$$\int{\frac{1}{\sin{ax}}}= +\frac{1}{a}\ln(\csc{ax}-\cot{ax})= +\frac{1}{a}\ln\tan\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(1/sin(a*x),x) +--R +--R +--R sin(a x) +--R log(------------) +--R cos(a x) + 1 +--R (1) ----------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb:=1/a*log(tan((a*x)/2)) +--R +--R a x +--R log(tan(---)) +--R 2 +--R (2) ------------- +--R a +--R Type: Expression Integer +--E + +--S 17 +cc:=aa-bb +--R +--R a x sin(a x) +--R - log(tan(---)) + log(------------) +--R 2 cos(a x) + 1 +--R (3) ----------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 18 14:345 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.346~~~~~$\displaystyle +\int{\frac{x~dx}{\sin{ax}}}$} +$$\int{\frac{x}{\sin{ax}}}= +\frac{1}{a^2}\left\{ +ax+\frac{(ax)^3}{18}+\frac{7(ax)^5}{1800}+\cdots+ +\frac{2(2^{2n-1}-1)B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 19 14:346 Axiom cannot compute this integral +aa:=integrate(x/sin(a*x),x) +--R +--R +--R x +--I ++ %I +--I (1) | --------- d%I +--I ++ sin(%I a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.347~~~~~$\displaystyle +\int{\sin^2{ax}}~dx$} +$$\int{\sin^2{ax}}= +\frac{x}{2}-\frac{\sin{2ax}}{4a} +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(sin(a*x)^2,x) +--R +--R +--R - cos(a x)sin(a x) + a x +--R (1) ------------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=x/2-sin(2*a*x)/(4*a) +--R +--R - sin(2a x) + 2a x +--R (2) ------------------ +--R 4a +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R sin(2a x) - 2cos(a x)sin(a x) +--R (3) ----------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 23 14:347 Schaums and Axiom agreee +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.348~~~~~$\displaystyle +\int{x\sin^2{ax}}~dx$} +$$\int{x\sin^2{ax}}= +\frac{x^2}{4}-\frac{x\sin{2ax}}{4a}-\frac{\cos{2ax}}{8a^2} +$$ +<<*>>= +)clear all + +--S 24 +aa:=integrate(x*sin(a*x)^2,x) +--R +--R +--R 2 2 2 +--R - 2a x cos(a x)sin(a x) - cos(a x) + a x +--R (1) ------------------------------------------ +--R 2 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 25 +bb:=x^2/4-(x*sin(2*a*x))/(4*a)-cos(2*a*x)/(8*a^2) +--R +--R 2 2 +--R - 2a x sin(2a x) - cos(2a x) + 2a x +--R (2) ------------------------------------ +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 26 +cc:=aa-bb +--R +--R 2 +--R 2a x sin(2a x) - 4a x cos(a x)sin(a x) + cos(2a x) - 2cos(a x) +--R (3) --------------------------------------------------------------- +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 27 14:348 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 1 +--R (4) - --- +--R 2 +--R 8a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.349~~~~~$\displaystyle +\int{\sin^3{ax}}~dx$} +$$\int{\sin^3{ax}}= +-\frac{\cos{ax}}{a}+\frac{\cos^3{ax}}{3a} +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(sin(a*x)^3,x) +--R +--R +--R 3 +--R cos(a x) - 3cos(a x) +--R (1) --------------------- +--R 3a +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=-cos(a*x)/a+cos(a*x)^3/(3*a) +--R +--R 3 +--R cos(a x) - 3cos(a x) +--R (2) --------------------- +--R 3a +--R Type: Expression Integer +--E + +--S 30 14:349 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.350~~~~~$\displaystyle +\int{\sin^4{ax}}~dx$} +$$\int{\sin^4{ax}}= +\frac{3x}{8}-\frac{\sin{2ax}}{4a}+\frac{\sin{4ax}}{32a} +$$ +<<*>>= +)clear all + +--S 31 +aa:=integrate(sin(a*x)^4,x) +--R +--R +--R 3 +--R (2cos(a x) - 5cos(a x))sin(a x) + 3a x +--R (1) --------------------------------------- +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 32 +bb:=(3*x)/8-sin(2*a*x)/(4*a)+sin(4*a*x)/(32*a) +--R +--R sin(4a x) - 8sin(2a x) + 12a x +--R (2) ------------------------------ +--R 32a +--R Type: Expression Integer +--E + +--S 33 +cc:=aa-bb +--R +--R 3 +--R - sin(4a x) + 8sin(2a x) + (8cos(a x) - 20cos(a x))sin(a x) +--R (3) ------------------------------------------------------------ +--R 32a +--R Type: Expression Integer +--E + +--S 34 14:350 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.351~~~~~$\displaystyle +\int{\frac{dx}{\sin^2{ax}}}$} +$$\int{\frac{1}{\sin^2{ax}}}= +-\frac{1}{a}\cot{ax} +$$ +<<*>>= +)clear all + +--S 35 +aa:=integrate(1/sin(a*x)^2,x) +--R +--R +--R cos(a x) +--R (1) - ---------- +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 36 +bb:=-1/a*cot(a*x) +--R +--R cot(a x) +--R (2) - -------- +--R a +--R Type: Expression Integer +--E + +--S 37 +cc:=aa-bb +--R +--R cot(a x)sin(a x) - cos(a x) +--R (3) --------------------------- +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 38 14:351 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.352~~~~~$\displaystyle +\int{\frac{dx}{\sin^3{ax}}}$} +$$\int{\frac{1}{\sin^3{ax}}}= +-\frac{\cos{ax}}{2a\sin^2{ax}}+\frac{1}{2a}\ln\tan\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(1/sin(a*x)^3,x) +--R +--R +--R 2 sin(a x) +--R (cos(a x) - 1)log(------------) + cos(a x) +--R cos(a x) + 1 +--R (1) ------------------------------------------- +--R 2 +--R 2a cos(a x) - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=-cos(a*x)/(2*a*sin(a*x)^2)+1/(2*a)*log(tan((a*x)/2)) +--R +--R 2 a x +--R sin(a x) log(tan(---)) - cos(a x) +--R 2 +--R (2) --------------------------------- +--R 2 +--R 2a sin(a x) +--R Type: Expression Integer +--E + +--S 41 +cc:=aa-bb +--R +--R (3) +--R 2 2 a x +--R (- cos(a x) + 1)sin(a x) log(tan(---)) +--R 2 +--R + +--R 2 2 sin(a x) 2 3 +--R (cos(a x) - 1)sin(a x) log(------------) + cos(a x)sin(a x) + cos(a x) +--R cos(a x) + 1 +--R + +--R - cos(a x) +--R / +--R 2 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 42 +dd:=expandLog cc +--R +--R (4) +--R 2 2 a x +--R (- cos(a x) + 1)sin(a x) log(tan(---)) +--R 2 +--R + +--R 2 2 +--R (cos(a x) - 1)sin(a x) log(sin(a x)) +--R + +--R 2 2 2 +--R (- cos(a x) + 1)sin(a x) log(cos(a x) + 1) + cos(a x)sin(a x) +--R + +--R 3 +--R cos(a x) - cos(a x) +--R / +--R 2 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 43 14:352 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.353~~~~~$\displaystyle +\int{\sin{px}\sin{qx}}~dx$} +$$\int{\sin{px}\sin{qx}}= +\frac{\sin{(p-q)x}}{2(p-q)}-\frac{\sin{(p+q)x}}{2(p+q)} +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(sin(p*x)*sin(q*x),x) +--R +--R +--R p cos(p x)sin(q x) - q cos(q x)sin(p x) +--R (1) --------------------------------------- +--R 2 2 +--R q - p +--R Type: Union(Expression Integer,...) +--E + +--S 45 +bb:=sin((p-q)*x)/(2*(p-q))-sin((p+q)*x)/(2*(p+q)) +--R +--R (- q + p)sin((q + p)x) + (q + p)sin((q - p)x) +--R (2) --------------------------------------------- +--R 2 2 +--R 2q - 2p +--R Type: Expression Integer +--E + +--S 46 +cc:=aa-bb +--R +--R (3) +--R (q - p)sin((q + p)x) + 2p cos(p x)sin(q x) + (- q - p)sin((q - p)x) +--R + +--R - 2q cos(q x)sin(p x) +--R / +--R 2 2 +--R 2q - 2p +--R Type: Expression Integer +--E + +--S 47 14:353 Schams and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.354~~~~~$\displaystyle +\int{\frac{dx}{1-\sin{ax}}}$} +$$\int{\frac{1}{1-\sin{ax}}}= +\frac{1}{a}\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 48 +aa:=integrate(1/(1-sin(a*x)),x) +--R +--R +--R - 2cos(a x) - 2 +--R (1) --------------------------- +--R a sin(a x) - a cos(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 49 +bb:=1/a*tan(%pi/4+(a*x)/2) +--R +--R 2a x + %pi +--R tan(----------) +--R 4 +--R (2) --------------- +--R a +--R Type: Expression Integer +--E + +--S 50 +cc:=aa-bb +--R +--R 2a x + %pi +--R (- sin(a x) + cos(a x) + 1)tan(----------) - 2cos(a x) - 2 +--R 4 +--R (3) ---------------------------------------------------------- +--R a sin(a x) - a cos(a x) - a +--R Type: Expression Integer +--E + +--S 51 14:354 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 1 +--R (4) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.355~~~~~$\displaystyle +\int{\frac{x~dx}{1-\sin{ax}}}$} +$$\int{\frac{x}{1-\sin{ax}}}= +\frac{x}{a}\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right) ++\frac{2}{a^2}\ln~\sin\left(\frac{\pi}{4}-\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 52 +aa:=integrate(x/(1-sin(ax)),x) +--R +--R +--R 2 +--R x +--R (1) - ------------ +--R 2sin(ax) - 2 +--R Type: Union(Expression Integer,...) +--E + +--S 53 +bb:=x/a*tan(%pi/4+(a*x)/2)+2/a^2*log(sin(%pi/4-(a*x)/2)) +--R +--R 2a x - %pi 2a x + %pi +--R 2log(- sin(----------)) + a x tan(----------) +--R 4 4 +--R (2) --------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 54 14:355 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 2a x - %pi +--R (- 4sin(ax) + 4)log(- sin(----------)) +--R 4 +--R + +--R 2a x + %pi 2 2 +--R (- 2a x sin(ax) + 2a x)tan(----------) - a x +--R 4 +--R / +--R 2 2 +--R 2a sin(ax) - 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.356~~~~~$\displaystyle +\int{\frac{dx}{1+\sin{ax}}}$} +$$\int{\frac{1}{1+\sin{ax}}}= +-\frac{1}{a}\tan\left(\frac{\pi}{4}-\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 55 +aa:=integrate(1/(1+sin(ax)),x) +--R +--R +--R x +--R (1) ----------- +--R sin(ax) + 1 +--R Type: Union(Expression Integer,...) +--E + +--S 56 +bb:=-1/a*tan(%pi/4-(a*x)/2) +--R +--R 2a x - %pi +--R tan(----------) +--R 4 +--R (2) --------------- +--R a +--R Type: Expression Integer +--E + +--S 57 +cc:=aa-bb +--R +--R 2a x - %pi +--R (- sin(ax) - 1)tan(----------) + a x +--R 4 +--R (3) ------------------------------------ +--R a sin(ax) + a +--R Type: Expression Integer +--E + +--S 58 +tanrule:=rule(tan(a/b) == sin(a)/cos(b)) +--R +--R a sin(a) +--R (4) tan(-) == ------ +--R b cos(b) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 59 14:356 Axiom cannot simplify this expression +dd:=tanrule cc +--R +--R (- sin(ax) - 1)sin(2a x - %pi) + a x cos(4) +--R (5) ------------------------------------------- +--R a cos(4)sin(ax) + a cos(4) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.357~~~~~$\displaystyle +\int{\frac{x~dx}{1+\sin{ax}}}$} +$$\int{\frac{x}{1+\sin{ax}}}= +-\frac{x}{a}\tan\left(\frac{\pi}{4}-\frac{ax}{2}\right) ++\frac{2}{a^2}\ln~\sin\left(\frac{\pi}{4}+\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 60 +aa:=integrate(x/(1+sin(a*x)),x) +--R +--R +--R (1) +--R sin(a x) + cos(a x) + 1 +--R (2sin(a x) + 2cos(a x) + 2)log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2 +--R (- sin(a x) - cos(a x) - 1)log(------------) + a x sin(a x) +--R cos(a x) + 1 +--R + +--R - a x cos(a x) - a x +--R / +--R 2 2 2 +--R a sin(a x) + a cos(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 61 +bb:=-x/a*tan(%pi/4-(a*x)/2)+2/a^2*log(sin(%pi/4+(a*x)/2)) +--R +--R 2a x + %pi 2a x - %pi +--R 2log(sin(----------)) + a x tan(----------) +--R 4 4 +--R (2) ------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 62 14:257 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R sin(a x) + cos(a x) + 1 +--R (2sin(a x) + 2cos(a x) + 2)log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2a x + %pi +--R (- 2sin(a x) - 2cos(a x) - 2)log(sin(----------)) +--R 4 +--R + +--R 2 +--R (- sin(a x) - cos(a x) - 1)log(------------) +--R cos(a x) + 1 +--R + +--R 2a x - %pi +--R (- a x sin(a x) - a x cos(a x) - a x)tan(----------) + a x sin(a x) +--R 4 +--R + +--R - a x cos(a x) - a x +--R / +--R 2 2 2 +--R a sin(a x) + a cos(a x) + a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.358~~~~~$\displaystyle +\int{\frac{dx}{(1-\sin{ax})^2}}$} +$$\int{\frac{1}{(1-\sin{ax})^2}}= +\frac{1}{2a}\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right) ++\frac{1}{6a}\tan^3\left(\frac{\pi}{4}+\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 63 +aa:=integrate(1/(1-sin(a*x))^2,x) +--R +--R 2 +--R (3cos(a x) + 3)sin(a x) + cos(a x) - 4cos(a x) - 5 +--R (1) ------------------------------------------------------------ +--R 2 +--R (3a cos(a x) + 6a)sin(a x) + 3a cos(a x) - 3a cos(a x) - 6a +--R Type: Union(Expression Integer,...) +--E + +--S 64 +bb:=1/(2*a)*tan(%pi/4+(a*x)/2)+1/(6*a)*tan(%pi/4+(a*x)/2)^3 +--R +--R 2a x + %pi 3 2a x + %pi +--R tan(----------) + 3tan(----------) +--R 4 4 +--R (2) ----------------------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 65 +cc:=aa-bb +--R +--R (3) +--R 2 2a x + %pi 3 +--R ((- cos(a x) - 2)sin(a x) - cos(a x) + cos(a x) + 2)tan(----------) +--R 4 +--R + +--R 2 2a x + %pi +--R ((- 3cos(a x) - 6)sin(a x) - 3cos(a x) + 3cos(a x) + 6)tan(----------) +--R 4 +--R + +--R 2 +--R (6cos(a x) + 6)sin(a x) + 2cos(a x) - 8cos(a x) - 10 +--R / +--R 2 +--R (6a cos(a x) + 12a)sin(a x) + 6a cos(a x) - 6a cos(a x) - 12a +--R Type: Expression Integer +--E + +--S 66 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 67 +dd:=tanrule cc +--R +--R (5) +--R 2a x + %pi 3 +--R (- cos(a x) - 2)sin(----------) +--R 4 +--R + +--R 2a x + %pi 2 2a x + %pi 2 2a x + %pi +--R (- 3cos(----------) cos(a x) - 6cos(----------) )sin(----------) +--R 4 4 4 +--R + +--R 2a x + %pi 3 2a x + %pi 3 +--R 6cos(----------) cos(a x) + 6cos(----------) +--R 4 4 +--R * +--R sin(a x) +--R + +--R 2 2a x + %pi 3 +--R (- cos(a x) + cos(a x) + 2)sin(----------) +--R 4 +--R + +--R 2a x + %pi 2 2 2a x + %pi 2 +--R - 3cos(----------) cos(a x) + 3cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 2 +--R 6cos(----------) +--R 4 +--R * +--R 2a x + %pi +--R sin(----------) +--R 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 2a x + %pi 3 +--R 2cos(----------) cos(a x) - 8cos(----------) cos(a x) - 10cos(----------) +--R 4 4 4 +--R / +--R 2a x + %pi 3 2a x + %pi 3 +--R (6a cos(----------) cos(a x) + 12a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 +--R 6a cos(----------) cos(a x) - 6a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 +--R - 12a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 68 +sindiffrule2:=rule(sin((a-b)/4) == sin(a/4)*cos(b/4)-cos(a/4)*sin(b/4)) +--R +--R b - a a b b a +--I (6) - %K sin(-----) == - %K cos(-)sin(-) + %K cos(-)sin(-) +--R 4 4 4 4 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 69 +ee:=sindiffrule2 dd +--R +--R (7) +--R 2a x + %pi 3 +--R (- cos(a x) - 2)sin(----------) +--R 4 +--R + +--R 2a x + %pi 2 2a x + %pi 2 2a x + %pi +--R (- 3cos(----------) cos(a x) - 6cos(----------) )sin(----------) +--R 4 4 4 +--R + +--R 2a x + %pi 3 2a x + %pi 3 +--R 6cos(----------) cos(a x) + 6cos(----------) +--R 4 4 +--R * +--R sin(a x) +--R + +--R 2 2a x + %pi 3 +--R (- cos(a x) + cos(a x) + 2)sin(----------) +--R 4 +--R + +--R 2a x + %pi 2 2 2a x + %pi 2 +--R - 3cos(----------) cos(a x) + 3cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 2 +--R 6cos(----------) +--R 4 +--R * +--R 2a x + %pi +--R sin(----------) +--R 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 2a x + %pi 3 +--R 2cos(----------) cos(a x) - 8cos(----------) cos(a x) - 10cos(----------) +--R 4 4 4 +--R / +--R 2a x + %pi 3 2a x + %pi 3 +--R (6a cos(----------) cos(a x) + 12a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 +--R 6a cos(----------) cos(a x) - 6a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 +--R - 12a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 70 +sincuberule:=rule(sin(a)^3 == 3/4*sin(a)-1/4*sin(3*a)) +--R +--R 3 - sin(3a) + 3sin(a) +--R (8) sin(a) == ------------------- +--R 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 71 +ff:=sincuberule ee +--R +--R (9) +--R 2 6a x + 3%pi +--R ((cos(a x) + 2)sin(a x) + cos(a x) - cos(a x) - 2)sin(-----------) +--R 4 +--R + +--R 2a x + %pi 2 2a x + %pi 2 +--R ((- 12cos(----------) - 3)cos(a x) - 24cos(----------) - 6) +--R 4 4 +--R * +--R 2a x + %pi +--R sin(----------) +--R 4 +--R + +--R 2a x + %pi 3 2a x + %pi 3 +--R 24cos(----------) cos(a x) + 24cos(----------) +--R 4 4 +--R * +--R sin(a x) +--R + +--R 2a x + %pi 2 2 +--R (- 12cos(----------) - 3)cos(a x) +--R 4 +--R + +--R 2a x + %pi 2 2a x + %pi 2 +--R (12cos(----------) + 3)cos(a x) + 24cos(----------) + 6 +--R 4 4 +--R * +--R 2a x + %pi +--R sin(----------) +--R 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 +--R 8cos(----------) cos(a x) - 32cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 +--R - 40cos(----------) +--R 4 +--R / +--R 2a x + %pi 3 2a x + %pi 3 +--R (24a cos(----------) cos(a x) + 48a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 2 2a x + %pi 3 +--R 24a cos(----------) cos(a x) - 24a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x + %pi 3 +--R - 48a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 72 14:358 Schaums and Axiom differ by a constant +complexNormalize % +--R +--R 2 +--R (10) -- +--R 3a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.359~~~~~$\displaystyle +\int{\frac{dx}{(1+\sin{ax})^2}}$} +$$\int{\frac{1}{(1+\sin{ax})^2}}= +-\frac{1}{2a}\tan\left(\frac{\pi}{4}-\frac{ax}{2}\right) +-\frac{1}{6a}\tan^3\left(\frac{\pi}{4}-\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 73 +aa:=integrate(1/(1+sin(a*x))^2,x) +--R +--R 2 +--R (- 3cos(a x) - 3)sin(a x) + cos(a x) - 4cos(a x) - 5 +--R (1) ------------------------------------------------------------ +--R 2 +--R (3a cos(a x) + 6a)sin(a x) - 3a cos(a x) + 3a cos(a x) + 6a +--R Type: Union(Expression Integer,...) +--E + +--S 74 +bb:=-1/(2*a)*tan(%pi/4-(a*x)/2)-1/(6*a)*tan(%pi/4-(a*x)/2)^3 +--R +--R 2a x - %pi 3 2a x - %pi +--R tan(----------) + 3tan(----------) +--R 4 4 +--R (2) ----------------------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 75 +cc:=aa-bb +--R +--R (3) +--R 2 2a x - %pi 3 +--R ((- cos(a x) - 2)sin(a x) + cos(a x) - cos(a x) - 2)tan(----------) +--R 4 +--R + +--R 2 2a x - %pi +--R ((- 3cos(a x) - 6)sin(a x) + 3cos(a x) - 3cos(a x) - 6)tan(----------) +--R 4 +--R + +--R 2 +--R (- 6cos(a x) - 6)sin(a x) + 2cos(a x) - 8cos(a x) - 10 +--R / +--R 2 +--R (6a cos(a x) + 12a)sin(a x) - 6a cos(a x) + 6a cos(a x) + 12a +--R Type: Expression Integer +--E + +--S 76 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 77 +dd:=tanrule cc +--R +--R (5) +--R 2a x - %pi 3 +--R (- cos(a x) - 2)sin(----------) +--R 4 +--R + +--R 2a x - %pi 2 2a x - %pi 2 2a x - %pi +--R (- 3cos(----------) cos(a x) - 6cos(----------) )sin(----------) +--R 4 4 4 +--R + +--R 2a x - %pi 3 2a x - %pi 3 +--R - 6cos(----------) cos(a x) - 6cos(----------) +--R 4 4 +--R * +--R sin(a x) +--R + +--R 2 2a x - %pi 3 +--R (cos(a x) - cos(a x) - 2)sin(----------) +--R 4 +--R + +--R 2a x - %pi 2 2 2a x - %pi 2 +--R 3cos(----------) cos(a x) - 3cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x - %pi 2 +--R - 6cos(----------) +--R 4 +--R * +--R 2a x - %pi +--R sin(----------) +--R 4 +--R + +--R 2a x - %pi 3 2 2a x - %pi 3 2a x - %pi 3 +--R 2cos(----------) cos(a x) - 8cos(----------) cos(a x) - 10cos(----------) +--R 4 4 4 +--R / +--R 2a x - %pi 3 2a x - %pi 3 +--R (6a cos(----------) cos(a x) + 12a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 2 2a x - %pi 3 +--R - 6a cos(----------) cos(a x) + 6a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 +--R 12a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 78 +sindiffrule2:=rule(sin((a-b)/4) == sin(a/4)*cos(b/4)-cos(a/4)*sin(b/4)) +--R +--R +--I b - a a b b a +--I (6) - %U sin(-----) == - %U cos(-)sin(-) + %U cos(-)sin(-) +--I 4 4 4 4 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 79 +ee:=sindiffrule2 dd +--R +--R (7) +--R +-+ 2a x - %pi 2 +-+ 2a x - %pi 2 a x +--R (- 3\|2 cos(----------) cos(a x) - 6\|2 cos(----------) )sin(---) +--R 4 4 2 +--R + +--R 2a x - %pi 3 +--R (- 2cos(a x) - 4)sin(----------) +--R 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R (3\|2 cos(----------) cos(---) - 12cos(----------) )cos(a x) +--R 4 2 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R 6\|2 cos(----------) cos(---) - 12cos(----------) +--R 4 2 4 +--R * +--R sin(a x) +--R + +--R +-+ 2a x - %pi 2 +-+ 2a x - %pi 2 a x +--R (- 3\|2 cos(----------) cos(a x) - 6\|2 cos(----------) )sin(---) +--R 4 4 2 +--R + +--R 2 2a x - %pi 3 +--R (2cos(a x) - 2cos(a x) - 4)sin(----------) +--R 4 +--R + +--R 2a x - %pi 2 2 2a x - %pi 2a x - %pi 3 2 +--R 6cos(----------) cos(a x) sin(----------) + 4cos(----------) cos(a x) +--R 4 4 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R (3\|2 cos(----------) cos(---) - 16cos(----------) )cos(a x) +--R 4 2 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R 6\|2 cos(----------) cos(---) - 20cos(----------) +--R 4 2 4 +--R / +--R 2a x - %pi 3 2a x - %pi 3 +--R (12a cos(----------) cos(a x) + 24a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 2 2a x - %pi 3 +--R - 12a cos(----------) cos(a x) + 12a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 +--R 24a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 80 +sincuberule:=rule(sin(a)^3 == 3/4*sin(a)-1/4*sin(3*a)) +--R +--R 3 - sin(3a) + 3sin(a) +--R (8) sin(a) == ------------------- +--R 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 81 +ff:=sincuberule ee +--R +--R (9) +--R 2 6a x - 3%pi +--R ((cos(a x) + 2)sin(a x) - cos(a x) + cos(a x) + 2)sin(-----------) +--R 4 +--R + +--R +-+ 2a x - %pi 2 +-+ 2a x - %pi 2 a x +--R (- 6\|2 cos(----------) cos(a x) - 12\|2 cos(----------) )sin(---) +--R 4 4 2 +--R + +--R 2a x - %pi +--R (- 3cos(a x) - 6)sin(----------) +--R 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R (6\|2 cos(----------) cos(---) - 24cos(----------) )cos(a x) +--R 4 2 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R 12\|2 cos(----------) cos(---) - 24cos(----------) +--R 4 2 4 +--R * +--R sin(a x) +--R + +--R +-+ 2a x - %pi 2 +-+ 2a x - %pi 2 a x +--R (- 6\|2 cos(----------) cos(a x) - 12\|2 cos(----------) )sin(---) +--R 4 4 2 +--R + +--R 2a x - %pi 2 2 2a x - %pi +--R ((12cos(----------) + 3)cos(a x) - 3cos(a x) - 6)sin(----------) +--R 4 4 +--R + +--R 2a x - %pi 3 2 +--R 8cos(----------) cos(a x) +--R 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R (6\|2 cos(----------) cos(---) - 32cos(----------) )cos(a x) +--R 4 2 4 +--R + +--R +-+ 2a x - %pi 2 a x 2a x - %pi 3 +--R 12\|2 cos(----------) cos(---) - 40cos(----------) +--R 4 2 4 +--R / +--R 2a x - %pi 3 2a x - %pi 3 +--R (24a cos(----------) cos(a x) + 48a cos(----------) )sin(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 2 2a x - %pi 3 +--R - 24a cos(----------) cos(a x) + 24a cos(----------) cos(a x) +--R 4 4 +--R + +--R 2a x - %pi 3 +--R 48a cos(----------) +--R 4 +--R Type: Expression Integer +--E + +--S 82 14:359 Schaums and Axiom differ by a constant +complexNormalize % +--R +--R 2 +--R (10) - -- +--R 3a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.360~~~~~$\displaystyle +\int{\frac{dx}{p+q\sin{ax}}}$} +$$\int{\frac{1}{p+q\sin{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{2}{a\sqrt{p^2-q^q}} +\tan^{-1}\frac{p\tan{\frac{1}{2}ax}+q}{\sqrt{p^2-q^2}}\\ +\\ +\displaystyle +\frac{1}{a\sqrt{q^2-p^2}}\ln\left(\frac{p\tan{\frac{1}{2}ax}+q-\sqrt{q^2-p^2}} +{p\tan{\frac{1}{2}ax}+q+\sqrt{q^2-p^2}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate(1/(p+q*sin(a*x)),x) +--R +--R (1) +--R [ +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a\|q - p +--R , +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R - ------------------------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 84 +bb1:=2/(a*sqrt(p^2-q^2))*atan((p*tan(a*x/2)+q)/sqrt(p^2-q^2)) +--R +--R a x +--R p tan(---) + q +--R 2 +--R 2atan(--------------) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R (2) --------------------- +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 85 +bb2:=1/(a*sqrt(q^2-p^2))*log((p*tan((a*x)/2)+q-sqrt(q^2-p^2))/(p*tan((a*x)/2)+q+sqrt(q^2-p^2))) +--R +--R +-------+ +--R | 2 2 a x +--R - \|q - p + p tan(---) + q +--R 2 +--R log(-----------------------------) +--R +-------+ +--R | 2 2 a x +--R \|q - p + p tan(---) + q +--R 2 +--R (3) ---------------------------------- +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 86 +cc1:=aa.1-bb1 +--R +--R (4) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R a x +--R +-------+ p tan(---) + q +--R | 2 2 2 +--R - 2\|q - p atan(--------------) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 87 +cc2:=aa.2-bb1 +--R +--R (5) +--R +---------+ a x +--R | 2 2 p tan(---) + q +--R (p sin(a x) + q cos(a x) + q)\|- q + p 2 +--R - 2atan(-----------------------------------------) - 2atan(--------------) +--R 2 2 2 2 +---------+ +--R (q - p )cos(a x) + q - p | 2 2 +--R \|- q + p +--R -------------------------------------------------------------------------- +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 88 +cc3:=aa.1-bb2 +--R +--R (6) +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R | 2 2 a x +--R - \|q - p + p tan(---) + q +--R 2 +--R - log(-----------------------------) +--R +-------+ +--R | 2 2 a x +--R \|q - p + p tan(---) + q +--R 2 +--R / +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 89 +cc4:=aa.2-bb2 +--R +--R (7) +--R +-------+ +--R | 2 2 a x +--R +---------+ - \|q - p + p tan(---) + q +--R | 2 2 2 +--R - \|- q + p log(-----------------------------) +--R +-------+ +--R | 2 2 a x +--R \|q - p + p tan(---) + q +--R 2 +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R - 2\|q - p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 90 +dd2:=ratDenom cc2 +--R +--R (8) +--R +---------+ +--R a x | 2 2 +--R +---------+ (p tan(---) + q)\|- q + p +--R | 2 2 2 +--R - 2\|- q + p atan(----------------------------) +--R 2 2 +--R q - p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2\|- q + p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 91 +atanrule2:=rule(atan(x) == 1/2*%i*(log(1-%i*x)-log(1+%i*x))) +--R +--R 1 1 +--R (9) atan(x) == - - %i log(%i x + 1) + - %i log(- %i x + 1) +--R 2 2 +--RType: RewriteRule(Integer,Complex Fraction Integer,Expression Complex Fraction Integer) +--E + +--S 92 +ee2:=atanrule2 dd2 +--R +--R (10) +--R +---------+ +--R 1 | 2 2 2 2 +--R +---------+ (%i p tan(- a x) + %i q)\|- q + p + q - p +--R | 2 2 2 +--R %i\|- q + p log(----------------------------------------------) +--R 2 2 +--R q - p +--R + +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (%i p sin(a x) + %i q cos(a x) + %i q)\|- q + p +--R + +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (- %i p sin(a x) - %i q cos(a x) - %i q)\|- q + p +--R + +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +--R 1 | 2 2 2 2 +--R +---------+ (- %i p tan(- a x) - %i q)\|- q + p + q - p +--R | 2 2 2 +--R - %i\|- q + p log(------------------------------------------------) +--R 2 2 +--R q - p +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Complex Fraction Integer +--E + +--S 93 +ff2:=expandLog ee2 +--R +--R (11) +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R - %i\|- q + p log((p tan(- a x) + q)\|- q + p + %i q - %i p ) +--R 2 +--R + +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R %i\|- q + p log((p tan(- a x) + q)\|- q + p - %i q + %i p ) +--R 2 +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (%i q - %i p )cos(a x) + %i q - %i p +--R + +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (- %i q + %i p )cos(a x) - %i q + %i p +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Complex Fraction Integer +--E + +--S 94 +gg2:=numer(ff2)/denom(ff2) +--R +--R (12) +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R - %i\|- q + p log((p tan(- a x) + q)\|- q + p + %i q - %i p ) +--R 2 +--R + +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R %i\|- q + p log((p tan(- a x) + q)\|- q + p - %i q + %i p ) +--R 2 +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (%i q - %i p )cos(a x) + %i q - %i p +--R + +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (- %i q + %i p )cos(a x) - %i q + %i p +--R / +--R 2 2 +--R a q - a p +--RType: Fraction SparseMultivariatePolynomial(Complex Fraction Integer,Kernel Expression Complex Fraction Integer) +--E + +--S 95 +hh2:=gg2::Expression Complex Fraction Integer +--R +--R (13) +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R - %i\|- q + p log((p tan(- a x) + q)\|- q + p + %i q - %i p ) +--R 2 +--R + +--R +---------+ +---------+ +--R | 2 2 1 | 2 2 2 2 +--R %i\|- q + p log((p tan(- a x) + q)\|- q + p - %i q + %i p ) +--R 2 +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (%i q - %i p )cos(a x) + %i q - %i p +--R + +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R + +--R 2 2 2 2 +--R (- %i q + %i p )cos(a x) - %i q + %i p +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Complex Fraction Integer +--E + +--S 96 14:360 Schaums and Axiom agree +complexNormalize hh2 +--R +--R (14) 0 +--R Type: Expression Complex Fraction Integer +--E +@ + +\section{\cite{1}:14.361~~~~~$\displaystyle +\int{\frac{dx}{(p+q\sin{ax})^2}}$} +$$\int{\frac{1}{(p+q\sin{ax})^2}}= +\frac{q\cos{ax}}{a(p^2-q^2)(p+q\sin{ax})} ++\frac{p}{p^2-q^2}\int{\frac{1}{p+q\sin{ax}}} +$$ +<<*>>= +)clear all + +--S 97 +aa:=integrate(1/(p+q*sin(a*x))^2,x) +--R +--R +--R (1) +--R [ +--R 2 3 +--R (p q sin(a x) + p ) +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R 2 | 2 2 +--R (- q sin(a x) - p q cos(a x) - p q)\|q - p +--R / +--R +-------+ +--R 3 3 2 2 4 | 2 2 +--R ((a p q - a p q)sin(a x) + a p q - a p )\|q - p +--R , +--R +--R +---------+ +--R | 2 2 +--R 2 3 (p sin(a x) + q cos(a x) + q)\|- q + p +--R (2p q sin(a x) + 2p )atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +--R 2 | 2 2 +--R (- q sin(a x) - p q cos(a x) - p q)\|- q + p +--R / +--R +---------+ +--R 3 3 2 2 4 | 2 2 +--R ((a p q - a p q)sin(a x) + a p q - a p )\|- q + p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 98 +t1:=integrate(1/(p+q*sin(a*x)),x) +--R +--R (2) +--R [ +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a\|q - p +--R , +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R - ------------------------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 99 +bb1:=(q*cos(a*x))/(a*(p^2-q^2)*(p+q*sin(a*x)))+p/(p^2-q^2)*t1.1 +--R +--R (3) +--R 2 +--R (- p q sin(a x) - p ) +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R - q cos(a x)\|q - p +--R / +--R +-------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)sin(a x) + a p q - a p )\|q - p +--R Type: Expression Integer +--E + +--S 100 +bb2:=(q*cos(a*x))/(a*(p^2-q^2)*(p+q*sin(a*x)))+p/(p^2-q^2)*t1.2 +--R +--R (4) +--R +---------+ +--R | 2 2 +--R 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R (2p q sin(a x) + 2p )atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +--R | 2 2 +--R - q cos(a x)\|- q + p +--R / +--R +---------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)sin(a x) + a p q - a p )\|- q + p +--R Type: Expression Integer +--E + +--S 101 +cc1:=aa.1-bb1 +--R +--R (5) +--R 2 +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R 2 +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R - q\|q - p +--R / +--R +-------+ +--R 2 3 | 2 2 +--R (a p q - a p )\|q - p +--R Type: Expression Integer +--E + +--S 102 +cc2:=aa.2-bb1 +--R +--R (6) +--R +---------+ +--R 2 | 2 2 +--R p \|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R 2 | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2p \|q - p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R - q\|- q + p \|q - p +--R / +--R +---------+ +-------+ +--R 2 3 | 2 2 | 2 2 +--R (a p q - a p )\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 103 +cc3:=aa.1-bb2 +--R +--R (7) +--R +---------+ +--R 2 | 2 2 +--R p \|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R 2 | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R - 2p \|q - p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R + +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R - q\|- q + p \|q - p +--R / +--R +---------+ +-------+ +--R 2 3 | 2 2 | 2 2 +--R (a p q - a p )\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 104 14:361 Schaums and Axiom differ by a constant +cc4:=aa.2-bb2 +--R +--R q +--R (8) - ------------- +--R 2 3 +--R a p q - a p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.362~~~~~$\displaystyle +\int{\frac{dx}{p^2+q^2\sin^2{ax}}}$} +$$\int{\frac{1}{p^2+q^2\sin^2{ax}}}= +\frac{1}{ap\sqrt{p^2+q^2}}\tan^{-1}\frac{\sqrt{p^2+q^2}\tan{ax}}{p} +$$ +<<*>>= +)clear all + +--S 105 +aa:=integrate(1/(p^2+q^2*sin(a*x)^2),x) +--R +--R (1) +--R +-------+ +--R | 2 2 +--R p sin(a x)\|q + p +--R atan(-------------------------------) +--R 2 2 2 2 +--R (2q + 2p )cos(a x) + 2q + 2p +--R + +--R 2 2 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x) +--R atan(-----------------------------------------) +--R +-------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|q + p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 106 +bb:=1/(a*p*sqrt(p^2+q^2))*atan((sqrt(p^2+q^2)*tan(a*x))/p) +--R +--R +-------+ +--R | 2 2 +--R tan(a x)\|q + p +--R atan(------------------) +--R p +--R (2) ------------------------ +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Expression Integer +--E + +--S 107 +cc:=aa-bb +--R +--R (3) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R tan(a x)\|q + p p sin(a x)\|q + p +--R - atan(------------------) + atan(-------------------------------) +--R p 2 2 2 2 +--R (2q + 2p )cos(a x) + 2q + 2p +--R + +--R 2 2 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x) +--R atan(-----------------------------------------) +--R +-------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|q + p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Expression Integer +--E + +--S 108 +dd:=ratDenom cc +--R +--R (4) +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 tan(a x)\|q + p +--R - \|q + p atan(------------------) +--R p +--R + +--R +-------+ +--R +-------+ 2 2 2 2 | 2 2 +--R | 2 2 ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R \|q + p atan(--------------------------------------------------------) +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R + +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 p sin(a x)\|q + p +--R \|q + p atan(-------------------------------) +--R 2 2 2 2 +--R (2q + 2p )cos(a x) + 2q + 2p +--R / +--R 2 3 +--R a p q + a p +--R Type: Expression Integer +--E + +--S 109 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (5) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 110 +ee:=atanrule dd +--R +--R (6) +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R | 2 2 2 2 2 +--R - p sin(a x)\|q + p + (2%i q + 2%i p )cos(a x) + 2%i q +--R + +--R 2 +--R 2%i p +--R / +--R +-------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|q + p + (2%i q + 2%i p )cos(a x) + 2%i q +--R + +--R 2 +--R 2%i p +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((- 2q - p )cos(a x) - 2q - 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q + %i p +--R / +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q + %i p +--R + +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 - tan(a x)\|q + p + %i p +--R %i\|q + p log(---------------------------) +--R +-------+ +--R | 2 2 +--R tan(a x)\|q + p + %i p +--R / +--R 2 3 +--R 2a p q + 2a p +--R Type: Expression Complex Integer +--E + +--S 111 +ff:=expandLog ee +--R +--R (7) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - %i\|q + p log(tan(a x)\|q + p + %i p) +--R + +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R %i\|q + p log(tan(a x)\|q + p - %i p) +--R + +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 2 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) + %i p q +--R + +--R 3 +--R %i p +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q - %i p )cos(a x) + (- 2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q - %i p +--R + +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R +-------+ +--R | 2 2 2 2 2 2 +--R log(p sin(a x)\|q + p + (2%i q + 2%i p )cos(a x) + 2%i q + 2%i p ) +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|q + p + (- 2%i q - 2%i p )cos(a x) - 2%i q +--R + +--R 2 +--R - 2%i p +--R + +--R +-------+ +--R | 2 2 +--R - %i log(- 1)\|q + p +--R / +--R 2 3 +--R 2a p q + 2a p +--R Type: Expression Complex Integer +--E + +--S 112 +tanrule2:RewriteRule(INT,COMPLEX(INT),EXPR(COMPLEX(INT))):=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (8) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 113 +gg:=tanrule2 ff +--R +--R (9) +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 2 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) + %i p q +--R + +--R 3 +--R %i p +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q - %i p )cos(a x) + (- 2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q - %i p +--R + +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R +-------+ +--R | 2 2 2 2 2 2 +--R log(p sin(a x)\|q + p + (2%i q + 2%i p )cos(a x) + 2%i q + 2%i p ) +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|q + p + (- 2%i q - 2%i p )cos(a x) - 2%i q +--R + +--R 2 +--R - 2%i p +--R + +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|q + p + %i p cos(a x) +--R - %i\|q + p log(----------------------------------) +--R cos(a x) +--R + +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 sin(a x)\|q + p - %i p cos(a x) | 2 2 +--R %i\|q + p log(----------------------------------) - %i log(- 1)\|q + p +--R cos(a x) +--R / +--R 2 3 +--R 2a p q + 2a p +--R Type: Expression Complex Integer +--E + +--S 114 +hh:=expandLog gg +--R +--R (10) +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 2 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) + %i p q +--R + +--R 3 +--R %i p +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((2q + p )cos(a x) + 2q + 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q - %i p )cos(a x) + (- 2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q - %i p +--R + +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R +-------+ +--R | 2 2 2 2 2 2 +--R log(p sin(a x)\|q + p + (2%i q + 2%i p )cos(a x) + 2%i q + 2%i p ) +--R + +--R - +--R +-------+ +--R | 2 2 +--R %i\|q + p +--R * +--R log +--R +-------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|q + p + (- 2%i q - 2%i p )cos(a x) - 2%i q +--R + +--R 2 +--R - 2%i p +--R + +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - %i\|q + p log(sin(a x)\|q + p + %i p cos(a x)) +--R + +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R %i\|q + p log(sin(a x)\|q + p - %i p cos(a x)) - %i log(- 1)\|q + p +--R / +--R 2 3 +--R 2a p q + 2a p +--R Type: Expression Complex Integer +--E + +--S 115 14:362 Schaums and Axiom differ by a constant +ii:=complexNormalize hh +--R +--R +-------+ +--R | 2 2 +--R (%i log(%i) - %i log(- %i) - %i log(- 1))\|q + p +--R (11) --------------------------------------------------- +--R 2 3 +--R 2a p q + 2a p +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.363~~~~~$\displaystyle +\int{\frac{dx}{p^2-q^2\sin^2{ax}}}$} +$$\int{\frac{1}{p^2-q^2\sin^2{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{ap\sqrt{p^2-q^2}}\tan^{-1}\frac{\sqrt{p^2-q^2}\tan{ax}}{p}\\ +\\ +\displaystyle +\frac{1}{2ap\sqrt{q^2-p^2}}\ln\left(\frac{\sqrt{q^2-p^2}\tan{ax}+p} +{\sqrt{q^2-p^2}\tan{ax}-p}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 116 +aa:=integrate(1/(p^2-q^2*sin(a*x)^2),x) +--R +--R (1) +--R [ +--R log +--R +-------+ +--R 2 2 2 2 2 | 2 2 +--R ((- q + 2p )cos(a x) + q - p )\|q - p +--R + +--R 2 3 +--R (2p q - 2p )cos(a x)sin(a x) +--R / +--R 2 2 2 2 +--R q cos(a x) - q + p +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R , +--R +--R +---------+ +--R | 2 2 +--R p sin(a x)\|- q + p +--R - atan(-------------------------------) +--R 2 2 2 2 +--R (2q - 2p )cos(a x) + 2q - 2p +--R + +--R 2 2 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x) +--R - atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 117 +bb1:=1/(a*p*sqrt(p^2-q^2))*atan((sqrt(p^2-q^2)*tan(a*x))/p) +--R +--R +---------+ +--R | 2 2 +--R tan(a x)\|- q + p +--R atan(--------------------) +--R p +--R (2) -------------------------- +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R Type: Expression Integer +--E + +--S 118 +bb2:=1/(2*a*p*sqrt(q^2-p^2))*log((sqrt(q^2-p^2)*tan(a*x)+p)/(sqrt(q^2-p^2)*tan(a*x)-p)) +--R +--R +-------+ +--R | 2 2 +--R tan(a x)\|q - p + p +--R log(----------------------) +--R +-------+ +--R | 2 2 +--R tan(a x)\|q - p - p +--R (3) --------------------------- +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R Type: Expression Integer +--E + +--S 119 +cc1:=aa.1-bb1 +--R +--R (4) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 2 | 2 2 +--R ((- q + 2p )cos(a x) + q - p )\|q - p +--R + +--R 2 3 +--R (2p q - 2p )cos(a x)sin(a x) +--R / +--R 2 2 2 2 +--R q cos(a x) - q + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 tan(a x)\|- q + p +--R - 2\|q - p atan(--------------------) +--R p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 120 +cc2:=aa.2-bb1 +--R +--R (5) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R tan(a x)\|- q + p p sin(a x)\|- q + p +--R - atan(--------------------) - atan(-------------------------------) +--R p 2 2 2 2 +--R (2q - 2p )cos(a x) + 2q - 2p +--R + +--R 2 2 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x) +--R - atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R Type: Expression Integer +--E + +--S 121 +cc3:=aa.1-bb2 +--R +--R (6) +--R +-------+ +--R | 2 2 +--R tan(a x)\|q - p + p +--R - log(----------------------) +--R +-------+ +--R | 2 2 +--R tan(a x)\|q - p - p +--R + +--R log +--R +-------+ +--R 2 2 2 2 2 | 2 2 +--R ((- q + 2p )cos(a x) + q - p )\|q - p +--R + +--R 2 3 +--R (2p q - 2p )cos(a x)sin(a x) +--R / +--R 2 2 2 2 +--R q cos(a x) - q + p +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R Type: Expression Integer +--E + +--S 122 +cc4:=aa.2-bb2 +--R +--R (7) +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 tan(a x)\|q - p + p +--R - \|- q + p log(----------------------) +--R +-------+ +--R | 2 2 +--R tan(a x)\|q - p - p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 p sin(a x)\|- q + p +--R - 2\|q - p atan(-------------------------------) +--R 2 2 2 2 +--R (2q - 2p )cos(a x) + 2q - 2p +--R + +--R +-------+ 2 2 2 2 +--R | 2 2 ((2q - p )cos(a x) + 2q - 2p )sin(a x) +--R - 2\|q - p atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 123 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (8) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 124 +dd2:=tanrule cc2 +--R +--R (9) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R sin(a x)\|- q + p p sin(a x)\|- q + p +--R - atan(--------------------) - atan(-------------------------------) +--R p cos(a x) 2 2 2 2 +--R (2q - 2p )cos(a x) + 2q - 2p +--R + +--R 2 2 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x) +--R - atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R Type: Expression Integer +--E + +--S 125 +ee2:=ratDenom dd2 +--R +--R (10) +--R - +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R +---------+ +--R 2 2 2 2 | 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p +--R atan(--------------------------------------------------------) +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R \|- q + p atan(--------------------) +--R p cos(a x) +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 p sin(a x)\|- q + p +--R \|- q + p atan(-------------------------------) +--R 2 2 2 2 +--R (2q - 2p )cos(a x) + 2q - 2p +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Integer +--E + +--S 126 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (11) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 127 +ff2:=atanrule ee2 +--R +--R (12) +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 2 2 2 +--R - p sin(a x)\|- q + p + (2%i q - 2%i p )cos(a x) + 2%i q +--R + +--R 2 +--R - 2%i p +--R / +--R +---------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|- q + p + (2%i q - 2%i p )cos(a x) + 2%i q +--R + +--R 2 +--R - 2%i p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 - sin(a x)\|- q + p + %i p cos(a x) +--R - %i\|- q + p log(--------------------------------------) +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p + %i p cos(a x) +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R 2 2 2 2 | 2 2 +--R ((- 2q + p )cos(a x) - 2q + 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 +--R (%i p q - %i p )cos(a x) + (2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q - %i p +--R / +--R +---------+ +--R 2 2 2 2 | 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 +--R (%i p q - %i p )cos(a x) + (2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q - %i p +--R / +--R 2 3 +--R 2a p q - 2a p +--R Type: Expression Complex Integer +--E + +--S 128 +gg2:=expandLog ff2 +--R +--R (13) +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R 2 2 2 2 | 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 +--R (%i p q - %i p )cos(a x) + (2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q - %i p +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R 2 2 2 2 | 2 2 +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q + %i p )cos(a x) + (- 2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q + %i p +--R + +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R +---------+ +--R | 2 2 2 2 2 2 +--R log(p sin(a x)\|- q + p + (2%i q - 2%i p )cos(a x) + 2%i q - 2%i p ) +--R + +--R - +--R +---------+ +--R | 2 2 +--R %i\|- q + p +--R * +--R log +--R +---------+ +--R | 2 2 2 2 2 +--R p sin(a x)\|- q + p + (- 2%i q + 2%i p )cos(a x) - 2%i q +--R + +--R 2 +--R 2%i p +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R %i\|- q + p log(sin(a x)\|- q + p + %i p cos(a x)) +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - %i\|- q + p log(sin(a x)\|- q + p - %i p cos(a x)) +--R + +--R +---------+ +--R | 2 2 +--R - %i log(- 1)\|- q + p +--R / +--R 2 3 +--R 2a p q - 2a p +--R Type: Expression Complex Integer +--E + +--S 129 +rootrule4a:RewriteRule(INT,COMPLEX(INT),EXPR(COMPLEX(INT))):=rule(sqrt(p^2-q^2)==sqrt(p-q)*sqrt(q+p)) +--R +--R +---------+ +--R | 2 2 +-------+ +-----+ +--R (14) \|- q + p == \|- q + p \|q + p +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 130 +hh2:=rootrule4a gg2 +--R +--R (15) +--R - +--R +-------+ +-----+ +--R %i\|- q + p \|q + p +--R * +--R log +--R 2 2 2 2 +-------+ +-----+ +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p \|q + p +--R + +--R 2 3 2 2 3 +--R (%i p q - %i p )cos(a x) + (2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q - %i p +--R + +--R +-------+ +-----+ +--R %i\|- q + p \|q + p +--R * +--R log +--R 2 2 2 2 +-------+ +-----+ +--R ((2q - p )cos(a x) + 2q - 2p )sin(a x)\|- q + p \|q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q + %i p )cos(a x) + (- 2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q + %i p +--R + +--R +-------+ +-----+ +--R %i\|- q + p \|q + p +--R * +--R log +--R +-------+ +-----+ 2 2 2 +--R p sin(a x)\|- q + p \|q + p + (2%i q - 2%i p )cos(a x) + 2%i q +--R + +--R 2 +--R - 2%i p +--R + +--R - +--R +-------+ +-----+ +--R %i\|- q + p \|q + p +--R * +--R log +--R +-------+ +-----+ 2 2 +--R p sin(a x)\|- q + p \|q + p + (- 2%i q + 2%i p )cos(a x) +--R + +--R 2 2 +--R - 2%i q + 2%i p +--R + +--R +-------+ +-----+ +-------+ +-----+ +--R %i\|- q + p \|q + p log(sin(a x)\|- q + p \|q + p + %i p cos(a x)) +--R + +--R +-------+ +-----+ +-------+ +-----+ +--R - %i\|- q + p \|q + p log(sin(a x)\|- q + p \|q + p - %i p cos(a x)) +--R + +--R +-------+ +-----+ +--R - %i log(- 1)\|- q + p \|q + p +--R / +--R 2 3 +--R 2a p q - 2a p +--R Type: Expression Complex Integer +--E + +--S 131 14:363 Schaums and Axiom differ by a constant +ii2:=complexNormalize hh2 +--R +--R +-------+ +-----+ +--R (%i log(%i) - %i log(- %i) - %i log(- 1))\|- q + p \|q + p +--R (16) ----------------------------------------------------------- +--R 2 3 +--R 2a p q - 2a p +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.364~~~~~$\displaystyle +\int{x^m\sin{ax}}~dx$} +$$\int{x^m\sin{ax}}= +-\frac{x^m\cos{ax}}{a}+\frac{mx^{m-1}\sin{ax}}{a^2} +-\frac{m(m-1)}{a^2}\int{x^{m-2}\sin{ax}} +$$ +<<*>>= +)clear all + +--S 132 14:364 Axiom cannot compute this integral +aa:=integrate(x^m*sin(a*x),x) +--R +--R +--R x +--R ++ m +--I (1) | sin(%I a)%I d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.365~~~~~$\displaystyle +\int{\frac{\sin{ax}}{x^n}}~dx$} +$$\int{\frac{\sin{ax}}{x^n}}= +-\frac{\sin{ax}}{(n-1)x^{n-1}}+\frac{a}{n-1}\int{\frac{\cos{ax}}{x^{n-1}}} +$$ +<<*>>= +)clear all + +--S 133 14:365 Axiom cannot compute this integral +aa:=integrate(sin(a*x)/x^n,x) +--R +--R +--R x +--I ++ sin(%I a) +--I (1) | --------- d%I +--R ++ n +--I %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.366~~~~~$\displaystyle +\int{\sin^n{ax}}~dx$} +$$\int{\sin^n{ax}}= +-\frac{\sin^{n-1}{ax}\cos{ax}}{an}+\frac{n-1}{n}\int{\sin^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 134 14:366 Axiom cannot compute this integral +aa:=integrate(sin(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | sin(%I a) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.367~~~~~$\displaystyle +\int{\frac{1}{\sin^n{ax}}}~dx$} +$$\int{\frac{1}{\sin^n{ax}}}= +\frac{-\cos{ax}}{a(n-1)\sin^{n-1}{ax}} ++\frac{n-2}{n-1}\int{\frac{1}{\sin^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 135 14:367 Axiom cannot compute this integral +aa:=integrate(1/(sin(a*x))^n,x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------- d%I +--R ++ n +--I sin(%I a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.368~~~~~$\displaystyle +\int{\frac{x~dx}{sin^n{ax}}}$} +$$\int{\frac{x}{sin^n{ax}}}= +\frac{-x\cos{ax}}{a(n-1)\sin^{n-1}{ax}} +-\frac{1}{a^2(n-1)(n-2)\sin^{n-2}{ax}} ++\frac{n-2}{n-1}\int{\frac{x}{\sin^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 136 14:368 Axiom cannot compute this integral +aa:=integrate(x/sin(a*x)^n,x) +--R +--R +--R x +--I ++ %I +--I (1) | ---------- d%I +--R ++ n +--I sin(%I a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp75-76 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum17.input.pdf b/src/axiom-website/CATS/schaum17.input.pdf new file mode 100644 index 0000000..7d72c08 --- /dev/null +++ b/src/axiom-website/CATS/schaum17.input.pdf @@ -0,0 +1,4492 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/EPDDUL+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/KVUYWP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/TDRAGN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂GtBW82$ +][.-$e,-dRD b.RV(Ҡ$FLV%6lK6G +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/TTPPSS+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/DVERRS+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/JVJPAF+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/AKAVIY+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/MDCDGI+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/SBDKQW+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 717 +>> +stream +xWK1 +rl8<+=`-8t^,m-('915M;26WΠvfx ͋wkկ~}y}u-&Akr :I$}wwD@2 ΁;Dd'> 1鏳vpՇ40bō4!#hGFo8GC \ M4R> XȦ7v􈀩ϤY `_,|zD +xl9 g~#jcjA/"Nzb Ymvq{#K6'SOMx\}[nVWK\Vibڑr2ܱj9Ӟ2S$*nCR 0ď5?-3nt0|,y'y1y;) $F{A_ah6dYz= =e \E圛 +endstream +endobj +44 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/CTTIMM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 907 +>> +stream +x՗n0<2ArV,"-q&EbŞ833)Woūյ/ X-c@)q|}s@{1ﮮC@ȠuC61 +kdVt| ścDN}reG{@6' $d%Uf陧}zrLzȳI DL&>}v5Mt6d#}r(CMA72?N`.qLz-zB.ua `fE8M"Vѹk4+^ջwr3 Bg{>"vxznYq_TNKFlj`.TƁ̳) }$\\^̤.ο=$_Jvc#](-Xނ(&D직3Ҵ ++\6 +IvӿadGj_U0ڟoҾwQE1athҍ [Us&`ߐwveS6H0xn&Ru 2Ak:[vUч+/sލ9?&5ge͙";R{)5VYe6MJüT3.wMw;]ծ4;.vО(xYƬ7<aU !{_iNi`X+ +r;밝Դvז{LG50c3ku2AEH{B=-z*qn\Mqjε2cuL84-eu<> tR:>ui7+~{ +xj:ب>tI@N|⬉.xU5H,.1 + +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F8 38 0 R +/F10 49 0 R +>> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/CYJLNJ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/SNUSKE+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/QWISBQ+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 577 +>> +stream +xڭMo@{ZЪj 4a! Fبwkb(EBxwzw,I|$a$ "T2U3O ?N4`wa aChո 2vH3ʂ$iw0*z:Q,mܺ|"Оe:1R%G`xkMs)XI4Pݼ%d2ҢȄZ "kr'FB vh`&WI5` Ȥ j_ hPik[\ֹbfň]Ycp`;lp6C;MIՉ.nr",j{C]^knu-^.>X۹lr"GǷ~æO1^PݡL;G <|t+@]1rHM,]ۣz-\KM,еWrdj dgMdWzJ> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 631 +>> +stream +xڽUn@}W죡^H<*B^R q Uݿ`MzZ$̙˙3!؂F3Ԡ4|eƭM$wx?(Qw?x}coC"UHaM9"(AQSDl@(D/79Bp&9_|}ڨii?5X#B$1g!$-j2 i}Ni! +#N!"nm{g>9r)S>Mn["7*v~OhFJZA8` +?", tMY.5a@zUm<̾Ք6Xnוmv`e|6L퉪DťWxP6"ToW?\ +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 765 +>> +stream +xV]o0}߯c؎xشv{YIf- +:-a He4RsϹ&! #_>wMJx +2%Ds0Pm P΅Jnģni|] +V>k@pޕ$0UȶVaU0B[~ły@Q 4ir_°V@GMh nF4X + I7vh[2Q=Ǩicd852ޱ:XǕ\$1ǃ $ODp&kd#A +9C/u`uڲD@lX"M[h3 3 NXB ȒHeg:E6!CFz`#92:O{gLAk(!+4o(GNe/`MG>V!ډvҕ:򸓄 +e!k!VXbт;vCbcjQ Ӱ®z.;# >,eP}zgP: Aӄ\rl16/îx)&xV +U|":ř P:EUxKHߌ%Oho™bMX&AI灜2w}sJpz\a{B0̝z.'j_WϻrYUߚ}~hvXLy".㒤8" Fp_sM3_j +mt>lXxmj}veyr9],.r?,[_T@ +_(&RW_Io~^# +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 844 +>> +stream +xV[o0~W1igK><²IiJEslE< &uvr.w>APP>wɅDL!Ҍ6DL1+v= ^<\h>1p>V!k`M8g1Y, v8#Z :zMpO&9x:x-vHX>ۖ {XׂŃ:;`Gתzlloz6'[C#Ĭ"sW8D]E%eZgQP5vɅkM Х3U3{G1a]{a{ i:Ɠ_G¦'l:FhdݫBoz]t=!(QE!y"v6Įw|$0Mo)ܸ8wOʘaONUZ7+]UڙHTaȗXQׁ|/ѝG7̖۔/U7b;Q]gKCT /2FQt$ő ]VdnS4QyXdPzэYa NvO2)G*dÝ)Y.~9p>Wӈ 87v k9# < +뉅F,Y2oxO5Ef\dzTkANiroe#9Y,DNkxy/?lFomzzhmpr:+KXjE +tJA@9"P^m +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 960 +>> +stream +xVMo7W0RZ.c\VldH +~HݕP>xir83!K_ϓkͤ#a!&1pkH@štlWh5l/QH. _tqA#{b`q/8 z:m8o_#P-F5Q.a)}}}(K9ڍ@'!R*_`usNQˁw Ґw;Eo>ΧwR]juԁ]`f,Շ@-ձXJPo=˛D)ERK#Z0&Ň:OB;!'uW鲓#Keȯ<~ C7%f{[Lei:[̚fHy6JEm\苨i)ynz*{,/|;_-|rv63ݛ]n9oaK u$Wvܟ0G:&g9wKJz:=gMob³UD5tx* WԼf::HӐt:e0v8>zsT]|Wd4`$3N(GQLH(UE u(/ȿf1TJDԾ!.2ScCCQK0 $W`L0f<Y`Z4B+MDJ jNSVż[m().@PѴffB}@#ݺn=f\mzi[${8/^DyuݼN{ٶG;vf̵Ί?RǾ |*ru|6h"M <k:q|'"5##d~S +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 801 +>> +stream +xڥVˎJ߯3W;R tY6`=3Dc m Xǩslݲ\_KdL#Ÿ!^}̌#>EROך9p: "еˇ K$\mqs&rPH?CG`qmjeD v`RuRz7Ndy2!pns 81Kx0!Jth p[(F@v`F3CJ5퐄_& #~Ϊ(L !h:~Rc+XK! ~hӂ$Sߏh +DicMٌ-W$UdMBYWO*ٽIڝ:l~0"t=pBؐCp]bA +:GC8i B hɗfbAl=,lgDk|9`ąӢf\l;y(@đ_էrn*2+2q*fonMnʳ:f b2(f[4"Yx֔;ʨ,1p2dDt]ӿ߭ݡ:ú7]yi-i}q"T!W[R$ФDօHk2L8vX} &*f,KSuR՘~?~~3Q/HLdOtUՆ:."~ͫ=6MxqZƙnnrT߬WCYNٻY9=&d:Fymo +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +91 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 90 0 R +/BaseFont/CWRGGI+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 892 +>> +stream +xڭVMo7W$; РvlDMȲazw]"g#$H)Y^ݢ?Cp(jK_75g͆Jn>nRԈ +Crtqw {|=?{ZsWZ#:k푣|f;GtU ѻ-hu.ٲ4Z%0PCD.Oeu +? `5m7PFdF"Pz/; qAYpy_6E`O!] T2x <8S d.q hx%hchi.)sBZoș9Q(c*@K:3ŘiS̓^Oj̫|fu5rnm)נdGl$BqNܒH^&jf~C+?tpߤsn"k`Q~FtR֩jj"I>[>`_q| yZ)~)-^^Zܫe͙~ >.v=UBRN>4O]p c`ϫX]:vinpԏ> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 710 +>> +stream +xڵVMs0WhH$=á&CB/ 7a S+Ƥ9ȫ}o߮,g>ѵ"Td`Vj,S.J@Se/kC@gB!߃`.&8:eB=DX[B+PiU(ڌ4L {dM qis(&%d-$Q &#[0 0D$YIư EDH͌$41,dM&yEn}T? loRĮ~{!O4`LtT{u7kA=֮~KGU;rŕeQc wy,gGT>;l Ӈ˶ EgҔR_<>UTV+$ #DmdY:^n]O]sQ6,JoFsX{R%8h?1xXc쐫z 41Cϧ$YϮ\%S6-r*v~`twc\tf C߆4R?ѣyգ8%,C!VHA +lc({ +~)D]|fVta>;Ź=-mqVbh PvZ3Yb]]TE:oOݭo^$yJPV#wti5X.5z +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 862 +>> +stream +xڵVK0+|LkoǕz 8p`˅ +m*j3& +Ʊ37yD +*oѫDL!iFBX"]h*c_&YX%ʻЪ90Vep[L(bچuQ1Ko0$1,\cad̛xq%Z*#[Vp M)r$aIl_&>{lxځ0aD[]'pnfPo~ iax9%un =T88&Q.Vp(>xr:3BܛM̴n'%-z*Z%xIpɫ'=2\3.΢bwe}zxTA'^@xYE8?W]:\#N3V1ki׷ 򓑨4j:Dc j3+2׺,b8q>OtNl/֙XAruW + ƷaZ۹t}ʾSFdFn=];I p"Pz%\ڸtʩ48Oa;MATQuHk7҈?u{,Ojk#7{~&jo}v88L5ׄ} Bi~DG,xFry.a2{WLqdZj:H} +~9Hz`X)].sx>~R$EMk0.:kyI]jG5{Ġ +_tK©-Z_ 5 bv}V]|ۄr𐕷.vÓ>,by\g~֫YgqI;Q@Qbx߳_4N^ +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 706 +>> +stream +xڵUMo0 Wh# +Æv\PR Eaٿm9k98G cn>@z0?˿tiʀS귂K)$^'U_?!_Žiϕqk֗"#kY\avXZ*?lxCVls#'d7ꌞOLҒ@@b~759Q-B~ِcz/Ӵ]ai//1 Ǎ: ՟# +kP}|Y~%(./î>Vvz|E1Z.b76#VgV7e/` +endstream +endobj +105 0 obj +<< +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 799 +>> +stream +xڽVn@+fiCfVMvEC7Si0n#T؎1Ys3w cn2p8 % +q]Bh + "#8|H`>y%)bmlBU bM("xTQH+K!S<4hORA|HPS8"H5$" owMR{oKT*!T'%H  %77nB`PQnM`SNzx"YDʄv;.v&5v)OOdke3p{14FB5c0' 3'&Ķ&a4@O9cu=bADbӼS+oSաUlr[ bnR(UaF'#{ώׁxz.6̽> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 710 +>> +stream +xڵ;o0~ +v-!q) jbNQGRB!,x! dtT(6ŌJɧL\Jԃ;yy7-k8c +ڧ01GtId¸]{î&Ԇb +1nRH [1TP6􉭄U@QH[cݤi*}YH-|Dƥ5UT*&|zmB׸/̀5`HVdԘ+{E0vhD0Ni*VAmZh[@ěw+?Mlr:# O?~C8i/S'jڀem&R+5AZ xs> +xPn0TfzӶ9.l%u-;ql4WwГMS&e6jcu6){Q8lvE.DD +v`& 'Eꈚ7`ARjCReXc{>"y|_lVö,+ٸجfʗe8#QVűM8-Dq Φw? +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 882 +>> +stream +xڝWn1+vol&Ul覙T4E$"J 6!$,9ZR&$|}"fgpɄ$_DsfTdrD9U]OS0}91} F-t,8OmA3.ŔC.fCGj T$W'd  (|Z"3 $QL!qf یvSr1@@2vi@V2 Q]j\9& X->Gn)+HK͜J{0q2[(])XY+cܥx'u6x{ڗjfdH{x*!\ס-ObG۾"An/ +'r[:9 tjTt0[0C>-〛[Ns*GBY-P]'EA:<[6*IH}DFnA0_-JYݤ3NMegh\|n9o#k N ^*c:Zm~>ϛoP5_ԇS&D`bg9xeVٝd/VN)^dGBwo.n +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 418 +>> +stream +xUN0>&ڎ$R ZBhnCԘY)q(mP8Ӽ&d!b,WŸ. \[ȉ%/ Mhs hBFʫLѿ@-wCtqPUk*)0H_VWh900$;ZHO뢔U>_gr[#HlmcK=*țɺ6[~Z=Ŷ2uq@ȷJ B; 0M+fjW':6u&T7;PlT1fXHH65?G$6N!vKSfD%AM9> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 832 +>> +stream +xڽWr0+4P e3â&vEC7pMa 3^Y2CHf˺9 YR\>$\2!ќE6LۀTpMsZbʔ U`ݻl y+fZpȷ XxYC +ߨ`-E "F,U}[i@>Lj>EqJl[+>.G CkUN43rr$h7̔0(Gulq-+$YT";uvd\Ph$4AhlP+sZP)t,DojAF,R}XBE8HB2$ j]X= ?&b`X Dr~1~z +ʞ2iH?3߭e٦\4vJ,V,K\MgN3JY4 a>eWm˕]ݺH~mkݤ+ +/7I.-*!b%%Wx\'!yB}_[8AС8>Gue3ʸ"o `Fl-Kljne([e   +!>ܫ{98=?e)o%zRp$N C8.1?G#װ*j!o4Z4qt0iJ>Ϻ1I:j:Fs DEF_ީJ_uDY)[F\d9'+g<*Tk2.ؼ?1-&nn;]:˚&plȅx|+Tq}SY(yv$ +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE0 Dwc2؍FD`DceG!ӝӁ#砇5D I0xRijEߘ֢x19eYQ2k>dglKVE4Tc5S^~% +endstream +endobj +129 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 842 +>> +stream +xڵVKo1WR B<@Ъizh%6)Rwލ]6k75a#y;W+Ln`5Vd{>\w~3 +fZo& MU!.ߢ)`, +|4Y E~XOq YaHY_H+'@4 g 8aTҠ$~i, C7u! `G壉8@&Ιox2C`Vv}kR<LmRP w 98V"&$Fi#ì 3SCmZuh wy0ӤCJQX@n4` Ԡ[\'\c ZIcfK8 ÛXm8pf8/蒹=#uBEP:hvG,SR5cr> +d=rӬB2Vǧk8^_86A5 +bz#ޗ68xsXnqX`mG8x]߯ng-*[%[*mG`_I +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 140 +>> +stream +xm+0=VܻޮO$# IA 3 Py|9H)6鸅HA3yt= ģDyPJ6"?h1eY ewtu)^+ +endstream +endobj +137 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1020 +>> +stream +xڕVMo8e).irm ]4-vU (p PwHJ%Y2C$kybSPCWz|?ׯhU!(^TeU*Ӗ0-5:y3A BB缠 + iJ.]pϧ&%w?by?APBYW8ϧZ^CU`]}UD>1fA̵{q8P/ 8blkE}"ʼpH=Ϟs~Hq5\cԲq7XJ-P=g-Tͬ5㩋n#;`FMj>_<<~߿]e溮8U_wʩ%I˶yjt[[™z`jåG&3d7*v)*'TlWhl5'L8?%ȅg|ڄ%[0Q1' +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE0 Dwc2؍S4!PeG!ӝӁ#`{js RBd > +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 781 +>> +stream +xڵVMo1WRi H\&U{lȥ )%*]TT*Rp7潱73/ȻVPL*2F 0 )M +p + tqitkgD 2SrZV1Bb " E~9P3^=O' +!aZu>߇] 4IV}C&bNT%TM`1.rAj#E9Yg^ RIy3  +xϸCU2c])lu${@Cc`֝2c4mU,J*Īwܭf:3/a|Ԫ]ĜgA31 &+Hi-/>T&X|-X9*ZþWDYcVrN`"ﴷ윎q6* 2`WE ƻ'V{y쀥(KZ{x\.6uQ0Ÿ!((SM/'muUNçR+$Ssôix]p8ޯϘfYl{z1j\3ƎߜtxBaۗHQ}G"i/DHviiΪn \OOgajcǥF.`>OB%MkiǽJs5{߼}^xsЅ^x4a4N&Mx۲#Ruu f?GER2٢~c[xi. +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 327 +>> +stream +xڍRO0WbR+c&&{f >(chyAOd}HxBNC4?`B>cx!u^%xxg"˅4XG@x~J]^%5N7EJ ]}}%O6AԪ钏]YίEz-ͥm4+-zxG yN@1Cڰij9s  +`3`&3B9z]?]+({>NͶnnd1I!"/,J9o~_ +endstream +endobj +153 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 1008 +>> +stream +xڵWMo8e).iCvi{lK.dԀcqu}dQCÙ pPFТm%#:V$}iV_DT"aë:"HIFL|u\wݺjf/ӴУBN : aXCP\/e$wYۀj6bR聱T&>ApBCjHA}LE ]Q,C zY`P1kB!J +/UЗVEJաB-؎yEKB'b@7'ᢒΒ=T{w[kБo3kEM7PT~C!M(ui-~JK= &0BS͏5Fgi. '_ ]-?&”vdb9*9O*m꧜z:ջ]PPK]\]vz?ϛ*;- *NU^o69^eJ.u#X_6,p\ʆ8ceL)CK~ +23<[ r3Z6k0By9^h/VľPx*̖S毒3- 뙆*]}ܬb@nNOCyz%qꚟTۥXұYH"2oq e6[Na1u9: E꒞kS/mJ/~Ӗ*&4}E+O?NCz?> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 316 +>> +stream +xڥTN0bRb^i mG#khz !1@=/šݮY˃v޴300'`Q`As9TK/9DiI +"-Hh~xf}tu1->#>䜚EŒ!!fT&D+~(t\E30dfL&6J-RCEBBBH1Hե:%)m"CwY܎:[5Leg57E*as^rp] MS4~ kvWv=^7&f0Uلzg8 +endstream +endobj +161 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 1049 +>> +stream +xڭW[o6~߯+.in /a{\ݗU-^g K$CR4e]k@xnJ3/vŤ"?jB-0+  f5wm7W!Lr#Q*ɜ%T1L> aCsf=1gaV]J!ەHy}KxZ ¤d|x.<3٠;N54iYLFi?)80@&@0[7a '܊:Ģ`L*)[`?© +^3Lmc00gǔD^9DjD͢E`ǐDJuy;ӂ q{4a\&8'*4 F-6HC ê;g9Et 7{*w=aa +ݸ3 ̖24y`r\3f1n؄ u]_g Juؼ#O6</btE&d05e2$𳦗`%ج2eeeH#xhR0mC* ;+2(4ͤ3~lCI&Jbj0=Lm[l8.!A~=5TG8@ KIawԽq`omWձm9izH)(cU=jVҮg̑ + :]dۤ'k遚 ^(Yh%[E a*|t [ltuxc a&9V+&XiAX7s e= :&^Bps]xبu :'yD^ t3FKfjlS,S&s>_A Ou|)eX,hRUt%Hy]F8"N 44mnZB[Z;_EJ(RJ: &&Y4<> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 533 +>> +stream +xڝKo0+|YY`O?T#ۦԦREPuB <13/3 S^]~lzc-P$%CD@,SDŽ,#q!z"cn+ 9Fz|ɟyT jaʣzT:a4(9 +W*8JumSb3_ԛĚ.*qiqXmvl^ t>֊GM|(xC磹!STI#!jsC瀠Ėe[M߁x3-2䧧w83 9Ίv] I8;/cpBW8"<JHxzrЯfAXm29K، h3p_"m𶖽1ig1&AR ZdE=;^$#KDg88+!̸=ۍYPõ4JWgV p0ꮸb4:R+i^:Vُo@j +endstream +endobj +169 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 612 +>> +stream +xڝVM0W6rJ!+*%[ukư!!͌y؈Dg .itJHHRd?7!2acL$aY`ݱ8Ĝf,]icGe^Ι7,A[-RbΏ u %AJ&cL0@[Qk Y A;6 *$K$dBS~2yT2 +C}2E(: Q NW; w,vTΟsq _7,tF]ݦb+ӟ[*YCf7VZEWbK c{zJֆܼ*%X}[=$JrMvGg]ƸSNn6GȀ] !%MT`h.ۀXڪ(l,?r>Ьu4UJw.Ʌպw$Wp_q>U@ U%pB&@U#+y mi`.z˃&"RԷИv; +endstream +endobj +173 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 567 +>> +stream +xڥV[o0~߯ˤitYޖVb&պ?vXNh\*-_rq)Ѕ _~fnrH<- ƅn]jQFr:#r+◹_>~C#F<2Uڶ1\*? E6\e,0\aW&%B]RGkҰ{L솉ZL&ؕNB$ZIEe"d"$ߺN68hCvJ'3Nv \Ea5U@l⨻z9[0j-;ض0MpIZ7>H LNiX=\ܵixnçގ{ЁGy;ZʿGf/Ǔ9vx24d|ݼ$%Q_9=6U[;VĂ͚;cl&j.𶶝u"M,&?0,ۘ?8BU>5kj`vUv^ИZpq$PՅRNzc?_] +endstream +endobj +177 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 514 +>> +stream +xڵVMO +P7ta\Gӛ`L4^ċ?_]ƽ2y2YK^YZneQ[־0jP;ګ.}1ɄRo +e]E2B4RrT ˦_m_e|誯wOj 07p71ma/Eی#H@CNDB24;|m'v 11B:"JwU+ɷd(„r:""E~x0* +LLlSš+:S\Oo +sdoh +FXVMu45+1:Id8@UVQ +ZMݔs` 6dݵ~7߂nOJY=ߚ1,UcfY%4Pha8sK$(44pʷ^\4-`Lur$¡JuS^*J`;ռnX쿘u_7MK=rt{ +endstream +endobj +181 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 311 +>> +stream +xڝRMO0+z1)ٴid<,LXB{73oN`06)>3) Ű {={I(# Q)&f%i|d3gR˕90cj#NS*%=ͬ 0ε I6J?]zJdc4bǥqCsMW> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1029 +>> +stream +xڥWn7}Wʎ]_:Eب/`*1lUCr)&6`eng+Ɓs/bBTlV"(6?\j!P/>O}ia 1dRgrU2U_n6Crֳ8pP{!Ē081vAHqLJ0Cw + Ҵmاeӧƀ&L…KBZPA $aE>']v{mL;/7;f 2纍`zyiws\yJ j СUx +)AC=JSP.?DB"yH)7mF Pi$.5Az"Bju܍?iJu/.$#Mi]L΁*!Ӆ,’tHD]̘: (;z8:B].Ç Sa@j$Q)irϬDFT* Jf@)69٘36z Y;ACK0҂^"\8D{~ k]tv6?N}je6Y_^v_/ioa[m&i`]>}=[M9#u$?SělV IϼLAX5Xe@.+zv:VLi4d9gN +M\:yNnOgO =S%eYtEӬ]_AxE\Ѹ.~|ܯTݪv*:QGbfhܒٮ_rS#n["EE=ǁ:_[PBK>J +juZ#֑ q\*-|wnumŒ"D$&^!22ǹ77 cLW(Q>Ò`MD7!i0'x18}f 3Ϝ\K>MOK.Ϝ-5Yb\f'.fX _?5}[b'gZw +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 530 +>> +stream +xڭ͎0} +_*9mTeHskz@R"M933;V GX"r%P'&d ٯ;0\gDXP T>m_!QA[/#WJ4p\s|a߶̗$aa7Soq\o~E[566G|>Uf1ܒi}$tPWH{}:mu@RzbK?Ԏ q;U?䇇"r?j&ҙJPC[}E~B0y'W8|.IG1'v+26\ # 6I\$=J&l&t˭\+h&}n,QHV@PZlWW#Мbvrtd޶+lIdTE7vaGJitӝck,F!T4fBiPV7t77;scBZZ;B8@ +endstream +endobj +193 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 638 +>> +stream +xڥVM0WRR_c$.UيJX!U,댝%@8ؓ3؈$g (G:h(’%*EƋkHOWD4эL4y>x%,7+w] FTLk.r,̾uu}nBPrTj0TH,@]!qY0jĭ0ri䲁A 4# -vwIR%6 )39AG7z`7lD许'X1;{q|.mZxz:Cv9YɴE5UE]JKJ]UKlZ0/PYI ԊR/]UJs!PH쌁uȮLg ؛q;2!2:=,bҰ'"Zret$DEꢑv(ɴI%k^7'[mq#lfؙdFC= L͋/~ӳ׻&P,yn%"KIH +y úzGΦ00utfE@~4yx1r qpzKT&2C@'Y\?s +endstream +endobj +197 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 618 +>> +stream +xŗK0| +_VN=~+"8Bn +J[H|x?t=ljg sUf`vD>uTy1&#SWӺn*X?dIVv;˧Rʷc:@(>)`A rD|6yrpΠqH!.^+PP9ñ:vO{7]=V.0IY*'F?n]-L3lV|a0Xv"M7D}Ub,ċan~:nb ? +2˕> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 592 +>> +stream +xWn0+x) եBuVt`p ;AS_lEB{F$#ݣ0|F+ʐɌD))L `J1IH o-/G{oqa¢/&”f>}Y/Lv]iUX/?6ۻv6sP")!$r6}&"{8I̅ɢHvu|GRN9~1~Ip{~%\ ~̚;xs3SV:bŸ*0_iˢ ^0'Ҧ0~:KKcJ`dnD6Ǎ RLM A؉2 *@RZl B2C<OJ 2H`QC.$?/uUyM.<x]zKvQ5% fWcЃpY7]UÃ1i9 Iq +uiVx79TR;>^WTL+7 +endstream +endobj +205 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 415 +>> +stream +xڭKO0 \ZM4f7r([7*C?4iӚU0zq)@B`r @zp O0<;>9D'q!#̙U/rͭBѱKx{cƐCUQj⍔ز#Iln;ewu!KSi3Q&8UDw»P}JpBLabKYFEq5>߂sƁZ '3qN/9v+7IUEn|M_H|O6'Ic|Ye8_jrRiu6ηe̋\'b#i`Of~}U/-$κdz1f @򥎜_N +endstream +endobj +209 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 1281 +>> +stream +xWr+5bgǙz,( +ldRe8I*OKprxHsZ29ffPL(~gFլJշ3y%٥: fϯV?,/ MYa \~IBe!Y'ߞ ;_QŐsUƁ3Oe)!ܧHX a^nCivۃ> 0R𾋄lmmi[0}WV&Fe փr]PJP (!)G3LNd (GZhaZ0OE 87y3oq6_aOpl@cʃLCA9)  +dܱ}5e* 6d.@n402{  lwe\Q׹)xWVߍPP:M?UDMeef 哀b\r&/ Iɠ&NM3tlr7llhmT>҄Je085t2DEĐhl*2J1!BBlAfq +b[+%Iv,\jt$݅8 u1kL^BN^Q;qIOOxԒatN z8)flU"KBYʭ'l>!h+r{tA ҕ&Kotj='gV66TgJG‘!P3ȨЀ?SQ铻Q T7j=nջ꩐їzI|`c8RRa:Sfp,~ ,r +!JmVnJv^l)hPUӤ}^>>mOz&~;l}\)}wMO q-7&wtR~g1zOE4 sg/ 2=J%8.=0w%XGb* 4TǾ^lT/̌SݜWN`%FrzRuCG9 "&ʮ,M.vD@pM-#ot$ ֯Pu44y::hLv/B_K1 ꣅ^> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xڵVM0Wh@DKl[nDViTʒC*w!aLU˅~{τ1!|,{".rR$NJE$)?=Պ/Dbhvݣ0 Xm ŹS (FpOg1Z 'Halz4v3\ L..fU:-MΘ_&=dէdZl[j_iMhCE Sm2,lnyP:"zpޯ_[7=7e7)ҸwMJ,xO(Y[~$nE2:F`b]WRpV_qLuAGcػ,4'k9iz{![}OLJ~N5KOhC +?m==֘>3W2u>9'l8ϼbÌsnI {KfJ̽{L9b©)[M9:A $\VXkmfe/) +endstream +endobj +217 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 585 +>> +stream +xڭVo eAYii7nF$mzh8 x~L݂oV`#A}Ŋ$V׿!B? 9!})lM~E(f[%J()XIα-} 锉KJebXuqQt{"3-I'qDrF B)K9Jڌ*ΤI$]2{9x% +7$0IvŌ97;( q:"sIV\`J]+<u +%o+o<7lTfiB1BI:>aDND&[SnQW\{*,/nN#X+ +NyqYkzG +endstream +endobj +221 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 578 +>> +stream +xڵV;o0+8J(Хc8CLJ"%HI R-;w P;܃oSs-@HK 䠸@3r1vq_&)Sl02Z-e9ZӪ;<?\{ Qo6`3*u39iç_ҹ ›zL 8Jid8ͤ\bڂ,@'ʄ7k27)tvV% w&qu$+qg_+*YTށ=8ZprOIe ewͽ!zsa[Qdw "8q{/ǧxػv} + ui)=ٰUq?o2Q`&L'Ic`zggv-kܞ9^XƱhV<@T̢Dю{9Qʋ<;W6qB'Q?>E> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 652 +>> +stream +xڭV]o0}߯K$hjbqlM1mJY&)ɴLꏟ? Æd+}p [3Ζ8<?R=W>$^&+a,yS3=TSPW8YB"/sL|(oҖ_0ջo&füNnlkbec{K:M8~Xq/3 > \ڀu0BA'L50U})  %J=yovz>.B Q:sj2*|Fj֚s vHok$I~FtI(3 [buj[-!utẒ /9hf߃5Q)wP׃ri阙=`EQ&0q?ck+۔m>7#Iq'~#< oljf&HJI:l\AjhIaF[Je2; GKA*]|)ؽ>ljeO]w1bR Ƃ>Wh#S9;mS yjYRS7q̑P7Zow-poT͕4H[NtI1F7=J aRH> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xڵVMo0eȉsmjUnMQEH]wb'$1b7~34Gvx@y:2(MEXD ߿D?ǘqMk”&IƣS"Hc,>̤> sQ V$+ބ}_}" qJPZZv.ET}FڃomSģSM)%i#Mj6XPgeȥ&?p9^6 8o +Ts]XrSOFs,0cpChM@OjԐOႌS($> m?s(|t8hԂnA7f3\~z0 ?5c;[zFW`s7%@29# nޱ*ˈm},l˞un߭߫6+Ujsnic:;KB&Z!讉ąp; +endstream +endobj +233 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 536 +>> +stream +xV=o0+bP&)4mQ! \ ?'ReAP{ww< Df9@IIDC}:?AH'ƹX/ž׿K+ +b|6b$J5B"&$7F$ܹMKbFa`Z+sfX;qb*^gG8V\f].{(yhp0iR}}@*<0grky/D6% +v29S!.Y T{J +HJ!"21vĶcܤ%xZ[ +^ c`P'pH]tXM/hVӏWCjY5,n,kKkHOI(߭ 3?3bk L=puJJVŵզnWo?S&\׻bYl\gFG}S&"R:Rʀ0?!h4 +endstream +endobj +237 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 584 +>> +stream +xVM0+|AJ8Ď+qZ v#I6?~dki3y#}@J|DHxd88AQG(Y,mM4uǿdY-ۅ3| YI#'u FC}vT=Ŕ$B8a?ZL鏂Cp!y> AzYˢZuV;L @iR7h-3&<E.e*'&ĽO_`3) Ia\\IɅv+smn>$ `scTAzY2sʁsZUtx?M2ǒtpqhkSHC@N r~l'<+ +_Ѭo4ks$[JgWOm9[[Llh 3vlwf;zpfuY_]ZNyUm5+X翳&[U<*ϊy_-BnLʵ\ٔкnj9nMwJx[(S{xn_3>dzsD̋9#8VF!Wj +endstream +endobj +241 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 570 +>> +stream +xVK0WR)Y`;{nnMM  TNl'uU.cg3}HD##>xJc#-PII`LPKCi" h"S?,DLH0o>HPux>;X=Hh sάѷ7$x̲g~x$v붫rA[=䛬vέ8B9>eagФjA}} +7NoT\7S&LNFlb@EH}#(ne=HPTa_hA!nh%2Nl+f>xI=-x%y%]\4t tԈ\@G7)=p(8ؘuB, d5|낭\ {n(Y'd=C-oF1qbg[/krL †_َ}\g9Wܭ̬綸vWrcvUfg͡ȓZH;ݣK},U>ޥfort]Q\V?}.w|UXƒӏWpޑxzFH)sWI7za +endstream +endobj +245 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +xE!0 P)n2KHu CcʄY7L#[ogOTˏP#Iy1PRk9 iZ +endstream +endobj +249 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 1006 +>> +stream +xWn1>dcw\DiDxK{$U^5y9PL*B`Vj)M6/.++*R|xԌX}ؼ9eg2\d>)Q*Ǥ$T1T>?ra(zBcΐoqBq8`˺n2G]\@ezjĻgBfϛkLŅ8ď9 +b7:e0w#,0vHeCx]\;ÔC[,nG[У9ZG ZSu2E/;+dye?}9?TC`|w0*GTL-Ԫ d|/5kPpEwn=i6L343C33Y#$|$IGsIW S*hz8,b~$IŴ]IR B p+;`@VǿAnč13k00-k>`ϦEҭ n=Μwl@ ֎zi{XQ{Ƃp$"H$yvqs{u+q^Ww"VW6#<} 20H'Xr.aV*_%mw)]ZR*9iɚ!)$w~^\ak~륤>$W)"wꞒw<vR]?r|dNa؋ c}(*eb>_Iør3hA8|LGukEAʹ%>zxc2dz-ƺ1 +iu2gF#~Vug,N]u3'x*}8N4J,=dǿa`MI[nn}!>'0tiT*|$KNzqn4z80mar - p^4W'8 +endstream +endobj +253 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 602 +>> +stream +xVK0WhBlWjjӖֻ[(R@!ؐ4={=@b)@ p#D!@q +P7]U`7Hu!cwxSRJ P"O@ˁW#ץ`!!rmSf\JȬaǝ?zMRsnl3N.SeX]I@Ia3IqVPkM謁Zo7;͡c/}j6/1: q,o̮}lMs_44R +kR8mTbR\/vkp<*RKKHds=: +zfF#Ě*WZW=sĮSp}3}Y MF8 +ʰצM[046#7Dc-V!Ĩ 0mfddVörs[T>H}*}HŠЖ+ ty!w= ?̶;sp1VK!LbވSP^Ǡνi~?3T?i*h(PLo=+caبoI:> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 597 +>> +stream +xVM0W1^U{lskR@TY8l%~|'6OCP+rcx d( #!91 +e~D4\Eyc`C& +?c?i[+3Fl\&MvVX%3sFi5NQ}Tf>&pe"4rzgN Δr9s +HSyU/^Nàa2u1*Q\;pIzΪAB +m0TCm`I&oXn0-FtV<ɢ2ZAtOqy?_w/y_6z2>?/rA,;-~nKeP/mk$54uFc>>qq +endstream +endobj +261 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 481 +>> +stream +xV;O0*~v\Q 3U*>Mqj`S}ߝ(M[uѽeb*^fD3'Z91LjD4})E1b$4cL`lC'fU$@@r3Z&UQae޺A pK3 qɝfMGuU|sfZOv@wʼn5-W-şU}ZeHTm)B4s|b~K_˟IO#JЧ׉ 5C;ϚA6Cy9U:H kAy Ku%T|eG;fgHWM&İjÀSh{Wx8d X|7( ~B=2Va_]Ϭ݆c{[T$@!yܥp!'  +endstream +endobj +265 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xV=o0+8JHC +%Sc-̠8C +Ǘ"eɑHB#=cn -a@#-@H$PP$9hn +juQAT}` AĊHUZsq7 +Ey7qVB&MO~8> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 447 +>> +stream +xڵTr0+q@8E;Nlٕ.ѲP "X-={n0ψEdxo"uGw#حwpbVߣ{]T҅B]I0De/]o3#%֬d +jnsxv~ H +G:1w?Y +endstream +endobj +273 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 995 +>> +stream +xڥWKoFW쑔ۀ/E=6ʥa 0pZ2Pȏ")o /$\~%?o7pI$ۿ(RR/ e9=p4on5qiTy]Rhې-ҐQH-|%`y<{# ô1=R=d>e7^{qg;PP39DN bX+TUSarŇ0S( $~%bjܚɃ;/ߢ*xE'@Qjx)I!D ?@cEd.2^+r3B;ѳaF`pҋ)eT;6ekړYc َBPclDc:[W{Uu]6TWលTW866rAq MR|>3@mt2 QL{dz2YsktCE4"Xl5e27le}/ +7je"BC2ܰ@I?;z#-"@g$3Rhbl'ߨkeׯyx0SUx%N|}7ϻh`t+PuѬ^ ^Oݫ闸*p d:c1(+ƙtR1f=ROz Hޫjo65cM$#i#˞F4!僅v37թ״zuG"_zv_K> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 595 +>> +stream +xڭn0>G e)R)ڱVeP%[=Gu-yȟ! +-(G&1 +eOHDSKD1f:e"T*ƒh^eu߷D41m 2&eQ(Ãߤ>fTj@v\ NN.ĘMSBDsIcͣ%q`- b\d (îOagŽ0xnV'w8Q #Yk@fwQ\Hd LlRe„{UZ (VxuYaɶ̳ +7za`mg~š1oq&ςLNvR[Vlfi?qu/vބuva5A{nlf+ te`| z1=$@[D~e=}6s,c#Ay>8ߋ~(Z.l-rTK_P*goto̫pU+#Bi]` JJR h4IWξCa +endstream +endobj +281 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 578 +>> +stream +xV0+|lmR.mU{L.҄&JlH,D؞03y "!hާ +@$i )‚7㵏cFcθ|(LA +Wc˼܌ϙeϿ|L ',V "SHH4??pN#b0ˈܱrşCy*ն8ߠg(I(n)-Qm ++-AP&\4E^8\z(A"I I1OUi2 +endstream +endobj +285 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 570 +>> +stream +xVM0+|Y)!rg@Ҫ҆?eM$B`3cͼ76"9!h-W7εD) ,i*M0M*H2,V~Ba\S,Hh)bq_ɌjWUR D$m$+c|=a7']dLEalv9lM= X1F*=@s\&7q`X%T~9D}6jyZ m\[hLӳP\)7rj wv| UB/4"4LTx)؈,Vt2Zj(DFZzX,lŲUGl/QSGxv7_Jq"SPOs\AǿhŬp4s +xLj)U̅b% BdoD.:P& w\{oa?ۻ'Ͷk-Rk_|\l6oS[|6 4㧌TE6vO$d.R  .H0CaYnΏQ2/){Yg&X +endstream +endobj +289 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 505 +>> +stream +xڵV=O0^*%xEP$F0THT?6INvp]޽gCvx@zCҙxCf",!Sw O) HJA/#"SɎ (!ը!T"YbJ$㧟ve([)aka"a7]2 |dU_`Q2BUr*PcE3JsG\^Q1c[?R ez8Q 7^hc ,RJ\M{> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 621 +>> +stream +xڝVK0WCl'vĥ[ڪaTDRi|q!؆<Ϟ%q=z[(G*VS$i,)"2CŻoqDO|3%"4|ex}/>Jc:J#b5i*wZ6 FQV7c+|:rJh&f1tcms+e.3E H-4ϣr+3:~ZQTK܀VP y\ͅs3)!=Blr\QA ϺX~)jiE宜Qx꽯5*ԁnZl0.orl?~.z_>=}=BGX 7p2aoqu >2Yr #/ Wb0HES.ݸfaèUNT>lA NmZMjWBpZATZ|LtW'c!Pѭ"p*5<nEؖԔ;';Ax:N+w ++`']pD3> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 506 +>> +stream +xV;O0^*%?AQ6€*! +v4ǩHz=2Ȗܖ dFh4x%)JR*}) # 3-eLR\QBFǔJ۱Ԙf2|gԫ%rcx,6 Q?.U?Tɫ~Խx#]g{W|\Rϕ)[(­cy8WX.=7Ceh'sv^GaSg>|^p:-§l"j;<9!YT@J1ar:6rpS#FԲ6i85*fx}ZVNoh2#V>h5'bf}{uQ 6;EĕaojEͅNOw0 ZC's6)tO<\Dp.wci> AЄru\#˛_? +endstream +endobj +301 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 579 +>> +stream +xڥVn0+x Š} K[hS[ՃR\ _.J$r8y|oh +@+]hʟ@Bb)$ow9d9`cQ{Vگ#%ˠ76i;ܷ*:{ 1. /&|5ۦ2s{6Jqp^X*'E|medKPŒt$F(W#@RAXVwOni~7>mM:NZM xxy[Ǘ~MN27TFQ5 ZnzrJn7QօSl|#.aZf2ڙK_3ʔP;[T|TTvf#suF/0vDǓq J> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 606 +>> +stream +xVK0W?BVa]n6KҐJj| iH+=o.Yhyw|E%ьP-IEw +ͥu/2W֝M?o%1ǯ,vL2& ^+m]/ZcE+ GiimUh"yVch2ifh5sh/;WxDO89&8B:!UyfrP&>o&E]rP4jďΛiwDuBk =UriziW=c6j=QP`Q3S~UCm!PV|-O,]X@~DUK2Ge2% ѿt$Uɟ[oҮ +L:(@:^ <~_G)wgw8ϓ,ESm#_CmA9>+qEdbf6:шg|8&ri6K;&QzhF$ !oM'5u;]j=|9 j5R8FC@/}hRSƋ˷)e1^&?WU;??0TTt %`> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 1213 +>> +stream +xXKs#5+m;r TqxSRen!?4͌f@dI_0`w,?ﶛ+@q7f[j\iBPW2ise:0I$ЛU+j}9Ȱb2[j3NsSC.c$P,)*Ş}Ƅ0*h&؃VM<`lc `9* Gs vdoqRGJNo' F&5UIpsAʷ +r&+ ViW_QӠ/H\"ۼ‡WBmqqJcT@sG˝NwS8nD@'z=S8NMp?%<u}j*NIxJiFE C3# ȺA@Filj9YԱ|kՎ +]_f|410Y7:)ě4iq*T8UN|*xMȃB[>wՔ~xGjB&Rķpn89^Btp݄2QBP O`lgq'E8BY26e8V]+0ձ^eHcD(Cߔ!;cҘ>ɽ4ux*~tD:M= #9=}*lWg{D$O_.2> >h=~,S{djἯ(d ;]X6kQM%MW~ +endstream +endobj +313 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F14 91 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 530 +>> +stream +xڽVQo0~߯! ظR_Ӧ=uin%eQ*!!& J_ ;e -}|Awyc(#"U)aB%aˀ"uep&g)g>Pb1 .M`́82xʿ!TBB yM1Кp_?G_<6ʒ9Qd)NbD .gҳ|y.K`qj]:b5[0V[zzFL8R!)g6Z"D!GQПOLgduhF#2u%|dqI+e[~OLpbM7tcl;JU-jNrG:ì/ + L&+y \ٙOO%icRZW_1 +endstream +endobj +317 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 596 +>> +stream +xڝVMo0 Wh/#іdeX:lͷz7HE6=t@~ʎXǒ O"H3 k1ˢLɸ({8rJKeT!)L0.eu*(3'\0VT,ؑ/ǽ5hH`oյҭh~Y6JS ,*x*>k\Q!Wn?LL_#Ci\ M2X9k-D,d"~]Vȍ3hNkl D\xPwVey]|ƳTnK;~vIcxS}y%|ұ--%j>feu&Eݝ5|Tox~oG0 bnKYF!OV.'D)52GOOx3uӒϢXFATɨlN^M,Svp!ܮ]KHݗzoR:@7=k񎌥ř^LHZtNE(F>,Z>8cu̜1RtYֆTG +endstream +endobj +321 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 495 +>> +stream +xڵVMo WpIJ 6`*ei[J"ЕKnq7:yo/A2 g=i%#T"S%Pr.;ly#6#y&{oC0[UN_7n^e?ҧ"/n}p3{4ٌyzzEP,M +JF +δN,+2[WYv;ZIG/˅1mʟ`}8̇[) +e¦V*+ GW|@_ +k'~eƏ&kֻ~*uOhEX=^ #*>87 d?Zɐm憉w8#L,Ť* )/qGˬ6RiӔk^rVU8[*e9upń\MwՔ~7,N3uHAVCebms6nrwԴ\^  +endstream +endobj +325 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length 621 +>> +stream +xڽVM0W&Gʥjj)u.]E4Iխ?`U!`a7!,e<{D>TTIӂPxQ* +%$3!gxPBTpBשZa%ܳo&Z󓉍y >bQ"Eg"7.ׇ5ӗ=N̵rDRd9kUƁ+ALnǽ :#VƐL)gm (Y R?Bk39Lzcchuȩ .ǒ#iQ՟Sןލ/MV\d_?5MubvCPY0dOVǜUӇ#rȭVP,C8Ie> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 329 0 R +>> +endobj +332 0 obj +<< +/Filter[/FlateDecode] +/Length 598 +>> +stream +xڭM0 % 'J\euSi Dd aAN7-O FAS[}gct^^XCgr繆+ܶxҤlY#&LRb?4OLM`Y# }(I!J8Kb&\G: +endstream +endobj +333 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +331 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 333 0 R +>> +endobj +336 0 obj +<< +/Filter[/FlateDecode] +/Length 567 +>> +stream +xV0+|Yl +lR.mU{Lʉ҄MR5;؆Jy<3of 8F[]1$ ` N"NPh3T|p$.1!e8ޗ3BOb["Miw-ҕurs'Ki[y|ɋFK}Su)X>q]I$Y7[6hq4NJG i0D'dW!A8"=Pgs BJ ȳwUY>> 3=mq޻[q!<Ѹ'ajTic.hfP%kS ߐ!O;fZbzWFep?fd5* sTR۞UJb=XRWaɋ67z@/zT-aMH_&U?F4 eHtxM4 +G5ShB芚~=( ,I4:g:1G(w_- ̽KnIb"N4M^&v۽|=S=wn6]oA0 ?^HƢ\9Q +ś?@> +endstream +endobj +337 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +335 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 337 0 R +>> +endobj +340 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xV0 99lj"'ȍ졂4aˡHL< -Jpt̼7Oa2?ްFi2gXdVeV1a ^B|Hi \'"yRmI&Ate͟:z|ô\yt['7ۚ/I;lӵZ9RifR} +?Y ?89O V/Ղ86x=cA ~QqG xQ~Wv>xdQE3yx}CgE"qF6Տ&ofMّviS!̩#)(i[~MKe`PXsH.|=/x3]ŒMʼ_ӍNIZhΑӧi+iG50RN8jyxZ3Gڝq +h}RVz<'VsK:f +%ee-5D8E +endstream +endobj +341 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +339 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 341 0 R +>> +endobj +344 0 obj +<< +/Filter[/FlateDecode] +/Length 581 +>> +stream +xڵVM0+|Y)ȩ#"8 +Җ-"ǙIq>ufv͛ #;G|M(RQF&?YLYX"3XM!-P;I)WFy3S8p/g܆K~?dK HtV[dǥ b\0LЎ"`U +g]zr|9;թ*fݮ!+EGDoL= 䖍pJ`K +E,;$k#JzɹRq%RqW/o*NWnۨ g,C-d٦3M*%T +j6&$]↙*au/C/S^SBbGnSu.IAFYTVoY`ntbWL#s&60kD w-rk11׷}Vs}Ob;ӾvWN[>\N?p\p5ϭ˚+PaC~.z* +endstream +endobj +345 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +343 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 345 0 R +>> +endobj +348 0 obj +<< +/Filter[/FlateDecode] +/Length 622 +>> +stream +xVQo0~߯K%HbjlHyYNx4ViX) dZ*؆$2i|<[:>` 88S@8uF0.:rcOhD2 g|Mfr;>Ewj,vOr٬mdIN&ױ;ì@6Xd!,vv{r!:ą#T}lao$!vp Ix?A\ Dkl7)D&=fX;&$]?eqdY+mosj6819>ڇ<<j||N6kZjϤӚ|lrsw2wՎѣ(ܧjd wWg"yyrPa.{ӫ]1VD*fQbOŒp]µ•HabQˬJcf'b#=4l.SŶPS+u>#uVD`te^  tfwP_̚LO?ә^V錅CglvA5ޖ塟>:dՈR)EU?ckv]^?bʼ ᅡr +1^Em +endstream +endobj +349 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +347 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 349 0 R +>> +endobj +352 0 obj +<< +/Filter[/FlateDecode] +/Length 585 +>> +stream +xVK0WRo`nnlHJl_6lB{=|_ ؗ@A|AB '܊J`RIDrZ~  ~P1%)GX(,b3E(b=j:Fʚy&=;a}oi0͋يEMQ_ͨ*MT%*$WnFՑMz~ iJ|t}- A&I6.el&4A2V'oT葉ϵ !\-4ā]uNDʈ9"!%ӃbPtRr(z)UYNLpcNqm:h ;U3>V]×$ꈮ~(ӾMxhW$?~J?|]'c8٭7IQyfjLvFmyi5/vbFr1SAtYFg3K>OVoώٶ ^񧩉>߬e71 Gw+%;<ՊQwt$z#eX a.S#1DX<{\# $'r +endstream +endobj +353 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +351 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 353 0 R +>> +endobj +356 0 obj +<< +/Filter[/FlateDecode] +/Length 1093 +>> +stream +xWMo7WR@196C:{lK5`I*r?Ԯ*%Pܝ!f8o>3q~F3Ai6Y 0nhzKfNnVO}cY`KXSM=9H-+-kq<32o$Xx_o IT+g&%^.MYg;8q;I +LBpŀch jxkof[([':Cg`,4tj LQ۟`(_Lx Й(ЮyborL˥ ٴJ -hO}lܜFI eR;ɢo6a2t)x T#.r +)$g!xjZA9@T)Xc=s4)'SM7AݜdY.E~,= +U$l/=9 *Wg qa/x}A͞g[Spm,40EbMkۺ͛\lCc i|rC|z!*rm2JSRwQ?׻M>.ݡ6VyOlw8.wka?ln(渘:֌Mhۏ8R ͦzlH -OS?+?Y\LGllĊ(t~^ݥ~ۮwe8}~[~W\&v+;saǑ tOu2u E(!c~CS)8axѱFⶒIP"J##mtmF1t WQQSF9mT3E[j'HҙN.lnck*֕+CU@"nho3nˀHUBo|c0ә-_$9'\ =(BwX $}25^]^&u坡Tef5#$RBS"T%5S}T.d;ꛫU_ow{-U^T8k j=4؎5GLC.*iqdTl}޵ +endstream +endobj +357 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F2 13 0 R +/F10 49 0 R +/F3 16 0 R +/F9 42 0 R +/F14 91 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +355 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 357 0 R +>> +endobj +360 0 obj +<< +/Filter[/FlateDecode] +/Length 982 +>> +stream +xWKoI+dcaWV沘Fd^T?8$!9CgWeƁskPTlYe,(zDi(~< jL?ߜ6̃7aIA#[I +?H:W٬dS,4x5?Ł34ݴVO>J@r.oC0%h93m-$S~l;Vuzwp+WI{!Y +"(VNA_7Nl$6(oMi_7Yv9eb3t;Ȯl/;JI&sƅ@:2ӔnK +hz6e\0sAx ,ր{45DUGO'D/ ѻV +K*$8oxQ`@,[}6PVkQN9#Dc,fZi"2Gɺz(մij}uӬyoL/ۯMZMp,.!Ibۼ :z{ď#Be lCtUuNܯI I>?> D_\'ȉ\4Y邳ru|y 9K*1}[`M|sI6HBQmCsjPgxk5f̹C{pF)Ҏ9BIJ8f'Bk^rHTCSScM)v%\)Z85"B@ե#Z5eۀ%--&%JClhy."#ZnlP s}R1,N6Ln2Œ{2%z{r"!;>!x|d8hBF =6ZpxÌ dYqۀQuw-*#i812<8bǑi{5?r\~ +endstream +endobj +361 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F3 16 0 R +/F10 49 0 R +/F9 42 0 R +/F14 91 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +359 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 361 0 R +>> +endobj +364 0 obj +<< +/Filter[/FlateDecode] +/Length 842 +>> +stream +xڽVKo1+|AmߏH=hQ9p[ mt%Ax}dRE{:7yl€1@{vrvW |#ՄZJɻLr.tvoA͸v.L48 +& U6~TQ1PDa7Xނldw^;0OrP%0_&٠LJ}/I`7lRd$FX ;Mzob^x 9$!::*`^׊ o'(n{0pقGq t=!>htꞴÔ(l۾k-^)!Qb4tLutxN v$s$Lj-)ng qHxQ˥W|YrtRz9$<;.f^FC-RRLٻwSqyZ(\T;02\iA(Tp2ROqyWVb֋4> +endobj +363 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 365 0 R +>> +endobj +370 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 369 0 R +/BaseFont/EKDXSQ+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +371 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +c0\։*Ebߢ~U ,3; VsKc11%(N DE3: -܈/.`Q5F8|< &1 !:`qO4q\[evNUa0qE[NPJ1J^xFh +m9 -2@8& +/rsɼS].8enܸ*!9T*7J['$[.P@FY_^Zd. +endstream +endobj +372 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 370 0 R +>> +endobj +367 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 372 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/EPDDUL+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3943 +/Length3 533 +/Length 4491 +>> +stream +xgTSkiRBo"H ( =@0T!PzG:D .U t.HA^69go֜o̚fs?}^kAnn@:0?41n@_2ϖyu)Daо@ vP=\F]cNֆоapsuXz.»QP %<5P>H + t=H sAB3408_rYk"wR~.ewZEQCX2_b~*N0=R3 xseŬ3S~7ad1z5icOdg[̓;"J̑54wMԈ}8/1J +""^l=;7 栦b# Z2I \1T҂d% + Mz\--!mfWա&et)ej_0o?pvUoam9xno6={1;/ ~ȔCe@VF-6Yb_3'5"v>^Wp Ͳ'90۵ ϗYhc}d̅d٧5IGLiּiInx_1kLqe2H[ł#G]qInus- 9לV>9^%=F@ HS]+MV`F|:6'{*O5a|DnhѬfKUg3և Ju=9lKӼ}ڂJ$k5W&oV~7 %|_L!zcfT#veΦwyAw5]e^޻uW7437^ݒܜ yIHD2|(˂Bu8Fns^\*tz:'9N~SW V9X\Rԕ .EqJ=21%wq1B?#mLӲrK +1P 8`x8[ҌVy3:5'E\X9$uj6I,҇%?m[2̘E8d]Ouڮq:JFբ +NΛ{뛫ԏy!*"&C[w˓mw[h +ao$4'pky BI:*shn^xo?#ع]uiE>c|\,s AX`(卮ioq=y֩=[3UTIK6zKSI -,C3]_Ы^){P3<kR`ȕω?yR@;5 PcIiF\ |dC-,HL餫ZRҤ qbIʬN&<'zgx@=Qta׾fy^eWKU[0Ps<ӣ'* d4"vaI$VGح:}4,bϭX`K5J|sS=hť@9V&[UnzV%\'ʗ0$)k/ \CUi 0G9߼R!}棉`edN V~Q Ocn2?;V2uc5xNk# @)D<8߈nbFYKo'4sAx G,XTO ~cAD)?ߵNWd*旻 +}WNU-ʀ\}͈2.2%)N,]|m,HQ`k.D65E +>zy3혠Wu~,JCoDկ,` {/[in vT9͋ aRc$D_Nȴ>W %s-M%ݰ9F䥶/l? #6l8EsJ3>:Z_s{2z "Գ}?tEzN`Lõ 0_K|Wm+K^댱-5ؤˠ1#):$2=ntWzTh;yZҟ*_h6"*$4=ƨ& sL_MD +dBx:M\Q<5'`ɫzQ wL̕⨺_ѪlE;d[Z}My'}~Ф~d} 4Kc=hdNXٰ\LɛJG24"0b;alM6Zk"Mߤ!S==>BزsLH| ֲx6f v XN`ydv&Nn.¦"G#K{e>\o}(txI/iZ~qrvt]U@)JI2%B6Z$r;sIo#"TP9'ӢE7>Sx{V\Kx6B,hn"{p5q}i1Nf|TB1HkʞNt;~z"fX'".>}jXɠ7x X#EtNoeՃex#JZ)d?-;nMętHiEbFEaJ-S?o]m=ZğjѵY-Y諾@,V9VdOR Y㰁ګT#zOM FZ4R]^`}4h<=I`y9< }6R8&67dl]ɋ~i!l^!2rㇴ {ǧ +򖝶nPJ2GS.`\Y<v/-7@g? uĔG}Ƴ'lY&-ޭTۉd3 +9HV$š ks+'d\fU Z^#"?Sh _#qd_0@Y> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4599 +/Length3 533 +/Length 5147 +>> +stream +xgXۚ]ZhRC/i U:ABH/Dz@zG& D:ҤHP)ǽ33sͷ|>YzOTB vkQX I}Y4:"( QVy9e27TThw?  QåTC1(4`]!P E~@[ףTŻ +?XPJθFG>2>vm~*sImjR>??1v* x@ T<`OJxúw~kj0sVe_h#PNi=8xES^#"/͏ :.VuEy$9W6utn[RI r/-}Ҩ|쁿htJjUL579ed fԽO4 ]/AݢM'*ϿݥfU g#:0C5gptޙrKS;-idI,/1=՗<4Usxos"$Nr(oS(kM +E*/~- +9f(OCH!}eLʔJ"{_EbAt~c4eL$|uU}9WOu +\bTξu`⢎xF -NlFM-]nB 21!65,ϴC~v_6iMzGSw&@?/CwRb * ./Zy^ 'VtyISNhIwy}G^g]o#NpmW6mf +GJ #GՈh٭#FYqI{<\,xB7r=?AUf#rH:tCRG8W5VAX[&hgi*FŏqaJ=wX[.Q=ve7Lܣ챾^@NHXȯX9FuX3 _^| S5,^ۈ4^TwY3 dy9Wn m3}GEANݝsHqIi"smvyE'ʵ$9 CfQ tOޝm;E;sލuli67$r")(n[֗zVy@>I28!{Ė-Ɵ<Q{txHK{O +QyfjLU *%cO|DYծϜ{YiIKI5\d,#͸k"* xJʩ/hG/̻2mڧLf&; esAIKߺd_RJCv^Wjt]&iLNzy=]ɺJB`j/3S51O*DY C&b/"$? ~Fh2PĬ=#Eby d^O%dn}cxIH}]=p~Z6[# /+6ݦ&$`1pmḤySKİwfr/CI{2YJ,- +7B_SȳNC/3WSoNv*&db{O[}|/K?g⇲]&mVjZ+X~%-&M9pB߸9Z[ljt3wD~Ho3msR\]1/ߋ̧jHʹB;(תgBNã=dʤ9̿Y ޲gvire#0>9Gv\eUWK?+/V[0&cV&iGK̸݉e&yƣBH'#8M:{ά:u'õy᩺}"$-# \LZ/Y$bSfE~_?R(l_&e(A_O|K),Ev4乳NףܜT^9'h?&rNZ H>CL4tli_ULU?ŇH䷟Ȋ/!nw@lp(tA4fH`BeIJ 3KVfe%m\1tϞL]}3s}KdtluuL.Y *2 GBd\cq4rMݨc+ʨ+u,2ŷ1+@(~1GTWElrR۶ X^=K'\5JHp>Yʌ~}N,-5!T燾g%v- ?'GPFr5npG5D~ֶERENxK5j<0V^Hn<ڠXV]|kX8S*~{Yd~Fvs-qڼRO3;V<L"PX՘~&8!lٯpaFr7P@@|E.X!X2 +?˿S5MT(!wQ s-j݆Y(&,NuN )Xm. yn*o/*&磎yڜQķ,F!>{by=o6޷q8E6~`63ʫ/%dR<ڛ8<\n溇s\k:sWMJO(S}3A`BMGb +qk|L +ZL"mۯ YuoS G;Sv.[;>Jl˔vCO?bWm5AVE©Z~# Y_+c )r3t듓q۪ `S|cTܲUWtKQ 0G!o9,Sab{1"j9VѾfLF VAbtA =TSZY L%.D&%׆튑h!n3n\|rݓBzLZH?-_k*mUT +..@nBP#*T1 +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/TDRAGN+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`ѐPVbײbhx:?g=N`=sdoIBK JLÛ w|W& +rq3ks'}-yꪊkxxFԴA/Au4w#6.f_7UrLA'kI!^Z"J09nV39_r3mZ©,=h:._ٕT_h#Z)qUEHnJkT3ȃZ$'Vq׳#B<lfJ"ZC;#H tsYlFŲ]m:'n+Woe1ăa},Vqd,UK) 2+w01{7;%?~a؊sf9NDÚ*2W%xTH"S5}S5?KRY T4@Z||vP4w{{\6Rh ûbWŠtoi=f-]-:6$}C].rtdZP<d6> +C*۹lgR^fqܢW5J~ʲ45pM 3% YT:s ^5] ǐ(.WH)wMj[zVu$lO_x1P[nZd^:ݗdJ6~ֺvPXda)DL܎XM^]?tc+G1*Āa/iyմ(FBn(ʞu9pP#6CF_4C>G&p\@WMZeIȒmdwf^~4eW%@D)q8lnw=x[*O..1#2Bb q:45U+c)CiE[_ayPBZ$Y!()%AOR8p7ڀ7w0DvYI8IƜ\;CM?a2煝\hP} :GLPA8Q5p.L|z.!'dѥ)vYljx1p26Jf$Q6T(),%j&)pSDP\*rʧW ƣ /1!V}=VșB1~3+2ev[7Ou=80i{N1WRjɑP5 +BWn&wRMAʓbisDYXKN1j˾2f3Mѡ0"I`ݨXx:W.+B~n2Set@})q;mTdM⦩O+ُY;͚1W׆oQ]LukN;daCO|[߬:]ÎD9M`Ì."j5\%g2ܛ/sO*eo|F@_rnډ ĪEEm$G[2'PR`VfLK뇓Kg'/XiEBBұ`Y "Dt2㫄84m +vSy)յ 7*fؚS_xաd|$Z?+}= CwIgl4`dC//0o7KWy]a[e|Gshc)`e5|0qfz˘Y8zXk!&a>i%#玾Wx6yaC5ID(iՔ;:Ps5o|vfDqGV>¨]x(Xws~MQDU[XeL"|8D۴[R dA쇫"aɰ_QB Δlvu3<\4{*Ucԙyߦo4s[㡓٣SijC"፬GGlG2YJewf.Ϗq16 N>eL)JPg۶S6dNpwk-#?첮:`1H>;ޘWuL-v&_9h_j@h2# E9|lgG~O9C'Cݣ|I3Su\BomY '^J$")2t3Kh霫ό-.Vذ&fɵA^I' 4pR<ϏF]f[vAb'9 @}FҗtuB9Gʱa92&3 m)CZ.ǘwD"Ng-0 +S|)p>baRҌ_Jqɘu'0bILEKo]W) J0oG,tdG15}vj犦r#`b ~=vR=mTA +q[ 2XihiU^~ݞr*攽T5N_1%Pj^B>0U ? +K@S*W,KcfŬO D b] b]nB ~rb;^R'r cA_y ZЗ ,K $BgL+w-kW$-ZmY.Ӂ+8 T{ X(iuwB0Xw}AM7v~~vA9;"'ip ^5ty KP$ +%kC1ze=23'[1ތPQtSkT顈o7jkqhvم& Z'Kdxp2_@R76^X|x,^/a7d'Q*E}9$<=uAJܑ~Qy 5|k̨Q_{p_,>\L(FDFߢS\Z(a*:*0r<6@A;-e-̐/4y$J`4Ԇ!m(eOpn fї2뷦D^YH^?RSH1DZJ+]YSu)Nr7¶O"tOOD2e'<ǡ? [r7dJTp'x1 Tcy[`sA-f]0 ֪m߅ye_uqE9Z|A(W͚4!R@R;'}`M吴f~ gWS\c[.+),#!UBX%eLT_bJb?` .QXɚ>\%'gZFL[-\#VWxBo^'ɻyBY;z}+H4}*c:Nh(MƼEd=Ʀ0i5KZxLvΒ!p(3WJ^faWƯG:׽ax_-6lW ,_wQQƟ}fn 3e]TCUIQ*ĺ_kzt[}[L^}b0 1$V\~c~*SiX˷"@r[/H=> D SJm:)DJ%< +DFc>GW9$~(cB6ïW- +bJ(Yu Z$-UwKz?NKq(A5gZ-o+zi(V_nI"[؎``Nf]j$G썼E+MˆQV :=A +w[I֊bhN? B.}hY)7Ѥ2?AYVʍl̈mɝ}+EnEja+m‚ +͖>p!m"L1.g aa@fέӄBنqiO zݷ/G]sv[܄)1ʷϹm i+[O',F'BOd|Y}hjW!&z{{,d jTt+j6Oۭ>?==b#2?'VMmʋ + +Ē~.tՇolөn"= V.X-˾L;78d4 +7CP,)C% +B+b>W;(U\\U瓤o pt9+UPRo҇g֣cҧlNFԂiPELǥ VJJw٪g{l>6;`䆄V"Zbw'=qP=m"1ֵO1Hao*I-F̖f[Fi?n8"OL)SAXAA‹J `3?r}Z ,;W9ХCBD =7ioOӒʫjYQ,2XJ40Xٴ`T_X}Dmv_h/)O,\.[LExAx`jdrs#{߻)6_{%o" *<3>ԥVdZ0hݺX/H.E]6;w/#ޓԹj)kBf$vʼnA3f@ KiRRY6/@]e١09CxQ˜wapȫ(Θqް6e.3˦Lxsej,7gqtP/$6v9kw$kR"ʨt k9~?8O4 @/8lTLwb"dXݯG9qcac`/]r+ϏDPן&ۃԎ1نƂs#fM?al:$ӗLGU]}@gBupCʩ;F +B +x<22sc'AI2\#FPp/f8βbMћ*+zwhmʜef1E5.c{'j[IXj{uR"߬WJklCsrmnkι_H섅hɶْrA +Y{qsG2Y͉,zfE*MSDNN2I̛A0n/^ rmRUg~S'-G5N1k3btl_6+ Jdr@=질/]uEˬ,`h:erZZg]\PBbz fTgbgJ|I: |gõpF( mr mr퇑ebgUcΈQ]\[Ƚ+0߆\-ÿ~5fy<+rD*Km`D;f;wD0yVgҘ[Aul[rOIwܘ{s2^BI"C/-:ةNl"=+ YM= :̗hSdc`!AGml&rF5x:ވFD2S͝ZEFȇp9 }QqN{/f^uC&wsqELHK>C(L7g[/ڭ(GLݡ nWaԒ1xuVaЅZ`b-EjZkb)Fs RؔҜ47J~Q({PYFHt$[Z!ESCJS#:\ж Ja.lwaUmZ{7\uÓD1pbXRrYz!,vp/M6TQnHf{6~*$U-*rWPYalZ[7m.?'< oHaKc+kzG[p }xsgy>KkU=i;Tk؈4wGmm`х/-oHQRqB vQj`ߓnDL59nn*i|_%a~A 0-cimX—>GMf2Ost7HX|y$7 ڸ롘-; +κ_cJmc00R ?EGKf+&`Ǎ=ٷ_1:n_Y y7Nc2w_l"lHt-kwQނ$aecbںs,z""8ıU + exCA%L/#pÀؖyQ4£3@8m,..,> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"THhZ(&H/TH)A0T]"HQ9y2|g׻~{ml&pu@bqbPq"HP* CZH8Ն㐊  RҊ2?H rvpɁ40H# 2\!p4A 4dO)DP(rā(,@($rg $SEA@4o1Cp]/4#E[ApbܼpH+./8MWhAP(_$st9ў?u$wk@ OWng z

= b'V8jpv:v( +N<Lϊ粇3ړ*8tؚ(T wANkݛڼ ΫlSWA*k:a6z}vu_[qd|އALlNn[Mu@MGew?0 BŜ(D=Q6f9'H4/=M#)XMϿzy׭*gTk\ьs7j=#(NJc#r@k^FA؋x2Z '|bsi%_ۚX_9и7cpHX%{Uho'䪋=cR=.UQ۲:LZzty &>Gc?ؚ $Sν/F_y^Po|͡ը9*s5ҙݏ죺 +qVR=5"mIRHͩGw95ڈ`]/ï7􍹋ҝ#|vT\b2r}wNA 1Bqz=ė$Y}j%_CLU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'ӁYUks#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+ی,07M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"Nf\!eÊVyDŽ.t7AxbCB p=9=ګ#m|5trcfET18@Wg iG3g=mD9˅Ŝ([/ G S">GUQ0S]Ey1Eי@*䛃)JGq5> r\47V)Dϫ,Ȕ +*/PlZεu5e|"o}&=J{f7IFNb3X&*l93#yfB GiEsMx(|iWx6 +7¾Yjr'@wB#EN:|'w -7wR(Ms8Z=4_R8WkO$ +ͻg كsvhVCԳv^yN\M]i"L.U4^ʧVvt77XS:+o4ff=&iW_˲\pdJkt#1d#g7Ѫ{jD;F& //vZ7kygFv}78ck8Yi6eD9'z`z'X;D̛~+Xp֊ ̴Ζx;lf&vrGSȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPT}Toq7&qynʄ[lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|p/3x$Hէuryz{B ^\Y.+tB| @\tgƙ9HnlٵaxTԥ^Sd:8.Mx+MØX9':2nSMtp1:!1g0AJ. 60(Li'_&ZFbh>Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&(pFDun6TeT]ٖ* +{ řw`y -?X.ή$Jo +ON.s *}p2*c%KNDn}/:]q +7A%WgQAؼ|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],o=byl0uDiBwGM}؏ 度<t"l@Au?fa[pt5z0?|$X7J:N|_zuGk[|Ϟaq˼ɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩkmsOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R7u,,,[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1116 +/Length2 3251 +/Length3 534 +/Length 3966 +>> +stream +xy< +K5vԥ(Knl,=i\lRdIdVDTl#[lt)ZLO~;?s,sIYZ"1$WЈDꀾ=`0>DQq$ +p55`JWG U! @Dܩ(I)84 Y$4zxVH1r`ph* +T&D, PӍ*[}=aG?4e6V*U:4u(tjՀZ9OCq'mb.-a2DYdwMO}ꂌ<]123DF`_= %ؐKAQGvjY8r te`kc)/Uw۹JR/h<8O3L2rY-Dl5w\ʉMIM2;{^O PqH-+NܚءmiJo\[bU ~[yc[IPK7twbZcgmݽӞV +W_(Q L/>h^?%Tc^6Kf}<- e':oU?v|+3ǁHחR9$aEgcm6e|ͯ~X]---.޺E8uVj+ Id;7#NL6|ޭa_bplkr1piwθVZlÙuػIhƥoU){%fm-x#oX<!L,޽Mnޘ+mٓ;_LEaI-q...?}9D>!|tn +\hj,|ʝ|/r( 6R2WGp4W>Oa RNns_qx5 >sY+cZ/*kW^Ұn gҒ-o#\{_J.Yͽ3obv, ̬#4[_t*r'n(N?!B?[R=?PpbWBFKwbCM4ݩgęb$fks?ƞ$=aYz{RоiȾkS ^Ly*x=G Gk?H<{R#ܿɲo}~1W$`EOy._؆4F &q"˪m +;,'}9qr搴.JNHMls%N[)ۮuanp~.nܜ('ǯ`p[(pPMI:$9he7_XJbΑ]CJ{y:Emݥt=|QckˉE"ht{(m+sORV\Ԯ\nXuW7tZ%N]m +6w;N{&+$9/ťu"i!.-Cr?mۣsE?pбUcW{z [ngvdMkz·T\Q!FԬtdG3mjM +(BZ6C}yE {wNi3.x4nT{uWo` +> [A3 :}7?Ox@B=:rxbY+ ,J#PPS^ca{2y e20FDZϰV_N P*gIwϦf'G]RV,_.ܩR9ͭo7j~kb9AL5=_ *1(0"׶fF/{puOS[xfW G PBDt IL /. 񽡽1wyhEbJCco%$qBhqʭ_1d[Ӄ?^yavnͭYfh\-g۫F+c.͙4uM*SwYJԷAssCUՌfsم1$lg?D6^ .9$hivj?sX`Z|̔De=nc7r%ust$?l~_wOr!&'^x9whP7qCZymSJ$vwA<m8U\櫙XI.zR8A *ֈί)X}l;Ev + ]R w_dI=<(>8Z.bٺ%wt,:>v +g`jb8{qm"Yy:+1+wQ +AfHe&vKVu_|tB^mB,};:"ލ^{[Z#8=vjY}5Q Q|)^sXQS@3_n*L +.~YOx|\FwiӪ30J pQB.#FhV迦F[+|G6phq4-ɾi8:}X+6Rc&fPQ 'Ftn"_}և(n⛶ +(:0Xb-Oy%KCDwxm|w\\詮m͍Nݶaק9rl,A͘ׯDa(V;r*)o#3Gօtqlf+ö*gVTm6vb,U6~ǜB[{8vf :dQ*Rr]tb-y>%1{ugK6^],@ݧ9N[А}Bpy91w+.s1:9(0[|aj +`بCTqSQO} ^agOo˽Q/#wͧ&hAûjDR U2lOFPz~\[a԰T;^EöEc73)cAc^"F'RGbF{gϪ@RN- 5kf4h/ykP Ċj.&$,,%~=Kw˦jrn5MK\R.%i7m7>"eb\y#Fbz5+%L^}V:V/=fE1`2vRkɵz"o/ 5LZ}֑ԣeV~:\*P}Y-fDD|7iOwxK鮽M׷'Gzy +|/AH[ F@`QQ*\@?< +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/AKAVIY+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3398 +/Length3 533 +/Length 3958 +>> +stream +xgTSk`Hi $PDT)ґH@H $D4E HJ.UEQ:w[s3k͚~w}^JNsG9}g?yCcH@{ ӡ@oj5!j7*ANRhK>ڸ~1ϗͯk>)Ἵ)XE2Y5FpwоETQ]BMMxN[u["k^߮Ĝ~J|BM c!ݿŇ7?>rcN b":EsdAW]$&v*K=$ٮ4"Z fǀکs)X2oR]@BdR@d̸Zݝ'G@W +CAAv{FS$.907h%pP Lw|k\`ǩޟu݉FUcCde2UF/,39MɏcY;#q L Lz\|B'\_8Ͳ'9Isǣ1wLCWƯi)b8xzY{'G9΁=nhB6-Mb^4Jk6z54dZFI?K{|(H| /.3b>{]ܮ1KBvRG(qbտ:@zW0öZ[bvozw9!+ķS LQ{TRU28[kӲ`9}*t1f{Gk?t} rL7׏G']bk*wGT- +L88=a8L&W0D T'j= IO2*r.XnmծPk.7:0c qJvuU}M N,5]ZgKprJMjTCe @*lvϗ*j9CoAv(/=ݽl0p=1EWUJE s>uQ ds[o.߼j:8ڪ1~M\Hy?2_#6ә%eǎ3+kl07{Xb"Ӌ;tAW(i-+"*.g~ d5.yb5#衘EмduKF/8JXXcْK9ƤpɄ]rԈ$+?i=&LON(}u*FmTU:D/k-{!d8:@&#C~sOQIw ,t֥xvլ]Q'qcQnY4>wtZh^3u!mws?,^@VJu-Hёi8ѬE>/r^ȹ]}#82k Ɲ۟=\-5[/D2;'x漐$O2@)HO}8u㻱D3z,xərl|YIU7'FCU̱戯Bj-{D&噙H!u[RKo1؊F3M2a0]\0mTBmv[$"B[jOA(sbFop0|IZAďEdQ+Z? yQ>k=ӛ{} *TlN ^21C)S~%e "yzcbn[0V|g^:LRJv$Gc>Kis@ób_ϢM `m.޺$ z3H +s*LE^ZGF_=A1f٭ygqgL;KvTE/0Ϲhi%eƂ^.Fhehb)Mu\1קU6OiN  #elr i;Uvl~iiw_qmfo45^P -?‘7pufaU.liЂ>AiP\dYokK^B'.(5"ҎbR԰bnr5L'-$d?baT"8}&J7LUEAb5)$aw]_x!#j,$f0Կn=4ہFcrVT5mYYӕ 0rmㅊc+# azrj=QClu/q?&HF4r,{wbe6 аtGNqϐQd|(ᓀZqF6KAӧ[헿zFN BdX׾x.㙾J7f~e~ =MJI^V:JIoiWEK; wJ,kߺcIhQ 9FXLH1JOctXRn\zz3R,`_^?A! 7 +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/MDCDGI+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1964 +/Length3 533 +/Length 2497 +>> +stream +xy<%Ȗ= fԘfNG"e4fӣٌ#T:}˚NK:Z5s.3=ns_~>}?.8+=XHC$qrCHCL[ۆ XfK`X P2`&1l 6"c:6]h +2!"8X@ H8:YlCPϿn`< a0$ AD!3-I? 3D8u%N3r V,1ֿ6>Bq&P? 7@(t*#2': dҾz_ќ@JVu`(ъFk +A " K ~/Us!@4;WgZ0& (xf-;Nhd"H&ߙ' р1JpWa +:(|$2 g  v@ K]ABvEEP\q!w.I9:,D;=\?f(v[V$ ny = Lj/Dċʾ%M3O5E7 ʽ:&p +avah?ېT +QԘݱk, Ke|IFιTKGr2vsϳTń|TɩQ[*2R^ZNn}6ÆyۆHFo'G65hjqG籅yTIH5b_Y7|#{qu\S["zPUGyh?)旓T"/Pb'(> {,FV hh}5'tQhZ`B}׫ o>(i5VkV6 {yDkncuaZ>Ra&<ܦɛZJw0Vg\ TjJVmSxI$M2.x6>]GxQ?9>_6b!>6<ٵ"߾Lڠ*S,N:koVQOZ$.t6s ݅OrZii/I1HJ&<d)_,4x͘ {̐)>9:vF=9a"7>VhڐjȰh|`B쁭PWR;H1m1WX|lf2,b֞{@A[SGN?߬4Һx]J\6c)<7)\(9Ӈel;1l\seܾ G;QgxƜ ݪVfk貋 =/k|i5DXTЯЮ~R7 +%Wg^]+f%Ԛ g9u+66ƾ4KvOq"t[ +{ gqi=پcKjMu{<.-eȒL}G"Z)Fܱ?Q E^пK˭jz +M$;vntL`4;`Qܢ)*KRG*;ꇤQOsLE8YwvADԇƭDfΗo ڭa%,-: +X׹O .YSIJ8quv "G09}BF3qў*t{q}欼SO>kԨ/αߡC Ȑo:Uh +ȗ^uOrYZ ׹iTYd= xk'x/TD1l֯Kv=%o+DKc4$qRn͢G7h5wVEFBA&,'wx4ĭmV4x[5ݫhё{fu#xQdL sNm E=*_>O) ɢS 00u +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/SBDKQW+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1600 +>> +stream +xiTWR(pRB1RDG8`"n +Һ`((- +UlP(h JF)OOt|{kgwd@\WַWcn̒$vOy3bokpSYakA6]} ecrSOv! ^Ayp*:FZu;ErFo?]ff{BrˋԼ[/z7D~]ќ{gw9qτpx&6Ցf̋jyY;5xP *{v{f /W ԯRlfZs̓:hyY}g-2({ʗeSrmȠ=݇uj5:\9eij,VH$0Ʋr{Ʈ5qJ^{\4m5 5J~Nqꌟj:Cy:jh9Ȱߪ2Oj*O9jyp1{T²|U/hHxe>f8ti+my6 ݝthS,mnd'I] i,([5Gdo$~CH}%Ͻ?kjeunZYi ?S2α>`O PZziw?}4(RžjunqЧ޿Ij.nw873@# cOKlcu GEEJv~@OZ`ԎvXqyǮ[6 6>M{(:%&aQN~YvZeƬ T5gm^M5>oawu'+ 0O$BѤJcx +endstream +endobj +48 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/CTTIMM+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 47 0 R +/Flags 68 +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1796 +/Length3 533 +/Length 2335 +>> +stream +xk8T#d&b21Äb܆vPifh.lv JTJ.!$Dɝ=ϛw9k]g_CI׌8 Z1,]$pTC, +nAdXiddز^ +(T1|O/f4I!i +81H3*pL BHL!'Bbo22\WRm@IfЩA<ճg41ؿ1܊Mi_/m"B Aa@&@`A&G )lڏ], ԯ^Pgb}Jr;Æyy8$.;9|s)]QGʊb}gG E*=>c(Uc,-"9&Ni) JhWz,KqʉB4H2SolXw> EN{CzwAѣ;S>=dD$gDrR2F{zK3f]ƻۚii}/Zy#s` lUXH 2&˻ʪo*==1oz8oL/PDN r܍%R*B-e)2U) ;4ۇ;gSC8!{)XCDl~E xѺ9ٚL"$L-2{t}dM-zj ~j>.D][ 'vvIl,D}'!>>GlMW{>t1pP#ɑ`tm{d1RB[lK)NUp0P햵敿Ҥ`eי6ư+'MNGΉߤ8\mj]qс0/cJ8Oa{OToty*c\̜"{o݀9#1EYE']u*%ӕSG ^ɿˆy^ axZ'S껪 +/Ƥe^:[*ьʡKl5︅32XVTOYC̚;"qq/m.)J)Jans + ;2tq£<'$fy$'+ Ǣb~Z|.I;bc`O vMDjֺVʯU@Eue/s/ҫ!Ղk=8b,y!FӦulpS&soMܷ-ҲJ9ZJbq2䙯Q;:vz]j1Yξl>x/͋AF.n"2)BpIoᶎL/(~4 dn')ln՛mn|nq<-pp P=۠Igmq%a=ڠNq| :훎3JUE8iD[5Nr7=WL33|$pQ!F&H_̻mv"eg;/-][|/fR fJ'+wͭg:nNUiOE|tQ =ɶZMiE[팕x`kN>ѱ'sD +,< :2 +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/CYJLNJ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3765 +/Length3 533 +/Length 4319 +>> +stream +xg8k50fQDX)LcAt z%JDԈF( B"b[Y߱׷c~?}{=s? ē@8[@,D$HH X]0#c + GD{2Tz8$ 0wavp4XxlHda4pC, +`Q?eWI>H"q"3`MAdKUaos!o:ATK;X} I4RgpB:zXhXk ;qK +N p PB⒆=쭮7ΥZl+EτRwt08O'z)J͡M9ͯTURiLV +ۭUI}‹GtҚV龀ᖴid/ݨQgT;buJnz\oHr_ȚlS#hgMɇmݟ~cXU)vK)D)$0Zܜ?!.K2j~XQ{\ZP"צrǾ3CAŊVQzh*kGG< 9>HwOߎ8Og%YH>}kmN3݁}2צqv44_R9%&>(cK_xMc+֒% 2$ VV/;Vj0Ó//dU] +Xst| +|1~uQoWwG>_kho ~Z<RɃɱx.`vJ2Qv>[[;eaa=]{KG6n\h¼1 +|MtI!%rg|}NR04XFanPa<4CPe`l 80r1>2`ĿB1QH/8NIx`ʹWq@M|1VXiV&X#EcnC We +`#H>T8q5kPQkǤzʩcNUƸ4-qS+NYdjAfvHmh^Pnk5)K_|vNn k3Zd|q:iNDvйMLC^ڭQO&^X?Gia$Y9T9SfX2MMbĜ +r*vh]q7(ֹm7s_\!p> ikӰ?ܔs~tMƷ #ۥ]3A-;y{^*鈥*{]UiBnU {K˯D⬣3F +;g`w^ԇ6WꍓBf<7hV6a_kj\PVI銯"zEI բn c!:aty;>n3I[&ԂM{Zܝ[xEiR)3$&SGD-S(SRGVIBڰƸm +ăj°9{-TTu9UC}e%nLOt.c?ʅ2J,qE捛аbՉ+@LyjW2?F5aL۵%Ql ʾhqIdk26[1ݴ gU41)Gy):}ڦ;b_5w.1BCQKSqgVcRskxw͇UOsLlA-{2a5..^>0'>JmB,ۨmnZ~BisuvS/Fn<׿f|R.D~9m@_u[|Z>NL _W1E[Yġ7ymG2r!u>9l[: ?8~<1ot9ba|`[Ih˖rN]}Q0B8k]_7;ZZ8˕SPP yZy1:d ȖVDDJJ|r-솇,hH]8{$Ž<>azg+\zޥ&/A{qh5$݌ Q.4흠y+m(}#F%;9ո.p|.%%/@)|ŤkzUѮ+6\jn\k| &}^r))9q_)-T%f*4fB#PJf=cy敢q#6$>&Gʋ –*lSn\2մ(~WЃ SJm 1> )H䞍&@o3sTlAZfTߟ:86@^|uxOѲZ݄EBRL:G;)ŏZ6Q^ksj|cgaE֓|Ar7LjA7-C̮<5_{FX,+!PKojPٰP;*B{mLǍ|eۏqᵄ"sFe6V ']M)/根'X$H~]u +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/SNUSKE+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 58 0 R +/Flags 68 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0hGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&gu p HIvt +[QtGB&d"-D2Cpu4~za:;* 0ٗk_8%& c1cF*$)MD&OTH0267V3:}pxb0scedBt5A C?S(?*\^] ڱYQ*gV%Nl=.0*{7瀺=^);ćFT?|!sxf*\'+e̾]#?CS%O% Pb +rj(di6zB/ZUΡ۔2+*p*qH9IES_k|W~To\'wC`"xن+)yoV0ǎvߕ7GԶl)"66ּҍ-hL\Aإ2 dmM j}Z ^3 +xT~h3vj[]6}ͫ!X(7v橂 +>d~uO9Sω}VPGV<`OCKULdt=ѺCCN\]v5]_9в4oï#KK1|G"Г,'ȏ;;n^+ +O/QێDIżZ+2{cHc-}9hR]JXLS +mήŇp%GU)AKhʾ٩wk"vxmar9Efw:e=k6IFMv"_;R ̿6\n z&A!Ÿc qvwNvބߛ Nl]`exO<ּEr)Aͪtz]{m\ 1>hQ.S-IQSMl"kd,ڽv#PRihWc~Bq㗃^hU0j ;! W)s`|fwػ+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;\I+e2m hW?]rSJRL]e⸢ـjotԺ̴U!/s[qʑIb~K MVnlE^ro٘HˀyYh +A#>'fE\K$e7Wţ 'o[de|ĕ֪7< V1~-S3/3NeCUA\l9^OiG$R\|@놟Kz{^w`Pc|22[7Y35AlI1-K הC:g=ᦊvF> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 11331 +/Length3 533 +/Length 11885 +>> +stream +xSx&vұ7FǶmvfضmNo}k_ku}]UujT=$J¦v@ ;[gzff3IBhlig+f 0ss,f&6.88 +3Z_*N  olP3:{0 @_8TN@GW)33` 4cڦ.=r::7) NS;[hǨ`zh\R0F6 wq:L)Ng-bML:fErL%!ָjTҠў 1̵`w9'Tqx+potW0),7t4dE.tvhbާLeY<}`eBioxarVuazƕ= +xl˝W̊{kQE8k8@VB&?!|n)jj."kٙh0р,]S7 +FJL^: czIU7,ޝ۳pdt0 o7<wehZO +v8q_x֘_-/>F7S'ZiЋ7㤘|e<^p'V_U0[snSȢ!1˶gi[,f>QVMY ,,.ҥ`2:; BQa՝2jx +Gs.w'V#z̯Xs׌k``E#'qg3fq::}rƽakR>)zܫ;-F>mY'P\ϛO 5Sy<~eZG7Rk5_dBNl~YLŢ?k#_R3reCV/QG0"=:/V}Jm^@;ZzoYYѧ!MCeE<)z q ~f3 1ɻ!y.7foQE8&uJ:Vc:D-5Hil>U劌 8'ZX"664IQ"WBvT'AnizLFTg簚!떚98_R7 >…[( 229>\bZi}zi<-(EfX ȿ7YbgvJ/3{Y>VJ_t`쐢K;WP I`i8HwZQ5E\ +$h+%SMb,̝i8(y>*z 3]0\ +ٙ!j`$bfstAA'ty56ckɁR{> hPKqH˃QחL"|" >uPdBhLD y'Kb@v2Bg5(ᜋO;@|Phd"\-Pp$P{[|kCyWߢC?A^7$;0ϤV1[5EvB:J, ͳ6/,y1A :aep$<]AGwÛBR4֚Bl70:0xs%)qO\{ tTM SD|on NPRsY->ixkX/i/)6BӴF0e e ,XUf';;9hqNksc7k'&00u+cNYukĢ) ,XrII,]|ma]8؇s#\*p9j &GE=Y)1cUCY{Q3v`X!; =. ^篰HFkELzn Wlgnr!g]Q,1APH_ +<"[hޑ OԽ :Չ1{ *]9u?s>!ĂAg G *dNz?&Ҳ>*2 {ܳ9џ/0qKBk E=+%3CTΩaCNm-Mm%?IԚ5!'II#w2>L#2Tu嶱i^5FZRHg§YcFFHasFi-d$Iv#B<_{ҹMr/8KUne-L}0.+j̓ ~hS(BV dG~dRI/e%V1yEl&u}GCN0?E-gWо2H333.=xg3CYz==%Lu<> by99t3(UIQU*9K~5&??BvC澃*ޅ+3?QWM;TK`8H;&*-=Ơ(l49l,1s &i::yɤ$zjjEjB)ۧg#;Vj<bYi}n~tGzF# i/pdFG*soC0Ob.J +"- T"{PIg8!#xO09nY=N͋žk)s;䲬Y :%ɼစ4")?Ox_ervSPqB +;QzfMk26 +mtO87~q*R3jnUPTi:e'Ehh.\ &s1P41 \2 +gM lR tB=>Bǡ0\;]zBb"~\iDyܲDGdm ޕ=>ûuQYuPs0Ŭ⍧;͌VcÙ  Kh TGs2, ~5A<͋!$@'^egvF*Q}jB7D s`)$Hy97s wʖ{m'7~$T ΤZ /Iz:JJesX3(nZV*8Jҏ3Ǻ;Y+I2v66Ѡ'8@ѥ諎wQҗ=WȌ~-ᵘu7P#npZ dVCgdJӣ9v~(@I=q 5aQߐkvjHL ~ϧrt1{tعP8t M QgY +?=IMF-񵗝Ͳ?;\K,G@1xwί0Fuu,)%!uTvVd J)d ]{Tұ}#OqpZ z=DX|7Hy3(UO>o):Qkƒܯ"M)2%݋@~/p_.+Xbj>8(yJg8d{+.0QƦSU)Y7L \JtY = +-:>cRn279wk}V2Eܰ>:B0@B@DȃtNP1Qg?R5(4-,j4nq%+TBytVC}r{"2xp$ È|}Q ;@ٸ;.OKK((8$nVTK"\ܟtWqC%.Z+{V +&iH{/"u=l?C6\Xa' rx ~ɪeyƿV/Ud`}r뫙J( Q_a%:#4Q $bUKX,hKwgsPk# +NC4?V0%/JoZu>$E$@򧰃ӥTV'U")BYAaM#C:IGwfHle2m\+i=oWPEaO\)TBRom"@'\DaG(-أrJaW@{mF;/>CuͥÂ*ۥ ƁgcnZq xni*pd~]}r+9o)r{RmjkD C+tztpeG>5#Y1.pp9{IT#1{ KG.h#Js#)P}eIJI5נ\ZՖ+kRUB!i +6aZڳuC'm%N"L!Myj(h/jΓ]bX|4oLɵV/-Pjphb[HXzd۟N~F +Ǭ$tW>I$Y(%VE38=k;QS|2ub{\1xOEg!.&La.^rk@硿d|rSc{fg!ok?be? "bpgц? +_"=M],DVl"62st?$ҼklۤF;KD;CC;q,yDCnw/:(XهSkW}IgI,|);9-9-QP^[n2iX~j̻@v1XTz ~o 0Etq_kAB#|N[KFXYPۖie;gDܿ@1|@f ^F)vs^ ~nLQurg.Afm0C醒r0irˮEVm!hDoM%p N<M(gRtȬ-HTט0G l],DɔIby}U^a2z! ȟ2dւ~d] $^uёb(U:3ީyX}ɟƫ hKC>c{{3ΛM['7GJs mj$ػw jHpFL^47Sz+?n[~VYe{NAc 1Viʋ}&sղL UzDnކ8G=ɨI+j(m/(>ԡ"rS[k_5'F Au #_Ӆԗ&đޞ︍jCfrM}ݢYrs:HY&-Ĭ2a*Vkb5(X4z: *]gDɚX}^,K`1197͏2uL)Rijr97kdC'm"neL $Yt_GG\o?,8;C@Վ=T%TTQ4ɇi@ˤzmF! 3?gI:^(TCDiv񽂱 /)KmF(Qok& xvѨcW;RlBg܃5PYf @C3ෛ+;1o[+\%y& +$izFAGv}A0$w-tA`4XY FrʥuN%5طp/aI^PxZ _9, Tz,p*Q>E{?YJ#ލ?mgFR`i_ 3(P y P:<":ӢEu]4 +KlhCD9Mqʵ͓ :a+j b8@x="#m_yM;2KIkbPoT-IşaASO2lDaƛF65A7_h0fQ$-Bz9jFGZLn]A #=u-e.noװ^˃CƲyI }' +ɕ7gEU$ǿ4W1nv-E l&{l‡B񳪓mǦcgQ.;)!fiih^9w xH# '[zt 7P ={1UM&F)Hv\Ӝʜ[,/Q)tCRѻqVY8t0^kƾ-Sxsb!F;s+0Ns5OΉ9,wau t<%x=*  mhU fCq4-SXڄBي) +yv>m$f}o.6R|v]t/C*y@껹}6yBi.uԀd %`O7Nci NgY#%/'s[Tuâx%"U pY'WO_;NO}F= E@zataT꺨:`dkV)3Xc-;.{7ʲ:n@RKEEe""k I$I4k\gAelZ%4V ns}dΏ؝1r z27U `2dȋMZ0#9hb:O@źhccPBhc3-id(XJݤ6EFҌe瘥X匪TCB#0T4@f 縭`?k߀@0d(FX|cPe}㢵- +$b2ѦГAAWDOn?/j%;P7MMh'B2%`W4y?_7\U3կ/i[vQ*M#A +#p $^U ]WɃE\v=}? 䗹[>Ǽv U_Dv0 <]9mo}䯽ڇN,&Œ4]ҌbXR4 ՙ;*'}j='ܪWv@u!Q0JdY-&BimVy*fcBurXrgEwp(paр\vyգC(sQ`MuPƮтj\T%lt޽#ߑX7Y1$o<߻1`/"*0-8\biNҖ! K/X$po `b+M ]Z_l(H\Ĉ/?:,1'i"OI8=dyLQP?WDo4ٰXi h2w98 eusFSg@|9 N4b .ԬFn z܈權a(v +v S&+^:)R`M;v";Y$såY^\!%fxvnrid=xxlV@Zps]j/FBT Li%0Wn'iGXwǜS~r_եcR?6>$'O#/8&GkjXY'_U{yb)r3K6~lfk~?$]䰑ժͦ.]3Uώ#So<Hn za6hQkw54햠iSmG%IЖݴ'D ZDν>U}d`%yH(Td6tm̒ai촕Rf|Ұ +J:]"j$Hm*2k*WǞ>N=WSp(b?aYʍM_3-gƓ*|TM!.m}5qMrl+tL7"dѳa=ƑL_^HG=R5M]UK"{f؍f1VoxYNMDOϣ1%Gwa46A |b߸:|I=I[mt&O75Nccs\^ %3Q'tCw/%3o k{А'Ng*~eD& &Pb +V墾aJu͆NoXc9R9= eڴSXuGv5!3c +~1t#.R6GT!K/ ɍպ O\P"FȻ:V!~sl~(嘺! ;wGny5BK#SUW"&_4m^!E] 4ZҍDF"Ey>S.{Nͧ6~oJ/Tꁫ bemK^ja~^c*{bugD<@ۋɒxr +yW E>(=(H2^0j [˰i˄Z-X42"jckv&}[KUWpqW27ųiorW-epK+/ȝ'V4-  U JR`Q}OnN6.d9 籑R[Bu$%Sk78/5t1oï8k"ЙRZ)Uc?c>D?۽@S5 )J?>}GZ2|wV?Ryyx +3'ݗ9"2ޥ8]ojꆖ*UD?*a%*h*d֎[$C)) R@mHa I0m!.@q|ːbGߌ c +܄ Ĩ%J0J _p' L@@#Gg;#Gk8 y +endstream +endobj +90 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/CWRGGI+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 89 0 R +/Flags 68 +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D9L淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\.Aw +endstream +endobj +369 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/EKDXSQ+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 368 0 R +/Flags 68 +>> +endobj +368 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +374 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 45 0 R 52 0 R] +/Parent 373 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +376 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 83 0 R] +/Parent 375 0 R +>> +endobj +375 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 75 0 R 376 0 R] +/Parent 373 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +378 0 obj +<< +/Type/Pages +/Count 2 +/Kids[102 0 R 106 0 R] +/Parent 377 0 R +>> +endobj +377 0 obj +<< +/Type/Pages +/Count 5 +/Kids[87 0 R 94 0 R 98 0 R 378 0 R] +/Parent 373 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +380 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 379 0 R +>> +endobj +379 0 obj +<< +/Type/Pages +/Count 5 +/Kids[110 0 R 114 0 R 118 0 R 380 0 R] +/Parent 373 0 R +>> +endobj +373 0 obj +<< +/Type/Pages +/Count 19 +/Kids[374 0 R 375 0 R 377 0 R 379 0 R] +/Parent 3 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +383 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 382 0 R +>> +endobj +382 0 obj +<< +/Type/Pages +/Count 5 +/Kids[130 0 R 134 0 R 138 0 R 383 0 R] +/Parent 381 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +385 0 obj +<< +/Type/Pages +/Count 2 +/Kids[162 0 R 166 0 R] +/Parent 384 0 R +>> +endobj +384 0 obj +<< +/Type/Pages +/Count 5 +/Kids[150 0 R 154 0 R 158 0 R 385 0 R] +/Parent 381 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +387 0 obj +<< +/Type/Pages +/Count 2 +/Kids[182 0 R 186 0 R] +/Parent 386 0 R +>> +endobj +386 0 obj +<< +/Type/Pages +/Count 5 +/Kids[170 0 R 174 0 R 178 0 R 387 0 R] +/Parent 381 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +389 0 obj +<< +/Type/Pages +/Count 2 +/Kids[202 0 R 206 0 R] +/Parent 388 0 R +>> +endobj +388 0 obj +<< +/Type/Pages +/Count 5 +/Kids[190 0 R 194 0 R 198 0 R 389 0 R] +/Parent 381 0 R +>> +endobj +381 0 obj +<< +/Type/Pages +/Count 20 +/Kids[382 0 R 384 0 R 386 0 R 388 0 R] +/Parent 3 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 392 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 392 0 R +>> +endobj +392 0 obj +<< +/Type/Pages +/Count 2 +/Kids[222 0 R 226 0 R] +/Parent 391 0 R +>> +endobj +391 0 obj +<< +/Type/Pages +/Count 5 +/Kids[210 0 R 214 0 R 218 0 R 392 0 R] +/Parent 390 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 393 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 393 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 393 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 394 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 394 0 R +>> +endobj +394 0 obj +<< +/Type/Pages +/Count 2 +/Kids[242 0 R 246 0 R] +/Parent 393 0 R +>> +endobj +393 0 obj +<< +/Type/Pages +/Count 5 +/Kids[230 0 R 234 0 R 238 0 R 394 0 R] +/Parent 390 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 396 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 396 0 R +>> +endobj +396 0 obj +<< +/Type/Pages +/Count 2 +/Kids[262 0 R 266 0 R] +/Parent 395 0 R +>> +endobj +395 0 obj +<< +/Type/Pages +/Count 5 +/Kids[250 0 R 254 0 R 258 0 R 396 0 R] +/Parent 390 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 398 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 398 0 R +>> +endobj +398 0 obj +<< +/Type/Pages +/Count 2 +/Kids[282 0 R 286 0 R] +/Parent 397 0 R +>> +endobj +397 0 obj +<< +/Type/Pages +/Count 5 +/Kids[270 0 R 274 0 R 278 0 R 398 0 R] +/Parent 390 0 R +>> +endobj +390 0 obj +<< +/Type/Pages +/Count 20 +/Kids[391 0 R 393 0 R 395 0 R 397 0 R] +/Parent 3 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 400 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 400 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 400 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 401 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 401 0 R +>> +endobj +401 0 obj +<< +/Type/Pages +/Count 2 +/Kids[302 0 R 306 0 R] +/Parent 400 0 R +>> +endobj +400 0 obj +<< +/Type/Pages +/Count 5 +/Kids[290 0 R 294 0 R 298 0 R 401 0 R] +/Parent 399 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 402 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 402 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 402 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 403 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 328 0 R 19 0 R] +/Parent 403 0 R +>> +endobj +403 0 obj +<< +/Type/Pages +/Count 2 +/Kids[322 0 R 326 0 R] +/Parent 402 0 R +>> +endobj +402 0 obj +<< +/Type/Pages +/Count 5 +/Kids[310 0 R 314 0 R 318 0 R 403 0 R] +/Parent 399 0 R +>> +endobj +330 0 obj +<< +/Type/Page +/Resources 331 0 R +/Contents[17 0 R 4 0 R 332 0 R 19 0 R] +/Parent 404 0 R +>> +endobj +334 0 obj +<< +/Type/Page +/Resources 335 0 R +/Contents[17 0 R 4 0 R 336 0 R 19 0 R] +/Parent 404 0 R +>> +endobj +338 0 obj +<< +/Type/Page +/Resources 339 0 R +/Contents[17 0 R 4 0 R 340 0 R 19 0 R] +/Parent 404 0 R +>> +endobj +342 0 obj +<< +/Type/Page +/Resources 343 0 R +/Contents[17 0 R 4 0 R 344 0 R 19 0 R] +/Parent 405 0 R +>> +endobj +346 0 obj +<< +/Type/Page +/Resources 347 0 R +/Contents[17 0 R 4 0 R 348 0 R 19 0 R] +/Parent 405 0 R +>> +endobj +405 0 obj +<< +/Type/Pages +/Count 2 +/Kids[342 0 R 346 0 R] +/Parent 404 0 R +>> +endobj +404 0 obj +<< +/Type/Pages +/Count 5 +/Kids[330 0 R 334 0 R 338 0 R 405 0 R] +/Parent 399 0 R +>> +endobj +350 0 obj +<< +/Type/Page +/Resources 351 0 R +/Contents[17 0 R 4 0 R 352 0 R 19 0 R] +/Parent 406 0 R +>> +endobj +354 0 obj +<< +/Type/Page +/Resources 355 0 R +/Contents[17 0 R 4 0 R 356 0 R 19 0 R] +/Parent 406 0 R +>> +endobj +358 0 obj +<< +/Type/Page +/Resources 359 0 R +/Contents[17 0 R 4 0 R 360 0 R 19 0 R] +/Parent 406 0 R +>> +endobj +362 0 obj +<< +/Type/Page +/Resources 363 0 R +/Contents[17 0 R 4 0 R 364 0 R 19 0 R] +/Parent 407 0 R +>> +endobj +366 0 obj +<< +/Type/Page +/Resources 367 0 R +/Contents[17 0 R 4 0 R 371 0 R 19 0 R] +/Parent 407 0 R +>> +endobj +407 0 obj +<< +/Type/Pages +/Count 2 +/Kids[362 0 R 366 0 R] +/Parent 406 0 R +>> +endobj +406 0 obj +<< +/Type/Pages +/Count 5 +/Kids[350 0 R 354 0 R 358 0 R 407 0 R] +/Parent 399 0 R +>> +endobj +399 0 obj +<< +/Type/Pages +/Count 20 +/Kids[400 0 R 402 0 R 404 0 R 406 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 79 +/Kids[373 0 R 381 0 R 390 0 R 399 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +408 0 obj +<< +>> +endobj +409 0 obj +null +endobj +410 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 408 0 R +/Threads 409 0 R +/Names 410 0 R +>> +endobj +xref +0 411 +0000000000 65535 f +0000160808 00000 n +0000173030 00000 n +0000172675 00000 n +0000172880 00000 n +0000160972 00000 n +0000004048 00000 n +0000000009 00000 n +0000087444 00000 n +0000087260 00000 n +0000000913 00000 n +0000092234 00000 n +0000092048 00000 n +0000001906 00000 n +0000097683 00000 n +0000097495 00000 n +0000002823 00000 n +0000172780 00000 n +0000003740 00000 n +0000172830 00000 n +0000003993 00000 n +0000161075 00000 n +0000013287 00000 n +0000107739 00000 n +0000107550 00000 n +0000004109 00000 n +0000113010 00000 n +0000112820 00000 n +0000005055 00000 n +0000118314 00000 n +0000118125 00000 n +0000005991 00000 n +0000006967 00000 n +0000122589 00000 n +0000122395 00000 n +0000007921 00000 n +0000126847 00000 n +0000126661 00000 n +0000008867 00000 n +0000009831 00000 n +0000129653 00000 n +0000129458 00000 n +0000011447 00000 n +0000012398 00000 n +0000013188 00000 n +0000161180 00000 n +0000015424 00000 n +0000131558 00000 n +0000131367 00000 n +0000013349 00000 n +0000014344 00000 n +0000015324 00000 n +0000161285 00000 n +0000020842 00000 n +0000134201 00000 n +0000134007 00000 n +0000015486 00000 n +0000016457 00000 n +0000138829 00000 n +0000138634 00000 n +0000017364 00000 n +0000018346 00000 n +0000141486 00000 n +0000141300 00000 n +0000019323 00000 n +0000020068 00000 n +0000020718 00000 n +0000161484 00000 n +0000021743 00000 n +0000020904 00000 n +0000021608 00000 n +0000161589 00000 n +0000022778 00000 n +0000021805 00000 n +0000022643 00000 n +0000161694 00000 n +0000023892 00000 n +0000022840 00000 n +0000023757 00000 n +0000161799 00000 n +0000025122 00000 n +0000023954 00000 n +0000024987 00000 n +0000161904 00000 n +0000026182 00000 n +0000025184 00000 n +0000026058 00000 n +0000162186 00000 n +0000028378 00000 n +0000153681 00000 n +0000153487 00000 n +0000026244 00000 n +0000027254 00000 n +0000028219 00000 n +0000162291 00000 n +0000029358 00000 n +0000028440 00000 n +0000029223 00000 n +0000162396 00000 n +0000030492 00000 n +0000029420 00000 n +0000030356 00000 n +0000162502 00000 n +0000031471 00000 n +0000030555 00000 n +0000031335 00000 n +0000162610 00000 n +0000032544 00000 n +0000031535 00000 n +0000032408 00000 n +0000162897 00000 n +0000033528 00000 n +0000032608 00000 n +0000033392 00000 n +0000163005 00000 n +0000034684 00000 n +0000033592 00000 n +0000034548 00000 n +0000163113 00000 n +0000035286 00000 n +0000034748 00000 n +0000035240 00000 n +0000163221 00000 n +0000036381 00000 n +0000035350 00000 n +0000036256 00000 n +0000163329 00000 n +0000036698 00000 n +0000036445 00000 n +0000036652 00000 n +0000163717 00000 n +0000037803 00000 n +0000036762 00000 n +0000037678 00000 n +0000163825 00000 n +0000038127 00000 n +0000037867 00000 n +0000038081 00000 n +0000163933 00000 n +0000039422 00000 n +0000038191 00000 n +0000039286 00000 n +0000164041 00000 n +0000039739 00000 n +0000039486 00000 n +0000039693 00000 n +0000164149 00000 n +0000040783 00000 n +0000039803 00000 n +0000040658 00000 n +0000164439 00000 n +0000041294 00000 n +0000040847 00000 n +0000041248 00000 n +0000164547 00000 n +0000042577 00000 n +0000041358 00000 n +0000042441 00000 n +0000164655 00000 n +0000043077 00000 n +0000042641 00000 n +0000043031 00000 n +0000164763 00000 n +0000044401 00000 n +0000043141 00000 n +0000044265 00000 n +0000164871 00000 n +0000045118 00000 n +0000044465 00000 n +0000045072 00000 n +0000165161 00000 n +0000045914 00000 n +0000045182 00000 n +0000045868 00000 n +0000165269 00000 n +0000046665 00000 n +0000045978 00000 n +0000046619 00000 n +0000165377 00000 n +0000047363 00000 n +0000046729 00000 n +0000047317 00000 n +0000165485 00000 n +0000047858 00000 n +0000047427 00000 n +0000047812 00000 n +0000165593 00000 n +0000049162 00000 n +0000047922 00000 n +0000049026 00000 n +0000165883 00000 n +0000049876 00000 n +0000049226 00000 n +0000049830 00000 n +0000165991 00000 n +0000050698 00000 n +0000049940 00000 n +0000050652 00000 n +0000166099 00000 n +0000051500 00000 n +0000050762 00000 n +0000051454 00000 n +0000166207 00000 n +0000052276 00000 n +0000051564 00000 n +0000052230 00000 n +0000166315 00000 n +0000052875 00000 n +0000052340 00000 n +0000052829 00000 n +0000166703 00000 n +0000054455 00000 n +0000052939 00000 n +0000054295 00000 n +0000166811 00000 n +0000055158 00000 n +0000054519 00000 n +0000055112 00000 n +0000166919 00000 n +0000055927 00000 n +0000055222 00000 n +0000055881 00000 n +0000167027 00000 n +0000056689 00000 n +0000055991 00000 n +0000056643 00000 n +0000167135 00000 n +0000057525 00000 n +0000056753 00000 n +0000057479 00000 n +0000167425 00000 n +0000058237 00000 n +0000057589 00000 n +0000058191 00000 n +0000167533 00000 n +0000058957 00000 n +0000058301 00000 n +0000058911 00000 n +0000167641 00000 n +0000059725 00000 n +0000059021 00000 n +0000059679 00000 n +0000167749 00000 n +0000060479 00000 n +0000059789 00000 n +0000060433 00000 n +0000167857 00000 n +0000060747 00000 n +0000060543 00000 n +0000060701 00000 n +0000168147 00000 n +0000062028 00000 n +0000060811 00000 n +0000061892 00000 n +0000168255 00000 n +0000062814 00000 n +0000062092 00000 n +0000062768 00000 n +0000168363 00000 n +0000063595 00000 n +0000062878 00000 n +0000063549 00000 n +0000168471 00000 n +0000064260 00000 n +0000063659 00000 n +0000064214 00000 n +0000168579 00000 n +0000065020 00000 n +0000064324 00000 n +0000064974 00000 n +0000168869 00000 n +0000065651 00000 n +0000065084 00000 n +0000065605 00000 n +0000168977 00000 n +0000066932 00000 n +0000065715 00000 n +0000066784 00000 n +0000169085 00000 n +0000067711 00000 n +0000066996 00000 n +0000067665 00000 n +0000169193 00000 n +0000068473 00000 n +0000067775 00000 n +0000068427 00000 n +0000169301 00000 n +0000069227 00000 n +0000068537 00000 n +0000069181 00000 n +0000169689 00000 n +0000069916 00000 n +0000069291 00000 n +0000069870 00000 n +0000169797 00000 n +0000070721 00000 n +0000069980 00000 n +0000070675 00000 n +0000169905 00000 n +0000071411 00000 n +0000070785 00000 n +0000071365 00000 n +0000170013 00000 n +0000072174 00000 n +0000071475 00000 n +0000072128 00000 n +0000170121 00000 n +0000072964 00000 n +0000072238 00000 n +0000072918 00000 n +0000170411 00000 n +0000074464 00000 n +0000073028 00000 n +0000074316 00000 n +0000170519 00000 n +0000075178 00000 n +0000074528 00000 n +0000075132 00000 n +0000170627 00000 n +0000075958 00000 n +0000075242 00000 n +0000075912 00000 n +0000170735 00000 n +0000076637 00000 n +0000076022 00000 n +0000076591 00000 n +0000170843 00000 n +0000077442 00000 n +0000076701 00000 n +0000077396 00000 n +0000171133 00000 n +0000078224 00000 n +0000077506 00000 n +0000078178 00000 n +0000171241 00000 n +0000078975 00000 n +0000078288 00000 n +0000078929 00000 n +0000171349 00000 n +0000079670 00000 n +0000079039 00000 n +0000079624 00000 n +0000171457 00000 n +0000080435 00000 n +0000079734 00000 n +0000080389 00000 n +0000171565 00000 n +0000081241 00000 n +0000080499 00000 n +0000081195 00000 n +0000171855 00000 n +0000082010 00000 n +0000081305 00000 n +0000081964 00000 n +0000171963 00000 n +0000083402 00000 n +0000082074 00000 n +0000083242 00000 n +0000172071 00000 n +0000084682 00000 n +0000083466 00000 n +0000084522 00000 n +0000172179 00000 n +0000085811 00000 n +0000084746 00000 n +0000085662 00000 n +0000172287 00000 n +0000087196 00000 n +0000155098 00000 n +0000154903 00000 n +0000085875 00000 n +0000086798 00000 n +0000087138 00000 n +0000163619 00000 n +0000161390 00000 n +0000162090 00000 n +0000162009 00000 n +0000162801 00000 n +0000162718 00000 n +0000163520 00000 n +0000163437 00000 n +0000166605 00000 n +0000164340 00000 n +0000164257 00000 n +0000165062 00000 n +0000164979 00000 n +0000165784 00000 n +0000165701 00000 n +0000166506 00000 n +0000166423 00000 n +0000169591 00000 n +0000167326 00000 n +0000167243 00000 n +0000168048 00000 n +0000167965 00000 n +0000168770 00000 n +0000168687 00000 n +0000169492 00000 n +0000169409 00000 n +0000172577 00000 n +0000170312 00000 n +0000170229 00000 n +0000171034 00000 n +0000170951 00000 n +0000171756 00000 n +0000171673 00000 n +0000172478 00000 n +0000172395 00000 n +0000172962 00000 n +0000172985 00000 n +0000173007 00000 n +trailer +<< +/Size 411 +/Root 2 0 R +/Info 1 0 R +>> +startxref +173128 +%%EOF diff --git a/src/axiom-website/CATS/schaum18.input.pamphlet b/src/axiom-website/CATS/schaum18.input.pamphlet new file mode 100644 index 0000000..62de8d7 --- /dev/null +++ b/src/axiom-website/CATS/schaum18.input.pamphlet @@ -0,0 +1,2310 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum18.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.369~~~~~$\displaystyle +\int{\cos ax ~dx}$} +$$\int{\cos ax}= +\frac{\sin{ax}}{a} +$$ +<<*>>= +)spool schaum18.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(cos(a*x),x) +--R +--R +--R sin(a x) +--R (1) -------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=sin(a*x)/a +--R +--R sin(a x) +--R (2) -------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:369 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.370~~~~~$\displaystyle +\int{x\cos{ax}~dx}$} +$$\int{x\cos{ax}}= +\frac{\cos{ax}}{a^2}+\frac{x\sin{ax}}{a} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*cos(a*x),x) +--R +--R +--R a x sin(a x) + cos(a x) +--R (1) ----------------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=cos(a*x)/a^2+(x*sin(a*x))/a +--R +--R a x sin(a x) + cos(a x) +--R (2) ----------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:370 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.371~~~~~$\displaystyle +\int{x^2\cos{ax}~dx}$} +$$\int{x^2\cos{ax}}= +\frac{2x}{a^2}\cos{ax}+\left(\frac{x^2}{a}-\frac{2}{a^3}\right)\sin{ax} +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2*cos(a*x),x) +--R +--R +--R 2 2 +--R (a x - 2)sin(a x) + 2a x cos(a x) +--R (1) ---------------------------------- +--R 3 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=(2*x)/a^2*cos(a*x)+(x^2/a-2/a^3)*sin(a*x) +--R +--R 2 2 +--R (a x - 2)sin(a x) + 2a x cos(a x) +--R (2) ---------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 9 14:371 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.372~~~~~$\displaystyle +\int{x^3\cos{ax}~dx}$} +$$\int{x^3\cos{ax}}= +\left(\frac{3x^2}{a^2}-\frac{6}{a^4}\right)\cos{ax} ++\left(\frac{x^3}{a}-\frac{6x}{a^3}\right)\sin{ax} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(x^3*cos(a*x),x) +--R +--R +--R 3 3 2 2 +--R (a x - 6a x)sin(a x) + (3a x - 6)cos(a x) +--R (1) ------------------------------------------- +--R 4 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=((3*x^2)/a^2-6/a^4)*cos(a*x)+(x^3/a-(6*x)/a^3)*sin(a*x) +--R +--R 3 3 2 2 +--R (a x - 6a x)sin(a x) + (3a x - 6)cos(a x) +--R (2) ------------------------------------------- +--R 4 +--R a +--R Type: Expression Integer +--E + +--S 12 14:372 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.373~~~~~$\displaystyle +\int{\frac{\cos{ax}}{x}}~dx$} +$$\int{\frac{\cos{ax}}{x}}= +\ln{x}-\frac{(ax)^2}{2\cdot 2!}+\frac{(ax)^4}{4\cdot 4!} +-\frac{(ax)^6}{6\cdot 6!}+\cdots +$$ +<<*>>= +)clear all + +--S 13 14:373 Schaums and Axiom agree by definition +aa:=integrate(cos(x)/x,x) +--R +--R +--R (1) Ci(x) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.374~~~~~$\displaystyle +\int{\frac{\cos{ax}}{x^2}}~dx$} +$$\int{\frac{\cos{ax}}{x^2}}= +-\frac{\cos{ax}}{x}-a\int{\frac{\sin{ax}}{x}} +$$ +<<*>>= +)clear all + +--S 14 14:374 Axiom cannot compute this integral +aa:=integrate(cos(a*x)/x^2,x) +--R +--R +--R x +--I ++ cos(%I a) +--I (1) | --------- d%I +--R ++ 2 +--I %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.375~~~~~$\displaystyle +\int{\frac{dx}{\cos{ax}}}$} +$$\int{\frac{1}{\cos{ax}}}= +\frac{1}{a}\ln(\sec{ax}-\tan{ax})= +\frac{1}{a}\ln\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(1/cos(a*x),x) +--R +--R +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ----------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb1:=1/a*log(sec(a*x)+tan(a*x)) +--R +--R log(tan(a x) + sec(a x)) +--R (2) ------------------------ +--R a +--R Type: Expression Integer +--E + +--S 17 +bb2:=1/a*log(tan(%pi/4+(a*x)/2)) +--R +--R 2a x + %pi +--R log(tan(----------)) +--R 4 +--R (3) -------------------- +--R a +--R Type: Expression Integer +--E + +--S 18 +cc1:=aa-bb1 +--R +--R (4) +--R sin(a x) + cos(a x) + 1 +--R - log(tan(a x) + sec(a x)) + log(-----------------------) +--R cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 19 +cc2:=aa-bb2 +--R +--R (5) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 20 14:375 Schaums and Axiom differ by a constant +complexNormalize cc1 +--R +--R log(- 1) +--R (6) -------- +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.376~~~~~$\displaystyle +\int{\frac{x~dx}{\cos{ax}}}$} +$$\int{\frac{x}{\cos{ax}}}= +\frac{1}{a^2}\left\{ +\frac{(ax)^2}{2}+\frac{(ax)^4}{8}+\frac{5(ax)^6}{144}+\cdots+ +\frac{E_n(ax)^{2n+2}}{(2n+2)(2n)!}+\cdots +\right\} +$$ +<<*>>= +)clear all + +--S 21 14:376 Axiom cannot compute this integral +aa:=integrate(x/cos(a*x),x) +--R +--R +--R x +--I ++ %I +--I (1) | --------- d%I +--I ++ cos(%I a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.377~~~~~$\displaystyle +\int{\cos^2{ax}}~dx$} +$$\int{\cos^2{ax}}= +\frac{x}{2}+\frac{\sin{2ax}}{4a} +$$ +<<*>>= +)clear all + +--S 22 +aa:=integrate(cos(a*x)^2,x) +--R +--R +--R cos(a x)sin(a x) + a x +--R (1) ---------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 23 +bb:=x/2+sin(2*a*x)/(4*a) +--R +--R sin(2a x) + 2a x +--R (2) ---------------- +--R 4a +--R Type: Expression Integer +--E + +--S 24 +cc:=aa-bb +--R +--R - sin(2a x) + 2cos(a x)sin(a x) +--R (3) ------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 25 +cossinrule:=rule(cos(b)*sin(a) == 1/2*(sin(a-b)+sin(a+b))) +--R +--R +--I %M sin(b + a) - %M sin(b - a) +--I (4) %M cos(b)sin(a) == ----------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 26 14:377 Schaums and Axiom agree +dd:=cossinrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.378~~~~~$\displaystyle +\int{x\cos^2{ax}}~dx$} +$$\int{x\cos^2{ax}}= +\frac{x^2}{4}+\frac{x\sin{2ax}}{4a}+\frac{\cos{2ax}}{8a^2} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(x*cos(a*x)^2,x) +--R +--R +--R 2 2 2 +--R 2a x cos(a x)sin(a x) + cos(a x) + a x +--R (1) ---------------------------------------- +--R 2 +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 28 +bb:=x^2/4+(x*sin(2*a*x))/(4*a)+cos(2*a*x)/(8*a^2) +--R +--R 2 2 +--R 2a x sin(2a x) + cos(2a x) + 2a x +--R (2) ---------------------------------- +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 29 +cc:=aa-bb +--R +--R 2 +--R - 2a x sin(2a x) + 4a x cos(a x)sin(a x) - cos(2a x) + 2cos(a x) +--R (3) ----------------------------------------------------------------- +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 30 +cossinrule:=rule(cos(b)*sin(a) == 1/2*(sin(a-b)+sin(a+b))) +--R +--R +--I %N sin(b + a) - %N sin(b - a) +--I (4) %N cos(b)sin(a) == ----------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 31 +dd:=cossinrule cc +--R +--R 2 +--R - cos(2a x) + 2cos(a x) +--R (5) ------------------------ +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 32 +coscosrule:=rule(cos(a)*cos(b) == 1/2*(cos(a-b)+cos(a+b))) +--R +--R +--I %O cos(b + a) + %O cos(b - a) +--I (6) %O cos(a)cos(b) == ----------------------------- +--I 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 33 +ee:=coscosrule dd +--R +--R 2 +--R - cos(2a x) + 2cos(a x) +--R (7) ------------------------ +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 34 +cossqrrule1:=rule(cos(a)^2 == 1/2+1/2*cos(2*a)) +--R +--R 2 cos(2a) + 1 +--R (8) cos(a) == ----------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 35 14:378 Schaums and Axiom differ by a constant +ff:=cossqrrule1 ee +--R +--R 1 +--R (9) --- +--R 2 +--R 8a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.379~~~~~$\displaystyle +\int{\cos^3{ax}}~dx$} +$$\int{\cos^3{ax}}= +\frac{\sin{ax}}{a}-\frac{\sin^3{ax}}{3a} +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(cos(a*x)^3,x) +--R +--R +--R 2 +--R (cos(a x) + 2)sin(a x) +--R (1) ----------------------- +--R 3a +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=sin(a*x)/a-sin(a*x)^3/(3*a) +--R +--R 3 +--R - sin(a x) + 3sin(a x) +--R (2) ----------------------- +--R 3a +--R Type: Expression Integer +--E + +--S 38 +cc:=aa-bb +--R +--R 3 2 +--R sin(a x) + (cos(a x) - 1)sin(a x) +--R (3) ----------------------------------- +--R 3a +--R Type: Expression Integer +--E + +--S 39 +cossqrrule:=rule(cos(a)^2 == 1-sin(a)^2) +--R +--R 2 2 +--R (4) cos(a) == - sin(a) + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 40 14:379 Schaums and Axiom agree +dd:=cossqrrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.380~~~~~$\displaystyle +\int{\cos^4{ax}}~dx$} +$$\int{\cos^4{ax}}= +\frac{3x}{8}+\frac{\sin{2ax}}{4a}+\frac{\sin{4ax}}{32a} +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(cos(a*x)^4,x) +--R +--R +--R 3 +--R (2cos(a x) + 3cos(a x))sin(a x) + 3a x +--R (1) --------------------------------------- +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=(3*x)/8+sin(2*a*x)/(4*a)+sin(4*a*x)/(32*a) +--R +--R sin(4a x) + 8sin(2a x) + 12a x +--R (2) ------------------------------ +--R 32a +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R 3 +--R - sin(4a x) - 8sin(2a x) + (8cos(a x) + 12cos(a x))sin(a x) +--R (3) ------------------------------------------------------------ +--R 32a +--R Type: Expression Integer +--E + +--S 44 14:380 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.381~~~~~$\displaystyle +\int{\frac{dx}{\cos^2{ax}}}$} +$$\int{\frac{1}{\cos^2{ax}}}= +\frac{\tan{ax}}{a} +$$ +<<*>>= +)clear all + +--S 45 +aa:=integrate(1/cos(a*x)^2,x) +--R +--R +--R sin(a x) +--R (1) ---------- +--R a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 46 +bb:=tan(a*x)/a +--R +--R tan(a x) +--R (2) -------- +--R a +--R Type: Expression Integer +--E + +--S 47 +cc:=aa-bb +--R +--R - cos(a x)tan(a x) + sin(a x) +--R (3) ----------------------------- +--R a cos(a x) +--R Type: Expression Integer +--E + +--S 48 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 49 14:381 Schaums and Axiom agree +dd:=tanrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.382~~~~~$\displaystyle +\int{\frac{dx}{\cos^3{ax}}}$} +$$\int{\frac{1}{\cos^3{ax}}}= +\frac{\sin{ax}}{2a\cos^2{ax}} ++\frac{1}{2a}\ln\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right) +$$ +<<*>>= +)clear all + +--S 50 +aa:=integrate(1/cos(a*x)^3,x) +--R +--R +--R (1) +--R 2 sin(a x) + cos(a x) + 1 +--R cos(a x) log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2 sin(a x) - cos(a x) - 1 +--R - cos(a x) log(-----------------------) + sin(a x) +--R cos(a x) + 1 +--R / +--R 2 +--R 2a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 51 +bb:=sin(a*x)/(2*a*cos(a*x)^2)+1/(2*a)*log(tan(%pi/4+(a*x)/2)) +--R +--R 2 2a x + %pi +--R cos(a x) log(tan(----------)) + sin(a x) +--R 4 +--R (2) ---------------------------------------- +--R 2 +--R 2a cos(a x) +--R Type: Expression Integer +--E + +--S 52 +cc:=aa-bb +--R +--R (3) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 53 14:382 Schaums and Axiom differ by a constant +complexNormalize cc +--R +--R log(- 1) +--R (4) -------- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.383~~~~~$\displaystyle +\int{\cos{px}\cos{qx}}~dx$} +$$\int{\cos{ax}\cos{px}}= +\frac{\sin{(a-p)x}}{2(a-p)}+\frac{\sin{(a+p)x}}{2(a+p)} +$$ +<<*>>= +)clear all + +--S 54 +aa:=integrate(cos(a*x)*cos(p*x),x) +--R +--R p cos(a x)sin(p x) - a cos(p x)sin(a x) +--R (1) --------------------------------------- +--R 2 2 +--R p - a +--R Type: Union(Expression Integer,...) +--E + +--S 55 +bb:=(sin((a-p)*x))/(2*(a-p))+(sin((a+p)*x))/(2*(a+p)) +--R +--R (p - a)sin((p + a)x) + (p + a)sin((p - a)x) +--R (2) ------------------------------------------- +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E + +--S 56 +cc:=aa-bb +--R +--R (3) +--R (- p + a)sin((p + a)x) + 2p cos(a x)sin(p x) + (- p - a)sin((p - a)x) +--R + +--R - 2a cos(p x)sin(a x) +--R / +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E + +--S 57 14:383 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.384~~~~~$\displaystyle +\int{\frac{dx}{1-\cos{ax}}}$} +$$\int{\frac{1}{1-\cos{ax}}}= +-\frac{1}{a}\cot\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 58 +aa:=integrate(1/(1-cos(a*x)),x) +--R +--R +--R - cos(a x) - 1 +--R (1) -------------- +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 59 +bb:=-1/a*cot((a*x)/2) +--R +--R a x +--R cot(---) +--R 2 +--R (2) - -------- +--R a +--R Type: Expression Integer +--E + +--S 60 +cc:=aa-bb +--R +--R a x +--R cot(---)sin(a x) - cos(a x) - 1 +--R 2 +--R (3) ------------------------------- +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 61 14:384 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.385~~~~~$\displaystyle +\int{\frac{x~dx}{1-\cos{ax}}}$} +$$\int{\frac{x}{1-\cos{ax}}}= +-\frac{x}{a}\cot\frac{ax}{2} ++\frac{2}{a^2}\ln~\sin\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 62 +aa:=integrate(x/(1-cos(a*x)),x) +--R +--R (1) +--R sin(a x) 2 +--R 2sin(a x)log(------------) - sin(a x)log(------------) - a x cos(a x) - a x +--R cos(a x) + 1 cos(a x) + 1 +--R --------------------------------------------------------------------------- +--R 2 +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 63 +bb:=-x/a*cot((a*x)/2)+2/a^2*log(sin((a*x)/2)) +--R +--R a x a x +--R 2log(sin(---)) - a x cot(---) +--R 2 2 +--R (2) ----------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 64 +cc:=aa-bb +--R +--R (3) +--R sin(a x) a x +--R 2sin(a x)log(------------) - 2sin(a x)log(sin(---)) +--R cos(a x) + 1 2 +--R + +--R 2 a x +--R - sin(a x)log(------------) + a x cot(---)sin(a x) - a x cos(a x) - a x +--R cos(a x) + 1 2 +--R / +--R 2 +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 65 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 66 +dd:=cotrule cc +--R +--R (5) +--R a x sin(a x) a x a x +--R 2sin(---)sin(a x)log(------------) - 2sin(---)sin(a x)log(sin(---)) +--R 2 cos(a x) + 1 2 2 +--R + +--R a x 2 a x +--R - sin(---)sin(a x)log(------------) + a x cos(---)sin(a x) +--R 2 cos(a x) + 1 2 +--R + +--R a x +--R (- a x cos(a x) - a x)sin(---) +--R 2 +--R / +--R 2 a x +--R a sin(---)sin(a x) +--R 2 +--R Type: Expression Integer +--E + +--S 67 +ee:=expandLog dd +--R +--R (6) +--R a x a x a x +--R 2sin(---)sin(a x)log(sin(a x)) - 2sin(---)sin(a x)log(sin(---)) +--R 2 2 2 +--R + +--R a x +--R - sin(---)sin(a x)log(cos(a x) + 1) +--R 2 +--R + +--R a x a x a x +--R (- log(2)sin(---) + a x cos(---))sin(a x) + (- a x cos(a x) - a x)sin(---) +--R 2 2 2 +--R / +--R 2 a x +--R a sin(---)sin(a x) +--R 2 +--R Type: Expression Integer +--E + +--S 68 14:385 Schaums and Axiom agree +complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.386~~~~~$\displaystyle +\int{\frac{dx}{1+\cos{ax}}}$} +$$\int{\frac{1}{1+\cos{ax}}}= +\frac{1}{a}\tan\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 69 +aa:=integrate(1/(1+cos(a*x)),x) +--R +--R sin(a x) +--R (1) -------------- +--R a cos(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 70 +bb:=1/a*tan((a*x)/2) +--R +--R a x +--R tan(---) +--R 2 +--R (2) -------- +--R a +--R Type: Expression Integer +--E + +--S 71 +cc:=aa-bb +--R +--R a x +--R (- cos(a x) - 1)tan(---) + sin(a x) +--R 2 +--R (3) ----------------------------------- +--R a cos(a x) + a +--R Type: Expression Integer +--E + +--S 72 14:386 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.387~~~~~$\displaystyle +\int{\frac{x~dx}{1+\cos{ax}}}$} +$$\int{\frac{x}{1+\cos{ax}}}= +\frac{x}{a}\tan\frac{ax}{2} ++\frac{2}{a^2}\ln~\cos\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 73 +aa:=integrate(x/(1+cos(a*x)),x) +--R +--R +--R 2 +--R (- cos(a x) - 1)log(------------) + a x sin(a x) +--R cos(a x) + 1 +--R (1) ------------------------------------------------ +--R 2 2 +--R a cos(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 74 +bb:=x/a*tan((a*x)/2)+2/a^2*log(cos((a*x)/2)) +--R +--R a x a x +--R 2log(cos(---)) + a x tan(---) +--R 2 2 +--R (2) ----------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 75 +cc:=aa-bb +--R +--R (3) +--R a x 2 +--R (- 2cos(a x) - 2)log(cos(---)) + (- cos(a x) - 1)log(------------) +--R 2 cos(a x) + 1 +--R + +--R a x +--R (- a x cos(a x) - a x)tan(---) + a x sin(a x) +--R 2 +--R / +--R 2 2 +--R a cos(a x) + a +--R Type: Expression Integer +--E + +--S 76 +dd:=expandLog cc +--R +--R (4) +--R a x +--R (cos(a x) + 1)log(cos(a x) + 1) + (- 2cos(a x) - 2)log(cos(---)) +--R 2 +--R + +--R a x +--R (- a x cos(a x) - a x)tan(---) + a x sin(a x) - log(2)cos(a x) - log(2) +--R 2 +--R / +--R 2 2 +--R a cos(a x) + a +--R Type: Expression Integer +--E + +--S 77 14:387 Schaums and Axiom agree +complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.388~~~~~$\displaystyle +\int{\frac{dx}{(1-\cos{ax})^2}}$} +$$\int{\frac{1}{(1-\cos{ax})^2}}= +-\frac{1}{2a}\cot\frac{ax}{2} +-\frac{1}{6a}\cot^3\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 78 +aa:=integrate(1/(1-cos(a*x))^2,x) +--R +--R +--R 2 +--R - cos(a x) + cos(a x) + 2 +--R (1) -------------------------- +--R (3a cos(a x) - 3a)sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 79 +bb:=-1/(2*a)*cot((a*x)/2)-1/(6*a)*cot((a*x)/2)^3 +--R +--R a x 3 a x +--R - cot(---) - 3cot(---) +--R 2 2 +--R (2) ----------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 80 +cc:=aa-bb +--R +--R (3) +--R a x 3 a x 2 +--R ((cos(a x) - 1)cot(---) + (3cos(a x) - 3)cot(---))sin(a x) - 2cos(a x) +--R 2 2 +--R + +--R 2cos(a x) + 4 +--R / +--R (6a cos(a x) - 6a)sin(a x) +--R Type: Expression Integer +--E + +--S 81 14:388 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.389~~~~~$\displaystyle +\int{\frac{dx}{(1+\cos{ax})^2}}$} +$$\int{\frac{1}{(1+\cos{ax})^2}}= +\frac{1}{2a}\tan\frac{ax}{2} ++\frac{1}{6a}\tan^3\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 82 +aa:=integrate(1/(1+cos(a*x))^2,x) +--R +--R +--R (cos(a x) + 2)sin(a x) +--R (1) ------------------------------- +--R 2 +--R 3a cos(a x) + 6a cos(a x) + 3a +--R Type: Union(Expression Integer,...) +--E + +--S 83 +bb:=1/(2*a)*tan((a*x)/2)+1/(6*a)*tan((a*x)/2)^3 +--R +--R a x 3 a x +--R tan(---) + 3tan(---) +--R 2 2 +--R (2) --------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 84 +cc:=aa-bb +--R +--R (3) +--R 2 a x 3 +--R (- cos(a x) - 2cos(a x) - 1)tan(---) +--R 2 +--R + +--R 2 a x +--R (- 3cos(a x) - 6cos(a x) - 3)tan(---) + (2cos(a x) + 4)sin(a x) +--R 2 +--R / +--R 2 +--R 6a cos(a x) + 12a cos(a x) + 6a +--R Type: Expression Integer +--E + +--S 85 14:389 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.390~~~~~$\displaystyle +\int{\frac{dx}{p+q\cos{ax}}}$} +$$\int{\frac{1}{p+q\cos{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{2}{a\sqrt{p^2-q^q}} +\tan^{-1}\sqrt{(p-q)/(p+q)}\tan\frac{1}{2}ax +\\ +\displaystyle +\frac{1}{a\sqrt{q^2-p^2}}\ln\left( +\frac{\tan\frac{1}{2}ax+\sqrt{(q+p)/(q-p)}} +{\tan\frac{1}{2}ax-\sqrt{(q+p)(q-p)}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 86 +aa:=integrate(1/(p+q*cos(a*x)),x) +--R +--R (1) +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R log(--------------------------------------------------) +--R q cos(a x) + p +--R [-------------------------------------------------------, +--R +-------+ +--R | 2 2 +--R a\|q - p +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p +--R 2atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R ------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 87 +bb1:=2/(a*sqrt(p^2-q^2))*atan(sqrt((p-q)/(p+q))*tan(1/2*a*x)) +--R +--R +--R +-------+ +--R a x |- q + p +--R 2atan(tan(---) |------- ) +--R 2 \| q + p +--R (2) ------------------------- +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 88 +bb2:=1/(a*sqrt(q^2-p^2))*log((tan(1/2*a*x)+sqrt((q+p)/(q-p)))/(tan(1/2*a*x)-sqrt((q+p)/(q-p)))) +--R +--R +-----+ +--R |q + p a x +--R - |----- - tan(---) +--R \|q - p 2 +--R log(---------------------) +--R +-----+ +--R |q + p a x +--R |----- - tan(---) +--R \|q - p 2 +--R (3) -------------------------- +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 89 +cc1:=aa.1-bb1 +--R +--R +--R (4) +--R +-------+ +--R +---------+ | 2 2 2 2 +--R | 2 2 (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R \|- q + p log(--------------------------------------------------) +--R q cos(a x) + p +--R + +--R +-------+ +-------+ +--R | 2 2 a x |- q + p +--R - 2\|q - p atan(tan(---) |------- ) +--R 2 \| q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 90 +cc2:=aa.2-bb1 +--R +--R +--R +---------+ +--R +-------+ | 2 2 +--R a x |- q + p sin(a x)\|- q + p +--R - 2atan(tan(---) |------- ) + 2atan(-----------------------) +--R 2 \| q + p (q + p)cos(a x) + q + p +--R (5) ------------------------------------------------------------ +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 91 +cc3:=aa.1-bb2 +--R +--R (6) +--R +-----+ +--R |q + p a x +--R - |----- - tan(---) +--R \|q - p 2 +--R - log(---------------------) +--R +-----+ +--R |q + p a x +--R |----- - tan(---) +--R \|q - p 2 +--R + +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R log(--------------------------------------------------) +--R q cos(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 92 14:390 Axiom cannot simplify these expressions +cc4:=aa.2-bb2 +--R +--R (7) +--R +-----+ +--R |q + p a x +--R +---------+ - |----- - tan(---) +--R | 2 2 \|q - p 2 +--R - \|- q + p log(---------------------) +--R +-----+ +--R |q + p a x +--R |----- - tan(---) +--R \|q - p 2 +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R 2\|q - p atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.391~~~~~$\displaystyle +\int{\frac{dx}{(p+q\cos{ax})^2}}$} +$$\int{\frac{1}{(p+q\cos{ax})^2}}= +\frac{q\sin{ax}}{a(q^2-p^2)(p+q\cos{ax})} +-\frac{p}{q^2-p^2}\int{\frac{1}{p+q\cos{ax}}} +$$ +<<*>>= +)clear all + +--S 93 +aa:=integrate(1/(p+q*cos(a*x))^2,x) +--R +--R +--R (1) +--R [ +--R 2 +--R (p q cos(a x) + p ) +--R * +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (q - p )sin(a x) +--R log(------------------------------------------------) +--R q cos(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R q sin(a x)\|q - p +--R / +--R +-------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cos(a x) + a p q - a p )\|q - p +--R , +--R +--R +---------+ +--R | 2 2 +--R 2 sin(a x)\|- q + p +--R (- 2p q cos(a x) - 2p )atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R + +--R +---------+ +--R | 2 2 +--R q sin(a x)\|- q + p +--R / +--R +---------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cos(a x) + a p q - a p )\|- q + p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 94 +t1:=integrate(1/(p+q*cos(a*x)),x) +--R +--R (2) +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R log(--------------------------------------------------) +--R q cos(a x) + p +--R [-------------------------------------------------------, +--R +-------+ +--R | 2 2 +--R a\|q - p +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p +--R 2atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R ------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 95 +bb1:=(q*sin(a*x))/(a*(q^2-p^2)*(p+q*cos(a*x)))-p/(q^2-p^2)*t1.1 +--R +--R (3) +--R 2 +--R (- p q cos(a x) - p ) +--R * +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R log(--------------------------------------------------) +--R q cos(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R q sin(a x)\|q - p +--R / +--R +-------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cos(a x) + a p q - a p )\|q - p +--R Type: Expression Integer +--E + +--S 96 +bb2:=(q*sin(a*x))/(a*(q^2-p^2)*(p+q*cos(a*x)))-p/(q^2-p^2)*t1.2 +--R +--R (4) +--R +---------+ +--R | 2 2 +---------+ +--R 2 sin(a x)\|- q + p | 2 2 +--R (- 2p q cos(a x) - 2p )atan(-----------------------) + q sin(a x)\|- q + p +--R (q + p)cos(a x) + q + p +--R ----------------------------------------------------------------------------- +--R +---------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cos(a x) + a p q - a p )\|- q + p +--R Type: Expression Integer +--E + +--S 97 +cc1:=aa.1-bb1 +--R +--R (5) +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (q - p )sin(a x) +--R p log(------------------------------------------------) +--R q cos(a x) + p +--R + +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R p log(--------------------------------------------------) +--R q cos(a x) + p +--R / +--R +-------+ +--R 2 2 | 2 2 +--R (a q - a p )\|q - p +--R Type: Expression Integer +--E + +--S 98 +cc2:=aa.2-bb1 +--R +--R (6) +--R +-------+ +--R +---------+ | 2 2 2 2 +--R | 2 2 (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R p\|- q + p log(--------------------------------------------------) +--R q cos(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R - 2p\|q - p atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R / +--R +---------+ +-------+ +--R 2 2 | 2 2 | 2 2 +--R (a q - a p )\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 99 +cc3:=aa.1-bb2 +--R +--R (7) +--R +-------+ +--R +---------+ | 2 2 2 2 +--R | 2 2 (- p cos(a x) - q)\|q - p + (q - p )sin(a x) +--R p\|- q + p log(------------------------------------------------) +--R q cos(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R 2p\|q - p atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R / +--R +---------+ +-------+ +--R 2 2 | 2 2 | 2 2 +--R (a q - a p )\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 100 14:391 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.392~~~~~$\displaystyle +\int{\frac{dx}{p^2+q^2\cos^2{ax}}}$} +$$\int{\frac{1}{p^2+q^2\cos^2{ax}}}= +\frac{1}{ap\sqrt{p^2+q^2}}\tan^{-1}\frac{p\tan{ax}}{\sqrt{p^2+q^2}} +$$ +<<*>>= +)clear all + +--S 101 +aa:=integrate(1/(p^2+q^2*cos(a*x)^2),x) +--R +--R +--R (1) +--R +-------+ +--R | 2 2 2 2 2 +--R sin(a x)\|q + p ((q - p )cos(a x) - 2p )sin(a x) +--R atan(------------------) - atan(-----------------------------------------) +--R 2p cos(a x) + 2p +-------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|q + p +--R -------------------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 102 +bb:=1/(a*p*sqrt(p^2+q^2))*atan((p*tan(a*x))/sqrt(p^2+q^2)) +--R +--R p tan(a x) +--R atan(----------) +--R +-------+ +--R | 2 2 +--R \|q + p +--R (2) ---------------- +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Expression Integer +--E + +--S 103 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R | 2 2 +--R sin(a x)\|q + p p tan(a x) +--R atan(------------------) - atan(----------) +--R 2p cos(a x) + 2p +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 2 2 2 +--R ((q - p )cos(a x) - 2p )sin(a x) +--R - atan(-----------------------------------------) +--R +-------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|q + p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Expression Integer +--E + +--S 104 +dd:=ratDenom cc +--R +--R (4) +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 p tan(a x)\|q + p +--R - \|q + p atan(--------------------) +--R 2 2 +--R q + p +--R + +--R - +--R +-------+ +--R | 2 2 +--R \|q + p +--R * +--R +-------+ +--R 2 2 2 | 2 2 +--R ((q - p )cos(a x) - 2p )sin(a x)\|q + p +--R atan(--------------------------------------------------------) +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R + +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|q + p +--R \|q + p atan(------------------) +--R 2p cos(a x) + 2p +--R / +--R 2 3 +--R a p q + a p +--R Type: Expression Integer +--E + +--S 105 +atanrule2:=rule(atan(x) == 1/2*%i*(log(1-%i*x)-log(1+%i*x))) +--R +--R 1 1 +--R (5) atan(x) == - - %i log(%i x + 1) + - %i log(- %i x + 1) +--R 2 2 +--RType: RewriteRule(Integer,Complex Fraction Integer,Expression Complex Fraction Integer) +--E + +--S 106 +ee:=atanrule2 dd +--R +--R (6) +--R +-------+ +--R +-------+ | 2 2 2 2 +--R 1 | 2 2 %i p tan(a x)\|q + p + q + p +--R - %i\|q + p log(---------------------------------) +--R 2 2 2 +--R q + p +--R + +--R +-------+ +--R 1 | 2 2 +--R - %i\|q + p +--R 2 +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R ((%i q - %i p )cos(a x) - 2%i p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R / +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R + +--R +-------+ +--R 1 | 2 2 +--R +-------+ - %i sin(a x)\|q + p + p cos(a x) + p +--R 1 | 2 2 2 +--R - - %i\|q + p log(----------------------------------------) +--R 2 p cos(a x) + p +--R + +--R +-------+ +--R 1 | 2 2 +--R +-------+ - - %i sin(a x)\|q + p + p cos(a x) + p +--R 1 | 2 2 2 +--R - %i\|q + p log(------------------------------------------) +--R 2 p cos(a x) + p +--R + +--R - +--R +-------+ +--R 1 | 2 2 +--R - %i\|q + p +--R 2 +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R ((- %i q + %i p )cos(a x) + 2%i p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R / +--R 2 3 2 2 3 2 3 +--R (p q + p )cos(a x) + (2p q + 2p )cos(a x) + p q + p +--R + +--R +-------+ +--R +-------+ | 2 2 2 2 +--R 1 | 2 2 - %i p tan(a x)\|q + p + q + p +--R - - %i\|q + p log(-----------------------------------) +--R 2 2 2 +--R q + p +--R / +--R 2 3 +--R a p q + a p +--R Type: Expression Complex Fraction Integer +--E + +--S 107 +ff:=expandLog ee +--R +--R (7) +--R +-------+ +-------+ +--R 1 | 2 2 | 2 2 2 2 +--R - - %i\|q + p log(p tan(a x)\|q + p + %i q + %i p ) +--R 2 +--R + +--R +-------+ +-------+ +--R 1 | 2 2 | 2 2 2 2 +--R - %i\|q + p log(p tan(a x)\|q + p - %i q - %i p ) +--R 2 +--R + +--R - +--R +-------+ +--R 1 | 2 2 +--R - %i\|q + p +--R 2 +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R ((q - p )cos(a x) - 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (%i p q + %i p )cos(a x) + (2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R %i p q + %i p +--R + +--R +-------+ +--R 1 | 2 2 +--R - %i\|q + p +--R 2 +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R ((q - p )cos(a x) - 2p )sin(a x)\|q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q - %i p )cos(a x) + (- 2%i p q - 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q - %i p +--R + +--R +-------+ +-------+ +--R 1 | 2 2 | 2 2 +--R - %i\|q + p log(sin(a x)\|q + p + 2%i p cos(a x) + 2%i p) +--R 2 +--R + +--R +-------+ +-------+ +--R 1 | 2 2 | 2 2 +--R - - %i\|q + p log(sin(a x)\|q + p - 2%i p cos(a x) - 2%i p) +--R 2 +--R + +--R +-------+ +--R 1 1 1 1 | 2 2 +--R (%i log(%i) - - %i log(- %i) + - %i log(- - %i) - %i log(- %i))\|q + p +--R 2 2 2 2 +--R / +--R 2 3 +--R a p q + a p +--R Type: Expression Complex Fraction Integer +--E + +--S 108 14:392 Schaums and Axiom differ by a constant +complexNormalize ff +--R +--R (8) +--R 1 1 1 1 +--R %i log(%i) - - %i log(- %i) + - %i log(- - %i) - %i log(- %i) +--R 2 2 2 2 +--R + +--R 1 +--R - - %i log(- 1) +--R 2 +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R / +--R 2 3 +--R a p q + a p +--R Type: Expression Complex Fraction Integer +--E + +@ + +\section{\cite{1}:14.393~~~~~$\displaystyle +\int{\frac{dx}{p^2-q^2\cos^2{ax}}}$} +$$\int{\frac{1}{p^2-q^2\cos^2{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{ap\sqrt{p^2-q^2}}\tan^{-1}\frac{p\tan{ax}}{\sqrt{p^2-q^2}}\\ +\\ +\displaystyle +\frac{1}{2ap\sqrt{q^2-p^2}}\ln\left(\frac{p\tan{ax}-\sqrt{q^2-p^2}} +{p\tan{ax}+\sqrt{q^2-p^2}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 109 +aa:=integrate(1/(p^2-q^2*cos(a*x)^2),x) +--R +--R +--R (1) +--R +-------+ +--R 2 2 2 2 | 2 2 2 3 +--R ((q - 2p )cos(a x) + p )\|q - p + (- 2p q + 2p )cos(a x)sin(a x) +--R log(----------------------------------------------------------------------) +--R 2 2 2 +--R q cos(a x) - p +--R [---------------------------------------------------------------------------, +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p +--R atan(--------------------) +--R 2p cos(a x) + 2p +--R + +--R 2 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x) +--R atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 110 +bb1:=1/(a*p*sqrt(p^2-q^2))*atan((p*tan(a*x))/sqrt(p^2-q^2)) +--R +--R p tan(a x) +--R atan(------------) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R (2) ------------------ +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R Type: Expression Integer +--E + +--S 111 +bb2:=1/(2*a*p*sqrt(q^2-p^2))*log((p*tan(a*x)-sqrt(q^2-p^2))/(p*tan(a*x)+sqrt(q^2-p^2))) +--R +--R +-------+ +--R | 2 2 +--R - \|q - p + p tan(a x) +--R log(-------------------------) +--R +-------+ +--R | 2 2 +--R \|q - p + p tan(a x) +--R (3) ------------------------------ +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R Type: Expression Integer +--E + +--S 112 +cc1:=aa.1-bb1 +--R +--R (4) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 +--R ((q - 2p )cos(a x) + p )\|q - p +--R + +--R 2 3 +--R (- 2p q + 2p )cos(a x)sin(a x) +--R / +--R 2 2 2 +--R q cos(a x) - p +--R + +--R +-------+ +--R | 2 2 p tan(a x) +--R - 2\|q - p atan(------------) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 113 +cc2:=aa.2-bb1 +--R +--R (5) +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p p tan(a x) +--R atan(--------------------) - atan(------------) +--R 2p cos(a x) + 2p +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 2 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x) +--R atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a p\|- q + p +--R Type: Expression Integer +--E + +--S 114 +cc3:=aa.1-bb2 +--R +--R (6) +--R log +--R +-------+ +--R 2 2 2 2 | 2 2 2 3 +--R ((q - 2p )cos(a x) + p )\|q - p + (- 2p q + 2p )cos(a x)sin(a x) +--R ---------------------------------------------------------------------- +--R 2 2 2 +--R q cos(a x) - p +--R + +--R +-------+ +--R | 2 2 +--R - \|q - p + p tan(a x) +--R - log(-------------------------) +--R +-------+ +--R | 2 2 +--R \|q - p + p tan(a x) +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q - p +--R Type: Expression Integer +--E + +--S 115 +cc4:=aa.2-bb2 +--R +--R (7) +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 - \|q - p + p tan(a x) +--R - \|- q + p log(-------------------------) +--R +-------+ +--R | 2 2 +--R \|q - p + p tan(a x) +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R 2\|q - p atan(--------------------) +--R 2p cos(a x) + 2p +--R + +--R +-------+ 2 2 2 +--R | 2 2 ((q + p )cos(a x) + 2p )sin(a x) +--R 2\|q - p atan(-------------------------------------------) +--R +---------+ +--R 2 | 2 2 +--R (p cos(a x) + 2p cos(a x) + p)\|- q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 116 +dd2:=ratDenom cc2 +--R +--R (8) +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 p tan(a x)\|- q + p +--R - \|- q + p atan(----------------------) +--R 2 2 +--R q - p +--R + +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R +---------+ +--R 2 2 2 | 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x)\|- q + p +--R atan(--------------------------------------------------------) +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R - \|- q + p atan(--------------------) +--R 2p cos(a x) + 2p +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Integer +--E + +--S 117 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (9) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 118 +ee2:=tanrule dd2 +--R +--R (10) +--R +---------+ +--R | 2 2 +--R \|- q + p +--R * +--R +---------+ +--R 2 2 2 | 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x)\|- q + p +--R atan(--------------------------------------------------------) +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R - \|- q + p atan(--------------------) +--R 2p cos(a x) + 2p +--R + +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 p sin(a x)\|- q + p +--R - \|- q + p atan(----------------------) +--R 2 2 +--R (q - p )cos(a x) +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Integer +--E + +--S 119 +atanrule2:=rule(atan(x) == 1/2*%i*(log(1-%i*x)-log(1+%i*x))) +--R +--R 1 1 +--R (11) atan(x) == - - %i log(%i x + 1) + - %i log(- %i x + 1) +--R 2 2 +--RType: RewriteRule(Integer,Complex Fraction Integer,Expression Complex Fraction Integer) +--E + +--S 120 +ff2:=atanrule2 ee2 +--R +--R (12) +--R - +--R +---------+ +--R 1 | 2 2 +--R - %i\|- q + p +--R 2 +--R * +--R log +--R +---------+ +--R 2 2 2 | 2 2 +--R ((%i q + %i p )cos(a x) + 2%i p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R / +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R + +--R +---------+ +--R 1 | 2 2 +--R +---------+ - %i sin(a x)\|- q + p + p cos(a x) + p +--R 1 | 2 2 2 +--R - %i\|- q + p log(------------------------------------------) +--R 2 p cos(a x) + p +--R + +--R +---------+ +--R +---------+ | 2 2 2 2 +--R 1 | 2 2 %i p sin(a x)\|- q + p + (q - p )cos(a x) +--R - %i\|- q + p log(---------------------------------------------) +--R 2 2 2 +--R (q - p )cos(a x) +--R + +--R +---------+ +--R +---------+ | 2 2 2 2 +--R 1 | 2 2 - %i p sin(a x)\|- q + p + (q - p )cos(a x) +--R - - %i\|- q + p log(-----------------------------------------------) +--R 2 2 2 +--R (q - p )cos(a x) +--R + +--R +---------+ +--R 1 | 2 2 +--R +---------+ - - %i sin(a x)\|- q + p + p cos(a x) + p +--R 1 | 2 2 2 +--R - - %i\|- q + p log(--------------------------------------------) +--R 2 p cos(a x) + p +--R + +--R +---------+ +--R 1 | 2 2 +--R - %i\|- q + p +--R 2 +--R * +--R log +--R +---------+ +--R 2 2 2 | 2 2 +--R ((- %i q - %i p )cos(a x) - 2%i p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R / +--R 2 3 2 2 3 2 3 +--R (p q - p )cos(a x) + (2p q - 2p )cos(a x) + p q - p +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Complex Fraction Integer +--E + +--S 121 +gg2:=expandLog ff2 +--R +--R (13) +--R +---------+ +--R 1 | 2 2 +--R - %i\|- q + p +--R 2 +--R * +--R log +--R +---------+ +--R 2 2 2 | 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 2 +--R (%i p q - %i p )cos(a x) + (2%i p q - 2%i p )cos(a x) + %i p q +--R + +--R 3 +--R - %i p +--R + +--R - +--R +---------+ +--R 1 | 2 2 +--R - %i\|- q + p +--R 2 +--R * +--R log +--R +---------+ +--R 2 2 2 | 2 2 +--R ((q + p )cos(a x) + 2p )sin(a x)\|- q + p +--R + +--R 2 3 2 2 3 +--R (- %i p q + %i p )cos(a x) + (- 2%i p q + 2%i p )cos(a x) +--R + +--R 2 3 +--R - %i p q + %i p +--R + +--R +---------+ +---------+ +--R 1 | 2 2 | 2 2 2 2 +--R - - %i\|- q + p log(p sin(a x)\|- q + p + (%i q - %i p )cos(a x)) +--R 2 +--R + +--R +---------+ +---------+ +--R 1 | 2 2 | 2 2 2 2 +--R - %i\|- q + p log(p sin(a x)\|- q + p + (- %i q + %i p )cos(a x)) +--R 2 +--R + +--R +---------+ +---------+ +--R 1 | 2 2 | 2 2 +--R - - %i\|- q + p log(sin(a x)\|- q + p + 2%i p cos(a x) + 2%i p) +--R 2 +--R + +--R +---------+ +---------+ +--R 1 | 2 2 | 2 2 +--R - %i\|- q + p log(sin(a x)\|- q + p - 2%i p cos(a x) - 2%i p) +--R 2 +--R + +--R +---------+ +--R 1 1 1 1 | 2 2 +--R (- %i log(- %i) - - %i log(- - %i))\|- q + p +--R 2 2 2 2 +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Complex Fraction Integer +--E + +--S 122 14:393 Schaums and Axiom differ by a constant +hh2:=complexNormalize gg2 +--R +--R (14) +--R 1 1 1 1 1 1 +--R (- - %i log(%i) + - %i log(- %i) - - %i log(- - %i) + - %i log(- %i)) +--R 2 2 2 2 2 2 +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R / +--R 2 3 +--R a p q - a p +--R Type: Expression Complex Fraction Integer +--E +@ + +\section{\cite{1}:14.394~~~~~$\displaystyle +\int{x^m\cos{ax}}~dx$} +$$\int{x^m\cos{ax}}= +\frac{x^m\sin{ax}}{a}+\frac{mx^{m-1}}{a^2}\cos{ax} +-\frac{m(m-1)}{a^2}\int{x^{m-2}\cos{ax}} +$$ +<<*>>= +)clear all + +--S 123 14:394 Axiom cannot compute this integral +aa:=integrate(x^m*cos(a*x),x) +--R +--R +--R x +--R ++ m +--I (1) | cos(%I a)%I d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.395~~~~~$\displaystyle +\int{\frac{\cos{ax}}{x^n}}~dx$} +$$\int{\frac{\cos{ax}}{x^n}}= +-\frac{\cos{ax}}{(n-1)x^{n-1}}-\frac{a}{n-1}\int{\frac{\sin{ax}}{x^{n-1}}} +$$ +<<*>>= +)clear all + +--S 124 14:395 Axiom cannot compute this integral +aa:=integrate(cos(a*x)/x^n,x) +--R +--R +--R x +--I ++ cos(%I a) +--I (1) | --------- d%I +--R ++ n +--I %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.396~~~~~$\displaystyle +\int{\cos^n{ax}}~dx$} +$$\int{\cos^n{ax}}= +\frac{\sin{ax}\cos^{n-1}{ax}}{an}+\frac{n-1}{n}\int{\cos^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 125 14:396 Axiom cannot compute this integral +aa:=integrate(cos(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | cos(%I a) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.397~~~~~$\displaystyle +\int{\frac{1}{\cos^n{ax}}}~dx$} +$$\int{\frac{1}{\cos^n{ax}}}= +\frac{\sin{ax}}{a(n-1)\cos^{n-1}{ax}} ++\frac{n-2}{n-1}\int{\frac{1}{\cos^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 126 14:397 Axiom cannot compute this integral +aa:=integrate(1/(cos(a*x))^n,x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------- d%I +--R ++ n +--I cos(%I a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.398~~~~~$\displaystyle +\int{\frac{x~dx}{cos^n{ax}}}$} +$$\int{\frac{x}{cos^n{ax}}}= +\frac{x\sin{ax}}{a(n-1)\cos^{n-1}{ax}} +-\frac{1}{a^2(n-1)(n-2)\cos^{n-2}{ax}} ++\frac{n-2}{n-1}\int{\frac{x}{\cos^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 127 14:398 Axiom cannot compute this integral +aa:=integrate(x/cos(a*x)^n,x) +--R +--R +--R x +--I ++ %I +--I (1) | ---------- d%I +--R ++ n +--I cos(%I a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp77-78 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum18.input.pdf b/src/axiom-website/CATS/schaum18.input.pdf new file mode 100644 index 0000000..ced73af --- /dev/null +++ b/src/axiom-website/CATS/schaum18.input.pdf @@ -0,0 +1,3846 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/NXZYFE+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/FAZOZG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/NBDIRN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂ԓ~ u^I B_Dq( dJI3\Z6//o! +d= 1ݺH!Z7AI\0m,Z8Jcl6H +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/LSMJRX+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/SRCGHW+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/SUTTVB+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XCBZQC+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/HDDKNU+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/ZYOOKG+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 746 +>> +stream +xŗKs0 | +wQ-O< WDf؏xivg[N#%oYW^ިkq.W7??յUK/hՐ3nHvs]]2X׾sfx􃏁edo/#ր.qC +:Fʈ}=}mcNPhB25.Hb$A9>yXpQ@U_: );7[60="0 Y4 Lv5`[KewC5xJa_1Av;D]LLz'DDTU!Q,ppN5\!?"X Dc2}ԒPx/BCɅ!rٺ\v~ȺmQ$3Hv 2Ǭ]i5 ϤpaN/(S&XF6$0Yx ă"Pjz [bd> *a{q#֨aD}{li%22W@k-oJ*M~ +,s!p뮬 O/P}je:4dc"qy]oLRngƷ|Eko +N[+R4ujyP$KzH]zH自& g˿$\Sp9=57פF)3,I<2#jϻq2(} QL@Q ʩ]\c\Z~ + +endstream +endobj +44 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/LEZOMG+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 910 +>> +stream +x՗M0 gol#EʜC؟i'vڕtڤnc+ Z*_ުW["D_CVc՞K4^=ܺJ@@R`m~C2^lBсi:( ٙ=3teQ"g'̑Ќȕyr(Nס\H~8X Gp)P.a>c ڬ ʎ(@-$C퟾Zt;We4> +!(J?^2+ 1Oa=nj<+K:s,c;eA:vve(J0402ávݮb_{9gWc``zfpn8v!S.҃ &"W,oOEDEXYћ&X`UЈu( n4Һ=+56-#,P 9[ ~™ \Ju7l3~ 9Ĭ{Hbb6i,MFmׄl+R薃z[xJYvqZȹ[QuzZTxin^t;SJGR5Hr=#c4&79g^RE':J'+oWY^Mv^F*7EU|Z :N5]S" <g#8UvAlJ6'z$h\/M/RF{L#|l*+#/1 ̂> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/MECHAX+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/KXZNYR+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/PFUVSJ+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 563 +>> +stream +xڭUMo@Wюg?8*cC/sX!H6*6mޙ7ofIX%i.ȇNLH2] (Ba")W> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 636 +>> +stream +xڽUMo@W@v؝"qhդj\R  UYƘT"!3o>޼Y -YyM7I J7f%8øu]=.%Nޏʉ2ކ) B +kʐ/!eV"(J[cDPr&Ji%H_Ǖ3C 2RiV EB(0ٌ:"\J#^o4ҊNUqpzYpbBs]OI~0D qo!5l =<لc4hItw1M,RQBBV[6t Z<2xm\,ZA/D m] }-;F?`#9lXI+ߪͯ7hǹp^oVW5XN/<4Xoγ]:Vz]NDp>N}pMƫKe/,)N$84.cx!IgG(o׾Q%2KaY;)DĭzOɳnQhL>vDt]}4 #wWJ?Ƶ0+Vq?, 'uS ztM%,}$zSmx̾oi>ěiSٖ> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 766 +>> +stream +xVKo@WцxC&U{,8 q$B"HU;kb R yf] +{ȇJ&AH2A4H H|x` aJN{PYxZQ- m:bŀDẠ XCi}3`РPmBmx 9Z@IRQCڃkgm)v$jv1taԈ4\L) "Rs#c xE&uDu0ׄFz"DZ4~D{Zu[P߀`%<;I4+aFZwJac-`Ɏ$ MY*%ͩ$F L˟Y.av[al=}Ez[*/{bȡyP(q7_U/umnyǡ̪ަ/🚨36}`:>àQ BFѨhk),򏈾U=8d( ȼ L0.cGSz[Ο0^q?{'2n ̸xP1-0 +ߊ2ks97mO}.&nN]\̟U]F͆*s8o+v:ͤ2ޗ#YY +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 844 +>> +stream +xVn@+f!3ĢU]6t8 q$B"HU{g $h:33 J(Ew(\>DL!Ҍ6Dǫ0c\ {]Ͼ/4ri8 B=z0֤eHTG,R`̛ XaW0hp( #U/#-fh"6IODsDZ3C$P>۴ {I I\)Qm9ʹV(`hlK?oz7'́pt>H 1e;[|@Ry.>h1 qbmSp|ZZHJv`^ЯC.301s(cr3 NɃ:C0:x :ӴPLӴ2?M.8ơ)ݡd߱l08틜s|X'8o]{ y3"̍#B[ Kn(ږ]dIܨg@wMBg"O`[@pdXQV /ѝGS/&e>nG>(U7 Quox+S`/ |S @D/8\$8><Z/nFđxXh%`4' ^9Q+2.V)~?zWOrܜBwJu4dygc 2z?HmJE D4Gf\9S}a[oExZ>>6e/XLEHtsQ9"YϿwg +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 1002 +>> +stream +xWMo7W0Ro>)c^Vl0dUpIZM=o(!AJ ׏[#mp + n`RhKz~['"DS`4p.M]VQ6E-vALPP# ghЬ$AXMԢ"1 #Bs߅؇hVRc.ö#3PtrԫH㰇$µtz?-pVNNcc4` 0tk~lɍ}،2S58q_'dCjvt*C)dUܑ.\Û @$M쿢hb%xG&͞(E1sY'u +-)BĥZrGL Ru[BA^XcvN&jXYl˄OE4;=0㩥KO(YS<~s)X]X,׹?}\g^?NgK}aoem=Ͱ2Нe;Oɢ/72?wBEc2(eZ65\04؛㟮.}3r/G +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 841 +>> +stream +xڽVKo@+4R/HÅ D +mT{fvl@oPx33 h#f?CVHO`D$;¯gI;'"DL=\l%k vn! Ĭ1鈋0HIH 8KE >e:A X\n"Pz,9\?( P-5y.90@ȰjtqwjR w4hӉ$E6>Q B| 4ǹ>4oRImo-:U $porQ&B.Ng !k?T7;$9PxR$Z,J㊼p*#纔\.68]MM7hFC"xIçh+2@d:"b6v8҇ph=TRSL2! $S3~6뀺X;)8Z&ORHx^VciyVu͠ t>iHyh[ag^Ug竛}pʻd>NSH{:N+5ڬx "9o& p, 8l/~4Ġַs~~ƪcahq:*$/D4d&)G?w˳ꖫtxwl>H?m7lѯn7oxv꤮ /f.lnѵn:@OEoBGϞm~}Hš57VS3iXҳS-zQ!nا9\"}DfW'Z,<U%y^R&wI}Y_.l /vǟ +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 408 +>> +stream +xUN0 +/H*q%-f# nHCMR'jIE Hd}>ܫ KP/7*N V ) ~=8C 8\ntBm U.e>ytЧ(jyS0^Pڗ)nߟtډ#pb$VpLj}N3"YqUL̞oM]\hc6/UQFZٌu8nX !W} HISb؃#bN})FYn  0SoJnY=ln7Uv;O Ug&$+Mm:+OU\T׸)1B[ӎxצ&յGUᚫd'\`_ Ak(3' +endstream +endobj +90 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 838 +>> +stream +xڵVKo1+i֎=~#"EHÅn6 ďglVJYgx԰BRkdF4 jk^Cݍ(t.,R G7yVMYz_ J!no;U/ph+lCV$D%XR@P+jd<ʟEy gDHx+EE)0] ^htGK E9J 809¢垣;ZWЗx }!tcBKP{-L`B\,{iW6R^[}{ +=[6ŞIk]`?yUw64qRYBo"%TEl J;p)dP;fD3Wz'$JDjIRcc cx.S2;w1S$F#*բTAZqB3'(Pz 02BMCp\nqyWm6Cޮ~rsX<FUM/jaQf 2Ӿ9`jX_OnRmG}"ʩ O +ͳwW#jB2'O"Q +8c"F׏jeOiTYn7e6;>=wbwjNZ6>9*/S_3_X +endstream +endobj +94 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 49 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 758 +>> +stream +xڵVn0+x) !-._]:E +F) jju;EܿL[)$pf KrOy7\J%͙̿Qj$^r*wSeL|78$c1YZ9*&jHY>|eR2p Ü"CF02o"eJb!fi >%2rKOC ͸ /& m420kЁlHL@`LT$wkr| lB6PcNv?ɲicY0I;DN8$w.5Wmp6X}]sKqqL.q 6-^rSM^;܁`KE[,jTo˧YDh__JubȤI`QK27P/ʨED%7$"$2'yz@/_YcTF Db1;Y`ԟ[j_d@\SWwԅAu:qrPW"i^txp= |vf 3?Ye7_j(W-O`Txiћ"^yҳxH淟,\>UF}4t>ʃMf+4nS8et]=oWOյy<5ǁ9U/^)_r_oM +endstream +endobj +98 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 213 +>> +stream +xu1o@ +$Ujr[a@J"oQROIc~429[BjaOo +q [V%h h".ti(f}{ !Y0D:W*m,_H,VWɠ eLX1䱧80TMܟPwCDw d>0S` +endstream +endobj +102 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 826 +>> +stream +xڵVn0+x_&E{lK]75&wHJʼn -,E2e䎄{v9K&$Y~'3ՆI|w,Jܛ,?ή4qiLZр&,&0lcSFhddawE2Ks 0k=XeJɷ ZG0ildi@ |:`-̙/<(_ m_3E/<0@g80ɮvDxrKzcng'L}G>hGver96rO{1u="" #?ADD餧Te`\vvIN!ZDaZ7DV1GLLݛ9 0yNDˤ@3Uvv"![Ed}}k/5u^iE]" &y; gF| 9kVt n./7D +endstream +endobj +106 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 481 +>> +stream +xՖO0+bҁn]7^`Aܛan~hIw~u)EOi"7 +P +8n0!cǗlHw0M=!z6@7jfy,VQ^2%qhU8g>f-V`8X~Wr,<^LOq^2/ }o/sXn2ύl^잘U> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length 248 +>> +stream +xuQN0{tzN"q"8Rh!uJ$8ڿ'Dsٙ?@p!`SyGXR 4 qC&;C\EbPP& ,{pj}ۦ]Jյ~(!WD> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 114 0 R +>> +endobj +117 0 obj +<< +/Filter[/FlateDecode] +/Length 743 +>> +stream +xڝVMo@WNwɗIziH)MR*w/MB9̼y $,I=>>٥$\2!ќE6LǛr*sf\|21} FZU%Bt@.e ICT "9@ 6#T} PIPH zq>K4sdHGȴqA >&H]? Aƺ& Z% jB((k.7$ IJDY@}!ST*uYf`zgq8Bv0}B`NGX%sQnxd +B?V9?6I +gCمz(VmJj{vu c.lF6E^TM[',HIu +ĺ<̟̏ug,/5!Mj6$n@42 +x @_Ga'ߧbx|}X?"SYl=,s8ы#Âr{Of9.,Y~IITF6CL'YXZ3 ٷd‹S]> +endobj +116 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 118 0 R +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 210 +>> +stream +xmA094mVѣ]A[7Q67`@p!nL`dc@Ƴ4qMZr wX1)" tE9|0 +kϬvFk3H3]|X;wۀ'8")؊UtB &:%3ףCOq9:m6'[[x;j@l[+LR +endstream +endobj +122 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +120 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +125 0 obj +<< +/Filter[/FlateDecode] +/Length 780 +>> +stream +xڽVˎ0+ 06c;H,Zuj]t覓dt*B€T<>$$fqL@M7pɄ$DqBf8(Dw~Lܻ|(TĕPOʁ Z$*| n"Mhaw=*vMF׌3!XX}`B"]P B+5L {9][y:͊e̔xT1%uAnukQ+*`7J#W5|+AHmP5D%*'Lq <_Hm FY8rB-LhpTpT]Ux&l/Q6 l6[KWy(7KClvɨdˊ29x'*"C/>6 +endstream +endobj +126 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +124 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 126 0 R +>> +endobj +129 0 obj +<< +/Filter[/FlateDecode] +/Length 680 +>> +stream +xڝr0} +-Mť7N$d81M$tB߾Got.I)nV@*2I  &O#ʹ0G[CbYо )BMYa *Cȏ!9PƄΐD(W)Z'@E.0& +x),8U١kJAPμ7/Q)8u ?I B[%hulg C Hvdk-8J+?-"ʯj -B+5Vlӭ 0MXhˠr6X ;26qC:~f<;C:.nOtvqԃTYl[mj1Xrmu"0M3~ +_nP~LK> 3^naoot9ҦXL%qfH~#Cc8> +endobj +128 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 130 0 R +>> +endobj +133 0 obj +<< +/Filter[/FlateDecode] +/Length 210 +>> +stream +xu10 !uVbQ  +jAIOI%nc +#כPRp+$--- yYi\Y?8Mn  LժǢiO[|elBHlY,/Vzc6ѱpBO~>6&׾7x {X@VQ]{R +endstream +endobj +134 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +132 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 134 0 R +>> +endobj +137 0 obj +<< +/Filter[/FlateDecode] +/Length 910 +>> +stream +xڝWn8+) %{6`AlT@I݌ ^$"r8d&얥_flY0Ph~+@8|_E3ˏl[ab]mX"Zl9ڰ5?R +^x~1(<4U‰G!{yU scXNxQZ 8:$"c 8+420O3%**B&Q|;aтG29EBQӡSqƥ>0 ڡPaJhG.| +s;,fo1sq.h}9 FUZnva -jK +Jbт|kdsٺWb>TO% VYTr@]8=r0y*w p;g1{ȏ mNsy\Y7ḻ-f33 m_%Gw0Q$?! Jt Mm8O%F)4j0~ʦ_;w|y|S!8 fn" lY8杹r|\:vYb:|\c|6M+ e79MwO8*c'xN8Pxs*~}(& => +endobj +136 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 138 0 R +>> +endobj +141 0 obj +<< +/Filter[/FlateDecode] +/Length 313 +>> +stream +xڭSMO0+z,ٴ􃶰7у7lAzY\:}oޛt& ;p :bE +3DAL27΋~ Jqp֔*Ĉȱ#]Yʥuo\ ԊoeJyS^Q|A}ljCӚd]OEq0vJYz[3['o{K\,(5;Ru}\eSn˸?O3^ 1z_Lb] .hWq%O,ƧP_}Đ +endstream +endobj +142 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +140 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 142 0 R +>> +endobj +145 0 obj +<< +/Filter[/FlateDecode] +/Length 821 +>> +stream +xڽVr0^ R+K3 - 4lpRf&\=l'h{}wGtty,b$Mf*FFp*aM`+pwY#9NS'kDJ?[iU:ډ/ǚk'Aj4845xgSTWFFI +ds]5E&f1|1x D[+*|*k#j8$TA? ËאK@`?jgo]+KM- ۢR\MPemem"̖KCFpj':ET,Of婾}8ȇQ(iР"[b6l͟4-{ڳvl6",1 FgIa C^BF5f}Xk)8S0> +endobj +144 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 146 0 R +>> +endobj +149 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +xE!0 P)n,a#A,d3că&3 + a&#Q.?Bh@羒 1T +endstream +endobj +150 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +148 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 150 0 R +>> +endobj +153 0 obj +<< +/Filter[/FlateDecode] +/Length 747 +>> +stream +xڵVn0+xӐ&)$MC^ jbNQ_ߥHzD\3Rꏏbz+$h)FDXs"$Z|`Ƹ}jÌ/>OoJHli!K xXą*n@C_SJt2(Ex4y$Nx∺Iaph}qZ nqH3W}XSbŒQBbA1< 1fTlWtZ:ԡ}Еȸspg`dgkҵxI?P6@QϮm`F/ik1.Ŋ0Ha *Vb*Tv u9,uelj{((#JӜ> +endobj +152 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 154 0 R +>> +endobj +157 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +xE!0 P)nY,a#A,d3că&3 +0a& ΑNGbs_zBCV +endstream +endobj +158 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +156 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 158 0 R +>> +endobj +161 0 obj +<< +/Filter[/FlateDecode] +/Length 901 +>> +stream +xڵVn9+xY2g09&%h+ǀlɖED|W nXzX/h&5(ߘ AS%]ͥDS}WMyvƲF:]l1b2d_sLujMhC!ƭoٿ )cSX <oztڠ#6K!}.D' +#FI0[ ٓD\J_^%)hs@O܆!eurȗ$K{4;=%'`T飈47O#dI;LESDUb,MOɧ\"T`TѝRD8zOh1S"Z}$NtwWskmx{7jiZ 8/lBf`V:E0f,]X6NdӍ+~.wgCbmjl*iL7uSv>ߍ}ŗ\ZԪmD,3EiD˄P9804tx2?ESdb~0؞Lj3'xШ=Ni_WeA-zMe/R[${G4'*cv|!:Lgš;Aj*L#'৚EǹSio;.SLL:8fl[~}ZvY3%ܳUW'$ifPyCFϯ] <_hV-1^^Q ~.R9ELgP-GZ%+/qkͫm5 +endstream +endobj +162 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +160 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 162 0 R +>> +endobj +165 0 obj +<< +/Filter[/FlateDecode] +/Length 522 +>> +stream +xڵVMo0WqZhKM,eNHgLu+m s|iy}/(B=NAbܿ:N]"8}K@ B}gB"nNC"X#'ڈv6[-^?b!]rGfEQҎJ GoZ,e30i;wjn<<9,>0NTF6-`3^L|Cmi-wgE}yn9ˆ#þay~0bEJC k.d1ZH)渶RU&yȹ9&G9Y}4Qqs@L1i˽Q:8VbH&?/*3]i,-PÕ ,"IFZY@ Yf ֝pQ}jz*- af|qsnYvо#\_j{QVDRB.jipIL^űa| +endstream +endobj +166 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +164 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 166 0 R +>> +endobj +169 0 obj +<< +/Filter[/FlateDecode] +/Length 342 +>> +stream +xڭSMS0+r$IHo:> +endobj +168 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 170 0 R +>> +endobj +173 0 obj +<< +/Filter[/FlateDecode] +/Length 721 +>> +stream +xڭVKs0WhHXo4鴇zi n S+KD`el߮F) +n2 +|G-֌&o3jrL)-0ɧBXsKP![4rE8GXBk&@CaeQhn, #9fep,h]m+  İXs j`ZH©oCHa^2~NC=  +ha$8ƕɂ6U)T v 0XMаW{e ;LXգ6L\al4vOhJU'.`[򵇂\ 92G?=Pjy9R6W2V^H1 f~,>ܼe=lBO,bڏ x'Y歁s"k=+3 +endstream +endobj +174 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +172 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 174 0 R +>> +endobj +177 0 obj +<< +/Filter[/FlateDecode] +/Length 865 +>> +stream +xڥVMo@+h7ݵw;R. uJVm%¿gk*5Ǜ7o&&%+KrOG~Y\K%,͙Q`Rیr*wsofM~\\kO!tp 8‚T2L9Fe?ޔ\-$%3Pm7iBu9l.!p9)ЯxGmAd#8Sh29I1} GϢ*$0U("r h7Vgȱ+ft\p&u3ueBt0^a ;$uDU Eo_K)y +XYx(|+O顗]V8Aaǀo.e\a8oϩzT 5Ia8NNR' c׮߀χf<ܯvƠ Ĭiyٶ_z7=UeSD㹭nS?Tw+@rJo¡dzλesTlPTa8Ty_wۘ_)7VVvS#2Pnn3^廇{4>GY@.Y<OFPpWWW!{'H0rI+y +~Pb<~oO^!K8WxOvrZUYe +wh7^ugbжc0Cr7⚔W?hp\N*>j6D +%FI +&e`<; +jbߨazkZ) 0AMvv$𖵕ڕVz+ԍTQ)E?Ui87fb!k,^_?ɽ +endstream +endobj +178 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +176 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 178 0 R +>> +endobj +181 0 obj +<< +/Filter[/FlateDecode] +/Length 401 +>> +stream +xT=O0UvI%-!0D 5E +zi &ܽw{>`1@onu8_I$ +$ͳ ء. Kx0`r'v!LR5ෑ6/}9Glj*]SNїC2\k4]\Lt_.9^7F2r F&ՓHgW=M9:=?@0U\MHɺ[?Pdt}ՎK3.K5yi-KIt3BG|&~FhLGe6 +˶JTEQc-M48Mx^^vl?+2_}Z ȗBGXKX\_HHO +endstream +endobj +182 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +180 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 182 0 R +>> +endobj +185 0 obj +<< +/Filter[/FlateDecode] +/Length 928 +>> +stream +xڝW[o0~W1صb xdRVʨ j(ةƘ%};d35i.oɫ"B1;1YM4Y\/29W~Y_13o J.L4nU#t +a(zBcΐ[18>ߐ'd\Vq}KxJ +7&*C $y}k&u뿌byE3eb"٧ +ie.y408Mh$e.1a>GڲL@cC2#fkm-Mm#s@ӡ);uRpsa7-Ʋj@ϸ(=# >*)?20`0!3ƺ?t@ ޓrKA2'ÄM2qUɖV)#1OdN0{1 3& wnÀ3rXT' ljX h扥Z6ci@v\;kg}閏`d};w;Fn ЄYͦޕTzonr8f2Jkټۻ~FY/P١*+8q?5ãxH<< +_ cxc0$ٔsN +YπHe]݉|)WXYFՏw{48m{Bq6S_-݊ +4cUb/*}Oj%RݲIT68Li7 L.^rLw65cƄhn +[Yv*)m|X&J5;68JBgk9*LТUs04g&iVjb.f:Ed}G6mHZ7>śm:m6m;J>o>uU +endstream +endobj +186 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +184 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 186 0 R +>> +endobj +189 0 obj +<< +/Filter[/FlateDecode] +/Length 171 +>> +stream +xu=0wōeh8ap> +endobj +188 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 190 0 R +>> +endobj +193 0 obj +<< +/Filter[/FlateDecode] +/Length 883 +>> +stream +xڭVnJ3tMw{lq0ws1HN R(c!ADt=9U3B/,=^+ͤ3a!hö/W(k.%n>_Y CV01!e)ZQk>-OB [޲o aoػ' !l*U~\}?}UP:mY˜K& S(!AiFA8LC$H<- "{f#Y1c""y)ND=T:8ypq @EQĴJvLyqc;IC IKaMqYILx~d8LrP;vJP^wCM^j?E{ S9CchL|ze->Q׌l>Z>n5sZ,Vji=hꫛ]{WsCg{s@EѢcgvs~}r>hnlM9C{8h9ӦU~`S_ߎ̳4.1^ +#B( .5*uj +M;qpq|&J{cZ:/OdW//7Qkwu9o[~ya +t5?LW +endstream +endobj +194 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +192 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 194 0 R +>> +endobj +197 0 obj +<< +/Filter[/FlateDecode] +/Length 223 +>> +stream +xm;o@-w{ŠB +˹K!;HN~= T;ifGZ`1(a+Xْpj8(/1K>0@RwaPĪ> .un}~gcV!\rN]l*ں;qu~~C4Žqs D";"wY3{Fata{0Tm;2[?+MVR]:"/X +endstream +endobj +198 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +196 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 198 0 R +>> +endobj +203 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 202 0 R +/BaseFont/PRKEFU+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 1380 +>> +stream +xXMo6W7;n=uK,ݺiobD E gޛ!BRrKjy% $YA4He8HEV_8Wq5f7&>8 /oрvYI1RIpgoCޭ0 I"R0Tڂ3ᆂe}Gc]Xf#6%avQk>'?=Ko΀`܇bځ ϑP8n l4`] d\o"+Ӭ#F4E?;`~cz2ՃuDjܡZ((N#a P5ȷis'|F' +#{B)K]ҘjE0Z^R1M9!R5JpN 1jAN001y!kXə2v+A{a5u11,/}57*LA0P-hNվ1 7( s3@{³63׳>j4$ظ9yYq(W͵C K$$ZQ`4P6CPRڄz.=7ZP/S7iH6Ӆ!n ͬ'+L $@ALK + + ֠,Zh !@K98⑚q+AK6"!>RoQnبfZ1cK\?yo5d<T8iusf\\?mo7O-׳p?׵HU Fؘ +9[T񷘴zW-gY; +h=>>~O;]0,U4 YfdȖH`xc!-.ſqL'6& ֮G9Ν*f6nt3D7.&^j$|#Z`=11L(oB \+%fXs +,G > +endobj +200 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 597 +>> +stream +xڽVM0Wh"jj-+9QT%rH%~|͘Z_͛73~G>Y2?($%CTp_&( S4C3 +eφPsB93{( V&< ͑gÌ˔8U}Uvx)G~ï,M-_?@aE+頰}T|WWE<3HPXhJPE15d{c]R4fY^Ed$45Di7lp)sJldn{xitUGM\Nh l4 6FdÚ "5( h$# \Y;כ6ɶ&}y5۱>-{C r;%0 K_闉.*#W-XxgoFmG + |ZfaLfo&M޺2Aޒ s?x\ &:73̆.xcSi_)";6&6, +endstream +endobj +209 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xڭV0+|!l06zhl[n6bS]BR>6l{ͼIꎅ$񓘤D2_2BeK~Pӥ ' wʘnc߳۔*!Jh?<1e!=,#p8Ăfy `7Q9S>WKcsSV`Y6RGA|e΄NZ|ѫ^Mly%Rąw>׶Cp/:sfd{lI)&$sDkN( 꽹Jb$N~sTmRk9EӔJUbW<BɌ}ľǀ}Y3JoMT9ϫFE)Eա G0 U@_O/Kߖ0~gtTy(]`ܷctZ #JyvrkB >v%$v26wSpꮘ;P ar|R+dq؛BW: ƽ]t@TzM'L}|a:7 +?Sd^Uoʧ|xh +[ 46 {]]HLľn+J~m +endstream +endobj +213 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 397 +>> +stream +xڝTn0+|4B&X5cŭ*ErH%>~QL$/xwcv{ObER%@ $I$HDr?@#D䰀 `ITR0Ffų1>BrO{x DB־䠎hl}q#=e!* Df|NO{ϩvkr(L$Oa{$L+oU +KrSfL :>gR㱋$m`+WUwYK qlD ,Pv^wANbb"5!݁0af0|LȄ=}ú:QcBOLKգ \C4֝_j]:4/wIH2 PJD"bf.?rC, +endstream +endobj +217 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 963 +>> +stream +xWKO@W&f$.UKKNT(H)$^I8b;ؙfl%;/B"&hiFBp"Z}ʸ1c\eWrs,^}^^hU XR580JGK]> ~#N)1amΚ5u pSXEFԛ7I(Ჶ.ƱpC?6<>9#n|"B"fˆkxcV庐.?bw`}2jD90CAlcp,}xcqPB#B76mW i.1)dTF&nN~ gˎd06""̀)QufpL[[{%s3L3 +N|\v2׭jފ$ZܯVJ.移`~ :E9uV( h(6N'!$QawRxRqJ cXج[e&d̒~a[E؎Lwod(wE~-re_מ + +H2Xh1,^nʗ"c",'X';?݅qbe3e7JRF z*soBp =3YT'J-p[*^ c %\S<lolvS+t(ql.=o^׏wPבiεZ"l:FeQ+OEg&M)x);i)DTҵu#`Xdm/.ʞX@hs< 2EĠ}i00~~A}S;5p-|Hcz2S}@@ݎdKg8Jʹ΃$/]`C Z}CWK^h +endstream +endobj +221 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 565 +>> +stream +xVo0@l1v\iiiVUE?~$.*|=pLI$ X8Ţ[M(o ,/dOP?Vbl]w׺_XE.6ialh˞\}\۪_*HR7USf'*D>+D &]IwS]HefeԭQF؂DκqKݛLվfE6$ 3n]p91J{iΙ4y=`5rȥ4?G%Z]"c@21$*atT0xc<[k@'Ъjo/>(k:=%WE!I` +31SJmaJsk5ݤ<> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xVAo Wp41HLKVVɉҔM? N:`'U0{/a@0!`|.[o ) @.BDS_w@*cRRjfƈkOl3Jͯt5GnVK {!Oj!P2g<*V˩ΞvYnZ>gMbE͟LsMotTOkĤa<{{yzA4DU҅(?IɆnS`Sp}D?UԨ=e9U*rpېiUU]mS4zP ]ibCѫLrvy5=p^{ 5G>2tAPbµ*Qιy*2ï8~3ޔ%h>/P,TH5~8MqX)9p5޺_]2-::n Tȣ͟J_RA&JC +5VXbނ/Ȼ+mCYѾ.7M^IR2Kס^V~*ᓹ>cVAw0Υqp[8Ŭ({ +endstream +endobj +229 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 550 +>> +stream +xVI0+|L9G&7!BĤi3HEKt34[".|v)P $N%PTrA%@S5^B%Hq@.Y@%)& ?1 zrBYqk0;R&hںZwETN7lqQ7HN`oKNqjN,Ƙ&[-h᳿ | `@X@{(FIarM3~䬲SqlUz{ˇ %>B_ T!6O*jxTJ?$* ,l]x DR=<GW_ .vպqOC>pIh[%vUEo2.$ʫqPi2^?J:. 6YfT>RSU(=R_K\s?ȥLu}ƘͩYnnZwm]_*fi3:dg7eEIJ*2n-7F| +endstream +endobj +233 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE0 Dwc2؍C7!PeG!ӝӁ#`{5DI0xR;ēEoM~MecQ,Q2K>dglKNE4T Ly~% +endstream +endobj +237 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 975 +>> +stream +xVKo6W(\rH/E9&Kmjuֻc ZPfF"qN>!lVWŤ"?T`"_ P%Z|\{3Օ&9}pU>.G!RX嘐*/ކ\n"_pΌ#T[f55 G.Lbb!Lk5X >4 =9'6|Fx 1 +h^tS4ȃS%EO 1B"ds?EWW&!lfr-ጷ5rڴ%oYO)zDy +=ٗU$)G\L1,Z@3\&ՠa|vb c/Ͱbf7j0b*џU'̹D#%~GRӒD6pD=ǶETO!ԛԠ0f b DAi9=ChgڏKs T'TA[%M-F7dMfd?4HܱVVH}fm3mh,_FYe˻m/i߼!h (}7ݦwױ$ӾyօXO7T.o._㚻Wmw?Tf ECKn2%_ʟxv"sq@x9-FF!h?7VTi낎A9k62,are!qDX[ sݴ55wDΠ/Z˚htG>}\v ?<Ƃ|׿ݿfPG婉3v}L-O~\"V5[0~r52mu`: l LMl*Mrmϔ8R)cE +:ZSpݟ2_ϫo-I\ +endstream +endobj +241 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F14 203 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 574 +>> +stream +xڭVKo0 Wh/(t؎oF=,I:?~dJ"0@K!)GʈT'YQLe$j~!E+ER5jn ֪.lmYl!0 (auYjJ̈1 ʒRh-}{7&oA(%=Oi.zʙc/.Ν ^'5;^\=<&",,e tjV8:o<Oa(NI#fˋZ.Q' *2{99ܺ8lEX&C8(sN&TF:\j04w7^q?tn_;7&㕡o]<>|:n=+?Er +P3:&<ѝ.Sp0ZL]~ԨdodI,:N)$Z`hȉșE* v$0I :=[C|q2uuX s}ODML$WsO}~]Ql}7}ZVZL5Jhi| b: +endstream +endobj +245 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 676 +>> +stream +xڭV0+rY)u;=ܚ!QHTڏNHHlSkxLcl=}I4ȿĂ(AK:BbN%BFb)a +pP'K` sBi/Ҝ](^~D`8a4ImfYK0F`ԸŔ[f\iw]ԉM~yDMJ?*TdqFpy=\mM}n$lsWBMEŢQvRæ jjVgɁ5ʲK+\Et3=lͬ=l)l;SLh z)^Ws)hU͕ctRqH*fHtQUŕ:Fَ7-SU+Tܖ4ɘ)&FaA5Ǖ|2Zj{'W aX_8R:=9/㭹hS:6{392: "ӕWCZ>f4(gfRXo[w +endstream +endobj +249 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 592 +>> +stream +xVAo WpdlTڥ[2mکm(RxI8Ԧ{}IA+d/誘-hT*HDRK$G1f,oo Li^42hExc ф@)'?[glc߯m_oʨ2.ˇ0с@}W70~t.t2 M̄cS!);YݽۮO| b0sh=DJxeZu`0x>-$Тrӕ+E BRW + +IP:Ώͮۍ7wv }Usy~24Q5a!T_1~uEC\$TƉ8/ +endstream +endobj +253 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 498 +>> +stream +xڵVO Wp1[@{5:7񰘸,1N3K?vnʏx <圬 \,$EZhR#R#ӐE'c„2Zjl<&DZt83znN=PT$ t0PW]ˢ4gKMN«]۪R}-]o*>懼QYo2$m'h GjOl&FO%̋*ryܮA#1QJP0bft;4 LYDՏn<;jej쀣27jUXCga9Ѝ#2*3ePa12޺~iśyіB<DyN8 íi3p]ě&3~St)\Y,2b?%<}eSk 6UvtQiB<^"^D'B?Òۘ&(|*NsCicj%pqW +endstream +endobj +257 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 545 +>> +stream +x͖Ms \2A$ȭv=V8[r-wǗ/+ Ri]Xcަ D ppPL@ Df˜3&Q,{>A3 ƶu`[̍ML&CzUuv,?_uX~ Bqz4j]J#2?`{ReF"3UiTĥ*vS녭w;1q%ҧkB*j rg2xܥ)Bt86v:{1e$(ݜ5j(щgB"pxt&8w'I"]ѶUSf]3Xs}Ūع͏Fn,{'Ht +.?6\ߛΛClL*K=m>BFfė=8a{Ϯ}d+kPI`[|[b<ѡW_Bܯ  2 2/~ B +endstream +endobj +261 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 1214 +>> +stream +xXKo7W7R|?u!q]N ΐK+%`j!e(c䞄wn{WT*N&Tiz%\5D1/7?Wx [ф*EΓY(eo;C`ZO*3_"u셜3M$P,e(kp `&,H<=jăHʖ:yx&r#1w +E*!ONN~o$hV\xon /oDW6*HG˱w()DP' ON:=YWMe2Þ pIX% Y݀Ĝ o'mJ"Mpr| s#gډpK< D3j,ټŀRiuV A?[ؘnp G SFr@p :*3>r\u? z jhl{ϴ N^NV 0ÐQ&y~.0.7,N[yA-w8 SF{FbNakc}f*N=R)"liJ#Sp/V՞W1aҰXZ29Rx+ ,N=[뻔(Rdؖpl+\O wr_'ta>JT]'wF#gtr)RK7SWZ^8v^I+JY2ǘHIb +0$X5!ZM8(ni]i?KDתzrW_}x|W|[[Q=݊ ֫K S 6VДjgS0-JVe +Ϝ1\9lζj`[7F;Uk+pOJč^_G6V4Ttq>=9˧;}0pO1y${ +A }ޔd;(5!RMȱnʑ 'R +1ʽpF@Y6.8_LNadM%uǼiBZGِl ôI&}O#}iWy)ܐTfB1 ~b! q< YYbйʴ Dp - +֤ +endstream +endobj +265 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F14 203 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xڽVn0+x")RR Ԫ258?>kRrJd /rggva(chZ6"z܎q5"5{P-MY9}5`"qE=ÕZC!:=#5?gr7UAY܀Z6uhI=yvqħBBw> 1M2>ˡI/_pBroV~z+" +endstream +endobj +269 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 552 +>> +stream +xڵV=o0+8JH))ڱVvP 7q/E M<J{(=!pԒV7@4 u?+׸V5*ik,޼Lݻ'Y ke10Կo" @FG`Tk̔u3VSQвwg  +? G) d}`^@b!8o_Eㄋu>lD*"F%Hܝ8o{ +3p% Sv6:L"g cY#NFig#g:WOW()f(d˵tca [o~^޶O%㤅 !͆~{#ʰ2Bg*!* (VqKI,J+fT1NMsqk989l?W\,@Սh!E0‘l.~-̬;i`YNlS MXCVN|:/جs\Y Zjb i4HÝ% +endstream +endobj +273 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 565 +>> +stream +xڭVK WpAìKl[=x4ZJR~|1YBN07OD h}jP!MD/(@X2j>,0QbDˇ.Ǯ#o1%m]ep_sƋv,DpVb&ʕ4a*hqpc*ܡA[nmv۽NlRm{4&ƚw6'7r֚kK?sz> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xڽVMo@W.H\=e{7TJ%~|wg 5vZ$gvv{39 #PC&7ߑ""(4WI}I3&H4#X$K3AEn宬3i0M+Zdv4E$4FqksYYp&ɫ;Sf^ҞFYԡҠr/sghW>!ԾI +4TzW<$J;x&._כj}^aUOܐF<>қŦVgC$=%ڢNHOfƌjSFFPv'N"ur"3ղjғu4l0<l=Oc9h_bN1*@}iz=Zmv' 9yVA,l@5-Xd3@8%C O{ Y %~0Wܨ=K__#&>?ֻ`CV^Aƛ_?*7lݯm&"\6D@kš\kYhXUV +endstream +endobj +281 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 620 +>> +stream +xڭVK0W:؎+qVViJx76̌͌DŽ'9q?dEr䂰L&&gp„H̑ɌҜnKK+;kj&8*/ϴt2/q꿛Ůy-z=n%s뙷>m2M}G=!xZO F'v#fXbb/ޠ0)@(L/ c5BrJ "UGBr 79T7-&\aCg7~»QhH/JrgyqX0P-> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 612 +>> +stream +xWM0+|Ar(Nx%.@Xr#UZU*mh(x&vBl>6{KhH)Z#w9ȆVx CD( Y. +H6tk&6={ayw~T!=C AB[2+\}q{<-wȘ{*,iE@2 +'|sF!4x–R^7-(, ؕ|}U$C⩢xYמeR|ݯs6"ˍI1[ e^CRIZװ i4gM$3t= ]{4md㴨ZEK*&\& !Ȯ#.K_~p5|-dghT /+5&V2Ž;>MÏE TKwkvt!h]U1#cO(v>tvJw)+RSqQ7ȾD1 FB;ySz(Y$NȒlqYy<'w5{"="U>/?L028eZ_:x +endstream +endobj +289 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 612 +>> +stream +xV=o0+jPHJRmU!\ ?'D1v@xwH"!Bz>f5(R R4Ra"%PgMd*heDDB(!0ʾ!0Q:R\`º b[3<():8 fZۗfsq+X)&%`bdTt/<x('bR/btu^ܠ8|yIkq qZsl8$Ѳ22ۍCǭ3x/ r|.f 4 Hk5!1ȁ]%BI<E |%fjwBbcFokcf@Iޚ\2/ 7woM4 uyeWP?Lև[{(ʼjG)&2: *vu]bwH;n6l^P5g[O&=f?߱Zmn{p/j{sG3x.CrcJ RݕxuIGq׹'Dٟ::'^•n\^@|BF!H$ѱ|?L}| +endstream +endobj +293 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 582 +>> +stream +xڽW;o0+jPC$ŎM mQ#P \ ?II$23} P|_ +S 3AL0P~K B K@bIgr,dc ۏ%XB̔Obe2)dꈏ۪zߟ=bHŃk>߹PB?7m…#@7A"%4ͪ~>`R#zJF:WbʕistBKSnZ^%¬9Qi>]S]) {nƒ]R'%J農 4#dcXg߹RNVO£EÊit#άZDuӱM`T<9fNj4{3RÄ.5#'],ޙ +F 5&%3Saarbx7ވL[1;ɋ*fF3?.X aq1/vmWK-c#z|_uLfb)y|qQ_>ԟpO~g>au\߿t[w/>6xV̊Bı>ǭ +endstream +endobj +297 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 986 +>> +stream +xڭVK6W^\qh`i[l9dKP^[%:A~|"%zxۢP伾ɏD,ȚT/0ĜŜP ,Vd O_ID(fӔ*P0h\VKqt|v?p?znX)+OuLΙq@6-w~:l[9~uH$Et:Ŕ4n; +JN7uDPMgJZK_ =>Ch~>j-وJj>?,BJBtG!$ wu;:]?S&lyjDiƳ5:ǷpɄV + TJ1:G7U3@)Sօv~w +n900vsv:q{0&jxL BqIZ !p]+ Gc}[86`JyD43UQL"צaxy7! v1t,nɚ888̮A_ !_<ب"d4 [ZMBrSTYa6(WmE?STlb>$wk[ +'iB$X4N!Z@0`2NM%;^mOlljö1~AA+擮0Ya쟕qdPf*mxP@z>FЌ+|fg Z.̍nn4SN]dݬk[X'SI0J*/nQKRK#ˬ,w5/'Os>l l~祧U:9Q`IvsNoϗLHIu}-)C&)[jY\_3 +G_tZ>5~5F"yA8~+P=[0W]pJFH`4s +endstream +endobj +301 0 obj +<< +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F2 13 0 R +/F10 49 0 R +/F3 16 0 R +/F14 203 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 1012 +>> +stream +xWKo7WR@19SD4J&a +wHr)A 9 gO$>~&?._+HEVjBcw as׆x&A)p1qoIA r Zq'%{¢Bs rrB7zKsiîExA2sLFlԂwDWQNyXcYhD^+x[vp 9\yP>Xo`ՠT^rmÕx9#(NDp)Hd+bw^v!e,N=;p)4V<5x׋ڞ PY v@IhFَ9֋ȰbgN4<ČwTubxfjKZsW Qyf(f +F2)k̫sWIV{p<|et:žqY}6)&gۻM~sw 'hP6IPK*0 7}zmvww6yOod3#Ms6`֋q<~h_SnM^ZҠqʢwHLd.*ӶQ5=$=iNGM:J]4_;Np !_dvk׋f|y| ]|)FJj!F2lVb$ogYIqb4r+q0ؕbe(2'>vgqdE[J$`򡣟 njz֞sYa0[59[(J#w< +8DžY䅞Ca 7EI`9Y<[^N9\&J:P; - 7jjW*'2$6j^%d54=jo +VZ؈di}6OS* +0n2iٕw%wZ +endstream +endobj +305 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F10 49 0 R +/F9 42 0 R +/F14 203 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 1145 +>> +stream +xXKoFW}? ТN0[MȒ`wvHʖm|!3;;߼ J?g%a$?f` >஬x]y5gw_._ki –ߣOV%I%E 5 o)H-0E ,뾗 z+Ye6d+,dPXE1cH'hջbń.qt")zz)[>W +0|R }Su{F] =Q^9WsɆv3Y]bQk=\gQp^:9k S&%b;3b-hϡS"a߉jMH jAf`^Z>*rH!1x,V?iOx14Au13@iٞ)ycwnr<»Y.CF("XШ7Qʸ.+(-IXaXfZ<~>.m?<41ɑzJw`k]4/uY^s~=cRƨb uJ^\ШŦLR(aiU}s b8H |Y9HG9s*]1_EV.vqGxm]ǚɨEkFX :Dj,\ۉ[1Ļ48Vp.y~a2Q@231A3AkBK8\6eP$#=޴ȮRP["8ksF@LV %|;Nnޜ;0}޷bЫ0L10!d.,NЁIxOmqPݎQN{%^ 4F<쩊x|Ӹ(?VĈ7el^G?^GTGc.N=6A28)!u;BgT)շNL~U^LtI L)ZL3gR҃v^/Prnݺxi- Hp> r +endstream +endobj +309 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F3 16 0 R +/F10 49 0 R +/F9 42 0 R +/F14 203 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +314 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 313 0 R +/BaseFont/MTANJN+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +315 0 obj +<< +/Filter[/FlateDecode] +/Length 267 +>> +stream +xePn +V +cc|Z'U}r .NPտ/^fٝe n]Ar&@d|9hLRrͤoiD*v1T q8Jw'x\[ezVMm8㊉ݩP}1F9V7Y|5Bn(X9vPf!mQy^M}mәT1Ӗڇ\_mUInÐ$UBI5Z>d- +endstream +endobj +316 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 314 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 316 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/NXZYFE+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3994 +/Length3 533 +/Length 4544 +>> +stream +xg8kQAD/ Nt#!DĘaN{- [ta"[$$d}c뽞󹟇XX y`8aHD<<*X ĠUa8,tb e%dd% +T@%i Cu`8;e5 |F"p"@ +|g#3늀 !lho& K8:_r.9p #l,cJ; s@<Àqpt!@ EjMG8Jh[(t p(gm4sAT)DM# !8vY4]/~m155D`h8 Pw/a ,y H'*PJLL |OOEqނA^NpGX3ĖB&MA;)R9#{+"σ3T[Ј|B^Ŵ[tzxlL?ɖE ҽ5!mED4̑Bp9ws2y2 /5l雩Y[i$Tsӊ̴<$GMnyT8K~S6U#Cv;+̀S4 d7Rf&J2$ Vpf ﭐu:ܑ +9?vQ?_JDU1sBLPʏ"XWTUq@Jř㤮PjsƒjSR7oH$ybq%s+_R< i*| Rĵqr(O +3e&SNe&?iؑqq`Ѽ ЗZ@_AgoCBTG+5,%n̘$w7P + j"8NJ^g빑ؙFTyD[ 8!L=ED%KOC?\j?W7FM]|kET|ix*X#zBB9iŦrErOl$-m^~ {m[wG /"8576<2^6`'egpjJN,w)OKINYZg/6tcoabGu{D[7FH%>4@܊m%O|V-&i{{—Tgb~ n_Ge@dVJ%mعчܞгLx.; +sAf6G=ZbE +Ⓦ[%pÓfU齇k|L4'3¥et'2mCϴ:.NyɶIu4ƞipF9\}ད| _-ŧ,'ܡOE@yH:gƚYll.G΅㔂J.:DWM%%עӮm1CLuڕN &\eDHfڗeo&=v|CuuKbyt:Yr8{xSvT{l26NHW|+핯Y-5IAVccCM&%g`?׊Cqs'@;[ep;~[v]N5Ιztsvg\C5CB j5f닌+M7@է0K`ĦAAIxrcLk:ygN]enk(Bo`j?h`9ZMu>P{@KEgtka)/BSep@1&#OKD5ʞ{SɋHoanS̟>T Ay+OFf`itv`#F { 6]P&^Ԣ9 _qUvj'\=G7umKM:y㢢$cACWƔڌ;Ol\\u()onh8MP2g=i՟?5|Kkᔟz\F=ft%D(i^?jN,3j\x_(v&$,B!ϔNM;.Հ,2O6QNvY+G +%}Ϊy)n&s kv/qw:ʘQ9 7ț=V%:pLeqU g9,)5h$xCU:\2߮~y485⡙a)e >am):e!QvBC:ˢ8EnÙ|KVX/Lax,vPB6 +zZ\kh?o>{͡!u-w.)9iO8!HAW!/^ [y)8kП–Uo:mnR4Qua|mzVx Hpv +Y5Am ۆWrڏ42|rS,и {f֢<.tuiqvDؕ6un4%5@`Ns +ۯG_K D /;&0sݏ0ded(;"Ic +,25NPzxg$Eo)F S?g#r+@xTOaXZ +>,*{nsMu.3ѤA:H 2%Rt /_ɁmMmA}]P)mHJ߂pܪھ(6"{>mh}g7`N P&W5>}k.5h=L!AWGor׺1#V,=;*xHڑ~l'F}Tw1i+-`I!"U~יq]["&gYAakfynT^@]Ai֑@3fhF[hҨӍ7'^=}syC02ٕշ2!>P}C::Мˮ˳٪7~Sڼj~nV9B*w~ +CY2GL#.̱oS +䂝2Mu)G&|UqɐR75j挍X?c|J>U8+ۄԍ߮ +c8wVѰ?|0k­o4e!gYt.pl$!n_:k"i*0]!Bɷ)4!m/)٨crcT(l>7kR<%OZ❅|DpX^YL1j&LGXu p3, l;ѴGcLp7'APcABRFc<%P5NQ;~nضp̣ +]Yn-K65*\x'Q?ؗ5 `%}~%3bwVݔ W=_9!G4ֻixMeHGs3qs#1A=yą\dP@ݱn.{ԥ.|gN|J(5 AզWnVk;j%QhS$dJњX> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4731 +/Length3 533 +/Length 5282 +>> +stream +xeXkii If萒)i$b(iP.i[iFDC\k^o}}_,z * JOA C +Fe0 +* IIva $.-") #$(!]av(* " +#`=0@(oA@ -nP7"HH 0 IaHՆ;suuM A"-i,cNN:`oc0$uh#!PWߥ&пش;S  fs`n0/(D؂ܠ!~'_@z;5?¼π@ SA !0F@5c(@@X Hsqj(Ā@]wWW(_maӁB6T0Lk~FgӬ&M3z)b9ԣGDNᡎzgs$׻zQW2qV]eKԼC-ϥˣ)ͱQX_>䠜ێ{Xn!e|mso61mU<2/#JsJZ*aJ?xHѩQdiM~}g9[dF-7|{8 |˜E+Q1YT Or/q-錏DhTItZOn}qV|Y{I/D¦2/M  + +PdK}Ixgq6?90$6-ߓ抝: +]ue#NUiS۟Z~non!?bn7â;^lӘv ;B\YiEg-;2~95bP.2C I]2-f(ZFboFykF4y,6[OZ,lO +@Uc!Uʵ#{G79j'ß!AqL2֡|O ̎TXY(0MgPf46SQ*զ>$[b_Y}9LS~87XQ]Ak2s'Ӗ-*k!; +lS ܚ+{/>ijA^^e-Ɇ:|~HЫ|d0 /L(u<#/K $`Rsw;oRwOȱYR?Yc^:!ipػs>nu ;e>lj3" +M3է7qp)-(Vٽ 4GD}@/=FCmyܲsDVOݠu:- ?.h'}]JyEfoDN/d-Wqc>_\/ +#2_¨6y&$_'rxPpzH*>a;JϠka9 Tÿn/׬׽TޡAfw܌*TMK9؆FS #Y̦w=?khn*l&ns!48\^X#wXqCdoݷ#زfC +籦t<ʁ vBG Ծ +3*~i<_s[:dyDWz5}u\B/;xpc暧3T}b!+5L`^zw^4^&kqoShh??ִ>3 0&Ȣdi̧z wp W=S ٻ.d˘#ˋIsE)1P[XSO3It[+5"hGs5<*_jk! \ma]U Ѷ/*}.xOsS/х\z^ +SJIt%YΚ[ox~Lۈ +5zl +;+.0{?׬.j'C [ЧvZ#g*UҮz%I<,zilE4+>RaQc)rIZY[i.K@CUat +oTw:vgHiCff̕nC*s=꽽jr.kaq8/hWO:Z4idb򭾋2U/2]_sF4~ Ӵ>;r 6Aϵ8)sӛȱ핾< +j>+TqB7% lKNh8*kC.\MW;ܭ,gk2HCu|tKVKmg(\Ҧ$6E|5#J1?D3`.wdL_(iP^agCEx]P^Z#ְ@ސy5-yyg h ϥtU)5%cck +<-]A^Br$K#&n.g';狀g9ZmnYQؾ$RK\mH%8WDhC*m-> + 7NTB;5%׶ $Xol,Ʀ賛h8~w=4u}|AJ:E[=t4K;7DkoZE^|]8糷KZF L^t-wK4Wj~O{y9=/i }wVr9>_*RɪE/VL\V2yѽ`(A\@W 9N#XT˴;ɗ˷yGJt O1? vrk?0-JoÌHʸc'jL6pXtM1ݜnOeUo^Z'/rloe(D>a;Y4&Ij|,<] ,#DvmMHL陵X:Q['!Au_Ϗyֻ0sȌefJ{?`cl[PL$~a|ӇlO Vc-f[ƯldPþ~.*0I)OŸbדhԨGxbaVڅī_c:F3173WZX~9d5Xz/JWwQMͬc+E:Xv: FZK>f-&+"V&JW5O?/wl]W (|Ķ{j܌ +Dʒ-BÊ*5}oyX]!=n\ڑ_o#%"uBtfw|8J4D[|;Zzvڑ(>VoKHֶxO} +rv:w{RQ)y`,CNy󊳳ۀqw 2FHA[&z=GskH6W߈| ʮz~rPTBV_TY f~ŅFj2_bJ IsE^vE =rhʴ /X5 +;ƚ9llJaf +ι|g5zN&GK$cgH>j?w>0olA05[ +!RZa">{7O%X9u鳦tؚrmͅ)TnJ߆Y Tut.l$x}jZ`n"gIgtgZRČL|B?~ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/NBDIRN+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`QUSbײbhx:?g=N`=sdoIBK JLÛ w|W& +rq3ks'}-yꪊkxxFԴA/Au4w#6.f_7UrLA'kI!^Z"J09nV39_r3mZ©,=h:._ٕT_h#Z)qUEHnJkT3ȃZ$'Vq׳#B<lfJ"ZC;#H tsYlFŲ]m:'n+Woe1ăa},Vqd,UK) 2+w01{7;%?~a؊sf9NDÚ*2W%xTH"S5}S5?KRY T4@Z||vP4w{{\6Rh ûbWŠtoi=f-]-:6$}C].rtdZP<d6> +C*۹lgR^fqܢW5J~ʲ45pM 3% YT:s ^5] ǐ(.WH)wMj[zVu$lO_x1P[nZd^:ݗdJ6~ֺvPXda)DL܎XM^]?tc+G1*Āa/iyմ(FBn(ʞu9pP#6CF_4C>G&p\@WMZeIȒmdwf^~4eW%@D)q8lnw=x[*O..1#2Bb q:45U+c)CiE[_ayPBZ$Y!()%AOR8p7ڀ7w0DvYI8IƜ\;CM?a2煝\hP} :GLPA8Q5p.L|z.!'dѥ)vYljx1p26Jf$Q6T(),%j&)pSDP\*rʧW ƣ /1!V}=VșB1~3+2ev[7Ou=80i{N1WRjɑP5 +BWn&wRMAʓbisDYXKN1j˾2f3Mѡ0"I`ݨXx:W.+B~n2Set@})q;mTdM⦩O+ُY;͚1W׆oQ]LukN;daCO|[߬:]ÎD9M`Ì."j5\%g2ܛ/sO*eo|F@_rnډ ĪEEm$G[2'PR`VfLK뇓Kg'/XiEBBұ`Y "Dt2㫄84m +vSy)յ 7*fؚS_xաd|$Z?+}= CwIgl4`dC//0o7KWy]a[e|Gshc)`e5|0qfz˘Y8zXk!&a>i%#玾Wx6yaC5ID(iՔ;:Ps5o|vfDqGV>¨]x(Xws~MQDU[XeL"|8D۴[R dA쇫"aɰ_QB Δlvu3<\4{*Ucԙyߦo4s[㡓٣SijC"፬GGlG2YJewf.Ϗq16 N>eL)JPg۶S6dNpwk-#?첮:`1H>;ޘWuL-v&_9h_j@h2# E9|lgG~O9C'Cݣ|I3Su\BomY '^J$")2t3Kh霫ό-.Vذ&fɵA^I' 4pR<ϏF]f[vAb'9 @}FҗtuB9Gʱa92&3 m)CZ.ǘwD"Ng-0 +S|)p>baRҌ_Jqɘu'0bILEKo]W) J0oG,tdG15}vj犦r#`b ~=vR=mTA +q[ 2XihiU^~ݞr*攽T5N_1%Pj^B>0U ? +K@S*W,KcfŬO D b] b]nB ~rb;^R'r cA_y ZЗ ,K $BgL+w-kW$-ZmY.Ӂ+8 T{ X(iuwB0Xw}AM7v~~vA9;"'ip ^5ty KP$ +%kC1ze=23'[1ތPQtSkT顈o7jkqhvم& Z'Kdxp2_@R76^X|x,^/a7d'Q*E}9$<=uAJܑ~Qy 5|k̨Q_{p_,>\L(FDFߢS\Z(a*:*0r<6@A;-e-̐/4y$J`4Ԇ!m(eOpn fї2뷦D^YH^?RSH1DZJ+]YSu)Nr7¶O"tOOD2e'<ǡ? [r7dJTp'x1 Tcy[`sA-f]0 ֪m߅ye_uqE9Z|A(W͚4!R@R;'}`M吴f~ gWS\c[.+),#!UBX%eLT_bJb?` .QXɚ>\%'gZFL[-\#VWxBo^'ɻyBY;z}+H4}*c:Nh(MƼEd=Ʀ0i5KZxLvΒ!p(3WJ^faWƯG:׽ax_-6lW ,_wQQƟ}fn 3e]TCUIQ*ĺ_kzt[}[L^}b0 1$V\~c~*SiX˷"@r[/H=> D SJm:)DJ%< +DFc>GW9$~(cB6ïW- +bJ(Yu Z$-UwKz?NKq(A5gZ-o+zi(V_nI"[؎``Nf]j$G썼E+MˆQV :=A +w[I֊bhN? B.}hY)7Ѥ2?AYVʍl̈mɝ}+EnEja+m‚ +͖>p!m"L1.g aa@fέӄBنqiO zݷ/G]sv[܄)1ʷϹm i+[O',F'BOd|Y}hjW!&z{{,d jTt+j6Oۭ>?==b#2?'VMmʋ + +Ē~.tՇolөn"= V.X-˾L;78d4 +7CP,)C% +B+b>W;(U\\U瓤o pt9+UPRo҇g֣cҧlNFԂiPELǥ VJJw٪g{l>6;`䆄V"Zbw'=qP=m"1ֵO1Hao*I-F̖f[Fi?n8"OL)SAXAA‹J `3?r}Z ,;W9ХCBD =7ioOӒʫjYQ,2XJ40Xٴ`T_X}Dmv_h/)O,\.[LExAx`jdrs#{߻)6_{%o" *<3>ԥVdZ0hݺX/H.E]6;w/#ޓԹj)kBf$vʼnA3f@ KiRRY6/@]e١09CxQ˜wapȫ(Θqް6e.3˦Lxsej,7gqtP/$6v9kw$kR"ʨt k9~?8O4 @/8lTLwb"dXݯG9qcac`/]r+ϏDPן&ۃԎ1نƂs#fM?al:$ӗLGU]}@gBupCʩ;F +B +x<22sc'AI2\#FPp/f8βbMћ*+zwhmʜef1E5.c{'j[IXj{uR"߬WJklCsrmnkι_H섅hɶْrA +Y{qsG2Y͉,zfE*MSDNN2I̛A0n/^ rmRUg~S'-G5N1k3btl_6+ Jdr@=질/]uEˬ,`h:erZZg]\PBbz fTgbgJ|I: |gõpF( mr mr퇑ebgUcΈQ]\[Ƚ+0߆\-ÿ~5fy<+rD*Km`D;f;wD0yVgҘ[Aul[rOIwܘ{s2^BI"C/-:ةNl"=+ YM= :̗hSdc`!AGml&rF5x:ވFD2S͝ZEFȇp9 }QqN{/f^uC&wsqELHK>C(L7g[/ڭ(GLݡ nWaԒ1xuVaЅZ`b-EjZkb)Fs RؔҜ47J~Q({PYFHt$[Z!ESCJS#:\ж Ja.lwaUmZ{7\uÓD1pbXRrYz!,vp/M6TQnHf{6~*$U-*rWPYalZ[7m.?'< oHaKc+kzG[p }xsgy>KkU=i;Tk؈4wGmm`х/-oHQRqB vQj`ߓnDL59nn*i|_%a~A 0-cimX—>GMf2Ost7HX|y$7 ڸ롘-; +κ_cJmc00R ?EGKf+&`Ǎ=ٷ_1:n_Y y7Nc2w_l"lHt-kwQނ$aecbںs,z""8ıU + exCA%L/#pÀؖyQ4£3@8m,..,> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^JigwD9z r@p}w1K,HR|( K]PLl; ^8 [gQ1"MpdJt[:9>" kDc#B`5iDeQgj~(,k23X`2_A,jmE ܹyo1Є["{En}/"hGɯԢDr.YLMִb(|U%IvkFu徬M~jTyY"+m&_nj/͸w~ G7"TLZ>lAt%Up_8ҥ.;B,70>^*D0@nt'AQ|`򜬠i&reX T|k Wa< +i}]ڪjuoj*vt, ]wN̯ϕ,F=]tѤ'dH qn'',xBYS8p.6.)<c1)k}e ob坴ߐkS*)z.8*tΰ͛x.0B9Q Y\t~1bo1ˉ5IKyA6YO2MZի{nU9KZ"f $3?KUF,YGİb]Ro5^;ߑ1>IYM+֬h(Ʈa.C*ш|%`ػǨB&\;>WU1RnHTIe\0%6ֲ{͠+l7ёf09)ogL`D2}p|Y8#ւzQqWN4~Tzҏ*DHJu4ʼnB*@GokO6KgwΖ=wר#Dcw]7.LsNMcuJD]/K9d{(d +m4x{'Q>qr╁G.Ú~g3?h>(^38.U^.ȡEJ2-Q_pl%{yߦ0:3m)s{[}׋zW-m[: Z!xod>J0iי|YD쥟 tvͳA}?ͱ:&CHR͍^ aKT]'Áiekc#5fPpo3a>UJhzvKR@"UQ|GPʖ"~}9D'U2j +S[=وr+K;i\ot{qй_bm*"$lA˯Lw(f -ł~ 63 D}&6 #v% ^5VodOX lM3Cg!bcPUORcB\khGI6a!?8y]LYi_@c"VfL!UFy˛'.t7axbCB p=9=ګ%i| trC#fEփT1 @ҝPH wE]BpcK@GfKT|J"-]=(qEL ux>hBV7ZuS62/ǝL-a׮ֿ< n[ 5GLS:2jz5*g?ݷ=)V\֎m8r*dR^t)db9DGiwp,L5<ɒ =MK,Srb~ݏvJ[?"fqⴾydx.dUĦvN~{Β=>o-e4Fv"wG)]p4M9!Gװek8puy`5A^p.C#\-iyJȄ;sjij+|WmU.^5 TyU_TK]Dr$4\⋸O* COu- iaxXV~nmCeQqumaй٠.s:h٩r!pv%ezSxrr1QkQi9.rD.N,0k1a.ټ8{ڤ݄KcZ,ԍO0U?xS$r5moJO-4t ׼?T6/tI90݀t|DSgW2dseXʎVu1M>tpIƱpT5"RY3+=ԩ|a>QIk,r]?$6׳ISU. RGwуW#yTqo]f~% :&Y3ήxؠ/j:2 ` y6h#s.⬢H tڦ )~bU)g~- z)Ls~j|qӋp!ȳ/~dRu-N_Yuewi3$!tUY ]HpFAq +҇wtu>i;'(8/jWzI(W3Virv Yؽ=ԥof Ccu\;gj5=uVv|6 v\RR:LR4mmw \*]ݹ +mS[-7Puyݳ/qӎBfE/}UӌLfES'*ނM%iRmD=q!zZ۬Iܭ+BQ ;fY׳U=[.T\%%yT$Y6:ɽi~^4qy){Ó#녁#wLKlif_Π ْ) +NAMߥSf%'KjCL%WYYH+9fGuC! 'H7a` +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/SRCGHW+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1RzPֿf0$g/?c/ ]WBxqsn:W,qZ`8ĿSiia$F2rLZ^_1Ho?MRWuA`pw'3vC^ @,MD~LX*DņGV T_e. +4zNVN·B %"RLH{xǚZl,<[@Wx;ڟ6x\["ͦ,f4xZR?ո?l2sV˟uݽ{EءHvռ۝E2|LD/1uR1h@eJCܚc*1s!h\\c(d\/;H5\5[&^z*3oscUؾ %Cn1ۦwmz?L("*ߌcR]W:5 +w,5ǃO`t 097r"0ϫh0M8w!m9J5]j"+tS3(zo%"'](7駐p" Uтwf^JzU5Ɖn{dR-.vsDP(`kd PtƜ:j:5kBܞaRӑykvJ J餞xQo5J_̞B߉UX̵B'ŸHD cJ*TdvZ2<[,ߕ*@vI7~uv3ښ9a:Ʀd7J2.Gr>2Pa|hGϡԽV-xeg_(4q]<G8n|4Qc=RI7JUAM_ZgjX7:#S$6VoTAmPS\>>"ØIJx~Z.Y Kk0!U pDϞ+1)oJÕii)Md .ݑ'%K̐eSa׫gSImi)Xb$ri)svS,K/zi8õ#zk^[%DݗY-e_6xݼ>WǰI/7I_~6ԃ`D-:EmQ8̆ wN~ǗkDQ356ʗg.? +h7}|g&ˋc"]#tӸ&xcN37ݳBq7bըD&УѹFV3Ox_/Q45i:Lɠd?$W}iybmذ:ڜ>]¤yT $)]vX@/23mEP ;0R0$3OT_0Y:"4ךo5M)EN OǮzeϓhߌ +UTXʿLX*Vio ow?X+y!mW>箣ID;ň[g~5s UʦYt^mpBnݯ8 +~E-z>葑EE.Q[R-8[h亠$'VBM;OWx2ڊzSWթt *hlH7G͋T[_@ڍ8풙$`YqSu_bxa#$k]pq I-ȓ];*Yb,5%4}~p2t{;EI#Y#hxLZ_RS}0 H + `6$*Hc*~yW>0δ* +ݼLiM^6Q?Bзp)"KF9\ܨ2zjȔ;珒sn)q`x6.eE([[F,v~5(2RGzx4-XTSljBZaOueL$=R~ǩ9 + <܈ +JRv/+gZ#}R?߮6Qc%{P,oov/xa&ӃPkwSwЖK0qu +ZuZZhVuY TD_g:w",oHT+Tw'=kE*jE+}JON.AwQ>T!r^YBa8NDH?|cO +;ߔc\="ʈf9 '#=svZOgJ}arEe׼R>%!査aA=\ +Q}Obg~x_Z)O.3@Nk] wM*Jv- +OΝX,Rpb.՝}ie1ξ3V'>N7xY>J 2N#U^5`-*^mGٟ*CfbS3SPT2g[ q ɸ2(Ao֖Ap#:ٌt?[gM0ީAm7D$DQĵ]1`XFPW՜C&7+X6(|~LXyϜŲ:J>I筦m")̃t>FJG6= $h8^H׋Y0oԕ/HuaY{qC l +84g({ʶ۬=U{o2×R(n*ۨ6y3c"?_fmdy<7+5Ac*Qp;V[RN?S%'$.<$ecd-rMNf7n0>1Kh˹vk.L#eD. _F]I i*UΌ?;<}71T*vY[TݒTJw'%j ڱaR# ӳLr{'uyg,sLb-h/;6a{ݯ]caL!&AඳmPp}GϝwvE4dpX (5^ I-AHyUQ31|K4DSQˑvHTec&pd}CYH}S=gQ2T2M(E|<f +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/SUTTVB+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1116 +/Length2 3251 +/Length3 534 +/Length 3964 +>> +stream +xWXSU:(]((E w"H0$+M3$H) +RDt&M"HGHIA`ޞrvߚ%&bn)&'4\ +a\A$K$#)*WQATpUBU^$/2ՍI|Rt B$ 38‚/)=@ h,XD;Ct$ĿJ L4 "kJd0c{T^ǨCG8Dy@h W~"`/SA#}@))dS~|`ʀQ@ybQ4.!z94-\y`(` =ΘUPDӔ}sʕC*;缡s\ct][ڲ#){fXyg ?BsO1#ZU&~j➀/G] 0?[3B.Cй75xk#.ShIP/d6?uR,bsK, +$`PQ=֬9'TE1 +ޑ6[=A؄=b2+MX߯y 2azLHf N_p.;\c=#tWC>~cC~n:cMmb)*xJvLtr|ay;Z|IR#,zd6'4|jOgN]uSxT +ؖ:M\ݦƝ˝L_^=`:beB|R8D uZviF"zՏkw2ʴ:tlq|26:}kܵJ~K&Oɝ\6ހ9.[V-GO[7!X\9!]SRZ#QU}6i&ZraO`_2i*mQ_5,ExK%| @w]kR#F! #ډ +!_+K/MZqDܡq:tpx`j]R˷nƾ}93˸?`Moϣkvvv)1|tyMŲa 3fN=}|ʉ7҃*Z5%g$ ^<`kᝬjLf푯Jm{P~T>wU#g\-+Uְ^?3G5[BA籛_/_ ͹O۲?f?Ԥ+n8S_x*b;^Hv_7 Az^tф\ބYCߘ#nۉ.th?ױx*k&דwlG5filq +g#n̬),H5dg[!>lg7 +RFErZ;|'={YC ,ޏZ@3Z|ٖʲ>K{@@d?/p+a.g5:jylvػ|+ײLFU >$w!`Mq˫LQR:U7\_CK܄6%s&Z>#]_jJtHҷOv?[࠹IۤD]i +M6I&Y[ ^`R}lOcƟ,vǬ;?i;v(44ڋj6{΀j UĘH]z+A<w}s>{ |FI{bR6}=tzfD;6 K1E<=M$MZ.Z1v~y/+ap S&U4 +;Z3:SDGʖaAeGzE'B1׉]7 5Zd&Imtc3OXﭗkiWiZ܈6Uyy mc[@t:u(eRM|˓sb>&kH=~@}&Ply!g&%i,zYj}NTOlr$ +pQ}X0Y0}i*gШCÔIAO N6ܶ^\ pcw340Ut:q?/}Ph$f] z!յ DbC{eeCWY@CI.e "|<:;? urR&54]ҙT|7ԠBW4%8ܡF) H:F53 +W\,#ұ85r'Rٲͬs~0H9~8j] ~kjl#50yiY&&* ~(&W3r^otֵz0|LidA9=kԮ>2&;$ͫ('B%m_:VLMo66+KxRCUE{qq +psgb^gw>jɼAP8IH%_fz?c +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/XCBZQC+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3632 +/Length3 533 +/Length 4187 +>> +stream +xg8\m(D("jGo=dQ3`aDQBt{IщѢ"-ۛwc繯z\zx"jpw;; +#:`qb-.@#`;JA`Dź, h{N@@CO,@#a(qB]\=5WWޟ[{/`vG$ +$'Kc=F.ߤ'  1C4cZXWWC۟o}w7, 4V3_p8抴WC9"_:K C{'#P\7?_]#1@/FKqQqqoFٻÑ(G04?RWwHJ"M\JFSd%X4_y1$KBԧ`NM(-I(6*%# n7΃@c4OXfanA *or$xZ' #6Q;->&UfxxOm>dֹmim8}&K)EBUp_u)4OjPQEѺeTKt7KzsKܛ?\uCÞ~"z@&]LSV[CX2AF0Iw5Mw&-O?1!c&.T2Bb/[!BaDwyħ\o)$;w\fc<Չ{~M +]9!u.nO0"{+RNz6yHEk꾊lQm׀v[B+)Y,k6J $¦̗;&xjrfɈ]S߅JIYG9>e).LUDړs'5#̿54SVx77\VY+ e2^֬)~/GE FLx`ٌ&TX "%qfK5MXT_18A驶*Xa @.08R?'^76-W{x9.vi;LKEkyظ~o0e>w[3<̔v;4yMIw[-`Y֫iXNBԬYҜ'|Hma Zx+buYcmKs:>eJ_Z _Ƥ-FX=6u(wctxS}ݶiS$)Wz7p9:8O͛ +\dSd ق;ք>5(60O7'pJ8ӔQ>C#s"tbag5va|)0NY.2\i7NW/zR"g2X #iB+ՓuzZ^_]q׌\(hY/wLPcgh&>SRF-}J?)p2?iϬ1hz F՘mrcž$P@cIgWeOPӮw~u>oaK 9X% $*UM$PxA|&36'8*͌09};¶vB-4mFxX#^f{OtSb߲DwXJhoj=nRF)rRQ:}}\M;Z6ږ"ir˂%Cȳtd1g S3G(⫥ۣB;'c֢=aAVGaX}f1 WKNQ'vF> /ˈƙ2.3J:ko;6\#( &]eGyoxVSI~T4^!v`ew_&A{2pk4Dey DCgJ݄U.95⟨ + ` ؂(o=xy3 Z(_Ϡ(9O \riO%sV%ٓ8+ȉ?[D߲c~L j Fdx9EwdZ(-U#k=#/N(\הf24t0=Mov5%5-2Z~d?T[^I|cpl?},-f~KgZMg uhpq }(ZuŤXʋX3_Xq䒁 (ʘ./cTNe/kŮ#:-2y:omB"i:61NdqkC%ϩoIC%'+qF#=-O +u1e\G:yAt'ݟj֍tv-gc<ڍx~~(砑v= µz%w,Q)+wDK筎n$i/wEw7_( +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/HDDKNU+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1944 +/Length3 533 +/Length 2480 +>> +stream +x{g~~}u Ff dPwvC(kIlp A,`P- + vkt{fQـ,Lb$v0HI4$C [ pKF P"@ +1`_ALM)Yb.@O̩))LP S(f ͅD/T3a6 ~Cs)& -JE<&A$Z2(Cx~$vFEH_߭AfR  I +Ew&;;f#4`db*@(mW +N)DcQ9,`YA`$H寅Vlh8{h~7N{V[>c_'hRg! ^[|Jf듕?xu%A|fBN}V;R+0,0=BRz1E)`MEzal]ǰW0G ^U25-m?=?BkTx3]J@1yGbn7?3Ї5H찲Ӫ#ˏZ6$ r{̈́Ǝ۩E[sDza"^]٩[괮&5GB;I02C K_e&ZN4~U2~ZȂ/X6g5OPQcJ—Ye$&ت{MAI`$KMA>k NT ][uK]5GGxfW9. +Cwe?嚞pi7nBPgor0M{\ܳxj!3Y`㎻ݏߘ2>]H^rj msMy9Wweڡ8P3!Wt3:Í P2JM4.SQ3E>KyxY鎄MD|;pbzl@>j_vS7W[ fܒM15I:$YK(ժ|C̽mZ?Uwk^;w)3.yaL~M6f]?4xv?*Q2\="uołO٪yM6ԗGJ^I +Fq ?WY7xI%GMJs9~m7ܨeGҎnX&CytUFeϲf[O5ƭkR|jV0;xM_hhMMOV\$?=Rt[oQk?ac1XE 1yyvLQZ;anLWkh{b"W |[f{VR55R /nNV wO^LjYi`$C`$:3꩟M/i3L_P%_;HNǖ}+VNUc=1W +6t9r]|h',\yIJG/PxmSNz, QO'q2Uygm\q"K!~II0A/%^rLA!{{2:u~RM',LKnsLϯw:0_'H$WTjg60K#,غp~兔A,Wڱh/;JqFB;b %8>rզ3pgBm.TGw_Q_;~}ihv$nMp'2V%_1+%Ng_?XgiU=hOѸM%= +-]&TZ~1FmO +hے5{`ENYQM(.~t_6HmI-ZJ0^j|]b b,ՠo}/'4b3$V( ! +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/ZYOOKG+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1600 +>> +stream +xiTWRD*n0bd7l  ( !NIfdTR(({P)m*.FOOt|{kg&pdNPqQőeֹIN&U!i78DPk29LwV%?(\w! Z<#rYT` T8Ҁ,\%~܊lt4ֽ>6ٞ?9쫫=UXzJtES&I?gxUFVd;i>@$Эoݛx/k;\-I"c`iMey#-}B`/ Poaw쵓u'BaI0I)B%2c +endstream +endobj +48 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/LEZOMG+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 47 0 R +/Flags 68 +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1796 +/Length3 533 +/Length 2335 +>> +stream +xk8T#dVMJI1ÌaB1nC#f13BePTJ.R$Ti79sZ/﻾ q`YZH8 <,@UDŽ,*nFdAXi`Zi.`ѺTA;Ix@u74T,KB"@ + hB^!_Dd*(T: +Owg21}\*($3@ ڶ ~?7\?[i4[׷oKEf &H`!&glxF%)4BwkA vTt'|U&oC=Jg9zC Oj̈I "R`?V?mfN'1T:t`d"OP`FH$ bЈS} D#1:*dBtY|ڝ*@$ q1H))iT` \Ka=.WNpRV7~KSObo@ۼz\D"Mc +{ۅ3/xMĔU-fj]Ͳ*m+pEYA%BG Œ_umk!ɳLMF@QȦᯈdcVu0Rװ:(/,S=jsAJe6Jy8$*59|s*YQ[ߗ/ru)ic)R9kaްB 3([]$/*N1HH}mZ=娯U}~b=ٔ4aw6=س6+P^BkbQK)zҲY\#/dzVZMg&>E0Swz'ٮb 7KC˾!RI:eChXrpҵ˜]R!wo"Z ixYjL`x br fm=1//_8xPCĒ3<~ab^*O}#]Tc(h[+st¦bQc.Ӭ;C% mwqǎ/ v8HdqxWN13!~lōuN]L's؎>>N.{SnSsK9hpG#|lP[cC{4 mU?+Wlp}A57F2ܮW)lVu C>{?YI=(#:,bZH+*xs.o9:)hhSaI,(a]]TMWK1u!kpV/9δ3:͢n{EGF "2Y /":2 +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/MECHAX+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3595 +/Length3 533 +/Length 4151 +>> +stream +xy@9Ck݌_, X4¿S! y%UHT!WhG&F ULY KR(82ptj~l'6^<͙- ػj_U +.>ȳ$bK }(<_3{,oj31am]&coXf̥[`~{|޸Ƴ=C pb|{u8i&qq eB:m5M#Oؐõ{Iw/ Xr/ + yk*ag} +y?U}pS[+w/xRu睲ǎq7"5BK uû5g55-[\BP3ΗpK 7$RK>ukVOI&ʎuY6>eVO`Yt,"6#"R`XAH5uF8 "_)Ͻuktgg! ua`ctnجHh%+rd$X<6`NbǶ1_ #J{ . DTuMyiH%aUm|GvƄ?ȏ;Pƈ9cBM'/nlؼ43^0MAB^ P|~Z`ڊ߶ #Ln zV/jg01T(oCv cO Z'M{fhhf~6atEMgg{:x1dS=\ݢI~ 䙐$50 qc'i"nͷݫCzm.p0Q,4 G +J|Jst# ROOઋa8RQ=?ϕsUڵl rS{ujb[MEyڹtޤ>uP}wZ/XT{]aT9ŭduW>H + #\[/E4^e7Y- $ԙuJЎuezzV)5MwgwLO'7zaFwc#m|w U ;qs9}̕1-۝sK9sP)[*qJLqjѸl`c D8e7pfX*1)DCYFT{Fsb!vG9ՁwI*>&9SܵnSQ_$O ͉6ZcPKA]kҏL + KӭaB66Wucރ2]PBpkRB1iպn BEn[7YaE;@i\s6lvmf˺V + {""%~)M7Ju/-P[GueG09ykQʎ# jl7:~nRIzˌ{ + e3_+ d`؜ԛ) 2cIy\mraJSr~ D+XlZ)˹lɶ X[̲k\ZcnSfқDtm[I"ͮװ|̱~A93a^OٸL^3got.nru)ZO`RTw+Лy) 3`{[;&{uqe FDס" e׭RhH7_"c7rS/.%-^ػ=ݫtۯXF28=7C|g?풉Vةtg:}÷=*f׶=nҕH{8]lÔ;<*uN}vPp~eω~tv˨3Ј4a+O$h-9X߱n3R&oo;XeyMx8N!zf$RX™u] &y] tvbT*w ,&S.J+ ?xĽ=x"kxT(dF5(e_I}e+AN۸3/ցwQ?І9!nUM*1uV.CeѪZmQn4vwYCLBo9&pU`1܏_Oc`?צwVVYp)|-&tquD8Mcۻ 2tdڨ "AzZ|fd><~#.*fHQհ!o6!q*uWvW6hzȩ60ò\6 |b.SWlij"bⰏ0|a=?DCS$4/P9 +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/KXZNYR+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 58 0 R +/Flags 68 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0R2f03&)*0;J)vKH6xPLڝ<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqȯ- b$"AM'ΓܣG,}cPJRi?W1s@N, \n0;~`RJ*sGgه&G'Z^<@4Ɛ h:;&%a#}N:}MurRn@ѤV6.40Y3^6 ztf<_ex-b{V >o@YSpJTLI_#_􂞯V}=r%x/+!ܳ4󺱃|hXe'2Wv)"d9kz#p(~])9 #&#'GnW{+$B +Q;I,E)=| bX4ŹW?:~g iwpz'?* +Ҏw˻tܗfsh]ys4Lm Om6ׂE %o&U6kJ2Q´oeX]Uf&RB*l[OWw'H\OӚG&X!l`kl{Ya9n4n^olge +.uJP'}o;oWr^e÷OW mi^E : E91OP!C{x)uվN\5ZE7{ZҨ hd$yt5B -ذzm駅9h~-hmj!3nݏg9'@~܎hqKZubnz$8Rb60RQ(؝-0fGk+>J5.(զ41H05+\x}]O +W{U_$:E {'>Vm.Li&Qd]{SڽjADK@NDM5#¼Kl#0oE~Tj> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10742 +/Length3 533 +/Length 11296 +>> +stream +xStf۶Um';yS1ضJ*m۶mַ}^{ߜvN;s΋{3~TIA agC"*L,GI) +9Yي9xHXYI$$,X>m.Mob ,V:fE +Le!ָj4ަI1U 79g4UqxRgKPG( zu~IT[z}Bgz;B?hTba^g>̵.}<% 奲Bx>~QROD9k=:I ++0 +U:Dr!|l7f֬ %,h|j2&2,ڛ7wbr{ 7 38ua oifT9.=h k~_,>E7S'Z?,\yVb BflzIK:=hQE E=/s >h|θd6%#pPzGX6g'&:KM[/6}k + ԑQ*+8ޟZ걼a0e'H8O:69Ϯ+Fqt5zRkhw ;L~|Z^!x__LK1gx:+*,O%7jLQB%lE+?"kDѧe`$I7Q_ZB0!?9-U}Jm]B:[X_3X gMBdEH?9?M2tJL:8^SOp!JjBsL@+LKMWƳ||+[䞟BKyQvUKT`?T{&qXsl~I NQvk +A: +̒a'"=f&.Ov6Ӓ&1u6LiɆ]4Xٝ%긧d ffsrFF'ty56coɁP{W4ۣ\Fo%B UMǞ!8_۴Q;1NW O(MȘm"r-:g#x{&z4/.1 :ber"_x2%9#Zq;2iƻt>hܿ}pL$lǗ?AsWVv^f~X|EE"+`uMܵi=*DTxN+E)1 cESIkI#vpX! -.^T7*t\@JәA;7b3l"|9Tl +1$RַB ` +WD3%(.uECIAc6mu"Y>c\E[ .H7WSX,ؚڭ2JN[߄{qyw-AU C,\=J߲9ӞT^{ᘱlO%nEx׳o쐠c>S$c:{Y[C&h?i~GsCHKTa~ܒ zvW{c)&ն];3UʟȰᲬ3X:RF?MDXPpd#?.Ky2Q'ha^X `+ڀWaw:zeeN'3C5T솮.(jCJhDjF^Mw#Afno c)m'FyI|է@TY +`N|B+|[g*fzW 496P` 1%\ʼn:ʕGȹ2$G)Rvz$;x_9I}ؿR9odG0ێbYL˱;<;lNiGeEO$3#јI{p>4Q!ɱU|V-@ַ`kNRZzn% ~G^}S}~2>|YM%փ+֒?^wN6WWyd,@7g6VoɊL`f T#r}w}v@jRىMcC1T({|;A֙k7c24+?_yj dKDa=!$RRZ,4d$8ߺ머IR5H(;)Y͚iR$TM5ʚ?-[69 _͝_$ 4%k P EL iZ3'GXKR~^D4LSI<xLOCg0/@M75 P.]*k)JLBH$bo v׬Lk܆ҹK<9 d?GѐO76GKP9aA + 9zʐ Ak*í="Ҙyv3Bsm£$BQw (hx:!ϾK6DUm~}rDs{L ?b֫|gGr|[8!w"g rh2ʖy"i0Xm t.NȶPUn!~N2ŭi&Nz6ӥb\h&V҉Ew1 ~I;t`.]2"7Tь[2'rtp DC4r}md^gI#JI)T <_aKޗ?% ;,U\ܮn2ZbxL$xq7.aܲHU) 4cnBKq=YaQE~Q#:40h8_>cQ`\ZDDgyj6F#yGXX; +W DcQWϱL&JpZ 7e&}0'cp=fR8cB*v0X}>ݽ#m+myef;gSypz9+BQ\A(I`E\#HƸfl1KK\3B!u\x }e Me ƽ7ENi=8&Fh>vyfm7~nдfL0[90i>}H'!2kM EWo-4qiP;6Ͻ݇/F"JPʤ@:rAa p`)?Z ++#ifp4?^0V +J<}q&kag4o ,m{_ȳξw_ZszHpjXB&eYC0>ve*ybQ2P\PN5V:d^Jȵf#73:doCC + ]N +\A <S[tþ'+ꤴit55GgQ#Q,rFµ{H%TLS f,Z?q取@+pCMkL.gurLaJʟO +IzCPab'ou7b2rޅtԂt7k1Si/ kgq\LiJ_/:<}Hw'6-MfOo1h\Mƽ, *|*{&ElVM3Zn`7a5 +Slր\3|<aϥGknxSnI0JO;.F`ƸiL IaVspY&awҰLA2mF䫞4hߘxW Og8M3p1HOeόc'G_3:> +/ōyc8œ鋨JQXH*SkTKF|duJ,V^,cǚ::5\ 9D5Ԙ|MuK]3\:fٮD`%[&늅y%,ZY"VЂa`C0~~C+F<1b3gR <_SzdXeFPZ]ئXe@34G_ze6o| {VwZ_$~9mDBpGi7fӖXd̖mcp/*s w,5P 3P8(_>-Pji6~ G,A@+zcyH `k9: anKE:SH|Eʫ'?lIKeUE)Vs3]ToKe7n( ' Y,S%ly4Ζes +Dy{@Pu )9 @\$c +E?`|pz/,-ٶ96p?X*= 2A*^!X(D{rk X_x͑?s\{\Ǭ2N_Dd~<F`މCeQ_Yx56],s& 5a%Lm(M/ڂ<&k |xnҴ:2]5q$6=엺TY珺 +ҘK7hDZ6| `n()ɪ 11YlJ[zυ3b㗏' {WuXt$ h cz&pS"=OThZ ouXX9q}$gN;9Aw= +*8gWZi4:΋+ llV|K;>i \ERYPgpc͌rQмKNrXq`b30{*/ 6߷ק"Q{4U;͈v$ȦL cVE~oUݼm0@")* Aˍ?ݾ+_?FŌWC{Lx /Z}J@hA@`4C=_& m $`tWB[Fn?F0j/[0=1)f .kT['Lj`B6yP٪p2Xd掶dɔO`}x]'lN e5Dv \Sbs@QpZ8']ɖe˪Z\P:Ag!$7r~j% o5 +KZnIWfqZhh*H pWH}nఽb(z;!,S;JvZbBQkfw,ݿoW#'LʵBJGpO Y+hDPlLwi] 7"QQ6IDq  ? +B͕cMMeO7.~ mI; mj\1V)bYEuVo$e<Ddf3"4 UTFGD6F2QshR|ܴh&hZ }Soo`giH;VΚS7{hT|nR'iN_X WNtNb@?,p}9U9-  ĹSRѯR},fZJh5[K#r'NAٕיR=I=iX:ѢH*kpNjʀ2zJ1ƕ^˓G ۑT~+Þƒ 3~^ǻ#vM g֦/N/ċIz ;%/#_3 笤H{ؒA7(ʽw~u4]wԌ5rjaiL ]#"B>m8%!`=Dkqn1[Qq "+EZ7P hXS'^[8REġf}/nyIQk%> k0z bnسS?eE&)~02w'/Z6o-VqOH~i`WWfCD[5ˏ)qMi3e*[o;J!:@.> ,_h4im ssAarØ:ξD9( +!U8{Ϗtջ1S2yvYkUсti>C,?@ P :ʥ=K"s-\X{9E.8zWAs_E?d1iKvj7=w<*Qh$snxXhA~94͚EkXL.G뀮2NtF}cp#'nW~bֽ+7al*>4_*uR`<,UL-zDg{_s sɄ5y0q\tIolNU_(mI!&e\QJLJXݕ2z(^.ו;5+<=5gtl]͏ʚ@$#m\)elnWɜe=֛JB|Llq;-h|ԕBR,96WRhQ.*oF65Lj;3vDc(7bߜ 8bpvM a'gEPa"Fr\쭸Ex ~S(`>v/}O6˃ttԁȮ9(GEB=+®gCJyIXnJ\[+XOavwآVhy*` '>%D`>;UL5oتq6  +ׇޔvG#c-Hr Kaճ:?9SsYcd!]ooOVCUpJ3_r{gc]ɝTcf ܢz@u?ҺfW;bgׄQÜpƇ6GZ4 CNqSA'ɞ*6O7!> >~θI. +s@IjJ4I9 qQEo7DMeT`Ióƥ&4:j[^ϧ?.:#} bs;$7Ev@]'[]T\^Wj]*?=<?N\ul^]Z06Ȓr4(7E I)pkصQ.Id dg)&!k[/7K-~KyPg+S(#D='}]m5z6<|vS#" "ͺ" +g!5NDU S8}C D0XG8@YPe1UCЉ/͠8bM鑂0֝3%iT.qP֨%kF)!ڹ"$"+UzAA'*ZnGuIk;aC03O3ԠLvLzq!RiYD++V#IMrKW~B!hh/G(}%PJK*iaQLt| 7Ƭ5扌v_vb 1b^z&fr'=DX\.hJ˗.JC?ϭ4 +*)6_P^HЊ"_ lw ~1v-ڏyI_#h_T†SyjY~t?8J7a{stlQ|nԑbۨ r[oxug|gm?Kpʱ&ŃXЫ%`}HL+ßPrxSk2ەPJ%cu +5?$/ sF=m/I+f +ܫ\#R@e[vz4%>foin஽썏>fm zL\Ş*qf%>ZUWjK(≹ +ôgV,a³}ඊȉdgΐuv3}{Hm"P]Z(]yث>S F2T0 /T97ko=Hco!և7E\*ӞڅڽӊC7{ 7BeLVDu!(l%HUdFk۽?TB V^[گmB͎~ +9 ]566,bJV 5ȘwSr6g5^xؘ;X9BJ9ɯohk$P|}~B[q1_"YZg}VE8vBd m;؊Z%:,~5HjY9'/y$ܴLvbX"va! J;R}׋\IX0PpkiWjf(Vp]}Vl rJNHQ'U`t1Z_Db +endstream +endobj +202 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/PRKEFU+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 201 0 R +/Flags 68 +>> +endobj +201 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D? -Tɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\cw +endstream +endobj +313 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/MTANJN+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 312 0 R +/Flags 68 +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq )[ANpwU@Rx k =Cpm9}n˞=zY4Z`' # TA^b:9J B  n z p +qqb`]60.~jiP1@C,ZNPH4x qz@@ Zk#P +VNd?[Wg.3'3h C08TW<˺۫;oq8!BS* /& ա0KO;PіPUTeǏnui{;CYU?0rr?h Ђ;]);/;y#~ըuq(Hx999T-]]!?7>Xb| ›Q^wμm\0(((ψZEǤH :WJ ơsb'I:*e(9kAq&w:f@S]֣' ĪdѩulB !E8p˝AԮ-Gr+E +ok/&Tv^DTtwWKԠ9k.* 1ZC/T4wv[ow +^q +RKKFfTMVP22.I- o !#Yl}`ќ~`ū&"ck@;Wak +n8$\ҧC$]W:dhjhQZ"5doƴ_/;4g8h\JG߄+K=sF?Jt}r22~Eh!~AWHQߠH?" YsuJ*7m_ǴBRʱsEy)'醝wU.x řtHx5P/= W%2;s?4Is~޾ FVh*W%u;T㚷cVW5m/{ƅ\U법D*/C j6MP0aw-ԭGVgm2RV$}nښTVW6H<"am?ջNkjfO\<!@g-en\VOqiX#^N!|ߴ=Wћ0λ rKt%?uN`ĦĊ¿r[ +;@fRUg_]QUlǸw'+!L0"k;K}l~coDvj/ٹJR ms + @н"|}xh? +1w,Z:Z؟vK7`%ҾrtbGGjțCܵ>-ȚfB}pǓXi7k=2ל.,=:m \ Ș|>XJ ]nEw#Eq='fxqPJ!2:+,uOAѝD. l^jI7+Q_ڽv惸I%fvadh#r1F88l1wѽ#p`%tu$%]*wy>m2l귪@=f̊Įn |@0:/F*@G?~WOӣkB+sGCeƯvO&Y!DU1@RŽ؍`BK]8QMyl'?yfNsҮXqz_J,h/5wfP3,2OL ѩZ^Ӎ*nX>FhQEYᅫ‚e\=$bYWf&^2@S0b/&Q=CU=t'b %ĆT'6})C\*!z+q:lXc K#N}nr{Ri)rZjв#2ǰBh*}.F+-T2!(!K9([4h7}O핹7}U8!|K~^D{Y>hf ȝib@T57@?M1āJ{URY#r:?!aͬ؏%֍ nv#G0h sm'6'LaPuU?3 χUx q/^W}V=B'jۿo*(dTZ\ +OsռM,(A) k9p?(Q ^fap[Ld58OFodQ(kKJ{%yo#&vQI֗7\E(ZD_uzCA~e?Qd*ȝJր62JHE$t8eSc%J?Gς ~f~ +A>/Q|' +XWy ; 64G=K.Px{F&~ॏ=XƁp{2zsc=THNh-ғR-RKt$J~O}1Gv?ϑh倄^D>.J}mVCW8X]p(bӟ?}Are&MwZ}L2'SODk&p޼o9 ?u~n{@Ŋ_81gqXQ5L۶X{\UdΘ&f0!ls|qm%QJf7̀b&cGw.Pn+SW]ǧt]#8_^E,D_&{cH8-x}Umگ̗m(|7'B0y6ܑDۊP$E*y7(Eeu]^(!V^ذL[ +lOlyңjwoL0 +ҪG3iMJw:Qx?ߎ,VaiXӬrzͻBȋ/N^4*cCmML6e!J|GmjҳU{LKbQ'R ~U [=y5b؈RJxQMlj\kpQn_ !t~q $&,q{dvxܰN.;ǎf!uYyDݪ#_>sa>f;k.7K58=9BQ1ks蘿tp@*7`11}5Ί& CUvZcVVr/xst-x]'LJA%`pk635 Z{\՞({6ރ[q>sK8HX>x y3"|nmշy9̣_RiGW= +Z#JMAT+{-!A6\أL۱LrWLxF *5٥e·4~SfBMpo5mpy`IɌX,]V|R%l2ju{ @X ?Rhu>il Z$ ;IþzX~*^RѭZPw%but'χ9b!TLo-\zӍ_0<Ii]~JJ +wä&)d|4LzAFu) !sgXA\nЃ +a "O5ўI|VChCbEy+:,~ w֩osNLĄ7bf/hW1SOz_&cv$4>3n:W"+ʝYLy69Y$r2(p~,1"HxNVĢur4i6nؤ3Bئs_KO= O0PW ިtmI8!#3M}9A仕'iffR&FhT-` `oz-A<-ɛ?8:ⱍK7֡u01UlM'7RK}ّ|QEUCMc1c, nEK_pv>L-:[%(FI;^8Mq0=SeRkz c!6\4+fmmhA6HR]\,LAP Z u"3UJz+Mqq4]L͡Z>YX푢K fx7$f9vߓ6oSID(4jW͉*Ƽ׭x`Ebx81ov+?/~ 74hM淼@˛g-oR(UPad!l}Y +mclm>95F@.vQ|<>n7#7%⋍;rU5nO<$^-mi}2a6Th( 9h+t&$&>2wg[ +&𽉈ĸ1s9s[HhhG(I2?;eoSVC0qrsoMt2l4OlT{E ?7t]wOeuD0Pb6j[11)*[f_ܕӳ7>mf4& +;,6 +mNkSyzX:}QAϊu֟y=bKi@bzj-=YE?ׁԩ>B̏"&>3Tɢp =_@tR95?oʟ=CKT +WrTdMcL OGYVjq~bt a|Ke +_`c?CcsjA#=NVa0d>ϩ@\ |\)^x3+R].div*@YQG&IŎ5-_q%&⹷IP7ijS7ވ5"`^/cW*fzS`z- kC^W඀zI3ċps|ԏGR׀,U5b;QKgm{St}FS+&}Ft^ 3aJo$rx!XFL$("ukJ sW34 +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185352-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +318 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 45 0 R 52 0 R] +/Parent 317 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +319 0 obj +<< +/Type/Pages +/Count 4 +/Kids[67 0 R 71 0 R 75 0 R 79 0 R] +/Parent 317 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +320 0 obj +<< +/Type/Pages +/Count 4 +/Kids[83 0 R 87 0 R 91 0 R 95 0 R] +/Parent 317 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 113 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +321 0 obj +<< +/Type/Pages +/Count 4 +/Kids[99 0 R 103 0 R 107 0 R 111 0 R] +/Parent 317 0 R +>> +endobj +317 0 obj +<< +/Type/Pages +/Count 16 +/Kids[318 0 R 319 0 R 320 0 R 321 0 R] +/Parent 3 0 R +>> +endobj +115 0 obj +<< +/Type/Page +/Resources 116 0 R +/Contents[17 0 R 4 0 R 117 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +119 0 obj +<< +/Type/Page +/Resources 120 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +123 0 obj +<< +/Type/Page +/Resources 124 0 R +/Contents[17 0 R 4 0 R 125 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +127 0 obj +<< +/Type/Page +/Resources 128 0 R +/Contents[17 0 R 4 0 R 129 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +323 0 obj +<< +/Type/Pages +/Count 4 +/Kids[115 0 R 119 0 R 123 0 R 127 0 R] +/Parent 322 0 R +>> +endobj +131 0 obj +<< +/Type/Page +/Resources 132 0 R +/Contents[17 0 R 4 0 R 133 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +135 0 obj +<< +/Type/Page +/Resources 136 0 R +/Contents[17 0 R 4 0 R 137 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +139 0 obj +<< +/Type/Page +/Resources 140 0 R +/Contents[17 0 R 4 0 R 141 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +143 0 obj +<< +/Type/Page +/Resources 144 0 R +/Contents[17 0 R 4 0 R 145 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +324 0 obj +<< +/Type/Pages +/Count 4 +/Kids[131 0 R 135 0 R 139 0 R 143 0 R] +/Parent 322 0 R +>> +endobj +147 0 obj +<< +/Type/Page +/Resources 148 0 R +/Contents[17 0 R 4 0 R 149 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +151 0 obj +<< +/Type/Page +/Resources 152 0 R +/Contents[17 0 R 4 0 R 153 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +155 0 obj +<< +/Type/Page +/Resources 156 0 R +/Contents[17 0 R 4 0 R 157 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +159 0 obj +<< +/Type/Page +/Resources 160 0 R +/Contents[17 0 R 4 0 R 161 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +325 0 obj +<< +/Type/Pages +/Count 4 +/Kids[147 0 R 151 0 R 155 0 R 159 0 R] +/Parent 322 0 R +>> +endobj +163 0 obj +<< +/Type/Page +/Resources 164 0 R +/Contents[17 0 R 4 0 R 165 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +167 0 obj +<< +/Type/Page +/Resources 168 0 R +/Contents[17 0 R 4 0 R 169 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +171 0 obj +<< +/Type/Page +/Resources 172 0 R +/Contents[17 0 R 4 0 R 173 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +175 0 obj +<< +/Type/Page +/Resources 176 0 R +/Contents[17 0 R 4 0 R 177 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +326 0 obj +<< +/Type/Pages +/Count 4 +/Kids[163 0 R 167 0 R 171 0 R 175 0 R] +/Parent 322 0 R +>> +endobj +322 0 obj +<< +/Type/Pages +/Count 16 +/Kids[323 0 R 324 0 R 325 0 R 326 0 R] +/Parent 3 0 R +>> +endobj +179 0 obj +<< +/Type/Page +/Resources 180 0 R +/Contents[17 0 R 4 0 R 181 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +183 0 obj +<< +/Type/Page +/Resources 184 0 R +/Contents[17 0 R 4 0 R 185 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +187 0 obj +<< +/Type/Page +/Resources 188 0 R +/Contents[17 0 R 4 0 R 189 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +191 0 obj +<< +/Type/Page +/Resources 192 0 R +/Contents[17 0 R 4 0 R 193 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +328 0 obj +<< +/Type/Pages +/Count 4 +/Kids[179 0 R 183 0 R 187 0 R 191 0 R] +/Parent 327 0 R +>> +endobj +195 0 obj +<< +/Type/Page +/Resources 196 0 R +/Contents[17 0 R 4 0 R 197 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +199 0 obj +<< +/Type/Page +/Resources 200 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +329 0 obj +<< +/Type/Pages +/Count 4 +/Kids[195 0 R 199 0 R 206 0 R 210 0 R] +/Parent 327 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +330 0 obj +<< +/Type/Pages +/Count 4 +/Kids[214 0 R 218 0 R 222 0 R 226 0 R] +/Parent 327 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +331 0 obj +<< +/Type/Pages +/Count 4 +/Kids[230 0 R 234 0 R 238 0 R 242 0 R] +/Parent 327 0 R +>> +endobj +327 0 obj +<< +/Type/Pages +/Count 16 +/Kids[328 0 R 329 0 R 330 0 R 331 0 R] +/Parent 3 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +333 0 obj +<< +/Type/Pages +/Count 4 +/Kids[246 0 R 250 0 R 254 0 R 258 0 R] +/Parent 332 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +334 0 obj +<< +/Type/Pages +/Count 4 +/Kids[262 0 R 266 0 R 270 0 R 274 0 R] +/Parent 332 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +335 0 obj +<< +/Type/Pages +/Count 4 +/Kids[278 0 R 282 0 R 286 0 R 290 0 R] +/Parent 332 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 315 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +337 0 obj +<< +/Type/Pages +/Count 2 +/Kids[306 0 R 310 0 R] +/Parent 336 0 R +>> +endobj +336 0 obj +<< +/Type/Pages +/Count 5 +/Kids[294 0 R 298 0 R 302 0 R 337 0 R] +/Parent 332 0 R +>> +endobj +332 0 obj +<< +/Type/Pages +/Count 17 +/Kids[333 0 R 334 0 R 335 0 R 336 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 65 +/Kids[317 0 R 322 0 R 327 0 R 332 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +338 0 obj +<< +>> +endobj +339 0 obj +null +endobj +340 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 338 0 R +/Threads 339 0 R +/Names 340 0 R +>> +endobj +xref +0 341 +0000000000 65535 f +0000147975 00000 n +0000157520 00000 n +0000157165 00000 n +0000157370 00000 n +0000148139 00000 n +0000004049 00000 n +0000000009 00000 n +0000074970 00000 n +0000074786 00000 n +0000000913 00000 n +0000079813 00000 n +0000079627 00000 n +0000001906 00000 n +0000085397 00000 n +0000085209 00000 n +0000002823 00000 n +0000157270 00000 n +0000003740 00000 n +0000157320 00000 n +0000003994 00000 n +0000148242 00000 n +0000013317 00000 n +0000095453 00000 n +0000095264 00000 n +0000004110 00000 n +0000100724 00000 n +0000100534 00000 n +0000005056 00000 n +0000106028 00000 n +0000105839 00000 n +0000005992 00000 n +0000006968 00000 n +0000110301 00000 n +0000110107 00000 n +0000007922 00000 n +0000114788 00000 n +0000114602 00000 n +0000008868 00000 n +0000009832 00000 n +0000117577 00000 n +0000117382 00000 n +0000011448 00000 n +0000012399 00000 n +0000013218 00000 n +0000148347 00000 n +0000015457 00000 n +0000119482 00000 n +0000119291 00000 n +0000013379 00000 n +0000014374 00000 n +0000015357 00000 n +0000148452 00000 n +0000020861 00000 n +0000122125 00000 n +0000121931 00000 n +0000015519 00000 n +0000016490 00000 n +0000126585 00000 n +0000126390 00000 n +0000017397 00000 n +0000018379 00000 n +0000129242 00000 n +0000129056 00000 n +0000019356 00000 n +0000020101 00000 n +0000020737 00000 n +0000148651 00000 n +0000021767 00000 n +0000020923 00000 n +0000021632 00000 n +0000148756 00000 n +0000022803 00000 n +0000021829 00000 n +0000022668 00000 n +0000148861 00000 n +0000023917 00000 n +0000022865 00000 n +0000023782 00000 n +0000148966 00000 n +0000025190 00000 n +0000023979 00000 n +0000025055 00000 n +0000149166 00000 n +0000026290 00000 n +0000025252 00000 n +0000026166 00000 n +0000149271 00000 n +0000026878 00000 n +0000026352 00000 n +0000026833 00000 n +0000149376 00000 n +0000027998 00000 n +0000026940 00000 n +0000027851 00000 n +0000149481 00000 n +0000029026 00000 n +0000028060 00000 n +0000028891 00000 n +0000149681 00000 n +0000029421 00000 n +0000029088 00000 n +0000029375 00000 n +0000149788 00000 n +0000030521 00000 n +0000029485 00000 n +0000030385 00000 n +0000149896 00000 n +0000031186 00000 n +0000030585 00000 n +0000031140 00000 n +0000150004 00000 n +0000031618 00000 n +0000031250 00000 n +0000031572 00000 n +0000150308 00000 n +0000032635 00000 n +0000031682 00000 n +0000032499 00000 n +0000150416 00000 n +0000033029 00000 n +0000032699 00000 n +0000032983 00000 n +0000150524 00000 n +0000034083 00000 n +0000033093 00000 n +0000033947 00000 n +0000150632 00000 n +0000035037 00000 n +0000034147 00000 n +0000034901 00000 n +0000150839 00000 n +0000035431 00000 n +0000035101 00000 n +0000035385 00000 n +0000150947 00000 n +0000036615 00000 n +0000035495 00000 n +0000036479 00000 n +0000151055 00000 n +0000037112 00000 n +0000036679 00000 n +0000037066 00000 n +0000151163 00000 n +0000038196 00000 n +0000037176 00000 n +0000038071 00000 n +0000151370 00000 n +0000038464 00000 n +0000038260 00000 n +0000038418 00000 n +0000151478 00000 n +0000039474 00000 n +0000038528 00000 n +0000039349 00000 n +0000151586 00000 n +0000039742 00000 n +0000039538 00000 n +0000039696 00000 n +0000151694 00000 n +0000040917 00000 n +0000039806 00000 n +0000040781 00000 n +0000151901 00000 n +0000041623 00000 n +0000040981 00000 n +0000041577 00000 n +0000152009 00000 n +0000042149 00000 n +0000041687 00000 n +0000042103 00000 n +0000152117 00000 n +0000043133 00000 n +0000042213 00000 n +0000043008 00000 n +0000152225 00000 n +0000044272 00000 n +0000043197 00000 n +0000044136 00000 n +0000152530 00000 n +0000044857 00000 n +0000044336 00000 n +0000044811 00000 n +0000152638 00000 n +0000046059 00000 n +0000044921 00000 n +0000045923 00000 n +0000152746 00000 n +0000046414 00000 n +0000046123 00000 n +0000046368 00000 n +0000152854 00000 n +0000047571 00000 n +0000046478 00000 n +0000047435 00000 n +0000153061 00000 n +0000047978 00000 n +0000047635 00000 n +0000047932 00000 n +0000153169 00000 n +0000050670 00000 n +0000140850 00000 n +0000140654 00000 n +0000048042 00000 n +0000049054 00000 n +0000050509 00000 n +0000153277 00000 n +0000051451 00000 n +0000050734 00000 n +0000051405 00000 n +0000153385 00000 n +0000052228 00000 n +0000051515 00000 n +0000052182 00000 n +0000153592 00000 n +0000052809 00000 n +0000052292 00000 n +0000052763 00000 n +0000153700 00000 n +0000054046 00000 n +0000052873 00000 n +0000053910 00000 n +0000153808 00000 n +0000054795 00000 n +0000054110 00000 n +0000054749 00000 n +0000153916 00000 n +0000055555 00000 n +0000054859 00000 n +0000055509 00000 n +0000154123 00000 n +0000056289 00000 n +0000055619 00000 n +0000056243 00000 n +0000154231 00000 n +0000056606 00000 n +0000056353 00000 n +0000056560 00000 n +0000154339 00000 n +0000057868 00000 n +0000056670 00000 n +0000057719 00000 n +0000154447 00000 n +0000058626 00000 n +0000057932 00000 n +0000058580 00000 n +0000154752 00000 n +0000059486 00000 n +0000058690 00000 n +0000059440 00000 n +0000154860 00000 n +0000060262 00000 n +0000059550 00000 n +0000060216 00000 n +0000154968 00000 n +0000060944 00000 n +0000060326 00000 n +0000060898 00000 n +0000155076 00000 n +0000061673 00000 n +0000061008 00000 n +0000061627 00000 n +0000155283 00000 n +0000063175 00000 n +0000061737 00000 n +0000063026 00000 n +0000155391 00000 n +0000063870 00000 n +0000063239 00000 n +0000063824 00000 n +0000155499 00000 n +0000064606 00000 n +0000063934 00000 n +0000064560 00000 n +0000155607 00000 n +0000065355 00000 n +0000064670 00000 n +0000065309 00000 n +0000155814 00000 n +0000066132 00000 n +0000065419 00000 n +0000066086 00000 n +0000155922 00000 n +0000066936 00000 n +0000066196 00000 n +0000066890 00000 n +0000156030 00000 n +0000067732 00000 n +0000067000 00000 n +0000067686 00000 n +0000156138 00000 n +0000068528 00000 n +0000067796 00000 n +0000068482 00000 n +0000156345 00000 n +0000069294 00000 n +0000068592 00000 n +0000069248 00000 n +0000156453 00000 n +0000070579 00000 n +0000069358 00000 n +0000070418 00000 n +0000156561 00000 n +0000071891 00000 n +0000070643 00000 n +0000071730 00000 n +0000156669 00000 n +0000073336 00000 n +0000071955 00000 n +0000073175 00000 n +0000156777 00000 n +0000074722 00000 n +0000142268 00000 n +0000142073 00000 n +0000073400 00000 n +0000074323 00000 n +0000074664 00000 n +0000150210 00000 n +0000148557 00000 n +0000149071 00000 n +0000149586 00000 n +0000150112 00000 n +0000152432 00000 n +0000150740 00000 n +0000151271 00000 n +0000151802 00000 n +0000152333 00000 n +0000154654 00000 n +0000152962 00000 n +0000153493 00000 n +0000154024 00000 n +0000154555 00000 n +0000157067 00000 n +0000155184 00000 n +0000155715 00000 n +0000156246 00000 n +0000156968 00000 n +0000156885 00000 n +0000157452 00000 n +0000157475 00000 n +0000157497 00000 n +trailer +<< +/Size 341 +/Root 2 0 R +/Info 1 0 R +>> +startxref +157618 +%%EOF diff --git a/src/axiom-website/CATS/schaum19.input.pamphlet b/src/axiom-website/CATS/schaum19.input.pamphlet new file mode 100644 index 0000000..eeb4d9d --- /dev/null +++ b/src/axiom-website/CATS/schaum19.input.pamphlet @@ -0,0 +1,2781 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum19.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.399~~~~~$\displaystyle +\int{\sin{ax}\cos{ax}}~dx$} +$$\int{\sin{ax}\cos{ax}}= +\frac{\sin^2{ax}}{2a} +$$ +<<*>>= +)spool schaum19.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sin(a*x)*cos(a*x),x) +--R +--R +--R 2 +--R cos(a x) +--R (1) - --------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=sin(a*x)^2/(2*a) +--R +--R 2 +--R sin(a x) +--R (2) --------- +--R 2a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R 2 2 +--R - sin(a x) - cos(a x) +--R (3) ----------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 4 +cossqrrule:=rule(cos(a)^2 == 1-sin(a)^2) +--R +--R 2 2 +--R (4) cos(a) == - sin(a) + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 14:399 Schaums and Axiom differ by a constant +dd:=cossqrrule cc +--R +--R 1 +--R (5) - -- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.400~~~~~$\displaystyle +\int{\sin{px}\cos{qx}}~dx$} +$$\int{\sin{px}\cos{qx}}= +-\frac{cos(p-q)x}{2(p-q)}-\frac{cos(p+q)x}{2(p+q)} +$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(sin(p*x)*cos(q*x),x) +--R +--R +--R q sin(p x)sin(q x) + p cos(p x)cos(q x) +--R (1) --------------------------------------- +--R 2 2 +--R q - p +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=-cos((p-q)*x)/(2*(p-q))-cos((p+q)*x)/(2*(p+q)) +--R +--R (- q + p)cos((q + p)x) + (q + p)cos((q - p)x) +--R (2) --------------------------------------------- +--R 2 2 +--R 2q - 2p +--R Type: Expression Integer +--E + +--S 8 +cc:=aa-bb +--R +--R (3) +--R 2q sin(p x)sin(q x) + (q - p)cos((q + p)x) + 2p cos(p x)cos(q x) +--R + +--R (- q - p)cos((q - p)x) +--R / +--R 2 2 +--R 2q - 2p +--R Type: Expression Integer +--E + +--S 9 14:400 Schaums and Axiom agree +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.401~~~~~$\displaystyle +\int{\sin^n{ax}\cos{ax}}~dx$ provided $n \ne -1$} +$$\int{\sin^n{ax}\cos{ax}}= +\frac{\sin^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(sin(a*x)^n*cos(a*x),x) +--R +--R +--R n log(sin(a x)) +--R sin(a x)%e +--R (1) ------------------------- +--R a n + a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=sin(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R sin(a x) +--R (2) ------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 12 +cc:=aa-bb +--R +--R n log(sin(a x)) n + 1 +--R sin(a x)%e - sin(a x) +--R (3) ----------------------------------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 13 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 14 +dd:=explog cc +--R +--R n + 1 n +--R - sin(a x) + sin(a x)sin(a x) +--R (5) ----------------------------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 15 14:401 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.402~~~~~$\displaystyle +\int{\cos^n{ax}*sin{ax}}~dx$ provided $n \ne -1$} +$$\int{\cos^n{ax}*sin{ax}}= +-\frac{\cos^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(cos(a*x)^n*sin(a*x),x) +--R +--R +--R n log(cos(a x)) +--R cos(a x)%e +--R (1) - ------------------------- +--R a n + a +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=-cos(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R cos(a x) +--R (2) - ------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 18 +cc:=aa-bb +--R +--R n log(cos(a x)) n + 1 +--R - cos(a x)%e + cos(a x) +--R (3) ------------------------------------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 19 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 +dd:=explog cc +--R +--R n + 1 n +--R cos(a x) - cos(a x)cos(a x) +--R (5) --------------------------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 21 14:402 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.403~~~~~$\displaystyle +\int{\sin^2{ax}\cos^2{ax}}$} +$$\int{\sin^2{ax}\cos^2{ax}}= +\frac{x}{8}-\frac{\sin{4ax}}{32a} +$$ +<<*>>= +)clear all + +--S 22 +aa:=integrate(sin(a*x)^2*cos(a*x)^2,x) +--R +--R +--R 3 +--R (- 2cos(a x) + cos(a x))sin(a x) + a x +--R (1) --------------------------------------- +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 23 +bb:=x/8-sin(4*a*x)/(32*a) +--R +--R - sin(4a x) + 4a x +--R (2) ------------------ +--R 32a +--R Type: Expression Integer +--E + +--S 24 +cc:=aa-bb +--R +--R 3 +--R sin(4a x) + (- 8cos(a x) + 4cos(a x))sin(a x) +--R (3) ---------------------------------------------- +--R 32a +--R Type: Expression Integer +--E + +--S 25 14:403 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.404~~~~~$\displaystyle +\int{\frac{dx}{\sin{ax}\cos{ax}}}$} +$$\int{\frac{1}{\sin{ax}\cos{ax}}}= +\frac{1}{a}\ln~\tan{ax} +$$ +<<*>>= +)clear all + +--S 26 +aa:=integrate(1/(sin(a*x)*cos(a*x)),x) +--R +--R +--R sin(a x) 2cos(a x) +--R log(------------) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) --------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 27 +bb:=1/a*log(tan(a*x)) +--R +--R log(tan(a x)) +--R (2) ------------- +--R a +--R Type: Expression Integer +--E + +--S 28 +cc:=aa-bb +--R +--R sin(a x) 2cos(a x) +--R - log(tan(a x)) + log(------------) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (3) --------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 29 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 30 +dd:=tanrule cc +--R +--R sin(a x) sin(a x) 2cos(a x) +--R - log(--------) + log(------------) - log(- ------------) +--R cos(a x) cos(a x) + 1 cos(a x) + 1 +--R (5) --------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 31 14:404 Schaums and Axiom differ by a constant +ee:=expandLog dd +--R +--R log(- 2) +--R (6) - -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.405~~~~~$\displaystyle +\int{\frac{dx}{\sin^2{ax}\cos{ax}}}$} +$$\int{\frac{1}{\sin^2{ax}\cos{ax}}}= +\frac{1}{a}\ln~\tan\left(\frac{\pi}{4}+\frac{ax}{2}\right)-\frac{1}{a\sin{ax}} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(1/(sin(a*x)^2*cos(a*x)),x) +--R +--R +--R (1) +--R sin(a x) + cos(a x) + 1 +--R sin(a x)log(-----------------------) +--R cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - sin(a x)log(-----------------------) - 1 +--R cos(a x) + 1 +--R / +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=1/a*log(tan(%pi/4+(a*x)/2))-1/(a*sin(a*x)) +--R +--R 2a x + %pi +--R sin(a x)log(tan(----------)) - 1 +--R 4 +--R (2) -------------------------------- +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 34 +cc:=aa-bb +--R +--R (3) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 35 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 36 +dd:=tanrule cc +--R +--R (5) +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R + +--R 2a x + %pi +--R sin(----------) +--R 4 +--R - log(---------------) +--R 2a x + %pi +--R cos(----------) +--R 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 37 +ee:=expandLog dd +--R +--R (6) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) - cos(a x) - 1) +--R + +--R 2a x + %pi 2a x + %pi +--R - log(sin(----------)) + log(cos(----------)) +--R 4 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 38 14:405 Schaums and Axiom differ by a constant +ff:=complexNormalize % +--R +--R log(- 1) +--R (7) -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.406~~~~~$\displaystyle +\int{\frac{dx}{\sin{ax}\cos^2{ax}}}$} +$$\int{\frac{1}{\sin{ax}\cos^2{ax}}}= +\frac{1}{a}\ln~\tan\frac{ax}{2}+\frac{1}{a\cos{ax}} +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(1/(sin(a*x)*cos(a*x)^2),x) +--R +--R +--R sin(a x) +--R cos(a x)log(------------) + cos(a x) + 1 +--R cos(a x) + 1 +--R (1) ---------------------------------------- +--R a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=1/a*log(tan((a*x)/2))+1/(a*cos(a*x)) +--R +--R a x +--R cos(a x)log(tan(---)) + 1 +--R 2 +--R (2) ------------------------- +--R a cos(a x) +--R Type: Expression Integer +--E + +--S 41 +cc:=aa-bb +--R +--R a x sin(a x) +--R - log(tan(---)) + log(------------) + 1 +--R 2 cos(a x) + 1 +--R (3) --------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 42 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 43 +dd:=tanrule cc +--R +--R a x +--R sin(---) +--R sin(a x) 2 +--R log(------------) - log(--------) + 1 +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (5) ------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 44 +ee:=expandLog dd +--R +--R a x a x +--R log(sin(a x)) - log(sin(---)) - log(cos(a x) + 1) + log(cos(---)) + 1 +--R 2 2 +--R (6) --------------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 45 14:406 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R 1 +--R (7) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.407~~~~~$\displaystyle +\int{\frac{dx}{\sin^2{ax}\cos^2{ax}}}$} +$$\int{\frac{1}{\sin^2{ax}\cos^2{ax}}}= +-\frac{2\cot{2ax}}{a} +$$ +<<*>>= +)clear all + +--S 46 +aa:=integrate(1/(sin(a*x)^2*cos(a*x)^2),x) +--R +--R +--R 2 +--R - 2cos(a x) + 1 +--R (1) ------------------ +--R a cos(a x)sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 47 +bb:=-(2*cot(2*a*x))/a +--R +--R 2cot(2a x) +--R (2) - ---------- +--R a +--R Type: Expression Integer +--E + +--S 48 +cc:=aa-bb +--R +--R 2 +--R 2cos(a x)cot(2a x)sin(a x) - 2cos(a x) + 1 +--R (3) ------------------------------------------- +--R a cos(a x)sin(a x) +--R Type: Expression Integer +--E + +--S 49 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 50 +dd:=cotrule cc +--R +--R 2 +--R (- 2cos(a x) + 1)sin(2a x) + 2cos(a x)cos(2a x)sin(a x) +--R (5) -------------------------------------------------------- +--R a cos(a x)sin(a x)sin(2a x) +--R Type: Expression Integer +--E + +--S 51 14:407 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.408~~~~~$\displaystyle +\int{\frac{\sin^2{ax}}{\cos{ax}}}~dx$} +$$\int{\frac{\sin^2{ax}}{\cos{ax}}}= +-\frac{\sin{ax}}{a}+\frac{1}{a}\ln~\tan\left(\frac{ax}{2}+\frac{\pi}{4}\right) +$$ +<<*>>= +)clear all + +--S 52 +aa:=integrate(sin(a*x)^2/cos(a*x),x) +--R +--R +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) - sin(a x) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ---------------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 53 +bb:=-sin(a*x)/a+1/a*log(tan((a*x)/2+%pi/4)) +--R +--R 2a x + %pi +--R log(tan(----------)) - sin(a x) +--R 4 +--R (2) ------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 54 +cc:=aa-bb +--R +--R (3) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 55 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 56 +dd:=tanrule cc +--R +--R (5) +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R + +--R 2a x + %pi +--R sin(----------) +--R 4 +--R - log(---------------) +--R 2a x + %pi +--R cos(----------) +--R 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 57 +ee:=expandLog dd +--R +--R (6) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) - cos(a x) - 1) +--R + +--R 2a x + %pi 2a x + %pi +--R - log(sin(----------)) + log(cos(----------)) +--R 4 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 58 14:408 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R log(- 1) +--R (7) -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.409~~~~~$\displaystyle +\int{\frac{\cos^2{ax}}{\sin{ax}}}~dx$} +$$\int{\frac{\cos^2{ax}}{\sin{ax}}}= +\frac{\cos{ax}}{a}+\frac{1}{a}\ln~\tan{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 59 +aa:=integrate(cos(a*x)^2/sin(a*x),x) +--R +--R +--R sin(a x) +--R log(------------) + cos(a x) +--R cos(a x) + 1 +--R (1) ---------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 60 +bb:=cos(a*x)/a+1/a*log(tan((a*x)/2)) +--R +--R a x +--R log(tan(---)) + cos(a x) +--R 2 +--R (2) ------------------------ +--R a +--R Type: Expression Integer +--E + +--S 61 +cc:=aa-bb +--R +--R a x sin(a x) +--R - log(tan(---)) + log(------------) +--R 2 cos(a x) + 1 +--R (3) ----------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 62 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 63 +dd:=tanrule cc +--R +--R a x +--R sin(---) +--R sin(a x) 2 +--R log(------------) - log(--------) +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (5) --------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 64 +ee:=expandLog dd +--R +--R a x a x +--R log(sin(a x)) - log(sin(---)) - log(cos(a x) + 1) + log(cos(---)) +--R 2 2 +--R (6) ----------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 65 14:409 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.410~~~~~$\displaystyle +\int{\frac{dx}{\cos{ax}(1\pm\sin{ax})}}$} +$$\int{\frac{1}{\cos{ax}(1\pm\sin{ax})}}= +\mp\frac{1}{2a(1\pm\sin{ax})} ++\frac{1}{2a}\ln~\tan\left(\frac{ax}{2}+\frac{\pi}{4}\right) +$$ +<<*>>= +)clear all + +--S 66 +aa:=integrate(1/(cos(a*x)*(1+sin(a*x))),x) +--R +--R +--R (1) +--R sin(a x) + cos(a x) + 1 +--R (sin(a x) + 1)log(-----------------------) +--R cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R (- sin(a x) - 1)log(-----------------------) + sin(a x) +--R cos(a x) + 1 +--R / +--R 2a sin(a x) + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 67 +bb:=-1/(2*a*(1+sin(a*x)))+1/(2*a)*log(tan((a*x)/2+%pi/4)) +--R +--R 2a x + %pi +--R (sin(a x) + 1)log(tan(----------)) - 1 +--R 4 +--R (2) -------------------------------------- +--R 2a sin(a x) + 2a +--R Type: Expression Integer +--E + +--S 68 +cc:=aa-bb +--R +--R (3) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) + 1 +--R cos(a x) + 1 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 69 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 70 +dd:=tanrule cc +--R +--R (5) +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R + +--R 2a x + %pi +--R sin(----------) +--R 4 +--R - log(---------------) + 1 +--R 2a x + %pi +--R cos(----------) +--R 4 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 71 +ee:=expandLog dd +--R +--R (6) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) - cos(a x) - 1) +--R + +--R 2a x + %pi 2a x + %pi +--R - log(sin(----------)) + log(cos(----------)) + 1 +--R 4 4 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 72 +ff:=complexNormalize ee +--R +--R log(- 1) + 1 +--R (7) ------------ +--R 2a +--R Type: Expression Integer +--E + +)clear all + +--S 73 +aa:=integrate(1/(cos(a*x)*(1-sin(a*x))),x) +--R +--R +--R (1) +--R sin(a x) + cos(a x) + 1 +--R (sin(a x) - 1)log(-----------------------) +--R cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R (- sin(a x) + 1)log(-----------------------) - sin(a x) +--R cos(a x) + 1 +--R / +--R 2a sin(a x) - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 74 +bb:=1/(2*a*(1-sin(a*x)))+1/(2*a)*log(tan((a*x)/2+%pi/4)) +--R +--R 2a x + %pi +--R (sin(a x) - 1)log(tan(----------)) - 1 +--R 4 +--R (2) -------------------------------------- +--R 2a sin(a x) - 2a +--R Type: Expression Integer +--E + +--S 75 +cc:=aa-bb +--R +--R (3) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) - 1 +--R cos(a x) + 1 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 76 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 77 +dd:=tanrule cc +--R +--R (5) +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R + +--R 2a x + %pi +--R sin(----------) +--R 4 +--R - log(---------------) - 1 +--R 2a x + %pi +--R cos(----------) +--R 4 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 78 +ee:=expandLog dd +--R +--R (6) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) - cos(a x) - 1) +--R + +--R 2a x + %pi 2a x + %pi +--R - log(sin(----------)) + log(cos(----------)) - 1 +--R 4 4 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 79 14:410 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R log(- 1) - 1 +--R (7) ------------ +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.411~~~~~$\displaystyle +\int{\frac{dx}{\sin{ax}(1\pm\cos{ax})}}$} +$$\int{\frac{1}{\sin{ax}(1\pm\cos{ax})}}= +\pm\frac{1}{2a(1\pm\cos{ax})}+\frac{1}{2a}\ln~\tan\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 80 +aa:=integrate(1/(sin(a*x)*(1+cos(a*x))),x) +--R +--R +--R sin(a x) +--R (2cos(a x) + 2)log(------------) - cos(a x) + 1 +--R cos(a x) + 1 +--R (1) ----------------------------------------------- +--R 4a cos(a x) + 4a +--R Type: Union(Expression Integer,...) +--E + +--S 81 +bb:=1/(2*a*(1+cos(a*x)))+1/(2*a)*log(tan((a*x)/2)) +--R +--R a x +--R (cos(a x) + 1)log(tan(---)) + 1 +--R 2 +--R (2) ------------------------------- +--R 2a cos(a x) + 2a +--R Type: Expression Integer +--E + +--S 82 +cc:=aa-bb +--R +--R a x sin(a x) +--R - 2log(tan(---)) + 2log(------------) - 1 +--R 2 cos(a x) + 1 +--R (3) ----------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 83 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 84 +dd:=tanrule cc +--R +--R a x +--R sin(---) +--R sin(a x) 2 +--R 2log(------------) - 2log(--------) - 1 +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (5) --------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 85 +ee:=expandLog dd +--R +--R (6) +--R a x a x +--R 2log(sin(a x)) - 2log(sin(---)) - 2log(cos(a x) + 1) + 2log(cos(---)) - 1 +--R 2 2 +--R ------------------------------------------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 86 +ff:=complexNormalize ee +--R +--R 1 +--R (7) - -- +--R 4a +--R Type: Expression Integer +--E + +)clear all + +--S 87 +aa:=integrate(1/(sin(a*x)*(1-cos(a*x))),x) +--R +--R +--R sin(a x) +--R (2cos(a x) - 2)log(------------) + cos(a x) + 1 +--R cos(a x) + 1 +--R (1) ----------------------------------------------- +--R 4a cos(a x) - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 88 +bb:=-1/(2*a*(1-cos(a*x)))+1/(2*a)*log(tan((a*x)/2)) +--R +--R a x +--R (cos(a x) - 1)log(tan(---)) + 1 +--R 2 +--R (2) ------------------------------- +--R 2a cos(a x) - 2a +--R Type: Expression Integer +--E + +--S 89 +cc:=aa-bb +--R +--R a x sin(a x) +--R - 2log(tan(---)) + 2log(------------) + 1 +--R 2 cos(a x) + 1 +--R (3) ----------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 90 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 91 +dd:=tanrule cc +--R +--R a x +--R sin(---) +--R sin(a x) 2 +--R 2log(------------) - 2log(--------) + 1 +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (5) --------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 92 +ee:=expandLog dd +--R +--R (6) +--R a x a x +--R 2log(sin(a x)) - 2log(sin(---)) - 2log(cos(a x) + 1) + 2log(cos(---)) + 1 +--R 2 2 +--R ------------------------------------------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 93 14:411 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R 1 +--R (7) -- +--R 4a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.412~~~~~$\displaystyle +\int{\frac{dx}{\sin{ax}\pm\cos{ax}}}$} +$$\int{\frac{1}{\sin{ax}\pm\cos{ax}}}= +\frac{1}{a\sqrt{2}}\ln~\tan\left(\frac{ax}{2}\pm\frac{\pi}{8}\right) +$$ +<<*>>= +)clear all + +--S 94 +aa:=integrate(1/(sin(a*x)+cos(a*x)),x) +--R +--R +--R +-+ +-+ +-+ +--R +-+ (- \|2 + 1)sin(a x) + (\|2 - 1)cos(a x) + \|2 - 2 +--R \|2 log(----------------------------------------------------) +--R sin(a x) + cos(a x) +--R (1) ------------------------------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 95 +bb:=1/(a*sqrt(2))*log(tan((a*x)/2+%pi/8)) +--R +--R +-+ 4a x + %pi +--R \|2 log(tan(----------)) +--R 8 +--R (2) ------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 96 +cc:=aa-bb +--R +--R (3) +--R +-+ 4a x + %pi +--R - \|2 log(tan(----------)) +--R 8 +--R + +--R +-+ +-+ +-+ +--R +-+ (- \|2 + 1)sin(a x) + (\|2 - 1)cos(a x) + \|2 - 2 +--R \|2 log(----------------------------------------------------) +--R sin(a x) + cos(a x) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 97 +complexNormalize cc +--R +--R +-+ +--R +-+ \|2 - 2 +--R \|2 log(--------) +--R +-+ +--R \|2 +--R (4) ----------------- +--R 2a +--R Type: Expression Integer +--E + +)clear all + +--S 98 +aa:=integrate(1/(sin(a*x)-cos(a*x)),x) +--R +--R +--R +-+ +-+ +-+ +--R +-+ (- \|2 + 1)sin(a x) + (- \|2 + 1)cos(a x) - \|2 + 2 +--R \|2 log(------------------------------------------------------) +--R sin(a x) - cos(a x) +--R (1) --------------------------------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 99 +bb:=1/(a*sqrt(2))*log(tan((a*x)/2-%pi/8)) +--R +--R +-+ 4a x - %pi +--R \|2 log(tan(----------)) +--R 8 +--R (2) ------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 100 +cc:=aa-bb +--R +--R (3) +--R +-+ 4a x - %pi +--R - \|2 log(tan(----------)) +--R 8 +--R + +--R +-+ +-+ +-+ +--R +-+ (- \|2 + 1)sin(a x) + (- \|2 + 1)cos(a x) - \|2 + 2 +--R \|2 log(------------------------------------------------------) +--R sin(a x) - cos(a x) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 101 14:412 Schaums and Axiom differ by a constant +complexNormalize cc +--R +--R +-+ +-+ +--R \|2 log(\|2 - 1) +--R (4) ----------------- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.413~~~~~$\displaystyle +\int{\frac{\sin{ax}~dx}{\sin{ax}\pm\cos{ax}}}$} +$$\int{\frac{\sin{ax}}{\sin{ax}\pm\cos{ax}}}= +\frac{x}{2}\mp\frac{1}{2a}\ln(\sin{ax}\pm\cos{ax}) +$$ +<<*>>= +)clear all + +--S 102 +aa:=integrate(sin(a*x)/(sin(a*x)+cos(a*x)),x) +--R +--R +--R 2 - 2sin(a x) - 2cos(a x) +--R log(------------) - log(-----------------------) + a x +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ------------------------------------------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 103 +bb:=x/2-1/(2*a)*log(sin(a*x)+cos(a*x)) +--R +--R - log(sin(a x) + cos(a x)) + a x +--R (2) -------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 104 +cc:=aa-bb +--R +--R (3) +--R 2 - 2sin(a x) - 2cos(a x) +--R log(sin(a x) + cos(a x)) + log(------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R --------------------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 105 +dd:=expandLog cc +--R +--R log(sin(a x) + cos(a x)) - log(- sin(a x) - cos(a x)) +--R (4) ----------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 106 +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) -------- +--R 2a +--R Type: Expression Integer +--E + +)clear all + +--S 107 +aa:=integrate(sin(a*x)/(sin(a*x)-cos(a*x)),x) +--R +--R +--R 2sin(a x) - 2cos(a x) 2 +--R log(---------------------) - log(------------) + a x +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ---------------------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 108 +bb:=x/2+1/(2*a)*log(sin(a*x)-cos(a*x)) +--R +--R log(sin(a x) - cos(a x)) + a x +--R (2) ------------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 109 +cc:=aa-bb +--R +--R (3) +--R 2sin(a x) - 2cos(a x) 2 +--R - log(sin(a x) - cos(a x)) + log(---------------------) - log(------------) +--R cos(a x) + 1 cos(a x) + 1 +--R --------------------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 110 14:413 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.414~~~~~$\displaystyle +\int{\frac{cos{ax}~dx}{\sin{ax}\pm{\cos{ax}}}}$} +$$\int{\frac{cos{ax}}{\sin{ax}\pm{\cos{ax}}}}= +\pm\frac{x}{2}+\frac{1}{2a}\ln(sin{ax}\pm\cos{ax}) +$$ +<<*>>= +)clear all + +--S 111 +aa:=integrate(cos(a*x)/(sin(a*x)+cos(a*x)),x) +--R +--R +--R 2 - 2sin(a x) - 2cos(a x) +--R - log(------------) + log(-----------------------) + a x +--R cos(a x) + 1 cos(a x) + 1 +--R (1) -------------------------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 112 +bb:=x/2+1/(2*a)*log(sin(a*x)+cos(a*x)) +--R +--R log(sin(a x) + cos(a x)) + a x +--R (2) ------------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 113 +cc:=aa-bb +--R +--R (3) +--R 2 - 2sin(a x) - 2cos(a x) +--R - log(sin(a x) + cos(a x)) - log(------------) + log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R ----------------------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 114 +dd:=expandLog cc +--R +--R - log(sin(a x) + cos(a x)) + log(- sin(a x) - cos(a x)) +--R (4) ------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 115 +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) - -------- +--R 2a +--R Type: Expression Integer +--E + +)clear all + +--S 116 +aa:=integrate(cos(a*x)/(sin(a*x)-cos(a*x)),x) +--R +--R +--R 2sin(a x) - 2cos(a x) 2 +--R log(---------------------) - log(------------) - a x +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ---------------------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 117 +bb:=-x/2+1/(2*a)*log(sin(a*x)-cos(a*x)) +--R +--R log(sin(a x) - cos(a x)) - a x +--R (2) ------------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 118 +cc:=aa-bb +--R +--R (3) +--R 2sin(a x) - 2cos(a x) 2 +--R - log(sin(a x) - cos(a x)) + log(---------------------) - log(------------) +--R cos(a x) + 1 cos(a x) + 1 +--R --------------------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 119 14:414 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.415~~~~~$\displaystyle +\int{\frac{\sin{ax}~dx}{p+q\cos{ax}}}$} +$$\int{\frac{\sin{ax}}{p+q\cos{ax}}}= +-\frac{1}{aq}\ln(p+q\cos{ax}) +$$ +<<*>>= +)clear all + +--S 120 +aa:=integrate(sin(a*x)/(p+q*cos(a*x)),x) +--R +--R +--R 2 - 2q cos(a x) - 2p +--R log(------------) - log(------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ------------------------------------------- +--R a q +--R Type: Union(Expression Integer,...) +--E + +--S 121 +bb:=-1/(a*q)*log(p+q*cos(a*x)) +--R +--R log(q cos(a x) + p) +--R (2) - ------------------- +--R a q +--R Type: Expression Integer +--E + +--S 122 +cc:=aa-bb +--R +--R 2 - 2q cos(a x) - 2p +--R log(q cos(a x) + p) + log(------------) - log(------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (3) ----------------------------------------------------------------- +--R a q +--R Type: Expression Integer +--E + +--S 123 +dd:=expandLog cc +--R +--R log(q cos(a x) + p) - log(- q cos(a x) - p) +--R (4) ------------------------------------------- +--R a q +--R Type: Expression Integer +--E + +--S 124 14:415 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) -------- +--R a q +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.416~~~~~$\displaystyle +\int{\frac{\cos{ax}~dx}{p+q\sin{ax}}}$} +$$\int{\frac{\cos{ax}}{p+q\sin{ax}}}= +\frac{1}{aq}\ln(p+q\sin{ax}) +$$ +<<*>>= +)clear all + +--S 125 +aa:=integrate(cos(a*x)/(p+q*sin(a*x)),x) +--R +--R +--R 2q sin(a x) + 2p 2 +--R log(----------------) - log(------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ----------------------------------------- +--R a q +--R Type: Union(Expression Integer,...) +--E + +--S 126 +bb:=1/(a*q)*log(p+q*sin(a*x)) +--R +--R log(q sin(a x) + p) +--R (2) ------------------- +--R a q +--R Type: Expression Integer +--E + +--S 127 +cc:=aa-bb +--R +--R 2q sin(a x) + 2p 2 +--R - log(q sin(a x) + p) + log(----------------) - log(------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (3) ----------------------------------------------------------------- +--R a q +--R Type: Expression Integer +--E + +--S 128 14:416 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.417~~~~~$\displaystyle +\int{\frac{\sin{ax}~dx}{(p+q\cos{ax})^n}}$} +$$\int{\frac{\sin{ax}}{(p+q\cos{ax})^n}}= +\frac{1}{aq(n-1)(p+q\cos{ax})^{n-1}} +$$ +<<*>>= +)clear all + +--S 129 +aa:=integrate(sin(a*x)/(p+q*cos(a*x))^n,x) +--R +--R +--R q cos(a x) + p +--R (1) ---------------------------------- +--R n log(q cos(a x) + p) +--R (a n - a)q %e +--R Type: Union(Expression Integer,...) +--E + +--S 130 +bb:=1/(a*q*(n-1)*(p+q*cos(a*x))^(n-1)) +--R +--R 1 +--R (2) -------------------------------- +--R n - 1 +--R (a n - a)q (q cos(a x) + p) +--R Type: Expression Integer +--E + +--S 131 +cc:=aa-bb +--R +--R n log(q cos(a x) + p) n - 1 +--R - %e + (q cos(a x) + p)(q cos(a x) + p) +--R (3) ----------------------------------------------------------------- +--R n - 1 n log(q cos(a x) + p) +--R (a n - a)q (q cos(a x) + p) %e +--R Type: Expression Integer +--E + +--S 132 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 133 +dd:=explog cc +--R +--R n n - 1 +--R - (q cos(a x) + p) + (q cos(a x) + p)(q cos(a x) + p) +--R (5) ----------------------------------------------------------- +--R n - 1 n +--R (a n - a)q (q cos(a x) + p) (q cos(a x) + p) +--R Type: Expression Integer +--E + +--S 134 14:417 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.418~~~~~$\displaystyle +\int{\frac{\cos{ax}~dx}{(p+q\sin{ax})^n}}$} +$$\int{\frac{\cos{ax}}{(p+q\sin{ax})^n}}= +\frac{-1}{aq(n-1)(p+q\sin{ax})^{n-1}} +$$ +<<*>>= +)clear all + +--S 135 +aa:=integrate(cos(a*x)/(p+q*sin(a*x))^n,x) +--R +--R +--R - q sin(a x) - p +--R (1) ---------------------------------- +--R n log(q sin(a x) + p) +--R (a n - a)q %e +--R Type: Union(Expression Integer,...) +--E + +--S 136 +bb:=-1/(a*q*(n-1)*(p+q*sin(a*x))^(n-1)) +--R +--R 1 +--R (2) - -------------------------------- +--R n - 1 +--R (a n - a)q (q sin(a x) + p) +--R Type: Expression Integer +--E + +--S 137 +cc:=aa-bb +--R +--R n log(q sin(a x) + p) n - 1 +--R %e + (- q sin(a x) - p)(q sin(a x) + p) +--R (3) ----------------------------------------------------------------- +--R n - 1 n log(q sin(a x) + p) +--R (a n - a)q (q sin(a x) + p) %e +--R Type: Expression Integer +--E + +--S 138 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 139 +dd:=explog cc +--R +--R n n - 1 +--R (q sin(a x) + p) + (- q sin(a x) - p)(q sin(a x) + p) +--R (5) ----------------------------------------------------------- +--R n - 1 n +--R (a n - a)q (q sin(a x) + p) (q sin(a x) + p) +--R Type: Expression Integer +--E + +--S 140 14:418 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.419~~~~~$\displaystyle +\int{\frac{dx}{p\sin{ax}+q\cos{ax}}}$} +$$\int{\frac{1}{p\sin{ax}+q\cos{ax}}}= +\frac{1}{a\sqrt{p^2+q^2}}\ln~\tan\left(\frac{ax+\tan^{-1}(q/p)}{2}\right) +$$ +<<*>>= +)clear all + +--S 141 +aa:=integrate(1/(p*sin(a*x)+q*cos(a*x)),x) +--R +--R +--R (1) +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) - p cos(a x) - q - p )\|q + p +--R + +--R 3 2 2 3 2 3 +--R (- q - p q)sin(a x) + (p q + p )cos(a x) + p q + p +--R / +--R p sin(a x) + q cos(a x) +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 142 +bb:=1/(a*sqrt(p^2+q^2))*log(tan((a*x+atan(q/p))/2)) +--R +--R q +--R atan(-) + a x +--R p +--R log(tan(-------------)) +--R 2 +--R (2) ----------------------- +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 143 +cc:=aa-bb +--R +--R (3) +--R q +--R atan(-) + a x +--R p +--R - log(tan(-------------)) +--R 2 +--R + +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) - p cos(a x) - q - p )\|q + p +--R + +--R 3 2 2 3 2 3 +--R (- q - p q)sin(a x) + (p q + p )cos(a x) + p q + p +--R / +--R p sin(a x) + q cos(a x) +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 144 +dd:=normalize cc +--R +--R +-------+ +--R | 2 2 2 2 +--R - 2p\|q + p + q + 2p +--R log(------------------------------------------) +--R +-------+ +--R 2 3 | 2 2 4 2 2 4 +--R (3p q + 4p )\|q + p - q - 5p q - 4p +--R (4) - ----------------------------------------------- +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 145 14:419 Schaums and Axiom differ by a constant +ee:=ratDenom dd +--R +--R +-------+ +--R +-------+ | 2 2 2 2 +--R | 2 2 - p\|q + p - q - p +--R \|q + p log(-----------------------) +--R 4 2 2 +--R q + p q +--R (5) - -------------------------------------- +--R 2 2 +--R a q + a p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.420~~~~~$\displaystyle +\int{\frac{dx}{p\sin{ax}+q\cos{ax}+r}}$} +$$\int{\frac{1}{p\sin{ax}+q\cos{ax}+r}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{2}{a\sqrt{r^2-p^2-q^q}} +\tan^{-1}\left(\frac{p+(r-q)\tan(ax/2)}{\sqrt{r^2-p^2-a^2}}\right)\\ +\\ +\displaystyle +\frac{1}{a\sqrt{p^2+q^2-r^2}}\ln\left( +\frac{p-\sqrt{p^2+q^2-r^2}+(r-q)\tan{(ax/2)}} +{p+\sqrt{p^2+q^2-r^2}+(r-q)\tan{(ax/2)}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 146 +aa:=integrate(1/(p*sin(a*x)+q*cos(a*x)+r),x) +--R +--R +--R (1) +--R [ +--R log +--R 2 2 2 +--R (p r - p q)sin(a x) + (- r + q r + p )cos(a x) - q r + q +--R + +--R 2 +--R p +--R * +--R +--------------+ +--R | 2 2 2 +--R \|- r + q + p +--R + +--R 3 2 2 2 3 2 +--R (r - q r + (- q - p )r + q + p q)sin(a x) +--R + +--R 2 2 3 2 2 3 +--R (p r - p q - p )cos(a x) + p r - p q - p +--R / +--R p sin(a x) + q cos(a x) + r +--R / +--R +--------------+ +--R | 2 2 2 +--R a\|- r + q + p +--R , +--R +------------+ +--R | 2 2 2 +--R ((r - q)sin(a x) + p cos(a x) + p)\|r - q - p +--R 2atan(-------------------------------------------------) +--R 2 2 2 2 2 2 +--R (r - q - p )cos(a x) + r - q - p +--R --------------------------------------------------------] +--R +------------+ +--R | 2 2 2 +--R a\|r - q - p +--R Type: Union(List Expression Integer,...) +--E + +--S 147 +bb1:=2/(a*sqrt(r^2-p^2-q^2))*atan((p+(r-q)*tan((a*x)/2))/sqrt(r^2-p^2-q^2)) +--R +--R a x +--R (r - q)tan(---) + p +--R 2 +--R 2atan(-------------------) +--R +------------+ +--R | 2 2 2 +--R \|r - q - p +--R (2) -------------------------- +--R +------------+ +--R | 2 2 2 +--R a\|r - q - p +--R Type: Expression Integer +--E + +--S 148 +bb2:=1/(a*sqrt(p^2+q^2-r^2))*log((p-sqrt(p^2+q^2-r^2)+(r-q)*tan((a*x)/2))/(p+sqrt(p^2+q^2-r^2)+(r-q)*tan((a*x)/2))) +--R +--R +--------------+ +--R | 2 2 2 a x +--R - \|- r + q + p + (r - q)tan(---) + p +--R 2 +--R log(-----------------------------------------) +--R +--------------+ +--R | 2 2 2 a x +--R \|- r + q + p + (r - q)tan(---) + p +--R 2 +--R (3) ---------------------------------------------- +--R +--------------+ +--R | 2 2 2 +--R a\|- r + q + p +--R Type: Expression Integer +--E + +--S 149 +cc1:=aa.1-bb1 +--R +--R (4) +--R +------------+ +--R | 2 2 2 +--R \|r - q - p +--R * +--R log +--R 2 2 2 +--R (p r - p q)sin(a x) + (- r + q r + p )cos(a x) - q r + q +--R + +--R 2 +--R p +--R * +--R +--------------+ +--R | 2 2 2 +--R \|- r + q + p +--R + +--R 3 2 2 2 3 2 +--R (r - q r + (- q - p )r + q + p q)sin(a x) +--R + +--R 2 2 3 2 2 3 +--R (p r - p q - p )cos(a x) + p r - p q - p +--R / +--R p sin(a x) + q cos(a x) + r +--R + +--R a x +--R +--------------+ (r - q)tan(---) + p +--R | 2 2 2 2 +--R - 2\|- r + q + p atan(-------------------) +--R +------------+ +--R | 2 2 2 +--R \|r - q - p +--R / +--R +--------------+ +------------+ +--R | 2 2 2 | 2 2 2 +--R a\|- r + q + p \|r - q - p +--R Type: Expression Integer +--E + +--S 150 +cc2:=aa.2-bb1 +--R +--R (5) +--R +------------+ +--R | 2 2 2 +--R ((r - q)sin(a x) + p cos(a x) + p)\|r - q - p +--R 2atan(-------------------------------------------------) +--R 2 2 2 2 2 2 +--R (r - q - p )cos(a x) + r - q - p +--R + +--R a x +--R (r - q)tan(---) + p +--R 2 +--R - 2atan(-------------------) +--R +------------+ +--R | 2 2 2 +--R \|r - q - p +--R / +--R +------------+ +--R | 2 2 2 +--R a\|r - q - p +--R Type: Expression Integer +--E + +--S 151 +cc3:=aa.1-bb2 +--R +--R (6) +--R log +--R 2 2 2 +--R (p r - p q)sin(a x) + (- r + q r + p )cos(a x) - q r + q +--R + +--R 2 +--R p +--R * +--R +--------------+ +--R | 2 2 2 +--R \|- r + q + p +--R + +--R 3 2 2 2 3 2 +--R (r - q r + (- q - p )r + q + p q)sin(a x) +--R + +--R 2 2 3 2 2 3 +--R (p r - p q - p )cos(a x) + p r - p q - p +--R / +--R p sin(a x) + q cos(a x) + r +--R + +--R +--------------+ +--R | 2 2 2 a x +--R - \|- r + q + p + (r - q)tan(---) + p +--R 2 +--R - log(-----------------------------------------) +--R +--------------+ +--R | 2 2 2 a x +--R \|- r + q + p + (r - q)tan(---) + p +--R 2 +--R / +--R +--------------+ +--R | 2 2 2 +--R a\|- r + q + p +--R Type: Expression Integer +--E + +--S 152 +cc4:=aa.2-bb2 +--R +--R (7) +--R +--------------+ +--R | 2 2 2 a x +--R +------------+ - \|- r + q + p + (r - q)tan(---) + p +--R | 2 2 2 2 +--R - \|r - q - p log(-----------------------------------------) +--R +--------------+ +--R | 2 2 2 a x +--R \|- r + q + p + (r - q)tan(---) + p +--R 2 +--R + +--R +------------+ +--R +--------------+ | 2 2 2 +--R | 2 2 2 ((r - q)sin(a x) + p cos(a x) + p)\|r - q - p +--R 2\|- r + q + p atan(-------------------------------------------------) +--R 2 2 2 2 2 2 +--R (r - q - p )cos(a x) + r - q - p +--R / +--R +--------------+ +------------+ +--R | 2 2 2 | 2 2 2 +--R a\|- r + q + p \|r - q - p +--R Type: Expression Integer +--E + +--S 153 14:420 Schaums and Axiom agree +dd2:=normalize cc2 +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.421~~~~~$\displaystyle +\int{\frac{dx}{p\sin{ax}+q(1+\cos{ax})}}$} +$$\int{\frac{1}{p\sin{ax}+q(1+\cos{ax})}}= +\frac{1}{ap}\ln\left(q+p\tan{\frac{ax}{2}}\right) +$$ +<<*>>= +)clear all + +--S 154 +aa:=integrate(1/(p*sin(a*x)+q*(1+cos(a*x))),x) +--R +--R +--R p sin(a x) + q cos(a x) + q +--R log(---------------------------) +--R cos(a x) + 1 +--R (1) -------------------------------- +--R a p +--R Type: Union(Expression Integer,...) +--E + +--S 155 +bb:=1/(a*p)*log(q+p*tan((a*x)/2)) +--R +--R a x +--R log(p tan(---) + q) +--R 2 +--R (2) ------------------- +--R a p +--R Type: Expression Integer +--E + +--S 156 +cc:=aa-bb +--R +--R a x p sin(a x) + q cos(a x) + q +--R - log(p tan(---) + q) + log(---------------------------) +--R 2 cos(a x) + 1 +--R (3) -------------------------------------------------------- +--R a p +--R Type: Expression Integer +--E + +--S 157 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 158 +dd:=tanrule cc +--R +--R a x a x +--R p sin(---) + q cos(---) +--R p sin(a x) + q cos(a x) + q 2 2 +--R log(---------------------------) - log(-----------------------) +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (5) --------------------------------------------------------------- +--R a p +--R Type: Expression Integer +--E + +--S 159 +ee:=expandLog dd +--R +--R (6) +--R a x a x +--R log(p sin(a x) + q cos(a x) + q) - log(p sin(---) + q cos(---)) +--R 2 2 +--R + +--R a x +--R - log(cos(a x) + 1) + log(cos(---)) +--R 2 +--R / +--R a p +--R Type: Expression Integer +--E + +--S 160 14:421 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.422~~~~~$\displaystyle +\int{\frac{dx}{p\sin{ax}+q\cos{ax}\pm\sqrt{p^2+q^2}}}$} +$$\int{\frac{1}{p\sin{ax}+q\cos{ax}\pm\sqrt{p^2+q^2}}}= +\frac{-1}{a\sqrt{p^2+q^2}} +\tan\left(\frac{\pi}{4}\mp\frac{ax+\tan^{-1}{(q/p)}}{2}\right) +$$ +<<*>>= +)clear all + +--S 161 +aa:=integrate(1/(p*sin(a*x)+q*cos(a*x)+sqrt(p^2+q^2)),x) +--R +--R +--R (1) +--R +-------+ +--R 5 2 3 4 5 2 3 4 | 2 2 +--R ((64q + 64p q + 12p q)cos(a x) + 64q + 64p q + 12p q)\|q + p +--R + +--R 6 2 4 4 2 6 6 2 4 4 2 6 +--R (- 64q - 96p q - 36p q - 2p )cos(a x) - 64q - 96p q - 36p q - 2p +--R / +--R 6 2 4 4 2 6 +--R (64a q + 80a p q + 24a p q + a p )sin(a x) +--R + +--R 5 3 3 5 5 3 3 5 +--R (- 32a p q - 32a p q - 6a p q)cos(a x) - 32a p q - 32a p q - 6a p q +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 +--R (- 64a q - 112a p q - 56a p q - 7a p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 3 4 +--R (32a p q + 48a p q + 18a p q + a p )cos(a x) + 32a p q + 48a p q +--R + +--R 5 2 7 +--R 18a p q + a p +--R Type: Union(Expression Integer,...) +--E + +--S 162 +bb:=-1/(a*sqrt(p^2+q^2))*tan(%pi/4-(a*x+atan(q/p))/2) +--R +--R q +--R 2atan(-) + 2a x - %pi +--R p +--R tan(---------------------) +--R 4 +--R (2) -------------------------- +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 163 +cc:=aa-bb +--R +--R (3) +--R 6 2 4 4 2 6 +--R (64q + 80p q + 24p q + p )sin(a x) +--R + +--R 5 3 3 5 5 3 3 5 +--R (- 32p q - 32p q - 6p q)cos(a x) - 32p q - 32p q - 6p q +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 +--R (- 64q - 112p q - 56p q - 7p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 3 4 5 2 7 +--R (32p q + 48p q + 18p q + p )cos(a x) + 32p q + 48p q + 18p q + p +--R * +--R q +--R 2atan(-) + 2a x - %pi +--R p +--R tan(---------------------) +--R 4 +--R + +--R 6 2 4 4 2 6 6 2 4 4 2 6 +--R ((64q + 96p q + 36p q + 2p )cos(a x) + 64q + 96p q + 36p q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 7 2 5 4 3 +--R (- 64q - 128p q - 76p q - 12p q)cos(a x) - 64q - 128p q - 76p q +--R + +--R 6 +--R - 12p q +--R / +--R 7 2 5 4 3 6 +--R (64a q + 112a p q + 56a p q + 7a p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 +--R (- 32a p q - 48a p q - 18a p q - a p )cos(a x) - 32a p q +--R + +--R 3 4 5 2 7 +--R - 48a p q - 18a p q - a p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 8 2 6 4 4 6 2 8 +--R (- 64a q - 144a p q - 104a p q - 25a p q - a p )sin(a x) +--R + +--R 7 3 5 5 3 7 7 3 5 +--R (32a p q + 64a p q + 38a p q + 6a p q)cos(a x) + 32a p q + 64a p q +--R + +--R 5 3 7 +--R 38a p q + 6a p q +--R Type: Expression Integer +--E + +--S 164 +dd:=normalize cc +--R +--R (4) +--R +-------+ +--R 6 2 5 3 4 4 3 5 2 6 7 | 2 2 +--R (- 32p q - 16p q - 48p q - 20p q - 18p q - 5p q - p )\|q + p +--R + +--R 7 2 6 3 5 4 4 5 3 6 2 7 8 +--R 32p q + 16p q + 64p q + 28p q + 38p q + 13p q + 6p q + p +--R / +--R 8 7 2 6 3 5 4 4 5 3 +--R 64a q + 32a p q + 144a p q + 64a p q + 104a p q + 38a p q +--R + +--R 6 2 7 8 +--R 25a p q + 6a p q + a p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 9 8 2 7 3 6 4 5 5 4 +--R - 64a q - 32a p q - 176a p q - 80a p q - 168a p q - 66a p q +--R + +--R 6 3 7 2 8 9 +--R - 63a p q - 19a p q - 7a p q - a p +--R Type: Expression Integer +--E + +--S 165 +ee:=ratDenom dd +--R +--R +-------+ +--R | 2 2 2 2 +--R - q\|q + p - q - p +--R (5) ----------------------- +--R 2 3 +--R a p q + a p +--R Type: Expression Integer +--E + +)clear all + +--S 166 +aa:=integrate(1/(p*sin(a*x)+q*cos(a*x)-sqrt(p^2+q^2)),x) +--R +--R +--R (1) +--R +-------+ +--R 5 2 3 4 5 2 3 4 | 2 2 +--R ((64q + 64p q + 12p q)cos(a x) + 64q + 64p q + 12p q)\|q + p +--R + +--R 6 2 4 4 2 6 6 2 4 4 2 6 +--R (64q + 96p q + 36p q + 2p )cos(a x) + 64q + 96p q + 36p q + 2p +--R / +--R 6 2 4 4 2 6 +--R (64a q + 80a p q + 24a p q + a p )sin(a x) +--R + +--R 5 3 3 5 5 3 3 5 +--R (- 32a p q - 32a p q - 6a p q)cos(a x) - 32a p q - 32a p q - 6a p q +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 +--R (64a q + 112a p q + 56a p q + 7a p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 3 4 +--R (- 32a p q - 48a p q - 18a p q - a p )cos(a x) - 32a p q - 48a p q +--R + +--R 5 2 7 +--R - 18a p q - a p +--R Type: Union(Expression Integer,...) +--E + +--S 167 +bb:=-1/(a*sqrt(p^2+q^2))*tan(%pi/4+(a*x+atan(q/p))/2) +--R +--R q +--R 2atan(-) + 2a x + %pi +--R p +--R tan(---------------------) +--R 4 +--R (2) - -------------------------- +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 168 +cc:=aa-bb +--R +--R (3) +--R 6 2 4 4 2 6 +--R (64q + 80p q + 24p q + p )sin(a x) +--R + +--R 5 3 3 5 5 3 3 5 +--R (- 32p q - 32p q - 6p q)cos(a x) - 32p q - 32p q - 6p q +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 +--R (64q + 112p q + 56p q + 7p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 3 4 5 2 +--R (- 32p q - 48p q - 18p q - p )cos(a x) - 32p q - 48p q - 18p q +--R + +--R 7 +--R - p +--R * +--R q +--R 2atan(-) + 2a x + %pi +--R p +--R tan(---------------------) +--R 4 +--R + +--R 6 2 4 4 2 6 6 2 4 4 2 6 +--R ((64q + 96p q + 36p q + 2p )cos(a x) + 64q + 96p q + 36p q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 7 2 5 4 3 6 7 2 5 4 3 6 +--R (64q + 128p q + 76p q + 12p q)cos(a x) + 64q + 128p q + 76p q + 12p q +--R / +--R 7 2 5 4 3 6 +--R (64a q + 112a p q + 56a p q + 7a p q)sin(a x) +--R + +--R 6 3 4 5 2 7 6 +--R (- 32a p q - 48a p q - 18a p q - a p )cos(a x) - 32a p q +--R + +--R 3 4 5 2 7 +--R - 48a p q - 18a p q - a p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 8 2 6 4 4 6 2 8 +--R (64a q + 144a p q + 104a p q + 25a p q + a p )sin(a x) +--R + +--R 7 3 5 5 3 7 7 3 5 +--R (- 32a p q - 64a p q - 38a p q - 6a p q)cos(a x) - 32a p q - 64a p q +--R + +--R 5 3 7 +--R - 38a p q - 6a p q +--R Type: Expression Integer +--E + +--S 169 +dd:=normalize cc +--R +--R (4) +--R +-------+ +--R 6 2 5 3 4 4 3 5 2 6 7 | 2 2 +--R (- 32p q + 16p q - 48p q + 20p q - 18p q + 5p q - p )\|q + p +--R + +--R 7 2 6 3 5 4 4 5 3 6 2 7 8 +--R - 32p q + 16p q - 64p q + 28p q - 38p q + 13p q - 6p q + p +--R / +--R 8 7 2 6 3 5 4 4 5 3 +--R 64a q - 32a p q + 144a p q - 64a p q + 104a p q - 38a p q +--R + +--R 6 2 7 8 +--R 25a p q - 6a p q + a p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 9 8 2 7 3 6 4 5 5 4 +--R 64a q - 32a p q + 176a p q - 80a p q + 168a p q - 66a p q +--R + +--R 6 3 7 2 8 9 +--R 63a p q - 19a p q + 7a p q - a p +--R Type: Expression Integer +--E + +--S 170 14:422 Schaums and Axiom differ by a constant +ee:=ratDenom dd +--R +--R +-------+ +--R | 2 2 2 2 +--R q\|q + p - q - p +--R (5) --------------------- +--R 2 3 +--R a p q + a p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.423~~~~~$\displaystyle +\int{\frac{dx}{p^2\sin^2{ax}+q^2\cos^2{ax}}}$} +$$\int{\frac{1}{p^2\sin^2{ax}+q^2\cos^2{ax}}}= +\frac{1}{apq}\tan^{-1}\left(\frac{p\tan{ax}}{q}\right) +$$ +<<*>>= +)clear all + +--S 171 +aa:=integrate(1/(p^2*sin(a*x)^2+q^2*cos(a*x)^2),x) +--R +--R +--R 2 2 2 +--R ((q - 2p )cos(a x) - 2p )sin(a x) q sin(a x) +--R - atan(-----------------------------------) + atan(----------------) +--R 2 2p cos(a x) + 2p +--R p q cos(a x) + 2p q cos(a x) + p q +--R (1) -------------------------------------------------------------------- +--R a p q +--R Type: Union(Expression Integer,...) +--E + +--S 172 +bb:=1/(a*p*q)*atan((p*tan(a*x))/q) +--R +--R p tan(a x) +--R atan(----------) +--R q +--R (2) ---------------- +--R a p q +--R Type: Expression Integer +--E + +--S 173 +cc:=aa-bb +--R +--R (3) +--R 2 2 2 +--R p tan(a x) ((q - 2p )cos(a x) - 2p )sin(a x) +--R - atan(----------) - atan(-----------------------------------) +--R q 2 +--R p q cos(a x) + 2p q cos(a x) + p q +--R + +--R q sin(a x) +--R atan(----------------) +--R 2p cos(a x) + 2p +--R / +--R a p q +--R Type: Expression Integer +--E + +--S 174 14:423 Schaums and Axiom agree +dd:=normalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E + + +@ + +\section{\cite{1}:14.424~~~~~$\displaystyle +\int{\frac{dx}{p^2\sin^2{ax}-q^2\cos^2{ax}}}$} +$$\int{\frac{1}{p^2\sin^2{ax}-q^2\cos^2{ax}}}= +\frac{1}{2apq}\ln\left(\frac{p\tan{ax}-q}{p\tan{ax}+q}\right) +$$ +<<*>>= +)clear all + +--S 175 +aa:=integrate(1/(p^2*sin(a*x)^2-q^2*cos(a*x)^2),x) +--R +--R +--R 2p sin(a x) - 2q cos(a x) - 2p sin(a x) - 2q cos(a x) +--R log(-------------------------) - log(---------------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ----------------------------------------------------------------- +--R 2a p q +--R Type: Union(Expression Integer,...) +--E + +--S 176 +bb:=1/(2*a*p*q)*log((p*tan(a*x)-q)/(p*tan(a*x)+q)) +--R +--R p tan(a x) - q +--R log(--------------) +--R p tan(a x) + q +--R (2) ------------------- +--R 2a p q +--R Type: Expression Integer +--E + +--S 177 +cc:=aa-bb +--R +--R (3) +--R 2p sin(a x) - 2q cos(a x) p tan(a x) - q +--R log(-------------------------) - log(--------------) +--R cos(a x) + 1 p tan(a x) + q +--R + +--R - 2p sin(a x) - 2q cos(a x) +--R - log(---------------------------) +--R cos(a x) + 1 +--R / +--R 2a p q +--R Type: Expression Integer +--E + +--S 178 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 179 +dd:=tanrule cc +--R +--R (5) +--R 2p sin(a x) - 2q cos(a x) p sin(a x) - q cos(a x) +--R log(-------------------------) - log(-----------------------) +--R cos(a x) + 1 p sin(a x) + q cos(a x) +--R + +--R - 2p sin(a x) - 2q cos(a x) +--R - log(---------------------------) +--R cos(a x) + 1 +--R / +--R 2a p q +--R Type: Expression Integer +--E + +--S 180 +ee:=expandLog dd +--R +--R log(p sin(a x) + q cos(a x)) - log(- p sin(a x) - q cos(a x)) +--R (6) ------------------------------------------------------------- +--R 2a p q +--R Type: Expression Integer +--E + +--S 181 14:424 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R log(- 1) +--R (7) -------- +--R 2a p q +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.425~~~~~$\displaystyle +\int{\sin^m{ax}\cos^n{ax}}~dx$} +$$\int{\sin^m{ax}\cos^n{ax}}= +\left\{ +\begin{array}{l} +\displaystyle +-\frac{\sin^{m-1}{ax}\cos^{n+1}ax}{a(m+n)} ++\frac{m-1}{m+n}\int{\sin^{m-2}{ax}\cos^n{ax}}\\ +\\ +\displaystyle +\frac{\sin^{m+1}{ax}\cos^{n-1}{ax}}{a(m+n)} ++\frac{n-1}{m+n}\int{\sin^m{ax}\cos^{n-2}{ax}} +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 182 14:425 Axiom cannot compute this integral +aa:=integrate(sin(a*x)^m*cos(a*x)^n,x) +--R +--R +--R x +--R ++ n m +--I (1) | cos(%H a) sin(%H a) d%H +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.426~~~~~$\displaystyle +\int{\frac{\sin^m{ax}}{\cos^n{ax}}}~dx$} +$$\int{\frac{\sin^m{ax}}{\cos^n{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{\sin^{m-1}{ax}}{a(n-1)\cos^{n-1}{ax}} +-\frac{m-1}{n-1}\int{\frac{\sin^{m-2}{ax}}{\cos^{n-2}{ax}}}\\ +\\ +\displaystyle +\frac{\sin^{m+1}{ax}}{a(n-1)\cos^{n-1}{ax}} +-\frac{m-n+2}{n-1}\int{\frac{\sin^m{ax}}{\cos^{n-2}{ax}}}\\ +\\ +\displaystyle +\frac{-\sin^{m-1}{ax}}{a(m-n)\cos^{n-1}{ax}} ++\frac{m-1}{m-n}\int{\frac{\sin^{m-2}{ax}}{\cos^n{ax}}} +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 183 14:426 Axiom cannot compute this integral +aa:=integrate(sin(a*x)^m/cos(a*x)^n,x) +--R +--R +--R x m +--I ++ sin(%H a) +--I (1) | ---------- d%H +--R ++ n +--I cos(%H a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.427~~~~~$\displaystyle +\int{\frac{\cos^m{ax}}{\sin^n{ax}}}~dx$} +$$\int{\frac{\cos^m{ax}}{\sin^n{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{-\cos^{m-1}{ax}}{a(n-1)\sin^{n-1}{ax}} +-\frac{m-1}{n-1}\int{\frac{\cos^{m-2}{ax}}{\sin^{n-2}{ax}}}\\ +\\ +\displaystyle +\frac{-\cos^{m+1}{ax}}{a(n-1)\sin^{n-1}{ax}} +-\frac{m-n+2}{n-1}\int{\frac{\cos^m{ax}}{\sin^{n-2}{ax}}}\\ +\\ +\displaystyle +\frac{\cos^{m-1}{ax}}{a(m-n)\sin^{n-1}{ax}} ++\frac{m-1}{m-n}\int{\frac{\cos^{m-2}{ax}}{\sin^n{ax}}} +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 184 14:427 Axiom cannot compute this integral +aa:=integrate(cos(a*x)^m/sin(a*x)^n,x) +--R +--R +--R x m +--I ++ cos(%H a) +--I (1) | ---------- d%H +--R ++ n +--I sin(%H a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.428~~~~~$\displaystyle +\int{\frac{dx}{\sin^m{ax}\cos^n{ax}}}$} +$$\int{\frac{1}{\sin^m{ax}\cos^n{ax}}} +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{a(n-1)\sin^{m-1}{ax}\cos^{n-1}{ax}} ++\frac{m+n-2}{n-1}\int{\frac{1}{\sin^m{ax}\cos^{n-2}{ax}}}\\ +\\ +\displaystyle +\frac{-1}{a(m-1)\sin^{m-1}{ax}\cos^{n-1}{ax}} ++\frac{m+n-2}{m-1}\int{\frac{1}{\sin^{m-2}{ax}\cos^n{ax}}} +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 185 14:428 Axiom cannot compute this integral +aa:=integrate(1/(sin(a*x)^m*cos(a*x)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------------- d%H +--R ++ n m +--I cos(%H a) sin(%H a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp78-80 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum19.input.pdf b/src/axiom-website/CATS/schaum19.input.pdf new file mode 100644 index 0000000..3543367 --- /dev/null +++ b/src/axiom-website/CATS/schaum19.input.pdf @@ -0,0 +1,4477 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/NXZYFE+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/FAZOZG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/NBDIRN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂ԓ~ u^I B_Dq( dJI3\Z6//o! +d= 1ݺH!Z7AI\0m,Z8Jcms6I +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/LSMJRX+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/SRCGHW+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/SUTTVB+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XCBZQC+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/HDDKNU+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/ZYOOKG+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +45 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/LEZOMG+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 999 +>> +stream +x͘Ɏ1 t볷9>MЪ1av탴"s7ڏ#η^uhިfq}1ebW׋nP$ 0RjBT03[wnC`71V 6q5{OhoT8Rt#oVX`lJy u~Tx@}/O$1ˉaZS3(j2BFs{G̙h2r+ȹc88(^TW)]J⺒d@\) +%/$iJrn|#9߀R}W&Z#pX^9/[r^Id-YCNyz\j/ D'tRjcgMq{$c;%=ʜm=vـ/^8x,ne{//G[ zxxB,^Rb\g"Cj A--C -bVK`2Dhy:2v`ѩՓ%L!; eɳ.@7;cHxCRrHwMct(!͉35%GZ!:׈Zd0CLck"8~da~Is!p:0劫:˵A0:4#MwuitWCyUTr:OOg0e3~ e +re=TSKװ Rߞai6i6V*) -lKcc"-u3:%dc">4ԥqr/Kui7cٻz(%oblic8NѡYŐ]H%V$H+A_(֪t"!r1<嘻瞾(ҠGXl?HU L.9 +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 1089 +>> +stream +xXɎ6+xA0eVrMa#@,>ğ")Q%I\jc) Z*S__=*BtF9oսs`~_g]2XwXp]0//KBT:O('VoQ*\9 ѪwQ?U"@>Wtԗ[~ $O~.Sl +c Х/p(`l7 v 4T@< +v66jkh^:Ikp 4$۸upd :P _1=0h99L'QC#4E]M~WM7^tΞI RcAtGj8H,{fp&3*c F%zEy=lgI#R1Ţz]bGjƒ ciq x2$[~σX)d}KIiz~I&:`0O!ĄBx@6qȠS @Ϡ70hŦvC"@>(;t* ' vc.ixܘYP"{ǁ(0"Oy*tTJt$}4tq瑸~)y3Eڮ5D|RÝBmk[4RB =y$KX+ruɅ + h@wDSo{rzrED[D t ok// |̸{{`HXD9 +>5DXIwm +k 9E'I!9VNd^{̦Uh8ղ"z Q#z_z~ +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/MECHAX+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/KXZNYR+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/PFUVSJ+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 670 +>> +stream +xڽU]o0}߯c@1R^5dXJ04wҖEs!FP>No%bH1c&?=FlqȞ&ei^!Cr,\ +הYHxc-!J Z졟D-Cx^}>g7t,~bs +V5Q$V#Hb:2pX9f +3. )7p@0SCx"L |n +&qI\5rÅz= DB咒8f8G;ȤƼ `M\≯ta03n٨jcpr95W}UA;u^v*/ry?"/v:" |N;[sG!w>}&\TEldL69: 4x p@s*M4'>Ͳ)/N|wC+_~6?mJnHQ%ީ,o}CR%k˶Z^Ij-ͮ-^CƬ xfW̫zP]pyA,vU>Iww4 esl2n|hs!BA$Pr= + +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 304 +>> +stream +x}RMS0+r I@acx@ бFB}v7^(dXp^ BQ.8Laz'1)0=SCR,YHT烎~诶STwzۛMNVS5:vL2ۺ:!hR:lgǽqAVι;U޹EUuy97鲺#"^mv>/ƼB\sZ,eLpAEWD~P=O; +endstream +endobj +70 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 844 +>> +stream +xڵWKs0+ttz+2 -4\ԴIWe׎_m贇ZҾr-ػ٥bBTlf@GDŽOgYƙAҹ0:75*$yTv{$DM˂ +} B<[(@Ba3 + ?;3d@ =ciH0ґF5Tv̸f\*_=H@S{tِh3Ǣt4IX&n"ϲFPU9]L&p-b@%C]< pb[\;Lbh'̓ %PxMb BLJ@r@ +T'z Q[./ b`kOe5q~$QELY`4hEEnGq.9*+/42N!ݦYF]O<0Tȹv.ůw> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 132 +>> +stream +xE0 Dwc2MRFD`DceG!ӝӁ#砇iz$0_ bMX}Mek,}(}UOglDmdfX)bY %\ +endstream +endobj +78 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 807 +>> +stream +xڥVKo@W쥒 ;H\&U{Lq"H x1 -c|%'T^>k$Bw1 +amwH1c\%w~^~Z#GևЪ|,0zbWWcu| ;(hUX=ɪ0EҶǙ)`\0@7> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 309 +>> +stream +xڥOO0~K6v[=hd<T$_@[)]6ȅ QP HQ"$P HN%׏G/0pI!Ub,fY6C[6驇y(.XUIn$#g zwvGyw@HwX|a\O[qV{k"珇3}_4[tsx-Up8aqgmU{H.&-9meLN-ptURYOFlSYn?7E@FX_|T +endstream +endobj +86 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 831 +>> +stream +xڵVKo@W쥒 ɾ׋ĥjRDŽ^'!nD^q*gy|ڄc?ȇ"\TdVj,(&R1\NK1ξ_ႁN| ȷ!\Ĩbl&hppX3M[Bkl\\+MZVST?g M\c Xm"g xnwX>\sݯIpaeQPIdSˁW4Fk-lX`D͡2 1li,S'mOvD),$T7yS؊U/'=c#yoljUP=)L30s`H\\;(ށ;࡭U]8v5 +!"Ƕj*RJ~a_dE+a `lny-ܸ46Xl!5AƋUbV|;W8PzT6]ed\?)OpQ6ڧzX9*._֌XE-C-< C9ufBm5΋WHрC@R0N,z\<)lIp^n‹v?>}xx/hhm)m)F1F(;I>f / +3 IĩbD*,ix T[(f*4U!NK6r +) .2/uLwVx +e*58ݭ{MbQr{)ux +jʶB +Py|ʯ֪ze>)@$ [|׿ +endstream +endobj +90 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F9 42 0 R +/F3 16 0 R +/F8 38 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 312 +>> +stream +xڭRN0>:Bz?H=h8((1RD H'Mih B—3 gl5LF3 I"M'b$3$W`<&!<6@ Ew %t`Qdd)zIV :AQq +wq[TFU3)#EaB䭶#Nmfb  qQ +Tƒ γl}Cm.eUzh=lxUe]Քjn 2q1;9*Ɔ@%SᖅUNmp' +endstream +endobj +94 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 762 +>> +stream +xVKo@+fkGD u6i#Q%E~=خ'-B";oۈJlt%DH44#F! p~wf݌JR1}]iL;XZyQ'&::!\"E2-x3VG1$5Wv1HD:)Igڛ@$!6@,Qi"M2 I²f* + H;VM.i ` &p fJ+Z%:(de|4 fMW\#3UXLDvO] iFꆹW 7u4u_#^.̹HfH 4Qi-ڔ4^F6u$վ& V ٠Xv; +vQ@0OyvƇ0n +1am P&G+9(dz88p yAKB kw⾬Q* __8ɌLR{,*dr-w;)r>B|>G)Dɡo(u6)6)]>w~T1GMenϲZʮGQ',ʵɲ{pjIғK"nƈ.ęP?t >&3 Ž6ܼ/6(ۖev<)6eٮrOE(> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 739 +>> +stream +xڽVn0 +tJ)Y2,]VtY Kòeّc;m E' ĤݳjyWJ7f@،qBgl&1), yiaN8!Vh)L| V Zu}lNahCaq{ F7kv]ʼn(Uզ.8O#+rm+lc{\3l.ʈ4":yA RBF<>NB(w +\[`3`",* giPj];^L'=WvC"XoRnIʞ J3qfF(&cjQ +׶UwY?XV"SHfHn,)hWV;<8V41r2]miY$0.|I9Z~-Kzzq6U1yR.pXL}Ɵg8`݆Y"nEX/>,!m;HwNաœ~\NBT7{.w;z|їK!ı*MfN4XL0.G4p9=bqA瓅amO.<)Q<|}dZ|8c8QR Q{Vrߌ9ڋ7ΝO`S{>^Nٔi: kh"1_5|>g4 p$Qգ{CfQT}Mxnc +endstream +endobj +102 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 403 +>> +stream +xڥTO0WXemHvиx@dXB3j/-uA y%1;6,sJC0 ‡i;= WCp%>V1-E,㾨($Kk2;ǣ/ 5t}1F;/4+R<^7dEb{%+rhå3<פ?HYKT-[~B > +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 911 +>> +stream +xڝVn7+)0B-N.e(Ǝ +Pd6P{I4ԼjY K3s}L +)K_fl7 aܡІR@S}+̾X~,` Z6-ڰ˸![|&zM(4A@q녷C=`bQiwiU 42d}X.'%\C~18pP S0.W1@G:*F=!x|i"$ %>(P11t?Ѣ$H M euz;l`e(8|Hjt?̸z))BeA|Rؘ8ݡ`(+)XzZ|hhJ9`/zSB֝ CGA`xv'O[@AQMB)vZh[Œ\ȕD<{F1ZH鼏[J4)i [}ٮ ZEׯCΠMC+ԡzv֏3nh}}U|%r8Ϣw^uwvSrTe3sa3{G8|i^3% C !ÎYӏEʐtT6t:EGҌC0h!\T(q5ֽI֍e_4Ij9S=zDg\;m0U ZA^',[i7٭tII\P~s6 +endstream +endobj +110 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F10 45 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length 477 +>> +stream +xڵVMO0+z1hYAp1nFir˨da6:$rPϧ@ <$Oq1, 8܇cƩ}HCyvW @bB.:AwzG(F!S GK~6rSLuߟ˽ܝݧf8qM{o(_+9{Z>XB4 RO Q@41\`Qr*u }V4% ěm#y|=3=lFe'&b*9:;qI [EJ:<3HNɚ uܻa"p8ј31kڵC6 7%aI{ Kn#՜͢^׹6˲eNN,\Y֛LoȟfPPN~VD hvW<AXOir nv +endstream +endobj +114 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 114 0 R +>> +endobj +117 0 obj +<< +/Filter[/FlateDecode] +/Length 270 +>> +stream +xڭRMO0+z1)v 5z&*[(LXbDf/3޼ P%<;8@@Q(@a%I&  QM1ILLP׏hKo8^WKy‰!0 }r;U*jO+χܵh|xEr՗3o_gڕD^M +%`L@2~]pnmN?~*$@> +endobj +116 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 118 0 R +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 833 +>> +stream +xڥVMS0WHOg&NKz)3@J#ljC怂{v6PL(;3#jVZUF+q=!/zq|aX !BXP20)K"U +T*uo&*4a?R}.ca(ƣ_%{7ۚo]:S Rϸނaƣ!t<pr:FуF8 +Pl(^$p&"6O$U=<:"!83P&ZJ\݀\w  4N*8MVр_ +Ю7~uDFqA]>S-$|OhLӝ˕ѐ$Fw m4^ 6BuK6b6&pAGA'*5 Zph3aeR~K-q8YVQMMB 0.~9*5=bq4JDLVYdz2[y]q.ɪjׯXP^4ѼZ*H=]w5Y󇢣4= #.tX ؂{ȲپP>GQ{@B*f=_=-=],ϗg%+M(]f2c M]4RTi(te(i?VCy~u8-V:y,;L/onRz=ъk1K]&dCdVхQ:l> +endobj +120 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +125 0 obj +<< +/Filter[/FlateDecode] +/Length 513 +>> +stream +xŕM0>:jġUU, &EJ ױ!MU}c3~gæ(cċŏ # 2-@k>SZdL sNZ5Wϡc=TpJZ=mT ?{V.]J{|>}/RI`{eAVӗ|&ֵH$VEudθ0븩q;~!kN֐}Gw9qԀͤS7.RWgt>K~͘ +v.ȑLg=vTvjmeYv| "]=y#2gMQ30;{$c.tF. R?:8 LOEu\U6_^$σ0jU6Q[4-Cf0Q^w&apߨo<ћ?5BH +endstream +endobj +126 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +124 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 126 0 R +>> +endobj +129 0 obj +<< +/Filter[/FlateDecode] +/Length 794 +>> +stream +xڵo0W1ta;AeZ;m-{YIek+`* PUx}?K 3|d+ͤ3lʸE)[|M V͜vr<2,ܐ&| RvauF\CLȆ]. ͞,2n2 Z0xk3"!Y`,KykQI?%wN - =/B +Zz$Z 67;J3r0}Y@n}ATQޯȶZ HɏA0'PCr&A{~""t\yޝ He-@-cfЀmZƥ1N>\ hj(ߙ.ѣͩ2 ʝ?F"(AEp+z]uΗ~J?6~&MUn'> +endobj +128 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 130 0 R +>> +endobj +133 0 obj +<< +/Filter[/FlateDecode] +/Length 322 +>> +stream +xڭSMO0+z,ٴ.$4F$|v Y hMg^}`B@\ŮH%H0,9P7O!zVlBq58.X2mHQ$!8"J8!Kú"Eem`5VdsBجpF3#%t]~FFgΊm32ҞmUIwQ'^+O@Ԣws4!z OycM|ĒZQ&ʫLeY>vSLuTlOD; -G +endstream +endobj +134 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +132 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 134 0 R +>> +endobj +137 0 obj +<< +/Filter[/FlateDecode] +/Length 907 +>> +stream +xڭWMoFWeeW;|)Q. vTW*:KJ\H9r"@zbRHnYx~[-jZ(V3 ƝƳ*3䦥}^xkY +SXB>g%f\z5AKO`Jvsx\A@`2J@Nw>\pA 2(ZEq+<ɬAt9 %` FhHxbGnI@%r2x+,mekY +]pM)ý2Nˉ&10U,7v}THIEi✳辑C ^8VOͮ"QڎZJ最tC;! $AgJ!NdN(0B +Au +JC2uŇ=C'G+J ٮ}~Z] lܖmS2q.!YmN~sֳyqC+n: u'߷F{[n4i}GM8SDwTD+p6VCv^?6w񑾷j\?Bv+ +%hh. i>,t=;K@ +`c|/.A5*H2TgrΣ;1سG#nnMïTǂ$*7=I56>epL +b]hJƮ]%xmX~D?9iu3Igdqq67>!vOB$ i +endstream +endobj +138 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F10 45 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +136 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 138 0 R +>> +endobj +141 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xڵVK0WR)u1VeV=5=H ":v]{3@1B` |ΦwxD,6cYs +/?#_wLf'&4a p(Ӄ/ϼ{ͣ"ŒmeVTpuNPN5SN<"]kT Oc!$ ({yWD+w_J[}[hqm[5i߯_0gnFY=&hee^9rn?Z6?4U=< χQϘl*HI*O''#1 1[]HbXlg1U*'CP7LM5~~!ʋ&OOQr,wJ=).4[V7xIzf.`Sf9vsńr9nBDao*BM JOؚW3t^fZ> +nҡk9{)S 8M5da-w +endstream +endobj +142 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +140 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 142 0 R +>> +endobj +145 0 obj +<< +/Filter[/FlateDecode] +/Length 195 +>> +stream +xuP +0}b.m+ ٬HZ:Tj_8\(ְӔBy`Ԓvu`y>_-ݰkT^.@%s.8-@"{57M1vʂ?RRFQ$Q?:Oߤdusߛ mWWWv;4 -hQE +endstream +endobj +146 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +144 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 146 0 R +>> +endobj +149 0 obj +<< +/Filter[/FlateDecode] +/Length 806 +>> +stream +xڵVn@}W agKդj8JS$J"HUb|@ӪH`s;sΌ =򖽞5C JWfai@d7#Jݘܴѵe1dSXS|JΊ +f\CHMQu]&+AاpCjJmhI!-(I-cud7e DR7r´Ybh֤f!^_]:x  DIHYB' +f!gJ1E簀R8G](vPqHBhA6'uYCvpHм*&%&ttFRҰi}&-'8@@ݰBjp)nVsaneqlXZ=d+ kpFuBbE3T nB=Ry0_Gouu뢛d[t;o q.>y-Vjֱ#XDl9/nT,%;"v9oфxX=>t[ȽKz.%\iH g<莂c9P` ||\-zt.3__@W50~<C%۴}yV|.wN`س|VٲV_iYS ݜ^*U$fIQis%{ǓiPEh{tm( +IHkϔx?w4I&hk'ױ oҿ`4W +endstream +endobj +150 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F10 45 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +148 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 150 0 R +>> +endobj +153 0 obj +<< +/Filter[/FlateDecode] +/Length 487 +>> +stream +xڽUM0W5k`$ZU=d8) dU__a쮪2 {t(O $$ I!BRcؔb#0@xj!\r@f`?=qaYɪj*0\_uyЫǍNA~7euӔΖٗ" +2"tYe$ m 1 i@7'+';/ u0jxTEĮa^Ț'&Տfy]rSNz!QֺqKe`b!Xh2B0>_ERGDfsc' kN#'^0spTy|3rϗ+B8r&8Bu>d?mcF5v-m+j/KaUFߪzn?m}Ens9r!+bEi@{Lu(*e/C +endstream +endobj +154 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +152 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 154 0 R +>> +endobj +157 0 obj +<< +/Filter[/FlateDecode] +/Length 927 +>> +stream +xڵWKo1+|A4H ZG.%H!Jާ}z|yf8'W$~}$WSE@1'1& +4Y}^QpD7|v853o2 L-93Eb>y8rB!sf=1go"Y)ZzLyy}7 +'<:dfTu{vckPvv?$9M@fTpü#4ȮG9aGEԡ$s{u@մ)Z<*nFNh$=/"AMd\<LCFQPYT|5mZME +[eSrRNr\NLspT#Z`N/ȅ] ~F1}IDKB +:L(): I)C7 Iz%50BbGiu] 2&1;L )&8{q$u\ CˆQyQUT@zhcN(0L'4\ogKATտ.nSΨƟrqy%1^~su[o0EytXώpa=UwMz(~yt4աǠ(HH6>W" FPa`j~ ,&@'tOҡB\n9҈TVI\b1('rE9 f<׈srsZes1O>nf-h/.448*yevg#]T.T{fbZ>8"‹'KlXj̚`>#h바;3R*-7wy<.Kzq9+G{N ˀ*Zcbw=Acx̯0{dt>:{Pm*xwg?"zY +endstream +endobj +158 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +156 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 158 0 R +>> +endobj +161 0 obj +<< +/Filter[/FlateDecode] +/Length 482 +>> +stream +xڵVMO0+z1hAb܌&Qɒm-Z$rOe TxHO p 0݃p̃>dy"KJ|csg/q OI-]-ᡧ#F y%ړ,\oEDl6[ۭ> +endobj +160 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 162 0 R +>> +endobj +165 0 obj +<< +/Filter[/FlateDecode] +/Length 498 +>> +stream +xڵUM0WR$kc)٪=SANĆ@k0Pb:bϼy&=@{ (awЗŐG (*Ras۟:u>?/:|x"Mg_ J9 }ڇSm 2J٫!i%DNYO{"%;%1ѧ$ {b F e6uJHVr՗Js}N?S +hD5E&_\)ndLk { +$.8a?֮ +-ؚSNN<2˨xdNSvԒ,]a Evf[I֓IqSԯV:o>M?cF9H7< f刖e&I[DU)nUqSg8MG'm7I +endstream +endobj +166 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +164 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 166 0 R +>> +endobj +169 0 obj +<< +/Filter[/FlateDecode] +/Length 468 +>> +stream +xڵVO0WbRhKb܌&Q 26-9ڹ {c +I1+ "4 F罤D/vRN=Dqee]z(a W"r5V312:z+i%dB)q\h-Bk왘Ӧ2p"ߗZNt ׭tny=Z`L̞AĨrN;(&Bg;OX^ю؍4認u)٥ehDO8<;sT)7t?VQ; Lx/B(2~hk' F@ +endstream +endobj +170 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +168 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 170 0 R +>> +endobj +173 0 obj +<< +/Filter[/FlateDecode] +/Length 358 +>> +stream +xڵSMO0+z1bZnm)`Avs&t}a2_LXK}<(3 ) ~x(uJ` Lm8ƑE h'#G ){ @b+ o+cd]_]yĘEv4gMK? ۝u8R ,)`#54#Uj=qLz&J'?[S+zPΝT4D8|~r阻6 +.,3,;)mZn ɲ*n_Mo|wEqB#77@UX9hv > +endobj +172 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 174 0 R +>> +endobj +177 0 obj +<< +/Filter[/FlateDecode] +/Length 858 +>> +stream +xڽVMo@WBv;ĥjRdž^r0hAYH73of`w,|dWI Jf%8øCІM? r) n`Zŕe>dC-šq !!o#]N) 0\`zbJ]ibt2ULl(Ҁy6( +{vJ;j$qN%П)76y2H@OW]שU; S"\!='b+t qMWu@R<7-*wf d2<ֶ63Ȩ2lV* 9;}MD+6X>;P&6 QHC$mNrur)Ψ\"LiTf.8fP}JO>wٱygɏp)OWXDΓOLg# +ӿOqB~}>\n͆򧨉.2'Q\xPը0F +FirTcLz[*&ԱH~q5N-8O2iC@xe|>?!Q6r!24=ė&GguM uX(ߪ@tI-JZ&tMks[;/+l"HaN7}x +endstream +endobj +178 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +176 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 178 0 R +>> +endobj +181 0 obj +<< +/Filter[/FlateDecode] +/Length 524 +>> +stream +xڽU0+|4`ccĥjjUVzTM1l(഑`ϛ A7}#EWCCey߲O c_0qsH5@ϲ#FLS;n88 rlT5__f $l`LeVgXhG%BP Ac ׺9UVߞPgC! qPu$uCc80d?M젎b#Fw1o@ųiѬF$:^m(ɨtlnz'?6P*I(foaey4э&SB8u,kXo&\ۋ7m4yE,b HjXnp+GvIZ4Z]4_N{\8h,ȯ9.6AO u=FLsJ)2Zyw^ F^dͽZ#.׏ ȏ(8Xð˴)T +endstream +endobj +182 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +180 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 182 0 R +>> +endobj +185 0 obj +<< +/Filter[/FlateDecode] +/Length 508 +>> +stream +xڽVM0WNGʥ*[G=5=6Vn}_~$e#=3 qN ȗr~+D3( 4R~Q?'TLRWQ蹊86ӛjBUxV;5);T m l)! 0oOMn+|~:6smc,$,nmβnzTQY=Cj?C-UHy[C[1` +Ovˠ1k:#M&PߏTFz冀 &@w;6k^ORkd#&SrßXDAQ;TԔ:a1=("E׼ہ|<6y~;kKQъwܲ7k=9tiM8nejwfeՏG;{y}I*. eۗ"IYfYfl,?9@ +endstream +endobj +186 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +184 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 186 0 R +>> +endobj +189 0 obj +<< +/Filter[/FlateDecode] +/Length 427 +>> +stream +xڽTO0W1e}t7172I6XLn`L^^_^ߏE!-Q)nu0#=DH#a:df6[̶JiQ%GaGV bUi +\Qw8/О4gS>Ϥ d.ow Vӫ53)Vmʉ]`QCS8lUibdjH8N LQH0Yx[ͽ4jD-7t `-[O/W!0[ΌYf6WylHU_?#idwH GtY1ݮU FH> +endobj +188 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 190 0 R +>> +endobj +193 0 obj +<< +/Filter[/FlateDecode] +/Length 911 +>> +stream +xڽVKoFW%ieGou+9Ў +PeW2P,WhCݝ7XLjP-`V3;m/%ME~]X~]~,@ц` L~O +RnʷîC +.0n=xbx7#`h\q\*&)C&`t+PIp{@ 8å2<=7ꠣ%xI11H0ĜPhs'fz-:uLT=9`"m{C$&<9}*iT"bɒ,| c0!`(}1}R>`s/y:l-x āZQ-V Yu u5 +3n3tKr] +kG4e G}>|_\"U10E =yY'C懌Q@&]/=ъȈ"'?+}$]_ -6fC;,A@S`UnVFk4 J@58NҠ;ao^׋quWU!UUQ_Wy݌ nn߻ǪMhRfzt/uj Q-ʻcJR竎/V}!t=Y=' +yn Ⲯ^MGTNY4^U@KOmiS3*vMD1Ubשj][1}_\a-l? +endstream +endobj +194 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +192 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 194 0 R +>> +endobj +197 0 obj +<< +/Filter[/FlateDecode] +/Length 503 +>> +stream +xڵU lAƱх +qA3&]TǏ!NerȹsPB)؃JG_dD2Nd ן! !KP#z ~?kcr{>yN>$_}(- fӱɖŏܯ̲qftv%^BaИaFc +͠\:rqxnpo[#OM=ҖꞐM@lΪp wH +}wg.VggANFdۡ"t5Jh8hOMڛ=NzX L(!=+ vc}}֛v|ONuzG<js~umg qPn>h Ȋ9iݛ ]ClvAi(vDn?/r +endstream +endobj +198 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +196 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 198 0 R +>> +endobj +201 0 obj +<< +/Filter[/FlateDecode] +/Length 414 +>> +stream +xڭT=O0^UNmljn Zd !MKCMRďǵݯw@x|w%=M3$ @yWгHC(a =-y B|qyQ!K vfCfn +GzCXz)& +/9{ A4R/N/n`&1cAsA TR,y?^[((ڰח3g2w4dџ{

> +endobj +200 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 202 0 R +>> +endobj +205 0 obj +<< +/Filter[/FlateDecode] +/Length 819 +>> +stream +xVKs0WIH%ftt驡9G)32ߕec#M:߷ g9)~>w[EbRwbK5)0}O +w/覄LFo qV} +BJ*v +>BN1# /]Be{ӝ#7#/j,$`z^ϐk5"mQF]kFĹ#`Q*챐5Ig;|@k}= 4o@)IZ2ZHcolչeѷ*;+YW`#\a,y ̗vΗ)QPRAh`xE yr=𱾢\-׫erFbY3^$4ʝ9M*47e=q8yWtZyyq6(kfmx^m2ƎrT%)!`*Pϳ_աKDW+YL%up6u]yTG$5I%E#&0x|W} +9W.B_G;CwF|lzWm_RLl[orpxYm><+?p +endstream +endobj +206 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +204 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 206 0 R +>> +endobj +209 0 obj +<< +/Filter[/FlateDecode] +/Length 491 +>> +stream +xVMS +8*H^;anx;M'_/ȚRmՑK<&`Bt2^(RA o B7\pa#7'Ft J (L` ,Bq8o6nWպ^?ڥw,Ɗz7Jұ٬6m~V)Wlo~w|0B`Y-5DC6]=|o>s?nMGEiM{<4&ڄynWk ͤAE:hBH;Y?^ |>)V=>G!mR<nȔzJ9Xɱ_X8=m^;YD/0k! +Փg_,Y3eɎM&CV7!HXʝ4Y5v)lf Z,Az!Q)]I]-*Kt:Q({M6>n.A}WϿ!X +')҅gO No +endstream +endobj +210 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +208 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 210 0 R +>> +endobj +213 0 obj +<< +/Filter[/FlateDecode] +/Length 224 +>> +stream +xڥPn0αcP17€70DI+(Ztb{O;@%vbG`0> +endobj +212 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 214 0 R +>> +endobj +217 0 obj +<< +/Filter[/FlateDecode] +/Length 836 +>> +stream +xڵVMs0+tծ$KL. -É unJgBI:H;rRr{O1[<>wsPlZLH/ TrWS&QWO9+]r)r; viLB]۪N3UrS;wv6I L~22Wi!Pdޭ-``qjo/zfJ撤2F '߃I|Ba==pPڧ+repp2-xDGN}jOWbNϊzMWyFr(q9( f +w ҆kxB"J?{XQӸ6'͚ŪnWR~qAxUobd1V2O!?$Y\]1/4͙ KG{;`N9t/ni7ŽvV :V¼*jYmLIXV ټ܏,FD .vS=.KcT'ucҭm/죋Nl[EI2|+Wy FCgTB$nGG|Fe6FhP5b&u}woy:6־NF[8Y_!Y}JbLOFt5*%;LHD$ѲFXT6t4Hftlab1UUv}Pի/`uة3Eq|f+O5c +DEO %P9f:[mS%' Y⋊}!6o" ݛ? +endstream +endobj +218 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F3 16 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +216 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 218 0 R +>> +endobj +221 0 obj +<< +/Filter[/FlateDecode] +/Length 502 +>> +stream +xVM0Whc 6R.UU{KOuF=L0 0|7#hluOC A$'ᄃWQp`N8֛V-@b/$L{Y"XG372Ӿ<g3՘ld!3>87JŘtOԟI|ohA`QD]6 ]~Ay_ba{Z +yꢘD5:]~6 +IAUR?tbW]l qHd.+ur60y@9:^znk^LLQOb'!jhF,=m~9XY*D0ƿk! +'d}Mר^%c EKGsvƔڮzc알ܺa+.yF;B<oPB7p9C喲D3 o-%lHkePcXII,D{< +/-< +endstream +endobj +222 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +220 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 222 0 R +>> +endobj +225 0 obj +<< +/Filter[/FlateDecode] +/Length 225 +>> +stream +xڥP=o07:͝cCU P7LLw齻{(hV'R y84Kn}q-5K}_6uv 8g{z&B.";&DF*QξǪ`_yʦ:qE> +endobj +224 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 226 0 R +>> +endobj +229 0 obj +<< +/Filter[/FlateDecode] +/Length 795 +>> +stream +xVˎ0^&-vv\DX1edR5#QiNt8>un%%ʗdp#DH44#F!l8 +MEĘ1;v?d*|hdNr.7)1aIG<6X bhhȎ1FEáҕ8OaDJV9NZ1J H[o[ŠDgۇ5gٲ]Qh&N *]m5LI I=F@qPvi"x2CT;&R7ɩ@`0ArE-$ ìfK濉MMhqe2yv^& +:.juw^qBis.TԸ +endstream +endobj +230 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +228 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 230 0 R +>> +endobj +233 0 obj +<< +/Filter[/FlateDecode] +/Length 275 +>> +stream +xڭ;S0{?EP$ y\Бs p:~Je h1>GiQj&# 18zo3bPsqG PJESjG\̵1 " zL?zpAdιʶvnVk+L6Ø4 jijmpuW*Z.z*ǭ"d]" 13@I6\r%?#@*׈_Q.J%3n~T$ +endstream +endobj +234 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +232 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 234 0 R +>> +endobj +237 0 obj +<< +/Filter[/FlateDecode] +/Length 809 +>> +stream +xVK0Wxlǎ8*[K/! )ܪwVj.~}f1s2%nŤ"D3F0(>aweV;M%nҗ,qMig$XudH›/n&Ւ@K^; +z +iDœ +ES>^є+):ۀ03_J64lll ^`jA5߽??f1񓷻؛nmk2 +%>/9_Utu 5|Ԟvd*=@:eӛOj +endstream +endobj +238 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +236 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 238 0 R +>> +endobj +241 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +xE!0 P)Ѳk7KHu Ccco H'Ξ cDdr[Kj Ż`Y +endstream +endobj +242 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +240 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 242 0 R +>> +endobj +247 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 246 0 R +/BaseFont/PRKEFU+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 912 +>> +stream +xڵWnF+f2~ЦSF4La], }poQD>K0`ܑ+ysF@*Vj(M6˸)Bg)n߯V!!Ee$TOy=IXPs*>`|!1P/΁WNNu"֠L4m+h~{LOhnIm R'sGmݘ5;оOl}$?pbLWKp;> LtUkܹ.lt尚r[bDW4tqu9378mۭ^SңOXQJC5w'f` 'wɘu,ZlxOSsVaSMsM}J}J7֎*(8k'HA){p'%'0'pٰΛJ5eoGP>Hv[j\v[˓(9o X\wC*B)rq,"/HYQvaJMޤ^i2{y],a:)I|Ax0o.gXgm3m9Wƥ4QS)j&\|o_矻?TOOxo`Ju_# H6~sZ@v]`?.R + (|F +Jl*8iqM,Ru3$ +> cޮeIon.!Hy{9ִ=5J|y/b1yxO5_ mF{td,!qև[|YԈ'Fi i8uxWj$l76N% _&ʧ/Ɵ7\), +endstream +endobj +249 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F14 247 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +244 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 371 +>> +stream +xڵTMO0+z,vB %ك]$|-F KA.e03o㥀`B@ \y%5R  ́wZ2A^K3 Klj*[bT]'Eo Q0}1$έ>jQUSE1|#b +Kv/6zA&,֒5>hܢaПpއ{!ӮO`#Rݐc^MkoSeubiOΦr-juZ3Σp$EsqԡzJT5Ei(:[_T-?vlL`axZX +endstream +endobj +253 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 919 +>> +stream +xW[o0~WeR͞J}A 0&(؉aq||"J(E}A/%b_f( 'R3Uv>MAM2;#N76 %qGWn5Kals +&¨˦CsHWSJCX[b5M@m=r]ЊH"/%\ij xUbApWvDXt[Ƚoӆ6.IK% D2X>F&Fd`2nࠪ1 +bʫ3C bhoc$]tķGaP t[ rq΄l M )@'~.M/׺璥%l,у Sn7?RU{zO:"O]3N ?pgÙI7:VĶ;93 :`Y-8C(:& `K|;ݶpZb0Px3AfQ+!Ţe( +>s/ I}YNgwcu.>EVN6E~^dP E>x >0~7u 9G&D*ݾ1Sp= aMݧyb>8|Z:%\yYoW)<>sN濖k~!r]=3;m{0FcT%g:[XtR5sgvCr6 |G 7|%3Gi,0Fw|so6o +endstream +endobj +257 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F14 247 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 373 +>> +stream +xڵTMO0+zhٶAу]n@EֈzPf y3^'d!ЙpϖOr W&Ą#doL5VNr-2`mU˦Ib̆4;C$%Z-qe[eekg>j$‚*7DacP9ToPLcή%?-B]z% w;%z:߱a`nNpt8*2n43&+Kz:×v.۴XRK<**}YaK ü*3n6E,F:?m +endstream +endobj +261 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 1002 +>> +stream +xڕVK8 ю+Ee3q^ZfgH3y )dNJc{I6s@'}WD(&YC`Vj)MV|,@TGՔ_{C<&ؠpI&3Cb>i|;r(zBcΐDry!0̳>^KRGq{8dМ̅cFmG|Okk!K=Tx8ʳrLZD9 +E!8o@wL,eN 3vivdn̥^ٛܩ2C,3z#hdTì =l8ca;[ H q%pLe:qy8l+%8fmF*7(Hvbnn$ěmI1s"9>'dj0zv! bU{2`i";fנUZ ]ӊv8 ݍvQx\mF<`@I:0(26,AS] /0Lw>쪡 ťZ2}В>ͺ9T㇧l"n+YKBj"6edLss}^?u]e]8Y/p|sj (V#CU Fyz+_T4=դէkVi\g?$""I{NzxV3a6oC-vG2^L,tO0=[gu{&b> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 594 +>> +stream +xVK0WHLGʡfVz d#mTV;zX.7g }ADG )5ēaA=QI„xJ/acX ܉ 羳r'9&y`9|Z$Zڞ :KE'vwjY91hAM%Uq ["d?%%Zr~i5 2ZT[pÓLj?C`Lo{ν, 3t:{aMmĠ"ǓA& 6kun/AF7$,N*GNnΨcƪP%> ̣2iũOoPn6cDiSU _ϧmӯz ΏCZk$Y6CYgO+…JRyaX{q]_]Q +endstream +endobj +269 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 269 +>> +stream +xڍRN0 >Y#ʍrءV6 I"|g; 5/P33 '$zH)E5Z)捠pYZZAJ鶪NoyF(q= 23.&} +i:l&;_h/'#sd-~>yh@Pb?Lҿb˾͒e~7l\I#u{Ư&|u">_wuSe\/ũN+N,^Y/x +endstream +endobj +273 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 1328 +>> +stream +xXKo6W]oMh]ħZ98덁!)J$`Y伿o k_.璀Bj R_/W+V$gl5qiTy:zRI_^vaH/QH-|&Bp|0;[.XGG㨔ͯ78Q-ZaЖ_݄oH?}:@C@ŵFJX*Ed<#2ȟ h k"sK +|`KM) w ѫܩ% SJEKD6l!* l=C.\9p+EZq姴:񦦏 ,Ԕ[8e2"5qaLN[Fn6%$ra먛#*?5aa]$p&$J!ܥ=wyX_v8W73͂Q"4{e'C+ YH4BL{Mkf7sXի$m9̞QT}6 фRԥSm$NN\vJ_T#@}Aaz:o f |}6흧 46Ï%?[p䁘:Ëy +x wx$p:qհo GݖOl.&V۬W}98v|*VkMzrPz o爊8$<{!4[$v8s "s_7wwI⣉`hG% +zHڂ/} R!n2x0Pg~sMwziwxUuEyq> }6WWWCܝnz9wm׳$~f`Q eojAn&'˙"y]&UOf6U͒c*`8sn+=.lm+j '+E>GYg۽9Q^8&cα} +QF3:IYdzipRiZ{e1 cU7)ș) 7?wd٩Ybe͋'!׸n.A=bǤEcSӻ1'bz7#PMJܟtɯ)*Xw; +endstream +endobj +277 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F9 42 0 R +/F8 38 0 R +/F14 247 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 585 +>> +stream +xV +8q6R5[uOeWr4ZJ'];1T0 ̛yQBm>wE|KS2J2d$x=KIBhD)3˜w' L)Q'9M! !`}/+7ҭuh rk.Ϸïw4\QW5U}rMvR'484Up+~WS{txrcUoGio !U+d)Q쫳> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 592 +>> +stream +xڝV0+|"Kl[nK,F+6Vw2& rlf޼MXgĤ&'<՜\ZC4K]>>O0B9OMEʕVQ*(X,O8F"36>y#5W0pu{~b[H.9?LFc9 aSk:᚞Mϻ*Sء_&W(d7cQiôg#"xIO؞:IÌr`S釐NlNk97gYHT3IW.RGnGsbY=w+ e_+Iփ1ZyfVOc z- @V!nx.N C(׃f~!h1`b6pTpɄ@aSOu|ukI~8/WʼȀEw5}[*DմX%?P'|wيom ծ ho9;;{l7,,5o'ԣi^ʗWBqvQͬiHU(0*0.S +endstream +endobj +285 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 596 +>> +stream +xڥVM0WH9؎?zVͭ!X +a+k kBơ[88NyxLXYV^NQkF鏌J}Faعq&L_]0aXn˜;z).F(煍*Q3Ѽ4>?ǸWΙSdT0ka䌝F wk +tHv8;~\b(Fh}RK{`=WZ#tJn$JHƕD3Ǧd4`*V$d~\QQ#cכgQ"''r2]3/8?J(xW2ޗT +>u[Fa)ʮ79pގ97:Mq즯9iȼ[dOPlC%w^Ra> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 585 +>> +stream +xڵVM0WBvlccVV˭F@RZ_4YH\&3ό<0tvOB$ "AW!{W2~@BPrR2dw}Hԇ`%N%zn۹b{Yhd4,-Q*2vsFAOmNaԣ谪S[5#ҾC@-qDD*-q6eۮ蟫rU6C,:# Qbmfe9q* +NV +6m{/' lێiez=gue{3p8F1pt/JW5ey6Q;_DR5&..72!CkhmP#BlCh *=7.d0$jwб#ڵk ~Zuvt=3H(5=s86Eky^\`M4IoNG=Dor{s6gC3iWKn]omՔi%UuɟJ{KXJo?dvLxb #(Sd.wqow +endstream +endobj +293 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 861 +>> +stream +xVˎ0+1@bSuj-t20S$3UNHH Ԃc|ι&c-y=(HE_`5Vd'dr.tߍL ޿C\>'Ϋ*.ؐ)O" 5!߉T*K90IT<(EX|ZڅpFx[NlYM3D-)S|@NTw1 '.?DK(g".yB|tc+K{n:|`\zpq\Y5W +?zIEwJ 'ăOXĵ@ItAVh Ԑ52Xv"ձ\5G]cRyviAi+lNQpͻ*FK!A +.)]݄J&m0 y/P(xLWtȷEE \yA3]y7lpF]\K&T\Y~9Ϸ}Ηˈ6ycZ'a?ϱGFYo=z`.Y?D釳fHd +Ksiؤ!Uer4/U[>>d8t5T^婭M0QN8a"G!| ?n?=sZ~Hoi*G=f$% ¼YH\ +){UfOb)ePu:"OfPt_Ш4ټ[3/z]/iʶ=|< Y(/L: AڼL]o2ڄG*L7 +endstream +endobj +297 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 523 +>> +stream +xVM0W訅CfVUYn) *MLuebf3 !P|% ϦjgL~*:Ep~5Qw*GU`W]ݨ-IoϧCGYxQltjlo=] +f\ޠvG> +kG941?eN4O@wrj= Q#%%*RK5i)f5bA';>Rx*lJ۪rʡzvg1.JE +{Db;ǝ&Hy.,^SS3uKY]& U?|11^˹ +_XӈlN7O5Mq}WV{{V4J]nxSU>ە6^-|ܖ3B$0_=y7eN +endstream +endobj +301 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 1257 +>> +stream +xXIo7WR`$wSF4DM u>.qEE" gO$~B~:_*IEjB`Jo*6@ @5%KC<&ؠ$?@k& )萫?Dpά'8 H뙅v}C^altsJ S(|&98[݌bL⻙кaj-/bصP6"-0nn"pRZf,6 }pigZLP]C-`B3Y՛vpwwbwNԛz)7SglRV#Y`͕:I2j4EEI6(*5J#@s$A@xȨS b\ԗR'& M,BZGdi)})AؾoZ8,j䰮VąƅxcT_ IZyX{FZ7)JraEdqYuPOO\:`S.?CpE6eT3K1ǛsbVĪ M=))'1_K3i;D2b0(#|MM!]ƱX]3X 8l)dzﶷfb4H#ͪN3]0ś1U&nD{uD.+wLU1ˣߟ5ȹhcV9\D Igtg%SlqINZ[|Տ뽢5k{w +C OS*|462? +` +endstream +endobj +305 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F14 247 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 630 +>> +stream +xڭVMo0 W2n W%J*Kt؎onNCOKR((||$HAzDv{Z"]h@$i!) +)PWCIHƚf_gs,Vna[_݂快 Liwi.HF693ϘT[ylWH<(oxL^yU*7J@*n6~;x<1`Tgv{ׯx=q:> YYh?1 +fss4!Lr!(@KuOgw6s# bC*k5EZg"g|(7f(ۥΏ;Ceq.0`VlY!|dJ69X1uy:evfdWrAYds~LPi)M@ +L~g " 9XOP/4\CGZ>3V#X;M=Wa9aq1bkn9,W?j|v,d|TatuW;c"g +L ᄖ9[@s-r3vUJ5Nb=j$'=l ^H{qzFK&IMJח.!utg +endstream +endobj +309 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 691 +>> +stream +xڭWKs0+t. )GIC'3Ca-!۫ҧoD +B=j}*T~G"X%*?d1SLf[)-TL WZf8m@Y?~)$[nαLdo$]Ӆp^dځUmg?r,".UU~,>T9s&R66{]GGSpp6$a 1X9b y*O6akFOz{ȅƊ$Ԥ-F]0z1d\2ŵq'BW1bMJXedǷ igE2S:pcRJӗ/4P"D&zaC!sWi Mymu1gz٤sSC}ڝ?~wt6} wߝ. FCVE"kc[eyq%jQnwB">`Fph + Gd\GE׌WR6u̵1"溣^К̨]< $:1xMiPs6ߩL/zQ^H-/xXz\`qo9Y _>*Uaf[.Rn7]: +endstream +endobj +313 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 675 +>> +stream +xڵVn0+tRw@.E= $j`C +Ml]$$eQsbɗzzq" +waa*8MYSRI 1%\ I,Zn6q309V_D@j92-u\j$3NS,~t'wt +>6,ʯJ:ld}pv ]!T C\#"l>13+M;ͮ[Χ>:. +tҶ]rۮӓ\2`΁偸Ӳk)D8:඾' vFETfP `H S C}tdl\y&fvT2Sn&JUfv޻ ow/>+Y ”+&%p> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 658 +>> +stream +xڝVK0Wpi/UU{lt%\qH$8aH6\=7pqs?"ҙQ7$$BfG1B?Dq)G8Bd(e4o n^c~BX[Xe V;Mi ^ U mV*C^F4mqan+-sEAn' + BjFd\WJo#* >g&Lf9u֫7C١.w;r)˲3]fC1|>}B$7Ovn^hTd_>6!d7:mIXܩ;uyӥHc^$kEBٕAZnK$H<QRox> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 639 +>> +stream +xڭV0+rl+Rcۦ+a[wb;ۛdf͘$Y>%--kHI,")?ޥYuqD:}/$$(u BJf&`SPt.j} (tz[Y5ava]oM,P(EC `h{(10;fGѹ@+Zu~1so:44h3]Vcvȅ:57ѓ++>uy l-7WN +endstream +endobj +325 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length 638 +>> +stream +xڵ;o0~ +r |? thhF[ACdvȇ/_Db]Bw<~AJpgb +t@Rb)%oWĸ \bY$`@fSg6 + +&b +2.]wir5s .k*2Ό N + <(Sb0Jޟ ynu0aOGt8ӑ\%5dZĬy̚ŬOE^V_IX*OGc:?&/;s6bTLյe¤g03bfg0;spt⤎T3̟z\姣t}hN3rYOs;m9HײQm9&g7'X{G]O؁K(;$F__X킚tX_$GQrY#S(a6eu-TEF_Ⱦ:*=ED{:KJ& //ʜykq7f<4iR0xw:=ٜ _CY?7Gڬf1%~u{|Ǜ=Y@FHlOCNOo&<]3+ TmKdPjv۽@1Ɖi%|5-wHID +endstream +endobj +329 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 329 0 R +>> +endobj +332 0 obj +<< +/Filter[/FlateDecode] +/Length 1002 +>> +stream +xڭWKo6Wǒ&g R4)c{jPRw M}%Q/y i3)dX\~e?67)-P* 6l%W +%5 }sc +\dgRPs0q-|R5ٿ 3n QX!Jlu +R l3qB)$, QQqA9a]WJjT(F3z$p +~<* FM\yBh`Ni8 Q@TP}>:5y.P*jv#Qq]ڍ/1WIBŻUH@E^[B[yKoA ܅h 8(YǵlZ/gq͹ȝ)j9nH4S>'B`"qFĜyEj]԰a *%h56ex6a5Cޜ:y4ae?am8lduQ9j1UypM6n`4X jV j +SeC2΅B6ycLNQ_.ӒR +$TN5μW/oO˾\M8|MzV+kڠi7ZǾ8#ߴS&9NWڧP.j= CZ az ŇV*,e t*qE}\&)ِJ+Fʂʙ,yݖ<wy8:gD}٘Qm5g0z3 $u~?= z_OgzNۿ9?}BL3uNDknUê.4\n3-]Y-=ɾvA^0KC=/WPe|u9E86^U#8?^~T>̍lϿxS:3w \_r6!BY"Z3X:$點h->u^tDpO] /|~#s{.L +endstream +endobj +333 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F10 45 0 R +/F14 247 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +331 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 333 0 R +>> +endobj +336 0 obj +<< +/Filter[/FlateDecode] +/Length 256 +>> +stream +xڭQMO0+XbZyF$!hzb|ݝfPRnʆ{ fAZ0^?J#Ή"E7f$9e<;@Y|\qn< +=KWu$w'S?qϷ훫pJ"b13Q&RD={3!oK\Nu׬X58wWY&m74KԊmĥ".c> +endobj +335 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 337 0 R +>> +endobj +340 0 obj +<< +/Filter[/FlateDecode] +/Length 950 +>> +stream +xڵWn0+x#Z˗h I[(M8]zВč %r 29eE󑽟M +b%Ai6p1@3L@=S)Tɹasha” Dr0% +\x ; ~3cI!5IA}"fV5 \3Ba#4JݲAX@ŴKFq BpJtcX)M<.Ųmˢ%\7=>YBn|ٞ,/ HGK5(Rкe/˞mnQܴ%/ԟLUzkCQ{6e]r4oܞgMUa[IȨ!PͣtVN6Ya>B#N%$_àln<}̟@L +GTbA>d+LAȆ'vc%ɗu6H +‚/:CQ¹@̓mF;~)løh^G.(/3ݯ(bId"'j> o˻lz?=s9<Rz(Fl8*t#㏨.O5Wؾ2 !N/:p^\p));)M}6EKCն]r77Bz7iwAR$ J6[4f(G/EZ 5ٗp),!uoJݻic| +endstream +endobj +341 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +339 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 341 0 R +>> +endobj +344 0 obj +<< +/Filter[/FlateDecode] +/Length 537 +>> +stream +xڽVM0WH5ۀġUU,"%@!5ɒ&[l{3#eZ}=gz`d@MF@j= ,mzZ1)}\ԏ[3^##"JLF롐su1maĈ ,? kƇӧ8S2§GXukyOŞoxWmUBiGУS콱I_i%EXǐl&p5PV6KǗ ty OmSֶD͉ulA5$}9Y@f;ww0;Ԝ BT-!7S].ǪuF5]JF ]klmrFt)Ki.Zz5k\W̎)ݢ1 wqר:krϳLĒOZhޏ/e~jۯe=94lkv?ddy5] MJ%fKU/c6 +endstream +endobj +345 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +343 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 345 0 R +>> +endobj +348 0 obj +<< +/Filter[/FlateDecode] +/Length 915 +>> +stream +xWK0+|Ajdǯ$)Z +TڦmE3~$qTڞ<2/,y$~M1YAse:;108:y7R|f|h-h4D Qy%;ZA ZPGhA[t+$ +V_@'i-/:չBQ5yC={7`@7gݛYo2*`e*ө/.ܯ./ۇ}QBQPS >-׫zMv7ۯM\-uzqD֬$.el7\Q}M}ofY my;"TLVTоKIi>U\L!/^!': A{29*"Wn4qFCoﮮ KF|0^Dfy2JtJ +endstream +endobj +349 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F14 247 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +347 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 349 0 R +>> +endobj +352 0 obj +<< +/Filter[/FlateDecode] +/Length 1150 +>> +stream +xXK7 WRf"6-ic^'qk{ޢ._Jg~%@HH~FHR|WAi1KXgD_ D2abV6,h–*ZEFBC(%e)Z#H %E9AlnVG(B6 ~^3H"(VպkЀ:I,~{$*(O.j 7\ʀkKr0XpĈ?Ky-Pp58uh.%IqJj^6y즛[69-mHy+KYZAs]9nMe5j82[戗0dlH.,Q)q:qk!:oy}m;1}!,DN!"I2.KXJ$Q™8k-88ԁUmiωGZhu{i]_3bs\C4[h ~#F&u +Ѹ]8,e^ "*Sq1VcYyNj"n`^.r ɤ}t C>Gכ" "GC'7 8bߞ؄y"ٜjO!1T]NTX; txv֡9MlQ+է +yrO>r"Uٶ'Sh̙ gmݠSnEw!4@Ûf;^6c0&쯹%|U\.gFa hP<<0Ro_}S^5./,k[ws;Q՚yGn6}`zw\]9^يRP4fZrX=?ʗ/u4_>>?LeZGѫjq66L_l&ÏkQ|E8g,SЛa;|JJ}[nX [TZ|-'9M q\*~X> AƆH0{?,+a^s9&?{x ۶jTn_lLǂDR3U~?V +endstream +endobj +353 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F3 16 0 R +/F8 38 0 R +/F14 247 0 R +/F10 45 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +351 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 353 0 R +>> +endobj +356 0 obj +<< +/Filter[/FlateDecode] +/Length 1171 +>> +stream +xXK6WR#.g6-ic^qkyvQȏԃX{a-of>}bGbTl;3f~~Xc2Sh&?߼6so:0:.5`$׊dqZ':q11/,@!lL؟ ֳ8]2TkW޳wq K׋rԄhQAf0U(T\xTVBǽ)Xajx c(*%p%+.c G +@ 55k&A{=e0/jQngcZ U5OCM Ũ)_x{`Ճm$RF2z3,%# ?UD@@iՍ/o%~p +\#< I$&=rۇzMiMsf嶧ڄt,p$+k*o4> +endstream +endobj +357 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 56 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F14 247 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +355 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 357 0 R +>> +endobj +360 0 obj +<< +/Filter[/FlateDecode] +/Length 1046 +>> +stream +xڽW[5~W)9k#@H "mh#Mď؞3n%69Okń/fXJ4n"yQ +zNBWr0ZL{39XdD> QÐgq [34/{`G&]`P1 E0.!(V"c<wEfmȼh., MrSf^-CTt *9])PEH /7e)BOO3ĺd~{eu37IO"--0S# Lk~u_/# +}vtϞMUw(5U{딐WoӢpWAg?.4o6C=ޮwiOx?o8|mzXTqSTձ*X_QMU܆C &KmGpȐ0|CDDUz[g~y%=O;J;/MeԽE!r'ϻ4YnI_4NoB[༭4i^wj(]~ W??/ɓͩM|HNj +endstream +endobj +361 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F14 247 0 R +/F10 45 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +359 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 361 0 R +>> +endobj +366 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 365 0 R +/BaseFont/MTANJN+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +367 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +ccVU*žE9'V ,3; Vsb11HN</gtmW _]&@S-}kLqyLP>f'L踌Q? ē?%8 +*s4ݶfKӄ>8ޝ +Wcaz1F +ǮD%Tj S}dޗ;r;vrf[kmREw%H"įQ֗d+ +endstream +endobj +368 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 366 0 R +>> +endobj +363 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 368 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/NXZYFE+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3989 +/Length3 533 +/Length 4541 +>> +stream +xg8kAF,eљFDo0fDH5ѣ%D'!( %K߷g>y뾞9}MEW6f`,iP<ք@2RP !=@ .PC h!P(-@3/珀`0ၮw$ IB~8_\@__p #F_!~kPFPom77 1pw5/6C.B(F &H<E"h!~Oq#;[m->_M(+@{eô0 vh8Pꘀ`QII4('% HɅW%J@ *C k:Dx͈,!|rjǺudx;S8itpuUl36pl$!ʽ0CWN=l LBnoW7w Z󤃝,؎>n֦SasJ;ᎡڈaSZw 8אjYk$C#%/-TE-  :^V[ߘ&nDծYfX$<Ȍ}~<{SsO=~ǔۃ裕ޗm%]XU;KQ0FK|4є0jfQ|,8@J/JeiS=^ḎU ED貤斉ڟB^XX|*o@njs1Yn=͛O6[}&egGxd8?a"9V1GO9&0q7$'u~`1v}8.aN_/[-޴KI=+Ş|͕N\'9L4 .UHʝc'D +ox DlAb ʪ oX[8yڧ]׽1K!nG 4Re)&MK!)S@ޓufʴ*SqY+nz?+mGD\62mh +:* I^ m7d| IF?,.^8|ZZ+)NUm2N[Llń΅ o[nlF?ў $cq_ZtysRZ_ Ґ*6{u)Ywj۳-,xR0(ќյv?clě#M'F| +ӆ=ƾlV(ڏy܃JY? 6)Yq] C2׈u?)aBxsK=f5_X"揭 &G]$$}π>Uwu@*ᕛ%en-eualf3:nn?X}{)i]}U|me ח>t?"&}$ÂBm83 3Y]UFN~lGS0DמnU#YXSOc!x0Bp1.5#K̿Ldp|W&XB@\>Pؠdy, +y#z> V],S ǚ FD? T3Oz٭U"Y9:ekFo;QdZJzpϽ 8y) Zp,m*PQFwUb|&R1WqrjJ]a,ܼKw6{z~i)(Vg^pX1\S9(K~,\oCE-;-?o.gW9CUlKZkm>y#SpC/Π=0CDcR}f%fhY* .#lȁa +0(ޙJ N3Ҟ%Zyxӛ?L/#+}TEm6-O'ٻD^!IHQꜮΤHyvkfJn'r=0IvexmhF֏¤pe֘ynь`#(ٸWg?3jZ~y8%LVkD@ΣICQr@*gwaUHI)Y`c] kcLqlӜ[^Gv,{S\%ɋ]~ l{2/r2E(F r&Ag%ěKh?{s2by$LcL@um^ +vtݰ!V°}`3-q+JzJN<^҉5ˆ=uEYm+~vS }_GN,S_p=*maEs q$eE0?uu'U:k2|vR י h<4`"@{40KɸNLwו3%7Ւ ^[}1a'J;1u/G&5dԅWC</&y%1l\Tj@odl$|JFC \CD.%p2qpDâElmtejʓgYSVBo<+/Too&'ޅ *=&G>QI)x}2jzfv^M? Ok)9rbߟ8o2K.}9%FA]>kL߶Z֎ꈂ ט-^1d|OL[CDz\C4,ODDAhz Ze6xpw0;FMcI^:kG[1.3OOoT萵7 Yvlֺ"S&-l. 3/0?c +qT^̧FvMV-D6'Ы}l}8v|tb٣lI-g:hoJD Ҹ +?-DŽ+Y%. S2w7>=[NLa't ?sZlK-&Q΍_5|cD8]GOW*s kbvAK=GzD|a^%OP({ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/FAZOZG+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4833 +/Length3 533 +/Length 5389 +>> +stream +xg4\m0z(AeB0j!:AfmD(ABD!jDDo#^=H8 +& +FM}ӴipZ!u !w!pp682 !nod`O \zbKnNi:; wC=Kre\H3wX3XFuٴ1<(s.>dFo{>/m G |'42Bqqզ^+*f&~VR\m;UR )h{:&K҂2-C3~%44k F/Ng+ _U.J0C{9aL4z!#_q|Պ (gAocHQt }O*&J=g،+J@j4I;yݐmhhsCۈ>X3-nFRm{q'|ӄ(WJ95pHZ\ OQ>sgpzgTJkGd**)VDjF|\9ң.·ƱEiI9ZR 62Gefdh<yOzM6fkQN mEh?ʻKxν6!L_i= OZ?b%/?W_hLҪVtM1!di.raU9lA> 2INJ5yuqӹ5zAlݽЃJ48g9Ya45Q`2ppEy%y/v.*tiϊav[KO1 *@,\7тS _IGuZ C?lɣI[xOd8sagfJ0tdd +09oU@Cͣ2_ş 2KBnrw)j#mMS>WRb?D}^:o}w*sId_VgVxZm.Sb>0Cl{Umc1.jK3&:i=_yZ~4TY{8oZo_Lj ~Ùj](PkvCpST'6Xj\IsBs\P/ޢ-e5nsh + %0S:|`S,cK2Cz~M/ktYSmysjyX.mˉ')na75c]m Jm` !T_:fNn_E?NRE|Gs ?C_W IPU- : NJ[M^Ld*~:rӎT[ E{GqlI6U2dz˶9cճQ +<Ø1']F +_(y<'>g'=xNFT'o̓FTe8}+3G?DX3˕Mi/7*#Ա?*y_Nj˞PzbB0oZikVH zrr1'̵U[YX[d .h+t~DV5f{vqqh:O1Ҙ5Ov#4]·3t_G +ZcroT\#oԩ%0\WOPҟK=VG4=t=R9a9z +jb +^ـL掐PE"tN\:# 致DIZ?\oخF"}a"wdFP&M9FN*;$K +LPd1;.:@+w\inA&;RvH-u쉷=B6M~޺. 4^3N6I#dASrvzeB̒|!j#KI׹p!u3xɾ{0s]tʺ'Evo<:*r_^,!}@+zL tc"jzJApNZ{Lqw3ZkR*ǚ[٩h#C>L߾/Rm)/83Y\͡Xn,lԛVtÐR@LWPMgJp{_̇h>,(m 0ѝq/=WΥ o^(b'J\ =GTqs +oo{V(8Mu|ƒH(PtW? 9b|Cb=kcbTgȍX4VbX`Z\ð> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9090 +/Length3 533 +/Length 9645 +>> +stream +xeT\qC4ݝwKpw rf}e|5:_*ZJ5MVqK{ =ԙS d@t;C̝AN. +#˅J hkm `d 9͡esg  дڂ=q0_ '+Ȓ `i tXmZt%W_.?I9-`% +]z4`7qU!G[b {g#@w._l K[ȿW@q5WIdf X@̃sD`WPaױfn u_P38ں 9ϙ-& [BPKsGJw( {w/V.^N{!(UjCm\@R^>f. ?ogle? ;ꧩp°BAhZA0\ +YmM]mC}m2=6>;UH~s4!BMLz99M 6ժ++lޅB94KE!E@mQ-n&A8I4Q mC̏:j8RYJ*#_ 3[jzv~*sT b4g?)W>eiu~T\dlko&#I3n#5;M2B 8c[FZ B2Bc#aua2*p˦GLr0 TV5 +@73JQI|Vdv8N٤>l*GUqGb[PAgeR<ׂqx?"9ہaNIY1HKMM^)-+5/Eح|n ̇ SI3,q-M6QYw \?FיC >n" I-qޜlaAbg $Ⱥ́Z}&G>E(Imcf"PkJM&>#\_}u Al@YEӟtN-t4t|~C~|hPF 2 Crupn1|bMف5tzb~2q JQBSZfTM}β7?Fߦ4fզ-]$ +/ͧ37%ore9ZP|/ڟSv .dh$8jUbi)_*4B+Bs&-剢|03S*QDa}9TKU10:}_ȵ9Ebd\]݋'xc77dkNmDHI}HW`${(]}Ӱ"@+*hJK_pCɬ|4SÄ=(?Ȥu/#a"y9GgGqݑc)q"aht418cjO!-4m{}4N Y4 aT<=,s=qhj95!fg+ f^V-ėKygτ%QpY;|馮ɴ dB(/F~|IKdHwfQ,Lh5Ǽ W +"?sRu:>w:ԟ>S1_.i>E"1U KRoULO9\fG“e,i;8ې^ՠ6g`4jIu󛽜i.gWͲrN!4ײqy-שy|]>0Zf{0F J QwPXх]wjI.YJHݠl4*v/P4e\vY 'V%Ɇd~XnGLf5K`KZP3MF[=1HV=Ύ;iPR$XPuǘ}x],dBgcŚױ9 TNeC߆l*u,Ȩ!Ҧ?!'GE#(|Y1Uf ^D'}19W>Xjt7)~8l*hW u\ f@lkbRʜziC)IQY%_cRʗizЭICo,ŮRuCff ؁"CC1x [ +=tiW4s`)+-9jex.Ԗ +  /Hw#@>A V=9i:!ga$r FJ7 SIL0_xCGUUIG*ju9} LYʛM*|I(B=qWH Q9IHv2> {to"],rL?/?^G,替i6Ғ䥌^-b=c%fPMwG^R +LKPS_:b&"Wyҧ97ThgVORSu>pIQq +*isIMUˢ8"V=ZΊm q\?iVr(4ۀCl< i0F}9 2KgJ+;b?sTI,7`tA1b|ŨW=wQ>EJSug>B(I#8Ma5D$y 1uWAuF*J$z&˓AɂZewzp\,sY"dg#HGg0F곥p1t"V*v$<%{ADkj׮WpH*ug}T8pǢۏnսosLIoXAKD +^6@ l VrՄ9f!~]E1û-RKtkYc~ W\BY?821ĚEEdt B 5m$bΉolA{SY3.i0YNUa!fMXM&lYP y8.R%1|)< %K·_nyfmǶ+8 ϊ;1|$sk6C./KVY]yh/ CqQWȿ.,, +91 X[,:NdF+&؝jT~y=p\--$ˣdHSƓ봸{(@ oe C dĬojƭ{_5Ehq>}2%3sB:<%<ԓ3TgԺ99) Tr:9g!œJ{&JeP@póRPZ_/;bשx ͽzShߩGsiyT= +W=sv*Dwӱ'XMf Dh}3AbuHgwIC 00Rh1\oݨLYqaB%b1I;^>!N I]CdJ/CGG*1:zPj!?2V& #C],€'yơZՈ3 +JYzT&PeXcaǍF DK8=%{936ZAOr>PCkS o#_ :1zCnbl4ߧv;m~;0%ex$B1#hgnG{@IDD"9^M7yZ Ԫ$K݈;/ÏBW;8gsɏj+0{?}xxjco9Ȏ9iўW11OLϐO#C^ח^n]Kwf,ލ!OVO&_| {q\%mNNIp3Ly?ʹ A 1Šn3qߎMfʦ='{ +_NȄq}^5zĽSXIBVc,؍l{2jcfKÒ;.rW@n9D:-p_voe~M]8ӑ&]8 sS6Rr:kOD~&XNV]L!VJj=#ܛ 0h [Pۦ,:BK)wCN\aXx +H= +#hkxgNj)[Hx ;OD=w+3'uIJ + ՝aޯ$6}I:]=^ []v="VPu$yF<2Fwƿg_sCƂ].񗊊$M㌔{"\(*+8lkE7b`W#9@d|xBAscE! x<[xnpĨ9ڸDͥĢaR3r, J~\вCN;YzЙ}MX&7ROɗwsE|!P^2dዽ7".-j1ci莥QJwC/1= Ȯ?}(KA%to 'D'c2{6WOc~f;:6 x]ƏY1:#K_;pʵG\KƵ+[lVu^,(2̑8֩?JEp +Ͳk94~8 fbJyoByxOlKa2jOn?nϭg HŜc!/۞2vFV/Lnc;7|il6ْ|[ GrVySUch']SUHMhSbL{%V4tW0),ƏR&2Khh/]rkE禜 +\Tp8Ub@؋xN7Im#C +k_$jcP!? 3c3󥷰؉kY$b>/D*/ gנ·smBs9Gӏ +wY &ދ@͞0ذ~٥v[ȒAG7s%'& u;0&jZe=-i$"g.dAߩmȟX΀ O N:LhAt t]!%33l&mHU]MgoO `[SAMH 6nB;AVp@zXoBȀY`,ND(n +[?%R?X9&V^#EZe &6#rMBfxz~In3kՑ1^uwgIBv1MsȾnPW!)2S4ٓQEX%ՌB}4_ +Wv}= WԚOCulg +YG_uf9)a@v3e&?%P4~_ާ!G.mX^'Y;s 3aji>Q.} `m$/_n(GxSC*Zpe[1Dviw1m'/c5=Nm20eQSr8J+9_X=꟪&2.7ut4!X۝ى%քW|щ+ZT=}[O^='t:CCV%E`. 'tGn^~cu2G15I:^-)׬QDpI5pƏ2#a"Hhߠ܊Y cX3 t._ DڣsQ8vvW:Π*3H (N5P'K0rf`AE_HPIZː? Fa(7d4" |dz+_I̟2 +ƨbDž&vyxZX`wb·.Ǩ<|0~0rPڲ(]S1ĕ/ڊlyYT]/8TMDw;FBfD:UAl~bI5,w#GrltwRQܻCFMu+9 ^.q& R΍2/8-$ɴ}6%2Cvl3Fw6-G%|"#gA)[Lufo!˭ v!,:GдJr`Fٶk?3SSTބ9@-h, +x7Q+?çMؠ,tˑZ"ח8:kuvd*߿1NNK-zE)+N(5~^:xfhɌaRuz~ jIun~X8& +sT/h+ßL(pzЅo?roA $d2tVZ~1K-؏lQ].(mZ<| q:}RVowl}L~ƌG s5<9W͉<5,C_l <^},Bc5zv]sj_ErxۆSޡqvNyF2ɳ侻Q{6>\Nǒڟ'1u]=DMӷhI8x,Sv.պtbkMD5\CtNO5˚z12JK{DSK* ȗkiw>L_ i\TXSY^԰}tI]]q;:gZ]g] +v[1荇Fq'E#h~Wd5y(枒NݰL=ܓNۅ y^w*I.*!Y&ա93Ѡ:I"[E)[ɳ4Y^Ѓxix)ӥɔe#8OoPaU`AEaQۉwTmc~_d3-pzzg*qoA<]޾pڭV0UT׆`g=pg Ey ֻLٻwxz3yH}"7{߳v/!kǤȩ&̣DZOzpc +ڑZx2G6Y]N> F7R(r]]Xj. Ǭ3>>SkageNm'ҋ`3 .A@ԯM&Qw61$bFi(pulWKљhU[鬳Z~F85m6)z~Ynbacq?Qm)"Zhت͢YpLm?ӫT}ϩ¥H@G)s qFg(U>#RJy,c (~*B)MQxvԳ6ɭu?\5 0AsG;T_ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/LSMJRX+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4949 +/Length3 533 +/Length 5498 +>> +stream +xg8\}Ƶh2hCމƘ c1zHD- zѢ-$]D$:{o'{˹ηsu^{s (pu4 ++KUt"@09 +"(U. KIJ@a X\Zrr. +ptyTxpI\BNp!Ph"X_A P >` PZ(4P/ϖ F!}04o1CpuO$RG>扅ch 2oc$rDIufBO1}OW@a}`>@+aAaaoO6a# A ؿRVF D@0XT +(!&_&('\K(&,,,!. +`(쟿7g8%ȤE?g}0 o.L;ʡݹ!9<`ٺAt BDUL|ۑm/i:>&C鲘;B[Vՠ1T?`9Xn6owϓՋQKxq5oPJbNfyoȝ碡W&&OGk4]VÇ۪֬/UIq̈́7N^O1i1f-{feepL0ppEDk%٤7eh\.s +9 +p REm\w?->[bp:}zq[u Si%L+)mY'nüY=[*DS<Mݐ_Ͱg7{7Z-O/^@ ױW ^Rkz|RMgceַUp^/vX vDRm[2JRx ps|;j{}/"$ i\zQ+Q$* Q).wسt}US@κ9<_QnIBd0#ܬ}$ gei佹 Ʋ ]qٺqQ'LPRvvNV9Rn\ȑ1&4^oűūl+r Q17ݺ5= +f[\# iPKd;TGX>;jӀF%*jykKCP;uj]gͽˤUГ%Mj~ʤh*c|x%2z ܂df U܃ϳx>d,L@:|=N)H}/PouG)==bq1bPv"oRSHBdIy->a|+8^wNvnlxra{ Ts{2Xiiv|\f$68Clbo5w:V/< k1dwY;/fiB|FǷG-vm˥P*>rO<˟{E08Z~4~u+SD?>E#0#a1F=*zM$+mFOkf,^!/5:{`vҬ:wnu6z@ڝ]H_KF~ury +OU/hWk0%+ܫ/׈YWe+9nyxL#a.Mtjbd2îɜVS٠W 偅֣Q"=>!#eFR'pq=((fyR"ΓCt*ĕսCjïً,=hf՚-FR,i13Z6Oj>[dkBN:AEݿn05kx6VI_cv|kىyN%sg$[=s뻽=$`ds a\]>:B`y hkboiar0!WߤxiSOPK!q6/v`ق#UJȐPŔ#0eSDc˽h9EYrQ42:&qݓuh9}jhelE4ISb{f 1Ww]Q<VvtmLc΂f _h&Kt +wuԌQȞa8;KB EPb3pZV6 M ?rdN)#smV-.Pd0jxfG/qYEUV7{|@Pꏟ _ Ɩf.$օFFPleN](m.x^ײ+KFs;\ ]x ?+fpz|\>/QCCCvU8 loW1S Kﮤ77Q9Iگ5+),jt& rX:)p;Bs5Ms)?);$=$%0b_h>~Sûy+mf򴋲[fFzm\"7yEmz:6m*lX|/'!h3i3tΛ004pT>4pڝɨ£&i\=TzO.)W/ïqwqex;$皊+%(Y#ߘ"tIg!lbw+3\7 m4뿙Ml?zТ4?" Ж;i_c"F'I=Z7u_6wߓeE((`RD){qǭ ޝۧto=BL\{bin x$$mʽ: &VjM9 ~yO]+z!μDjZK5yxd˙-?}d~\l{aNOL|[XmM鱠dnāHv,mpQO.^](\tj=~ ##iV6nEݣo8XܕdlNuU\}$4J] H;'Y7%)xY'D=,pL탵e&3FaNA9'`/FʵƊr +:MުP4ݠrf'ؤ˺k#_M¸ElI?$z9B58Z*&fhbZ?%""#JcObg^$f2Y"ˊ⒥BgT/ؘ]KVd1禊Q6*?,n@ƖX2*< + x2}9[M\~z뇺YbAv%M:rZmi%,u4YNz/tUïlva 9ŸQ?qQXYieɟ~`|~CX w_W3x}-Rm%Tq{qU K.34^,b :My^|JQ9^/E$dSFxz+tIdQ}VTxv-+̩ *j1M6M}"l읝0Tat&\^xSaiI7 <& Z)ɋTүDg~0r@hw5&k" vVYKdy}NTuC/fnn:<2c5p9E'zmd~Ѩ;BRu0hp%I~q6(F~FWM,.Ƅs<>-UE<~$P%o@(mX\ +_@=kkj9%ri*rO5E\BqєGv\4pC+9p0!mcb/K}"  + +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/SRCGHW+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 5428 +/Length3 533 +/Length 5982 +>> +stream +xeT\ݖ! A 8[`ZTAQQ~Q Cx!Q@9ֿTB@g(j@PP?&PaEyq20P_܀P7(jmQ@+ +G%(oRVN5A/\jiB{XV8;SpvqGA@  W!pؿQAA`2p;GMj퀲B`nпPͿ"zrJʆyjCਗ^.?A:x_̗ϕٿtS[#lv@=nAWߩdeޜ|8y3A~T\ݡ*@0,$(wQ߄?[glg@P'eLaQ4q[$/t٘SOj t+ba_U3(}(nW|Oeu 1͑% \:{Zsa+Tt ٪T ;鬸eCt~1UUwpb\y +v^JM+Vь_dn6 0ūeǰ%7ےO"9SKͼ$: ac"T6;|hA/ogڣt-T5Z#mdՀRxSDWo,!- CP(Í6>e:B/wnҔ:P!bcubr*1 3 ;L8}]L/$rh_Di㺫No y;HzE:6kUE10S2b3&AEI 1%ўreё1ZTFs9v`P,ۉM(/6/Tί_ٙ}yR?-î8D\ }6{K^#\&ͅPe;Z˓UzGNbg&qf3\h?>Ĕ$ES?*$q*ZPJBϋ\K4wb4=x6)|G( *@h9KOCܔ7}N_ 5fzsjqʶ3f1m+Ini(:*9\PztxҖe3?PqѼsGS }(ϲ ${8zZpfAո'lvpΆɻKȆs99ܺ*tN`Wj'D%ZXdGzo /Eڪˣ7؇Y#ͬ7Bu>< jb@PHvz1M +Y4l;9'35 ۭ]S7 +f* |@fgZ6qspKx9V2Qڛb,XhG?{t1<Uԏg `)ڵwߦKM$ha +ώEXtJ/A'.ٯԃ XmW}xh_n%H}͂- +{0浽G_hyȎ* ζJZ)`?Fg%pyY.>\ ֨>8p/&?ԥC(wC0\CœMmY5|<,e OGWK +F~45~y)S=$'Y.\Ư],wtH^\Q3 HPR|\0EXX4hSO[fV 4Xl?~!T\sC#ͼiԄ g'ϷfM]o8!V0Wa¿7z#=1TXLW%%3_nT%#6/ѫ5K|7}^ +?]Qɽtmذc!.Apy&wt][T.t6O,&)1Xg$<)S*EۇЏţIЎoYYUH5z +3(kiK%2Z=E1O~٪͖ @sMSމN*Bg_}lF7ҊF.IW[ln]Y-S#Hσά6A9/xdxo>5Xb$\ALΜr&r" 2}Za{}֥|Ko܄>N"wLJR|Mb'-.է2̝2 LdPeSL#|X@mWLy$꽨 WZ/1#ڋzxGmE* Tb[*tO)Eߴm*09CؓÔSȃcO5xCJ9U'M!3"۾xN + 'ʵ V|-qmʰPm+M[E#eAc.}T,0 +Q6+>"'Gk"l²CMF gv`/22 .O:w7h:Km ʩȗo6X4zm#mj1Kq·v[ Lbφ>mTjUTn^c1360͗2Lb0;q5@/<ۅ"}f$l;,E*T^?*âQK zjs|s:[?gq{#bl F쳻f?v\@.B~kʋeɐE)&&c, l+rkqH*&IaKC]a׍}qanΐ|S5x٣ M&J}ή 3߀Z4j\ٖ#Zajt!ڃث8cyN ; +L.RН̌z"Ch'ۏfv;Cl#7'۳rN6?׃%obj֊bP7Fzw#IZA`Fxt×(z9$O={jPe;ٗŕ2 !GuoVǕ}1į TIZ(~sG T(R@mwHcƆe}? Ҷ7PU&i9TOLw'#t@\ԏ;?6Ma؍M9:EάgLOe,5rhQ{s^>bﰒ$J-Q'rD +:K%MA+Zo)mFOQƇDMgmA7EZ"[_<6\'VpeLub{ +?e\ʆ՝pR9ݾtGĬ-JdkGy;`\~LtV}lnν$7v?Sr>SnuފB U|}%!ع>;u}G#:M y]BfIٳ*+THRԛw싻>gi킟4'A/2dO9ScڨP8/7 Qg  +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/SUTTVB+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1061 +/Length2 2813 +/Length3 534 +/Length 3511 +>> +stream +xSiݗF$i^.]KwȬ$.X`Eu!Bt_y%OhNAGtH)BST@rh,]K&J!8SPY E֟ H$ ǒ$ߟTTDj g +^?Y4K"R$@D3']\< }! +O}`ecm}LOZX"nmN YY/?(.TBU,.e) @ 1X)T:+`M%Siꀂ;QHG$?5OI9 SGSWg_ERpa] /\7ܙ/\N&~? DYά}@#z䂬~?MQE%* *)+= @D*}G]h/m㉬c\`AJzm^^#!a-cm.)E6C"R21RSe!'̂p$prr3*??{ Uv O>׭,ޒ =An/wܬOu3Tx[Z\4~&R5alLL'pǞW(T_nԗZ@<-SO\ R"X|}/ۧZ]Z>] i,okZxKmhm8W5U+>4ӒC}Ga9_Wc*Ӵv<|)מyLqH/ !Qz%!ÕV~7WZI3]]Paui7J[ҷ/4(z+<nƋ9|v~$"Vk4p:ft<7~*|%R%,HumC3>N:z3I*jSZߦ]ͺC(x]Ua=ԒmqgJ!b&>9]7L}3d>di1b`daO܁@9 ZnY wØe8=CYIn: Dv aFeБ}um)-5IzQV.މͤnۚ_|6dێ /p9ك>e2bkpTV{lWqWe*3(Lr|]zDeU_";C|M:EFJ(עf % IYwX`~lWa(¾ί ^t{%>-jOm#{5ku[>{gĬęHMQӻTmF?|f&{s]Kg!yF?@i3/Gc RB[i3rv87֓:)}cru!bNesDi܅"aţI^qf|:Pk&62ޮsr8@Un:wX-Pnfz3+J.sJ>s0ŃaXde4X 8:9a}dx6ˉħ|2luEN6Q)jrd*tOgi_܃B/],ow?|}e#Nn3P+{D۞qxL6"/uW[țFK_OU~z)ZcNjԨIu>NNFI(bK|[K[c:sf +G3?,ն bV`v+&/yU6{>XƊrY]6sn*7;#h`i^>_tUHlm(LRoqB}YTнa`M5eC: ܌yUDrfƝz{b`> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3733 +/Length3 533 +/Length 4292 +>> +stream +xgXS뚆4i"*%!!tҫ u#H0JGBЫ H޻t tJHG`s\k5k}׻>[: y+ 2:\!*^^E,C9`8 4р( Hʈd%xEGw,V% #(KBl!4`B FznqNH +LEV(K`AaDRX;VΎl N\ߤX!D.C^8?{{Gg h9X![i!Ph<@P10D/夂rCZp5#1V'o +tw P#@xso)c,P@X!V);'& +D/nDL +xW!C$aRUKg,_u1$$ iI#W 0CҪAo`i9\N2j\k%V#H͗/F2F,_2Hbnw'$#/" +Jidjf\H ه;1ã3A?z׭JXBM[F<; w:3w~K.ڗٜTxv l +FOCa |}Ԝ!dσPZ7~6wZYuW!ǑrXf6Z(Rpe$†m5҆,)/Cy>ogfh-E XG8,?<([y<"z^xUgk ǀY"'zb8Kw!s/ '\sDr MSV胡ko#2yةXdC.粲I;ǝN kY+".ݬDbyc-- dF wuM@1SQWӆU:XJrV`058`4<\3ut &i(YF/NmWnh5|nދ|}*-m} AB8LA"gȼKQi)B-3>Y7f;RdZ<3Jp)&eOSiCF^䞠H N94ja"L|׋ o#\T,'R +#_N;"Wަx]nNR2f53f7;M5OTr`#!;N?, +:GCfz(i}E?o ,$=UO,L$NxR^ Y0.5RcPE]f[lj5K-52ÿA/F'_LsPn,_ mz>Ԭ͎W&?Qq*LܷA(qw8YJiRxWA + fl)H؏Ã=&quDVC(kNK^ ,TqF]jCt}qH&Cޙ*F/6TKZ9N& ̿h{ PUDGͽ8\#X~8O9 +Sq.+Y*^Aa?5%zOc]/9q DeVG\ Â=3UStG Ci7`ev DȻBMӛ 7 8Hc?QۺڎRO7i$brKV^ff 7iiij*鏁of1 R8䈛oa6RGs vW":y_{nt7\1DlUYZd{>짲SBb! n m7A$7rmdiýtDDn4p䵱(xV5ÎS#,4woYwG]V#gbA~ƣ@Մ""_Ь%I<`Ӎ.Ģ: n5I{H^V8xR9CcxHP1qk'rAut7n'fz>ݫn8ݗ>s`hvp\!A'{IVBx]- +1-p\ȕ.c_j\֨v?N=sO^ܚqB,ǯq*LF aLSdf߄.RFdC!j[U8B4+L()rq-_~ݹ x!nN1^xrfs#g٘ :c7ycEEy777vtƳ=.bϫ#\k#5mI(mC>QPPJ<͊T:OSHͥ ,U@~=0]fӻ[{)AWU^Ρ0EƕMpIB82Jd$ߊ2J p"NB}Z2 /y9dt@`ڏK8x.l,<KJo}76KY>.kμpR֯(%Y? --n2[6=nDӚXq9*I#,U5\+gѮػ$@tg~h{B(_޳2&]uʮn؛MEX̵~19bY#NGJYlu3 )J"3q"^övyJOó{r3v\q%W+ }*E%DPïGS< +p/J5י,^Hd`~벳_q@#[Q\@gx]`S$ske1uB7]H$۷ rWm@CsZK7 Wdn˕S{?`G0@Fb:#]׳|2!E5q/ IM2>|mΘEd˜R4TCrV~+"%Qh=k3rjG_I/Hn`Sq`b'{XIC";'_Odkʟ-u)0+^2E0mJ~ޓSp-\0[f\Wd?Bٵnυl}^C2m7_%5Ɛo"DPEѻ<3|kсa2-q.j/hv>K`Uӽ1?{/z{Q uiN+Qið +>8vblI>|D',l9]>ཚ3$NW)}PZ0xvHEKhPm޻7}^@|a<6v^~Rv@v|>ikeZKe4RWBs3d3.[_sW$ެAd_R^1kt=_=7Ex*>`йO\kLMT9WkArRsNǃF \>WOgoթ}].D٫-u/Yq")$Z +sR`n RBzIBu…|1 +[j"jUOێlѯ,ڀd3>?\鮍fN1`ʐR$Jjs &U%$1)-EWmHHZ[I/cvjIL,V/t'#웂g9boԎԯzrZJ&T$/*XX$0!!A#r}FBiTw;p/o +ʗaj/de*Ѡ+ i(y{W?LŠr]yI\ZW} y,?oMWxl{/ +RlcfM{fLfBR53U- OލA^8RHnpqeg޴qS][ +Oj]6Kue(ۘm'&Ƃ\nldg~]OHb]GUָ8Xཊ!5 m%-mnn1tvD=Wޠll-O\S])w֜-睩<ѥw?<3$'#ȁu1p=3w.\K[FPGn2vףF\z)ABOY/^}wfRS{QCV"Tۏ[il6] +jv29ؐ*56vT N)[/ Pb!Wf/fu*̒ } 'Y+Ly&/"=&dfʞ=al6YN|h$Q&+wK4lxjkY2(uu J/Sp'c]4 }f|Iv0}lXb|1дLX4z1SY/J. +)(sw+<"wT><SnK|PN'SmD_T[U`b GK}|{|r~L&DHdiU=b2]RTɱHVl_ڠiQEA=A7I_vȪrhߦSʩXXq5ēV{WB;!#l ܚ8~+p4.L3z+9LV۵ty3^%%/ӎL&؆|STAeMyܜfq5];El=d{GY> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1711 +/Length3 533 +/Length 2252 +>> +stream +xy<ǕIEo,3i^1X2bx4fE3Iɖ,) +EdlD +)*RUɖw~N|s~wUq:fdhMtH `Ź#RSW`DDYY @HMG` Q0:`A2  jͅ@D",CHD* 3*p p #$`H$@H,@474_:&J ) +95!%Nr2 ӳ W,1ֿ5ܚMtbDY  ;Wu/HHf4 +tu?i q@#"D*i_QwwpP _5Z8&<Rh?<Y͊F!42AgTtN>A^5$rBх!ةf0@ug _7n9҄7뎝aKwb %*}ͺBzU歯XiWL"ꇴ|8]f-S̮H|`,nHҢW3yft/q΍"NO."i6vA2emvw+D3mly^G3`OMF$%_ vbw9dž61bq hثƘןCvEGJ#ߕ\):%-|OeceU*h+\ʙdS$ВdE34{,=Evv;(&qh9<ۇa%7=xu(J5˜*9jy<\| ”^! d.:Aٛ> 1]܇ 6@Lۻ8ӚDp{P->3V ]ʝ0IJ_̀_(.Il<養x >ANWqɔ Iћ3ahSvSxAro,Pdmq| lJk\9*'F +ܲ*yy[ nrA+͸D茞=Au;o 9X.S|4mBVneN[J +?đwV;5g=6 &xz)`y/WU$n;ixԾlU ~Җ-/oH=Xʱq̹*%cM66ǺhZXn:h\wDiOTyoН"pzaՙehy߃Vձj1-tV ޵'Q\ݝYtPs` {1ݘC!҃_k 'skBMHeo%K&lѵ }zVxy^bRr!_3g53`s$t/= 3?jySf#ݯSI)|˓432qu?4 +VhJ=Xx#Ho|}Qɠ1QuG£$jTBsY箈뛘/VwM.ڡǐ./I)OCN "9OpW6g^5yx=R*7;"1M6VykKV-ثN-w0O⏽!($ɌP3 Fzi[H*W5DF{D ̟Y(\: )oo}¢;ܻ-v)a1'3$Ųd 靚)K-7PMmXQ)|` QA"E 2`=>i +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/LEZOMG+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 43 0 R +/Flags 4 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1423 +/Length3 533 +/Length 1956 +>> +stream +xiTS-(C\HABn@(Ae`HHrCeD!*"$"P "3h uws{g{c6RL ЙMX< p {Zx,8@4>HVVx. pނdnE" +x0t0ZpYvli0@ly8t `b `(; +20 :0[@r9R,yr.Pi)%`0̝#_ eBesNc/'ƆX672/%42Ȁ_.| LZP32(~B>3ml]&QhpH]0/rZN0À`&ŧ GL(S%`J /@,4#a#@pVK0@u0$FtĥlLNUmn ~}A|+B=~8dNJ LupΓcRk5=(IE2'Ze~ +fVQz'">j~~\1UB?ƎCNni&+~ZzbV4;L훵>o5P6xw⻣ت9>pXAs*5?^9[y0p4隗G볁!7qeCXj٣JxKׯMv6ר -pd_Vx[KNZV9c֐;=Aa[j&:!AX/M*U2o 09Oh/]BZMz=;;ǩ[fd)inMw=߶uVmsbGcxde>k0YF)9k'5m\_e=>OYFx҈Lj oEuJPWHf߸2<> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 4245 +/Length3 533 +/Length 4809 +>> +stream +xy<}ǭcɾ!BcLc{0fpIميlZ%K,d͒]y:s9y|?I[*c|=p_"YA 40Q`V))CEPdPI]4 !@TU +eeQI8/o2PPO*P%("E~Qx/%SA@> 6K +b@JJ@ Mz`pDV?L@տdL?[AXR/.oRY/N/ObH_ax$ga[EpX%nug QxZT@`t\Gbpd7ֱDI~7!BQ_ +G$Q@kտDQ`v3&}18Ж"bP$ +Ne`K UP P0P UkhObMP췊$DKY#Tsbvv٠|A~U'uA']yy,Vá.^Ekܣi0H+ڦp~;}%5Fąi~~ɛjȝ?' <+ub|ܯ)Z+2>ckGyMaK ǃ )r~OԸJ>Є.Itu8=űg _Fw% X޸W1yd>6m9I9ȍC[$~;5OB[}GuSd$#-ex>,I^b@ :֋5FEƎFzOQFh{ 9Z\Ny /?WK.ȄI5Z.D7*25Ap"}R;x9qu<c˽ꁇ_Fo]7+r0 @ӚmL0^;7@jnt=VC_)X cxXڹȕs(|L{c7ER}q߆C%)&Q]_.>@у׻uozBP,{g5@uc̓$?˴ +5n TY TZX9,|`#2;=!,tw\nh8Lg?m3 m57}f8*:6=v NFv]$povji jvur׬{&Y=B'ѳLa- ,aL `چ(˻UحѢ'Ө!ei/ʩ>tX:Tj%n91P`-1Xm9,kzJ7#"˅h'ML_GFr\b{S04* ʲ:ɹu8͔jAqg +u +\} ,gZX6U~_;oQqrX,Yr@wȅhXzuO/WDeQ[ҩCU6*{63ԡG|%;u;;>?&N< xtS:r̔.]S:6|OQ{ca'G5jڙ F:q& ¢_W [LY7,,:9\as[Y!$zES"2\iI7kF=i%PvyP~÷(۸"2NF]M=zd)<ͰYET:UgD(.DZj}@S5t9ʕ-( iC/i)+zKWb:y@hŵjk7?eL>5SIZAw8nb2,~JU1ؿ. ERcCc&g=:A]|ScݥY}FXѷ4j:xi$.U=ds5B:Y5GqzF&c^ɢ`VɎ:4(p1̬WrB+;|כ,{k@XWm:?1<IrfI@D&7u7&k4nHE*Gܤ@k7TΜ%mYn<2B6ڣIrEwY{ CdlZ%fA<6_ d`8՟$`+U@EὛư|q$iF7[XQWǤ2=G#,)*>.rlfb$ɜ"rd{)x$Ӡ]L IN HOltPlm`;&;cA|J sU0yWNg}KtxCd}&ѡ0)|dhv8`1MKh˙cӐjH^a뒞@fdr)n峬ߨ'Ŗ4&U:KOw qx{<&z^-vK v]a&h޴j@fP3!n!@bGUVre@ AYģ84GHO鈔1:yRj |t)%A l唔Ʈ1S =}M%w眜D +TxNtSWH`ڀ;ӜB,{bVUPvMUzmkq33/G*]cϙ*’'6AUvM,9ԺT߹pUr*p2nC,0(EW'ԣ)ȅc7jeJ&\d3Ƿ҂,d,reL#N&̖M!'!=Y2xx]c>0{dS,j'ϙ4 VȬZ|MCL[uyQy4v PvʰetA2LDr5;' |@5)o5ub wN`_\`q!)ͪ XYUi(/_QRc8 +1YU׻Yy` iD;^Hy!ô6B!IB2+1O*ƪWUR;.gYI5o~nκG>_Y?XT߉Ŵq +B DZȫ|CHLFۺlX}42NO0>WU:5-t.kquv{wH<%'ljec"0Sz>?U@_nma 5b~oO+積9U1IIl߄Ѫm8h -͵wNfV~1=|5~ߵx Nr 2q9W[R8hziF_`?%8*< lM6^ZdhPHaf~c}.5PCƼUQ7CY=L"2}4MJ1o +W_SmQBB57msT0!V}$$q0tAqhb³q0NTMÔ2\C/_iv^@(ٗ"G[ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/KXZNYR+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 58 0 R +/Flags 68 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0R2f03&)*0;J)vKH6xPLڝ<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqȯ- b$"AM'ΓܣG,}cPJRi?W1s@N, \n0;~`RJ*sGgه&G'Z^<@4Ɛ h:;&%a#}N:}MurRn@ѤV6.40Y3^6 ztf<_ex-b{V >o@YSpJTLI_#_􂞯V}=r%x/+!ܳ4󺱃|hXe'2Wv)"d9kz#p(~])9 #&#'GnW{+$B +Q;I,E)=| bX4ŹW?:~g iwpz'?* +Ҏw˻tܗfsh]ys4Lm Om6ׂE %o&U6kJ2Q´oeX]Uf&RB*l[OWw'H\OӚG&X!l`kl{Ya9n4n^olge +.uJP'}o;oWr^e÷OW mi^E : E91OP!C{x)uվN\5ZE7{ZҨ hd$yt5B -ذzm駅9h~-hmj!3nݏg9'@~܎hqKZubnz$8Rb60RQ(؝-0fGk+>J5.(զ41H05+\x}]O +W{U_$:E {'>Vm.Li&Qd]{SڽjADK@NDM5#¼Kl#0oE~Tj> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10291 +/Length3 533 +/Length 10848 +>> +stream +xUTѶqwCB lظCpw w 5hp9ۣ֣kC9׷f5F|Pbp0:ػprT9؁(44R SW+H! ptr99((4@)G/g+^*>lnjT1u517 W/V Pj&`EAZ]f += +?-|J[9g HOR_N {d¦w>_c ׿˺A vg[ +`rw_p* ݿW\M!`s {+E P[]@L-oI._UuSCϘ ~d`¿?m6{s PJRӇ2{HAϬ3z3m 2G P?_!`'0}) {|oIvXl NqE~o ++?B/tQUﱹ\/sd[%6dx蹆gqjG4Q/S]ԘkIRm[[_|QTO]AEf ˬ+q|1󒙁R +UyLXz<*tėc?Z]2lR~2%tԠgph1w+=TT{5O?xCS(VH G|ѧtuهyMz'ߵػP +^~ҕ<$H\ GUq{y\~nj2OW/1AJǤxgv6<2ı#|ٴWgT;3y3H:^)tLch;;e-"g|%>.IAYGӵiᎆc+ +@ KING쉲qh|lP888J ɠ' \2偆O?dPk^;?*j8kn1^Dq<*_BEԂB`L\Wǁ|ݮkh|K7qx5L?ˣvid 6PxOVXFDvƖ +^jxB"qIx/B-JBhq`=f,YG2GZQ:Ğ~\{m:qn<1mxi`X50Uic%TZIl]yM~ņEOJVzCv(4`aizn!7P\rBf,I1 +p$2CF\[SYBPN5~8Pב7`d N%2/u;8l!d +8")<ЏiJihQ^@<ߍZ k*pz 6'5dqZ5[Թ+_quzE59(-A䜖FAM 6KA_@׺W |CR 3eNԃ~Sb ކܫ^iJL"l3d +Ag\6TԧiXQF[5|7è`w{c^5BbIO:w,fk3|Fj䃠X +ΗX{3hbӆCƚDʯ ֚ݢu!^` l' Ϻ*>j'կ'FO,Px;B6-i/)΢ja{8 ͲVqSíք`3qƌ[I|I8i(>FY>ܖ\T#C!3jfX;=` 0L?%&^oa3M+ptᝦ OGn)7Ґg|뭟n/Vdvfm&f$#F2dD~6_ߵ 3/?HXC)߀KֹZL(q:P&+%Jxe6y Qi3{ޡ^tl/*.-dGڎxNǰA[SjnjxLI>؈X[mfJ399 NZNt"frFO5%2-B5K1N5\8洒},&Mf܎}q-=uv#=proOvv1hfDAP=?빑ljf<[Є|:P>kS9 +'$g~$ TVQƣ?z2$S2hUƌ}0?e^!UsiJ{=ho^À"dPgB2?ĶcVגD%D4a>lDѻQ85xʵ|.zw9ڮ_Ͻۉ%#~ADi?jO EGw_Kcwa}rbXIJh]jv( +7:'s(c=K/F]6VӮm:_%KI}z +xa֪[AĀġwH-dguG̷6q~[Ե >X(D $ʕgh$i_ͺ*⬐*bpSFpƛ{WkԤziGصtGۛC׆E=˻#/TYK^5!Hd='\(3Sf4~DZKAOWun4o,wa }ƨo>CSL }/ $r0oIQ4~$b-в !)Be?HI/lJR0;@t1yHF}*gĦw;Sꪵ#QͲǻIߜ#r|kLٱ/ %~`b1D'>V\*P3jx_y"R[ALXMؕSFH 1ueDNd}OP#p?6[NE% ֥#64>)r7C +PCf] (%cbʛc}q8nkR)0CieyL&m;wdg1db^NHqWO8տo&0A/A7stG!x.z;38:d Ac~òp-1WM;Jxl(曀> oDgowL+y,(@%#! BikI*?m~=\\]轆Dwyڈ6kܙE_d\1n4tW+?U I㲉c$G4| +m(kD [ \o򍧡tW3qD!~)@)[,Z󛠙wP-ͽJǑVQ:jTk1җ'@xR|{uZ:[gV-/@b%-v~]l3r;F! wƫLsW&2Vtgy"Ry ϋ`RE^wLA%Zin2*^ ɛc4Mfyתй^#B_Ff1߮Yx9"M>}|Jew8PW:c$aAܿp'>w|㠎‘\7™-{|D(:xd҂4 &GkĊ㌏~x$CZg6Rr_,(%o]c8֤R`TSp1x7hT6SZ򬦑ԺQ^B.ʙMI7?h{Dc(/FIkBh3Jkz!Ds (mF6x:v͉]⣾/n!nzhW'Bqnl2~qm(CEcTË!!blͨ/jrb\PmI,5/(AGĤ=7#Q~IčiUrzEMVÌTUr[DQh+쫲ʤ:-_ԂDwu# Y~Z9]L6~NV6aq`FZ zt^nJ:юl^ZV3kS;$BAC$O} 6 oCI.u<.XȪYÏ3#u^ +uu&1"YdX +t,$w ^™7 { ͏YPA|^JoTc1&/cU#QG +n~]|i+ Ai8ŵ`Cu`fsǜljFI-d.UeCF۪f*Zu ĊZ',<`ȷ3ÂK0b qb&THש?G} e%zrHrԉñ}g5hxx+Vi=G J$ן 4y*2g BXכuUQߐD9̭IɅ8mTZ$]ry[ E.ץ!ϳsŬ*uWS%xvcs/&8%A,e&2Q*<6C[I+EBr)m3d(ԠV'=Mߌ0q7ƽ[98cɡۡ"",֣C.WSſ^WL1?_*^e' _݌u8鼥mS$ 8SRf4W՞i*>6g?%ppZ[ӛhJrC0?Z~6F +PBr . +t$V'\!@Q'$a܇wJy2ǤF03<wi`XoM07O+5qi[Ə +|M%g + ;y0›,RnE (Ls +[ I`\ woB_l%I_~^qM63Ȃ?F|y{>Fd {?(pe}Veo]# +nێ—)5^}IG41ѝT.OL4*p@ Q3L<}w~OuwSH+7եx0TzO$<)GP +i#PfXʼn:HCcFrNVrEV0г' N`yicTuז9; |m{aBCESՔeX܄<A7tic`0+РN{b(]h1):ʎlI{Qa-n ;IS|uٳtd> Y7wS}Ԙ~K& pS=]ۈ +Z3kLm$AAZ|TZɻt![S" ݀aUo5荒j9-F0H~c,.4yX ! ɫxI?2'P> +ki&jEnXPw]sfR˴=I?L\ TPT=BOg"Yw@;j`Ai~ZMcB/;)ԁjgu .zo6!@b$BtG(~E5qo'LjuNUDQc]%B"WфY˕M&*vM|0@ kkĸ{ T}Tɭ,?423.ҡ¹ma6Zll'kyJӴ)1gd}kTF[> 24P2t;rD@D]9G)M i@7$WFʽqC L0,eoz@Nڕ +M(p hcVnIF^l7br8y|3h\liuiooz=`4w(t.p#oh=demi&G-&׆/Y o@C j[SubVjkXKO[Ü'8#Th]l#-k!뾟-9*1n&[R4:|8Ce/4,&s)ok*A<mXn'!ח$PwC1%L-ŤZS #WjIR"J;&WXyl*p{U# G,܂ eƁwK·x>3Q:58|e(DxG%)Q}f*2UK{')yPFt˼ J$eF*f 1_xe˚{3v()keDݠfS *?jbO a:it.s#zFPlޓH?tx;4n)X&zȭ>G@+.!bG%UP@=&aa;ė݃z9>wN"&]!ˬ;8'||DS?W gwq3CTL_ŹyGv~ON%䅹qgͪ*lPڶ[zڂ#ãlmܷR/$;i>9a3&27VīU3ei6 Od +F3S fOЛTQyI`2EH&*ý9N#A،u8 2&M +WVwϚk*%tSۇ{RUSlk\"}uc86sCGvQ,lJiNĶn+g2CJƪ/+N.5# P0mNA}14 @ˋ (9$F5x\skUz2|ï,PY1%Ͽg[l7.^>_,=dpp&_  +k-VSl`ixlz}h:p)4Dj"u[2n낡G[}5QçOLa  ++3w{"mx+s::O +sI܌2f5ts1o'AP<ގ ~ u2=UnU2h:.$7SBAͤm&aU7Eą, .c-XO B{|z2. !cN8pƚNaڛZhJUF;5"I_AWuۯ[WF͇ x~RPzIcIسx!̥ױ}Жt:ץzf/DJ;Y&jڳPI~;2k>F(Uـn/] WMQ+.V'7FW+M*=p_ɉ> +endobj +245 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D? -Tɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\cw +endstream +endobj +365 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/MTANJN+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 364 0 R +/Flags 68 +>> +endobj +364 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq )[ANpwU@Rx k =Cpm9}n˞=zY4Z`' # TA^b:9J B  n z p +qqb`]60.~jiP1@C,ZNPH4x qz@@ Zk#P +VNd?[Wg.3'3h C08TW<˺۫;oq8!BS* /& ա0KO;PіPUTeǏnui{;CYU?0rr?h Ђ;]);/;y#~ըuq(Hx999T-]]!?7>Xb| ›Q^wμm\0(((ψZEǤH :WJ ơsb'I:*e(9kAq&w:f@S]֣' ĪdѩulB !E8p˝AԮ-Gr+E +ok/&Tv^DTtwWKԠ9k.* 1ZC/T4wv[ow +^q +RKKFfTMVP22.I- o !#Yl}`ќ~`ū&"ck@;Wak +n8$\ҧC$]W:dhjhQZ"5doƴ_/;4g8h\JG߄+K=sF?Jt}r22~Eh!~AWHQߠH?" YsuJ*7m_ǴBRʱsEy)'醝wU.x řtHx5P/= W%2;s?4Is~޾ FVh*W%u;T㚷cVW5m/{ƅ\U법D*/C j6MP0aw-ԭGVgm2RV$}nښTVW6H<"am?ջNkjfO\<!@g-en\VOqiX#^N!|ߴ=Wћ0λ rKt%?uN`ĦĊ¿r[ +;@fRUg_]QUlǸw'+!L0"k;K}l~coDvj/ٹJR ms + @н"|}xh? +1w,Z:Z؟vK7`%ҾrtbGGjțCܵ>-ȚfB}pǓXi7k=2ל.,=:m \ Ș|>XJ ]nEw#Eq='fxqPJ!2:+,uOAѝD. l^jI7+Q_ڽv惸I%fvadh#r1F88l1wѽ#p`%tu$%]*wy>m2l귪@=f̊Įn |@0:/F*@G?~WOӣkB+sGCeƯvO&Y!DU1@RŽ؍`BK]8QMyl'?yfNsҮXqz_J,h/5wfP3,2OL ѩZ^Ӎ*nX>FhQEYᅫ‚e\=$bYWf&^2@S0b/&Q=CU=t'b %ĆT'6})C\*!z+q:lXc K#N}nr{Ri)rZjв#2ǰBh*}.F+-T2!(!K9([4h7}O핹7}U8!|K~^D{Y>hf ȝib@T57@?M1āJ{URY#r:?!aͬ؏%֍ nv#G0h sm'6'LaPuU?3 χUx q/^W}V=B'jۿo*(dTZ\ +OsռM,(A) k9p?(Q ^fap[Ld58OFodQ(kKJ{%yo#&vQI֗7\E(ZD_uzCA~e?Qd*ȝJր62JHE$t8eSc%J?Gς ~f~ +A>/Q|' +XWy ; 64G=K.Px{F&~ॏ=XƁp{2zsc=THNh-ғR-RKt$J~O}1Gv?ϑh倄^D>.J}mVCW8X]p(bӟ?}Are&MwZ}L2'SODk&p޼o9 ?u~n{@Ŋ_81gqXQ5L۶X{\UdΘ&f0!ls|qm%QJf7̀b&cGw.Pn+SW]ǧt]#8_^E,D_&{cH8-x}Umگ̗m(|7'B0y6ܑDۊP$E*y7(Eeu]^(!V^ذL[ +lOlyңjwoL0 +ҪG3iMJw:Qx?ߎ,VaiXӬrzͻBȋ/N^4*cCmML6e!J|GmjҳU{LKbQ'R ~U [=y5b؈RJxQMlj\kpQn_ !t~q $&,q{dvxܰN.;ǎf!uYyDݪ#_>sa>f;k.7K58=9BQ1ks蘿tp@*7`11}5Ί& CUvZcVVr/xst-x]'LJA%`pk635 Z{\՞({6ރ[q>sK8HX>x y3"|nmշy9̣_RiGW= +Z#JMAT+{-!A6\أL۱LrWLxF *5٥e·4~SfBMpo5mpy`IɌX,]V|R%l2ju{ @X ?Rhu>il Z$ ;IþzX~*^RѭZPw%but'χ9b!TLo-\zӍ_0<Ii]~JJ +wä&)d|4LzAFu) !sgXA\nЃ +a "O5ўI|VChCbEy+:,~ w֩osNLĄ7bf/hW1SOz_&cv$4>3n:W"+ʝYLy69Y$r2(p~,1"HxNVĢur4i6nؤ3Bئs_KO= O0PW ިtmI8!#3M}9A仕'iffR&FhT-` `oz-A<-ɛ?8:ⱍK7֡u01UlM'7RK}ّ|QEUCMc1c, nEK_pv>L-:[%(FI;^8Mq0=SeRkz c!6\4+fmmhA6HR]\,LAP Z u"3UJz+Mqq4]L͡Z>YX푢K fx7$f9vߓ6oSID(4jW͉*Ƽ׭x`Ebx81ov+?/~ 74hM淼@˛g-oR(UPad!l}Y +mclm>95F@.vQ|<>n7#7%⋍;rU5nO<$^-mi}2a6Th( 9h+t&$&>2wg[ +&𽉈ĸ1s9s[HhhG(I2?;eoSVC0qrsoMt2l4OlT{E ?7t]wOeuD0Pb6j[11)*[f_ܕӳ7>mf4& +;,6 +mNkSyzX:}QAϊu֟y=bKi@bzj-=YE?ׁԩ>B̏"&>3Tɢp =_@tR95?oʟ=CKT +WrTdMcL OGYVjq~bt a|Ke +_`c?CcsjA#=NVa0d>ϩ@\ |\)^x3+R].div*@YQG&IŎ5-_q%&⹷IP7ijS7ވ5"`^/cW*fzS`z- kC^W඀zI3ċps|ԏGR׀,U5b;QKgm{St}FS+&}Ft^ 3aJo$rx!XFL$("ukJ sW34 +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185352-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +370 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 52 0 R] +/Parent 369 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +372 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 83 0 R] +/Parent 371 0 R +>> +endobj +371 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 75 0 R 372 0 R] +/Parent 369 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +374 0 obj +<< +/Type/Pages +/Count 2 +/Kids[99 0 R 103 0 R] +/Parent 373 0 R +>> +endobj +373 0 obj +<< +/Type/Pages +/Count 5 +/Kids[87 0 R 91 0 R 95 0 R 374 0 R] +/Parent 369 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 113 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +115 0 obj +<< +/Type/Page +/Resources 116 0 R +/Contents[17 0 R 4 0 R 117 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +119 0 obj +<< +/Type/Page +/Resources 120 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +123 0 obj +<< +/Type/Page +/Resources 124 0 R +/Contents[17 0 R 4 0 R 125 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +376 0 obj +<< +/Type/Pages +/Count 2 +/Kids[119 0 R 123 0 R] +/Parent 375 0 R +>> +endobj +375 0 obj +<< +/Type/Pages +/Count 5 +/Kids[107 0 R 111 0 R 115 0 R 376 0 R] +/Parent 369 0 R +>> +endobj +369 0 obj +<< +/Type/Pages +/Count 19 +/Kids[370 0 R 371 0 R 373 0 R 375 0 R] +/Parent 3 0 R +>> +endobj +127 0 obj +<< +/Type/Page +/Resources 128 0 R +/Contents[17 0 R 4 0 R 129 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +131 0 obj +<< +/Type/Page +/Resources 132 0 R +/Contents[17 0 R 4 0 R 133 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +135 0 obj +<< +/Type/Page +/Resources 136 0 R +/Contents[17 0 R 4 0 R 137 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +139 0 obj +<< +/Type/Page +/Resources 140 0 R +/Contents[17 0 R 4 0 R 141 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +143 0 obj +<< +/Type/Page +/Resources 144 0 R +/Contents[17 0 R 4 0 R 145 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +379 0 obj +<< +/Type/Pages +/Count 2 +/Kids[139 0 R 143 0 R] +/Parent 378 0 R +>> +endobj +378 0 obj +<< +/Type/Pages +/Count 5 +/Kids[127 0 R 131 0 R 135 0 R 379 0 R] +/Parent 377 0 R +>> +endobj +147 0 obj +<< +/Type/Page +/Resources 148 0 R +/Contents[17 0 R 4 0 R 149 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +151 0 obj +<< +/Type/Page +/Resources 152 0 R +/Contents[17 0 R 4 0 R 153 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +155 0 obj +<< +/Type/Page +/Resources 156 0 R +/Contents[17 0 R 4 0 R 157 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +159 0 obj +<< +/Type/Page +/Resources 160 0 R +/Contents[17 0 R 4 0 R 161 0 R 19 0 R] +/Parent 381 0 R +>> +endobj +163 0 obj +<< +/Type/Page +/Resources 164 0 R +/Contents[17 0 R 4 0 R 165 0 R 19 0 R] +/Parent 381 0 R +>> +endobj +381 0 obj +<< +/Type/Pages +/Count 2 +/Kids[159 0 R 163 0 R] +/Parent 380 0 R +>> +endobj +380 0 obj +<< +/Type/Pages +/Count 5 +/Kids[147 0 R 151 0 R 155 0 R 381 0 R] +/Parent 377 0 R +>> +endobj +167 0 obj +<< +/Type/Page +/Resources 168 0 R +/Contents[17 0 R 4 0 R 169 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +171 0 obj +<< +/Type/Page +/Resources 172 0 R +/Contents[17 0 R 4 0 R 173 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +175 0 obj +<< +/Type/Page +/Resources 176 0 R +/Contents[17 0 R 4 0 R 177 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +179 0 obj +<< +/Type/Page +/Resources 180 0 R +/Contents[17 0 R 4 0 R 181 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +183 0 obj +<< +/Type/Page +/Resources 184 0 R +/Contents[17 0 R 4 0 R 185 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +383 0 obj +<< +/Type/Pages +/Count 2 +/Kids[179 0 R 183 0 R] +/Parent 382 0 R +>> +endobj +382 0 obj +<< +/Type/Pages +/Count 5 +/Kids[167 0 R 171 0 R 175 0 R 383 0 R] +/Parent 377 0 R +>> +endobj +187 0 obj +<< +/Type/Page +/Resources 188 0 R +/Contents[17 0 R 4 0 R 189 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +191 0 obj +<< +/Type/Page +/Resources 192 0 R +/Contents[17 0 R 4 0 R 193 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +195 0 obj +<< +/Type/Page +/Resources 196 0 R +/Contents[17 0 R 4 0 R 197 0 R 19 0 R] +/Parent 384 0 R +>> +endobj +199 0 obj +<< +/Type/Page +/Resources 200 0 R +/Contents[17 0 R 4 0 R 201 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +203 0 obj +<< +/Type/Page +/Resources 204 0 R +/Contents[17 0 R 4 0 R 205 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +385 0 obj +<< +/Type/Pages +/Count 2 +/Kids[199 0 R 203 0 R] +/Parent 384 0 R +>> +endobj +384 0 obj +<< +/Type/Pages +/Count 5 +/Kids[187 0 R 191 0 R 195 0 R 385 0 R] +/Parent 377 0 R +>> +endobj +377 0 obj +<< +/Type/Pages +/Count 20 +/Kids[378 0 R 380 0 R 382 0 R 384 0 R] +/Parent 3 0 R +>> +endobj +207 0 obj +<< +/Type/Page +/Resources 208 0 R +/Contents[17 0 R 4 0 R 209 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +211 0 obj +<< +/Type/Page +/Resources 212 0 R +/Contents[17 0 R 4 0 R 213 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +215 0 obj +<< +/Type/Page +/Resources 216 0 R +/Contents[17 0 R 4 0 R 217 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +219 0 obj +<< +/Type/Page +/Resources 220 0 R +/Contents[17 0 R 4 0 R 221 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +387 0 obj +<< +/Type/Pages +/Count 4 +/Kids[207 0 R 211 0 R 215 0 R 219 0 R] +/Parent 386 0 R +>> +endobj +223 0 obj +<< +/Type/Page +/Resources 224 0 R +/Contents[17 0 R 4 0 R 225 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +227 0 obj +<< +/Type/Page +/Resources 228 0 R +/Contents[17 0 R 4 0 R 229 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +231 0 obj +<< +/Type/Page +/Resources 232 0 R +/Contents[17 0 R 4 0 R 233 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +235 0 obj +<< +/Type/Page +/Resources 236 0 R +/Contents[17 0 R 4 0 R 237 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +239 0 obj +<< +/Type/Page +/Resources 240 0 R +/Contents[17 0 R 4 0 R 241 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +389 0 obj +<< +/Type/Pages +/Count 2 +/Kids[235 0 R 239 0 R] +/Parent 388 0 R +>> +endobj +388 0 obj +<< +/Type/Pages +/Count 5 +/Kids[223 0 R 227 0 R 231 0 R 389 0 R] +/Parent 386 0 R +>> +endobj +243 0 obj +<< +/Type/Page +/Resources 244 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +391 0 obj +<< +/Type/Pages +/Count 2 +/Kids[258 0 R 262 0 R] +/Parent 390 0 R +>> +endobj +390 0 obj +<< +/Type/Pages +/Count 5 +/Kids[243 0 R 250 0 R 254 0 R 391 0 R] +/Parent 386 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 392 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 392 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 392 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 393 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 393 0 R +>> +endobj +393 0 obj +<< +/Type/Pages +/Count 2 +/Kids[278 0 R 282 0 R] +/Parent 392 0 R +>> +endobj +392 0 obj +<< +/Type/Pages +/Count 5 +/Kids[266 0 R 270 0 R 274 0 R 393 0 R] +/Parent 386 0 R +>> +endobj +386 0 obj +<< +/Type/Pages +/Count 19 +/Kids[387 0 R 388 0 R 390 0 R 392 0 R] +/Parent 3 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 395 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 396 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 396 0 R +>> +endobj +396 0 obj +<< +/Type/Pages +/Count 2 +/Kids[298 0 R 302 0 R] +/Parent 395 0 R +>> +endobj +395 0 obj +<< +/Type/Pages +/Count 5 +/Kids[286 0 R 290 0 R 294 0 R 396 0 R] +/Parent 394 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 397 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 398 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 398 0 R +>> +endobj +398 0 obj +<< +/Type/Pages +/Count 2 +/Kids[318 0 R 322 0 R] +/Parent 397 0 R +>> +endobj +397 0 obj +<< +/Type/Pages +/Count 5 +/Kids[306 0 R 310 0 R 314 0 R 398 0 R] +/Parent 394 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 328 0 R 19 0 R] +/Parent 399 0 R +>> +endobj +330 0 obj +<< +/Type/Page +/Resources 331 0 R +/Contents[17 0 R 4 0 R 332 0 R 19 0 R] +/Parent 399 0 R +>> +endobj +334 0 obj +<< +/Type/Page +/Resources 335 0 R +/Contents[17 0 R 4 0 R 336 0 R 19 0 R] +/Parent 399 0 R +>> +endobj +338 0 obj +<< +/Type/Page +/Resources 339 0 R +/Contents[17 0 R 4 0 R 340 0 R 19 0 R] +/Parent 400 0 R +>> +endobj +342 0 obj +<< +/Type/Page +/Resources 343 0 R +/Contents[17 0 R 4 0 R 344 0 R 19 0 R] +/Parent 400 0 R +>> +endobj +400 0 obj +<< +/Type/Pages +/Count 2 +/Kids[338 0 R 342 0 R] +/Parent 399 0 R +>> +endobj +399 0 obj +<< +/Type/Pages +/Count 5 +/Kids[326 0 R 330 0 R 334 0 R 400 0 R] +/Parent 394 0 R +>> +endobj +346 0 obj +<< +/Type/Page +/Resources 347 0 R +/Contents[17 0 R 4 0 R 348 0 R 19 0 R] +/Parent 401 0 R +>> +endobj +350 0 obj +<< +/Type/Page +/Resources 351 0 R +/Contents[17 0 R 4 0 R 352 0 R 19 0 R] +/Parent 401 0 R +>> +endobj +354 0 obj +<< +/Type/Page +/Resources 355 0 R +/Contents[17 0 R 4 0 R 356 0 R 19 0 R] +/Parent 401 0 R +>> +endobj +358 0 obj +<< +/Type/Page +/Resources 359 0 R +/Contents[17 0 R 4 0 R 360 0 R 19 0 R] +/Parent 402 0 R +>> +endobj +362 0 obj +<< +/Type/Page +/Resources 363 0 R +/Contents[17 0 R 4 0 R 367 0 R 19 0 R] +/Parent 402 0 R +>> +endobj +402 0 obj +<< +/Type/Pages +/Count 2 +/Kids[358 0 R 362 0 R] +/Parent 401 0 R +>> +endobj +401 0 obj +<< +/Type/Pages +/Count 5 +/Kids[346 0 R 350 0 R 354 0 R 402 0 R] +/Parent 394 0 R +>> +endobj +394 0 obj +<< +/Type/Pages +/Count 20 +/Kids[395 0 R 397 0 R 399 0 R 401 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 78 +/Kids[369 0 R 377 0 R 386 0 R 394 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +403 0 obj +<< +>> +endobj +404 0 obj +null +endobj +405 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 403 0 R +/Threads 404 0 R +/Names 405 0 R +>> +endobj +xref +0 406 +0000000000 65535 f +0000160863 00000 n +0000172891 00000 n +0000172536 00000 n +0000172741 00000 n +0000161027 00000 n +0000004049 00000 n +0000000009 00000 n +0000086360 00000 n +0000086176 00000 n +0000000913 00000 n +0000091200 00000 n +0000091014 00000 n +0000001906 00000 n +0000096891 00000 n +0000096703 00000 n +0000002823 00000 n +0000172641 00000 n +0000003740 00000 n +0000172691 00000 n +0000003994 00000 n +0000161130 00000 n +0000014577 00000 n +0000106839 00000 n +0000106650 00000 n +0000004110 00000 n +0000112641 00000 n +0000112451 00000 n +0000005056 00000 n +0000118926 00000 n +0000118737 00000 n +0000005992 00000 n +0000006968 00000 n +0000122746 00000 n +0000122552 00000 n +0000007922 00000 n +0000127343 00000 n +0000127152 00000 n +0000008868 00000 n +0000009862 00000 n +0000129987 00000 n +0000129792 00000 n +0000011478 00000 n +0000132539 00000 n +0000132353 00000 n +0000012429 00000 n +0000013394 00000 n +0000014466 00000 n +0000161235 00000 n +0000015902 00000 n +0000014639 00000 n +0000015802 00000 n +0000161340 00000 n +0000021425 00000 n +0000134803 00000 n +0000134609 00000 n +0000015964 00000 n +0000016935 00000 n +0000139921 00000 n +0000139726 00000 n +0000017842 00000 n +0000018824 00000 n +0000142578 00000 n +0000142392 00000 n +0000019801 00000 n +0000020546 00000 n +0000021289 00000 n +0000161539 00000 n +0000021909 00000 n +0000021487 00000 n +0000021864 00000 n +0000161644 00000 n +0000023012 00000 n +0000021971 00000 n +0000022888 00000 n +0000161749 00000 n +0000023324 00000 n +0000023074 00000 n +0000023279 00000 n +0000161854 00000 n +0000024413 00000 n +0000023386 00000 n +0000024266 00000 n +0000161959 00000 n +0000024902 00000 n +0000024475 00000 n +0000024857 00000 n +0000162241 00000 n +0000026015 00000 n +0000024964 00000 n +0000025868 00000 n +0000162346 00000 n +0000026507 00000 n +0000026077 00000 n +0000026462 00000 n +0000162451 00000 n +0000027540 00000 n +0000026569 00000 n +0000027404 00000 n +0000162556 00000 n +0000028540 00000 n +0000027602 00000 n +0000028415 00000 n +0000162663 00000 n +0000029127 00000 n +0000028604 00000 n +0000029081 00000 n +0000162949 00000 n +0000030313 00000 n +0000029191 00000 n +0000030176 00000 n +0000163057 00000 n +0000030974 00000 n +0000030377 00000 n +0000030928 00000 n +0000163165 00000 n +0000031428 00000 n +0000031038 00000 n +0000031382 00000 n +0000163273 00000 n +0000032536 00000 n +0000031492 00000 n +0000032399 00000 n +0000163381 00000 n +0000033233 00000 n +0000032600 00000 n +0000033187 00000 n +0000163769 00000 n +0000034302 00000 n +0000033297 00000 n +0000034165 00000 n +0000163877 00000 n +0000034808 00000 n +0000034366 00000 n +0000034762 00000 n +0000163985 00000 n +0000035990 00000 n +0000034872 00000 n +0000035853 00000 n +0000164093 00000 n +0000036690 00000 n +0000036054 00000 n +0000036644 00000 n +0000164201 00000 n +0000037069 00000 n +0000036754 00000 n +0000037023 00000 n +0000164491 00000 n +0000038150 00000 n +0000037133 00000 n +0000038013 00000 n +0000164599 00000 n +0000038821 00000 n +0000038214 00000 n +0000038775 00000 n +0000164707 00000 n +0000040011 00000 n +0000038885 00000 n +0000039886 00000 n +0000164815 00000 n +0000040677 00000 n +0000040075 00000 n +0000040631 00000 n +0000164923 00000 n +0000041359 00000 n +0000040741 00000 n +0000041313 00000 n +0000165213 00000 n +0000042011 00000 n +0000041423 00000 n +0000041965 00000 n +0000165321 00000 n +0000042553 00000 n +0000042075 00000 n +0000042507 00000 n +0000165429 00000 n +0000043674 00000 n +0000042617 00000 n +0000043549 00000 n +0000165537 00000 n +0000044382 00000 n +0000043738 00000 n +0000044336 00000 n +0000165645 00000 n +0000045074 00000 n +0000044446 00000 n +0000045028 00000 n +0000165935 00000 n +0000045685 00000 n +0000045138 00000 n +0000045639 00000 n +0000166043 00000 n +0000046859 00000 n +0000045749 00000 n +0000046734 00000 n +0000166151 00000 n +0000047546 00000 n +0000046923 00000 n +0000047500 00000 n +0000166259 00000 n +0000048144 00000 n +0000047610 00000 n +0000048098 00000 n +0000166367 00000 n +0000049226 00000 n +0000048208 00000 n +0000049101 00000 n +0000166755 00000 n +0000049901 00000 n +0000049290 00000 n +0000049855 00000 n +0000166863 00000 n +0000050309 00000 n +0000049965 00000 n +0000050263 00000 n +0000166971 00000 n +0000051408 00000 n +0000050373 00000 n +0000051283 00000 n +0000167079 00000 n +0000052094 00000 n +0000051472 00000 n +0000052048 00000 n +0000167286 00000 n +0000052503 00000 n +0000052158 00000 n +0000052457 00000 n +0000167394 00000 n +0000053561 00000 n +0000052567 00000 n +0000053436 00000 n +0000167502 00000 n +0000054020 00000 n +0000053625 00000 n +0000053974 00000 n +0000167610 00000 n +0000055092 00000 n +0000054084 00000 n +0000054967 00000 n +0000167718 00000 n +0000055360 00000 n +0000055156 00000 n +0000055314 00000 n +0000168008 00000 n +0000057583 00000 n +0000153738 00000 n +0000153542 00000 n +0000055424 00000 n +0000056436 00000 n +0000057422 00000 n +0000168116 00000 n +0000058138 00000 n +0000057647 00000 n +0000058092 00000 n +0000168224 00000 n +0000059356 00000 n +0000058202 00000 n +0000059195 00000 n +0000168332 00000 n +0000059913 00000 n +0000059420 00000 n +0000059867 00000 n +0000168440 00000 n +0000061204 00000 n +0000059977 00000 n +0000061054 00000 n +0000168730 00000 n +0000061982 00000 n +0000061268 00000 n +0000061936 00000 n +0000168838 00000 n +0000062435 00000 n +0000062046 00000 n +0000062389 00000 n +0000168946 00000 n +0000064063 00000 n +0000062499 00000 n +0000063902 00000 n +0000169054 00000 n +0000064832 00000 n +0000064127 00000 n +0000064786 00000 n +0000169162 00000 n +0000065608 00000 n +0000064896 00000 n +0000065562 00000 n +0000169550 00000 n +0000066388 00000 n +0000065672 00000 n +0000066342 00000 n +0000169658 00000 n +0000067157 00000 n +0000066452 00000 n +0000067111 00000 n +0000169766 00000 n +0000068281 00000 n +0000067221 00000 n +0000068156 00000 n +0000169874 00000 n +0000068988 00000 n +0000068345 00000 n +0000068942 00000 n +0000169982 00000 n +0000070534 00000 n +0000069052 00000 n +0000070384 00000 n +0000170272 00000 n +0000071348 00000 n +0000070598 00000 n +0000071302 00000 n +0000170380 00000 n +0000072223 00000 n +0000071412 00000 n +0000072177 00000 n +0000170488 00000 n +0000073082 00000 n +0000072287 00000 n +0000073036 00000 n +0000170596 00000 n +0000073924 00000 n +0000073146 00000 n +0000073878 00000 n +0000170704 00000 n +0000074747 00000 n +0000073988 00000 n +0000074701 00000 n +0000170994 00000 n +0000075569 00000 n +0000074811 00000 n +0000075523 00000 n +0000171102 00000 n +0000076860 00000 n +0000075633 00000 n +0000076710 00000 n +0000171210 00000 n +0000077300 00000 n +0000076924 00000 n +0000077254 00000 n +0000171318 00000 n +0000078525 00000 n +0000077364 00000 n +0000078388 00000 n +0000171426 00000 n +0000079246 00000 n +0000078589 00000 n +0000079200 00000 n +0000171716 00000 n +0000080460 00000 n +0000079310 00000 n +0000080299 00000 n +0000171824 00000 n +0000081910 00000 n +0000080524 00000 n +0000081749 00000 n +0000171932 00000 n +0000083381 00000 n +0000081974 00000 n +0000083220 00000 n +0000172040 00000 n +0000084727 00000 n +0000083445 00000 n +0000084566 00000 n +0000172148 00000 n +0000086112 00000 n +0000155156 00000 n +0000154961 00000 n +0000084791 00000 n +0000085714 00000 n +0000086054 00000 n +0000163671 00000 n +0000161445 00000 n +0000162145 00000 n +0000162064 00000 n +0000162853 00000 n +0000162771 00000 n +0000163572 00000 n +0000163489 00000 n +0000166657 00000 n +0000164392 00000 n +0000164309 00000 n +0000165114 00000 n +0000165031 00000 n +0000165836 00000 n +0000165753 00000 n +0000166558 00000 n +0000166475 00000 n +0000169452 00000 n +0000167187 00000 n +0000167909 00000 n +0000167826 00000 n +0000168631 00000 n +0000168548 00000 n +0000169353 00000 n +0000169270 00000 n +0000172438 00000 n +0000170173 00000 n +0000170090 00000 n +0000170895 00000 n +0000170812 00000 n +0000171617 00000 n +0000171534 00000 n +0000172339 00000 n +0000172256 00000 n +0000172823 00000 n +0000172846 00000 n +0000172868 00000 n +trailer +<< +/Size 406 +/Root 2 0 R +/Info 1 0 R +>> +startxref +172989 +%%EOF diff --git a/src/axiom-website/CATS/schaum2.input.pamphlet b/src/axiom-website/CATS/schaum2.input.pamphlet new file mode 100644 index 0000000..7a4ef98 --- /dev/null +++ b/src/axiom-website/CATS/schaum2.input.pamphlet @@ -0,0 +1,1549 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum2.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.84~~~~~$\displaystyle +\int{\frac{dx}{\sqrt{ax+b}}}$} +$$\int{\frac{1}{\sqrt{ax+b}}}= +\frac{2\sqrt{ax+b}}{a} +$$ +<<*>>= +)spool schaum2.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/sqrt(a*x+b),x) +--R +--R +--R +-------+ +--R 2\|a x + b +--R (1) ----------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=(2*sqrt(a*x+b))/a +--R +--R +--R +-------+ +--R 2\|a x + b +--R (2) ----------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:84 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.85~~~~~$\displaystyle +\int{\frac{x~dx}{\sqrt{ax+b}}}$} +$$\int{\frac{x}{\sqrt{ax+b}}}= +\frac{2(ax-2b)}{3a^2}\sqrt{ax+b} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x/sqrt(a*x+b),x) +--R +--R +--R +-------+ +--R (2a x - 4b)\|a x + b +--R (1) --------------------- +--R 2 +--R 3a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=(2*(a*x-2*b))/(3*a^2)*sqrt(a*x+b) +--R +--R +--R +-------+ +--R (2a x - 4b)\|a x + b +--R (2) --------------------- +--R 2 +--R 3a +--R Type: Expression Integer +--E + +--S 6 14:85 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.86~~~~~$\displaystyle +\int{\frac{x^2~dx}{\sqrt{ax+b}}}$} +$$\int{\frac{x}{\sqrt{ax+b}}}= +\frac{2(3a^2x^2-4abx+8b^2)}{15a^2}\sqrt{ax+b} +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2/sqrt(a*x+b),x) +--R +--R +--R 2 2 2 +-------+ +--R (6a x - 8a b x + 16b )\|a x + b +--R (1) --------------------------------- +--R 3 +--R 15a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=(2*(3*a^2*x^2-4*a*b*x+8*b^2))/(15*a^3)*sqrt(a*x+b) +--R +--R +--R 2 2 2 +-------+ +--R (6a x - 8a b x + 16b )\|a x + b +--R (2) --------------------------------- +--R 3 +--R 15a +--R Type: Expression Integer +--E + +--S 9 14:86 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.87~~~~~$\displaystyle +\int{\frac{dx}{x\sqrt{ax+b}}}$} +$$\int{\frac{1}{x\sqrt{ax+b}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{\sqrt{b}}~\ln +\left(\frac{\sqrt{ax+b}-\sqrt{b}}{\sqrt{ax+b}+\sqrt{b}}\right)\\ +\displaystyle +\frac{2}{\sqrt{-b}}~\tan^{-1}\sqrt{\frac{ax+b}{-b}} +\end{array} +\right. +$$ + +Note: the first answer assumes $b > 0$ and the second assumes $b < 0$. +<<*>>= +)clear all + +--S 10 +aa:=integrate(1/(x*sqrt(a*x+b)),x) +--R +--R +--R +-------+ +-+ +---+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b \|- b \|a x + b +--R log(-------------------------------) 2atan(----------------) +--R x b +--R (1) [------------------------------------,- -----------------------] +--R +-+ +---+ +--R \|b \|- b +--R Type: Union(List Expression Integer,...) +--E +@ +Cleary Spiegel's first answer assumes $b > 0$: +<<*>>= +--S 11 +bb1:=1/sqrt(b)*log((sqrt(a*x+b)-sqrt(b))/(sqrt(a*x+b)+sqrt(b))) +--R +--R +--R +-------+ +-+ +--R \|a x + b - \|b +--R log(-----------------) +--R +-------+ +-+ +--R \|a x + b + \|b +--R (2) ---------------------- +--R +-+ +--R \|b +--R Type: Expression Integer +--E +@ +So we try the difference of the two results +<<*>>= +--S 12 +cc11:=aa.1-bb1 +--R +--R +-------+ +-+ +-------+ +-+ +--R \|a x + b - \|b - 2b\|a x + b + (a x + 2b)\|b +--R - log(-----------------) + log(-------------------------------) +--R +-------+ +-+ x +--R \|a x + b + \|b +--R (3) --------------------------------------------------------------- +--R +-+ +--R \|b +--R Type: Expression Integer +--E +@ +But the results don't simplify to 0. So we try some other tricks. + +Since both functions are of the form log(f(x))/sqrt(b) we extract +the f(x) from each. First we get the function from Axiom's first answer: +<<*>>= +--S 13 +ff:=exp(aa.1*sqrt(b)) +--R +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +--R (4) ------------------------------- +--R x +--R Type: Expression Integer +--E +@ +and we get the same form from Spiegel's answer +<<*>>= +--S 14 +gg:=exp(bb1*sqrt(b)) +--R +--R +-------+ +-+ +--R \|a x + b - \|b +--R (5) ----------------- +--R +-------+ +-+ +--R \|a x + b + \|b +--R Type: Expression Integer +--E +@ +We can change Spiegel's form into Axiom's form because they differ by +the constant a*sqrt(b). To see this we multiply the numerator and +denominator by $1 == (sqrt(a*x+b) - sqrt(b))/(sqrt(a*x+b) - sqrt(b))$. + +First we multiply the numerator by $(sqrt(a*x+b) - sqrt(b))$ +<<*>>= +--S 15 +gg1:=gg*(sqrt(a*x+b) - sqrt(b)) +--R +--R +-+ +-------+ +--R - 2\|b \|a x + b + a x + 2b +--R (6) ---------------------------- +--R +-------+ +-+ +--R \|a x + b + \|b +--R Type: Expression Integer +--E +@ +Now we multiply the denominator by $(sqrt(a*x+b) - sqrt(b))$ +<<*>>= +--S 16 +gg2:=gg1/(sqrt(a*x+b) - sqrt(b)) +--R +--R +-+ +-------+ +--R - 2\|b \|a x + b + a x + 2b +--R (7) ---------------------------- +--R a x +--R Type: Expression Integer +--E +@ +and now we multiply by the integration constant $a*sqrt(b)$ +<<*>>= +--S 17 +gg3:=gg2*(a*sqrt(b)) +--R +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +--R (8) ------------------------------- +--R x +--R Type: Expression Integer +--E +@ +and when we difference this with ff, the Axiom answer we get: +<<*>>= +--S 18 14:87a Schaums and Axiom differ by a constant +ff-gg3 +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ +So the constant of integration difference is $a*sqrt(b)$ + +Now we look at the second equations. We difference Axiom's second answer +from Spiegel's answer: +<<*>>= +--S 19 +t1:=aa.2-bb1 +--R +--R +-------+ +-+ +---+ +-------+ +--R +---+ \|a x + b - \|b +-+ \|- b \|a x + b +--R - \|- b log(-----------------) - 2\|b atan(----------------) +--R +-------+ +-+ b +--R \|a x + b + \|b +--R (10) ------------------------------------------------------------ +--R +---+ +-+ +--R \|- b \|b +--R Type: Expression Integer +--E +@ +and again they do not simplify to zero. But we can show that both answers +differ by a constant because the derivative is zero: +<<*>>= +--S 20 +D(t1,x) +--R +--R (11) 0 +--R Type: Expression Integer +--E +@ + +Rather than find the constant this time we will differentiate both +answers and compare them with the original equation. +<<*>>= +--S 21 +target:=1/(x*sqrt(a*x+b)) +--R +--R 1 +--R (12) ----------- +--R +-------+ +--R x\|a x + b +--R Type: Expression Integer +--E +@ +and we select the second Axiom solution +<<*>>= +--S 22 +aa2:=aa.2 +--R +--R +---+ +-------+ +--R \|- b \|a x + b +--R 2atan(----------------) +--R b +--R (13) - ----------------------- +--R +---+ +--R \|- b +--R Type: Expression Integer +--E +@ +take its derivative +<<*>>= +--S 23 +ad2:=D(aa2,x) +--R +--R 1 +--R (14) ----------- +--R +-------+ +--R x\|a x + b +--R Type: Expression Integer +--E +@ +When we take the difference of Axiom's input and the derivative of the +output we see: +<<*>>= +--S 24 +ad2-target +--R +--R (15) 0 +--R Type: Expression Integer +--E +@ +Thus the original equation and Axiom's derivative of the integral are equal. + +Now we do the same with Spiegel's answer. We take the derivative of his +answer. +<<*>>= +--S 25 +ab1:=D(bb1,x) +--R +--R +-------+ +-+ +--R \|a x + b + \|b +--R (16) ---------------------------- +--R +-+ +-------+ 2 +--R x\|b \|a x + b + a x + b x +--R Type: Expression Integer +--E +@ +and we difference it from the original equation +<<*>>= +--S 26 14:87b Schaums and Axiom differ by a constant +ab1-target +--R +--R (17) 0 +--R Type: Expression Integer +--E +@ +Thus the original equation and Spiegel's derivative of the integral are equal. + +So we can conclude that both second answers are correct although they differ +by a constant of integration. + +\section{\cite{1}:14.88~~~~~$\displaystyle +\int{\frac{dx}{x^2\sqrt{ax+b}}}$} +$$\int{\frac{1}{x^2\sqrt{ax+b}}}= +-\frac{\sqrt{ax+b}}{bx}-\frac{a}{2b}~\int{\frac{1}{x\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(1/(x^2*sqrt(a*x+b)),x) +--R +--R +--R (1) +--R +-------+ +-+ +--R 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +--R a x log(-----------------------------) - 2\|b \|a x + b +--R x +--R [--------------------------------------------------------, +--R +-+ +--R 2b x\|b +--R +---+ +-------+ +--R \|- b \|a x + b +---+ +-------+ +--R a x atan(----------------) - \|- b \|a x + b +--R b +--R ---------------------------------------------] +--R +---+ +--R b x\|- b +--R Type: Union(List Expression Integer,...) +--E +@ + +In order to write down the book answer we need to first take the +integral which has two results +<<*>>= +--S 28 +dd:=integrate(1/(x*sqrt(a*x+b)),x) +--R +--R +--R +-------+ +-+ +---+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b \|- b \|a x + b +--R log(-------------------------------) 2atan(----------------) +--R x b +--R (2) [------------------------------------,- -----------------------] +--R +-+ +---+ +--R \|b \|- b +--R Type: Union(List Expression Integer,...) +--E +@ +and derive two results for the book answer. The first result assumes +$b > 0$ +<<*>>= +--S 29 +bb1:=-sqrt(a*x+b)/(b*x)-a/(2*b)*dd.1 +--R +--R +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +--R - a x log(-------------------------------) - 2\|b \|a x + b +--R x +--R (3) ------------------------------------------------------------ +--R +-+ +--R 2b x\|b +--R Type: Expression Integer +--E +@ +and the second result assumes $b < 0$. +<<*>>= +--S 30 +bb2:=-sqrt(a*x+b)/(b*x)-a/(2*b)*dd.2 +--R +--R +--R +---+ +-------+ +--R \|- b \|a x + b +---+ +-------+ +--R a x atan(----------------) - \|- b \|a x + b +--R b +--R (4) --------------------------------------------- +--R +---+ +--R b x\|- b +--R Type: Expression Integer +--E +@ + +So we compute the difference of Axiom's first result with Spiegel's +first result +<<*>>= +--S 31 +cc11:=bb1-aa.1 +--R +--R (5) +--R +-------+ +-+ +--R 2b\|a x + b + (a x + 2b)\|b +--R - a log(-----------------------------) +--R x +--R + +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +--R - a log(-------------------------------) +--R x +--R / +--R +-+ +--R 2b\|b +--R Type: Expression Integer +--E +@ +we compute its derivative +<<*>>= +--S 32 +D(cc11,x) +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ +and we can see that the answers differ by a constant, the constant of +integration. So Axiom's first answer should differentiate back to the target +equation. +<<*>>= +--S 33 +target:=1/(x^2*sqrt(a*x+b)) +--R +--R 1 +--R (7) ------------ +--R 2 +-------+ +--R x \|a x + b +--R Type: Expression Integer +--E +@ +We differentiate Axiom's first answer +<<*>>= +--S 34 +ad1:=D(aa.1,x) +--R +--R +-+ +-------+ 2 +--R (a x + 2b)\|b \|a x + b + 2a b x + 2b +--R (8) ---------------------------------------------------------- +--R 3 2 2 +-------+ 2 4 3 2 2 +-+ +--R (2a b x + 2b x )\|a x + b + (a x + 3a b x + 2b x )\|b +--R Type: Expression Integer +--E +@ +and subtract it from the target equation +<<*>>= +--S 35 +ad1-target +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ +and now we do the same with first Spiegel's answer: +<<*>>= +--S 36 +bd1:=D(bb1,x) +--R +--R +-+ +-------+ 2 +--R (- a x - 2b)\|b \|a x + b + 2a b x + 2b +--R (10) ------------------------------------------------------------ +--R 3 2 2 +-------+ 2 4 3 2 2 +-+ +--R (2a b x + 2b x )\|a x + b + (- a x - 3a b x - 2b x )\|b +--R Type: Expression Integer +--E +@ +and we subtract it from the target +<<*>>= +--S 37 +bd1-target +--R +--R (11) 0 +--R Type: Expression Integer +--E +@ +so we know that the two first answers are both correct and that their +integrals differ by a constant. + +Now we look at the second answers. We difference the answers and can +see immediately that they are equal. +<<*>>= +--S 38 14:88 Schaums and Axiom differ by a constant +cc22:=bb2-aa.2 +--R +--R +--R (12) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.89~~~~~$\displaystyle +\int{\sqrt{ax+b}~dx}$} +$$\int{\sqrt{ax+b}}= +\frac{2\sqrt{(ax+b)^3}}{3a} +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(sqrt(a*x+b),x) +--R +--R +--R +-------+ +--R (2a x + 2b)\|a x + b +--R (1) --------------------- +--R 3a +--R Type: Union(Expression Integer,...) +--E +@ +<<*>>= +--S 40 +bb:=(2*sqrt((a*x+b)^3))/(3*a) +--R +--R +--R +----------------------------+ +--R | 3 3 2 2 2 3 +--R 2\|a x + 3a b x + 3a b x + b +--R (2) -------------------------------- +--R 3a +--R Type: Expression Integer +--E +@ +<<*>>= +--S 41 +cc:=aa-bb +--R +--R +----------------------------+ +--R | 3 3 2 2 2 3 +-------+ +--R - 2\|a x + 3a b x + 3a b x + b + (2a x + 2b)\|a x + b +--R (3) ---------------------------------------------------------- +--R 3a +--R Type: Expression Integer +--E +@ +Since this didn't simplify we could check each answer using the derivative +<<*>>= +--S 42 +target:=sqrt(a*x+b) +--R +--R +-------+ +--R (4) \|a x + b +--R Type: Expression Integer +--E +@ +We take the derivative of Axiom's answer +<<*>>= +--S 43 +t1:=D(aa,x) +--R +--R a x + b +--R (5) ---------- +--R +-------+ +--R \|a x + b +--R Type: Expression Integer +--E +@ +And we subtract the target from the derivative of Axiom's answer +<<*>>= +--S 44 +t1-target +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ +So they are equal. Now we do the same with Spiegel's answer +<<*>>= +--S 45 +t2:=D(bb,x) +--R +--R 2 2 2 +--R a x + 2a b x + b +--R (7) ------------------------------- +--R +----------------------------+ +--R | 3 3 2 2 2 3 +--R \|a x + 3a b x + 3a b x + b +--R Type: Expression Integer +--E +@ +The numerator is +<<*>>= +--S 46 +nn:=(a*x+b)^2 +--R +--R 2 2 2 +--R (8) a x + 2a b x + b +--R Type: Polynomial Integer +--E +@ +<<*>>= +--S 47 +mm:=(a*x+b)^3 +--R +--R 3 3 2 2 2 3 +--R (9) a x + 3a b x + 3a b x + b +--R Type: Polynomial Integer +--E +@ +which expands to Spiegel's version. +<<*>>= +--S 48 14:89 Schaums and Axiom differ by a constant +result=nn/sqrt(mm) +--R +--R 2 2 2 +--R a x + 2a b x + b +--R (10) result= ------------------------------- +--R +----------------------------+ +--R | 3 3 2 2 2 3 +--R \|a x + 3a b x + 3a b x + b +--R Type: Equation Expression Integer +--E +@ +and this reduces to $\sqrt{ax+b}$ + +\section{\cite{1}:14.90~~~~~$\displaystyle +\int{x\sqrt{ax+b}~dx}$} +$$\int{x\sqrt{ax+b}}= +\frac{2(3ax-2b)}{15a^2}~\sqrt{(ax+b)^3} +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(x*sqrt(a*x+b),x) +--R +--R +--R 2 2 2 +-------+ +--R (6a x + 2a b x - 4b )\|a x + b +--R (1) -------------------------------- +--R 2 +--R 15a +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb:=(2*(3*a*x-2*b))/(15*a^2)*sqrt((a*x+b)^3) +--R +--R +--R +----------------------------+ +--R | 3 3 2 2 2 3 +--R (6a x - 4b)\|a x + 3a b x + 3a b x + b +--R (2) ------------------------------------------ +--R 2 +--R 15a +--R Type: Expression Integer +--E + +--S 51 +cc:=aa-bb +--R +--R (3) +--R +----------------------------+ +--R | 3 3 2 2 2 3 +--R (- 6a x + 4b)\|a x + 3a b x + 3a b x + b +--R + +--R 2 2 2 +-------+ +--R (6a x + 2a b x - 4b )\|a x + b +--R / +--R 2 +--R 15a +--R Type: Expression Integer +--E + +--S 52 14:90 Schaums and Axiom agree +dd:=rootSimp cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.91~~~~~$\displaystyle +\int{x^2\sqrt{ax+b}~dx}$} +$$\int{x^2\sqrt{ax+b}}= +\frac{2(15a^2x^2-12abx+8b^2)}{105a^2}~\sqrt{(a+bx)^3} +$$ +Note: the sqrt term is almost certainly $\sqrt{(ax+b)}$ +<<*>>= +)clear all + +--S 53 +aa:=integrate(x^2*sqrt(a*x+b),x) +--R +--R +--R 3 3 2 2 2 3 +-------+ +--R (30a x + 6a b x - 8a b x + 16b )\|a x + b +--R (1) -------------------------------------------- +--R 3 +--R 105a +--R Type: Union(Expression Integer,...) +--E + +--S 54 +bb:=(2*(15*a^2*x^2-12*a*b*x+8*b^2))/(105*a^3)*sqrt((a+b*x)^3) +--R +--R +--R +----------------------------+ +--R 2 2 2 | 3 3 2 2 2 3 +--R (30a x - 24a b x + 16b )\|b x + 3a b x + 3a b x + a +--R (2) -------------------------------------------------------- +--R 3 +--R 105a +--R Type: Expression Integer +--E + +--S 55 14:91 Axiom cannot simplify this expression. Schaums typo? +cc:=aa-bb +--R +--R (3) +--R +----------------------------+ +--R 2 2 2 | 3 3 2 2 2 3 +--R (- 30a x + 24a b x - 16b )\|b x + 3a b x + 3a b x + a +--R + +--R 3 3 2 2 2 3 +-------+ +--R (30a x + 6a b x - 8a b x + 16b )\|a x + b +--R / +--R 3 +--R 105a +--R Type: Expression Integer +--E + +@ +Notice that if we factor the numerator of 'aa' we get an expression that +differs from schaums on by the order of the variables in the square root. +(We can square the term (a*x+b) and drag it under the square root to get +the cubic term). It appears that Schaums has a typo. +<<*>>= +--S 56 +factor numer aa +--R +--R 2 2 2 +-------+ +--R (4) 2(a x + b)(15a x - 12a b x + 8b )\|a x + b +--RType: Factored SparseMultivariatePolynomial(Integer,Kernel Expression Integer) +--E +@ + +\section{\cite{1}:14.92~~~~~$\displaystyle +\int{\frac{\sqrt{ax+b}}{x}~dx}$} +$$\int{\frac{\sqrt{ax+b}}{x}}= +2\sqrt{ax+b}+b~\int{\frac{1}{x\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 57 +aa:=integrate(sqrt(a*x+b)/x,x) +--R +--R +--R (1) +--R +-+ +-------+ +--R +-+ - 2\|b \|a x + b + a x + 2b +-------+ +--R [\|b log(----------------------------) + 2\|a x + b , +--R x +--R +-------+ +--R +---+ \|a x + b +-------+ +--R - 2\|- b atan(----------) + 2\|a x + b ] +--R +---+ +--R \|- b +--R Type: Union(List Expression Integer,...) +--E + +--S 58 +dd:=integrate(1/(x*sqrt(a*x+b)),x) +--R +--R +--R +-------+ +-+ +---+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b \|- b \|a x + b +--R log(-------------------------------) 2atan(----------------) +--R x b +--R (2) [------------------------------------,- -----------------------] +--R +-+ +---+ +--R \|b \|- b +--R Type: Union(List Expression Integer,...) +--E + +--S 59 +bb1:=2*sqrt(a*x+b)+b*dd.1 +--R +--R +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +--R b log(-------------------------------) + 2\|b \|a x + b +--R x +--R (3) -------------------------------------------------------- +--R +-+ +--R \|b +--R Type: Expression Integer +--E + +--S 60 +bb2:=2*sqrt(a*x+b)+b*dd.2 +--R +--R +--R +---+ +-------+ +--R \|- b \|a x + b +---+ +-------+ +--R - 2b atan(----------------) + 2\|- b \|a x + b +--R b +--R (4) ----------------------------------------------- +--R +---+ +--R \|- b +--R Type: Expression Integer +--E + +--S 61 +cc11:=bb1-aa.1 +--R +--R +--R (5) +--R +-------+ +-+ +-+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b - 2\|b \|a x + b + a x + 2b +--R b log(-------------------------------) - b log(----------------------------) +--R x x +--R ---------------------------------------------------------------------------- +--R +-+ +--R \|b +--R Type: Expression Integer +--E + +--S 62 +cc12:=bb1-aa.2 +--R +--R +--R +-------+ +-+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b +---+ +-+ \|a x + b +--R b log(-------------------------------) + 2\|- b \|b atan(----------) +--R x +---+ +--R \|- b +--R (6) -------------------------------------------------------------------- +--R +-+ +--R \|b +--R Type: Expression Integer +--E + +--S 63 +cc21:=bb2-aa.1 +--R +--R +--R (7) +--R +-+ +-------+ +---+ +-------+ +--R +---+ +-+ - 2\|b \|a x + b + a x + 2b \|- b \|a x + b +--R - \|- b \|b log(----------------------------) - 2b atan(----------------) +--R x b +--R ------------------------------------------------------------------------- +--R +---+ +--R \|- b +--R Type: Expression Integer +--E + +--S 64 +cc22:=bb2-aa.2 +--R +--R +--R +---+ +-------+ +-------+ +--R \|- b \|a x + b \|a x + b +--R - 2b atan(----------------) - 2b atan(----------) +--R b +---+ +--R \|- b +--R (8) ------------------------------------------------- +--R +---+ +--R \|- b +--R Type: Expression Integer +--E + +--S 65 14:92 Schaums and Axiom agree +dd22:=ratDenom cc22 +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.93~~~~~$\displaystyle +\int{\frac{\sqrt{ax+b}}{x^2}~dx}$} +$$\int{\frac{\sqrt{ax+b}}{x^2}}= +-\frac{\sqrt{ax+b}}{x}+\frac{a}{2}~\int{\frac{1}{x\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 65 +aa:=integrate(sqrt(a*x+b)/x^2,x) +--R +--R +--R (1) +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +--R a x log(-------------------------------) - 2\|b \|a x + b +--R x +--R [----------------------------------------------------------, +--R +-+ +--R 2x\|b +--R +---+ +-------+ +--R \|- b \|a x + b +---+ +-------+ +--R - a x atan(----------------) - \|- b \|a x + b +--R b +--R -----------------------------------------------] +--R +---+ +--R x\|- b +--R Type: Union(List Expression Integer,...) +--E + +--S 66 +dd:=integrate(1/(x*sqrt(a*x+b)),x) +--R +--R +--R +-------+ +-+ +---+ +-------+ +--R - 2b\|a x + b + (a x + 2b)\|b \|- b \|a x + b +--R log(-------------------------------) 2atan(----------------) +--R x b +--R (2) [------------------------------------,- -----------------------] +--R +-+ +---+ +--R \|b \|- b +--R Type: Union(List Expression Integer,...) +--E + +--S 67 +bb1:=-sqrt(a*x+b)/x+a/2*dd.1 +--R +--R +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +--R a x log(-------------------------------) - 2\|b \|a x + b +--R x +--R (3) ---------------------------------------------------------- +--R +-+ +--R 2x\|b +--R Type: Expression Integer +--E + +--S 68 +bb2:=-sqrt(a*x+b)/x+a/2*dd.2 +--R +--R +--R +---+ +-------+ +--R \|- b \|a x + b +---+ +-------+ +--R - a x atan(----------------) - \|- b \|a x + b +--R b +--R (4) ----------------------------------------------- +--R +---+ +--R x\|- b +--R Type: Expression Integer +--E + +--S 69 +cc11:=bb1-aa.1 +--R +--R +--R (5) 0 +--R Type: Expression Integer +--E + +--S 70 +cc21:=bb-aa.1 +--R +--R +--R (6) +--R +-------+ +-+ +--R - 2b\|a x + b + (a x + 2b)\|b +-+ +-------+ +-+ +--R - a x log(-------------------------------) + 2\|b \|a x + b + 2bb x\|b +--R x +--R ------------------------------------------------------------------------ +--R +-+ +--R 2x\|b +--R Type: Expression Integer +--E + +--S 71 +cc12:=bb1-aa.2 +--R +--R +--R (7) +--R +-------+ +-+ +---+ +-------+ +--R +---+ - 2b\|a x + b + (a x + 2b)\|b +-+ \|- b \|a x + b +--R a\|- b log(-------------------------------) + 2a\|b atan(----------------) +--R x b +--R -------------------------------------------------------------------------- +--R +---+ +-+ +--R 2\|- b \|b +--R Type: Expression Integer +--E + +--S 72 14:93 Schaums and Axiom agree +cc22:=bb2-aa.2 +--R +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.94~~~~~$\displaystyle +\int{\frac{x^m}{\sqrt{ax+b}}~dx}$} +$$\int{\frac{x^m}{\sqrt{ax+b}}}= +\frac{2x^m\sqrt{ax+b}}{(2m+1)a}-\frac{2mb}{(2m+1)a} +~\int{\frac{x^{m-1}}{\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 73 14:94 Axiom cannot do this integral +aa:=integrate(x^m/sqrt(a*x+b),x) +--R +--R +--R x m +--I ++ %L +--I (1) | ----------- d%L +--R ++ +--------+ +--I \|b + %L a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.95~~~~~$\displaystyle +\int{\frac{dx}{x^m\sqrt{ax+b}}}$} +$$\int{\frac{1}{x^m\sqrt{ax+b}}}= +-\frac{\sqrt{ax+b}}{(m-1)bx^{m-1}}-\frac{(2m-3)a}{(2m-2)b} +~\int{\frac{1}{x^{m-1}\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 74 14:95 Axiom cannot do this integral +aa:=integrate(1/(x^m*sqrt(a*x+b)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ m +--------+ +--I %L \|b + %L a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.96~~~~~$\displaystyle +\int{x^m\sqrt{ax+b}~dx}$} +$$\int{x^m\sqrt{ax+b}}= +\frac{2x^m}{(2m+3)a}(ax+b)^{3/2} +-\frac{2mb}{(2m+3)a}~\int{x^{m-1}\sqrt{ax+b}} +$$ +<<*>>= +)clear all + +--S 75 14:96 Axiom cannot do this integral +aa:=integrate(x^m*sqrt(a*x+b),x) +--R +--R +--R x +--R ++ m +--------+ +--I (1) | %L \|b + %L a d%L +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.97~~~~~$\displaystyle +\int{\frac{\sqrt{ax+b}}{x^m}~dx}$} +$$\int{\frac{\sqrt{ax+b}}{x^m}}= +-\frac{\sqrt{ax+b}}{(m-1)x^{m-1}} ++\frac{a}{2(m-1)}~\int{\frac{1}{x^{m-1}\sqrt{ax+b}}} +$$ +<<*>>= +)clear all + +--S 76 14:97 Axiom cannot do this integral +aa:=integrate(sqrt(a*x+b)/x^m,x) +--R +--R +--R x +--------+ +--I ++ \|b + %L a +--I (1) | ----------- d%L +--R ++ m +--I %L +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.98~~~~~$\displaystyle +\int{\frac{\sqrt{ax+b}}{x^m}~dx}$} +$$\int{\frac{\sqrt{ax+b}}{x^m}}= +\frac{-(ax+b)^{3/2}}{(m-1)bx^{m-1}} +-\frac{(2m-5)a}{(2m-2)b}~\int{\frac{\sqrt{ax+b}}{x^{m-1}}} +$$ +Note: 14.98 is the same as 14.97 +<<*>>= +)clear all + +--S 77 14:98 Axiom cannot do this integral +aa:=integrate(sqrt(a*x+b)/x^m,x) +--R +--R +--R x +--------+ +--I ++ \|b + %L a +--I (1) | ----------- d%L +--R ++ m +--I %L +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.99~~~~~$\displaystyle +\int{(ax+b)^{m/2}~dx}$} +$$\int{(ax+b)^{m/2}}= +\frac{2(ax+b)^{(m+2)/2}}{a(m+2)} +$$ +<<*>>= +)clear all + +--S 78 +aa:=integrate((a*x+b)^(m/2),x) +--R +--R +--R m log(a x + b) +--R -------------- +--R 2 +--R (2a x + 2b)%e +--R (1) --------------------------- +--R a m + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 79 +bb:=(2*(a*x+b)^((m+2)/2))/(a*(m+2)) +--R +--R +--R m + 2 +--R ----- +--R 2 +--R 2(a x + b) +--R (2) --------------- +--R a m + 2a +--R Type: Expression Integer +--E + +--S 80 +cc:=aa-bb +--R +--R +--R m log(a x + b) m + 2 +--R -------------- ----- +--R 2 2 +--R (2a x + 2b)%e - 2(a x + b) +--R (3) --------------------------------------------- +--R a m + 2a +--R Type: Expression Integer +--E + +--S 81 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 82 +dd:=explog cc +--R +--R m + 2 m +--R ----- - +--R 2 2 +--R - 2(a x + b) + (2a x + 2b)(a x + b) +--R (5) ----------------------------------------- +--R a m + 2a +--R Type: Expression Integer +--E + +--S 83 14:99 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.100~~~~~$\displaystyle +\int{x(ax+b)^{m/2}~dx}$} +$$\int{x(ax+b)^{m/2}}= +\frac{2(ax+b)^{(m+4)/2}}{a^2(m+4)} +-\frac{2b(ax+b)^{(m+2)/2}}{a^2(m+2)} +$$ +<<*>>= +)clear all + +--S 84 +aa:=integrate(x*(a*x+b)^(m/2),x) +--R +--R +--R m log(a x + b) +--R -------------- +--R 2 2 2 2 2 +--R ((2a m + 4a )x + 2a b m x - 4b )%e +--R (1) ------------------------------------------------- +--R 2 2 2 2 +--R a m + 6a m + 8a +--R Type: Union(Expression Integer,...) +--E + +--S 85 +bb:=(2*(a*x+b)^((m+4)/2))/(a^2*(m+4))-(2*b*(a*x+b)^((m+2)/2))/(a^2*(m+2)) +--R +--R +--R m + 4 m + 2 +--R ----- ----- +--R 2 2 +--R (2m + 4)(a x + b) + (- 2b m - 8b)(a x + b) +--R (2) ---------------------------------------------------- +--R 2 2 2 2 +--R a m + 6a m + 8a +--R Type: Expression Integer +--E + +--S 86 +cc:=aa-bb +--R +--R +--R (3) +--R m log(a x + b) +--R -------------- +--R 2 2 2 2 2 +--R ((2a m + 4a )x + 2a b m x - 4b )%e +--R + +--R m + 4 m + 2 +--R ----- ----- +--R 2 2 +--R (- 2m - 4)(a x + b) + (2b m + 8b)(a x + b) +--R / +--R 2 2 2 2 +--R a m + 6a m + 8a +--R Type: Expression Integer +--E + +--S 87 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 88 +dd:=explog cc +--R +--R (5) +--R m + 4 m + 2 +--R ----- ----- +--R 2 2 +--R (- 2m - 4)(a x + b) + (2b m + 8b)(a x + b) +--R + +--R m +--R - +--R 2 2 2 2 2 +--R ((2a m + 4a )x + 2a b m x - 4b )(a x + b) +--R / +--R 2 2 2 2 +--R a m + 6a m + 8a +--R Type: Expression Integer +--E + +--S 89 14:100 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.101~~~~~$\displaystyle +\int{x^2(ax+b)^{m/2}~dx}$} +$$\int{x^2(ax+b)^{m/2}}= +\frac{2(ax+b)^{(m+6)/2}}{a^3(m+6)} +-\frac{4b(ax+b)^{(m+4)/2}}{a^3(m+4)} ++\frac{2b^2(ax+b)^{(m+2)/2}}{a^3(m+2)} +$$ +<<*>>= +)clear all + +--S 90 +aa:=integrate(x^2*(a*x+b)^(m/2),x) +--R +--R +--R (1) +--R 3 2 3 3 3 2 2 2 2 2 3 +--R ((2a m + 12a m + 16a )x + (2a b m + 4a b m)x - 8a b m x + 16b ) +--R * +--R m log(a x + b) +--R -------------- +--R 2 +--R %e +--R / +--R 3 3 3 2 3 3 +--R a m + 12a m + 44a m + 48a +--R Type: Union(Expression Integer,...) +--E + +--S 91 +bb:=(2*(a*x+b)^((m+6)/2))/(a^3*(m+6))-_ + (4*b*(a*x+b)^((m+4)/2))/(a^3*(m+4))+_ + (2*b^2*(a*x+b)^((m+2)/2))/(a^3*(m+2)) +--R +--R +--R (2) +--R m + 6 m + 4 +--R ----- ----- +--R 2 2 2 2 +--R (2m + 12m + 16)(a x + b) + (- 4b m - 32b m - 48b)(a x + b) +--R + +--R m + 2 +--R ----- +--R 2 2 2 2 2 +--R (2b m + 20b m + 48b )(a x + b) +--R / +--R 3 3 3 2 3 3 +--R a m + 12a m + 44a m + 48a +--R Type: Expression Integer +--E + +--S 92 +cc:=aa-bb +--R +--R +--R (3) +--R 3 2 3 3 3 2 2 2 2 2 3 +--R ((2a m + 12a m + 16a )x + (2a b m + 4a b m)x - 8a b m x + 16b ) +--R * +--R m log(a x + b) +--R -------------- +--R 2 +--R %e +--R + +--R m + 6 m + 4 +--R ----- ----- +--R 2 2 2 2 +--R (- 2m - 12m - 16)(a x + b) + (4b m + 32b m + 48b)(a x + b) +--R + +--R m + 2 +--R ----- +--R 2 2 2 2 2 +--R (- 2b m - 20b m - 48b )(a x + b) +--R / +--R 3 3 3 2 3 3 +--R a m + 12a m + 44a m + 48a +--R Type: Expression Integer +--E + +--S 93 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 94 +dd:=explog cc +--R +--R (5) +--R m + 6 m + 4 +--R ----- ----- +--R 2 2 2 2 +--R (- 2m - 12m - 16)(a x + b) + (4b m + 32b m + 48b)(a x + b) +--R + +--R m + 2 +--R ----- +--R 2 2 2 2 2 +--R (- 2b m - 20b m - 48b )(a x + b) +--R + +--R 3 2 3 3 3 2 2 2 2 2 3 +--R ((2a m + 12a m + 16a )x + (2a b m + 4a b m)x - 8a b m x + 16b ) +--R * +--R m +--R - +--R 2 +--R (a x + b) +--R / +--R 3 3 3 2 3 3 +--R a m + 12a m + 44a m + 48a +--R Type: Expression Integer +--E + +--S 95 14:101 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.102~~~~~$\displaystyle +\int{\frac{(ax+b)^{m/2}}{x}~dx}$} +$$\int{\frac{(ax+b)^{m/2}}{x}}= +\frac{2(ax+b)^{m/2}}{m} ++b~\int{\frac{(ax+b)^{(m-2)/2}}{x}} +$$ +<<*>>= +)clear all + +--S 96 14:102 Axiom cannot do this integral +aa:=integrate((a*x+b)^(m/2)/x,x) +--R +--R +--R m +--R - +--R x 2 +--I ++ (b + %L a) +--I (1) | ----------- d%L +--I ++ %L +--R Type: Union(Expression Integer,...) +--E +@ +\section{\cite{1}:14.103~~~~~$\displaystyle +\int{\frac{(ax+b)^{m/2}}{x^2}~dx}$} +$$\int{\frac{(ax+b)^{m/2}}{x^2}}= +-\frac{(ax+b)^{(m+2)/2}}{bx} ++\frac{ma}{2b}~\int{\frac{(ax+b)^{m/2}}{x}} +$$ +<<*>>= +)clear all + +--S 97 14:103 Axiom cannot do this integral +aa:=integrate((a*x+b)^(m/2)/x^2,x) +--R +--R +--R m +--R - +--R x 2 +--I ++ (b + %L a) +--I (1) | ----------- d%L +--R ++ 2 +--I %L +--R Type: Union(Expression Integer,...) +--E +@ +\section{\cite{1}:14.104~~~~~$\displaystyle +\int{\frac{dx}{x(ax+b)^{m/2}}}$} +$$\int{\frac{1}{x(ax+b)^{m/2}}}= +\frac{2}{(m-2)b(ax+b)^{(m-2)/2}} ++\frac{1}{b}~\int{\frac{1}{x(ax+b)^{(m-2)/2}}} +$$ +<<*>>= +)clear all + +--S 98 14:104 Axiom cannot do this integral +aa:=integrate(1/(x*(a*x+b)^(m/2)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ m +--R - +--R 2 +--I %L (b + %L a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp61-62 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum2.input.pdf b/src/axiom-website/CATS/schaum2.input.pdf new file mode 100644 index 0000000..a9d474c --- /dev/null +++ b/src/axiom-website/CATS/schaum2.input.pdf @@ -0,0 +1,3076 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/FPGSSG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ZTNFWY+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/KHZWRY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T51盯t1e!oDl4;fӂͯb +jK$Sօvk@y4㌙̢Q5E6 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/DKLHRG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/OOVPHA+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/IORQIL+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/ZHEONB+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/OZINXB+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/NBNZIE+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/FYUDNE+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1091 +>> +stream +xڽXK$5 +rlypH\=x\@I*IWtkLTnqϯ2˷˻N֩˯ʃ&\՟<[x痲ݻN^652̖<{z X-"H 2$``-kMrm~vPȂ-~աGcPۆ 3A5w|OPrԠF<$YndgV;x +,l >|X_ac +6&|fzچ]FĶ.VVTNCpU 5zأCoX24y $X.-pt"9*cYym%@A÷ŦW~˷![ڷcg5)1A]BF̙ FfݞzH6,yܠPQ#C_,30'ng۳,s6Oث8=?OW1_!s8G`v֋ԡmuP5r?5(8:oAn yC:ʴocJˌ\0:sQD˘Ad&kOL})~kˎť+ᚣyT=Gn폠];@^ʆ@d[> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 490 +>> +stream +xݕMo1 +wƍI (WD瓏̐. S؎u0h |Wյ@Ĩ0~%*Zqb7tx]]k6Y)mD q{.X L1~Ha>#*Sc5[NDeu͞ʦhC<phPt +6a4hbKxC*x> @A3GϠHnF/C&}_iPǡ٭ԑL;ux_ݙ;(t_ks\HތiT;$ } ޗijPK إ8]pf+Ѧ>121Ⱥi8%5;Dpfp&qqDRQ%hX"S'PЕ\-ZNIY]ii`xՉ|ׄEFZ!EyGOz:<ѡTv'$5 +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F9 42 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/FXSWPD+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/KOKODZ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/RRBBFY+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 721 +>> +stream +xVn0+xpͥZ4)c^ ;c2"eI~ K}ΒȔT'aԿ$BВPAH2xaLa`QF/[ERHc K!QNAyw@lTL zaf!OƲʀQdAx"'|N4M#X4Jr(J$S ++򖤟ג$kJ3Rx{cjwZ}S<>v +ZҁZV%7 >ۈ:Qx + 4NS3N9MT@hk@$8T (Tcǥh AjyX%k3D9\{JS=W>[Ԑ纛0=S\#oQ[+!@c{>NWܹj5 9<.r@i '#?0uW + kp)ڔ X_,ޮWyL}l'na+׻CvO ?)mw*&"|^#xfUսz~_FedYcdEgӅEΙHѯu1[V,ٯ7%ه?;NJ57/]ৄx0"~1?`>3m_wmz( +Ux?Vntd0s:/`ЛWysc>sHw? } +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 791 +>> +stream +xVn0+x!W|ɀ-q/R@vĀv@?KRo[i\%.-nqz.,dqC`FjIE/#Kq5(ŧsMRj!xt"hQA2%, !eL҅'A42=D1H lm['ȏ-22L !k.:KPtfJP0_"aFt3Mfo/IDƙEqR B558"BG5fK@-8Jڠ שEHme Vcܓ)3hª +br@:0NA=}U|WtҨ82uQJxs3 0nҚK-kL1 Ȣt}E.6S+χ@ +e-~=@v͢qW?:Ջ c/ru6n:d\({GaO( '=_Sx9OՋ=5d3jD`B]m~nwEqj59]._m9iD#ZIR?ě?P +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 886 +>> +stream +xVMo6W(i19^uXo.b@r6q;$mKg#%&@v9{Ԡ4ۼgV3; Rͯo +Ur)o5ey[~ҲF $ğ9+c\C)!0$0.-Mt(lBZ+ +1 +AG6%T>J%K ȩr9Z i峰bZZ=j[\EgCYMX:~.ͮ]VCJ2]M>}xm]s]4~}e;?T''qΐ#R 48t0X[j dvai麬c)UBRzKeuwݱeP:4'∂Л\ۏuqm-vs]6_V޶.骹Š\uT-yWc(겚Y C._g<]Ns+I]I4uyt]:ﻹv\z}4m%j\؜oVeB1SK5=s +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +79 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 78 0 R +/BaseFont/ESBUTL+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 1301 +>> +stream +xXKs#5+ĉq)j"Ł ƻ&*mjUiI<"Ŗ?L8ܑ|x(&YI 0 )M?jF.nvZn?_13opϤ L#i^fU'C" 86ǜ!D(\c"6eW +mm1i'S̳EV ӊ(O?pī>|`#,t% +COYf-z2 ڍ|.,[H8cu438m2 4(d -ڐ # [1HCK}b?sF4{.E>1 +?9ͨp0+UsvF6pP$Nn#F0!քt :&p|'gB1ҘN2oXWhn6w* e > +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 744 +>> +stream +xVKo0WpcJ94jRJ65DH3ey4RU.~3o>lZ>ZWˋ +PZRґE%wo-?|%¦瑟6W$1sN*`&Tw Jo2InvR褼Vm&8F@pB&;Ta9Zx޷4 eޘݬoL(͙^'.0sB, 'm0kq0Z/T'3̦.a&.(8GFEb M rKPf2m{:m}o\i`Қ2*O=N 0_:y&%뾉 Pna( lOamZfEOyl=f~o6ߠWU-% Pm5 +eoQ/Pu5BtI L]:[^:YYBy` a$^2 N :Z; M#r]Eden[ +5ɡB:]c<1T;'td,Mүw菿؝"W?ADzKߦh٣hoxi:L{/`eMx' -6݂]{ %)' M#o֝EZ׍x +>-@xxa]7|]><4KӀ}E>Sg~xҢQ)~+0 +endstream +endobj +85 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 851 +>> +stream +xWo06.J9lZ;mV$Hg 8dT.6DZR>ZÓsn$VxeIAD`aw9Jl]q'-l&ub%irUQ.aY{Ί%ۘ(YwU_d,bHm@_ag S( EWu :(Teyd\*@Z%-d kK=ͦõ +eRuQ§8e,%m:f Kf3=(Brr.gJG[eCee5 ӣnܷÉ/[a 2?wv."CUIhЊCMzP% '}<ݿ#cmw4wDvvga>aJ0 04gpSgA`y#)@ɶ,aRŭހ5ja׀ld^з7?)UhI^Su]yG1> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 836 +>> +stream +xVKo0 WVy\K~HÊva ü8NcgMQxS0"),q]+κ^yVD5]Z"tȢ!wD`MoX/Qܪ=WBtIc՝lw"YT+Ta),W _χN ,G7tn?'TRP7>N\a D=J'6 x@)ᏥH9}hE(r/*).ꤨUSrI;SiIY (v]ȅ>6oiUeEf~x[IsE5r%92lp+B#jdi}}ÍzpIŘp!}+:sL~,!W'u)mD3WtJ! d;ʱ ٖڑ<GwE7uW8lr< oO}YJot6cϚC(~#(EJHrۣҰsF3A``Ō<- ~5fF댱h|£ߍ,&), +80􀙗g%E3`ǘU!o~luxO+s[xs"=]Nk &$=Ts7I$WP4fZ(,U~YK#K\RCYDw5idժOPW1;CK ldkPlچ^HɮJ6namW4O)u=rnv'+,Ubt> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 597 +>> +stream +xݔMs0d$NN{LXRәԆ&[>]}>+'lOwD87'D$DIo{rqp0eG,j +&2n;ؕ]=滝]]簥PRwYJSYvvLCQ ^Ad.7#sf]7y!wV˂wqt9fkhqv*;[nmw4X[D؝yŔJ96@ШeQzqCjfc3$g̽c|?\"#:)8e'>(M|NMd/iγj‹E1 QVlkH,#O]^& 1i;n[N=hKSY>:&/;rdh|+"]g@Jgd, &.D>v/D\ $`ضMUe$zJΕ`60G/_Z Z~Ak ZU߭\#0ykN2D0 H3i6o p +endstream +endobj +97 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 679 +>> +stream +xUMs0+|C&ȕdK;-3=N;MgYyeM h?꽵Ƽ-UAl*PGbeuKF #wF 3RZ7j;S_7h4fۢ=/hs98Y$y HCLvGy,bpA|s8A_x,nrۖo&TR.tS)$/mzۧ>Jj0R.cIf˙ +TĉHvuE\6nS*[þ@qdz¾ +PZj2e~ B!)<@*--6EM Ej?6xz/-` /* +Y04ZδJӍvgSԁOUk?}XO9JH4'0>e!_ _A12M''lje!bvLp;9OI?|'+cHbKw9$'b[wW[_s.3{HG]o0"e]Q p0\:p^$v4)qignv0%>gʦ)zo:\*p(ő'٫+ +endstream +endobj +101 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 1105 +>> +stream +xڭWKoFW쭤e論\:EjR((C҉gv/х7HLlA~[޼$&hiN"6&xH*Pbp|Y_7 +,>J )6=wƋY +ӎ˿HL"h0ag)7inmV +VFپS௬܂@h,BͶur]9 *2:q"gC#c[I.g@0T{*7\Ei% )kJ0k 'lᮏ>%Ԍ$ ! Sm¥e,=U/&$5[:AI:m{(JB23(brx/ :UTI`m/ qŐrR$41,cBjF9Md¡&Nn-H*5dLp! pP&g2sJsoO8-"voƱ@TKd:)ع9pIRYąi԰ :4ڷ*31qLpE` '! ah{>cUvRbqOZ R8MD2?bx # ӘOOrguǙۉ*=Lt?CzE9x؀v)ƽbBth[OƧ0 vyVJݵ;wYvI;~U},4ȮU1 Q+KpqjJƂ"B&0_"Jӯw?@ai.+ m&GwMD~أ bK%]Y5q>cR' ;oL-RuY$Ёlf𠜦sW`]==^ +S y O$ߢ{x`EU̫q?1הǁ7m_L47/4 +endstream +endobj +105 0 obj +<< +/F3 16 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 735 +>> +stream +xՔKs0)d&=ttuO!($fHw`= }iw%}%zw}-N//&q-n=0pȉ5|ZyQk1FuVW>Wh|ۥSg>5sHpouiլ!rU nZLnCwu,>z  1.]BD2m PkuyRC4v,˩-9 m퇆DFVZ[07ߏS-p{qذIXrxd@, {f/(0(͎ϐ%^FV"as@鶆įpA/%wjl؃S>-"8MۘV'2hK;1Qḅ.o~Gq5Z +endstream +endobj +109 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +/F7 35 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 659 +>> +stream +xVMs0+|CNXŒ,L[$7N3Mb ?丩k: 0E=4.Wٕb+oqiEUTKoq$BRfnSf C]IYY^|]#! #ځ2MP:-0)W4-a@F0;PTF.>tÂ68JSpa4vt}\4h4>R)?;ˮ2$3CIm|Hp'(V?K2 St-b0/byq*vC&{i^`7k5{Fzm *ee+)΋we4a#խͷ9{w ?咱4e$ RXÀ] +jPG菧'z6D{4d>z[tɭ]qcNw >+]PiWy298 + +G}dc6N qR,Ö2I~??**_}|ZpQ)27pa yUU]/#ad@#a].^xj +endstream +endobj +113 0 obj +<< +/F3 16 0 R +/F7 35 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 771 +>> +stream +xVO0_9#vRM=J{X6i $A?;IttcB/>~u|K|r>NΘyp&,'grTRtRRXOej%\UfʊԢ4fYL`hZQjQ:4Ba䋃 "?ċU/<sybpEYf7y~w5uT"QS#ev::zsAԞ)H{tr7%tf^(Ql +/.mISfTp{N%.hw\?s|LbIۢ:X؍mb%Ē>"2@1HL|m[.ubYѐ-}8~T|_*C&HRW\=>ݬCF7WD mֆ6oC{yCP32>>ѐS9\>qPQ]mbH"15]HII5=q_lK-o270 pn$ڄNVFm zl'Du3TzU;~bo{> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 992 +>> +stream +xVIoFWHF g%)uC@Fm4,}oDm q<~%i +2`u$,`V?R*|dankWxa}}ӮݖDj]Po>&4t-9(&A򖛴UDSsr\K;/ɅE3v1#M3z#LĄy(D!6qsڑS&\Ǻlx󯇶|(9CӸ@7G0bLŴJ_G<=өݺyo@" ;\n:6whHꆨ.id-1Ǻ.Aj[!{1ګj`nxC h7a!(B{GKq<4#M+y#AcJ1H EESMG#m4P%CU඿i +j/7kK}ѧʯOnǧh'͘BN,l^)[oÇO$n{ܯ_:>Zi㢐ry^K}9}U*Sg3Y0/@'y \iF"v3,j}e&9/+xXL<"3\CD`Hy]pH򨳗ք\u',ϸRne]](X8Dɣ  3KRX^"b 8E=8p1$UkwcKFeXBq1iQޯ=`>74OtfF b4բ-\6$A%,\1!d0)jSN[st13 2GPs_}d;>{d,3&,GmuvgY`-o2uiΣ'ӛ#~k +'ZH%1~W3 ]2>6s/h} c4X6LTtÿX +endstream +endobj +121 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 595 +>> +stream +xݖ[o0+x 3Dæ"alIHڒ J}H%Bhx9ܱ?Xy21_ +r'V@зp@/#ҿ&t\Z1`cmqv\ˁ-ojbB]B n}a|cc{[ot0LU:A &O؉O QeVriOO?[ (ImLH\Kg{Rqy&ɓ`Mv?l4 iڅҀyDv Q9D-gW7W +WFթWg'}gEg/r7%p#f\nbUe ճ8sT|?6 h4Hg݂g&A CU٦8+߶ϑTmMT|%ƾRrՃ!\Weվ{S=nۮ}C+Vx0 @a/d7a4d0TN2o9:l]Bz0'x{w' +endstream +endobj +125 0 obj +<< +/F8 39 0 R +/F12 60 0 R +/F3 16 0 R +/F13 64 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 578 +>> +stream +xT]o0}߯m]'DC0M oe$H2 K"ƄАM&ysm9qUX>,-1 +m:!!ll,k ̣\HSRF\f=˳(=yfD۟Lvg 07״]|Dž)qqSC',J^9b^M qBSbr!派uUpoplCU k:)ބ. Z;N +0n%vˢ|LK973:fEg 3(F6s- )st3= #\x.ɻR%OlVkO'2BZoOfEG;s >h$MpQ"Bsbɹ1 OC:gϑf4ؿu"r3qfwyIM`LQegSNQzq'c/rfI--YtUǒ*9-`Bڗz ..Z2F̯\B7OZO +endstream +endobj +129 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 421 +>> +stream +x}SMS0+r3I/qƃѣ&RaFU:o`)\^vf1D<` F`BLʛy{  +rKP-pj, ++!B W׾rD۬.MZdpH븄n5XIe\m> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 933 +>> +stream +xڽVKo7W+crKQhzi6VpWVQȏZIVJLKˏkֿ3g-3l۪R}vۛi~H-h<sPwRDn4Opf[ 2ˍ%4Q?*I^Ia8-TþoX06xU#^Z:nuIChchT$V3EC[0ݷS\Er1xO|C0]iwvWsC/b{w% oU8~kۦ:,훪]~uTz/_qȍ7 +3Z!RQ-y,X;jzYH0>ok\xWmwM=Xa!M%|s.YҴg숂Z]e~onHO{+o04bY]6.\8.H M}AE [eR:2= +bIjTEy1>+É +imf3Iʑ"M"K/#6yÑ~Z]06ҭPva%2 +endstream +endobj +137 0 obj +<< +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 233 +>> +stream +xڭQN@-ŝo- (u²DžsD$jwgfBJh\;L EG%w8HHER2A!Ph!賈i~'?Ї?OkDEXt9Tg7ܟڡ[f梁ζ0Yl>ZBfĻ QUbBHqz +endstream +endobj +141 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 1141 +>> +stream +xWK6W(W ,{id ] g%I)rP"9sg LP.=QjI2OofLް3Բ,};"Z,Xn)W΃ϠX9~5DR ^ Al +C1 ɿrC&nkrlGT[41&hm$@V44Z$d 8 *@ N<3:,]S;Th'!hYaZRVOklZDu.64qaL_"xc K[&6P$LhUEx*tm=4Y>l׼AVQeZM.+XUFd<Ø0nXt&zAAciƺɬXfj9eU!\^rӎ)a96+NMҵ~Eҍ;_(gpt 6n['] a:orfByr{tOortvkb; E KҷRm=BHsG!ijopC0DIesnڵQqO޾\#GD1zYLE[HroeA(y-krvqY$w0q,)rrVE>ZL}4/!,ߘOM! ?Jqr 6?=nRcm_q$X_QJ/OuwX]Un&JH+wRN*dTMo +<*"CMQH h66k"#qmkGNÑ Oj +@84Ƥ-([+(b4]GxYe> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 635 +>> +stream +xڍTߏ0 ~ۥ7k&iyDl@ &@yȶl#뎝tOI +EF39ӜJ0-Oߣ8B45DsΊP(y"kEFGk.%pMx~[;{2V~"P6m5,h0-h* Hhڡ33ivaQ=a 3-EmfOА$k娐*Tm8՚\Bm3i,vA>coœSMᲐ7Ca>E2Uf3NN7u|@ dˠ@.(Oث^L|8{= u+JjwqST̽VЪE˶u9 ~ȭ4(CN +:َu>2²,)5ujMhCuSYRj1HhC;|zF3ٷ|(8e/]yU׻~K+ʺ}c.+5ĥ+olao;R&T+Kx!ڋ,Qv(z(`J \t-׼Bvٝ`pQv~.^k5YUfY_/ T?o ,p$,zO7͟wa +endstream +endobj +149 0 obj +<< +/F13 64 0 R +/F3 16 0 R +/F8 39 0 R +/F12 60 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 932 +>> +stream +xڽWMo8QCoȥشآ{i\i7:;$%%A"f8'w$ސW׊bRgbYML7QD'/f ̛3iBcẜ 0R>r@ڒiEx4ϓB1\&g1Nxy$iU!uqisU*DמQ =+3)i d-WxWWs l.C| 3.2,F o ;"3r"2n~5ºB01bx]ž)|qH>ix r@Ô;=d6adL>]^ \j48+G ң@:1E%&A^1mTG+6V*p0Q8-i/:ks Md? ld+QM.S#>mvF5ްfyx|t}2jBtحn]OmweQe9r&D +.RQ8/tPiz`0 `MQ,,OU_u1 \v9#I(nݕ={ zտDF +q¤9!wjW=<ۉ1us ټLy%Tq}?<Cvi~ܮp7 YocC}*tUOpQYOEY?qֶtN0d:M_rJux$%kUq0BgCSbTN>13 C +VtX'pCOxΛOo^ ů!ADP̟@'0`+W|yZ1iNVjSGH_'B7Sm# +endstream +endobj +153 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xڽVMo0 WhG*Ҷdh:lͷy͂C&9~K͗%' "K")SR)6cU71+f/f@`B4$B|KEJ%m* +,?ϳvG:Y&^>iӟWvf(s2d@__f&OsS6;4%_L.e1].?|5M!M̤{ߝV}-U45o딷'a!㴖p愓p9`={/魣7߬y*U8iy;RFҥ|W(хH8$5Ʒm i$|pad:@ۓseHhˮvK*駾@G<01>D aiԌfPSrs+XVځ>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 484 +>> +stream +xڽVKS0+r,ILyf<舎7@Eg8387iB-AK7e=D h9:IX4wH1(=0a&Hf=SAMW6Daƈn|0> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 991 +>> +stream +xڽKo6ɇQ_hBVu iIx\.Ǵ(#<0 @*pq4 +d2FI0 93hf}=9sPp&#|`fdc&3 \L-Wjҵvĵ +R1C/3Ղ3-͋0*@]sX>ކ O0m7 A$ ț09h4D阏-E(B["zo[-c:&LD,oapݦDN PC&E rs 8~X)ojB4ф@43QjwsCL}bs𞩘JÐBnGr8kc(v 堃`;c bqWL0ڞ2) ´Ŵ۾,]uȩƿj`9f (nnUoCuܕ_cUu-|K7.=%B:+3: +"V*\o47󌦤`[VwnEm10׼}ĴpXbдܩYO<<=}!h۪O4V*zSoW_k~5=q\<:c^˧+Au6ҡݱEC:guG:930nWB͚6'.+\NarL/nߦaApsbtyF%ʬ 2&+s*͸A*WV6=c6AM"'![@8j]6ٿ##@n) ޶C+-}>2||{:C +endstream +endobj +165 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 495 +>> +stream +xڽVO0W]?V/F0zݜ @0x-VKiy_{oJ ݤ!FiF4CXq%Jo`kXm Q27"1Np\v+ +sO-^dW~nVa*פC±:uFhj1/fYO,tk'ikBlmtK=\'`"\N\bt6]y/yLiP`_C)q1%k;6M>oBdD0w*K1AY.x1n#rx̠By~v+?M r Pv(*l(m`<8ZK˄:L\7ZwN(? $iHXyjn^}$ +endstream +endobj +169 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 387 +>> +stream +xڽTN0>:z7qlWEpNMHEq@[%xz;GB5L&&Q#W$WPܦ{<$Dƈ&ob0U^?T,V]CnԳ2GYZzd )Ui0̯ATwvo^7 Gp\yZoo9}BcJ;QԵaF[9C;zHm=(SN/#+vc6 >Vk/t"]E1¦! }T޸W(ϱ?l_ӻv[]Ujd̵r57XBx}r( +endstream +endobj +173 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1304 +>> +stream +xWKo7WR@4g6C:El +ȉl6Pȏ\r_] Rpp#\+@qOf[* ;`Y^g$WyMP\`6Itf"$O"5b~c\݅Uv&GnI8c$Ϳ+&u[ei+h3-CA(Al>+8M?:%qy57-_DiS: +dPsJh;Pq 3 AInp;FsMtsC|ML#ѷ&M[.'HFXBlB薊ٗ |Js 8B:#Z"dC)8H + +7L=j@)1)k(@ 61x;*:wV +P/ȼ˷e3ėNk).Q&t)TK$Ʒ,!9PpDXO.uENr.p2!T|T48P`l} UVxť7>;OLNkC +ոX4Md<0t:v>up-+M|suQt(PUoҢΨǹ74yH7>.6@*fa[/N{^اZ'LVZM]ICݔe,9&AΈ&uiVݯot("nYm5qd\$!)j3Fb(~v{ۻ=|G!bBUԡM:D=w)$#c6(t;12fguQ$Wö6Pҏ81Χ@rj@pQ:T( 5,99C,Pxi)3RXûnmȳҡ81P:.gTڎ3(ĩ Ƽr0yDod8Y|v` _8b֠G#s?kBwF0ȀbaUtb =[L?=r C=8flO[Jh6 ǩRTn}9 .YaIe1.8`k?x  /﨟ėG>WpHTVp#<,wO99zٹR)Tv)Ke%1 XX) + hsi8g9 +(pAqL8oψME%\oҥ +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F8 39 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F14 79 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 1247 +>> +stream +xXKo7WR@cK>SQ/R@ND%@~|]C9T/gy[3,<~f?/_* +b?AUƂOo'(ГĜr0GcWat&J jQ$>FW3 NM\[ b ~ mLUZAmن @Th9Ao#![Q`u֋h0: +cD Vq05aJ6MiNw>%4!L <3,xF:)hI~x+S>-1XG[[0H~9wSGn@,[ ɞz>VBD.p6˾ +ПZg~(lk@G6'AYܫgŢƧ_(^}(9v/I/ Ev(Y'lGPcUN"isHJZt42AQct1M3kݷ76btJg6>4tө߭i]Ty<&AUVSVK8av{1ۧݲQ 0uZ}Z-&?6~v,λtgq`QY2pk9$wfUv"NIbd]NϷIW|e4AKAUTv}]Ln#W#xӣ _UȓJQG`N]u*tbQ_tQA|<-)'y*}^NF'Z> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 904 +>> +stream +xڵVKoFW%eǜ@ )0DX+ +gHHc]fvHQBY".WZ/a cf&%kjik+$w +lyՂ!'Tm%QZV[.bD@ +SLĬ(QFȬrpU$KnB λ#Ll)bXpM.\q +G34@Ur8ˀQ&t{[ eF5qAIH$'e80_}$+ڢ\O‡u;MB,E6 ^~: Z*1=o-,-9/tjX`d ը@!SbzēLdJPgF"ta7 +!Pt(lQІܗr: +UcgFcNwJIu~RXê2u5Yݸ^%MNɳ)i1|zNV瘃0>|lv3id *H. IA} g/:m?7_i=n9,}8oYzXݡ.gu=8~~Lר2p(s;Д\g~N 1<<-Olcq§< !"=*O'BOp7.w~t&=T_M "~7[!;` +endstream +endobj +185 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F10 45 0 R +/F9 42 0 R +/F14 79 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 778 +>> +stream +xڵUn0+x) !Cwuظ) jN'@ݿP˱kyyC8'w|"Ť"_f52a&Tɵ嗋KC<&@@gB]@G +`.$Q;i 9C8Uixќy[WhUE^¾G 9s[K2>4MI3ibS2g;MO,-njbХFpbaMn|eDz7uh@Z p@Xۨ.3۴oԦovψ64Tt"0Kqפ,! u .`C$jHyMͭ-WAk.+뒠 kؠ3+)$U9be\%0nn ܴ*ʜXh#jv xu=$Qzm5:Mgn+2=M*\ 1Heʐ_F_#X]LE%Y;U/m\T`fslX\m5"ֈԼS1y29pߧ|==?>i??}|90ߞ3ƆI\4e!:}DYS(p,YovD +n:̰p=(ouG0(A}Hq06[ИȰYo|y,{uTV'Tr!PJӀZg1Y8٘l1Pkj6F/mp\Ԙ +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F10 45 0 R +/F9 42 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 427 +>> +stream +xڭTAO0+zYRԲP:H8h܌> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 959 +>> +stream +xVn7}W +iR)F}i6v]5 9wxY]SΜ9]&'fl' a:o p+x 6Rm~mY)J0d&&B~O]X@(lsL>ع8Qz&*6)0:3SސlDړWNsp+^ 3'K-qp t8Jl. a<0Oi{\ F +7Cu[623#}ʓJ3 *OwI8:(e*aa(>0;!SzCJNB>}vK# J4Wہc{ęjGP&Ƈ@lЎ +0_8"'.|[U:5LEEu' 欖\&+8#SF +])d ,īteӕ?+8GuѤW& p5@lSxí84L{,`h1={CI%w]↞~#%IF[[SyWǫZ5Qiq6ulqh6NS3btJ~L:-I>,Z%%+0qV2t*5?  [9p6ܴw qd/xH +PÂ6Zb#V/I]>6LJUq{􉾧ퟃwOZF7SDln]Ã5}ǽjŃw31\jHgi{L/nDͳԨMU|E)~E'|B^˳C2h%ew5C<1xv.Fcamn7͗wuo^A㜹|?m=y_16.p,KMpV6}/T|1 +endstream +endobj +197 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F10 45 0 R +/F9 42 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 524 +>> +stream +xo0+|d֙ġj;rDE +Ve`7csx>/c ֠nu6!!7 OC$4X2X#sʾ !~|"?wX nՐ9DfoYa(eX°50XٸhyAܱ AƇ] +\<-;& ^L]D*d=ݮ[ ײ +[c11;8n۬}^֟%45lkJT&i+jHծB= !*Y8^ 8/(\ȧv }i;:N7z5: ($`ju?!G㢟^^Jz +biUcjV?JU:^7n%}̧^WtE{c% XVjE]UiLźr$]5n+M[?-;RC* +¸ a|N˘g +endstream +endobj +201 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 1100 +>> +stream +xVKo6WR@ڍhr6KQH(V5NÇ$JqCK%_~+~]bPhYJ_ߔT5c 7%1ʪ/^ Jt.&F GNtDk +I,x11$\*ԋ3D(f2X]6U!uOW'5d"SbTRnp RUcD"̉T)¶Pꐦ2IdRxy3wR#3StGKNMÂ!萳9C;քU396"o,4nXi\7ΕLViGM0p47ք .e BM +_q HOC4ׂS=x'G?哬5.o@<Y# +o f ] XƑ#C< 1]~2爥X"O,x:sb+x^HxF?i ɀy>)j́܄Ģ:̏:FNx2UqD1Xcֿxx(\^u7 {㐍5gȒCUK|6G +u:-e~yuwprh6Mt۶ntؼ*cnfRKJF2LRJ 2?\AdE} + 20'+5!)؆-KxT`fT*0wK7 Q)#?bsAyzoEJXM&+1y&7};%0@-w~:\?>7u3_{wxxAɃ~e6liѶW ;/Jn&5U.|ZL)Ŧ]7M{2޻oo*yQLfJ[;kcg]K tP$'8 \G +V`|.!x9܌aRʼn#I|#6+Hy.YoA8@1h4~2.)') ~ɒ)2/}gA +endstream +endobj +205 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 584 +>> +stream +xV;o0+RKh@KQhGG[pRTHJփ![{}ǣ{W9[` +d$9~#$1Ⱦ ܄?Hh$61I:Ƒ4:- +Xsۡ'Ocy@ujBBHq%債#nSp2_K&t:^ژ?)̆Ovk}+:5> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 427 +>> +stream +xڵTMS0+rЄ|xб:z`ڙR:Tg_oHRÒ6yo50\Ǔ[L $+8@كɇ!wq I$22SdB8Z @'i ffIUt~.b^A^بOrQW4rp'^j˖E7'#$mA "h0ug#m:Raei[xCQ{&ԝ= Ge֨CC9HJhL1q/O + >i/7c=&NiЩK*"=stV u8l]Z} I 6,1b-8_.>\ܝ6]JuwRjz̳Vy͗ժߺy1z4_Ln,f<6)BUx}; +endstream +endobj +213 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 1075 +>> +stream +xXMo7 W2+Eaaջnu[S$~I6-"E>fRH>4~< P3 Ɲ`WSf +^68}=eAuH*L4aMR3ob0q-Bޱ-e2Ђx6TA#(\#\LOI9bUS©F9E焝f1R@`0mڐ_ MT 13 )L MyrД#F_*+7Qx`D oLcۢlV͆s1v '9 +ǷVx(&heq肢  #!rrFX[GJ&=p]vC/:AA ^ܛF }V =iF<Ȼx&TyW*ɻ#2<>hT|w'8cy7`vUUf}=Q ͙z1fwz eGRJF_fiS&OcGKvM]nWy*7yޮ>\/ӳFzZP,fdsB>=w8t&]+})?k w͈c^LvlFE|k0hCӌ5蒱>PM>Iw[-a24[c.&O׫1-BqsUdZʷe CwH.*6,!BNO/rbv SdwQ' qmx #ԉpʁ e۪\h(TNg08hXAU +Exr#sJ-Z9"UNj/ v͖lO_uBX"`1"UuR׮sqbeB&y0JxFtuFzDjEɝ>] +ԇxUX\ܰ>/9B] +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F10 45 0 R +/F9 42 0 R +/F14 79 0 R +/F8 39 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 844 +>> +stream +xVK6WR@Z{tSȩq/@IĀuEI,HIi7DU%vU\޾5(-_EpFHGX ,%"c7t~++c +&)䀘j cK_ +\zVl9x8'O@MsL+Q^Aju1a@̃уѝy1ql ~2Y@Q.o'*pS~%&) n<874'x rźmԘg5ڏ;a9G+FM) 9Д^577 vߜڃV8imlÝ1N.nc_O NgM625i<=b1?5Hm¸z.Woqy49M9R4RstݙjtD"A4-ќ yQRحJAjaW. +˧)ˈ. 畅ה+++rKx~%s\ޜ&`=q.^vmwͣCx]~ڬR@h6V^ $RMKI'7Dqߦf?}i=>6B=Oۺ8Ess\|uc*4ZKi3Ifv t&x.k2q24 H4 y͓/TVB^ҹ0P" nqu8<~kz|sݏEթߟB]nևUߕc> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +226 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 225 0 R +/BaseFont/YBJVEW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +227 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +aMjRT)-ʁ8Pտ/^fٝanM\Ɛo`*򐿜іvmaGz6ʷ<"3^(K 7[?Q&$y ;#B)@"s06f +Si?9ΝtޕcQx6F jǮL'\yҞ +/r7sʼS]68PqUB/*n}Э[*.D_X./d +endstream +endobj +228 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 226 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 228 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/FPGSSG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3846 +/Length3 533 +/Length 4392 +>> +stream +xeXkaHIQbH!JR:fbfSDD:ݍ % ҂ *%Z׷c~?}s=s/"iSE"0@%m}aPX@bH-& *z8EҢ"bP 捂;8b\Jܿ] + "ڶGmhao P{ CP0 , !f@#d?[0 u ".@( = v?oc;m +wCP +w /6mQD8BIp* Ճc @{[4Ovn"IjCovY g}; h.$ $$|k]|a* +G8 0- +/ߡ?FzEąRb@!0 eHJOB?NA4p,k>FciV=@[NIX SD-ؔ3.fm'V+iyZͿKWƭOP5a v6[Z>`?7^LC+xG# Vy~śe}RUQw  6:T7 +|͸+Sz;axnh_FqN7R2Ċ YdvyCnjم2(p*⤍WՂA "t4p?) =T4,J8#-+i'?"8xҎC0:)&` f̃78NX~YYQ}rg.G +%nYzVʉ<ev׎L!SMZNۯGRxJ^E*O5EJΙ|x:GDqEcӊ?u%E8;),3 4C.: @_}LE*egBxW2zIv*s>Rv։JH %\)I 9䵼ts(,V)w^,~KC<Ed~K׹u9vmwˢ ۻrHf*/>W&xrꍝ +0}̸P)ְ~]G%gfLކ}@ݓ= +ڼ?Y0^ZT 4 ȉLӪl] `tFXH~jfqQUgW$UR% Jcك#}z~ohd\7BJSLB;hC Ģc=w+sqy.Hҳ{5dq+KѹDܭ@q(ޝdMx-"tE)5-Qn:絶Z??WO y$I H^z:0qo:'(5;|<6l|כ([?+鞘.ő0J ++&:̥K>hf( !sK+8 y|h\) gnkuWwWv\QtK"@rRL|N)J"I*gT]!7`?cȬCiVq;jX-R1[_'S3fC6<,5SI؉)GL`mON}iGǖPM#m{I*8\tfI(@^=ߺxdioڜ9paxf`Z4F̜Q=٘s˒ֳWrn۽ kfz֊p6MFRu_el >a#)^))ZC;QnM:m$4`76i4]20Q5.9dAx~U:DjBTMlZD9vVBS1*ؘ!W*.3| |QQh+pW14o1T KxpRSw\xJ*5:s6)gYs +t> u/m! +.}H. Kl~] 竝|NR7A VOegJil\(flpWXbma<8Wy?./]Y@fRwԘz4hҪ0=ir 7* =q T<0+mM > &cyN\B- hI_3P]jR cB +=MSȧ=z~nu9f1hܗy׼,"K@L$ 4'w}1u%ElBgӘkVrl=M[ :ɭHMZ$\ǎvʽH`,8Am.^JjŦ¾j^ǁfٰ}"l*iD\8ו;mxNMi fx!Nnс6;\ۼuˬ#tMiU]/k0w!TvurN\iRm[FUt}*ÆXR6RrNN,_z>])BTvq.^>ˎ申3T!ikjw4X."A܋5Ө޷n߁@hl+ 8u! Yk. ]tܹzkњC!"-)||W{5lvt +c&tEqr,(~@r(ȜޣF<W?V Chd᫵@ +椆81/p1r\s/g>s\3k#J2wdt琋s +ΔF *DV!ҟOlm=C7ҥ\Ke'|a_v 0^vT Кf[_̲>T|<ӢʻI?l07su,=2!Uu7I8T+l71g ,\ٿ˺|&$QW`s4 9?}5:/3@S /Eh"EnW|o1b#B nlG@[ +v%G<%pLLkE^LrS3(2Lcכj,AO \>Mm<:D)A쌫 +Dڄs~+2%v&~9er>zSh*_dzi+bso/%_ | հ Xh !h֛m+-"ދfA&T[M}(5Rv8jjyL;";Y*~+Wm,<Êkѧd[9 @8)oQR0&ueR~iFk_痾 ~!%z&t!#- Ԯdi@T=L0!e+Tșޗ"BTf3ޗlyGy5.ץGKZp!`h{pEciՔUM\ܽ&o/)JB$r[,~&g#ņ8PQ7~g̺% o4G^ܶ7OŅ'zB:tǴWˈtp}&Oj;>ɂHC|{Ytrq8a]ff.]Mi:+U+Jbڢ/2]Hθ J԰:_Fӵmyw} +5 O+LZ='r27EX)Q?Df ]mQ? +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/ZTNFWY+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAHVOWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, ݼ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/KHZWRY+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 12575 +/Length3 533 +/Length 13134 +>> +stream +xepAldYh1333$-ffݽ3۳6VUTd{W73**ɈiMbv@ZF:F.BaY%FBF:!822aG!V"dd"mXYX-́TP +- m e &Ɔքv!5?q"T8]&tpp&@B#-?$mM6qϔ /!?IrZLK ws1gkk9CV-mhca?v6@# ߥL,m=+ 4052+d$f +0QZ;ؚ;^ZBK]I_-Plg•Po} +DmL,l&&PBBvLo'!'TppH200s23js%}Z +0UV<\dԯ / Qe]>hMxdIΊڤ|W5#A63s*9~/ R{/g@6ݪǟãE߅E dS| m'PXo]+1VL"m3'+4PU#|U Jۨwlt[+<^fC`)nKJk}7&Ƃt3zEYȌGXfpRoڧ#ꀖΣA3'Q}3Cʉ.pGhC=u2S4]G!ֵKL0{ +H'!'Z&["RMa5E^$#3OFnTݞ8 =*+6pmX:wI׿9sK5Sk3˘R#C;U +tb,~Znm~j%X ޴C}`; TZ:>fpC-1DlZ!ee-rܬ$oU>qx +7])f_U)q@ G]Rg^ p_Bp=N)y//J>8$勖BHc4v)W1gOјP@KbE9z#r^W%W~ o7?}L@y*`:zQt& RлSWEq]Z- v}h^n dldn˕1RSIWơ2*_ts:I!ӣ:/ˎ3(Bj]KU={A>>6z.v:L:΅ tN'gvV^D'9a/҅sdqxE +yR'?]AdGNId!h[/lh3!tVM?F";]5Y G-P8Գ$R.-3;館Mu)]J]$vYDWq`&RH:Řxwt "@ iCJf }>v"Nwj=& G=Hr\!SNnb.A(Zerv[w8LbHmش3h'eVMu6t "~@rf~0:Cuʼn@rN:~Ţ:2gE#=o3CYrVnt&>-еҿ`G։{zb2_I'WG_U-ɔ$(F[r_͆V(S#Rl͖B|֞.V}W!40 ;r7tXC +rm7Nʽ&bR@kݾ^nV~k~_X6RSXz"{._Ţ`=[!N([dN\=VhQı#HS.&l tmr`S)&cb!şFt0/%׸9 EOVHtMbDa%%W5 BJ,&Y"KooI O3ʜ?rp4< +DMzL*^*fXBP*t_.D}`]7>eU(~g%-KaMR8uҌCEEЪmJltC;g%kij|Ԑ&_ĺ3^,3+2aD2a{B೨<*00ΘWqte/lpe%j.`I0E"{+:&U!4zk*j{EsdvIJ VYWt]-U W1ɰ}2 Gz72uxMx6x1q`>xĩ]z {'=8Pke'6 nX3AQbvI,\Y@ao60MHGG=rFݷߌFɣꤓ')cF!-y)^JFݸ . +MU`֨3ڤudBh}sOI3;K ;7P_0;ҹ`Ie +GlvZ2(.IvI\W !V!lii2%hcB}͚6j4\xVahXs8D-bJŨݥTCZ 󇷠6r9ݪ^^-eR[>FI mw 9kAz1{s~tRoNtvIW%GqKDg& +~vSp0y`x$*TKatr 1Ʌ<}Fg|  jQWdwVb[lGmݶ\.2s|-Jd(HX3߱K$wJDv ;:.Mŗ+zއv=桪,!H?.ݐ1M64͔ז0ҡ`yEw[O!.ת]'H9ܯ.`#ވ1awlz@}nVaaKҸ]kjF0 @{ˡt[Csuh;A& &pZ2`[| - 臕xzMQ>zZ/z*ues㓌oFBYRcCjCaw) }k>qaGU r;Bk,ݧ_( w ED7bXBn ?Iec;όi{T,u&0D[z'n-mpt`H X-{q<3{OL{2zXm*W/%ezδEd:OOY,ggHBzJF<7bnp]w}5;{<bYN.wљ]Wvol;zZirp+qC͑4BrVI'Ϊ4*\ݿY~qswsmAȬ݌2;-ڝ8#dMC6>zc V +sE lB{1d`$6ٚDoX,CZŦez2rh*2aбV/CزgqDp +SVcA<رsLA,8{_[HO~0lB 5ÂtOcQ.O,j,b͒>۷" +3Pm_Ld8s7YWu|ʲn)4O8>["/}ǐ4o^馐ʈ=QQKqB27T?kQ2p~V I'.1+e9~GؼPtV_"duJ0e Ԛyd!FX>_عk=W,9v京y9 ŽFs \Afl!=Ps5ݵGܙ|伨& 3ҁ`$(2m[!^DrF9EHZǣ\J@FSfދL|9dҾ]?{@Re0-1-ș4\])>]*[/D]d> uIJf/OZɥUgd@8u@mPcÉү+٦l\I+z8 -ԅ#9gMԻ8gu3SA'70[vB +u_igoFZQ q03zO='!-N0)2\A`L|B8N>~U(JD=^7MlAa{.M\La\m/aQ7YBwNhAAi3Fن E|l. 槑Q‚W_r|8 +5 < +Q{ 8WAyn,|C4Ee^cCqȯOjT|(ﰢtrm,%䃛2M`o)No^JA^!Вr ۛk6hf*}U"tv0Hܤ1gZ\봁Rj{おE/.t0ZݤZ?er3d{{tc (v#˥[%X.G P +Lc`j`XR;ba(fZ0_ ߤP-P>r̬W{Eݎchj]2M7]_1n4v?[ eBX%+':N:#lɋ j`yrRbR.C OdZҕ_`4bǀRTA}abaAKXiIL<6*KHy⨵ \P\" [!eb V4#)B1rfD4FlR1/쥥 n1fJ/k6Wjkm/sE{BxOb+E9#7q*^㨇=u|ˢP{wgl5TY]ㇴ{8ٞFhZ79[2(E!R=DY +KpL,< gO< ͟ +iyL>pB({[%n.gȬfȥvoB& чgbI qX|YhX +ܴ &SNV1؎/R]:ZţU;}gWOۉe"\}MTSF/c`ADmpaqdEbWH*Q[ \z]cnQ/5˱ۑ>$WArVB)1p~A.d1p|gB]~@fj~hXWƺZ*TUr",$Ts +Buh;UpӨݿwQ85'X,:H!3|'ٔPҢH>Y5d?[TtMg +L4FGh-:-<+]v5?{򬄴@^|͖BIc}"R`wq`:: )͗35.Gu"-dyv8m( +WC0Ͷ Hb v4R v3 Ik]>Mܣ5j7+ '< ̑r^:˸AAf%`ˠ3P>Mrf̈́b,S%)mM:ּ$S4᭱HQ=A!EݶMEʑk{9J"➛sJBȠC-[߻hSO` !6j~ PDgN'ުdYu?&ƴ2) +X@.HYUaӦUx3155ϬAPTu>ؒQ / ,{4癋j3 %R+gȄ=Lym%E.XAVd,`@%R(ݮS'#֋2~(|QfS~tšy8w#(1_l:ylv1!`.O!{\*Ѭg||B;!C" obo6:=?Q]$D6z}s NjvS&YIY {!YeQ\ை$% ܳ{b;>je*Ε@oȵBU^+2AĺI`ξR9eB`MF;]׹Pi 9WF1A^\n5F +15%[gu5eiHZ+׶EgDYQٽWTIb;nAp_kl̆Urb6O`ʹ- u9si͸4_(c$upLtI?k#*?-7:gpHj8HLX!-ԣt#2)E H((dƔ$U˜t`KX9kZk9T5Gb+RsvCla~> #毮"{?lQN| Q|DKc +yAN~TP/T=Ýŗ I z~?{~1e"ZWޘk9*J>{T = +_r'xmjfC$aN\N.x 9'ʝVKZ.^=%NX% i[FӖyx>2cLdip$Y<%Av  m UX2TfYL e^*ӎ}kyV! NF_a#XoyHvB=\=_z5-I0ͮda+H\f@uR.٘y~6 +\ xznUHo jsL.c$Сfl hIؠ8Z9\ljOKrKCo8?yp4\W*ӜPk2MF7)ݔ$Yl<[EBjOj\p #\{8^PMVb eD!ED9n7lsS˾,_{ЈmѴ{@nJ6\hMbZazw￿b㩨3H6p|8StCsWPRw% DA|QÝԇS*@mOV``XQFsy13 C.5?&:[oF-KzawDqrk1&%ziH)n]~\؅'!̭2/!&r%ESȈHU” (ǘc?cԐc[p`Q6 F{njY8sIexy(oDNDJWVSPeB1;}]٘N 7̴JaHw Hg+#~J}T+B֧L!Pt1a57js\.˕ݥ{RuUrg&[m-3y#1 +\$Y;`+{F#& H`ACPS,ЭrF=yMH7}i~v<[4y0Ufgİe~uu*g^ޗħ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/DKLHRG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1RfU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \QxQ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/IORQIL+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 978 +/Length2 2249 +/Length3 534 +/Length 2924 +>> +stream +xSy8{%l^Xfdɖd_hbMYJ"%DHrd-dHPH:y~u?WFVG(dB X9!BȘPA4@!.Q0UUU׆@dOEL7TZ h2`{$,R FD"`Bl@HqX:= dʆ+$O8wX &B&8QAQXǁ,3cD" +M?x4@ |t +XRp jY$M$`ȞDCgEctf;lpinhOdR~ >G[j%ibc|w{gzӣ+IH|hA8'>.[p V~Vu;@([zq75~I/%h*BBSO@  +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/ZHEONB+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3179 +/Length3 533 +/Length 3738 +>> +stream +xy 8A!P(xr4'Ot("ETH2P6i + W-MӪTW +%݇/c]AUBՑC 3Cl!1a*e; /u}Pi5q5;k zMasN)n;pȸg/#D}>i{Tʬ{cVW>qL'diSK"sr3+(T/2& 3Hx1i8kA'c0% & ^%pG(RG9ݖCC-w+y-ˎmc.g蟅s84/v}蒹_]P|W#vhi^ {s8|šluJ9xPė лs~"ÕDS+Ҫ*R>oebɵN7fqhm"itV:@@f$ Z"H6I. +KPn|;#tc{r!U QǼ:aq_olYWO{Q~Y^Ԉm; `F6*nu7h~ulYFmFqD^Y!^tq[ +I&:Wa:xGd[X˂ly$z6\}U.5Q jќ>,#ϏvYrxYW+SD"Džͺm|/VPbW#[H`Lc=T oTPOK͇ܜ5 z)tFC&=V)#)Uyu- ]]lvmF>#1Q1Yُl*Q{}*;Djs&;fgʅK 6UgQC_*'Ur,cƀ6ӄ@&:noͧpc+uƙ8tI1Y#g۩ojWvRsNi  TfϺAYÔR{Bi 7Sz: ~$1G{K`B}5Dzyx!s?+Y-/VFceWe7w׆!l%qÕ(:N+-aHGyZa9s3|TY QoBvy&6tþl`N} <(=-/67`Zl 2RgF"L++m|p>I{ haghە4M +Dl2F(en|qB +`wLBXMLZj3!:-1wA"Y(ڙH*9Hg?94@Jv Y}k!+ 79Hlv>_Whi[`7ٴNڣ+[ ٺzw^rGCݍ .)ZoF22ͬwY6W:6}e`ʦ2?֠طa0 OTRAFZto (~*g;#m*20V/\"Jcz B^wǁIa'BsCzsMqa}3}a1!o{TrzJ4Gvt)b;;(Z*B( aQ5~|=R!L+kdJed'3LI,aLx#E2XNiW׸^Bqk{!#NTX]mi`O~^cf㙘7fg*Wh;2٠#G<$y|^=4vi.6ɓk+˝Fţ<_?>|v%8E4\GB4}viFsl4>TvU-Ņɣ~Y?Hp6mI;p `XqFpcDI2.nNȽpyWP8"!."@iEiJAZ\5$L1㎖3ռچA<wLJ|wx'酹=t +FY0LD7_! @m{֐%A6˱Rq۶ U?&._b䐖DhQKiz m3*[^qKkd 7+#;aP-#ȁɚ by+``Qȵ':%W? $, _/ݫ`yD L6*w#PQi@x<͛Ϧ#)8I5gmE]**ݰ.umpߒw +-$k hqws6bE"=+}le$K c)Yk+xV$^l>Bݏ%X^%6Y[D|qo{Ǜڙ{HGJJ}9vÛ4QP|kg#%D$'b&^3㨍sXkqX +R8I0I=HLmR,H|?{ok~I.Ԯ ]tsh~lS. A#XXsl@5Q^|-_uwe`/ lΏ?kl[7v82s&ڠ梒U 2-'@x22J{1%:{ZLu&'ǀCJ-kK ~7 l2UB.߫[}THG$w6̫.M|L ? Msw8fmkOP=JxXV`uqPZ 6-/UjI=O3LOyG2K'bpۙT obL_j&ͳڱ|U#&TT&u==iGd;1)RadK{$}mE5M$Mq/p%`Q$t /zh} +endstream +endobj +38 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/OZINXB+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 37 0 R +/Flags 68 +>> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1338 +/Length3 533 +/Length 1876 +>> +stream +xyXgǁbр]\AdrNI! ɐLHfp2RaCUDA9r +r TTl>K}}vڟ{zRh"!وl $lD"hk0aqq [Y ܒ@hh9\У~(Y A !,x,F@/Haۈ@ 6#PnH( +X٢R \s7 d_ P1IYcC6E3@ +`7*Q6!k~*b"Z 0p`H63" +؞0 _}C{-t|@=n oGz0!CM C$#,5Jߏ_kVsFX(F87"lc3F54 ,WL,-cx 7'D"1Yd0 BAu(,EA,BͰlQU~wZ{Ke2:zGĹ'.hwfl7UzXu1Ԅ}r2"x2> sSQ6&^21+OչS'^G,N5J|R}x44Y񡖪ugWF%Oko2NmN r-EQPJRij,S![ÈLɱƯuFm2VɄLJ\U̜Lv䕸S6 V- 3#S8 _YScLBݙq[=3i#S36>Oч/ie<߻=ymq/O?1kGG%YtU|#|G)9x'\Gboە7J*STLu$_SwO6:U.]6gq;`AVRSևmU/=OLZ?l4ҕmH>K-ճ#2oߘ+WInqqZOcj0qt/j\lc~O̖zӳpqh0.[o +Qtۊ[^-/o9$/IՠH0=?V$>aLi'30pAw\VQ)Xulhm/ԩ/`^ +ǀUBOش8nLy=d0<䥟'DyAJwMbm"U^4%y:$rJmTӛ2hh ʅ}: =B!g9/`ZM'/5Jx} 1de !ZƖGt/NpbH qR ,u"HT4cMې}Ca +.No+ nOXTؚ̖5M }+b> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2190 +/Length3 533 +/Length 2729 +>> +stream +xk8T+A5&#"4!L s2aPrH!RdHIrH9$"Db$8Ԗ[{{}ok}Y{QS;hiG! Aa3A х1 D@>.0`05Fg1H>ǘ6]`/b*#0A" 8Ј$d2p/A(bA B B>$* ɊM0?` 1m˜ہeJF%!mi˫A,1ֿ="L%P//*B"(@&p4bP:C?pH +Z1 dq/Շ ?[ RIL1@~!*;~ mMm]i8П@2Y?SԨaB7]]]Բqu䷵Q4D*H`6djJ 9`к5!+s1II d0 *%Xڛ< ++WI+=6j +fkΕm9.dŸ7OEt}c=>Rmə0abzk>wk۠[?b]Uȇ +ORL 7`&^3XE|)rլi):;\KlsA3Q33u":6%bG⡙=ڇ;;AEHnĻWFgN6'~H`O:LܚC* 'e7جY^_,6iS,DKTyp@x1gnTa^G:6rҫ33a +Hk^ݹb}K1|ekEĖtAlw%B]>\PѨNjOG>AYk5dq,rU2˯:=q&":_wܪ>ԯg{Q["?2Ͽu1S%!@zV|\#rOE)%Zf7'L{S#m'?VLNE$$_HLۆZwOm +?ި@ڈ.A#j /Ai2]4|`?>ءҸMŶ\D$4uɱx++-7T 53BѶ^^zVn(掾pC J6:x烊fo *|Le~nٌwJӲ#0dxL<3CU \ƹQ7r_I+U.ud1:%@d^^CkPnlJpAK +cleTPcjט[I2ߜL2pFR9 +כ' ʮjo'JK\W0 L*Q >af3n^pH=LzEUiZ18,5cUCAP38\'}=F$E K`m.sP{0?T=d,#Оe^d),oaJ% Ո=}_lH/׳k\:0~zVQJ#*[6ϾٺHisr +p 9911E&&fP ~.uIf,vT]"z`m_}?h޳~n6P兞ɹOl+v'9EQ$7E ;5yL +zٔz_U7;!ڙ٭PJCdto .W.*9ɋ8޼3mRj(o[<@)_YiZ1oW71o|;{#m_F]_u?Ebϴ)?{(q?v=n;䢱X̐BPύNʋjF+⡭U3&I8#iAcsN.`W+92?`6Vf׊̳6E.WhaO|ʩ"lPnpl>R0d|&˜M0ܾ7GbR/u""04 + +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/FYUDNE+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1439 +/Length3 533 +/Length 1976 +>> +stream +xiTiEeKrhA,Vei *CT4l$0@ZV@]EAAZ0иEhP .lAMDgN3U}h{ْPEFx,ػ-! Ȅ~n +8K`t{4K™'%`K0 D$!$ +x$br`K^a!22LbP`?Q + +X~ɬ/-6DgHUR@IF* C+*`km#Jui?7mS2.(#kg6 hkD&HIHfXgf83I2UBkI$[0vvptaōܯk-8,%U;CH(FO&A:oPN 021x%4#Y0YYZ$!ճ /5L8 gMۮ.UPpƫӏPPc/`l _-NެCDO.MÃzsc?j D)/[qeEX=1 +PwEeǟO\$!Yq5ߌ19n].I|@^V5Y5 ΉVڝr]GJRMGe7~rq R|=k^`zOp+ ;i_z73^Hm7B_] |ҹ@,]8ZRGkEE4u +=\Cl`WZz`e;yR֖,;th+6Е"ϥv=J9iQTΦlaQS~s=C㇞sޫ!ǒ6- гZOUVoLX\8yeq.z[{尃B{KTZ{ 73P@>r &7~\ne3ZN,6{Pkõ?ܯw-^ԝ8$ x +-w{<' +m?%?'JL6溍6nG(2[# 'Nv4X|)pP& ml2:+N-ߩP>fAqT,7[&gV]Ҝcm)/n +M}KUb??޴0lvCF:ʩD_]Yn8i%$o [x-QeAG/. n ) Шfëf#Cjlނ5ԞS/;XStFnP+`V-l'3TO;> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2893 +/Length3 533 +/Length 3447 +>> +stream +xyƾAY`bسd !d(d,elB2Q -$<^?;~y:`nHzT +C +ckks( ]C CDDDAL hZ(:Sit/P6VåtGq _"y7x +CObD$A ( C42xS?eB V($Uv9 T(@ z4lwi`pt GaGG&堒i "tʯV,O8k"Hk"!?uRB$ؑx_@)_IvC숵3QvHƱPޝ!q{n<@ )'5$\] +!-$ߍ)ӁDsFTt:?ڛ;$"1ECcu!H70PY{о" %/?^EҪ m(NQ )835:͒ ("W1.q]$ã$V|[ךPX7_*I(k۬eݙ0\0B}"R)h GSuJ{- C*pg +$C/>CpܡXk@ C_,aХ:M/CK@kmLwSh8M{O_NJ5ŵ>pM-'JJaš]3(p` 9"`ƹgE|WxOU0#j"]/d@S+Z9/'#ϡKn B3Jx6aٹ!W܀Un/oc,Hr,yqYhwq5:09'4t?ϭ{T;'M%DCOvY|<}_[{xmpK~'gWEV,XݓؗK)Nt{缬]3+bpy;6?N\";)BAM.{!K" D>Z]t7eKֶ͋5}<_}10Z=w.z lx\A%&(#7 b>an3<BNYv.1ZV=9{TL;N{+;=zľJ).w80;,v3inlܶȚsֆװOeqsebV j Ux-8dɄ&[ ǾLu݌q:'G>椬ќ7+2_3nnX|ڈ[8TbrIՓ7#=i+Fr1AK)3rۏ4gBf}$NZC|*w7Ͼ6X ?h!AX:"b?w +9+ɒk hs +LE̳9T-Ǭ=~UJFNE4$'K>~">cj01c03< 5o{:> IcI)p&g0I!qsJO1{W-ԟTã)EZ(B7Tz2UkI .Ir1yuCNtN7xZ-(7?,GW ZOjtO2Ae.[>?!Ֆ2Ј)X8hy[ift+8}ɮt 5ز1LHa.l}:T$62EyG&iz>C WXH~2Q"Qwr`$I_7ۺK_gQ:멗gX ڽ?լpoJ*ŤcoyuRkA+=WadvqK#gy ]߮kGu}y |p,<-6If :sL}ar^ Բ$k:F3 {E~H 3LdM Jry:+LhnOMBТ.;9gnZ.LV۞}&48|qde%6I vV_ÕHW3<]-CO|\ֳi$ұ# 8|s ]5_'&su=uM:_vhZF +3va[ +|^ն}}AMeB˼UjF'$J&HE vNΞ+1{S^,^I7bTOt?aY|H ACUE2;FŽy5Nsd0S9a*}QL9ͫ۷{Yn'voo662(@:uc(nG/^˟4|^9w9pz4v ċ~wӇ7Q>q7CDL{R^pR TR훰8kNW=:(u{ +F +U/>{*-Cl);.=:|5sp/;VJ,1z!r k96}0^F*V͜XWSf[_g~/vG'\lr>sꛆ3 Xel 7+a!Λ }B}ƒNW2ʣpC<9e9y ps?oBC@g$wAh p梘Ô +hֲܶ{;*Y(&{^{ך&n(D@M)g0q+\M*e&j~t=.Z|ۈ4;'>ᣝjV$6ɰ:FNBkț}_Oia\2jZ{Vюj:Lɦ3n|[tUjF&hs)^nDfigrxg TG'<Pt״y?Dޟ3d{ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/KOKODZ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 58 0 R +/Flags 68 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDDH;RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@FĠ(%`1#ttpLȆt"ƀ$^KS3KaQLqȯm b$"M;.%a#}N:yŽ}-r5Rn@V.t0Y3^6~tv"_mx-{v,>PYZSpjTl&I?#č__ Q}=z%x/+!ܳ5{C|hDe'2Wavy"dz#x(~S)|@LAN ,F1QH>򅞛XsIM)#b TX4ŹW?:qGFUip97jiǻ6_I>GL{9vS9~6fKyb-"CJE*[4$C(}ﷱRf*H^s i![]Nmgjz%qi-?[%jdkxYi%n nA\g +.uIP'|o;ojPrOQmӯoǦ@Wl +k^E9"E3OP!C{x) ~N\ZAwZ= -iTI 42nG 9yrav1ۅbt=̶~bBҼu lz.-Ő@O ?D4︥z(>1Djl;%1FXhl\IsC"wg%ϙF RUl$gUosvU->>+I}=J ]DS=Nռ\ fo )2C.ǿ)Y H5|07jkѐaMrtLK7q  )]5ksڴP&$,dpbz'/[D~do@}tOnԬjM'GUז=7- +v!/},TKRlTa"'Hk="Ż1v;ԥT/ڕPf7ZZp/`sEƎovsHƕ#){ +\7߲JoyV~KR;Zm̚C?l?4iX:8.ɻYSz[WD229m$x<ifl1޵™I0=%_qt~%qrD|Bv#*909&JYL[ڕ5"O+TF$zW8(`lefxr6`Z|9]q3.3jU3`ܳVzrdR兆ضvBU/[Q[662 t^AtBЈωb'=IY o}h0;[h_Y.ahsX7LLx>V{LM[wLRn5Э#YO+;ߕҚ7#W? ܼ~Py!?b +l E a\ +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/RRBBFY+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 11119 +/Length3 533 +/Length 11671 +>> +stream +xS&JەYofm~ӶmҶm;+m۶gsӣztD\ĜgֳP^V(jkDH QVfd010’ +9 mm ߿v&6#' ?,,)@ @!D/;@`nd`1p2Zcbd`P52:VV}P:\tcs#'!_X6&j;ߤ8mm@XzYCVVwX(l휝[cJՀ'46wϩ_-sGQs76?I􊊂\k*o`nn?m%w`b'`ۘ l gue21ؙ L(! `e```fwhwmbO8@OIAb S"`$?[ˊg-5e׫qo֋I{W6 m"vޛLbk,!F_~5# NV6ݪ'[ESh&G=EX 2?A[}IB QX_*zwX3G*<#(*u$t +- %T2q3-HH6*B<pיCK){g)H@E\;n.|AZVپ  -MPs +9a0/upVUC/}G+pn;2mUaaN|?ymл-CF>63kVوɋ'}j B*{fWnFAv~.t>U@zz {~St L8aj +d.O8O@ w'kj6,왼G m4qF7xшpyhÌ vP xRpY LL?A +$yE5vEC"CBk?$qdwO-Fu0oAAr`?%'=NJN:7]W:7 @'їkkuPskw5ք0}f|gx/hڝh(2֙'>龳(G:nf1 iG"eGHӤf`r$I4SH\Z@R#<9/U꽚|o]BtZܘ^әf%dC=-q`ނZ>u2ѣ;Iz96g5N?P٦49JVpnbvP],ZK9(IM07oJm9 $%DՐ*L XIE-`BRAVOEd0s#k9!ۗ_S7`C +7 +0,ԡ^G +Ȇ +,mzyJ WT*ZC/힁Y1,9yh悌oH+w_+PtbƗ^)ja7j7ȚcO8m*<.tS}/R#LlEI5c]Y'ޞeCDyewX0q^T%" 4.mUxv oZrDjg,RhLaƆfw_(:sǝ!#k ߎ8Cp}:,VS!a7H o6 PbP\;H2ρTynuMq9X4ճ9e:2y)]+oH\xҎ +opՌ tX}?cÒ?Q9|p=wqA13İ@ \>KFhz&š蟺h,-l*ФI$w$h4S;4?oQ2F HUc~_"fi!xѕ%s*RW5S濗@i$71Frin- n<Jyfvr_鲾G3kc߬?;tN! F݆ĩ)Êjب!iG\Q )(S?Vمqhr'ʂ@^le r<&zBmn[LSy<à,RI#A;_ݍ謼fSD'R?bme4|5;Xܜ5Sv;Xa`7|\JQExF,1$yv(3*Si%)SPRŀ@WáIII/sGa I YxLaӠ-APV^kq +0FK}A<\KBIdXw}婇yX{PQ4^D}Ս'0؏=HNkXrȎթ ~|נ+:Q{ЅGѹ(=7Og9oK.Nj6i +hԷ8YhX͘9ӷ8u#yb"kZ{s#ۙ󙠹6nUnGsoK]`S/p4B]t)c`2|.z4#խIʹј|{| x?PM]Ɖ݃pm5葨X(M3YF@Re+(GwZ&ࣉܱѣOIP .RҪ@Q\09FZ_H_ < ̏JmPІE@%Ҋ'Uz#k&|hGl:jcwNᠴsSC\f + /1s^x> <ɡGߜ$PO_!KY,g⃀W<t'%$e0(_N7I &SxgeYŽFgg+,V!㜰⊶iFzF(zf5 kAsKX'v#,y1N߉~ +k6BmRُ +p:4,_?K O5W6QRP4 ZѺ@(k<@קɒ B2DgrT\Pٴ?8k6-&h񭈲s0gSgA; %oC={5!QxޞdT& kV(QD~@ LKZN 0c9L0M)d7UB>_k1zu;Dϩ:M.1c(TBvπ{LgV("-(D"gwsg>!Ψuqb 9G;HNx%g;g~̳YIrWƟ@ÏqJ5";6Q&z^PGpϺ(JKfxI^ +BѫoƵaY~Xp71~-yz<,y#o[j`"'B3Sm*'$:uę~R߆qV[¤zi==\˯ICNh0|_$I)/7oe >kCB'O]ĪCh z`^Y_ +MYÓ\$ikl%א>lҿy/]:G7ᤂt\dgBheUfy􎵙BPZ%{TOW$EUoV&^qX B{FNȵޱ;zBQ*}AyK5ۦ)j.օ{ Gʢ"Ԣ)s_ӰUQ}x1noKH׺5=jk"y4>1ƦF4!ݤcn ,֏ĺ@>k.m xg/jVN9b_"uIF/D>^nTzfW}09Hs?ڥ02;S-C O.su'r HZDY8y`_@>9p.-u;/٠餬!,ГJ֑/5Kr='.ۖe+ۊfU.4EGx^RC99 ®0+5m[xZZ#Ew?0jBiVߑC{6N#CJt-3RNk\w?ۣsZ7BjQdXA 엠B p+YIȢQTsն3q7(O'Zrg'rSLs72 y-tVApb8=2HLA. w`U +Jqgڻ@])BF ㌖˃RKKjkbt65q _A0YIc +d 8VfSS7h=Tu+QXs:qj;XǭlN"͵-ɢol7I?[ &̷骀p(PT9 +N]~XO׶bLXf,_}d6 CD \bPRnR>k:{l-=(+9~F yen7;Wq&TG|3[}TxZc_lftfsR o =Y|;\8)G/f~?.3v :?l5g0ii[6ܓ H+k5`2M@ c?΁*?(;)%B]CS8aN`Acz=e?]_5 ,Ms>S2C`' %s·['޻睜;SXe+VnEZ9_cCϘL%: 1'.bKiN4u.j6 +:~OpB(.=qmo0٢_ &k/q[-nY/H*dm]7% dj q4+^g_*rJ mPWSo#D/:s%5@"_q=JLZ pt V"DGcg'5$P ;Xqg P4/ZY] ]S |kyWP"I_yq-"ԷA:f%ÎN2 +;:uiJU駨DÇ !4-_b/g/vdJE0tUjY {撵U9<_=lHiPe2W4MT~K(loC\whcoyWidF2J!|-?#K3Rn +!q3D:.Зņ['oZY?bp{\)[`({d[[} y#خHMicm HXJfF-< IV9pW1c](:i,HlRͦ!xg?Ŷƚ _ jΌ:*U#Vc< T`LKMXrA6qU>*<T $z^)o Gm4u]_JSg#DvJc_\6/7:< +DF +F=%26&ǣ]jrX8`fFȉ;E) ۴Z L 2#MI~ihU9l{ICZ=W"Jl_ceq׏? =mס4nnFq}ۂ03*e!s}'RbWBQ]NhC R{Pݥ$!3El_F>~_r=@=*(.҂jVl^8\2ce&4+<7>= ^N? ~3DOazyN3 1@[:N&ꮣP\r\1{sQ/!VeQD-t _6!M`O몽 +m-Cv:#&~zL<>yxJ1Ո˕'LaхAoG ˄z?9ɳEAbL)E"Ro3J}LI$;!n*Yf_O` @sR˫h,4lN .}䃆wPyA]!#Avێ!3I"ț|0ݝzI'#DER@h5NSf xN(c.Os~Y5$  }*V<G8x0l3qH{GMS =dL#=hlyiXXL=Pi[2BZQ).EwKx@(3^L>&1d]0Oi^x` aOkxPoFf;Ӯ`ՃZQpe'CHFa,9rxKodX y;4^k=g8U>.{zvh~OFUu;7)KN]eT hqlbf-l?+b#]F'HZ//=4IR">6zS*+~'bp)LES+q)kUbG aAMtt8 +ֽk`vG_`q:aWjx(j2 !| ?]X<l dQ̭M%K#irHbwvQ0by"}s D|0/h=%Z)Lo*d&1oqǦĽ[VCVDU8(&rK2YV1&>T߈{7 Y7ٝE[U`OcoVyQj+t3w\DE?mk_oJ5YkC~8X! +*j #6o8abkej5E1Hk~RBT^6`Ɨ OVZg5Dl|C!1e6gG=?5n7]ҪhfujN&> јpue}W4M{{}FY%oFA ] ?jC.jfZQ"\sCn̥!il+?IIB#7KHF}W RJ-vdzM7{ߥ"IڧC +paB#Ztb@*BJ ^MDZa%ܜ2Dj +e(O2U[~"t.ĵzrJ żP|)E\x0ď+&@fX *bH;rsx VK֯ +\@9~ W=}Nvyng&y 8jCD6\oBq~dF3ŘQG4WެjڱF*C4ٛ:{ 4GgzWUXiwJF׆l.%:;y2/JŸ$/4Lk k.;&PSi8TjaFaLthqKwn"T="z%GPs&w /2#} Y/nD) +b${ð>g?SfzFǶ.~'==ڔK3ULE|>?57Ul,1CPvƃS6#k* +?3 %Mh=T% L1kĔ0! D1.L)/tEe?DB 'rQȫ+UgU)lB3ku?-1H+J"iI!8=DA}aA+F֬ +˂g% ǐui8> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D5)4Gɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\n w +endstream +endobj +225 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/YBJVEW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 224 0 R +/Flags 68 +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5591 +>> +stream +xUT\ۖq SV.K &x`݃{p 8soK~{sEG&v89@@ @RYS 90$]!09 " > 7 '@jm0J2;@\es 9d =@W7 `% `:b%hK;qu{0>s2)N0 +]y53뿡{P{8aWw./8e<j)hm yn2P/X +XۻA!࿃<O v} i]ؿjPG3/5_\^C |oI;Z:M#¿SIH8yr8y7 _ڎPwOOs3<?k+ /%Ƨ "()+%˅yk江 X3S\[J8tNl$ɾA'4C %g)"(WZhzF6XLq>:M{!1 ΒxӋص(^n"xX-TD΋Nl 4cFe3ZkdʚF9x}N\+/\Aih *ي2F46)e?Rsd$kߘ#-qײxTw'g#v}Lஃz4| ՜\ )G3v^vO HcQI*=dX|xݍ1(C"n![޹$P8w#'J>r&8'KGsVC :^AfL1;s.H׌V%ښ_}M3G`MD'+-w~\r tpJDu z#gWdB{CچuL!a! ikk +2_ aL%@In^RC >51y9fuX)f gHn\X QN.[KX2``gU \1Bzdu&c.np;ﮭI%.iu塬mAa# #2iQі<4,fVtY" _Ѱ^FzeeLZg<22M#Gz ü ޚZP.NWºI|S@OlڈJ(Kz\hpj,o%йHHG ynf-5^uUt{W}2+8N޸_;a.Bc,㸄7YNd#~S$Z 6˴!O> +d& +׷wPNFzpentiP"+[M!x$~8UӂaF}-~<ًf)ѳ_,p!s͹"ޣfȀ%POOgꃥd| R%6ڿP}7Z$ 7k 20}X/XQTg) H=P-q%BYkW |7d:: S–y?V*FU/Y'#<.w.~ʴܝ${42K<4ϧMƛ@MVnjYT{!FRHs}JzrqMhchlc16d6ʺwt;("_qlSh '#g5iNK[rz^CϱQ4">bX#zάtf4E) !:Uڑ: |iˇM1*vH?\#p k[bD+* KhJwf^lńV9*gvv*9n@URؐJϦo3e}KZetgW<=Ά9f^а4'& +/7s,%-y?"s +WRx.[4RK.b@MMÈ6P:t^{ӗ|_~" GѺDQE'.O0*{F6雘/UstCA쨔.V%SX)=Y_b^ j7|Fύ0rb5p UZk!_<8+RsX #zu7iu# {(6KFUPťtǭ6NX˂Ҽv +*iezeVQj& f_?i`h~!g<-@a$®Ckm +_e+CCTFTzQ(¡.K/Q٫X,|o3SQ~adWo>>gºkI谱> Yr7B2O4y/}xX0 ޓл &)x,ʐx@rBcoAT'nY䕄 IJIG$dIyVH{yE*2Z>9# ֪ߝ!Uh&4G\=> +Oo'` 9.zvE/gmE +"b Wi3]Z߈PRp&n|@xsGm+ݠ1wy؇Xo{Bb2glY+䱹?r1H:`~/Q1f:ouV)YӰkY"fmŢW#ORM-3R-Z.ltֈb#J+݃G97sWxbتw|T5EsJһ}m(ƕ2&˒Aq:ycMdAآVjX~hYv'^x,?od qFEao̡c^R ]bLtT>#&kbM@4 +:\!#^t?[NJH)mfk@>6=ly0/oW@7m*l8!w0YUկT'^ڶ ~4U*)5Sy01WVLWԣK%b?1-rO'ۗ^5 =6ϯSKk)cgG|cS?\&n`4\5ugJusѼ0OJ.1 8o9 +-E 4iৈZIE_.&C`3cKnMðDr%5o/݃a)2񎡆bliT֙z_[#X<`>W4=h3gڏ㍄ᓋ7PvKz8.V}%.˩XvnpE5{DղduQ=JĹl`\!Wegnbs]*Q,m6/|Kc2-xițfKJ&b aUcd<%?ZbDq5[=(FO R_g]?4(NLZdC +yxj6w}DHMLx"fBk+x~:e3f}MbIH3 u%Y1z+7L`#Ebp++}hfw#l 7$lK4[;'^`fM03!8m*3)CYu@GOlh[T ўq3 !&"׭4I=4k"79ȯ :2G]j[_| eO?Ogj jiIu<Wm\rGWEH6ƈkڹjˎl䓈".RoH'eHgtC/ZBTaA1HjީOir< ä[~[+'ZY6nkFg=F\Du&!wբPj[)lm֏@[lURoOW^{`6k_ 1ˡ`Q}ҿN"Lɵ[hNu1nUśk,q]yK\o/Ak2ݼT$?k~ҭ7/OGA' )XeWhckw@107vw{㑅qy\/ ^_lhݑ#쬒v3}n%7%{_oiKnmgWA ٥ZGCiXGX3 'ih5a.i*T&rL,c~oe"jef} S#e@osWu[SQ`ϽSLS4HҠ/EB)׫^}Mu],\Glv EVkspKzCS~)Anlzo8]yz0={ܶacP +Â]liH69' +:̃-&_ʄNZk{Pk*>Nxb~6J6LjR4ZK'ʩy#PZj//UʥMsJ4; kZ8cy:8͚Ugsd@Ƈh4[*+xl8RZ،Pq +'9f${9 }N }d_(O@> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 230 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 230 0 R +>> +endobj +230 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 229 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +231 0 obj +<< +/Type/Pages +/Count 3 +/Kids[48 0 R 52 0 R 67 0 R] +/Parent 229 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +232 0 obj +<< +/Type/Pages +/Count 2 +/Kids[71 0 R 75 0 R] +/Parent 229 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 233 0 R +>> +endobj +233 0 obj +<< +/Type/Pages +/Count 3 +/Kids[82 0 R 86 0 R 90 0 R] +/Parent 229 0 R +>> +endobj +229 0 obj +<< +/Type/Pages +/Count 10 +/Kids[230 0 R 231 0 R 232 0 R 233 0 R] +/Parent 3 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +235 0 obj +<< +/Type/Pages +/Count 2 +/Kids[94 0 R 98 0 R] +/Parent 234 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +236 0 obj +<< +/Type/Pages +/Count 3 +/Kids[102 0 R 106 0 R 110 0 R] +/Parent 234 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +237 0 obj +<< +/Type/Pages +/Count 3 +/Kids[114 0 R 118 0 R 122 0 R] +/Parent 234 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 238 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 238 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 238 0 R +>> +endobj +238 0 obj +<< +/Type/Pages +/Count 3 +/Kids[126 0 R 130 0 R 134 0 R] +/Parent 234 0 R +>> +endobj +234 0 obj +<< +/Type/Pages +/Count 11 +/Kids[235 0 R 236 0 R 237 0 R 238 0 R] +/Parent 3 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +240 0 obj +<< +/Type/Pages +/Count 2 +/Kids[138 0 R 142 0 R] +/Parent 239 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +241 0 obj +<< +/Type/Pages +/Count 3 +/Kids[146 0 R 150 0 R 154 0 R] +/Parent 239 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +242 0 obj +<< +/Type/Pages +/Count 3 +/Kids[158 0 R 162 0 R 166 0 R] +/Parent 239 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 243 0 R +>> +endobj +243 0 obj +<< +/Type/Pages +/Count 3 +/Kids[170 0 R 174 0 R 178 0 R] +/Parent 239 0 R +>> +endobj +239 0 obj +<< +/Type/Pages +/Count 11 +/Kids[240 0 R 241 0 R 242 0 R 243 0 R] +/Parent 3 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +245 0 obj +<< +/Type/Pages +/Count 2 +/Kids[182 0 R 186 0 R] +/Parent 244 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +246 0 obj +<< +/Type/Pages +/Count 3 +/Kids[190 0 R 194 0 R 198 0 R] +/Parent 244 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +247 0 obj +<< +/Type/Pages +/Count 3 +/Kids[202 0 R 206 0 R 210 0 R] +/Parent 244 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 248 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 248 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 227 0 R 19 0 R] +/Parent 248 0 R +>> +endobj +248 0 obj +<< +/Type/Pages +/Count 3 +/Kids[214 0 R 218 0 R 222 0 R] +/Parent 244 0 R +>> +endobj +244 0 obj +<< +/Type/Pages +/Count 11 +/Kids[245 0 R 246 0 R 247 0 R 248 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 43 +/Kids[229 0 R 234 0 R 239 0 R 244 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +249 0 obj +<< +>> +endobj +250 0 obj +null +endobj +251 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 249 0 R +/Threads 250 0 R +/Names 251 0 R +>> +endobj +xref +0 252 +0000000000 65535 f +0000136262 00000 n +0000143183 00000 n +0000142828 00000 n +0000143033 00000 n +0000136426 00000 n +0000004047 00000 n +0000000009 00000 n +0000062026 00000 n +0000061842 00000 n +0000000913 00000 n +0000066717 00000 n +0000066531 00000 n +0000001906 00000 n +0000071956 00000 n +0000071768 00000 n +0000002823 00000 n +0000142933 00000 n +0000003740 00000 n +0000142983 00000 n +0000003992 00000 n +0000136529 00000 n +0000014668 00000 n +0000085395 00000 n +0000085206 00000 n +0000004108 00000 n +0000090667 00000 n +0000090477 00000 n +0000005054 00000 n +0000095971 00000 n +0000095782 00000 n +0000005990 00000 n +0000006966 00000 n +0000099203 00000 n +0000099009 00000 n +0000007920 00000 n +0000008866 00000 n +0000103250 00000 n +0000103055 00000 n +0000010482 00000 n +0000105426 00000 n +0000105240 00000 n +0000011433 00000 n +0000108460 00000 n +0000108269 00000 n +0000012397 00000 n +0000013392 00000 n +0000014557 00000 n +0000136714 00000 n +0000015382 00000 n +0000014730 00000 n +0000015293 00000 n +0000136819 00000 n +0000020944 00000 n +0000110744 00000 n +0000110550 00000 n +0000015444 00000 n +0000016415 00000 n +0000114500 00000 n +0000114305 00000 n +0000017322 00000 n +0000018304 00000 n +0000117158 00000 n +0000116972 00000 n +0000019281 00000 n +0000020026 00000 n +0000020820 00000 n +0000136924 00000 n +0000022005 00000 n +0000021006 00000 n +0000021870 00000 n +0000137117 00000 n +0000023161 00000 n +0000022067 00000 n +0000023026 00000 n +0000137222 00000 n +0000025755 00000 n +0000129139 00000 n +0000128945 00000 n +0000023223 00000 n +0000024233 00000 n +0000025608 00000 n +0000137408 00000 n +0000026702 00000 n +0000025817 00000 n +0000026634 00000 n +0000137513 00000 n +0000027767 00000 n +0000026764 00000 n +0000027688 00000 n +0000137618 00000 n +0000028817 00000 n +0000027829 00000 n +0000028738 00000 n +0000137909 00000 n +0000029617 00000 n +0000028879 00000 n +0000029549 00000 n +0000138014 00000 n +0000030501 00000 n +0000029679 00000 n +0000030432 00000 n +0000138201 00000 n +0000031880 00000 n +0000030564 00000 n +0000031744 00000 n +0000138309 00000 n +0000032833 00000 n +0000031944 00000 n +0000032753 00000 n +0000138417 00000 n +0000033710 00000 n +0000032897 00000 n +0000033630 00000 n +0000138616 00000 n +0000034688 00000 n +0000033774 00000 n +0000034619 00000 n +0000138724 00000 n +0000035954 00000 n +0000034752 00000 n +0000035818 00000 n +0000138832 00000 n +0000036756 00000 n +0000036018 00000 n +0000036687 00000 n +0000139031 00000 n +0000037541 00000 n +0000036820 00000 n +0000037472 00000 n +0000139139 00000 n +0000038169 00000 n +0000037605 00000 n +0000038100 00000 n +0000139247 00000 n +0000039376 00000 n +0000038233 00000 n +0000039240 00000 n +0000139544 00000 n +0000039793 00000 n +0000039440 00000 n +0000039747 00000 n +0000139652 00000 n +0000041209 00000 n +0000039857 00000 n +0000041073 00000 n +0000139843 00000 n +0000042051 00000 n +0000041273 00000 n +0000041982 00000 n +0000139951 00000 n +0000043246 00000 n +0000042115 00000 n +0000043121 00000 n +0000140059 00000 n +0000043949 00000 n +0000043310 00000 n +0000043903 00000 n +0000140258 00000 n +0000044617 00000 n +0000044013 00000 n +0000044571 00000 n +0000140366 00000 n +0000045882 00000 n +0000044681 00000 n +0000045746 00000 n +0000140474 00000 n +0000046561 00000 n +0000045946 00000 n +0000046515 00000 n +0000140673 00000 n +0000047132 00000 n +0000046625 00000 n +0000047086 00000 n +0000140781 00000 n +0000048735 00000 n +0000047196 00000 n +0000048575 00000 n +0000140889 00000 n +0000050281 00000 n +0000048799 00000 n +0000050121 00000 n +0000141186 00000 n +0000051483 00000 n +0000050345 00000 n +0000051323 00000 n +0000141294 00000 n +0000052547 00000 n +0000051547 00000 n +0000052399 00000 n +0000141485 00000 n +0000053158 00000 n +0000052611 00000 n +0000053112 00000 n +0000141593 00000 n +0000054403 00000 n +0000053222 00000 n +0000054255 00000 n +0000141701 00000 n +0000055111 00000 n +0000054467 00000 n +0000055065 00000 n +0000141900 00000 n +0000056498 00000 n +0000055175 00000 n +0000056350 00000 n +0000142008 00000 n +0000057266 00000 n +0000056562 00000 n +0000057220 00000 n +0000142116 00000 n +0000057877 00000 n +0000057330 00000 n +0000057831 00000 n +0000142315 00000 n +0000059251 00000 n +0000057941 00000 n +0000059091 00000 n +0000142423 00000 n +0000060393 00000 n +0000059315 00000 n +0000060233 00000 n +0000142531 00000 n +0000061778 00000 n +0000130556 00000 n +0000130361 00000 n +0000060457 00000 n +0000061380 00000 n +0000061720 00000 n +0000137811 00000 n +0000136634 00000 n +0000137029 00000 n +0000137327 00000 n +0000137723 00000 n +0000139446 00000 n +0000138120 00000 n +0000138525 00000 n +0000138940 00000 n +0000139355 00000 n +0000141088 00000 n +0000139760 00000 n +0000140167 00000 n +0000140582 00000 n +0000140997 00000 n +0000142730 00000 n +0000141402 00000 n +0000141809 00000 n +0000142224 00000 n +0000142639 00000 n +0000143115 00000 n +0000143138 00000 n +0000143160 00000 n +trailer +<< +/Size 252 +/Root 2 0 R +/Info 1 0 R +>> +startxref +143281 +%%EOF diff --git a/src/axiom-website/CATS/schaum20.input.pamphlet b/src/axiom-website/CATS/schaum20.input.pamphlet new file mode 100644 index 0000000..e6981a6 --- /dev/null +++ b/src/axiom-website/CATS/schaum20.input.pamphlet @@ -0,0 +1,688 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum20.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.429~~~~~$\displaystyle +\int{\tan{ax}}~dx$} +$$\int{\tan{ax}}= +-\frac{1}{a}\ln~\cos{ax}= +\frac{1}{a}\ln~\sec{ax} +$$ +<<*>>= +)spool schaum20.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(tan(a*x),x) +--R +--R +--R 2 +--R log(tan(a x) + 1) +--R (1) ------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb1:=-1/a*log(cos(a*x)) +--R +--R log(cos(a x)) +--R (2) - ------------- +--R a +--R Type: Expression Integer +--E + +--S 3 +bb2:=1/a*log(sec(a*x)) +--R +--R log(sec(a x)) +--R (3) ------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +cc1:=aa-bb1 +--R +--R 2 +--R log(tan(a x) + 1) + 2log(cos(a x)) +--R (4) ----------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 5 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (5) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 6 +dd1:=tanrule cc1 +--R +--R 2 2 +--R sin(a x) + cos(a x) +--R log(---------------------) + 2log(cos(a x)) +--R 2 +--R cos(a x) +--R (6) ------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 7 +ee1:=expandLog dd1 +--R +--R 2 2 +--R log(sin(a x) + cos(a x) ) +--R (7) -------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 8 +sincossqrrule:=rule(sin(a)^2+cos(a)^2 == 1) +--R +--R 2 2 +--I (8) sin(a) + cos(a) + %K == %K + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 9 14:429 Schaums and Axiom agree +ff1:=sincossqrrule ee1 +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.430~~~~~$\displaystyle +\int{\tan^2{ax}}~dx$} +$$\int{\tan^2{ax}}= +\frac{\tan{ax}}{x}-x +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(tan(a*x)^2,x) +--R +--R +--R tan(a x) - a x +--R (1) -------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=tan(a*x)/a-x +--R +--R tan(a x) - a x +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 12 14:430 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.431~~~~~$\displaystyle +\int{\tan^3{ax}}~dx$} +$$\int{\tan^3{ax}}= +\frac{\tan^2{ax}}{2a}+\frac{1}{a}\ln~\cos{ax} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(tan(a*x)^3,x) +--R +--R +--R 2 2 +--R - log(tan(a x) + 1) + tan(a x) +--R (1) -------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=tan(a*x)^2/(2*a)+1/a*log(cos(a*x)) +--R +--R 2 +--R 2log(cos(a x)) + tan(a x) +--R (2) -------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R 2 +--R - log(tan(a x) + 1) - 2log(cos(a x)) +--R (3) ------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 16 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 17 +dd:=tanrule cc +--R +--R 2 2 +--R sin(a x) + cos(a x) +--R - log(---------------------) - 2log(cos(a x)) +--R 2 +--R cos(a x) +--R (5) --------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 18 +ee:=expandLog dd +--R +--R 2 2 +--R log(sin(a x) + cos(a x) ) +--R (6) - -------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 19 +sincossqrrule:=rule(sin(a)^2+cos(a)^2 == 1) +--R +--R 2 2 +--I (7) sin(a) + cos(a) + %L == %L + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 14:431 Schaums and Axiom agree +ff:=sincossqrrule ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.432~~~~~$\displaystyle +\int{\tan^n{ax}\sec^2{ax}}~dx$} +$$\int{\tan^n{ax}\sec^2{ax}}= +\frac{\tan^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(tan(a*x)^n*sec(a*x)^2,x) +--R +--R +--R sin(a x) +--R n log(--------) +--R cos(a x) +--R sin(a x)%e +--R (1) ------------------------- +--R (a n + a)cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=tan(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R tan(a x) +--R (2) ------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 23 +cc:=aa-bb +--R +--R sin(a x) +--R n log(--------) +--R cos(a x) n + 1 +--R sin(a x)%e - cos(a x)tan(a x) +--R (3) ------------------------------------------------- +--R (a n + a)cos(a x) +--R Type: Expression Integer +--E + +--S 24 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +dd:=explog cc +--R +--R n + 1 sin(a x) n +--R - cos(a x)tan(a x) + sin(a x)(--------) +--R cos(a x) +--R (5) --------------------------------------------- +--R (a n + a)cos(a x) +--R Type: Expression Integer +--E + +--S 26 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (6) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 27 +ee:=tanrule dd +--R +--R sin(a x) n + 1 sin(a x) n +--R - cos(a x)(--------) + sin(a x)(--------) +--R cos(a x) cos(a x) +--R (7) ----------------------------------------------- +--R (a n + a)cos(a x) +--R Type: Expression Integer +--E + +--S 28 14:432 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.433~~~~~$\displaystyle +\int{\frac{\sec^2{ax}}{\tan{ax}}}~dx$} +$$\int{\frac{\sec^2{ax}}{\tan{ax}}}= +\frac{1}{a}\ln~\tan{ax} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(sec(a*x)^2/tan(a*x),x) +--R +--R +--R sin(a x) 2cos(a x) +--R log(------------) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) --------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=1/a*log(tan(a*x)) +--R +--R log(tan(a x)) +--R (2) ------------- +--R a +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R sin(a x) 2cos(a x) +--R - log(tan(a x)) + log(------------) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (3) --------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 32 +dd:=expandLog cc +--R +--R - log(tan(a x)) + log(sin(a x)) - log(cos(a x)) - log(- 2) +--R (4) ---------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 33 14:433 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 2) +--R (5) - -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.434~~~~~$\displaystyle +\int{\frac{dx}{\tan{ax}}}~dx$} +$$\int{\frac{1}{\tan{ax}}}= +\frac{1}{a}\ln~\sin{ax} +$$ +<<*>>= +)clear all + +--S 34 +aa:=integrate(1/tan(a*x),x) +--R +--R +--R 2 +--R - log(tan(a x) + 1) + 2log(tan(a x)) +--R (1) ------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 35 +bb:=1/a*log(sin(a*x)) +--R +--R log(sin(a x)) +--R (2) ------------- +--R a +--R Type: Expression Integer +--E + +--S 36 +cc:=aa-bb +--R +--R 2 +--R - log(tan(a x) + 1) + 2log(tan(a x)) - 2log(sin(a x)) +--R (3) ------------------------------------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 37 +complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.435~~~~~$\displaystyle +\int{x\tan{ax}}~dx$} +$$\int{x\tan{ax}}= +\frac{1}{a^2}\left\{\frac{(ax)^3}{3}+\frac{(ax)^5}{15}+\frac{2(ax)^7}{105} ++\cdots+\frac{2^{2n}(2^{2n}-1)B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 38 14:435 Axiom cannot compute this integral +aa:=integrate(x*tan(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %I tan(%I a)d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.436~~~~~$\displaystyle +\int{\frac{\tan{ax}}{x}}~dx$} +$$\int{\frac{\tan{ax}}{x}}= +ax+\frac{(ax)^3}{9}+\frac{2(ax)^5}{75}+\cdots ++\frac{2^{2n}(2^{2n}-1)B_n(ax)^{2n-1}}{(2n-1)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 39 14:436 Axiom cannot compute this integral +aa:=integrate(tan(a*x)/x,x) +--R +--R +--R x +--I ++ tan(%I a) +--I (1) | --------- d%I +--I ++ %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.437~~~~~$\displaystyle +\int{x\tan^2{ax}}~dx$} +$$\int{x\tan^2{ax}}= +\frac{x\tan{ax}}{a}+\frac{1}{a^2}\ln~\cos{ax}-\frac{x^2}{2} +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(x*tan(a*x)^2,x) +--R +--R +--R 2 2 2 +--R - log(tan(a x) + 1) + 2a x tan(a x) - a x +--R (1) ------------------------------------------- +--R 2 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 41 +bb:=(x*tan(a*x))/a+1/a^2*log(cos(a*x))-x^2/2 +--R +--R 2 2 +--R 2log(cos(a x)) + 2a x tan(a x) - a x +--R (2) ------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 42 +cc:=aa-bb +--R +--R 2 +--R - log(tan(a x) + 1) - 2log(cos(a x)) +--R (3) ------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 43 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 44 +dd:=tanrule cc +--R +--R 2 2 +--R sin(a x) + cos(a x) +--R - log(---------------------) - 2log(cos(a x)) +--R 2 +--R cos(a x) +--R (5) --------------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 45 +ee:=expandLog dd +--R +--R 2 2 +--R log(sin(a x) + cos(a x) ) +--R (6) - -------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 46 +sincossqrrule:=rule(sin(a)^2+cos(a)^2 == 1) +--R +--R 2 2 +--I (7) sin(a) + cos(a) + %R == %R + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 47 14:437 Schaums and Axiom agree +ff:=sincossqrrule ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.438~~~~~$\displaystyle +\int{\frac{dx}{p+q\tan{ax}}}~dx$} +$$\int{\frac{1}{p+q\tan{ax}}}= +\frac{px}{p^2+q^2}+\frac{q}{a(p^2+q^2)}\ln(q\sin{ax}+p\cos{ax}) +$$ +<<*>>= +)clear all + +--S 48 +aa:=integrate(1/(p+q*tan(a*x)),x) +--R +--R +--R 2 +--R - q log(tan(a x) + 1) + 2q log(q tan(a x) + p) + 2a p x +--R (1) -------------------------------------------------------- +--R 2 2 +--R 2a q + 2a p +--R Type: Union(Expression Integer,...) +--E + +--S 49 +bb:=(p*x)/(p^2+q^2)+q/(a*(p^2+q^2))*log(q*sin(a*x)+p*cos(a*x)) +--R +--R q log(q sin(a x) + p cos(a x)) + a p x +--R (2) -------------------------------------- +--R 2 2 +--R a q + a p +--R Type: Expression Integer +--E + +--S 50 +cc:=aa-bb +--R +--R (3) +--R 2 +--R - q log(tan(a x) + 1) + 2q log(q tan(a x) + p) +--R + +--R - 2q log(q sin(a x) + p cos(a x)) +--R / +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 51 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 52 +dd:=tanrule cc +--R +--R (5) +--R 2 2 +--R sin(a x) + cos(a x) +--R - q log(---------------------) - 2q log(q sin(a x) + p cos(a x)) +--R 2 +--R cos(a x) +--R + +--R q sin(a x) + p cos(a x) +--R 2q log(-----------------------) +--R cos(a x) +--R / +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 53 +ee:=expandLog dd +--R +--R 2 2 +--R q log(sin(a x) + cos(a x) ) +--R (6) - ---------------------------- +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 54 +sincossqrrule:=rule(sin(a)^2+cos(a)^2 == 1) +--R +--R 2 2 +--I (7) sin(a) + cos(a) + %S == %S + 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 55 14:438 Schaums and Axiom agree +ff:=sincossqrrule ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.439~~~~~$\displaystyle +\int{\tan^n{ax}}~dx$} +$$\int{\tan^n{ax}}= +\frac{\tan^{n-1}{ax}}{(n-1)a}-\int{\tan^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 56 14:439 Axiom cannot compute this integral +aa:=integrate(tan(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | tan(%I a) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p80 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum20.input.pdf b/src/axiom-website/CATS/schaum20.input.pdf new file mode 100644 index 0000000..851a4ee --- /dev/null +++ b/src/axiom-website/CATS/schaum20.input.pdf @@ -0,0 +1,1939 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZERBIC+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ITPABG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/JUYRJU+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%= @ wE+4]cTjNC@;mSBx  &5;x@dZj]=|\9Ru~MQ 0c('HrmЛ$2q7JFj  rѨ9%y"Vq!sN ZpČut8ٶqh6A +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/YYZPBL+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LTVIHX+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/BHBTKJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XUEOWF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/UGCUXL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/PVLQNM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 624 +>> +stream +xڽVMo0 W`0+%u9!^nC ,?lَ'$ĤHG*JAz6 + Q{%ΪF(7w?׌xZn>]][ HUC,fg\7oĈB-G@R`%_:pB<|y[7ymWFsdU  :dW{%\zeR=m +jz1P`s//J@ +]T1ўK4}$!`!!%~0t|EZJd4>4q!8{Soo9S6qG >qe +k缥F5YC9pfH9Ō +vwPV3I;jYcV(xYQ)8Q(P~b 1b+FljQJiBI7.h7FY֎8JbIwqp`-m!T<j+}:`1cLg;o?rFmt Cimq \)uulm{FOҢ5iKL "@ i8h|]K7 <(4v_ +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/BYHWHP+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/UKYXDK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/JDEPRA+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/XOGZIF+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 673 +>> +stream +xڭVMs0WnH//&89(.q> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xڽUn0+x) !LR\D>4SѭjUJ})R 8yof P(|@Ft H0 + ǘЀ;@bɃc"}n8`TWڮ[Uu}m8޽ܜmuƓ7kYgO&[h^fNHPoÃL X4F;P;#g3Rjfoi}=xx>/xPqˆt¨&_/~$K卙W i|Z?e&Co4+:ou8@@{kh +iMzZ6tcu{}RB0wLǔHw???vNVSWTJ X.u)hvbQ؛@. +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 615 +>> +stream +xڽUMo1+|J+9d̛Ϟ&@vnv|y;3q+6{Vpyt> GLQZQҕR_xč4Ŵww˛uq}__֛}<> 5(*Wj$GB91ei%R^ +Q8B؄5e%(CNI6R,oGqP:ƻЌ".mF_VԀ4XI +Y͡ƞi@2r:Zf'I;iXpq-k":iIAA\3i0bt>G@)S#]2 TITڧ8P%;RHrd% ̛mw +]d.2m~_!oz5ZIVY ,]3g!'8Ep_WԪ"5|COAۏBdD" )^WGUtHUPC 1}JkܭǓ^P>Wɿ#c6.8r<]\wUiY\妮wbOBKZ5TChc{]o> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 752 +>> +stream +xڭVKs0+t[Vfrah8B]f`JfBI4{V_rCi;R>wɥ"\TdVj,(|Ȕr.tro$Oo&8p&p2@]|E$.{N DF48Q-휵(2Kh)V'njL֥$;eĀ&vD]F01Ic^ VVZgZVO*CH{LJ.樧"D`|.D(kr] +бÛS*pYU,q]lG LwXSmڿð"  &dy;.EkB#nkhd؆bC0^Yvǽ@.saTeo)0;6OoSqO|GeOq*tJK': E%0ӑO 3 k%r:.*bHRYUPż@χZY 5nW'Y]:-Sخ|{ULvSSʃ''k[qWeg=?9HYseIk +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 481 +>> +stream +xڵU]o0}߯$GmlxhԧI(8,R jgs6s?8^G)*Pܢ(%k"DG QDaF$1/<]VϏ@D1(%ܸ*%:Jo@ͦLqIRcVt)PUcc[D-(3A:?ĖLO$N> +J25Ws.pg#(oֺi6U r ]O4;C(mVU<w乽cRj7nAUe>ǸGrr ;wmG9,@B8bH:1&Pv@wjcJcsw\@KRovz_:Lsqj285*. a+{~j`6WMيZq:tXWn˛?{R(,O 1 +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 769 +>> +stream +xVMo@+w\-# Vr)BZ%EϬ׉];N/wf޼7v!=~ޱ7+ͤ+a:&#.%FNK+>\\Y "%9aM9y`*6.O:9 +@ [i8xKGcr[!2戔tAmmu"z4] }Bo8sψ6>ɫ$Z|RբQ͉ +ٯr\?$r)[Oc79ǺlO#ɴ5y>R\Y}7.8"תM)^xm4X. wɴ(|XU-}yW!d<uTIA߮~D{~N+z.ΎX8֔' .+K,BF'__w +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xUˎ0+dԚƏEfvE]'EJ Jub$2jg{0>`NG>ݑ(_ $$ K_!BKq1,N'ܖ6!*g}? !: !\r@vt$؄bDDMԌER1uxtdpTA/:m{.}:/]{n^ɾh4q{H0"H7{3Y<2H ja{c!H`8bo`ɨ@><<1Xb"fKtc%Jdh3p~i]kT΍{Bl@e63~ZBZF]L$olbw9n!::w2D_-<{aڀзNY6 T%J3^)zׄw&X>MģD(>=1k|~vi.BPk_}Ov˻&/wζ^ѪRVtrx1 uO(S"~3d +endstream +endobj +86 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 771 +>> +stream +xڭVMo1W$౽KդjSC/ "QBz&Hwgo!ؒG~2 5(&?A1V"|Gqt#J '79poA&η|BEf\ ljTP,ȐFQaXH eAzBC'J". V7JSrOTI)tOLDL-yյvG=ZtQS%6+NDQ2y> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 275 +>> +stream +xڭn0>G3ر/C:4ޚ EJO_S5RV/;6 P<{D8@@Q(@a%~xFq(.S[$f*Mi5H;wSeUQVq\tdƴ!ķmL/oҺ6K|}p-y+R*(QⰅ@˺I !6@[%f|VQ:3 + +endstream +endobj +94 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 656 +>> +stream +xUMo1W$cKդj=4ln)"c؅% of޼L +)ٜdx(*6 (fp=<R5x|xKfDoJ8Fǰ P%Df#Tq_; ![vEa2&ŜJ.2`Ҭk-aBtTd)|VR _ lb95 Ra V*h23DDh.vZ&;E"&GM4xT7$ϋV=yG@)i,? ܃H~ qъ`u|q̲xr~af;P;sbFpa7`Vn=. soi6vwn4^,_ڽECjM1oہH[e.\ ռHbhi 2b.>I_>}R]1r-+yyZϴO^r}%}}10tAm+jdJ#B-vkۓƦUf +HhGvhNuX&dڳ7'/C6;yިǧ|Y]SFlvVgVj|Qm=ܾ ) +endstream +endobj +98 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +103 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 102 0 R +/BaseFont/MZBXPO+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 1224 +>> +stream +x͘Ko7Ci>)c^ $j" [EU?3>Zw9 3T .DVޛJMug;[1p/fnΤTvI~>G)ՇPHšTKHRtjv2$2D.7CJqh9ξJkŽAb$Y[ Gd YRENճoi\=2#0њ .<(> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 785 +>> +stream +xVKs0+tJѮ^vfrah8BP3N%3!$eǝ =IJT3)dwze+@ + a:uMr 7Sʥ7+r[@ʧ +<@vi!`"rLVr쪭R`ƌȱ~ '2xQRINB b.IX$% ͘ Tδvxk/{驲: :éc9fs~(%2;CeE}ya3H=$=@$|YqUs:pR؀PYTN +M4}Fe(,%dz!frk]ߟGA,4[3jtFsѢ T("ZWD s42? []&BS^+LVקF^KCյ tQxى< +fURn*7I=rQEt>vH#:EREz:߇~Mz5FtWjXp[ >" x†CQq;6ы:y9XUE:lsy34]Swju~\.5.#_,(I9IyJ Z ?_2 FZI2\ *22GHRvʒ/ry#4R3i'~YMgq6 :N$'f%flaI_ +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 510 +>> +stream +xU[o0~߯$Gm| HŷwG(ff(i1!aRK`J6i}\(;iGQDUQYi Rٙ(.7{|y2 Mnݾ8JSUbkݷiN}/`* +1Ȳ0WقV/aAUk4J65ɡgv> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 914 +>> +stream +xWMo8Q+oeѤV-n6I~hQnEg!2Fn!oVWBgE*éTd}*Ç5Ia?VWԴ.T9BX XIZOC.7X$_ gTR±~ޑwXzB&>$F$[y, ϣ9D6tLJɩʰj.S~G(ώAj@+ע +Ḭ̆/h*xJҐP.N)!NS$5eꄜ4˪hrc7X#P08d}[Dˡ(©5mZ6"@]lp$غaNi}G7EZ?38hLܔx"`=F"y\G}Sřl@a𺦆bQD'no!h˦&ba\hnҢ*ߔ7mXV +/v|a,Vջ` m>ۦUStPSCS6CTI mv֌9NX%^AE܇)BaUS1d/[p/񛧑=Hq|CNQxXNsD|yWj La[]ǿC}z cRz*#_?\WNlJS...pD!.*_">/ uuGHyt9'B̡ @u:}?Q +> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 520 +>> +stream +xVo0~_I:ij'fR!aرkcҤ;ĄR=Zh8Pqsp1g׫L߲{-Eysh:kr۪TQ<"0q=a< q2b}t(,*;g9@FHTbyLݬbًhuvѶF!$q˞sL{ry0F4sï`R~|I2k^^'1ܔsB6}D70 / +"d"1`*HCc*HuR*tHC恛HF\lXdKEX{s !;8ԋM}jUuMO}RuI4Hk2- 6|^7ns D5`3n̈́xBjօK$1aT8@FeY<4'Jre8+> +endstream +endobj +121 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 721 +>> +stream +xڝU]o0}W)g=xdeH˶JmZNd?M&EhOq|1I Ii>5Kh8hIf"Joc*)W`b"R7o˪?yzEϾPzU(ݾ, Ru|2eE&q$JN6\DM1~f[Tb]rW<qO L@*\hS+J1ܱ Dj!Ֆ a}ޱ2D-d[7,X Mh똦ZDq@T[L?n +#"u,Q`uAdž`ukH =NR)Y[Z˧%)(}PKSf\0o7Y{d*@[n/18ʌfȊp@ۍ%mSg Xl5}`Lg k7ߐ ^#f 9ÄMzĮٻyB`B->ޭt\HG@9Ι9x:80(,<NAy)a7=ȷA8˽aةC1V}1ٝeޅzy=/Z/mP3|r"sM͢E?%z\FݮOVY#n'|`߄:[< w> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +130 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 129 0 R +/BaseFont/LSOSPV+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +131 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aMZNT)@\X#CUƸ0 pvo02|SDtk 7sI%no")K ٽrWW?Q&$-;#B)@"s5v +[m?.|j}zWzIJLƛL|5"Ph˩٥+ 6+N*>uպrÚ؅\_l_hnYťHkfyy~Tqc +endstream +endobj +132 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 130 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 132 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZERBIC+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4017 +/Length3 533 +/Length 4562 +>> +stream +xgXۚ%l]ZUPzGA)! J!ABMQ)P)Rw*H~p9gg5o}ֳ~ C!1 I2P$:h8@!o@0pe HI ºe eYEe9@ơnoG#$q{]@!@K$@-OO-@ /I bpW IaXhK.%Bz0 @uyP=\i{Nֆx!k$ ׿+Bh4/?ktp8ł v&:wm ֡mOrIh+f hUЁ,g/GxOȻiXػ&"e}dlǃW:0;&v+`s]M [6YI[l U ?.)'_W3bJ动|KY:ycn~xeT\\W:̆ uOL>2Ġ,|D >jZV%I"GIYKKILrhbwf%y `)-l{#cA>[lϗiJoP)EEvjվ}/@.WWLZ,9NHwePKj ?L1vʝCc\+cxNv{ y[JֿWSP_+POo07WaM6WjZOf3^ȧQ.=Ȳݺ#8t@Q'b'q.sP̺9 6gѰ#'WhÈ ~d?7> }kׅfW2Tv>{fFW6:W3yt 8%T<5/>ZZE(ΞQGhEj +XC!TUk7f[9d#E_SD= =ֆt2㬷SaL>S 2[f?"dKV0%I)Zt.wGd;AK2^lEϴ8}Ġyed|buvuu[+VonfΏjr5Jg>%2YnTE;1ԛuQ.D~q>t.km[6Ֆ_~c{C.GɌ+/vH +'P6~~!kꝧ&3:)4Xg~hR$`2aaiV-gPH_IX43ciL# +[|7*ɽs\(—rb|)3ZD1lZ"}/پ)1' +,>FWm@؇J/27k ٰP9^]sB~TF=2GFGq\]Ԡ%$\ta2Y} q +t6wHI2!ږDxGh0;F׳MmHC +9 =9a`wŋm %ظ+YuU`Uw]y8|f䌒77H6X![B-hrvi;B_]4tZ^AONe ˪p7}:Ūt烆LWPo*8}= 'RfWi8pLvơ_.VjeY[K+>ԗ덳~Sco| )* ?FWdkgb +J#ףx,x6I +K=ajW&`PVy*}W㦊i˩ +CH՘?L b1ja_v8$y|Z[Hα"\p*ĝQ9G(rS=}%@[>(Ո.wkr-G^}0@'  vzmej9'w%+fه/?% ~~&( ++o+FRcFXj^O:nBЯ 09QVcGK,ھPggU[9%R,q4IpN_=mva -3V_Qq_*@7 4:akW|+CwX>HgsTN߬C@|bI{`ΏIln+) +"!5uqVKJ +nrbFz+УOܞƹdDj9~ #e3f*Ց)zAj3YǫlNtC=dE?9t{p?3Ӧ0\2Ĕ;WzǺi[}W"d<泞U^aIY<;\)m<:p0%XguhCʒ$Cs8bO ɃcuP~ uԃ ssea;O1~G"`7$#KQ+EҦXEr.HƜ~9|1?| !-aD=(^hONX7{Mӷ[Nޱbn8@KvPj1l>y^b37G˖ǍU_ihE949{$]}*ok3ÝoC̮4+[m!D[.htK38A,I81kUi$%6w4|FKlgt-JA~ɝBv<X;DN9JP^_oKf:Lꡞy+t-0p;%Pdߊ͙ 7Ơ6źNbD.s?hWf;DdzQG9( +lӷL:N'N-= i%i۫V\ӧCSQ.b8 +$qCqsq鍥 ׊vGԒCx(UFnTz|& a,$<{VyҞ7v`rүWx3n"j*u[LvSjm_Nh)χ%QEPF#)8Fg l-`C +`RlQwY*2-&PrTKW(vN+H?\DA2La+{ЌÜP@O'g(FGj9kFRLVcD$Q6Bӎ˴Bk ĥg6M^1eoZr܄+!kMAKAO%H:ss /:m4PbB۰Bb|G>@;EvAJ Us)}mۦO7JֿB1,CR;55Dc;OlDwQB͂HXΐ$|q,ke!rӥVWE ⍓Su<_7`l`/]F|jD.(#C^nEE-2I ?tfԣq)9 + h4͵-h%JuE-M@ YMשEO_-P|t7\) doCtؕqj"|)|?8o1,&P!XmN*j͠ +|W;-;#1F'LVq|X5æ2;F!nذo([ ɐ.A;1pQTm*/ui:-0S,Z=Qi*N)|" 1(/3"- +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/ITPABG+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5021 +>> +stream +xgXS뚆)!HU0@ A.Mz[ !: =(HQ:RI^H,ޑr{9s>g7׬zYwZbч#He,I` ť莄{pO$&!{9 }{PQ uqG98zxp](;8tDAX;GGAz<Cz ݽA !Pv [ +I c%#\F{D`1hi P=\ ֆǜ wA}ÀuqD;Vc_lZH]5O8e'q@#Aп$2 +D<ApOADR3БWPԁ0>g xQ89T +6^fJ;,q{1;_¿C)(`q~{" ( $!.W!T{Bb"v^H_GCSQ6uMɢG C=;hI:STg:I'wdZ:||Xg}K%1ː*3"-dty "ӵyDw`4،T vJ5^[bftL>et.O^A *UM>Te :XXVU L/v6RgfYIj<>yDʽĮE ĨHR#"f͑D$n8_I l[.bCcɕ{(wN2i,0揵LM$%?c(mh+tsN_Q<=!Ƀߝ. e8 /+J يSs6f9o,JiED^1YMǾv _ 5g-ra2.AF>9e;&d;?~gNETOD-`ŲM}ݝl iLiz' +O?O21ZY5ʱ9]Kko37QHA%Y_qJ-0Ϝa7 +z*_*C"1F>-ͫΤqޚRpW]ן{ޫ먰`Y}Ыp<4k*2ɐHeQ!IxWy^RZхWZNmA\` J 'S[ j_DRPbq.INӅd}L7#MtGq.yg:1"?ŬbO/lGN1s 6D~ӝkL1yrgqm>r%MZc";zds/>yc/D2gFgA+vDzca`~G w#m2,'{әȰC2m1pIǁL[$gs( x1×j;f#E~늿 |`sU}s/}r<<nIVg8nhgnDw(a^w* ҆jq^fr*Җ1aNyq +ޏ&%:DT]d :be;Vgxc+p9<M3YJ]jO#_KoqQ=` _4bii6g@Ώa.?5'qM^<\rZ`&]>[5q}<۫/F\$aʔN! sUkDie+x۬ANeM'uR.\K8?r-[TIyg$e dD^ J +}4d%%>yWQ0&?[Al .'3;{hwWN:9جqQ w0\[-t-zM"&^zgu. h6| u'S6fptr+EؔF0E:j*t-áL~bNV)ʆ euڟS $i$]6 s +,Rh"veG sր'Pokm3ƺQ iv ਏ?ml+'8K>Cj`oPQ!PnUk=ieg]ʉ# +%[N簡PܞӚj@+Akj#]'[%kf4tt!զJݷ}>eZ&QJ|R9ͧhsI>Ml * ٴ6d\PWs]R_0Xk#~G#b:Gd-LNqX+fI^d 8p:1qc+;_Gg +t-_ +2L$4 oƩEa\ +'#H؛pj2]!Yl+@+4Ħ( +o(qt5tΖ^^xJ̦8xVǤw{WiVϟhuvQY@-wfGq3jtezUȫǀofCbn$LhUNHu@̙+ F?.C$WTRxYTqpr -fnƺB0/;O\IYq jm^W#/ܸٞZx̸R-Qh** PKR=~y([\Βf׹+bzDŽƊ.S%s9ķMNv8 =89ЇPb02Tb2d\i)W7;肞Wa~+y 7#kZ]_~ 4}KS,%·(b(-O2?_q=CA^ɰ'!A@v'=]u8ǐ29LA Z`*@| az}KHwd52>P ff:H7}>Ԩ~C)CV~oαWS +\h| K`Z|A7FvyޡG#/0qdپ':~Ēp}0(uDFnC^8OR>YFݽ]Goj!ϩḨ]|{eCxe=`cSKIM$& Jws D!ߣw 7P`IT԰q :|i2a8gBoGYuQU y졦_ + %Q[!Q/r9(Sa"ZZKX_q#ZDERV"742$VR)'~Dry՟T#e0P7[;Kf}\m̉m +Ջ) |. Z'&PyA!jD~Fb~^M7hV7pk}`zc y\ ]r}p߁cKdQt-,MgC"M_OVAĊᝉ}ʛĥVF|"YX_+D(ЅGgDH5m=R$$+D3?C9lp3}-ξcS_3 muvXycC` +$wu#؂V .{28ljɡK˭mU_#2G`:r6w6 H_wad@LG4 #߳30 n~ǎrsph%l nP"s{-Ul RcK`آ^?C3*ɾo.k ڱ7OnLj))cL4v,AE_9]opd |y.;w5/S$a8o⸚pigFb;u-XSKJ+F0VkmbAI97W,8|3g1ȏ8 LWoN͆sQ=ћVUntlC"׺c"3'S驢$NWe>jnG3ȸ,ȚՂ{w¯> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`&eWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-L +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/YYZPBL+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1RV6U`(,*__otpuZaXĿSii%F2rLZ^_(/_MRWz{#;.D#PKs"S V"c1a*hթWA5=  S9ʓCE*kSS߶ָu [9S43y5A==YN^(>:GiHL ' 攏{pZC71Yc78R|zU>߻|ްV57wP曷i`բH?;/[t8f wGB|Xm+jc}t̘zm?7+l$ʬ;۳c* +-eH)iLo!м{mӻ6L=&~URwmD1Si.+r}A8C'yF!hȁUN}bq,T@ +12ϩk0M8wl9J4]#u)n&0'hW؂0" aQwVg^J{5ĊnydT-*v}DP0`kD3Ptڜ:r25k|a6R鞎9kvŵ + J餎xQO5J+_B$߉U'˂(ݯ@y3BWeqj<^n;N-y+PEiɄ9l>ڳW+!]f[k`bkK"zLmq \MmT@=‚RjQ6ƖƏ}`<$څw@[VZC3(@ivK%(Q5~iebfvsh7?H[_]uNMQ}`,w,W#8X>1eQLQhޓA`\`^hw?ktا( +=W]çTI*4G81]L]-^:`_yEt}K7Eݐ p/ٝK^ͭ`EM,?'n. gQˣ*M@ޗuE2K٧n\8rt~15ra&x?85rۿ\#˜i僧Qg8cv N(XFN˽60v_TY^<+ 淧/7isJo욱0mF}&?12z~|zƃ:4';a" xSI!zLt:%!!JeK÷`cm˄&ͣ H CzanE^&BH؁ "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qmp?q43 oc6s,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%"&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH9{k(a2x^+nK x^7yEʐԠ =![թ>#B%F#j!a3Uݧ'X#E! i,J)"AKE2~ٰ@ U(?Qv.t\>f:E !z|lNٍt.?¾, }Qj.`TgAV[52yQRQMV;A,O:peKbҮ˫_ae13=~ 3b1׾:.VlMo"Hq*8oBez@56C&KjKVl$͵MW<3B9X -+Ɗ_b }]x@heL4{6H|?$NTlzsɗxڔo|*kdi~[J2U)ĵ^ Q2NB8C~(YmьɉС/1[yc>Ҧ|s`.v(ΐ4>Ư~w(EjW | 6:C2EpJb-2Pðp$d> Cϸ{j9fЇ$Mկ3VҎwUr0Ak&>CWEM&eY3TY?= +9CbJ>+Ey.Sg<YY|mdB -L`|Te=7 )NUGF>zF$Ʈ +#^3t7$ mOsl>N)?^ےZyBOR&~k?l.C٬eY@H N|[jSK*F_sA +F(XP 2L,8Qh +Nƌxҿtbr u9CuK+QشWc{_>ҏ_ؓB5/Wͨm6cc+ӣXN9-H`ғRnXVY5892zIH$ZN(|`}Pr;&B~ӟ8A+VJ '\aF+J+F7nK?c{ g*<|P`u7פA^e{kև *h[o657-1Yuhق?TbgEy"<~ ؎h9_)7rVj%&%aXq#*a+8w,|툁GlI)YU75Y#Y>4Z\ ܷ:0 aMsiݦS82ȑ^)%yA$ Wo@qE4zghi vCxuz,D%͉lse֑*m +dWp[!0bPI^(: ȳ%0b\zqlIrL'7ņOkJV!􏍋_ZmF\BX:-3&RoW#Of#κ(b[3|,%n(jNB, >g/gNgbYKF'$~R6Rc :oe{{H4c`/,|kF^ڔ1K˾vsNle. _FY*Ό?=|קT*Cvi)[[ T +7'j1EiRÆӲLrz'z,Lb,h/;6f{ݧ]caT!:A'芶DBg;]vET$0X (U?Ym MAp!yeQ1lKD`Kv(eCpd}Cɶ}Sj=gbQ2%Y2p4a`[ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/BHBTKJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2235 +>> +stream +xRgXSYf2:@J7g*AHP M!D4% H e E28 Xd3g9=}؁H\41<\Q 2A3a:τ0 ( @0h4aLaN{7XVb< 3C Ht 19&@^G/(bD@D0 Cd0p6"_ѽ&Np"DB ׿+BQSa +N c1!A'B ڗT?9_X&hd +[p+̆0phш_%i瀻᧱~D=0 }FĀ1P0JD}wǿͅFa@[XxA^QL#Blb,L@J @3#EY <@$f0L&o!9a? 2O!a?Q̟k, +!"Μs9.+BbGY/}Ӣ&S:TO➶?KYTZ>KPOcQȱ ܭtVcm6 /L-!=ArweEFEPz+\Mp9*5]X ϦV$&Dƥԓ(ԝW严BTկ-w~j٠l9 ?5׫T>8Jަ{`<-:vu iВJ kpjԾp`Xko)Զ5~ 5E>bwDn1ϟۏQ V(qpw:y)KnmE2Vfk*5^0b17Gm@%ZPq-Dtv^+ }pݲ}VtC,W\iҗ! *#%١h m鷦ZkWhjm,yc.J~ē9TX3).YіeڶiJ~H,3.ՠ7=?ܼ$dZ=Fnilو=qe0>V,XPqL2!-Wբ'KP͟oRJ?fwYޑgb?[os}oQâQoq![ިq3c!d<k>QlTiBIe֪ʃLGJR.b0@yi-8UcF{qe5KDcin۟|= 5^o_-`V]GOda.ΐglVI i=Á]?W6U5v ygjE]bopr}|blyOpR&[?B1ϙ/}T5}E%C&-$K^ZwlH2C+)7Ôknk׻&Y}3r))AmBXɺ/^۱M[Pkmx+nt2Gn9M:B۲j0_Сu[}r lGq=]/yZF'Tvs(cos2otW$u]M{Oܟ񟺪>ɽp0fY}WH/q;D&yi"tswKҧ^]nNtϿY?clBAF'w2T?9Uߙ-FL:8@ԟ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/XUEOWF+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2536 +/Length3 533 +/Length 3084 +>> +stream +xk8X49c*4˜d!"5f^LïA吖q!%K +#%9DZkk}o?~u=82X( + X9;ۣ[1A"BYY @l*o 1XB+:#I`;0.dRHDLd!$"p( +8*mK  PBb?eOe2g+ds;jd: +A? }N!yGSrIj xv5mƠ69xϜ3_f;ŒJN zw./^m3THs=R_Jȭ!Yx,)d3jD0Lp4196eΌhv칧Зŋ^@I`.YC<?hNq)I|d,GE8~j;7DIsLٝ`\5S/;0>>+svE+?4\Q3x>ޯM垨j8oP9z'e˕,uȠGa@! b CnPjhuëvasONhŜAh{A.#ZulVY~!9GUFis\W/frhn/JPFu䚷z }= 8no.Q:y"8l=ЦA[.h>I Wnzۗ}{k@T&ywA 7Jl8y sgfsNpc܀F]1tҸ۽3IA@߰,Sffږ- ,-? &j/qaE-`=ݱU ?R_\c-M +4z|"ssРtgMn[܍e1_zE,aUoՓ?#,q k7`m|fRl'?'lǩ)+a$$z)v|ٳ}KIgub|_+k6+2b芙0֛w֢( \ۊY왨?9+{iB2 RV0%g֠v͟l*BYՇik?Kơ;~#)in%ɝ5J}yFhÍ*7Um/0iזĝ"v3'j~Yj!#(yDͪ3>FT]n>}L;lRUE/+O.S/j7?WYYA(o0aq2G+H Uސ~[CJf<~m9Mjt3ybŜcZ)6U Ngč-Ֆ񏻢zdvfԶuuv'/ 5Fی.'p 3ivً^%[0N0F)AV(ԠOڋ,H|*P۹yk+q>ӿfmJ!*r¼dsjpiF}b ȶqeh2QUlq8AQXWݭDq+%)wP~4>UmBd_骳g Ü4e^zw&6e8@亀UlQCV†ɨ|稙} F>\'0hc yA9 %XCMCz%"9Vbn̠ksm_G7}F&-{*$<jJgm:qŲT_p쎯PA2jkirB(q>^@\j(j<&)kvny.H=Cjw޾ ?D%.*2[^ #,hZ=U:A9ro8lq&ρc\RT_&\.g]B]U>}N qk:L_D3?Xϸ0erZķރ,:f[v*]Fi5w 9"$2Y@"(<, +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/UGCUXL+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1974 +/Length3 533 +/Length 2508 +>> +stream +x{LkȂHD:Bdi +$ds J?a (H60 @H0H kS: +\SPt* 0CW`5Pco©TW"s`LS4Π1 paA[$Co}l""Y)T@mAaP$HAla H A:[ؾ t=_ˁ~pD0JlRcY Â"?_߬eO'1D:"; #򘾑)od,@##ƃt(4ghSp \~!t@0$ 6Cz[u-҃ы]3~WpV*f,$1nok\J{mow1R:G7-Kw)1L #m'sի='ַƓ' aI=YU%*p*chq;.X<]a+E:r^V7!^v>Lu6 ԝ ֧pU"8FlJa[H̖i/2u^> yIvaaҷ#5Aܼޞ?^H:Xa?:4pf,$:uFڢ[h"T9\y!\J:;2Ѫ3Y*= ֣I]%'(FC&)g4Nlh;Tx/ 9XBp&fnR`B{A62zG贴A4(][b*(ѨwN&Y!蝦T>QZu:'X80ȩSF;A%^"љ߁X0,UHQߌu'ּaV*>~QSe;jůZ݂Ǔ(^J%/5?]24MP5!cʼiNY +ZݒoMSwDg!T?O}e F>wQZ7WuU1 #0ez53=csZa0=Qǻ(J=S$ tBŧPC$)TasZNX tO4R*ڲ.{a!EUr7mܚx/u, 6;uoX+҈Ԡ+MvǛC"uU 5"@ۢ3N'Nm4E-"-*o|rB$*Hd4" 1 +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/PVLQNM+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}`n 0^'5d, e 7d2pmlO6?!f81| 梛f!|+b#L{4 $БX:"Y^D@Xx]Qf9L=dM/Aywהkٌ HeU21F><eA\??B98` QABVT0_m~(r:Tl]e\孟~#ل`X3”l5UU7촪nJ1Y+u"@bSY Xh..-maT9_^gn+- Iل>(O2V$sBǯD08csJqn@%(\qFjjZt Ķ'}ܯ + +;svȵUrPb[1%KoD]ia2A٬SEVzwaƇkG)͌_ܔN藟 ^]9e~/_m1gN坺3uEz6FBj]AG*<; +VVKXymw{bu;[Kg>M_^)}έL:;/̃O~w7R6H4]#a .JG<̗]+N,sZJFqt#}X"N?j"WVx1 \֪]M\יh5[cxܧ~`󠯈p wj%i%ƠvK}Q rrH_%xr{NgG{$K="K"dI4|tWjT/5,دC/͞yRB|_fef-<-i\`k2elwmkyUFA9C񢎀4n,h b˙l$?Jc*B͙O tԅ>}xԞOq^a:n]EhĴ>Hxa>AoO[\y"GN)qT.r}e\dm |:Dy{Β V̄G,l2IXє޺4Q,~5?}{6U_s~R)PP7XdyFz6C՝zp;·pi.kE+kk`a8(}- +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/BYHWHP+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2Q]JXCXFlcf0+%kEv%$[vJu,Q%*BHx>^?{~suNJ[*(x$LWa6k(t! (d# `ZZp,hPMB]: RA47Tӥ4C[ +@Hl|ixK<2')ًh%4}.@'ωAXRׯ"C3!ApPH:)8<#~1DVM050T/$08+xa:d~?9 (G?_]+ L ??k?)  +_v3&c)8c8 ¿SP!ʪP@YE +*p@Cz_dPՄT4L?ߵaHx<EiCn`4H>| E﨓[xA[3G*y&PT{z#N[bܬ{{ |pmsHf~LOk.ƈ%S䥲_}c +"zU݅Y| \E͘guK}., MXNr"-EGe\OYoqvɔG?p*ׅ+o'[{}yzl•T:.)M:g@qfT#8I^Wc?nE,Nsjpp;h׼sM=/m@[f.9y `^xo/ K^gCY=TDǏ[ f4ղY'Ӳ8ټSPG(tVlX2y+*I-]DNM?7Lfg /~%!ȟnYfk `]INۺi8ZPۃ?=Fߍ2n(=X;3~L^I}2#s\P4W$W>~R!;usJyȠJ;#ȴYyȸ9սdE!0ܢ3XJJq(Aeez^uelH8Y$ԼOfy[q/U7SLWCxuIZfF7+xX|-02C[ڈ kp7RNiy.]8teB-{<؀I?pJ{6*ŒAF✑GdTgo(!i4;&}LCS~ c;w8Kӊ GI15WXz#YY8 Ҵ.9xJB#,Sg*!sRcil"K7,`w +,rԱM)K(pv0S2دȈڷ cZ*t +~u9T^Sg[9}3&ޑ)PnLh6Yao {|= +,8u0ƒвN-9xI .W<$N9ZKoĿ#t"4Шa]dnSOolfy]v"e=%֌| KJκ4>ۙ\P[|ڊYMhV4|eT T.QUC|%s!zI9{Ē v׊<ΡxbzUNp}D*w ʷv߷/x#M6) +\27vJh?M!wV~zK)}T$ObgI!rQהRW==,76;qK#n?c +{S2r;).G-:I+fy#D׻ 3o_5n OJ +)07oWMqz۱bz5_a|!Gz`3 vw1\.R뒈hZt l7,>UkOSIƽ{eɡ_`YXhl)Hyu˷~םQD3,Z<53RXmԛ $:vH;C]pACw$?\9&HncP!nEU |1֩;?nG$7%}p}R/E<Ev%ZnTضMjf WGuiBsrLqd<DF\|e~'Y{EjlET;ݍGT *'=f+w&Fb%OG*5) +&AO`x N!ah~ ,P +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/UKYXDK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWR(pRB1R" +Cf#LL07RR(({Plb*6(EMŅDh#h=鿞{ys{mBv|IY YƆKa7Bc.vvG..\Rprybp!B`^It!BD h% X ^"a 0`0@q! 1N0_A $`Q􍔄Q2t(I"pqwQCÕR @o5֍` Ă XgԽoZ͇(NF?Ryyd;g`<_w`x>`A+嘿7p hPNQA_ݎ nJ=pX퓸Vʋ-m_ϊƻ+lL*۽іٷ?#Wateo8qCۭO*/M*vt6?j +J{N\?)8a<2qG괸~Ѣn||M%@.HY.vL7d9Em]n{C_QޞC/G-'~v(^GedEfcqTy.}߻cY)R6_?X_.;ܢ'CWKȵvUD<|^C:NQڣQZInOᭇu 1޲"零XBVHOS3ST!l!goq ơ:2sҌyQ-S 57b{UŰzldyT 3b앋m7sOfëoo\gO9Vv*shzo*תݱVFNk+cH?;Meej޶ gU֘w^zVzݦ4NəskJ=b cDҒxS:': +鐯{-Zb05N˵Zk!3!ĻcГšSm/cL36U,_n'"bNBW5OiܛJBL[24Vg7hb7MsԷX[w鄶  +uM!=fOI3Ϗ+sYE[}dn s,Y~K2].ؓ2AVW2G6)/4<#aM4 r~VN+eZanV33dR$hoZmNu4( +ٲ„e[ܼSonTJ#7WܽS?\|oaɑzBբ-%;{3Eǥ0X0]=\ޑ+{ O:g_?y/$Lf"cր*&/j/7J;qVп|'b hRP c +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/JDEPRA+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/XOGZIF+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9888 +/Length3 533 +/Length 10445 +>> +stream +xUTᶥ;Aٸ;ذk݃kp \B9{{ңztU=ZkU㧡Pbv:;prT9؁쒨44RP;I$J@@vAnο** P +sK1CpAVN@ w;_+ P + ra% ?qj@PO5+**lقPd W?G _. ?I9 >@k *@i7\n.Z8a# +gGwl :T/85ߧ +-dW & YݭP? 'g? dknvrq/Yso>P7Јo3dN@-w 'k 5; 7gg_e:N`W4]+(gm B P?_#`'0. {﷥ݎ7;QXOEWᮿ^~ES5ϴ}N6d sTxnnUW_'kO\.Ȑ ov\X_~WVvʠSxú!2hBJaFUL"FtI W] +\rAЪ +%L'`S8?dyk}F?WU'5|kόD|6aNeϪK G@ytuF=럷jp RxvioV@چ5̔EbE~(d)=;/mULuKW֓5e#k+"dϪ22H ^p, Jc0 +Y8c-! C3I#> Wd| zEѵjEa9) JF=#c>NR>E|ܶoAFMIP(/&).)rTZ? 4ɊG}y6R&jo{0^Gp<+^DY)Ozumࢻ AV6o,Ha'M~ ʣ5uuQ״,lrGR\IJ;-worB,b/R-J(3gdD ä*+E\#t1a2q\&6{y .5qj66pǛ>%SD wb^$D[1` Byz jC{тd|9}^@7 Jq$]Ny XSW.%Gیg 0ʯP-ˤ730SYb61- +ԙzP5: Ӄ*ūmF!u_򸬅JʭQbV1)?FϻةO io|gcZy,G}k>)V%'.+KR:Bvi Nt0'oupC%IN9XdMA60|"ऎf*D:QHS?8SjxXe˸h63GJuM +a%σ~D6viwX|،dW&Xʺp}| Kg /V 6>q1z'YA'$vKj ddQ+dTKu0pV0y`@FܞYmQm>4ަxHMfMʟ@X_x0:/4߆\xw:T$:1*$r=zˬf*8 E;LM܏o\75 g޵ +c{(+⹕TuuvE=3ṵ4}Eu/\vAKwODY_0hr8 + tb'ݽ'OY0O/w('jUN.oOD<,!ro1+[bicwDgMu){Pj&;M^Ѽp|C0Ki!Ļ>VGc~޽9DCfV/HbՖ\CY7[7\8RtR%IEu [kIxOJҵuPyN[( Ҋ)7")}π8G`˒ySUȸ'pg-~gAmMلRL~p̈{Kuhծܲo)xIax+* ~(us&kWЭ_uEsjj8Nq|Aa;95rLxULO*#Q15#-<&uQ9L?uUљ!y@=s%&* 2-)s?ȱtAms9,y,SS׷B%|VU&`1]҃"E3t +ˑY +wq!yn˯Ii/ߜujltƆ̨1Pn'y)X~80:f(a`Q#FE4 v`p'X'Tbg3>}T^*-p+qPjh ?jȬr)jg-iߓT4L7N؏]{&R'VR_mn:btƘvd#gfK Yar| 9|s>@0|2ʼqQ6e* yeJE&ARtt{:֤HҩFK l)~Hhle)r + ++['+kWp2(rmCQ#!kgĤ0#$=D3Ğ#ПFv^jMCZ)\0L1ΟBsh"~؄zZZj)vL<=qמ8MIc7iF'S*8D;%KYc4mtCɮ|~Q;O[,2PT|[:0|a*ѯ~Cp'e9ezsk\F4JU6_4LY`>|LS&yE\vxoCrr0F02^K>Ʌ7`6]i{~.ՑԠc$CRNHA&|*3U$}x5V }c}^E$ E,֫Q}Ϳu~>~o(&yA i+"d )A!tAC/;"K5Ux12̈ÕHCU^O#x^P$wUk CͣiR-NS\t +$DlR(x0}) ̜ 5( +{p=Qh0\D~d%(~ R(L)5C"MY+"yHd@6j\+ &F᨟h{L g%4W(_r*nI ?3WtlR0pcRNΣGewΜb VJC-{_=x} th^ @Ksv䱻R0(brょޝge$>Lc +3cUWc"F)px?-/Le;G| ;ع# ?|b #4:{[몢Vnݱ6Ae62XC*!#F? +v+i~P^NĤzi +]4(ZzXn6_w;`4> +Mv ޮe3ęc>m'3"ED + Ñ"[,ȯLLja|ěy΄LȻcn@*(ejqĂlHKuGM6t +;zZ_-=Р0<-UݡAtێ5ztgcɱM ~L+D7?6{6:q̇YNrﺥ^^u СQ^pEDG ZSw4yao$$ФGi}mTn4k { aw/(2N.> d#n:M}*INB]R%BmX'8]mpl{ANA'kA-l[R/JGƤjO"8oATIEѰIn_#~rڝegg5ƹjIq|!1pӆB hYJg>LY7I#zYNP~VP2HS(֤ޜRKYaJ%|2+%^*=Ql,VК1;Q4v}?:A_Q%(ݩўU29dc%Ϟܱj ~\ܥTL3DqUgj #d j6` >XK7(PeD0/;0ep%4:HosrMF9nO#R|24\w%DHڳrYZԒg[$bfج!#.L$_K6 lO,GUn +[i=h8.  +idn+j8B i1 +"'؛y/ nD#Eq@>:~a6I%yʁ IUni;75xD^d| ~يyf?|0bjF [a`a7*7ߦ:RFslV5HKMszY=OBޜ̬VDzݱd<Ew"X,G]Ec3ꬋp{υÕm>T{IlhY:G.yñypO;]ɲ% E0EQ*w%[%m2A/H֕fOoNBu0'Nl$UVkD7kaTu[=ʓk8&BfH0ƷRȗht?yZCs[p}⡶#g$Kr#y;Gn&БoIJ=q^ p:^wyײ$5\tТAwCwнײ0n-`W,o]^֊?rЛ/~4_4$)pPa^_a:'E$k>|a+Yz>Sț?*yי5z@xJ{q:A[H6F1w&u;[# 'ivKz(`.O\ d2eL,Hȷvۂ翥Ae6/(WjzgWfX)klStgp|xm=i!Ѽ=4["03. ᅋ dw5U-]yJ`Rm.@F<zD ++g5Y⶙P׊4Ws,L.a4]wks_ZAjy%n?YlNk6B2Ǐ)u 'oUݳW08t`O]MS6z",?Y\1bE"b~9G$}D}(z'2= HqYϸR5j?Ku*Y8,3ڍ 8 -S@fE~R6G_@З@D;i WJ4k6!_3^s涯[R0-,mIZ'y \Zh_r! f:HWŘ~bPhO[(:%56OGfKɎCc m5*[VMsJc]d,I S[&Q5ݳఠF|~Ag |)x +C".s?#u>cp ɧM|A _"!dḓX. ,uR=607}^IwD`ܦ!4Ѧؙb'?IB +:fr =MhIWH_9&zu?[i&6@)Oc|9lђE%u5$7Kl)*1K79l?̾{j:\XSDgvi4T>y1<;E"m%' loo5;j +*^܇0]t2ښ@_ vsukQywTD +QoaYcFw<5aM:@Db^tGy^[8BlIaM ܣǟs;oB!k:"ׇ[Y\a?@$짚q}T~Reo \/}e _1+m+|@ UЙ97=hY_Xg<Ӓ+}[,VBGc/.mMVdw /R)$qti?Ӕڊ6e<*̗<\wb)i >˂Jn";{c^Jrj?N TnIgd!cڐ8E=ۉ"ve‰<%46.uYe3 q)e)".o/ YiDQ\k.Q/.oR5Fct&h'l b̓=iV0o'䎭Ȭ6!9"F\NpL 6XN&3 wQkL'8;mnWd*aS3MLJ5=X&S_1Z^U,0ѥSlDrq ~/YbW詓l;d)L"k؏Vy57fctW!Un{Sͭ(-+,0\3юQIJh&R9*]E]S59-LPM ULv D1%MGx+wb#`.6(Q-[5amL C(ڑsNzcۅ6|kپ_%rlKTvqhɨ$TNT̍_0p淸O2 +? \|T~&) B/'s +rLsy}emq.dJg$]9;O-\] aRH eTA`j>HgE:u +)iz*V%" !M{y}G8*M VQO|WѓB1Snf /c3c a]F[Ms g1wfۃ'Na[n+oIp4ƥH!%Жw"IJe@)?#%[䔑@‚w舋hjPZwxt/준m ?>;֏Yoczf^WHW+Uzwfc}-?n#\[ZDNnMMg@U}AV13yóA\po+ƥ`#OHXj5ms ֐)asT#y' 4; +endstream +endobj +102 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/MZBXPO+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 101 0 R +/Flags 68 +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D7)"_ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\x +endstream +endobj +129 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/LSOSPV+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 128 0 R +/Flags 68 +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O NU M}ؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b`  +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185353-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +133 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 44 0 R 63 0 R] +/Parent 3 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 135 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 135 0 R +>> +endobj +135 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 83 0 R] +/Parent 134 0 R +>> +endobj +134 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 75 0 R 135 0 R] +/Parent 3 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 137 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 137 0 R +>> +endobj +137 0 obj +<< +/Type/Pages +/Count 2 +/Kids[99 0 R 106 0 R] +/Parent 136 0 R +>> +endobj +136 0 obj +<< +/Type/Pages +/Count 5 +/Kids[87 0 R 91 0 R 95 0 R 137 0 R] +/Parent 3 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 139 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 131 0 R 19 0 R] +/Parent 139 0 R +>> +endobj +139 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 138 0 R +>> +endobj +138 0 obj +<< +/Type/Pages +/Count 5 +/Kids[110 0 R 114 0 R 118 0 R 139 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 19 +/Kids[133 0 R 134 0 R 136 0 R 138 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +140 0 obj +<< +>> +endobj +141 0 obj +null +endobj +142 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 140 0 R +/Threads 141 0 R +/Names 142 0 R +>> +endobj +xref +0 143 +0000000000 65535 f +0000104065 00000 n +0000107220 00000 n +0000106865 00000 n +0000107070 00000 n +0000104229 00000 n +0000004048 00000 n +0000000009 00000 n +0000035957 00000 n +0000035773 00000 n +0000000913 00000 n +0000040818 00000 n +0000040632 00000 n +0000001906 00000 n +0000046141 00000 n +0000045953 00000 n +0000002823 00000 n +0000106970 00000 n +0000003740 00000 n +0000107020 00000 n +0000003993 00000 n +0000104332 00000 n +0000011621 00000 n +0000056197 00000 n +0000056008 00000 n +0000004109 00000 n +0000061469 00000 n +0000061279 00000 n +0000005055 00000 n +0000066773 00000 n +0000066584 00000 n +0000005991 00000 n +0000006967 00000 n +0000069316 00000 n +0000069122 00000 n +0000007921 00000 n +0000072700 00000 n +0000072514 00000 n +0000008867 00000 n +0000075513 00000 n +0000075322 00000 n +0000009831 00000 n +0000010825 00000 n +0000011522 00000 n +0000104437 00000 n +0000019704 00000 n +0000077608 00000 n +0000077414 00000 n +0000011683 00000 n +0000012654 00000 n +0000081619 00000 n +0000081424 00000 n +0000014270 00000 n +0000015222 00000 n +0000083527 00000 n +0000083332 00000 n +0000016129 00000 n +0000017111 00000 n +0000086184 00000 n +0000085998 00000 n +0000018088 00000 n +0000018833 00000 n +0000019579 00000 n +0000104542 00000 n +0000020400 00000 n +0000019766 00000 n +0000020355 00000 n +0000104739 00000 n +0000021286 00000 n +0000020462 00000 n +0000021150 00000 n +0000104844 00000 n +0000022309 00000 n +0000021348 00000 n +0000022173 00000 n +0000104949 00000 n +0000022970 00000 n +0000022371 00000 n +0000022925 00000 n +0000105054 00000 n +0000024021 00000 n +0000023032 00000 n +0000023874 00000 n +0000105159 00000 n +0000024712 00000 n +0000024083 00000 n +0000024667 00000 n +0000105439 00000 n +0000025754 00000 n +0000024774 00000 n +0000025618 00000 n +0000105544 00000 n +0000026209 00000 n +0000025816 00000 n +0000026164 00000 n +0000105649 00000 n +0000027125 00000 n +0000026271 00000 n +0000027000 00000 n +0000105754 00000 n +0000029659 00000 n +0000096940 00000 n +0000096744 00000 n +0000027187 00000 n +0000028199 00000 n +0000029498 00000 n +0000105861 00000 n +0000030719 00000 n +0000029723 00000 n +0000030582 00000 n +0000106145 00000 n +0000031413 00000 n +0000030783 00000 n +0000031367 00000 n +0000106253 00000 n +0000032602 00000 n +0000031477 00000 n +0000032465 00000 n +0000106361 00000 n +0000033306 00000 n +0000032666 00000 n +0000033260 00000 n +0000106469 00000 n +0000034326 00000 n +0000033370 00000 n +0000034165 00000 n +0000106577 00000 n +0000035709 00000 n +0000098358 00000 n +0000098163 00000 n +0000034390 00000 n +0000035313 00000 n +0000035651 00000 n +0000104647 00000 n +0000105345 00000 n +0000105264 00000 n +0000106051 00000 n +0000105969 00000 n +0000106768 00000 n +0000106685 00000 n +0000107152 00000 n +0000107175 00000 n +0000107197 00000 n +trailer +<< +/Size 143 +/Root 2 0 R +/Info 1 0 R +>> +startxref +107318 +%%EOF diff --git a/src/axiom-website/CATS/schaum21.input.pamphlet b/src/axiom-website/CATS/schaum21.input.pamphlet new file mode 100644 index 0000000..2c24de5 --- /dev/null +++ b/src/axiom-website/CATS/schaum21.input.pamphlet @@ -0,0 +1,720 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum21.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.440~~~~~$\displaystyle +\int{\cot{ax}}~dx$} +$$\int{\cot{ax}}= +\frac{1}{a}\ln\sin{ax} +$$ +<<*>>= +)spool schaum21.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(cot(a*x),x) +--R +--R +--R sin(2a x) 2 +--R 2log(-------------) - log(-------------) +--R cos(2a x) + 1 cos(2a x) + 1 +--R (1) ---------------------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/a*log(sin(a*x)) +--R +--R log(sin(a x)) +--R (2) ------------- +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R sin(2a x) 2 +--R 2log(-------------) - 2log(sin(a x)) - log(-------------) +--R cos(2a x) + 1 cos(2a x) + 1 +--R (3) --------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 4 +dd:=expandLog cc +--R +--R 2log(sin(2a x)) - 2log(sin(a x)) - log(cos(2a x) + 1) - log(2) +--R (4) -------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 5 14:440 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.441~~~~~$\displaystyle +\int{\cot^2{ax}}~dx$} +$$\int{\cot^2{ax}}= +-\frac{\cot{ax}}{a}-x +$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(cot(a*x)^2,x) +--R +--R +--R - a x sin(2a x) - cos(2a x) - 1 +--R (1) ------------------------------- +--R a sin(2a x) +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=-cot(a*x)/a-x +--R +--R - cot(a x) - a x +--R (2) ---------------- +--R a +--R Type: Expression Integer +--E + +--S 8 +cc:=aa-bb +--R +--R cot(a x)sin(2a x) - cos(2a x) - 1 +--R (3) --------------------------------- +--R a sin(2a x) +--R Type: Expression Integer +--E + +--S 9 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 10 +dd:=cotrule cc +--R +--R cos(a x)sin(2a x) + (- cos(2a x) - 1)sin(a x) +--R (5) --------------------------------------------- +--R a sin(a x)sin(2a x) +--R Type: Expression Integer +--E + +--S 11 14:441 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.442~~~~~$\displaystyle +\int{\cot^3{ax}}~dx$} +$$\int{\cot^3{ax}}= +-\frac{\cot^2{ax}}{2a}-\frac{1}{a}\ln\sin{ax} +$$ +<<*>>= +)clear all + +--S 12 +aa:=integrate(cot(a*x)^3,x) +--R +--R +--R (1) +--R sin(2a x) 2 +--R (- 2cos(2a x) + 2)log(-------------) + (cos(2a x) - 1)log(-------------) +--R cos(2a x) + 1 cos(2a x) + 1 +--R + +--R cos(2a x) + 1 +--R / +--R 2a cos(2a x) - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 13 +bb:=-cot(a*x)^2/(2*a)-1/a*log(sin(a*x)) +--R +--R 2 +--R - 2log(sin(a x)) - cot(a x) +--R (2) ---------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 14 +cc:=aa-bb +--R +--R (3) +--R sin(2a x) +--R (- 2cos(2a x) + 2)log(-------------) + (2cos(2a x) - 2)log(sin(a x)) +--R cos(2a x) + 1 +--R + +--R 2 2 +--R (cos(2a x) - 1)log(-------------) + (cos(2a x) - 1)cot(a x) + cos(2a x) +--R cos(2a x) + 1 +--R + +--R 1 +--R / +--R 2a cos(2a x) - 2a +--R Type: Expression Integer +--E + +--S 15 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 16 +dd:=cotrule cc +--R +--R (5) +--R 2 sin(2a x) +--R (- 2cos(2a x) + 2)sin(a x) log(-------------) +--R cos(2a x) + 1 +--R + +--R 2 +--R (2cos(2a x) - 2)sin(a x) log(sin(a x)) +--R + +--R 2 2 2 +--R (cos(2a x) - 1)sin(a x) log(-------------) + (cos(2a x) + 1)sin(a x) +--R cos(2a x) + 1 +--R + +--R 2 2 +--R cos(a x) cos(2a x) - cos(a x) +--R / +--R 2 +--R (2a cos(2a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 17 +ee:=expandLog dd +--R +--R (6) +--R 2 +--R (- 2cos(2a x) + 2)sin(a x) log(sin(2a x)) +--R + +--R 2 +--R (2cos(2a x) - 2)sin(a x) log(sin(a x)) +--R + +--R 2 +--R (cos(2a x) - 1)sin(a x) log(cos(2a x) + 1) +--R + +--R 2 2 +--R ((log(2) + 1)cos(2a x) - log(2) + 1)sin(a x) + cos(a x) cos(2a x) +--R + +--R 2 +--R - cos(a x) +--R / +--R 2 +--R (2a cos(2a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 18 14:442 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.443~~~~~$\displaystyle +\int{\cot^n{ax}\csc^2{ax}}~dx$} +$$\int{\cot^n{ax}\csc^2{ax}}= +-\frac{\cot^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(cot(a*x)^n*csc(a*x)^2,x) +--R +--R +--R cos(a x) +--R n log(--------) +--R sin(a x) +--R cos(a x)%e +--R (1) - ------------------------- +--R (a n + a)sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 20 +bb:=-cot(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R cot(a x) +--R (2) - ------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 21 +cc:=aa-bb +--R +--R cos(a x) +--R n log(--------) +--R sin(a x) n + 1 +--R - cos(a x)%e + sin(a x)cot(a x) +--R (3) --------------------------------------------------- +--R (a n + a)sin(a x) +--R Type: Expression Integer +--E + +--S 22 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 23 +dd:=explog cc +--R +--R n + 1 cos(a x) n +--R sin(a x)cot(a x) - cos(a x)(--------) +--R sin(a x) +--R (5) ------------------------------------------- +--R (a n + a)sin(a x) +--R Type: Expression Integer +--E + +--S 24 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (6) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +ee:=cotrule dd +--R +--R cos(a x) n + 1 cos(a x) n +--R sin(a x)(--------) - cos(a x)(--------) +--R sin(a x) sin(a x) +--R (7) --------------------------------------------- +--R (a n + a)sin(a x) +--R Type: Expression Integer +--E + +--S 26 14:443 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.444~~~~~$\displaystyle +\int{\frac{\csc^2{ax}}{\cot{ax}}}~dx$} +$$\int{\frac{\csc^2{ax}}{\cot{ax}}}= +-\frac{1}{a}\ln\cot{ax} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(csc(a*x)^2/cot(a*x),x) +--R +--R +--R sin(a x) 2cos(a x) +--R log(------------) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) --------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 28 +bb:=-1/a*log(cot(a*x)) +--R +--R log(cot(a x)) +--R (2) - ------------- +--R a +--R Type: Expression Integer +--E + +--S 29 +cc:=aa-bb +--R +--R sin(a x) 2cos(a x) +--R log(------------) + log(cot(a x)) - log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (3) ------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 30 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 31 +dd:=cotrule cc +--R +--R sin(a x) cos(a x) 2cos(a x) +--R log(------------) + log(--------) - log(- ------------) +--R cos(a x) + 1 sin(a x) cos(a x) + 1 +--R (5) ------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 32 14:444 Schaums and Axiom differ by a constant +ee:=expandLog dd +--R +--R log(- 2) +--R (6) - -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.445~~~~~$\displaystyle +\int{\frac{dx}{\cot{ax}}}~dx$} +$$\int{\frac{1}{\cot{ax}}}= +-\frac{1}{a}\ln\cos{ax} +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(1/cot(a*x),x) +--R +--R +--R 2 +--R log(-------------) +--R cos(2a x) + 1 +--R (1) ------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=-1/a*log(cos(a*x)) +--R +--R log(cos(a x)) +--R (2) - ------------- +--R a +--R Type: Expression Integer +--E + +--S 35 +cc:=aa-bb +--R +--R 2 +--R 2log(cos(a x)) + log(-------------) +--R cos(2a x) + 1 +--R (3) ----------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 36 +dd:=expandLog cc +--R +--R - log(cos(2a x) + 1) + 2log(cos(a x)) + log(2) +--R (4) ---------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 37 14:445 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.446~~~~~$\displaystyle +\int{x\cot{ax}}~dx$} +$$\int{x\cot{ax}}= +\frac{1}{a^2}\left\{ax +-\frac{(ax)^3}{9}-\frac{(ax)^5}{225} +-\cdots-\frac{2^{2n}B_n(ax)^{2n+1}}{(2n+1)!}-\cdots\right\} +$$ +<<*>>= +)clear all + +--S 38 14:446 Axiom cannot compute this integral +aa:=integrate(x*cot(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %I cot(%I a)d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.447~~~~~$\displaystyle +\int{\frac{\cot{ax}}{x}}~dx$} +$$\int{\frac{\cot{ax}}{x}}= +-\frac{1}{ax}-\frac{ax}{3}-\frac{(ax)^3}{135}-\cdots +-\frac{2^{2n}B_n(ax)^{2n-1}}{(2n-1)(2n)!}-\cdots +$$ +<<*>>= +)clear all + +--S 39 14:447 Axiom cannot compute this integral +aa:=integrate(cot(a*x)/x,x) +--R +--R +--R x +--I ++ cot(%I a) +--I (1) | --------- d%I +--I ++ %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.448~~~~~$\displaystyle +\int{x\cot^2{ax}}~dx$} +$$\int{x\cot^2{ax}}= +-\frac{x\cot{ax}}{a}+\frac{1}{a^2}\ln\sin{ax}-\frac{x^2}{2} +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(x*cot(a*x)^2,x) +--R +--R +--R (1) +--R sin(2a x) 2 +--R 2sin(2a x)log(-------------) - sin(2a x)log(-------------) +--R cos(2a x) + 1 cos(2a x) + 1 +--R + +--R 2 2 +--R - a x sin(2a x) - 2a x cos(2a x) - 2a x +--R / +--R 2 +--R 2a sin(2a x) +--R Type: Union(Expression Integer,...) +--E + +--S 41 +bb:=-(x*cot(a*x))/a+1/a^2*log(sin(a*x))-x^2/2 +--R +--R 2 2 +--R 2log(sin(a x)) - 2a x cot(a x) - a x +--R (2) ------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 42 +cc:=aa-bb +--R +--R (3) +--R sin(2a x) +--R 2sin(2a x)log(-------------) - 2sin(2a x)log(sin(a x)) +--R cos(2a x) + 1 +--R + +--R 2 +--R - sin(2a x)log(-------------) + 2a x cot(a x)sin(2a x) - 2a x cos(2a x) +--R cos(2a x) + 1 +--R + +--R - 2a x +--R / +--R 2 +--R 2a sin(2a x) +--R Type: Expression Integer +--E + +--S 43 +dd:=expandLog cc +--R +--R (4) +--R 2sin(2a x)log(sin(2a x)) - 2sin(2a x)log(sin(a x)) +--R + +--R - sin(2a x)log(cos(2a x) + 1) + (2a x cot(a x) - log(2))sin(2a x) +--R + +--R - 2a x cos(2a x) - 2a x +--R / +--R 2 +--R 2a sin(2a x) +--R Type: Expression Integer +--E + +--S 44 14:448 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.449~~~~~$\displaystyle +\int{\frac{dx}{p+q\cot{ax}}}~dx$} +$$\int{\frac{1}{p+q\cot{ax}}}= +\frac{px}{p^2+q^2}-\frac{q}{a(p^2+q^2)}\ln(p\sin{ax}+q\cos{ax}) +$$ +<<*>>= +)clear all + +--S 45 +aa:=integrate(1/(p+q*cot(a*x)),x) +--R +--R +--R (1) +--R p sin(2a x) + q cos(2a x) + q 2 +--R - 2q log(-----------------------------) + q log(-------------) + 2a p x +--R cos(2a x) + 1 cos(2a x) + 1 +--R ----------------------------------------------------------------------- +--R 2 2 +--R 2a q + 2a p +--R Type: Union(Expression Integer,...) +--E + +--S 46 +bb:=(p*x)/(p^2+q^2)-q/(a*(p^2+q^2))*log(p*sin(a*x)+q*cos(a*x)) +--R +--R - q log(p sin(a x) + q cos(a x)) + a p x +--R (2) ---------------------------------------- +--R 2 2 +--R a q + a p +--R Type: Expression Integer +--E + +--S 47 +cc:=aa-bb +--R +--R (3) +--R p sin(2a x) + q cos(2a x) + q +--R - 2q log(-----------------------------) + 2q log(p sin(a x) + q cos(a x)) +--R cos(2a x) + 1 +--R + +--R 2 +--R q log(-------------) +--R cos(2a x) + 1 +--R / +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 48 +sindblrule:=rule(sin(2*a) == 2*sin(a)*cos(a)) +--R +--R (4) sin(2a) == 2cos(a)sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 49 +dd:=sindblrule cc +--R +--R (5) +--R 2q log(p sin(a x) + q cos(a x)) +--R + +--R 2p cos(a x)sin(a x) + q cos(2a x) + q 2 +--R - 2q log(-------------------------------------) + q log(-------------) +--R cos(2a x) + 1 cos(2a x) + 1 +--R / +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 50 +cosdblrule:=rule(cos(2*a) == 2*cos(a)^2-1) +--R +--R 2 +--R (6) cos(2a) == 2cos(a) - 1 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 51 +ee:=cosdblrule dd +--R +--R (7) +--R p sin(a x) + q cos(a x) +--R 2q log(p sin(a x) + q cos(a x)) - 2q log(-----------------------) +--R cos(a x) +--R + +--R 1 +--R q log(---------) +--R 2 +--R cos(a x) +--R / +--R 2 2 +--R 2a q + 2a p +--R Type: Expression Integer +--E + +--S 52 14:449 Schaums and Axiom agree +ff:=expandLog % +--R +--R (8) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.450~~~~~$\displaystyle +\int{\cot^n{ax}}~dx$} +$$\int{\cot^n{ax}}= +-\frac{\cot^{n-1}{ax}}{(n-1)a}-\int{\cos^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 53 14:450 Axiom cannot compute this integral +aa:=integrate(cot(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | cot(%I a) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p81 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum21.input.pdf b/src/axiom-website/CATS/schaum21.input.pdf new file mode 100644 index 0000000..63365fe --- /dev/null +++ b/src/axiom-website/CATS/schaum21.input.pdf @@ -0,0 +1,2068 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZERBIC+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ITPABG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/JUYRJU+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/YYZPBL+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LTVIHX+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/BHBTKJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XUEOWF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/UGCUXL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/PVLQNM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 622 +>> +stream +xڽn1 } +mÈ.)k}jC.6iWҬxq$X?.24CYٹ(vzq^vo/6oBۯr}8;W]`aJŘMd\EkMk@H $\`@-׷m,FwFlՁd$B#1ļ倫 #0b#,uN+EI[Q|H+^.J?(yQ~IDsQ\,jQM(U;ղϠƚ|4 +U:GdzjҚ9t5r=c40C"H$*q[hnf?@UgҦ:leLMbR'r͉^5#9%,:_`[eX)/xΕ +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/BYHWHP+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/UKYXDK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/JDEPRA+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/XOGZIF+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 672 +>> +stream +xڵo0+| ]mlILkM;EJ "Ac V$g s | oŤ"9P1 (x!> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 285 +>> +stream +xڭRMO0+Xb,у7@" _M_.]]ͼH3Ρ Ҭf:! +ޣRpND &!"x.fI÷w\pbK>[@*T$!rB9VEkw-/_LHb:0m_ǟ=q6Q3dk=$mr\e[﹢g%k󬭻ʎwm_Un!ϗuk|. q)oJ?`BN*9cs +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 686 +>> +stream +xڵVn0+xp7EM8) jjEԿò<3ٕd€1rO|O/ +"_pPcAϷP΅Nn QJT,F{]V.@bHviRhpuY,*N~tK=tTM_QJ 81DJ"0%m> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 300 +>> +stream +xڥRMO0+zƴ)mMcv# 5Ip |zc~W7m4Cשn:APb;.K!!=:I21MUF빓:SQ}?$ug ߏN?GN1X_޹. +endstream +endobj +74 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 775 +>> +stream +xڽVMo@Wѐ"qTƩP"Q R؎͛ORHS⿷|rP eFՌ >O :SB)ɭa .BX +˧5@ZC$k ,2 ˸.ҚBf8˱xL֔Ԉ& !$薢p6b$`Td+B2^DhJ"EiQwNS +I06">J͜ZHV Dƾ3qhrP +Ȩb T2!M7 ToYg,Zrcr'zk1'|C*TIli֍Mm;3SjNn%Pu%ٷH-(Tu[ehþȨ^;s=qr״~eNC"(d?0y|Y^ߦ)>tYzBJxI*(O:CNKH \-檴W 2?GQ=gC9#dP oPG1V:M&C1OBGrjZ ?n;i:}05nb: 2qllhԞVgoJiUFn- ->vf4NVwTcμgE oHѝl\p*9^.ֱ5\t!ȶ﫞ӓ4te]>hKЅsΫ_݋ +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 485 +>> +stream +xVO WpQ:ʒ]h<òĬ6若u][ئ1Pʏ}8́mu:% }i(Ho!B0/$A: 3,ߨN*3p!sn֛"_V|\(|*ZMG[]5ѨAÌ60 zѫXC`PmG[qj8c6^lү[o)ϻl8ԯT#j%s3GZN7Z{Yͪ5Uqc28m٥/%IǮ5Ʉ!O\E!jAMIISeu$ ]NId?=j%D8ҟزдb{Uk[8u>on8eSoSkBt-!n5]f\e?(Whnץv2&È0IlĂ_+d +endstream +endobj +82 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 344 +>> +stream +xڵT=O0UvKlǕ@0D J@ +z83 1پwm(c(ErnHS-QFS@@ &# A="T9PR UY]&؅^1toԅA*(v~Q=ңM@N9o3^&Cǡ1>#21=C7.v_機Q !ȪBp53:o,0|yg\v ;<Xr|=$ś4Yw2_j]|1SY&60atqԗRQΣ; +endstream +endobj +86 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 773 +>> +stream +xVMo@+d'z)DHÅ`JVI3xk|iͼLUްWkͤ33l¸mc.%&ѭQ*[6́3"%+Oa +U"(bBV:v4)Xd 8"\%2~<fN[*L!8La)I/;R$& I0H +^юpQ) eXt "exޖ$AWq#؀$W`U?o%SlN3ԲNiA gW`lX_kO`bP3~DՂf[ S9%S) d{a7wbѐoSA6aҵbcc- hUHGK'U o}49zM*W+զȷ1Oo6U/\M}(]{֡|6_aOFCߗ/u[i)G(ǎhkI=0V$BU!5wrOE_b8WOV Q+5]#> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xUˎ0+dԚƏ)VT 'EJ J5ؐL6Nn|#b Y>xw}ĕ A]A+Dh N9YCa:B͜og".9 !7_+1;k3I0yRz#[HjpP!^ouS +Uinٺ>vb-R-ޛF;dVI_is%ޘ A8/CY"j 2w?#ddqzy gK;i?FLQKDX΢йc3\;px7[;46j]44rB7:J8gw3H9-Ny>4})In!u2:==%CÔj[vS{?p=i2^XH7a+ +endstream +endobj +94 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 779 +>> +stream +xڵVMo1WImh]R01EU)j{U"dNIgHw= V -BݑZI + +TTo%cn HʼOT,gRc d-6SZlk)iT-#+},p)y~/u{he^ˌmZ4:? +,A ++(.: /WmN#{U0VoDp^f!74z,r%oӡtdz%Ɠ|e,l]<͆_|+ۍS}mVHjCIO$]r7b>DӒ΋&*bm o.ӂq!c83 0QeStN}ߵK)HrT}ެn} ]@+4 Qv{_M\{QP}r2[SNzMUNJ祮ya˼ЍX,Ɠ,;;KǙa/0u }W|e3DOl_x=LҚ GUNR:AQrho]ݯ2cM( oI +endstream +endobj +98 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 399 +>> +stream +xڥTMs0W &!!ŒvvzRn +2N7PQg.Iv߾e_D;؆mw1Ȣ-Ff> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 692 +>> +stream +xڽVKo@W$agaKURꩡ9,H"wkƄR|c,V_>b@*6 BO fpD=>\Rz0<5,ܔ,[*P4mI*d/kdh(aN&̰_(5}r#]˳HI%E:\:ՉWpxӃ̔;l.Py26MLO?/w7pj֊MuFcC{.H, +u&PHsFO'f^whl-03L=Vڴkr˸3~Dǂ{nX,Fn_P6%C8onxG%VDG/im[SHUh?. +endstream +endobj +106 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 883 +>> +stream +xڵVKo0 Whv;ÊCwa.w0 G7ǏlGlLȏHF#| WӋ.Nwb85dQd>ɲiƕ."6H8.b ϧrf +Tr]=mfo׻܎_ k0xFˉ*s)@Us-ؒo-lzZէvU,ʠ0NJPIDLL@ AA0_z:O6x'>ZU,zjjxs^ȖSԺx!\ C8PA@6rkto8UT;oCwDu'׃gİbH4T3aW;v'= X´ nJ`.W<(]Oˆ/~NEs6Og˲6kryb&;ǬXq][ͪ~[,IQL.̓ '[gUBr2(:”};?vOnon[jS`;b/Kp/kܓc;[Jxdm@i_5[K@2H +endstream +endobj +110 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +115 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 114 0 R +/BaseFont/MZBXPO+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 807 +>> +stream +xڕUKOA WL`ġPcI/e9DBj*׳}D._g{2`]Dm 8!BmaIB.ߘ0?.gTL1\sPQ@edbá$wtNJbcb Rs\2RA6R!ڣ Q{ 06a`mY`ڕB]`zG=ү*&}4i|[%j4kSBڕQaL\4[I{ e:Qi"0GZaoF˩M=J[c]M6=<`b_y Ѷ7fjXiW׳ juj`ckA 8X85ڦŖ$6Ít$8a_c;SJ#S겔%)2."؍=u`kT7G]ʙJ[ ~ zxJob.{nY#sw,W<[=>dfLJe_di.$ 㿘TH[1Yhv8{[=TʪEUܬE4s#rݜ*jn]t"edi9lVbr{z^/RG0laK$5M^$?;+0k +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F8 38 0 R +/F9 41 0 R +/F14 115 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 831 +>> +stream +xڭVMs0WhC%,Yp4dž^'3Ҕ +LJ2lc I}6vǘp9y |IE?djMlJ,wcD)w/kM,ڹ`B̻|İ5f0A8poo]֧ɘgDO4Yc&L-g:G6i36QNL"$|k>IfͬAN"f[LHBe'<tCIeD;|ά3{r<"F.!K7^"7O@z:iSH1]68e[ 6:[kWq|F]&<.SC( ҿyY&-m0II<gϺ! 4ǹw=Hstd=;|{l2rWbg{XW'Ft f mKʡ0-3,t#x̄Δ[ǖN{\bpza+5 QPM٧/:xRt6{֓/zu6+VPڋ /7m'j70՗ɻ؊ +endstream +endobj +121 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 374 +>> +stream +xڵT]O0}WҖd71>8I%0(LesXȲ@ += fKly9 w4_ c,:$2LFlBC- +< X䍨wMgxVT"2>uV웘.uBHE/ VEcIESFE$Scʰ|UCkG:4e9\{-'ƍA|!X㞫.= +?w>Ľ <<`S*>ZmڹW&yK+!oŸ2/עyUoIuaۆtU. +̖O+fN[$ +s\~S +endstream +endobj +125 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 939 +>> +stream +xڵWMs6 WhM? R8;iӤ]V]&$I6C֫9 zTu8Mr1ϯQzYl;QTNl_Kvu߇FPBBrU\,^B~csQcu}I z&ɺXN NYK5ѳkX siQ|HqgDA,۬by^vt5z>E'k=]So=r YFI4Hb3 2M:jw4FVyC9GQjlT)(! r=cQ:Ȼawwoo?0@Ss?Kc*NϼT:`;11&[̾vw|lOs:W;_3%paW?$M +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xVAO0+zkq7IH ho׮ Yڵ{}{_p1=܀7" }1 caAz +!}W[vͧ]^}8 _oj]l6|.ދiv"BY+-c^;+W2H;Y`*Qr' +L1dc͆9yuo%z^uEvPDrlZyP3ip/?5  +@ߌrsÒo-]P4;Q]]ftxj ԉa%ƸGUysNy5Ƅ2(᪨[Pvyneֶ]ApܴP!̥7V("gJM$rU Qug^!`^DsG8"&@Ѡ(K'%~-ADNOP 2ߚBSChM; ԯ "q?/0Ua0I)5];L/" +endstream +endobj +133 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 757 +>> +stream +xڭUKo@W%aK9jRq/ DXk;*;.ria7dF 4a$h2y"a$"A}#F .ÇWBI$-4\<6qmAY)b| >Ԁ *y7⨧hk3SNyX"m"m.=OW.w?g%M3dt Av^tSN>neS{t4bu͟UgVl?;Nuwdr*QI- 8Zj5P4\̷kg7 ~n;d\ ? +endstream +endobj +137 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F14 115 0 R +/F8 38 0 R +/F12 56 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +142 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 141 0 R +/BaseFont/LSOSPV+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +143 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +a&ZNT)@\X#CUƸ0 pvo0*|Cr"GW޵9ۤ +h .'> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 144 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZERBIC+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3966 +/Length3 533 +/Length 4517 +>> +stream +xgXۚQ)B"BS*b  DA" " A@zo"J*=5̟\?zֽPh5 ȁu PD Uƣ  @YYn r2r/H;@]P XvD8 qH % +@ nh% +@ I=DcLX;rwƻDN^  u뿡{.w9[qŝƃtp(4wl:h]  a M F1CGcQ5?U i( Il,_ԐYE`/כS"q( dH@`Q<_¿CݻKAR c1h  J"x4_v_A=H@j撍 #Fܭ$L]j'rѱGa!qo*>+ӑnqUt}@ }/[z\K"Q}+nsۯ2gd $B4>P1RhҜ&rZpROnwi$s.$HlSw~377!4;/~}"ܤXRH*2LW,pH|"n%\&(?=X Ί]~)Q)Z-{ڴRbr=O@D=Hib؝.O(0Dh꺩{etP%c%zĊ]JzⱢo=CF|+]6L6 T]o³RT(:c)N5l$Ɍ'StПӿ 2֯A1AI$ODIx9ͧ_q- +^izOZzK3+LGsסp 7DQSOXX.!Erbk{%Rbk-m@ bn}cJC.M4ΙW&MeN *1Xtz9zg> %sIpMJ?3K2oón7P`Az!?e2r$GB"Kϥ|0%RH?>;<,icŸT`nErmDu` 4 ׍ܠC]麛q[9yNZ<:oE~{W|Y7ldADRzID3pxqHa|c1KvZϞۭk+If&t9R Lօю@kҮe9MEiy} + +ZJf?j`_ +5@a5hcrK$%WRnpYiNkp1Gs᜸S|8\9ďU辋Փisc7qb)Ժ}2JR aiǠ7^`xpN.)7Ԡq,H04d tecn8DJYHdr. +w)p0V(:˥ +&紌'Ua'J7[:JV1!5Ζ!kc?6^amuC8%C,otbrezP3qV4'ُVϮCJN?sH< CB g57Wqrzf@.+#%Fng \YfM旑a5֪WFydwc~jqY]HUPb?u}j $ %y]7/KTVݢxW6:UH zhyS͚cW*>gYi'}racӳt]~Y6J˰`0N׽~ +R<8Qk0}u+D8HR z8XSF/ɀKG-:!Wu/y ϯ(j4ɽvc6Ou\@|6z]܂>O̕x.+QEkH1axU#$ OĨZ"2ѨgwqsHy PjL˼ v׽价ׅ;z7lz;RDn%&\iB% PvFR^;prQ1f77~GSe E^m$qZ-g>'<[(t>̲_ t {7*#zo\z3l:SxKFLi٣a9ad +6B-Ϟe-KMO[,-tOI41P.0 +5LmS=<'fF ݫ [p?* qz\wC~btIMfs>]SM}=bef$ \u Toy殺H_``mPQ(F:2k:EGUG49w%0"22VHuTAY5%r?L^kpyi^6sueaK4k~9\ c=St>U8ےK&+8x|M1a~ic͕_ b䪋vukZ4=bUF:X}_NJ|icFm | Ao o,Gdܚ5\cXPj/~ } @:! ~{Jѹp휣-/Ŧ6,K;ޤFM-J{ل3:g'\7nz8*)/tvb2 a}xű}Ǘ5[BUrf1"G֋O pHvHߟZ@*@A}}AIGSCeEq|G`J0=PUQ;5Ǵڬ6)"زݫCM dYKοe',p$~k7 FypJ%1k L"gг4ݻbUŹ }3u Z2š2jI^f>Sɇg[~ln\/ւ96ȶjJ]DțϽ46†&YpjpVȣQo>"X%% OEV[a9&%'N9PeͲzFEx|K܉L^_}pAz}$JR +4-to뫆j5)螯;c3U䛢m');L.N}84BDi<ٲhruTs8Ʀ`a'~@DGf`lۡȐNt]VzA*2K ?dܧ ۟x;Kh:0v%n:niX[!T?I i?Ҹ_>; ,cEl'#֤Ïߏa6sNwjQ> pG.3ٹ&7#\TS TrlK##%qlNiq̪kC8ǧ9"ϟV0b/]`s]wMը4gizcdz|aJ2ox9З ny0c"E3?AڍGx%KBEgkKuu|!Ply2'gtoMnR_xW':+#ȿFl/Id> ͱKhe]aq̾`UoiI +6Y_~:h<˗j=Pd=o6pt{͉bSŪuK\+!IJvdNH: (7]$KNRz߷%y/ 5n; "jI%8"5?{!^_?I{3l 0Ax3+87$f=YofM`ţfDcY7I6W#4uQRāMyiﵖ'#:;fG8w +ІJ40Ƌ[q@˄?> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5021 +>> +stream +xgXS뚆)!HU0@ A.Mz[ !: =(HQ:RI^H,ޑr{9s>g7׬zYwZbч#He,I` ť莄{pO$&!{9 }{PQ uqG98zxp](;8tDAX;GGAz<Cz ݽA !Pv [ +I c%#\F{D`1hi P=\ ֆǜ wA}ÀuqD;Vc_lZH]5O8e'q@#Aп$2 +D<ApOADR3БWPԁ0>g xQ89T +6^fJ;,q{1;_¿C)(`q~{" ( $!.W!T{Bb"v^H_GCSQ6uMɢG C=;hI:STg:I'wdZ:||Xg}K%1ː*3"-dty "ӵyDw`4،T vJ5^[bftL>et.O^A *UM>Te :XXVU L/v6RgfYIj<>yDʽĮE ĨHR#"f͑D$n8_I l[.bCcɕ{(wN2i,0揵LM$%?c(mh+tsN_Q<=!Ƀߝ. e8 /+J يSs6f9o,JiED^1YMǾv _ 5g-ra2.AF>9e;&d;?~gNETOD-`ŲM}ݝl iLiz' +O?O21ZY5ʱ9]Kko37QHA%Y_qJ-0Ϝa7 +z*_*C"1F>-ͫΤqޚRpW]ן{ޫ먰`Y}Ыp<4k*2ɐHeQ!IxWy^RZхWZNmA\` J 'S[ j_DRPbq.INӅd}L7#MtGq.yg:1"?ŬbO/lGN1s 6D~ӝkL1yrgqm>r%MZc";zds/>yc/D2gFgA+vDzca`~G w#m2,'{әȰC2m1pIǁL[$gs( x1×j;f#E~늿 |`sU}s/}r<<nIVg8nhgnDw(a^w* ҆jq^fr*Җ1aNyq +ޏ&%:DT]d :be;Vgxc+p9<M3YJ]jO#_KoqQ=` _4bii6g@Ώa.?5'qM^<\rZ`&]>[5q}<۫/F\$aʔN! sUkDie+x۬ANeM'uR.\K8?r-[TIyg$e dD^ J +}4d%%>yWQ0&?[Al .'3;{hwWN:9جqQ w0\[-t-zM"&^zgu. h6| u'S6fptr+EؔF0E:j*t-áL~bNV)ʆ euڟS $i$]6 s +,Rh"veG sր'Pokm3ƺQ iv ਏ?ml+'8K>Cj`oPQ!PnUk=ieg]ʉ# +%[N簡PܞӚj@+Akj#]'[%kf4tt!զJݷ}>eZ&QJ|R9ͧhsI>Ml * ٴ6d\PWs]R_0Xk#~G#b:Gd-LNqX+fI^d 8p:1qc+;_Gg +t-_ +2L$4 oƩEa\ +'#H؛pj2]!Yl+@+4Ħ( +o(qt5tΖ^^xJ̦8xVǤw{WiVϟhuvQY@-wfGq3jtezUȫǀofCbn$LhUNHu@̙+ F?.C$WTRxYTqpr -fnƺB0/;O\IYq jm^W#/ܸٞZx̸R-Qh** PKR=~y([\Βf׹+bzDŽƊ.S%s9ķMNv8 =89ЇPb02Tb2d\i)W7;肞Wa~+y 7#kZ]_~ 4}KS,%·(b(-O2?_q=CA^ɰ'!A@v'=]u8ǐ29LA Z`*@| az}KHwd52>P ff:H7}>Ԩ~C)CV~oαWS +\h| K`Z|A7FvyޡG#/0qdپ':~Ēp}0(uDFnC^8OR>YFݽ]Goj!ϩḨ]|{eCxe=`cSKIM$& Jws D!ߣw 7P`IT԰q :|i2a8gBoGYuQU y졦_ + %Q[!Q/r9(Sa"ZZKX_q#ZDERV"742$VR)'~Dry՟T#e0P7[;Kf}\m̉m +Ջ) |. Z'&PyA!jD~Fb~^M7hV7pk}`zc y\ ]r}p߁cKdQt-,MgC"M_OVAĊᝉ}ʛĥVF|"YX_+D(ЅGgDH5m=R$$+D3?C9lp3}-ξcS_3 muvXycC` +$wu#؂V .{28ljɡK˭mU_#2G`:r6w6 H_wad@LG4 #߳30 n~ǎrsph%l nP"s{-Ul RcK`آ^?C3*ɾo.k ڱ7OnLj))cL4v,AE_9]opd |y.;w5/S$a8o⸚pigFb;u-XSKJ+F0VkmbAI97W,8|3g1ȏ8 LWoN͆sQ=ћVUntlC"׺c"3'S驢$NWe>jnG3ȸ,ȚՂ{w¯> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`&eWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-L +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/YYZPBL+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1RV6U`(,*__otpuZaXĿSii%F2rLZ^_(/_MRWz{#;.D#PKs"S V"c1a*hթWA5=  S9ʓCE*kSS߶ָu [9S43y5A==YN^(>:GiHL ' 攏{pZC71Yc78R|zU>߻|ްV57wP曷i`բH?;/[t8f wGB|Xm+jc}t̘zm?7+l$ʬ;۳c* +-eH)iLo!м{mӻ6L=&~URwmD1Si.+r}A8C'yF!hȁUN}bq,T@ +12ϩk0M8wl9J4]#u)n&0'hW؂0" aQwVg^J{5ĊnydT-*v}DP0`kD3Ptڜ:r25k|a6R鞎9kvŵ + J餎xQO5J+_B$߉U'˂(ݯ@y3BWeqj<^n;N-y+PEiɄ9l>ڳW+!]f[k`bkK"zLmq \MmT@=‚RjQ6ƖƏ}`<$څw@[VZC3(@ivK%(Q5~iebfvsh7?H[_]uNMQ}`,w,W#8X>1eQLQhޓA`\`^hw?ktا( +=W]çTI*4G81]L]-^:`_yEt}K7Eݐ p/ٝK^ͭ`EM,?'n. gQˣ*M@ޗuE2K٧n\8rt~15ra&x?85rۿ\#˜i僧Qg8cv N(XFN˽60v_TY^<+ 淧/7isJo욱0mF}&?12z~|zƃ:4';a" xSI!zLt:%!!JeK÷`cm˄&ͣ H CzanE^&BH؁ "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qmp?q43 oc6s,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%"&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH9{k(a2x^+nK x^7yEʐԠ =![թ>#B%F#j!a3Uݧ'X#E! i,J)"AKE2~ٰ@ U(?Qv.t\>f:E !z|lNٍt.?¾, }Qj.`TgAV[52yQRQMV;A,O:peKbҮ˫_ae13=~ 3b1׾:.VlMo"Hq*8oBez@56C&KjKVl$͵MW<3B9X -+Ɗ_b }]x@heL4{6H|?$NTlzsɗxڔo|*kdi~[J2U)ĵ^ Q2NB8C~(YmьɉС/1[yc>Ҧ|s`.v(ΐ4>Ư~w(EjW | 6:C2EpJb-2Pðp$d> Cϸ{j9fЇ$Mկ3VҎwUr0Ak&>CWEM&eY3TY?= +9CbJ>+Ey.Sg<YY|mdB -L`|Te=7 )NUGF>zF$Ʈ +#^3t7$ mOsl>N)?^ےZyBOR&~k?l.C٬eY@H N|[jSK*F_sA +F(XP 2L,8Qh +Nƌxҿtbr u9CuK+QشWc{_>ҏ_ؓB5/Wͨm6cc+ӣXN9-H`ғRnXVY5892zIH$ZN(|`}Pr;&B~ӟ8A+VJ '\aF+J+F7nK?c{ g*<|P`u7פA^e{kև *h[o657-1Yuhق?TbgEy"<~ ؎h9_)7rVj%&%aXq#*a+8w,|툁GlI)YU75Y#Y>4Z\ ܷ:0 aMsiݦS82ȑ^)%yA$ Wo@qE4zghi vCxuz,D%͉lse֑*m +dWp[!0bPI^(: ȳ%0b\zqlIrL'7ņOkJV!􏍋_ZmF\BX:-3&RoW#Of#κ(b[3|,%n(jNB, >g/gNgbYKF'$~R6Rc :oe{{H4c`/,|kF^ڔ1K˾vsNle. _FY*Ό?=|קT*Cvi)[[ T +7'j1EiRÆӲLrz'z,Lb,h/;6f{ݧ]caT!:A'芶DBg;]vET$0X (U?Ym MAp!yeQ1lKD`Kv(eCpd}Cɶ}Sj=gbQ2%Y2p4a`[ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/BHBTKJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2235 +>> +stream +xRgXSYf2:@J7g*AHP M!D4% H e E28 Xd3g9=}؁H\41<\Q 2A3a:τ0 ( @0h4aLaN{7XVb< 3C Ht 19&@^G/(bD@D0 Cd0p6"_ѽ&Np"DB ׿+BQSa +N c1!A'B ڗT?9_X&hd +[p+̆0phш_%i瀻᧱~D=0 }FĀ1P0JD}wǿͅFa@[XxA^QL#Blb,L@J @3#EY <@$f0L&o!9a? 2O!a?Q̟k, +!"Μs9.+BbGY/}Ӣ&S:TO➶?KYTZ>KPOcQȱ ܭtVcm6 /L-!=ArweEFEPz+\Mp9*5]X ϦV$&Dƥԓ(ԝW严BTկ-w~j٠l9 ?5׫T>8Jަ{`<-:vu iВJ kpjԾp`Xko)Զ5~ 5E>bwDn1ϟۏQ V(qpw:y)KnmE2Vfk*5^0b17Gm@%ZPq-Dtv^+ }pݲ}VtC,W\iҗ! *#%١h m鷦ZkWhjm,yc.J~ē9TX3).YіeڶiJ~H,3.ՠ7=?ܼ$dZ=Fnilو=qe0>V,XPqL2!-Wբ'KP͟oRJ?fwYޑgb?[os}oQâQoq![ިq3c!d<k>QlTiBIe֪ʃLGJR.b0@yi-8UcF{qe5KDcin۟|= 5^o_-`V]GOda.ΐglVI i=Á]?W6U5v ygjE]bopr}|blyOpR&[?B1ϙ/}T5}E%C&-$K^ZwlH2C+)7Ôknk׻&Y}3r))AmBXɺ/^۱M[Pkmx+nt2Gn9M:B۲j0_Сu[}r lGq=]/yZF'Tvs(cos2otW$u]M{Oܟ񟺪>ɽp0fY}WH/q;D&yi"tswKҧ^]nNtϿY?clBAF'w2T?9Uߙ-FL:8@ԟ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/XUEOWF+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2536 +/Length3 533 +/Length 3084 +>> +stream +xk8X49c*4˜d!"5f^LïA吖q!%K +#%9DZkk}o?~u=82X( + X9;ۣ[1A"BYY @l*o 1XB+:#I`;0.dRHDLd!$"p( +8*mK  PBb?eOe2g+ds;jd: +A? }N!yGSrIj xv5mƠ69xϜ3_f;ŒJN zw./^m3THs=R_Jȭ!Yx,)d3jD0Lp4196eΌhv칧Зŋ^@I`.YC<?hNq)I|d,GE8~j;7DIsLٝ`\5S/;0>>+svE+?4\Q3x>ޯM垨j8oP9z'e˕,uȠGa@! b CnPjhuëvasONhŜAh{A.#ZulVY~!9GUFis\W/frhn/JPFu䚷z }= 8no.Q:y"8l=ЦA[.h>I Wnzۗ}{k@T&ywA 7Jl8y sgfsNpc܀F]1tҸ۽3IA@߰,Sffږ- ,-? &j/qaE-`=ݱU ?R_\c-M +4z|"ssРtgMn[܍e1_zE,aUoՓ?#,q k7`m|fRl'?'lǩ)+a$$z)v|ٳ}KIgub|_+k6+2b芙0֛w֢( \ۊY왨?9+{iB2 RV0%g֠v͟l*BYՇik?Kơ;~#)in%ɝ5J}yFhÍ*7Um/0iזĝ"v3'j~Yj!#(yDͪ3>FT]n>}L;lRUE/+O.S/j7?WYYA(o0aq2G+H Uސ~[CJf<~m9Mjt3ybŜcZ)6U Ngč-Ֆ񏻢zdvfԶuuv'/ 5Fی.'p 3ivً^%[0N0F)AV(ԠOڋ,H|*P۹yk+q>ӿfmJ!*r¼dsjpiF}b ȶqeh2QUlq8AQXWݭDq+%)wP~4>UmBd_骳g Ü4e^zw&6e8@亀UlQCV†ɨ|稙} F>\'0hc yA9 %XCMCz%"9Vbn̠ksm_G7}F&-{*$<jJgm:qŲT_p쎯PA2jkirB(q>^@\j(j<&)kvny.H=Cjw޾ ?D%.*2[^ #,hZ=U:A9ro8lq&ρc\RT_&\.g]B]U>}N qk:L_D3?Xϸ0erZķރ,:f[v*]Fi5w 9"$2Y@"(<, +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/UGCUXL+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2368 +>> +stream +xy<BƒSz3*b!CqF"Kјylƈ'BYD%,!r컣2BeDg۹۹|gjHtKǵ +@3AC*$4 dVC +882ρD5d p=43Do98d# OA{ؾ ͌|9ЯON~6ya +y﷯߭uF4L_3U1Z*Fw +W= Z(JK+%i/o5̛Lnw,YvI[KtlsAQ^3شG? +ֹk=2el[7)]̏|ts)Qt1Ũo+xYH J gdD{*IJ7c#L Wܴ_4P.5t2`ޤj$6N=%/;< +뗜Ib라P:A:e+346LNK)[,Hxy612GQWq#R:i}nG/ƄHZٌ-tFհ I6y,7@6q}}8~L,h㛶IrG4DkEp U#u.42u,\8XV[=Scǿu'LXFX[A25`D0+zFTնZ9]D_eq4':?g|80S"7D Ŕn߹"u#; qD'WJ}y}-Sia-٧J{XacA4m; LM}J;$Zw-dwؼU 9KHml^|\(SR(ϖ7XwfmUe*T4P{u8hZFrq2#>N{$4,5Ő;n4$Yzn9gZ\ud~R^rϷl`m)`WBb{XhK"oNr׊>mC}˻.2f B#BFmm1O|Ύ3l: ̭qA;&G9nvu!{^4+0TԠ,f^A]f{Icp;5藬p̜p7, Hq0RJ;h kmk* JBp&^$q7Ԫ\p WdVkp:>A+$ύ*(h|鍠q*EUrxYCu=?d昃QtWFv44xfѴy/:xɯ5Ei=Tc"'v̀;O:s/jdHyI4|šDVg e> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}`n 0^'5d, e 7d2pmlO6?!f81| 梛f!|+b#L{4 $БX:"Y^D@Xx]Qf9L=dM/Aywהkٌ HeU21F><eA\??B98` QABVT0_m~(r:Tl]e\孟~#ل`X3”l5UU7촪nJ1Y+u"@bSY Xh..-maT9_^gn+- Iل>(O2V$sBǯD08csJqn@%(\qFjjZt Ķ'}ܯ + +;svȵUrPb[1%KoD]ia2A٬SEVzwaƇkG)͌_ܔN藟 ^]9e~/_m1gN坺3uEz6FBj]AG*<; +VVKXymw{bu;[Kg>M_^)}έL:;/̃O~w7R6H4]#a .JG<̗]+N,sZJFqt#}X"N?j"WVx1 \֪]M\יh5[cxܧ~`󠯈p wj%i%ƠvK}Q rrH_%xr{NgG{$K="K"dI4|tWjT/5,دC/͞yRB|_fef-<-i\`k2elwmkyUFA9C񢎀4n,h b˙l$?Jc*B͙O tԅ>}xԞOq^a:n]EhĴ>Hxa>AoO[\y"GN)qT.r}e\dm |:Dy{Β V̄G,l2IXє޺4Q,~5?}{6U_s~R)PP7XdyFz6C՝zp;·pi.kE+kk`a8(}- +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/BYHWHP+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2Q]JXCXFlcf0+%kEv%$[vJu,Q%*BHx>^?{~suNJ[*(x$LWa6k(t! (d# `ZZp,hPMB]: RA47Tӥ4C[ +@Hl|ixK<2')ًh%4}.@'ωAXRׯ"C3!ApPH:)8<#~1DVM050T/$08+xa:d~?9 (G?_]+ L ??k?)  +_v3&c)8c8 ¿SP!ʪP@YE +*p@Cz_dPՄT4L?ߵaHx<EiCn`4H>| E﨓[xA[3G*y&PT{z#N[bܬ{{ |pmsHf~LOk.ƈ%S䥲_}c +"zU݅Y| \E͘guK}., MXNr"-EGe\OYoqvɔG?p*ׅ+o'[{}yzl•T:.)M:g@qfT#8I^Wc?nE,Nsjpp;h׼sM=/m@[f.9y `^xo/ K^gCY=TDǏ[ f4ղY'Ӳ8ټSPG(tVlX2y+*I-]DNM?7Lfg /~%!ȟnYfk `]INۺi8ZPۃ?=Fߍ2n(=X;3~L^I}2#s\P4W$W>~R!;usJyȠJ;#ȴYyȸ9սdE!0ܢ3XJJq(Aeez^uelH8Y$ԼOfy[q/U7SLWCxuIZfF7+xX|-02C[ڈ kp7RNiy.]8teB-{<؀I?pJ{6*ŒAF✑GdTgo(!i4;&}LCS~ c;w8Kӊ GI15WXz#YY8 Ҵ.9xJB#,Sg*!sRcil"K7,`w +,rԱM)K(pv0S2دȈڷ cZ*t +~u9T^Sg[9}3&ޑ)PnLh6Yao {|= +,8u0ƒвN-9xI .W<$N9ZKoĿ#t"4Шa]dnSOolfy]v"e=%֌| KJκ4>ۙ\P[|ڊYMhV4|eT T.QUC|%s!zI9{Ē v׊<ΡxbzUNp}D*w ʷv߷/x#M6) +\27vJh?M!wV~zK)}T$ObgI!rQהRW==,76;qK#n?c +{S2r;).G-:I+fy#D׻ 3o_5n OJ +)07oWMqz۱bz5_a|!Gz`3 vw1\.R뒈hZt l7,>UkOSIƽ{eɡ_`YXhl)Hyu˷~םQD3,Z<53RXmԛ $:vH;C]pACw$?\9&HncP!nEU |1֩;?nG$7%}p}R/E<Ev%ZnTضMjf WGuiBsrLqd<DF\|e~'Y{EjlET;ݍGT *'=f+w&Fb%OG*5) +&AO`x N!ah~ ,P +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/UKYXDK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWR(pRB1R" +Cf#LL07RR(({Plb*6(EMŅDh#h=鿞{ys{mBv|IY YƆKa7Bc.vvG..\Rprybp!B`^It!BD h% X ^"a 0`0@q! 1N0_A $`Q􍔄Q2t(I"pqwQCÕR @o5֍` Ă XgԽoZ͇(NF?Ryyd;g`<_w`x>`A+嘿7p hPNQA_ݎ nJ=pX퓸Vʋ-m_ϊƻ+lL*۽іٷ?#Wateo8qCۭO*/M*vt6?j +J{N\?)8a<2qG괸~Ѣn||M%@.HY.vL7d9Em]n{C_QޞC/G-'~v(^GedEfcqTy.}߻cY)R6_?X_.;ܢ'CWKȵvUD<|^C:NQڣQZInOᭇu 1޲"零XBVHOS3ST!l!goq ơ:2sҌyQ-S 57b{UŰzldyT 3b앋m7sOfëoo\gO9Vv*shzo*תݱVFNk+cH?;Meej޶ gU֘w^zVzݦ4NəskJ=b cDҒxS:': +鐯{-Zb05N˵Zk!3!ĻcГšSm/cL36U,_n'"bNBW5OiܛJBL[24Vg7hb7MsԷX[w鄶  +uM!=fOI3Ϗ+sYE[}dn s,Y~K2].ؓ2AVW2G6)/4<#aM4 r~VN+eZanV33dR$hoZmNu4( +ٲ„e[ܼSonTJ#7WܽS?\|oaɑzBբ-%;{3Eǥ0X0]=\ޑ+{ O:g_?y/$Lf"cր*&/j/7J;qVп|'b hRP c +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/JDEPRA+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/XOGZIF+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9717 +/Length3 533 +/Length 10272 +>> +stream +xUTᶥqww6 =6N %K`!ws=~o=j5k_ͪh4X-́2N 0 +@RYS.BK+ +4:@??'@ `{$\mmI@W[ 3@ ltkbapXq\ tz-YQP88`9,y_mKwy]rIirXPTK wsw3367su; +Pv]2ߧ`3[ q-hf ]݁lA7|-_|\m!sVY8Yڂ`35;ć|bg_eZ [w?@o8@ hpʰLN`RA4R%HHAx9f5e˷vHtŗ}4@KPh쌟бr mT1{l4,TSvDOBl?0t(ua*/ -4j bmq%56I9,d@?.IQA!0k !p^23r+&S3;AG +=g(%PTQ(Lh%wGúc;7]}j RMq"tZ!0-%Kʣ[@c{@+wEg-e<(@"M +qkeBZ]?쐍^-xBkh?r3{4[TE@) +c,'DZC葖y:*Iv o)C IK}=|peI|G ܴkFBJLLt/-$/EU.o{gX(jdhX͏.MWuMw#a#' :`*(L^rعzعvcF=POu'ڽqs-PHO7񞬰&d˅2-{v>FXD`3Gm3_n)&[X*n)w@M"}$z]`G+%Ԍ0!$fůgvl+KwJG>bS?<&㻮֟Ww·tN)"UIXye PE xvoO!hFә'xѝ4=gkSzW/آ'JX纒I/b$~ujd:RqTzsP*27a %kKOh^I[mv }xb&<O/59\Byn\ʀ)讉Qw(36j#blfwOgvY^Mt .a1y^sg(2Gy:0 I_܏Ğі>~&RL>m^& t$ +#︆j"H2RD0wl/XI1̚iDg!xqkݖ:p}{+.g8'$X~XUm}-(/6jXsoglKG$ ^aqB)y32>ไ 0eI0ˬ;J!>]TD*SJLmAP2%FBpaEnNA {A#KeBy4l7&e+#r"ny'W,P^s$|k|z`ƒ=\l0%9zPvd`'ljە=qX7!2M1"RD WŐd{ M݈O0$;/n~kMTIq#𑵅~O&_"涢n.?=W1b<}!ZZ8 +Y;m-4TU +aiZ%Õ d +J؈B51i -z TrFG +7YzenU0ďǚWV? \CR 3ego{͉0x8`yZg%&6Jʇz$H\TaTX*;`l{c^UB':{7'za,fs|Y8z*{8ai@3?m,-l* gI +O9hY[$>0U@*܁R_eǂQ-؁4/~flY=?_ًMJw/d7JHt%3hL]z{TĥHdY~\+AR WNs;-%YgؔaVdEdz:<ʏmʹ@l$ +&j`n9hL#PcA{?梌/B^b9tw<"˿cQg/`W %]jVFWh[x z$G5}| +mٿL-_iư0sq65b +k(4O⽊ft+,Τ~>cf0d،b4j rShyR\wqOPrt_:woY~}x$5 (2MF$U:/uJAdz:<[! ߢ}2DRN`muȈ|^Q<80)#Α#B͈%9ѻMQ!`xjjgGwZe,}0 uq1F)IBda ' E'?:XBxQHj6tr}lIp5[9qEr9>A *!8SO{=Kj-ZB + +bh\(M؉+sn ww|syঞ +v߬ĤSi M1$0wC/&b98Y0li[aNWONrMB`4 Yɾm6#}\@h[0P 8aNɎcؖ|!IbSB)CI=TM8cluK[FdN[ޞuĺ,ȉ) v!Z{L[@G5LA^+g܎(g.28E9Fq b\JԢ*)I 0/sݽvel!J_Tqf yn#w"r^H Amf eby٠/XK.r$5N&ad4-o`\1p +WMk"hhGͽsa.s+J `VVߩk>FU>S0zF# +\`vfM Mzb~֛gm +jHh#t?J4xanZX4܀E`!DDuTRQI%NHZ۲ 0r:R{ye͵6D*$P1$Λж S/mmN} 䟳뗗OY%k tц1G 4~^ RWA +vo ED_8 "rW|&|b_i:)밝xO?1^ޓ Qbq^L4Kٽ fp JPIlWO¯gŜu:tvTwP*BllF0Ν]ٌwu;L[hK|/n|@\:@h`TpGnZpR "H9Zрu^ ML_[{-ivZWab %~m{fQFlS^CL㶇ADQVjv>Ƹ(.&5gsKϏAhZ3i<,72trՓub^!&ؑLdlı:+t,['yh>=58lnDI.Ј3zޞʀ~6f9ؿՔ%?r̽|1(Ђr + *(eps>|[:_qeFJ}$f^068[`Z֬C~i%6w]월fn/'?ԮV􁇯v}ևQu೷ݏ]ELy^>6rՊEc~ +'u8<}}k*fyy>pOO\eoݠ"׾엲5_ +yXU䭚:AmOL@'/CT |Dm X-ڴNȪLil,E);J3Kae2B] & 372^CK^:K=.uWِ!Lag5(̬Wõx[E  6I3FP4=0y5":B-B)ڢgdRWர2}Ϥ')l5/:|{*6yΒ|\ʽ^/㟪e(`/N봵s5)G7N NqaT(/41R4Tr;_j!#O?E`*b&9($"2Hq(5as]I$sn˗6ք 󅎧uy4+;=}{hWD2YkGM7KL,`n\F$J4'_~'{Q/g!TLĚoXGlm<\>fQrwRܶX+W*wnT_kڢoci媗߱nVx6EU +2t8bx6x +d&eczY}]V+XT1z w ~T|J",<2%ңR/6Ȯ}fb[FvhKawԊbTxBJ9*{hO6/,K8h|j1İeP0; +bK ݯq7Ǯ^M/ +rbȡQX\)+&?l+D<?W=z?jC/ph^ h^ɸ$x g9Nk_fkκ +"]Jb 7zF#b"w,׃꾾 Q[ ^&ϐr"Ʃ#uc'ӇQFL腥SsjҴcnA3~'͑آ #sG@&pj^"2ɗ;hQLrMƒQv-8ݳKpC4p/rU>]yz~j2mvzC'P)INCij")h1 q?Dmq]ǰ P^%x@D>:bɆmiG6Y~=07Rog?\jlX˙n-Rw Hg)-֘LZ6W(uaZD y AX&K>NbA jMZ40>a^ạ/.AX;EoV*s~IDtWc6V͌+ ajyE6( {~3mLIp*Z!c3PH'k?W3EJ7 VC.K& !%*T {E1h!i];K[[\ Cr lYzj)Vg N w1@ܤ.vAzL.ڡ[=uzo/{;*LD}Zd%XdRWRyc 6T^!sb6&7QZۦg!cW Ca$y:_9@/SZǵ+8IV|(џ=l'E\W.t^u0ga:-t=4k"uvF#GK`)LUdMOƣ`w&\xOԯč;@j^|vD3رԽ6V9fGwc[G(y]f0kzx{lw?z ThT6|F:kϖVbTUaSCd6alPi&[;9V?Ο|t-{NLLyz>=wCT_h(ӂ +_$6#{nX_[ a1UgzH[^&%!v<἟ܟ&MKw]NÆ/71p%A;ZtDWS?7Ƥ\pi[.iY;KYhnԏ!%wASh@,ګd~riw39^N5aAX 37l}ŷ͈!Qe8bݓqOgsZad?عSrƍGqŒMxᓛ'H[k#) GZCͿZJR/Wfȋ}l(FNg외3H6\_,4gr/yHKO +CMÍSr%h"2m8H`vrNÄn%H1Oy/h7$ePɑj?K0sh`ZrW.Ƹ0n|'7˩D^Cp;R #D_^d;+ԋT8[Pz- +]8hXЫ{NZ%Up˖3b+|"(蒏SdDe?"n 57@/$+E _[;@γ&ɧ:XއNHL%)|GᦪWdo+>"eԙ L|-9jItWJl!˽ԕ42l +K^UΗy17F#PeysGy~+G Os wNjw%[-֞u_Xt:ALYa)J_6?\CWTV9cAQz 'g{D\s~syA<, ~bOƟӗakah~Qh v|/FצB +9\ H[aZ2\2`3;skt""VȴG gEy w269NiяC WmC0\#\CCn +Gjc~8Oޢ־=h90ziʹEE2 2R+`kBf?bVüV_ё|Z#;{?Um[eل> +;"Wq5l=X! =|LOe҇i">^l%sKgwa Y:Z_•yK=1l٪]OHPvSekqf$ ΣquaҘTzƝU<8P(Zb ҡSIv-i| /B| ɞ[ *{geJ2PYŒTzAE}Gha>jϢGw7`YbtD E`HWűs 細f9vtF&Q7t$,@J@k;Va?G`s!1`QC܏.8t:'P8, DLݗ@rl3-^Yx\UY +X̘hT8IF/mꈓ`[n8Upޔ]᱊nqOT 7]zi򃿍;ɫ}ND#|_e{2\-` 4Z$?5Gv' ,f`'G3W{> +endstream +endobj +114 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/MZBXPO+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 113 0 R +/Flags 68 +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D7)"_ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\x +endstream +endobj +141 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/LSOSPV+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 140 0 R +/Flags 68 +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O NU M}ؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b`  +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185353-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +146 0 obj +<< +/Type/Pages +/Count 2 +/Kids[63 0 R 67 0 R] +/Parent 145 0 R +>> +endobj +145 0 obj +<< +/Type/Pages +/Count 5 +/Kids[5 0 R 21 0 R 44 0 R 146 0 R] +/Parent 3 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +148 0 obj +<< +/Type/Pages +/Count 2 +/Kids[75 0 R 79 0 R] +/Parent 147 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +149 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 147 0 R +>> +endobj +147 0 obj +<< +/Type/Pages +/Count 6 +/Kids[71 0 R 148 0 R 83 0 R 149 0 R] +/Parent 3 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +151 0 obj +<< +/Type/Pages +/Count 2 +/Kids[107 0 R 111 0 R] +/Parent 150 0 R +>> +endobj +150 0 obj +<< +/Type/Pages +/Count 5 +/Kids[95 0 R 99 0 R 103 0 R 151 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 152 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 143 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 2 +/Kids[134 0 R 138 0 R] +/Parent 152 0 R +>> +endobj +152 0 obj +<< +/Type/Pages +/Count 6 +/Kids[118 0 R 153 0 R 130 0 R 154 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 22 +/Kids[145 0 R 147 0 R 150 0 R 152 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +155 0 obj +<< +>> +endobj +156 0 obj +null +endobj +157 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 155 0 R +/Threads 156 0 R +/Names 157 0 R +>> +endobj +xref +0 158 +0000000000 65535 f +0000105473 00000 n +0000109201 00000 n +0000108846 00000 n +0000109051 00000 n +0000105637 00000 n +0000004048 00000 n +0000000009 00000 n +0000037723 00000 n +0000037539 00000 n +0000000913 00000 n +0000042539 00000 n +0000042353 00000 n +0000001906 00000 n +0000047862 00000 n +0000047674 00000 n +0000002823 00000 n +0000108951 00000 n +0000003740 00000 n +0000109001 00000 n +0000003993 00000 n +0000105740 00000 n +0000011619 00000 n +0000057918 00000 n +0000057729 00000 n +0000004109 00000 n +0000063190 00000 n +0000063000 00000 n +0000005055 00000 n +0000068494 00000 n +0000068305 00000 n +0000005991 00000 n +0000006967 00000 n +0000071037 00000 n +0000070843 00000 n +0000007921 00000 n +0000074421 00000 n +0000074235 00000 n +0000008867 00000 n +0000077094 00000 n +0000076903 00000 n +0000009831 00000 n +0000010825 00000 n +0000011520 00000 n +0000105845 00000 n +0000019701 00000 n +0000079189 00000 n +0000078995 00000 n +0000011681 00000 n +0000012652 00000 n +0000083200 00000 n +0000083005 00000 n +0000014268 00000 n +0000015220 00000 n +0000085108 00000 n +0000084913 00000 n +0000016127 00000 n +0000017109 00000 n +0000087765 00000 n +0000087579 00000 n +0000018086 00000 n +0000018831 00000 n +0000019576 00000 n +0000105950 00000 n +0000020166 00000 n +0000019763 00000 n +0000020121 00000 n +0000106055 00000 n +0000021123 00000 n +0000020228 00000 n +0000020987 00000 n +0000106334 00000 n +0000021603 00000 n +0000021185 00000 n +0000021558 00000 n +0000106439 00000 n +0000022649 00000 n +0000021665 00000 n +0000022513 00000 n +0000106544 00000 n +0000023314 00000 n +0000022711 00000 n +0000023269 00000 n +0000106730 00000 n +0000023838 00000 n +0000023376 00000 n +0000023793 00000 n +0000106835 00000 n +0000024893 00000 n +0000023900 00000 n +0000024746 00000 n +0000106940 00000 n +0000025589 00000 n +0000024955 00000 n +0000025544 00000 n +0000107221 00000 n +0000026639 00000 n +0000025651 00000 n +0000026503 00000 n +0000107326 00000 n +0000027220 00000 n +0000026701 00000 n +0000027174 00000 n +0000107433 00000 n +0000028176 00000 n +0000027284 00000 n +0000028050 00000 n +0000107541 00000 n +0000029345 00000 n +0000028240 00000 n +0000029197 00000 n +0000107649 00000 n +0000031463 00000 n +0000098348 00000 n +0000098152 00000 n +0000029409 00000 n +0000030421 00000 n +0000031302 00000 n +0000107935 00000 n +0000032569 00000 n +0000031527 00000 n +0000032432 00000 n +0000108043 00000 n +0000033127 00000 n +0000032633 00000 n +0000033081 00000 n +0000108151 00000 n +0000034341 00000 n +0000033191 00000 n +0000034204 00000 n +0000108342 00000 n +0000035036 00000 n +0000034405 00000 n +0000034990 00000 n +0000108450 00000 n +0000036092 00000 n +0000035100 00000 n +0000035931 00000 n +0000108558 00000 n +0000037475 00000 n +0000099766 00000 n +0000099571 00000 n +0000036156 00000 n +0000037079 00000 n +0000037417 00000 n +0000106241 00000 n +0000106160 00000 n +0000107126 00000 n +0000106649 00000 n +0000107045 00000 n +0000107840 00000 n +0000107757 00000 n +0000108749 00000 n +0000108259 00000 n +0000108666 00000 n +0000109133 00000 n +0000109156 00000 n +0000109178 00000 n +trailer +<< +/Size 158 +/Root 2 0 R +/Info 1 0 R +>> +startxref +109299 +%%EOF diff --git a/src/axiom-website/CATS/schaum22.input.pamphlet b/src/axiom-website/CATS/schaum22.input.pamphlet new file mode 100644 index 0000000..42fad96 --- /dev/null +++ b/src/axiom-website/CATS/schaum22.input.pamphlet @@ -0,0 +1,796 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum22.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.451~~~~~$\displaystyle +\int{\sec{ax}}~dx$} +$$\int{\sec{ax}}= +\frac{1}{a}\ln(\sec{ax}+\tan{ax})= +\frac{1}{a}\ln\tan\left(\frac{ax}{2}+\frac{\pi}{4}\right) +$$ +<<*>>= +)spool schaum22.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sec(a*x),x) +--R +--R +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) ----------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb1:=1/a*log(sec(a*x)+tan(a*x)) +--R +--R log(tan(a x) + sec(a x)) +--R (2) ------------------------ +--R a +--R Type: Expression Integer +--E + +--S 3 +bb2:=1/a*log(tan((a*x)/2+%pi/4)) +--R +--R 2a x + %pi +--R log(tan(----------)) +--R 4 +--R (3) -------------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +cc1:=aa-bb1 +--R +--R (4) +--R sin(a x) + cos(a x) + 1 +--R - log(tan(a x) + sec(a x)) + log(-----------------------) +--R cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 5 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (5) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 6 +dd1:=tanrule cc1 +--R +--R (6) +--R sin(a x) + cos(a x)sec(a x) sin(a x) + cos(a x) + 1 +--R - log(---------------------------) + log(-----------------------) +--R cos(a x) cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 7 +secrule:=rule(sec(a) == 1/cos(a)) +--R +--R 1 +--R (7) sec(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 8 +ee1:=secrule dd1 +--R +--R (8) +--R sin(a x) + 1 sin(a x) + cos(a x) + 1 +--R - log(------------) + log(-----------------------) +--R cos(a x) cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 9 +ff1:=expandLog ee1 +--R +--R (9) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) + 1) +--R + +--R - log(sin(a x) - cos(a x) - 1) + log(cos(a x)) +--R / +--R a +--R Type: Expression Integer +--E + +--S 10 +gg1:=complexNormalize ff1 +--R +--R log(- 1) +--R (10) -------- +--R a +--R Type: Expression Integer +--E + +--S 11 +cc2:=aa-bb2 +--R +--R (11) +--R 2a x + %pi sin(a x) + cos(a x) + 1 +--R - log(tan(----------)) + log(-----------------------) +--R 4 cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R a +--R Type: Expression Integer +--E + +--S 12 +dd2:=tanrule cc2 +--R +--R (12) +--R sin(a x) + cos(a x) + 1 sin(a x) - cos(a x) - 1 +--R log(-----------------------) - log(-----------------------) +--R cos(a x) + 1 cos(a x) + 1 +--R + +--R 2a x + %pi +--R sin(----------) +--R 4 +--R - log(---------------) +--R 2a x + %pi +--R cos(----------) +--R 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 13 +ee2:=expandLog dd2 +--R +--R (13) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) - cos(a x) - 1) +--R + +--R 2a x + %pi 2a x + %pi +--R - log(sin(----------)) + log(cos(----------)) +--R 4 4 +--R / +--R a +--R Type: Expression Integer +--E + +--S 14 14:451 Schaums and Axiom differ by a constant +ff2:=complexNormalize ee2 +--R +--R log(- 1) +--R (14) -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.452~~~~~$\displaystyle +\int{\sec^2{ax}}~dx$} +$$\int{\sec^2{ax}}= +\frac{\tan{ax}}{a} +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(sec(a*x)^2,x) +--R +--R +--R sin(a x) +--R (1) ---------- +--R a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb:=tan(a*x)/a +--R +--R tan(a x) +--R (2) -------- +--R a +--R Type: Expression Integer +--E + +--S 17 +cc:=aa-bb +--R +--R - cos(a x)tan(a x) + sin(a x) +--R (3) ----------------------------- +--R a cos(a x) +--R Type: Expression Integer +--E + +--S 18 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 19 14:452 Schaums and Axiom agree +dd:=tanrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.453~~~~~$\displaystyle +\int{\sec^3{ax}}~dx$} +$$\int{\sec^3{ax}}= +\frac{\sec{ax}\tan{ax}}{2a}+\frac{1}{2a}\ln(\sec{ax}+\tan{ax}) +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(sec(a*x)^3,x) +--R +--R +--R (1) +--R 2 sin(a x) + cos(a x) + 1 +--R cos(a x) log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2 sin(a x) - cos(a x) - 1 +--R - cos(a x) log(-----------------------) + sin(a x) +--R cos(a x) + 1 +--R / +--R 2 +--R 2a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=(sec(a*x)*tan(a*x))/(2*a)+1/(2*a)*log(sec(a*x)+tan(a*x)) +--R +--R log(tan(a x) + sec(a x)) + sec(a x)tan(a x) +--R (2) ------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R (3) +--R 2 +--R - cos(a x) log(tan(a x) + sec(a x)) +--R + +--R 2 sin(a x) + cos(a x) + 1 +--R cos(a x) log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2 sin(a x) - cos(a x) - 1 2 +--R - cos(a x) log(-----------------------) - cos(a x) sec(a x)tan(a x) +--R cos(a x) + 1 +--R + +--R sin(a x) +--R / +--R 2 +--R 2a cos(a x) +--R Type: Expression Integer +--E + +--S 23 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 24 +dd:=tanrule cc +--R +--R (5) +--R 2 sin(a x) + cos(a x)sec(a x) +--R - cos(a x) log(---------------------------) +--R cos(a x) +--R + +--R 2 sin(a x) + cos(a x) + 1 +--R cos(a x) log(-----------------------) +--R cos(a x) + 1 +--R + +--R 2 sin(a x) - cos(a x) - 1 +--R - cos(a x) log(-----------------------) + (- cos(a x)sec(a x) + 1)sin(a x) +--R cos(a x) + 1 +--R / +--R 2 +--R 2a cos(a x) +--R Type: Expression Integer +--E + +--S 25 +secrule:=rule(sec(a) == 1/cos(a)) +--R +--R 1 +--R (6) sec(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 26 +ee:=secrule dd +--R +--R (7) +--R sin(a x) + 1 sin(a x) + cos(a x) + 1 +--R - log(------------) + log(-----------------------) +--R cos(a x) cos(a x) + 1 +--R + +--R sin(a x) - cos(a x) - 1 +--R - log(-----------------------) +--R cos(a x) + 1 +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 27 +ff:=expandLog ee +--R +--R (8) +--R log(sin(a x) + cos(a x) + 1) - log(sin(a x) + 1) +--R + +--R - log(sin(a x) - cos(a x) - 1) + log(cos(a x)) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 28 14:453 Schaums and Axiom differ by a constant +gg:=complexNormalize ff +--R +--R log(- 1) +--R (9) -------- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.454~~~~~$\displaystyle +\int{\sec^n{ax}\tan{ax}}~dx$} +$$\int{\sec^n{ax}\tan{ax}}= +\frac{\sec^n{ax}}{na} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(sec(a*x)^n*tan(a*x),x) +--R +--R 1 +--R n log(---------) +--R 2 +--R cos(a x) +--R ---------------- +--R 2 +--R %e +--R (1) ------------------ +--R a n +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=sec(a*x)^n/(n*a) +--R +--R n +--R sec(a x) +--R (2) --------- +--R a n +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R 1 +--R n log(---------) +--R 2 +--R cos(a x) +--R ---------------- +--R 2 n +--R %e - sec(a x) +--R (3) ------------------------------ +--R a n +--R Type: Expression Integer +--E + +--S 32 14:454 Schaums and Axiom agree +normalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.455~~~~~$\displaystyle +\int{\frac{dx}{\sec{ax}}}~dx$} +$$\int{\frac{1}{\sec{ax}}}= +\frac{\sin{ax}}{a} +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(1/sec(a*x),x) +--R +--R +--R sin(a x) +--R (1) -------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=sin(a*x)/a +--R +--R sin(a x) +--R (2) -------- +--R a +--R Type: Expression Integer +--E + +--S 35 14:455 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.456~~~~~$\displaystyle +\int{x\sec{ax}}~dx$} +$$\int{x\sec{ax}}= +\frac{1}{a^2}\left\{\frac{(ax)^2}{2}+\frac{(ax)^4}{8}+\frac{5(ax)^6}{144} ++\cdots+\frac{E_n(ax)^{2n+2}}{(2n+2)(2n)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 36 14:456 Axiom cannot compute this integral +aa:=integrate(x*sec(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %N sec(%N a)d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.457~~~~~$\displaystyle +\int{\frac{\sec{ax}}{x}}~dx$} +$$\int{\frac{\sec{ax}}{x}}= +\ln{x}+\frac{(ax)^2}{4}+\frac{5(ax)^4}{96}+\frac{61(ax)^6}{4320} ++\cdots+\frac{E_n(ax)^{2n}}{(2n)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 37 14:457 Axiom cannot compute this integral +aa:=integrate(sec(a*x)/x,x) +--R +--R +--R x +--I ++ sec(%N a) +--I (1) | --------- d%N +--I ++ %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.458~~~~~$\displaystyle +\int{x\sec^2{ax}}~dx$} +$$\int{x\sec^2{ax}}= +\frac{x}{a}\tan{ax}+\frac{1}{a^2}\ln\cos{ax} +$$ +<<*>>= +)clear all + +--S 38 +aa:=integrate(x*sec(a*x)^2,x) +--R +--R +--R (1) +--R 2 2cos(a x) +--R - cos(a x)log(------------) + cos(a x)log(- ------------) + a x sin(a x) +--R cos(a x) + 1 cos(a x) + 1 +--R ------------------------------------------------------------------------ +--R 2 +--R a cos(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 39 +bb:=x/a*tan(a*x)+1/a^2*log(cos(a*x)) +--R +--R log(cos(a x)) + a x tan(a x) +--R (2) ---------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 40 +cc:=aa-bb +--R +--R (3) +--R 2 +--R - cos(a x)log(cos(a x)) - cos(a x)log(------------) +--R cos(a x) + 1 +--R + +--R 2cos(a x) +--R cos(a x)log(- ------------) - a x cos(a x)tan(a x) + a x sin(a x) +--R cos(a x) + 1 +--R / +--R 2 +--R a cos(a x) +--R Type: Expression Integer +--E + +--S 41 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (4) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 42 +dd:=tanrule cc +--R +--R 2 2cos(a x) +--R - log(cos(a x)) - log(------------) + log(- ------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (5) --------------------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 43 14:458 Schaums and Axiom differ by a constant +ee:=expandLog dd +--R +--R - log(2) + log(- 2) +--R (6) ------------------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.459~~~~~$\displaystyle +\int{\frac{dx}{q+p\sec{ax}}}~dx$} +$$\int{\frac{1}{q+p\sec{ax}}}= +\frac{x}{q}-\frac{p}{q}\int{\frac{dx}{p+q\cos{ax}}} +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(1/(q+p*sec(a*x)),x) +--R +--R +--R (1) +--R +-------+ +--R | 2 2 2 2 +-------+ +--R (- p cos(a x) - q)\|q - p + (q - p )sin(a x) | 2 2 +--R p log(------------------------------------------------) + a x\|q - p +--R q cos(a x) + p +--R [-----------------------------------------------------------------------, +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R +---------+ +--R | 2 2 +---------+ +--R sin(a x)\|- q + p | 2 2 +--R - 2p atan(-----------------------) + a x\|- q + p +--R (q + p)cos(a x) + q + p +--R ----------------------------------------------------] +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 45 +t1:=integrate(1/(p+q*cos(a*x)),x) +--R +--R (2) +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R log(--------------------------------------------------) +--R q cos(a x) + p +--R [-------------------------------------------------------, +--R +-------+ +--R | 2 2 +--R a\|q - p +--R +---------+ +--R | 2 2 +--R sin(a x)\|- q + p +--R 2atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R ------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 46 +bb1:=x/q-p/q*t1.1 +--R +--R (3) +--R +-------+ +--R | 2 2 2 2 +-------+ +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) | 2 2 +--R - p log(--------------------------------------------------) + a x\|q - p +--R q cos(a x) + p +--R --------------------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Expression Integer +--E + +--S 47 +bb2:=x/q-p/q*t1.2 +--R +--R +---------+ +--R | 2 2 +---------+ +--R sin(a x)\|- q + p | 2 2 +--R - 2p atan(-----------------------) + a x\|- q + p +--R (q + p)cos(a x) + q + p +--R (4) ---------------------------------------------------- +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Expression Integer +--E + +--S 48 +cc1:=aa.1-bb1 +--R +--R (5) +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (q - p )sin(a x) +--R p log(------------------------------------------------) +--R q cos(a x) + p +--R + +--R +-------+ +--R | 2 2 2 2 +--R (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R p log(--------------------------------------------------) +--R q cos(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Expression Integer +--E + +--S 49 +cc2:=aa.1-bb2 +--R +--R (6) +--R +-------+ +--R +---------+ | 2 2 2 2 +--R | 2 2 (- p cos(a x) - q)\|q - p + (q - p )sin(a x) +--R p\|- q + p log(------------------------------------------------) +--R q cos(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R 2p\|q - p atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 50 +cc3:=aa.2-bb1 +--R +--R (7) +--R +-------+ +--R +---------+ | 2 2 2 2 +--R | 2 2 (- p cos(a x) - q)\|q - p + (- q + p )sin(a x) +--R p\|- q + p log(--------------------------------------------------) +--R q cos(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 sin(a x)\|- q + p +--R - 2p\|q - p atan(-----------------------) +--R (q + p)cos(a x) + q + p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 51 14:459 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.460~~~~~$\displaystyle +\int{\sec^n{ax}}~dx$} +$$\int{\sec^n{ax}}= +\frac{\sec^{n-2}{ax}\tan{ax}}{a(n-1)} ++\frac{n-2}{n-1}\int{\sec^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 52 14:460 Axiom cannot compute this integral +aa:=integrate(sec(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | sec(%N a) d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp81-82 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum22.input.pdf b/src/axiom-website/CATS/schaum22.input.pdf new file mode 100644 index 0000000..fa9d07d --- /dev/null +++ b/src/axiom-website/CATS/schaum22.input.pdf @@ -0,0 +1,2102 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZERBIC+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ITPABG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/JUYRJU+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/YYZPBL+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LTVIHX+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/BHBTKJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XUEOWF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/UGCUXL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/PVLQNM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xڽMo1 +wƍ|rH\ + +Z@D>N0t mONׯ3 Prwrj,9/gW߯B\o?ޝ:H|>```J0mnsF_HH $|9@a"/>՘0諭&Al>  H& *8J">iGq/P{\JJdU(2vTҒKUOBōO9I9_' %{DP,;ĭKL&c<x/ +0S@fW7x_;Vg] 9'*9Q>k>(ޢ|R#M(TA/ ǭ'sH-юjCgaIl06-GuuUqk +'ĩ#NGwSEBm) +A-պ~.e3{ޗPֺ?чXEBY4f֛ r2]yC3so? +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/BYHWHP+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/UKYXDK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/JDEPRA+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/XOGZIF+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 814 +>> +stream +xڵVMo0 W2i*Ed˰v؎kvY݃i4hɮ$̀b#%\oٿ/ާNyTM1mF Rg&wڋx "O:* @(\', y1ik;n֭'.81-Y;F֛X OsSR< fAz[K<8m!&+uQ2(G } gGJhP4(k=PѰ=h0MM 1jٮpPF5I5}$nӯIly XM kThT4vߘ(i7 r >QN7@*.\u*Vu yU#CMb~lk;^6#i/ "ao5Tt/i'-i^>6Jzzs[dWb +ASE0vNjOdMk<_ 2-cP7cA +ߟg=ꚔB"Ζ1-{V3#sEQg0!OCAؿ_C)"s=VD"gNUF]}ht=ZLV+u{bZ0&ɕI=c:hۋ1 .B\7q + ː#E7!!gu>Yvϱ!UTwD]s0$<⽯9]7T$O6ԎiuX,h$ 0؁ >$}S,X +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 438 +>> +stream +x͖Ao0=lpYvtF!1jeZ Z3rҾ{1X5<؛HW +HP7 ~xMDxaY8o3ʖRJXd)V|SX׈eW_aYm t^*wd~bɓ2BٴaQU&Vh:ձ28zC f4)66O"۬z.ܴ+etU年EQ]A4UC-YɡJ7B+nLU iRšYgҩ:~-ͻO~}ł]sK% "h'tA\B9VM[M3IJ 0餠Pm[twX.#Gz0-s-orCt}Q—n*#7p' +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 463 +>> +stream +xڭV]O0}WńŔ풽71>(o:B€Ll&B{{{9-؄1HG1 WI6*ZAM@{!{e93W +D5jPsƙ!3 +)_`3!l9 %Viq೐*h],eY&yV}?d+˥iˣmn>W֐"fOy\]:C4CW@SVj}r1hfkZ,F&4G醞 8V‰Es\i9\Ng/i:T6RCi޶?]fd 2l?0 tt@PDw]$]*V-*ػw@t\? + +endstream +endobj +70 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 480 +>> +stream +xŖn0} +_*"6^pZ5ZU=4J41)YX*^fC7 0Y "`?~(jBDIQ\U#N57DIT?` B85) #{%r;24[+Az0,{Ab $~RĢpۉL}"QT_0 @EZvIdy黵cu뮸,EұIyE+ +uEF[%߲h {Hy .IJY NLhu5Њ4vk4I,׉6r1M ] r^F:lPjASD6&УJK !`]͓EJ67S?=Ou1o0ӲI&<D-n70}JR?,pݤr\l)ͼ _G +endstream +endobj +74 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 158 +>> +stream +xu0 Dwc2i4QPe p$!cɶˊ3 x&πΒBdLV~˸x@5 +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 679 +>> +stream +xڵVn0+xNI-1v/RvĀ!)Y,͛DZ$D 7e~~)DH44#F! p:1fd7$.1 GOee`m!r@IHu}іŐ |@}sIVR#B%HԪM$aǴC&>~PD]Y Y;2Ms#fIۂSM7sF3Mt͠5 +L੽dC rs XA5@  =~ߝAqײ4Nui+C^{S( `< Afm6򮲻p\Dd_Ŀ _ub@jA$)fʨ`{7E)mxw4}*Y=SUnp;Kr{zX|rs.Ch{z`!X8A7p+pj¤#{X3X.ZX|<}i8}h4&HR3?<&Grw, kY0A~O)ŀuq%oH5Z]/jW^|sO6U 8[m܆CvWR"$D*Im +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 166 +>> +stream +xu@ w1H\`t4$ Nm|T +*6.(+m +!XK'Qɺd͢(;$v \p b%Q^ +n|2I_M{_\<0 2Be`p< +endstream +endobj +86 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 776 +>> +stream +xVM0+|LڵkJ vraHi)K]+Q=c;m,p&7o#8'$%EbRWbPc7wL;q?E23>EKOatHP +`Y+~ YdAY7X,,'DqH*r8WD\)KUxd4e0gKDC=qxqhJCt惾hUhE=VeN#x1\l[Ɇf2cr&?gXwRrBU +80"봁)cs3dёZhJ1jcO?Օ~dmyWT>w+r]@t5L?1Nk5cPJT)F-㽏u1U⸕h/QeJ3!|UK)Ql6> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 482 +>> +stream +x͖MO0~`Ge%F@`%ȆeplDt}~O%;p '82$/@@`9 ԇ$#>$!ש7!SsPMihg ʞ@bF Ff֏3}͛i0R 얄W{zmll C'=D ̎a""պ}~[deoz-f>'IHl& *ŇƱiZg:wnGR>\EC +=})YGԛfoE˦Uu=:۽oݲQl1?Ɯ~^n_ Ir/"hQT_ns#"]aKڇZο췴uSTX)_(>ZQ?~8g"AU>3N>/$ +endstream +endobj +94 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 479 +>> +stream +xUM0WhԚ)VVJ41)*__ 4`VIU\l7y3c +`]# Ɂ q _!Bkɐaf}K> !<1Ab4k)jS)XU7új۲liQ~nͥRUFv:gLJ0` +Ky}eٰ; 5v! +& G˦~:pufbvusct'tD "1YHyS̵,_0d\R\Q3-#f[i> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 670 +>> +stream +xVj@}WKAvj ~)MJظ/R]5 Ju%KV.9s9gf!5\3Ԡ4[dƭM.3=dx5#6zr|zno "UaMtEm!j@ ̀Q';6Jc|(w<f"#!sLcgs RQIJw)i +=d.gQ؁|:IZ(fALYufTӏWs-h4äA0-f#}x^ 6&T$.)Na)H|JF$1_ HA* Db8D`xצn$c!m3:sR &uUn&ТuTE>8HFl;BY7}u)"鮘|~C_οt5Bdx%"uA5X[ +(G&vKզܼwڌԒr5ETGc0iKCH)Y~onWgMt)4ڜqAκÂӢcͻ#rZd|l #GUS:H,ޑSʺ\ꮲ#X#Zeɗ˗:effѝ~bx'<d6`6#*91oHcO!áj^hoI +endstream +endobj +102 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 641 +>> +stream +xڭUK0Wk$VK7{0ٔEⱂJ; U["<̤Xo@LdM33l6|Ի|fqT"q4GK/`r>>hmr@djYw3IGDRc9uFM׫iTͩf]捫TPy,p7 /mLЪJCMZbe}] g4iAFA)[2T`Xq=XlRB2-RߕU@vG\SQbbmnVԐVX;q?(дlUQ i +0M`]FBԍw3@p:$:IHc^U;Ju'qp 92X:0i\?o#s:4:yX~ObP~0Wm<>2O.]5JYrgUڟ"D|]ZqK«`ڭ(쟁w)߹gdb*{>4R7c#έdVZt) +endstream +endobj +106 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +>> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length 1187 +>> +stream +xWK6W:9zhKz.zPlӸ@}1yppS(c"X||- .BsjTAxWp|_Tz~sZ:M8Ge]hL~ n9Pn&@¨0 ҧ0*yi*"*?4y4nbQ-xL1ՀQ40>,^d@+}^BS@YEqښpF>gw1X(A yf> +k0*` PG2π,'EUZ0В\(4¢<NZS TD$}m,U|)W1P9Q6aT,òsKMqYjWǸ@ + ,l/*#H2ƅ.$`O:_MjcSsv宇mbEܹ +~ ҨSbxVhc3vzrTuʨ8p'@ u5o5l)=ֺ6;-ŕbJ8MZvQO**ܱ_Ll_C]^7ۧ'\7>OǗ̴=*j$xMb39W3'NQÐɂnE.N;wE6B&<_ +Ĉm5G0=6X$?x%=x6066Z.ʆ-pDh caĖبK0gZQ5ʋE&㲼63JS$ M14yF*(0JG `~$\GX*R!KL);l9Ma&،6TPIfK51GgQDڄlHŸ2uKȌ-2p_\c!''FϘIZJ1W]6gbV w~(6!JsO.u3,"ti JҾ*  f +endstream +endobj +110 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 110 0 R +>> +endobj +113 0 obj +<< +/Filter[/FlateDecode] +/Length 787 +>> +stream +xڭVMo1W@m"qTfi4E$H&`ffyd䁄bzPL*N`Vj,S6q#*V->M IYj>kD^$0E@ ™avYY +=,s"/FTZ|+ڄEHNJ B2mt+:"a-ӵ)QL4VГ=ǝ,{Y1vT_aZ4IsKnc}ȡM#q'9uhƏ5@9 }5eE[hUTѶ ]PA30s.4zD4*rCLAfBTz%`9A2.G HzuN+6˚hi *3E%"pXj#Pm&;ڼw,Ra?$oׅEӷX!V'Y"BaF/RJ "bˇ>>d l3y$]ݮThTe3Te'. YCyoU\8,~?geyR^Oqz1몮szX.gbqi~Hޯ^Z: +8OjNOp³|(5O._]#B`ZeZzbwQu.}Y95cψWd4XՋ{#9;D/;!WNA'Vu|F}le:8s&BGZFMJyK0 +endstream +endobj +114 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +112 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 114 0 R +>> +endobj +117 0 obj +<< +/Filter[/FlateDecode] +/Length 441 +>> +stream +xڵTOo0SX5elITG`D3-(*d=~b f@_/) IWx >ȣA9e0-eAr8.W(<3l-gr|oD+*AŤ]WbRag\oF0H 3 M(@͒w!`lX0F]͑ }T!PciɟU#~YׇԽ9p/o@Is̍F$APԤm m3G5g2Oڪܶ!l?RlҾ> +p'ך]y: +endstream +endobj +118 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +116 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 118 0 R +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 922 +>> +stream +xVn0+x%)ȥhRq/rR75&vl)LZ TK>8;;K,-lz@f?(B`Ȏ)B)z&YB87 KCr$lp| aCBu +M~80{$sT&O+$Ƭ 8ͫXڸtbmPn= +HJA,ӜP!*RzG+s +xLaqsfl^؏Ɵk").iX.iQL6E۱h3;u6G \"V`\l_fiQx̼jpF +q6A4%m*X$hό8w vV]ctCj +7Q0j'KgE#I'v(h֖mPe2mHXMzS;`\~-^+@cUuzoi9Zg NN9&o7ү/reҩ0h4)#7%Wy^X? s䈉lpC`j5Q>F1W/CowA N-XNE/Rj;= P܀+n+6ɐ,##u$Ht O `SMP"bρн%.DhEӷթDj[ +pXgC6z_ZP(^q]eܨTv~r$A⳿ipvǶ}Yl|'w Ncyzխy;G*[OB_u4j";=EۗOq6v~wh`2Cm~vYaTFEm.) +endstream +endobj +122 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +120 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +125 0 obj +<< +/Filter[/FlateDecode] +/Length 549 +>> +stream +xڵVM WpěBc0+elժ{*{p4:T_ v& 23 k`྘?((~I eO?!BDP +&(cd b3?_R|p*֯A23܇ (13Ԏ(ΰt4a!Rñl5,'N lxs.ZK  U>8ٲB)`*sj #K$e\lt*8,Wcٙ8TG8_VUeVq^|G}.frg\ۻ͑b:4@i0`t0*jI q;WFB2i9fzkSe5ө\? q 5Ǻcn'; D_> +endobj +124 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 126 0 R +>> +endobj +129 0 obj +<< +/Filter[/FlateDecode] +/Length 497 +>> +stream +xVKO0+|Lٵ'~H{YmAG !DBB}PďǏ l873)JGWDhQ a D Tږ]h=E1go⛘ %2 :+pxA n-=[Հzv2Y_mue41oK[?LLnwW'*`S[މOBqK*}NKM%yV|mCIP%(80gikt DQ[L.uܹaN;3qFIly̝˴*{i hn b[<'s]s~s8E{g6/,IGZ@L;a!g4iqNOI/ıto!T&ФJzA +endstream +endobj +130 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +128 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 130 0 R +>> +endobj +133 0 obj +<< +/Filter[/FlateDecode] +/Length 448 +>> +stream +xڵT=O0ENmq%-aPBDӴH#)r99)΀L%8@NR@qqAxCT$Tq* 0A' dQAgI ]!oKnM7(&iCmZߡOYXZ#!u8q'^] 3g\C6[ͺ/n-ꃨ4TĒz ?gZ<#bϦ`#鱪t%qײg\zYT|LdS~} VVٖ\?-\/ZTc86mWk56I$Y*حb1eog۲uNY?vZvw,St?,% OsYɑ&`[9)N>q]P +endstream +endobj +134 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +132 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 134 0 R +>> +endobj +139 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 138 0 R +/BaseFont/MZBXPO+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 681 +>> +stream +xڥUKO0WR)a`_JZ*zl/%TJ!jw?~E !N|y! #w$,ɹ$\dhF H*,JܹIŗsM,X8U8#:`#wٕ7Q2`HX U9diB;N0*DŽ(gw-DF!@(YɈ·zXFh$# }ZRNK'7AvC(yijրmF]]|c5009[F䯻>ʩa3<T P+r:pkb#0_:sP/3` @N5́ޒʅZB&re>kȤ(&#c|td NU/80j)F ^꟣I8qA̶.-\ #; +67ئTXBs=^TRrް^ySTz͟}?]վ]Ob~ڠ2w'Q?㺙6MWlRe\?JfW5eG(abY_ =[L:ḑ;"2i㦜@߫ʓz-w;g V=M2OwyZ61nz,c'co<*P +Ѿ$P +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F14 139 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +136 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +146 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 145 0 R +/BaseFont/LSOSPV+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +147 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +aMZNT)@\XK~^fٝnM\Ɛo`*򐽜wMz6Í17X\y eԕ'ʤ0і|~A?%QXdvڎen0ǕYOMPo 1II_{Fd +m3V0pe!rҞr/rSʼOcU6.8\_a͕B//uU4J[id:*.D_H./d +endstream +endobj +148 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 146 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 148 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZERBIC+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3846 +/Length3 533 +/Length 4392 +>> +stream +xeXkaHIQbH!JR:fbfSDD:ݍ % ҂ *%Z׷c~?}s=s/"iSE"0@%m}aPX@bH-& *z8EҢ"bP 捂;8b\Jܿ] + "ڶGmhao P{ CP0 , !f@#d?[0 u ".@( = v?oc;m +wCP +w /6mQD8BIp* Ճc @{[4Ovn"?PԳ#0nv<(\H@HHxfT$p`lP[_¿C=~ ā 1)3B=`@q!!!*!0gm 22iX|6GӬ&-#3zTڱ=bNn RMenV[Ns`9!3Ԁ eQTI/-xŃDhvYS1{"hXp=63Blͧ_W E'4;뽊TBVjXޕ3K.t?2"ƦJ pvS~Y6lg_ e%h +\tzU$;d:OU}&77.T].JR$9|G1skyIP/YjR}Xx2X`-7:fssp&E*wT^}jL;2;QyaqRaAQ< 2Kvg] 5'{f0Vny=#`yָwgl]!9VIR^TRgǛ@1%ԹGIncDa +?R=el'>abnagt|h&*UϻN?8 +?Z㢣8HJ8Dz_qG ɲn6o/vXU$mE+{'V\4Ցg)Tk CVЗsˉ[I"%P;KmU/MK[;D0OJ1SkZ&FU5! +ukm5~+Hf0=Aw->@u4=aނu>2OQjxIwTyZ04l7Q~._W=19]F#a؟3h(,WLtKd_G}Z+ѶPBőC稗:aCy䚜_L=.XZtcڍWGDN=iMӏ>hkeΪX5MނvF^a{꺽\^+^+j}Wp4Z2k+dSa)>w((< ?ẉn-E7$$>qRDzU,=+4ΨBnHi200Y9~Ӭw԰ZcRgO.Z9g5Sm͆l@5yzYj>ꓲb+ѱ#SVՙ + R!DҎ-F8kߓy޲ Zѥcv,DA-.}TqU#̒P<{uȂ47TO 9rJ´+|#@h9BI{D1k焽%wgZݶ{ \ _ᒍm6v|D5|¨)G(^#ZSRR)4$P#֥Bxۙ="M,O{?z84xrJ(bS6k+/'3y \=XD|HiNFx=bK0Ч1׬9rV/{t[fH>{2ّ$dXpbڐ]ܽM} pi &a D U5rUZ8Fpү+'wڄ? 6v֯ӐbCݢmv׷yyY/G"'.6d^@/`lC +t@l47 ڦ*V>T lZ14X?}=S ԩT]ލ!93}])ggnCboע9h\<:kE44׃k>Q#oݾ4-7ДV(qB"V1uvw]sģ5(VCD[Rr/Rj4.L YPPV9kGx+&#\ʟWk7 CwI q(*c_cF,_֫|lgFȕt[kƙeP=ɲ!x3)#TB?]D'znK.&75jNP~9:$`^d)5EͶe!=.`1zY}Ny^:EwXِan("Y2sQ/z?eB +n+q0Vo|mucp@Xu9LH£ Yi>zr~jt^ g\ :_D+fܮbF// ج+H'5ܷf%EJx0%JkK@Კ֊!"\gQ* ee{ǙƮ7)X x1}?IXxL(F"8- ?/o7q+Bo+lϘu)Khzmo O +2ti}ׯMv| <.7;ij&p")0Iͬ]7aESٻ$l :tVVĴEO_Uweh?q9qFӕau*ck lks*h'NWT  ܏{N6 yl1-W>Q`q\2⏙Tl| pO +me-׋X= +^FNS[ IM\L,Hc%Tz |ytB-Eti_ d3*>É ;K>9 +HZQ? =[` 17{6Q=$,z9W4qaGrE;Ҙx0}enR Aڢ3 +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/ITPABG+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5021 +>> +stream +xgXS뚆)!HU0@ A.Mz[ !: =(HQ:RI^H,ޑr{9s>g7׬zYwZbч#He,I` ť莄{pO$&!{9 }{PQ uqG98zxp](;8tDAX;GGAz<Cz ݽA !Pv [ +I c%#\F{D`1hi P=\ ֆǜ wA}ÀuqD;Vc_lZH]5O8e'q@#Aп$2 +D<ApOADR3БWPԁ0>g xQ89T +6^fJ;,q{1;_¿C)(`q~{" ( $!.W!T{Bb"v^H_GCSQ6uMɢG C=;hI:STg:I'wdZ:||Xg}K%1ː*3"-dty "ӵyDw`4،T vJ5^[bftL>et.O^A *UM>Te :XXVU L/v6RgfYIj<>yDʽĮE ĨHR#"f͑D$n8_I l[.bCcɕ{(wN2i,0揵LM$%?c(mh+tsN_Q<=!Ƀߝ. e8 /+J يSs6f9o,JiED^1YMǾv _ 5g-ra2.AF>9e;&d;?~gNETOD-`ŲM}ݝl iLiz' +O?O21ZY5ʱ9]Kko37QHA%Y_qJ-0Ϝa7 +z*_*C"1F>-ͫΤqޚRpW]ן{ޫ먰`Y}Ыp<4k*2ɐHeQ!IxWy^RZхWZNmA\` J 'S[ j_DRPbq.INӅd}L7#MtGq.yg:1"?ŬbO/lGN1s 6D~ӝkL1yrgqm>r%MZc";zds/>yc/D2gFgA+vDzca`~G w#m2,'{әȰC2m1pIǁL[$gs( x1×j;f#E~늿 |`sU}s/}r<<nIVg8nhgnDw(a^w* ҆jq^fr*Җ1aNyq +ޏ&%:DT]d :be;Vgxc+p9<M3YJ]jO#_KoqQ=` _4bii6g@Ώa.?5'qM^<\rZ`&]>[5q}<۫/F\$aʔN! sUkDie+x۬ANeM'uR.\K8?r-[TIyg$e dD^ J +}4d%%>yWQ0&?[Al .'3;{hwWN:9جqQ w0\[-t-zM"&^zgu. h6| u'S6fptr+EؔF0E:j*t-áL~bNV)ʆ euڟS $i$]6 s +,Rh"veG sր'Pokm3ƺQ iv ਏ?ml+'8K>Cj`oPQ!PnUk=ieg]ʉ# +%[N簡PܞӚj@+Akj#]'[%kf4tt!զJݷ}>eZ&QJ|R9ͧhsI>Ml * ٴ6d\PWs]R_0Xk#~G#b:Gd-LNqX+fI^d 8p:1qc+;_Gg +t-_ +2L$4 oƩEa\ +'#H؛pj2]!Yl+@+4Ħ( +o(qt5tΖ^^xJ̦8xVǤw{WiVϟhuvQY@-wfGq3jtezUȫǀofCbn$LhUNHu@̙+ F?.C$WTRxYTqpr -fnƺB0/;O\IYq jm^W#/ܸٞZx̸R-Qh** PKR=~y([\Βf׹+bzDŽƊ.S%s9ķMNv8 =89ЇPb02Tb2d\i)W7;肞Wa~+y 7#kZ]_~ 4}KS,%·(b(-O2?_q=CA^ɰ'!A@v'=]u8ǐ29LA Z`*@| az}KHwd52>P ff:H7}>Ԩ~C)CV~oαWS +\h| K`Z|A7FvyޡG#/0qdپ':~Ēp}0(uDFnC^8OR>YFݽ]Goj!ϩḨ]|{eCxe=`cSKIM$& Jws D!ߣw 7P`IT԰q :|i2a8gBoGYuQU y졦_ + %Q[!Q/r9(Sa"ZZKX_q#ZDERV"742$VR)'~Dry՟T#e0P7[;Kf}\m̉m +Ջ) |. Z'&PyA!jD~Fb~^M7hV7pk}`zc y\ ]r}p߁cKdQt-,MgC"M_OVAĊᝉ}ʛĥVF|"YX_+D(ЅGgDH5m=R$$+D3?C9lp3}-ξcS_3 muvXycC` +$wu#؂V .{28ljɡK˭mU_#2G`:r6w6 H_wad@LG4 #߳30 n~ǎrsph%l nP"s{-Ul RcK`آ^?C3*ɾo.k ڱ7OnLj))cL4v,AE_9]opd |y.;w5/S$a8o⸚pigFb;u-XSKJ+F0VkmbAI97W,8|3g1ȏ8 LWoN͆sQ=ћVUntlC"׺c"3'S驢$NWe>jnG3ȸ,ȚՂ{w¯> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`&eWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-L +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/YYZPBL+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1RV6U`(,*__otpuZaXĿSii%F2rLZ^_(/_MRWz{#;.D#PKs"S V"c1a*hթWA5=  S9ʓCE*kSS߶ָu [9S43y5A==YN^(>:GiHL ' 攏{pZC71Yc78R|zU>߻|ްV57wP曷i`բH?;/[t8f wGB|Xm+jc}t̘zm?7+l$ʬ;۳c* +-eH)iLo!м{mӻ6L=&~URwmD1Si.+r}A8C'yF!hȁUN}bq,T@ +12ϩk0M8wl9J4]#u)n&0'hW؂0" aQwVg^J{5ĊnydT-*v}DP0`kD3Ptڜ:r25k|a6R鞎9kvŵ + J餎xQO5J+_B$߉U'˂(ݯ@y3BWeqj<^n;N-y+PEiɄ9l>ڳW+!]f[k`bkK"zLmq \MmT@=‚RjQ6ƖƏ}`<$څw@[VZC3(@ivK%(Q5~iebfvsh7?H[_]uNMQ}`,w,W#8X>1eQLQhޓA`\`^hw?ktا( +=W]çTI*4G81]L]-^:`_yEt}K7Eݐ p/ٝK^ͭ`EM,?'n. gQˣ*M@ޗuE2K٧n\8rt~15ra&x?85rۿ\#˜i僧Qg8cv N(XFN˽60v_TY^<+ 淧/7isJo욱0mF}&?12z~|zƃ:4';a" xSI!zLt:%!!JeK÷`cm˄&ͣ H CzanE^&BH؁ "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qmp?q43 oc6s,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%"&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH9{k(a2x^+nK x^7yEʐԠ =![թ>#B%F#j!a3Uݧ'X#E! i,J)"AKE2~ٰ@ U(?Qv.t\>f:E !z|lNٍt.?¾, }Qj.`TgAV[52yQRQMV;A,O:peKbҮ˫_ae13=~ 3b1׾:.VlMo"Hq*8oBez@56C&KjKVl$͵MW<3B9X -+Ɗ_b }]x@heL4{6H|?$NTlzsɗxڔo|*kdi~[J2U)ĵ^ Q2NB8C~(YmьɉС/1[yc>Ҧ|s`.v(ΐ4>Ư~w(EjW | 6:C2EpJb-2Pðp$d> Cϸ{j9fЇ$Mկ3VҎwUr0Ak&>CWEM&eY3TY?= +9CbJ>+Ey.Sg<YY|mdB -L`|Te=7 )NUGF>zF$Ʈ +#^3t7$ mOsl>N)?^ےZyBOR&~k?l.C٬eY@H N|[jSK*F_sA +F(XP 2L,8Qh +Nƌxҿtbr u9CuK+QشWc{_>ҏ_ؓB5/Wͨm6cc+ӣXN9-H`ғRnXVY5892zIH$ZN(|`}Pr;&B~ӟ8A+VJ '\aF+J+F7nK?c{ g*<|P`u7פA^e{kև *h[o657-1Yuhق?TbgEy"<~ ؎h9_)7rVj%&%aXq#*a+8w,|툁GlI)YU75Y#Y>4Z\ ܷ:0 aMsiݦS82ȑ^)%yA$ Wo@qE4zghi vCxuz,D%͉lse֑*m +dWp[!0bPI^(: ȳ%0b\zqlIrL'7ņOkJV!􏍋_ZmF\BX:-3&RoW#Of#κ(b[3|,%n(jNB, >g/gNgbYKF'$~R6Rc :oe{{H4c`/,|kF^ڔ1K˾vsNle. _FY*Ό?=|קT*Cvi)[[ T +7'j1EiRÆӲLrz'z,Lb,h/;6f{ݧ]caT!:A'芶DBg;]vET$0X (U?Ym MAp!yeQ1lKD`Kv(eCpd}Cɶ}Sj=gbQ2%Y2p4a`[ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/BHBTKJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 890 +/Length2 1968 +/Length3 534 +/Length 2602 +>> +stream +xy<ݐAc0I58rchfL%{Bl吥TIv"H0;Tӹ|GS{  :i,!y8#ij1@< , -,P+BaLa0Me@cVePAD<+Ex +N@l(g Lq$`H$@, $C4њ+}Ia!t֌|D: fIǾ'&>p<pVЩalC?FصN!Ŷ BCЯ9M`kPoU^Y+CEIÙʲ*VmEi?pmT%T#2jfsPNgԘ\f9SgZ,ӪV~eKEGO +$+<.o5%OKth +ٽ轣 [a߈9<57q`,SGt*)|,C8eL9+xrPe%/BvA¥Խ5#ukjxWB0bGFwF*R/}Rol`<&KLݔ'tlÊf$-YFZ8)(67k;m%O`G`}jw.\bO% Kx2Z:?js<v;)|bvE1#^l[DOxBKY흊ue1qpdF^[*r'Pl\?p6 + Q7N}%d|2ECVC2])n+g+*u`=L&"&}ywPAFĩL-'0mĬ󅵂@eR)251&;]y@5ubxLEu54xlp.&1wѩ_  lwg3hbZ3=0Qot2) _J輪-GHk &ẗ́L'pp* υm s?=Cދh5>r͉Y׵6AYg-Zl(T\/9ٿ?̓Tj?|[j9(>Ϊ0pCP/,C( S?/W7zê~;Q@Ctniewd(*KX.Z1SM9mcLvp^ŀC~"ǎI@'l& +ݮ*9K&6=:d/\ɂD4 >weYScj0pc5z:[:UWS= Be Zu86WuE) +i`Eħ W ۯF)8 3Xt*q;MmH +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/XUEOWF+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2788 +/Length3 533 +/Length 3338 +>> +stream +xyt@L`҈x}@<)x"HB c?pi P^7 Uˊ|h)Կ[  Als(dR@BU)4cs%DcXIA9(~TvH#lu D]+:DěI RG ԉ@pHgq$ ?l +cb{G$ӝ GW=%1pC"HԶq{u,x +Ht)')%0XYMPVؾmHum@KF +24Zj?T̨bJIyѓ`m.~!xqzJ&pD'wԚ`C\z%/]{qwa]5+9_FUr]89cubk},xHj ,EiSC!A|kk%8}77аrӃ^r[ ߕ\H-y5Lv4o RP}+#W4c9qdhh<$V&ZpQwliW?0|䱿us,ј5xj?ٝXɶa栍nmju8#PQsѐٮ[ɽi.z/GX1;>-|(i;UKU=?RAS;"מΥ iU=O S$+~)LT$=j H SSW2z2xPɤ+ֶwxM /eC9n(O]PA~+kyaWu$җN/OeMﳦΤ+/vuCNf_=FͨKI3 +WYGP1"t_l8fխleZ :)S KO/6ґu&wG[c6T)k_#V(DI}3}אkʪ;-2zo܎^Df0LГyhxb ɚ# G_}nz[>|-|j1oQ=6|5m7/& lYQO*& ]QٽzL/*8%r!FsJq@6tFBpbha~5Gr!g]q>OpYÊFJĚ#ء+3#djFjQ~f&$aqynE~kJR,s%ݒ=4k'`/.ﴈ6% ]߀+8+z잘z s&0*!cV+^hhKS{y/3^ ^='7Y1 V[1#@wU.tu򬬝 M~<uQE̅\iyQҟֳMsTwzD6Ζ2ck&- F*3NF">YZv6䵺c0pB,Zx}D*Z%_9zDG >0. T(0|? sT`mRPe YBjUTͣ.[Pv䉃$ˁDcCλGtx?3^+=imI}J>rvk*4A4|N%ih`xF`yi!aֶD8><ɩcUKzA}\h9o0ҫ?"=ϱr/PLz] .Jڷ$q ps( )e~bon4{;'GT gC.^+k>#9ZJ}w>̺ }\`Ĭ]y2Od ФGQ< _3_R\ʾ<_- z-)ܱOKM{Hj%ѓVV$ w0WDa+(|WR?:l<67!oRgˬЫIZ\IWbϟCj:X)+J^;1¶ ȓc +ԴKkNąIi]s<${K04UZ7nz@?CT(D>|a^">P34|̀BiI{ m&b_v"kϞI]/ǘ|sG~Rҧ ־K?Yrd]Ȅxy_y]hGWUazX("͍ݲHnD/2;G:Pb2FMy"]Bٍ3N6'.g$?}±nՉ>كp]r(S&Ôu;D7/%,N+^;fgc|'vX2{(%j58![=:X/Tx{s$E춛:O;{5_'#OI Fh4*[ +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/UGCUXL+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2372 +>> +stream +xy8ǕŒ%"K4L3f,35wlQYfcEc=F&e**iJH"ޔd,Y QIvNuzuz?:s0'36LCcKgc,Ȧ2VD6 0(m5`P(drXTв2 J"2" CHD$QA6Gi4/A3~zP( $6pPPW$;/0&~YAB.@Kȩ )LA_(ґ)\ Xp`͑H/_T"JCg p`Ag;$S?vl"J2gPh ޢPCA2&DZ2?C fk_ہ~D* 3[g- +FPhQi-kI2( Y?e`#cCTc`B1)I,`}`(HB]75݅#am=hm3u!o˽# X~8Sߧ>uy7%؁u3vTv?'_?['+ubFKgY,c<$WGc nO+4cgd$ ՉBJ|Lzl:={50v2)BYV-)%zN)HRUѧ9Z*k'q,n<[:W|[ei-L8y\nJ.gzrso<̚z&6AKk_̮ ,)ueiu;E +S|mNuQX9~ԩPv܍ +**$s,-Lf\ђ*-&E/tD*kZ^yʡJ-tx!gzvq8\8ӿO8ޏqyNPK <5WD[{dM ^e$v\3-Y\po<цQ1%jKۭ0IY>Kcqw8z˽<בp)Ah`'ؓY/MV'6 _Sy6vHopuap MX&V~s`=0x`~-@Ķ +7}2GƘbwwoۄEx+_';\jQ'Ok{KhdM"U;ļbZ;{Dn]-iFRH|'2m}DkNxʚ|D D RΥbD"w#.xBۘՐ|uSUTdÆXf]nO99B`Xc ϴbSʦVz7?;U#yT|DeGlgpN.UG`.QB[eU +E S2ԇKCΙ+>;/s^ިHl<=݀ԔiqmDi_$7,F\lJDF1dc96X ;bM RW6 $"[(iJ7_JLX]tdjf_n@'En%+9hMU߳ AxE{!v1NfQ*ZՑ@K4?{\{>4-K|8oZ`I@_2K;Bv "$6魡 *YU{bvi^43{C+-y]F/zߌcEh0\ҶԶvb%y +137Z/t {w(cNUfv`U&]{pVEUt"84CO_DoWiR!~SVbLSiu9E/KpZ׭LoDoGN +x |f:^}ǜ&µBGdܙof< t椬iv4J&6 |Z:畼Us4l(u|-{spMKܖ)|Eej-r~@?@DI'? +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/PVLQNM+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}`n 0^'5d, e 7d2pmlO6?!f81| 梛f!|+b#L{4 $БX:"Y^D@Xx]Qf9L=dM/Aywהkٌ HeU21F><eA\??B98` QABVT0_m~(r:Tl]e\孟~#ل`X3”l5UU7촪nJ1Y+u"@bSY Xh..-maT9_^gn+- Iل>(O2V$sBǯD08csJqn@%(\qFjjZt Ķ'}ܯ + +;svȵUrPb[1%KoD]ia2A٬SEVzwaƇkG)͌_ܔN藟 ^]9e~/_m1gN坺3uEz6FBj]AG*<; +VVKXymw{bu;[Kg>M_^)}έL:;/̃O~w7R6H4]#a .JG<̗]+N,sZJFqt#}X"N?j"WVx1 \֪]M\יh5[cxܧ~`󠯈p wj%i%ƠvK}Q rrH_%xr{NgG{$K="K"dI4|tWjT/5,دC/͞yRB|_fef-<-i\`k2elwmkyUFA9C񢎀4n,h b˙l$?Jc*B͙O tԅ>}xԞOq^a:n]EhĴ>Hxa>AoO[\y"GN)qT.r}e\dm |:Dy{Β V̄G,l2IXє޺4Q,~5?}{6U_s~R)PP7XdyFz6C՝zp;·pi.kE+kk`a8(}- +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/BYHWHP+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2Q]JXCXFlcf0+%kEv%$[vJu,Q%*BHx>^?{~suNJ[*(x$LWa6k(t! (d# `ZZp,hPMB]: RA47Tӥ4C[ +@Hl|ixK<2')ًh%4}.@'ωAXRׯ"C3!ApPH:)8<#~1DVM050T/$08+xa:d~?9 (G?_]+ L ??k?)  +_v3&c)8c8 ¿SP!ʪP@YE +*p@Cz_dPՄT4L?ߵaHx<EiCn`4H>| E﨓[xA[3G*y&PT{z#N[bܬ{{ |pmsHf~LOk.ƈ%S䥲_}c +"zU݅Y| \E͘guK}., MXNr"-EGe\OYoqvɔG?p*ׅ+o'[{}yzl•T:.)M:g@qfT#8I^Wc?nE,Nsjpp;h׼sM=/m@[f.9y `^xo/ K^gCY=TDǏ[ f4ղY'Ӳ8ټSPG(tVlX2y+*I-]DNM?7Lfg /~%!ȟnYfk `]INۺi8ZPۃ?=Fߍ2n(=X;3~L^I}2#s\P4W$W>~R!;usJyȠJ;#ȴYyȸ9սdE!0ܢ3XJJq(Aeez^uelH8Y$ԼOfy[q/U7SLWCxuIZfF7+xX|-02C[ڈ kp7RNiy.]8teB-{<؀I?pJ{6*ŒAF✑GdTgo(!i4;&}LCS~ c;w8Kӊ GI15WXz#YY8 Ҵ.9xJB#,Sg*!sRcil"K7,`w +,rԱM)K(pv0S2دȈڷ cZ*t +~u9T^Sg[9}3&ޑ)PnLh6Yao {|= +,8u0ƒвN-9xI .W<$N9ZKoĿ#t"4Шa]dnSOolfy]v"e=%֌| KJκ4>ۙ\P[|ڊYMhV4|eT T.QUC|%s!zI9{Ē v׊<ΡxbzUNp}D*w ʷv߷/x#M6) +\27vJh?M!wV~zK)}T$ObgI!rQהRW==,76;qK#n?c +{S2r;).G-:I+fy#D׻ 3o_5n OJ +)07oWMqz۱bz5_a|!Gz`3 vw1\.R뒈hZt l7,>UkOSIƽ{eɡ_`YXhl)Hyu˷~םQD3,Z<53RXmԛ $:vH;C]pACw$?\9&HncP!nEU |1֩;?nG$7%}p}R/E<Ev%ZnTضMjf WGuiBsrLqd<DF\|e~'Y{EjlET;ݍGT *'=f+w&Fb%OG*5) +&AO`x N!ah~ ,P +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/UKYXDK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWR(pRB1R" +Cf#LL07RR(({Plb*6(EMŅDh#h=鿞{ys{mBv|IY YƆKa7Bc.vvG..\Rprybp!B`^It!BD h% X ^"a 0`0@q! 1N0_A $`Q􍔄Q2t(I"pqwQCÕR @o5֍` Ă XgԽoZ͇(NF?Ryyd;g`<_w`x>`A+嘿7p hPNQA_ݎ nJ=pX퓸Vʋ-m_ϊƻ+lL*۽іٷ?#Wateo8qCۭO*/M*vt6?j +J{N\?)8a<2qG괸~Ѣn||M%@.HY.vL7d9Em]n{C_QޞC/G-'~v(^GedEfcqTy.}߻cY)R6_?X_.;ܢ'CWKȵvUD<|^C:NQڣQZInOᭇu 1޲"零XBVHOS3ST!l!goq ơ:2sҌyQ-S 57b{UŰzldyT 3b앋m7sOfëoo\gO9Vv*shzo*תݱVFNk+cH?;Meej޶ gU֘w^zVzݦ4NəskJ=b cDҒxS:': +鐯{-Zb05N˵Zk!3!ĻcГšSm/cL36U,_n'"bNBW5OiܛJBL[24Vg7hb7MsԷX[w鄶  +uM!=fOI3Ϗ+sYE[}dn s,Y~K2].ؓ2AVW2G6)/4<#aM4 r~VN+eZanV33dR$hoZmNu4( +ٲ„e[ܼSonTJ#7WܽS?\|oaɑzBբ-%;{3Eǥ0X0]=\ޑ+{ O:g_?y/$Lf"cր*&/j/7J;qVп|'b hRP c +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/JDEPRA+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/XOGZIF+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9998 +/Length3 533 +/Length 10552 +>> +stream +xUTѶl\Kpwww6$8];!8'As=~o=j׿(ZJ5Mq+g ; +PRYK.LK+ 9;I@q#]L tvغ$; vN@esw[_Ks0P +@\ +Vdd;dc,y'kg V.YArIiZTK ws0Xl;ځ}C@ p9R +e&c RsC<@LoI*k /?뿪jvNZ>.e?ch<3Ѥ,lNVJw* go?n 'ʴ\=@R@vvv>.f-= ?os@ o%r2Ou|v|j:P!m7Î/{ wc<ح'5/A +|, Bg뽓W:(b*X 3_sQT̀X:tE (tݣr8U_UiV;n-3$&f7mdGx+9) ip4ڥܛTP_iSmTpۖIǡ5>Y+1gdG Aʷ1(F+_`Mu1o|gwZ!6}~ +.3j5|Lb-Uř+[E*J&U4-;PEhrzh. [7'eX.g Y{S׈[֯>JP2\RqTzh*Z$}$iےš`>$ǮCEi)ov`fB򹬄0ʲ + +ݨ0]+AO_ )ȑ%.jSZb l <{='ֳbb'\~b2+eH.]y+5V&`5χRNs(;i+TLj̦R( ajQTg({ۧʙ5SJ +gc KlMuWFɑ{ni|G=0"pȼ-y&?j=#LMG{>l2 U 2.\yVOl%Rrw&y+0t~i3vLmO6~שBL)wݖmtdOL2 rJSZ f 6JBN+;يb)QR硖?;LX0Kkfdo.9 y +;CBVh޼\ʀB;P2; 7Hpk)~6 ΫwT.c_X8S>xǹ^: L̵R>2%Ly5<y +qI,@ \-{~?e"A?? + "@mSjgPb(QkZ;-UFzn+ʕ b MIDYTWYs +\>Jp_>*{B77[N(\|rYSkϙI5cR"aq=ecf48s`cY|yD#S5#z'BUHGDZTN+jjTbaZBRz h ٛ$I~޸=~'xBP\&wKynsV&.~Q @s\>l,5z9^ZӺ RQZBPZ1dڒ'9i{Y3k°2j5𲷽T C^Ʉ2/ZQڶ\ y-֢͟1%?#CÄ63Fj6H ex)2 T.G¬ +Sp6/u2elNRJƒ2mQ KQtl:=(605-{h9CE ?K(npwV(,J/S׋;>)e.V_WeGTym[02ZK~.L ßbTL=J/D|6jk(\/RB*ߓC*ՕWCj.߄CceH +{ ._frE]1Oap}RT&]Z'1 pܲ*ǫx7u\_T ~fp1IY 8W23}]lEA>/C$=>,8%Ps)>FBKJuIp8h +F@EOn'SyҪV}.@@3Ll:.qdAqk@ֹ0ѫ`HUv$]H#d?7<%bR`+5G=s& n*9%Ci(,IL"EXXޝ0ֆYåI֦Wٞ6C5 y!{l)^CgأlRr2gzP|/WlɷӪ|$D+ Miad!5/؈(]2?-cߠ{ NAt]xdV3rœt~U[eU)vP;JҭpS_Mq#R%C& +ܗ,ͨit0O{rԱvͱN6Ⱦ!V᧰r, +%]j,IqĽ̹xra'}ws\Qʍ8<ŷ-/ l0y_9^Fy#)jSU2 +$!oV @i(6Af>tdtZ_Xgh&ƳFdAkOPao1cI3d*g(iZ4)-v_,#AI.2,lR_½%Yh0MŅv!2;$SũvќAP|6\7L]q'MUk %μo< Wy.O}~jf)bF_bfaW-șOë޺/LHGY+ ̧m_}hOgYӇ+lrs̽:5 $i0nvT/>h/W_p9I\2?d:%">R>l/]+6"wD6,J1ңJ>-*iN~qzt}sbo2nqZyVe^qn1|^KH”q0c8b΄ڥ}@RFQ#d.dL%׈k?:Tz7s#kAtB3b0׹y~xCEi.W_ + g*I#5{ZVNPEz[Op)=D'W Y碂lm#82nV=Zf-#*|9;GsME%13⃮t׫!m q&Y1iB3,i`0  3̯!v;j~9З]NşF2T<+G>lCB1 DI5V&<v/2] s=呬"`Ui'W&B]݁hxd$+5o #3n+ a$5nR=DE(tRHtxZ7S]$53ƥF /x-%BȹkqKCLKhdžYV*M]?Y-$jؔĄXKūsԟ/ĔuF R켂z,BkF* Pп44', e4.+HD{g ! +(+T t=gȹ٣Y+-L1(a0 +8BSx=-\oȵīb{QY"Gk'Q~%<7*EI}KzsnA~oX8%ufPpHo"?F(B{/BYG OOrEg0(q?Y۔ J&J4F8|pмWkN2W'FLhXc޳ƃHjeRCڿ4i M]ʫ2߮,n8&4G=RF --uů+*>)xZ=e!1;_8_ZyVGzktxŃ2roCYg@HEq0uyd V*vb+A }O}~X Q#{Q#z \=?Eg`;5IX e͡3K}\f +/#u QE6LiF6ZՉnPʱ–oegu;c J? @xWS99ULItQ3kJg*3$N%c t L>ƫ*pUP&.Pͤ}-*sQ6( z3/+=bȜ^R TOz3C,85s\࣠F&PVƒslݕl& Xܳj$d8SAu./>'ŷ ³٦ +V|+CIwkss<5b99oCN`HjGVpryFxb2  &t k9>7>`$X&eѥA)>OtIC$oIz"ߘB#V"Ү~YKЁP +2~a vF^`4t>r lXPq!o#Ē#ԫolīYln{V՛OTe=ˡUs+eH7lt٧02vV)OI= + +#vZ?^ܠ2FV +nK}#qտ#ybhEfP[:h8? ) RB$`r?-|C 2iQ)|aя` Jȸ 8xdqf*MZqŦiNa)+׾tEsIWQ +rmڒ%"Zr6P-X!r(lMC uZL=@S냋d2`3e,.iHi>g4h]^gwze\w`HDw$q{rFũjoz/L-CާZZ͠-YLbsr٘ @zT./J sdلF*?K&5)êwEKyp]e({q7mCWh۔lCk'4\9-FIgz\+H vW25B?);B УB(z&ό;zz^5M +DRԧ>d:YiOt/RbAS\2"CUhVwL1T6]r$YOd~pV6p2O{F(-Q5zcf{ 'Yhm%sX]P{tE$Q,=sb›G𓒟T1h%ڭ TTtРڛ pNxf!$C++Cɸ[d߽u/c*<ZgÅ X9z7S«i T5K. xhiwƏ3*)y+Uwm_ɔamC}8qW  g#ߍVx~$,]A$2ZhuHu=Xa/k⦝xE]W8"41iM*ŀB +2Vud%cgwzKȍj5ԅj^F2nOh^Z᷍Tn0Z֮!+tSwF͂uG `} LCFcvo\_`tr^kWm,TӬ\|YIOրpMoP5GЗ;Yü1J:EOiǕl+sIj*ONbђ/I:dru NphH"r "=6!Kb4-N8w#E,qb[%Q≻kLx~תx}1¸zvt+FZ 6ͭ [7i"6kDHh1޾NQNUo,-cç"΄77"W3Q.,8ppz܂-K.[{݉E_Zw#j[d(DO?nU0Q\w1ɦ5ONۖGfxH q=Vs_uD;r["}zG2u_p򭍒VCImJN:B+mH8u34r pZ~7SyfrUM_RZo ͯy~@9?# O0WKhgeҳ"|_o=d %_:[Hw:G-b%7W?WI^\d哋I:?}O5^XFSʤ\l{DZ-٬+,NəCD3Z +@g}X{. 3xNUwzU B<ir`MWζ8W. X_rK?V,B_$I0Az#IspFG>fI4Dd:GR3$2aJ"3Ȇ*¢شL@Wi$a$ono$,aw~0>CJٳUP[SrmK_EX>qCyc&!U}{ƮKoa6O㛮UcɎ$SP!6=PBH9*/,)аɶwlsݹ٘)Zk"Rkv@'z1_d\c%L0xb=!ȟ4 !c,j4 }FVz' ߔv7"m p7><=Wrw_!?(#O;чYu*Z{ Y~V)!Icꭥ.ܡQ~)"_MMBUdAqg᢫#]>gz' n.e%G9V%V{Df }LVZe"8~7m)S~׿ 쭹d.%v)B@vDcxi*ҍ}ƻ_΄CԅwyᝰK:}}(F&J~IzET+cgI>{fGx8AI1V'ԚShxGwkVޖS|F ٧0BeaszOM׎)i^>{_H^.DQ]w⤫q(LI=*~h>4jeĭ\y\~rz8,ᄎ>*5~(a=?w,vӬ + +C#'XƟ-:"[KT 42elAoJE͒<a,?q_*)̜ߏ'$Il,%]G`&cfD1sCjv[UUϗ8Kv+ ܾ \(Eb`-5+|F<-{#8@=pT#ŋf7CՅLF8w=T6f]w7vk59q(R1&)_k8\ ua2]͌{ҕu{$9aR$uώdXhXhb}&h$c(r-#@3 .ZIYqCijC ?a` Cܝ! +endstream +endobj +138 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/MZBXPO+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 137 0 R +/Flags 68 +>> +endobj +137 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D7)"_ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\x +endstream +endobj +145 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/LSOSPV+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 144 0 R +/Flags 68 +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O NU M}ؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b`  +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185353-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +150 0 obj +<< +/Type/Pages +/Count 2 +/Kids[63 0 R 67 0 R] +/Parent 149 0 R +>> +endobj +149 0 obj +<< +/Type/Pages +/Count 5 +/Kids[5 0 R 21 0 R 44 0 R 150 0 R] +/Parent 3 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +152 0 obj +<< +/Type/Pages +/Count 2 +/Kids[75 0 R 79 0 R] +/Parent 151 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 151 0 R +>> +endobj +151 0 obj +<< +/Type/Pages +/Count 6 +/Kids[71 0 R 152 0 R 83 0 R 153 0 R] +/Parent 3 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +155 0 obj +<< +/Type/Pages +/Count 2 +/Kids[99 0 R 103 0 R] +/Parent 154 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 109 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +111 0 obj +<< +/Type/Page +/Resources 112 0 R +/Contents[17 0 R 4 0 R 113 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +115 0 obj +<< +/Type/Page +/Resources 116 0 R +/Contents[17 0 R 4 0 R 117 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +156 0 obj +<< +/Type/Pages +/Count 2 +/Kids[111 0 R 115 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 6 +/Kids[95 0 R 155 0 R 107 0 R 156 0 R] +/Parent 3 0 R +>> +endobj +119 0 obj +<< +/Type/Page +/Resources 120 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +123 0 obj +<< +/Type/Page +/Resources 124 0 R +/Contents[17 0 R 4 0 R 125 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +127 0 obj +<< +/Type/Page +/Resources 128 0 R +/Contents[17 0 R 4 0 R 129 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +158 0 obj +<< +/Type/Pages +/Count 2 +/Kids[123 0 R 127 0 R] +/Parent 157 0 R +>> +endobj +131 0 obj +<< +/Type/Page +/Resources 132 0 R +/Contents[17 0 R 4 0 R 133 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +135 0 obj +<< +/Type/Page +/Resources 136 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 147 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +159 0 obj +<< +/Type/Pages +/Count 2 +/Kids[135 0 R 142 0 R] +/Parent 157 0 R +>> +endobj +157 0 obj +<< +/Type/Pages +/Count 6 +/Kids[119 0 R 158 0 R 131 0 R 159 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 23 +/Kids[149 0 R 151 0 R 154 0 R 157 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +160 0 obj +<< +>> +endobj +161 0 obj +null +endobj +162 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 160 0 R +/Threads 161 0 R +/Names 162 0 R +>> +endobj +xref +0 163 +0000000000 65535 f +0000106109 00000 n +0000110028 00000 n +0000109673 00000 n +0000109878 00000 n +0000106273 00000 n +0000004048 00000 n +0000000009 00000 n +0000037579 00000 n +0000037395 00000 n +0000000913 00000 n +0000042270 00000 n +0000042084 00000 n +0000001906 00000 n +0000047593 00000 n +0000047405 00000 n +0000002823 00000 n +0000109778 00000 n +0000003740 00000 n +0000109828 00000 n +0000003993 00000 n +0000106376 00000 n +0000011566 00000 n +0000057649 00000 n +0000057460 00000 n +0000004109 00000 n +0000062921 00000 n +0000062731 00000 n +0000005055 00000 n +0000068225 00000 n +0000068036 00000 n +0000005991 00000 n +0000006967 00000 n +0000071135 00000 n +0000070941 00000 n +0000007921 00000 n +0000074773 00000 n +0000074587 00000 n +0000008867 00000 n +0000077450 00000 n +0000077259 00000 n +0000009831 00000 n +0000010825 00000 n +0000011467 00000 n +0000106481 00000 n +0000019790 00000 n +0000079545 00000 n +0000079351 00000 n +0000011628 00000 n +0000012599 00000 n +0000083556 00000 n +0000083361 00000 n +0000014215 00000 n +0000015167 00000 n +0000085464 00000 n +0000085269 00000 n +0000016074 00000 n +0000017056 00000 n +0000088121 00000 n +0000087935 00000 n +0000018033 00000 n +0000018778 00000 n +0000019665 00000 n +0000106586 00000 n +0000020408 00000 n +0000019852 00000 n +0000020363 00000 n +0000106691 00000 n +0000021051 00000 n +0000020470 00000 n +0000021006 00000 n +0000106970 00000 n +0000021711 00000 n +0000021113 00000 n +0000021666 00000 n +0000107075 00000 n +0000022049 00000 n +0000021773 00000 n +0000022004 00000 n +0000107180 00000 n +0000022999 00000 n +0000022111 00000 n +0000022863 00000 n +0000107366 00000 n +0000023345 00000 n +0000023061 00000 n +0000023300 00000 n +0000107471 00000 n +0000024392 00000 n +0000023407 00000 n +0000024256 00000 n +0000107576 00000 n +0000025054 00000 n +0000024454 00000 n +0000025009 00000 n +0000107857 00000 n +0000025713 00000 n +0000025116 00000 n +0000025668 00000 n +0000107962 00000 n +0000026656 00000 n +0000025775 00000 n +0000026519 00000 n +0000108069 00000 n +0000027561 00000 n +0000026720 00000 n +0000027435 00000 n +0000108259 00000 n +0000029035 00000 n +0000027625 00000 n +0000028887 00000 n +0000108367 00000 n +0000030097 00000 n +0000029099 00000 n +0000029960 00000 n +0000108475 00000 n +0000030722 00000 n +0000030161 00000 n +0000030676 00000 n +0000108762 00000 n +0000031908 00000 n +0000030786 00000 n +0000031782 00000 n +0000108870 00000 n +0000032641 00000 n +0000031972 00000 n +0000032595 00000 n +0000108978 00000 n +0000033322 00000 n +0000032705 00000 n +0000033276 00000 n +0000109169 00000 n +0000033954 00000 n +0000033386 00000 n +0000033908 00000 n +0000109277 00000 n +0000035946 00000 n +0000098984 00000 n +0000098788 00000 n +0000034018 00000 n +0000035030 00000 n +0000035785 00000 n +0000109385 00000 n +0000037331 00000 n +0000100402 00000 n +0000100207 00000 n +0000036010 00000 n +0000036933 00000 n +0000037273 00000 n +0000106877 00000 n +0000106796 00000 n +0000107762 00000 n +0000107285 00000 n +0000107681 00000 n +0000108666 00000 n +0000108177 00000 n +0000108583 00000 n +0000109576 00000 n +0000109086 00000 n +0000109493 00000 n +0000109960 00000 n +0000109983 00000 n +0000110005 00000 n +trailer +<< +/Size 163 +/Root 2 0 R +/Info 1 0 R +>> +startxref +110126 +%%EOF diff --git a/src/axiom-website/CATS/schaum23.input.pamphlet b/src/axiom-website/CATS/schaum23.input.pamphlet new file mode 100644 index 0000000..96485e2 --- /dev/null +++ b/src/axiom-website/CATS/schaum23.input.pamphlet @@ -0,0 +1,875 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum23.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.461~~~~~$\displaystyle +\int{\csc{ax}}~dx$} +$$\int{\csc{ax}}= +\frac{1}{a}\ln(\csc{ax}-\cot{ax})= +\frac{1}{a}\ln\tan{\frac{ax}{2}} +$$ +<<*>>= +)spool schaum23.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(csc(a*x),x) +--R +--R +--R sin(a x) +--R log(------------) +--R cos(a x) + 1 +--R (1) ----------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb1:=1/a*log(csc(a*x)-cot(a*x)) +--R +--R log(csc(a x) - cot(a x)) +--R (2) ------------------------ +--R a +--R Type: Expression Integer +--E + +--S 3 +bb2:=1/a*log(tan((a*x)/2)) +--R +--R a x +--R log(tan(---)) +--R 2 +--R (3) ------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +cc1:=aa-bb1 +--R +--R sin(a x) +--R log(------------) - log(csc(a x) - cot(a x)) +--R cos(a x) + 1 +--R (4) -------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 5 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (5) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 6 +dd1:=cotrule cc1 +--R +--R sin(a x) csc(a x)sin(a x) - cos(a x) +--R log(------------) - log(---------------------------) +--R cos(a x) + 1 sin(a x) +--R (6) ---------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 7 +cscrule:=rule(csc(a) == 1/sin(a)) +--R +--R 1 +--R (7) csc(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 8 +ee1:=cscrule dd1 +--R +--R sin(a x) - cos(a x) + 1 +--R log(------------) - log(--------------) +--R cos(a x) + 1 sin(a x) +--R (8) --------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 9 +ff1:=expandLog ee1 +--R +--R 2log(sin(a x)) - log(cos(a x) + 1) - log(cos(a x) - 1) - log(- 1) +--R (9) ----------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 10 +gg1:=complexNormalize ff1 +--R +--R 2log(- 1) +--R (10) - --------- +--R a +--R Type: Expression Integer +--E + +--S 11 +cc2:=aa-bb2 +--R +--R a x sin(a x) +--R - log(tan(---)) + log(------------) +--R 2 cos(a x) + 1 +--R (11) ----------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 12 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (12) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 13 +dd2:=tanrule cc2 +--R +--R a x +--R sin(---) +--R sin(a x) 2 +--R log(------------) - log(--------) +--R cos(a x) + 1 a x +--R cos(---) +--R 2 +--R (13) --------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 14 +ee2:=expandLog dd2 +--R +--R a x a x +--R log(sin(a x)) - log(sin(---)) - log(cos(a x) + 1) + log(cos(---)) +--R 2 2 +--R (14) ----------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 15 14:461 Schaums and Axiom agree +ff2:=complexNormalize ee2 +--R +--R (15) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.462~~~~~$\displaystyle +\int{\csc^2{ax}}~dx$} +$$\int{\csc^2{ax}}= +-\frac{\cot{ax}}{a} +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(csc(a*x)^2,x) +--R +--R +--R cos(a x) +--R (1) - ---------- +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=-cot(a*x)/a +--R +--R cot(a x) +--R (2) - -------- +--R a +--R Type: Expression Integer +--E + +--S 18 +cc:=aa-bb +--R +--R cot(a x)sin(a x) - cos(a x) +--R (3) --------------------------- +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 19 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 14:462 Schaums and Axiom agree +dd:=cotrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.463~~~~~$\displaystyle +\int{\csc^3{ax}}~dx$} +$$\int{\csc^3{ax}}= +-\frac{\csc{ax}\cot{ax}}{2a}+\frac{1}{2a}\ln\tan{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(csc(a*x)^3,x) +--R +--R +--R 2 sin(a x) +--R (cos(a x) - 1)log(------------) + cos(a x) +--R cos(a x) + 1 +--R (1) ------------------------------------------- +--R 2 +--R 2a cos(a x) - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=-(csc(a*x)*cot(a*x))/(2*a)+1/(2*a)*log(tan((a*x)/2)) +--R +--R a x +--R log(tan(---)) - cot(a x)csc(a x) +--R 2 +--R (2) -------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 23 +cc:=aa-bb +--R +--R (3) +--R 2 a x 2 sin(a x) +--R (- cos(a x) + 1)log(tan(---)) + (cos(a x) - 1)log(------------) +--R 2 cos(a x) + 1 +--R + +--R 2 +--R (cos(a x) - 1)cot(a x)csc(a x) + cos(a x) +--R / +--R 2 +--R 2a cos(a x) - 2a +--R Type: Expression Integer +--E + +--S 24 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +dd:=cotrule cc +--R +--R (5) +--R 2 a x +--R (- cos(a x) + 1)sin(a x)log(tan(---)) +--R 2 +--R + +--R 2 sin(a x) +--R (cos(a x) - 1)sin(a x)log(------------) + cos(a x)sin(a x) +--R cos(a x) + 1 +--R + +--R 3 +--R (cos(a x) - cos(a x))csc(a x) +--R / +--R 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 26 +tanrule:=rule(tan(a) == sin(a)/cos(a)) +--R +--R sin(a) +--R (6) tan(a) == ------ +--R cos(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 27 +ee:=tanrule dd +--R +--R (7) +--R 2 sin(a x) +--R (cos(a x) - 1)sin(a x)log(------------) +--R cos(a x) + 1 +--R + +--R a x +--R sin(---) +--R 2 2 +--R (- cos(a x) + 1)sin(a x)log(--------) + cos(a x)sin(a x) +--R a x +--R cos(---) +--R 2 +--R + +--R 3 +--R (cos(a x) - cos(a x))csc(a x) +--R / +--R 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 28 +cscrule:=rule(csc(a) == 1/sin(a)) +--R +--R 1 +--R (8) csc(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 29 +ff:=cscrule ee +--R +--R (9) +--R 2 2 sin(a x) +--R (cos(a x) - 1)sin(a x) log(------------) +--R cos(a x) + 1 +--R + +--R a x +--R sin(---) +--R 2 2 2 2 3 +--R (- cos(a x) + 1)sin(a x) log(--------) + cos(a x)sin(a x) + cos(a x) +--R a x +--R cos(---) +--R 2 +--R + +--R - cos(a x) +--R / +--R 2 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 30 +gg:=expandLog ff +--R +--R (10) +--R 2 2 +--R (cos(a x) - 1)sin(a x) log(sin(a x)) +--R + +--R 2 2 a x +--R (- cos(a x) + 1)sin(a x) log(sin(---)) +--R 2 +--R + +--R 2 2 +--R (- cos(a x) + 1)sin(a x) log(cos(a x) + 1) +--R + +--R 2 2 a x 2 3 +--R (cos(a x) - 1)sin(a x) log(cos(---)) + cos(a x)sin(a x) + cos(a x) +--R 2 +--R + +--R - cos(a x) +--R / +--R 2 2 +--R (2a cos(a x) - 2a)sin(a x) +--R Type: Expression Integer +--E + +--S 31 14:463 Schaums and Axiom agree +hh:=complexNormalize gg +--R +--R (11) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.464~~~~~$\displaystyle +\int{\csc^n{ax}\cot{ax}}~dx$} +$$\int{\csc^n{ax}\cot{ax}}= +-\frac{csc^n{ax}}{na} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(csc(a*x)^n*cot(a*x),x) +--R +--R +--R 1 +--R n log(- -------------) +--R 2 +--R cos(a x) - 1 +--R ---------------------- +--R 2 +--R %e +--R (1) - ------------------------ +--R a n +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=-csc(a*x)^n/(n*a) +--R +--R n +--R csc(a x) +--R (2) - --------- +--R a n +--R Type: Expression Integer +--E + +--S 34 +cc:=aa-bb +--R +--R 1 +--R n log(- -------------) +--R 2 +--R cos(a x) - 1 +--R ---------------------- +--R 2 n +--R - %e + csc(a x) +--R (3) -------------------------------------- +--R a n +--R Type: Expression Integer +--E + +--S 35 14:464 Schaums and Axiom agree +normalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.465~~~~~$\displaystyle +\int{\frac{dx}{\csc{ax}}}~dx$} +$$\int{\frac{1}{\csc{ax}}}= +-\frac{\cos{ax}}{a} +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(1/csc(a*x),x) +--R +--R +--R cos(a x) +--R (1) - -------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=-cos(a*x)/a +--R +--R cos(a x) +--R (2) - -------- +--R a +--R Type: Expression Integer +--E + +--S 38 14:465 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.466~~~~~$\displaystyle +\int{x\csc{ax}}~dx$} +$$\int{x\csc{ax}}= +\frac{1}{a^2}\left\{ax+\frac{(ax)^3}{18}+\frac{7(ax)^5}{1800} ++\cdots+\frac{2(2^{2n-1}-1)B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 39 14:466 Axiom cannot compute this integral +aa:=integrate(x*csc(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %H csc(%H a)d%H +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.467~~~~~$\displaystyle +\int{\frac{\csc{ax}}{x}}~dx$} +$$\int{\frac{\csc{ax}}{x}}= +-\frac{1}{ax}+\frac{(ax)}{6}+\frac{7(ax)^3}{1800} ++\cdots+\frac{2(2^{2n-1}-1)B_n(ax)^{2n-1}}{(2n-1)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 40 14:467 Axiom cannot compute this integral +aa:=integrate(csc(a*x)/x,x) +--R +--R +--R x +--I ++ csc(%H a) +--I (1) | --------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.468~~~~~$\displaystyle +\int{x\csc^2{ax}}~dx$} +$$\int{x\csc^2{ax}}= +-\frac{x\cot{ax}}{a}+\frac{1}{a^2}\ln\sin{ax} +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(x*csc(a*x)^2,x) +--R +--R +--R sin(a x) 2 +--R sin(a x)log(------------) - sin(a x)log(------------) - a x cos(a x) +--R cos(a x) + 1 cos(a x) + 1 +--R (1) -------------------------------------------------------------------- +--R 2 +--R a sin(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=-(x*cot(a*x))/a+1/a^2*log(sin(a*x)) +--R +--R log(sin(a x)) - a x cot(a x) +--R (2) ---------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R (3) +--R sin(a x) +--R - sin(a x)log(sin(a x)) + sin(a x)log(------------) +--R cos(a x) + 1 +--R + +--R 2 +--R - sin(a x)log(------------) + a x cot(a x)sin(a x) - a x cos(a x) +--R cos(a x) + 1 +--R / +--R 2 +--R a sin(a x) +--R Type: Expression Integer +--E + +--S 44 +cotrule:=rule(cot(a) == cos(a)/sin(a)) +--R +--R cos(a) +--R (4) cot(a) == ------ +--R sin(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 45 +dd:=cotrule cc +--R +--R sin(a x) 2 +--R - log(sin(a x)) + log(------------) - log(------------) +--R cos(a x) + 1 cos(a x) + 1 +--R (5) ------------------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 46 14:468 Schaums and Axiom differ by a constant +ee:=expandLog dd +--R +--R log(2) +--R (6) - ------ +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.469~~~~~$\displaystyle +\int{\frac{dx}{q+p\csc{ax}}}~dx$} +$$\int{\frac{1}{q+p\csc{ax}}}= +\frac{x}{q}-\frac{p}{q}\int{\frac{1}{p+q\sin{ax}}} +$$ +<<*>>= +)clear all + +--S 47 +aa:=integrate(1/(q+p*csc(a*x)),x) +--R +--R +--R (1) +--R [ +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R a x\|q - p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R , +--R +---------+ +--R | 2 2 +---------+ +--R (p sin(a x) + q cos(a x) + q)\|- q + p | 2 2 +--R 2p atan(-----------------------------------------) + a x\|- q + p +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R --------------------------------------------------------------------] +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 48 +t1:=integrate(1/(p+q*sin(a*x)),x) +--R +--R (2) +--R [ +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a\|q - p +--R , +--R +---------+ +--R | 2 2 +--R (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R - ------------------------------------------------] +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Union(List Expression Integer,...) +--E + +--S 49 +bb1:=x/q-p/q*t1.1 +--R +--R (3) +--R - +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +-------+ +--R | 2 2 +--R a x\|q - p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Expression Integer +--E + +--S 50 +bb2:=x/q-p/q*t1.2 +--R +--R +---------+ +--R | 2 2 +---------+ +--R (p sin(a x) + q cos(a x) + q)\|- q + p | 2 2 +--R 2p atan(-----------------------------------------) + a x\|- q + p +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R (4) -------------------------------------------------------------------- +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Expression Integer +--E + +--S 51 +cc1:=aa.1-bb1 +--R +--R (5) +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Expression Integer +--E + +--S 52 +cc2:=aa.2-bb1 +--R +--R (6) +--R +---------+ +--R | 2 2 +--R p\|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (- p q + p )sin(a x) + (- q + p q)cos(a x) - q + p q +--R / +--R q sin(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R 2p\|q - p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 53 +cc3:=aa.1-bb2 +--R +--R (7) +--R +---------+ +--R | 2 2 +--R p\|- q + p +--R * +--R log +--R +-------+ +--R 2 2 2 | 2 2 +--R (p q sin(a x) + (q - p )cos(a x) + q )\|q - p +--R + +--R 2 3 3 2 3 2 +--R (p q - p )sin(a x) + (q - p q)cos(a x) + q - p q +--R / +--R q sin(a x) + p +--R + +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 (p sin(a x) + q cos(a x) + q)\|- q + p +--R - 2p\|q - p atan(-----------------------------------------) +--R 2 2 2 2 +--R (q - p )cos(a x) + q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 54 14:469 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.470~~~~~$\displaystyle +\int{\csc^n{ax}}~dx$} +$$\int{\csc^n{ax}}= +-\frac{\csc^{n-2}{ax}\cot{ax}}{a(n-1)} ++\frac{n-2}{n-1}\int{\csc^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 55 14:470 Axiom cannot compute this integral +aa:=integrate(csc(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | csc(%H a) d%H +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p82 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum23.input.pdf b/src/axiom-website/CATS/schaum23.input.pdf new file mode 100644 index 0000000..a88073d --- /dev/null +++ b/src/axiom-website/CATS/schaum23.input.pdf @@ -0,0 +1,2155 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZERBIC+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/ITPABG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/JUYRJU+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂K꼒@XTơ0)N'Qri%/`o!&E)YOcFn]nPћAI6J%1lj6D +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/YYZPBL+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/LTVIHX+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/BHBTKJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/XUEOWF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/UGCUXL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/PVLQNM+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 563 +>> +stream +xڽVMo0++O|+{-ڂZ|vd¦hۓxy͛I@Rp yowg ]#:Ӳ{ywwe<|/rB6h)Ӷn.hh7DB@_JD4tc~_b#WI>n;ӬSi:f!UAO8s QaaC]%Rܐ ŧ!H9!8'smKʣ +$:%)\wn<] +\փBޱvY;cĢexu Lv2 Qk+|cBY׎dLxDj7қ5'21IU#W?DAǕ]:~%;lr-X'@΢52JQd04ͫ(Chd/TAݼc?ǕnDĄqEoiRcQM)~? +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/BYHWHP+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/UKYXDK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/JDEPRA+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/XOGZIF+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 724 +>> +stream +xڵo0+| ]mlNzNqe5=,H 4BaHUyvR8&s._ȧALH2}! +NUI\~`Dx=URymH2e]P,l8^CTL` )‹ *3 $vQ׮e-G1e%4i;<$FLzg6f}x?E&J7\gL<:G[=ĊEtkHpL +g^smpe[=m 9\TFFqpG#ʵ޳JY|`3D aV1/8|W6eIMz#!qR̀rS^9"(qs%[A8TvUn]6뭛2Fsd.}+Khʺ}\lzy9V,Ki^e>z+-VM9ߘt'".__N+R-8xԌTq-y*O":GH-G`cypL%f4FcE?rX-*l~,?jQ[/f38raz>Uc<ցKG?ð/3>c|Yf| QKw̯%#)\ 4 \:zgw˾CQ6.$|M2&_.~>lC +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 464 +>> +stream +x͖Mo0=l` }&^Â11beۯV06O_ !0zx` <@88.=NA]w<U ?nc^.ƞh!LzeŠד<94HMs*Z]Gŀ-1Ɛ1RչgkL39Sh3{e ʟlS]~)C5Zd7Dxf6Q~rbi@s%Fv%6-< Tv GHLu~JJ"\Oa6:l{t7`'oÂ-,Q6dyyM1$xEC)wF +jgR(rN0> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 497 +>> +stream +xڽ0} +m<c\VUlnMY0KP`UڧȒ8U90qf?A4.S:P(]" DbJ?0!gQDXV@r Df,u$d6'#RejܝrȂ,p-e^.-d [!ΰ:Xo𽬞vfvw@=u7v Ul9yzb0RʦF"Dry1܄Pg1ݵGu݀7=q5+}[&z޲nel֓[ IV׵,9l Bs n*T탚}]d[gW뙭Y=Bu #2BLqIa'ZwCKuۜF-F)S=BS釿 +endstream +endobj +70 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 383 +>> +stream +xTO0Wb +-tx [$G@ ^{{_}ĶQv$( sJ<' v=ʬm*V8`l=\a G}UʫЊL[97*D P;pEP1+{3:9rf^5RVUg&^e,ˡ.I"ܲ=tv!"ylIc<:TIKtzaG7&_神ӱ16poS ӷ0 S\;gr0%zK+(ۘ:&R +(!/h|HӡLxYWLݿ W:qngʗ1 +endstream +endobj +74 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 700 +>> +stream +xڵr0} +-!݅aNNMC: M<Lܷ4ۧQB)G}_\I$#͈QkC$x*a)ŕFX\p!.?Q'r[$rM^ogbHb>n?sK|K:ƈD5M&ALC&~D֬VJTk͹dCX 9L (Art9}q<-I##9a PЊ qFebN_̴;C#HdQMT&?wưC  Nc`dCЃ 0#ӭy,4[w}]܍Dg<> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 166 +>> +stream +xu@ w1H\`t4LE\pj +*vnQV )C # _DY&ۢ5HY %a ΃qGFDmbdXR> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 837 +>> +stream +xڭVMo@Wц"qTƩd(M(DwvmC0;of̼$,I_N.dhΌ"T&HĔsP"Jj??O4j9 wV DF ~YDbʼΓŰzBǘ +#6#jC$FΨ3 L&hfMIڤD2 dN14Г=?vf$:+0UY32+1M~!,$Waa]=ζLn IH(&i{ChB*:Ey-1>$aJצ*PKM=<-U5`6)@o啺ўhmx @N@n +>5PP8},<_%B$w_Fug qq4nATղgC8n `r_bp䛍oO5f=9bUtVO/aE :P~%w~TBDHeoqd*hqx{!|Wۿ?ur!Oe܌2/9H[5ȯr{|~Y\rX0[w{Ff-oh]^#ܚcOFyy4eE%jyQuIQաsZ Ӫчz.ɪ $ܬM +>!v[r99],^3 bVbopwhWiԈWrSC xfPW.x+h9s|S.UsAoX.d#gZ,\ LhB)Ζ!V +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 478 +>> +stream +xUAO0+z,-]q3za,Y3oi((:^b 6@/w&d ++9_ q +'yN]Y(ԯqqHcKg#8fMB[b?ԁB7F$}aGD`0~`}~( ShC90|?ч-ӕ.~L7i~]!ObM>yҡ=ټ99j15.T$X' ڔk4Ծʣ11$7lclr݁()]&Ǻ);KւZO݂AjFRi]/`ɏIf$Er³Ȳʉ JƣQEj-s{vj;C%.onJբw^~WL.*+͡z8Q„U-? n 3 `"C +endstream +endobj +90 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 507 +>> +stream +xڵN0<N=N|)%;¢ܪjQNzIN33hJ)Z!wE dHZb$,1!TƋmUyB8L䩸GTx2lzFzSgb S̬9p*;GLHm e 6HSQMە}ZB<_gyc8rJqY +s,E|bԳSb6cG",>_؛N?^vۍۼم6/YC:X@g3Ky5-58yAT87]&}muy߭_U\n=`Cz,IM3ȳKLjPnI> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 430 +>> +stream +xڵUMO@+i,]4Fcy/<;HpXtaY3rbآ "/o⺩: +endstream +endobj +98 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 695 +>> +stream +xVKo@+tߏH ZG.Er)S%];v8,Ewofy! #$~'o׊pRwb8XMm&s[~7C2jrxymosHHBVU֍&/"JvZ/%(8",< ]SiumWDuJ`"$hs֪# +V== "TLW>Ym2Ѝ5}ڄj !mX^L6Yb;7XcMJқdvZ~[ZMq< ~S-(ac}v,)`ĘitPN& ?$EO^cX*e1Fj~v,,$n5a;Y~6U]n0Tar69̳jZhW*5Nn--شg:)QMyjXf_x~!_,d\ uܮ^%!8.h)|BǃMl<:۞]$璑e:|( +endstream +endobj +102 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 654 +>> +stream +xڽUMo@WѤa׋ġU=ziRwkEZ$YygL0FyOގ\ΐWb9XN`5(ԣBeOՠGi]m62|պw?HۅלbԘWeT<bCxt]UJz糟UDe +1{-'@ΊL=fe No + +nv*s0!9fD)c7s J&iiUT ytntE9r-9(?Q\6.D0yZn@cY䟧dRITi] ƥ1E !y-ȂQP C)bhބByh(WN}}h_+R3Sք!=h8pjg2?6 Im䪓ΛcIN w2&r^u3yN>1ݱ~0\x[^dj[{z/? uYh#$&-_24FszaQ+#K%Z~md2(;X3qgRb lӷ~۬,CdG_M,?bJ&L> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +111 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 110 0 R +/BaseFont/MZBXPO+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 1219 +>> +stream +xXMo6WvHsHA96K6Y^@|gHiEQ:ne)q8|o8yr%՗*TY54\j[;[1pdR*(?X~Z;y UhhظCw+趷iL׮qrC ndknL;ܔh-os<.CAvF--d1GRENg4IW]#xRW׸}Qpo +^rcb{,쐘hOLa^,1%. *G ;K 2 +<@9nw Tݥ^Ϙr;.Kv-HăV=HY:Qu^IPA ,p33Qkآ@RD(͌vDaeƊn娑8Gͤ\D<@MtC݊Dsu~t\!ɜvl ;Xۃjp=g=Y9A8lV]FG6 Ě)~7kfZŚ|Ś<$ABGĚ$zQk9:.KNY'739Ԟp=IEK qp+!GؚBLzOs%IB/t+Fm!ȺaF]UсY }໿g8 +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F11 52 0 R +/F9 41 0 R +/F14 111 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 800 +>> +stream +xڥVMo@WцH\&U{l! )J}gwllL 73ofޮ0`pROb8XM}rʹ="J? n Mp20:|OΪ\İf0a -a:Β]VY0A4xÂ>ҪǾIZ =+ƶV V|l(ޖZG#U|\zي2WV։Pށטê׹wxU1r3F(AyBo" +Y%C=!5(cXMqcޏiBUś7rz`8u&QMI0Ds!IZcb옐;emZT(]CHVڕEeͱra7Ĩ^9S*qDžgyɩM_,q,r@]2&[NM*h͟6n>='xmJͩ +Z0 xX>\?MZB`q%_G-L#&6ӃI,<#:d<3(^u{% N0|V5:7 =usF]t:($}>(E/ ,ʹ)ZC ^Q%Yf}vg su:pm\svB0 GEAӫN٭7ep6gO/>W:(J=$NhXxcN:n{Fy e9ɛ[B7zݩv69 j/+Or- +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 443 +>> +stream +xڭTO0W8mc%< +D7Fޮp{w + `[poPrρr +q9@2= #,aJk0+M G7`hdYQnrCh#$'m&1 0 !fI@kH9 pxT*51ZEs7˕*ˬȭ{F߫<>(=;HȕߕymUۙp!KojETGa] +endstream +endobj +121 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 918 +>> +stream +xڭVn0+xcG^6E(!uSnb.Iɢ%ѡ:X%4 g;nɻ,-) 5AI 7BȲ7f7ϋKMsڧa(?)#BnXTscȇ%'jˬ&D8z!WIřd7R|Hhۑ\&xfKfqR,+sJbRyY\3+@ђv/Mx,.MW*4S2U0.H.O3m$K*MQ'p M&󆔁s+BqcZSXoJ!!tGb#Is Q1 (3B']lAjp":lVrvC+@k~bJP^cE~5 l;`E@.q>H4~k44qjnSvglB=xhfKDUi]z]_]?UUEU3쟪ϞY5;a"__(MY":,  Hc rLXqWi9:W»('/yS9@l]9Qex:+ڟaLê1?s +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xڥVM0W!6Klժ="U | !&773 J(Ekd/S>24 +PHVnMMy,̼2fyϡ#?.7i3K/Fwvy"">kq3JU%VF%VyG, rXte+}ou1/]dNvs߻+꽪eǁ8=% l'wz"'|B0y9 M/7- +pnsw+#(cHmF]©UMmK+0.9M] z)I;GȺЈM'㹏Vb wGgL^ZhYm0ϳP + +yhn+ 7uc7Vr_5_ۉU엄|SPxy1x+\բaa ge^S]TN)ϛIy:OJ[&4'%֌6` T$84If(V +endstream +endobj +129 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xڭVMo0l<68R/UVz Q6JHCV_&)T.x>p9Y7$yfR!BS"k@KHAHR2YG7Z-&PfV*(R%TPags5V"(O-tѧlWpw]d1od` +il_JtEb }SHeje/Da' D Jh.%幐:U~a^}ϋB2oxWccU;CBAM 1r6it3kCK([ +*qڬ*uNj`6V?cM&;Ȑr'$'m/ 0CRz-7Xf Vor d@ u-@S"`p7)nXv4fNYt`bn w\x}“gzw72֓|hisqK|'.5D]PM⧯' eڲȰ,s;S +endstream +endobj +133 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 503 +>> +stream +xV;O0"~/$D`l!TBBm! EDZ Ylwwc0nhBH P=I$ +$}m<+` AzXJk\FpE,f3L묀yJQN0Fv$n!9*,j2)`:'.L>]Ѩ~a>L2][XaYZmzŗYA)wk_# EΥh*@w 6C!uAW;W˷ms}=of[(| ~GMSzv^׈G"$V=ʸ3s[}'fߐ,1bKV%oԪ΢XSEdN(&d#z=m:T>A::"&zCt_? +>&F$Yt=Ec3-l4].H)&ɸ:ϟKv +endstream +endobj +137 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xڵVMs WpAډinEU]$l3| [ ,¾[@ B`l|(@DbI$cAxǐfn 1(9qhg`;3'L UpC/z8\e;Hh؃ dQm'>=ts\HGR. l#;F("D3 k#LA L5Y( G)SHc;.Kԍ^<j`ȶWG=AE:.u0/邔Ԓn@'p6\36#{'a~HV1hpnU@>MbX"z8W^]N猍5ʸKX}57۫seKڔ_PaڂwYW"n Q}\?̧ق ?ߗ|>/~l/NEJ޿b6Jdk2$*:2 +endstream +endobj +141 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 686 +>> +stream +xڥUKO@W쥒 ;FЪcI/Tr %jzL5G~zzԠ4dV3[?\'R\J4ɵv"~>̃AP05ʷ(Uj'2̢d HTAfKuʕ3m=$ĥ sR; IBP̂w-m1 R)u=^#' +bAڀd +0EsrũH?ez/l[@la} 6 XԞ-r^NTjB2䁡*dd($`^ΐ!kj 7ge61֧dq,GJ!K|-jzALvĽNLQu@MMWuh*{stt}+hd~|Oxzeu@V.<-brCKX, Xί"hLEIXz|YQU4|Xږc{?ۼږwb$hgCM8{uR3"98Z3v8ߔ!0o&6gC6[zy +FqUN|YyZ eV>92O7@t1߬> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +150 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 149 0 R +/BaseFont/LSOSPV+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +151 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +a|Z'UE9'V_c^zaewf`1;x6<P@qM(Uwm|6o\BF3Zi S͗?c2{?a"D-[F!)q)oc]Z'`2KtQ]0A93`2y;@Pl3X' :*9bڢ "7;54uѩp}5WȾ> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 152 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZERBIC+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4053 +/Length3 533 +/Length 4603 +>> +stream +xg8\m>$eѣwmb0FBA zBtBEID5}cϺz|y (u,/*FPI* P<QEQ2TZ +(y:*!#&%# +/n% (ph{EP!kF}@0c`@PHa +h{_M7uW?k֗}{azi\|aj{,q CKw(ee $*a$L:L1hwO* @$T=q8_pyP>({L&4 }O[9v)]H'DE8NQnĥţ:HW6ئחlYa#z+"mۨ&{q}dޭuDoP4?U@~Bβ=" -X}D]"ML4ufl>a9 ^;5pH5O<~9500^+"9뙛'x1%R#E#7[XMp(em:̬R +,NIB:*@UԸ_ PN[ɤ8cD^4%5Do>Sٔu<>HIEȭ +%3t k)C29-K澥O됭;cmؿᘴE6J_*Su*e[;x}d,_j*^CI'/{𬳾 g=8VvAJmϧ}cegnh%ؠL}fe F Hf6LɋNiF/`xKk +s"}Iu6 g"at} H8T<'?ie9pN7Ny%/:Aw OZI~Uk?;\Bs2K,O)#BG~˲kZBò-6-iژlʂ%:3r6IK%29{lfNȝopE M>PxWkj+?WV{K>pqùPRgTP2 6quwM[ޜN}Mrd oK-nyN) OJ~`7sa~S,buq UXű.pxגg۴Ʀ,JQ_|ySP'jJ ")Ι#0Mʠ +WR'S`^5ye~TkL [f׫R|/S BC 󊺽v[P&@5d)7'MLhd*ll;QB'=gҧ^R\ZLԯ߱tό7-?M_}2 ZYۭD p]VQG=, 4IXt\GɐNۓ<>2hnW;(z_^!V1r1@M3!Y,;@I-^!܀pSo I )#{^:Ax=1m8)פ5+2?{ V>pm,l60Zpn|뺯AK'[Nλ2UimV,"^3̥'}+~=5ߦ;rv8 ӬP ֱXi|oU ~ݏx'QS鮫Q|੕שTEI-caD= oy?4}3TnF| 0Ù;f)sc#*ʂylK| /?P otj}Vofjǭ;w5бU_$=z:)SݸRp]xHX߶9*n }GNn_/Ubm1wcB/I6ҒɊ+&{g n>RH _2K_%h +m_adgzSmcPf$b&QsI"O @)(Eb{LI74.| .ֶU9)hTS_qCEvpxRZ7of;S*!yߠ^s-/ll gG؉& vxݩu1CVg1=x;pbJ= +4)s~is;*~lSTB}OK[h1}*:c._쏦}(h[J|S5oUSX:G̀!&ާŷ_PgPm#[sdSf^}VvQeSa$#'ͅhB FA`.tA5›M0-dcX,1"{]1IF|#,uHâ)|*)<2eНv|rTYH{.,a&ci9.tY[dN5,'[Eb7Es66Xq ci+HvFZƤ'1!`}Hk^Gp&|/tS5Rڜl1嗢KJk\Ĕܽ ]~ oSAOZp[V\Skٜ" H/74y.^}WacɚvGz8Ą>KaQP8'D3*|Q-mMVz>&1hRפPx`'1. DLg ScTϐꟑJ~w3H4}sBkq'JStjؙ2" +>eXQ iUlceBܱ{Bff[Tl~c 8{V=}F +EyE8xӂ6Uة[ms C`8|Tc]ˠd Fx* ++&"O.8~ͩq|v 6XmF,rPAr}ӣjB騬-\qxܠM9!yYm +Y6{c,w@ +$ 1XSKd77a S?qӔ'wT/c[Op9p#95ÆkKC$ +?L}?Vd8OyJ? +`&?PϜZ +[l򓾍wB O% | h+7f5l,U$&aU0Ɨ4usn^}Vt9rzpL@Bl2J&sikAu8L?UŸƫUvK˴86iƴ!5-Է/,ƨn[i!$ľw@>sUvaP(M0Hj&V6l*[qT5-ᰱH7I>Lz57`.-*fIN##tEKgYlwHKHhS $V*%&,h%1#ǥ27=،==TG(5W%c|ә4 `c%1EZE~Uv2/e?ʉ#0ȱ{W > +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5021 +>> +stream +xgXS뚆)!HU0@ A.Mz[ !: =(HQ:RI^H,ޑr{9s>g7׬zYwZbч#He,I` ť莄{pO$&!{9 }{PQ uqG98zxp](;8tDAX;GGAz<Cz ݽA !Pv [ +I c%#\F{D`1hi P=\ ֆǜ wA}ÀuqD;Vc_lZH]5O8e'q@#Aп$2 +D<ApOADR3БWPԁ0>g xQ89T +6^fJ;,q{1;_¿C)(`q~{" ( $!.W!T{Bb"v^H_GCSQ6uMɢG C=;hI:STg:I'wdZ:||Xg}K%1ː*3"-dty "ӵyDw`4،T vJ5^[bftL>et.O^A *UM>Te :XXVU L/v6RgfYIj<>yDʽĮE ĨHR#"f͑D$n8_I l[.bCcɕ{(wN2i,0揵LM$%?c(mh+tsN_Q<=!Ƀߝ. e8 /+J يSs6f9o,JiED^1YMǾv _ 5g-ra2.AF>9e;&d;?~gNETOD-`ŲM}ݝl iLiz' +O?O21ZY5ʱ9]Kko37QHA%Y_qJ-0Ϝa7 +z*_*C"1F>-ͫΤqޚRpW]ן{ޫ먰`Y}Ыp<4k*2ɐHeQ!IxWy^RZхWZNmA\` J 'S[ j_DRPbq.INӅd}L7#MtGq.yg:1"?ŬbO/lGN1s 6D~ӝkL1yrgqm>r%MZc";zds/>yc/D2gFgA+vDzca`~G w#m2,'{әȰC2m1pIǁL[$gs( x1×j;f#E~늿 |`sU}s/}r<<nIVg8nhgnDw(a^w* ҆jq^fr*Җ1aNyq +ޏ&%:DT]d :be;Vgxc+p9<M3YJ]jO#_KoqQ=` _4bii6g@Ώa.?5'qM^<\rZ`&]>[5q}<۫/F\$aʔN! sUkDie+x۬ANeM'uR.\K8?r-[TIyg$e dD^ J +}4d%%>yWQ0&?[Al .'3;{hwWN:9جqQ w0\[-t-zM"&^zgu. h6| u'S6fptr+EؔF0E:j*t-áL~bNV)ʆ euڟS $i$]6 s +,Rh"veG sր'Pokm3ƺQ iv ਏ?ml+'8K>Cj`oPQ!PnUk=ieg]ʉ# +%[N簡PܞӚj@+Akj#]'[%kf4tt!զJݷ}>eZ&QJ|R9ͧhsI>Ml * ٴ6d\PWs]R_0Xk#~G#b:Gd-LNqX+fI^d 8p:1qc+;_Gg +t-_ +2L$4 oƩEa\ +'#H؛pj2]!Yl+@+4Ħ( +o(qt5tΖ^^xJ̦8xVǤw{WiVϟhuvQY@-wfGq3jtezUȫǀofCbn$LhUNHu@̙+ F?.C$WTRxYTqpr -fnƺB0/;O\IYq jm^W#/ܸٞZx̸R-Qh** PKR=~y([\Βf׹+bzDŽƊ.S%s9ķMNv8 =89ЇPb02Tb2d\i)W7;肞Wa~+y 7#kZ]_~ 4}KS,%·(b(-O2?_q=CA^ɰ'!A@v'=]u8ǐ29LA Z`*@| az}KHwd52>P ff:H7}>Ԩ~C)CV~oαWS +\h| K`Z|A7FvyޡG#/0qdپ':~Ēp}0(uDFnC^8OR>YFݽ]Goj!ϩḨ]|{eCxe=`cSKIM$& Jws D!ߣw 7P`IT԰q :|i2a8gBoGYuQU y졦_ + %Q[!Q/r9(Sa"ZZKX_q#ZDERV"742$VR)'~Dry՟T#e0P7[;Kf}\m̉m +Ջ) |. Z'&PyA!jD~Fb~^M7hV7pk}`zc y\ ]r}p߁cKdQt-,MgC"M_OVAĊᝉ}ʛĥVF|"YX_+D(ЅGgDH5m=R$$+D3?C9lp3}-ξcS_3 muvXycC` +$wu#؂V .{28ljɡK˭mU_#2G`:r6w6 H_wad@LG4 #߳30 n~ǎrsph%l nP"s{-Ul RcK`آ^?C3*ɾo.k ڱ7OnLj))cL4v,AE_9]opd |y.;w5/S$a8o⸚pigFb;u-XSKJ+F0VkmbAI97W,8|3g1ȏ8 LWoN͆sQ=ћVUntlC"׺c"3'S驢$NWe>jnG3ȸ,ȚՂ{w¯> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`&eWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-L +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/YYZPBL+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %_]c8 +3ǻ+5?|A6qߦ`(3  XĿtI@APHN_ @ r +^X,7PD"Y(co]"JMoN/'~sde@j?8O_Pk,QΞQOQpK5 yIb BCp; +smؒuGۢ6-kT~S|AT2i_T <ǛCCf[eFt^ӴM(rqJ;_OGz-ӳb +](;k43l]Ppk}6oC*%LPJz-NpdM2³^_7Bt/ָ"xA6ߧ!|~![jۖ~S~oӑE݅)!%l1 WT͕WWzsֹ{GT lWEۻLo͂t~PN&^ +h˞Jm]~Ž Rzs,J#euZdpLwCYU9=E`vle;A|;L3w07ym|fN<Xȩ?[+M[??\-pV6Z$ȍ z9Q D8Z(J5Ɇ^81eF'3}k՞lK}]@%3Eˮ{3( b=k.e +S0QDօH> BŜ(D@gt,3,V|_ȸK TDVP Ǟh$ns2KI2u߷!::W<idi '>Gt08l{߻VK'5CÁ> +uM[`*̑G&qG?JcoM6k=V_T޶J@BˤpA}pčTsm^'tEdUZ.9[G(=e&@ aT{YI: AO~ +i^uY*.A4i(e<MZ-y&6<=zQ"嶌 _zrhZ׶f%CW6vEc4͘$($VG䫨#>B/ t ?TaKUԶ,$\`c-kW rhvykرR_vvl^QCF) E"*m)sr{[zSZ֮tIK1\2|g~SuL2kc>u<"5hO?YU[s#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+یn,\o{q74йZbm*$"9A/Mo@Z򓋅͠ZFm|T>b,bm#ZGB+:zyO:1(Q>:#Z$ v{R4"—"ъ᣹ԓBAp$A6HӇ:E: \!eÊVyDŽ.t7AxbCB p=9=ګ#m|Ue:91}3"A*pr]&-w +T̢?%iycLR!Xe<9W3CLnV$ɲᏬAV5-J|ۜ04|97l5ЕYBYntra1' Bhm锭pf5;G_c^!xtQu1ТJ1`Q\z묜:͍U!* /2 7ypm] 4|Y6[%t˽g ]$#'1,ˆz\PUy!v۹&z>^촫<[Xa_J5|;̑"'xr;Յ;B)uM&?/)l @w lJV]ٳA9c;4z!vmQ'4&* +UXSs;zz,w̍Vgr3c +I+emwfpSh25ґHh#HKzL)]ځMˋT //vZ7kygFv}78ck8Yi6eVQ=0,",8NMZpoEMfgUW<w6jZ;]\#ZȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPTcToq7&qynʄ{lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|(3x$Hէuryz{B ^\Y.+tB| @\tgƙ9Hnl٭axTԥ^Sd:8.Mx+Ms5_1}r;ONu dܦ*gbu.}Cb8`{].L .`QNL|YsjHD}6D91%lVo_,`o@[R}[?UܳEzA(M-pFDun6TeT]ٖ* +{ ;gZ,gWZ7''>NӒKNDn}/:]q +7A%WgQAؼpmp^Q sulSԡC٩wovXʦ.;0[k?ٕL<'6#7X&bcyl0uDiBwGM0} 度<t"l@Au¶̻]j`~%}Hn2t+;n9|Iy {k ^66KNLC}>:Z> =.#yO@pԙbBl1c p+h&uLC)S9<E~K EĦ-`*3˻'sYߌy7L4&^ +eMxVwяeIL;R%ǔÉ G?1GԳwR=\K;?\%hFFY28rO_f>)'ޯ>Ҳ?c4VY{~V: _,)rhFAq +͖뇨^&xi'M>Fv 'b) wn@vJi6빒> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1RV6U`(,*__otpuZaXĿSii%F2rLZ^_(/_MRWz{#;.D#PKs"S V"c1a*hթWA5=  S9ʓCE*kSS߶ָu [9S43y5A==YN^(>:GiHL ' 攏{pZC71Yc78R|zU>߻|ްV57wP曷i`բH?;/[t8f wGB|Xm+jc}t̘zm?7+l$ʬ;۳c* +-eH)iLo!м{mӻ6L=&~URwmD1Si.+r}A8C'yF!hȁUN}bq,T@ +12ϩk0M8wl9J4]#u)n&0'hW؂0" aQwVg^J{5ĊnydT-*v}DP0`kD3Ptڜ:r25k|a6R鞎9kvŵ + J餎xQO5J+_B$߉U'˂(ݯ@y3BWeqj<^n;N-y+PEiɄ9l>ڳW+!]f[k`bkK"zLmq \MmT@=‚RjQ6ƖƏ}`<$څw@[VZC3(@ivK%(Q5~iebfvsh7?H[_]uNMQ}`,w,W#8X>1eQLQhޓA`\`^hw?ktا( +=W]çTI*4G81]L]-^:`_yEt}K7Eݐ p/ٝK^ͭ`EM,?'n. gQˣ*M@ޗuE2K٧n\8rt~15ra&x?85rۿ\#˜i僧Qg8cv N(XFN˽60v_TY^<+ 淧/7isJo욱0mF}&?12z~|zƃ:4';a" xSI!zLt:%!!JeK÷`cm˄&ͣ H CzanE^&BH؁ "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qmp?q43 oc6s,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%"&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH9{k(a2x^+nK x^7yEʐԠ =![թ>#B%F#j!a3Uݧ'X#E! i,J)"AKE2~ٰ@ U(?Qv.t\>f:E !z|lNٍt.?¾, }Qj.`TgAV[52yQRQMV;A,O:peKbҮ˫_ae13=~ 3b1׾:.VlMo"Hq*8oBez@56C&KjKVl$͵MW<3B9X -+Ɗ_b }]x@heL4{6H|?$NTlzsɗxڔo|*kdi~[J2U)ĵ^ Q2NB8C~(YmьɉС/1[yc>Ҧ|s`.v(ΐ4>Ư~w(EjW | 6:C2EpJb-2Pðp$d> Cϸ{j9fЇ$Mկ3VҎwUr0Ak&>CWEM&eY3TY?= +9CbJ>+Ey.Sg<YY|mdB -L`|Te=7 )NUGF>zF$Ʈ +#^3t7$ mOsl>N)?^ےZyBOR&~k?l.C٬eY@H N|[jSK*F_sA +F(XP 2L,8Qh +Nƌxҿtbr u9CuK+QشWc{_>ҏ_ؓB5/Wͨm6cc+ӣXN9-H`ғRnXVY5892zIH$ZN(|`}Pr;&B~ӟ8A+VJ '\aF+J+F7nK?c{ g*<|P`u7פA^e{kև *h[o657-1Yuhق?TbgEy"<~ ؎h9_)7rVj%&%aXq#*a+8w,|툁GlI)YU75Y#Y>4Z\ ܷ:0 aMsiݦS82ȑ^)%yA$ Wo@qE4zghi vCxuz,D%͉lse֑*m +dWp[!0bPI^(: ȳ%0b\zqlIrL'7ņOkJV!􏍋_ZmF\BX:-3&RoW#Of#κ(b[3|,%n(jNB, >g/gNgbYKF'$~R6Rc :oe{{H4c`/,|kF^ڔ1K˾vsNle. _FY*Ό?=|קT*Cvi)[[ T +7'j1EiRÆӲLrz'z,Lb,h/;6f{ݧ]caT!:A'芶DBg;]vET$0X (U?Ym MAp!yeQ1lKD`Kv(eCpd}Cɶ}Sj=gbQ2%Y2p4a`[ +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/BHBTKJ+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2235 +>> +stream +xRgXSYf2:@J7g*AHP M!D4% H e E28 Xd3g9=}؁H\41<\Q 2A3a:τ0 ( @0h4aLaN{7XVb< 3C Ht 19&@^G/(bD@D0 Cd0p6"_ѽ&Np"DB ׿+BQSa +N c1!A'B ڗT?9_X&hd +[p+̆0phш_%i瀻᧱~D=0 }FĀ1P0JD}wǿͅFa@[XxA^QL#Blb,L@J @3#EY <@$f0L&o!9a? 2O!a?Q̟k, +!"Μs9.+BbGY/}Ӣ&S:TO➶?KYTZ>KPOcQȱ ܭtVcm6 /L-!=ArweEFEPz+\Mp9*5]X ϦV$&Dƥԓ(ԝW严BTկ-w~j٠l9 ?5׫T>8Jަ{`<-:vu iВJ kpjԾp`Xko)Զ5~ 5E>bwDn1ϟۏQ V(qpw:y)KnmE2Vfk*5^0b17Gm@%ZPq-Dtv^+ }pݲ}VtC,W\iҗ! *#%١h m鷦ZkWhjm,yc.J~ē9TX3).YіeڶiJ~H,3.ՠ7=?ܼ$dZ=Fnilو=qe0>V,XPqL2!-Wբ'KP͟oRJ?fwYޑgb?[os}oQâQoq![ިq3c!d<k>QlTiBIe֪ʃLGJR.b0@yi-8UcF{qe5KDcin۟|= 5^o_-`V]GOda.ΐglVI i=Á]?W6U5v ygjE]bopr}|blyOpR&[?B1ϙ/}T5}E%C&-$K^ZwlH2C+)7Ôknk׻&Y}3r))AmBXɺ/^۱M[Pkmx+nt2Gn9M:B۲j0_Сu[}r lGq=]/yZF'Tvs(cos2otW$u]M{Oܟ񟺪>ɽp0fY}WH/q;D&yi"tswKҧ^]nNtϿY?clBAF'w2T?9Uߙ-FL:8@ԟ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/XUEOWF+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2858 +/Length3 533 +/Length 3410 +>> +stream +xy 4_YcXfKfbE!:1 gŧވo<;81>`mڕѭ>(Gp*Km۾Q/}( T]%e}SU}>&>)rWxg'!hDs蜛T~F^蔛g^*^i ?#)wctQ4C/,t  61:| @y:I*ݦØ޻{b&V_4{u]VsH-w5b1sLHCio_K{'OE"c +ҸYX7gUה|d)!PrhO";^ZV +Iv1ͲA+vexkTijC4F*WrYا5H xd t sG`*歅υJ0Dz+85NW٬[Z)I,YҒ /AY<%I93f!NiZ붩W鯴Ͼز{)rYP/.P vmexk|eF-$݉TdK}ފ&"uu{KD'5B7,2RʉpFIwg^t- wE "6B LfAU/}A ]W(4 +CX7_xm5c&~P.oR}p tc4|Yp7>(2KlG4d׵HU55co~XLL3 c}BV>/L[ŷ_jCYU:N=}~D)tjk|ESc:W1JH%DkD^kmS <-US]0i8謍>=N[G0;E71U7[U/qMҤ=͂pep~XH2jLGWҝZjbq}g{ն--K9A񭶜~F`hNYx y0d3ŗU* +;}*@K[S^sJELrԋ'=Qn%\O#j♳E텊_{>?Wbn2Y 0ܣa.i|eɏH (/B?H'=િ-|w:bȯ{$g²ɰ,.J]ҭqXWK<v?e]kygTsw*z{t:3W O{Q&.X6<$9'Hd9q~18j$Í>> G9 m`j(36YA,N.ue z~*_G$׸$fPkC;Pڕbk[hfR0OJyQ^[|yd쿳5Vˉ*̉Ęٔ@F8%T1~rڛRVSlL`.,=bVks(LSz~^'FǏw~-UD)J$ (sOnxܚ{G/iܺq%<Ռ,o?(1*!^+?FJȚ"ˉ{ hʶfp5tVrԥ5NKpLp 퍊T)Ba1U/|JHvXP9]yd\ny.Mcșp|UD361ZCA FyX7>zMߞUE8a+x{qF[$BΩ=Q{P;v7W䭶)MڐŎYO{=s"ZanC w7Eۘ9=(I/]]u47#N)0Qsx7'S?H@- G\GC!ox%KRQex\ +E$~EF)a2Ѡd3&eHy `߱CB:ڵ\)̭(DknyG̶UYcs?SGH8+e Sv/?|bsW``Fy;eKl\N'SM4j–![(3F%fdCtĽ=`=a:6ň*Jp!gZ-AEO¼0$BwVFIFc~YR:ՓӂA[K%+ӒFO&-4X?* > 0oGz\=0۬D}z_~wOy[MvNw8p5: +"C]r =%~tY?'`q8Z8C@ڣC@>3cnS.ѽ1Q|`ޗަ|-/_~A;2XӂVQg3a } /c آ4,74H.J++2!}hཟX>42߁"J46P,_eP8jAEtYFl&/HUXup.j-TcV'_E<'~ fSJ2 aղ%|"]$  +/ +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/UGCUXL+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2368 +>> +stream +xy<BƒSz3*b!CqF"Kјylƈ'BYD%,!r컣2BeDg۹۹|gjHtKǵ +@3AC*$4 dVC +882ρD5d p=43Do98d# OA{ؾ ͌|9ЯON~6ya +y﷯߭uF4L_3U1Z*Fw +W= Z(JK+%i/o5̛Lnw,YvI[KtlsAQ^3شG? +ֹk=2el[7)]̏|ts)Qt1Ũo+xYH J gdD{*IJ7c#L Wܴ_4P.5t2`ޤj$6N=%/;< +뗜Ib라P:A:e+346LNK)[,Hxy612GQWq#R:i}nG/ƄHZٌ-tFհ I6y,7@6q}}8~L,h㛶IrG4DkEp U#u.42u,\8XV[=Scǿu'LXFX[A25`D0+zFTնZ9]D_eq4':?g|80S"7D Ŕn߹"u#; qD'WJ}y}-Sia-٧J{XacA4m; LM}J;$Zw-dwؼU 9KHml^|\(SR(ϖ7XwfmUe*T4P{u8hZFrq2#>N{$4,5Ő;n4$Yzn9gZ\ud~R^rϷl`m)`WBb{XhK"oNr׊>mC}˻.2f B#BFmm1O|Ύ3l: ̭qA;&G9nvu!{^4+0TԠ,f^A]f{Icp;5藬p̜p7, Hq0RJ;h kmk* JBp&^$q7Ԫ\p WdVkp:>A+$ύ*(h|鍠q*EUrxYCu=?d昃QtWFv44xfѴy/:xɯ5Ei=Tc"'v̀;O:s/jdHyI4|šDVg e> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}`n 0^'5d, e 7d2pmlO6?!f81| 梛f!|+b#L{4 $БX:"Y^D@Xx]Qf9L=dM/Aywהkٌ HeU21F><eA\??B98` QABVT0_m~(r:Tl]e\孟~#ل`X3”l5UU7촪nJ1Y+u"@bSY Xh..-maT9_^gn+- Iل>(O2V$sBǯD08csJqn@%(\qFjjZt Ķ'}ܯ + +;svȵUrPb[1%KoD]ia2A٬SEVzwaƇkG)͌_ܔN藟 ^]9e~/_m1gN坺3uEz6FBj]AG*<; +VVKXymw{bu;[Kg>M_^)}έL:;/̃O~w7R6H4]#a .JG<̗]+N,sZJFqt#}X"N?j"WVx1 \֪]M\יh5[cxܧ~`󠯈p wj%i%ƠvK}Q rrH_%xr{NgG{$K="K"dI4|tWjT/5,دC/͞yRB|_fef-<-i\`k2elwmkyUFA9C񢎀4n,h b˙l$?Jc*B͙O tԅ>}xԞOq^a:n]EhĴ>Hxa>AoO[\y"GN)qT.r}e\dm |:Dy{Β V̄G,l2IXє޺4Q,~5?}{6U_s~R)PP7XdyFz6C՝zp;·pi.kE+kk`a8(}- +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/BYHWHP+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2Q]JXCXFlcf0+%kEv%$[vJu,Q%*BHx>^?{~suNJ[*(x$LWa6k(t! (d# `ZZp,hPMB]: RA47Tӥ4C[ +@Hl|ixK<2')ًh%4}.@'ωAXRׯ"C3!ApPH:)8<#~1DVM050T/$08+xa:d~?9 (G?_]+ L ??k?)  +_v3&c)8c8 ¿SP!ʪP@YE +*p@Cz_dPՄT4L?ߵaHx<EiCn`4H>| E﨓[xA[3G*y&PT{z#N[bܬ{{ |pmsHf~LOk.ƈ%S䥲_}c +"zU݅Y| \E͘guK}., MXNr"-EGe\OYoqvɔG?p*ׅ+o'[{}yzl•T:.)M:g@qfT#8I^Wc?nE,Nsjpp;h׼sM=/m@[f.9y `^xo/ K^gCY=TDǏ[ f4ղY'Ӳ8ټSPG(tVlX2y+*I-]DNM?7Lfg /~%!ȟnYfk `]INۺi8ZPۃ?=Fߍ2n(=X;3~L^I}2#s\P4W$W>~R!;usJyȠJ;#ȴYyȸ9սdE!0ܢ3XJJq(Aeez^uelH8Y$ԼOfy[q/U7SLWCxuIZfF7+xX|-02C[ڈ kp7RNiy.]8teB-{<؀I?pJ{6*ŒAF✑GdTgo(!i4;&}LCS~ c;w8Kӊ GI15WXz#YY8 Ҵ.9xJB#,Sg*!sRcil"K7,`w +,rԱM)K(pv0S2دȈڷ cZ*t +~u9T^Sg[9}3&ޑ)PnLh6Yao {|= +,8u0ƒвN-9xI .W<$N9ZKoĿ#t"4Шa]dnSOolfy]v"e=%֌| KJκ4>ۙ\P[|ڊYMhV4|eT T.QUC|%s!zI9{Ē v׊<ΡxbzUNp}D*w ʷv߷/x#M6) +\27vJh?M!wV~zK)}T$ObgI!rQהRW==,76;qK#n?c +{S2r;).G-:I+fy#D׻ 3o_5n OJ +)07oWMqz۱bz5_a|!Gz`3 vw1\.R뒈hZt l7,>UkOSIƽ{eɡ_`YXhl)Hyu˷~םQD3,Z<53RXmԛ $:vH;C]pACw$?\9&HncP!nEU |1֩;?nG$7%}p}R/E<Ev%ZnTضMjf WGuiBsrLqd<DF\|e~'Y{EjlET;ݍGT *'=f+w&Fb%OG*5) +&AO`x N!ah~ ,P +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/UKYXDK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWR(pRB1R" +Cf#LL07RR(({Plb*6(EMŅDh#h=鿞{ys{mBv|IY YƆKa7Bc.vvG..\Rprybp!B`^It!BD h% X ^"a 0`0@q! 1N0_A $`Q􍔄Q2t(I"pqwQCÕR @o5֍` Ă XgԽoZ͇(NF?Ryyd;g`<_w`x>`A+嘿7p hPNQA_ݎ nJ=pX퓸Vʋ-m_ϊƻ+lL*۽іٷ?#Wateo8qCۭO*/M*vt6?j +J{N\?)8a<2qG괸~Ѣn||M%@.HY.vL7d9Em]n{C_QޞC/G-'~v(^GedEfcqTy.}߻cY)R6_?X_.;ܢ'CWKȵvUD<|^C:NQڣQZInOᭇu 1޲"零XBVHOS3ST!l!goq ơ:2sҌyQ-S 57b{UŰzldyT 3b앋m7sOfëoo\gO9Vv*shzo*תݱVFNk+cH?;Meej޶ gU֘w^zVzݦ4NəskJ=b cDҒxS:': +鐯{-Zb05N˵Zk!3!ĻcГšSm/cL36U,_n'"bNBW5OiܛJBL[24Vg7hb7MsԷX[w鄶  +uM!=fOI3Ϗ+sYE[}dn s,Y~K2].ؓ2AVW2G6)/4<#aM4 r~VN+eZanV33dR$hoZmNu4( +ٲ„e[ܼSonTJ#7WܽS?\|oaɑzBբ-%;{3Eǥ0X0]=\ޑ+{ O:g_?y/$Lf"cր*&/j/7J;qVп|'b hRP c +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/JDEPRA+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/XOGZIF+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10175 +/Length3 533 +/Length 10732 +>> +stream +xUTᶥq;ٸww s2,@ۿZ G +q 3w̧x~19i;?g7 7`¿jvf ;K JB͓ dy2M;7g]3ghgm4CSWU?_g7*y- } /G5%myU {ѼrcޔcH9-t,>q"Uul jlM)ځ՛\)$CY>Q˂YsMajeHwøʯ?An6|ɰK(Ў2LZª%IWL +TLh1(R^>lZ.4=EhP +b)(/D!>~2Yw?(wύzT亯AH+ +LK z} pk9Vƿzגށai H +Ȳʹ`|V+j~/3uk=JjlXž݅9N]XVS7-_S+ L9g U\s#4&Jq6WSOr|rQ5OC;$.iCb `U]:p)?1l)PGow;tFT` Pb99Hr&rA("%#[=u2b(?C*;5 3Ό7G֡3 +9+P G1oza*C//umք9zB*(˵Y7Εu~B: +^q$yD[9ޯ~XG:+ -W _x.5X#IJWw|٬ +$~Ue?Y(2%kWt5l tT2_Fdd'<7𾽩ލ1.C%_7ٗ` kXBw &T7upt ,ndu9dmJKTgBe=~n2]bh Ex: lQW7cC<95EԂ#aM:eM }W}wW 1w׃\1ÿ2#\ U|:ۑ[1) !z7`eOClu b}{g!}8?SSLfG$I^ ho-dRg˚j +}<Vd3^ݚ"CoaQ Msz 8c|!u4iʄx6 +bTMϴΪC%:]CƁ3,,^Bl5SX=Q~+ Ջ+Aџ8S+8S<;p&p nP%tHg! e#嚺}FUec̡'!r(Y_xNK$2SgsMޱ 9t1| *SM3Qi!.wEMIg^;ʮ xT9 L_-:ER?"d +VDFϙY70n%)GR ޭB։T &)XGrأƞh"Wx4!}i]Q^}.ceemJMS$&H?M@*zRwv)NeF}1$D6r xe"%'xߧWsu(/;4RP2?ƿ5[cxg1kG +RbQP=_)gu>γ9T 9nj[Kt +&s|A%"Q}F']1F {DO)w7wfꕏHϽ%8uMH(JFВ>ڝuxNɑglQm4vv2^+`G\gK v^Iylhej/NVeٖ E#zً0>##H_RB `bk~T !3t]Ls[mem~W%ݰGVd2ܛD-υopډY; cs\|Ѝ`86"i~z{7hW$4Ԙ|ϑVZzޖ9[2 s+T '5OfigIM|v1z0 deeYTq{JQR>wsHj'9~|×{r]+n-qgsU;<&!SVz1H؄}bѺV"T:In!Ksu&d'>XN$V:ё,!EGi .15L@.`҈Ք΢eMp-yTdlt %jDc1b0$w{}]HsT)N=CbC9ЀjS&s$KHM .,FsZ_Ρunxhq⩬LyvE-O>T +g̝k[ӃٲS+h!P!|1 v֢KNEo5_;滞zЉQV;7-Ĉ;|+F~ȕ=oOk䶰aVKmL]arԲޙj΍z{/2z(; ,2q$ŏ:ɬqZb%XD~!1$0e| v \CS1mĀTމn>:VxriČ8ӛf<"q>l_@[cZ^W48gz w*,&e%zn(9y[fGFs{9~jtBW4D}tOT$UDg ߖK9mшh\xq.Wr;3΄xs?_'p9AvO?v-BS[O{hW>+<7Gbj_]gXa.';,|VO./ +<|;RЩhT2XmCٯܛQ%}E"'Q?ԳPd.v Emn%8b :tt3,.m1̼7N{}HtrfiJX+!6lُl\WV_ao{ 6R+h=knQ&/CI9`uwYAZ9~jfޜb|qHzGY{|䛎֝(-EqڌH!D8$vYke8D.` +Kꆎl6zZ&MC,=FM"Ftdw3G)L HТBC?0TŦ0ID`\ +hum7/~hpv^E"~lJo\$cҎq{}6ڳovG~U՝}=).ڇ/%d'XUoۈ-[f\Eu[߇u;Y.1WNTh"s{ݖ %VƱ5<㉗*miYe!r lvC`gk>ORSNyRdx,;'f>Gᯍ6ry:<C*o3D5?$%6=B[.bq 92[HIg]^}FR-qn z8iz8]~_qqɑ,n E$}QPk%+Te֛3׍5+cE&\^W>N Ce{֛$894'gY&z$fe!bC )G2 *nqdWr4("FN2izHl8 M@6AS7A%{`-ȡnt,z㺔Hm !$"cW2+1*I/u뤃c˭?,DpYY(LUl ;d^/tN2TZ}f/9|O#Eat'E>W|,! iDy8V2!jgX|4MfzDأ=LDEHfؘug2rBD0svlL5wSoӴe'!vMQk6@?GouLUs<dplĭ0 7v`s4$w,LjJi&%&P㱋̮vx{_ΌȪ3f#԰G␰Y׆Pge}Q?48A}:%]12K@heR}ŤtSBMZrxV:#ܒ#{;t?chM&SL6ŷ11g0wHVL0Moo=H'TP^YPˋ{E)%.<Ǝ +h xUo./PO;uVu +ZyRءpJfJ/3e˃k0t25Y7%-ZiT+>hà)o48**?0U,1~Ďx7!PceR\Z; cOFGŷ} ,{y-xPsƒÀufp.T\Rhghٰ$LD0h?檻]ECG%ktjnވSd}=ku]fM`t)\=/Ri֕yƸV/POo*@0YH/bҢ^ScZ@^R۶;~*Y ۻ!m7\ Ru>ZM9Vg衽ڽ<o,R`cg_od5)6jhu8cfzXc.Gtwɓ]6fXLyks'8jN䄬yPjNZUJU(oy_x0t~G#*jt7?E҈Wy3B2Sփ|'㊌l4 ?t~=fFCzUz)m;EA6c~ٮÜJ޺u]vB$r/}(DnT/*- ^- Biwf/[OVZɣveAA=8x gs:蓮Cs}@ '>OaN;7sS6 +[  +U/Jiϯ\^Å +b?l2 j|߬Ԓ<70+<1M nNWc26ɇ `8'C{:0h١à8 M|o2ā4~gWf?9x6˶Fdx6Rj5oi+XH0.0n5̞QkrMzkp7a-'20ӵ +csq κ-|#L7Kplψ$Oc{P+e!}·am &f5Ρҡ<4A_bS3a>/e&I^Aoqʸ8ș`#V6yԿGkџOG`t +N|&G5"Ю͍E+fl)0fQcDE/m\9wq+Jvi'Țݟ*%Hz:ՓUODܩ+a:K)cǞj!#nZA SeGӡ:VvSI ^5?ԟD&D +frV(#+p#|9ỳ^v@ʴc,YLMGI$_dsE0ކNQ,_@R\Y5QSK1۰!ZV=G7i_7|8x0ap< zqr +uj)Pin$ǟ˽M>.)ih[v@A;|>ω"f A^u&U=m/ 6o⑈u_v۬sِk4KV=[@~[j,^sCѶUbz &{ݺ=x-kh7&7 ~k7МB`\ 5M=$*PŒ40 +H\_Z~RX?|``$Zڷ ZzL49b4Txo0(٤.] +PD2YLByӴa;rNEaCDl y,NdOCQ1g:d FRg𼙾Vo*SX5ʺyV<]4ָZLJ4kyg0y[T9I/qs=KH ur#wSQdIAsORCXgS~zKי {Rf'lߵ't X8gG#S;אo;\aS>y\U-6_߯Gko-C$VDY6(^#(0.6dfj:`W +Yd{ntJ&M2wI6E3ʋwB B*[8T<%+Otdj|s43OGBN辫&foUbCY0%kc gYPE|œ'Re BEεƊ:Fj_d _v$˿i!ZU!닙[)MH7tzo{GU:%`lܛɔx(MXcAOHqq +ImRܚ6I ^tBU ŭ.h%UGO>.Vc +;gyͣ!Jwgaڠ? qd$O1>>r q`2LqjIW5,;õpԔQ .&OX7HՎPb5YK5$=Rf V gk!jhP.UBv "J02o$̰evkojQU'v\CQc; NV%I`;%FH߬RO}]ufe֢S3LX+0LCI~YOn,%gTJw7 嶥 CU>B> ad,2*g># {=wG)vsͮcDAhۋkkGu+QyIJԜ dał#6XΊݕY x9#&J| lUw[/l idFI!7W8' 뒶5JHOR9 .uLOOY +;jn5$t(K\gQnR{; +ɐYp3cں.=<)uva_bo Snt+Ou?sK9 /y,/KnH+v.lR.!.FcX"9ucFǻUl,Kk3~dY[ZRAu/^*P6;_roOo@?+ vuL#7ŖO 8.w7wkܧnb +q*/ {4ƋyR8]F. BwPiBaL>ʁVsDJ%n!O h;UN -NXؖ`)|Y/QI,Eu +n9>G<8Wbm\hE]خ XDI\,2|hj2uosHe#@h~:1J8Sצ\Sxo#>iSsH5G@aPO (p_~(Ƿ#P!-5uta;HcrCO&'{[ 2 +endstream +endobj +110 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/MZBXPO+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 109 0 R +/Flags 68 +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D7)"_ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\x +endstream +endobj +149 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/LSOSPV+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 148 0 R +/Flags 68 +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖqw N + +wwww¥@p 4@pNsoK~{s@!vȻ8@@0@FMG0d< V0 " R^v>0/07@jg0˰H9C<6V.5+=9 j@W<O7 ` ` `pb +K{ |0?s).N~0Sy53뿡{VP'8\ݼ`+w/85 j#bpyP_X +Z9yB!.࿃<O NU M}ؿVP/5_<. |oɹظ.v ¿SIKps87 _z.Pw/,K@HOs3<?k[ _ lb(;ۥEKaBBLAX4E+9Ee㝻6R$pЉQj#(J 1t6ښr }xE!߸];'|BYEBH}U:p,ϐ:DmVK0d +cz;®!X8ʶq.f3 Ϫ\3H#3 I=+OEFԬ^4\T@vt Iu{}z.ԮlWp"v4`wsجIZet汝Wl$uzIȎt5۞ۨ^G%}Trg_™o 2Dv>}Bu| ѽJ(j2Lҭ1Ѩ8,Wv;w8]1^e|Y?kъ=(`WuI5n\vo%#b]@򵍡SC::99R+k3"$؋/C$1ƯM{ +d +?dnw@2ƪ fŊswY&Iuxe9Hx" P_AC| P_rv;߿i8sCI[&eW7;$ 2hOuƧ%#h r +A_: K0M1M0?6"7_4haݟgT=A[lڈc.ޫMvգ3<=*+t0rdL!.6*Φhك/AΘ6!",xgEztW޸ptӶ?'ffb U`δh0$Z#ۓa^ =09m.r[ʠ@4:FɕmU/6ihҺ&ϓZ~u-O6O*GrKlgVR8ȿh)?L.vp)1FY"Kk{'Dr_= qbi\.PO%r,u8߁mI7u=~2͗n)gP"qiKκ[]uw1{962I HWܛ*z@ih|?,>$@ qΩ24wT$\Sd#$Bȭ7\/u-ƨsO͸j7|:}ڤ [DO EqN|m[X9dxl]45K&$`}!k:mAkŒ Cܺ^`zQs%8T y}0*7EoH؆V5ᅆ cKZ1Pr—:a݅SPK9<.)nۗn+JG}~g=ϼf+{ELAy3qX2·F,pStajߝ3Eɉc9"61AkWėyX{$GG/+>)g}["መu?J)dM^җ6_U$ :\a^6U?IylOtͤ6SI$R&s>-͌c{LITB}NVx}Jh?TvK%c +Qm`!7gjKZW@P B,{A!Չatd9Jo$G>:9S1PgrRiYVJg/BdLfl- d}u+y);JN: :JוG"Bu|=ƩBvxj >0TcokDiۣ>1Vi-_w7L5TB֬Dfp"^e]Wģ~=q?,^i ^a=et+\1Jb7HGpjfUJ|1m6viŐ.iG} +#)ם?cM,9ԣY{u,(Et:ԋւ*&VXE4b4}S] g5(u-~NQ:ap >O7Zq'J,Xׅ-ɟh"kz0p36w}CXAf!parCD7}ůęRIO霬^Q­H㚇NA`og*~Qᒭ3FaT):bԤ<*=R{cF-S8%@3`YgX\㣨`~I>ƃzyTɋDLtFcc O>7 ym*~a@2˽7R@Z嚟8d>X ŏ,o?xum_՛Z2"p{f!5J㖪\#ߋ4Q؎6AGbg4(Bp176vE.>H-0mΔDrJ6κ V27rDd;uó?֛Z!<̠baտ'Oa U]t`QMyOS$;, ָ?7(ZAn<Ǭ{>-&w"ۃAd JOz/],VJM7 +i_)у~t6Ouֆ3l_.ߌwܥ|';SgM6i"-H%(.w'3uhr*F?dVxCЇZH (|6]A۬A;FSj\@Tû +_oeH +ʲсsurZ֮BJ TZ +Es+wqa-nFx|TArMtIQH _φy)7hNo z-tu +aLy:Ä!{,״Z.?0mB<)N?Ҵt O48b,jRݞ+dDJSTYC0tR\ʾMckQB)as".j-8|q3ʭ 4WZGe:;%H+F弼["eOPmfQ'M<Fa)FUfJecɚ~ d]m +AW󠍁W:ǰڗL#jLˆYs| hwKI('=+ :(QyJ#I'8JE't8~QOJ*|)O +-XS<+A@LҜtW?v8涝/qцL|q0FG>bq" mJz=dX%$ZCC`X}L!i>劉ҫeM15M@W +VoQaB F%RloD%SDǾjJ2|fM4i1̠lhVZ4rQQ>emQBԈ_>@A.ā!*5^X oUx^~.6-L;xvJxB~%[LM uX_G@bdG\щyz 9>ث:M;H=J2ub8džC$x_s,^Ĵ=5fztogU(pkqRL#ˢ m-F ~'圕^vDVj4B42O2rFɮt?os:Ǵ6bVZf\6<|냍 jզ0>tG݂о߁Ң鱿[OzM |,aQ|Kqw,xB]PRp֚2kf](Ϣ6GyQe j$?a@T­R0&, $p|FW +?P qhEJ|^>6ؾ2 m;{.bo=\kMh,ص!ǣ< 9s6-nL,]bEii=ٺY/N" 7Ł:_p{ |cY,4?TD3N K>vO|)X呣F yc.=h|B+v8Ҟn6G'[1HMҜ;?F5v}̽]Z.G<%-CSo[/{R:U_Ci,q78p]P8ͲUn@lYL,ʪd ߅yV׾ O +F̈#( "Ň -gb3՞C*.kذsy ?Vw.5l62 2 +3;@N/}wz +2_i@~n/KG rE` +*;GR 9Pu VΈ&aL!Ĕeڑzhsgr~tczEm _`4K5dw@cO`D04o!`Bj7>dņRc.dmn.XEQO>U͑-#@X¬;FYT>hGn?fGgH7\69]_J +ILBB)j P>>,krژ|ڧ54 TnO$/AI;ْ?D_iyjIh͚ǟj1[1hFw@_6ͥeG(^80 >KzVTr//?`:[y8b`  +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185354-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 44 0 R] +/Parent 153 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 155 0 R +>> +endobj +155 0 obj +<< +/Type/Pages +/Count 2 +/Kids[67 0 R 71 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 6 +/Kids[5 0 R 154 0 R 63 0 R 155 0 R] +/Parent 3 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 157 0 R +>> +endobj +157 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 83 0 R] +/Parent 156 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 156 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 158 0 R +>> +endobj +158 0 obj +<< +/Type/Pages +/Count 2 +/Kids[91 0 R 95 0 R] +/Parent 156 0 R +>> +endobj +156 0 obj +<< +/Type/Pages +/Count 6 +/Kids[75 0 R 157 0 R 87 0 R 158 0 R] +/Parent 3 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 160 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 160 0 R +>> +endobj +160 0 obj +<< +/Type/Pages +/Count 2 +/Kids[103 0 R 107 0 R] +/Parent 159 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 159 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +161 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 159 0 R +>> +endobj +159 0 obj +<< +/Type/Pages +/Count 6 +/Kids[99 0 R 160 0 R 114 0 R 161 0 R] +/Parent 3 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +163 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 162 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 164 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 151 0 R 19 0 R] +/Parent 164 0 R +>> +endobj +164 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 162 0 R +>> +endobj +162 0 obj +<< +/Type/Pages +/Count 6 +/Kids[126 0 R 163 0 R 138 0 R 164 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 24 +/Kids[153 0 R 156 0 R 159 0 R 162 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +165 0 obj +<< +>> +endobj +166 0 obj +null +endobj +167 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 165 0 R +/Threads 166 0 R +/Names 167 0 R +>> +endobj +xref +0 168 +0000000000 65535 f +0000107405 00000 n +0000111515 00000 n +0000111160 00000 n +0000111365 00000 n +0000107569 00000 n +0000004048 00000 n +0000000009 00000 n +0000038782 00000 n +0000038598 00000 n +0000000913 00000 n +0000043684 00000 n +0000043498 00000 n +0000001906 00000 n +0000049007 00000 n +0000048819 00000 n +0000002823 00000 n +0000111265 00000 n +0000003740 00000 n +0000111315 00000 n +0000003993 00000 n +0000107672 00000 n +0000011560 00000 n +0000059063 00000 n +0000058874 00000 n +0000004109 00000 n +0000064335 00000 n +0000064145 00000 n +0000005055 00000 n +0000069639 00000 n +0000069450 00000 n +0000005991 00000 n +0000006967 00000 n +0000072182 00000 n +0000071988 00000 n +0000007921 00000 n +0000075892 00000 n +0000075706 00000 n +0000008867 00000 n +0000078565 00000 n +0000078374 00000 n +0000009831 00000 n +0000010825 00000 n +0000011461 00000 n +0000107777 00000 n +0000019694 00000 n +0000080660 00000 n +0000080466 00000 n +0000011622 00000 n +0000012593 00000 n +0000084671 00000 n +0000084476 00000 n +0000014209 00000 n +0000015161 00000 n +0000086579 00000 n +0000086384 00000 n +0000016068 00000 n +0000017050 00000 n +0000089236 00000 n +0000089050 00000 n +0000018027 00000 n +0000018772 00000 n +0000019569 00000 n +0000107963 00000 n +0000020338 00000 n +0000019756 00000 n +0000020293 00000 n +0000108068 00000 n +0000021015 00000 n +0000020400 00000 n +0000020970 00000 n +0000108173 00000 n +0000021578 00000 n +0000021077 00000 n +0000021533 00000 n +0000108453 00000 n +0000022549 00000 n +0000021640 00000 n +0000022413 00000 n +0000108558 00000 n +0000022895 00000 n +0000022611 00000 n +0000022850 00000 n +0000108663 00000 n +0000024003 00000 n +0000022957 00000 n +0000023867 00000 n +0000108849 00000 n +0000024661 00000 n +0000024065 00000 n +0000024616 00000 n +0000108954 00000 n +0000025348 00000 n +0000024723 00000 n +0000025303 00000 n +0000109059 00000 n +0000025958 00000 n +0000025410 00000 n +0000025913 00000 n +0000109340 00000 n +0000026926 00000 n +0000026020 00000 n +0000026789 00000 n +0000109447 00000 n +0000027844 00000 n +0000026990 00000 n +0000027718 00000 n +0000109555 00000 n +0000030375 00000 n +0000100280 00000 n +0000100084 00000 n +0000027908 00000 n +0000028920 00000 n +0000030214 00000 n +0000109746 00000 n +0000031450 00000 n +0000030439 00000 n +0000031313 00000 n +0000109854 00000 n +0000032077 00000 n +0000031514 00000 n +0000032031 00000 n +0000109962 00000 n +0000033259 00000 n +0000032141 00000 n +0000033133 00000 n +0000110249 00000 n +0000034007 00000 n +0000033323 00000 n +0000033961 00000 n +0000110357 00000 n +0000034760 00000 n +0000034071 00000 n +0000034714 00000 n +0000110465 00000 n +0000035447 00000 n +0000034824 00000 n +0000035401 00000 n +0000110656 00000 n +0000036166 00000 n +0000035511 00000 n +0000036120 00000 n +0000110764 00000 n +0000037151 00000 n +0000036230 00000 n +0000036990 00000 n +0000110872 00000 n +0000038534 00000 n +0000101698 00000 n +0000101503 00000 n +0000037215 00000 n +0000038138 00000 n +0000038476 00000 n +0000108359 00000 n +0000107882 00000 n +0000108278 00000 n +0000109245 00000 n +0000108768 00000 n +0000109164 00000 n +0000110153 00000 n +0000109663 00000 n +0000110070 00000 n +0000111063 00000 n +0000110573 00000 n +0000110980 00000 n +0000111447 00000 n +0000111470 00000 n +0000111492 00000 n +trailer +<< +/Size 168 +/Root 2 0 R +/Info 1 0 R +>> +startxref +111613 +%%EOF diff --git a/src/axiom-website/CATS/schaum24.input.pamphlet b/src/axiom-website/CATS/schaum24.input.pamphlet new file mode 100644 index 0000000..71f28d5 --- /dev/null +++ b/src/axiom-website/CATS/schaum24.input.pamphlet @@ -0,0 +1,2555 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum24.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.471~~~~~$\displaystyle +\int{\sin^{-1}{\frac{x}{a}}}~dx$} +$$\int{\sin^{-1}{\frac{x}{a}}}= +x\sin^{-1}{\frac{x}{a}}+\sqrt{a^2-x^2} +$$ +<<*>>= +)spool schaum24.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(asin(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2x\|- x + a | 2 2 +--R - x atan(--------------) + 2\|- x + a +--R 2 2 +--R 2x - a +--R (1) ---------------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=s+asin(x/a)+sqrt(a^2-x^2) +--R +--R +---------+ +--R | 2 2 x +--R (2) \|- x + a + asin(-) + s +--R a +--R Type: Expression Integer +--E + +--S 3 14:471 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2x\|- x + a x +--R - x atan(--------------) - 2asin(-) - 2s +--R 2 2 a +--R 2x - a +--R (3) ---------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.472~~~~~$\displaystyle +\int{x\sin^{-1}{\frac{x}{a}}}~dx$} +$$\int{x\sin^{-1}{\frac{x}{a}}}= +\left(\frac{x^2}{2}-\frac{a^2}{4}\right)\sin^{-1}{\frac{x}{a}} ++\frac{x\sqrt{a^2-x^2}}{4} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*asin(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 2 2x\|- x + a | 2 2 +--R (- 2x + a )atan(--------------) + 2x\|- x + a +--R 2 2 +--R 2x - a +--R (1) ------------------------------------------------- +--R 8 +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=(x^2/2-a^2/4)*asin(x/a)+(x*sqrt(a^2-x^2))/4 +--R +--R +---------+ +--R | 2 2 2 2 x +--R x\|- x + a + (2x - a )asin(-) +--R a +--R (2) --------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 6 +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2 2 2x\|- x + a 2 2 x +--R (- 2x + a )atan(--------------) + (- 4x + 2a )asin(-) +--R 2 2 a +--R 2x - a +--R (3) ------------------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +@ +Here we try to understand why we cannot find a simplification +that makes these two expressions equal. If the expressions were +equal then we could use them as functions, substitute floating +point values and expect the same numeric results. So we try that here. +<<*>>= +)clear all +@ +This is the initial integrand. +<<*>>= +--S 7 +t1:=x*asin(x/a) +--R +--R x +--R (1) x asin(-) +--R a +--R Type: Expression Integer +--E +@ +This is the integral result provided by Axiom. +<<*>>= +--S 8 +t2:=integrate(t1,x) +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 2 2x\|- x + a | 2 2 +--R (- 2x + a )atan(--------------) + 2x\|- x + a +--R 2 2 +--R 2x - a +--R (2) ------------------------------------------------- +--R 8 +--R Type: Union(Expression Integer,...) +--E +@ +This is the derivative of the integral computed by Axiom +<<*>>= +--S 9 +t3:=D(t2,x) +--R +--R +---------+ +--R | 2 2 +--R 2x\|- x + a +--R x atan(--------------) +--R 2 2 +--R 2x - a +--R (3) - ---------------------- +--R 2 +--R Type: Expression Integer +--E +@ +This is the integral result provided by Schaums +<<*>>= +--S 10 +t4:=(x^2/2-a^2/4)*asin(x/a)+(x*sqrt(a^2-x^2))/4 +--R +--R +---------+ +--R | 2 2 2 2 x +--R x\|- x + a + (2x - a )asin(-) +--R a +--R (4) --------------------------------- +--R 4 +--R Type: Expression Integer +--E +@ +This is the derivative of the integral of the original function +according to Schaums. +<<*>>= +--S 11 +t5:=D(t4,x) +--R +--R (5) +--R +---------+ +--R +---------+ | 2 2 +---------+ +--R x | 2 2 2 3 |- x + a 2 2 | 2 2 +--R (4a x asin(-)\|- x + a - 2a x + a ) |--------- + (2x - a )\|- x + a +--R a | 2 +--R \| a +--R ---------------------------------------------------------------------------- +--R +---------+ +--R +---------+ | 2 2 +--R | 2 2 |- x + a +--R 4a\|- x + a |--------- +--R | 2 +--R \| a +--R Type: Expression Integer +--E +@ +Now we create a function for computing the integrand's values. +<<*>>= +--S 12 +f:=makeFloatFunction(t1,x,a) +--I Compiling function %BF with type (DoubleFloat,DoubleFloat) -> +--R DoubleFloat +--R +--I (6) theMap(MKBCFUNC;binaryFunction;SM;2!0,120) +--R Type: ((DoubleFloat,DoubleFloat) -> DoubleFloat) +--E +@ +Now we create a function for computing Axiom's values for its integrand. +<<*>>= +--S 13 +axiom:=makeFloatFunction(t3,x,a) +--I Compiling function %BJ with type (DoubleFloat,DoubleFloat) -> +--R DoubleFloat +--R +--I (7) theMap(MKBCFUNC;binaryFunction;SM;2!0,996) +--R Type: ((DoubleFloat,DoubleFloat) -> DoubleFloat) +--E +@ +Now we create a function for computing Schams values for its integrand. +<<*>>= +--S 14 +schaums:=makeFloatFunction(t5,x,a) +--I Compiling function %BK with type (DoubleFloat,DoubleFloat) -> +--R DoubleFloat +--R +--I (8) theMap(MKBCFUNC;binaryFunction;SM;2!0,62) +--R Type: ((DoubleFloat,DoubleFloat) -> DoubleFloat) +--E +@ +And now we compute the floating point values for each function +and compare the results. As can be clearly seen, the Axiom result +lies on a different branch cut from the Schaums result and the +functions are only equal within the branch cut range. This is a +generic problem with all of the inverse functions that are +multi-valued. +<<*>>= +--S 15 14:472 Schaums and Axiom agree (modulo branch cuts) +[ [f(i::Float,i::Float+1.0::Float)::Float,axiom(i::Float,i::Float+1.0::Float)::Float,schaums(i::Float,i::Float+1.0::Float)::Float] for i in 1..4] +--R +--R (9) +--R [[0.5235987755 9829892668,0.5235987755 9829892668,0.5235987755 9829881566], +--R [1.4594553124 539326738,1.4594553124 539326738,1.4594553124 539324518], +--R [2.5441862369 444430136,- 2.1682027434 402466604,2.5441862369 444430136], +--R [3.7091808720 064496363,- 2.5740044351 731374839,3.7091808720 064500804]] +--R Type: List List Float +--E +@ + +\section{\cite{1}:14.473~~~~~$\displaystyle +\int{x^2\sin^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\sin^{-1}\frac{x}{a}}= +\frac{x^3}{3}\sin^{-1}\frac{x}{a}+\frac{(x^2+2a^2)\sqrt{a^2-x^2}}{9} +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(x^2*asin(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 3 2x\|- x + a 2 2 | 2 2 +--R - 3x atan(--------------) + (2x + 4a )\|- x + a +--R 2 2 +--R 2x - a +--R (1) --------------------------------------------------- +--R 18 +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=x^3/3*asin(x/a)+((x^2+2*a^2)*sqrt(a^2-x^2))/9 +--R +--R +---------+ +--R 2 2 | 2 2 3 x +--R (x + 2a )\|- x + a + 3x asin(-) +--R a +--R (2) ----------------------------------- +--R 9 +--R Type: Expression Integer +--E + +--S 18 14:473 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 3 2x\|- x + a 3 x +--R - x atan(--------------) - 2x asin(-) +--R 2 2 a +--R 2x - a +--R (3) ------------------------------------- +--R 6 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.474~~~~~$\displaystyle +\int{\frac{\sin^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\sin^{-1}(x/a)}{x}}= +\frac{x}{a}+\frac{(x/a)^3}{2\cdot 3\cdot 3} ++\frac{1\cdot 3(x/a)^5}{2\cdot 4\cdot 5\cdot 5} ++\frac{1\cdot 3\cdot 5(x/a)^7}{2\cdot 4\cdot 6\cdot 7\cdot 7}+\cdots +$$ +<<*>>= +)clear all + +--S 19 14:474 Axiom cannot compute this integral +aa:=integrate(asin(x/a)/x,x) +--R +--R +--I %H +--R x asin(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.475~~~~~$\displaystyle +\int{\frac{\sin^{-1}{(x/a)}}{x^2}}~dx$} +$$\int{\frac{\sin^{-1}{(x/a)}}{x^2}}= +-\frac{\sin^{-1}(x/a)}{x} +-\frac{1}{a}\ln\left(\frac{a+\sqrt{a^2-x^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(asin(x/a)/x^2,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ +---------+ | 2 2 +--R | 2 2 | 2 2 2x\|- x + a +--R - x log(\|- x + a + a) + x log(\|- x + a - a) + a atan(--------------) +--R 2 2 +--R 2x - a +--R ---------------------------------------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=-asin(x/a)/x-1/a*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +--R \|- x + a + a x +--R - x log(----------------) - a asin(-) +--R x a +--R (2) ------------------------------------- +--R a x +--R Type: Expression Integer +--E + +--S 22 14:475 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - x log(\|- x + a + a) + x log(\|- x + a - a) +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a 2x\|- x + a x +--R 2x log(----------------) + a atan(--------------) + 2a asin(-) +--R x 2 2 a +--R 2x - a +--R / +--R 2a x +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.476~~~~~$\displaystyle +\int{\left(sin^{-1}\frac{x}{a}\right)^2}~dx$} +$$\int{\left(sin^{-1}\frac{x}{a}\right)^2}= +x\left(\sin^{-1}\frac{x}{a}\right)^2-2x+2\sqrt{a^2-x^2}\sin^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(asin(x/a)^2,x) +--R +--R +--R +---------+ 2 +---------+ +--R | 2 2 +---------+ | 2 2 +--R 2x\|- x + a | 2 2 2x\|- x + a +--R x atan(--------------) - 4\|- x + a atan(--------------) - 8x +--R 2 2 2 2 +--R 2x - a 2x - a +--R (1) ---------------------------------------------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=x*asin(x/a)^2-2*x+2*sqrt(a^2-x^2)*asin(x/a) +--R +--R +---------+ +--R x | 2 2 x 2 +--R (2) 2asin(-)\|- x + a + x asin(-) - 2x +--R a a +--R Type: Expression Integer +--E + +--S 25 14:476 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R +---------+ 2 +---------+ +--R | 2 2 +---------+ | 2 2 +--R 2x\|- x + a | 2 2 2x\|- x + a +--R x atan(--------------) - 4\|- x + a atan(--------------) +--R 2 2 2 2 +--R 2x - a 2x - a +--R + +--R +---------+ +--R x | 2 2 x 2 +--R - 8asin(-)\|- x + a - 4x asin(-) +--R a a +--R / +--R 4 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.477~~~~~$\displaystyle +\int{\cos^{-1}\frac{x}{a}}~dx$} +$$\int{\cos^{-1}\frac{x}{a}}= +x\cos^{-1}\frac{x}{a}-\sqrt{a^2-x^2} +$$ +<<*>>= +)clear all + +--S 26 +aa:=integrate(acos(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2x\|- x + a | 2 2 +--R x atan(--------------) - 2\|- x + a +--R 2 2 +--R 2x - a +--R (1) -------------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 27 +bb:=x*acos(x/a)-sqrt(a^2-x^2) +--R +--R +---------+ +--R | 2 2 x +--R (2) - \|- x + a + x acos(-) +--R a +--R Type: Expression Integer +--E + +--S 28 14:477 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2x\|- x + a x +--R x atan(--------------) - 2x acos(-) +--R 2 2 a +--R 2x - a +--R (3) ----------------------------------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.478~~~~~$\displaystyle +\int{x\cos^{-1}\frac{x}{a}}~dx$} +$$\int{x\cos^{-1}\frac{x}{a}}= +\left(\frac{x^2}{2}-\frac{a^2}{4}\right)\cos^{-1}\frac{x}{a} +-\frac{x\sqrt{a^2-x^2}}{4} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(x*acos(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 2 2x\|- x + a | 2 2 +--R (2x - a )atan(--------------) - 2x\|- x + a +--R 2 2 +--R 2x - a +--R (1) ----------------------------------------------- +--R 8 +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=(x^2/2-a^2/4)*acos(x/a)-(x*sqrt(a^2-x^2))/4 +--R +--R +---------+ +--R | 2 2 2 2 x +--R - x\|- x + a + (2x - a )acos(-) +--R a +--R (2) ----------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 31 14:478 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 2 2 2x\|- x + a 2 2 x +--R (2x - a )atan(--------------) + (- 4x + 2a )acos(-) +--R 2 2 a +--R 2x - a +--R (3) ----------------------------------------------------- +--R 8 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.479~~~~~$\displaystyle +\int{x^2\cos^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\cos^{-1}\frac{x}{a}}= +\frac{x^3}{3}\cos^{-1}\frac{x}{a}-\frac{(x^2+2a^2)\sqrt{a^2-x^2}}{9} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(x^2*acos(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 3 2x\|- x + a 2 2 | 2 2 +--R 3x atan(--------------) + (- 2x - 4a )\|- x + a +--R 2 2 +--R 2x - a +--R (1) --------------------------------------------------- +--R 18 +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=x^3/3*acos(x/a)-((x^2+2*a^2)*sqrt(a^2-x^2))/9 +--R +--R +---------+ +--R 2 2 | 2 2 3 x +--R (- x - 2a )\|- x + a + 3x acos(-) +--R a +--R (2) ------------------------------------- +--R 9 +--R Type: Expression Integer +--E + +--S 34 14:479 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R +---------+ +--R | 2 2 +--R 3 2x\|- x + a 3 x +--R x atan(--------------) - 2x acos(-) +--R 2 2 a +--R 2x - a +--R (3) ----------------------------------- +--R 6 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.480~~~~~$\displaystyle +\int{\frac{\cos^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\cos^{-1}(x/a)}{x}}= +\frac{x}{2}\ln{x}-\int{\frac{\sin^{-1}(x/a)}{x}} +$$ +<<*>>= +)clear all + +--S 35 14:480 Axiom cannot compute this integral +aa:=integrate(acos(x/a)/x,x) +--R +--R +--I %H +--R x acos(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.481~~~~~$\displaystyle +\int{\frac{\cos^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\cos^{-1}(x/a)}{x^2}}= +-\frac{\cos^{-1}(x/a)}{x}+\frac{1}{a}\ln\left(\frac{a+\sqrt{a^2-x^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(acos(x/a)/x^2,x) +--R +--R +--R (1) +--R +---------+ +--R +---------+ +---------+ | 2 2 +--R | 2 2 | 2 2 2x\|- x + a +--R x log(\|- x + a + a) - x log(\|- x + a - a) - a atan(--------------) +--R 2 2 +--R 2x - a +--R -------------------------------------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=-acos(x/a)/x+1/a*log((a+sqrt(a^2-x^2))/x) +--R +--R +---------+ +--R | 2 2 +--R \|- x + a + a x +--R x log(----------------) - a acos(-) +--R x a +--R (2) ----------------------------------- +--R a x +--R Type: Expression Integer +--E + +--S 38 14:481 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R x log(\|- x + a + a) - x log(\|- x + a - a) +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a 2x\|- x + a x +--R - 2x log(----------------) - a atan(--------------) + 2a acos(-) +--R x 2 2 a +--R 2x - a +--R / +--R 2a x +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.482~~~~~$\displaystyle +\int{\left(\cos^{-1}\frac{x}{a}\right)^2}~dx$} +$$\int{\left(\cos^{-1}\frac{x}{a}\right)^2}= +x\left(\cos^{-1}\frac{x}{a}\right)^2-2x-2\sqrt{a^2-x^2}\cos^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(acos(x/a)^2,x) +--R +--R +--R +---------+ 2 +---------+ +--R | 2 2 +---------+ | 2 2 +--R 2x\|- x + a | 2 2 2x\|- x + a +--R x atan(--------------) - 4\|- x + a atan(--------------) - 8x +--R 2 2 2 2 +--R 2x - a 2x - a +--R (1) ---------------------------------------------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=x*acos(x/a)^2-2*x-2*sqrt(a^2-x^2)*acos(x/a) +--R +--R +---------+ +--R x | 2 2 x 2 +--R (2) - 2acos(-)\|- x + a + x acos(-) - 2x +--R a a +--R Type: Expression Integer +--E + +--S 41 14:482 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R +---------+ 2 +---------+ +--R | 2 2 +---------+ | 2 2 +--R 2x\|- x + a | 2 2 2x\|- x + a +--R x atan(--------------) - 4\|- x + a atan(--------------) +--R 2 2 2 2 +--R 2x - a 2x - a +--R + +--R +---------+ +--R x | 2 2 x 2 +--R 8acos(-)\|- x + a - 4x acos(-) +--R a a +--R / +--R 4 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.483~~~~~$\displaystyle +\int{\tan^{-1}\frac{x}{a}}~dx$} +$$\int{\tan^{-1}\frac{x}{a}}= +x\tan^{-1}\frac{x}{a}-\frac{a}{2}\ln(x^2+a^2) +$$ +<<*>>= +)clear all + +--S 42 +aa:=integrate(atan(x/a),x) +--R +--R +--R 2 2 2a x +--R - a log(x + a ) - x atan(-------) +--R 2 2 +--R x - a +--R (1) ---------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 43 +bb:=x*atan(x/a)-a/2*log(x^2+a^2) +--R +--R 2 2 x +--R - a log(x + a ) + 2x atan(-) +--R a +--R (2) ----------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 44 +cc:=aa-bb +--R +--R x 2a x +--R - 2x atan(-) - x atan(-------) +--R a 2 2 +--R x - a +--R (3) ------------------------------ +--R 2 +--R Type: Expression Integer +--E + +--S 45 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 46 +dd:=atanrule cc +--R +--R 2 2 +--R x + 2%i a x - a - x + %i a +--R %i x log(-----------------) + 2%i x log(----------) +--R 2 2 x + %i a +--R x - 2%i a x - a +--R (5) --------------------------------------------------- +--R 4 +--R Type: Expression Complex Integer +--E + +--S 47 14:483 SCHAUMS AND AXIOM DIFFER? (BRANCH CUTS?) +ee:=expandLog dd +--R +--R %i x log(- 1) +--R (6) ------------- +--R 2 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.484~~~~~$\displaystyle +\int{x\tan^{-1}\frac{x}{a}}~dx$} +$$\int{x\tan^{-1}\frac{x}{a}}= +\frac{1}{2}(x^2+a^2)\tan^{-1}\frac{x}{a}-\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 48 14:484 Axiom cannot compute this integral +aa:=integrate(x*tan(x/a),x) +--R +--R +--R x +--I ++ %H +--I (1) | %H tan(--)d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.485~~~~~$\displaystyle +\int{x^2\tan^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\tan^{-1}\frac{x}{a}}= +\frac{x^3}{3}\tan^{-1}\frac{x}{a}-\frac{ax^2}{6}+\frac{a^3}{6}\ln(x^2+a^2) +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(x^2*atan(x/a),x) +--R +--R +--R 3 2 2 3 2a x 2 +--R a log(x + a ) - x atan(-------) - a x +--R 2 2 +--R x - a +--R (1) --------------------------------------- +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb:=x^3/2*atan(x/a)-(a*x^2)/6+a^3/6*log(x^2+a^2) +--R +--R 3 2 2 3 x 2 +--R a log(x + a ) + 3x atan(-) - a x +--R a +--R (2) ---------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 51 14:485 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R 3 x 3 2a x +--R - 3x atan(-) - x atan(-------) +--R a 2 2 +--R x - a +--R (3) ------------------------------ +--R 6 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.486~~~~~$\displaystyle +\int{\frac{\tan^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\tan^{-1}(x/a)}{x}}= +\frac{x}{a}-\frac{(x/a)^3}{3^2}+\frac{(x/a)^5}{5^2}-\frac{(x/a)^7}{7^2}+\cdots +$$ +<<*>>= +)clear all + +--S 52 14:486 Axiom cannot compute this integral +aa:=integrate(atan(x/a)/x,x) +--R +--R +--I %H +--R x atan(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.487~~~~~$\displaystyle +\int{\frac{\tan^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\tan^{-1}(x/a)}{x^2}}= +-\frac{1}{x}\tan^{-1}\frac{x}{a} +-\frac{1}{2a}\ln\left(\frac{x^2+a^2}{x^2}\right) +$$ +<<*>>= +)clear all + +--S 53 +aa:=integrate(atan(x/a)/x^2,x) +--R +--R +--R 2 2 2a x +--R - x log(x + a ) + 2x log(x) + a atan(-------) +--R 2 2 +--R x - a +--R (1) ---------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 54 +bb:=-1/x*atan(x/a)-1/(2*a)*log((x^2+a^2)/x^2) +--R +--R 2 2 +--R x + a x +--R - x log(-------) - 2a atan(-) +--R 2 a +--R x +--R (2) ----------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 55 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R 2 2 x + a x 2a x +--R - x log(x + a ) + 2x log(x) + x log(-------) + 2a atan(-) + a atan(-------) +--R 2 a 2 2 +--R x x - a +--R ---------------------------------------------------------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 56 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 57 +dd:=atanrule cc +--R +--R (5) +--R 2 2 +--R 2 2 x + 2%i a x - a +--R - 2x log(x + a ) + 4x log(x) - %i a log(-----------------) +--R 2 2 +--R x - 2%i a x - a +--R + +--R 2 2 +--R x + a - x + %i a +--R 2x log(-------) - 2%i a log(----------) +--R 2 x + %i a +--R x +--R / +--R 4a x +--R Type: Expression Complex Integer +--E + +--S 58 14:487 SCHAUMS AND AXIOM DIFFER? (branch cuts?) +ee:=expandLog dd +--R +--R %i log(- 1) +--R (6) - ----------- +--R 2x +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.488~~~~~$\displaystyle +\int{\cot^{-1}\frac{x}{a}}~dx$} +$$\int{\cot^{-1}\frac{x}{a}}= +x\cot^{-1}\frac{x}{a}+\frac{a}{2}\ln(x^2+a^2) +$$ +<<*>>= +)clear all + +--S 59 +aa:=integrate(acot(x/a),x) +--R +--R +--R 2 2 2a x +--R a log(x + a ) + x atan(-------) +--R 2 2 +--R x - a +--R (1) -------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 60 +bb:=x*acot(x/a)+a/2*log(x^2+a^2) +--R +--R 2 2 x +--R a log(x + a ) + 2x acot(-) +--R a +--R (2) --------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 61 +cc:=aa-bb +--R +--R 2a x x +--R x atan(-------) - 2x acot(-) +--R 2 2 a +--R x - a +--R (3) ---------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 62 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 63 +dd:=atanrule cc +--R +--R 2 2 +--R x + 2%i a x - a x +--R - %i x log(-----------------) - 4x acot(-) +--R 2 2 a +--R x - 2%i a x - a +--R (5) ------------------------------------------ +--R 4 +--R Type: Expression Complex Integer +--E + +--S 64 +acotrule:=rule(acot(x) == -%i/2*log((%i*x-1)/(%i*x+1))) +--R +--R x + %i +--R %i log(------) +--R x - %i +--R (6) acot(x) == - -------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 65 +ee:=acotrule dd +--R +--R 2 2 +--R x + 2%i a x - a x + %i a +--R - %i x log(-----------------) + 2%i x log(--------) +--R 2 2 x - %i a +--R x - 2%i a x - a +--R (7) --------------------------------------------------- +--R 4 +--R Type: Expression Complex Integer +--E + +--S 66 14:488 Axiom and Schaums agree +ff:=expandLog % +--R +--R (8) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.489~~~~~$\displaystyle +\int{x\cot^{-1}\frac{x}{a}}~dx$} +$$\int{x\cot^{-1}\frac{x}{a}}= +\frac{1}{2}(x^2+a^2)\cot^{-1}\frac{x}{a}+\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 67 +aa:=integrate(x*acot(x/a),x) +--R +--R +--R 2 2 2a x +--R (x + a )atan(-------) + 2a x +--R 2 2 +--R x - a +--R (1) ----------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 68 +bb:=1/2*(x^2+a^2)*acot(x/a)+(a*x)/2 +--R +--R 2 2 x +--R (x + a )acot(-) + a x +--R a +--R (2) ---------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 69 +cc:=aa-bb +--R +--R 2 2 2a x 2 2 x +--R (x + a )atan(-------) + (- 2x - 2a )acot(-) +--R 2 2 a +--R x - a +--R (3) --------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 70 +acotrule:=rule(acot(x) == -%i/2*log((%i*x-1)/(%i*x+1))) +--R +--R x + %i +--R %i log(------) +--R x - %i +--R (4) acot(x) == - -------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 71 +dd:=acotrule cc +--R +--R 2 2 x + %i a 2 2 2a x +--R (%i x + %i a )log(--------) + (x + a )atan(-------) +--R x - %i a 2 2 +--R x - a +--R (5) ----------------------------------------------------- +--R 4 +--R Type: Expression Complex Integer +--E + +--S 72 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 73 +ee:=atanrule dd +--R +--R (7) +--R 2 2 +--R 2 2 x + 2%i a x - a 2 2 x + %i a +--R (- %i x - %i a )log(-----------------) + (2%i x + 2%i a )log(--------) +--R 2 2 x - %i a +--R x - 2%i a x - a +--R ------------------------------------------------------------------------ +--R 8 +--R Type: Expression Complex Integer +--E + +--S 74 14:489 Axiom and Schaums agree +ff:=expandLog ee +--R +--R (8) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.490~~~~~$\displaystyle +\int{x^2\cot^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\cot^{-1}\frac{x}{a}}= +\frac{x^3}{3}\cot^{-1}\frac{x}{a}+\frac{ax^2}{6}-\frac{a^3}{6}\ln(x^2+a^2) +$$ +<<*>>= +)clear all + +--S 75 +aa:=integrate(x^2*acot(x/a),x) +--R +--R +--R 3 2 2 3 2a x 2 +--R - a log(x + a ) + x atan(-------) + a x +--R 2 2 +--R x - a +--R (1) ----------------------------------------- +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 76 +bb:=x^3/3*acot(x/a)+(a*x^2)/6-a^3/6*log(x^2+a^2) +--R +--R 3 2 2 3 x 2 +--R - a log(x + a ) + 2x acot(-) + a x +--R a +--R (2) ------------------------------------ +--R 6 +--R Type: Expression Integer +--E + +--S 77 +cc:=aa-bb +--R +--R 3 2a x 3 x +--R x atan(-------) - 2x acot(-) +--R 2 2 a +--R x - a +--R (3) ---------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 78 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 79 +dd:=atanrule cc +--R +--R 2 2 +--R 3 x + 2%i a x - a 3 x +--R - %i x log(-----------------) - 4x acot(-) +--R 2 2 a +--R x - 2%i a x - a +--R (5) ------------------------------------------ +--R 12 +--R Type: Expression Complex Integer +--E + +--S 80 +acotrule:=rule(acot(x) == -%i/2*log((%i*x-1)/(%i*x+1))) +--R +--R x + %i +--R %i log(------) +--R x - %i +--R (6) acot(x) == - -------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 81 +ee:=acotrule dd +--R +--R 2 2 +--R 3 x + 2%i a x - a 3 x + %i a +--R - %i x log(-----------------) + 2%i x log(--------) +--R 2 2 x - %i a +--R x - 2%i a x - a +--R (7) --------------------------------------------------- +--R 12 +--R Type: Expression Complex Integer +--E + +--S 82 14:490 Axiom and Schaums agree +ff:=expandLog ee +--R +--R (8) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.491~~~~~$\displaystyle +\int{\frac{\cot^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\cot^{-1}(x/a)}{x}}= +\frac{\pi}{2}\ln{x}-\int{\frac{\tan^{-1}(x/a)}{x}} +$$ +<<*>>= +)clear all + +--S 83 14:491 Axiom cannot compute this integral +aa:=integrate(acot(x/a)/x,x) +--R +--R +--I %H +--R x acot(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.492~~~~~$\displaystyle +\int{\frac{\cot^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\cot^{-1}(x/a)}{x^2}}= +-\frac{cot^{-1}(x/a)}{x}+\frac{1}{2a}\ln\left(\frac{x^2+a^2}{x^2}\right) +$$ +<<*>>= +)clear all + +--S 84 +aa:=integrate(acot(x/a)/x^2,x) +--R +--R +--R 2 2 2a x +--R x log(x + a ) - 2x log(x) - a atan(-------) +--R 2 2 +--R x - a +--R (1) -------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 85 +bb:=-acot(x/a)/x+1/(2*a)*log((x^2+a^2)/x^2) +--R +--R 2 2 +--R x + a x +--R x log(-------) - 2a acot(-) +--R 2 a +--R x +--R (2) --------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 86 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R 2 2 x + a 2a x x +--R x log(x + a ) - 2x log(x) - x log(-------) - a atan(-------) + 2a acot(-) +--R 2 2 2 a +--R x x - a +--R -------------------------------------------------------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 87 +acotrule:=rule(acot(x) == -%i/2*log((%i*x-1)/(%i*x+1))) +--R +--R x + %i +--R %i log(------) +--R x - %i +--R (4) acot(x) == - -------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 88 +dd:=acotrule cc +--R +--R (5) +--R 2 2 +--R 2 2 x + %i a x + a +--R x log(x + a ) - 2x log(x) - %i a log(--------) - x log(-------) +--R x - %i a 2 +--R x +--R + +--R 2a x +--R - a atan(-------) +--R 2 2 +--R x - a +--R / +--R 2a x +--R Type: Expression Complex Integer +--E + +--S 89 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 90 +ee:=atanrule dd +--R +--R (7) +--R 2 2 +--R 2 2 x + 2%i a x - a +--R 2x log(x + a ) - 4x log(x) + %i a log(-----------------) +--R 2 2 +--R x - 2%i a x - a +--R + +--R 2 2 +--R x + %i a x + a +--R - 2%i a log(--------) - 2x log(-------) +--R x - %i a 2 +--R x +--R / +--R 4a x +--R Type: Expression Complex Integer +--E + +--S 91 14:492 Schaums and Axiom agree +ff:=expandLog ee +--R +--R (8) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.493~~~~~$\displaystyle +\int{\sec^{-1}\frac{x}{a}}~dx$} +$$\int{\sec^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +x\sec^{-1}\frac{x}{a}-a\ln(x+\sqrt{x^2-a^2}) +{\rm \ if\ }0 < \sec^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +x\sec^{-1}\frac{x}{a}+a\ln(x+\sqrt{x^2-a^2}) +{\rm \ if\ }\frac{\pi}{2} < \sec^{-1}\frac{x}{a} < \pi +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 92 +aa:=integrate(asec(x/a),x) +--R +--R +--R (1) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R +-+ 2x\|2 \|- x + a 2a\|- x + a +--R - a\|2 atan(------------------) + x atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R x +--R - 2a atan(------------) +--R +---------+ +--R | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 93 +bb1:=x*asec(x/a)-a*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +--R | 2 2 x +--R (2) - a log(\|x - a + x) + x asec(-) +--R a +--R Type: Expression Integer +--E + +--S 94 +bb2:=x*asec(x/a)+a*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +--R | 2 2 x +--R (3) a log(\|x - a + x) + x asec(-) +--R a +--R Type: Expression Integer +--E + +--S 95 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R | 2 2 +-+ 2x\|2 \|- x + a +--R 2a log(\|x - a + x) - a\|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +--R 2a\|- x + a x x +--R x atan(--------------) - 2a atan(------------) - 2x asec(-) +--R 2 +---------+ a +--R x | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Expression Integer +--E + +--S 96 14:493 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R | 2 2 +-+ 2x\|2 \|- x + a +--R - 2a log(\|x - a + x) - a\|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +--R 2a\|- x + a x x +--R x atan(--------------) - 2a atan(------------) - 2x asec(-) +--R 2 +---------+ a +--R x | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.494~~~~~$\displaystyle +\int{x\sec^{-1}\frac{x}{a}}~dx$} +$$\int{x\sec^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^2}{2}\sec^{-1}\frac{x}{a}-\frac{a\sqrt{x^2-a^2}}{2} +{\rm \ if\ }0 < \sec^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^2}{2}\sec^{-1}\frac{x}{a}+\frac{a\sqrt{x^2-a^2}}{2} +{\rm \ if\ }\frac{\pi}{2} < \sec^{-1}\frac{x}{a} < \pi +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 97 +aa:=integrate(x*asec(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 2 2a\|- x + a | 2 2 +--R (x - 2a )atan(--------------) + 2a\|- x + a +--R 2 +--R x +--R (1) ----------------------------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 98 +bb1:=x^2/2*asec(x/a)-(a*sqrt(x^2-a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R - a\|x - a + x asec(-) +--R a +--R (2) ------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 99 +bb2:=x^2/2*asec(x/a)+(a*sqrt(x^2-a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R a\|x - a + x asec(-) +--R a +--R (3) ----------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 100 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R | 2 2 +-------+ +---------+ +--R 2 2 2a\|- x + a | 2 2 | 2 2 2 x +--R (x - 2a )atan(--------------) + 2a\|x - a + 2a\|- x + a - 2x asec(-) +--R 2 a +--R x +--R --------------------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 101 14:494 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R | 2 2 +-------+ +---------+ +--R 2 2 2a\|- x + a | 2 2 | 2 2 2 x +--R (x - 2a )atan(--------------) - 2a\|x - a + 2a\|- x + a - 2x asec(-) +--R 2 a +--R x +--R --------------------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.495~~~~~$\displaystyle +\int{x^2\sec^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\sec^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^3}{3}\sec^{-1}\frac{x}{a}-\frac{ax\sqrt{x^2-a^2}}{6} +-\frac{a^3}{6}\ln(x+\sqrt{x^2-a^2})\\ +\\ +\displaystyle +\hbox{\hskip 3cm}{\rm \ if\ }0 < \sec^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^3}{3}\sec^{-1}\frac{x}{a}+\frac{ax\sqrt{x^2-a^2}}{6} ++\frac{a^3}{6}\ln(x+\sqrt{x^2-a^2})\\ +\\ +\displaystyle +\hbox{\hskip 3cm} +{\rm \ if\ }\frac{\pi}{2} < \sec^{-1}\frac{x}{a} < \pi\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 102 +aa:=integrate(x^2*asec(x/a),x) +--R +--R +--R (1) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 3 +-+ 2x\|2 \|- x + a 3 2a\|- x + a +--R - 2a \|2 atan(------------------) + x atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R +---------+ +--R 3 x | 2 2 +--R - 5a atan(------------) + a x\|- x + a +--R +---------+ +--R | 2 2 +--R \|- x + a +--R / +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 103 +bb1:=x^3/3*asec(x/a)-(a*x*sqrt(x^2-a^2))/6-a^3/6*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 3 | 2 2 | 2 2 3 x +--R - a log(\|x - a + x) - a x\|x - a + 2x asec(-) +--R a +--R (2) ---------------------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 104 +bb2:=x^3/3*asec(x/a)+(a*x*sqrt(x^2-a^2))/6+a^3/6*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 3 | 2 2 | 2 2 3 x +--R a log(\|x - a + x) + a x\|x - a + 2x asec(-) +--R a +--R (3) -------------------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 105 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R 3 | 2 2 3 +-+ 2x\|2 \|- x + a +--R a log(\|x - a + x) - 2a \|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +-------+ +--R 3 2a\|- x + a 3 x | 2 2 +--R x atan(--------------) - 5a atan(------------) + a x\|x - a +--R 2 +---------+ +--R x | 2 2 +--R \|- x + a +--R + +--R +---------+ +--R | 2 2 3 x +--R a x\|- x + a - 2x asec(-) +--R a +--R / +--R 6 +--R Type: Expression Integer +--E + +--S 106 14:495 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R 3 | 2 2 3 +-+ 2x\|2 \|- x + a +--R - a log(\|x - a + x) - 2a \|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +-------+ +--R 3 2a\|- x + a 3 x | 2 2 +--R x atan(--------------) - 5a atan(------------) - a x\|x - a +--R 2 +---------+ +--R x | 2 2 +--R \|- x + a +--R + +--R +---------+ +--R | 2 2 3 x +--R a x\|- x + a - 2x asec(-) +--R a +--R / +--R 6 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.496~~~~~$\displaystyle +\int{\frac{\sec^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\sec^{-1}(x/a)}{x}}= +\frac{\pi}{2}\ln{x}+\frac{a}{x}+\frac{(a/x)^3}{2\cdot 3\cdot 3} ++\frac{1\cdot 3(a/x)^5}{2\cdot 4\cdot 5\cdot 5} ++\frac{1\cdot 3\cdot 5(a/x)^7}{2\cdot 4\cdot 6\cdot 7\cdot 7}+\cdots +$$ +<<*>>= +)clear all + +--S 107 14:496 Axiom cannot compute this integral +aa:=integrate(asec(x/a)/x,x) +--R +--R +--I %H +--R x asec(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.497~~~~~$\displaystyle +\int{\frac{\sec^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\sec^{-1}(x/a)}{x^2}}= +\left\{ +\begin{array}{l} +\displaystyle +-\frac{\sec^{-1}(x/a)}{x}+\frac{\sqrt{x^2-a^2}}{ax} +{\rm \ if\ }0 < \sec^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +-\frac{\sec^{-1}(x/a)}{x}-\frac{\sqrt{x^2-a^2}}{ax} +{\rm \ if\ }\frac{\pi}{2} < \sec^{-1}\frac{x}{a} < \pi\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 108 +aa:=integrate(asec(x/a)/x^2,x) +--R +--R +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +--R x atan(------------------) - a\|2 atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R (1) ------------------------------------------------------ +--R +-+ +--R 2a x\|2 +--R Type: Union(Expression Integer,...) +--E + +--S 109 +bb1:=-asec(x/a)/x+sqrt(x^2-a^2)/(a*x) +--R +--R +-------+ +--R | 2 2 x +--R \|x - a - a asec(-) +--R a +--R (2) ---------------------- +--R a x +--R Type: Expression Integer +--E + +--S 110 +bb2:=-asec(x/a)/x-sqrt(x^2-a^2)/(a*x) +--R +--R +-------+ +--R | 2 2 x +--R - \|x - a - a asec(-) +--R a +--R (3) ------------------------ +--R a x +--R Type: Expression Integer +--E + +--S 111 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +-------+ +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +-+ | 2 2 +--R x atan(------------------) - a\|2 atan(--------------) - 2\|2 \|x - a +--R 2 2 2 +--R 3x - 2a x +--R + +--R +-+ x +--R 2a\|2 asec(-) +--R a +--R / +--R +-+ +--R 2a x\|2 +--R Type: Expression Integer +--E + +--S 112 14:497 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +-------+ +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +-+ | 2 2 +--R x atan(------------------) - a\|2 atan(--------------) + 2\|2 \|x - a +--R 2 2 2 +--R 3x - 2a x +--R + +--R +-+ x +--R 2a\|2 asec(-) +--R a +--R / +--R +-+ +--R 2a x\|2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.498~~~~~$\displaystyle +\int{\csc^{-1}\frac{x}{a}}~dx$} +$$\int{\csc^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +x\csc^{-1}\frac{x}{a}+a\ln(x+\sqrt{x^2-a^2}) +{\rm \ if\ }0 < \csc^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +x\csc^{-1}\frac{x}{a}-a\ln(x+\sqrt{x^2-a^2}) +{\rm \ if\ }-\frac{\pi}{2} < \csc^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 113 +aa:=integrate(acsc(x/a),x) +--R +--R +--R (1) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R +-+ 2x\|2 \|- x + a 2a\|- x + a +--R a\|2 atan(------------------) - x atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R x +--R 2a atan(------------) +--R +---------+ +--R | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 114 +bb1:=x*acsc(x/a)+a*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +--R | 2 2 x +--R (2) a log(\|x - a + x) + x acsc(-) +--R a +--R Type: Expression Integer +--E + +--S 115 +bb2:=x*acsc(x/a)-a*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +--R | 2 2 x +--R (3) - a log(\|x - a + x) + x acsc(-) +--R a +--R Type: Expression Integer +--E + +--S 116 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R | 2 2 +-+ 2x\|2 \|- x + a +--R - 2a log(\|x - a + x) + a\|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +--R 2a\|- x + a x x +--R - x atan(--------------) + 2a atan(------------) - 2x acsc(-) +--R 2 +---------+ a +--R x | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Expression Integer +--E + +--S 117 14:498 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R | 2 2 +-+ 2x\|2 \|- x + a +--R 2a log(\|x - a + x) + a\|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +--R 2a\|- x + a x x +--R - x atan(--------------) + 2a atan(------------) - 2x acsc(-) +--R 2 +---------+ a +--R x | 2 2 +--R \|- x + a +--R / +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.499~~~~~$\displaystyle +\int{x\csc^{-1}\frac{x}{a}}~dx$} +$$\int{x\csc^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^2}{2}\csc^{-1}\frac{x}{a}+\frac{a\sqrt{x^2-a^2}}{2} +{\rm \ if\ }0 < \csc^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^2}{2}\csc^{-1}\frac{x}{a}-\frac{a\sqrt{x^2-a^2}}{2} +{\rm \ if\ }-\frac{\pi}{2} < \csc^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 118 +aa:=integrate(x*acsc(x/a),x) +--R +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 2 2a\|- x + a | 2 2 +--R (- x + 2a )atan(--------------) - 2a\|- x + a +--R 2 +--R x +--R (1) ------------------------------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 119 +bb1:=x^2/2*acsc(x/a)+(a*sqrt(x^2-a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R a\|x - a + x acsc(-) +--R a +--R (2) ----------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 120 +bb2:=x^2/2*acsc(x/a)-(a*sqrt(x^2-a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R - a\|x - a + x acsc(-) +--R a +--R (3) ------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 121 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R | 2 2 +-------+ +---------+ +--R 2 2 2a\|- x + a | 2 2 | 2 2 2 x +--R (- x + 2a )atan(--------------) - 2a\|x - a - 2a\|- x + a - 2x acsc(-) +--R 2 a +--R x +--R ----------------------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 122 14:499 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R | 2 2 +-------+ +---------+ +--R 2 2 2a\|- x + a | 2 2 | 2 2 2 x +--R (- x + 2a )atan(--------------) + 2a\|x - a - 2a\|- x + a - 2x acsc(-) +--R 2 a +--R x +--R ----------------------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.500~~~~~$\displaystyle +\int{x^2\csc^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\csc^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^3}{3}\csc^{-1}\frac{x}{a}+\frac{ax\sqrt{x^2-a^2}}{6} ++\frac{a^3}{6}\ln(x+\sqrt{x^2-a^2})\\ +\\ +\displaystyle +\hbox{\hskip 3cm}{\rm \ if\ }0 < \csc^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^3}{3}\sec^{-1}\frac{x}{a}-\frac{ax\sqrt{x^2-a^2}}{6} +-\frac{a^3}{6}\ln(x+\sqrt{x^2-a^2})\\ +\\ +\displaystyle +\hbox{\hskip 3cm} +{\rm \ if\ }-\frac{\pi}{2} < \csc^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 123 +aa:=integrate(x^2*acsc(x/a),x) +--R +--R +--R (1) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 3 +-+ 2x\|2 \|- x + a 3 2a\|- x + a +--R 2a \|2 atan(------------------) - x atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R +---------+ +--R 3 x | 2 2 +--R 5a atan(------------) - a x\|- x + a +--R +---------+ +--R | 2 2 +--R \|- x + a +--R / +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 124 +bb1:=x^3/3*acsc(x/a)+(a*x*sqrt(x^2-a^2))/6+a^3/6*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 3 | 2 2 | 2 2 3 x +--R a log(\|x - a + x) + a x\|x - a + 2x acsc(-) +--R a +--R (2) -------------------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 125 +bb2:=x^3/3*acsc(x/a)-(a*x*sqrt(x^2-a^2))/6-a^3/6*log(x+sqrt(x^2-a^2)) +--R +--R +-------+ +-------+ +--R 3 | 2 2 | 2 2 3 x +--R - a log(\|x - a + x) - a x\|x - a + 2x acsc(-) +--R a +--R (3) ---------------------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 126 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R 3 | 2 2 3 +-+ 2x\|2 \|- x + a +--R - a log(\|x - a + x) + 2a \|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +-------+ +--R 3 2a\|- x + a 3 x | 2 2 +--R - x atan(--------------) + 5a atan(------------) - a x\|x - a +--R 2 +---------+ +--R x | 2 2 +--R \|- x + a +--R + +--R +---------+ +--R | 2 2 3 x +--R - a x\|- x + a - 2x acsc(-) +--R a +--R / +--R 6 +--R Type: Expression Integer +--E + +--S 127 14:500 Axiom cannot simplify this expression +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R +-------+ +-+ | 2 2 +--R 3 | 2 2 3 +-+ 2x\|2 \|- x + a +--R a log(\|x - a + x) + 2a \|2 atan(------------------) +--R 2 2 +--R 3x - 2a +--R + +--R +---------+ +--R | 2 2 +-------+ +--R 3 2a\|- x + a 3 x | 2 2 +--R - x atan(--------------) + 5a atan(------------) + a x\|x - a +--R 2 +---------+ +--R x | 2 2 +--R \|- x + a +--R + +--R +---------+ +--R | 2 2 3 x +--R - a x\|- x + a - 2x acsc(-) +--R a +--R / +--R 6 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.501~~~~~$\displaystyle +\int{\frac{\csc^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\csc^{-1}(x/a)}{x}}= +-\left(\frac{a}{x}+\frac{(a/x)^3}{2\cdot 3\cdot 3} ++\frac{1\cdot 3(a/x)^5}{2\cdot 4\cdot 5\cdot 5} ++\frac{1\cdot 3\cdot 5(a/x)^7}{2\cdot 4\cdot 6\cdot 7\cdot 7}+\cdots\right) +$$ +<<*>>= +)clear all + +--S 128 14:501 Axiom cannot compute this integral +aa:=integrate(acsc(x/a)/x,x) +--R +--R +--I %H +--R x acsc(--) +--R ++ a +--I (1) | -------- d%H +--I ++ %H +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.502~~~~~$\displaystyle +\int{\frac{\csc^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\csc^{-1}(x/a)}{x^2}}= +\left\{ +\begin{array}{l} +\displaystyle +-\frac{csc^{-1}(x/a)}{x}-\frac{\sqrt{x^2-a^2}}{ax} +{\rm \ if\ }0 < \csc^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +-\frac{csc^{-1}(x/a)}{x}+\frac{\sqrt{x^2-a^2}}{ax} +{\rm \ if\ }-\frac{\pi}{2} < \csc^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 129 +aa:=integrate(acsc(x/a)/x^2,x) +--R +--R +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +--R - x atan(------------------) + a\|2 atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R (1) -------------------------------------------------------- +--R +-+ +--R 2a x\|2 +--R Type: Union(Expression Integer,...) +--E + +--S 130 +bb1:=-acsc(x/a)/x-sqrt(x^2-a^2)/(a*x) +--R +--R +-------+ +--R | 2 2 x +--R - \|x - a - a acsc(-) +--R a +--R (2) ------------------------ +--R a x +--R Type: Expression Integer +--E + +--S 131 +bb2:=-acsc(x/a)/x+sqrt(x^2-a^2)/(a*x) +--R +--R +-------+ +--R | 2 2 x +--R \|x - a - a acsc(-) +--R a +--R (3) ---------------------- +--R a x +--R Type: Expression Integer +--E + +--S 132 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +--R - x atan(------------------) + a\|2 atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R +-------+ +--R +-+ | 2 2 +-+ x +--R 2\|2 \|x - a + 2a\|2 acsc(-) +--R a +--R / +--R +-+ +--R 2a x\|2 +--R Type: Expression Integer +--E + +--S 133 14:502 Axiom cannot simplify this expression +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +---------+ +--R +-+ | 2 2 | 2 2 +--R 2x\|2 \|- x + a +-+ 2a\|- x + a +--R - x atan(------------------) + a\|2 atan(--------------) +--R 2 2 2 +--R 3x - 2a x +--R + +--R +-------+ +--R +-+ | 2 2 +-+ x +--R - 2\|2 \|x - a + 2a\|2 acsc(-) +--R a +--R / +--R +-+ +--R 2a x\|2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.503~~~~~$\displaystyle +\int{x^m\sin^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\sin^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\sin^{-1}\frac{x}{a}-\frac{1}{m+1}\int{\frac{x^{m+1}}{\sqrt{a^2-x^2}}} +$$ +<<*>>= +)clear all + +--S 134 14:503 Axiom cannot compute this integral +aa:=integrate(x^m*asin(x/a),x) +--R +--R +--R x +--I ++ %H m +--I (1) | asin(--)%H d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.504~~~~~$\displaystyle +\int{x^m\cos^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\cos^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\cos^{-1}\frac{x}{a}+\frac{1}{m+1}\int{\frac{x^{m+1}}{\sqrt{a^2-x^2}}} +$$ +<<*>>= +)clear all + +--S 135 14:504 Axiom cannot compute this integral +aa:=integrate(x^m*acos(x/a),x) +--R +--R +--R x +--I ++ %H m +--I (1) | acos(--)%H d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.505~~~~~$\displaystyle +\int{x^m\tan^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\tan^{-1}\frac{x}{a}}= +\frac{x^{m_1}}{m+1}\tan^{-1}\frac{x}{a} +-\frac{a}{m+1}\int{\frac{x^{m+1}}{x^2+a^2}} +$$ +This appears to be an interesting integral. Axiom found a closed +form solution to the problem. However, the t1 integral below does +not have a closed form solution. Note that we did not return a +result for the prior two integrals, nor for the next integral. They +have the same form but are expressed in terms of asin, acos, and acot. +<<*>>= +)clear all + +--S 136 +aa:=integrate(x*m*atan(x/a),x) +--R +--R +--R 2 2 2a x +--R (- m x - a m)atan(-------) - 2a m x +--R 2 2 +--R x - a +--R (1) ------------------------------------ +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 137 +t1:=integrate(x^(m+1)/(x^2+a^2),x) +--E +@ +Since we cannot get a closed form version of the prior integral +we proceed to try to prove that Axiom got a correct answer. We +do this by computing the derivate of 'aa' above and finding the +difference from the original formula. + +So first we generate the derivative: +<<*>>= + +--S 138 +bb:=D(aa,x) +--R +--R 2a x +--R m x atan(-------) +--R 2 2 +--R x - a +--R (3) - ----------------- +--R 2 +--R Type: Expression Integer +--E +@ +Then we input the original expression +<<*>>= +--S 139 +aa1:=x*m*atan(x/a) +--R +--R x +--R (4) m x atan(-) +--R a +--R Type: Expression Integer +--E +@ +Now we take their difference +<<*>>= +--S 140 +dd:=aa1-bb +--R +--R x 2a x +--R 2m x atan(-) + m x atan(-------) +--R a 2 2 +--R x - a +--R (5) -------------------------------- +--R 2 +--R Type: Expression Integer +--E +@ +Now we input the atan transformation +<<*>>= +--S 141 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (6) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E +@ +And apply the transformation to the difference +<<*>>= +--S 142 +ee:=atanrule dd +--R +--R 2 2 +--R x + 2%i a x - a - x + %i a +--R - %i m x log(-----------------) - 2%i m x log(----------) +--R 2 2 x + %i a +--R x - 2%i a x - a +--R (7) --------------------------------------------------------- +--R 4 +--R Type: Expression Complex Integer +--E +@ +And now we simplify +<<*>>= +--S 143 14:505 SCHAUMS AND AXIOM DISAGREE? (branch cuts?) +ff:=expandLog ee +--R +--R %i m x log(- 1) +--R (8) - --------------- +--R 2 +--R Type: Expression Complex Integer +--E +@ +And we get the surprising result that they are not equal. +In fact, they differ by a complex value depending on x. +Likely there is a branch-cut issue lurking somewhere. + +\section{\cite{1}:14.506~~~~~$\displaystyle +\int{x^m\cot^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\cot^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\cot^{-1}\frac{x}{a} ++\frac{a}{m+1}\int{\frac{x^{m+1}}{x^2+a^2}} +$$ +<<*>>= +)clear all + +--S 144 14:506 Axiom cannot compute this integral +aa:=integrate(x^m*acot(x/a),x) +--R +--R +--R x +--I ++ %H m +--I (1) | acot(--)%H d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.507~~~~~$\displaystyle +\int{x^m\sec^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\sec^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^{m+1}\sec^{-1}(x/a)}{m+1}-\frac{a}{m+1}\int{\frac{x^m}{\sqrt{x^2-a^2}}} +{\rm \ if\ }0 < \sec^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^{m+1}\sec^{-1}(x/a)}{m+1}+\frac{a}{m+1}\int{\frac{x^m}{\sqrt{x^2-a^2}}} +{\rm \ if\ }\frac{\pi}{2} < \sec^{-1}\frac{x}{a} < \pi\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 145 14:507 Axiom cannot compute this integral +aa:=integrate(x^m*asec(x/a),x) +--R +--R +--R x +--I ++ %H m +--I (1) | asec(--)%H d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.508~~~~~$\displaystyle +\int{x^m\csc^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\csc^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{x^{m+1}\csc^{-1}(x/a)}{m+1}+\frac{a}{m+1}\int{\frac{x^m}{\sqrt{x^2-a^2}}} +{\rm \ if\ }0 < \csc^{-1}\frac{x}{a} < \frac{\pi}{2}\\ +\\ +\displaystyle +\frac{x^{m+1}\csc^{-1}(x/a)}{m+1}-\frac{a}{m+1}\int{\frac{x^m}{\sqrt{x^2-a^2}}} +{\rm \ if\ }-\frac{\pi}{2} < \csc^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 146 14:508 Axiom cannot compute this integral +aa:=integrate(x^m*acsc(x/a),x) +--R +--R +--R x +--I ++ %H m +--I (1) | acsc(--)%H d%H +--R ++ a +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp82-84 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum24.input.pdf b/src/axiom-website/CATS/schaum24.input.pdf new file mode 100644 index 0000000..7b5f0e3 --- /dev/null +++ b/src/axiom-website/CATS/schaum24.input.pdf @@ -0,0 +1,4546 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/AFXDYA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/JAHHGJ+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/COYIHP+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/PGFEYZ+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/GQFMSG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/QSLPVM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PEMYOS+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/HQIIYS+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/ZQYGWY+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 1162 +>> +stream +xŘM7 :I})k}jâMMrݟ_R#xG9٣ьWc,Xk6Wkg;`Bf +?=ݗo^{!}x,~.;  ?; B 3m{W0#^ hR T!lXLƩӍ`xFǟրDBשHHR-Uй xrPqf%O=0R2-L'*JKݳ*Ӆ*'KYInIfpBHP9s]|*CX@$M魡&'ɉ <r&kdHI${e.iVp^Zk%:/Lf2>g + +NP}$;gж=.Mu@f@ҁuDB'(_j(ntC$^jigeVtU1[nONv̖v^jy4M~/95N+3^-ӗ5#+J\]CTn'?ۆNE^;Hn톖!J9LbKtLUȜ˧ /3e.sV?y9}̥ȷ%@Cτ~!j2_jnBȂsIwMISkC7MsErv ,{C#jvz'C%Y~g +Fh{Z +}rmuMD.ÜPqRÖ',~?KA +endstream +endobj +44 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length 1025 +>> +stream +xX=7+XK3!'@ qQۅ8irIqr??CrDtH#agqhuaOݛd +dݽ?~~![ƣ%*#~ 8'x3oN [%%XdkJSWkjߠuw5A)xP Y>5?`{`hR\cGuOLFrR!٘`smPS ;N*H!.q2aBRb[f-@^+D-@R~ǃ^Gt]/IZoC ;86Ʉ#vqGy&EZac60Nc.Ndѵs`F9%4,90Q`ab0W>- l~HZ?9L 4X1 YLlj iwԁ&1+>l#yS?P|E<́ce SaZ%iDZHTJ +>MIx3J@1p܆{ r jYzF45yU6l[f<~td9$I و9n y ubۿH 3>[N|;N쳊d'+'F] b3ngi[)3(S2ʗk!E3 +6F#VvPio\I > |w,9;#o&"#\DL>9C}=a$haE8>U|G+g4 c_v>n}118qOsWNLf=k\8p+'8m.pbʸeK '"F'֩g9[x 4NLNAޥV̇m }}NfOX7}+rvĊsԜCϊJSǯЊ%׭(SL~׊ +gGcii}/< +endstream +endobj +48 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +>> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 48 0 R +>> +endobj +53 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 52 0 R +/BaseFont/GEQLRI+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length 492 +>> +stream +x͕Mo1 +C'GEʜ(=T-T(u2݅-M;:-#=dʼnȩoO.-9VN/OgI@_ w3),̱H< }ۗL_l 8ʎ$uI(&n<Ĉ|)&bYﰊ(EZL EO|3>]8ǸB#2m appk p  s`tȮb i=jn B1| Wϫce > R9H^ bIPW3_ ![IxLaM"m%f$va/ +a x? >DhH"tia$\![zdWQ1H[Qx|o -" @1(HhD/l4(zo("@f(+QP0óA $A x.c$s@n 60 +endstream +endobj +55 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F9 42 0 R +/F10 53 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +>> +endobj +50 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 55 0 R +>> +endobj +60 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 59 0 R +/BaseFont/TJAEZY+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +63 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 62 0 R +/BaseFont/QQCEPS+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 66 0 R +/BaseFont/ZYKJIL+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +68 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +71 0 obj +<< +/Encoding 68 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 70 0 R +/BaseFont/BHDCQZ+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 895 +>> +stream +xڥVK6Wh!W !E7EzlK:]~" +C,v]$R|3p@,#$$nK%(BeڐG|L95̿L% u^ǜ&&:бr`Y;HXGa bNH2{e)hX`@nJ(,fXfɊLv$Q2@R +m[3Z` c5= x=͜I2 q7P!*zA)u*0Qd +F7:^~*I$5na)bl+(twF* {(25oa7kp;`9Q#UAsjAl.]UU>SM.RY66N’dsοu{0=h'6KeL%Gƾ I7֧ؖbB5v1~[龺и'OoI_'տ;++w4. 2ŋ}9.5iː۰ǪU:`,ثҙ\-a]P p9YlVs^כ4Ҫj\> +endobj +57 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 159 +>> +stream +xڍO10 yd'u0"R#FCR~O)b /N:Ш50 RQS tO 3 KEY46r5o1@"W52H>/b"!ҽ6I}"h(Un6ƴx;8 +endstream +endobj +77 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 1001 +>> +stream +xڭWMo6Whcrm ٢=vKW[@Iml:;$%,ye߼yLKÏfRl'az~ŠKfA~RvX}ygY`)h!MK~{X92DrL٧C8@ Bj2ǨS3r ,S|O]He9&n@xVq'(ZƝ@B;>38VKDFCpFP,R3PN>لF40ǟBlJpdƜG:$<üf/ T/PDH+K +Ӧa͘*ORHЩOӀ Tg";1>$R2FANpjN7?ի?(tLIQ +G4ά/˔44  Zh*EȎzՂaBz8Uܐ||pivݭ*afD4_%7Sf77+AЧhf9U]mKN;QS+ދN>.qGϘkҀ%.Ir=4squ\ɨUow^Wt4Z\^7h'=e-t8!kZz}[>ɥ ob~swПAb +endstream +endobj +81 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 786 +>> +stream +xUMs0Wpq !2C;Mظ)walӴ΄Coc;0?IX:;', g;KyGs(,ٳ(̟6ܥeyUҨ{U ó+(@$vYt.U\>ytEDp#AS.UMV. +Ƒ,+cm@f7EEfVuKf(r~Gf4$9#\ +Q,z_MV0OU>]ԪOCHi%$âj6P5.$vkO=D71 + + +P)GO[ y :C;!jaA(nt/(f|1 +F\RJrsc=)a\$+Yq>pz>#A(6dA #T5G`q. +VCYQʮ*a8enrKgpI01:DXx1a ?hO2)iϲk?_ǿiQ0)ᐒr/Ψ2iI ՑUu*!_n?`}2(Sʈ'$aOJw:%Sqσ!JgRt^ c +endstream +endobj +85 0 obj +<< +/F14 71 0 R +/F3 16 0 R +/F11 60 0 R +/F13 67 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 521 +>> +stream +xTMo0 W(%"SWߦ1|v +m%ɭ`~4IH!%y$F&Eb[< +nA$׿hKƕRtoE\4gĚi"yဈ+!"}oͶ/K;1 xEk㼗DقVh  <;@:q~˸CㆌRӫkG+\;v +s%<{{ŋ A1QeB+%>ΡuӁ8dm9Ur5y,=t[n:uTG &Q Fiɦ>YYp/|vnQw(X8@ۧ6Ś t{8t,9GOzzh})>cq!I[T"ʑcݿIgv}@xǴ.:*hӟDOs]D< uR.!UņG*0PpPVHYn֘3 +endstream +endobj +89 0 obj +<< +/F3 16 0 R +/F11 60 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 778 +>> +stream +xW]o0}߯`SlV~dja͞ܔ$h D@Tߵ Ihxȵkbؖm#CIp?4)(Dl[Zx06Z0 #A;k*^GwM-6Tj=/RꈾB]xt=Ý6m$ėENu3dJdKkZIAl4'D[&& +q b+yr2r +endstream +endobj +93 0 obj +<< +/F3 16 0 R +/F11 60 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 971 +>> +stream +xVKs6W΀ žvvL:X=I:2$qJ*I/-9OneݥF8xat9y;f#k9,GJR2Is%FwSIBIua1C֚>bd}ԞhٴQlw}YY$Tt`K"2vʠW񤬽FoWd>혐ǘ3s^G}^,/_ \˓o\ΨDFs'k(g$ .6oWDZ3ԋkjfɱVdD(\*ڻ?~׀4CmNS?!*G;!lgOWemڇ +7gJzIJ9Ά^[ONms+K2%߱~ja|\`5緎(ľM7&|"@ѽ!״6d8/@ ݮ<ɸV袃Ӆ܆좲鬭Sײn w +i[;͸Fnc~GhwD5%հe +2CCYŇuRɦ#T @>P\LB(4YYڶm۸D +@ +Uj.@Āx+bk:+Cɰzϸpx- g>.Ms{E޷;2p=]Pyv hoH#%å_+?Ǐ_s>?TOnayVNq.(PJp M,,r>є\h.#`QXG I!)41LL38p) ,-p)1O_Pc+I E1hbɹLc8Ξ paL'3Oևٿʮx+ӏ|F '?ů +endstream +endobj +97 0 obj +<< +/F3 16 0 R +/F11 60 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 1048 +>> +stream +xڝWM6WhC~Cn8FY@&ޭm +!)Y,ybI3|qd8'H}PD(&Y<#Մnj%>OdA=,1KYY|Y9`gބ%BXd0&.;e`0]Nr2f^0p`vMSEtD,aiǰ8e7D2:nJ)/A&5qG3%5R$I1A@#K̾} <0os}332>-L@sl`ϔc,+Q'$w,zg"Q0}kL&(_{\749$tVٱQm=sQnF^v2$`@{$Lr3вvMp߿lda6K0lH ue-\^Gx%~LAaX淫~m[夾 +O;^ͪxW'wze-S~g~ⅶ7>|;z#9/|0uY!0F +,X!6ἲ@( }ѣJcM9QU)p]4:,̳CD)(p#adu9O?mV/]]vxܾc .7ߞxxr&sOI<S< +P7r״e1o;}-EOR)P9}7%K=Gy4@r7 g5  :fFqЛY5r 5!9]>V>]Vϯӏtڥe6 +/1tgkIQ/4b֬l2B CӼ*gfTq(&"ڟ0K +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F3 16 0 R +/F2 13 0 R +/F11 60 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 859 +>> +stream +xڵVKo@W쥒iξ)V%mzl!+ Jzmlew|;Lwͨ0q+6z{qQY2ۻ}`qDSdFly^NVb~_דɲ}7#^@Z HQnv@VchCsuTT`4E2dXq 3`}a2xg &\RW5R}cHIIް'&3v܉'jSD.67rt$E'H6I@ S,WH4`أoM,HKi!EKFր*w|6€YN426*:C\ $fTlfTU_֏8ТdxۄT$y~Gr>0Ί<1NfSWM +P6 +5-*Fz_]KT%wIu?p%>m'-pT uL _avŐJ΁#bH /MB /zu=I?֏UZM㼸g1z2r9٦{[jcvmVW=&]㜡[;PPRYB +莄h(8C +?'/RnLWeFa m R?i>a+dcqIwI}' +endstream +endobj +105 0 obj +<< +/F14 71 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 1079 +>> +stream +xWM6W79ۀ-)c^%vl ޭm +!)Y&M`Jp7#, $\2!=ќELYMsPvVҨͯW8w0)|ڨ\0% Em8o(M0)@h#&Igf V(&u_A&l_,6 NMf@@Yfmٓ嘋E 6Y"a +*kcNDeR380k͜M@<\s{5 y{f\xVrw5I997h0{s! Y\*8/T#K`oäk͙M# U9OawW6AuYһg%I_3?ǃMqN/u +Ʋ]?U +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 286 +>> +stream +x}R=o0+ܱ*ڱV:0"Q@ڦBݻwN&qNZ yr%j 3H@ fq ;JR'h +0C4^)Q)yyO +796tL_9UƋ^G6:FױX.u殘b@Յ=[@T arssk/Ln#'ے [2qߧq$؍kwi|k2.4+ ) 6P=R +endstream +endobj +113 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 1072 +>> +stream +xڽWM6W7{r9/ZtSĽ4JI x۵*@~|dfH"go޼L +)/W/5-f̂pqD73;hfo풬/_Z慷 Bk˟ +e"X*'`wE8TovtpI:ZmbuѠWDf0TJXPQpa-{MD :cOA! +'q/I\C EA̿!  # +i0 Aa}=*J{ʳ#vGsq4) T} @FHB 8H'`P0̢ +ǩ R\#OJVadՠ4xA0$9( ;;Uδ~i iUL$3*T4L3#ލ1lxs8-D^Bl-zgSIBz4y*'d>))oHʱ };!HC G?FG= o ʢԤ씑2)c=+chX„@)d>6F]* bh +gӧ)s\ HvF;v]=ιWdFV$@h봉 މĪZ^mv.g՗U9/r>Uh;Ko +xs&g7.$7jq%zƉFuY~ RM2`mxH<κՍ͡"ɏNq8%4E=&yZ`qlX""IڏlL(-gХsXLO$̫OensO^oA֏/q7nU}ql/^~~Ĉ +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 214 +>> +stream +xuP0K̕^-u4t$.h?^ +0ty{r P0qjpW0 jɍ=3S&5uPz,#$ZZu%=}qGDN2VณQ_-AMB82\R'3[CQ<#J& sGʺGS^P?˪legw߳Ii$4l[|I_@ +endstream +endobj +121 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 876 +>> +stream +xڭVMo1W$o8jRdž^Mn?`, Iս̼y3;QB)zD 4I"$> ͈Qho3Ìqݲ>1k,ڙ0f΅g@+D2^ONrQpDq8$%T#AL!)Ĺ!LBb=#.>C7 I(N W>~U + 9%ڦD$!D)`&xpH4wM8o*`u@hq(f!Q(u`an#*` FbcծCqRqD)!p0}PSQm@MS'Y{qGKZ-'V$@$kg%Vdq 7=]$3SΩe9R?tU-Wakm#jQP%=׿W{{~8$ySoyXqܾC.FHXzݩ⮼0#`rV<9V\kX0w'.r\MX%m밚LZ,h>9gyAWw{MpzVۊ̐.q){ZqTyb7pi]_uW +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +x=!0 P)n2KHu CcʌY7L#[ogOTˏPHR^ ZnKrK(޽X +endstream +endobj +129 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 1032 +>> +stream +xڽWM6Whe1? E7E{lKкNbEI7^aI37oGZ€17rF@*H  5%_\A9zXc-(B]J\taa;:& %,M  ^FR(L)C `]w>[" G9歁9@Ҡ|%ohցAOûzHE@*x33`d.AɓzȎ%&FD Rpw21 dDgV$pLHG$?-43HP 0'A)0u;R E@>n0zG*mԥx,si@#L罬X,~ʫcW`nĪ0ӰrR` J`!Ȥl3m +'ZI} +>F.yMQ(-~~CC\4~ Ryn {EjUgrEWqJqd.J?|Ƽ3t&'QF\ +Ea~nH39klnboFٻBSy9Tۯn#A s !XP6 +nvUO.g +/,^e1+]awۙWhP *8caT mnkJS5fv*Ǐ0J؄iVi(XN+ {x,ڄuH._*VġB0^$tvG$~گ߃p^|wl ~qr[*\4HXp]Y\]p#I쌾Aچ­/5SKT>YQOw墒5J0ǃԔzL=yV0(968je?כLJ4]U1t9ٺ2:}ZVnS?1W&e?t8e^QWZK|i.@= _EVt +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 142 +>> +stream +xm? 0w?ōp\4r8RK^ N TF$JS`R ۓB> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1049 +>> +stream +xڽWM6W(19HRtSƹ4ZǛz*@~|>hYǥH g<KL._I J33lʸXs&\JL˜u/?g s"|c-]X(lSF2S9`!}Ev@2Bi*NTfy +ҁ0L:aADi/C1 Tz>fVA*egײO!J0Ht`{BzDaLJ7i" + HxkomML] ]zI5R XIʌ YfPz@ +Z(pGi%{c4e>U8Ĕ;3٨ B 8nhu uqNI,p 5>P`i +4gR''T3 S)}a֦Y7$mΠE1B ݁GznR{$Q#urG +r'9*^}^r^;c[c9m_qz19]u4xop .Y OOl*t?.z{X}UxWPݬ' =?4C;OM)o~sn?;+RTQPXO.) ۴f.*CZRGh$*`b'GU: 6@.j4R`BY<}7*ԉF̈Bdm5?mׯC[tUڽaQ>ʗ=OOQTx'UL1yd.vD?FGjTqMݠd$F[.䭗+HL.( oSX0eH4nL).Ԉ.'"].VTߗחp,C߯_6auއU$r9/ +tNs<]Fc}WR-)UzbdFy("_ǡE'on?靵i^~N +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F3 16 0 R +/F2 13 0 R +/F11 60 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 742 +>> +stream +xڝUMo0 W2Y+F=lXu5H6@Iy~(K8)Y$) =0_KfQ :Wbb~lJzZOm_o u9~y@O;lQ4:Ls< Nvݽqq16rj6O6oi!$z}<\7> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1065 +>> +stream +xWɎF+:7nAArKLX$ 4O} X]^*RJ# +_Ok$BG1 +a# chیf-{lnF8(BW&K"b{F R{"Ex\cD 0>2 0YrE贽\a=_x3I88`%q==YǛ&#lEr9LY4`À mC٧3sIi3/Z!.iL 'f=m ф. p=1j yo3 luGLZobR +35mޛd-{73Tm=)U;$ igеŽޜ(op&cD4,^jǡat8MŰ0]uS•B# Tu 6yvW0?uSЩ~DBHHVHFmEі87DC5QJAYFN]*PS}Cr '̭$H8>%k#(ú^L9(5ekPͧ/]qY`/pRAx{oUl/z/mg <+EX2ugƿuQ׋n1 +f s%/D ~qh5$` sFiw8ë׹uer{ J8')#p~̳\=A?!9,ߊSobB7KXl=! CՑV;Jċq>*8@}t]p$sy?׮faƝ&cE@V]c|}ANf۪51>[p1SK_^TM* +~6nqF?kH=XN0ǍkKgzʲZ +',,*cas|}_ݮdpvZ~xOk[1Y q?c}܉~f||k!r>~q~ +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 293 +>> +stream +x}R=o0+WeˍnNI!v-wbpS=zDNjΣ}aMnP +:8}̎tMJ_]049ǁXcum3ͩҖE(=,7̙*v +endstream +endobj +153 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 1049 +>> +stream +xW]o6}߯doyذt[eU (p,60%)Y4%9 X$=:)3'~&?.^+",?#ՄZɜ'˟̩g)_^7OD߃2dJre*2F1G4ɢ% +L!"Y0t+%TsܜlaFIIP&5Z,M_T>өϛey +Ǻ=;B?c6KJ{LId +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 213 +>> +stream +xu10wō%J{Ж:h1H\Ԉ&x)a}R\-],FjF!@bMR(NQ$)WMz__N2Iq9<bďn> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 812 +>> +stream +xڭVMO1Wvw\BKД"Rf׻738'\ə"B171YMqX2r9rL=WS)'W3C<&.ӑ˜2g@*Idm a@B48%dJ$!6IW7D2J@t*4xL3=b59G'JGuP$ % ]R:@LIB1<$3.3HtKT[b0OCWb@#%f>m(/a]|ٵ y*)B*;f]3-*ErWw _0 Af(v }dL[X5Rv8ⶖܷВ%R֛Ũ'pz4vذ- ʬsrj/P]b2Ÿ2-݂549[)81i{~x nUl! +ǫy]YvL5^a.KF> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 492 +>> +stream +xڵUo0~_v#0RiҲx(D5>}#/"!!hGwikD9R($ %EXP( frНyYc.H(ZzgAЛFqm\ZFŠ+"S*HqRoĔ  K7 /XnosLc ġ 'Ng3B};4ob ds_Y/;Ee~y)VK9eXY*S> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 720 +>> +stream +xڅUN1+!#V.K)bSR5~d3!t5}||?٥"\TdVjKn&\Us'7v0Tu;zvio<(W~$=- 0xmVw ^FH-OAlО }P7ʆcj40GиPKrFEja$H 4b ƗDF R8TF'K xc(@džb@=$DýRDwwd 0|HDgPPH<5qӪ^[o owiiwۿWOqKp.{C:G8et1u҆Z7LA]W؃Ƽv"vFѴ C{8#լ}:/fE".KPb/)?Rz(qhyX]Th&M @$z_@qӃŰCbhUu.el*q7eta tJӡr\vSZ5z_6>.^jڶ{4|m?gM]T &vrtjku.UEEmi^r5r;'/H͔WL`,>5G +<}X#yӾ:m_) =s]kJON-YnwkŁ +endstream +endobj +173 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 977 +>> +stream +xڵWMo7W(~ !A =6X#@ [@rjUp3|H!=kObQ3Aiάgc_Nr)LosJL-~},@q EDk!V"(9:3A5aLw zV +1*rXf'Ć,8)) $C+};M$IR7 T ݡO +:*,K3 60 $Ia❄JY\b_PC~a/bHJIɮU0L9 Bg ˉКj^I;}B&6MR *@4K62X08aJBTU qToT:b"Z w2izGj.n𢦝NO%ucl hkGՔB4M:=:qQ>6ls׏U $e 5Diy;H+B]ɲ.R|TA.#jkI:ڑ(=&OybfHb\//?G/,@Xץd`F Gίv7j&yeMQ{W>_J_5!WmXw$0-1∳ z?Cz7mz~Y=> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 777 +>> +stream +xŕKo1| +_6ʑ M6 zwӂ^x?ۄc;f6>W+̾jBU͈r.tqů'覜]> MXV!q ڨ\V*c_n&9D 'D œl<,XEXR5HQ0jZ( )) 10В0uE.#nZ5B0$EYnax|qtS8^pxIGn(EQ_Y2 +endstream +endobj +181 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 1007 +>> +stream +xڵWMo6W('K36Kl n.I}PċևPgo޼:L +)Kˏfl aiv?|8#|ڐnieA}hWš[6!*(a4ZlR?e:R``F`أlz 'f2a{[ֳֽBvfG,i7aE +_ zd0 +iܫ.fMhixNj ~osN8!d^xǬ.蘷M'"z%^4"A =H'v^_tć"q=Fa#Z| +Get +TtPi2Q=_p\4_Ψs%41tW+LR * +*$, i//32J87(<<^0$r[# )8ϰtfcsg7<>M2Ĺ4mL(!NFm4|ZGh' pNotzc΄сЊRv]_SsjF)kv}] a7%!ۯy ]͔diTmW>>þUusvFD%G2uu,xi+٤aAIB0ھőduɩi`itC98\A/,F7( /M63p|y>|JOQwB +)efa\ + +*^u}Y|Io6 +TrһZ!!HdI*!Z:·hY^ Y˫J7ۺwwB-ҍU&SH/I i}dgxoJKYK8RՐ :dfWJƟKw#M +endstream +endobj +185 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 582 +>> +stream +xڵV]o0}WRͩ#TMcm PP"j;=|aHck{M;WeOJ|5.n aVWd$Pw8(3ĔGnu3H]>iebjn^aD" `2=Z$CN0LӺcOJ3L~KTdoߏ$opքȎKDD7v<)e6{62'I ݅Tɝ08ZEᖔX7A kjn-`Fiã B|"C "uFE]ܤ/unHENߨS"P;Qm/ڒ]/L+jF ؎ ž`0Pwݻ|\b>-oq曩 O D~cζo;mԄ =P>)wKw3R<fB\SP8_ +endstream +endobj +189 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 812 +>> +stream +xڭUMo1W!7IziH4T;ְ,Ipqf潱nXZ>fRlY 0n=X&.{hzjD0}juxnY`cE֦MUj?DkboE([ 5Ӑ9-:"v +@BԎ{GM=x?h/AZ;]PCX(}@bKPgΟDOS8,Y9'rwPhgfA5ēl5kI܌D"ͻƹ|UBHREaiovQ3Ѹl|췇6Vu|Iulv^իkƈw52v֋&o +WL) +endstream +endobj +193 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 520 +>> +stream +xVMo0)1njC.DQVe:vBCЪR)vc{fC +;M#*$I( ACwZO;ipLChLA>7* Ҁq!a $?F@Hv#. +m~tuܷ`7ml,P6@"Jy,#/'8b]u@=b$vz6}~s ƏAn,*맧|q6*#e"[(r2x6Ħ WJ(%-lKhvVc +0F[k;pε3@Fuy-'Y#?|g}~ye +['Wg2afkdC6l_E4ѭQ,U GFFWom/A4u/8aD \^钌e˽k~Z5c:^uA6K2+;#] *%Hi;[D" +:1aΒ/~; +endstream +endobj +197 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 220 +>> +stream +xmk@+RXP!S$IV+4׺ixo 00WؘUD4R`rМj`^vq%QC_XOCTNfɉ+VLZ`ށrN#9]xmv|4s>޻?!r%ٓpIFحQ@Ʈ&}nnl[n44{Puby.UT +endstream +endobj +201 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 851 +>> +stream +xڭUMO@W1dw;R.Uj%)EJkqB.&ޙ73Y3؇\1@*6ɌYf/3!P.Ք”ëɹa 9t +:@SX ٖ1ii +C4UXd!9*Q:ĆK7LuMlN<( +3dFw7C-i5 b,BF1*Bwec?m~? )ENA=ncoctLώC Sp<č(ߒj!<(ETTJr^ZC٤6k׮a %8WqmX56q:>yJC +4mI!1ewUc\`/]C=I\v72_E]4"J&$!*aBPp ʵU KiA0wm$;EQչJn ^WXWfi:2i eYvQ;kb:{ZlU>؎ +='E>|%%څ} +s8C$<gQvIAS|⩸)2Sձ!}ut棟gRUHM@m@bEsȕ>xnfH?)W,hu3LLpDb\㸸|Zddy!6v!t='г'##%:nr9EXẆ=ܠ~tG8/j-aߩ="6/Xy-:ucy$sI+]} +endstream +endobj +205 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 580 +>> +stream +xVM0W,uH\ڲU{5=DHK'|9V+HLLoA$ C@KD",Y?}z}Ȗ;߉W$je- vw8/f]i/\G) -f܉)Z{->f)! \ce+X(av=S"tdq3B9[ڒ%f5gO·C\K𐟎?4ʺv0дr~3v&noL +q(X&lj, R{1iK-uڭ$&+& mC*>$\]J +0Y\';fI+,WqqqWa9}Cʛ)9R9VhK^LpC2dgH֔h 6vD&/EƘh-732Î'6jiW>! +,)TW=JV JvzӘiNdeOJNUuaҠ>ċ~SG&RA*d)stEjH\Yf +endstream +endobj +209 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 213 +>> +stream +xm0 Ewc:8$%@L >ԂTB0tѵe`1H]06PI@s9Tn CKjBGͥȜ<''6Vz{9 {kDC۔̪HˆȥdGj&aF3 b\NܔK~Rd6Y7ڪ+4~lP|;!6'yAU +endstream +endobj +213 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 935 +>> +stream +xڽVMo7W(Y~ %SF4kWu (vwHvj\$хg#)&@v3{߾LjPbV3[ֱ+k.%{aGi:۷6(amZGNJE}NsT xf \5 2%>>UdÃS=FZD +12՞oFD}>II'E"H@ٟPBRF(cBoOET`4Bp1À LIRhoނTwNB62z J13ACPHJv1d"IװHHPNRؼI5TjsG4K62X0qƔzEo_*ިtd}l&׻ NB+à *Z" 8 U8MiW&%F׎XGqC1E5š5/bVM+ ]IDS6!N!m~XX-,n +n㺸q1~@0-~ZsC]}<=3XwχPkӷm]_5Y69C>h(HE略8֙cS|,y<視N +#H2DӸS&t4K.61\~H\umChO80χ]#q|~:|B/WpUi49pDes4ئZdjMє曓ᾇ䰴 &s qfknvwY%}ő~bitVN6kf_=Syg3jaHC xɓG+wzucӿL +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F3 16 0 R +/F2 13 0 R +/F11 60 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 538 +>> +stream +xVK0WN+6FҖ#ͭ!/DTM};arv |!hl}#*$I( AC =ӟ/Ď Och,Q6w6 LFٝ1.n#P9I \(sfQC[f6(@"Jn,#/'8bM zV989]鿧Woχǝ.&eYMR*RNpl拊'j lSKl*q孄dl DV X x1Ʉ,j?p!ASMPUp^XI3c.@ZML.ה Lj콆}4$ w/hdX +bENȕ%xZiSwϹwX'ԠOxJu /H7NmQqYm67BeFM* /vlM7h[lFJ^,%3翝5n=|H3i8q2WIB +endstream +endobj +221 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 798 +>> +stream +xڥVn0+x) 7ᘛӺq/s1 @?ChKI4",z3g€12'30_qE8M&p0PɧEYѣBカr,lUX뻰=OǸ;ߕev0B9^òڢͷ< `~ޤ<7y6촇k@Ber〉||\lf]Uxu"\T*ZsF)j G77v0x0GzrBhr Bȳ>`8oX0NqdSF0 +V%hEͫar HϱJ_D0!wIܑZSǍ%=wρHLȪ*MXUoU|R.4XC(dJL8ε¨! K*  )M,5ИGF s>sp:yn!.xH'39llbq@eP2 +ƆоFYp.Jp x]Zd>O~39ڎӧ~b_[}|/y/scӤDR)pB_'P.9A~> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 988 +>> +stream +xڭKo7(%N{yyբ=&Z%H +TɾNk0Q"Xدa x5Mkum׽Go2+WwC.xL!F[\vr^eQ9PMU6|w[OW7;CU(i!J]Fs|/o) fyy󀃈^ǒIp[YigJЦ֮3, ( oxԖQPzf?7_px~Kej-7eW* 7n0+MzKkN1멾V_'Iy&I)*Ò<|8SZ;,paT\ғʂF.c$; '|ZdMRwrCIfT1P{f]©^_!S;>&uG*tҤN6kBÞUBУqi]̕_1J< +endstream +endobj +229 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 560 +>> +stream +xVM0W 6kclp\fVz@ $ʦ*ǐa`%Rƌg3oO J(E /,B(ҟ(f$fKNb=>q#/{)V>\xr-ɾ=݊CqE1M!Qz%!ߝob6g^e/ʀ?χ˼ETa].GBI_Z(nj`I`xgsE,tUQAG1Eq]'GN8n?Vluo?]Eis\FnT"V߯lX]$bEF +JH%cOz6z0e$ )9fںlC3Z36LE= fҞ\ݶi54QQq%%aj 0s& TqLAiw$M0 bqemw5bI- 7I3l}":ZZp%$`0\lA +_yVtgk%l0!I눊$ xE"mW +. +endstream +endobj +233 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 388 +>> +stream +xڭT]O }Wb@R(K|c3\ߜd[Mmh_.{8\cPneI  Hd~ |;$ɯ$$ȢE$q@,1iuDi4܂ I eQXW0ztmK1NyK\ i;U7]@׷V (7Y5{?JJѝ1A6߽GF8 ¾\}o;L~u L?嚿MWúj[o{S4EJ' &ϯ{f]m]+5>iUi>7"oj!՚dv/8ʅJRSbTNO#6 +endstream +endobj +237 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 1163 +>> +stream +xWKo6W(Y!MߋNPҍk`kU)QKVy|3߈&qNnH|@_RD(&$F0 5K߿)@Tv0ev+C<&] c_[ V0VC b0r%Z!YExD3ndE@z*KL30%F&"":L(ͻ6ߚ)TR2-s؅`,1ێ'^1jL!S3z$nDŽF`: +&HSL) jiAк. u1\6n:}VM1WvSN09lh랕qOIUUب q2B ̧TĸP$nfVL9C=}V1UHŌ@`v aK{մ '9O(Gͨ{|E 3B3l:MV怜x^쮚L8}#>|Xh>Sz*?I,M=Z H#N{QG+v$aE[ o(w"TuSKuIݪ/ MBwXC?; +endstream +endobj +241 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 530 +>> +stream +xV;o0+8R0(M@vlECq $ayPP$eײh+iZD^> cunpc-AHX CGH%Jr(~ BbUEHPi(y'LkXl06dYdX`;"Y1rǹmݘ5vﵪbAdA)_J(˺8wz)j*k-wsͧ!eg?s2s@/P4NP(B1v;曀JygT6IY=dQ p&{9Z!|K 'qAe$Tv.MƬs-l4i;_h* h̭h~f:u:\N[NUSϑdI4֍bmܳVgꨳ +(HOf^rjy||q*ܲ_#4 }+ „&C MhI]/ekSxMg62Nu'{~y0% +endstream +endobj +245 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 186 +>> +stream +xu?@ w?E#Gw6qp@05,Lk߯/)$rS΀U*@e@<D;4s,tZ \ P)f&׻YtI'y[FOth^WvHڪΛ,'},_ys|d +FB"7_}0Ii +endstream +endobj +249 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 1183 +>> +stream +xWKo7WB8"Nl lR%1:l*!Sp ÙٙoR3gȏEbR'bP㘱d +TAz'oQMyUycge:0&tn0n;cU8XW@42Dґ 'bgɬ W;A (wOb~K"N :6 !:ZyHYY"} &U/jhD0{m" X5B30'yZyo>{ǔY1z1a +S)ŕ1,)CdR4nAv.cͧ*!V|eA/ :AXࠜ堔h萐J5dl@e˴|T> +b'0A`\3Xd,,I0XFI,y"`=_ɬ `~_d4Ǡf 4+/xU_P$+GFA8w7K%QlA͸1G-=QS/v=_jl`1\/&(N7C30`T6!\cqL2+PPCr&< M޶ּ7wχq_MU/e1דB +:F՚6zڸ{j%yê`T\^M5G:*$U/Na)Ti-걺+W |qw(DkN-i+H1?Y]oSf|E`Ni]-ٍ->|5l 0-W_G|Z]CYAkjdFS]玼 qjH"Uu)-s4&Iax1|3̔مS¯AH,(S*>'*.OU|tk,+Jy}0/!E9 +endstream +endobj +253 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 417 +>> +stream +xUn X`!RVMvlERK)_lp䴶P㎻{wO` ֠>,2+ " DoIqH` dFS`|陇8p^(mnk F^m!4%[rI/pSY 9l }.2R> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 1441 +>> +stream +xXKo6W\r6&E{lK ԀnΐDH^$Qy| L +);.?.v SFh.2 g߿hnR`9h7//~=s,hT8 jjcѽ/b`VDו/c9鬨 toL(gZ0Ȟ^ RJB><_e("BJڤ-E!{q +!WAF1)%00'' +\dF $CN(x +0M|/1 8pXy2QKLBv˜~CW e @"s"Of|(f#BrD2R mYbt%C(_;}_g%dCDd;QA0XO$1;*\Ua9[8ԕNK@qHj};kA029[ΛT[MYljP{!Iz`>+1s*@W} FRP*kLjxphX$*LFip3}^^>Duq[KTwSnSA ^73WAtR^m?]qH!LjEXD*_)/j 0k/W8D/nQ3p3x;P_t'-}:C) ¦D|u'#)A @WIMjCcelG#~eQr4栄_2p\: U'/8(u5pJ 77ۯ4loXw缰>nBxЗ8ϛ! qOf g?`V,f=`~z8SMnĈq(3f :.84Mt∖pYXH7 Zt4 ;n$"{t58PC@4īUVǛ\jaLj+${'T/j9FRSFOL5!/E!g>:n6U Ey~[߶O.]}s|g-fv~u?c;QcU0.fo^[9ZYQ Nܖ"4ͧ`v<__Vg= +VR +w<7tE7;ojO.[@,-a>!֚Z*;xNWZ;ANv&6DUyW$xw]pa1w#l5&vrg4v:3$\dv^\_pMpsyGj!GB2Z7i_s_'Wz~M{v<6*޾f9;wvWnvEt/PdY+LLٵV7d_eSHI J/(L3&/n4e#._oZd C|@MQ` +endstream +endobj +261 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F3 16 0 R +/F2 13 0 R +/F11 60 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 633 +>> +stream +xڭM09&DNiV)AY pJNlBL].;O"a-#}G:2>FdDHLh!F{P".cZ&0_s-"$ت:U +˶'HPOf_jY톶O:#e&m#oL]-ʸMelFͨۃeFeԀ=m9 4\*@+&{M\A% D<(L Sҝv~h Mٸ<4]x.R7mZ8Az\vF9ƛ(&&CA@!@O  234f 0o=H moze-mV[ (,mA +#RG֑L*4ej!ެZiWOtԄg^,4Wպ7σKMj.q[] j -lҟK pZ+~mLPo oF"V/k%ltt7!i.(痄f'&|̵p֏j ^on\O7 Y6U~ώ׈Y Ίg2'3! +endstream +endobj +265 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 439 +>> +stream +xڕTn0+| BƏP*RTR K{v @1є64Kc-l Jѹ +#BhˢAU] I?> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 863 +>> +stream +xVKo1+|AzەzQ!\ =JHiZA,?V^{|m&@[jyF3Ԡ4[~cƝD|v)1`Go, lU015s6]TT`4B]_dJF $3 Jj&pH8Ia@{[?{uRNH E\fKbI_L +.-bLZJ5[1шhcܫ*/N~dr >!>G8xɸ:\m4\]E]:lnhۯߔm#_^ݯWEI7UQQuXWvn<[(ÍsB]Ivdup@v4! +*_uY=Q8U˥:ns[y,9Nb: 4GγD +endstream +endobj +273 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 1235 +>> +stream +xWMs6WHE ,=q:ب *g\ו=Su? $Ad7LuE`}"qN>|9{PL*D`Vjl_]Q!@WŇs4Sޮ>l~:{kgބ58tpat\kkW!V*[78ƁhѢ%Z[ӢB3W¤pM*L 8g#,iI `4{%"bD 'e:Y8K Fmo)T8L ˑYi=üM&Ɍz@v@FX _dNa̫ԽgɔFЅ2@!Člfe`ѼĈ_Lzŀ9[m7Gt#05r';:/ +ǔj\aV7p%nd p (E +k1[-f2I=6Aau&d.8RO,1⺑X f\A2*4-M}¸eq2ĆY!n +N|ZQ%Dŧa6Hϲx3mcTRQ[{T`&ٷB.XU= e{Z` Rd( +;ھ^١`\gPhT8ب#3&*{8ˬ_<|u|Ub;D% ׆iX"0( J43U#x%PxBeϪJAx n'#9שf])>,,_BSAŮs׫f4} k'Q@;Xi/nw㶮i]Ϛzu$3iI.-ּZ^QAFWzЕ)K{ -YuCE_{t^ pNqk08YT6<6wuEfmnŸcU)d;DW#mMNYP+nWݹ¼^Q"D<|~{rw'ymw;cv16fkq~AG=~koW@+W*,n>+)].h(9aBJ=GL -uC!!*`!w/L'Rb:дW{| 5b)e& [ +endstream +endobj +277 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 483 +>> +stream +xV;o0+8J0((>LZ)ڱVu` %5FA{$%[NI }w=xacx|W )" Ph TBKR}Q- 0V_ #0_eVgeIxSe'l^qUf 7ݾ _csQ`7d{k5A`&jb C.NXte0&pH?8օXsRj}Ky':#t]=P1GSNJ{_ѶudܬCd{C<GWqpJxPO|s`"=箦> 6)}?W?>-Il$s9nxy;D'F3j{B/}aF~ ǭm1!5]͉L[|XL6M- .3/ Be!病ze*O?< U'XHjT +endstream +endobj +281 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 1172 +>> +stream +xWKo6W(yCNP܍k`kUZQuֹ$hE}h/+EbRGbP㘱d +\M].LyW[vϼ gp˜xdWL: ѻqh%%_L"QEH@j?j`G}ҕ āVvL\f`fD+si0>JGFe]:t^ +8vqp59+]Uq7ݘ׹wf_Swf;܌djM ru84wۛ}T fSh'>a +muЕ) p^hV\sORus0)p:;\NjD;eIA|Ma?&P4GLI95}QL'a[bĻQ2weWG Jvڅ0E#Dm2F3_Q4>Ms22K8E +'ઽowZ5tȇ=+$jvne6aS4 'Hĩ:mO疉I#g'2wmPK&C~Z$l} Θc Fg06jGC]?m +endstream +endobj +285 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 537 +>> +stream +xVMo0 WhÐ#a7\NP%;Im+IۭE}%GDv>g+ʑD R4Vab%PW wD4C],,ČҮiu`<>T(A A ܮy;3ZmM +*20(fT0wy*mWMZnV]v%~:/JEt4oJ35a_W]'5pADm<YY' qt.EMR(E 2U| + bކ6iJ\5;y-> `:hǠIM{þb3ee UxX& +H^팁;̼uHFR]ϹN'Z9,zurܮnnj*'VX)~cO8? ;?*U5߆6*YbR7!6>mvQ!T8M=Bۻه 4l +endstream +endobj +289 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 185 +>> +stream +xu10wō%Z:hC%.H~aazw@ +Fƥ +Ha$p!pp)aZ6 1p%^O Ty 'E1 -zFO:\e̽Eߴ:+Nqŋ1-WWH"7 ͯDHn,I\ +endstream +endobj +293 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 1193 +>> +stream +xWNd7+Dž]~E&J3M3A"R:} 21.N:6L KÏ[ͤ3azm°RY}Le{hLtamk6ػ6lSPzp)2A% +63q1ANc ,S|Pk F'ƀdy6 򏆜o1<\: V1<+ +}rdd27e8f!_ +W5w&P sdCF*'Dd$edjpi +ɏ)5uZ>PH \B=| ? 3߶3ҵ9m٤b Ŕʂx`#L0b*0I(v"#[(pxpUGɁO-A0Q",S"̴thI~7noɘt +i[ZAۥ:Bh,X'he6wJfȆ͗iYdjRϰZZʕrL+)B=INB%U1vvLѡF W`WF p'ނ{%QQI QDE]'*m"G?U̵D Ɨ'%]Ֆ6%u2&T[&o:43(d~z*NHr/;<jYk|I8dasr$bR-*0"7FW q%bfxWhu %}W7~ Rt/:!?9W)=u}v~}r_?RxZW7j= ao3{?3UF*Ŵ]ICuU=\ M4XgGy)jU:gXZ׏-Y ~bZ(Ou.`4-4S]1t`Pza1nwsObw{xO|70϶->ɳ%bIMOK%Vj} x#eW`rk.;Meesm/S +endstream +endobj +297 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 414 +>> +stream +xU=o0+>* ,J_l +L0f>F(tnџ".TnE͍:['zn^M t#M1].AŠ,Cd +v9Z3r5'C99ESg>O*#D0f +3V|5ژ4Sݴk&C5>=2R#շ[z*Z'B;#|Ɲ;zPM22$g@/k5㽫8Ϸ9f*?"5TK3`M|סMqڔզ1mԦjsNZҝ +4.$g| +endstream +endobj +301 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 1438 +>> +stream +xXKo7W(Y!EFCѤh{iWI k +w\RPԀ]]K73RO,}~8[2L ;Ȝ2pv+vV;E1+/WE]aIsoY@AVШg)"fEivo[+#{0jl&Ӷ{L z3DʰX) 4V {P&!B> "IJXTgrxjcPR kk s"zEfBRaҌwSi;ކ)-T*Pi'ZI -qePǰ$9'B~1#@1)=$#b ++VeERO|:*!K""ܑ +҅z`,H X&Q +űt"E WKAZ +П$1b!q&zBqӖDVp5pj <$i{sE>aeGV8QqUoYQǦs +eM, .JXw'#:D;sSKTwϨ#?1z?wU*xN] ڭհͧ(|bF&H.b@ 21sfćeN ڗ)^p>-_|\rB@<0c"-}0) ¦D|ж"#)rհCf``j 94Y`B2(rNsPB2]\T%/.(ضr}RKH?]zQMz ,uK 3F9,LhGݐ3F.]Rm3͜Y3GOg.:z쌪ȣd4VkEqa > +hLvSsEsn2 A8 dCr!-jL$G+T Aj"Y m)jt%δ"2wz-EuɻowiN_\\n?]7bN5>پ_cBrv&.V|VK+3Mrd !%}˺֧Jt֕'o6_ O%ݎx ku9\g56زpȜ\[ࡸ\7 ۳į >埩il ! e݊ȌN_뵮;jhN'7]ߦěYnkjP֝>H 0^AqB&47Vrj` p$hϪpjDɃB VKd􇗲6M<*]~/׭ +endstream +endobj +305 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F3 16 0 R +/F2 13 0 R +/F11 60 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 639 +>> +stream +xڭo0+rLwb:NqmA"Wߋ@ +q +j~{m`,|-(AFH$AOЯ iA [gDH+gPzFih]#$'f[TjvbOZ#e"s#T\ft|g,e#=ehR]F Ȍ=X)PFKybB+H*n#_NIdP"Ip>Q믬43kLwiyZSvͲ<㨅#v]SR7:#oiVy1̹gMSNH!g*H='|NwZٌY#Z u!QSC_!TGkBe+n#31[Z1&7/NlnWI:vmЮ+RvZYK[TJ8Ys{ap~%ge7kPi| + ] מJaraud,Ϧ]  +W3Cl 趧 > utH?O՞5">;Ym^\s޵yzUZS*(}`?rD$ JF&3)H7 +endstream +endobj +309 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 444 +>> +stream +xڕT=O0*+FbAF0TH !H\M,q|w;BJ`c7x Epze^^1UO|6 \>WL2TRPM涾$Ht(絕7piͶ t{Ԗ}Au&lʃ7vq%Ҫ%>cv RǢnRѕ&[J D\eůН'eU\m9 B{RZ<ljw ovps6sG}`02 +h|&r ,AN^s 碳爧ʄꉛ jM{gl5CoT_RYS\З`x9JD&|zXz OTʺ ;Er*',K +endstream +endobj +313 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 852 +>> +stream +xڵVKo0+|AzەzB9rKREq^<rH{7 ]y^̏4C Jgfai@d 3(M?84stfY`&I*jYEF3! 9ixIb!uZ CiG. hx^dC իrd@JP./fq %;2)@02i (߰w FX ^59Wɤ5eD8yYm1 h@"S/=1 e oE,H9ASz3 +~eP )i^ +$PZСòP P2*&#{dkS(L0-t^^ΧՉH&Ľr F6~JHSI5Eүے#°Ոe(Gtjؐ Mu ]Dh}ST]T:gB /A\HE_=p2-,drg*6@t쨂@gg[R}=ܺ}u'+h`0}{9Z׎lIH':0FuM;p ldirY.N`itߐh"[.nÌʛZ$zQ"D86iyz}/e^=֣zz([/1[$n.gQTGbvTV9ۓ3*8gnQH9:v$up@jsk0vL. +$3{.c:֣BRP̿/k׫84#ˇCt|lXl\io6OO~~ˋ +endstream +endobj +317 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 1231 +>> +stream +xWKo6 WY+"f;ttv M$@] ?3Ӣs")GJf ;y(.}fլݏ u>a{lhh[W\+V*[V68.iQB4lMeȶ\9VEa: rijŎPRBp d24Kٿ߲Fx3Q>&O;F8yrCQ۸{3 V8y;d[fuLr3ݠb8)*Z~Pܹ9I{\Ԅ:(( zǭ`!)'>梹P)cLZDNNЭGѽ)B&g)b+6c5LgKGf +3%*Y"xԘY+ cVhlK#B${B$Q.d;t`$ ڀx%91|̘Ȁ&U +Ыm%i \fApJFeg .`Ia,ݨFwд8Kk)1} ?:%y`7WFü/ +U21]~ؔ>}EtT("ny]=*ս]d +Q-*cƆ%@w7Cr{VRWWpz^N|./$moJm ]ƖbXҔb٭Q[;:$Z"Y +#"%_WW򤮮p^ix*/W<**Bke_ҕ ?)j +endstream +endobj +321 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F12 63 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 499 +>> +stream +xVMO0+|LT9V&8BndiHxiƤI%yGA$##sʐδ@4a~`|bʄ։I Li^.yR&y5ZHf6äO +XR<\n׏u5_~J_F3Mڧ^T]|1i8'Y`Q+m5D(.qA?^`y!v,8)! D);e ]?NQa-`NO˅ŴOqӖ?@8qH4?&dֿiN{챹PbcC)iPu,I8kn ?ą<6cј {1[ue6NRW]dI剃?nColI Y=eevyXnWU2$>$n%PI;D*p) ?KPf"SjΔrr- j +endstream +endobj +325 0 obj +<< +/F14 71 0 R +/F3 16 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length 1117 +>> +stream +xWKo7WR@19|- 䐠N(GMXa +wH܇$[q9oOL3٫ko$8ɸEpM~0zqfRAGi xBJhF+3B%%S0Mv'٬DP,K2>Gbe:.-HFbXndldZ&UE<0=*Ȯ'f14 +gKVw[BQ#Y4C>АJO.\s} d)$I>Z0J,xD 8AƜ$5T)T`X5"6iaXQ)`QUZ B(\l1[$1l'5R -8u&Ҷn9E)^N^9 SD+FΧW)¢8战 =|슩#ÃCm"YC-hCmAVC+ngUη2W<ژFGxFfրsP1\KSnDlH˺:(6̬(1l44_T*DGT鉽`G-Gshr{F7 }rT{ HzpBX*S>l0r! 7zZg>rՏt(B +o}[iy3[z^/MZ-VY%aSgW/|:|6Ct|7:{#6qssf̵.)KR?Bdbُ4HRXiOMAs>!OH#|FRBU2j&׻fC&7`%Yi҅I>LH=NI$n֛>ɢ9m<9arEsE Yt 2@w+`c |:ɱi`ՀX<*HI:F}UIR΃I:AWOM$$*9doQ16nU C*NUlϱT~2ì*V8*Hg#XVbU VU/VMEj q**OPe2n QP AFeO0*2*Q.2%OEAJE)}BJeBb3*捱`쳾? [U8 +endstream +endobj +329 0 obj +<< +/F14 71 0 R +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F9 42 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F10 53 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +>> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 329 0 R +>> +endobj +332 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +335 0 obj +<< +/Encoding 332 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 334 0 R +/BaseFont/AYETLX+CMR5 +/FirstChar 33 +/LastChar 196 +/Widths[402.8 680.6 1097.2 680.6 1097.2 1027.8 402.8 541.7 541.7 680.6 1027.8 402.8 +472.2 402.8 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 402.8 +402.8 1027.8 1027.8 1027.8 645.8 1027.8 980.6 934.7 958.3 1004.2 900 865.3 1033.4 +980.6 494.5 691.7 1015.3 830.6 1188.9 980.6 1027.8 900 1027.8 969.5 750 958.3 980.6 +980.6 1327.8 980.6 980.6 819.5 402.8 680.6 402.8 680.6 402.8 402.8 680.6 750 611.1 +750 611.1 437.5 680.6 750 402.8 437.5 715.3 402.8 1097.2 750 680.6 750 715.3 541.7 +548.6 541.7 750 715.3 958.3 715.3 715.3 611.1 680.6 1361.1 680.6 680.6 680.6 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 830.6 1097.2 1027.8 +911.1 888.9 980.6 958.3 1027.8 958.3 1027.8 0 0 958.3 680.6 680.6 402.8 402.8 645.8 +402.8 437.5 680.6 680.6 680.6 680.6 680.6 980.6 611.1 680.6 958.3 1027.8 680.6 1177.8 +1316.7 1027.8 402.8 680.6] +>> +endobj +336 0 obj +<< +/Filter[/FlateDecode] +/Length 1139 +>> +stream +xڽVrF+HhEU>$9!ĴF"$Xd.;au`B +/wQ@G(`yA)$՟7*Z,}˿р1,eCm1 -*(VG) =`I54IG.˴(ı6cnT T*P*ĔzTEQ 0c0 M,lsSXPI11i8 ʱ<DbB&-f G@}<1ȟ9(䄿i 9G̷ {T@%0a QfB1Rx +,@Q + z-.Ҥ,tYD%{D`kG N0h3 ' #Es(Hu^0R^ +kGsטdaGRy3aum ̱O;fht5XE-`V 1":lwM*a6bZJ'@P! Fȇy0 x9#ʫz֎eh`~b$csY$dV/۲= +Zy!~>l*<6/&E]ӕA&ٽ& 2}a"D? } +rij5~Dz}PCOsZiPR 4.:M}#-Eȟ AҐ쯦j %>^Clv!?eQQKj:K6LLE~(WLYX.)0K4;ꤰU)V=_(rm*{ĄQʶꢨy\mpqxq/]d>'>6j᫰4Iz8Z×Lҋ / u-an7g۸E>j)WgqouW_Uumҧ(a$pW OaGE.8 묈V` -KZ" OVCLB5&BY;)|YTв RK@}A;~bq%l&.h#]}ٗjV]pbO;q730=O묺7̮'vyL4r^M;s' +endstream +endobj +337 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F9 42 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F10 53 0 R +/F7 35 0 R +/F8 38 0 R +/F15 335 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +331 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 337 0 R +>> +endobj +340 0 obj +<< +/Filter[/FlateDecode] +/Length 733 +>> +stream +xVKs0W9[_NN{0CA`a< 2#Ksi'j>O S8V|r>NC'ؙ,$̡1ș RͥKÔg%BFV h|FhZTz'[oJZk]VmrYLjYh`,A\ +˹4?'_p/ /òk@,#~%셭PMjRԨ}ؖ +qyljhϥ3݅p. |f/8c]b[|.uF6grr!ągp)9lUʔE1,!D^'Z⽂keQ*{asAxړWzS㢽2 niN9tZb#>ZJkɶl0{چ^I؋Yw<tNY?Tv+D-;w +ekЄ6 +;%!> +endobj +339 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 341 0 R +>> +endobj +344 0 obj +<< +/Filter[/FlateDecode] +/Length 650 +>> +stream +xUQo0~߯ 9Ď$HbLk'A&MZ@$HTsr$ :i/ >|5C7 mã<\ujSݶ4o DMj&6M*)L6Qƻt֦4$dnQA6{_;.;Y9[3reb[Rtl_8Yb)gJ +'4DŽ.TI[B\zYn->M`čC[h#v#hI1rsՋpu0ahE^!s,X}u1(eWmKdzaPwF˨a .l:Iq~0K|6Z,}6g^eT˱sI;E0ù"D%\Pљ#l.U!{>olxOǐUR; ǕYMu}aX<}LL3HƆS OJX +endstream +endobj +345 0 obj +<< +/F3 16 0 R +/F11 60 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +343 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 345 0 R +>> +endobj +348 0 obj +<< +/Filter[/FlateDecode] +/Length 1638 +>> +stream +xXK6WR@F8|jHѤMS4Nū[?$@$g|f_O2f&@0٭|ufhʭB~\ U+lIW+?mh| +JW۳_KVHpVxߑ$yZzQH(]EΫI6VxZQ?L-\h3E-wr5#.n.H/vt +YFo ieL/!)"('|$9' T=EkA7UhZP 2Eb_5pE53?XfU2ɽLme[C3 D0c[g2I@If\uLEK(NET~PzH}$N0D t`J<Ѭ0$&ID fA4 +P9VC mD4P(N#q#\D)(RD Zu%4g0y \7NN&x{NE`dscLg c`0S>8bH`@qMBSt?b$&Yf#?NfXٳpOoG-vyIT3Qq݁Ϟ`ǎ +"./:,f}Q>{ѓf}=PU %  x4Рaq޷ϯ~8+Wb1ݶ?Իi4_mur9鳰=t2lY=&3e +W +ANN<`W8X-unqr4ˏ _otM'|>AL:^e}N?V4}F귙W^~ŀd./2(a&=G'=V%6l*' ^xWO4=@:_1kPq@O>p .Q#Bxh#QC)RFC݅75A1Kfbq{S y:m}kh +qg2u}.է+8 !Eon;(Afh$Ɗ$qiOP!jf6%ě`Ul=1BG P%DAFhH$[M.Y.c۱Hٳ=;n':tkbjhX]໡ l@uOL %;J0sw!c#=}u> aX-1QpiKb>WQlo{2#{g6p%ϭ㹢{>6T/:VY%ͣ&WV)گ'+vmnk);ua?RJ%M9VII@wT#uTo9"12'm}"mI+o Z(lNVGbu_Eܺwdpg`LkCP +v-?{=zP=0C컇߻˻3k~l^/FKmSo +endstream +endobj +349 0 obj +<< +/F3 16 0 R +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F9 42 0 R +/F2 13 0 R +/F11 60 0 R +/F10 53 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +347 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 349 0 R +>> +endobj +352 0 obj +<< +/Filter[/FlateDecode] +/Length 1183 +>> +stream +xWMo7WR@496-Q/ͦQ%X..Kdn +d3μy"qN>+EbR{bP㘱dtx{nWxM8VCc#F9&1l9D;ye$_kDN19H JDY\,iz ̺#yDV+F3Ȇp]F,[PuIҴAR9<(=1C dz0ofŰ\gCFaG.&@XvQ "? NXԳ|C]UKsHoOjxfAvㄮ*(B!hVh|ZN:Q@riʎxK^"3վ{׏O:EN#Ki)N㫋gJv3 $jAɢp^߬jqMChʠqu~@M\^7nvܯ?Zޯ>559LU8y epuCRJMՉ&h +_1;CBb3*7&Mi]wOHl/oxpOE z{[/^vwq*{崹um3~׋?b.Rp{߬ +endstream +endobj +353 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 63 0 R +/F9 42 0 R +/F2 13 0 R +/F11 60 0 R +/F3 16 0 R +/F10 53 0 R +/F7 35 0 R +/F8 38 0 R +/F13 67 0 R +/F14 71 0 R +>> +endobj +351 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 353 0 R +>> +endobj +358 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F16 +/FontDescriptor 357 0 R +/BaseFont/BEGEIH+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +359 0 obj +<< +/Filter[/FlateDecode] +/Length 267 +>> +stream +xePn +V +cc|Z'UE9'VC~^fٝe n.TĠ+ y/gtl[_.L֘f +Hĩk_0ICE_ۛuO!q}~A?%8 +*s46fKWLn9>C<(j!CMfgF_24V J̀pN(&>Onmp*PqUC/rݶ*Ϥ +WQ\~WR!$B~d( +endstream +endobj +360 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F16 358 0 R +>> +endobj +355 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 360 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/AFXDYA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3967 +/Length3 533 +/Length 4516 +>> +stream +xWTTۖA$(9ZXd\ +PUPT!9 +$9# dPrF$As}n˞׿5d *pu4 ++Ut AR@S`h* dd@@%#PT8*h7o Q%TrcP + :]@!.@#4 z J..@?x p'&@@:(L(( ù xQ.@C> P=\q#9[t ch .Ĺ J(G8P/ 顎H, x(!~Oa%usU %>_M0{+5? V"B""o6;L EÐ(GA0  +Je%R2gB@ )?U(=8 g"X>q5 +wR$Nrz\&G9&oox*<ЕxbT6KLJoZ:-.pxt[ _[BʹX֭eb;e +Vf;vj,tLv<IjPfI]%J"ver(h8RySv.s4DӍ~>Ҍ-bJ՛na;'d0/,Uڨ3wé97b/M+%Ȉ#o.UEz h)Ό;BOǚbC+8$:t22_bֶ,*֙鶤l*HV]MG݌3/j+Z0%l[g^PllW9k)O=&bp\ C\W+&xjMV}1i{,V:z:UsКPr Pf[3N-OI?qgmT4S_n\]߃ԅz1gGqZZǍMQI4â3ç7X.7q 3)'|X#-z%ZQ0<|E[hpT Vڽq2Q **tX`WoLyfn/yaX[Wjd5Z}9yGpv&6}6B3+W%7L^י)s)ͪexEv5=x- M~i_Ke{dgyhME.r 4_y?0/~TSEJ$:$83a&~3FLXbi<XM LǟQ0%6YLG^@.1 րd?0k>n3vg^QFi￟cb*H9KوFk&ULt"g1_cV+B-i̾I6ƛU+k^EoZ^=R,Z{! e[`2c;_ia&im-1\<]37]_  D4aERŰfOsي5>~ٙ~uaI}vj9A8׋v-Zz*ɷ検ӤBA VNJdʻo;frg({Qn#ڍ74wsȊ}BCv' 6ߚpN9U桱2O26G)kBsæ<.|IyD/VA,dIlnr2rn =F|wLb#k݁vHy9lGqGJSx'h?yy`_ՑMyf=F{6ߋ#Wˏ̕UQRSmRO,D"&w-^xV*˺ZK;Z Tdf?,Yet̉Mk4|9~ үNzl,)k-2Ta;%#!vמ4 F:SYr-;O8>Ȍ3E.:^l>!V*"P%A"yw8԰LC:nZC! kɕ8>U G$r,0ږ6.](O傿Z2Yr):b:7I*"=|Br|QwC\>UJzs6OiӽPO)(5i$.QxcŁϹSGCߜFDWb\%pR G*w܋TѓE6%^YhH[tܤ^_1[O1+<7[ Q)ߗ/xUX'<5_}Abܱu&`FEr<u?ٱ2juN ڷdh/mߓ aG"'Kup]g)ZRF, ȴTELw/U75i~o늰E[ ;=gօYkP‘:$xV|#ݺMߡ[Iu԰ش7 ɍ0hWNUQŭSba<,ZBVp\צ}Va6 Q6o֡>ʯ3J x :ӄ#M2>I + kރz>Zk&4h^ ί e`]{tkg0ɜ<ќ#CKC>> ]c2[ټONN%-i9I9 O ?[gď(|"`hW0 +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/JAHHGJ+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4618 +/Length3 533 +/Length 5170 +>> +stream +xeXTmAz)idi[:`baDKJKJB@@)! |w>?g}9{DD i{ " +@ }cq (˫9HM'4L(.//T%@@qI94 ĢGh.Y; 8!NG0!'7CcE@577xa0/ * +HL@ٿd?[0o.oNAoJ œb=~?o?om'w? >h +ZbӇA>C;! jH KBxk#00! ytvrÐпC۟btuu Jj:!hSbpYg{<(hm3-$@&h'$ PI)8P^N(+ +>3$vO( dT!>( +}ΈӁ00 7q7E،!l/KibҍDt%&xabJl]bj}V$y2)AHݮDaoN~Uei;۹j<ۗRBl8|rm2֥S8M5aj@ei=KZA9OLQ,^/ܞUߴw23(6tB9sRc9!*L{O?1pCtf,:+Phj3|:$S8 +-$s4s K)gAJ%sdފpKźT+mf{՛l yv9JaL[S+c5 9T>PZvlp 󊈿rHQ ߲O˻oA16v#<W/-st(7 oKƔg3]zL"5]A4!VU!).{aױ}ZluYyF"E3~7t1DkGox]v/Q +;Q xoM#%9#)Fl.E wK@x+408PkdbRG&͠ %`cFNÖ{FO/&=q\ј|pyJ){zO25}g'M연h?g{;=yVjO~evyv&1Yω)g-CLH?BR哸^c=v` 3]n]<9XN.MeuI߻o* >".M"W"40%3'xRZdkQ3i4.bU eUjuH?ͲS3Cwh;dͩLaZ ,뷛I$wAw&%j'dzɳv ɧEkx9.YjC\s}||S4@RbJEBmUq!Ed??/{ibz^5]ċ9VL1/ςvԘ[ Cm8pDHrqG7Y M[]M x _NKrYpM3p[PE +\-,;chƐjDX G^vygBD CFRlt P~aCElp^NjZsJMMB&ŻzWow~>M#aG_T_E,[,,:#k:~ƀ3_Z< +_r1:7vdJn-FJlt:[bo~5u˾(Nj;y$\yk)mg6wyk|ܥYc MbO(=/V:ɑfܹEZP|Q'W22I{JZ?z 絎尩H+.m.~ZA51}!=TqiR]!8ucq:!,*}QF Hf~x#JZh3<}bؠzb)})8Suǹg_TLgW'UkN|8-tIr@7RucEpZ=gMB~a =51Q4=÷H*|Pgoe<ڹ@%rnIR9\ I)Z='AO5E`XF(ȼ|:}pתtsI(7$FHuZ",^m> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 12014 +/Length3 533 +/Length 12573 +>> +stream +xeP%Ѳqwwݝ]i\y}&31&bg檵(HDMn ,,1Uf #3( A `aHM^pp1G'okK+7?T\{@ +hhf tfDx +txXXfnS?d,\J;g @OR_NsG;o9I|4`7tS4?z&vCht(8]]߫2n&vf"v@R֮^@sek73++yC?ĔtdYUT6vpSv/o{\zWϑM&`hn` Ps3q07q1ue``]g<NU`p033s3ktpJ[X4@}IŌeTCI^̯i'ܙH{BhΏl,7Cpl²?ftrϭ&3*{F{1kSsX(-_E۟X-"UQ彙:CS0QWCEJ(iPwq ̭PE/ygL xwPW( ӡ%>vw>C8&Oפ=:Yclk:{0^?$u}K@3 Fk޸cF6gQpXݸ^YW}cL$$%~نֿjJ%EFMC(Z 2l47QsrHJSnRp:/GO8VjE1L#|)ԾT 5|Qu&cjeN_[O'_0n.CsG +#[4hb@PpAr\k*1oi@^H-0eܿsj 1,+҂ذmP]9-͢3Y.h/ƄANb:؟(W?E}lk ΂* HX{6쓝^!'Zijk+SIMUbz2bZ~K1.8>p`*,{$7 +E^6exCWzٸ/:e5>L6Ƥ~bbM:7׵^Qmo%:_xAn_t5K_%&.&=< TR;y%Ek%]eMPI+i@Jz؇,Iѧ!o˾$@7BOI)1Ϲ -?[ZI>]f BYoZG7΋aNuh.J~-: zpļygK^䉫Ku 2ҏgN6dD䤄hIl5:VIKPh`ڔr츾誳ȇFJ< !Z"ppƠ]"C#Ffsj2%FWŜTcaΜ;_zߦdFi{~(-[/fV?ҡ8NA@6g)/W%-d|%Exw=J1+ts1[:Hרrh.KJaXm$wa En:Vų;_`uҤ-7ɉABIWб ag&CN.w5ҴOȾлBaljJ +A7 Ëcloq +8hB;/E#쮞䇶 }֌*Bg&K($c\)miZD伧-F?(Iac?88`ܰb1K ڎܦz[-em_/B bkb}L5!'{edD͹WzJd*g?Ag`XJ?]ӬR*~A4:Ǻ>ŪH: +倓1Xz`2sXT pmAns\4Cs[ẹ8JƇ/~Q&cZB6jOx99R&ג#.&F6 @!9?+6mʫ)RP Hvz쥒;⦤$lXxԧZ9cӷI r})@^V.st?b#VSnwi-E*Mg \8ﭰ70T #I8coVYXZnIʫBWh +1_ua h'I Y;>F&It-L铒?@'.N_KHy0ݛa9A0C:oNRi +lk1c0RRXZ$tu6)_æa + +GXps lfLW]x#Ȗ £+/==.ϲAP5U^PP@IGNh} M O"_zYPUK(9~dmk6ݥou44F;_IyOOu-.8Pܑ;@.1 /wZh4K"sBltaQ3n^DX}fhCnnuZB\\mqg (BG;a|WiRWLBfIlb+.E\BljQbX \68MG[Y| & F싮dDV4Hz;ߑDqSfLՃetzEGQ;c{C0+RZ[:a2oZ(4i&.@rl.x8 QpMĝ0R$ jwd@|4= BRG<V)6*̬e9-??4͎,.2F#_lM=ܴY2xq-&9L@ {P)sؕ+ز ZTMLʭBߋe-"+BIԀ0E`7$AO ) +/JnMώy=ٻ‹yBTQ^{u=&w@,IRzWŝ|uȭv4Y@*Nv`Oڙ2ICͩ쫳Һ}1jF\/q~fGUDj9m./ڀ/Fq󴹰էk_d^ +-Po)<_C„̿KZˋ1s5x #}>p[?޳3ԣ_Rwkf+sR2ZK o[qnJ?$Lyp۰Ax 1j@ g0qyidoU29iIcq4}-`\_/1•Fdh(NuDf+4( VlAXӴ ;lWwڊjf9ѳ wGPa~["GfR%$9;:`f#0ʟQ%hKk]׷C}1`8\7 &סUC(0@]^o[ݯ0}h;kS\i<fI{uØRRqgbWXKϺչ̭Zù[g.YKv*գBM_6H9: ?xVt꘡π.!yn#divxOS3Xpz@4Y8r:['j&?_Xe0>x{^.WG3IBԡpĨg(<⧟L5Otu׎$#7a-%#xvS蛨d|lB#xM[)2x2:>$aJC¹*bpJrOL?e0e}-fؐX qHX`ZRjW~F$B{?VDq>-2 ˉz(enJ-ia3R8'аJԫ5|Gc=h3XܵH\RRsa={q2VXhSl+FB_ WiY;n)yO"~jn>\|ʳK''M}i26RgfY|g0ڹ\eM|3[^\3̣Pk g~$s!e.JΗKt⹖6.Yj՗\W%%xo5Oav\h+JԬHB5 [L9/NHXg:(&рZ*p3;BIXM.8;>)І ڳ%IwS2pQx TE2 P;O5^Hy_\dO%C4yr3[-fחBp?5pվp>}q4bn-ǬEhf`'Tfd ܈s?xkǡ;10Tu.I˥A3NXP|4zӁςuևm0m0 fkG)>\r ^4 ]syE͒K?-ۈ]@:\)pm2&5 +(A_%rL,]]}Bp"s ¸})>|t#` )ҕŝYEsLqZ}Wnd6*AJ{B.5į53?SD;(̖*yaroBɥ"{ğ- %vކ`Th+i,_NBgXhݼ$s#m8&2QDy?Уs*vS m ZcRgOAXoR 띳E-YP܏F8<lz*͹71BE',A q'K,}Fg ]n_V5,/CAX7ޚ>6Pcm4 +fW:њGf@{8 m5 㹑6(UdAŚ1H8;5R xnaNP\YY"$D.# M8l7{=ht A Qa:l7?uz!MR8Uӄ};u @;,C,i4XUn'E")X9c*Oq BAA.X T$Q4X}th] +b\e +9bT=f\-aQ4:B\R1j"Ժf9-Mm9Q1S5gVވOgHݿh_37[Sk񥞐}:cR3MĊc@F^I"p8qZ =}EBDS#e`e>2_>V4 +j٥_vFfA0]XHHgapEτvX*8P^Dsy~%2kMouhf/(/QmGɷ6wLQ.fdЬOtp:&(Yݏ1vHu$ v6H;KKV,Rng62F]%R">_sDƀp t~8P;k 424NI9}v~6 w3Ld^5eYeڛ3 +IG5d + f ͌5?B:YkB4b: %{w߲҆o#A8Ah% SںS&s+ uZܞ4- ps2D(!J̼~,b\XSdZy-tp+"-1dGÄXu{(zLOL#U ϐW6ړ|y5)S{M/j=k[\KbpġZz>ؽ=O!;31nͪ9_Ƴ>m^)t0byr 7Vͷ_;|u%h)#y/"voz*1IFuUM~ڢ^Z::|JCd&d|O;qÞ49'-vpgRƿk1:$aI.KuԃraěYJ$5tLM$e HK*L¢gAHZ7 ВMӴ+@iTj҄ Z"~UcGI y\:j 4LdtY.ōqLu14;YCQN(\P3p4'izT<Ȧ4C]{ӻst2<4Si52ܹ$- |$ D&*g$>Z-ewD[J7p2g h/&VDvhgEq;fv1'->+;Ԁ6cf0pt=1*As"cO$0sY}-|=tJ}~jIxMt%e:}2'6뻇iz^Gn_hg=""XrdgEeV&ue1"ʡ4^ionc66ɏO=pPyVXj4i y Z,]FIc=ͬGtԴ=x mO序~3:츐!BP~JϰȮ$CW G* Aʭ`ԅPE9@y +4$)EN}ulqq06dgӧL@x ApLzO4owT ȗVT@Y6Wp9diK"١ ub4.8E1 NصjiWxa;ȑX/W[9?/\ 5+ IK)G욼3zlܭR2:PNZFZp9>6o>Hr $ϵ$>v(eVh!nY +]ݺstx\Y~Gf$$o $W@~ 5;>[BW cbY +vw$?"ymժcgcLړDuuf7~ +e44#I2vo}R\ Vͫb'Y1X.?jZl$,%QSƊy?Oi_ETٺ 據zhl3]9z^@-<B|{]/4?sγe.lCQܩ۫7&RlB 5{T_:S?6IswVگPDeȁ[}v)QkWj짴<%ӊMC\²ANJyRC!ەTN{eX_uxHDd_8H,"[B9S>ZW(n77@yIt;닂~n(ҾLqŸ O8Vې_XWjbZ`񛲾-IK2O_{}_,R N鉞Fie,/U^d 4A4LƆ'{=>@W u7Eh':d ~$ƓdK| +j S~D8ɖ!=A$!x4ߴ$?Uez$җa]~:XfLFYiΉu=~=u{R+;M'؛G_@' 4l[fgZ2ꔨJqCvIftBixua?֒adm T +RQMJ eJ?1;閎] 4r?_P$F4Tu3FZ}/98ϢqLpƫ362 q^ 6h[ܙHMh~ ~FZ^Nz"-bs}{vuX(61D¥?3,A )8zUS^1$/-GC{[1FNI.sF8Iӓ*e;4_h#čm=1r-WvJCr!'6ueґX@\w@BniT8د}.{û~cvԚ-Csb=~KIQҡՠ̂lʅv4u8kD˞Jx@f9t5*.|Т;c*Xذy zan+lg^)DZ)7x%[nE?^ՊM=aoĦ?x3tv,τtJY8'QƢ$h-]\j-hϛ{ipgMR.3A4wX{spu!FY@IܟL/o?qj +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/PGFEYZ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %5D*H]"h^Fqg=.=]tdSڴ:#A$@ԯaFXr7}dgg~b +围͋U%ۦ7fmV?MWC[[|22Pz^/u`j5gO(%\$]! +lɺţmQҖ5*[) */kVs͡!bLX#OKa:}TiZ&ts8'Չ#ޖY1\pF{R.[S5 +d6.( U5zGS!^ym&(V%=brY'U2&Y/rڿyk\C< `>?鐭AizmKȢC”GU|S+ʫ+=9ܽ#[b6ǫN"]xSwfA:d?T('YI [/queOʶʮXPK)=ҹ{%:-uFDǻ!I`Qr*Ҝ힢y0t NSۀ~_~Tf|m[6s>3' V,ԟ-KĦAV|ş ˟g.M+-hy_F\ +(v"J-JzdC/qR瘍\E2iVSɏjO6KS䥾.D ے^"e׽NFWKƍ@K2)(L"]ql +`bDs vHkli@3J:v`[r +TFZ /d\Q*ˁZumzZӁcKT4LE㹈 %$nېY_X4j{4 KO:uKSȽ]ԓRɡzG@\pyp\]0}zSe[#r8%x1&w|CAE*oO eR8Fcxҹ6H*g-[-#rsղqO 0,g$id?˴W/W,jzcm 42Z_x&SgI ppdAnvsK({r[F /=Rln4k[á+"fLi#UԂco +X\uQGb Cǥ*j[\iq+]^9@B4fMi?N.]a1 +z'@c 8=ޞeK~}T@>5xekU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'Ӂ֬Īܭi9NxFxՑs=(8z 0 `Ӏ2%T<=e;9} @V;MAA}#`(e5 ?}־:-9 |D9I꥕mFwt 7M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"NfVHe2`aEXcB@w iz @PH @C5Lݿ4v +|rQN  +&nrw3m+;Y ®\wydINDj4&nּ| p^8xXAv9B_;2rȭZ6nDf{Q}=%gELf1K#1:G1B~<7e½uOLiFVXT~4sZi%)#í˅tI$2e{wӰ; Vkal1jv`58jٵ>kfٯ,_%__Ã'- 󺆓zkkORB&L_M;ؙ@L*\:_VCl"⪔ɟc#z>xv}f[:Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&x8#":sk*2L* +lˉLueν `ovq3X^CO-+Iқ“\ +c\Xis'JY~"mvɮ@[wÛ ݒͫרMOlN|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],oW1ɼx6n VDj"{f4&탁O^>GZr]EK_DzC yTr:ua[pt5z0?|$X7J:N|_zuGk[|Ϟaqϼɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩ[msOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H{9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5}q0 U:dWj~Kg1;FĎfKxsCT]^q /]EeĴyQsŇt#Y1ٔNʼnJE;7 uSCZ;4{sQ\I7+uwwPqN'fB#ՕI,hIU+ OII^)/0 sMIvwh;hqWM]_H ^zQ|8%R%_ڠ(-3(r"YKhPpG<wTYL!(3Uv6JQm<'G4ʱXSU +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/GQFMSG+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1Rz&zU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \Qx +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/QSLPVM+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1061 +/Length2 2813 +/Length3 534 +/Length 3511 +>> +stream +xSiNAGt.H)BST@h^,]̺K&J!8SPY E֟ I$ ǒ$T7fTDjg?Y4K"Q$@^D ]<}! +O}himjqLZX"nm#YY/?(TBTT,.e @ 1X(T:+`M%SijQHO$?uOI SJGPg_ԁERta] /\7܅/\N&~J? D4Xά}@#zy~䂬~.?MS%e* *(jjJ=!a@D)G]i/m㉬c\a~!9=~^^c!i/l/)G5Aœ-aO25VUc>MdR/~8ZVzN}ٻPGEJ=/3qe΢UpaIs͘rC9f晄K5^qH6!W"}\tyER_]!E7H>T-IZTd)ݲw.rZ1bBUj֍|+͆Gq:kHWF37;%PKP UY];9^ń+9S6ɞMv.4~O'C\Ix5,pk,fm+[lWruyƣϮD3<7waU;5CM-I;~BVM;hKk\v;xcFoZŽ< +"K_ +ިJHq7R1=rIbsLVjWDؘљ4Tw>կ/>;^\o +AYhzK9# t5m?ą Bn_k``FPN BB'03&yw߮*L\fO½Gդ~Ki猾-EҸڐXXRؔy:zrTR9"Ul`LC/ o l;iGCn?%ݶ"]:qWM%翖=*$/}́ZmwDWcJYNH~ >~%l\Y`xFqIR._͊,/mf0&]ΒT ԰cV1xbA#zъK:C<;S/ǓǰӭriB:G>iő55sA^( 3>a6`H[/ԛ/͑*ǜ]R + wְЌQ'tS/Džl2~YOԹC]9w;厖2(ݣq63ƕ'y{JL&oh49w8E3$m?T2oMFlmƛ+|> <(@F6*LD5=RIYxulUŽNmgUIowc Ӣ:CBv 5mDm`fѵ%&knĺna;BZ!V-!t9x1=OÐ/M:`<S7s&0~0|$x#o0bCOڏo6K0kӪBUuPKX,"hoCSeJU_U}{؜^#^}ns <.Y1ҋO=<>nRKX9vy|kHG g1juTTEy#e=;9:,_6[vGǍ<&֚oq K'D>gZg -'og< |?#+ T2v +9 +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/PEMYOS+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?7?Xɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/HQIIYS+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1974 +/Length3 533 +/Length 2508 +>> +stream +x{9k[>﫥[`)1@ôlY 1vD60ff: vi &Qm[.S ه@ Dx RϿ`8: `0  C$6 R :3=~m#JG@V pJ2Nd0f +XcCmCF}o*Q94fd 2Ȣkd(&R!5BEd&BpK >w''_a Eh4#0 +?Y˞Nb!:t2Ew&FQ}#S@Xp0FF1:_PXdhS \~C t@0 +$ + +7CAz[u.ҋه_7~W`N*f44)0n+\j{mns5R6Gt?-Ow+1L %m^  5k 6&R& +aI.ٺU%)p*ci;?pz!_+:rAVp'1Yq9TU I ַh"8VtZa[Hϳt^> y> vҷi!ؼ?z|L~mli#؉,$6}ZڢGh2L9Y\u!\J>Ɠ21>*= ßI]%:(&C9w,^ +ll?Xt/ 9TJt!nnZhB{A6~/eeihT5xV9](3us +1^(7̈́iMi)ٞ\\Y+z J-TݔAd^h@\͔J:wg'Si]&>7Sp<ܫ[> +160Oѱv:EW_wCro1m0e2p> v18qe$pdd:4npr^o SHë|ZKwhQzOqF&vw\[6Ƚ-ڸk"-.n i=fqε +ns0M98t>#Mohӥv5A~ +M|1ک9p[<7:WKmXq M;zVwխ, z-fq&%݁bm̎Dzzȕ³׋Wq#ؑ)U&¥- <Ϻv-7ڧv] ]iyJAKs'NG$hNzdv .#N<"~_|rsI ?JJ{Vz/zd}:on'~<"8)v)fSqnq>e`o> &&VpjZO]ɊDyBgoZغU /r˘x4YȀp)KBFi{]~GsQ]x[fGq/[Nv]'~Bp9ky5#'opfg%ˤ(dӺ'Jܝ_%$[ N;wh'$ȹz-SW,:;0I! -.QZ ̉VS܇c7U]S=d"b:TBU- t^ Nj8)ڽl'#F4Z.JL٬po?~u#v3W5qsUgQspSo8EC:˳).1 Ӄu6y=5I2H&Tr5\GYkVHf=冷LD .RVR:~o7zέMVwc`SyzKw⺕Yl2 H ,[8nGj;!yyQ$XqiUp[ˢ Q-:t&S".7i(?@DA#`0 +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/ZQYGWY+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3386 +/Length3 533 +/Length 3936 +>> +stream +xgXS뚆%z -A l:ĐPD@@H&[5)ҶJGD)6Tқ2l9sg5暵|>]\E[q$5:0B57'$ g `MZD@[@["?(+LD ltqx$MPS,:M EA (@a$4IJݿdV(r("U9Qx6@@v4cd,ga[FÁ&Ih"`G[]٢Qr߻V$4cрcB,1h /Cx~84κu@`p$>x@!o!( 8OߩjZm]mH5:0h+ @KED4>?k?p4+7cDk`ЃBusLRw;.2M xUιs:.pVȹ&4S<~)1S_Z#dkC%3춶Go8j.{ւ+~ j}N 'm ++Ù݉'?L,:aimpؘys/̠'Kta"SS9 P:rv9.OWݟ:[P|b }fG6y?0yz5Uڅdn~dmEg^Ofpֶm2=|%Ɏ؟2_V?HeR:WʸVoHc/Nab$l,OmpҲkD䜖dO|kܫ{yWxn$B~eq8x:{@-Cf6Nw-k7.r + {6㬛>\b4W]8'JVHgsîm07Lt{7vINKW|=V@RѯѧDž.Wdc&E1: 24S mB7^}.f(Y"Rb:jgANգ$$S Rmvbf9h3U!]C!RGT +ctA۝Ti"9Q>叠$MGL^J2%?'?TdxQ  ӄ^ӝɅp0ѓN g #,JUVjxVFIYk@Ԅwz0Xn6 4KMnzu<^EEYx- JeLXrV~y-Rf%o_W@F+/ƧV7rR~_mSr]& + c% }:()X߰nݴ[tL=&G=40ѳfw'IL?.U>a;Mhz)c ohڊI:_tGEڵf=8^P 7"}8gۻ ?Ę|)uw'n6‹c ! g%Y"~T)4~&9Zs$W!HL3t"*.xAD,S[  25?ehЩnWXNȼ.0oyR09O7 &:#?A#${H ouhYFT42aaR^$7XcC9C +sJ7AC7p6B#7>K/Cgl]*衲GpAXyɶ-q\y +:)"L#P,RE!r[@^BIOK8L(2ٛ&AB$Gj9 cb:vlE?8rQl R=}p1jm\Nu0cZ&$;Et67ÁV(]%۰uJytHL^V(_Orw%y7֧Αm6:u>||bUsFҧ*Ɉ&S(ؒYS%L}$ůW ̓I ,AOhR^Vx^F-#T7Fe]NS +{ PyS5ɠ:]~hjP*ob"3쏌pE!95uM.Omf |VEb=ۙG;J +`bR\MC/ϭ 0x 3dc{sRܒ^A،6q#6O8'riqm`nĻi؍$iH?T*ϰxzE:ҧw܅%b6p>fRkm?ۛ<뽺[ʤ zY׳ ((G~NOީ9ZUai$R* Kɏ:N[Gl*#C}C\Mki/OVL4ΌD]>pvB^cUGI}mDjW3jl_]tmZIcoBHNO" sp *|Vh4>q 9`M<<_9 M3-[(~U#M+OVvȌԿV\MZ,z]Y{UnV2kz=R/uGV057X%+ g'k0xwVc'qSY!u P{;~6_wKV马L9ˬqBύ>>VPs>Fj!LPZuʈĆ}ݏ+M5WK(ѭE:\=5F%$%ŶL" .oC~3-vi۵\&v~soܳ© O&vUM}}evz=c[˳<̈Q&̈9R+LjsEoػ a鈫ܒHյF<=c,8ē`:axziY ԡPLRZnZFsP#L)l߮p+(:ZTfzdUCjn_әgw/G_- j4{I=aqoBϐ>ڇEs[w>OBГ:%){dB{X 7zUhY'3؞ O4f> +endobj +51 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1346 +/Length3 533 +/Length 1884 +>> +stream +x{<W1QVYc1Čg0YAfV.!˫̃'cFs %{RYlw-Rm%)\v݊-֚ŔKd ξN{9yy}?xXP؍"42 _ `Hp9.D[[kC,,L!Y4 Pb!&k.2& 0!6e"@L'6^{x|h4| 2Kr.xs`ahsW, קnB6Eům( +aaFE 0sY0FY0.M' x#|7D3|x]9OI[0o7ÿW {-A r +d3WB8ဏ 8[@H$2 W9,i. ![XL!sgA0D>!Lt8crQM͝ 9#f)^Ljqo]Y<7k/)bjGCuq Z6(G*օ3~gP76I'ԹՌS7Я]Yܺ=MGP'>Ţj{٭ +-UMeJvɉd/tQŽU_BŎ7 y\ ٝ0cJ7d'Bt&a[<[m$;3 hjOF_%HܳZ[bؖu[i]}z{aj`/g(?i(=|xq&E_X}*H'u+*>OiBBŒNp3_{sGp99/ki&aƴuɒCnϤ"%4d/j'4XlGj^fX +?~֤0kkc;}1nRvycaaݠSW +p7O%$u,+* zBuӝ╦ٻ~No픾,,Bv>Fw;{6mOŁfJv/{UnnRu+e/Wztƒ $#Ϧ_(Vս'rSNy%diـhwR}dBY-&0ßT;J&"3P:S4+9x2tespf/6s㊖KX!?vQ7.gԞ11q 7bHo6H[ Y@+< QKO5nEJ ZFdn$Z-y`W'E?Or'/lQKB 4Aw!.X`707J [}FsLT,ܵ߻@>%Q^h_y(eCU1!ݽ9l)9uPrAqP):UR3}({ok*%QNmOy(]9WaO9V^w} ?'kh5 dd4# +_? > '=8CmLJuՌ$U)x;Ђ_eܜTeDEZ%bɫfhGI?kUz.XlL=RLΤ[Ir~/O][AEliQXnr^IPҖo6b7C/n88hnVfb1|}+ūl]%^ߔOZn#PY)Iֽ[R Y J@gw`a'FAH4 +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/TJAEZY+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 58 0 R +/Flags 68 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1205 +/Length3 533 +/Length 1744 +>> +stream +x}".U]qEx,"H#QEqAa^a/a)z| d_7s`ůG+V CO)$ +TﻯKVs|D$|pHć0o?S9:l5`?ODK`W6@P(;)y EuP]0wYlil&dcMSYuGǽ5[[-,UZzL|j]綛%ڕ&b/Sx*j$JH8ZE,K5WGL +;P~ysG'XM|fi";>S')k1;{;ro8v*QGBVbc +佒9nyx՗خ|®Tؽ1ݖHˈ<9S6;1wG9`e7H0u2oٍUM5wNv~EI?iNL^9C#\K&:EX+k!|Q -2g[Ni(nAZw),{B٪T,s~55B,nuo6nf]/)up \H-=0E+i2zD~mܯhq,Y6{Zuti9jW@]m:tъ,h8u{JZ_73۔^P787;T]C㊯ʨDcW=E1R4ݭW 7i@aqàieێ9:ۋӽ縑enBe8 #k#׳sU/+?r?w4\l|q*+Åv!ѶxS(*8j:T~Vj^u-r@$g +=mG^.;>sr2mZjm7>F- $lzYz 7pvOt(QڃV^^+(k%胫·XԌ8xx+N*3tP^&Q˷NylL~pt[N^csirpU 3 fc*(c]mP>yݔϝv]Z|/=~].ls0jcWANh[<Ǭ^nf][} +j߃߼iB/'x( aXa/ +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/QQCEPS+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3407 +/Length3 533 +/Length 3958 +>> +stream +xyRZO2i6) ?HfM %B^[P>/'ýq5TiX@Ep6oߕ[>ߐWĝɛ:d}C\0B?`X{Rp|gek!")}9R_T~YjѶ !}Mɠ+Kqj- +|nߢi~HfdԥܽWaW-ښ koMPYcfƵ t[^1ү*f1j`x=N]G5X cxHƩąs$?z!w1>^gPY&ɾLkUPo"dn{(1_wM셲L[o9˽6*Q pI(wȳr2\*yiؙ?XyhwzW̍8c +*{v~~pgoMUfXoP&rC3L88ͅf>nz}uf9#mbG!/eK̕)`gֱz[j'-v!KE*27 ^P}0_qxj( o91vi`~o]t퓆mZ,5^{͂(Jiʅjk'7cOs?0нM>g6_>m!0!yIk/|{Iq@lU>ĵ:iۚϧ+k5CL&l>;d_QTvߐg5 Ԙ{&~R1 +VM}_;JB iIkʩo޷]Vնl ܵ.Y #8Z']7{ɜo3BSJcej #zzB%²\_Qt@-JjEIy4+Ё9D R5.WO6x1l(kNK6ݽIğMeftf,~Jwv‰0Q rBdrZ "Wǵ{W 4BD/eDk aog +cfPpAZ +gs*ڋ-یz,URRk۹/E$LyV!7&OY24.0Z$+fC:D[9.(L+~svYIXKLg&Mixi&+Ȥ.m6 7\"Ө]8h EzRT7 Znf!4>ރޱrnVoS25M. UFrܞnBfp[(Gs#|EJV:N)"W-helXr?)K.au՞ +Epw$[Eq@" SKrIW?? CX9ӈ4L;鐓(>klbm6I>~C~Sa/ +Km`9R$lsx~t0=4ۚW;_8>+_M0nxMM"\=bU>nzBvвO*W9VC ^y_>"Uԇԑ0g}gw&\s' 9*"}qL3U(wKLKI8jլ؉گ ξg3Am-̪fxJc+O[>j@?/s^K+ژmn3ZV;K} }IA8Uv>cϝ-:!P&S1|%f@-5ޭ)GJy(imJCnyt^m2z]ΣjFɡ7{2 RoDҠQQGC*)V$*6oF,KICGAA`) ~rlu %OdGG^3 +앞t{+qS9aOǑo + ""%. +m$OQn]<~.wJWܩ` Δ`"[/J*'Z9XzDtΏ]YRZ7ϚD3ɛ7'jz!:K4m] 飥:S!'P$C}q +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/ZYKJIL+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 65 0 R +/Flags 68 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AM4zH$9^U9@oA++l~Ꚃ 0{0 Raf=z\~;A:~ʞ<2jNae[cOJˁ կuq~gf;7=W,SP>~T:c|ycZ{u<8>lB\+Qwg˦~1L?SC )]:qyj T3ihI +Ovʳ=^{x׋3 Y.`]8 ͋sZdCg8Z=r"O/,?"5hpl[ `>cQ'!Z` +0ߝW|4k%\PMQi?cԗajVοYH• +W{U_$:E >Vm)Li&Qd_{SڽzADK@ND5#¼m#0oETf> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 12262 +/Length3 533 +/Length 12815 +>> +stream +xSx&wlMǶmmwNǶmul;X?緾5:>׮{x~5 +Re5sGS+ # /@LA], +OA!Z;:y,<<'OstY[ZhAf&W+?&f&v5G3k# bgP#.U 4gga[LL’qppWG@?\4wt-YcK)aos{k;pwrs +@J4vϩ_-kIkOw` $o&Qiq1]]klb?m%w10?3$ͭ,j&& ߩDE=} l.673*pvvʈ8X5sy- (P_Pc3cURR/Fkp} Q=m4Rs7W}Mr3gL-ɬw'zh"+>ݯeg#(g4RuzH\#~*7PG*c)/ޗ֚~oߘX U}N\@@$uwPzKOb(JVFH$@){\^N5[4\Y.'hC8qO/Y`ViRŻBOk \Bw^?W* +ġrY Ho~`GwG)nH38]T밙&dfM]rRGVKqɟ}++&χ(P@spwƨ̝0jvf қFdи}uig+B#ojl!-Cxi}B@ 9/Gzp*_ c,yA xDM7cuVUYꭓ ߸nԙ~ ld3[R DXӧgbG%˴P˅+\@w0!o?V,WX| GKo_Bs =Y2Y0f!e̔ D(l >^C>2 Cb"mܝ :sNr2.u'7vvYk~ߥXS&|1pLKgfYFlɐglia|>'9%F +P;Tt M 5_3TfΏRWf>չJ!^d<1.9 2Zxe 5|VH9\h&#,)IXpd\űfa J|0'ouwE!AJ>PlxW'OHEpe.~]2Z m7G uOlM8I~mK+^jY|D: /X+ܐFy\B-LJgwI_ij&ܠc^Fgݠ>\BWJ^sχ1i "C_#|Al,B- F}UF.g]6Vs<݃1ɷ$;h޿W{mtexiw*nPTTwX?EٚK()ܔ |$66ulOBHzCO?`kZ:A~17/&L [yDMNPt@+rr29ImSm.|2Hn28w85 ?8} B9: A/ g8 +|rc-}YLI44zQܒrU|67O@o$LA%mbz$c}+iyZTT )p^3^k\TNz3yKthJ hf,p xC6mv(ș( JX40}ްAvs~_߽(P8ytŽwt QC҃&A!*[54#a崐ʶ*?rSkD&R!pZMdVklڱXگo158ݞB>r h,Y蜡sv-Z] '?-ZJ !@.<0;;"S!&/h|8RdR&ݛ`wcvcipv$3~HK.02dq_{#D4D0Pg|)QmHccŊ{=kL'*;=J|6/d癋šZ:1/(TSJʞ=t>I*Eis9΂w lUƒqlo'Ld.,dd< ppKҘg͞k,ߛldjoe$ +9ˠL9;G%,ZUTte9M( R~ \C(\"u\ޠK A!vo>AcqeN[mӌʭG|bEBϮ_83ֱwXq}2!ژuJ4nJMN=6 +9Tn)v~^EՄApsE7(2,o1j_|)}lktlPZ@Z)5x쀖WYz2B0Z +Euۨ*Y7I4*:@ך1tlo#nk73BbYWŚQRTu%g Q;aJsS+ 1Tj>wQP>ӧ4 1_Ou5lOQwvaI!tsgɕJ[Z-~_6t^͈T|!͗V;}0`4A]܍r*af]yܲAxw bHx(gNʞػ<) } 4"hF"MJ*Fogi|?X1 2K"=NlrF(ϰ}mEK"hz)UN- |*tfjUŒmג'>nw^CBۑ][=pSf{]skqs3 f-=ޭDV1hȫqE֊ jes:)s<.^`~Q% 8}u<.[J1;4 +F[T` ε^8OHhݑ/5@*/ Qc #)sΌg j2EF˓G25qm@zE=uJaj6huAʼ¹>͙H/h,LTl3jndmc" ^<~0ԙAo?ԩ/{pP:6z_) ژ/}[>o:Z&yҤ/;@Es dED|Fȗ9GRS]gzA2+Qh V]#"T./PjЖ+T +dsC^kzjݘH(m%m1?%G^8Qn.e$ +)PP7g{鎑;U#G^@d-B)lhz57'fnڍ,E ? @;MfCTc^*yw_lr+s!%VM5M?ä^Ѽ%"RrWjvgm.&1<2l15K@m Pʁyg젪l~#&ux^j[4xgT ݠLb ~ð#~Z˘Rw&R ;3?A}.KM"6B3h UAҩ" +J҉F , zS1ϲIIE =\L$VHڅcEX%~8+eSQ:'kC?|B*dhV +ϴh&f:Q̞;F c7-SF9ZCϺ T-n)idI`ռ:jkv]=Z\9CGqk1 OR0՚+n +@I77EPDmO Rf۸Ifۜ:G)XTjU#8|O-t:Xr{'0U0б b҄߿2:@tNGܚ61Z(dq%a j&Q, pYBOqX{%Jˉq{yM/V 05ssc= +ic۟>'@#ߜ/}3U ~H[1\/vNP_UZ>Xʸ12zj?4Y*Vw|TpW8&M|(FŋXD[p3RA^P(͘w+9CB9L=EDj2jp "BRoό=~fӣ!m3۬TZo1\ݽ5\q𚇳~v^໸l^eq Ze@LZߠbq}lJ%eEV_Jy247˶z9b?<\0zw Lc8ߔT-;Mjᆯ"#hi*t1l wS8i@o"*n>K͟w#tq{_tGK-~Ai{k$j[W5]u(Q +(xV +a,١oeTۀPbe8L È >f&\oB\e*U9*n,ҭk 5E*HȭV0wi?#K \lGh>P]C"}݋#zqnZ1y,Wy/0NERոH ]R\l$7[O6G?0,G?/z%2P=yUF +Wa-ai&] eaF+_I6E Wc.p>`HOefKN˩o}J:2MŒqQ9 d9/׬ىwE 01D9Uᬋvhy6-xC+؍ֵM7U+vBV3R}ec]p}ăj4w3]4CvuΏR%gTKe9TC~le핦<譜?'G{܀E_%z"j4}vN50_9QzL!ny +{Wq ̈́I*#nn){ Bhg5iaۿ--5dmx+p.dpmdw^؉76;J292Vݳ/+H]u@ޙ`~Bm< =ϳ/έT\uf4%^+>p߀mP^*L?݄HAJdBMh5.0n`{;DWh^+=U^'PN˦vv\۟RO9/1'cYEҦk&o :RxN`3tOZt7"ZʫS)%+An"x!֘yv得┿ީ-.'3*3c U_x-7,2 +P$2w>M }qWw +(t;ʻI!_!5HgQ݇C y7!KW8K.ʷ\InpÂ3!wf,ߚr':bHh-H"w{>+Z#;$4a8+( 4]sWXB@{M|?94 7 )#|HY$K$\Jt~۝&n2ïn cʡOA}c2ϯw7qD ͶN'͈6tG NvomE7:7,%Lg w"yJf$<_%lAS> .%L< wrUpP_͔v7BEY 0BS1HjNtRxV=k[ ^+S8E3S&SűZ6?@91EXYAufj,pcgc bj8ߏ9re_Ylipft9xC{zBeOo~6}uw-4q524Zecv^Tbr fLPO.Sw'6OYu*2r냷+O1ǂЖಸ{d9`m'_G +6uL>GB1j5^z*U4yѦ;S~!˵Jfʬ^nBsSf_kFua^r:opzQf 3B$޻t`++`M`T%[m7ᵮL\҂،k[<+V̛O[;T]UՋ.6pq~x8 'tR1bu:h 4)86Qf֠-*yv1B, 9s|_e> ɓ,7fa +7d2|#+# "^YdQa2\O=wf h_\y;+˦ *D ŵȻg5d H+OȈߧmfq5~ ͼaPUWfW6KV%͚1\JCK`h~'Se*OC瞦_EpqŪ6ր}<)T՝ԭOF׫8_q#)\ß +M8Mcx1@NH\ϏVD*g>^ fʂn@- +}c8)bg@i,Olh&K*:cѤKIdhT(LU=VJsh=BC?SY*X`{unYMOWfAv,Ώ)]?F$;~ +wf5J7Q6J(^ :yD +s1=-(S "XG6궙~XjOyl^a)7Hjc蹖#-!m½pܤpwvR, 76 >P͜0zl0:6v=Ř [0_ƙߡ߆y:k~'kfӈ_MߑҫkEV@?|[l*يy\vq' nyix9A͖rpo4# +gT0 z +dw~MpfrDzQTp?rة +ya3KT1  }Uܺ꽟ޣ@MSIW4lS8,b\>E>QhP'tk@/GxL1Mfnҗ VUX{hr>iQvXh R,҄z'B`_r={?pgqձ@ fd@h$E/-ȶbhǠ4\ +~.P;XVE7+TtaV $"vCA #_5:6~#j I*?¸8Ʋ>*tTA.V$e"|ΜQz[y ~W>0\gg;-@cXf PGvTլ)iU&K!VZmCvr09/|tNs1k'h1+Dp"A@r]J+Rխ٫`/Hg@8TftM[5'뫇Tl\Ew,Bs_ђ݁ OBz# B]3X&>X&'kMw{z1 +;z_$b +BVѿGu_ד٫4l -|}iuM-a}S?X$'=wb,![k[-D'u+I]*Է8]!xkqG%-a;$n"HFu)eT%.tʠBF#W//ۋyMc  V8ۅN0W;-'NN}/2*x-baYC,:VTv(-bw3s0B{n2XiL Xglu-֢z:fFTτuJ6Y1%gk2OT@AdumeTH/J.YE5^s-n;Qx_Yή"\BeY+Np:E?Yjƥqc=j s'zP낼r']Y!`T̾|}*Qf8fМ# +8?er1Gش\ZC"VJ3*za5{&fmP(O"1T&u} s{B JW\Y3 [J*S+cpV'G@5'{MɍE' ٨rziJ;QU.qvSneH:Fa$/ z9h#Nn+2uA؀9L52wC> e6d&x +!%װ{98jy%AnZ1Jj0@Fgxd0RU/$2Xs&I] طqgIz#P=I7ΊD}xgfmFEhT7/oȏ.*YkH ¬ e![ ՝<#_' & WG{-<_}C +endstream +endobj +334 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-341 -250 1304 965] +/FontName/AYETLX+CMR5 +/ItalicAngle 0 +/StemV 89 +/FontFile 333 0 R +/Flags 4 +>> +endobj +333 0 obj +<< +/Filter[/FlateDecode] +/Length1 717 +/Length2 1238 +/Length3 533 +/Length 1769 +>> +stream +xkTgKh6(,TPKnp (ILp2D. +pQZ"͠rE",Y_췞̇yy%m=!a,It +x2:F"H qН&8VP?,&Ec$[!8&/O!A<C8 ` 9PB_aB$pp !(r6$N %˜HX-5'$D)s z?XM?|~(XW7*(@)҅1c@1t5 ~CX\A>Dy|o!MH2 #8'|ԇQh9zpKT6K? "(=%ERMw$4tjZ/B8B -0y=e0iݎf8mdJӹEa?I1(t"p2!CY=0TYZeSUdgdpxw}7T<*T_3>[=Нhy;eAKWtNm7zYq{Uvn@O~ig|/tuaRFPUv6 A3ي c^jm Q ,dK8Tj0!MڏjsGTђ\j;#^ |ĆʒBSUd¬0.k]" + [=?/gR~n6f\Z_s7F*j 75tO;taxr:H*GâXk+}FmgS6\GHUéT ɾxӧȝJܳKS'>oP^nXzH9Cg5-na +Rt+sapNGX/QH);*[)i!җ'RzᗢL~j漯6+֪=#6pzh-H:paMgsXx&g@.Web#^` hd(dCY _yQ@gՄ tϊ[~LG45iѩ +vfUk3ğ/ote5yUIF#l=Ǎd_!GC@ԛ$~OO\arGí]voZQMϴ#k2"W0X+%}ݵBo`zuk۶ ORX3Y~^(mvV}(pӲL7p`Y:R;XW\^s\WYTIMy-?52Uۮ9c"!p3 my :"$NO1Hn:KcDpO71NVY5xVzUzjM,L>tm4京Y;yOew!T5>3UXË6ޏ7hLfYyO `B(o2uZ529jM>LGݵ^<'"q +~%ݭ)sNl,km!-.GvA ld7~2|Y]V4rzS[vk)ⱕy*O[d 4ޛY^ǛQ~|#~B.s i6d64խ8^?~> bPbD?_: +endstream +endobj +357 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/BEGEIH+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 356 0 R +/Flags 68 +>> +endobj +356 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqNp';/ +(%\lIqfq>ܠygHa$2 f].]? +brAڌ[nYXdOH7BUaT%8ZM^(`M=udL%],hۃY¡-W|#EӆpSlN~dtLg"oK̸9w1:9ZˤP4#x٬ȷ$H3=E##GURԬN<'RD@n|a>Us>MJ\[`4^$6` ұe:ytىfF7n7xs9N(:.J\盓վRNf߿5{v$Y! +߸a /%"^Pt$ Q<&lxWQˆܗ2ҿAwq{ sp(2zWo,eښK6DcOyGQ^+=*(Hi7lGk+S%ގ<l^RS!IuEUj= >$w:UѓX TS48= +3$oU7Mt0iu2V>%!i3F,9x5WU.G])[krikz}Eg[po ِ]:mtDu@n*1MSX`sI6h3×sD~3pGJz eg3圝z2 # 2`G'B'Ց +.Dxh 3GcuYq u@i~݋ň %&YH.Ƌz>- +S.>rƔ`eA9^#JL9H,&qQ~?|+[# +kcQf!Vvceb2񵕐a l c\*X#| }~?Wۂc}%y4śa!٫W*h!kť*nX5Pw⭵lB-Z9:2Py3 x*?Ewd7_ ZYVo%"D̫?'T#s!Sk[Ÿ t9sV:pOtV4])Q%KL'ق'ڍb7W MƉa;2w41.J)e,E_ViSI˰i{\ }oXx:YڃXsgkl֓Q&0SyB" N9хB1)]_i|1TQʦAT;ySw<'~ &hGьѻ4mo*-mʟ~#x")v}jL$5r@07&e5TN/T~NgW"biz dfZ98bgajY^;neUzfcR[o/P zm$PDƵ57__W|̬X:a}q^Xd" I^Տ2t<"nKz04űI]-9ǔw\:xe}[䅺_Rqap9n"6x3\WY@m!UT,7x`ZȻs^jZNq9S++T~"_ؙocp/9Lu-VFtR\!/|fCu`ʘ! ތtWdI#?bp"|iQNL(&a6 ,w2QAΎf~D1jĨ& Z{2:m#$:_ER@3`IkHL]onaK;Ҫvsg8=ąpPf ̽P.r F~;PKon>HaJU*RyF֮g" hxi{FXΒ26I?7˟b Fu4ңT;W|v1T斞LFDؓ'<,Z%(jfY9}Uʗ9kbᯰ* .2-~g;o۽` ?،]5rmgږtEҨ:AOCkboqk^MvSƅgMsV*''gvzѼ .^Ơaêw2.!O6z((lçMW_VCv~̪~t' 4afMڕJ +~&x}Цr#7YmE2m"'L#,.{3=dt,NM0ܤFd5EЅO^+*Jx L}ĩi/|kVmV)-?<9UUMIӫu=\ÆUm!$.lMiCjCyV̈́-ؓ6Oi͆IC,/ 9~Kx_)K"^XFBޚ&T_jLA|P$%+RM@tj͢z<cx{CTL ~?[;"K!:Uhm}+@!WH@6 Yp/#ˠX.(/*4Co2*Ok4耗*@}njډ|K';~⋠m a^IvR)8sATOS?Y4khsynph\P-W1#P&̍®w`=)G\ґ]jdy_W @"1h10z48_Df/[zW| 6QWs4l%uG!!7Ya,VZ/!!sQ"Ĕ=G;xw9 ZU+$^ pgrM͹s +Ƒ"3n`Y]U(sYd$p0`^:)oܻ#\"6J7`lߩČ^/Z%JU&ǭ2Z@NoGPv= B['~7Z`@NXnFxO&_`Kr kz) ֜3V?Ab\lr}EK< {.{Xqc 4i/HqmKu) ` B<;n}tN 1H^SR&ƴzIDFs2+MhFy-Gn~85-g}[gҞ8/ iꮬ-r9'\}<=?/5|%)T52i{4b@iV[iߖq;m:'eL+C͋P&=ќ">N'K quT[ X,;11-w]q,[>ϼ$gJ֎cnP)V ;1)~Z述=;8\kCYx;А8;A>yZL7`Q%3SߧڱH-72Ѷ2ܲ* фkg}gSmTRD{\8x4 {HX%9]ןw%Ȩ;횯;Ez$ +pm8cper +\ZĻ82Yي-Tv)8g+.1+-O7D: QvJxYLF E7Ϩ? *9d=WX.v:_څYDY'.mŻ8*(sx ˋb~@$@ :cTMΚ +OҺy4~/v5]e4bٓ cQ%Un'ܾ3Y\jE2Y^ i !9N1" 9g@]X2BS=.U,xV@`4!r;]5r@th#u4M_/UʰiK +%;pa=,3"zD6*&4Ign4e0De$昼ODS H}JJX`e8K0>^V^.zs[LP Ae7F_UbRo&m˙=YlxэkϘ!k4X1h}b$dG-X2;~vrvϾD)dyakGd怍 +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1852) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185354-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 47 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +49 0 obj +<< +/Type/Page +/Resources 50 0 R +/Contents[17 0 R 4 0 R 54 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +362 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 45 0 R 49 0 R] +/Parent 361 0 R +>> +endobj +56 0 obj +<< +/Type/Page +/Resources 57 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 363 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 363 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 363 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +364 0 obj +<< +/Type/Pages +/Count 2 +/Kids[82 0 R 86 0 R] +/Parent 363 0 R +>> +endobj +363 0 obj +<< +/Type/Pages +/Count 5 +/Kids[56 0 R 74 0 R 78 0 R 364 0 R] +/Parent 361 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +365 0 obj +<< +/Type/Pages +/Count 4 +/Kids[90 0 R 94 0 R 98 0 R 102 0 R] +/Parent 361 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 366 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 366 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 366 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +367 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 366 0 R +>> +endobj +366 0 obj +<< +/Type/Pages +/Count 5 +/Kids[106 0 R 110 0 R 114 0 R 367 0 R] +/Parent 361 0 R +>> +endobj +361 0 obj +<< +/Type/Pages +/Count 18 +/Kids[362 0 R 363 0 R 365 0 R 366 0 R] +/Parent 3 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +369 0 obj +<< +/Type/Pages +/Count 4 +/Kids[126 0 R 130 0 R 134 0 R 138 0 R] +/Parent 368 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 370 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +371 0 obj +<< +/Type/Pages +/Count 2 +/Kids[154 0 R 158 0 R] +/Parent 370 0 R +>> +endobj +370 0 obj +<< +/Type/Pages +/Count 5 +/Kids[142 0 R 146 0 R 150 0 R 371 0 R] +/Parent 368 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +373 0 obj +<< +/Type/Pages +/Count 2 +/Kids[174 0 R 178 0 R] +/Parent 372 0 R +>> +endobj +372 0 obj +<< +/Type/Pages +/Count 5 +/Kids[162 0 R 166 0 R 170 0 R 373 0 R] +/Parent 368 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +375 0 obj +<< +/Type/Pages +/Count 2 +/Kids[194 0 R 198 0 R] +/Parent 374 0 R +>> +endobj +374 0 obj +<< +/Type/Pages +/Count 5 +/Kids[182 0 R 186 0 R 190 0 R 375 0 R] +/Parent 368 0 R +>> +endobj +368 0 obj +<< +/Type/Pages +/Count 19 +/Kids[369 0 R 370 0 R 372 0 R 374 0 R] +/Parent 3 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +377 0 obj +<< +/Type/Pages +/Count 4 +/Kids[202 0 R 206 0 R 210 0 R 214 0 R] +/Parent 376 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 378 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 379 0 R +>> +endobj +379 0 obj +<< +/Type/Pages +/Count 2 +/Kids[230 0 R 234 0 R] +/Parent 378 0 R +>> +endobj +378 0 obj +<< +/Type/Pages +/Count 5 +/Kids[218 0 R 222 0 R 226 0 R 379 0 R] +/Parent 376 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 380 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 381 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 381 0 R +>> +endobj +381 0 obj +<< +/Type/Pages +/Count 2 +/Kids[250 0 R 254 0 R] +/Parent 380 0 R +>> +endobj +380 0 obj +<< +/Type/Pages +/Count 5 +/Kids[238 0 R 242 0 R 246 0 R 381 0 R] +/Parent 376 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 382 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 383 0 R +>> +endobj +383 0 obj +<< +/Type/Pages +/Count 2 +/Kids[270 0 R 274 0 R] +/Parent 382 0 R +>> +endobj +382 0 obj +<< +/Type/Pages +/Count 5 +/Kids[258 0 R 262 0 R 266 0 R 383 0 R] +/Parent 376 0 R +>> +endobj +376 0 obj +<< +/Type/Pages +/Count 19 +/Kids[377 0 R 378 0 R 380 0 R 382 0 R] +/Parent 3 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 385 0 R +>> +endobj +385 0 obj +<< +/Type/Pages +/Count 4 +/Kids[278 0 R 282 0 R 286 0 R 290 0 R] +/Parent 384 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 386 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 387 0 R +>> +endobj +387 0 obj +<< +/Type/Pages +/Count 2 +/Kids[306 0 R 310 0 R] +/Parent 386 0 R +>> +endobj +386 0 obj +<< +/Type/Pages +/Count 5 +/Kids[294 0 R 298 0 R 302 0 R 387 0 R] +/Parent 384 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 388 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 328 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +330 0 obj +<< +/Type/Page +/Resources 331 0 R +/Contents[17 0 R 4 0 R 336 0 R 19 0 R] +/Parent 389 0 R +>> +endobj +389 0 obj +<< +/Type/Pages +/Count 2 +/Kids[326 0 R 330 0 R] +/Parent 388 0 R +>> +endobj +388 0 obj +<< +/Type/Pages +/Count 5 +/Kids[314 0 R 318 0 R 322 0 R 389 0 R] +/Parent 384 0 R +>> +endobj +338 0 obj +<< +/Type/Page +/Resources 339 0 R +/Contents[17 0 R 4 0 R 340 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +342 0 obj +<< +/Type/Page +/Resources 343 0 R +/Contents[17 0 R 4 0 R 344 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +346 0 obj +<< +/Type/Page +/Resources 347 0 R +/Contents[17 0 R 4 0 R 348 0 R 19 0 R] +/Parent 390 0 R +>> +endobj +350 0 obj +<< +/Type/Page +/Resources 351 0 R +/Contents[17 0 R 4 0 R 352 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +354 0 obj +<< +/Type/Page +/Resources 355 0 R +/Contents[17 0 R 4 0 R 359 0 R 19 0 R] +/Parent 391 0 R +>> +endobj +391 0 obj +<< +/Type/Pages +/Count 2 +/Kids[350 0 R 354 0 R] +/Parent 390 0 R +>> +endobj +390 0 obj +<< +/Type/Pages +/Count 5 +/Kids[338 0 R 342 0 R 346 0 R 391 0 R] +/Parent 384 0 R +>> +endobj +384 0 obj +<< +/Type/Pages +/Count 19 +/Kids[385 0 R 386 0 R 388 0 R 390 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 75 +/Kids[361 0 R 368 0 R 376 0 R 384 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +392 0 obj +<< +>> +endobj +393 0 obj +null +endobj +394 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 392 0 R +/Threads 393 0 R +/Names 394 0 R +>> +endobj +xref +0 395 +0000000000 65535 f +0000173371 00000 n +0000184829 00000 n +0000184474 00000 n +0000184679 00000 n +0000173535 00000 n +0000004048 00000 n +0000000009 00000 n +0000095267 00000 n +0000095083 00000 n +0000000913 00000 n +0000100082 00000 n +0000099896 00000 n +0000001906 00000 n +0000105554 00000 n +0000105366 00000 n +0000002823 00000 n +0000184579 00000 n +0000003740 00000 n +0000184629 00000 n +0000003993 00000 n +0000173638 00000 n +0000013791 00000 n +0000118432 00000 n +0000118243 00000 n +0000004109 00000 n +0000123704 00000 n +0000123514 00000 n +0000005055 00000 n +0000129008 00000 n +0000128819 00000 n +0000005991 00000 n +0000006967 00000 n +0000132828 00000 n +0000132634 00000 n +0000008583 00000 n +0000134236 00000 n +0000134050 00000 n +0000009592 00000 n +0000010556 00000 n +0000137052 00000 n +0000136858 00000 n +0000011510 00000 n +0000012456 00000 n +0000013692 00000 n +0000173743 00000 n +0000015040 00000 n +0000013853 00000 n +0000014952 00000 n +0000173848 00000 n +0000016762 00000 n +0000141293 00000 n +0000141102 00000 n +0000015102 00000 n +0000016097 00000 n +0000016662 00000 n +0000174047 00000 n +0000023473 00000 n +0000143486 00000 n +0000143291 00000 n +0000016824 00000 n +0000145538 00000 n +0000145344 00000 n +0000017776 00000 n +0000018747 00000 n +0000149805 00000 n +0000149610 00000 n +0000019654 00000 n +0000020636 00000 n +0000152462 00000 n +0000152276 00000 n +0000021613 00000 n +0000022358 00000 n +0000023326 00000 n +0000174152 00000 n +0000023812 00000 n +0000023535 00000 n +0000023767 00000 n +0000174257 00000 n +0000025096 00000 n +0000023874 00000 n +0000024949 00000 n +0000174362 00000 n +0000026086 00000 n +0000025158 00000 n +0000026017 00000 n +0000174467 00000 n +0000026811 00000 n +0000026148 00000 n +0000026742 00000 n +0000174749 00000 n +0000027793 00000 n +0000026873 00000 n +0000027724 00000 n +0000174854 00000 n +0000028968 00000 n +0000027855 00000 n +0000028899 00000 n +0000174959 00000 n +0000030301 00000 n +0000029030 00000 n +0000030153 00000 n +0000175065 00000 n +0000031445 00000 n +0000030364 00000 n +0000031297 00000 n +0000175269 00000 n +0000032811 00000 n +0000031509 00000 n +0000032663 00000 n +0000175377 00000 n +0000033281 00000 n +0000032875 00000 n +0000033235 00000 n +0000175485 00000 n +0000034629 00000 n +0000033345 00000 n +0000034492 00000 n +0000175593 00000 n +0000035027 00000 n +0000034693 00000 n +0000034981 00000 n +0000175701 00000 n +0000036189 00000 n +0000035091 00000 n +0000036041 00000 n +0000176089 00000 n +0000036457 00000 n +0000036253 00000 n +0000036411 00000 n +0000176197 00000 n +0000037776 00000 n +0000036521 00000 n +0000037628 00000 n +0000176305 00000 n +0000038102 00000 n +0000037840 00000 n +0000038056 00000 n +0000176413 00000 n +0000039438 00000 n +0000038166 00000 n +0000039290 00000 n +0000176620 00000 n +0000040466 00000 n +0000039502 00000 n +0000040318 00000 n +0000176728 00000 n +0000041818 00000 n +0000040530 00000 n +0000041670 00000 n +0000176836 00000 n +0000042295 00000 n +0000041882 00000 n +0000042249 00000 n +0000176944 00000 n +0000043631 00000 n +0000042359 00000 n +0000043483 00000 n +0000177052 00000 n +0000044028 00000 n +0000043695 00000 n +0000043982 00000 n +0000177342 00000 n +0000045126 00000 n +0000044092 00000 n +0000044978 00000 n +0000177450 00000 n +0000045802 00000 n +0000045190 00000 n +0000045756 00000 n +0000177558 00000 n +0000046808 00000 n +0000045866 00000 n +0000046660 00000 n +0000177666 00000 n +0000048071 00000 n +0000046872 00000 n +0000047923 00000 n +0000177774 00000 n +0000049134 00000 n +0000048135 00000 n +0000048986 00000 n +0000178064 00000 n +0000050428 00000 n +0000049198 00000 n +0000050280 00000 n +0000178172 00000 n +0000051194 00000 n +0000050492 00000 n +0000051148 00000 n +0000178280 00000 n +0000052292 00000 n +0000051258 00000 n +0000052144 00000 n +0000178388 00000 n +0000052996 00000 n +0000052356 00000 n +0000052950 00000 n +0000178496 00000 n +0000053400 00000 n +0000053060 00000 n +0000053354 00000 n +0000178884 00000 n +0000054537 00000 n +0000053464 00000 n +0000054389 00000 n +0000178992 00000 n +0000055301 00000 n +0000054601 00000 n +0000055255 00000 n +0000179100 00000 n +0000055698 00000 n +0000055365 00000 n +0000055652 00000 n +0000179208 00000 n +0000056919 00000 n +0000055762 00000 n +0000056771 00000 n +0000179415 00000 n +0000057641 00000 n +0000056983 00000 n +0000057595 00000 n +0000179523 00000 n +0000058725 00000 n +0000057705 00000 n +0000058577 00000 n +0000179631 00000 n +0000059999 00000 n +0000058789 00000 n +0000059851 00000 n +0000179739 00000 n +0000060743 00000 n +0000060063 00000 n +0000060697 00000 n +0000179847 00000 n +0000061315 00000 n +0000060807 00000 n +0000061269 00000 n +0000180137 00000 n +0000062765 00000 n +0000061379 00000 n +0000062617 00000 n +0000180245 00000 n +0000063479 00000 n +0000062829 00000 n +0000063433 00000 n +0000180353 00000 n +0000063849 00000 n +0000063543 00000 n +0000063803 00000 n +0000180461 00000 n +0000065319 00000 n +0000063913 00000 n +0000065171 00000 n +0000180569 00000 n +0000065920 00000 n +0000065383 00000 n +0000065874 00000 n +0000180859 00000 n +0000067648 00000 n +0000065984 00000 n +0000067500 00000 n +0000180967 00000 n +0000068465 00000 n +0000067712 00000 n +0000068419 00000 n +0000181075 00000 n +0000069088 00000 n +0000068529 00000 n +0000069042 00000 n +0000181183 00000 n +0000070237 00000 n +0000069152 00000 n +0000070089 00000 n +0000181291 00000 n +0000071759 00000 n +0000070301 00000 n +0000071611 00000 n +0000181679 00000 n +0000072426 00000 n +0000071823 00000 n +0000072380 00000 n +0000181787 00000 n +0000073885 00000 n +0000072490 00000 n +0000073737 00000 n +0000181895 00000 n +0000074606 00000 n +0000073949 00000 n +0000074560 00000 n +0000182003 00000 n +0000074975 00000 n +0000074670 00000 n +0000074929 00000 n +0000182210 00000 n +0000076455 00000 n +0000075039 00000 n +0000076307 00000 n +0000182318 00000 n +0000077053 00000 n +0000076519 00000 n +0000077007 00000 n +0000182426 00000 n +0000078778 00000 n +0000077117 00000 n +0000078630 00000 n +0000182534 00000 n +0000079601 00000 n +0000078842 00000 n +0000079555 00000 n +0000182642 00000 n +0000080229 00000 n +0000079665 00000 n +0000080183 00000 n +0000182932 00000 n +0000081367 00000 n +0000080293 00000 n +0000081219 00000 n +0000183040 00000 n +0000082885 00000 n +0000081431 00000 n +0000082737 00000 n +0000183148 00000 n +0000083568 00000 n +0000082949 00000 n +0000083522 00000 n +0000183256 00000 n +0000084984 00000 n +0000083632 00000 n +0000084824 00000 n +0000183364 00000 n +0000088415 00000 n +0000085048 00000 n +0000165582 00000 n +0000165393 00000 n +0000086017 00000 n +0000087028 00000 n +0000088242 00000 n +0000183654 00000 n +0000089356 00000 n +0000088479 00000 n +0000089286 00000 n +0000183762 00000 n +0000090214 00000 n +0000089420 00000 n +0000090144 00000 n +0000183870 00000 n +0000092151 00000 n +0000090278 00000 n +0000091991 00000 n +0000183978 00000 n +0000093633 00000 n +0000092215 00000 n +0000093473 00000 n +0000184086 00000 n +0000095019 00000 n +0000167661 00000 n +0000167466 00000 n +0000093697 00000 n +0000094620 00000 n +0000094961 00000 n +0000175991 00000 n +0000173953 00000 n +0000174653 00000 n +0000174572 00000 n +0000175173 00000 n +0000175892 00000 n +0000175809 00000 n +0000178786 00000 n +0000176521 00000 n +0000177243 00000 n +0000177160 00000 n +0000177965 00000 n +0000177882 00000 n +0000178687 00000 n +0000178604 00000 n +0000181581 00000 n +0000179316 00000 n +0000180038 00000 n +0000179955 00000 n +0000180760 00000 n +0000180677 00000 n +0000181482 00000 n +0000181399 00000 n +0000184376 00000 n +0000182111 00000 n +0000182833 00000 n +0000182750 00000 n +0000183555 00000 n +0000183472 00000 n +0000184277 00000 n +0000184194 00000 n +0000184761 00000 n +0000184784 00000 n +0000184806 00000 n +trailer +<< +/Size 395 +/Root 2 0 R +/Info 1 0 R +>> +startxref +184927 +%%EOF diff --git a/src/axiom-website/CATS/schaum25.input.pamphlet b/src/axiom-website/CATS/schaum25.input.pamphlet new file mode 100644 index 0000000..0a55f34 --- /dev/null +++ b/src/axiom-website/CATS/schaum25.input.pamphlet @@ -0,0 +1,618 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum25.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.509~~~~~$\displaystyle +\int{e^{ax}}~dx$} +$$\int{e^{ax}}= +\frac{e^{ax}}{a} +$$ +<<*>>= +)spool schaum25.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(%e^(a*x),x) +--R +--R a x +--R %e +--R (1) ----- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=%e^(a*x)/a +--R +--R a x +--R %e +--R (2) ----- +--R a +--R Type: Expression Integer +--E + +--S 3 14:509 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.510~~~~~$\displaystyle +\int{xe^{ax}}~dx$} +$$\int{xe^{ax}}= +\frac{e^{ax}}{x}\left(x-\frac{1}{a}\right) +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*%e^(a*x),x) +--R +--R a x +--R (a x - 1)%e +--R (1) -------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=%e^(a*x)/a*(x-1/a) +--R +--R a x +--R (a x - 1)%e +--R (2) -------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:510 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.511~~~~~$\displaystyle +\int{x^2e^{ax}}~dx$} +$$\int{x^2e^{ax}}= +\frac{e^{ax}}{x}\left(x^2-\frac{2x}{a}+\frac{2}{a^2}\right) +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2*%e^(a*x),x) +--R +--R 2 2 a x +--R (a x - 2a x + 2)%e +--R (1) ---------------------- +--R 3 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=%e^(a*x)/a*(x^2-(2*x)/a+2/a^2) +--R +--R 2 2 a x +--R (a x - 2a x + 2)%e +--R (2) ---------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 9 14:511 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.512~~~~~$\displaystyle +\int{x^ne^{ax}}~dx$} +$$\begin{array}{rl} +\displaystyle\int{x^ne^{ax}}=& +\displaystyle +\frac{x^ne^{ax}}{a}-\frac{n}{a}\int{x^{n-1}e^{ax}}\\ +\\ +&\displaystyle +=\frac{e^{ax}}{x}\left(x^n-\frac{nx^{n-1}}{a}+\frac{n(n-1)x^{n-2}}{a^2} +-\cdots \frac{(-1)^nn!}{a^n}\right) +\\ +&\hbox{\hskip 5cm}{\rm\ if\ }n={\rm positive integer} +\end{array} +$$ +<<*>>= +)clear all + +--S 10 14:512 Axiom cannot compute this integral +aa:=integrate(x^n*%e^(a*x),x) +--R +--R x +--I ++ %I a n +--I (1) | %e %I d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.513~~~~~$\displaystyle +\int{\frac{e^{ax}}{x}}~dx$} +$$\int{\frac{e^{ax}}{x}}= +\ln{x}+\frac{ax}{1\cdot 1!}+\frac{(ax)^2}{2\cdot 2!} ++\frac{(ax)^3}{3\cdot 3!}+\cdots +$$ +<<*>>= +)clear all + +--S 11 14:513 Schaums and Axiom agree by definition +aa:=integrate(%e^(a*x)/x,x) +--R +--R (1) Ei(a x) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.514~~~~~$\displaystyle +\int{\frac{e^{ax}}{x^n}}~dx$} +$$\int{\frac{e^{ax}}{x^n}}= +\frac{-e^{ax}}{(n-1)x^{n-1}}+\frac{a}{n-1}\int{\frac{e^{ax}}{x^{n-1}}} +$$ +<<*>>= +)clear all + +--S 12 14:514 Axiom cannot compute this integral +aa:=integrate(%e^(a*x)/x^n,x) +--R +--I x %I a +--R ++ %e +--I (1) | ------ d%I +--R ++ n +--I %I +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.515~~~~~$\displaystyle +\int{\frac{dx}{p+qe^{ax}}}~dx$} +$$\int{\frac{1}{p+qe^{ax}}}= +\frac{x}{p}-\frac{1}{ap}\ln(p+qe^{ax}) +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(1/(p+q*%e^(a*x)),x) +--R +--R a x +--R - log(q %e + p) + a x +--R (1) ------------------------ +--R a p +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=x/p-1/(a*p)*log(p+q*%e^(a*x)) +--R +--R a x +--R - log(q %e + p) + a x +--R (2) ------------------------ +--R a p +--R Type: Expression Integer +--E + +--S 15 14:515 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.516~~~~~$\displaystyle +\int{\frac{dx}{(p+qe^{ax})^2}}~dx$} +$$\int{\frac{dx}{(p+qe^{ax})^2}}= +\frac{x}{p^2}+\frac{1}{ap(p+qe^{ax})}-\frac{1}{ap^2}\ln(p+qe^{ax}) +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(1/(p+q*%e^(a*x))^2,x) +--R +--R a x a x a x +--R (- q %e - p)log(q %e + p) + a q x %e + a p x + p +--R (1) --------------------------------------------------------- +--R 2 a x 3 +--R a p q %e + a p +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=x/p^2+1/(a*p*(p+q*%e^(a*x)))-1/(a*p^2)*log(p+q*%e^(a*x)) +--R +--R a x a x a x +--R (- q %e - p)log(q %e + p) + a q x %e + a p x + p +--R (2) --------------------------------------------------------- +--R 2 a x 3 +--R a p q %e + a p +--R Type: Expression Integer +--E + +--S 18 14:516 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.517~~~~~$\displaystyle +\int{\frac{dx}{pe^{ax}+qe^{ax}}}~dx$} +$$\int{\frac{dx}{pe^{ax}+qe^{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{a\sqrt{pq}}\tan^{-1}\left(\sqrt{\frac{p}{q}}e^{ax}\right)\\ +\\ +\displaystyle +\frac{1}{2a\sqrt{-pq}} +\ln\left(\frac{e^{ax}-\sqrt{-q/p}}{e^{ax}+\sqrt{-q/p}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(1/(p*%e^(a*x)+q*%e^-(a*x)),x) +--R +--R a x 2 +-----+ a x +--R (p (%e ) - q)\|- p q + 2p q %e a x +---+ +--R log(-------------------------------------) %e \|p q +--R a x 2 atan(-----------) +--R p (%e ) + q q +--R (1) [------------------------------------------,-----------------] +--R +-----+ +---+ +--R 2a\|- p q a\|p q +--R Type: Union(List Expression Integer,...) +--E + +--S 20 +bb1:=1/(a*sqrt(p*q))*atan(sqrt(p/q)*%e^(a*x)) +--R +--R +-+ +--R a x |p +--R atan(%e |- ) +--R \|q +--R (2) --------------- +--R +---+ +--R a\|p q +--R Type: Expression Integer +--E + +--S 21 +bb2:=1/(2*a*sqrt(-p*q))*log((%e^(a*x)-sqrt(-q/p))/(%e^(a*x)+sqrt(-q/p))) +--R +--R +---+ +--R | q a x +--R - |- - + %e +--R \| p +--R log(----------------) +--R +---+ +--R | q a x +--R |- - + %e +--R \| p +--R (3) --------------------- +--R +-----+ +--R 2a\|- p q +--R Type: Expression Integer +--E + +--S 22 +cc1:=aa.1-bb1 +--R +--R (4) +--R a x 2 +-----+ a x +-+ +--R +---+ (p (%e ) - q)\|- p q + 2p q %e +-----+ a x |p +--R \|p q log(-------------------------------------) - 2\|- p q atan(%e |- ) +--R a x 2 \|q +--R p (%e ) + q +--R --------------------------------------------------------------------------- +--R +-----+ +---+ +--R 2a\|- p q \|p q +--R Type: Expression Integer +--E + +--S 23 +cc2:=aa.2-bb1 +--R +--R a x +---+ +-+ +--R %e \|p q a x |p +--R atan(-----------) - atan(%e |- ) +--R q \|q +--R (5) ----------------------------------- +--R +---+ +--R a\|p q +--R Type: Expression Integer +--E + +--S 24 +cc3:=aa.1-bb2 +--R +--R +---+ +--R | q a x +--R a x 2 +-----+ a x - |- - + %e +--R (p (%e ) - q)\|- p q + 2p q %e \| p +--R log(-------------------------------------) - log(----------------) +--R a x 2 +---+ +--R p (%e ) + q | q a x +--R |- - + %e +--R \| p +--R (6) ------------------------------------------------------------------ +--R +-----+ +--R 2a\|- p q +--R Type: Expression Integer +--E + +--S 25 14:517 Axiom cannot simplify these expressions +cc4:=aa.2-bb2 +--R +--R +---+ +--R | q a x +--R - |- - + %e a x +---+ +--R +---+ \| p +-----+ %e \|p q +--R - \|p q log(----------------) + 2\|- p q atan(-----------) +--R +---+ q +--R | q a x +--R |- - + %e +--R \| p +--R (7) ---------------------------------------------------------- +--R +-----+ +---+ +--R 2a\|- p q \|p q +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.518~~~~~$\displaystyle +\int{e^{ax}\sin{bx}}~dx$} +$$\int{e^{ax}\sin{bx}}= +\frac{e^{ax}(a\sin{bx}-b\cos{bx})}{a^2+b^2} +$$ +<<*>>= +)clear all + +--S 26 +aa:=integrate(%e^(a*x)*sin(b*x),x) +--R +--R a x a x +--R a %e sin(b x) - b cos(b x)%e +--R (1) --------------------------------- +--R 2 2 +--R b + a +--R Type: Union(Expression Integer,...) +--E + +--S 27 +bb:=((%e^(a*x))*(a*sin(b*x)-b*cos(b*x)))/(a^2+b^2) +--R +--R a x a x +--R a %e sin(b x) - b cos(b x)%e +--R (2) --------------------------------- +--R 2 2 +--R b + a +--R Type: Expression Integer +--E + +--S 28 14:518 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.519~~~~~$\displaystyle +\int{e^{ax}\cos{bx}}~dx$} +$$\int{e^{ax}\cos{bx}}= +\frac{e^{ax}(a\cos{bx}-b\sin{bx})}{a^2+b^2} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(%e^(a*x)*cos(b*x),x) +--R +--R a x a x +--R b %e sin(b x) + a cos(b x)%e +--R (1) --------------------------------- +--R 2 2 +--R b + a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=((%e^(a*x))*(a*cos(b*x)+b*sin(b*x)))/(a^2+b^2) +--R +--R a x a x +--R b %e sin(b x) + a cos(b x)%e +--R (2) --------------------------------- +--R 2 2 +--R b + a +--R Type: Expression Integer +--E + +--S 31 14:519 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.520~~~~~$\displaystyle +\int{xe^{ax}\sin{bx}}~dx$} +$$\int{xe^{ax}\sin{bx}}= +\frac{xe^{ax}(a\sin{bx}-b\cos{bx})}{a^2+b^2} +-\frac{e^{ax}\left((a^2-b^2)\sin{bx}-2ab\cos{bx}\right)}{(a^2+b^2)^2} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(x*%e^(a*x)*sin(b*x),x) +--R +--R (1) +--R 2 3 2 2 a x 3 2 a x +--R ((a b + a )x + b - a )%e sin(b x) + ((- b - a b)x + 2a b)cos(b x)%e +--R --------------------------------------------------------------------------- +--R 4 2 2 4 +--R b + 2a b + a +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=(x*%e^(a*x)*(a*sin(b*x)-b*cos(b*x)))/(a^2+b^2)-(%e^(a*x)*((a^2-b^2)*sin(b*x)-2*a*b*cos(b*x)))/(a^2+b^2)^2 +--R +--R (2) +--R 2 3 2 2 a x 3 2 a x +--R ((a b + a )x + b - a )%e sin(b x) + ((- b - a b)x + 2a b)cos(b x)%e +--R --------------------------------------------------------------------------- +--R 4 2 2 4 +--R b + 2a b + a +--R Type: Expression Integer +--E + +--S 34 14:520 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.521~~~~~$\displaystyle +\int{xe^{ax}\cos{bx}}~dx$} +$$\int{xe^{ax}\cos{bx}}= +\frac{xe^{ax}(a\cos{bx}-b\sin{bx})}{a^2+b^2} +-\frac{e^{ax}\left((a^2-b^2)\cos{bx}-2ab\sin{bx}\right)}{(a^2+b^2)^2} +$$ +<<*>>= +)clear all + +--S 35 +aa:=integrate(x*%e^(a*x)*cos(b*x),x) +--R +--R (1) +--R 3 2 a x 2 3 2 2 a x +--R ((b + a b)x - 2a b)%e sin(b x) + ((a b + a )x + b - a )cos(b x)%e +--R ------------------------------------------------------------------------- +--R 4 2 2 4 +--R b + 2a b + a +--R Type: Union(Expression Integer,...) +--E + +--S 36 +bb:=(x*%e^(a*x)*(a*cos(b*x)+b*sin(b*x)))/(a^2+b^2)-(%e^(a*x)*((a^2-b^2)*cos(b*x)+2*a*b*sin(b*x)))/(a^2+b^2)^2 +--R +--R (2) +--R 3 2 a x 2 3 2 2 a x +--R ((b + a b)x - 2a b)%e sin(b x) + ((a b + a )x + b - a )cos(b x)%e +--R ------------------------------------------------------------------------- +--R 4 2 2 4 +--R b + 2a b + a +--R Type: Expression Integer +--E + +--S 37 14:521 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.522~~~~~$\displaystyle +\int{e^{ax}\ln{x}}~dx$} +$$\int{e^{ax}\ln{x}}= +\frac{e^{ax}\ln{x}}{a}-\frac{1}{a}\int{\frac{e^{ax}}{x}} +$$ +<<*>>= +)clear all + +--S 38 14:522 Schaums and Axiom agree by definition +aa:=integrate(%e^(a*x)*log(x),x) +--R +--R a x +--R %e log(x) - Ei(a x) +--R (1) --------------------- +--R a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.523~~~~~$\displaystyle +\int{e^{ax}\sin^n{bx}}~dx$} +$$\int{e^{ax}\sin^n{bx}}= +\frac{e^{ax}\sin^{n-1}{bx}}{a^2+n^2b^2}(a\sin{bx}-nb\cos{bx}) ++\frac{n(n-1)b^2}{a^2+n^2b^2}\int{e^{ax}\sin^{n-2}{bx}} +$$ +<<*>>= +)clear all + +--S 39 14:523 Axiom cannot compute this integral +aa:=integrate(%e^(a*x)*sin(b*x)^n,x) +--R +--R x +--I ++ %I a n +--I (1) | %e sin(%I b) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.524~~~~~$\displaystyle +\int{e^{ax}\cos^n{bx}}~dx$} +$$\int{e^{ax}\cos^n{bx}}= +\frac{e^{ax}\cos^{n-1}{bx}}{a^2+n^2b^2}(a\cos{bx}-nb\sin{bx}) ++\frac{n(n-1)b^2}{a^2+n^2b^2}\int{e^{ax}\cos^{n-2}{bx}} +$$ +<<*>>= +)clear all + +--S 40 14:524 Axiom cannot compute this integral +aa:=integrate(%e^(a*x)*cos(b*x)^n,x) +--R +--R x +--I ++ %I a n +--I (1) | %e cos(%I b) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p85 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum25.input.pdf b/src/axiom-website/CATS/schaum25.input.pdf new file mode 100644 index 0000000..3ceaeb9 --- /dev/null +++ b/src/axiom-website/CATS/schaum25.input.pdf @@ -0,0 +1,2023 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/AFXDYA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/JAHHGJ+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/COYIHP+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x% +@E{b +]0w DAS&js*7cT #j)6@byKĺ*{B+d+б~JMY3aT +m0,JK7JFj  +֨)'L'Ȯ慕 +sM qČu(۶ik6F +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/PGFEYZ+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/GQFMSG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/QSLPVM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PEMYOS+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/HQIIYS+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +41 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/ZQYGWY+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 839 +>> +stream +x͗Ks1 | +aV$?9(3\ɉae }ewi8YimeEiZ}SV\بWU4^_,^ݮ_y_^ޝ[!VX;㲊dxBf:foy$ /|s@G=GPO+~Lf`@Qy|ٌL䁝<9YU!4>]f"50FSR#5jGXpB ?PEԐ%fDDڼO`P-v$H+#|< +R. ‰W/EYI1B+T Ep{pjiȁ=TeωI{ڃčj "t$!5JQ:8Rv6;[fgّM98巰`63)%!典[H7r7QsYF01 /OMmJ<5A "a“Cc,JS*dA5os^.&DEy0lh.+t&F =qȍa;nQ-!ŸIMXwR`tI+ Sg0e*AYu'-yA9Tpt5x%ɇG?KCzj>mdρg|k5D4ζf{Lk69{|,bӬSl(Ӷbҧ+>3/k>![ٶ(GIy5]QI'7,8Br/*#Aك4@G(}*OUgߝ&F\ҥ (sF{[}*-ni0 + +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +/F3 16 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/GEQLRI+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/TJAEZY+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/QQCEPS+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/ZYKJIL+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 574 +>> +stream +xڽM0TJVkgCU{,쥛d"A$ J@Cć=ϼ3:p9Y| Ť"91&Xp){CdA05=h vUa$ȼTvB##:'2#L>"ۚ~yS =Þ +Pͪ' "?PqԏqVMDhԍ ͙487 l#:-E̠*:^[H!"K](Dmp +Zsb1F, mB)fnr/ȼʆ]gEY(7or2o*s],OP:np\2\nlsei4%NZa:F αitQViXTv\6K7|jCgw<3yb:Mg#N_:&C*˂Jk_hKCbL<%Ct?M! 8awPº +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 631 +>> +stream +xڽUMo@W%M~z8jR@/Si!.ATu}`JQ !ۻo{/Llgq> 5(?Epq@HQ&2(e-J + +kʒEC6<@Ѡ=3e yD1~p-&ȃaZ}$cOFIJēQT!0\a٠gWsDLJtzN-yfehM7$GQ IL +H\ H5SBum hQh؂x!irRU=e;3s˸+$ UPTF &7[{w`~S̋KՓr} ra)-A/ϪM}jCL׻l/Y壋GQƗp~^EUk)D6« E6PBZm\BUrhSM">y&pv]]O/uͺNtd0#J8r۾ ̛!,Hb WzocڢNl~mhw_|׏zmz|Y.'bjG1oN[A⼦c&)Q>qD0$ +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 732 +>> +stream +xV]k0}߯N} +aceu J굁4-iǼ+۱X ؒ=s$%cTrvW Y~'Մ +R΅NQzyvagB*[ଣ$vȖłˈ'eѧР2B[DQ#lK`EdDq[BM;"F݂M܉ Dq#]emכ66R]J(~1Pf%/q;(싡΂axK.er +a⊍#Af+@.>ڂ`jLT8UG&dɅ=8p)3 @֥T1 T<#U$A#)@ 2X0O4a+ɓܙ;`vpXFa88!NB &ӓ +Tys7 тd௅ *oN@.&v(M5]0 'jTm)xUJ/E{Xꂽ/6n_<)omq'~R~!~'M;r0Tʅ+Coa9C`,;ڊcbkc g$9c +HB0u멘E~mwyr^>g|? K{>^ǯVEgO*iz<3#3!h&L^K䘖y[Q]nw񡙻tzՓZ@{ZVߵW/ +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F9 41 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +75 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 74 0 R +/BaseFont/BHDCQZ+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 1330 +>> +stream +xWKo6Wވ&o9Sڽ4[[?3%RFkz%rF354TC"q~<|,F侹y-]uq /y%EmDdB-TT/4B5{8 +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F14 75 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 717 +>> +stream +xڥUKO@W)!첳ġUGH/`,p!R⠐GbIPK}Ϛp9y"qB>MN/Ť"P ;2|;0C + A &_O/ ̛`!1&yoӂdZO.Ur$3DM0 O^0+5_DgмbꀹO1P\X1hl8妏"S.!SvHz)"9;\ X͸yw`{(6]-aaK[)8s5.eY` 0l6Vbu]=i:>N눖r1$zcೱ%53;ֿSTG +/vlk~Q6d4iԯ +?I" mèuDvI7iN`g` am0ś 2O>̪r9 lH?T; +bH 5x.iPbˏU^V״֫iYnP:r|UŠ> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 727 +>> +stream +xڵVn0+x) 9!M.|hѤh{i:GqRT-@6RF_L/bp?bDK5!uSJ2,>O/*˜&*|FzFm1bh 1 D=xfEWg 2@2e]#F DCl-Ï)2)"Hwp9\dW#U Ilo$X}Mx CC(bX#A4`F:!,SC_&esD:"@@>5㈇2"ZT Mg8Ეkaxg4#AponCBrNb;>y9ҍv%Y0S ?faᬏf- Kzb{ CD hAHd2l% huK^8o,]m|bn| F_(MK|{.6͒q%,=F4c˪QF :f"\,K:,X^k&L>QGnuۣ<&e1̓;U/:U-焐q.ff,y5-(8e&AcUuRUDߪj`+/Vwzm\6(V> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 893 +>> +stream +xWMo8ीd 9Z4-v{٪TM8XwHJ"m)ؽEfͣ8'$\ސ׊Ť"Of5d}J*B!O2%} SSY阑*VEǝǐ5P"*`59C hDŽ74TpHp +%bf]%8G\ߕTꢍ : 4A\lM^G:B2BX)TfxaʔBsfP O 1/C s0??*e/fAze +=S^& #Ts{ˬDAj,q8wr0܍ZV˜*i fL$`wHR3.!i}d$T$}b3 TNfL99f2I\?'{@KYl}/6vĤ7ø|XN'KrVnfdriQǦ.!M}s3?\&|hNaYP{̙f1`vu~7lO>.(/>gP./6m-ly^4F)iVW7_m qTn=f˺<绨~*o_R,rJ< AeNq+( Nu/ڒ@e= /p韛DzP7 +t9Y +v~=5ٿm&%%|(I:MW*ߺvnnqSm{G9cl/'N3Wǻ ޗ͢[LYc1xu8 w`Ld`Z7Ӌxbwu{ݿܶtq'C L.ޯ ]QpTyT;`W +endstream +endobj +89 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 1249 +>> +stream +xڭWKo#E+Cn,qbͅL&`B$H)?yA뫯=K8<|YDh4A`$ӆl-‚ +!Mq+e[m~X$`qiGش嗄=V1f44 Zϼ%is:w#l@^21mrZ2K4O<5R!1[CÂ*[Lfwg\l +W k(2/SN  l Y<}<,8dR435Րj|NuOPXzTi(ÔPE`ףǖ22fUl4~HPac>`(% jv@8R|%,aAObMAR|c\O80ʿdKTSM awy!"aB(oeVe"nkbP@ q kazD@)DULRQ}Z@+ШhkĩF'`0Y$t4L(T% +T2 3t -O5!E'L-# D$ڂiy8jy5{k +OHORq5YAe"z҆1 ♑S).oTL) ;>-Z5Mg:cd9ѯub2x& q'((׽xQuF)ZШw>5痣҆7dJ5H0i9:fVnǡt~ߙ%i绻\V5Xv#ҏ*5^UW׏O/ۇc- .bkYTr:֫rq v14Hs[E#o1X/ZB> t^eV/jD_xUh"i6`,9?hYo QJ F#|$us=9>ڪUHr7cztlg.G9/چNai!-dc@R loO /p?nclioP{quW-lA2ei3q5+>}Uf̰e\|dLXN:{:8|frl1{-94'<5gրzuݪ}9frVgPOύiT{rM؎%DL _ & +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F14 75 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 541 +>> +stream +xڵKo \*ٲ o"RuSַ'rWqHŀ]Y)3f FPO_ +8*F#Zuk.iuuOWQ] FiuptuFqMI`:X2YupQ ˏRI핔qo#H*< +852ƺ3/Qΐh6Ly Ug;\ix~{؄˰R^MƉ{?c姾'on mN:1f"KN`Nj0`LsE10EGrrqd@'s7E6IADae`_ve7qo[q_MpۇbB6&1(FLc!Y;5]$T*eoe1'qoD|zbA> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xڭUKO0eDv\-+8F8*t+AHEqZi3y|,a1cdM_\(?c U"֒?JT%EЄT + *\j C dş^(q/N%BVtԊ-k]z-N [<6#Ouf#84^CRM9DќP.G_*q 0Xb:u +FVjl#@ }o&`)u*2cQzFjƩΠ[S-Pqo^lko]^}UZ"qZӅWUYy> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 724 +>> +stream +xVMo@+RN u+٩i#i=RqAμ7o#J(E(\>w˳ $B71 +am )f] M1^-?]hQCJ0Lh1 \k +pH91ǃB& zL#B \'dIH3xC?<u,fc8uª)z +^H_3{G-- +P9F5W^'ֆ0wO[[A#Ԅć<*o=/Zxxx `rN6eKWK_(AxQ>tSy˟,9)$t3%_#>ZP +~`c$o0'%p* W N9)G_0¨o)@s\5;YjM9MĜSrV%~ٮ]ú}*w {l%mvjŤp3_iqLe{&Fc`ZÂə]~mo>ʁ&Vyx Ħt$;+@iօ&{ /Ci +endstream +endobj +105 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 736 +>> +stream +xVn0+x !KZ4-c^%䨉 UKzD!Ù,ԗ"Td`&$L BGp4 6Z}>`eָ2 K,&)}N҂̊:W>,zЦ6X넢LttS 2 &ewl!6})(!چ[5oKd.K$$3S6! P44χ'OGBzg6 +5Tn Oki,m|ӯOi&8}D)܆-М<^3sa1V @z/rsmOꤻ$6bF 6m{Qa^FxWL0mcՒo/ $)AaXWfT2N,gUp&p**M2sHϺ':@Duk眔X5Cg٦5^C97EL,Ы|TD*W6Zz,>n'?kTOc iO{/(,ꛎUgy|40~-ŵofB3Bgbb^; " .@-Gyݍ_6av_q^,k!.[D_++@Ϧ4H* VCD +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 960 +>> +stream +xWɎ:ݿ𦥤 +).<tRRP\gtbPt/2{srCs"B1=1YMLo"1tFݠǜ1heڧ0 +y];ާ$}ʢv}TB4sP9deALҹ33!/c*ޕcTXDŽ"83 oXUl™D11,9GhA`WߒJ+A!/tH O7Ô?_OAZ1Jzzǿ002i+TtvhU}_PyЄq<^pFu-"}I8?4DIawAcf1?;r#S$wLT?3TA.`(иC/,("f<GZJIU)uWO(B?'KDqW3UޏIGu;YF5vr8{/mb@noU5vJj؇gb9d4*Wgue2W4퓲YI#:RU92OAU.t U3U?Q[gwOH[_q,n/i\7yMƚD`_.QQ>.-8\LJc2-g"۬Z !Ӱ98~XljWx(G_c[04"7# k/Eװίi4L2)`N_~?Th/M0G -@[#i?-Wc]}?5nBv,y]ULRVx vכ6h#oLis +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 970 +>> +stream +xWK6Wd\r E7E{캗FY@vԍ}vCH{hw4#i䁄kEbRof52߿Ʉ̩74׆8挷A)ޅVA&ԭ( +P5$N$+I9#`vMNٻf2`΀3iIB‹(FfsA s6p&%QLsΜ#SN!۩50+f!=+0.&'9/BMC`m _M1JRQ=K0QDq JL3ZOUϳ;o{!"31!# LIY4/i\?`E0o)|. ՒJzH&#{ITfA9|۪~1Tۅ%`~6&Kl7p4}Ac[_EL53fDsc66^سA:T6S6 H#6,0lQmڇ/PB>"(Juט4p=3eTC&P6|XWǜj<ҫ0v5VN]+U9<Ǻ̚U}_fժ)Rv~Ȗҟ?R.3qΊJy)|mx99eTA][_+5GuQؕyӮhApUGsaqяwݙ,F-xV>Ud&ѯwkVΫsF&]sY{Ciy>`otuG1K 0sns3_V-F=wPFAD(uju= zN/_8^-M{Ĩ l,E!>W?bBŷ)~{8 c77UEwOraCs+v`jxcc.7Eg +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 1112 +>> +stream +xWKo8e9XrH]l7K51`ˁb]`hI[6@,Z8~3&2FI~_~+ THD T?g\rΡרV>,zVKr6(s +o.(pֻ@uꠣ;' +]ԂV ă=t*f"Y.t=hs(wXLwC,S!hq JCGpE䝸a74b *ᰟFՉ/"7 I%&Hl@ ~_;,#BR06ψw1Б؄ԗ %`irHh,-{ %T?F0gtċaPzȂe d a:we(7^)*AWFy gp5

2Ԏ!X<>%71]m>~]WY^ TOs{6\< Raf9(\pyƿ>o^}VM|\~ χӪYWۦ㩪7f_?}]fˬ:p +vyKa]ȇTG:XHS)q*;/2Ζ3O00iŗ:yW\׷.wtM(:ru1++//rMAN&qGN5n$r ΰ6n?=& G'Ggzw-7oI +:j;ȫ|\/He\zȐi7*; K{XZ]GQPPaUx +|~[7c֌\J^ͥ;a#l=OG5Vw4SW M n9zNd91W` (tuNug)a|"'o>9kF6FS恏S+;sMbRJ}8 !^zUJ"㼄G\i^{``ӉS{Mm ~s0ptj>8hVq"[M<2[f8lKæփ)┩|nܼ)LŧW'ul|3 OY{O%*8D!"ב~W  +endstream +endobj +121 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +/F14 75 0 R +/F9 41 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 851 +>> +stream +xڥVM6W𲀴'~sZtSl{iFM xecߡ(ɴu{(ͼ1!W>~c,߾ 5(͖3 ց_?hK(M?ݑ{LWr@qE `>uq%A)e;!Ѓ?c4,2ï7/*'EC< J= N Uьp |Ɛ ˩+Ty"obP7R~Ԙa0[}8 ,z"$m$xa ɻ}>I:Qm9LY`Rbf9cV ev _Ɍ/%?$bU1WQ"g +}Κ#fғ%Aߗd=!`g=l&`Y*iri=m,fAM鳻ZfBT˳!%7q·H^\N^JBy uWH޿Nlx bjSns /VmkZ?$% i{JUzX!6ͱ4VwXWM*VV:.?7oN^8gSnQFB!$4Y#7u&í_\|/IjIR +}}l6*OpuW?Ůn7ӍnL^2;ƶ3P +C +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F14 75 0 R +/F9 41 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +130 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 129 0 R +/BaseFont/AYETLX+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +131 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aMZNT)@\X#CUƸ0 pvo02|SDtk 7sI%no")K ٽrWW?Q&$-;#B)@"s5v +[m?.|j}zWzIJLƛL|5"Ph˩٥+ 6+N*>uպrÚ؅\_l_hNK,?U c +endstream +endobj +132 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 130 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 132 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/AFXDYA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4056 +/Length3 533 +/Length 4607 +>> +stream +xg8kQ0Ht3 3E cf0 c袏AdD/!ZhQCDco>z~_A~sq(댂a1xqHah@@AA  +Gc1p?uw_sA +i41x@gk<8t(~90- Dc\x8 !%;:6ྸ4@\J `Ġ}Q SEp( Ͽ}YM +@!hrrYѤb7D;MhJvd FyPH܋v79eB.ħWjy|u` WPBu҆8K+_Q&G2R0, ^ij*[k ZHSZEk)1#H[fZ)H ojat?Zu*lc[azH>y3;<Z&Rw Au͐g^r | :.j$;s]t@UIJ] N&|WKd=ҩ U  +IZk kg ~7ڈnwA`:5zLI;$ \<r5qѼ~0^}L9*AþDNY ;y*жǡ)t/n}'lяd<1>Dځ B?O]oL\W+-Ȍ!_8pP x:% !'g>{Se.2r)؅pA/RX"5ŦE<72=*\?b~:\Vu+k{|2)YaNW ^)fC:6] ߜ \hB<ʳ_FOEcm.ꡅ +&00"aԂzrMG?QVCBg?Xf9fއٮ,f/'b,VHQNjB*6 O + R%71).͘\JÙ~xEU|h*Tn |Aujtq(0*佹3ƥ \TVHJR^܎ġܨ-%bdf?QG2!Di T,s?x] x?f@Sw !R^^І4ƴ UlToެ&uvwueEOL,n~K}!:oJ(HʃȘH1O1?`& 9 Wo)~*ڱU (j/Jv}~d^Q[/ (b{\!- +ng~焕): +˲"u qfaW?HV<=D7RdtVS.e1w8`]>UߺmM?oҰDFQ&m2n^x]Y+ݥZvMU*Y/쇻~<.e)m X设J!s,u"(@;-N`j3XpwT>kIGioAY+l)HK½1\Mԫ r xpCZdLu + Of|J_94 +j^C."_YW]77 a9x)߾3,kG}ďxd3U.c֍TC=nwZ`ޭΫC`:dX׋fҮʧ#nтvq-ۤ҉bBf3jdԭ+JuKgo'ᖫQnܱNBjC*#"4Jgy݀M/x'!jIT^' jT+zլ8$#7=bhZF=iV\+6$' C S]ƈ'&d'Z>1rw0[(km6qL| gMa`63] r,Ů~9\V{ `-|L "Cr{j+,УP }5[*w}Vu쵲P'o,T2EF] +0w?P=/},b5Vq2h鬍GFxދU M*5>+/%EOI,wט5Q} ;1+ m F+?( ?c-.5ϩWjJ~PujNϭd%JoRdF&`J nߔH  Wltj@%4IE=vw_5nd \}M41U= RYgPӶ`*ţ5mU4'1Ka)KHQ4Av&ŃnmVNA7laBܮ(^ɲ=,䣐—@M08{,ψ *=b4F~jr[;% ek[>Y$/:y~%cW~ +R\2b̟q=TtdkkC'(8ihL)" +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/JAHHGJ+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4731 +/Length3 533 +/Length 5281 +>> +stream +xeXkii If萒AnGffJ$KVZ:?Z׷c~?}s=s/"D@ i30$$PrQ0$BJ@RR @KHJ 9JHgoW= +Jl6e6;60([Ptr_[&ªۛlv|\<[RW$3jI([\gQDELjVgR'<1q\Ƶܦ3>aQ'ih>SE[#eI$ TQ pWz7:2@((+\C9C:gKb,&QWKؼ\~Xl~~O+vx*tIS)?\:W2OnNj^r whxOcؕ +薓. +sYbg)Q"hUCi߻j#XUw$_wR4Ҷ V"Nlkm߮l=iMZ=)TT)׎LIal^ߴgtLw >1rZpNC[z~ef<ӿzL5`skrPҦ?{ya-*[ u*5ɑJW#8.a^Qz>xF^ Ix {B$:w@{{ӥBXݟ'c;I~ 5ƀ~uBw*}}v|ؐ?ԒgtEf6GoS[$lQM{h[nI3FCmyܲsDVOݠu:- ?.h'}]JyEfoDN/d-Wqc>_\/ +#2_¨6y&$_'rxPpzH*>a;JϠka9 Tÿn/׬׽TޡAw܌*TMK9؆FS #Y̦w=?khn*l&ns!48\^X#wXqCdoݷ#زMfC +籦t<ʁ vBGվ +1*~i<_s[:dyDWz5}u\B/;xpc暥3P}b!+\dD_.Q q^ѰthȊK[}e^X}q7dFE&vip9i |8.ߓyR͞bQa-*fF5y,{7~=lG4YqnY/=_874f7MݶPL5 RChtީU>v$.~l?Q)y9.vF;1LM:"DAC}{1Ozw\F2lGh2kQfJ\/^k@⓸Tk#)SrnC&K d[ݥD.eJ'rZ8Al?w͏H"Iw0  tCdV;:hn JYY3;uƤ-z(ӂ->n̥nn# + 3NW(njSS}sFcܔ'5 +?b,%~Z&d?"1{Y{e$ZG?{z>hܢM7a3c-JFgv[W{bxoM-NXݥ6f崷z NXK'Bݧ$bd<'b=DRd4&ſQ=V&vk?a*Hg!E?%A7 +aKR(Y,K6ٔkA b!s_񻩳;s̑փ&S8$h  `7LP44s.6.ݔt5,wYSOz9.f t})^y}q'唣Nk?]ɀt+ŷD2]XX=79s{Jʏ6VAe׹HbPG6N6N-c>KNh8*kC.\MW;ܭ,gk2HCu|tKVKmg(\Ҧ$6E|5#J1?D3`.wdLO(iP^agCEx]P^Z#֠@ހy5-yyg h ϥtU)5%c#k +<-]A^&Brz$K#&n.g';狀g9ZmnYQؾ$RK\mH%8WDhC*m!-> + 7NTB;5%׶ $Xol,Ʀ賛h8~w=4u}|AJ:E[=tE4K;w7@koZE^|]8糷KZF L^t-wK4Wj~zy9=/i }wVr9>_*Reբ+&.+O0|kn . ~X]Q'wqeZxG|[Ǽ#%:hDBm;ob@rwyZq߷aʎvwFle1w^J&V +,nN'*7/i962["w>a;Y4&Ij|,<] ,#DvmMHL陵X:a['!AӬu_Ϗyֻ0sȌefJ{?`cl[PL$~a|ӇlO Vc-f[ƯldPþ~.*0I)OŸbדhبKxbaZڅī_c:F3173WZX^9d5Xz/G75?b$k1Fv/d8[[*ЎCrB0uB/ra=gHaXS(r^ TAd w[QCS)mE{1IPvݑ+hGd隣 1w~.| Lk)t{+>[GBd_4D|@-M>F)70lgtڿcH`3>ɿ̸~ycW@)& SfT/ Rl VeV~wj +qҎ|-Dc3Q+ܙҳ֎D9Bx[GE{S}ĔԹۓJI̲eXuʛ,WD,`i6 +&DR|0֭4U|>ڜ[8@ʶiʹ=Fdۆ']Tvus{2ȐJrZ7up+.0TKWJM0FH+b+NESPԥop~oxXٱ0ad#PR7+Wp58;S nr䪿D=:y.ץ͓$OoUM M߾,)xLK +0q]QH8Ց%f~ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/COYIHP+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9497 +/Length3 533 +/Length 10049 +>> +stream +xeTѶqݝww989{p  rz}GU5j֬{S3̀v,djld,llN@Sg3PLhw@D&wpYZ9ICK&f tڑ):[mڐۛ,ddb66djL\DDvv2ܙ h Cd=lIJO`ogAZ *].66JGVmj {[g=dRmweMm@bv6@2@`i;r6"0YorD`P֕Qa׶b +sp/9g8Wϑ-&egnY;LUP^d_??Դ9e%ɸx9Y5wqr9$[UNVqp+h^K4ymWcZҶkiD֚_1o*_>3|eW;G=/D0joV2^sL0ZZzERXPu|Hò9T_*S,ߔ֘S4OHڮe}++X?CH!!|Iŷn:v,6_|"cX/m7D Lw2@PިW~ ++,hS~1{,^MIOzm1r`m=T̉BoL#k?5]{EaX>A AuClwBY7-@ eɬ|m̤{cľ=?<[6lýh] ?ѿvI6w$46Y@F OYVᖹ)Dѐ,jq {vqQxY +̲)QK!E +9sJI.lf+Ҕ7`KI4\_r1no}1(0a7ER,@ŧqh"߸ySNܤ(dчrEmvSSA/jWjս"ۤ|Ns`3 ʫs[6HcZb5vMXuu9O@Lz#>_ fEIԓb9.;߂EW6QE ž4p}v99L A cb(ꡡE}v sI ˎbK$ TR0V{;)e88DLH0$p G4?1Ƽr(ON#/Zz +)LSC$ߍppu!|ݤJM&=bh#,i&x}^E2NjZ~.lgB4v!#y ʄEҘTfB%&`s\OAH@:K;\v?V\-xLb~ o!xj:(Ǝb7)hY(| + ( rNp]?)'\0/붪sFǬz>{`"Z*@Jm cjoLYv~{WZ6'*0F +靼tOhF.~֊bIF-,^ 8"<9BR%2匦HW>5 +M7N{`tIs*D= I1Jlz~ȴ۔7= 9i5Yb-^₇5kr!t*6VVa8T'lfLYdamM{אD 424K&x>\vG@T܄xbA~z:gTJpm{s F٢y QT =: ]rԒ]{c8ո*qLnfޣIdF!KjRڏS?ő&%,#SBۤT-EsWn K 0%Bni iA΍4fBo0Kyo&&u|a~Z vJ.y>L׋N$́:߂h0՟ *?O)5fȏ秎^eD`Be.oJ +ܘұz}nkmg&c(mmra2BbTEweɮ(dr=%؎"D(y>2dfGo\@mc,5bVi=yTEuEUrk**}> nHGAAY:페p >4/  EJܕtݪ'HNuD-s+˦ /~&+D`%ԋ,YҘ0:CAx d2`&3-#7 lXU\ib’Wsm†w ^Zf[Ȏ$ZR*V%9l@s9毌V{ +b\С5.RSnptsQX3?e7茾Eu֌u2-Og/oN-`k#8ڐd㌿:bo!dK 8~<Jsr=x$J-2h[|$wATDF]J;ztE~ EAז>@-v4~#ֺŌe5זEB[93>Hvށ=Ǝ;a4 XJ~(NF@eː}xؚ旟4)-Oźlj(ԗy3DN#@B_}]: ,Žˏ󾋷D1M֊JU4olEva^įY֙TsWYXpޜt"?Iw%~mO,&b'@cnEĪSFcL׾M )hNs2cX6~_G%͡HՕujZ4(E56 + tPJO؊8 K58ؿ{>)$Wܳ}TAr] 36q*xTt {}n$ʨjax`]U~ɯfHق ˭<fd~3,.ЀEQ&Lb gaˣ5M~̱LxCJ+ [Boхw5eqJpHeMEasd[?fwsH9*[0ΑJ6MxvBGP`XӞS]8E_x ,!\V̶IVi@ HV*c>3}C=P+_䧗6sUuE;oGiL?c&JBNU1 WiN# @D_JeC4V`oRo+wk? 21Vn}p&ViUsK|97$**ٶ.Pu^ zwUsv^(id]^ԓs'H)NI顷%8uݩfMJ +.F4~2"z:% D_s̯R؏fN(<3)Mt4cQ%XjWt 7Lr뻆ecw +'ž-@Qt%FN3 iYج]GjLN>ݟoX5j'IhU*t$miG,uErg H&O.b9_ɐȶ?/74݊m&$!iUjU䅽7NΌVsй@Ys9k|R;!(H(>3qtmctv%O_ıs yqv$& (hgL-vH4Hyd +!湷a,ul>9pH YQp\ /oH1ĀsNX2"VF' K y}tǯi2x#b>m"0*6}D-H +^gLxJΗ"7gjuO.256!=lv/&Jػ񂵊iizE6> HZ$*_}>( .z]fM>ե8iH،/ji\iS LA&>=U u_\ A-=-.x%(+QiN~|]=]iXz? F1/2]X-]ƻ="hv \Z'W[]H~{|.0~S(l4L qa 4qiw__V553!=f %y& :!# +&Ѥɖe\(_yB쳮H:rFRw  ,6R=%*&Nz.+lduPjuD٪GQ 9.Q5IQȅ^aJDuSH -,-ҩi ov| ]Wq5XΟ/wySFcuicu@7T"R8Q&n=- ,FДz +38lRA$;ْԆ7obf0 geB-0*)Dx;İiYNyZ m&Ox|!ѵEW-#-<%wd3,6%2PQN_\~G/ڌ/>pySˣR@\k & ȼMN+lZK(AT)CvX"'U[A8tA+onjИ[.mx"d4AblLP/}IB*¨2U}CS+KYBLWYm)~e]G3ù *#jH8Qn|`Eb~gBBm&R.F;V"E3`le 6q增XOOKtr52QwpLjN5-"EY|vwәhfk-Vm{;[ƙ76yt@[ +y|TS$G2BMpt ٹc^i Ns͠(u,>d@n>XlWH,59NL,?D GO\!n6RE%]t8!AZkDXe_6K]ݳnO,p&.+UUd/I!wV0B"ҏqǐSFtghj6˘o[É.ת(-x$hDhG2+Az QS;PɩbTFy%a_c+}ٟO]B?6(3'/֝3 rd.*Fȡ~1e TYqB_A+*Wϧ90Zsi2}c׽I 8UB;KVNjm; [0}ju4 \eê:DIh 4^uhxoJe.>D<]p A7%S"B"PTf3 4!.>8B1d>{L|`e eI(kU !"偒nM-CWk I`2 ]adcCBg%Nj!3cL9oM02ʺc;?*vOK -9TFVV\Cഇ1B+YAoԔkTVr`s<@\,RqR߆2@~g){YUaqE:4/W0Á4<0E_E~?`LU^lU8 $,k8nZR2]'2igsXD *!N ;ו")z]LJ3՟Gea}OcI`* y:ǟzem؆ +h-It^âEƄj1%H1bmhkMo-_%M#/m ="eS+.Ɵu;-}XE6mܽb>S #40OSUPcU fZX!˪t JWV";%$Q!GM8GxTHJxi΋- \WzP׈3j4>w/* `q)"w[["<4)WIJ'XYu_XH +,7hӓABת냎 .UxFs_MmN 6;28L>yE49pae3k&X +mhh;:Jצ:E2A4۟XsmRd#ͿV%= O@|#!o2W8y8;{.D 5#bO1RG>+늢;^kߊ՟K}˂YnaLۇ &E9^O TjV"Q&pB/N7|ϐ6Y4tΓ]Ν)i3:[F}8ΦزcwOBS|A;1Ge5F4A[sE&DbTR %/4W@ B8rdKˈJ !O ']׬⃡b7?}޼ecL??:M-39kr^},2]Sn?KfƱBB +J* &.ս搙ke"|qy7W1w qUqU2&+j_[Qg1ΎN5Øixv|e,,v|;I)Md\p)W|k܅eWr' DŽ#[T)|U+op{ 'Y~c.to +=(QǺF$qQ)gIu _["4r1*A[<#aVb/2``SeI Ci$ ~NEL0gbdON_dh=~"Y>[כe.W]q`>zMlB#3\Xe<[(mI;igEE +K=is$3HGUή`$QS<+Ct>u8 lҁKfǾGH^&1@S襣di7+5e6 ;dV# +>bH B?P3E۽-exG-t,A*+R #=ϾepE`kg"!n'ůy +vz% o؄k;E _`/,bo{Eג [lB1c~?Vՙ/vZT[/%Np'Ҩ[^S齈U>~&M2[ _ګ'bm%]ϊU3FRy/^O*.a"ԾumuzV岑Kr#"9N2;Gp go(x I.<'SA.3k +o)7',Wpﬧs'M)?`w*l"?zOvPU8΄פN4(tσZJ|MqY/9_!`@ڞZKf=r);jX |a{ O/`+AȈhD=~zT@aG\:N;$*u5|m>2 S%£j3.VHCTxOQHeNxtԑrE~Yoy@2Xy__t_ZMe?s;X\2,.$n`]a)  DGͅݵ/u486@0 >Rg$#0nT>:veaX{Z!U`(ëGKe=]] X)#L V:AziDZ:9vKP| oc3fseni +uUnޅڒ2:ANHQbj,mYnƜ.7|~YI)wiFu) +0sww}1(4uկp& t"vgWTB%*z1$:E@ +XuP-Q<Q9Sg]Fk9og1sDeS3lwFS; _0BS9҃.&'~5 ]~Pk[b8\$5/Dw50\x1ҝL m&v4M_H.m3BP@e\Ϙcߐln(O2_JZ[hV6xPj#5:܌ָ_uji.[TٳVn"iNX\YbX;53:D6WVHĭsc.7xpUQ m~v Ͻഊu*Vvdz]O&኿s`&н'vY5l. ;fi\r6|IG( +vצ5B'5d7DDߌU8Bu3C1KͭI؁냱CLćBOMmM +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/PGFEYZ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %5D*H]"h^Fqg=.=]tdSڴ:#A$@ԯaFXr7}dgg~b +围͋U%ۦ7fmV?MWC[[|22Pz^/u`j5gO(%\$]! +lɺţmQҖ5*[) */kVs͡!bLX#OKa:}TiZ&ts8'Չ#ޖY1\pF{R.[S5 +d6.( U5zGS!^ym&(V%=brY'U2&Y/rڿyk\C< `>?鐭AizmKȢC”GU|S+ʫ+=9ܽ#[b6ǫN"]xSwfA:d?T('YI [/queOʶʮXPK)=ҹ{%:-uFDǻ!I`Qr*Ҝ힢y0t NSۀ~_~Tf|m[6s>3' V,ԟ-KĦAV|ş ˟g.M+-hy_F\ +(v"J-JzdC/qR瘍\E2iVSɏjO6KS䥾.D ے^"e׽NFWKƍ@K2)(L"]ql +`bDs vHkli@3J:v`[r +TFZ /d\Q*ˁZumzZӁcKT4LE㹈 %$nېY_X4j{4 KO:uKSȽ]ԓRɡzG@\pyp\]0}zSe[#r8%x1&w|CAE*oO eR8Fcxҹ6H*g-[-#rsղqO 0,g$id?˴W/W,jzcm 42Z_x&SgI ppdAnvsK({r[F /=Rln4k[á+"fLi#UԂco +X\uQGb Cǥ*j[\iq+]^9@B4fMi?N.]a1 +z'@c 8=ޞeK~}T@>5xekU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'Ӂ֬Īܭi9NxFxՑs=(8z 0 `Ӏ2%T<=e;9} @V;MAA}#`(e5 ?}־:-9 |D9I꥕mFwt 7M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"NfVHe2`aEXcB@w iz @PH @C5Lݿ4v +|rQN  +&nrw3m+;Y ®\wydINDj4&nּ| p^8xXAv9B_;2rȭZ6nDf{Q}=%gELf1K#1:G1B~<7e½uOLiFVXT~4sZi%)#í˅tI$2e{wӰ; Vkal1jv`58jٵ>kfٯ,_%__Ã'- 󺆓zkkORB&L_M;ؙ@L*\:_VCl"⪔ɟc#z>xv}f[:Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&x8#":sk*2L* +lˉLueν `ovq3X^CO-+Iқ“\ +c\Xis'JY~"mvɮ@[wÛ ݒͫרMOlN|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],oW1ɼx6n VDj"{f4&탁O^>GZr]EK_DzC yTr:ua[pt5z0?|$X7J:N|_zuGk[|Ϟaqϼɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩ[msOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H{9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5}q0 U:dWj~Kg1;FĎfKxsCT]^q /]EeĴyQsŇt#Y1ٔNʼnJE;7 uSCZ;4{sQ\I7+uwwPqN'fB#ՕI,hIU+ OII^)/0 sMIvwh;hqWM]_H ^zQ|8%R%_ڠ(-3(r"YKhPpG<wTYL!(3Uv6JQm<'G4ʱXSU +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/GQFMSG+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1Rz&zU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \Qx +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/QSLPVM+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1086 +/Length2 2886 +/Length3 534 +/Length 3588 +>> +stream +xSy<{l5rEOBc,1&!43cLJ#{Dֲ"*kTv::)9$Qtz>< N0 Hlੀ7,_tۨRHL!*H*8es$M.UƣD{i5(?qDoϬM"b(ADqCX7&8HlչTNB9X+|7&RvLNY 0VDחO`8" 54fBXĊ8@@?cYVQP, J #kO4 @<C$lwAi$YGJUG?(ֵT0441<Ƶ~1p27N:Jf$$IB3 g hhpoĿ1_ (!Yjj&"7ha +`0MM(֛jگb<, Ƽ\mlcuMI@ON-J<v#KNysbM?C'*wN\XW1dlL2BpgCg8n,ɷFv%/Z90AY +j:s)euz(ҽ|%˥lktGĵ#5oV$]@/J5ݯ^Xмw]}~q@IKl_V-$W`=/ ǝv=t3k4_]@Z#3KwCRW[SpSkPS+g/n-u mݹ6(.+R8hkؐ luc:]Nm) -ҀaM*{߬C ,j52 ڍ1%oҽ=޻3Jo]F J5Ӵ# 4;k2_E)ؗ#G͊Rѯ%_By mnmS‚_K +/zh"G!~B\!`h&JlӅ}AèxoFeqW <К\"%ВD>~7,hP<0^g NcIsB6θУҦIb>:3ܑ"7ScOLtRTyFp% fVI ?\ܖRfGbvZ/_źcW7{\+xejQ6hR;xqڨ{uӌ6@=S{$U8sh蟓3̴2O(kL9 cBuqR'Zr- +%ffˊpG +va`n5K}-&z/$6'ق2v}zZK`*yif3roa{‹Ndr.?-Jփqz}rS! +Bq0mz+̖JۑMFb}̻Ü;;4M{iYŢ*>,(H AѡܿcsR +dkcz i 0#>MPj|clN)=tV LAv<(Vإ4l98p]¸ + +-aM Dc*+mNaҘc_he~6x[hџ?8+M ܢѓ옺$b F\3 xtJyfUe:I,5E.1:a $qX8s-@ Sg)Rr! +5FxSZtzu|*{HsBIAHhaLLyHMe ><+"-ݨRm8g`e%].Rq4tGդi%"7r\?C[?$XL}djUHLK`|+l%M҃BQ}YPg$OWM30 +g7Vg{VӔ̏i&t.w í]rA`ӦTV,7!MZmaaSXrx€[cEн(E5X=٥K)W?I5AN+:_pbyY{Z|`^}]dQ*ٯvK4ݦ!eEVo6soNVɋ9TFͺʪA/2lcR=O +|yd4|P&׮Z^[WyuI3EXvHī pmlYk]1 +>)E(LԔ\ݿQI\bs+}i>]{݆ړK]z so2y3?0^1u\Mi9&Bhb/-?b1mUmETU@-q$1_73qNPSpsRtāj@trkM04?:7 Ug2vצ?W<*}ӗr13u}5LӟedW+b7$Suyå2L-UZdwfU?Ϊrukw}bV +Р{? N. QCqƧ׉7|ʽ]`f0lmפ>$iU-jਚwnlK^+F6"Z s\3l8 ,;b]E(KK.h>l2յwNn"Ͻ{.p~y0/,В 8tR'3+Zڡ4HI~9[m8q}Rr#o|wBOةuٓSQ|mmT.KLSZ}TC!Ah("ATȱrƜK(.| ߇h؛ ?(%hJF< :U`\ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/PEMYOS+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2740 +/Length3 533 +/Length 3290 +>> +stream +xy<{>ȒUvŒdDј03b$K($K8! V5QTDdm_wz{^u~O=ZG$"YG涶(8 8X`99CƓ2:i +`mM."xo2hK0X Ő}@,IX[G˟ᙛqB#Zw`V-hO~!5Op^g̵%ܡZ bɴAM=ԈE!ooJiMbtz]AvٳN=/Ht,+z7Cswyn$}Fso2bNE$=Zlvɼb4v•~&WhG7W cDLRYJYjYueSiݬs?N\o~*I9- :~{FW˃[WFF8),paoʑ*LgY&3X#'SuzӄlmF|'"O7,^aKCZ9YYuca\O)azs1- &ƺO6wyo;8~&(Z'"MWMƄgV:9Ysɿ:qʖݘ_zY8'.VUYut1o!EMqD%*ùF;XPY㩼a;eёԡSl/Y@; +m-D߅D]h9CcH'ܑKOix6MvA{+'>~$ȳ廡aVDjPTtb|bO*J:='¤USSr `*yY#8 $pEWZ-Ъ+sΞč^mbRcN[`jG7&혭BI]t'.quqѤaEf*]6"x6&OmlZбd\Mqk3C'K㢆'+gAۇ}m/Kɴ[ԛ[ ߯I/>?Z .։XX~+pj ^5,ZdlۗGZJɁڜᶄPF_ Ϧ}ņk^7Z +C𓣏rr\WP͕Q/_z˃^o+6VUNbB'֌4"vRQD nI1&oTM9 Q-vm¿|v2]?Y3q.D .(UOP]lzTϡrdQPf=Ə*s1 yh +Mڦ8]ԉS[m Y3zYEY>t7)&#_{m߂Fi`;ԉ<臸 CwKZ1HwMXFrkl $;6#a+}jr#+j (h|,c%OkZs`oIme^> +x.szu;_^[,P | "K1d&/ +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/HQIIYS+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 36 0 R +/Flags 68 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1693 +/Length3 533 +/Length 2231 +>> +stream +xyjqDq\ 00@%  H"DA%(蒰4W>0w&`]7<0($0@]@7j +L( H5,0'`z/-"3F92<\@DqXo :A$ @* o~&aHof6 N" w6!EX J qL滎ƐArXO@qI;1F M~ߛFH h5:# $`08H~L £18gġ?Cɾ0@\Jp@^6sƃ"4Yԁ" xpvP'd z6)`fց샙yv$XupIiIĖjj >"rNiblBTɲcXV <Bc)_VsVB@UoB dJMp:.tSpc#;~Ȳl +Ż=ҳOkVA޼c5$(i(E$=`~ٝ驓< RE:0PjJ/Pl4Nӱ,S +:3vw9;n7v]a){kg +'݈۝D0Ss>CEoԥ,Ō A:! +B KbzYi]sE|igHXm$)Gi' 'I,=IA%w֓/SPhRRy粗BM,x6M7~'˵V{lLE"OH-: 3˱x^d>ݹ[)p6Aj_iUElo<㍝4ܮFT&Tn18mz}1M"ЦjN6l3XjM;9?mQ;ӱՑ-9=؍ @ε=T 𾇱(&/ՓN} t6+>AVmt3xZWٍ/G(n5XgiX>l80.cN`JE2s2ksBߦg^zeg[Yb}ELq]Tޯxߌ파,5WZh-CdWfeYN1UG+;/O5+ W伐.ŪqV?+C-C^4m؆-OH@ 07>0"dWf4!{P"nM 6s$f!Od5ms41[Oy>8kߤO?N16 1-<_kfᒨTLdԵޠќ2; ~|qC/P3 Yr#x`z70{MQe.$`.hkni')3j"K0"Dt6\^گ!o"{ü߱u?U䏾Ēax9#1̴k{N^"s T>}پSjA)>;>1dΆ$o;[^c3<2 ue3aQ)980=ea/E1/f3)uٲ +Vܔ.> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1508 +/Length3 533 +/Length 2043 +>> +stream +xiXYi("˔(&!$ + +Qh0lفT$"idiPâ((QhQD*.0YDq=g7Tss/f9ʁ#: `Gtw/ +@P Y"Hod@@RCd(@"D*DD0] #Ph0[̸(D 6 Y0 +ax "1x7ܑ͛x5o#Wbiq!t#Vjտ8 [0ZpԲÜ;(@$ܤrn\m78вV%80x]niy"eu>o,Lҏ'I`V9,`rFl`lN3ƷV%u.xŧݳseboC (XY%.Wļ\MkViIAC<I6FEDh~T]vC/ޝ7?N&G>مaEumjųуǧ&Wh +?%o2 V̯UcZAMew+5?Q#]wKRr{שEA7^w7F'JC b^bhRg{\bBR~iYv_nTFSr5McI._>}]k8sZRr۲5O+Xõ'ݲ wFsUĴX'哇~BOw'z3:j詜WĘ(|UW-`1"ݔVbY<..ܿJv&L,Z`Ȧ]詝Mw[[F9sui"uO9Uxkp +牒u)hg:xX'=v +.7>#pA7jci\xp>Un_>bf i/a ! IFPwsُ]ve{ze;\eɏptkkI |St+ZHbzV!çöS)9ydݡ;mhЯ{Hg>W% +`U=]=f"aK> -a%SSu}t뀅$FԻBLJ)շªyMUԪ':: F| j˿1Ѕnk(0m#|,hk%9WrxG.󳭉z Ov,Z2*=(O{}f-O)e3Տ y25)ҽǹ"LS-4kʘD>_j8!,jȢs2ʪ/+:\3ڍJ\NC +);̼jrkKu b94׸.Nz ?>{0=3}LO ~mE`>#|5.5>w>nAF#K ++;bR 7NY[9Xˉv1]onU`S7˓ YZ;-U_ݩa<$MJ|Sr{NDsO|_Tb1l'|4z6$B$/2%ü%1ʠ=7 8#asZڂ6d!"P=> +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/GEQLRI+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3285 +/Length3 533 +/Length 3837 +>> +stream +xyƚF˘ 3cBيB6eߕ5KFdT-Juw?|~<~8/%9GM\DiBP`fggHIɌAds G" @:H 0 S ~4@LO.`BS X ,8a xZ8LD'q` +p,  ?ȾA_2.w+O T 21}AZAi`pdh!sXǐ8H +TVg_pvx!k׊!&d?"Є_:!Iq?u<+~rhYZE[v:`dډp +ޟ@!`o^y#GPq-;i=BցP6ՁWp:oe@t*OOwKOcAQNB^JQPiW4EkQtYNQ4(kfgfΎ&mqӷ:#^Ia6=kb#Ma-U*cbz[[~L%?J(,j|y *`4;@оhA7Cf)lgOK^Hyǔ1BX?\۲cD>PZ1W˽Ҫ7nM=9k9?x`JŠp{WdB꫉64OO$7BUjF_/5Z\DGS*B%VB,bnyɹf:J+ 4,s75Y!VϗeTS\xSBJJC8.62+沰^[Mݙ5D[>F-$ִ&I߫ۤmuFD0 +w+\̵l +$LIn1yjl?N]Q]8&)F- n/YUN^5WK'=ȴM->q#7#Pvb[ 8Ǒ4O"ʽM)Umq.Yx j pXsdw^RL(v7OP@} 0|6 Ř\qx1CdMLC93//L{ύ7ĎDu砇MmbYI1x6{Nj)O-ʼn%_W Z!ynr[gk?L2p<~3gvE>l~IKWW}-dy\vhL]GTQ6D[i(V9pԼDSŻdeVF7U i^)uÁ"Ⱦ]gtܺ`+CY$)x3"-hW>N +JяC8jznZA/5jL~nب8m.xzUcSƒe!ϖdt]L|)vMUF˨7Q}+0XKIci$2)#N0xQg$5k9.䋣Pl(au\%VN >mM];k'0Px[&&W,T:/[Gյ5p~loU jFљZpmo#EyKٵn +r 9jrכ"϶yV>SOo=V6Jalhb{J\ k7;ϩ^Ty9]ۗsuKl3 (tJD1 ٔ:CXh3=+cfBKGO|➿zihJWɍkJJm1u_gEa3e] Iq?,>Dyzuj_]0ɪsުMDaQŃ9 Gy\Y?_K6c T29X]HxR'zDI-XɹoY#t߹GLI,҂Hj _MA +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/TJAEZY+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1205 +/Length3 533 +/Length 1744 +>> +stream +x}".U]qEx,"H#QEqAa^a/a)z| d_7s`ůG+V CO)$ +TﻯKVs|D$|pHć0o?S9:l5`?ODK`W6@P(;)y EuP]0wYlil&dcMSYuGǽ5[[-,UZzL|j]綛%ڕ&b/Sx*j$JH8ZE,K5WGL +;P~ysG'XM|fi";>S')k1;{;ro8v*QGBVbc +佒9nyx՗خ|®Tؽ1ݖHˈ<9S6;1wG9`e7H0u2oٍUM5wNv~EI?iNL^9C#\K&:EX+k!|Q -2g[Ni(nAZw),{B٪T,s~55B,nuo6nf]/)up \H-=0E+i2zD~mܯhq,Y6{Zuti9jW@]m:tъ,h8u{JZ_73۔^P787;T]C㊯ʨDcW=E1R4ݭW 7i@aqàieێ9:ۋӽ縑enBe8 #k#׳sU/+?r?w4\l|q*+Åv!ѶxS(*8j:T~Vj^u-r@$g +=mG^.;>sr2mZjm7>F- $lzYz 7pvOt(QڃV^^+(k%胫·XԌ8xx+N*3tP^&Q˷NylL~pt[N^csirpU 3 fc*(c]mP>yݔϝv]Z|/=~].ls0jcWANh[<Ǭ^nf][} +j߃߼iB/'x( aXa/ +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QQCEPS+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)trbf\" "FHEʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?MO=tc`qޮ41F::X&Dd # YKK +/ďH&L bX7V1a &B"RCHcRo/19h@`0@ D7,W:l.8%HdЩ(x?HL;SDڷKaO? Zh8b81?Z@p~캲TdOP!٤ L%?[@X'O{דޑ˾Tc)1-#6?W?D'1@Nl"$2 +rp`Dp0榀aGչC0XRIL&Dg/'YaqJuIkv -*d'`<{h6$0[0ж`ʺ98P"N'OyNQ*oMqG"ãZr:m㮁ydSV̊,}k@{pxM)R赩ƾn;')']7}1_&]'WE<:a:S"~@n/^m.xM8h%[^_z%Q #ӣ^G{k/^}& .51ƵIIh[~N}z?{s]\;P4U9 L֌M>W+v?9q[c~Py{F4(\8&p 1c/E6FzA/քz9TdWY~syݘA>4SvPu8Ṙu?J=ՑKZ8@?]ޡ[ #wP-~dԨf_seJ۪WOscVv +,Rz~tf&w\6֫jy{^sJ/:یUYӾ1v,B[u|lΩ1HQN3}-=c=8i5\ޮ+5ZE7AJҨ hd%xtۙ|zqf!˕lx#Ԯ~r!yq&_K6;Vl h&[M v csw|g[f6 ~+̷Tg, +$D LY&ZOf͢ J)* vb 2w8;+i_x_RjboD(}_C5Tg-);¤2+quJWo0h ȉ\>Yf$8_wy]VSF-l/LFc+|&1'Ts= 7 {AfrYEً_]xFУ,gxțc.{?u%*J6~.mMxyIbT*Lx/Jtz P F{9a"38~=nMn yw5?M--]q3}a"Տ QPC~zY8${դbc +-$2l< <=:lu_K*nzfs<PݭĈL +HZ%Zrh/%7Fi*;ȄNYZ>ux֊eyWt'^8[:ݢV9mW9s2vi'&U^hi-~4QY55jѱyCJ+7BGIg~ (Ikb _1ng ҡKxw2-kn:zkFffdo~ܫGXsa|u9Y6=x)'$RTt@릯kZ[~``㑎#~6<ҵ;wپwՁl q-+q䇃 Ⱥd>妈?.oC~_BkڄZrdơ &Bp$*Dd4"3/ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/ZYKJIL+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9538 +/Length3 533 +/Length 10091 +>> +stream +xUTᶥٸwwq6\w'HpwwwsιsGz֬5)HUM팁v gzff*3IBhli3rY3  jghin  l t41䍜-MLl*v&@g@G@'+Д`ji 0[% 2pmb#W_.?Ii9M@6S<i7\n.bc`dF6wq:Lj'4t0`WIhhlbpvt ;I%+#-?뿦F gU5ha0_?m5q%l25r4sgг8Y\LL>L d311qk9?YY t(SQ`3aTPRξq~췤l{R 6Z{S7V~pHt&{^#)<.e!(Z'[i3v!?ik8e((S7'R\"j-1QJ! m#f:.gȕ +,Hb#AίtvYK +5 l2Y axh6:R<X/Skg_O)R?X`EPB+^>bQJNBg@:8ѩYό_&U#>ddқ/]ӽ{rH>J]u1!BPDyb_4CC֪Vld4{5˜D wfw- /#L"*;,O]"7C|fjG:sO~Z Qއf +#D1[FQ6 t>.G\刯=5bHꫂ1<;?,s 9l|rd6D ܲjEJL`fIeq.-$˟(Da/6}k +E zԑQsTR8r= +c~Ϳb\ 0"pYpv;oua s:>-uƁb.|ջBX{ysRӰϧ%HPXqjm"ǯ\gʙ[JvE&봆WdQ,DTL.5#;,IZ6dEm +-yu|7Pjبw"Pc +RZD1?TV3 +C%ؤQ]&]o&3q}Z MPcBa3i a*S~:܇\qcV4A3uiu RGԧD+`!;5T~*{6Q7[дP}59|(:3yNe$ĵ(Y{ űUF&G ,+MgƓkJ+Aigʳ]%hJ?+ggY>J%/Q:8{z@ѭ+ +$0 2K$A;a$Ht6В$1vN7ُ(~:,z 37X ݞ&`$ffsrA t56cmɁR}nPCq@K&>Sk)aϚmjL$"b˘/L\(&mDT x-auO6%o!^)fzHJ%3.KxCsF>hlJhLD y+Kb@v:[YloѲ3{, H+g4<F4&PKx(ڦGwÛBR7kk +}9TsRMu\G tdm)(w◧Ӂ*LZ|ӗ_>үMSC +B`.䲖3`Ui^]`6{p/Y=i@D{+T>Y%%y~O'ƒ J +'yqpkZ G>]YR;OOIUt9j?C!07\%߅ѝ4RkA,(8;h +)Op6ذqY`e8QaӐB߱\Bf=p|*wq6{a=]Jgae# ܧ#/o⬡_K&4fcBY[ >X7W]P,؆ƽ*Zv!@B/ZvŴza\i[{~>ՂCG47~N+Xdz|ګֳ e*ID"z RH7Te ze!L&yeaI0a~iD +ؤ rSЅJ|"/@T7IUgX*xg;+;o鷢$oO-C;ج-h'Ύ89l$趘{(UCCXj +t=}btҞe՘^i(,gvX +Ac4~ %}#I'seD?W,@_͑4GreW#8ӿ*w=|dxM2,: CBB! nhWS;#\c?m +aحy[^J6WEW}BxM`vt2Bڴ&# mUP;m$G!#Vě~uJ.GCH{be؏wVj}pdD'~Hg "؋))m~ ޓ(\Wd  %=.:X|X4*QtڊROHIP53_~ KJNь ^ 50+vHGrlőG~ֲ$@wz7M9xk`ߗ^W ZPEk9Bh)/U'?6[&j/H~FlḥI8&|ܗ9lk8 @^g@1g7N,מּReࣷJ4E7k Yɷ曡wȑXkn"{w1Bx^\ VO@jwo+:Ꚙ$nU_7@Cvy@& +#kzsJ [|'Cc`ԯ&stljC[fONJ +_:ҁxMDmv +$|_ " L +o&koYhx*92۟Z +MA;/sV)k _Ÿ_W6X~R@ +=,cCW'<_,h_[W|YV + {1I R\'Q'Nfeh$̨uٓ;~U6'NҊđ=V3ɷm3]5ҵ1泫g .f +{g8ÉC#6'#ÓjKBX~݀s,nk+f2FbBuD aIGŷMl5R]e'o܀GӀ>pٖJ8dbH~¶ hrQ^0,8ehm +:|[<_v~Be,f7>(gFh䠴 +NbQ@!CL lllb;vR[=nm1t\uiյ~q"ǖۏW"JHչVMZa~`_E'y ;'ع|M4-D^$G7j?lLs6*yWޚ{m$ǵMPfQ +7GyȒYPkd@A=vc}Zl~ꧏLϱ "(օh=Tuf +]oc]2!bnm3A<)ϭM=4@hI5zV?Qyd*1לt&naC@qх1zܓFollg%}7tIwOW_ TN]c=,ɸpXݛaD~2 bw ֙  +TjX&:A55鹗ZVMƪwiBa +r2BM+0/*hs-0휿x^Wwp$N&g'vk{9S*]X?bڕt}J٠U[>g]KtЮBY'lxW_d|O{VX02U=+Z$Z*EޗB9R*MxctqWZ5n9&at)kVL^#z1`eg*daJB!"ZXVb|. K]@E:vʱHS^(1+׌EKuHc|'o^D +l TGjpp#S.>ȩ2. G( \*%8:)6z]z}/ %ch$]WnzqLvT`T9VTn!앉!mYXDwJny׿<B;o' &NC} &K{Mdr CUL ]Elo>]>g hHp=v3)o5FجUFR,#FGGs7V4gڶDW*3ztZZ]\g A"1 ͽYbk3HP *[t\XL [~ClO #3 YK9jG= +YX<3YӒa8obE/o]o#S9j/&B8C*B;jgL{ Ho9b9IFqmr^x68.%w;m1wV(πCUC-vT^O.`CFu> +yo餜`i(l;A"c3'Tp`8ۖ_or NgHhrչD#?֠bG`(K8o ayK+U Wa. + < 6jjSG4 Mej* tbZR++ +dYrf_KQ;07[Kp!shi%]V@ UpIiʐNxTB|J$&.@H`i.*(2jI6օdAUANPE[gk DVot qDŽKwϵ/_YWن[9=ɍsay!C6 :tR xGknw6:mR~Х]%YnQwU @:+Xn- KakNW9 [&IUc8<[FxȗhbHGﶃ_ѣ/"%yy9cS9$s4[zM^3bOP(b- &uo1p +[ЍѰ2HGJgqw&Ӫa+'ax:h>v {yVxz1[D`L0@%7 L2˜|%d섔{,B;čٌҲN0 a't5#z k[P1L:ȹ \qN2 65P *>=u+wfPO+gTz[T"}]&9qB~3<(g$$/QHekT1=tZ=[}3N Il}[ `Ip;ɥôΆ!͎896"R^7TI dz _4cν~SI|omEXn%dvބI 9&Ke4 )W&p3DJMz<=W^Ȕ ; +z|P`̍dMBX)#onj.j}#̏I;.i>N2C{@StW4%|ԐEG=۴It~'WjX7n(U(cX ~ 2;#}>Jx g櫊 +x[dWu>ĒMd f8ETeWO\yqUIWCIidTd"/_F܍2ĢONx,)' p +Mn H'XOHDTl$T jr UwfcJ16yg gp7NR:Y/%-O`|vw2wH}!xN_1/s/+9 +*Sm֒ж@N ~@N0Sq’%OvB(E \d&9ʽ_/P(2?#y[mIgV8fq#R3L3 #'x;B非Zc.y*&MԼi߂(f)VA}iլ0k5:sÙTX>Г!I.Ɏ-,^HC_1+ѵB_A= f۲%ηCN7'8HiOAO*IԏQyf~%1$Ym;̛%ż5X^?ܲdPj~D1w~%M T<ɥ,{̸Ζ'Wd"2 +i^^l$al\}gscd[ StDX$\j{Hl. Jư&"dXHv~ uoo6؍f>L1!" B}N-OWA[XabP~{ݑ%FwX(\F*,967*W! +bdc3M@af9 pᰢB4hqۑa/p f]TsTVئ^3b!cX`_yQ5.%ʠP ̅paI6sϐ4A־n2tX< ^T \dC69)zMbZ\ 1@ Q\hQ=0g:|r +%`r:=˺B/knMNt_W޶tot7 +@%E}1HFf+薿3.祡k9J ^اAܣC:#綶> !kQQI%;9yᴩ$bDAq$f9U(Jv!D+yFfȃE5dS'w8gyUf"Oo'ѽ=1=̵?_@۵ρ 8ou9oq!w}6ATn[2BRZ;hFI8c?+kׂwm_v#uhӼ냟P7r*fޤ$h>)[W~]hBpOe: x\VQodO^M^5eȜHz>4 ,94ڒ%+䵷 ]T]PBn1odX-悛O$xuP\S.}So4R|GVe)gK#e1w]4&JRt$*8PAp.'"Af[Bќzi|Y$^Ȱ!]o[ ~ zY(mu1r|pƚǢIE fH9phxnrRݿ/XxjOMV%)X cWֺ*^ƛuo֚dDS6]{tq[BxVوk\I].w_sIxr'X׽b~Ú/giR"aU57)@p{xJM,_ +5V>wu0jB 0#}*\ɓopjSgUPK(J_r=oHWPWdL*ˤ$Y5?sJAbf5F$0p]QJK(s6Z٬R+~OH%Jv+cT֕(+@'ܵ@Pb%'>|,hTOcXyhȈB(iװ5 =/'קl`ޛQ1"nކV(o޼yGPx$xH0N{w)(@>tZ7\m'R,K~h`@>< ILBca4*+D=5#M(I4)QA;ןŖ7  ɾ=}va +7b@råVTPqs,5܊L FIadJKD; ayq.'wڗsr8u@B>M܀)?.y' LlFvF0h +endstream +endobj +74 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/BHDCQZ+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 73 0 R +/Flags 68 +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D90Jɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +129 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/AYETLX+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 128 0 R +/Flags 68 +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq)[ANP.A{p 4@pNsoK~{sEO. vȹ8A@@ZU[ 9!0% " +>'::=@jk0I3H:Aܡ֖UK9b |#@W<Z DG`5 `:slK{qx0=s2).Ύ0Cy53뿡{NPG8\\=aw w>/8U"j-l yrPX +X:z@!࿃<O ICYؿPg+/5_ܡ>cN ''|o:[ζm3¿SIIqعx7_P7O _PO s3<?k 5,"(9%E+։EÂb ԅLJT+✺6R%_^ݣׄa} (nod4<x Alʾq=OLI ϑx2:t)_mGWZ!yU+9c ID&q^CZO0gbrY prO-|GM΀ܫNAXh7jr&v"i8?"M24d$_mOuZ3lsx%wUe: +氢8k\z$Y'ny|g ~WOlHW1)8 j}dRGvfjĝx'=M)~A&n#Xݻ&$(\{ BSpdHRp\IkF]JԐYfA~|KuӠ{Ki֗ ,(_08)A  +VF8#D?=DmD'_:_)cS&6R7/R(+K;4L?pe(ͦCp#|. ~]&is;fOΏ;7da-]~:C O)N5x48udM[/D p"MҮ=j|*="t5ȟ ~4OQ1a(􎞠-6nDl2SU|lޞRX21H<&ak]ݿAkjaHZ<݉%HW#*J m.'v$ Ա!Q/:^3k<pCw{6̊3"ư`Q}0|A\RfCXF 푴J*%-|=XR(5[$u:I[lZ6} ܁d,àJ2;\ebiŎyNEq a~ klPjZZ{~7mߺqٟv7aFe2utbǒ[# ~mZ_'S}Xi꟒Ń4eV\Z%zuۍ";(1}{g-Xq˹ ޏC#O-^B&Qrjx+m05Ew tx<8Et1~c:X㤔-^Pg;F߰NtUJQ4& `K]KFdmɞ,ҡ}O'C iӉfhMˠM|&LYa5&EW2 HE ǯZ *Һt + -hh\ĵ.ޔ dvچoL'(PylWl'`#u|g,/㚵5M9g>#q^4"~RX34f Lv,U& 6 F9M쥄6yjj'y@5rя毳%lg{נs}5y>Ј 'WJ/7hgm[ߣ󌫅֠2xnl2BEnS@[-SB8-vPzW>3WKU2#iFNbb +(O :W&YTy+ &7>ЉRv~~>k$R-fL7^!"C0EsiK[Ap+tfR4/c,u\،\0/U6`k :׃4 <B>F9E?mTuw(PM)6$sJxfN;uUQy܋"҂Nj'jX[ׂ4Aqꋴ:-ŊR7޳kaoi#g:/Baw|,S+] +WG8LEFM< `Mدc9PDGS6o0ߗ_ rR,Xe4Dz{rȌy]дeHs<޷Vi gI..| Dߐ2 ݗ2$%+z*Ƙ|HrJhE^135܊(YZYW4Dž;|d8R + l0 "K5#'P>8#x 7hޟ!P,KCcE +gvNRj͍_&` 85@X0x2Fm,W1C^ծG(U.#>OA(zb~)fٱgw[g-:kbp~d_0~+ƳD3KbDo/ˆj6kWw>X~;[_C nN6FMo#tc_O䢮2}^LpktJ$̻+_:Pn(#iع#GO6SM~ Q\\cݩUmhCt^P +~u]}A8f~lYE{jE,l2N`#=3jFL:Ӣ]߫ o:+. 2Ԉ?^G.0E Q27p֪[+1V=h\0_ӌsi.wc;İ^KP qz2sńmm%CaLDF'oY]eVrjyPgISU +7%N| )bDl$ Ja&(z'K^pxQ!ҬyvS"ZgW4 qyD– +ZϢN,{ď’ *MK4|MĻZ2.:eïa5 +UfS[J#6GJi'I룧P[f$#BUlmQò:tL-@mpaO:Q/@zdhcc +q~ + ;P]4#NOTŒdW?f87qњTla0FK:b~/.mRj=xX9$JM>G 4g.:Pl4eSUn׊g#ǯ7(mP0Sua!avu`G}ʧn_2%NH wEX,n^ T+hvJh\n9KLUuHO_|dGLёiz# ).Ы2M3p#öd+{|I~4"!:/_l]ش>NS }9\mo($ߵ!ǡf<8<~s4-nL ,핟leiI=9Y/xvBsb%E_pz}b-4# K=>ZrR5 T0e`ur;kiO' =eIG#|;Jf΂MŸN@F=mR* o|!x[NQ8I{8(Yl7 ~+  %RBG- +ף >w&x\Pj-, +9~Ԯb\Cb993"S3ѥ5~9f \.h5!9(Ջaiw)P'_Rc:aʊЁYi[ b@#KQu`MG+7!~B<:*6/ Wz8x !MIKQ)vu:vd_4=kiǷdM5ߘ؉7qp5H_:ͩa G V0[? > +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +133 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 44 0 R 63 0 R] +/Parent 3 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 135 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 135 0 R +>> +endobj +135 0 obj +<< +/Type/Pages +/Count 2 +/Kids[82 0 R 86 0 R] +/Parent 134 0 R +>> +endobj +134 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 78 0 R 135 0 R] +/Parent 3 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 136 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 137 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 137 0 R +>> +endobj +137 0 obj +<< +/Type/Pages +/Count 2 +/Kids[102 0 R 106 0 R] +/Parent 136 0 R +>> +endobj +136 0 obj +<< +/Type/Pages +/Count 5 +/Kids[90 0 R 94 0 R 98 0 R 137 0 R] +/Parent 3 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 138 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 139 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 131 0 R 19 0 R] +/Parent 139 0 R +>> +endobj +139 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 138 0 R +>> +endobj +138 0 obj +<< +/Type/Pages +/Count 5 +/Kids[110 0 R 114 0 R 118 0 R 139 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 19 +/Kids[133 0 R 134 0 R 136 0 R 138 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +140 0 obj +<< +>> +endobj +141 0 obj +null +endobj +142 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 140 0 R +/Threads 141 0 R +/Names 142 0 R +>> +endobj +xref +0 143 +0000000000 65535 f +0000109369 00000 n +0000112527 00000 n +0000112172 00000 n +0000112377 00000 n +0000109533 00000 n +0000004047 00000 n +0000000009 00000 n +0000039197 00000 n +0000039013 00000 n +0000000913 00000 n +0000044103 00000 n +0000043917 00000 n +0000001906 00000 n +0000049686 00000 n +0000049498 00000 n +0000002823 00000 n +0000112277 00000 n +0000003740 00000 n +0000112327 00000 n +0000003992 00000 n +0000109636 00000 n +0000011835 00000 n +0000060039 00000 n +0000059850 00000 n +0000004108 00000 n +0000065311 00000 n +0000065121 00000 n +0000005054 00000 n +0000070615 00000 n +0000070426 00000 n +0000005990 00000 n +0000006966 00000 n +0000074512 00000 n +0000074318 00000 n +0000007920 00000 n +0000078107 00000 n +0000077916 00000 n +0000008866 00000 n +0000080638 00000 n +0000080452 00000 n +0000009860 00000 n +0000010824 00000 n +0000011736 00000 n +0000109741 00000 n +0000019819 00000 n +0000082989 00000 n +0000082795 00000 n +0000011897 00000 n +0000012868 00000 n +0000087135 00000 n +0000086940 00000 n +0000014484 00000 n +0000015436 00000 n +0000089188 00000 n +0000088993 00000 n +0000016343 00000 n +0000017325 00000 n +0000091845 00000 n +0000091659 00000 n +0000018302 00000 n +0000019047 00000 n +0000019694 00000 n +0000109846 00000 n +0000020710 00000 n +0000019881 00000 n +0000020585 00000 n +0000110043 00000 n +0000021713 00000 n +0000020772 00000 n +0000021577 00000 n +0000110148 00000 n +0000024337 00000 n +0000102245 00000 n +0000102051 00000 n +0000021775 00000 n +0000022785 00000 n +0000024189 00000 n +0000110253 00000 n +0000025337 00000 n +0000024399 00000 n +0000025189 00000 n +0000110358 00000 n +0000026335 00000 n +0000025399 00000 n +0000026199 00000 n +0000110463 00000 n +0000027510 00000 n +0000026397 00000 n +0000027363 00000 n +0000110743 00000 n +0000029054 00000 n +0000027572 00000 n +0000028895 00000 n +0000110848 00000 n +0000029775 00000 n +0000029116 00000 n +0000029730 00000 n +0000110953 00000 n +0000030473 00000 n +0000029837 00000 n +0000030427 00000 n +0000111059 00000 n +0000031482 00000 n +0000030536 00000 n +0000031334 00000 n +0000111167 00000 n +0000032504 00000 n +0000031546 00000 n +0000032356 00000 n +0000111452 00000 n +0000033750 00000 n +0000032568 00000 n +0000033602 00000 n +0000111560 00000 n +0000035006 00000 n +0000033814 00000 n +0000034858 00000 n +0000111668 00000 n +0000036417 00000 n +0000035070 00000 n +0000036257 00000 n +0000111776 00000 n +0000037566 00000 n +0000036481 00000 n +0000037406 00000 n +0000111884 00000 n +0000038949 00000 n +0000103662 00000 n +0000103467 00000 n +0000037630 00000 n +0000038553 00000 n +0000038891 00000 n +0000109951 00000 n +0000110649 00000 n +0000110568 00000 n +0000111358 00000 n +0000111275 00000 n +0000112075 00000 n +0000111992 00000 n +0000112459 00000 n +0000112482 00000 n +0000112504 00000 n +trailer +<< +/Size 143 +/Root 2 0 R +/Info 1 0 R +>> +startxref +112625 +%%EOF diff --git a/src/axiom-website/CATS/schaum26.input.pamphlet b/src/axiom-website/CATS/schaum26.input.pamphlet new file mode 100644 index 0000000..9bdeec5 --- /dev/null +++ b/src/axiom-website/CATS/schaum26.input.pamphlet @@ -0,0 +1,552 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum26.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.525~~~~~$\displaystyle +\int{ln x}~dx$} +$$\int{ln x}= +x\ln{x}-x +$$ +<<*>>= +)spool schaum26.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(log(x),x) +--R +--R +--R (1) x log(x) - x +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=x*log(x)-x +--R +--R (2) x log(x) - x +--R Type: Expression Integer +--E + +--S 3 14:525 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.526~~~~~$\displaystyle +\int{x\ln{x}}~dx$} +$$\int{x\ln{x}}= +\frac{x^2}{2}\left(\ln{x}-\frac{1}{2}\right) +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*log(x),x) +--R +--R +--R 2 2 +--R 2x log(x) - x +--R (1) -------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=x^2/2*(log(x)-1/2) +--R +--R 2 2 +--R 2x log(x) - x +--R (2) -------------- +--R 4 +--R Type: Expression Integer +--E + +--S 6 14:526 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.527~~~~~$\displaystyle +\int{x^m\ln{x}}~dx$} +$$\int{x^m\ln{x}}= +\frac{x^{m+1}}{m+1}\left(\ln{x}-\frac{1}{m+1}\right) +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^m*log(x),x) +--R +--R +--R m log(x) +--R ((m + 1)x log(x) - x)%e +--R (1) ------------------------------- +--R 2 +--R m + 2m + 1 +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=x^(m+1)/(m+1)*(log(x)-1/(m+1)) +--R +--R m + 1 +--R ((m + 1)log(x) - 1)x +--R (2) ------------------------- +--R 2 +--R m + 2m + 1 +--R Type: Expression Integer +--E + +--S 9 +cc:=aa-bb +--R +--R m log(x) m + 1 +--R ((m + 1)x log(x) - x)%e + ((- m - 1)log(x) + 1)x +--R (3) ------------------------------------------------------------- +--R 2 +--R m + 2m + 1 +--R Type: Expression Integer +--E + +--S 10 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 11 +dd:=explog cc +--R +--R m + 1 m +--R ((- m - 1)log(x) + 1)x + ((m + 1)x log(x) - x)x +--R (5) ----------------------------------------------------- +--R 2 +--R m + 2m + 1 +--R Type: Expression Integer +--E + +--S 12 14:527 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.528~~~~~$\displaystyle +\int{\frac{\ln{x}}{x}}~dx$} +$$\int{\frac{\ln{x}}{x}}= +\frac{1}{2}\ln^2{x} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(log(x)/x,x) +--R +--R +--R 2 +--R log(x) +--R (1) ------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=1/2*log(x)^2 +--R +--R 2 +--R log(x) +--R (2) ------- +--R 2 +--R Type: Expression Integer +--E + +--S 15 14:528 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.529~~~~~$\displaystyle +\int{\frac{\ln{x}}{x^2}}~dx$} +$$\int{\frac{\ln{x}}{x^2}}= +-\frac{\ln{x}}{x}-\frac{1}{x} +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(log(x)/x^2,x) +--R +--R +--R - log(x) - 1 +--R (1) ------------ +--R x +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=-log(x)/x-1/x +--R +--R - log(x) - 1 +--R (2) ------------ +--R x +--R Type: Expression Integer +--E + +--S 18 14:529 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.530~~~~~$\displaystyle +\int{\ln^2{x}}~dx$} +$$\int{\ln^2{x}}= +x\ln^2{x}-2x\ln{x}+2x +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(log(x)^2,x) +--R +--R +--R 2 +--R (1) x log(x) - 2x log(x) + 2x +--R Type: Union(Expression Integer,...) +--E + +--S 20 +bb:=x*log(x)^2-2*x*log(x)+2*x +--R +--R 2 +--R (2) x log(x) - 2x log(x) + 2x +--R Type: Expression Integer +--E + +--S 21 14:530 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.531~~~~~$\displaystyle +\int{\frac{\ln^n{x}}{x}}~dx$} +$$\int{\frac{\ln^n{x}}{x}}= +\frac{ln^{n+1}{x}}{n+1} +$$ +<<*>>= +)clear all + +--S 22 +aa:=integrate(log(x)^n/x,x) +--R +--R +--R n log(log(x)) +--R log(x)%e +--R (1) --------------------- +--R n + 1 +--R Type: Union(Expression Integer,...) +--E + +--S 23 +bb:=log(x)^(n+1)/(n+1) +--R +--R n + 1 +--R log(x) +--R (2) ----------- +--R n + 1 +--R Type: Expression Integer +--E + +--S 24 +cc:=aa-bb +--R +--R n log(log(x)) n + 1 +--R log(x)%e - log(x) +--R (3) ----------------------------------- +--R n + 1 +--R Type: Expression Integer +--E + +--S 25 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 26 +dd:=explog cc +--R +--R n + 1 n +--R - log(x) + log(x)log(x) +--R (5) ----------------------------- +--R n + 1 +--R Type: Expression Integer +--E + +--S 27 14:531 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.532~~~~~$\displaystyle +\int{\frac{dx}{x\ln{x}}}$} +$$\int{\frac{1}{x\ln{x}}}= +\ln(\ln{x}) +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(1/(x*log(x)),x) +--R +--R +--R (1) log(log(x)) +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=log(log(x)) +--R +--R (2) log(log(x)) +--R Type: Expression Integer +--E + +--S 30 14:532 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.533~~~~~$\displaystyle +\int{\frac{dx}{\ln{x}}}$} +$$\int{\frac{1}{\ln{x}}}= +\ln(\ln{x})+\ln{x}+\frac{\ln^2{x}}{2\cdot 2!} ++\frac{\ln^3{x}}{3\cdot 3!}+\cdots +$$ +<<*>>= +)clear all + +--S 31 14:533 Schaums and Axiom agree by definition +aa:=integrate(1/log(x),x) +--R +--R +--R (1) li(x) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.534~~~~~$\displaystyle +\int{\frac{x^m}{\ln{x}}}~dx$} +$$\int{\frac{x^m}{\ln{x}}}= +\ln(\ln{x})+(m+1)\ln{x}+\frac{(m+1)^2\ln^2{x}}{2\cdot 2!} ++\frac{(m+1)^3\ln^3{x}}{3\cdot 3!}+\cdots +$$ +<<*>>= +)clear all + +--S 32 14:534 Axiom cannot compute this integral +aa:=integrate(x^m/log(x),x) +--R +--R +--R x m +--I ++ %I +--I (1) | ------- d%I +--I ++ log(%I) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.535~~~~~$\displaystyle +\int{\ln^n{x}}~dx$} +$$\int{\ln^n{x}}= +x\ln^n{x}-n\int{\ln^{n-1}{x}} +$$ +<<*>>= +)clear all + +--S 33 14:535 Axiom cannot compute this integral +aa:=integrate(log(x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | log(%I) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.536~~~~~$\displaystyle +\int{x^m\ln^n{x}}~dx$} +$$\int{x^m\ln^n{x}}= +\frac{x^{m+1}\ln^n{x}}{m+1}-\frac{n}{m+1}\int{x^m\ln^{n-1}{x}} +$$ +<<*>>= +)clear all + +--S 34 14:536 Axiom cannot compute this integral +aa:=integrate(x^m*log(x)^n,x) +--R +--R +--R x +--R ++ m n +--I (1) | %I log(%I) d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.537~~~~~$\displaystyle +\int{\ln{(x^2+a^2)}}~dx$} +$$\int{\ln{(x^2+a^2)}}= +x\ln(x^2+a^2)-2x+2a\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 35 +aa:=integrate(log(x^2+a^2),x) +--R +--R +--R 2 2 x +--R (1) x log(x + a ) + 2a atan(-) - 2x +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 36 +bb:=x*log(x^2+a^2)-2*x+2*a*atan(x/a) +--R +--R 2 2 x +--R (2) x log(x + a ) + 2a atan(-) - 2x +--R a +--R Type: Expression Integer +--E + +--S 37 14:537 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.538~~~~~$\displaystyle +\int{\ln(x^2-a^2)}~dx$} +$$\int{\ln(x^2-a^2)}= +x\ln(x^2-a^2)-2x+a\ln\left(\frac{x+a}{x-a}\right) +$$ +<<*>>= +)clear all + +--S 38 +aa:=integrate(log(x^2-a^2),x) +--R +--R +--R 2 2 +--R (1) x log(x - a ) + a log(x + a) - a log(x - a) - 2x +--R Type: Union(Expression Integer,...) +--E + +--S 39 +bb:=x*log(x^2-a^2)-2*x+a*log((x+a)/(x-a)) +--R +--R 2 2 x + a +--R (2) x log(x - a ) + a log(-----) - 2x +--R x - a +--R Type: Expression Integer +--E + +--S 40 +cc:=aa-bb +--R +--R x + a +--R (3) a log(x + a) - a log(x - a) - a log(-----) +--R x - a +--R Type: Expression Integer +--E + +--S 41 14:538 Schaums and Axiom agree +dd:=expandLog cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.539~~~~~$\displaystyle +\int{x^m\ln(x^2\pm a^2)}~dx$} +$$\int{x^m\ln(x^2\pm a^2)}= +\frac{x^{m-1}\ln(x^2\pm a^2)}{m+1} +-\frac{2}{m+1}\int{\frac{x^{m+2}}{x^2\pm a^2}} +$$ +<<*>>= +)clear all + +--S 42 +aa:=integrate(x^m*log(x^2+a^2),x) +--R +--R +--R x +--R ++ 2 2 m +--I (1) | log(a + %I )%I d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)clear all + +--S 43 14:539 Axiom cannot compute this integral +aa:=integrate(x^m*log(x^2-a^2),x) +--R +--R +--R x +--R ++ 2 2 m +--I (1) | log(- a + %I )%I d%I +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p86 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum26.input.pdf b/src/axiom-website/CATS/schaum26.input.pdf new file mode 100644 index 0000000..3e64ec6 --- /dev/null +++ b/src/axiom-website/CATS/schaum26.input.pdf @@ -0,0 +1,1950 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/AFXDYA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/JAHHGJ+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/COYIHP+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/PGFEYZ+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/GQFMSG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/QSLPVM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/PEMYOS+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/HQIIYS+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +41 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/ZQYGWY+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +42 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +45 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/GEQLRI+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 778 +>> +stream +x͗n1<=B]qUy$ RK2@"Oǽ۳$Sk]W=J>յQhP[:Jͻ_ c{stumUZ2`3M6_h`2X-7"8Rhqi16Mˁ|2ЊɘӬj=c7AceOxryyaM +&[.I A‚P*@aZZU| 3pY$( N6a+a_VHADQ +=Bg) Ns2O h 0Ṗ%!:{ >d8M  `$-83ͫ8+q,Rbq8P7Yt])%KvEwɓ(ߜjI7'W~` wJ@} 擻L$JB{1O1)9J ""AnѹY㔕S`B1kum5[ M?f7ƒ4;B[%m +W,ƨko 誜m9#5N &KaWDO +'2(m'-} +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/TJAEZY+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/QQCEPS+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/ZYKJIL+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xڵMo@!Nv C:U{l!쬉% `.pIպRh}VQ=|>$wC\xS +AGȤO$S^yD JZ@l7S_v)+> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 624 +>> +stream +xڵUM0Wo'HZcnR`S) +j; "!'73ox€1&|\ +"_pPcA@s8A&|\|Cl .ѥ H b +i +n W"8BeJ`쒱`BQ :}"{aG]ۦi-'Ƹ[g`b"5:l]R€pIDHs2/"aHf&bmuM0eטZ:uipTV~R5.k[rā~ u_9#J0*x@I9:`@GqsZhFV7"U[gcCX3KUj4K Qnt69g/ONk>Y|% ߅*Է6]Rnj)XxuzFR.=ơOa +]g#{"ELjWqM|~췿8Ͳ 4}^r9?XFLnqZm$TW :ߨG\Mܛc5&'eEViNTRF*VnPt׼[-[?V +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 777 +>> +stream +xVMO@W!;協KUc bRĠ@w߱cDڞoߛ] ݱ|>N5fJpq@Hh+y=,nt=zznoC5y"CV"(mr6EQWE[bXf;f <\9tr9`k,R6f gh[Ux@Z+@hc71*61 x9-_G +y,Cͨ4Ð%qqV U %!RKݝ*HT8"F<b8OKК.`5h7, jEGZ6veq.E Ւi,e>Y>YlVQ#jeEL:IAɎ{L\4[:SjuoyhI -n|=r,h +|EtU)'9[ϟ$ܬwtN.%ط>C.-:MNWbhөx1Q:4* t-/~v/{O080ׄ*KY@)>}L'Eev%q>=uK0(]nΆ=kZ,& <&aN8z8dՀzaw~܍5QrńFw]4q{;|xΤWsO^oX]S0h[ocuӉ ]L;wiSw_nIt{IgQJgBViiM《Du-f7,{ٔ>F +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F2 13 0 R +/F8 38 0 R +/F3 16 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 387 +>> +stream +xڵSAO0+z1)Ѳ2H8hF6n@Em-A&¡{__19;pn| z=@tZZ0l0<r=`ZUZbC$A¥xkXJV䢽ܯ ٴb)f5~v}wRoq ?̲ )\Ǥx}0a&r;DȥXH Hlbb(;U%-%tHLg}@ZdO6U|T2yM'Xq, +{#'FA!GB7 7`U쪍$LWMI +qJ L)|*)Ya*ۯOo; m>x\Dgs) +endstream +endobj +74 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 596 +>> +stream +xTKo@+dg協 uԤ"¿gv& fo,>޳J1T +1`5@iVԀ#ήfQMqxegB%C +B$uYQV+p $b}I9*#ĸ!7lCsŦq`-9^BLsmcdIu} ýO,uBR2·;ipа'+-.*<BDžhSxT]aI2!qU۾79( jU1fPh Dcm/N2y\ |}hÖ'gIF5.cH`݀k3TUHD#il]xUcUu2ۗOz[E3S"!aP[z_LJm=\="\VGIϛvSf~x!Q.y &XFf1+ hhsR} ψGَT>I]}l6/ƶih\U|6{ʍH W +<9; +D:*msTu +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 52 0 R +/F3 16 0 R +/F7 35 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 649 +>> +stream +xڽUn0+xpͥ4C&E{K1Gन]Xv@}ݝ-e&@`}Cbӟ X͸4~#J]͈PZ0ބD *%LL9hŸM &Ds\Sv9%f%Xɸq [3IP߮؄4Ƃw O 1j) i0m}`}5pP{@4IR 8҅aӂV Q2Dg M DŦRhY|Z!:ݲ,fV^aڀiTI)I IB5vDm|HXF)T!9^4+9kAˉU0]{<$%pyͨK44|UtժqHlO)a^rX-vcUdb0 Z }E+)Dc}kx&YaT$9˱93%;MWfe}9?7Z|3FcqXO LܕIxƹz樴 jd~WZ?SvwGًS)qnՁ'6ÿGk8\y{; +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 52 0 R +/F3 16 0 R +/F7 35 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 567 +>> +stream +xڭUn0+xᛢZ)c^쨎PKQo)b;RBPvZODL!QiFBX"a.!fRɷ,ڥ0d$R~zT'T;JqS!iXsî0$2X(C, q;X*-ĮA-́!҃v,t`@2D~7.jr\ r8QX NcOmS7咍KW+זFlDgm -C9az< A"VBP<$ޒ(hc3VZewnNpp[) +RV.\"`|Afeejxw%OK2 +1`đԛ?2eT `FuϵPG v96H>g8쏇4Xϧ|g,OWcN36xU.:;1_t%lBۨ{6˾s#Hk72v*x}> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 750 +>> +stream +xڽVMO@W!dg?r +U{p)).H}g8@名wތ7 ݱr>'g0$?]%nIzJ(pt=:9̃!сV5eʷh5ȋq"Y@,U) v:'=3A9gDI@ )aUԐjj>m"W%SQՎ)>S"]$ =ӠmNxR8uI65 4uh^.jk!'*r'=2P3V&LN+&{o`RҴRkSii=Ek +6Ff"A6 g HABǽ +6ЉuV⸗YVk2;Q,7ltg͈:wNIGY8mClM#AI&bXsh<#[] 8ҒՍl:9Ϟ7켤Vj뀦ލmlE12?H` +endstream +endobj +90 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 52 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 304 +>> +stream +xڭRMO0+z,1m mdY.7@" _M_/\nbb/ӾyM;SD (Cp͎#D R(@r +o0@`="6Flos9#}Sԙ$ɒx +סWFyi@Up F, l&0sv݈ %pA s7A|:+;8hoAߴzUo:ZME P O^3JrIJVEI]6권SAecs\MU7̄$B`KbfAx* +endstream +endobj +94 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 554 +>> +stream +xڵTn0+xp]>%X+F9Ȏ#STRd) Hqggw+2B%ks6* +b/ff(Ͳ/9"RҒhjXS-(YS3 {Z"@ɸ$@&oC? Kΰk@}y9J*T +&ޞ77؆S!ߥEJB# 8j\ +nx'2PVþ>47{ 㘓u"@#ƾ$m,[O6 lyhAvmpuZ{,6FF>;/\.D{ Y}zQ\2pGzKuy7񐣶:ܞύQʼnJcoI/5\ =9$9O+-{ZGjo +> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 1016 +>> +stream +xW[o[7 ~߯ +/"R}ذteu x%p\K܏&KG(#EcR;>ߦo5-fӏ̂pqB6]&M_Qj~[˂6^pB–W)%`EЌkJCaS  +[/ektWu-}Yޣ46#V&񡏚;1(BhVc^ +Izƒi59BQnk;X]m*};HUJ T:~3@ wcm q\=qoqk M559~q(lnzj+c|FTBbϚI_]YP.[Fvgu>o.lNj1M7_|p~]*}{cڼZ?ra]罻bQ.\~o~T<śfYݬ8&w(_O`)Hkl + ,Vˤ-nqDC1(!г[<>FUؽB,_E><= W>g긲>z>hIcؐϡ_.&eZ{U(p阸~#)U#T_Dk$C=˥v;$-F#l8Bb-l{d{*aa@ꉧF&zR=l88ڋ͝f >:z@A4@ 08gIچ+ZM۸0 ,4o;h%'i B&wAv򜀦U>];B^'N +JuUЫHdȿ|L Eꇟz= nvç}> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +107 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 106 0 R +/BaseFont/BHDCQZ+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 796 +>> +stream +xVO0_bJ>K&$%3ՆIܿH8O)砒 ~9D5%Tz9x|eV;2\hMhr`*2 &qwm4 +#*Ÿ`7l8L-89"&DD2c4-XòF^uNyI/ь)^ {`Y`kkYZGKO.dzl# D-NJMA`eY(Z %+D8yLp=2rlMZZ֘bc`=c^ϋ* +[n:;[@y +RиrfEX^Oru6CXuq6AП𤖮I2_Nj^GWS|wTCJzQ!%)t1I8 C=sh_2g'n +Is9[䴺_#wI1bNãGKS\.?ؘ{[椉41R$͑sŌR2Yꒊb"uDDi8> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 744 +>> +stream +xVMo0 Wĕ*Q_v6^Vzi7-(KHaNɧGD8㜬I|"痊Ť"f52o"!'Tэ!LK;]|94$eq{˴0c$vrDYB)ӚWylcY&Dj7 "%XB[@> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 795 +>> +stream +xڵVn0+xNɀ--zjKm1؁w(j)j_(l )!J(EkT,ЇŕDL!'Ҍ6D7!fNDο\\iX[%ʆЪp8lwIPy0CF@n[Y #H̋m^z;" \#.@H)PDF~p >%Qw""f1')19 QÕ('̴&qeIe5F hjk%?<7MHGC̍ f@l5.}sq-rn]QnM^oGxĢ&; +MeYVQ0 hUز.%~#abC@HEo5Z5QC{d{Z{H8gS5{a%1p$r5ܗ ^ ᒜ L$t'Uwe/!, ,=Xmnz0:tWkt:잳!}Β`_'A~qzǓJeLtuv agP%t~8] +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 52 0 R +/F3 16 0 R +/F10 45 0 R +/F7 35 0 R +/F9 41 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 838 +>> +stream +xڽVKo1+|A6x+rp ďglI6A-'?e%%cqy^(&HFߙ`5Ƃ .gqsAjZfa 6$\M>%!:ANgtlĂwL('1fx1[=q,<<k벳v`lb: !A + %>\8 *$ zl x0)][yuA]Ѝ26K]shw+P&^\' Xy$@[(m"U 4 r$1['~`{$fW#)dpqBsFj3!Μ.2 +Qй^FңNwHDl@ͪV%RN54Dsͧ.qIQ6igӂ0sq AT^M`YWv'Zg5sl9H0 ˔}]Hzd743lQ\fPiOlR=\bwJAB"Pa# iWt=Tx͖waŋm6w8K^rmN]>RnC4Dqq>Z80w+: &T:}͑t,C:R4FVb{]=LkڧנruЧG4R ut9Oۯb|c3Itvug`GF2"nv^HbF }rӪq1Wu/&Ϳ`&.,'al +endstream +endobj +121 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F10 45 0 R +/F8 38 0 R +/F9 41 0 R +/F14 107 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +126 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 125 0 R +/BaseFont/AYETLX+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +127 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aMZNT)@\X#CUƸ0 pvo02|SDtk 7sI%no")K ٽrWW?Q&$-;#B)@"s5v +[m?.|j}zWzIJLƛL|5"Ph˩٥+ 6+N*>uպrÚ؅\_l_hVnYťHkzyy~U:c +endstream +endobj +128 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 126 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 128 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/AFXDYA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4019 +/Length3 533 +/Length 4572 +>> +stream +xgXۚ(((E޻A UzHR $HGJ(J ]z*N(J Ip{9s>g7|>ﳞu c5(FaE$D%$ G4X"@BAAsH$d%h7o  !Ka0 +:Ðg!0`aXoQ@ ~gJ=ԽbHְ06ނĕ +1k!W t[9h%A݂QFtLz=A,6E2z\p/S[}@~gϡ.YAQk\B b$T-7 n="‘4bCS"5ӺR9*U Uvf IELqT\A_=:vR-BE^y1ʾn.F4X]N ܿW2aj!FWi½1P|j#eYO/k *'3`(0'pAٹxs?^塗k9rUB+AOW6I۷jL6wEN0G$|支&SSP_odG<4g0X+Z İn|{֓~86,˲y>`v<4e6}f<'*xHلi%fG&6WK;]< Z0@]k|M \WRp"ۊ)#/Ů!vS!`-AOy28tϑ@S=BeQ$lt7֠Zv'cnj"elqb(N"|ږWt:5"»fk!,92MWlKb]/s7\u.alrr] 6~ԛMrwa8POդ:/cQA 6•*z7bȌHZ8H W3էejRY~r~sKۊJKHuoEHOYXie;K,*z\5CpTͿvݾGRFo|0,\`iOe9m~BM"4 bMu9< s9J`-]$w2y'6> +{3|yZCic9_?=DS* +p_Kɿ]V~x lSm ; +XІFn.?ƠZP'ߐe'LEŐM[1#pye nT3 - +\#leBVυ5t^$LI}D@l{>$Qf^toc)hDVFǧp%TX^S0%^P>w񊇝C&xqPhFJ,Vg ? BOPf$XLqg'b3ُ/ZN3~|s-T~:LS̳z'בp&f)H;%oЄa?YҶb![.[_J7HYO\mlgفdEz7aE?W +;z'@+ɉjʓT!sVςx h_l7vkA#=Q4h0Kػ*bhkgSoOl=%ܕ +!fPx42ŸvztM]#m|Jm9Q"TXAa _FJ>Oۆ9u y0q$j-~IS-MʭFĭo>d[J%W)z|ÓJ6-Lifn>Yэ*{oݟ]IIe "xftprwx +hzBGi4v*ϭkL=ʛ&fre]wd}T7u0`xIݔ[1ANѤX݁=J=zŮLco7hv/Iv=-w_J~@D f]GƉGk7lړsL_e] +=J &?]{TF,Cta<+wj}%;nv +*_lOP;H&o܎ry!٪aHds@7Ն@Gps 9&_B[=s|EP,QjدŹ> CI2Oߟl˭e s1n 3D^NH.Iv?A!'!%R;"-ERsN|c%A + ;MW3oDr)/&Q"T{ j۾9tuI4Nqi_ꄝ#\VWrӋE/oSW{}/5giY-jz9$8~g$bs[Uk:gGpƯB_P.[G[#4Isl6B +qRa;.^(f0ǍZ=ΉQێ1Q{su֛^|x5썆gb?>&Mk%uq\k(5ß &Y)P\^yw^'J y8͏q%ĩ nw~fKgK`Bzo",3JW˟Dv;Qt]-^KIz(:w1{5dڡ ӭXϚea@ +_;J 1iut%.aR&G7k78 Sp8*@ +T?[y4hCn.ة/L=dtTH~xAR> _) ++Se1.YpU2o';y&,LJyEd +Wz{BQYXݖdj(Va?Q2 +IbD.dreT\~%o`#ԇ7V<, +&u~%$>-щvzV#?O b7!B"9}t#tAnwWu;lQuhN$իc8j)[Eľ{Ѣy/T'96L,{t +C=_å۝KIZ_7"I,?'.MT-=F_nY)*s3z ΂}0VL*\vbMXc^zҳr.HDG!Oq7*#{TpztXyqUsF[+eXs]UzkTew>xud^H`u܍-|{dݲ>/4u`8gjO-ѡ +*] )c¶K&-re;W\]i{ V>ުQG7MbYK&*RJ[B^[iJl"4?yVw"-Ҕ[\_Ԓu0a?I⒌XV}5#\ǚ}o}'|zɬΜZ^ +`W,1vf7S/- έQvF/voW/?A, Ƹ22D +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/JAHHGJ+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{oR $@$ M  +ATi""H J " v{9s>g7׬z޵xLThg +&%. ͤ)qI:"^0,HK~n$ u"# hoԅpT= 0aC\`(D`qBfl?.IIp pF!@0z[p?\oNa7%p+H4o1Cp-?Gs6E`C4!{W C!]TP@/ 髅 DMXwE#=?$TutD5M`H/_= 2m4\p`yaRSCb7y99 B!t5eT]0Ͽ}Y"ODs眮sin8nj-^˸W<~E)>q76dg$1@[9:Ҿ؅ñE\Zv!IDa:[ruDb]h`GJ-xf7[XO؛)8VMdBb3eL3@?U4ik@nȊf 9V qy_ܳta! CޥEvquLljԅc=* +G ^fQ gFrbH9X~H~!_F,m#T by#߰*VP!!:'^X&;7ug4੨wR+n<8}|ɼ05 +|89U3-N{1V̜Z+P^6)?svٳws"9Od竌m'vɼ;s{2:mO/Nל8z-9s SrC/uu_Z?# jY[".W>5rtQf^{͒DžhЊvr*R ֲاmdltԖ[>."c% HcZzfEsXsjQ*YVX[T>04o730ڨd!DكӝxAY^>cu(NE699~6-D&'K+)F)LC_핽Fo}g` ዆]Nrdvmsd%9'~VE\y C +L HyI9xD=n)Kݣ}FXtghipW"{!Y}M٭z$Y*B&\=1PpWbټLK{aLSV-|cX=&<$zx6ی#8?r&ɪ>_f!z˘6k$gM){!qW8~^}ζ)k#jIJE3$"4*ۀqd,AoImt>14F|S'GԛD3&ݪO`A-_acw%7?%c,0)40]>rP_?rf}odyhl C"[HUUaF:|7,C$讃aЁl3uk#<nO0]>ؾjlIR8.V&W^fP:7ka&럌~xeJҘCWTSՁRfxh-㸁_ꪝT +f/nk2T"w~OYmqÁk0#4va +c:/w^K6k!aqKOʚ{nE0Qk]l$a+᳧Ǘȃ8A1fBۃro{U6詫߂r{i)AnO/uf1tϬ2WYQlTc+qK5 zX_ +R/ud9xZu)xEl"or[N\YmᬒD +m^4T;x"quF~/M|,C8J;{ܿS5;Tʽ]wfC[p4C/oӁ$sN1>G"j]wpp9p.RӳȖW3T mV$#?PK:x!C~<ᯯ9]P2@ +տf&jSs&t3JWW2U&" _^@)/):h_gXu7 45 +ƀC9/õ 4+{3+>v}ѽO~+TRءH7*׶h{bFZLS^'0^=r6ak~܀iX8n^|f YFQ[jUі ڔ7̓)Q #Xװt ǀ(~f4=-ItcM!n{:@JNoȶ}qm ;/|ү],Xy@O& ^˄:(t?^*Y;޻#28t,!i|wA'+&^Ŧe2qn@g"a;:aQ7Z-~jz९]lR^٧tM pFK_OkNH.7q8Umot.j!͎ +=:(eKBPZƟɄ- Akh{&ܬgT:ܴYNqͬSJd%_\jpI~<Q+ +o2}FUs;i9:=>V1yku﶑lu G 1׸YNq9n H)i_PWR:>yo١l8= !S;'<'Zb-ǻ.LJ$EIcsuBq/ZZ:L~0EdDu=B6em.ן' cOm~!e' +__U&]U fON_];2wUrjV@Fp85ޠLq"860PKרl=N(̃ +Gy+mm#xK0"VGa %<ܝE D*a=gw]xe'n|: +cz&l>/q.jaUgT-t@qJ +&&4(e&BᶶEqj*;^A];Z%lZW<Niۿ]eguAv׸苼a❫RR(k6 +twZ5SEU Ko)e^XՖ. 8d-ɈQy1YM|X l0'f0N̦ר[;WA ב|sVBtWȗKݵvxTOwǪk>;[HSYaP!SJ)V:y! ` F%pG^e˒xx豟_WEEg]3H;G,0;n}qv 92GH H[%:w5~Uu_tT3? b&u4 +4j̤lK/Y2MY> T=dsC0]J.{Mi:OK7!NfƝu i0I!,]&%Hlp&2.JzFs-tp1]$} ]Aow+~RPɤ<5sPǽ$Ӂ_7,ߺ`V qasHO!gwS^WǜH(}fFܦ65墇ۇ} n5$p}Qfܞ91#<=e?kRx@LX #Eg~ v߄m;7r N)%}m&f bLANl㲚6bGaojy#B- u*]8\"Į"Oꃖd3|QؓDىY +)Y +QnTŜJgz(ÓQ.DSΙ  dP T> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9061 +/Length3 533 +/Length 9621 +>> +stream +xUTѶ!w߸Kpwwec5hpww 8Mpps{{ңzt5֜}kz) +5Mq G3C(`eg@tG),ʀNނ<܂<4@IG'/5H/P19APk_sPzvv@ +]@ 9h8 J.$eptZ-TK ws7;;?ѫVC +v*;Z]] 2fUy(b.`e+qx- Psk%f\\;?`'9@S]~Ϥ>h4"0HXjn[OZ-3Vuۤ?KPdjxR 1;LL\S ft΀hj[ڽ/.4UWmI=a\=C2xeJ~mbw--"DS?nE +@ϬnrYoT,ū،kj)ϝ,x;A4ˍe#{y ++V3i]Vfg 8䇾.W֐m]\D4"OʢX3`Ƹ8O6:j+AR9J*cNEY2ێuIp{y)u"+?~@7jYSzY()gxM1loJl#0n%7='M!챮my#(Q,k300ٮXe8vŒr0 +noU߹qXJSm1]yX̣X-T8`:T(b{]FT->LC> v+|&y%[mn.@VON@F!~I+ѻՌ.Gvzg|x;3,C)齽|Ub%&UJN;cn#֧ = EA;-M+C. SIy[Qe5c|Z$E'\q3',LPkrŸLX{a![d~ka`Ɯ^߫+˳߸~.IymbsY- +U3Qҝt(S +У>Vy^•ɂA 5<<1RJ)*Pi@OZ4_j]6iPo0g5qOwlGA< /#/` ++`r=A҂U-(.JIHas jv NvՃqĻnjӨl:2"mQ~F2p\  Sř!riIW|Z2XEk녳Xjzڅ?Az K dOIulx,{1Ө"4toa'cK؟دN퓗ԷD˂6u.=5.(AxA큥[@ho"J ^G-Yh3mۘb` wwT|=X.ֆhIsM0E>c4Шr)cZ)KTq" mjb7K?4j $k}poC5[d[c4AU\'fI pѦI-|?q^79wǨKCs$d+>\Ք~K.|=_dlzJxQS>ȉb{[rp(6ЈYzRUnpuH4n{*س~bߚQǤvI7*@<4g4RuÄ=|Du\bw>7o79|n?vSk_^Du&&,ԑWυ]ҭafÝy_w:a 0Z-7iUEZGsQ& lI.'fYia7]DwK{$CfŖtp.3Zv䳋g(9F0b++&AWHDх+mo T$$%{$ĉ4elt_㇗ =gq0"tmJ_vd۶S-95u ex ZO-V\?ٳj5|j 'W鼵4w$y*8R/j'6qmmԖ_Hh~\{%Hhc2cjöC߆*Y&aQ&h,Q<тQo"w9c]GIsxk1ǹ'ROM(%*>`OpɨFdSjuEN!)l Lvk +,6Hw'4psm u|{]}u)'Q5B( k>ԡJ q+ԓTX "x~'k/:p#|u6͆~JvCf<*q$Q+lYu&plDr|jג-[93Dqoo@^J_R:*gKPwO[_! +Xh_]E!|>u`OLW}Q\ܐ#SlۃcqQ83>:뎙o'$60*+S/-݋I="<@& ظmO'!N[7rq2 LثlQ|kqF,;A;r΀`dwGA/ e%Ƃ"~~csu$ 'h:<8r*\>r牂HΤo__|T~~Ӥ9 p}?[1!BϺ3HE !)3j%MlVͅfeݬ&C̔nWf.QXpKMe2b^vHv9hd?d UZ.u#pզC"IROcuo)aG*+s5yA_&K6"E (-0[Z]X0BSLKzQ^LbG8hP.7Vewy'J szEv{G`צ"YgPR_§Yt; q~[qEWA<-5O`)6AFX*}Zz >M/WW.:F>bqi&Y ^C#)PL+} s[E4k9, &98[g]7W}iП(wbܷXUhF<:Su} +࣋/L\H3$1)q:_h'Ӕy7$z ue7Ćvؼ-w8$Xr!nt u5c^_ZB~Xj`q eU2]s{Qv7`]uSLfaT%V@WԍV[sN``_+;;Y3si|<:dv~)t /ZvU o"}O@-g@5e53532:Rt>-+W( +^$$R64DH\cNc~1kQD!wq%G@K&>%Zr:: :>wl~ʃ>fwtKHA۸+ VUccb+ADG6̶ *}!s GB&o3Tr۲Uj3:P35T(]O'TF` ֈ&όL 2CG$'QM#ۥ*iCW3yi-|2|8Ů [ˬܣ=h,$Qqъ\őr]eMʌC9Ng\X3_NsN V\sK2s{/`rkRv٪P1 ͸|P $V%\áޱ:˳6q" V=Rf v*axX>^-4S^s48_-"կMۈh5&Yg R_7?-kK2'43K[-fpƖ*^ݣI|Js4 ?'*=+Qĉ`yT\*8#N')ׅg.¹ +%{FdFmF_O_ ߨ~0Id/Vۿ;i,EMl>;e.{vgV +-~s6Gs7;ASs:'PA_2 )^ +H^+D籢صIBTǽBϚkCkU ^ۺ '[dF~WxZ +yӺmĖ! C8we#+xj#<zb뉗I6?Xʼb]I"n2FTsuW7e{lyBmO:N۱0dq6 s޶:Ui4!u2܁sX@l7LM/†j6%_FϘcSad3uʾ8b^Ɣ7ia2(Q'1W% &kjlӦY0"~4UR0G;s_iM!>N73,9p{`gլ(N%^1q"-wqᕫ Mjo b(w=Md5þwɓnk5`9w;3N 4Lx/g{ohI>AbV'L1j\qi\_ӈ4/_TrmKg_?̘EsJ3w7Xc![`[V=jbkˌ`.n5-.R%Ew_^BE1Sđ*4PcJ)e) }"DNŸn$^}AJ}}OI|gZ.Ϳ~HY|3R}K;7H!Ih^^lP+o,ЕQ=F(nFZ֖|˖|*flF2uTj]2YV+p*~OLhgW$+'(JL9NY +"JMQvS{Vr@/=#/x .)"Q^Vֲ;&O4FJDY S(;E XaH69ZqmҼ3QvrY8{Y'-Yoꏬ)Z34ɰe*kaNP\H4m3vM> .)y+tZO%zFpl#+ %a'˥'1mxiw ʴ,񌟹0 o&@GM 7 +jKi(ì], +*~K+d5H|3z<:qPR@>ݩ_moBvT-S) =e}9͸돃j_t\P|f&5ʍQE1vZϿux:ːD$&I>H;ӤR9:*0^ oDJ#(4YhԢ*yړaⱇjhi| +B޺ԯ5 _.̳ M'|4` |=h74*A /q5]%//[K`]Z_IDx9pJw4!5d'=L?[vQ"s9Cl:JM9humgnɆqVĀÁxŽX9?0 +5p Տw$_9si<~Kg'SW]꿥L;SC(驇vb Dcsyq&>Qj&GR\3 l1=v,S&?ƹmYK=]aa> LŸcbgVZaMӺ\ w* @[鋒14E&u3!?M)AŅd*S΄5RތMWr4gگEy59M+W;e]rphpq1d[ {؏PUœ +2QANb d.<~-WapVjV*<¾EЙI{-Nɺb.x@SL"!C$} ;_ +-^@dY/2Ĩ_1l1GT'r/F|m1ɳpMLgв#+º FǽX 9v +:|>mvki((@%Ǻ:Ƭ+I^~?]mwOQK%wf>?->馽r0ϙIYT ?&ն`~@X檎@˛2?Ӟd/Ԭ]a(5SE a3F:1 vB|Nud^s!0j;HfGrR@טeB楌Ia_Zʮ^,@i|gvFD'W('Ψ?'0ba߀Gb2%ep;p',0C>ef;46v4'85J |0y)dBθ9L"KԠ@on\]_+'7 MMgȱ@U]AV!#y~l@WS{SyAa=-!e]Ή-y!' =?  +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/PGFEYZ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %5D*H]"h^Fqg=.=]tdSڴ:#A$@ԯaFXr7}dgg~b +围͋U%ۦ7fmV?MWC[[|22Pz^/u`j5gO(%\$]! +lɺţmQҖ5*[) */kVs͡!bLX#OKa:}TiZ&ts8'Չ#ޖY1\pF{R.[S5 +d6.( U5zGS!^ym&(V%=brY'U2&Y/rڿyk\C< `>?鐭AizmKȢC”GU|S+ʫ+=9ܽ#[b6ǫN"]xSwfA:d?T('YI [/queOʶʮXPK)=ҹ{%:-uFDǻ!I`Qr*Ҝ힢y0t NSۀ~_~Tf|m[6s>3' V,ԟ-KĦAV|ş ˟g.M+-hy_F\ +(v"J-JzdC/qR瘍\E2iVSɏjO6KS䥾.D ے^"e׽NFWKƍ@K2)(L"]ql +`bDs vHkli@3J:v`[r +TFZ /d\Q*ˁZumzZӁcKT4LE㹈 %$nېY_X4j{4 KO:uKSȽ]ԓRɡzG@\pyp\]0}zSe[#r8%x1&w|CAE*oO eR8Fcxҹ6H*g-[-#rsղqO 0,g$id?˴W/W,jzcm 42Z_x&SgI ppdAnvsK({r[F /=Rln4k[á+"fLi#UԂco +X\uQGb Cǥ*j[\iq+]^9@B4fMi?N.]a1 +z'@c 8=ޞeK~}T@>5xekU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'Ӂ֬Īܭi9NxFxՑs=(8z 0 `Ӏ2%T<=e;9} @V;MAA}#`(e5 ?}־:-9 |D9I꥕mFwt 7M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"NfVHe2`aEXcB@w iz @PH @C5Lݿ4v +|rQN  +&nrw3m+;Y ®\wydINDj4&nּ| p^8xXAv9B_;2rȭZ6nDf{Q}=%gELf1K#1:G1B~<7e½uOLiFVXT~4sZi%)#í˅tI$2e{wӰ; Vkal1jv`58jٵ>kfٯ,_%__Ã'- 󺆓zkkORB&L_M;ؙ@L*\:_VCl"⪔ɟc#z>xv}f[:Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&x8#":sk*2L* +lˉLueν `ovq3X^CO-+Iқ“\ +c\Xis'JY~"mvɮ@[wÛ ݒͫרMOlN|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],oW1ɼx6n VDj"{f4&탁O^>GZr]EK_DzC yTr:ua[pt5z0?|$X7J:N|_zuGk[|Ϟaqϼɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩ[msOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H{9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5}q0 U:dWj~Kg1;FĎfKxsCT]^q /]EeĴyQsŇt#Y1ٔNʼnJE;7 uSCZ;4{sQ\I7+uwwPqN'fB#ՕI,hIU+ OII^)/0 sMIvwh;hqWM]_H ^zQ|8%R%_ڠ(-3(r"YKhPpG<wTYL!(3Uv6JQm<'G4ʱXSU +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/GQFMSG+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcme!j!E-JH-"DH Z"Ǔ}s=_u?k^[RBuAb18 iIi%4(- i}0 ! Prxd@PtEET)5+ 4< W +huE"p@& +_㏀K@8tA#1? 0nX_i?K .oRQ'A7-E? +u C#QP`^~8 G`."¢BjbQ W!q@7;p1Rz&zU`H *__ot0X80p_I/$d.,"+*oc~@9 ;~Og솼pYf:U^?- P@DN'/\>Ui 16:U*JDd ?PY7~=5ƭ#ڽYyԷ -)*vR?mBq12OEbMY>i~+q594|=3e&<c#ŧ?P_{ kU߱C?y;dU/T_c&벥Nc?`0& +h^5_;TcB#m>(#Qfɸ^w2kjP׷LܽbUf氃F}AJB -cM0~Q^EEfU2ǤN!u=KkXDk  U s"VXIas>dukʅ=d=#H7I=K;أDk6=(챘kN? @yTի>_u_4|TȢ킵dyY+Unh3-z1f0L5%r~=tM8}od.1]|dЎCaQO{ZfmKϾP8i»x-p8+iVz2nN1n +3;tGHm]奄ڠ|0=+|#8D>1eQ\QxA`BpAሰ={W:cS4h+.eR$bAbU]#OJS/H~?6]'Bo='FT2'Raa˱TD; +F7x5ޔ!t?VC.Oۮ`{}]G3v6#;krAM3< +txs_כq*mWh>Z|^ϕ##RT;\ԷZfq,8PuA;kI0[oQOxw\eصn3T5S@T:|6n8q%3IÜGH +8(Zc'#d&wTXdkGKh8cc=d"vz F(Fr̩`A!XJliI@U.nUR8|Sh}`i7LU 80W%y.Қƥm3o16S4J=EB sϹXQdlՐ)sw%dSdm\<1P$h+%X^jPed-O~ǟ^M-@`x| 3ьNQ8[3q&_JeS*yL!rP_ɄZdM4]EqNo^y+VY4ܢ~f}"$Nz꒵-ѬR; ۿtT*.1xT(~'bh0BH2q\&R'jxc#J@V U2\xgb2GGC}(WN +z|ċUԖW\8||B䖽۳Žq~]=*Ǟ5v)~zVm?EWrN>(nGz$촞ςrʺyũѥ|KB"3?w03{A7vw<: ^R*\9gH׺0.^Uڕ<)5 [P,;Yt!Ų];5y&5B{Umy&!};lܵԿfGOr勢PJ U=dJ*Ifa/ab;@pKzEhHNWt ƤTT6[{L1Ab4yA'S#LŇlsi^zyMPzAyLs>Q3vA}VGq;7neU$ nP$ܳ67"Z"˝QӶȗ YDž$%MW3/ }mCZm{Ldn9ZSQ>2X !F1rL>Nt[z9 j+9vnLKcT8Ehf )/NAȾ蝽cb]k rF#$8X;s!SRs4kojF$V"Eyyoy&0"dM$9vE776$9 Z5%ƒr֣Gz䅝S0h|e}ncr۝}g2ӣ+N$|ڍjo൙|t'd͕:G20BkX[U'N +?U2Ħ&fxd ϶@q1ڱeP&u1 8-]F2>6-u~iu7 ;b ~DaS8 +npqh&DP8%mY%{Fp%>;Te/PlTQmهi fPDvAɬynUyWj~GxE&U w,¥V71GȧK g f_O((-SY80Z(_fw~mö7._(DBL̃mg/ף+p2;jO VidᰆPkARL[D"ofb2 h!+#8uLrd6\$ 5z;۫%dO)J3%e@ ' \Qx +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/QSLPVM+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2135 +>> +stream +xR{8yn71jꭥ1`f +1ȴ8h̼3^2NT4*!D$m'CʡVY [)P}ߵw}C@ڞxI!0L H%߫M4$|_2~ZqZ)Y4hHUytN4ݿ^.5W=0HWwG3S!!ŞSE(ybG/{Dڎ|ka+^,8[yz4|vI~{ij ͸gZs~#ђsжV6dR~ˋn:BC"t'#~o-#edcᢨM[P +ՋÇwhkcNlųR̜6=z!n-! ȣZfڗWuuYu`sO[PS?jqݲI11>[6w5=fbmZ:!qqpmPY{t>-MGjGS:vzoEqmibp"RD|Rm"X!>y5]nKE4 hNB+%>Z eųY] v͑G&uZ+;rWsuZ&=zDl) Cح.N%"PN/|-~q >fZuo~O1"vHuK9ʉ:U;};֊󂚺s@Lwj椘Ef,~^UB@u(?G={ ZtcAؕ Շ@ML~Xcs^Wqg{^ R]_ûl?v0Dz̞Nj\c:yf᝼X{wF _@κM]s^,\}>i+YGawFQR0<NhTj6bYUPꢰ%Sʲ+J:Է=mBËp6Td̀ > 5l&84n_p +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/PEMYOS+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2353 +/Length3 533 +/Length 2894 +>> +stream +xgXSi% zd5!tCA"h!ҤjD MA8t EbCPi¢\쟽^{Ο}{SԵQ0#Lׅ;77g8 ^`UU;*)d{44ffƀ  Q(aT"@44L JĢɀNCh` =LlH$-4HLO$Cb9(wm.@&͉Ia Sicc#DrG}6ADRJP0R7 +pn LGX2pC=wHs$8O"K$MɸICDt`iVD%0= m~XpKxIGqh*_lm)@h M#XԿ! 0 LX +Q 2 .5 9v1s$șLj(`E5cщ c(s۸Qkp{|01ұǣg1/_qF4E 9p'ҞhT}[F%}i)s>єrv^mnSnbe_e' =D^ a'&:n0͖,#u9+.mjkfzs-pkGtǞ; ٽp N=?zIb|{'WoKx&.E`q٪ejU~IT0У ovljEkpy*Ώ{dZoC>ߋPL_ oʵh[ԋv}" (t^^FW]=|ސP މ8ػiws?7i >53QɩaӎvԀ@맲cS-B|(2٭uiM'e9 /jm?"D+&j<α>>|fa⭜&v0jd{&*Ou^CHMBFrTlBԭU cnp"UbH̰19ԕ)<DR[ ]/S۸ei>DY;FrtE;g3}9.s&C-&-MoPPǸtU5Ym\rh3԰%4(쇎XdՍf Ii]l\}7zoUbnk} ]CW,o,?b@K!ЅA1dd[p!b+S"y)Q A< VRbCnuLUSŶ1Zlll=BXN%?o}bӔ!uR(9uN?/{>Ϝv9£\y|4K2hK=B1P"g"MT"jaJެ[b kVIOBg RRT#UԄU~O}&,la qs%@%Λ~Ld ̥cxeN|+l&P44 /שlw<0)5b wڴpl_<$5Έ*[Hia6}-WBj , rՀrnanM̭z³G{j_,-ud GŢ&s*|:IWg_* PF9gG5zb_>/<-L:98߷No8Cpxoh~}:n">ռ},:\-=e{dȈ{]'3aws\:E,EǠjhx}mI1?2̸WWU+V: Ƣѻ5Tp̞_6$-nO[_*|@أ/K&ٰzfrHĝ'hmaSz?X2BA?r̮Ia5#% 2Z_8ڏDfAA#O|ܲ`rƗ`.RQVo&[ Wm5ZG?t[yS28/ѽl;͓@wdzHxAk9vQ5y@Wvؗ/k$ ky^$/*}Yr06bMʲ-mhyטw^Պf7rBQ0-!C<{G7_p JTWpZYק]%xR.~duEu]n>rqz (yǵcT$N5Y) NfM?b 4 pLޑ,wx~VKm5mTP +B> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2125 +>> +stream +xgX)!aA +%ĄNVb"BSpFR0$H`K`(HJ/Pbĕx<{k̏}gw>/#2l4Dk@bH3 $!&Å +šfoi.yp$ j0r6 +"32;KB4l.i4`ߧW}`8Ȋ)8(P?NؗV +pFƀdи odJ%4p}ʡŴ¨[RJ˝\ռ6?Vrˏ,p!/yN̒)_ZGNl}Ӄ5o.i!Wm Vvӽmp{ Y6v߭I+I˚Ȇʬ<17HӐSRxר()ty[O:fik ڹ\Y`tP;I]ՙqm]ٖ3T_2Zkt7›VI-8 9Y(Ո&M]|v<mVWe'H=] +5H{4} +WT(hLc*s. j.-nA7w!-B8V(W;p nkͤf 4t0"fnh8RˡB .\R(nQ_Z{'ɷf,UZhjjMx +0Pj ARZIMk?x.XؓHuuƞP8uZ!2;}{=Wp(\ecԜa)K9[ 'e~ڳي9H>ajcEzǔzS75EvYu8z) ʝ[U(ŌwQa#٭ t$NpS@ ?%CuܑT6RѦX-6sHU@voTiVY5:mT3c.(^ Y֡ed- '5'w&U [7?gc]t8.>4 ѱ';+L;156$TҐ5SWs׋U_F57> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1622 +/Length3 533 +/Length 2152 +>> +stream +x{;ݼr2^i)̇ J.^_ֵ1S3;Nj+)} +g^ Se,+%icK2 % ~5 $O+񕣾NͨG[Ց!KemE&'L s#B̻:kz&G30%|~YbnZ2Tk!wj&JLLI(|I¤#) 0ĖkmzsA EތOIK>p*_s>n5ZL" ǘliV5C>M\~wٶ8Xb.,ttrFz):1ܫ^}Y P)Oz'&Lm٤hŸ3p]\L3);*$,wu~_OBB`(è([zjĴWd))2<9NyȢD|=>.s{G_*o 7|j(U?eCiqoTnōfեZ?i +Wb[P=\}?2*ޝ+^8r^ws/UߵlyS,>]Fm~lED³{D\ 6t[*"2Դ>}XW+[i N(]7pٶ_>/H=a> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1204 +/Length3 533 +/Length 1744 +>> +stream +x}3|4~]V>^hORFcI^NKqVjyl\'=Д®Wn+A\LvWlc&YM͜9 v?u_QJPpmDWPkDuTU;yV=+g:6:N͟lvQiʍQ]H6n&v;& 7 +ȱ;o1wWC>29_g,ӤrcYqVUNL 2S _Y&7QJɂ56oIH'*ç(y~`+Ɠ;CCnG+F$5Ɖ%ov }oA]xΥ}m>ll]iAOv}+5Step{$4i)߷׮ÿ d0Hѿs~E|Ϧ$D>&>nqͅWʜ}T|b ) i1G{\zȊro?{2Aǣ>JnZzێ͒e_˹xf~9~`7^طuCҀ{+:91?{r}47*(;n +3Y.t$FAG_OTx[_c.n״^ A"xs(㜄˷݆V-뢄~;Z EMU(:-}<va=;/wΚе'Q]7/ִDWˍjq$cJKƪ_e9 ljWp:Gy,u{32 ӉROLKUꎌu6 +?򺒭xgӱOgc-)!S6Ɩu3NkaU(iˇ֭O=[\'礙eF)DDCrmWka~`rLzzM`du=Ǻl"8EH +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/TJAEZY+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3094 +/Length3 533 +/Length 3651 +>> +stream +xy<}dz R]Z (h &3c3)ʒdB-$[$%KHr}9u~{KN挭˕U`0``p`o h,E1 H$@5Huu0X0҈t@HO`@&Ј8,`^KlpD$`'ހ @!!`0 8:Jp'RbQܼd~nהBcK_y|\uT; = уb1e?5x*FGcy:'Q< bw9eƭiUduGTJ7iYy[lF.| n#Ƿ)ү|Hb)/Cǿt]M*wإoA*[%2c ˟H}RVs9 Lqvn#a^OGc2Y +ugPgSROHԦYBΦK; +sI 7ZI 3yx%&5"^enlrL!v9n8,_vƑW-}GG*N d*_ 7on؟z/W?VhZ2~P?nw*qJt_b+639sh%6,\V~fI]3[haؒv2it6PteڐHVK; q/6}V2q\pןZ__s*A/؟Kwl܆ :1j:Z6?^61%bZ]T/BqU1u0ۡܟs]mz0ob9دIH)FHtlmb-=ߴbnWv5VN)EքڎoY]1T +yp.  -mQ%%6y&N&\LN:`/ +P)=ڸ57i"JOȩ "(K]F s#jz#d%>8-1UDr=zw;>fuރ?ڕ+-k\?|F}JYZlv .:21T99ne&\k5kxd4:ߢ]t$[ǩh5LƤ}yahaˊ%^JE*8#զ]}Ol?v+rg_CE'/k3=/wu/*]\Y07J}-ĉoT9_ kF 7Rz>*D +ΜoGf1 x7fl +gyۄ?/d iLf ҕ:3{4 $5 + .Q2T=o 2Qtw/sۻ_L>Pl8ޛ7Ǜbz]EK:Qjg3v SYOFƞ;]e0EmgΥ#'|>TCzauT]V|j(ߡ,WL_xu&eƁ$_ٓTt_>JN'ZjUۋ=áqpZUȋ艧byԫd4p/Kss_iK%D@"ہd{NUZ JgD/],Vl|9Ð=`5]a_-^GQQZp6&K(G@|3>6k "bf)/? ['6e߶ΝU0氺oķY :OGC΃[!ٝ8s'g^E_{~ϭ[:O[^ u;6GJe2GfU ƑA\ ֊X{)H'K׉_):o%bWZ p7"+(Ҹ`b55C} rw7iKn  q> +|">nUYtDomV./)JD\K_83#CI 3ҐgҦ(j2wf??_=$pfÒ:=rIp❝~uP셖pigBFviHPBb&}bW m!`FHrui%RĶL)rM*ڳ&'8+X|#nqtvB@C\R,svh _>?#4K1Fo +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QQCEPS+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)trbf\" "FHEʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?MO=tc`qޮ41F::X&Dd # YKK +/ďH&L bX7V1a &B"RCHcRo/19h@`0@ D7,W:l.8%HdЩ(x?HL;SDڷKaO? Zh8b81?Z@p~캲TdOP!٤ L%?[@X'O{דޑ˾Tc)1-#6?W?D'1@Nl"$2 +rp`Dp0榀aGչC0XRIL&Dg/'YaqJuIkv -*d'`<{h6$0[0ж`ʺ98P"N'OyNQ*oMqG"ãZr:m㮁ydSV̊,}k@{pxM)R赩ƾn;')']7}1_&]'WE<:a:S"~@n/^m.xM8h%[^_z%Q #ӣ^G{k/^}& .51ƵIIh[~N}z?{s]\;P4U9 L֌M>W+v?9q[c~Py{F4(\8&p 1c/E6FzA/քz9TdWY~syݘA>4SvPu8Ṙu?J=ՑKZ8@?]ޡ[ #wP-~dԨf_seJ۪WOscVv +,Rz~tf&w\6֫jy{^sJ/:یUYӾ1v,B[u|lΩ1HQN3}-=c=8i5\ޮ+5ZE7AJҨ hd%xtۙ|zqf!˕lx#Ԯ~r!yq&_K6;Vl h&[M v csw|g[f6 ~+̷Tg, +$D LY&ZOf͢ J)* vb 2w8;+i_x_RjboD(}_C5Tg-);¤2+quJWo0h ȉ\>Yf$8_wy]VSF-l/LFc+|&1'Ts= 7 {AfrYEً_]xFУ,gxțc.{?u%*J6~.mMxyIbT*Lx/Jtz P F{9a"38~=nMn yw5?M--]q3}a"Տ QPC~zY8${դbc +-$2l< <=:lu_K*nzfs<PݭĈL +HZ%Zrh/%7Fi*;ȄNYZ>ux֊eyWt'^8[:ݢV9mW9s2vi'&U^hi-~4QY55jѱyCJ+7BGIg~ (Ikb _1ng ҡKxw2-kn:zkFffdo~ܫGXsa|u9Y6=x)'$RTt@릯kZ[~``㑎#~6<ҵ;wپwՁl q-+q䇃 Ⱥd>妈?.oC~_BkڄZrdơ &Bp$*Dd4"3/ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/ZYKJIL+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9576 +/Length3 533 +/Length 10133 +>> +stream +xUTѶ . vpwgw8ww .4Cp xsK~UPsο'Uuf1 G3#؍] `gacGp8%M@v~~ &AEH8:yXY$9\lM%S7k_sS{ ͓W`AEegXؘ@V6`T`Ɂ-j[@srq')=/#`DeUv/1ͥ!ʦgXmn`c +G'hrT/8% ߧrn6b`+{_-Wi5gwUOWA^N?_SUSCϚq olPw3[XWS;zx3s98>66U q$lll|C\\@`p@ 9jg%3U|6|o4tAseA@MW{ոִ:C"kMv>MǷUOo|AsѤ+-4Q?X\u+\9h&V^xk:TǗ\-o +hAO~Fcd?汬U_FV0٫L_sS)ųoHn-WϾ d{74ZFdZ) $v&Z̵_5ӫɩ :/?$4MJw]z4 +q09}ټW dָ0{ыY]p-/ +ǶP*%ۍ͟1 zT㓋 dnx %Ȳz鹠w?m~8##`3w'p%CУh˴'0G;=oom32ZNr;G:DpMSX2PqtQZ4 -:,S_^6mĈ!#BLwP +)8ۍ|cS˟/wdm pj /dV/on![@]?ŵa;DYY^k6qzN'JBjmx)4Xc(E]I˹sجK% i?|ȍzTdJ|kS]UELϊtVXEl`Qj"y j2l&grHL)){%T?yQ4>Íp٘ѽ9.}p:+cYLܸz)>|aEp6ꢮXbfC2&!bټ!GC MvJZ ݭWߟSWYG`Ebf[R`:W>$oƈܣ9Ykϲ?] dad7v̵0xU\'ky +=SGҌy5$`>kn1`uXn0!JmM&o\bә;~,\;@Q`gjYXDe8&\Ň#l@v^!ә`3G%q2#0S[stӑɓ5 cbikdbo~+NpR#4﴿$"1<Џ}F2( E!Js:hf gCpŃ +~iV 属-Gإ3 D쾕7& U[ B^¯hPqΦ jmD.'Ejma]8ėk3l.z :OM3 +tМ."^ $2SNأR#{$TB0 mS0EïA) EH2̞ޣ6F50 Em8;b}C#CCp¯_.;'yu2V?^bMd'm VDd8 m# sJ; [$81JPZU:^= + tnJ6j|{޾oyHY5D[I&sSGL蓷C U%]5ixGɣa(w)O!ȷi)*Q#YG5k:veսa0M!"ܐ?TW_%hAMEBhދJ4=s~'5d6_/xOЧѾ wr80mazug3@/D!l\}csovl$ޫ,{.%kK&[Fߓ$G=yDc]Iꛭ5@B܈ I)x. b\z쮰Q;8U)Go\! +k#hdS)=ryQX&[ ;6mf[5kZgJ cLՁ7@Ioҫ]EFz7#7'd1T`i8*okUb2!xK'(RapHVT͸҅<}zh1\r>K6y[+Rb8m|O蠛OdKX$hTvԕAWrg{pWK5ãkfbv8#Rϴ uřcP乱!0VQlS2٧>sE6̵qPydIe%2@B 0Yc ,znjkVm]QV52n@Y)|==`NTK ZFOo + $%80ЂKL2FJWZS5ui?bi|oK"N0E=X=dզQR Lhyx*.+ Go߮J + $ӊ {ܡwk4U/vpu뻔]{,3nM3I_lVPڎ>m$]'.sI-=i<|KnF(Akn6SoR3U"(f,0nҎ?[3Z=y.Z"aos}9E iB{k<˟⇑F:0NrS*_$IS"hkl3]2nՁȲ~y$d4JٟJ앪iC{pT*p"ixFKKOP a!CL=_ +\b:j#ZQ4F$3+F?s[%w'W[)u,KQ- ){wKŠ+ߟolOt3VEfxqQivnxpjףG:1]%ի:=sX rYgҭD/iݢwbI"p\ {X`^@fA0-z +QL 6^V9Ct7g1vhOdI2DƏhLϽ@:?7<,w/L6¡=1ľ=Wdgcc/],R f*sU5}H6kVR댷bfD +I8{lL +/&:oǐPhĊ ,1S*2q#FN`ej$]Y#͇r[f,JunjedӾŷ B/%r/P`K*mఖ1l`<"J:yy\c73'k,ޛ֚TiRV%]5U;ф oe:&GLQ yjm.E>k 4#DK_ZKz4VNdw'X:@ T a$SoUg't)P;^{$!;S58ѓ: (At:c1;c;ų~`'EG||3|$2GqG4:d +³sYU8*}Źd>O+澝?fH;% )?o۔u6ͽ͛=ԺJjeN Q SF<1%> A&6~d +`Cd؍ϱxsVg*xMBiZRuh[%F瞚j9km)Zشys1\MY'Nfv 6lN#ܦc26`$fFi3tgH)Z1E';%Bf)u,tU?wjuχ +b]ꗻoBw& +:vXb'g6è9kt>fe>5pƧĊxGg&˧_#*zTή4;nR\9bJ1lY^o8rJK*EꑩO$ٚ;"" Q"m/^0ǐC}Gip,]߬2'X/Z@ބ?Gt8Xr~afZ0(Nc?0 n݁-YN9YdSŐ ì!1hW⥄#[)v`em^/blz* 2ǛufY5i"4=IW<6BqSy+]05鴅t3gK$BwSTe 낌4ϕ +}+9nRDe,vXةsc +ˆ??!/5z)='-ѝg=y;f;xA6ƀ;6Y\zd1rݏ'lk:մ_t[1l}S} wGoI"",hͫBDǫM*5*19~5VIW󔎆{ǒ 9Ț{Ajȕ¿"YC7j[Ήi Z|!ޗBYwY,oc Hʤ;߹1B*>XB=;)\uvODP@ +F'L"Iî1/AYJ,#?meL, lJOd`Ή3A0i ֬+|}DSgHW(+brij4g<&ChrY-$ik?p'6 GNԅd⸱|xx}|c s\|&=Ĵ+ۈiJ-tseUVؕѹ" +? + LJMSXBsUTK d +"DnĆ2cJM (:/0ܱ`b/=&Gh4"R>t+]9t_l S&U[&P +Lk? $r^-OB=b`g2ƺaSLHM +5’l?k~_ +^PٯV$sj}y"$,~N'NjΓSf8䋻ٸJ @eML_SHd8`xI%,[,|c C{ȯ}Q(RȂsv\Ѓi/~]DcX`u];ߩz"%' u{-CV; ;cy\qo $,$<^B?8w?Q!G(TvەXcUEV, )Ǜ +^D_߿Wc*} ޻,2xY?=e;u(҈La+Z=$2@ZdB͒槥:ͪ 3/H] +bi| _"B'1fT?(mچNT8^rJ%;}9-oC -Z^ #-?%^kr?+c\zgKǰ6RzJbnwJUMsay֤, [Բ2]ڰ@׃zua_=bȇ96_d¯=&2N̆{Iy!hfε.gՂp3V', + FIFwB'$j€Uܟ5.ݝ_a1CXG6b|jfಆƆoԾ냹~G2_fxFiA~F'Pm lܝa'|b;`T=~sF'.-nCn Rv=v5'}ZiI91|l@cTѻK@)^ +QW%_K,\KJ4q?F/v~|h%iqѯvŸaSMz-'kw9"+LU!$ >a0H&1# NM#,N!$pJ]"AL2AΞwԃ`Wg% +SͦcX=۩\6£ە>9 ,hhi7V)~NO`!1,-;7MM"Py{oyx}&gU  >=uFM M 6+bF&aزqGuPkbhhE*< [TDcg;bithF8='by_=OڼIl;GXv6]83se}%%HSѬuuf2k ;&L m24lX.E<=݌#f"v2~NJAJ҂jĐѽ; (Z~ Y^e6VVVmnR:z&PJ?BIv ~ƌ_9Dyʀ}7N>VφۋHn֫mJtJ5we ;G5>ar=B7бu92g2X|˘ˁIW9< v%_!^OXC*|k%w5Ulrvc/yWku>Wu&^C+; u{ o|[L 7[zSjDZ&a5 / +RցMj;?g;GZrc&3D=W kmC!/ֵ"f<-سk?ń(|X冹0f^74Sm_9a~'hTU,o&Pf~P(Rq9n\SzǹfwTRK+uwe3z f" %SnU͡x#=uL^o] '}5=JQ>Kз^EԌ8VpЏAs&ɀN/H@:; G J|Mn>eIܥXU$<>f@?fcT.`vo=WYИ +FU.oe]q͉ ~ =l2~5WR\;1q(gͦ&*J$Y#IyۡZaC??«T`Lt +D=ѹ^!ivfW':ZؤCˑ +Hq ɛR^+.'Pk*q8*-=Qk`ݱ3+$QLK A7y/ZT elKlx r栟J/εT`חѧ6"CE.y;[aHP+`(!(HШtt;7̐ +hP'< lCi6Ї0)![> FL/h͡0gl?\e~?Aʻ[DfXb0Dܯ:F| ^q +U},⋎cw̉js)&?YZz?O{m@4T}k2K"MfnQ?m84Vl7d`b?˙4 +endstream +endobj +106 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/BHDCQZ+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 105 0 R +/Flags 68 +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D90Jɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +125 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/AYETLX+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 124 0 R +/Flags 68 +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq)[ANP.A{p 4@pNsoK~{sEO. vȹ8A@@ZU[ 9!0% " +>'::=@jk0I3H:Aܡ֖UK9b |#@W<Z DG`5 `:slK{qx0=s2).Ύ0Cy53뿡{NPG8\\=aw w>/8U"j-l yrPX +X:z@!࿃<O ICYؿPg+/5_ܡ>cN ''|o:[ζm3¿SIIqعx7_P7O _PO s3<?k 5,"(9%E+։EÂb ԅLJT+✺6R%_^ݣׄa} (nod4<x Alʾq=OLI ϑx2:t)_mGWZ!yU+9c ID&q^CZO0gbrY prO-|GM΀ܫNAXh7jr&v"i8?"M24d$_mOuZ3lsx%wUe: +氢8k\z$Y'ny|g ~WOlHW1)8 j}dRGvfjĝx'=M)~A&n#Xݻ&$(\{ BSpdHRp\IkF]JԐYfA~|KuӠ{Ki֗ ,(_08)A  +VF8#D?=DmD'_:_)cS&6R7/R(+K;4L?pe(ͦCp#|. ~]&is;fOΏ;7da-]~:C O)N5x48udM[/D p"MҮ=j|*="t5ȟ ~4OQ1a(􎞠-6nDl2SU|lޞRX21H<&ak]ݿAkjaHZ<݉%HW#*J m.'v$ Ա!Q/:^3k<pCw{6̊3"ư`Q}0|A\RfCXF 푴J*%-|=XR(5[$u:I[lZ6} ܁d,àJ2;\ebiŎyNEq a~ klPjZZ{~7mߺqٟv7aFe2utbǒ[# ~mZ_'S}Xi꟒Ń4eV\Z%zuۍ";(1}{g-Xq˹ ޏC#O-^B&Qrjx+m05Ew tx<8Et1~c:X㤔-^Pg;F߰NtUJQ4& `K]KFdmɞ,ҡ}O'C iӉfhMˠM|&LYa5&EW2 HE ǯZ *Һt + -hh\ĵ.ޔ dvچoL'(PylWl'`#u|g,/㚵5M9g>#q^4"~RX34f Lv,U& 6 F9M쥄6yjj'y@5rя毳%lg{נs}5y>Ј 'WJ/7hgm[ߣ󌫅֠2xnl2BEnS@[-SB8-vPzW>3WKU2#iFNbb +(O :W&YTy+ &7>ЉRv~~>k$R-fL7^!"C0EsiK[Ap+tfR4/c,u\،\0/U6`k :׃4 <B>F9E?mTuw(PM)6$sJxfN;uUQy܋"҂Nj'jX[ׂ4Aqꋴ:-ŊR7޳kaoi#g:/Baw|,S+] +WG8LEFM< `Mدc9PDGS6o0ߗ_ rR,Xe4Dz{rȌy]дeHs<޷Vi gI..| Dߐ2 ݗ2$%+z*Ƙ|HrJhE^135܊(YZYW4Dž;|d8R + l0 "K5#'P>8#x 7hޟ!P,KCcE +gvNRj͍_&` 85@X0x2Fm,W1C^ծG(U.#>OA(zb~)fٱgw[g-:kbp~d_0~+ƳD3KbDo/ˆj6kWw>X~;[_C nN6FMo#tc_O䢮2}^LpktJ$̻+_:Pn(#iع#GO6SM~ Q\\cݩUmhCt^P +~u]}A8f~lYE{jE,l2N`#=3jFL:Ӣ]߫ o:+. 2Ԉ?^G.0E Q27p֪[+1V=h\0_ӌsi.wc;İ^KP qz2sńmm%CaLDF'oY]eVrjyPgISU +7%N| )bDl$ Ja&(z'K^pxQ!ҬyvS"ZgW4 qyD– +ZϢN,{ď’ *MK4|MĻZ2.:eïa5 +UfS[J#6GJi'I룧P[f$#BUlmQò:tL-@mpaO:Q/@zdhcc +q~ + ;P]4#NOTŒdW?f87qњTla0FK:b~/.mRj=xX9$JM>G 4g.:Pl4eSUn׊g#ǯ7(mP0Sua!avu`G}ʧn_2%NH wEX,n^ T+hvJh\n9KLUuHO_|dGLёiz# ).Ы2M3p#öd+{|I~4"!:/_l]ش>NS }9\mo($ߵ!ǡf<8<~s4-nL ,핟leiI=9Y/xvBsb%E_pz}b-4# K=>ZrR5 T0e`ur;kiO' =eIG#|;Jf΂MŸN@F=mR* o|!x[NQ8I{8(Yl7 ~+  %RBG- +ף >w&x\Pj-, +9~Ԯb\Cb993"S3ѥ5~9f \.h5!9(Ջaiw)P'_Rc:aʊЁYi[ b@#KQu`MG+7!~B<:*6/ Wz8x !MIKQ)vu:vd_4=kiǷdM5ߘ؉7qp5H_:ͩa G V0[? > +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 129 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 129 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 129 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 129 0 R +>> +endobj +129 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 63 0 R] +/Parent 3 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 130 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 130 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 130 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 131 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 131 0 R +>> +endobj +131 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 83 0 R] +/Parent 130 0 R +>> +endobj +130 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 75 0 R 131 0 R] +/Parent 3 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 132 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 132 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 132 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 132 0 R +>> +endobj +132 0 obj +<< +/Type/Pages +/Count 4 +/Kids[87 0 R 91 0 R 95 0 R 99 0 R] +/Parent 3 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 133 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 127 0 R 19 0 R] +/Parent 134 0 R +>> +endobj +134 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 133 0 R +>> +endobj +133 0 obj +<< +/Type/Pages +/Count 5 +/Kids[103 0 R 110 0 R 114 0 R 134 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 18 +/Kids[129 0 R 130 0 R 132 0 R 133 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +135 0 obj +<< +>> +endobj +136 0 obj +null +endobj +137 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 135 0 R +/Threads 136 0 R +/Names 137 0 R +>> +endobj +xref +0 138 +0000000000 65535 f +0000102827 00000 n +0000105791 00000 n +0000105436 00000 n +0000105641 00000 n +0000102991 00000 n +0000004048 00000 n +0000000009 00000 n +0000035451 00000 n +0000035267 00000 n +0000000913 00000 n +0000040322 00000 n +0000040136 00000 n +0000001906 00000 n +0000045561 00000 n +0000045373 00000 n +0000002823 00000 n +0000105541 00000 n +0000003740 00000 n +0000105591 00000 n +0000003993 00000 n +0000103094 00000 n +0000014355 00000 n +0000055485 00000 n +0000055296 00000 n +0000004109 00000 n +0000060757 00000 n +0000060567 00000 n +0000005055 00000 n +0000066061 00000 n +0000065872 00000 n +0000005991 00000 n +0000006967 00000 n +0000068504 00000 n +0000068310 00000 n +0000007921 00000 n +0000071703 00000 n +0000071512 00000 n +0000008867 00000 n +0000074128 00000 n +0000073942 00000 n +0000009861 00000 n +0000010825 00000 n +0000076589 00000 n +0000076394 00000 n +0000012441 00000 n +0000013393 00000 n +0000014244 00000 n +0000103199 00000 n +0000019697 00000 n +0000078641 00000 n +0000078447 00000 n +0000014417 00000 n +0000015388 00000 n +0000082601 00000 n +0000082406 00000 n +0000016295 00000 n +0000017277 00000 n +0000085258 00000 n +0000085072 00000 n +0000018254 00000 n +0000018999 00000 n +0000019583 00000 n +0000103304 00000 n +0000020592 00000 n +0000019759 00000 n +0000020456 00000 n +0000103501 00000 n +0000021651 00000 n +0000020654 00000 n +0000021504 00000 n +0000103606 00000 n +0000022218 00000 n +0000021713 00000 n +0000022173 00000 n +0000103711 00000 n +0000023085 00000 n +0000022280 00000 n +0000022949 00000 n +0000103816 00000 n +0000024005 00000 n +0000023147 00000 n +0000023869 00000 n +0000103921 00000 n +0000024843 00000 n +0000024067 00000 n +0000024707 00000 n +0000104201 00000 n +0000025875 00000 n +0000024905 00000 n +0000025728 00000 n +0000104306 00000 n +0000026359 00000 n +0000025937 00000 n +0000026314 00000 n +0000104411 00000 n +0000027173 00000 n +0000026421 00000 n +0000027048 00000 n +0000104516 00000 n +0000028474 00000 n +0000027235 00000 n +0000028326 00000 n +0000104716 00000 n +0000030581 00000 n +0000095702 00000 n +0000095506 00000 n +0000028538 00000 n +0000029550 00000 n +0000030420 00000 n +0000104824 00000 n +0000031613 00000 n +0000030645 00000 n +0000031463 00000 n +0000104932 00000 n +0000032683 00000 n +0000031677 00000 n +0000032546 00000 n +0000105040 00000 n +0000033820 00000 n +0000032747 00000 n +0000033659 00000 n +0000105148 00000 n +0000035203 00000 n +0000097120 00000 n +0000096925 00000 n +0000033884 00000 n +0000034807 00000 n +0000035145 00000 n +0000103409 00000 n +0000104107 00000 n +0000104026 00000 n +0000104623 00000 n +0000105339 00000 n +0000105256 00000 n +0000105723 00000 n +0000105746 00000 n +0000105768 00000 n +trailer +<< +/Size 138 +/Root 2 0 R +/Info 1 0 R +>> +startxref +105889 +%%EOF diff --git a/src/axiom-website/CATS/schaum27.input.pamphlet b/src/axiom-website/CATS/schaum27.input.pamphlet new file mode 100644 index 0000000..68d33a3 --- /dev/null +++ b/src/axiom-website/CATS/schaum27.input.pamphlet @@ -0,0 +1,1571 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum27.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.540~~~~~$\displaystyle +\int{\sinh{ax}}~dx$} +$$\int{\sinh{ax}}= +\frac{\cosh{ax}}{a} +$$ +<<*>>= +)spool schaum27.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sinh(a*x),x) +--R +--R cosh(a x) +--R (1) --------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=cosh(a*x)/a +--R +--R cosh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:540 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.541~~~~~$\displaystyle +\int{x\sinh{ax}}~dx$} +$$\int{x\sinh{ax}}= +\frac{x*\cosh{ax}}{a}-\frac{\sinh{ax}}{a^2} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*sinh(a*x),x) +--R +--R +--R - sinh(a x) + a x cosh(a x) +--R (1) --------------------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=(x*cosh(a*x))/a-sinh(a*x)/a^2 +--R +--R - sinh(a x) + a x cosh(a x) +--R (2) --------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:541 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.542~~~~~$\displaystyle +\int{x^2\sinh{ax}}~dx$} +$$\int{x^2\sinh{ax}}= +\left(\frac{x^2}{a}+\frac{2}{a^3}\right)\cosh{ax}-\frac{2x}{a^2}\sinh{ax} +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2*sinh(a*x),x) +--R +--R +--R 2 2 +--R - 2a x sinh(a x) + (a x + 2)cosh(a x) +--R (1) -------------------------------------- +--R 3 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=(x^2/a+2/a^3)*cosh(a*x)-(2*x)/a^2*sinh(a*x) +--R +--R 2 2 +--R - 2a x sinh(a x) + (a x + 2)cosh(a x) +--R (2) -------------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 9 14:542 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.543~~~~~$\displaystyle +\int{\frac{\sinh{ax}}{x}}~dx$} +$$\int{\frac{\sinh{ax}}{x}}= +ax+\frac{(ax)^3}{3\cdot 3!}+\frac{(ax)^5}{5\cdot 5!}+\cdots +$$ +<<*>>= +)clear all + +--S 10 14:543 Axiom cannot compute this integral +aa:=integrate(sinh(a*x)/x,x) +--R +--R +--R x +--I ++ sinh(%N a) +--I (1) | ---------- d%N +--I ++ %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.544~~~~~$\displaystyle +\int{\frac{\sinh{ax}}{x^2}}~dx$} +$$\int{\frac{\sinh{ax}}{x^2}}= +-\frac{\sinh{ax}}{x}+\int{\frac{\cosh{ax}}{x}} +$$ +<<*>>= +)clear all + +--S 11 14:544 Axiom cannot compute this integral +aa:=integrate(sinh(a*x)/x^2,x) +--R +--R +--R x +--I ++ sinh(%N a) +--I (1) | ---------- d%N +--R ++ 2 +--I %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.545~~~~~$\displaystyle +\int{\frac{dx}{\sinh{ax}}}~dx$} +$$\int{\frac{1}{\sinh{ax}}}= +\frac{1}{a}\ln\tanh{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 12 +aa:=integrate(1/sinh(a*x),x) +--R +--R +--R - log(sinh(a x) + cosh(a x) + 1) + log(sinh(a x) + cosh(a x) - 1) +--R (1) ----------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 13 +bb:=1/a*log(tanh(a*x)/2) +--R +--R tanh(a x) +--R log(---------) +--R 2 +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 14 14:545 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R tanh(a x) +--R - log(---------) - log(sinh(a x) + cosh(a x) + 1) +--R 2 +--R + +--R log(sinh(a x) + cosh(a x) - 1) +--R / +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.546~~~~~$\displaystyle +\int{\frac{x~dx}{\sinh{ax}}}~dx$} +$$\int{\frac{x}{\sinh{ax}}}= +\frac{1}{a^2}\left\{ax-\frac{(ax)^3}{18}+\frac{7(ax)^5}{1800}-\cdots ++\frac{2(-1)^n(2^{2n-1})B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 15 14:546 Axiom cannot compute this integral +aa:=integrate(x/sinh(a*x),x) +--R +--R +--R x +--I ++ %N +--I (1) | ---------- d%N +--I ++ sinh(%N a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.547~~~~~$\displaystyle +\int{\sinh^2{ax}}~dx$} +$$\int{\sinh^2{ax}}= +\frac{\sinh{ax}\cosh{ax}}{2a}-\frac{x}{2} +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(sinh(a*x)^2,x) +--R +--R +--R cosh(a x)sinh(a x) - a x +--R (1) ------------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=(sinh(a*x)*cosh(a*x))/(2*a)-x/2 +--R +--R cosh(a x)sinh(a x) - a x +--R (2) ------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 18 14:547 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.548~~~~~$\displaystyle +\int{x\sinh^2{ax}}~dx$} +$$\int{x\sinh^2{ax}}= +\frac{x*\sinh{2ax}}{4a}-\frac{\cosh{2ax}}{8a^2}-\frac{x^2}{4} +$$ +<<*>>= +)clear all + +--S 19 +aa:=integrate(x*sinh(a*x)^2,x) +--R +--R +--R 2 2 2 2 +--R - sinh(a x) + 4a x cosh(a x)sinh(a x) - cosh(a x) - 2a x +--R (1) ----------------------------------------------------------- +--R 2 +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 20 +bb:=(x*sinh(2*a*x))/(4*a)-cosh(2*a*x)/(8*a^2)-x^2/4 +--R +--R 2 2 +--R 2a x sinh(2a x) - cosh(2a x) - 2a x +--R (2) ------------------------------------ +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 21 +cc:=aa-bb +--R +--R (3) +--R 2 +--R - 2a x sinh(2a x) - sinh(a x) + 4a x cosh(a x)sinh(a x) + cosh(2a x) +--R + +--R 2 +--R - cosh(a x) +--R / +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 22 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 23 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R - 4a x sinh(2a x) + 8a x cosh(a x)sinh(a x) + cosh(2a x) - 2cosh(a x) + 1 +--R -------------------------------------------------------------------------- +--R 2 +--R 16a +--R Type: Expression Integer +--E + +--S 24 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +ee:=coshsqrrule dd +--R +--R - x sinh(2a x) + 2x cosh(a x)sinh(a x) +--R (7) -------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 26 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %K sinh(y + x) - %K sinh(y - x) +--I (8) %K cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 27 14:548 Schaums and Axiom agree +ff:=sinhcoshrule ee +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.549~~~~~$\displaystyle +\int{\frac{dx}{\sinh^2{ax}}}~dx$} +$$\int{\frac{1}{\sinh^2{ax}}}= +-\frac{\coth{ax}}{a} +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(1/sinh(a*x)^2,x) +--R +--R +--R 2 +--R (1) - ------------------------------------------------------- +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=-coth(a*x)/a +--R +--R coth(a x) +--R (2) - --------- +--R a +--R Type: Expression Integer +--E + +--S 30 +cc:=aa-bb +--R +--R (3) +--R 2 +--R coth(a x)sinh(a x) + 2cosh(a x)coth(a x)sinh(a x) +--R + +--R 2 +--R (cosh(a x) - 1)coth(a x) - 2 +--R / +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 31 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 32 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R 4cosh(a x)coth(a x)sinh(a x) + (cosh(2a x) + 2cosh(a x) - 3)coth(a x) - 4 +--R -------------------------------------------------------------------------- +--R 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) - 3a +--R Type: Expression Integer +--E + +--S 33 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 34 +ee:=coshsqrrule dd +--R +--R 2cosh(a x)coth(a x)sinh(a x) + (cosh(2a x) - 1)coth(a x) - 2 +--R (7) ------------------------------------------------------------ +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 35 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--I %B sinh(y + x) - %B sinh(y - x) +--I (8) %B cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 36 +ff:=sinhcoshrule ee +--R +--R coth(a x)sinh(2a x) + (cosh(2a x) - 1)coth(a x) - 2 +--R (9) --------------------------------------------------- +--R a sinh(2a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 37 +cothrule:=rule(coth(x) == cosh(x)/sinh(x)) +--R +--R cosh(x) +--R (10) coth(x) == ------- +--R sinh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 38 +gg:=cothrule ff +--R +--R cosh(a x)sinh(2a x) - 2sinh(a x) + cosh(a x)cosh(2a x) - cosh(a x) +--R (11) ------------------------------------------------------------------ +--R a sinh(a x)sinh(2a x) + (a cosh(2a x) - a)sinh(a x) +--R Type: Expression Integer +--E + +--S 39 +hh:=sinhcoshrule gg +--R +--R sinh(3a x) - 3sinh(a x) + 2cosh(a x)cosh(2a x) - 2cosh(a x) +--R (12) ----------------------------------------------------------- +--R a sinh(3a x) + 2a sinh(a x)sinh(2a x) - 3a sinh(a x) +--R Type: Expression Integer +--E + +--S 40 +sinhsinhrule:=rule(sinh(x)*sinh(y)==1/2*(cosh(x+y)-cosh(x-y))) +--R +--I %M cosh(y + x) - %M cosh(y - x) +--I (13) %M sinh(x)sinh(y) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 41 +ii:=sinhsinhrule gg +--R +--R 2cosh(a x)sinh(2a x) - 4sinh(a x) + 2cosh(a x)cosh(2a x) - 2cosh(a x) +--R (14) --------------------------------------------------------------------- +--R (2a cosh(2a x) - 2a)sinh(a x) + a cosh(3a x) - a cosh(a x) +--R Type: Expression Integer +--E + +--S 42 +coshcoshrule:=rule(cosh(x)*cosh(y)==1/2*(cosh(x+y)+cosh(x-y))) +--R +--I %N cosh(y + x) + %N cosh(y - x) +--I (15) %N cosh(x)cosh(y) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 43 +jj:=coshcoshrule ii +--R +--R 2cosh(a x)sinh(2a x) - 4sinh(a x) + cosh(3a x) - cosh(a x) +--R (16) ---------------------------------------------------------- +--R (2a cosh(2a x) - 2a)sinh(a x) + a cosh(3a x) - a cosh(a x) +--R Type: Expression Integer +--E + +--S 44 14:549 Schaums and Axiom differ by a constant +kk:=sinhcoshrule jj +--R +--R 1 +--R (17) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.550~~~~~$\displaystyle +\int{\sinh{ax}\sinh{px}}~dx$} +$$\int{\sinh{ax}\sinh{px}}= +\frac{\sinh(a+p)x}{2(a+p)}-\frac{\sinh(a-p)x}{2(a-p)} +$$ +<<*>>= +)clear all + +--S 45 +aa:=integrate(sinh(a*x)*sinh(p*x),x) +--R +--R +--R a cosh(a x)sinh(p x) - p cosh(p x)sinh(a x) +--R (1) ------------------------------------------- +--R 2 2 2 2 2 2 +--R (p - a )sinh(a x) + (- p + a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 46 +bb:=(sinh(a+p)*x)/(2*(a+p))-(sinh(a-p)*x)/(2*(a-p)) +--R +--R (p - a)x sinh(p + a) + (- p - a)x sinh(p - a) +--R (2) --------------------------------------------- +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E + +--S 47 14:550 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 2a cosh(a x)sinh(p x) +--R + +--R 2 +--R ((- p + a)x sinh(p + a) + (p + a)x sinh(p - a))sinh(a x) +--R + +--R 2 +--R - 2p cosh(p x)sinh(a x) + (p - a)x cosh(a x) sinh(p + a) +--R + +--R 2 +--R (- p - a)x cosh(a x) sinh(p - a) +--R / +--R 2 2 2 2 2 2 +--R (2p - 2a )sinh(a x) + (- 2p + 2a )cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.551~~~~~$\displaystyle +\int{\sinh{ax}\sin{px}}~dx$} +$$\int{\sinh{ax}\sin{px}}= +\frac{a\cosh{ax}\sin{px}-p\sinh{ax}\cos{px}}{a^2+p^2} +$$ +<<*>>= +)clear all + +--S 48 +aa:=integrate(sinh(a*x)*sin(p*x),x) +--R +--R +--R (1) +--R 2 +--R (a sin(p x) - p cos(p x))sinh(a x) +--R + +--R (2a cosh(a x)sin(p x) - 2p cos(p x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a cosh(a x) + a)sin(p x) - p cos(p x)cosh(a x) + p cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 49 +bb:=(a*cosh(a*x)*sin(p*x)-p*sinh(a*x)*cos(p*x))/(a^2+p^2) +--R +--R - p cos(p x)sinh(a x) + a cosh(a x)sin(p x) +--R (2) ------------------------------------------- +--R 2 2 +--R p + a +--R Type: Expression Integer +--E + +--S 50 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (a sin(p x) + p cos(p x))sinh(a x) + (- a cosh(a x) + a)sin(p x) +--R + +--R 2 +--R - p cos(p x)cosh(a x) + p cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Expression Integer +--E + +--S 51 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 52 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R (a cosh(2a x) - 2a cosh(a x) + a)sin(p x) + p cos(p x)cosh(2a x) +--R + +--R 2 +--R - 2p cos(p x)cosh(a x) + p cos(p x) +--R / +--R 2 2 2 2 +--R (4p + 4a )sinh(a x) + (4p + 4a )cosh(a x) +--R Type: Expression Integer +--E + +--S 53 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 54 14:551 Schaums and Axiom agree +ee:=coshsqrrule dd +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.552~~~~~$\displaystyle +\int{\sinh{ax}\cos{px}}~dx$} +$$\int{\sinh{ax}\cos{px}}= +\frac{a\cosh{ax}\cos{px}+p\sinh{ax}\sin{px}}{a^2+p^2} +$$ +<<*>>= +)clear all + +--S 55 +aa:=integrate(sinh(a*x)*cos(p*x),x) +--R +--R +--R (1) +--R 2 +--R (p sin(p x) + a cos(p x))sinh(a x) +--R + +--R (2p cosh(a x)sin(p x) + 2a cos(p x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (p cosh(a x) - p)sin(p x) + a cos(p x)cosh(a x) + a cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 56 +bb:=(a*cosh(a*x)*cos(p*x)+p*sinh(a*x)*sin(p*x))/(a^2+p^2) +--R +--R p sin(p x)sinh(a x) + a cos(p x)cosh(a x) +--R (2) ----------------------------------------- +--R 2 2 +--R p + a +--R Type: Expression Integer +--E + +--S 57 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- p sin(p x) + a cos(p x))sinh(a x) + (p cosh(a x) - p)sin(p x) +--R + +--R 2 +--R - a cos(p x)cosh(a x) + a cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Expression Integer +--E + +--S 58 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 59 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R (- p cosh(2a x) + 2p cosh(a x) - p)sin(p x) + a cos(p x)cosh(2a x) +--R + +--R 2 +--R - 2a cos(p x)cosh(a x) + a cos(p x) +--R / +--R 2 2 2 2 +--R (4p + 4a )sinh(a x) + (4p + 4a )cosh(a x) +--R Type: Expression Integer +--E + +--S 60 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 61 14:552 Schaums and Axiom agree +ee:=coshsqrrule dd +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.553~~~~~$\displaystyle +\int{\frac{dx}{p+q\sinh{ax}}}~dx$} +$$\int{\frac{1}{p+q\sinh{ax}}}= +\frac{1}{a\sqrt{p^2+q^2}} +\ln\left(\frac{qe^{ax}+p-\sqrt{p^2+q^2}}{qe^{ax}+p+\sqrt{p^2+q^2}}\right) +$$ +<<*>>= +)clear all + +--S 62 +aa:=integrate(1/(p+q*sinh(a*x)),x) +--R +--R +--R (1) +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 63 +bb:=1/(a*sqrt(p^2+q^2))*log((q*%e^(a*x)+p-sqrt(p^2+q^2))/(q*%e^(a*x)+p+sqrt(p^2+q^2))) +--R +--R +-------+ +--R | 2 2 a x +--R - \|q + p + q %e + p +--R log(--------------------------) +--R +-------+ +--R | 2 2 a x +--R \|q + p + q %e + p +--R (2) ------------------------------- +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E + +--S 64 14:553 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R +-------+ +--R | 2 2 a x +--R - \|q + p + q %e + p +--R - log(--------------------------) +--R +-------+ +--R | 2 2 a x +--R \|q + p + q %e + p +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.554~~~~~$\displaystyle +\int{\frac{dx}{(p+q\sinh{ax})^2}}~dx$} +$$\int{\frac{1}{(p+q\sinh{ax})^2}}= +\frac{-q\cosh{ax}}{a(p^2+q^2)(p+q\sinh{ax})} ++\frac{p}{p^2+q^2}\int{\frac{1}{p+q\sinh{ax}}} +$$ +<<*>>= +)clear all + +--S 65 +aa:=integrate(1/(p*q*sinh(a*x))^2,x) +--R +--R +--R (1) +--R 2 +--R - ------------------------------------------------------------------------ +--R 2 2 2 2 2 2 2 2 2 2 +--R a p q sinh(a x) + 2a p q cosh(a x)sinh(a x) + a p q cosh(a x) - a p q +--R Type: Union(Expression Integer,...) +--E + +--S 66 +t1:=integrate(1/(p+q*sinh(a*x)),x) +--R +--R (2) +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 67 +bb:=(-q*cosh(a*x))/(a*(p^2+q^2)*(p+q*sinh(a*x)))+p/(p^2+q^2)*t1 +--R +--R (3) +--R 2 +--R (p q sinh(a x) + p ) +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R +-------+ +--R | 2 2 +--R - q cosh(a x)\|q + p +--R / +--R +-------+ +--R 3 2 2 3 | 2 2 +--R ((a q + a p q)sinh(a x) + a p q + a p )\|q + p +--R Type: Expression Integer +--E + +--S 68 14:554 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (4) +--R 3 3 3 3 3 4 2 2 +--R - p q sinh(a x) + (- 2p q cosh(a x) - p q )sinh(a x) +--R + +--R 3 3 2 4 2 3 3 4 2 2 +--R (- p q cosh(a x) - 2p q cosh(a x) + p q )sinh(a x) - p q cosh(a x) +--R + +--R 4 2 +--R p q +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R 2 3 2 2 3 2 3 2 +--R p q cosh(a x)sinh(a x) + (2p q cosh(a x) - 2q - 2p q)sinh(a x) +--R + +--R 2 3 3 2 3 2 3 +--R p q cosh(a x) - p q cosh(a x) - 2p q - 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R / +--R 2 5 4 3 3 +--R (a p q + a p q )sinh(a x) +--R + +--R 2 5 4 3 3 4 5 2 2 +--R ((2a p q + 2a p q )cosh(a x) + a p q + a p q )sinh(a x) +--R + +--R 2 5 4 3 2 3 4 5 2 2 5 +--R (a p q + a p q )cosh(a x) + (2a p q + 2a p q )cosh(a x) - a p q +--R + +--R 4 3 +--R - a p q +--R * +--R sinh(a x) +--R + +--R 3 4 5 2 2 3 4 5 2 +--R (a p q + a p q )cosh(a x) - a p q - a p q +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.555~~~~~$\displaystyle +\int{\frac{dx}{p^2+q^2\sinh^2{ax}}}$} +$$\int{\frac{1}{p^2+q^2\sinh^2{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{ap\sqrt{q^2-p^2}}\tan^{-1}\frac{\sqrt{q^2-p^2}\tanh{ax}}{p}\\ +\\ +\displaystyle +\frac{1}{2ap\sqrt{p^2-q^2}}\ln\left(\frac{p+\sqrt{p^2-q^2}\tanh{ax}} +{p-\sqrt{p^2-q^2}\tanh{ax}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 69 +aa:=integrate(1/(p^2+q^2*sinh(a*x)^2),x) +--R +--R +--R (1) +--R [ +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) - 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (- 4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (- 2q + 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (4p q - 4p q )sinh(a x) + (8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (4p q - 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) - 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (- 4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (- 2q + 4p )cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R , +--R +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 70 +bb1:=1/(a*p*sqrt(q^2-p^2))*atan((sqrt(q^2-p^2)*tanh(a*x))/p) +--R +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q - p +--R atan(-------------------) +--R p +--R (2) ------------------------- +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R Type: Expression Integer +--E + +--S 71 +bb2:=1/(2*a*p*sqrt(p^2-q^2))*log((p+sqrt(p^2-q^2)*tanh(a*x))/(p-sqrt(p^2-q^2)*tanh(a*x))) +--R +--R +---------+ +--R | 2 2 +--R - tanh(a x)\|- q + p - p +--R log(---------------------------) +--R +---------+ +--R | 2 2 +--R tanh(a x)\|- q + p - p +--R (3) -------------------------------- +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R Type: Expression Integer +--E + +--S 72 +cc1:=aa.1-bb1 +--R +--R (4) +--R +-------+ +--R | 2 2 +--R \|q - p +--R * +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) - 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (- 4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (- 2q + 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (4p q - 4p q )sinh(a x) + (8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (4p q - 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) - 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (- 4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (- 2q + 4p )cosh(a x) + q +--R + +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 tanh(a x)\|q - p +--R - 2\|- q + p atan(-------------------) +--R p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 73 +cc2:=aa.2-bb1 +--R +--R (5) +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q - p +--R - atan(-------------------) +--R p +--R + +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R Type: Expression Integer +--E + +--S 74 +cc3:=aa.2-bb1 +--R +--R (6) +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q - p +--R - atan(-------------------) +--R p +--R + +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R Type: Expression Integer +--E + +--S 75 14:555 Axiom cannot simplify this expression +cc4:=aa.2-bb2 +--R +--R (7) +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 - tanh(a x)\|- q + p - p +--R - \|q - p log(---------------------------) +--R +---------+ +--R | 2 2 +--R tanh(a x)\|- q + p - p +--R + +--R +---------+ +--R | 2 2 +--R 2\|- q + p +--R * +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.556~~~~~$\displaystyle +\int{\frac{dx}{p^2-q^2\sinh^2{ax}}}~dx$} +$$\int{\frac{1}{p^2-q^2\sinh^2{ax}}}= +\frac{1}{2ap\sqrt{p^2+q^2}}\ln\left(\frac{p+\sqrt{p^2+q^2}\tanh{ax}} +{p-\sqrt{p^2+q^2}\tanh{ax}}\right) +$$ +<<*>>= +)clear all + +--S 76 +aa:=integrate(1/(p^2+q^2*sinh(a*x)^2),x) +--R +--R +--R (1) +--R [ +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) - 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (- 4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (- 2q + 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (4p q - 4p q )sinh(a x) + (8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (4p q - 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) - 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (- 4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (- 2q + 4p )cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R , +--R +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 77 +bb:=1/(2*a*p*sqrt(p^2+q^2))*log((p+sqrt(p^2+q^2)*tanh(a*x))/(p-sqrt(p^2+q^2)*tanh(a*x))) +--R +--R +-------+ +--R | 2 2 +--R - tanh(a x)\|q + p - p +--R log(-------------------------) +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q + p - p +--R (2) ------------------------------ +--R +-------+ +--R | 2 2 +--R 2a p\|q + p +--R Type: Expression Integer +--E + +--S 78 +cc1:=aa.1-bb +--R +--R (3) +--R +-------+ +--R | 2 2 +--R \|q + p +--R * +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) - 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (- 4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (- 2q + 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (4p q - 4p q )sinh(a x) + (8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (4p q - 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) - 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (- 4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (- 2q + 4p )cosh(a x) + q +--R + +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 - tanh(a x)\|q + p - p +--R - \|- q + p log(-------------------------) +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q + p - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q + p +--R Type: Expression Integer +--E + +--S 79 14:556 Axiom cannot simplify this expression +cc2:=aa.2-bb +--R +--R (4) +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 - tanh(a x)\|q + p - p +--R - \|q - p log(-------------------------) +--R +-------+ +--R | 2 2 +--R tanh(a x)\|q + p - p +--R + +--R +-------+ +--R | 2 2 +--R 2\|q + p +--R * +--R atan +--R 2 2 2 2 2 2 2 +--R (q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) - q + 2p ) +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|q - p \|q + p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.557~~~~~$\displaystyle +\int{x^m\sinh{ax}}~dx$} +$$\int{x^m\sinh{ax}}= +\frac{x^m\cosh{ax}}{a}-\frac{m}{a}\int{x^{m-1}\cosh{ax}} +$$ +<<*>>= +)clear all + +--S 80 14:557 Axiom cannot compute this integral +aa:=integrate(x^m*sinh(a*x),x) +--R +--R +--R x +--R ++ m +--I (1) | sinh(%N a)%N d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.558~~~~~$\displaystyle +\int{\sinh^n}~dx$} +$$\int{\sinh^n}= +\frac{\sinh^{n-1}{ax}\cosh{ax}}{an}-\frac{n-1}{n}\int{\sinh^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 81 14:558 Axiom cannot compute this integral +aa:=integrate(sinh(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | sinh(%N a) d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.559~~~~~$\displaystyle +\int{\frac{\sinh{ax}}{x^n}}~dx$} +$$\int{\frac{\sinh{ax}}{x^n}}= +\frac{-\sinh{ax}}{(n-1)x^{n-1}}+\frac{a}{n-1}\int{\frac{\cosh{ax}}{n^{n-1}}} +$$ +<<*>>= +)clear all + +--S 82 14:559 Axiom cannot compute this integral +aa:=integrate(sinh(a*x)/x^n,x) +--R +--R x +--I ++ sinh(%T a) +--I (3) | ---------- d%T +--R ++ n +--I %T +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.560~~~~~$\displaystyle +\int{\frac{dx}{\sinh^n{ax}}}~dx$} +$$\int{\frac{1}{\sinh^n{ax}}}= +\frac{-\cosh{ax}}{a(n-1)\sinh^{n-1}{ax}} +-\frac{n-2}{n-1}\int{\frac{1}{\sinh^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 83 14:560 Axiom cannot compute this integral +aa:=integrate(1/sinh(a*x)^n,x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------- d%N +--R ++ n +--I sinh(%N a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.561~~~~~$\displaystyle +\int{\frac{x~dx}{\sinh^n{ax}}}~dx$} +$$\int{\frac{x}{\sinh^n{ax}}}= +\frac{-x\cosh{ax}}{a(n-1)\sinh^{n-1}{ax}} +-\frac{1}{a^2(n-1)(n-2)\sinh^{n-2}{ax}} +-\frac{n-2}{n-1}\int{\frac{x}{\sinh^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 84 14:561 Axiom cannot compute this integral +aa:=integrate(x/sinh(a*x)^n,x) +--R +--R +--R x +--I ++ %N +--I (1) | ----------- d%N +--R ++ n +--I sinh(%N a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p86 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum27.input.pdf b/src/axiom-website/CATS/schaum27.input.pdf new file mode 100644 index 0000000..7b98372 --- /dev/null +++ b/src/axiom-website/CATS/schaum27.input.pdf @@ -0,0 +1,3038 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/BPNPKR+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/MFIMKF+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/DNKIKV+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/JZFSYN+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/ZTXZWV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/RZMFRX+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/WDEHSO+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/OXDYHN+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length 876 +>> +stream +xXn@}rW,AʜHr@M$(HMvWҠk|wrj`vCVUelj˸n/voNN]z@ Xq[E3x&'Zk[$ k 7@G,n^}i`9Vxsy{FdskiWUBLWбޠe\/|p0̔p NPO\T[3U1Ccl"#(@=˫QZa$eA@]ap]M4Sha#QHg"tH7ows"BДS&#E(FD =:gJJcMQq}Gvcʘ],DikeS1,4Lb?;A, R)>#ŭ ~OM` 3?P!c?dw/y'3w?CB1Eîh{#1Gz$2ebq5fy¨R-n&M; eus򇙢)S%2[7&7wyrp)JO}2e?<{SN :3EĜ!a1q$ΌXLW<6E+hdD:~:T^*p3ԵqXnEm}L7mƯYͯ깄^ &vEyBJ)\ kۼ5R3!MXY,c#tY,SY@Iz)>&> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 40 0 R +>> +endobj +43 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +46 0 obj +<< +/Encoding 43 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 45 0 R +/BaseFont/TRPALP+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/QKINME+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 524 +>> +stream +xڵU=1 .v$8@B|H D?'fgVwU4g;9 +x 72fP`RE$]K^l5Cs'trbo7+P9,Ht)z\l$P̱0XyjU,i=%'mL@ZqH?5()tiZ:00Qi1>[F"TiK!)`"^?$ep$ud<1&Ii}݀YJUyZAEwi}'  j > e 0EdasXI~itqWJ)E9NX=i5 .֜ mӼuԱ(['pa%GcD9]D/V,$2b?ZV 5MkT Qw2 8ޕO9i<& ?Ա2 +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F3 16 0 R +/F10 49 0 R +>> +endobj +42 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/IFEXKV+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/UJAASU+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/OGTUGB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 568 +>> +stream +xڭTM0WV8*[^كa "Al.fy0aY| +"1bMASs'!J+6x~>BjZ +ю#DHT |(;pB!a@ey>*pZr1$'%(%lc-91m ΫBR0}I2ӊ$BiP@u_ ^:c̀Ovs$m{x0G/HBB $raT wS8E}/۪ZIvv߸.G#h=+3Ak|:q{6F֯[Vu {C_+qOMYêڄrWld-eM&FJi"-VNJ. +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 645 +>> +stream +xVMo@+h~7R ZG.ErRFJ*){fرHQ|x€1$;f6Q+̾jBooR΅Nn1XF)CmY.@b6 +1@Zj~}uQT)V'U +^Y3Bc;CpX:("%c]x''z[N X:Pj^<-Jw"5IȆ6k2U B:h̀Lp %N%0v?4c LTnՇp ;;heq{P! #::q5[y7@t.[}DyKqJ!.,h.eKGXktE1rW\Vh[riO/Q-*Ȁ2ptk< :ү~3 +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 46 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 773 +>> +stream +xVKo@+h't더 u+9i#ia=įD"RofvmBR@_^K$I߈f`ɴofqܰ z)kM,X0Ah| 5@Ƨ>bD@nHvpح603ޣL} + 1 Z)VR9zP9`@"6h``oBF61Ź +y +&Y)X!kHOah 3~*}#=`N%+ +-m#VWM?_I ezUv;叮^pb1_c߉"E\dE݈Ns=09 +?4&}>L֫秸ar2-l8 1 +·vI +dc +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 926 +>> +stream +xVM9+a4k\j8@,J L2mVOtw:@\]\BRߧO@ڈ{+J"g]>?}D  WL*; 4ˎblBv1BmZSӈFOBkAڂx@BM1L|Bx!7>ݡ$)>@ݞpX8qހ<9h-~"Dy XgAf$؟/ԓC ҠUY -T+|}:aGYFC5c)#&CdBBdv{ w2bb$t#.{1bFJnCF0~%8%}wɡDۑkM2&_EҠJr Ochȁݥݳ;9D[ə&fg+!]/˫춒*r*JKsa|]r\6xu}i3/u-Yc6;;oV7:z2{m)} )_~Ťۦ!6Y|VI9*j!e<8[eyCW\c_. )kv8y"edx|\b{s;_y\%総`> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 729 +>> +stream +xڵVn@+fisĢU]6d8 CIb@H%yx08U yMW0\=Q $T#I&o35nyI!wo+E,XC ObȏX5pBs]ġaA#ʀQ Ys &6TǓu y(cQd`с7"Ct{Cт*edʹ6֍q7N-P\t3H#ݦ!W l +OD-Ҳ Kp,N6Je!]jKAarƚifOlϺ zwލ~Vu62'X9`ԕEN:`Y:Z66,Gj?kʳ]1pJqS7ojYd|q7__._?NGc6,€17 *[N&2ay=Qڸ^"Ag/\n# w꩖o\qK>VPfqY-L)jWZ0Gi:sV{=c4=c Mw_/ڽM狩߯~/O +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +87 0 obj +<< +/Encoding 43 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 86 0 R +/BaseFont/JCUYCF+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 878 +>> +stream +xڵVM8+)aH=E; 8a,A/43iD#)jescW{UeGHR|FZ]5(-V h6b "~b+mq.!lv7[ NaI%hd_7>@zV +R 7}KSPH7ۯGgZdM !:f(s^ z J&Z937ڐ<8q 4$@=Qca{*L{bM\1ؗi1 ^&@<)=O 0^']. +KTj@q}Zlə#+ +0PW% 0ffV*;>z]K +lι*Դf&ɌCJc ?"O2'3qrKROΑ2H9$ELMKćӼH2tSLbnˑecCDqD|X7lQJDDa.9S7.yP*%QmmI،PDZl[ΣSoاH Kd:uԄ>M0ghc\ZőG6驞W`ԳԺcP%V8z0YWa599'-6JȅRM:e fhMv3kTktHwsd|/sAӼϋhX\*?> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 651 +>> +stream +xڵUMo1WK8jRB/ɦB !w@lϼ7oƘ ݲ38_h&5(? ց$Kh+y=!/]z=:̃"%9šr=*E]v]R]4 4 eN.֣RIn!%ndfmlREP`2"]YA}J BT㝽(pDmc$dJ x.vh`34;S5%uqOjv0#]_Y={-ȌT@t;2brX z {V#&L#ܓ206|%èŪFL[j؝=!΅%%nrXNѦ>T.eMX׵8"T>g*mkE16Ox*zUymw5 +Q!4(johg}PRA?'VD}2XN"&OΫm: 38.dLQ#ZX8OpT)*2E6,$> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 810 +>> +stream +xڵVMo@Wѐx~#qTƉd(M( R?6J!^μ}ob@'?>ѭ@*1! "6 F$Ørѭ ),yʷ"Eɰu̮FHҊ$_.?߆4$J`BM,8ԫl71{@f&c8B>[ӱA1[,X#(d[o,Y `A2MncRmc4͐\U7S6q#b_4Jj0T;!.xWu,PW*Aتm.vҠOP-L&?!@! +e Qom]{XI|uCL_$XS$BIt1@!-J2<0r-{ȻjM ܘ܂EĚlʋ.xw"jβd~] P>Gw$"TF:p U-pb0KrQ4:Y缏\ֳL|he1.|]/it{,[ӟBk8lwu)Jg s3Qa<ϺaH<{YYNCNoLWEkB/:^nvd$ݞۻO4'g >t5KdݺzčN)ogm/^OW_Q): +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xV_o0K}i}yk6Cht| nphKwwQB)zDr+#I@22}]9 0cDaXW՟_p VEhd(VBPbދp%S?Y10JI92ޱ=ǖqe[Vgm;חp|"Bˡox)L/cY]6tzʺ^<-/̸aBLdx7|8r2{JnK ,U24UugJ ]bU6ouq픮Ԇ]_"O?n&'nNR!}iNAOl5dBWLa/贋 :j6d]RadsVdPwL,;{aJ[X>5G䔃"B/L]ibݔV-R>cv+ *[+ҫ"8iZ7mfUSOfqpĸ @,ۜLF +endstream +endobj +101 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 221 +>> +stream +xm;o0 +@E thHF[!H؁O`xAp!i_(ǝ_%n Hn5;C +P&C-56CinTUf·]ӥw֌!%.5u_!眈oHjenݴЂ4J[H1c7i_Єq.>=d{i +ErQ>%+pݩX +endstream +endobj +105 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 765 +>> +stream +xVMo@+~z#h!\F +iI':nU$D3o7vg[~ޒ׳"Td`VjS\G@n&ޏ q(~ !ca[$us i(Ιu|'B9M{"Oqذ-],,̐W0SDe2mFy `N!iOZɜ 3eWt NVhbp%n\ ,v5@309Z QLP')^rhʱm0qws_fǻ@6Pס3JńFvؙ:'JBCQsr\l&R970L)Uvp9.5ȨT !FUSoFTW G8Z!ҏ1(6d\?6 +lW c(/R>0!B' ҿ U drd0afwL( 4 +WqOp8~h&i_Walxn6 qږ\>1!_|>L?i*KM'GA еlvl)8J>bL/83j9lt n>5aOK` ]=y$'C1c0~y^fsLJnCM[cq x6+> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 560 +>> +stream +xVKo0 W2@'GO?R,-cۼEu34"ٖ-2I}$?F4=p ( eP˜!0V(E0m7I + RUsdBWytK-ΨlAЬsky|D$S9ˎOL[xY<}v_<z\ʢ6,zd/M.}3zbz=k7e jumT㭠r,Z]T=!ݾ6hf!39}6_rrs!UMGbɈKZGn㍤Dz('b> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 885 +>> +stream +xڽWn0+t&$9hRƽ4AvĀq:I-$Gefgy+pI w4V1|rA7vjJvmzA)U%VUڨyx]҉*b@cBӴhbTjw`(To J6ʺZ *c'(K1t +2 }P@&3;Y& "#d}є뀤11҄&6kdČ3M0p /ѥM4UIOU{՘C>ϛNi$x4B$piRA5?6*c\Qmr/ g>rlܲtUL1@y2NS_nVsD6|1aqBPJXb}Y?/̑,?gљ|oSTj 8I$04,v9vzm'EۦlcUL1YXwߛ8=YrޯDd_̪خYx/Wג"sJi?b16)m4 ̭rɉV[ʳhog҃u8H#=Jx+yɥNSC@ÐXsO!N@)2SY;7~f~n{>T},6WzyXlx9|]9Y,lQS1X6&UӆUn o[Dz:ܜ࣬fz\(M<c߁ި:!fRm~dS7'n5-MǨ2:IS!k)=ffp9;VV"}~:_ +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE0 Dwc2؍FD`DceG!ӝӁ#砇5D I0xRijEߘ֢x19eYQ2k>dglKVE4Tc5S^~% +endstream +endobj +129 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 794 +>> +stream +xڽV[o0~W1iJ}AlYya٤QlU;9vq.+CRe'|߹ƈJn9I"$Z~GֆHx~0bƸJnԔbZ#KvLh!_KXeڨ?J-5 +DFqZ1J xfSQɷSLh"9YdX4.1#¦QLn`;,H5\c004tсBĈ~:vhsJiۈ 9hV.kms!s,mFWK~A81[D?A\e0pF=s6 $%Չy{gЄ)n9;K*uo(ѝxMT]ۘv8FEl-3Eh@{pjz))V0PgXM)Y-kE1_l7y*ɓbr doBuesKL/!:=Jm q{&ͼT}_Gן[BHYX Ϩ~2=_3xyϧ{>T>?2 mtsC&%]#]Q2!QC`2~A- og_.z( +Zbz7H]0ŧ9[*{L{7I͈H.rJ|ݡ} +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 46 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 520 +>> +stream +xVM0+|t8'H*͍T5[mC+ʿ'ݐ&q7V:3of^hH)!3Go-P&_bbH@Ou@8P! A4c%Ig9("Id63 E@"3즧,p{.T ? SQvw΋ sw&R}/˧ozl3lë\ڑƆ76S2iVŝG%,!7M7?{I:YsV$y?YZ(zmqܿ>܌s^r`l/YO(w o8RE$ ܕKYe62\Oў5^|ug g"=Gr _` p=SUZTx-5&Zrh&lkushM*/fn{yz\r?>]*]gZk!w%To|0!X!"PlEW +q8 +endstream +endobj +137 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 786 +>> +stream +xڽVn0+xhI(dM `%k hyoV,#j~# LHA4gF .bB9)&Y0heQh!߂T@{8O$٩by|s=?M02~jE(שI 3 !^S9ٶ0͛bk`U m".[8'm5P 1SÚa@dˆY-YFIFt ,Xr)\% 4s&/"\_{rA@Y-vBzjPXx3tzHM:-j[2 *Sg'@i@3]Sw 7k[ř6cp0qq0(l0 +WIR`;PzJ +eex^o4ʦt2>M^ /mޗ+4T5 +d(EUhC(|Yp .餈uFDA{Aϸݺ:H֢N'nUiS cG4ȇ\A9kLBp}Nkk *QzCV=pOh'.ק3#އן|nWn6b^,ݔ:>˧5>9Ǘ0/H}}Gw0#jp@co^˛&AZ ժ7n62z-zXCMbk\%p_d ?\jd"}7^|)>4(giC +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 523 +>> +stream +xV]o0}#45?p @B`|N782߁r e)A( !$zLb) 1/BC$_1 1 e)@$鯃Pwf~{QU/EG{cQR>5Y`ګF n>7#K^jtc"Z+Yl?h7`15eyS%t>n.9^1Uy-4XE-5;fhs:=q<Lz'[ژaI}\\í6[QsH' 255ʚ$62 g但a➬b}忘yk^~9`^PW.S5]|wMFyoJ[Hbw~Y8'cbOɮm +[JMGZz%}i޼GőHt5p^7 +endstream +endobj +145 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1060 +>> +stream +xWKo7W+)ۀ/E=&%PR1z wHK˵f&qNI|A~[-oIEV#ՄZ`J +fT +մxMA)I&[*Aܬ0 E%9P3+kyKb>٧H" %/_n +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F10 49 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 583 +>> +stream +xڵVn0+m?9…f2I[IqH:[cg6 +26m'N]1nm9EQlPL7w4;M켮8e͛1-美]>Cɟt|g_!bt^ +0|YYȀ^xӵ`utA\D7ű#lI> K +endstream +endobj +153 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +xE!0 P)nY,a#A,d3că&3 +0a& ΑNGbs_I{B:U +endstream +endobj +157 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 1022 +>> +stream +xڽWێ6}WїtS(,z/@] !)QvmE8g8| bCqjˬ&8 h]r؅bb[&51vRlVc,۸0;Et{u d؝ƛ+&Ri2.P7ɂU +ôՄHf-^b]d1kb sP^%J2>Jpz2v鋐K=3N3iFg(wL€ Fݐ{)$\u`eǯ˜bpedL3Ο\P1?WkOztڠ,nl>hٙ)V4ޏisjLfY˙/iB}ƄbքgB_äVLa :&hYeAY8 pBO"pÚ=+=kgܲJceH\4CzT] hRގH̸itK+W/?%U;"'dTwqUۻy_/^W+OYحN˿թi?!(gJ +d4e NI mu"M +md1=UZ1/0o<=oU34).w.=nznWiW]yX|?dV(+x)kM!y[ +hκXbQVt iw\e +)0h,@c8)3c^C +J[\\7C`=mog8=hyp/ +;h֩!E[.Ù'Vk>]6XؔR=G^5rkkԖp8fsAS}=+c/0k+x͊ +endstream +endobj +161 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 665 +>> +stream +xڭVn0+tRS ТNT6l8Dc _,E ir;;K2@1B60k64L!88 oBHA!qrT + Ʊl$^.vB|znv9cZ֋ҭo 1FxGY*W3{ +ytwEc¨mNx0a +aÂ2>/->GK>^xXWi ߎaHcWaΈe%S h4e\ɒ:1*&e0N a)*) tuH'ތE>7FR_*&ڻA멇 I,2 W_s|յ}> u>qì'C׵X׾V߀MaH 0oZGR&i?axUR}CWɥ.d:>W)k埈TkVy$|y:-8gvyv5΋b|=6 ^zqp}&0oQ{uZNR=bD]sɞ./UA/8m^'q*td3I e?kA +endstream +endobj +165 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 615 +>> +stream +xڭWn0,h\F8؆xKHqio9;3!2,7t*4@"ب%vLvCmEaJGFˎX2X\Xr"|ai$oaV@j|x9wwyeG+'"_GEIBHvDĭy8u!p_xM)r̭TOU'2`3祵\cz"j5C`}B̩$ r)DD!\sJn-r7[+}pK ֮79%#v^8X]Q;YVd IĜ|ƍ+CBnwwTTPD۹;J501f!+Y +endstream +endobj +169 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 262 +>> +stream +xڕR=O07D #"E0"oPa(R<- @ /O簁pWka N0'd΀'wm- A&c!+}`ͬCKy42nvU6jRBG0|fT.fv6d+ +{A$i7+7ҋd_Jmʽ|%+d(ktĿEaߍvMmکZFa,VIT֟}Cv +endstream +endobj +173 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1230 +>> +stream +xWKo7W7m4= To P)1P;$\]ہB/g8RQ- ˳ IB(R߮V\;AsTSJ]yvN3(ʛQѬ +hVRUy:K C0F#jT-yqf% ~fvѓȡ (1Ka +HdAk΂yP@0D6Ј̓ƻ.!HIV,Dv@CS7Oمɩ%sq&pL'/+ӖtY>@_xiIi. +#nhgjGY@} ={n›I0EEVkw~I;@gv0K'jzs^##/|]7J;#BX2TeژZ>Xͮ7g#j, W:;|bt:[!7(A".rC=l! xCHS(:T5Ps?X>mϙJ3&_2Z8)e9x+*Dp2M?{<;sSDb^m~{lك{O?g67w7775?F__C ԭQ Ψ3fBpvF库_ACvRhАq7C†ךjGg%cVڜ;}*JO,c{-]nHKi-0ӷ`oӧd'Ӻډ&:M/IKԲE ֡Ks\HC}k9x{fѨ”wMpȆ\ MR4qYnfnAa7\6dP`^7"m`髋+~1,Dv +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 46 0 R +/F14 87 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xڝVMs WpSNOz*ɌqR_!/aYHp, [dw$/@$)E_! ǁ +*]0kh r]*幇 Zf&!d 3zMSk'4c{nq< @Y!\ &/Z>~SJuҬaby<,؎͜YI84Kΰyo˷fzs ; +HYAv!Ny/V0 UˉZXC#e9I;x8Bs͂م[hu.{ng %a C'iq[ b%7gH+PC}{y׵oBZٶF lОgkFeTWǓG +G{+ަU[7<H"MiM[@"TG^9w_"S AYb6 +endstream +endobj +181 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 612 +>> +stream +xڭVn0+xdPKh N[ PH)֋Fp3KфRCv>G&NB/$c(d)*>|HSgQDK[\ *.t1|Mdag0jUR @I 'K¸Ĥ+H3yD89o ,'FTkrh4ݴf_Drm"'p.ȷV{mh1 ⶓ; +|eW^ʹٖysv˗={7lwӘ6%uH [^|dOmiK}b8daƩ6.O։r9v= _Gk=eaSqћoLqEsc״ʘ mu nؘdbO,,tYro/u-9dJ :s{pW^ +endstream +endobj +185 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 600 +>> +stream +xڥVMs WpD dNN{lu =(7Q",YI}H=!S[ +s]7K@dr )&# bⷣb߾5:`lX8j_wD(!K+cV6rsjav(NXYMμ‰dB^KP:JW52Rukل CDpveq+k`s4h +oEf,md?H>"0&s$"ZuC/&Ww {֌H%9>w/sl2p͆Y79Mm"/*|PJhv46Wrr[rKuiL*KP9x[r8~zx8wCV? |뜑{!"ΩGA"fVg`ǧ`b~Cg#P +\QB #}$ qu/[{Ά8_ ']&kjr}ARR,JTIM])=)ohŸd̥ \I{u R }W}ZK +endstream +endobj +189 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 524 +>> +stream +xVMo0i[m=r+=ЈH-C*ǯrq0oƏ"BrHiJ4EX1%z1 d- +DB3-0\K7K03f2e@)`$y۹ !^Ze+KVyYbmnrvqy͆)a3!Rj%J&(S)6etjnۧcҒzHreJvԼ&0 7G6݌`(}pAuާQpPΣ.;P}L_ݻD"j{iA3&p4{r, (|P9_٬6MlZ徝)xc^ïTɀO7kqTf\Saqȣ& 9{6EԞ}>A_W6%M> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 351 +>> +stream +xڍTMS0+r|<:RG7qBCǻ$@KP.˲m^& J(Ed3z,(#BҌhDKT<Xj-O~"ɮamCDse{QIȥf&`z,X[ɱp|WKNp`SN{箙nYE%>N7.̯ZP30yMY]{Tht0=;1Ң7xOxf o{eeԒy=oKo3)T̡jvK}6Gϻ`RT#,J(,3/~s +endstream +endobj +197 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 1068 +>> +stream +xڵXMo6W]o%r)ZSR5q։!)%޸Ʌf8!&qNnI\~#?Ť"jB-0ᗫ[*͕xݴ6xM؃VCa50i U'e(/Ιǜ! x,G%9Lr(2bBE3$u8fL(sh@y?Pf0̪Yț-sv?e+ 9G1 Gޗ`54 $P1 vX{p1jSet/ {``T=T7>PY@8U6_#gR2ȿ.~ǫマRLr&tTc 6\J/t) N2R\̏!]YhnβFu9^JL^12<Gd7mو}9].lڋf{ '\)㌗Th7fWҠbjKV0|#k!uBx(u^ç/ +^]ˉ<Զk\{\!N OQk٘ynh!<+?twJkmZ[WڎZo+RE_쫌Xjoў? +bܱR_Ƴ$yJf˝*֋;ۭ}΅8jtjrE=f~fg+O>?ʼn B2/TkP4DݺݙnM&>qf_%IFFDam~u:L1UP609s:>uu:~Yᤏz!GYm $J< +endstream +endobj +201 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 46 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 587 +>> +stream +xڭVM0Wx^fV=TJUFR~|m؀xgͼ10[n*y )AXPrP}@-,q aNeZ0K@DC ec # X}@B-R܇t9gy@CH 2މD= }Che.Z*tb18\瓌zStҢ4!N\f;Ɨo_;MB\׵claƤ5&eDs+,#Hk^o +ŤgxΙQTJc@1LE:i_US0J Uxf.haMJ/S6Hx&Rm6ˏzEu9lNqBZE"n־뽌ݦ|$":j=E<Ѹ}o&"9#u+OSU"軼M(^P$9h ʷ$0Rky!.PS4oN(LVy(+3\ScUDLb9*KNw. +endstream +endobj +205 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 609 +>> +stream +xڭW=o0+81(b.A mU@A :|,")"Ztǣ #wpI\ ik 5_Ue9nF(H*mZhVmlsF'\+3֌ʂQם;&\K6WMux+SU8S|Xv?&A=| + ~>jXqC +},Tk!yAjfd# ?0ncS?1M9Cq&Ô%`%ZFjzQQv{̕tt’/YE8+]gi>.%]*baTG,^&J#fr֤f*rLppaxP +:%6yE*_^JJJBWT#/ +`Ľc.R;GS!D#֋I_ q{tkFG/wkS7PwJq|k?#\ +endstream +endobj +209 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 532 +>> +stream +xڽVM0Wh62?pZ5[ǖY]KY)? $8qroy3oc $@JHK v!Jr" Bbu:DSi(X=D0wE™(.d\rCvdYԆxo#N#wT K* jv=f8G߳L)k[po_ʮڍԻr[̙4';3z [q.}Ǹ<^{ јvBGc86t‡s}\O妝oJMMPV&}QLx7 PzGI鵠K1) Y^ɞMJĀil B!w^>vW!\ĩHX( bO`v +endstream +endobj +213 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 876 +>> +stream +xVKO1WR) xCBE= R)DJ6j*wއy@)}"{=o30`ܒryOO +"/pPcAw\죚6|8<1ă7JAFWΣY.@VgulcĂwDx"HB[#$.3*,1 0ϻx?#NsF xT4Ol,x'hv o[K6X A@ȯg5t+Fo܁3ztȔA{BΰLv:A +AP|CܴNWqא`]u$&1KU#l6P׈[޼^xZMO{4T2#TH`W0]%w%l(uFU>eҍ"DM >&6Ϯ'CF5ΝdR>8+>gQXᆫ~Mx6aQ~6ŏxwb1}6^Za.Fyoy5 ]{<;J?=zhC-NTYQ+5꾣uYMֈ*yVoopţ`,x,)|xVh>}<> 9="Hx@%wy=w4 + -ZuV8@FF)b*GBa.g)֊%/t`af;T֝I''Q2ۨL1* ƅ9[#IPT +GѝE/͚2,k3 ]'X^2[QTݳCl-,LQfOQbJHd$E۴IɬR:ڄ*(>h_O +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F2 13 0 R +/F10 49 0 R +/F3 16 0 R +/F9 46 0 R +/F14 87 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 1098 +>> +stream +xVKo7WR@C7 䐠NrHKXJ,^n}p]džr3 3sğɫkE@131& +4Ya!PMk!yΠ`¤#%1Xɴ"T14*) Z2U|q*3 59CnPhu=!MaH &|4$/2b'@43eSlhFĈ22s xH3%fЂIt1,@`w 4&̄$32 mp`86,( 2~EA 4fUha<!PqS۞ KTqǺV60֚nSGy2XȱņN| x+:):~x8Le9v2ǃڐا|41Ps_Mr=x,<nR/;rt"tr!Th+ +Q"/_xV0%ٶav@"a&L8t W229Ҝ qWQ[΄=d`X"}2&CdtjƴY4dd ۰ +N_DvwtO)6 '.(M4 Wl9ߡׁppT݉$rJOx¸&{&gߧ6e!]4Ad:X\ +2"32{8W6a(2" j HzJkĸ{(IDD;0lJ ChtAIum.a +endstream +endobj +221 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F7 35 0 R +/F3 16 0 R +/F10 49 0 R +/F9 46 0 R +/F14 87 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 868 +>> +stream +xڭVKo8e))r.6)ZePSocE`|$ʒ\ushC8'I".nIE#ՄZ`J_ + +x'_6|ϼ 6(e:0ߤ Dv 9tO*JOJnF8gjs<ЈRwm >zޭW0QCtuy^ 0s*b + ApvЦ~ŒXp"0e!8yY:!,Xf QeBZy`m<;Lr% 8(1sGi07)eiQgp`,ά(4F1ήO<$UȘy KB +q ׋ Jc72O&bI*|҇#4nń%P8Ɛ0!N&6u|pvOD2z*9e8&<=&N7yx0q]BS]:/>%pc:{|:N3wFaЇACsb0ݝ՘npT`TS.c]7Zy^O%~!YҷITIB‰VǴfoכ2?vijOu$hkX_leUUQ_COm(}34sYjÜ"K|r 5QZVX~iK~8>b(PK"Ω"P|x.?jTapBO/cn&Wn0VnVex<&$YU}P5 +endstream +endobj +225 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F10 49 0 R +/F9 46 0 R +/F14 87 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +230 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 229 0 R +/BaseFont/NSRWIF+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +231 0 obj +<< +/Filter[/FlateDecode] +/Length 263 +>> +stream +xePn +V + VU*ܢ~D~K/ 2WX`fK + 6儎rJ7y2*i$jt1Tkwu&Btd#?(?%8"s͵vKĉ>.xޟW%ʱdh1TbڳK?)Uieٹ}\e穩; +7n\sf]gJ]`VQBHU4c +endstream +endobj +232 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 230 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 232 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/BPNPKR+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3974 +/Length3 533 +/Length 4519 +>> +stream +xgXۚN!Bh*Z޻tI  "7M"E@(EPґ& {Ιk?sͿ[y{ml&8#41h0D" R30@A1?á0hu! @@*xW"-+qGV\a(W7趚o\`h +qy0.(_R2E (BD3頑/gݾ]Q1hbNC\k=< a0O0^x 2X߭V p]墂v@P>(?sq!a>?uw jlhg +48svYC\?vG]Af8%;*HX\J $#)JWG訃Ġ2R.x,\5u5bB]swkz;b h*L:x׹MA"2z/*xod8>6Rtu\bˁC?{ v~_p?C -D;GRHhwq^;luße6殱׋K .َUjpV*q χ-Bh/X~̒Hɲ?H^sbL9&:90T.g9q3/+Q Qㇻ;n^Oo0X(-MRt6[rG( >ϐ%iP.N-J='[ {j{ϴݲ{N|{O2[}俓>.RC+%S|y0'2d:TNPž1n[9p#EOqaL soJsX0v: .a;݀y@nfmlrc;אzr:f;]ԹZ[n؄KM}`r( Mtg6I{C AT5oRW[g/ )[38O}{`^c:j=RVi%o߅pJ +€FdJB5 -[~KM8O9A +ƃ/;ca1oBM'uroɡai܈AKN[ +dK5c;k C3~zDh: :'[ [KyR&?,tYT| +X7F$uVv.GG߹BVx:rP-[>˭!vQ63VV +[k.yEECp`h ?#ClXSɇSr՟XV :eN|Q6f~bb}9cQa`s]vV_ٓe5MDѭo^`ɣ:ʥ*<\pt򰼎ɸ=VUÉB(}c+j]>c V|#08(E1=j2+2PҪG2 1zSJR30$8=j!s + fPvː y=-i5/zQ#i)?F6S8q?rf͝}*7xZW%)50,`qiĭ}VFӕ5Z-oEVHύ?[/7!3-g ܓ![H[io }-×U:F䡁i49nb_Ӯ zՒ4̽R%v%d2AxΏfΝ;nLv.pZm%k^֟+BS5P*Jk7 +"G45ZV6X^[5k{=XJO8_*tV +GԷ]fA23 c;[_%ox-Mس\P^pوW`4JucA]n@vd'YxCVE GHIUԁ7MB:M',|eӑT"z}s2Oy)2ԍLwn!47ݑQby\]b{࣋5SPH>M9{z 6rbi]> Gxћr'Xb/}=@)&!c_`mY :i"гR`c QUmrA-g6Ν D^)[.ɭk9!][VZ(CZ{D~toWb)PWr[+)sl4Ev,er} v1hZO\;ku22b)Sk#XtmsoI$/@V.9@m &_8U85VSYbn[N_39{ߺ h%3d{&" +# vjX>7ЛZc3ԎXB-8~o4hmV/DSDic2ZsHH[[E1w.w׽+;H9%ҩT}E%-Š򨃩 +c|jε;"~k]Ѭ8eP5WIkwqD/NYy8>9EUrbZVn4F#Ι$qya^R~1"AX٩3-Hv+TXf Awq_{Sz j2ԃ%%vیɛ>94JD˼ 嶋*X Skavo׍Wms_M<򷾞 aa-KWA,7pWH~۳fLZ} "ֹ[tIǢt9.;}Q3瀔/9^{%WPRܖv^cs{ U'灂dtl/;hfKgS/uI5evd"5@pvZ:zؿtJlss&*ZU4гjZl,yb7шD%B C1۱'ZZݥ"4$pO΄OfNWo]r"I݊Y`;YSEwˇ'3Nj+dR`LGж3ԽX]Rʒ^)t ;܊Qa$p.0؛@'59"r Z)q$NÓb'\<0, ú2 + +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/MFIMKF+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4731 +/Length3 533 +/Length 5281 +>> +stream +xeXkii If萒AnGffJ$KVZ:?Z׷c~?}s=s/"D@ i30$$PrQ0$BJ@RR @KHJ 9JHgoW= +Jl6e6;60([Ptr_[&ªۛlv|\<[RW$3jI([\gQDELjVgR'<1q\Ƶܦ3>aQ'ih>SE[#eI$ TQ pWz7:2@((+\C9C:gKb,&QWKؼ\~Xl~~O+vx*tIS)?\:W2OnNj^r whxOcؕ +薓. +sYbg)Q"hUCi߻j#XUw$_wR4Ҷ V"Nlkm߮l=iMZ=)TT)׎LIal^ߴgtLw >1rZpNC[z~ef<ӿzL5`skrPҦ?{ya-*[ u*5ɑJW#8.a^Qz>xF^ Ix {B$:w@{{ӥBXݟ'c;I~ 5ƀ~uBw*}}v|ؐ?ԒgtEf6GoS[$lQM{h[nI3FCmyܲsDVOݠu:- ?.h'}]JyEfoDN/d-Wqc>_\/ +#2_¨6y&$_'rxPpzH*>a;JϠka9 Tÿn/׬׽TޡAw܌*TMK9؆FS #Y̦w=?khn*l&ns!48\^X#wXqCdoݷ#زMfC +籦t<ʁ vBGվ +1*~i<_s[:dyDWz5}u\B/;xpc暥3P}b!+\dD_.Q q^ѰthȊK[}e^X}q7dFE&vip9i |8.ߓyR͞bQa-*fF5y,{7~=lG4YqnY/=_874f7MݶPL5 RChtީU>v$.~l?Q)y9.vF;1LM:"DAC}{1Ozw\F2lGh2kQfJ\/^k@⓸Tk#)SrnC&K d[ݥD.eJ'rZ8Al?w͏H"Iw0  tCdV;:hn JYY3;uƤ-z(ӂ->n̥nn# + 3NW(njSS}sFcܔ'5 +?b,%~Z&d?"1{Y{e$ZG?{z>hܢM7a3c-JFgv[W{bxoM-NXݥ6f崷z NXK'Bݧ$bd<'b=DRd4&ſQ=V&vk?a*Hg!E?%A7 +aKR(Y,K6ٔkA b!s_񻩳;s̑փ&S8$h  `7LP44s.6.ݔt5,wYSOz9.f t})^y}q'唣Nk?]ɀt+ŷD2]XX=79s{Jʏ6VAe׹HbPG6N6N-c>KNh8*kC.\MW;ܭ,gk2HCu|tKVKmg(\Ҧ$6E|5#J1?D3`.wdLO(iP^agCEx]P^Z#֠@ހy5-yyg h ϥtU)5%c#k +<-]A^&Brz$K#&n.g';狀g9ZmnYQؾ$RK\mH%8WDhC*m!-> + 7NTB;5%׶ $Xol,Ʀ賛h8~w=4u}|AJ:E[=tE4K;w7@koZE^|]8糷KZF L^t-wK4Wj~zy9=/i }wVr9>_*Reբ+&.+O0|kn . ~X]Q'wqeZxG|[Ǽ#%:hDBm;ob@rwyZq߷aʎvwFle1w^J&V +,nN'*7/i962["w>a;Y4&Ij|,<] ,#DvmMHL陵X:a['!AӬu_Ϗyֻ0sȌefJ{?`cl[PL$~a|ӇlO Vc-f[ƯldPþ~.*0I)OŸbדhبKxbaZڅī_c:F3173WZX^9d5Xz/G75?b$k1Fv/d8[[*ЎCrB0uB/ra=gHaXS(r^ TAd w[QCS)mE{1IPvݑ+hGd隣 1w~.| Lk)t{+>[GBd_4D|@-M>F)70lgtڿcH`3>ɿ̸~ycW@)& SfT/ Rl VeV~wj +qҎ|-Dc3Q+ܙҳ֎D9Bx[GE{S}ĔԹۓJI̲eXuʛ,WD,`i6 +&DR|0֭4U|>ڜ[8@ʶiʹ=Fdۆ']Tvus{2ȐJrZ7up+.0TKWJM0FH+b+NESPԥop~oxXٱ0ad#PR7+Wp58;S nr䪿D=:y.ץ͓$OoUM M߾,)xLK +0q]QH8ՑR~ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/DNKIKV+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`Pbײbhx:?g=N`=sdoIBK JLÛ w|W& +rq3ks'}-yꪊkxxFԴA/Au4w#6.f_7UrLA'kI!^Z"J09nV39_r3mZ©,=h:._ٕT_h#Z)qUEHnJkT3ȃZ$'Vq׳#B<lfJ"ZC;#H tsYlFŲ]m:'n+Woe1ăa},Vqd,UK) 2+w01{7;%?~a؊sf9NDÚ*2W%xTH"S5}S5?KRY T4@Z||vP4w{{\6Rh ûbWŠtoi=f-]-:6$}C].rtdZP<d6> +C*۹lgR^fqܢW5J~ʲ45pM 3% YT:s ^5] ǐ(.WH)wMj[zVu$lO_x1P[nZd^:ݗdJ6~ֺvPXda)DL܎XM^]?tc+G1*Āa/iyմ(FBn(ʞu9pP#6CF_4C>G&p\@WMZeIȒmdwf^~4eW%@D)q8lnw=x[*O..1#2Bb q:45U+c)CiE[_ayPBZ$Y!()%AOR8p7ڀ7w0DvYI8IƜ\;CM?a2煝\hP} :GLPA8Q5p.L|z.!'dѥ)vYljx1p26Jf$Q6T(),%j&)pSDP\*rʧW ƣ /1!V}=VșB1~3+2ev[7Ou=80i{N1WRjɑP5 +BWn&wRMAʓbisDYXKN1j˾2f3Mѡ0"I`ݨXx:W.+B~n2Set@})q;mTdM⦩O+ُY;͚1W׆oQ]LukN;daCO|[߬:]ÎD9M`Ì."j5\%g2ܛ/sO*eo|F@_rnډ ĪEEm$G[2'PR`VfLK뇓Kg'/XiEBBұ`Y "Dt2㫄84m +vSy)յ 7*fؚS_xաd|$Z?+}= CwIgl4`dC//0o7KWy]a[e|Gshc)`e5|0qfz˘Y8zXk!&a>i%#玾Wx6yaC5ID(iՔ;:Ps5o|vfDqGV>¨]x(Xws~MQDU[XeL"|8D۴[R dA쇫"aɰ_QB Δlvu3<\4{*Ucԙyߦo4s[㡓٣SijC"፬GGlG2YJewf.Ϗq16 N>eL)JPg۶S6dNpwk-#?첮:`1H>;ޘWuL-v&_9h_j@h2# E9|lgG~O9C'Cݣ|I3Su\BomY '^J$")2t3Kh霫ό-.Vذ&fɵA^I' 4pR<ϏF]f[vAb'9 @}FҗtuB9Gʱa92&3 m)CZ.ǘwD"Ng-0 +S|)p>baRҌ_Jqɘu'0bILEKo]W) J0oG,tdG15}vj犦r#`b ~=vR=mTA +q[ 2XihiU^~ݞr*攽T5N_1%Pj^B>0U ? +K@S*W,KcfŬO D b] b]nB ~rb;^R'r cA_y ZЗ ,K $BgL+w-kW$-ZmY.Ӂ+8 T{ X(iuwB0Xw}AM7v~~vA9;"'ip ^5ty KP$ +%kC1ze=23'[1ތPQtSkT顈o7jkqhvم& Z'Kdxp2_@R76^X|x,^/a7d'Q*E}9$<=uAJܑ~Qy 5|k̨Q_{p_,>\L(FDFߢS\Z(a*:*0r<6@A;-e-̐/4y$J`4Ԇ!m(eOpn fї2뷦D^YH^?RSH1DZJ+]YSu)Nr7¶O"tOOD2e'<ǡ? [r7dJTp'x1 Tcy[`sA-f]0 ֪m߅ye_uqE9Z|A(W͚4!R@R;'}`M吴f~ gWS\c[.+),#!UBX%eLT_bJb?` .QXɚ>\%'gZFL[-\#VWxBo^'ɻyBY;z}+H4}*c:Nh(MƼEd=Ʀ0i5KZxLvΒ!p(3WJ^faWƯG:׽ax_-6lW ,_wQQƟ}fn 3e]TCUIQ*ĺ_kzt[}[L^}b0 1$V\~c~*SiX˷"@r[/H=> D SJm:)DJ%< +DFc>GW9$~(cB6ïW- +bJ(Yu Z$-UwKz?NKq(A5gZ-o+zi(V_nI"[؎``Nf]j$G썼E+MˆQV :=A +w[I֊bhN? B.}hY)7Ѥ2?AYVʍl̈mɝ}+EnEja+m‚ +͖>p!m"L1.g aa@fέӄBنqiO zݷ/G]sv[܄)1ʷϹm i+[O',F'BOd|Y}hjW!&z{{,d jTt+j6Oۭ>?==b#2?'VMmʋ + +Ē~.tՇolөn"= V.X-˾L;78d4 +7CP,)C% +B+b>W;(U\\U瓤o pt9+UPRo҇g֣cҧlNFԂiPELǥ VJJw٪g{l>6;`䆄V"Zbw'=qP=m"1ֵO1Hao*I-F̖f[Fi?n8"OL)SAXAA‹J `3?r}Z ,;W9ХCBD =7ioOӒʫjYQ,2XJ40Xٴ`T_X}Dmv_h/)O,\.[LExAx`jdrs#{߻)6_{%o" *<3>ԥVdZ0hݺX/H.E]6;w/#ޓԹj)kBf$vʼnA3f@ KiRRY6/@]e١09CxQ˜wapȫ(Θqް6e.3˦Lxsej,7gqtP/$6v9kw$kR"ʨt k9~?8O4 @/8lTLwb"dXݯG9qcac`/]r+ϏDPן&ۃԎ1نƂs#fM?al:$ӗLGU]}@gBupCʩ;F +B +x<22sc'AI2\#FPp/f8βbMћ*+zwhmʜef1E5.c{'j[IXj{uR"߬WJklCsrmnkι_H섅hɶْrA +Y{qsG2Y͉,zfE*MSDNN2I̛A0n/^ rmRUg~S'-G5N1k3btl_6+ Jdr@=질/]uEˬ,`h:erZZg]\PBbz fTgbgJ|I: |gõpF( mr mr퇑ebgUcΈQ]\[Ƚ+0߆\-ÿ~5fy<+rD*Km`D;f;wD0yVgҘ[Aul[rOIwܘ{s2^BI"C/-:ةNl"=+ YM= :̗hSdc`!AGml&rF5x:ވFD2S͝ZEFȇp9 }QqN{/f^uC&wsqELHK>C(L7g[/ڭ(GLݡ nWaԒ1xuVaЅZ`b-EjZkb)Fs RؔҜ47J~Q({PYFHt$[Z!ESCJS#:\ж Ja.lwaUmZ{7\uÓD1pbXRrYz!,vp/M6TQnHf{6~*$U-*rWPYalZ[7m.?'< oHaKc+kzG[p }xsgy>KkU=i;Tk؈4wGmm`х/-oHQRqB vQj`ߓnDL59nn*i|_%a~A 0-cimX—>GMf2Ost7HX|y$7 ڸ롘-; +κ_cJmc00R ?EGKf+&`Ǎ=ٷ_1:n_Y y7Nc2w_l"lHt-kwQނ$aecbںs,z""8ıU + exCA%L/#pÀؖyQ4£3@8m,..,> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Ji_]#8 +5ù+5?@!'M8"P')A=J]ODJ$".Ar )H5cP^H&H +H:xyx 1?o{?H/E"| >5uexI>M"QlکJdmBB׉;rAC|U܆m5=dl:p- !"qx11w[^k%wOg?8yE@X2^H]>H;ϡY߷4×nQlBVGs92NOaҿe9!wmqvv&gPIsؼXXAMzsziֆ.qߵ%5Ő'#Lr׻xiERV>Ycrx,A[])y+"N!k+(Yx-l]ڲFw8eD!%Uy jy9T;DhU^]kJ%6@jLC6UyRx>ma#Bٲ4ߠ@f#[ߢ7yVY)`b#&nv[ìJο~cIx> 8?T޶z,JG.L (X}b{R3" 0l;9M dq>yz;u瘥nErD>Oozߎs({&QUvR/XByƭW׳(KqE82%:-QfmTd Eȅ5!2m3@?\]5q,bllrǯ M5궢K\PGD#WjQk9,&kZcdx>l*$JOver_&?5<,M @/gx f; ?#\ *&-pH6jZ*/J@fRg!?T /q"[ Eܠ( >0yNVPI49 +qͲVaJI*5˫0U@P ޾.mU +:pҷuc;}xbrqq;D'`J?# ۞.:ahғFd2{j{u$rhޓt<`\)8zgLaޔC1Ș>7VgNڃoiHm) TG`AZ:gM_8,}kA SWR8+'w?*=u$:k + hD c'ꥳ|EgsΞk 1_͇Hh.s `9'D&:%%T=|2rswn^6Bvz=(8I}j9O#FI@34ZfU/ލ?*Bl~"w%J(/86ּro YybǶ9=E䫖-n~֐7W %Q G\˴W},"π:䠾Xi$FXΰ%*].ph ړôزܵi1NxFpՑs3( +8z70`S*%T4=y;%)m @ZU ^^u#S(e ?]־*5)-lD9Qꕥz4 .M=[\/aa |6AblW&H;zF3bvShaEOH@В+{ӷCqN'JXV6a{ߡ1cm(*s'1.Hwbh#$䰐<.߬M` iF+3C@e*`~EH|@{0qzSFط:R5Chy N(cIԻUu@ +Y]S]OX#3%yc>QQ.EPЬk0{=9oFo5D=n5cԕ&d1߄@|JUN_#}SX1ժ mݬ)@cVnۓ !`үiLݬNurͼA&Ԇ:>wuɿWmt#S;iqj,FJߢS܎FBkRoIv4a'!O'| 0R l7y *AӸwCDyiIn躩LlNakkW_{D]j[Seja-#m)]5 U|+HFhkG69K ڌr/ +oDp İ r;FuUGu|CHsS&RvodɄ&ܥgk 91?EGsY;%՟v]8HqZ<2jZHO*SbSu'? Kgʷ2boV;^.a&Μkز\ub5:}oKΣT{?drMYQw[<ӗTNA:TucMu{ǣwpB7q-h ^Xiي˕1]Ros` 6DW9[]s[b}3t$qXcb/.9!a +;RR{ B#&gU#ƔYv]1zH"x9PrnzHEܧo|WYS4AGqǃ0\)+2OCeGj+&y\:$sX8aO>{a0˵MjCYQ)HSm^+<`d*87V.3\?|SX,ugllЗ50`.O)xIu&); +..\mpwD6-ՖٛGٗ^8iGu!>iFv &p") |woA4vJ6=mVk$O@UF YӪ-R*R*_`,P]4F?nbIɑ;pJKAql/LS|gPlYl phRéx[˓% COQ,3 yh$x{d +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/ZTXZWV+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5000 +>> +stream +xg8\mEFmh0%:Qch &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D8,^BZRZ me# JK@Z!!mo$aoH%4"E:_,.%9Y%< yx@m?U +@M Mxw$Z\PH|$F-|hAz!4rn(,@O,+Wϒ (Txa@ u wyA?onF߂c=1(t?8/ 4!ؿKȿpkcQ.X74+E#f(;A##\ 7ojGaVS;b<(|/?W릃u!PX7%EJ;?P|a$!#wϤeYUyEʁ@ yY_oo${'\|?cWŀH D+ձHiiLXm"Zu*iU|PAt HTqe|0PQ"ll b[7ٽ3Uʮf=+̡5(z0 &6g'L~Z1g ltxΚ]qBR:ciy}lwb|={Ѳg"a1P<;.:njU{Yܯ/S J*TdQ -0'G{Jye ;0_] )f/tI eѴF51K= T9V:m14~&μ H@Fz%N{;]*F*Kt, 0}yD͝;ujcc8yYO4=di ƥ +vxJ繏}"pe?-J,'TVx;tY0-=[euJs[?^O+LK:No|KŻ!y s7*@I_|K;[E+ YLN})`\eȗGsU44/r=hd*O8p Cj&Lvq {kj'oF3Qc|IXq,Pʍ.{om'xV(9oG7_n::ތ;8{3B5ca {#F\L3cdNa8{u8iN^O w"Er8CtJ6BCr˸oQږ +#MIaS!L +G@>y"]?Ì&L "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qm.~/VvilyϹ`ff1ls,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%{"g&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH؜Hylq$w׊ã? q(8\baAE2$5hBFVuψgшZx0Ǫ{,"j%gQiS?IMl@ }*ҟ(bNs]N:o.YAMql3_p"Sv2]5ysx/9 gBߢ#l&iں .f>bFVMEp>T}7ȁ\qR'clIlV0by^9l=#yoB_?"WR +:)<`-U;N]M,VHzSfwȤ~Im *亹6gF(w+ŗ]s`9Bs^XQ [ O]ͻ̟ftzĩMa5OCrM, oސzKI]'i"jm +q-ǡib09Yy߯e06/91:TR%W}5f+oL0ٻL{8X; +43$=JUzⶆF_~"2q0,=n5 em$F|o3|G!%+;S댵#wz<h1/Uzy q>GrٵߜE1d}e|<3䌬,6`I2!ZP&M0J> T_* F>zF$V] /JqJlͶ'96]'|aď׶$VƓO]d6 !LlֲxƬnxsyx-%/][#Q,q4qLV끌 b~vu*9,7 +'8xOFU{gfsWi5:C)D~E@.UIc<5䵑aVF$1vZE{vfYNL5&vO?xuPEکȂiGL-YRrr +c`ơd^IFZn_9!_&HQf-wW&FX'O$)W3WEw7U^VRjg՚]Eg%$͐ꗽ?6m޿M_I69+0Pj ϷtlD rJdP*>2D,8Qh +Nƌxҿtbr u9CuK+QشSc{_>ҏՁrI!XcS{f6űQ,aE0zL{[)O,SYc$$?-s'[> >(xK]!RwgC ^+Ʌsˉt0cH\]ΕRߊ~AUұ=3Iw^\ng>[(aS͛kR jw25z4ح7gvꁛט n lAVCs޳܇ CI ?Mlu9~I+Me09N\3|=*}uG}O):P&7"aVJuu#k/ J ;jEqs$j&Ϋ(?nƯ׿찊8fPX:ԭ}FRCd;b(0Tᜤ1mL|FܨMԝ_+ﶗ(}0G z*GF!_5Hbۇ|_ŊrKO7˕NM}%([&x;Z+SfZq0";6!&ZjG :qPW%lE箽%11<)>K&k$+GbF+Rvg| +'RQYA)LKc{ +/Lì]Cp⨃ AX\}p~R^}zH”Cw7 C8N_6:$5w)3=ZH§С^>#QIs$A\ٮu +%(4F[s2+1sZe(tL$/HE1.=84Ȥl9b5%pŎ/6#z~fG,Aϖx)'[gfWLݙg>q7T5kFQEEJm!3SƗ33pLNyu?zi{F1QQ޽ts=$nv1pubL>ce`#UL[mJG^f(=x{P]6O\IQzr?e6*hay+-6M{<޴YmC7tpBnY[)^ *J(;ohߠJŕ;f~0v 3-I(YP~@mӃ2OfyADpY7KBQgbV=!Jn#v).,-%w q +SBQaXbCm^;(4M}P`ZQNORR@C6Ievfl{cbԾk0*DG?rt9-k/:Nt]*,ɼ, ^;~~agHjiS8\ȿx^eD [bQ> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1063 +/Length2 2906 +/Length3 534 +/Length 3603 +>> +stream +xSi8NH֔d,{1![ֆ Xfb*!K0dY+JJ%%"g:}Ϲοs>,fuPO(@`- @`/IzH"@ա  +SR$]7AtwTHGO 4:X,`Xо(PW"vA;n@OE:vJt(KPh7"@/uY'7 a$n'QG0XΛDD Oqh5&"W; 0~4 CtܐX?wG.>-L ,leO -̻݆`!tGחo@U/ _R.@ tɊ +xЧ|A;+AEo/E]0; +8u@{:oԕ:zbBYWU +A$?Lv7vEbQ?o,S.D)w .Cy:4DIY PUCB`0XUU;JwL/ C?;H+(X|DSfېBܒb(Ũvw1~2Fʥ&ia}hT)`,ޞ/xe?^#1kgd~4qMttSj:Vriv"h+9l[wEP?>t|Z"^`{UXM`Ɗ!f]ߣb=3 ?)gi7/ߘWEdpsņu/ߏpv`9ɟs[{װ6OF $4asﱝ3aez^[9 +a"2eʠQ=]qa9)^B++t +%Qw +`RXR a"7r$Ә1#&14-~H~4; lzg^~JF]-:)6}jk HϲN_&+N+ur ^qL3a]Rᨾif"F={^EKi)&STHÎ'T@/_zԮ=eP:K CwU^˛ Y7C%p-h投.j$mG%Xw/'x>%aowߍPa<gTift KѻH5 fr}dom dj~u K0u mƺ?\$]Z nY[,fYU$nT]4AՅ娏8{$:p1;5xIFmJ#.Ȝ ͼۚM+)M{>=g=\m\ՑSߦ?kq<,UrEf@nlODAK!Yj@Ay".0@DOEC L3WHdZa3tђOОLưw..Bƨ-J OIK7z#+9k0E%J9hY窈O+!Kn Ğ-z+Q[ÞE'q&j599قW$-,l:uq: !VZEpM5[liINƥ{}JZJ}H- #|2!],2C]=B{w~VI/x[h-#@BEJ-* iQZ)\X- e;A^ycs Im@{ٝ NM9讵SqiLoL`,OO\#Wz8Ya~a6!u'Oq|r2pZ:&U Y@cނ}$%<֦-tJpPOCĀ웁)'aV`2&8;8*$enV8!'RL^=Ri̢ɧ.k*G,9zgV o&QeT.7EʼV-8Bkv5ϩ:Ȣw wf|5%-'ڇ>a)l:Zǯp&k&YMDYHLfLNelks3ÏuVz 36zϢ:ѢRS?9ΨQH٬7aY/,V;/ IYo:_%]{W׽`|YjE?D)OXzEġNrI Xf&^F=Xbx;JQbʙ8=͢dwmŇ=xGts1m7E Ba^sLKOcv4,NC{ 5.M bMb-osd=^$WZSnQumn|hݡ(lw۸2N(NƢXYw&ңo(G[7P+7n7)}5{>q(׫|.@Jz.t`֖}T>i-|i( G I9\iɻr*,l)c@4?=*>Y7L3xv#tBCIĪkt{yU-k͹fC/) (aljN+oeҟ8 bΜ_nݒ*'%=YE5s4YԲɿblȣ7ZZRķMl!E41+{?5"Ie +js>sqiw o;×8ތC@X4җH!}@j +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/WDEHSO+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2996 +/Length3 533 +/Length 3549 +>> +stream +xy<Ǒ ƾ=$0v5f_Bcg Fcf.YRYe!05$eߵxzs{;s\s}/i ;= mǑKKSep@@D4 d6Q +hhA4@ iO&b||i?\?A"p%? A"A@.\D4JRVP$B`p ?Lqx@OE! +@I\韤!' +(7H +x pnLbֿl?x&x +G gFa(vM,eUE:d Bl0d/?u4+~r( Lw 08}0 @eY+>@!CӌpH< + +ADSw*}}|PTPPQ;mUM@C ?8 +Phj@5~H +Ƒއ/ B#ATʵG!3bNN߈ќb?yLprOdVSA C@)yuiu6ĄtfaԨ5Iֹ?P44_Ľ/s-k qK&dkZ}y0fNuÐ]-k8uAgdZx*1rlƵd샍̕Uno~׮B˦4 +f]Vʞ򉀿0#2i8ni:S[o*ض*Cu2 K;5MZ'pا͵cN"]#%7f17p ̧MJ|5Ϊc)OkcfLx-)<37k]VE +owNO ,etS} +n^5pWrMfw +#y=ln(k@JqW}1 TmzmHsN (3+,9AM{LvTX0[ +귄:țl86K7:gkvk)g #C B:w֣G&?>ccq'$4!P's3Vz5jWYd*#R 8 yx'5UYdrL j*On0`tb$ܖiy!Q >jJ:L{0$f'46,#qۭRʪ6ѾjNO;dq!-m^ GfÄ ϒ*[aӵ:avn=207"][\d|kxほN&|iU/,@W2q檚ªchYU]VEW#)fuvΘa}$IކvϽ^^`fe4yDXpUp)Ka/*~I"wx$%POe1~DʐdY߮x~feu]h3K!^ {¶,Iw: 狓4r W&ڽKX]+7T,/Kz,F'e<ߊٞt Y>R&؉<1\u"2hF<)0xszQ{M'"όCK=|nV92RFn9;e1bG٘ _~].Ien~qz.~(g37 ꕽճ*rYKP n5{y #IuAOY c6#`YhpT>A`^_k};Sߚ'a>~'NlfYqJ;pa02UWAM%*PRwC.}6 +aYĞq{m2iCģ+jl{֫x0zeR;eA ZM@۾ĺKL8{[SWlG+؊)l=FvO=Fs:|HpnXhRմjވS3 .? +r~&:/_ +o'Ȍů \AǏwنg{i&+:KO +i;;ERJn hJN0qG [`nrpx% L te{=g*w)c7?"E#d?x;K  +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/OXDYHN+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2368 +>> +stream +xy<BƒlCiH,Bd_A3Lf3FDȖ%$E'$8:r}9*C쒓Ts_s}~?{b/A͐H4Zm: +@3A4r6 l\ڊ볉iT&ZX<|fޖ"a;Jd7xVgf/z?{}jD1)}̬7c¥Lֶ+pBմ$IċMM^X+O)neEt s{a:&r4*r :ATޔmn1)SklzV;%x&ݣlOm9ZAƣ"Un}#FhhZLQt{pWїف)D"ʌpjЊ~dfby|[Db:q{3?7 [;"<1ྯcm3>Ep;}΋í#ٜ{Oqv ŸWicyx\LFL"CqK\RN{7MnT :%ڈ K9V1N46J]ormeӍ_%?m Լ`ScJi0ҀWT4R6Ż\4焯 .?`~zw@< e\Z* +m4[6 Ff'̾ݾF)BdRZjxue-c9w9~nm-v鬸HS(Sg#K[`F*ݕ'$,$65Pձ2!^b,<:# ^fJ?μ/,Ǒ?+:e4,WYv3TS;_]uum;D%eT6 ܝ^! +ѳg'*oJr6Wh+o>':=S.xt^b_Tx/|.q[s#yӯF=‚ +7yݺ-h<7&F^hxaEKsIOe-.b5Ԅt1۱+/Xy^yN-25s0RJ2uJNMx>5z|`~B֣~d%!8/} j]X: jr굂Wt4OyCpdS'R#bo?CZh]L|]<ޤuHSwr-@ \ :/ܠiy;WY~dO"'GztKPAvIϣn>U0[>w2U9ǭK P{/+*n {c/A|LatN&󋗢P\Rs!/EW~3c,/sO( ɢSL_O3z +endstream +endobj +45 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/TRPALP+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 44 0 R +/Flags 68 +>> +endobj +44 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1272 +/Length3 533 +/Length 1812 +>> +stream +xyXwтXte $Bp#C "Ip9"rEZA[D.PABFgO3~}CQ-Il1](@,VxЅǁx+B & LrxGt9]Q ".f/]DćD0))L$CXL/d`$|E 1$Vǃl .,/<!H\oc^IHM՜f-@6Bj/Tcx<_&eڠ~30/W@""dC"FkGp 0y0$ ok! Ta&O !{#z|k X:Jb~* zB~jDp<7W#VslX=,?nimZ۩o41+Hp)Y1"$@ֶ_X=%X>;ga oJ?iIG1O G^Wq?kۛ cXzf}R7Q*@XKO3Hjg]\NL U} @Mn(_ W<ճEv=t"&m]C=a"u(<<#;~vRXʽ]];*VuU{j~&bྲྀkٌ81i!+qPz߇ .s2?n/Sz>e90ESXRlMѣ_#_"5|[yA3 $冈J碈{-K +$=ߤę.*Н%ץ +t4)[o9~{%R͕ы/AFff$n@j{vi5<.XM Au4/^u޾k5Ceo8ԇa‡;"߯TV,O(Fւ sucsQ5{ ޤ%v_ W@wdk5Fp|AYND\:IڤK +xݮ+;3KaJ>3o$,_}}ty3R$g4@Ns^5o#IO@Z[U$'=gh՚c)h'rdmOt!0 9-*JL fRsZZ׹7Yؒ澓6?"U>\et`fb۰rYb97P#;virK|+a։>VSir~2)Pfl<7mVl50rt`e=螭?||N%'棦k.E7ۭr6tu\. +$L{U=wr8nq$qocmaoֽ1|-OfW?0RE^]\S87v]zұA9=G2ads +>}W~쫍+6 2ul١ɉ[Υx +U]wƧϘyvf \YZAqxepJBe>UkiEj:UOw)?Lj3jgH\021X>kbs "Ń"Dg"L +endstream +endobj +48 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/QKINME+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 47 0 R +/Flags 68 +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 2029 +/Length3 533 +/Length 2566 +>> +stream +xy<D5ql=! 31,8$ǘy0gȐ]Y#% GN"[eE l=۹<K[ ЄB*`%78B6@$@Mk4D0x3D7whɥ xT"G08;Ǒ +*`@"֟^A T  4t#!dW +E&н|A>T $P$@]!}p}nB',p^?/mMTC!T 6 H ҽi8o@v# }L~ Hû8YɄoICm9~iZd-?׈?Q~#\G+7!)" OP8Sӄ6ք<3Dp:RS ,ڕ?!` F]a$!Iu +fS3Ri-5 2~5cpZcZlPnMwPp6[va^vƀ dL.5ޔSeL3 +@Z'4Z+_xSWۭ>#}G5K!R=IlM34΃yoڞeOspJ?6=ZsW.Zjs{N/94Oq.l5^{#};ilwW-DÁۿTKrFf'ϧ܈NO> Sjn3/UCBG?[ŔkIq.^# [jT]zK"Gǡ|c՛l؂o1Ršza/O,)K3ߎ¡۫ki.=(455YuҭY^Ǜ OF9w"Qg2,~зCQӋ4FyX] +^'S>=UJ)u)j/TNY%$slMO!r>цk%/7pe$JNJc\(2$I]a[GM6r̳RDXpm UP W  >r,*:s5[{C?'?j+jXZl}c)4<]ga"bI{dǼ#^,kt{#{P) Z\,s-V|,¨ 67}Gw$d*3q? 4g0uOa_EtKP0ZHZnWdɻ=C/$6Jw[OhS 䤳-\G_,y@NTٲz-(p`4RK0N<`]s6%Z#(= +0 Xb _N8u>17S(2s{߃JX-ί! ^YǵO.:P5-)^Yw7+PXot8R>_|w"QbRl⡣@ ObNJ|Pȓ ^%ᗨ ',V߱00?Ъ 5?O\$q^!!#Ӹ {t1Qf]TQ~3%y[o +|R#\]08Px7'9=z~h:,~:zlx0lL3RJEVNaza|x֌XYT֞PB~sĶVCNd[$ Є;DfԛJD({X]#90WTAWiHBi7{0~\ ~sVUnswaD#ѮXT3|P&BòenD4 IH6 +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IFEXKV+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3701 +>> +stream +xy8}2Qm,7fa u$;`14(dWnK֊B(!wJu,Q%D^ws<{\uSRJ8E!ӕ``GM` +:Oc +C#0'jTTUNj Mt$<Ő4'`1D%`%?~xZ`0G eBj8߭bLʤUˮ\?ʮP#e{k} qkZ$#FwStԴs{ |`Ucpz^Lwfy[>!(u+{c_x] `=]Wӧ2{X8%d-S%<2v,Qz!r&u yR"# +ch=CxPe=^ +`6'),_ ~jljvx+V@J`ZXHpO-Ew z<f=v/Qb|rˁC %5H?LXX"k7(8T~" Q9ˏHR]<r* f ϒr IV&׭Sk=%e vjvu;jIwNV|f ˅ sBĨ6@ܿE<"ʘ 2yUr\>s2G$g +OCAO.Q#8`p4{iW%\ڀN̠1˔m|QQ+x@pRŕY|Odݼ@6Hpo/N5_GnFh>\uѧ`zHI5E\GBe5 '_,Y;ckncC{.X尐ɧo[1[u:u M5^o[DAjcQP7 <~*9A^9٪fo7_5qfry^*tdQ7ۼ^8\LXgʑ%HãMV{/9غ+"c->xqa".bpۜm3%~Q5P0%o7g+̾:^m:6'L)RdN3k'G~fDaz>Qβ] ?)Ÿ ڹہs>fOmy5awi/ I8zк^+w}xob;ҷ nr߲83Ϫ`OdZO1^>)5F iP)Z%(]+~tՄK$v 7r IE+`Bm%Fܺrϓn7slSy j=/xox -͒c1xˑ҃P C+#iwr_}zuYu,]5o¨T';k 5Ŷ}VWD2+ÊjzUvTsQK ́ڙZsdUo:k~&(78S#?-5qcH)7Mb {@aVb6Rԩ+$>qt!Q[Ŷ-%Om1T`fE8g9h`{xof?KVכ9$]\wpgƸW)]Z$e@[hP;@X;o2WyhfJԐLc3}h3h_/]AM?ֱͧ +f<ҙLA/ s~`,qI.rܳNrs/S?>2Z&wcN*Inv= + 3i2KU:V.B!u7cZ1æ0A B=#CeAm#ߵ( naJ(5( 9/P^3)Gv؋el6cO_eCӶ^LߎjxR^Gww,w$IeY#Ԏs-diM$խGp5;;F F|h4ͨ1 3CWԟ~xyfAFa>(&{~0NHDžz=cGKeY1?ӕ:c=1g"eFRT +B 'D> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0hGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&gu p HIvt +[QtGB&d"-D2gAl0e_┘p$njvs L6?S3"FX3T|ܰ[ 3``̍͗UR BdXEB$D ?L|BWp{n:w-fljdžN/fEƟY;W8ϲyCèiܜ̵ ̋<!VӁBk3;N'M_T2yú÷oXŽOօp tN[P?Zl$Qɀv=bJeiBTDoWJOo= 1bj:fsYgZtki踴9Uj! . ]S +YAr5 d2y?>KZ8v|L)KõT&͎XVo٨/I}Vu-?P< .11ŷKIhnS>Ncf{Km\PwRtR%O`vj<喀B)ȩ5 +IGskUr:~:FoSʈث`zé!<+'M}qAՏN\Qs"tf8\ލ5f$#Y;ک~W ?SS1Djl;%1FXhl\IsC"}KLJu*cc 3M*9jW•W.Q)fjO[᷅gh$>5ٵrl|hH0&sm:&꥛ч_5UYNZ9muWzz~o28yw=-"?Xra>5Z QvUep<EsO"BN$EɦO6-r#R/hYC]J] i_zUK6'\dxf74`\92u-a'iD 8uϬ9ZÆ3 +J\k5UMuE$#q݆MC!f]-y4 +c.Gw^y ]',O'Tpm'1cE˴5])Z+tM*rJnN2wVozOg֪y×uǟ[?S2ӪV5c[ =k*n)G&U^hm-a'4YU5zɡecj#+/BDKg} (){rs,ހ_9z +3uo3FZVp7X=rLNͨ:qfCV;su {=%Jq~.ΗzECF;we~|dĪW#lg'yǴ,&\S *:**ڡ@c]){3rx5ȑYϟ +'fЈP +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/OGTUGB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10716 +/Length3 533 +/Length 11273 +>> +stream +xUT%֥;$qww7[b%!qQG舸5׌>".^JRe5F3sI{WF&^1uu  @I)lnj`/njKJ"LIegB@$sptr%D؞DSc ' HG\HT]̝1! Y[Z#0 Kd37n4wvߤ$p9=I-Y` tao}c;kp89;(8;Uͬ+j 6Kv07Sv5"quv3lno LJRRWWU.c;XMޒD +;7#; #+  74쭝eI87US7ggs{ !@ME2 Z|/  +:|ƅ6Zm|(9[ Ok޾e2}e@Bn53sH::4RuPk*7D+Q|W^&LX/7U% 56#n1}#+"DC;r]FAS@j6-\yaDX:r""xϹQg%%P.o0XPup&b^_R#Q>h@7Ep NqpyZūRWs BBwA?u3d'dʻo3JOS`P3 Svo}T~7'cP+$aTx`yiY`l})m3k'ԯ܂dGV3WѕȰQ5/vJcd)KtcXBY[ ,$yCnVOԝ~j(<琥n'ݓο=qrS(}wmsXX3Xd*Jfe%u^ H +!F}ʪ9(,ݟDL과b-2oE4(AnLpolb 9s9?l5&L\oпF5ݻշ0k$?ԇ9~dڰ^q, +B2TJtdGEG+ufkw0/TŶ%W8% nb*^V'!.ۇqFXթ$+F.) ԡ]IBM%׳CWgOӑ0̷E<ʅ[-j!`S4^cnB1L,8~-vCLA@*6S31x2KF,TśxI:噙f 2 Uz萼}y$͛~Lw^q3$k3pɍ=*=ߧ +Q]{NZQ,0~@RM2gt-vH7J|Tl"\+TSr#P[ynH@}ء*DńX:lDxIiC*k32Cq͛E9N%+6o_^D@M d9besca^#u3\3V%ӻ!'y\:C,Fn=%}IIK)rn(}=8TЁZ1RIrrG6D[nlUFKȍBκm6d~c΃oك xzp+7:҉S?*E}oh[1ZsVVZ 㯋^_fHH!l}wQ I0uAV@nW%;02ѓ(8hLV jhرo tk[+rCu tˋ=EPNKhhҥW[hcԕ?^4uvum_1X_{hKKaL~Jt T)5l  ]7il⚼wl߭L<2 ,1B_d2G3 VBM-8Rʼne%pnYeULHZsxhZT⽉ +eKj; Zz:b鰳ur c\ <%὾9$Z(Y4RuQqz'yێ%_s3" +l#vi, +?᭢/Z>m@F/a㘠E!ۃ\l/tM=edsazuye5^A wÅ4{I&]#B4\d +ί]B?A)qy sh%ݳgP>Ak]M>Z(*̆]NKwTǍepɨԈkv뢢5WTOW4Aظ4Mnv_`.W1H6Yj=97΁N P}F1GeSHWF["yo] +0 ?XeWN Pzkڽ= C iﲃaE /9B~M˧(ly!*I,3'ɫ9fFHCчmH +U:UpxAtȚcQ:.lAօ9)6NҪ,e,oA~PEm8uRUdxXwLsM`j̺{( 3c Z=8dGOLtCCs-o1-\#W:O1xM~o% phAtva?b]x[yG9: +䖕)BoVv[Nw՜h$f]`o4!RxjTH }z@ ]C?/g<e/<tN1R]|l886j0~>N{f8G`<6\'a uHmL4KD!i#dބ|(Jp`ˉR ((؊Wj&(>hߚ; + @D*%{Nݾe_gv(Ӷ[jT]hJGҨADat:4fs +3o5dL1+SGP8:zDD(T _2{3&F4 uޗBF"d& (2x܎# Ie~kw;PU!HXVG{"l\n^"^lpG|G::sPI0mBK BW +D/Kc sEU*x%Um;Κz"ȦAFW)}Vy}eÐQ +,筦P]Vjσ0mيi} l~Rb,fJ-'',L<*$+<ʎb7xE'X܋Z^$Zm4q, ӷnV5pIzbnK-rf0>߿oHydvʙ^K(EJ^ҳ,@Q`; Yaa`f;7 I|Debr6y[RE IƁ<( ~e>s$QT% +R#d4_2!?^/zSG nR}iXNqjtT UR¾ rŌUK %|> ޜYQF/ؔX *2er +~\2A 3 +:kui$iH M*PMR(pQ B.Q@(K8oK/Jkxl=_T- #a`vjcw_}6kϐ6$1=x*ri_B%(o$ +凬CMƝ]Wٿ~_ P m+ Hk2@Zoni)'kW@8NPt@K̢eF`0`>2SNRx|$+ꉯTαָ-;>46]6,|hH04އaW!`Hj˱a[]-H%ZvძD\eۀq&> [`6>4L#'9OƿksR'5C70vG55X7| o7޺Tu/X1: heRomX?\称ӱ mucBhcÒ.7ϭ!^X0'Gg& j8M1moIjiXK}{KfL65{0OAyzIs>-D$;UyX7s4"C7.YT8՗]lgQU+q +ߴ1hغb-g[3#xY.BDqi_\2u.PQTSG~}=&S2=ڞ׏8Uc +1SEQM$ٶ/#?)X.?!YbaeFڕwJ[Ef +!dS9HxRbeȤ|_|M2ƭɽs?\`i;xKnk+e|rbH*BnŠ3TocQ½L沅XpmIh.Ԏ&Cɨ@13K>YNGr,jlNߛ4UhIVW!M86{I  ߳ )zznUJJSrٸ7`d{Z4&vEJ4ZDRH)EȤh 3{<.(0ԭ΀J~n[%C"&ƗμUQŐ :4Pm1׎DJ n1 B0GKJ?̥ko}gu>Sb5QV;*@N~uA=Z E޺a2C/:oۑ|k=[.ꟆFZL!H8g$bЎ ߴ3 Lr1u6o쎩dDsbV=grUxhy?D3d*6K1 c+ZϦ uҡ]lܾAi Vp7[Fa gc2Xs"Qh`+IWCU.]F(j7˾nE4i0giĦ DU'L) x0lL +-ӻ)j*e;}}S\<$FɰBQ9ڿJbmtJ9Oa^Hn ] uy϶rMÀ5p=CJ:[mʹqPnu7璆= +>_D#TہDŽ-1.e`)J!o&g{έ&x +({a$!Vĺ3#XmqfԛMc2N"N_,gv8z<dq p[${(G^}"&XR*jjƕR:PʠHf(gwފS;&dTfnvhoI?Sb= i]XQ :̯} J-oPxX~2Ϲ+IKɌ/9od:* plyfйb3iU0JnYwK'Mm' Ꮱ_5hU#X@Q},&[1 >tw\D*Nb!̛\=ÔΞU~gˠ\Pld&yX3.2i>=anj7JZZ@ِ,z2GH#}:uq9pȲY6s>vx]GgSf{ő;R]PvX>r +ZЩ.ai,@Vv}d'ݗg'/ *5ܑ<:DWD2$HR +Y뉏ʄQ <!jĠs o-O( : څUzZÔ3l:L.ݗ0{%ay81m;<\촢e&S~yC]O"Y 1,7˛gw|qt]G[g`2e\q| D|rD&4&z H2z3.gtv 9ک %z{CG5\W@K/&ޞFKǴFLp4k=-fo(MgUCS3Cgʛ_o|& ̈́oCNUK9x/+54U.~@3ܣ $$?fZWP`W)a*йVi?<>kxG6WMN?Sƿ|4( +εV/R7XOЩ~?^=DB & jx3 )\X|h\e8V?&+GjTק$rp vKtPUfj~1省d#' dτҭ +% +X8)رk,cY0=LY _p5Raz0mDUX |T[l=֧S>Xw~7Y90@stʲh1Vw@UxYֱ:.]~iߪ>;3D?C^ ):Bw%^dS91(d[_bۭQ: +{V"%ë*B2+/K :WR B +-asy.C^bSQifK@ Y7 %w?4iow ?r]v4cRrA!M_%{_xG+ͩT7LHX?lVo4m=c I2Neq;4<G-̄?ogk8aXI {S&1ו >%:[,bGLȜ":#C|ŀʉF%ֺ3sa4ar&wq ~6TPx#=g4Xb# ⋮a7f~_m7^[b.06eg?!qww<1㎯ ksu WڤX uMH𻫿61!ڏra%"kΦwVR?ױzNڈmI:(>AX)mػiM5 / +u`Yp~4pRWjyqBUZ)[=AR(3=ƥSZ> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D94Mɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\3w +endstream +endobj +229 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/NSRWIF+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 228 0 R +/Flags 68 +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 39 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +234 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 233 0 R +>> +endobj +41 0 obj +<< +/Type/Page +/Resources 42 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +235 0 obj +<< +/Type/Pages +/Count 3 +/Kids[41 0 R 52 0 R 67 0 R] +/Parent 233 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +236 0 obj +<< +/Type/Pages +/Count 3 +/Kids[71 0 R 75 0 R 79 0 R] +/Parent 233 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +237 0 obj +<< +/Type/Pages +/Count 3 +/Kids[83 0 R 90 0 R 94 0 R] +/Parent 233 0 R +>> +endobj +233 0 obj +<< +/Type/Pages +/Count 11 +/Kids[234 0 R 235 0 R 236 0 R 237 0 R] +/Parent 3 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +239 0 obj +<< +/Type/Pages +/Count 2 +/Kids[98 0 R 102 0 R] +/Parent 238 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +240 0 obj +<< +/Type/Pages +/Count 3 +/Kids[106 0 R 110 0 R 114 0 R] +/Parent 238 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +241 0 obj +<< +/Type/Pages +/Count 3 +/Kids[118 0 R 122 0 R 126 0 R] +/Parent 238 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +242 0 obj +<< +/Type/Pages +/Count 3 +/Kids[130 0 R 134 0 R 138 0 R] +/Parent 238 0 R +>> +endobj +238 0 obj +<< +/Type/Pages +/Count 11 +/Kids[239 0 R 240 0 R 241 0 R 242 0 R] +/Parent 3 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +244 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 243 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +245 0 obj +<< +/Type/Pages +/Count 3 +/Kids[150 0 R 154 0 R 158 0 R] +/Parent 243 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +246 0 obj +<< +/Type/Pages +/Count 3 +/Kids[162 0 R 166 0 R 170 0 R] +/Parent 243 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +247 0 obj +<< +/Type/Pages +/Count 3 +/Kids[174 0 R 178 0 R 182 0 R] +/Parent 243 0 R +>> +endobj +243 0 obj +<< +/Type/Pages +/Count 11 +/Kids[244 0 R 245 0 R 246 0 R 247 0 R] +/Parent 3 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 249 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 249 0 R +>> +endobj +249 0 obj +<< +/Type/Pages +/Count 2 +/Kids[186 0 R 190 0 R] +/Parent 248 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +250 0 obj +<< +/Type/Pages +/Count 3 +/Kids[194 0 R 198 0 R 202 0 R] +/Parent 248 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +251 0 obj +<< +/Type/Pages +/Count 3 +/Kids[206 0 R 210 0 R 214 0 R] +/Parent 248 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 231 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +252 0 obj +<< +/Type/Pages +/Count 3 +/Kids[218 0 R 222 0 R 226 0 R] +/Parent 248 0 R +>> +endobj +248 0 obj +<< +/Type/Pages +/Count 11 +/Kids[249 0 R 250 0 R 251 0 R 252 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 44 +/Kids[233 0 R 238 0 R 243 0 R 248 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +253 0 obj +<< +>> +endobj +254 0 obj +null +endobj +255 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 253 0 R +/Threads 254 0 R +/Names 255 0 R +>> +endobj +xref +0 256 +0000000000 65535 f +0000129916 00000 n +0000136953 00000 n +0000136598 00000 n +0000136803 00000 n +0000130080 00000 n +0000004048 00000 n +0000000009 00000 n +0000058079 00000 n +0000057895 00000 n +0000000913 00000 n +0000062897 00000 n +0000062711 00000 n +0000001906 00000 n +0000068480 00000 n +0000068292 00000 n +0000002823 00000 n +0000136703 00000 n +0000003740 00000 n +0000136753 00000 n +0000003993 00000 n +0000130183 00000 n +0000010868 00000 n +0000078536 00000 n +0000078347 00000 n +0000004109 00000 n +0000083807 00000 n +0000083617 00000 n +0000005055 00000 n +0000089110 00000 n +0000088921 00000 n +0000005991 00000 n +0000006967 00000 n +0000093022 00000 n +0000092828 00000 n +0000007921 00000 n +0000096871 00000 n +0000096685 00000 n +0000008867 00000 n +0000009831 00000 n +0000010780 00000 n +0000130368 00000 n +0000015189 00000 n +0000010930 00000 n +0000099548 00000 n +0000099353 00000 n +0000012546 00000 n +0000101665 00000 n +0000101474 00000 n +0000013497 00000 n +0000014492 00000 n +0000015089 00000 n +0000130473 00000 n +0000020598 00000 n +0000104539 00000 n +0000104345 00000 n +0000015251 00000 n +0000016222 00000 n +0000108549 00000 n +0000108354 00000 n +0000017129 00000 n +0000018111 00000 n +0000111206 00000 n +0000111020 00000 n +0000019088 00000 n +0000019833 00000 n +0000020474 00000 n +0000130578 00000 n +0000021513 00000 n +0000020660 00000 n +0000021378 00000 n +0000130771 00000 n +0000022556 00000 n +0000021575 00000 n +0000022421 00000 n +0000130876 00000 n +0000023752 00000 n +0000022618 00000 n +0000023617 00000 n +0000130981 00000 n +0000024740 00000 n +0000023814 00000 n +0000024616 00000 n +0000131174 00000 n +0000026922 00000 n +0000122789 00000 n +0000122595 00000 n +0000024802 00000 n +0000025812 00000 n +0000026763 00000 n +0000131279 00000 n +0000027843 00000 n +0000026984 00000 n +0000027708 00000 n +0000131384 00000 n +0000028923 00000 n +0000027905 00000 n +0000028788 00000 n +0000131675 00000 n +0000029633 00000 n +0000028985 00000 n +0000029587 00000 n +0000131781 00000 n +0000030037 00000 n +0000029696 00000 n +0000029991 00000 n +0000131971 00000 n +0000031076 00000 n +0000030101 00000 n +0000030940 00000 n +0000132079 00000 n +0000031820 00000 n +0000031140 00000 n +0000031774 00000 n +0000132187 00000 n +0000032551 00000 n +0000031884 00000 n +0000032505 00000 n +0000132386 00000 n +0000033212 00000 n +0000032615 00000 n +0000033166 00000 n +0000132494 00000 n +0000034360 00000 n +0000033276 00000 n +0000034235 00000 n +0000132602 00000 n +0000034677 00000 n +0000034424 00000 n +0000034631 00000 n +0000132801 00000 n +0000035745 00000 n +0000034741 00000 n +0000035609 00000 n +0000132909 00000 n +0000036449 00000 n +0000035809 00000 n +0000036403 00000 n +0000133017 00000 n +0000037509 00000 n +0000036513 00000 n +0000037373 00000 n +0000133314 00000 n +0000038216 00000 n +0000037573 00000 n +0000038170 00000 n +0000133422 00000 n +0000039563 00000 n +0000038280 00000 n +0000039415 00000 n +0000133613 00000 n +0000040330 00000 n +0000039627 00000 n +0000040284 00000 n +0000133721 00000 n +0000040598 00000 n +0000040394 00000 n +0000040552 00000 n +0000133829 00000 n +0000041895 00000 n +0000040662 00000 n +0000041759 00000 n +0000134028 00000 n +0000042744 00000 n +0000041959 00000 n +0000042698 00000 n +0000134136 00000 n +0000043543 00000 n +0000042808 00000 n +0000043497 00000 n +0000134244 00000 n +0000043989 00000 n +0000043607 00000 n +0000043943 00000 n +0000134443 00000 n +0000045506 00000 n +0000044053 00000 n +0000045358 00000 n +0000134551 00000 n +0000046266 00000 n +0000045570 00000 n +0000046220 00000 n +0000134659 00000 n +0000047062 00000 n +0000046330 00000 n +0000047016 00000 n +0000134956 00000 n +0000047846 00000 n +0000047126 00000 n +0000047800 00000 n +0000135064 00000 n +0000048554 00000 n +0000047910 00000 n +0000048508 00000 n +0000135255 00000 n +0000049089 00000 n +0000048618 00000 n +0000049043 00000 n +0000135363 00000 n +0000050432 00000 n +0000049153 00000 n +0000050296 00000 n +0000135471 00000 n +0000051203 00000 n +0000050496 00000 n +0000051157 00000 n +0000135670 00000 n +0000051996 00000 n +0000051267 00000 n +0000051950 00000 n +0000135778 00000 n +0000052712 00000 n +0000052060 00000 n +0000052666 00000 n +0000135886 00000 n +0000053886 00000 n +0000052776 00000 n +0000053726 00000 n +0000136085 00000 n +0000055283 00000 n +0000053950 00000 n +0000055123 00000 n +0000136193 00000 n +0000056449 00000 n +0000055347 00000 n +0000056289 00000 n +0000136301 00000 n +0000057831 00000 n +0000124206 00000 n +0000124011 00000 n +0000056513 00000 n +0000057436 00000 n +0000057773 00000 n +0000131577 00000 n +0000130288 00000 n +0000130683 00000 n +0000131086 00000 n +0000131489 00000 n +0000133216 00000 n +0000131889 00000 n +0000132295 00000 n +0000132710 00000 n +0000133125 00000 n +0000134858 00000 n +0000133530 00000 n +0000133937 00000 n +0000134352 00000 n +0000134767 00000 n +0000136500 00000 n +0000135172 00000 n +0000135579 00000 n +0000135994 00000 n +0000136409 00000 n +0000136885 00000 n +0000136908 00000 n +0000136930 00000 n +trailer +<< +/Size 256 +/Root 2 0 R +/Info 1 0 R +>> +startxref +137051 +%%EOF diff --git a/src/axiom-website/CATS/schaum28.input.pamphlet b/src/axiom-website/CATS/schaum28.input.pamphlet new file mode 100644 index 0000000..49efb0e --- /dev/null +++ b/src/axiom-website/CATS/schaum28.input.pamphlet @@ -0,0 +1,2854 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum28.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.562~~~~~$\displaystyle +\int{\cosh{ax}}~dx$} +$$\int{\cosh{ax}}= +\frac{\sinh{ax}}{a} +$$ +<<*>>= +)spool schaum28.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(cosh(a*x),x) +--R +--R +--R sinh(a x) +--R (1) --------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=sinh(a*x)/a +--R +--R sinh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:562 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.563~~~~~$\displaystyle +\int{x\cosh{ax}}~dx$} +$$\int{x\cosh{ax}}= +\frac{x\sinh{ax}}{a}-\frac{\cosh{ax}}{a^2} +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x*cosh(a*x),x) +--R +--R +--R a x sinh(a x) - cosh(a x) +--R (1) ------------------------- +--R 2 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=(x*sinh(a*x))/a-cosh(a*x)/a^2 +--R +--R a x sinh(a x) - cosh(a x) +--R (2) ------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 6 14:563 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.564~~~~~$\displaystyle +\int{x^2\cosh{ax}}~dx$} +$$\int{x^2\cosh{ax}}= +-\frac{2x\cosh{ax}}{a^2}+\left(\frac{x^2}{a}+\frac{2}{a^3}\right)\sinh{ax} +$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2*cosh(a*x),x) +--R +--R +--R 2 2 +--R (a x + 2)sinh(a x) - 2a x cosh(a x) +--R (1) ------------------------------------ +--R 3 +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=-(2*x*cosh(a*x))/a^2+(x^2/a+2/a^3)*sinh(a*x) +--R +--R 2 2 +--R (a x + 2)sinh(a x) - 2a x cosh(a x) +--R (2) ------------------------------------ +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 9 14:564 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.565~~~~~$\displaystyle +\int{\frac{\cosh{ax}}{x}}~dx$} +$$\int{\frac{\cosh{ax}}{x}}= +\ln{x}+\frac{(ax)^2}{2\cdot 2!} ++\frac{(ax)^4}{4\cdot 4!} ++\frac{(ax)^6}{6\cdot 6!}+\cdots +$$ +<<*>>= +)clear all + +--S 10 14:565 Axiom cannot compute this integral +aa:=integrate(cosh(a*x)/x,x) +--R +--R +--R x +--I ++ cosh(%N a) +--I (1) | ---------- d%N +--I ++ %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.566~~~~~$\displaystyle +\int{\frac{\cosh{ax}}{x^2}}~dx$} +$$\int{\frac{\cosh{ax}}{x^2}}= +-\frac{\cosh{ax}}{x}+a\int{\frac{\sinh{ax}}{a}} +$$ +<<*>>= +)clear all + +--S 11 14:566 Axiom cannot compute this integral +aa:=integrate(cosh(a*x)/x^2,x) +--R +--R +--R x +--I ++ cosh(%N a) +--I (1) | ---------- d%N +--R ++ 2 +--I %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.567~~~~~$\displaystyle +\int{\frac{dx}{\cosh{ax}}}~dx$} +$$\int{\frac{1}{\cosh{ax}}}= +\frac{2}{a}\tan^{-1}e^{ax} +$$ +<<*>>= +)clear all + +--S 12 +aa:=integrate(1/cosh(a*x),x) +--R +--R +--R 2atan(sinh(a x) + cosh(a x)) +--R (1) ---------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 13 +bb:=2/a*atan(%e^(a*x)) +--R +--R a x +--R 2atan(%e ) +--R (2) ------------ +--R a +--R Type: Expression Integer +--E + +--S 14 +cc:=aa-bb +--R +--R a x +--R 2atan(sinh(a x) + cosh(a x)) - 2atan(%e ) +--R (3) ------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 15 14:567 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.568~~~~~$\displaystyle +\int{\frac{x~dx}{\cosh{ax}}}~dx$} +$$\int{\frac{x}{\cosh{ax}}}= +\frac{1}{a^2}\left\{\frac{(ax)^2}{2}-\frac{(ax)^4}{8}+\frac{5(ax)^6}{144} ++\cdots+\frac{(-1)^nE_n(ax)^{2n+2}}{(2n+2)(2n)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 16 14:568 Axiom cannot compute this integral +aa:=integrate(x/cosh(a*x),x) +--R +--R +--R x +--I ++ %N +--I (1) | ---------- d%N +--I ++ cosh(%N a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.569~~~~~$\displaystyle +\int{\cosh^2{ax}}~dx$} +$$\int{\cosh^2{ax}}= +\frac{x}{2}+\frac{\sinh{ax}\cosh{ax}}{2a} +$$ +Note that the Schaums print edition (1968 printing 3) has a typo: +$$\int{\cosh^2{ax}}= +\frac{x}{2}+\frac{\sinh{ax}\cosh{ax}}{2} +$$ +<<*>>= +)clear all + +--S 17 +aa:=integrate(cosh(a*x)^2,x) +--R +--R +--R cosh(a x)sinh(a x) + a x +--R (1) ------------------------ +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 18 +bb:=x/2+(sinh(a*x)*cosh(a*x))/(2*a) +--R +--R cosh(a x)sinh(a x) + a x +--R (2) ------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 19 14:569 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.570~~~~~$\displaystyle +\int{x\cosh^2{ax}}~dx$} +$$\int{x\cosh^2{ax}}= +\frac{x^2}{4}+\frac{x\sinh{2ax}}{4a}-\frac{\cosh{2ax}}{8a^2} +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(x*cosh(a*x)^2,x) +--R +--R +--R 2 2 2 2 +--R - sinh(a x) + 4a x cosh(a x)sinh(a x) - cosh(a x) + 2a x +--R (1) ----------------------------------------------------------- +--R 2 +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=x^2/4+(x*sinh(2*a*x))/(4*a)-cosh(2*a*x)/(8*a^2) +--R +--R 2 2 +--R 2a x sinh(2a x) - cosh(2a x) + 2a x +--R (2) ------------------------------------ +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R (3) +--R 2 +--R - 2a x sinh(2a x) - sinh(a x) + 4a x cosh(a x)sinh(a x) + cosh(2a x) +--R + +--R 2 +--R - cosh(a x) +--R / +--R 2 +--R 8a +--R Type: Expression Integer +--E + +--S 23 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 24 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R - 4a x sinh(2a x) + 8a x cosh(a x)sinh(a x) + cosh(2a x) - 2cosh(a x) + 1 +--R -------------------------------------------------------------------------- +--R 2 +--R 16a +--R Type: Expression Integer +--E + +--S 25 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 26 +ee:=coshsqrrule dd +--R +--R - x sinh(2a x) + 2x cosh(a x)sinh(a x) +--R (7) -------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 27 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %S sinh(y + x) - %S sinh(y - x) +--I (8) %S cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 28 14:570 Schaums and Axiom agree +ff:=sinhcoshrule ee +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.571~~~~~$\displaystyle +\int{\frac{dx}{\cosh^2{ax}}}~dx$} +$$\int{\frac{1}{\cosh^2{ax}}}= +\frac{\tanh{ax}}{a} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(1/cosh(a*x)^2,x) +--R +--R +--R 2 +--R (1) - ------------------------------------------------------- +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=tanh(a*x)/a +--R +--R tanh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1)tanh(a x) - 2 +--R (3) ------------------------------------------------------------------ +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 32 14:571 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 1 +--R (4) - - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.572~~~~~$\displaystyle +\int{\cosh{ax}\cosh{px}}~dx$} +$$\int{\cosh{ax}\cosh{px}}= +\frac{\sinh(a-p)x}{2(a-p)}+\frac{\sinh(a+p)x}{2(a+p)} +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(cosh(a*x)*cosh(p*x),x) +--R +--R +--R - p cosh(a x)sinh(p x) + a cosh(p x)sinh(a x) +--R (1) --------------------------------------------- +--R 2 2 2 2 2 2 +--R (p - a )sinh(a x) + (- p + a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=(sinh(a-p)*x)/(2*(a-p))+(sinh(a+p)*x)/(2*(a+p)) +--R +--R (p - a)x sinh(p + a) + (p + a)x sinh(p - a) +--R (2) ------------------------------------------- +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E + +--S 35 +cc:=aa-bb +--R +--R (3) +--R - 2p cosh(a x)sinh(p x) +--R + +--R 2 +--R ((- p + a)x sinh(p + a) + (- p - a)x sinh(p - a))sinh(a x) +--R + +--R 2 +--R 2a cosh(p x)sinh(a x) + (p - a)x cosh(a x) sinh(p + a) +--R + +--R 2 +--R (p + a)x cosh(a x) sinh(p - a) +--R / +--R 2 2 2 2 2 2 +--R (2p - 2a )sinh(a x) + (- 2p + 2a )cosh(a x) +--R Type: Expression Integer +--E + +--S 36 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 37 +dd:=sinhsqrrule cc +--R +--R (5) +--R - 4p cosh(a x)sinh(p x) + 4a cosh(p x)sinh(a x) +--R + +--R 2 +--R ((- p + a)x cosh(2a x) + (2p - 2a)x cosh(a x) + (p - a)x)sinh(p + a) +--R + +--R 2 +--R ((- p - a)x cosh(2a x) + (2p + 2a)x cosh(a x) + (p + a)x)sinh(p - a) +--R / +--R 2 2 2 2 2 2 2 +--R (2p - 2a )cosh(2a x) + (- 4p + 4a )cosh(a x) - 2p + 2a +--R Type: Expression Integer +--E + +--S 38 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 39 +ee:=coshsqrrule dd +--R +--R (7) +--R 2p cosh(a x)sinh(p x) - 2a cosh(p x)sinh(a x) + (- p + a)x sinh(p + a) +--R + +--R (- p - a)x sinh(p - a) +--R / +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E + +--S 40 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %V sinh(y + x) - %V sinh(y - x) +--I (8) %V cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 41 14:572 Axiom cannot simplify this expression +ff:=sinhcoshrule ee +--R +--R (9) +--R (p - a)sinh((p + a)x) + (p + a)sinh((p - a)x) + (- p + a)x sinh(p + a) +--R + +--R (- p - a)x sinh(p - a) +--R / +--R 2 2 +--R 2p - 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.573~~~~~$\displaystyle +\int{\cosh{ax}\sin{px}}~dx$} +$$\int{\cosh{ax}\sin{px}}= +\frac{a\sinh{ax}\sin{px}-p\cosh{ax}\cos{px}}{a^2+p^2} +$$ +<<*>>= +)clear all + +--S 42 +aa:=integrate(cosh(a*x)*sin(p*x),x) +--R +--R +--R (1) +--R 2 +--R (a sin(p x) - p cos(p x))sinh(a x) +--R + +--R (2a cosh(a x)sin(p x) - 2p cos(p x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a cosh(a x) - a)sin(p x) - p cos(p x)cosh(a x) - p cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 43 +bb:=(a*sinh(a*x)*sin(p*x)-p*cosh(a*x)*cos(p*x))/(a^2+p^2) +--R +--R a sin(p x)sinh(a x) - p cos(p x)cosh(a x) +--R (2) ----------------------------------------- +--R 2 2 +--R p + a +--R Type: Expression Integer +--E + +--S 44 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- a sin(p x) - p cos(p x))sinh(a x) + (a cosh(a x) - a)sin(p x) +--R + +--R 2 +--R p cos(p x)cosh(a x) - p cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Expression Integer +--E + +--S 45 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (4) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 46 +dd:=coshsqrrule cc +--R +--R (5) +--R 2 +--R (- 2a sin(p x) - 2p cos(p x))sinh(a x) + (a cosh(2a x) - a)sin(p x) +--R + +--R p cos(p x)cosh(2a x) - p cos(p x) +--R / +--R 2 2 2 2 +--R (4p + 4a )sinh(a x) + (4p + 4a )cosh(a x) +--R Type: Expression Integer +--E + +--S 47 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (6) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 48 14:573 Schaums and Axiom agree +ee:=sinhsqrrule dd +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.574~~~~~$\displaystyle +\int{\cosh{ax}\cos{px}}~dx$} +$$\int{\cosh{ax}\cos{px}}= +\frac{a\sinh{ax}\cos{px}+p\cosh{ax}\sin{px}}{a^2+p^2} +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(cosh(a*x)*cos(p*x),x) +--R +--R +--R (1) +--R 2 +--R (p sin(p x) + a cos(p x))sinh(a x) +--R + +--R (2p cosh(a x)sin(p x) + 2a cos(p x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (p cosh(a x) + p)sin(p x) + a cos(p x)cosh(a x) - a cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb:=(a*sinh(a*x)*cos(p*x)+p*cosh(a*x)*sin(p*x))/(a^2+p^2) +--R +--R a cos(p x)sinh(a x) + p cosh(a x)sin(p x) +--R (2) ----------------------------------------- +--R 2 2 +--R p + a +--R Type: Expression Integer +--E + +--S 51 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (p sin(p x) - a cos(p x))sinh(a x) + (- p cosh(a x) + p)sin(p x) +--R + +--R 2 +--R a cos(p x)cosh(a x) - a cos(p x) +--R / +--R 2 2 2 2 +--R (2p + 2a )sinh(a x) + (2p + 2a )cosh(a x) +--R Type: Expression Integer +--E + +--S 52 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (4) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 53 +dd:=coshsqrrule cc +--R +--R (5) +--R 2 +--R (2p sin(p x) - 2a cos(p x))sinh(a x) + (- p cosh(2a x) + p)sin(p x) +--R + +--R a cos(p x)cosh(2a x) - a cos(p x) +--R / +--R 2 2 2 2 +--R (4p + 4a )sinh(a x) + (4p + 4a )cosh(a x) +--R Type: Expression Integer +--E + +--S 54 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (6) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 55 14:574 Schaums and Axiom agree +ee:=sinhsqrrule dd +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.575~~~~~$\displaystyle +\int{\frac{dx}{\cosh{ax}+1}}$} +$$\int{\frac{1}{\cosh{ax}+1}}= +\frac{1}{a}\tanh{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 56 +aa:=integrate(1/(cosh(a*x)+1),x) +--R +--R +--R 2 +--R (1) - ----------------------------- +--R a sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 57 +bb:=1/a*tanh((a*x)/2) +--R +--R a x +--R tanh(---) +--R 2 +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 58 +cc:=aa-bb +--R +--R a x +--R (- sinh(a x) - cosh(a x) - 1)tanh(---) - 2 +--R 2 +--R (3) ------------------------------------------ +--R a sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 59 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (4) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 60 +dd:=tanhrule cc +--R +--R a x a x a x +--R - sinh(---)sinh(a x) + (- cosh(a x) - 1)sinh(---) - 2cosh(---) +--R 2 2 2 +--R (5) -------------------------------------------------------------- +--R a x a x a x +--R a cosh(---)sinh(a x) + a cosh(---)cosh(a x) + a cosh(---) +--R 2 2 2 +--R Type: Expression Integer +--E + +--S 61 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %BC sinh(y + x) - %BC sinh(y - x) +--I (6) %BC cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 62 +ee:=sinhcoshrule dd +--R +--R 3a x a x a x a x +--R - sinh(----) - 2sinh(---)sinh(a x) - sinh(---) - 4cosh(---) +--R 2 2 2 2 +--R (7) ----------------------------------------------------------------- +--R 3a x a x a x a x +--R a sinh(----) + a sinh(---) + 2a cosh(---)cosh(a x) + 2a cosh(---) +--R 2 2 2 2 +--R Type: Expression Integer +--E + +--S 63 +sinhsinhrule:=rule(sinh(x)*sinh(y)==1/2*(cosh(x+y)-cosh(x-y))) +--R +--I %BD sinh(y + x) - %BD sinh(y - x) +--I (8) %BD cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 64 +ff:=sinhsinhrule ee +--R +--R 3a x a x 3a x a x +--R - sinh(----) - sinh(---) - cosh(----) - 3cosh(---) +--R 2 2 2 2 +--R (9) ----------------------------------------------------------------- +--R 3a x a x a x a x +--R a sinh(----) + a sinh(---) + 2a cosh(---)cosh(a x) + 2a cosh(---) +--R 2 2 2 2 +--R Type: Expression Integer +--E + +--S 65 +coshcoshrule:=rule(cosh(x)*cosh(y)==1/2*(cosh(x+y)+cosh(x-y))) +--R +--I %BC cosh(y + x) + %BC cosh(y - x) +--I (10) %BC cosh(x)cosh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 66 14:575 Schaums and Axiom differ by a constant +gg:=coshcoshrule ff +--R +--R 1 +--R (11) - - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.576~~~~~$\displaystyle +\int{\frac{dx}{\cosh{ax}-1}}$} +$$\int{\frac{1}{\cosh{ax}-1}}= +-\frac{1}{a}\coth{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 67 +aa:=integrate(1/(cosh(a*x)-1),x) +--R +--R +--R 2 +--R (1) - ----------------------------- +--R a sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 68 +bb:=-1/a*coth((a*x)/2) +--R +--R a x +--R coth(---) +--R 2 +--R (2) - --------- +--R a +--R Type: Expression Integer +--E + +--S 69 +cc:=aa-bb +--R +--R a x a x +--R coth(---)sinh(a x) + (cosh(a x) - 1)coth(---) - 2 +--R 2 2 +--R (3) ------------------------------------------------- +--R a sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 70 +cothrule:=rule(coth(x) == cosh(x)/sinh(x)) +--R +--R cosh(x) +--R (4) coth(x) == ------- +--R sinh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 71 +dd:=cothrule cc +--R +--R a x a x a x a x +--R cosh(---)sinh(a x) - 2sinh(---) + cosh(---)cosh(a x) - cosh(---) +--R 2 2 2 2 +--R (5) ---------------------------------------------------------------- +--R a x a x +--R a sinh(---)sinh(a x) + (a cosh(a x) - a)sinh(---) +--R 2 2 +--R Type: Expression Integer +--E + +--S 72 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %BD sinh(y + x) - %BD sinh(y - x) +--I (6) %BD cosh(y)sinh(x) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 73 +ee:=sinhcoshrule dd +--R +--R 3a x a x a x a x +--R sinh(----) - 3sinh(---) + 2cosh(---)cosh(a x) - 2cosh(---) +--R 2 2 2 2 +--R (7) ---------------------------------------------------------- +--R 3a x a x a x +--R a sinh(----) + 2a sinh(---)sinh(a x) - 3a sinh(---) +--R 2 2 2 +--R Type: Expression Integer +--E + +--S 74 +sinhsinhrule:=rule(sinh(x)*sinh(y)==1/2*(cosh(x+y)-cosh(x-y))) +--R +--I %BE cosh(y + x) - %BE cosh(y - x) +--I (8) %BE sinh(x)sinh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 75 +ff:=sinhsinhrule ee +--R +--R 3a x a x a x a x +--R sinh(----) - 3sinh(---) + 2cosh(---)cosh(a x) - 2cosh(---) +--R 2 2 2 2 +--R (9) ---------------------------------------------------------- +--R 3a x a x 3a x a x +--R a sinh(----) - 3a sinh(---) + a cosh(----) - a cosh(---) +--R 2 2 2 2 +--R Type: Expression Integer +--E + +--S 76 +coshcoshrule:=rule(cosh(x)*cosh(y)==1/2*(cosh(x+y)+cosh(x-y))) +--R +--I %BF cosh(y + x) + %BF cosh(y - x) +--I (10) %BF cosh(x)cosh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 77 14:576 Schaums and Axiom differ by a constant +gg:=coshcoshrule ff +--R +--R 1 +--R (11) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.577~~~~~$\displaystyle +\int{\frac{x~dx}{\cosh{ax}+1}}~dx$} +$$\int{\frac{x}{\cosh{ax}+1}}= +\frac{x}{a}\tanh\frac{ax}{2}-\frac{2}{a^2}\ln\cosh\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 78 +aa:=integrate(x/(cosh(a*x)+1),x) +--R +--R +--R (1) +--R (- 2sinh(a x) - 2cosh(a x) - 2)log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2a x sinh(a x) + 2a x cosh(a x) +--R / +--R 2 2 2 +--R a sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 79 +bb:=x/a*tanh((a*x)/2)-2/a^2*log(cosh((a*x)/2)) +--R +--R a x a x +--R - 2log(cosh(---)) + a x tanh(---) +--R 2 2 +--R (2) --------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 80 +cc:=aa-bb +--R +--R (3) +--R (- 2sinh(a x) - 2cosh(a x) - 2)log(sinh(a x) + cosh(a x) + 1) +--R + +--R a x +--R (2sinh(a x) + 2cosh(a x) + 2)log(cosh(---)) +--R 2 +--R + +--R a x +--R (- a x sinh(a x) - a x cosh(a x) - a x)tanh(---) + 2a x sinh(a x) +--R 2 +--R + +--R 2a x cosh(a x) +--R / +--R 2 2 2 +--R a sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 81 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (4) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 82 +dd:=tanhrule cc +--R +--R (5) +--R a x a x a x +--R (- 2cosh(---)sinh(a x) - 2cosh(---)cosh(a x) - 2cosh(---)) +--R 2 2 2 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R a x a x a x a x +--R (2cosh(---)sinh(a x) + 2cosh(---)cosh(a x) + 2cosh(---))log(cosh(---)) +--R 2 2 2 2 +--R + +--R a x a x +--R (- a x sinh(---) + 2a x cosh(---))sinh(a x) +--R 2 2 +--R + +--R a x a x +--R (- a x cosh(a x) - a x)sinh(---) + 2a x cosh(---)cosh(a x) +--R 2 2 +--R / +--R 2 a x 2 a x 2 a x +--R a cosh(---)sinh(a x) + a cosh(---)cosh(a x) + a cosh(---) +--R 2 2 2 +--R Type: Expression Integer +--E + +--S 83 +coshcoshrule:=rule(cosh(x)*cosh(y)==1/2*(cosh(x+y)+cosh(x-y))) +--R +--I %BG cosh(y + x) + %BG cosh(y - x) +--I (6) %BG cosh(x)cosh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 84 +ee:=coshcoshrule dd +--R +--R (7) +--R a x 3a x a x +--R (- 4cosh(---)sinh(a x) - 2cosh(----) - 6cosh(---)) +--R 2 2 2 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R a x 3a x a x a x +--R (4cosh(---)sinh(a x) + 2cosh(----) + 6cosh(---))log(cosh(---)) +--R 2 2 2 2 +--R + +--R a x a x +--R (- 2a x sinh(---) + 4a x cosh(---))sinh(a x) +--R 2 2 +--R + +--R a x 3a x a x +--R (- 2a x cosh(a x) - 2a x)sinh(---) + 2a x cosh(----) + 2a x cosh(---) +--R 2 2 2 +--R / +--R 2 a x 2 3a x 2 a x +--R 2a cosh(---)sinh(a x) + a cosh(----) + 3a cosh(---) +--R 2 2 2 +--R Type: Expression Integer +--E + +--S 85 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %BH sinh(y + x) - %BH sinh(y - x) +--I (8) %BH cosh(y)sinh(x) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 86 +ff:=sinhcoshrule ee +--R +--R (9) +--R 3a x a x 3a x a x +--R (- 2sinh(----) - 2sinh(---) - 2cosh(----) - 6cosh(---)) +--R 2 2 2 2 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 3a x a x 3a x a x a x +--R (2sinh(----) + 2sinh(---) + 2cosh(----) + 6cosh(---))log(cosh(---)) +--R 2 2 2 2 2 +--R + +--R 3a x a x a x +--R a x sinh(----) - 2a x sinh(---)sinh(a x) + a x sinh(---) +--R 2 2 2 +--R + +--R 3a x a x +--R 2a x cosh(----) + 2a x cosh(---) +--R 2 2 +--R / +--R 2 3a x 2 a x 2 3a x 2 a x +--R a sinh(----) + a sinh(---) + a cosh(----) + 3a cosh(---) +--R 2 2 2 2 +--R Type: Expression Integer +--E + +--S 87 +sinhsinhrule:=rule(sinh(x)*sinh(y)==1/2*(cosh(x+y)-cosh(x-y))) +--R +--I %BI cosh(y + x) - %BI cosh(y - x) +--I (10) %BI sinh(x)sinh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 88 +gg:=sinhsinhrule ff +--R +--R a x +--R - 2log(sinh(a x) + cosh(a x) + 1) + 2log(cosh(---)) + a x +--R 2 +--R (11) --------------------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 89 14:577 Schaums and Axiom differ by a constant +complexNormalize gg +--R +--R 2log(2) +--R (12) - ------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.578~~~~~$\displaystyle +\int{\frac{x~dx}{\cosh{ax}-1}}$} +$$\int{\frac{x}{\cosh{ax}-1}} +-\frac{x}{a}\coth\frac{ax}{2}+\frac{2}{a^2}\ln\sinh\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 90 +aa:=integrate(x/(cosh(a*x)-1),x) +--R +--R +--R (1) +--R (2sinh(a x) + 2cosh(a x) - 2)log(sinh(a x) + cosh(a x) - 1) +--R + +--R - 2a x sinh(a x) - 2a x cosh(a x) +--R / +--R 2 2 2 +--R a sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 91 +bb:=-x/a*coth((a*x)/2)+2/a^2*log(sinh((a*x)/2)) +--R +--R a x a x +--R 2log(sinh(---)) - a x coth(---) +--R 2 2 +--R (2) ------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 92 +cc:=aa-bb +--R +--R (3) +--R (2sinh(a x) + 2cosh(a x) - 2)log(sinh(a x) + cosh(a x) - 1) +--R + +--R a x +--R (- 2sinh(a x) - 2cosh(a x) + 2)log(sinh(---)) +--R 2 +--R + +--R a x a x +--R (a x coth(---) - 2a x)sinh(a x) + (a x cosh(a x) - a x)coth(---) +--R 2 2 +--R + +--R - 2a x cosh(a x) +--R / +--R 2 2 2 +--R a sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 93 +cothrule:=rule(coth(x) == cosh(x)/sinh(x)) +--R +--R cosh(x) +--R (4) coth(x) == ------- +--R sinh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 94 +dd:=cothrule cc +--R +--R (5) +--R a x a x +--R (2sinh(---)sinh(a x) + (2cosh(a x) - 2)sinh(---)) +--R 2 2 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R a x a x a x +--R (- 2sinh(---)sinh(a x) + (- 2cosh(a x) + 2)sinh(---))log(sinh(---)) +--R 2 2 2 +--R + +--R a x a x a x +--R (- 2a x sinh(---) + a x cosh(---))sinh(a x) - 2a x cosh(a x)sinh(---) +--R 2 2 2 +--R + +--R a x a x +--R a x cosh(---)cosh(a x) - a x cosh(---) +--R 2 2 +--R / +--R 2 a x 2 2 a x +--R a sinh(---)sinh(a x) + (a cosh(a x) - a )sinh(---) +--R 2 2 +--R Type: Expression Integer +--E + +--S 95 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %BJ sinh(y + x) - %BJ sinh(y - x) +--I (6) %BJ cosh(y)sinh(x) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 96 +ee:=sinhcoshrule dd +--R +--R (7) +--R 3a x a x a x +--R (2sinh(----) + 4sinh(---)sinh(a x) - 6sinh(---)) +--R 2 2 2 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 3a x a x a x a x +--R (- 2sinh(----) - 4sinh(---)sinh(a x) + 6sinh(---))log(sinh(---)) +--R 2 2 2 2 +--R + +--R 3a x a x a x +--R - a x sinh(----) - 4a x sinh(---)sinh(a x) + 3a x sinh(---) +--R 2 2 2 +--R + +--R a x a x +--R 2a x cosh(---)cosh(a x) - 2a x cosh(---) +--R 2 2 +--R / +--R 2 3a x 2 a x 2 a x +--R a sinh(----) + 2a sinh(---)sinh(a x) - 3a sinh(---) +--R 2 2 2 +--R Type: Expression Integer +--E + +--S 97 +sinhsinhrule:=rule(sinh(x)*sinh(y)==1/2*(cosh(x+y)-cosh(x-y))) +--R +--I %BK cosh(y + x) - %BK cosh(y - x) +--I (8) %BK sinh(x)sinh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 98 +ff:=sinhsinhrule ee +--R +--R (9) +--R 3a x a x 3a x a x +--R (2sinh(----) - 6sinh(---) + 2cosh(----) - 2cosh(---)) +--R 2 2 2 2 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 3a x a x 3a x a x a x +--R (- 2sinh(----) + 6sinh(---) - 2cosh(----) + 2cosh(---))log(sinh(---)) +--R 2 2 2 2 2 +--R + +--R 3a x a x 3a x +--R - a x sinh(----) + 3a x sinh(---) - 2a x cosh(----) +--R 2 2 2 +--R + +--R a x +--R 2a x cosh(---)cosh(a x) +--R 2 +--R / +--R 2 3a x 2 a x 2 3a x 2 a x +--R a sinh(----) - 3a sinh(---) + a cosh(----) - a cosh(---) +--R 2 2 2 2 +--R Type: Expression Integer +--E + +--S 99 +coshcoshrule:=rule(cosh(x)*cosh(y)==1/2*(cosh(x+y)+cosh(x-y))) +--R +--I %BL cosh(y + x) + %BL cosh(y - x) +--I (10) %BL cosh(x)cosh(y) == --------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 100 +gg:=coshcoshrule ff +--R +--R a x +--R 2log(sinh(a x) + cosh(a x) - 1) - 2log(sinh(---)) - a x +--R 2 +--R (11) ------------------------------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 101 14:578 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R 2log(2) +--R (12) ------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.579~~~~~$\displaystyle +\int{\frac{dx}{(\cosh{ax}+1)^2}}$} +$$\int{\frac{1}{(\cosh{ax}+1)^2}}= +\frac{1}{2a}\tanh{\frac{ax}{2}}-\frac{1}{6a}\tanh^3{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 102 +aa:=integrate(1/(cosh(a*x)+1)^2,x) +--R +--R +--R (1) +--R - 6sinh(a x) - 6cosh(a x) - 2 +--R / +--R 3 2 +--R 3a sinh(a x) + (9a cosh(a x) + 9a)sinh(a x) +--R + +--R 2 3 +--R (9a cosh(a x) + 18a cosh(a x) + 9a)sinh(a x) + 3a cosh(a x) +--R + +--R 2 +--R 9a cosh(a x) + 9a cosh(a x) + 3a +--R Type: Union(Expression Integer,...) +--E + +--S 103 +bb:=1/(2*a)*tanh((a*x)/2)-1/(6*a)*tanh((a*x)/2)^3 +--R +--R a x 3 a x +--R - tanh(---) + 3tanh(---) +--R 2 2 +--R (2) ------------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 104 14:579 Axiom cannot compute this integral +cc:=aa-bb +--R +--R (3) +--R 3 2 +--R sinh(a x) + (3cosh(a x) + 3)sinh(a x) +--R + +--R 2 3 2 +--R (3cosh(a x) + 6cosh(a x) + 3)sinh(a x) + cosh(a x) + 3cosh(a x) +--R + +--R 3cosh(a x) + 1 +--R * +--R a x 3 +--R tanh(---) +--R 2 +--R + +--R 3 2 +--R - 3sinh(a x) + (- 9cosh(a x) - 9)sinh(a x) +--R + +--R 2 3 +--R (- 9cosh(a x) - 18cosh(a x) - 9)sinh(a x) - 3cosh(a x) +--R + +--R 2 +--R - 9cosh(a x) - 9cosh(a x) - 3 +--R * +--R a x +--R tanh(---) +--R 2 +--R + +--R - 12sinh(a x) - 12cosh(a x) - 4 +--R / +--R 3 2 +--R 6a sinh(a x) + (18a cosh(a x) + 18a)sinh(a x) +--R + +--R 2 3 +--R (18a cosh(a x) + 36a cosh(a x) + 18a)sinh(a x) + 6a cosh(a x) +--R + +--R 2 +--R 18a cosh(a x) + 18a cosh(a x) + 6a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.580~~~~~$\displaystyle +\int{\frac{dx}{(\cosh{ax}-1)^2}}$} +$$\int{\frac{1}{(\cosh{ax}-1)^2}}= +\frac{1}{2a}\coth{\frac{ax}{2}}-\frac{1}{6a}\coth^3{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 105 +aa:=integrate(1/(cosh(a*x)-1)^2,x) +--R +--R +--R (1) +--R - 6sinh(a x) - 6cosh(a x) + 2 +--R / +--R 3 2 +--R 3a sinh(a x) + (9a cosh(a x) - 9a)sinh(a x) +--R + +--R 2 3 +--R (9a cosh(a x) - 18a cosh(a x) + 9a)sinh(a x) + 3a cosh(a x) +--R + +--R 2 +--R - 9a cosh(a x) + 9a cosh(a x) - 3a +--R Type: Union(Expression Integer,...) +--E + +--S 106 +bb:=1/(2*a)*coth((a*x)/2)-1/(6*a)*coth((a*x)/2)^3 +--R +--R a x 3 a x +--R - coth(---) + 3coth(---) +--R 2 2 +--R (2) ------------------------- +--R 6a +--R Type: Expression Integer +--E + +--S 107 14:580 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R a x 3 a x 3 +--R (coth(---) - 3coth(---))sinh(a x) +--R 2 2 +--R + +--R a x 3 a x 2 +--R ((3cosh(a x) - 3)coth(---) + (- 9cosh(a x) + 9)coth(---))sinh(a x) +--R 2 2 +--R + +--R 2 a x 3 +--R (3cosh(a x) - 6cosh(a x) + 3)coth(---) +--R 2 +--R + +--R 2 a x +--R (- 9cosh(a x) + 18cosh(a x) - 9)coth(---) - 12 +--R 2 +--R * +--R sinh(a x) +--R + +--R 3 2 a x 3 +--R (cosh(a x) - 3cosh(a x) + 3cosh(a x) - 1)coth(---) +--R 2 +--R + +--R 3 2 a x +--R (- 3cosh(a x) + 9cosh(a x) - 9cosh(a x) + 3)coth(---) - 12cosh(a x) + 4 +--R 2 +--R / +--R 3 2 +--R 6a sinh(a x) + (18a cosh(a x) - 18a)sinh(a x) +--R + +--R 2 3 +--R (18a cosh(a x) - 36a cosh(a x) + 18a)sinh(a x) + 6a cosh(a x) +--R + +--R 2 +--R - 18a cosh(a x) + 18a cosh(a x) - 6a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.581~~~~~$\displaystyle +\int{\frac{dx}{p+q\cosh{ax}}}$} +$$\int{\frac{1}{p+q\cosh{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{2}{a\sqrt{q^2-p^2}}\tan^{-1}\frac{qe^{ax}+p}{\sqrt{q^2-p^2}}\\ +\\ +\displaystyle +\frac{1}{a\sqrt{p^2-a^2}}\ln\left(\frac{qe^{ax}+p-\sqrt{p^2-q^2}} +{qe^{ax}+p+\sqrt{p^2-q^2}}\right) +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 108 +aa:=integrate(1/(p+q*cosh(a*x)),x) +--R +--R +--R (1) +--R [ +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R , +--R +-------+ +--R | 2 2 +--R (q sinh(a x) + q cosh(a x) + p)\|q - p +--R 2atan(-----------------------------------------) +--R 2 2 +--R q - p +--R ------------------------------------------------] +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Union(List Expression Integer,...) +--E + +--S 109 +bb1:=2/(a*sqrt(q^2-p^2))*atan((q*%e^(a*x)+p)/sqrt(q^2-p^2)) +--R +--R a x +--R q %e + p +--R 2atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q - p +--R (2) ------------------ +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 110 +bb2:=1/(a*sqrt(p^2-q^2))*log((q*%e^(a*x)+p-sqrt(p^2-q^2))/(q*%e^(a*x)+p+sqrt(p^2-q^2))) +--R +--R +---------+ +--R | 2 2 a x +--R - \|- q + p + q %e + p +--R log(----------------------------) +--R +---------+ +--R | 2 2 a x +--R \|- q + p + q %e + p +--R (3) --------------------------------- +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 111 +cc1:=aa.1-bb1 +--R +--R (4) +--R +-------+ +--R | 2 2 +--R \|q - p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ a x +--R | 2 2 q %e + p +--R - 2\|- q + p atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 112 +cc2:=aa.2-bb1 +--R +--R +-------+ +--R | 2 2 a x +--R (q sinh(a x) + q cosh(a x) + p)\|q - p q %e + p +--R 2atan(-----------------------------------------) - 2atan(-----------) +--R 2 2 +-------+ +--R q - p | 2 2 +--R \|q - p +--R (5) --------------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Expression Integer +--E + +--S 113 +cc3:=aa.1-bb2 +--R +--R (6) +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 a x +--R - \|- q + p + q %e + p +--R - log(----------------------------) +--R +---------+ +--R | 2 2 a x +--R \|- q + p + q %e + p +--R / +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R Type: Expression Integer +--E + +--S 114 14:581 Axiom cannot simplify this expression +cc4:=aa.2-bb2 +--R +--R (7) +--R +---------+ +--R +-------+ | 2 2 a x +--R | 2 2 - \|- q + p + q %e + p +--R - \|q - p log(----------------------------) +--R +---------+ +--R | 2 2 a x +--R \|- q + p + q %e + p +--R + +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R 2\|- q + p atan(-----------------------------------------) +--R 2 2 +--R q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a\|- q + p \|q - p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.582~~~~~$\displaystyle +\int{\frac{dx}{(p+q\cosh{ax})^2}}~dx$} +$$\int{\frac{1}{(p+q\cosh{ax})^2}}= +\frac{q\sinh{ax}}{a(q^2-p^2)(p+q\cosh{ax})} +-\frac{p}{q^2-p^2}\int{\frac{1}{p+q\cosh{ax}}} +$$ +<<*>>= +)clear all + +--S 115 +aa:=integrate(1/(p+q*cosh(a*x))^2,x) +--R +--R +--R (1) +--R [ +--R 2 2 2 +--R p q sinh(a x) + (2p q cosh(a x) + 2p )sinh(a x) + p q cosh(a x) +--R + +--R 2 +--R 2p cosh(a x) + p q +--R * +--R log +--R 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R q cosh(a x) + 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 +--R (- 2p sinh(a x) - 2p cosh(a x) - 2q)\|- q + p +--R / +--R 3 2 2 +--R (a q - a p q)sinh(a x) +--R + +--R 3 2 2 3 +--R ((2a q - 2a p q)cosh(a x) + 2a p q - 2a p )sinh(a x) +--R + +--R 3 2 2 2 3 3 2 +--R (a q - a p q)cosh(a x) + (2a p q - 2a p )cosh(a x) + a q - a p q +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R , +--R +--R 2 2 +--R - 2p q sinh(a x) + (- 4p q cosh(a x) - 4p )sinh(a x) +--R + +--R 2 2 +--R - 2p q cosh(a x) - 4p cosh(a x) - 2p q +--R * +--R +-------+ +--R | 2 2 +--R (q sinh(a x) + q cosh(a x) + p)\|q - p +--R atan(-----------------------------------------) +--R 2 2 +--R q - p +--R + +--R +-------+ +--R | 2 2 +--R (- 2p sinh(a x) - 2p cosh(a x) - 2q)\|q - p +--R / +--R 3 2 2 +--R (a q - a p q)sinh(a x) +--R + +--R 3 2 2 3 +--R ((2a q - 2a p q)cosh(a x) + 2a p q - 2a p )sinh(a x) +--R + +--R 3 2 2 2 3 3 2 +--R (a q - a p q)cosh(a x) + (2a p q - 2a p )cosh(a x) + a q - a p q +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 116 +t1:=integrate(1/(p+q*cosh(a*x)),x) +--R +--R (2) +--R [ +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R , +--R +-------+ +--R | 2 2 +--R (q sinh(a x) + q cosh(a x) + p)\|q - p +--R 2atan(-----------------------------------------) +--R 2 2 +--R q - p +--R ------------------------------------------------] +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Union(List Expression Integer,...) +--E + +--S 117 +bb1:=(q*sinh(a*x))/(a*(q^2-p^2)*(p+q*cosh(a*x)))-p/(q^2-p^2)*t1.1 +--R +--R (3) +--R 2 +--R (- p q cosh(a x) - p ) +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 +--R q sinh(a x)\|- q + p +--R / +--R +---------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cosh(a x) + a p q - a p )\|- q + p +--R Type: Expression Integer +--E + +--S 118 +bb2:=(q*sinh(a*x))/(a*(q^2-p^2)*(p+q*cosh(a*x)))-p/(q^2-p^2)*t1.2 +--R +--R (4) +--R +-------+ +--R | 2 2 +--R 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R (- 2p q cosh(a x) - 2p )atan(-----------------------------------------) +--R 2 2 +--R q - p +--R + +--R +-------+ +--R | 2 2 +--R q sinh(a x)\|q - p +--R / +--R +-------+ +--R 3 2 2 3 | 2 2 +--R ((a q - a p q)cosh(a x) + a p q - a p )\|q - p +--R Type: Expression Integer +--E + +--S 119 +cc1:=aa.1-bb1 +--R +--R (5) +--R 2 2 2 +--R (p q cosh(a x) + p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (2p q cosh(a x) + 4p q cosh(a x) + 2p )sinh(a x) + p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R 3p q cosh(a x) + (p q + 2p )cosh(a x) + p q +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R 2 2 2 +--R (p q cosh(a x) + p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (2p q cosh(a x) + 4p q cosh(a x) + 2p )sinh(a x) + p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R 3p q cosh(a x) + (p q + 2p )cosh(a x) + p q +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R 2 3 2 2 +--R - q sinh(a x) + (- 2q cosh(a x) - 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R (- q cosh(a x) - 4p q cosh(a x) - q - 2p )sinh(a x) +--R + +--R 2 2 2 +--R - 2p q cosh(a x) + (- 2q - 2p )cosh(a x) - 2p q +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R / +--R 4 2 2 3 3 2 +--R ((a q - a p q )cosh(a x) + a p q - a p q)sinh(a x) +--R + +--R 4 2 2 2 3 3 2 2 +--R (2a q - 2a p q )cosh(a x) + (4a p q - 4a p q)cosh(a x) + 2a p q +--R + +--R 4 +--R - 2a p +--R * +--R sinh(a x) +--R + +--R 4 2 2 3 3 3 2 +--R (a q - a p q )cosh(a x) + (3a p q - 3a p q)cosh(a x) +--R + +--R 4 2 2 4 3 3 +--R (a q + a p q - 2a p )cosh(a x) + a p q - a p q +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R Type: Expression Integer +--E + +--S 120 +cc2:=aa.2-bb1 +--R +--R (6) +--R 2 2 2 +--R (p q cosh(a x) + p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (2p q cosh(a x) + 4p q cosh(a x) + 2p )sinh(a x) + p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R 3p q cosh(a x) + (p q + 2p )cosh(a x) + p q +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R 2 2 2 +--R (- 2p q cosh(a x) - 2p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (- 4p q cosh(a x) - 8p q cosh(a x) - 4p )sinh(a x) - 2p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R - 6p q cosh(a x) + (- 2p q - 4p )cosh(a x) - 2p q +--R * +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R \|- q + p atan(-----------------------------------------) +--R 2 2 +--R q - p +--R + +--R 2 3 2 2 +--R - q sinh(a x) + (- 2q cosh(a x) - 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R (- q cosh(a x) - 4p q cosh(a x) - q - 2p )sinh(a x) +--R + +--R 2 2 2 +--R - 2p q cosh(a x) + (- 2q - 2p )cosh(a x) - 2p q +--R * +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R \|- q + p \|q - p +--R / +--R 4 2 2 3 3 2 +--R ((a q - a p q )cosh(a x) + a p q - a p q)sinh(a x) +--R + +--R 4 2 2 2 3 3 2 2 +--R (2a q - 2a p q )cosh(a x) + (4a p q - 4a p q)cosh(a x) + 2a p q +--R + +--R 4 +--R - 2a p +--R * +--R sinh(a x) +--R + +--R 4 2 2 3 3 3 2 +--R (a q - a p q )cosh(a x) + (3a p q - 3a p q)cosh(a x) +--R + +--R 4 2 2 4 3 3 +--R (a q + a p q - 2a p )cosh(a x) + a p q - a p q +--R * +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R \|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 121 +cc3:=aa.1-bb2 +--R +--R (7) +--R 2 2 2 +--R (p q cosh(a x) + p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (2p q cosh(a x) + 4p q cosh(a x) + 2p )sinh(a x) + p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R 3p q cosh(a x) + (p q + 2p )cosh(a x) + p q +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R 2 2 2 +--R (2p q cosh(a x) + 2p q)sinh(a x) +--R + +--R 2 2 2 3 2 3 +--R (4p q cosh(a x) + 8p q cosh(a x) + 4p )sinh(a x) + 2p q cosh(a x) +--R + +--R 2 2 2 3 2 +--R 6p q cosh(a x) + (2p q + 4p )cosh(a x) + 2p q +--R * +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R \|- q + p atan(-----------------------------------------) +--R 2 2 +--R q - p +--R + +--R 2 3 2 2 +--R - q sinh(a x) + (- 2q cosh(a x) - 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R (- q cosh(a x) - 4p q cosh(a x) - q - 2p )sinh(a x) +--R + +--R 2 2 2 +--R - 2p q cosh(a x) + (- 2q - 2p )cosh(a x) - 2p q +--R * +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R \|- q + p \|q - p +--R / +--R 4 2 2 3 3 2 +--R ((a q - a p q )cosh(a x) + a p q - a p q)sinh(a x) +--R + +--R 4 2 2 2 3 3 2 2 +--R (2a q - 2a p q )cosh(a x) + (4a p q - 4a p q)cosh(a x) + 2a p q +--R + +--R 4 +--R - 2a p +--R * +--R sinh(a x) +--R + +--R 4 2 2 3 3 3 2 +--R (a q - a p q )cosh(a x) + (3a p q - 3a p q)cosh(a x) +--R + +--R 4 2 2 4 3 3 +--R (a q + a p q - 2a p )cosh(a x) + a p q - a p q +--R * +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R \|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 122 14:582 Axiom cannot simplify this expression +cc4:=aa.2-bb2 +--R +--R (8) +--R 2 3 2 2 +--R - q sinh(a x) + (- 2q cosh(a x) - 2p q)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (- q cosh(a x) - 4p q cosh(a x) - q - 2p )sinh(a x) - 2p q cosh(a x) +--R + +--R 2 2 +--R (- 2q - 2p )cosh(a x) - 2p q +--R / +--R 4 2 2 3 3 2 +--R ((a q - a p q )cosh(a x) + a p q - a p q)sinh(a x) +--R + +--R 4 2 2 2 3 3 2 2 +--R (2a q - 2a p q )cosh(a x) + (4a p q - 4a p q)cosh(a x) + 2a p q +--R + +--R 4 +--R - 2a p +--R * +--R sinh(a x) +--R + +--R 4 2 2 3 3 3 2 +--R (a q - a p q )cosh(a x) + (3a p q - 3a p q)cosh(a x) +--R + +--R 4 2 2 4 3 3 +--R (a q + a p q - 2a p )cosh(a x) + a p q - a p q +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.583~~~~~$\displaystyle +\int{\frac{dx}{p^2-q^2\cosh^2{ax}}}$} +$$\int{\frac{1}{p^2-q^2\cosh^2{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{2ap\sqrt{p^2-q^2}}\ln\left(\frac{p\tanh{ax}+\sqrt{p^2-q^2}} +{p\tanh{ax}-\sqrt{p^2-q^2}}\right)\\ +\\ +\displaystyle +\frac{1}{ap\sqrt{q^2-p^2}}\tan^{-1}\frac{p\tanh{ax}}{\sqrt{q^2-p^2}}\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 123 +aa:=integrate(1/(p^2-q^2*cosh(a*x)^2),x) +--R +--R +--R (1) +--R [ +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q - 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (4q - 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (2q - 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (- 4p q + 4p q )sinh(a x) + (- 8p q + 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q + 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q - 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q - 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q - 4p )cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R , +--R +--R - +--R atan +--R 2 2 2 2 2 2 +--R q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) + q +--R + +--R 2 +--R - 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 124 +bb1:=1/(2*a*p*sqrt(p^2-q^2))*log((p*tanh(a*x)+sqrt(p^2-q^2))/(p*tanh(a*x)-sqrt(p^2-q^2))) +--R +--R +---------+ +--R | 2 2 +--R - \|- q + p - p tanh(a x) +--R log(----------------------------) +--R +---------+ +--R | 2 2 +--R \|- q + p - p tanh(a x) +--R (2) --------------------------------- +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R Type: Expression Integer +--E + +--S 125 +bb2:=-1/(a*p*sqrt(q^2-p^2))*atan((p*tanh(a*x))/sqrt(q^2-p^2)) +--R +--R p tanh(a x) +--R atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q - p +--R (3) - ----------------- +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R Type: Expression Integer +--E + +--S 126 +cc1:=aa.1-bb1 +--R +--R (4) +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q - 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (4q - 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (2q - 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 4 3 2 +--R (- 4p q + 4p q )sinh(a x) + (- 8p q + 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q + 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q - 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q - 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q - 4p )cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 +--R - \|- q + p - p tanh(a x) +--R - log(----------------------------) +--R +---------+ +--R | 2 2 +--R \|- q + p - p tanh(a x) +--R / +--R +---------+ +--R | 2 2 +--R 2a p\|- q + p +--R Type: Expression Integer +--E + +--S 127 +cc2:=aa.2-bb1 +--R +--R (5) +--R +---------+ +--R +-------+ | 2 2 +--R | 2 2 - \|- q + p - p tanh(a x) +--R - \|q - p log(----------------------------) +--R +---------+ +--R | 2 2 +--R \|- q + p - p tanh(a x) +--R + +--R - +--R +---------+ +--R | 2 2 +--R 2\|- q + p +--R * +--R atan +--R 2 2 2 2 2 2 +--R q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) + q +--R + +--R 2 +--R - 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 128 +cc3:=aa.1-bb2 +--R +--R (6) +--R +-------+ +--R | 2 2 +--R \|q - p +--R * +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q - 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (4q - 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (2q - 4p q )cosh(a x) + q - 8p q + 8p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 4 3 2 2 +--R (- 4p q + 4p q )sinh(a x) +--R + +--R 4 3 2 +--R (- 8p q + 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q + 4p q )cosh(a x) - 4p q + 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q - 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q - 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q - 4p )cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 p tanh(a x) +--R 2\|- q + p atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R 2a p\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 129 14:583 Axiom cannot simplify this expression +cc4:=aa.2-bb2 +--R +--R (7) +--R - +--R atan +--R 2 2 2 2 2 2 +--R q sinh(a x) + 2q cosh(a x)sinh(a x) + q cosh(a x) + q +--R + +--R 2 +--R - 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R 2 3 +--R 2p q - 2p +--R + +--R p tanh(a x) +--R atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q - p +--R / +--R +-------+ +--R | 2 2 +--R a p\|q - p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.584~~~~~$\displaystyle +\int{\frac{dx}{p^2+q^2\cosh^2{ax}}}$} +$$\int{\frac{1}{p^2+q^2\cosh^2{ax}}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{2ap\sqrt{p^2+q^2}}\ln\left(\frac{p\tanh{ax}+\sqrt{p^2+q^2}} +{p\tanh{ax}-\sqrt{p^2+q^2}}\right)\\ +\\ +\displaystyle +\frac{1}{ap\sqrt{p^2+q^2}}\tan^{-1}\frac{p\tanh{ax}}{\sqrt{p^2+q^2}}\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 130 +aa:=integrate(1/(p^2+q^2*cosh(a*x)^2),x) +--R +--R +--R (1) +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 4 4 +--R (4q cosh(a x) + (4q + 8p q )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 4 2 2 2 4 2 2 4 +--R (2q + 4p q )cosh(a x) + q + 8p q + 8p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 4 3 2 2 4 3 2 +--R (- 4p q - 4p q )sinh(a x) + (- 8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q - 4p q )cosh(a x) - 4p q - 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q + 4p )cosh(a x) + q +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 131 +bb1:=1/(2*a*p*sqrt(p^2+q^2))*log((p*tanh(a*x)+sqrt(p^2+q^2))/(p*tanh(a*x)-sqrt(p^2+q^2))) +--R +--R +-------+ +--R | 2 2 +--R - \|q + p - p tanh(a x) +--R log(--------------------------) +--R +-------+ +--R | 2 2 +--R \|q + p - p tanh(a x) +--R (2) ------------------------------- +--R +-------+ +--R | 2 2 +--R 2a p\|q + p +--R Type: Expression Integer +--E + +--S 132 +bb2:=1/(a*p*sqrt(p^2+q^2))*atan((p*tanh(a*x))/sqrt(p^2+q^2)) +--R +--R p tanh(a x) +--R atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q + p +--R (3) ----------------- +--R +-------+ +--R | 2 2 +--R a p\|q + p +--R Type: Expression Integer +--E + +--S 133 +cc1:=aa-bb1 +--R +--R (4) +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (2q + 4p q )cosh(a x) + q + 8p q + 8p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 4 3 2 2 4 3 2 +--R (- 4p q - 4p q )sinh(a x) + (- 8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q - 4p q )cosh(a x) - 4p q - 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q + 4p )cosh(a x) + q +--R + +--R +-------+ +--R | 2 2 +--R - \|q + p - p tanh(a x) +--R - log(--------------------------) +--R +-------+ +--R | 2 2 +--R \|q + p - p tanh(a x) +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q + p +--R Type: Expression Integer +--E + +--S 134 14:584 Axiom cannot simplify this expression +cc2:=aa-bb2 +--R +--R (5) +--R log +--R 4 4 4 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 4 2 4 2 2 2 +--R (6q cosh(a x) + 2q + 4p q )sinh(a x) +--R + +--R 4 3 4 2 2 +--R (4q cosh(a x) + (4q + 8p q )cosh(a x))sinh(a x) +--R + +--R 4 4 4 2 2 2 4 2 2 4 +--R q cosh(a x) + (2q + 4p q )cosh(a x) + q + 8p q + 8p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 4 3 2 2 4 3 2 +--R (- 4p q - 4p q )sinh(a x) + (- 8p q - 8p q )cosh(a x)sinh(a x) +--R + +--R 4 3 2 2 4 3 2 5 +--R (- 4p q - 4p q )cosh(a x) - 4p q - 12p q - 8p +--R / +--R 2 4 2 3 +--R q sinh(a x) + 4q cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (6q cosh(a x) + 2q + 4p )sinh(a x) +--R + +--R 2 3 2 2 2 4 +--R (4q cosh(a x) + (4q + 8p )cosh(a x))sinh(a x) + q cosh(a x) +--R + +--R 2 2 2 2 +--R (2q + 4p )cosh(a x) + q +--R + +--R p tanh(a x) +--R - 2atan(-----------) +--R +-------+ +--R | 2 2 +--R \|q + p +--R / +--R +-------+ +--R | 2 2 +--R 2a p\|q + p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.585~~~~~$\displaystyle +\int{x^m\cosh{ax}}~dx$} +$$\int{x^m\cosh{ax}}= +\frac{x^m\sinh{ax}}{a}-\frac{m}{a}\int{x^{m-1}\sinh{ax}} +$$ +<<*>>= +)clear all + +--S 135 14:585 Axiom cannot compute this integral +aa:=integrate(x^m*cosh(a*x),x) +--R +--R +--R x +--R ++ m +--I (1) | cosh(%N a)%N d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.586~~~~~$\displaystyle +\int{\cosh^n{ax}}~dx$} +$$\int{\cosh^n{ax}}= +\frac{\cosh^{n-1}{ax}\sinh{ax}}{an}+\frac{n-1}{n}\int{\cosh^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 136 14:586 Axiom cannot compute this integral +aa:=integrate(cosh(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | cosh(%N a) d%N +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.587~~~~~$\displaystyle +\int{\frac{\cosh{ax}}{x^n}}~dx$} +$$\int{\frac{\cosh{ax}}{x^n}}= +\frac{-\cosh{ax}}{(n-1)x^{n-1}} ++\frac{a}{n-1}\int{\frac{\sinh{ax}}{x^{n-1}}} +$$ +<<*>>= +)clear all + +--S 137 14:587 Axiom cannot compute this integral +aa:=integrate(cosh(a*x)/x^n,x) +--R +--R +--R x +--I ++ cosh(%N a) +--I (1) | ---------- d%N +--R ++ n +--I %N +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.588~~~~~$\displaystyle +\int{\frac{dx}{\cosh^n{ax}}}~dx$} +$$\int{\frac{1}{\cosh^n{ax}}}= +\frac{\sinh{ax}}{a(n-1)\cosh^{n-1}{ax}} ++\frac{n-2}{n-1}\int{\frac{1}{\cosh^{n-2}{ax}}} +$$ +<<*>>= +)clear all + +--S 138 14:588 Axiom cannot compute this integral +aa:=integrate(1/cosh(a*x)^n,x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------- d%N +--R ++ n +--I cosh(%N a) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.589~~~~~$\displaystyle +\int{\frac{x}{\cosh^n{ax}}}~dx$} +$$\int{\frac{x}{\cosh^n{ax}}}= +\frac{x\sinh{ax}}{a(n-1)\cosh^{n-1}{ax}} ++\frac{1}{(n-1)(n-2)a^2\cosh^{n-2}{ax}} ++\frac{n-2}{n-1}\int{\frac{x}{\cosh^{n-2}}} +$$ +<<*>>= +)clear all + +--S 139 14:589 Axiom cannot compute this integral +aa:=integrate(1/cosh(a*x)^n,x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------- d%N +--R ++ n +--I cosh(%N a) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp88-89 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum28.input.pdf b/src/axiom-website/CATS/schaum28.input.pdf new file mode 100644 index 0000000..8280248 --- /dev/null +++ b/src/axiom-website/CATS/schaum28.input.pdf @@ -0,0 +1,4223 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/BPNPKR+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/MFIMKF+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/DNKIKV+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/JZFSYN+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/ZTXZWV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/RZMFRX+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/WDEHSO+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/OXDYHN+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/TRPALP+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 797 +>> +stream +x͗n@L2ư2-\<7r: ,76o4F7Bg˺v[Q3]鮩MYz'.Bc۩h[? ؚ'L9ې-`L?D1ZL0X09 +HۄKV_^$eHbI4{@bͼ,3e5dAA%`pQh>R h!9]A4P څCt H;qa#/+wBۍ1:W`:%$D4 !O."[G%N$Y +(>&C42?T*iB&c_IF̂?!&> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/QKINME+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 863 +>> +stream +x՗;o1{>;E;I H\E +3xonCZ=k{~yx'ՋUS!x:{yA5>Gև? H +_+~4 Ț0e}2Tvr~*\;hս"mix`?|yJ257dO{g&T%nq6`t0OC0.3tR_b=IЁ52;"t0>||Ŷ# lU2g'! x2ga2 oDFо"Ai4p\i8G,m"O.T^"L!ӝ͐'娓a~+p'/[x*TrUqk2FC386i5Fij.b!*$A8=>Pg,Ջ1q)۸OewsAMߖՍ'EљQWQӝ$KKj{hR sL z^mc0?՚cbN)܏e3%8 )>dava:Lf&7&ne{kt%.WъsҦ̮ EQF4+z?o]q~jTm6i)"CAuqV`tqڝ4/;={Ա<^It=ld͗\?rVQSBNW Uk2$ <8hpߐ+>M +au!~KN-uB%8,dsMR:utb"5Za0T['Z_+GI r9ś}Krg. +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F8 38 0 R +/F10 49 0 R +>> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/IFEXKV+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 59 0 R +/BaseFont/UJAASU+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +61 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +64 0 obj +<< +/Encoding 61 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 63 0 R +/BaseFont/OGTUGB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 573 +>> +stream +xڭTM0WC#qhUj]zf ,DJ}'!|mP7of^&C222#|$a$) "Tx2UĞRϣoM,X݆0`RhC~XdRկX9XK2p +y>*(lƘP#B:g ]s +Gu Fxc=_]P2 PRzZ V%}AU,L7'$]X1{-$ 7s#y]+^W" +'Umwޣ&`e]Y.MYGs:RoFmSŨZdQM.{`=d:WM9۸,=/QF*y9APMV{0WZFH.{N3iuժHs0m/7pm=%~<b7?u&X2] n01oצ=z y٦,/Lx*J٭q N&ds JU" +endstream +endobj +66 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 641 +>> +stream +xUMo0 Whw#Q_V6]Vwzi$-(ˉ];YWG>O!؂G~:LjPM0+ƭMLhky3&*~]Z"%UHaM-"lJEi[L1؁P; `7Jr&pqez\bHI5p~-m`T[I/:l#N2 N=˼[n҃'bJZj!RCqokfHbۿPypdg'= >ԘG Ҵmې::jKU~ :RjFhB5 G%1l ,-3ĽǹpD3>6Ӊ7 >Df0U <e DxR~W +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 784 +>> +stream +xVMo@WцzٝFЪIziH !;kXc-R a{޼7;0'=y;]J%LͩQІJwTvo襴oG8OU=8Oi9PiO}.E3D3 ZCipX,uQ5y!>`l(vբ tCPMjG$M Ξ m/6Z'Cyk,A~0]pdSBR b$w!GRQeKrF[j9Rplts-h܂c ڇ}/-AZ۰{PW!鏇i r=4^c-qV };0PH(﫜DûI>H +j#S!o,VgNBo\*IՍl9위_1à@E^'n؏3~!lvq2[>_:/nj ڰ<8U4WbR߯̚[Vfՠ)ƨ6ߧ3 '& >˰h… ۠2&3 +EkOaş|%\f' Պ?υ.Q+gas=?O2hfR~M)=.EWx= Ɠ`t/Qu 0 j[Q惖yK\zcڑc[\kRxv5=n-oc~]ׇ񤪊[Ŏ`]Bw%WիܮfV +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 976 +>> +stream +xWMo8 +XMɐCrHȡEEC^Zb,J6CBѼ BJ?'g)#aӏ pqX6}vb*[VYջߧϐ0nQ c[GUZXø!\?EJ 0mdSi?LG/<+ {E,()b܃@1Li&ޤc +%B(#O1p5 )(i%V{n(K2EB @XN&0Ƶ`(T;I8hPQ=82k<)ZpZ`IOB SHPS]"``f!״* &%1#I( /$q$i_'C!8#ɪCSk(<.I0r!TbЊXi[WP^=C!QN m(]@"BbTRo_&!T0Yvf\mf6ODY~5%0\ +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +83 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 82 0 R +/BaseFont/JCUYCF+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 726 +>> +stream +xڽVKo1WiI?C&U{衡T2MxD>z_,YR-Z3/a'y7_K%IF?`A*2zUr>Kiӻ}_kBC -t,38ۢf Ɣ.䐫!/Sj V%Aa8nXXLᅅSiWD)zV6p4P-Az4و*uަI@@$SqJz1JQhB4=]H8|Ј> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 885 +>> +stream +xڵVM8+)R*aW; 8ai. -tfz?~v rcW{U.GHR|FxjPZlQ9mO++D2'|Vk+]hC1[ a AJCRN_NR\m + De=x+n)u7}BKCPHlLMޑb^ٌc̩BgA)QE0fz2ǖԄ \,vGўp`_ŀT2x<2WINȏ`F00Edwi:PBkrfƒ圳U(yUy.Ȓy葍>;H,' ;XK5 6|24.#sy]ocz$h`@ _ I<ɴ@,y6?%vʋHH"%a u։t46&#GsR*F*u"s~x\ly;P:%{ \Ÿ`_NcToꁭȳN'ա%RJJ 7)Cs^xEDU[ b ^pt2]ⱛBwV vM]t.,nr3nT뚏yL,vfܗ&&>IU>/8З&Mvnv|o<ۯMi._m].^S]<> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 778 +>> +stream +xVMo@Wцx$TB/SD@U;k1Rs؝}3x @)|n$a$D30dڀǻĦc\%w쾏(]z?һāޅ1 Brq68\& qbV#] ]Q8Uܶ1#Bj3H™>>RbwEA)1σ3ac$M8H搋$5`\_ah\Cr +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 56 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 805 +>> +stream +xڵVn1+6Mդj 4H %D*^y0Ja3}s33)>"B1'1YML[q7(mne|mgބ!0XF)cMYLb&fc™c u0ðj~˜E䇈b?06PᙑmĶʼntoBh,Ŕnm LIh_ck U xV` +OdP7'W3\ zQ_5)=leA<+|pc_{< %D3csM@k+a#T~r|H,DGsz>sEbcr|۬6yv.w;˟{XWC3}dCE`XZ*L |@u\uNO9 *'A$^ +)*-H?-uݒ?Cb1/QLi^;^[+vopR9-kyRǥB0!;S 9og+6勬ſ[!׃w`y +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xV_o0ߧˤ}itb4o*UuHNo?; a q J(EhG>蚥H%P IF$CXn#ob́G_/"QVجߛuG5r*M߁L,e#Z<6ZWZ{xfbKEQ9Oڑ!k2ʌ:tm+ҁ BWlEwzCUhtTWMz\?\i˄8axdהܕ*U@2ôUt-XbšXTu딾ԅ}_@?~& iNSJ!C2]'hN?0U-[Ӌ "HZ ?YРҘxY2U8 t. Qd_͑*䠈3 Ӕ$xcضSK8qX?iʂNtGu.I +}L'8Yb\\_sHNc6i6`F +endstream +endobj +101 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 221 +>> +stream +xm;o0 +@-2СEmM @cV>O<~D<ޯ֜΀o hë@7 rlVZ2Ce.J[JpvCLnxO܏+k~2KMKNėBdm +.4 ZN*:*b!OghôZ=,BRrq>'k aX +endstream +endobj +105 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 800 +>> +stream +xڽVn0+x)E=и) JbNQ_])rD3RV}dǃsm920?\@9Kbп;Q +KK=Tj)`܈4ð_LI)|ʸKD؊)+S%(pjCB菖mvac]"SN8`N  +Qm`eDp)f n3) F:މ@K'*1^($PRZ(SUXA4Aj/J:yfqu5}- +BPFX@3|>PַͅMW$hbdE唰4 蝅mJnw1H$)B"Pe& fP.kyM)w0d~[/6Ilw;ßq%9vͧ1bۨ+G*'f2lWr;9Cq^&x:zrm ot +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F8 38 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 132 +>> +stream +xE0 Dwc2؍FD`DceG!ӝӁ#砇5D I0xRijEߘ֢x19eYQ2k>dglKVE4T)~z% +endstream +endobj +113 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 857 +>> +stream +xڽWn0+xdI(u#}IEey(&qQ9|BV[('O$)Qa!DpOZM(V_$FK0.(M[hR L{mT6ϧ'Ei ISyEŝ㠲.!f?}DBcyX /kD`DiVrE|u1f+'](&f;撒2ޯ)Dk?vaUvχ,9v2f|h^/j9.44y̭0QO+i9XJuÿv#14!-T? $.Z r=A%Z %%l6eն"ydD%UZvFQe::2syƠ6 +/ݣmΠMfRVWē W:_.@zs07s>Ě[^}]0i:?6@_!CCjޒ>鞒%CW +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 554 +>> +stream +xV0+|&`Gʥjj)JQB,}'!٪&R3~7oIޡ7➤Hƒ+$aNcPS&T4 u 1,XjQ ?P0!"Mci}Ԩph߫[Kep*/TV+==w0/C;%K u\R$tvl6` ld$aɅw,Jy&'J9ςM9V)YmP (#%gU*OPPo^Яex4ԃ;6Pj=rKˏ^Z~-ϕ-<9F#=q3^Z6m dΈB6Jm4F]u9?DW?z^Ԟ`!HQASnBoSj> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 430 +>> +stream +xTn0+|dB .qhդJRz* % l =oa4<ꖬC`$T1u?@< STBԠ_q0:HBzEՠI#7e> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 788 +>> +stream +xڽVn@+fi 3xI<H/7pɄ$Dsf0"#9M1_|hbVV-wZ?s/+7H$ٱbyjetGT}?rQur2BBLzlNN3%5 +p +ԉ`)kĉfFڋ[1KR-/)HU뤰%2ՈnV z/od 4s&/"\k[rA@Y-6Czj^ $f茍ySǼE]|P%xrE+ihʼoB5$(RkYS '.fJG:ۏum1F F BglyzY?u{$1OhW_K!ʨ(x\*gy(/c Ԟz#<V !YЭ+֩.i-t1֗4TXťl8˂kRvc=5.\&@S_O>)T(?nCV=pOhg_6Ϙn>?sbus]gC/ڈr6wS^L;ݍk /ط>d}AuG=I\8Pݥ}B˼o^ z#kszjAe[j5g]._@+`I:hU;ׯW0\6[~p[| ` +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 516 +>> +stream +xVMs WpDq!yƇvd[x,x])%F>}$c +|$Y Ē$h,9?=@bcH#D͘&Y?wDHy Y@Qxccct_D.10L)X~W^o7v~yV+U gEqxѸToj2m h}7ڑݤz{4iDŝˆ\֘v[7%~Y;+, Pkgp^vW1abI;[ k\6.DC\$q%(SmovǕb9M< +D51!ƁͿQ&v2LڗP:d0+Lh@DD[ѭg +߄H]62SrSڇɭ*W)M/ֶ,@dK0~j_}`.T/ Q{, ) +endstream +endobj +133 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 789 +>> +stream +xڽVn0+x"р/E=6QȮpP;VkC4ެ #zqP [`F@7!(p7rʅ@=Krӡޯ?/n `Ð0CeX +I3reHmB/s{zrsS-FE`YE$ yHMahP[@G[IsjKPan]T" 2{ul/>Z5,[ l7q#zMT38*mK2zMo"V -%L_L*.f `XOxh@ț3>^GN`V\9U) +K'JAK&]~]͛m7!CNMP<vq5p( ;p~-l:Ib'$$u+CM I<T5UV4fPGg'yK&tnfGU`ZrHvjR #uZK:]=.M%tPO\Nɇ0}》)  ]#im~ Y-u(D=!`+(d'-3ׯOgJ9=N':g?>ruFl6˕<ƴY} dU\Tw>L1\8Xؿ>BiTV·[w/ +)h5z#k0"Z ժ7.*If-_]<6by\ [W~ +n?.ŋO7mG[~߈ _lH +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xVMS0W(ʑd}ęi7LgX@0%ű 2"Kڕ޾}61`es4Nn$$ KoWEQA'IzSCZF`(Bܘ1.n#^s\n}9 fK5]Y^o7v}Vr4S/@Uӽ-J '~ɘMzGza809M(iq'#_¥!(Y`i0 + z֏jѰڎ ^rCE1y Phb\ mIu>/s طj;ֿMYlJoa Qo6?L'0Xe +;~2#jgB maBVЀ0]aw0& S]6Za/w7OkMaNw[[UJ^t6ZۢxɎ`Y:> \0x,ƈ<ͳ/{ +endstream +endobj +141 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 720 +>> +stream +xڵVIs0WhCо0KI=68CݔJ2N鿯d rEd =_@HQa@HPbJLܥI-ٝB5. +ҷP[H4GX )>. Fh2` TsAN6Upa$U8`5 y1>7' ?8V`XPK!bJ$p깹ˏ7u=F#sC)Bn35G"04=)l& 6j)]duA_,x-Cz  +*.Ɍa:XXF_;aj&E4N HSփu~{-rDfŔjSK#ͦ8pCP&bӮx-jtJunelC 2'Hw yH`|77fU~L…QLk¡f;s"lRCy']߻pW@W`gtVL>ɓڤ #9=L4v*^NqB%׆#Z_V(rya$Gּet;mN;FI-.yŇ^]oxw7> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 623 +>> +stream +xݖM0TJ:؎?b\=ܚH +T_$I%U+c{c<>lc #A '`  \PJ)Ny~> Ƒt0X+`?E~.N/eq8ژu'#Y}8r'p3zTfwHTk;KbAw@W(-9J8af=Wk VU5Û!b'_ U~TǦ=R&[Lg'I]=FT;CWfrd +7 ?h>1fTV 1'"QG JwF˜)L+ +FvN*1IՆKki2Ji[݄ËGef&&vńbs +un"XB]$Rd;=*JmkqHަc*Bpɕ^.'OuYo㯧l5Ln)DSK^a]~꟟0M-IQj&)t~ IIz$M N.|1Q"ԑ(InٛOj +endstream +endobj +149 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 531 +>> +stream +xڵUo@ _q/ّwuK1m쁥FZIR-3@*mZ"b㏳}aXEpy6,O0e, +ii_Kj٣]itGi>{.ۯ,ҒM_Z!)k1MhׁԓdS$X1ojP1l%k, +1xh^3HPc}$WԽ9zA$AVx|d~~nZ_Igdr/=ʧ\?(."2U-Py|}w=֯$v>1Ƽ3D AE0rʥ3lQ8msc>Oɦ짆t~k¼2 K^HDB>Mq*g1إ!OqvcT}N1 au} +arZmyF#O[Oҭrj; +endstream +endobj +153 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 744 +>> +stream +xڵVIo@+K\-# JVic{;v!r[% #| [E;1& +P,g\O(Bgaiښބ-L,8Ommra(zBgO"|ߒH '@G0Y.1S;в +Bnt\;-YJB 8z${kA&Xb6I5A--āWǁ^?G1V".& 6?"WW$ H\$ī׾D(M:ay `YpGDW(* B7^S\mUئ`[gA 2jׇ2b?{ݖ0d !.c(fu/^yƧyyV\r 'oڮ3Ufa,|*p8 +Ft3 nYY&KQ\WRKŶC뜓q;z6O<9xڶCbLoXꜛ2ygW~bƲkm׳yW6d6p|#i{o[]]SkhZ_U\R S~unF +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 617 +>> +stream +xՖK0TMMlccj*=JFI0&>ԪYE61e@}11H@pq `B"@)pB!8 K0\|@#8a jBFhc*X=WvOuu8l;Z}IH4>u mlz|k_I%OfIGOGVPߐzAH.1 41Vh̚ tdo>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 533 +>> +stream +xڵU_o0ߧ$6H6վU+Bˀ+KڠUw&#[z|cgټ.w]U|&FF\z#OK߬=rl$tnzDC MI}] x;"Y S҃xQMױ $5Lroݗ|mJv[G>RB^p`O/׺tlM{sY3>_ՇMuc!}QLqe!ׯ%JOҵm65e鿋$)3;v,2? +aW +endstream +endobj +165 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 872 +>> +stream +xWMs6WH +"4K'N=6ʥa:;E؞R](rw{؅(&@nN1T }aj-lc戤iҴow9p&ք(ar9qa\)Kϧnwb3c4qL`]p\Bzk~,0-u͉ Fϧ c' +#9GHhB>jl 1Gbj7@}92`X w4 |3FEjN  +1TŤ4{!5q 4^qځSQK*Ƃe_I/XQ^ӕe3jIጱ3- +C&e*t0V̾bbV$l@4MzdAa`eO%0yDK%:nS7&LX gfj `@7]q,xn#֔p` k?\sSs6}l~{x|?<}[6mڃWƶ~e@->䨭 +/iRL9H }Åh[j:_2K2)k֍,z|Y%1ʝpZRhQml:NEtUݸ/Ai~iU9Vo=?56 Jcwwۛ_S~ބUꑬ.v |;%*)[ 9OGVHEfY]H&3oؙE[,J'4bZpS7IpV&\NuIJx }PkQR ?< +endstream +endobj +169 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 42 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 555 +>> +stream +xڥVMO0+zĎ[זq7D0w{ˠ+ڷE$!4wDxC&"DpTV$Kc" Ws/ή2Ue`S +IHNm%f*OiI[PNdzV32DcGX'%J T`55h~`Y{nv-ѩek\u3ax{xjR'R5K%RQJ`ᤸK +endstream +endobj +173 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 627 +>> +stream +xVn0+x)@Y,n@ң[ՃѨu#j&9.!9()nu>H'(EDHwLC@$84t~W* c+fu٬ +:zMeJhޘ]nungrrVI5e<F k{٩/}܀ 1O/eIxYo^ʥa~R\m=YEcd> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 634 +>> +stream +xڭVK0WRɁ:ĎHVͭUEZ +*> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 273 +>> +stream +xڵRn0`6lJvx+(1 0*~}.U#r޻;e Uh1lvJ/{T +#lGpv] Pop8t9G,\7v~vC7~U_xUYpĥ'e30^JN Зlv˘& +mL7kܐ +endstream +endobj +185 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 865 +>> +stream +xWnK߯8oK ,/fĘ8(tS3yšlڞzSu=a`w,kͤ+a!hv>ҭhӖ܌Oז6ƐLLa]Z:5ʙ9B [޲ m{~d\Cʼx6OFչ6&=՘KԲvȊqC\"Ftw#:ncþZ)0e-$hyV]ԀwWEǬ#~I@H:{X*0]m)Arqz2J GedҧxVC>Ne%qN1j*EF|W2'@)eyS5.\L :8$ol!ڲTx 8VN 7ru|+M)&PcoAc˴L+f_?YRЦi+Bba[;??Do/`Zo7 –ⷷk~TW:.F7gʴ>M.hjw7EX4/眧f.۫f ZID|o. `*@ ytQfT0|ihuUӎZk*7j<[4V30rA|˘d^N =Xm_9 +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 570 +>> +stream +xڵVKO01uj;~VQKndR j~;&nb;=ԉ=3W{pSpT8(ހr U +s.XR&2’Y^>ej6Y+vީYk =­n۽WgA(C I!a/E? [1sc\6:/JzKDY͍y~gvjS|KILvɨ|D/M/G=3^O!yc%'S6@ T_3tudU9lOJӮ_:Tx}/lZ_EIcAW%= IUסB7bh>?H4ՉצPA,REدثg-6> a xoem:V׵? +MUN'JRS.Kݺٙt9|br^6rcdRPݹ`ߘ> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 616 +>> +stream +xVMs0WW2%SIr#=0K@)62H&9dkWy` \Lʔ/ q&1@e_C '?;q5ns}51JFR}:Tk=Yh6AK;Eڻ 6䆰3:8{;NVPh8!NWgWz`4 ú6b"lY3^ԛ/8ݽlv^0vL#&ߗ||Yя +˥&[[6@$1{ǓA +,-󰆄X1 AQs4'{1̟׋9N+G%†4Pan +.e# 6~(t,KXx< >Ƒ F"̙ dB3а!mg_6 S#Q0)޼B3cH5_ZJU`NZeG awVq90=IsWdۇ=}}%CBΗ!ׇZG294Z +*+ +D];2-?IY +endstream +endobj +197 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 633 +>> +stream +xڭVˎ0+@#e3*SMͮU"`S~$NLS{νv;`OZc +d&9@L`>~K œ,g8n?cc5f :q.Nd +W(B X=0| V4 cZ-A h~tȏ9lK ,I!'RЖjH(VFT:[2nn(ln\C ;8<7 ஒc~=,faf߮uZxAf7\-wxC @f8,yŅ10<0XޣiwT.]\e~+@ q˒un!>G=MveUn_bk5ԓ|pp{oz +h(lKN~a|oH[$;<+bPfEa0Vջ?r +endstream +endobj +201 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 278 +>> +stream +xڵR=o0+<`l#uhURC@#/d{l(c@yDf >T(ɑ*S)P y(5N1Drxcg".p> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 924 +>> +stream +xڭVKo8W(% bӢ{lZ@IրuE*RdI}D gŤ}aͿzJ3Bi,gw(aKxVf\(?^,` +CtЅ^h͸!|:Ev&}c(pq녷얡7!ػ'v &dUVZhdS0:%G2Gh L Hq(0 }GJcRuc鄏H#,I <:z@CJsƎgVPxE!Š (NQ$qE¨G"Q9,E"|ڠpY{P~! aP!c_ PUa(ГQ۾tEtS z=bfFwB! Qe*!#h&U4vhX.˜K@·~1 @ + +һsqQ\NsN[ ʛݦ~(uZv8 +xp.YAbkr?n͠̴bL9j?UUOU%i~Y%ۻ}U\6=7q6υt:֑^_.~wiUI]bEfm8q)')[Y%uw:~SGT; |([xzǼS1>;Yh +=Q_@AosⴽmYwǶEo;n_w<겮<+&둔R&+bfTc7憫{Ƥ(5tմ9c2WP!a<Le +endstream +endobj +209 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 398 +>> +stream +xڭUKS0+rluIެS 0{Ӵ DN|{즄3ɜ'PNf cN`ՂEǷל*cTVec~UYvUSgw>U.8ڻ9|!P" ;ALU -ڸTⷭ;( c=SB'4HL=tzKksё|56rOO1 +쟙UzE qNA޸R, D҃sq cco;LA sO 9@.TB|r$Xԗk+m.> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 940 +>> +stream +xڭVK6W(190q/@:X;$%SW g۬k&5(6_`K-.׏ .%GiMnO?V MCV(Cajkaٿ 7aO q{?'>mZiІS_g$d1WerdJɮ:A;A&bKm4DOE݀Ô8R,E\Gؾ'q q%Cc Ǎijd1+duȗhTdR1w+zoN9IS㹖"U4oOd ~tPRRBMFv)e3ZPh&0#~ܜ2H[IG0~t +eЍ*Hy/3 Eϓ0TVQsya9' w40 Y~C+zt-lvnr΢5j=/iևCFD HV)֚~쾾ԗ]UUZUQ]+31~}?xhn\m#B愑'? -Zkg]N'XM't Z=BBU8؆ иQ 9A9M)4ؤeauPSQf`3nR\ȫS#UOUi['Ͽӱ*/|^8 o<>äVjU40d3j̸֑, -|:~SW+`9˯8N6-;x7;>f6dz?][K%ezWKn/2Av}_gjވ&KBoTS~*':etJ*MdP/ȭ; +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 450 +>> +stream +xڥUMS0+r2)4]z`\ߛ,UCK#޾2 ֬~> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 1183 +>> +stream +xڽXr6+Нdp4]tZwFYpȉg?AP s@ЄQ- _O$\R!O954Td +غꚿD3e&:}p*BG?9rH'oC~6$c8hK&0jޏs0@0 r"(HøP8;EZ_;X\螦84\c@#!a[u~眂8;0ppDa{e2T1&9Ljd<#i*MFvF`21m@  l@asπ53bC?ñ⫆.g. +(l(  B@3HXtSgFfz[q0QfJKMaD_&(cXZNYٞrWFSD/ODH+(3yFϓ'1H7dhREi!$奣0L]*^ZL!ԓb@ЏxKcQ`E 5/cDSzNM9Wo4(b[cQH }p折GN1Q[C%| v Ӥf>yUV}fzN]:Mpl'>,:mW͹?@G,[*}ID E| +endstream +endobj +225 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F14 83 0 R +/F10 49 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xڵVMo0C֎q>ji=i]JQM+؆Ky23=(chȂ2F J&Hi_LȝG@Rbc1D,_ߖ +y]ol`-WzXRueYW՜rΕIu5:6*5dBHm(iS߂\aC$zoqO{^ۃc91#A{ t$q!~ju<;֋{⚓`&zbk©7YyNs D1M]ija̲o< +endstream +endobj +229 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 621 +>> +stream +xڭV0+|LlclR/UU{l-=]Jf[)a p(cƞyf a cdGpF{E'y9J$:#ׇҟ1DƢ*] P3qDLg i*sSZr| +s?gΙupq3y nuE.N˸~.ȨDN\9ڱ)~η״F# fC +ڈl::י7^\~y!lӆ0c /z'39T 47@3#{S N\/Do [.`O1kvKI!=a *'[V9pL0|ZƳ= +aB!+l-$}JgJNj_FܲLsE--TP˯ ĬCq0&ǣBa Y)t$nޏr[_7HӭVOD݊Uȧ8)99~-jD9fw @@Q鵝Im ?7l6ah\icn e6/nHtҲ"mSm[ w8Oh> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 590 +>> +stream +xڽVn0+x) Ր}1C:E{luzP 1rKR .7Ùy#B l~P T0}%ɯ8AL(XwȠ^}'$jTh@I)Nfs`(Q]5Cޅs].,py~Gu(М;eIokoZHQr{HK*\? 5a|VJй PhB9UTv6ϣN]Ba[m-Z\`./))l 0(RzL H 1c.OUr' Z8s,qrNcܒ$D e2Tknd(b2Y!a2*'~K}b&߲6.ZLr7q'i9YB?濣W0}97]AHqM0p10쭍Cs3k)zEt$_OQUCݳ7{Vx \p{m8x*KR82?7 +endstream +endobj +237 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 395 +>> +stream +xڝTN0 9ڎ5GDr"J%"q#4—]$`BՖ&@c-AŊ$V-} JJ@ƨ[N0AzXD—ԑSa> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 1013 +>> +stream +xWM8+|&nn@bxv;qaa2I}W a1rKyqؿK*$9M4F6\MYؾ?޿Q} Z)t y8OiFR]>!QH-|"TG6 )` )±Tj‚Y +(޺+cs(o`sGw_Jk,FDCx~OBq@B728sN@O +PtpO>1pC& AaS\NOqJS@BQ%f`$%8bJgr-+=[*~>?YjχF>XEQ \;*D"\#],eyи7mQmW8=ͳi/=rYmYו&~Si_)m>./woE.gTi0j1`Ug܈*w@{6 q r#L' F(uKyUlo+ LqRf܄efm%Â6^xn`(܉æyonvo ߷|1k7=<2m7xpen8>Mg׵hC" h70u1w5s{ r`46tjcaTHwr[cj HD +Czbrjn*5 q Р.k,8o"5OZ8UW|f٭Gw̜v0R9E"`w "'X; ê`ra ZU2/0N!"aFJX +P.0=n٭ɽd+^٥py / ׄva u=\ڻD /vYm+lnVY޼OqwP#fio'ճ +endstream +endobj +245 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 542 +>> +stream +xV=0*m|R>,JC +]a‘&S3ȒMbd18j[m%^zu %DKTG +%#J 9抉돈" @VY渔Jd,@݇]BY? 4~9^kog"n~錇ZW<ɼU|`b.#̯q)p&_bμD: BJ@R~b@S2;Ӆ̘] g*o.`JM*^/ǻbbz; P~й"I`yI~qFb=T[fZ٤Kx6>r5f7{ˍO*gU:GkR.Udx2ZX !5 9w8We>k&@\8`--sc{y+/n ݧƖ7f{i`B|ZBV˾SnAHR)kIU9kuޅ +endstream +endobj +249 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 607 +>> +stream +xڝVK0WvKUjS7=w%bY +䰕 6as x{80,}}_0 yAPPTurY7W)T֎7?ݛfw|WXIYh#J&zWZJ9H쉽›KA[LnaBk sah_]0a7k#յ&R*Ez.r.vs\`{O 8MR:+S(g 5]EN9XmYrc9.Îڎ(blb5e):`?8 d%D-RNz Jz{ Ά%$}M*]qScLD1c4'tgnS5nRĿI\["^Gg8o|}zx5xbO"ݛk]v;ԭb ™!eΖE,p#57柖>S>cbTۢ"@c K5^W0{;? st$k{P"?< +endstream +endobj +253 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 613 +>> +stream +xڭVˎ0+4A?1]ꎔ2&YL||āȨ|K0/ST +P=I2I*h&>}O#E0@d*0rID̄`cΏ%3+?4ưI0N+oPC{~! d/^⮐X B$SycPG܄8d3R)e)~_RNX:e>ىBT*C@(f$%7 {m"e#npB4h8(ӓ;sļ1'eF߱6JmC-d!E{1h0Ys=ҍ\5> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 575 +>> +stream +xV=o0+8Z-(Sd j28(l9%X$C#C@#{w"%!h`n-HBwh(+Dǻ_ ,$3^`N +vYČGˌkv|AaJK*cԚ{wj׿ldC:U[̢Ũj&fn} pxmz~ +/EKMo΍R=uYrYR@RY&$lj,3Jsϸr`J;$stxܾ4 #8_Dc X Û k(@= qdvyDveˎIRyF ;xɁ&49)~61St2$[ @bTX0d`2D&Nvb^ucxD_ 3~1Aٱob +: +0E '8f!Ñc%zӉJb4ɜznrp#̈́`3*GU9{{]F=S-15~7߽iLvћv~;~SY2_k0Тy]j +endstream +endobj +261 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 606 +>> +stream +xڭW=o0+8R(SנICi"C~|>hJ<h6O{=ڄ7OB׸?_SƾUL[i蟷GH8aB4.} qz\0|\ $ǹ^*f|_} +UئS{7"a 6_˵_PHsڍPeBmSKy_b*w~f>B +w.5`c>؂%!*CБAGPZ8 gLN{:%Ic$@g&5XcF H  )$N}(~f K&ȢΞkJ 7 + +W~3na)l@9b[`Q)D oCv5&bEǁ.̜{y{CXނu wrS_{Tjz^Tj^]xL~ˋ;:&eSyM-!HGD@UM9zdD.x>-kM~2I7E #np]ݢF(u_h_ovwtsm:KtMA /Jú +endstream +endobj +265 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 613 +>> +stream +xڥVˎ0^&DNv<DT̔ qe{Mj^>96"9!},7#ʟH\S˵D姇o)VH1$,+-i#4oy”f֩Jv9ŔX zۓƫU?_~vzRdzn5=*$Cy0̮tV'U]8u(L] ˿n_t>ӟsv禝(#0{va~|xABUlpRM2 4ưX p|pLt{8 ue1h]&b"ev#,eD6%wC[[Ԥ,HWl,$ֱ,ft\fX]'z<)!FR@ܩzCHHנ9FknRR +#̀Tugo^\ŷo00Ę`*P7 6 [TѕmsfGi ̑˘cO2*W/sY"wG1gRBWɋ ^e +endstream +endobj +269 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 623 +>> +stream +xW=0+\[m\]HnO"1Bc3g޼yלO}{ VVfdm5i?|}Vӎ2'5a}Ͽ:z6jI}[p„]tXo>e4_ϨXSW71YVG CLRlE|'dA'f9:7*ᱝ>]=ʱz7&T^B)!<}Y7Sϵ%ΖЏTze'wnKjϿYBi 21yݔ]i_h\iܠaT+**@ JK@ٮ@-A07Ԇ`*U +>yt +=F>$y]ģon3@obe +D@o`\U?ji ,e9hDU;#Ey#d z5˽ޢјњRd|濒ʺs jp %i#3,Y/Цn,aMQwjZ +endstream +endobj +273 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 596 +>> +stream +xڽVMo0 Wh/oYvq! ?kdy,GJT#z߬)G2 +5ߑ+Vi7_J,!SԲ`%fHuogD2 n>a'~?hܴV`N5E_9c?NG7t?BqaS^vv[Q|{ 0% -#v>;J sOXM°` t[7yτ+R,Рެ˻grub_y§Xh8XEˎMR3~Bɢ(%<ק0I9RZ|saRBp}y:*Hb0\NyڻG]lJ9a>-cH?j0^Be9]ėLL4X#1N"DC4O&(UG0C|jpTڎ|gRF;& a 8'9+Э1dzzF!ɼB'vw7]Qޱ h5wu*`qGwyn,laT%i`7͛?+O +endstream +endobj +277 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 644 +>> +stream +xڭWMs WpAS;u:[q\5!ɏ/Z! I@p_`>وT[PtkFV"\JI~Q`B1Y\?o LiźR)պYmyUͰw~ݟ0<<ĔHb S9_nڔ$ogĩ=*H5> Dj(gJH~RCffD|w"Hz1)yAn2( {<<NP6ƉP +'ƤEPcLŠK@䳄)%Ik/H JE$?c(TSnMq RJnpȰͪHeԸ o +BVa]fH>,iHb{+ ik59p>ӥ!a fjP`Swc +J%\L<:L{'%=E9VqMkဨi; q §۾Uðl\=!V> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 538 +>> +stream +xڭVMs WpABx&ftc[Q4!K69 @ BwpUq +D"2P4vA;C0ݰS}x2iG3O}jfǺ3ԾT]W '{|_ Č2>Ol<E0B*X5ieL@y,y#YaeMxV dryYd\8*nz +P3d 9~MO;gd[vyNpw;(S"t1\JC0Ds顠T(pt=7}t,ʳ'Pp[i/Df !+~˩\M)#▅,e|Cq+3q:@UNs}/"o=s.B>;^7:7z?qӠGDң*n_[6b}ߟkev&<m1[?cPoUp}mc0˒$um/-\ +endstream +endobj +285 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 1211 +>> +stream +xXKo7W7m4= +u !j+)v̒!&مfRs?J pmoW e'%ŕ|bƫ?., $%.-&&FBsYA brT$s!pwYWNhZ7ƇH50^a'Xu)dgԫ'4} )Q6 +/yxNxyG: +{n>ojMp+T&@%%WXi4Ő*d -:1 VTqvmlѻE^RnWtW,s%T\`|D )hhRFg=\)O\wKUQ4(=9Atv`׬єދ TJ5V*j[?{cVfӁkME;B"o +HYMZ:i8Me5ӣ.vq=N4z#) FUp| lKojaG۵᪛ +5-& gWEpѥOD=uԦI^an@t<};轍,WegfSA4m:oon?oV yZl{z듧V˟pmlbI8@7s̡xt;sehZBڈSÇЗ{8}PxSiнT }hjy-Db| +)5B3s"xo]6 2si)dPbMZ{G qBcSG8. 3qH1u}DpáDj=UJ.OfM9:fX#TKةX-;s` u57O~Əl${9ȣ=cځ$46ܤ7 fC +endstream +endobj +289 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F14 83 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 582 +>> +stream +xڵVM0WdmlmR/UUTvlF 9lp){~3 cf>IDS$? + B0B( ~"{`Z{hkr@BU nMf)T4HB]I)vB9ƭJ~}HY6r26R" p]N=1Ogr55c/ +xV>Ʃ*3Wpv7}艀C] +Ӧtܖp'ھX{lW zIQ ĹHR +lZ܇}A|ҍ ˔]5溅q:ef6ݥuu('G ~ 9NL>81N 92Bn 'WkT+#6r(>Y]uv> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 578 +>> +stream +xڵVK0WhLGKl[n+(T%qH6,Ze +0D{dg1Y>@K<#EE,P%~`ByR!B յ~&_Qh'7Bq0:cߍu/D< +endstream +endobj +297 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 545 +>> +stream +xڭVKO01$.v* r~M5\,{37/`1X܀jzM(Q)AA()RTWsY +*2޺%k,u>_oq: +Y!tpm~W@BPƕNBU(QsH%זYaYlVc:^kָ#ɰ1ʝ(iBEզ^#LPwrȈŽAĸ(!D 'P{$eDb>7@K'h")G%`b`OOv'ۭYޚ"drwy*؁>TKrx:ҽXCg'q.V-+^ +\Wn];{l+z[,ctg!egGC:E +8q6u&QgRnbd'[%W"h_% Ht= &Oo1ˆx|8pg?hNKHjՒGyd[>g1OwDHT(s%* +/Y??+ +endstream +endobj +301 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xڵV=o0+81H?d j:8(l%ΐ=TDY&%{ǣ%=rgt[Y, +U?fD3'Z3&%- E;re;n3T_EM 0b'o/`=VcOpJ!Y@Kpy[*2-V `Z?$u 6D^e"'F|,o2Fٳ垠yKL(Q{Z +Exkٱy՟fw otz:u߽\r_w$6}^v[^l6Є(-sufJ972b$Od2Xu5V@2{2ͫ+ +9y%.pipy|גǐ.n1ű& +p崩x9Gt0L]i/x;(>LxTv)M[c@suYG/:'3dن1}ٗ@}8Ylu16Xb;L^> 5, +endstream +endobj +305 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 619 +>> +stream +xڥVr +8zɡ:VxD3D>83"@AQ@R]0}ow p1z +>k@XR / B?"$& Bb9$ YhJL")4`1aZ3>[~bEt8v,\D] s1IvBm+k4ѱ%t9 :Yw!Bنh*̢Ts4.-#/F x\J\a|1 0;pnck s[Mc!MOz@Wb~󞟳Upd/(d.k!G54|f CT6kk- քNKuB *0" ͬ9&H**BuIluCl4>剸~j% >HxTm3sTu]}l[s'HXshB"l3۱>Ͳi\?g3*˛*˘@ 4PUe$+:t;xcl ve͔G}`U7[S W!]ٙ >jscu6J͜/%i %_g>F?X +endstream +endobj +309 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length 265 +>> +stream +xڍ=O0w~ō";:"R#2%5m"8Db^e GKpi0D jWD & B8b™b`R&7 -p-CuQH`"t #1SEilX-B uSp +O$KpH)F&LUAy$'Udb̔\oqQ\6{05A+ lOqac؎zY ZLi_' +endstream +endobj +313 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 313 0 R +>> +endobj +316 0 obj +<< +/Filter[/FlateDecode] +/Length 1215 +>> +stream +xXKS7W(]6z?8TBr9c` +tKv4Z8 Vu8'$.ώO5)M$V0guiC~yjMfF=1ǧ,)3h&I@b($=ʐ_ M&s3o_Døɟw9 y IC-̈́NcYZ cش۹y00b݇O&eV!pR٨##29Ttx2}g|6ǧn24g{H%H1H}W N#\`/5- UY.#zdb:ϐ@NLxѴgFC(#j5F;?ɂovv~;a_tIShY[ K&e+KiC(<byؠ܀-_î6s=<}EԽ-u +wb! .J_SۓWwwJs=GVۣa}.|pNPάM"}zM(kІTOIs%AtuI\IzSeGNESˇ!,U&i3V~2v :# oJpQ5tYO';~BQKa-,]KK(%qeVM?ZTc0׽c ˪mA/'d*ڜ/l`l:=t8yV^Crzc>=}nXeM/nF;k,Wӆ?TObzwmc f&qߔN +endstream +endobj +317 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F14 83 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +315 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 317 0 R +>> +endobj +320 0 obj +<< +/Filter[/FlateDecode] +/Length 510 +>> +stream +xڵVn0+xC$qتulRKQ$ё%;C1Z!x|Fev%jTASтʫo QB1> +endobj +319 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 321 0 R +>> +endobj +324 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xڭV;o0+<"cWR!uJ$RJU(:>Ccy̝$5#MJ@;iSK jEon \[”&*1~4˳x9 B|mRZg%Ѻdδhml_jVXnW蔰&vYV- 28=hΜG|,jkڵI2̹EGX%>uE@"&faaC絟o!:F1O+aV!\c;Mq>SF,&L3*t}Cb /MkI,PpcnL$2GDJ0<Wq +endstream +endobj +325 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +323 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 325 0 R +>> +endobj +328 0 obj +<< +/Filter[/FlateDecode] +/Length 622 +>> +stream +xڵVMs0WFکi-HɏDHܺ\j. /}@r"G@([Ÿ+0P=Dc79zx1 +1m1k2e\ +=DOE1^Z[e;/yUضIL|/ #FtT~>ՓzgeY{S<Տ:>zX{eA/ +K0] Xo@0xeF6y#k.>wXˇBDg2QmΊV.A1 ZW(}츏]{ɴz$cf4X&!j5 +"kBFǀqtvpڙZ ]0+봃Qep8bE#suU-Rr:%*:Mnd:q#" +(6E{wl/"IJ#"a'ww:6HF'xHmdxlYQrw-%]f,u,FxY1kLW>Kf㼥D0^@ʧhUL.>Q8܏cqv| +endstream +endobj +329 0 obj +<< +/F13 64 0 R +/F3 16 0 R +>> +endobj +327 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 329 0 R +>> +endobj +332 0 obj +<< +/Filter[/FlateDecode] +/Length 741 +>> +stream +xڥUKo@+d7tߏH=HQ9pB]$5m8 IFױ]džH73 +GR}>+&1 #`KmTĉ*>[x8"$YI \ێ(V0M FWPBT$WN$u,\F?|rwz_cRˋ+I!}PDi04sSV% ~ ZPcڗ+qļc$iӱn9#_>O8a es^1fhpC"w~#o>-۞tmx-Qrccls +vd6Ǿ72GLJb$) +l{$78JE)5Rp$XT Hd2[h +vh8\p(1>Ewbp(0`BX1LWQ5OY78c 34C g}ۿ-:zOmHUg62϶aeaz!suLz29㩺}W.E8gz_>O]8-f!eZӨ^VNLrl{~(S3%;Ők +MC6\׷Da:{Y7J]7_Wiұs);Bض [ ? +endstream +endobj +333 0 obj +<< +/F13 64 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F2 13 0 R +/F10 49 0 R +/F3 16 0 R +/F9 42 0 R +/F14 83 0 R +/F8 38 0 R +/F12 60 0 R +>> +endobj +331 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 333 0 R +>> +endobj +336 0 obj +<< +/Filter[/FlateDecode] +/Length 1011 +>> +stream +xWKo6WR@ iu +C$MwnI=(iQ87q _quF@b{a. (t?vfqSx&!+8}r}T )jrM^ # b(%hGu\0iU8P`9&كF0rmk*P:c]:{u,#ʂGE0-ŧojP] : '3SdDlP4{'ۄTkOu*,jp$ЄԷ7;jBpT4R zA +.rM_fOGϬ<=~alW*GS6븧zu\/>կtc~stL[LY\._}h]Su&<6U Ffr9c+_ۜ@]./wU5 Ԧ} +;I +0cϐ+:*?9 ?ÂT  .Ј@Ghy50B*̝DaRpJ )BfGAU+3=Kʂ# Dx$vM0JvmFr:|+sі釋1[( '2Kԫ}RA;Jt.KfwB#e,< B̟R/dֲ{> +endobj +335 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 337 0 R +>> +endobj +340 0 obj +<< +/Filter[/FlateDecode] +/Length 1108 +>> +stream +xWKo7WR`r6C:{!Q.R@uD,U%um%g͋ߒ5B$\2!O93PL*2cfB9U}.PLY;4&9up)oBGߢɬLpB%sQː)!GjrC@qy" v +`z6g8fXO{y 8sXyC\AndE:2cmmCU"!\&9Iq(9r@ ]֚2ǿݟKo1"М + +kfbfbΣ b~N,мtO10)Axu{q)lce/ }ɔ~[3,?qWr(p6Hg\<= P2Ϡ^7EZHg|Oƞ8t"h x~ًG. +?E"^j_z^ƋҀa-qLzgWDJL G`8c1zaMW*HUHJy}N(𺮸wMX}_oiֻy}k/m|Z6ŗy U[*~:/K?ԡ]-&IQ~dStlBF)~L +gY;?/M; /p(CpnPZjm庙Ub|};n2VL:h(*o dctDF: !0w~'dNMN:$dldBI90/2-tS/w +ZڜB=J?\f8Ȝ4FR`a8SLW$1'frg݀φT&JW? !}| +endstream +endobj +341 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F10 49 0 R +/F9 42 0 R +/F14 83 0 R +/F8 38 0 R +/F12 60 0 R +/F13 64 0 R +>> +endobj +339 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 341 0 R +>> +endobj +346 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 345 0 R +/BaseFont/NSRWIF+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +347 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +ccVU*žE9'V ,3; Vsb11HN</gtmW _]&@S-}kLqyLP>f'L踌Q? ē?%8 +*s4ݶfKӄ>8ޝ +Wcaz1F +ǮD%Tj S}dޗ;r;vrf[km"J{K + $(kJd0 +endstream +endobj +348 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 346 0 R +>> +endobj +343 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 348 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/BPNPKR+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4025 +/Length3 533 +/Length 4579 +>> +stream +xg8\mhCBԈ6$1Lnh &1#Q(%D5JF!DKEE=}co{=}׺apQ5Db`E,& $`0Pe%AΝ89B~jnh<" h+s $1 Px#;h4` +@ڣ0Xo&=#("{s9o)Q8+ B;čp绡YX õFHomƕ; q(4w+!!G@b԰Nh_CF0g#Ƣq>?aF0_& LIg}>< h-!&!>7fZX +u H, +GKw(uuPTRF -Vx_}fX"ZO(#!!! @XŸ_yY;bΧF{)lr[Ю·AĻ/C0$L zW*a!.G˰B|*O* !1}$L ;v[U,} RmE!޸~ʔG8$7ls5J@ #of#B@i{n R$# SmUQ3*]TŕuGfɎǓBG|;YR_і ̧vo]ҝx]&duU/z"*aq4ļL$p&H#Dž>0MIxp$iaZޭ0ƻEd.A9 .I4y#ѨY4ȕf@O>#>5a^Qw/%Sy9yw@Kda~ǎ2م*.'N=[#V/ZGhD~3ESƋwi^Mr@_>-= AEk,kACoz&>HLY|eՊt`S|ott 7qPA|4wK Gy#LdRBډ̟R`uRCcJi,ĩ$y#Xg;ڇ 4xcA6fS;:mfPFeAveSQw@~J΂HYhIB)K졸rGɭ'-EOAiv5IՖ+V92lJc\X.>=:6=X]Y>OwwigW_z,ń9;OYL W*B-SG8O:]9S kfdTZuҝ ϒ699[ & LZ9T \{Ғgf}yΒ] B_jLb!C=rT|oTI~=B1W;^7 T`_ӎ&7n RQ$?Ԩ'Lsy.Jkl/k8e{SuRtv-v6S +(Y~_K,H1ʕń6J~o5~ ~Tf?+0ք"CyǃX'  } 9' +Gg- WФE56vE ЛCj8GzމoR\iʅ^T?w? I_{%ϼI.f| NˍbQFZ[5+eKSw9Ƌ*+dK]dU,X0/y [xgr˓~ܖ_% /1X9w؀_qSl5ZV),:e~>/G">N !>mfy|2ҥqǻ4;%ە1EmhGߔן!8]\bdE+ƏnlU8O)m(f1clws!Z_f6 ?s]e}'HI#^I} +arrFDn"ۭnXHgdGI9EB|0r̦hnY³ 4b`a<Cg~+S…GՒ:Y.܄\7IjBrevRfOP)D|7[)eq:;SL/<ن֌0OtK.z9sNS=H3{lilεp,樀ys_eƐZ%9B] }8x鑮 Kw)t-]dvWx,wa<ğ@5)[_.6":]~3'gDSP4B7=Q=Ά@"ȶx2q4Vm⠆%yjd@O41 +J1`X 1^''.N7@R-}`\EkGxA3NMj^U=AүDȰL +3*?R^Qvo;{0<|?N=rGm+$*jl8mwk+Q0t1kg9e5.1ocdS,<VKxRCFs<"qJ()kk*]3 6,R[:b<-Pz@Rꎼ璪|~笞Z-d@Qwo1CH#g3xGu ulkʆA|^ʕ(Awi?-l^^(ԽZ)K$p6q +N2o$Za.Tԋo 56 -p>̺c8K<~H cQ?RhpNU)ˑ͕ա,2e1vFf*T!WCuK[Yk, HjБmH߆hI;nZ(]*ˆaqDC/y4Lhl䈜xdvj"+Kk9RzoJde ag1ř*lJg,x*q}ħU༥_ND&2r",/75';3P?ԖJ1<[eT'MniezPfH @SSs +hܦ}qI:@Z)g30ث-nP| +{ާSXgjmÑwǪtj}îvdUrXIcIk &ܯeZ)={R2,dv][=aXTR9 T4p0,]k_Zj$py;leWݧTǯ.OľiӱzL}јq[gƌENCq)kNǓV%';0==VJ7xD 1#%fOخY7t?.&WYajAn +ôyʟsZ_OAyYvF]Zfg@UK> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4731 +/Length3 533 +/Length 5281 +>> +stream +xeXkii If萒AnGffJ$KVZ:?Z׷c~?}s=s/"D@ i30$$PrQ0$BJ@RR @KHJ 9JHgoW= +Jl6e6;60([Ptr_[&ªۛlv|\<[RW$3jI([\gQDELjVgR'<1q\Ƶܦ3>aQ'ih>SE[#eI$ TQ pWz7:2@((+\C9C:gKb,&QWKؼ\~Xl~~O+vx*tIS)?\:W2OnNj^r whxOcؕ +薓. +sYbg)Q"hUCi߻j#XUw$_wR4Ҷ V"Nlkm߮l=iMZ=)TT)׎LIal^ߴgtLw >1rZpNC[z~ef<ӿzL5`skrPҦ?{ya-*[ u*5ɑJW#8.a^Qz>xF^ Ix {B$:w@{{ӥBXݟ'c;I~ 5ƀ~uBw*}}v|ؐ?ԒgtEf6GoS[$lQM{h[nI3FCmyܲsDVOݠu:- ?.h'}]JyEfoDN/d-Wqc>_\/ +#2_¨6y&$_'rxPpzH*>a;JϠka9 Tÿn/׬׽TޡAw܌*TMK9؆FS #Y̦w=?khn*l&ns!48\^X#wXqCdoݷ#زMfC +籦t<ʁ vBGվ +1*~i<_s[:dyDWz5}u\B/;xpc暥3P}b!+\dD_.Q q^ѰthȊK[}e^X}q7dFE&vip9i |8.ߓyR͞bQa-*fF5y,{7~=lG4YqnY/=_874f7MݶPL5 RChtީU>v$.~l?Q)y9.vF;1LM:"DAC}{1Ozw\F2lGh2kQfJ\/^k@⓸Tk#)SrnC&K d[ݥD.eJ'rZ8Al?w͏H"Iw0  tCdV;:hn JYY3;uƤ-z(ӂ->n̥nn# + 3NW(njSS}sFcܔ'5 +?b,%~Z&d?"1{Y{e$ZG?{z>hܢM7a3c-JFgv[W{bxoM-NXݥ6f崷z NXK'Bݧ$bd<'b=DRd4&ſQ=V&vk?a*Hg!E?%A7 +aKR(Y,K6ٔkA b!s_񻩳;s̑փ&S8$h  `7LP44s.6.ݔt5,wYSOz9.f t})^y}q'唣Nk?]ɀt+ŷD2]XX=79s{Jʏ6VAe׹HbPG6N6N-c>KNh8*kC.\MW;ܭ,gk2HCu|tKVKmg(\Ҧ$6E|5#J1?D3`.wdLO(iP^agCEx]P^Z#֠@ހy5-yyg h ϥtU)5%c#k +<-]A^&Brz$K#&n.g';狀g9ZmnYQؾ$RK\mH%8WDhC*m!-> + 7NTB;5%׶ $Xol,Ʀ賛h8~w=4u}|AJ:E[=tE4K;w7@koZE^|]8糷KZF L^t-wK4Wj~zy9=/i }wVr9>_*Reբ+&.+O0|kn . ~X]Q'wqeZxG|[Ǽ#%:hDBm;ob@rwyZq߷aʎvwFle1w^J&V +,nN'*7/i962["w>a;Y4&Ij|,<] ,#DvmMHL陵X:a['!AӬu_Ϗyֻ0sȌefJ{?`cl[PL$~a|ӇlO Vc-f[ƯldPþ~.*0I)OŸbדhبKxbaZڅī_c:F3173WZX^9d5Xz/G75?b$k1Fv/d8[[*ЎCrB0uB/ra=gHaXS(r^ TAd w[QCS)mE{1IPvݑ+hGd隣 1w~.| Lk)t{+>[GBd_4D|@-M>F)70lgtڿcH`3>ɿ̸~ycW@)& SfT/ Rl VeV~wj +qҎ|-Dc3Q+ܙҳ֎D9Bx[GE{S}ĔԹۓJI̲eXuʛ,WD,`i6 +&DR|0֭4U|>ڜ[8@ʶiʹ=Fdۆ']Tvus{2ȐJrZ7up+.0TKWJM0FH+b+NESPԥop~oxXٱ0ad#PR7+Wp58;S nr䪿D=:y.ץ͓$OoUM M߾,)xLK +0q]QH8ՑR~ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/DNKIKV+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9629 +/Length3 533 +/Length 10189 +>> +stream +xUTѶq 4nظCpww6`];n9}o>_z[Qc9Ws*Ju1 '3# +৐PTSXQhh$ SgSA!2;{s8PPh($m! PP96榎k_sS{ +u's +=?qP VBaqDaϿnYr]rQ/ + % +@i7\n.fod꿕MlPt] "߫S{s1G+{R6R6 5+yſC?>+k1kYUT1qh|q/g=`O +}=sdoI:;Y8ZQCL-LPN,\Uj:ڸd?Spq3k! ?cKutw#"v(>4/\G7Ur,A铱 'k !^ZJXtK6 VLVHr[/6$,CI>Uʲ(Y{Mij8Ux!J +vi(l]$}̾ tav-^|#/6Eg]*W˙nf001\[nŬ^=RZq) b+wEﳰz7%>}ulEwɹ/iǣcOEHfyVHF4(jfa)WPvJ.HH'Lo;AK{ǽ]J>Rh0%k]OFRapq=[J9D{KW| qaɹxŒR +0Jղ˸8MZ]6;nr)(3ʲO-J~bmU8I`pmE<2ߏB p_w9$ +=pTi(Z]vVU$lO_S ^ܴ(t/Je]vssA?jwʠY~k|Cbv>93 svhOjMxu ڎ2!tv|1^F"-i 1̸l![" CaOLF'~QLE8(9L>4λFzդ\F֌ЧN~11%έrUl!4v;^w㇇ +@2O)3*#B| q:4-M+քS6)SiE&jSoŔϓoFxb;R?>zHIKxL'>hv&R0ydOKu.<*9^eszRN}|4Aۮ5d;lto8i~X3+2e9[7v<{Rpa5mSvz߮#\5j14dyM +[a{T*OŠ9s,e ]y-/2jS$T~Dz A;>V~!74>PqI5)T=ŰWӏk8beJ[1"$HWvKXp]fG)1ZRМz vuN+0O^|FtYdQ&]MgwF2׋W[|l- ѮSq%]c?;U%qH\^OQa/ Yx塪θnW"_b{큦[4F }}\Xdڱ514 :!<>pu]UJ/{FEGo>@~)oASd4kƜ^eN^r#YA`/D۩V_͆:mZ(t"BMa_ԅjIx!X{4]:řpC|3VWާ7U/+798.`Is/[dH[v [FrᱧTL>|{n#b&^rw^?\!ؤ)EFBB(wE$4elt_Wq=1Ptm +m;ɼ8Ե 3p6W-h@/<P2 ^>[ Dz:,v=IaJʏ$KtM\ h{e fܕEy_Ʒ%C{VP ֺ?[ *3fx .j07f_gҟ2tgypWP㭦#{˛lvF7CsZp)'1رэ4ݾ2'rUJl}F 쒚~:eLMlmir[7hɌ]LWaEF/WxZj8{Ξ{60B +aW].,MbЌCPIlˠHi=9Hʀ7.\~SMx`>m'88CNR3(_=2X~nbn"bYA&Zwq8&$D}qQo:v(TVE` +H$@d=~D%1=LLЍPUޛIX$^6%o.$p՚73pmBn ={|)F^_Sؠs%4p_K֞9{$uӭ _d>*7M%}cEcxB0ha* + +G,lQ5% s}@q(Kq&,p`_4|0@տ&C+$.U_WA0ZK]#PbK\7hA>υ-tp=(ݴ+[_ƨJVǪi*vgG~?:lg)XhC^^U`2x4^8 #fiжHwO^D>FYS +pg4 dCY|sBkt<"3. O_{|mfoLPBlj Y u]ϹGt\-L'o$v112^ch{+8.mJ%fq tĴ2~Kiܠ9,$)c7?ܟZx^PtFިXaYQL>jjHEqڞ|P+%\)xjbow ZO'IFF:~Eɓߠ[6MBd|7W ~4w'HmU C+Sʐ_'+[b)U >|)8?K0yYfTOpGAn(5AhRx ^8Fu0}+k:$ 0kY{`ڒ;4IF +HGme8<;H) ۑg[:dnkٗl[ɑmqAM>TF%&˚>T:OG(A9!Zqk55KY|iK{dYѾ{po蟅"so)jϽ9]h"+Y4ClDTⳅV!ܒkaa1N=* k" X~-z.y7&HZW|Z +;x`cάY&aR= $[Ui*eA7Z;$0ޑّ"rφt[]+U+dթjP͟RR¼=s +GOqNл2E LC}Nb:;*XB 0Wf;,Oo. X쪕U2-5vnsn:6ΫAhwȁ}ޭDʝINi1WZ&eLڜx82F~E/cf +2@RSkNhtv>gP %W\Uecdf,ZO[d9_+deyT +鶊vɠXZ_f Htjy4~PVm6l/[2bSU`ÔY zM̹cQ +e +w(z +KI" +$uzKX7`70nԮ&qD{wikCjEm}S7M|WQqKjaŎ5ER. 95L|[.Leh6&(K4{ ~并)h 끨!(0WIJ#j|ۥG#oQ$WȆEP3!`MRxWixKٓy UIχ.fPpG<^vjTɇر<{q+`n +|E׻wۭXN@AB g59P7Qטᗦ[6^/j@]W81.ZoHrҍ-K O8w )?>]_!QF@`3Ƕ|f~jD>05qiϓHC8_ D/%?`<  }ՐqteRO*Cs)D~A>I_?<,D4H®A9d Ϭ9K[3jϱ6>7zUYh_$ArY,,nA@ug9n).Ye+bܡ)7g_ᖿC(iAW:"j&GoQx +Q%9՞`QIu] |}[{?2]ZtxY9IG_ HTD5~Q6/OQϩD̏{~x$H"fMu>CI6"8i)"vGfC@ǻ f~0lE\ZWGˊ䄺kih%Nxb +5jcd N~7=hccn߷:τd.|1o0ckK@]ԕ_[Q + \}t;_'IFq\-M"Xϛ?eԃzrO;~Y(xI%BdXP.54#}:\-5ËH_އ!&ÇBoX<%,L#Q֭^%uc#J?X'}4eigcW\Q  )mjP%ʶ_]s0; "Rɑf|1K^XeݍC%b;zyTvǂfШH^APV- =U4_9m3Gh~`$+Y4aU HQ&ڱ_qRjƭN0?0{:z_ +뭖ԧ+|? 9 +NjW˘#;dеzĥMtu+'ZSH M7ChV4)~R8e "|yBz::LɈ6>i@cNt@/R[#ka;}(amH aH{N.*[A^Vm`{.f:t +޽,> :v_Bl $c98h?2}j:fiD 9zyZ*9?'|PQ%0x@"[1SՍnw{2iDJ֊6MOd9DžV(_(ӏ0B'τQ:;MEHa!+׾#BYؔbFYjޥ}@~p ?n@h"ۋJ֤+g +f%=^)4U-L=>SKb*Xhwc|ؓeB+Mqgw{)،jX&|HdkU {6'"W X'[Z-RxC_. 1V"fe +5Uc"a3Kc'qGLM͙弚ƆL ߌgو`:0ir$ 7^<|B=T}Γ +k`PtR0uO&8ձ~aW^oH Ņ1nfArDw9Tf| r<^"O)4_RYhd6y$ᆖOs7L ]k$蟠p@hķcff|rTmaa?bB_ W7w!e"!hEL?$'fb%^0x$Xw.8v xaV=wlYZџ9L Y] Lҫ. ByK8w8B d|_ai%Fa1A߄W)A;LFѳ:TeK-Хb)[/Ǥdٽ)M@'|a>{Ȍj$"宽,CBvXJ]{2w%J\bgATXY义ن03O:_REPC޶S+D8/Mu[ǞrM0}oT 8#*hṴ> G/t'_ +}{L55-z 娐=|h)m`Ek)Ά0Xaͤr}OIP*7j \"2.] +Yׂ<Br9L/5V +O%,ZknWR61GDfbV!ͿKkSOm![|*Q5I+fSaU5XJpޠ|.8:ezWv s^ {X3 [ ]دCngzc^MRzVBJ?=#Hy׊/nDtn#RhM83%rgDG4Eeay4bkypw2y zBKwIL H/TF@OۃL'S +5"J +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/JZFSYN+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Ji_]#8 +5ù+5?@!'M8"P')A=J]ODJ$".Ar )H5cP^H&H +H:xyx 1?o{?H/E"| >5uexI>M"QlکJdmBB׉;rAC|U܆m5=dl:p- !"qx11w[^k%wOg?8yE@X2^H]>H;ϡY߷4×nQlBVGs92NOaҿe9!wmqvv&gPIsؼXXAMzsziֆ.qߵ%5Ő'#Lr׻xiERV>Ycrx,A[])y+"N!k+(Yx-l]ڲFw8eD!%Uy jy9T;DhU^]kJ%6@jLC6UyRx>ma#Bٲ4ߠ@f#[ߢ7yVY)`b#&nv[ìJο~cIx> 8?T޶z,JG.L (X}b{R3" 0l;9M dq>yz;u瘥nErD>Oozߎs({&QUvR/XByƭW׳(KqE82%:-QfmTd Eȅ5!2m3@?\]5q,bllrǯ M5궢K\PGD#WjQk9,&kZcdx>l*$JOver_&?5<,M @/gx f; ?#\ *&-pH6jZ*/J@fRg!?T /q"[ Eܠ( >0yNVPI49 +qͲVaJI*5˫0U@P ޾.mU +:pҷuc;}xbrqq;D'`J?# ۞.:ahғFd2{j{u$rhޓt<`\)8zgLaޔC1Ș>7VgNڃoiHm) TG`AZ:gM_8,}kA SWR8+'w?*=u$:k + hD c'ꥳ|EgsΞk 1_͇Hh.s `9'D&:%%T=|2rswn^6Bvz=(8I}j9O#FI@34ZfU/ލ?*Bl~"w%J(/86ּro YybǶ9=E䫖-n~֐7W %Q G\˴W},"π:䠾Xi$FXΰ%*].ph ړôزܵi1NxFpՑs3( +8z70`S*%T4=y;%)m @ZU ^^u#S(e ?]־*5)-lD9Qꕥz4 .M=[\/aa |6AblW&H;zF3bvShaEOH@В+{ӷCqN'JXV6a{ߡ1cm(*s'1.Hwbh#$䰐<.߬M` iF+3C@e*`~EH|@{0qzSFط:R5Chy N(cIԻUu@ +Y]S]OX#3%yc>QQ.EPЬk0{=9oFo5D=n5cԕ&d1߄@|JUN_#}SX1ժ mݬ)@cVnۓ !`үiLݬNurͼA&Ԇ:>wuɿWmt#S;iqj,FJߢS܎FBkRoIv4a'!O'| 0R l7y *AӸwCDyiIn躩LlNakkW_{D]j[Seja-#m)]5 U|+HFhkG69K ڌr/ +oDp İ r;FuUGu|CHsS&RvodɄ&ܥgk 91?EGsY;%՟v]8HqZ<2jZHO*SbSu'? Kgʷ2boV;^.a&Μkز\ub5:}oKΣT{?drMYQw[<ӗTNA:TucMu{ǣwpB7q-h ^Xiي˕1]Ros` 6DW9[]s[b}3t$qXcb/.9!a +;RR{ B#&gU#ƔYv]1zH"x9PrnzHEܧo|WYS4AGqǃ0\)+2OCeGj+&y\:$sX8aO>{a0˵MjCYQ)HSm^+<`d*87V.3\?|SX,ugllЗ50`.O)xIu&); +..\mpwD6-ՖٛGٗ^8iGu!>iFv &p") |woA4vJ6=mVk$O@UF YӪ-R*R*_`,P]4F?nbIɑ;pJKAql/LS|gPlYl phRéx[˓% COQ,3 yh$x{d +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/ZTXZWV+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5000 +>> +stream +xg8\mEFmh0%:Qch &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D8,^BZRZ me# JK@Z!!mo$aoH%4"E:_,.%9Y%< yx@m?U +@M Mxw$Z\PH|$F-|hAz!4rn(,@O,+Wϒ (Txa@ u wyA?onF߂c=1(t?8/ 4!ؿKȿpkcQ.X74+E#f(;A##\ 7ojGaVS;b<(|/?W릃u!PX7%EJ;?P|a$!#wϤeYUyEʁ@ yY_oo${'\|?cWŀH D+ձHiiLXm"Zu*iU|PAt HTqe|0PQ"ll b[7ٽ3Uʮf=+̡5(z0 &6g'L~Z1g ltxΚ]qBR:ciy}lwb|={Ѳg"a1P<;.:njU{Yܯ/S J*TdQ -0'G{Jye ;0_] )f/tI eѴF51K= T9V:m14~&μ H@Fz%N{;]*F*Kt, 0}yD͝;ujcc8yYO4=di ƥ +vxJ繏}"pe?-J,'TVx;tY0-=[euJs[?^O+LK:No|KŻ!y s7*@I_|K;[E+ YLN})`\eȗGsU44/r=hd*O8p Cj&Lvq {kj'oF3Qc|IXq,Pʍ.{om'xV(9oG7_n::ތ;8{3B5ca {#F\L3cdNa8{u8iN^O w"Er8CtJ6BCr˸oQږ +#MIaS!L +G@>y"]?Ì&L "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qm.~/VvilyϹ`ff1ls,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%{"g&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH؜Hylq$w׊ã? q(8\baAE2$5hBFVuψgшZx0Ǫ{,"j%gQiS?IMl@ }*ҟ(bNs]N:o.YAMql3_p"Sv2]5ysx/9 gBߢ#l&iں .f>bFVMEp>T}7ȁ\qR'clIlV0by^9l=#yoB_?"WR +:)<`-U;N]M,VHzSfwȤ~Im *亹6gF(w+ŗ]s`9Bs^XQ [ O]ͻ̟ftzĩMa5OCrM, oސzKI]'i"jm +q-ǡib09Yy߯e06/91:TR%W}5f+oL0ٻL{8X; +43$=JUzⶆF_~"2q0,=n5 em$F|o3|G!%+;S댵#wz<h1/Uzy q>GrٵߜE1d}e|<3䌬,6`I2!ZP&M0J> T_* F>zF$V] /JqJlͶ'96]'|aď׶$VƓO]d6 !LlֲxƬnxsyx-%/][#Q,q4qLV끌 b~vu*9,7 +'8xOFU{gfsWi5:C)D~E@.UIc<5䵑aVF$1vZE{vfYNL5&vO?xuPEکȂiGL-YRrr +c`ơd^IFZn_9!_&HQf-wW&FX'O$)W3WEw7U^VRjg՚]Eg%$͐ꗽ?6m޿M_I69+0Pj ϷtlD rJdP*>2D,8Qh +Nƌxҿtbr u9CuK+QشSc{_>ҏՁrI!XcS{f6űQ,aE0zL{[)O,SYc$$?-s'[> >(xK]!RwgC ^+Ʌsˉt0cH\]ΕRߊ~AUұ=3Iw^\ng>[(aS͛kR jw25z4ح7gvꁛט n lAVCs޳܇ CI ?Mlu9~I+Me09N\3|=*}uG}O):P&7"aVJuu#k/ J ;jEqs$j&Ϋ(?nƯ׿찊8fPX:ԭ}FRCd;b(0Tᜤ1mL|FܨMԝ_+ﶗ(}0G z*GF!_5Hbۇ|_ŊrKO7˕NM}%([&x;Z+SfZq0";6!&ZjG :qPW%lE箽%11<)>K&k$+GbF+Rvg| +'RQYA)LKc{ +/Lì]Cp⨃ AX\}p~R^}zH”Cw7 C8N_6:$5w)3=ZH§С^>#QIs$A\ٮu +%(4F[s2+1sZe(tL$/HE1.=84Ȥl9b5%pŎ/6#z~fG,Aϖx)'[gfWLݙg>q7T5kFQEEJm!3SƗ33pLNyu?zi{F1QQ޽ts=$nv1pubL>ce`#UL[mJG^f(=x{P]6O\IQzr?e6*hay+-6M{<޴YmC7tpBnY[)^ *J(;ohߠJŕ;f~0v 3-I(YP~@mӃ2OfyADpY7KBQgbV=!Jn#v).,-%w q +SBQaXbCm^;(4M}P`ZQNORR@C6Ievfl{cbԾk0*DG?rt9-k/:Nt]*,ɼ, ^;~~agHjiS8\ȿx^eD [bQ> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1063 +/Length2 2906 +/Length3 534 +/Length 3603 +>> +stream +xSi8NH֔d,{1![ֆ Xfb*!K0dY+JJ%%"g:}Ϲοs>,fuPO(@`- @`/IzH"@ա  +SR$]7AtwTHGO 4:X,`Xо(PW"vA;n@OE:vJt(KPh7"@/uY'7 a$n'QG0XΛDD Oqh5&"W; 0~4 CtܐX?wG.>-L ,leO -̻݆`!tGחo@U/ _R.@ tɊ +xЧ|A;+AEo/E]0; +8u@{:oԕ:zbBYWU +A$?Lv7vEbQ?o,S.D)w .Cy:4DIY PUCB`0XUU;JwL/ C?;H+(X|DSfېBܒb(Ũvw1~2Fʥ&ia}hT)`,ޞ/xe?^#1kgd~4qMttSj:Vriv"h+9l[wEP?>t|Z"^`{UXM`Ɗ!f]ߣb=3 ?)gi7/ߘWEdpsņu/ߏpv`9ɟs[{װ6OF $4asﱝ3aez^[9 +a"2eʠQ=]qa9)^B++t +%Qw +`RXR a"7r$Ә1#&14-~H~4; lzg^~JF]-:)6}jk HϲN_&+N+ur ^qL3a]Rᨾif"F={^EKi)&STHÎ'T@/_zԮ=eP:K CwU^˛ Y7C%p-h投.j$mG%Xw/'x>%aowߍPa<gTift KѻH5 fr}dom dj~u K0u mƺ?\$]Z nY[,fYU$nT]4AՅ娏8{$:p1;5xIFmJ#.Ȝ ͼۚM+)M{>=g=\m\ՑSߦ?kq<,UrEf@nlODAK!Yj@Ay".0@DOEC L3WHdZa3tђOОLưw..Bƨ-J OIK7z#+9k0E%J9hY窈O+!Kn Ğ-z+Q[ÞE'q&j599قW$-,l:uq: !VZEpM5[liINƥ{}JZJ}H- #|2!],2C]=B{w~VI/x[h-#@BEJ-* iQZ)\X- e;A^ycs Im@{ٝ NM9讵SqiLoL`,OO\#Wz8Ya~a6!u'Oq|r2pZ:&U Y@cނ}$%<֦-tJpPOCĀ웁)'aV`2&8;8*$enV8!'RL^=Ri̢ɧ.k*G,9zgV o&QeT.7EʼV-8Bkv5ϩ:Ȣw wf|5%-'ڇ>a)l:Zǯp&k&YMDYHLfLNelks3ÏuVz 36zϢ:ѢRS?9ΨQH٬7aY/,V;/ IYo:_%]{W׽`|YjE?D)OXzEġNrI Xf&^F=Xbx;JQbʙ8=͢dwmŇ=xGts1m7E Ba^sLKOcv4,NC{ 5.M bMb-osd=^$WZSnQumn|hݡ(lw۸2N(NƢXYw&ңo(G[7P+7n7)}5{>q(׫|.@Jz.t`֖}T>i-|i( G I9\iɻr*,l)c@4?=*>Y7L3xv#tBCIĪkt{yU-k͹fC/) (aljN+oeҟ8 bΜ_nݒ*'%=YE5s4YԲɿblȣ7ZZRķMl!E41+{?5"Ie +js>sqiw o;×8ތC@X4җH!}@j +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/WDEHSO+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3064 +/Length3 533 +/Length 3610 +>> +stream +xy<}dC\B0c c˒ew̅ɘ32dlcٷBܕP${$!xyy\?}~{$,euxO#`p@P(DRR/D0x>A +TWV@$=?)Cӥ! >q +( H  X% -`"7TD[A`@1p9aIți` D,ga[ ``G߭_pf CkL@b1(7daJrPtL&D[b(  ;~q_2k6$>R&pAc.Px4 X842¿SCeYURTh\%2TUEQU"8¯p^!`0P"EUCg1YY`ܢY丌pلRkcΜ2a悽5ܾojvbmt~Ԍ#zhzyB#xUSO!Wtx+畈U5&GMm '4R;_3k`ٯ8ΟdksIctnpf0d}ⓟ&98.ekmH $]5ítÊys7N ¸9#Wm#<? +mqX/T1̤e]} +Zvo0ÓBEzճ>qc 2gZ9+yLyz ' ӝ5]}`.˻ri}r"|+M%y^ϸ'%lĉO,>DFh w9oK~/?ݨ5R9E)A$aaΛ;Z%&vj$B%NY/< F: [mGMS)Rm8|vy.:'A<ꛌ7qᇷ ,KEKB8&-yijRޓ^N%J- ;\Uh=OT2ڥҵ޾PNgϩޟuمJؽtEZ@p B{='٘S!FijsNfxN2(XrB%Ӡ71aNm2 ''!hכ*ÐL +kq77iVݷqL.U ucBA`;;jxQF\2mM#C]V+gutK,;tO/2ݜwJ (li cvgX# ,*-bMxmՙֈ-wV; X$8kd1f{jeGۋ6G}>!D>ğ4jf\&e)]o +|\Y.tLgΈ!BD6ΰX>^YL/ts+)"5Qa|_rgvT@3df8l}WPqeQpԆUS;Z '_e68x Wvw1gc"#s;T./RX786N oֿ'v5/WGLoJm-aSh&лyv9ٳ^n׾z] +xÊjQ|9QHSkՑ=\e,83OS4ҎꕵUT59zVOZZЪP˔O!غ !Z>A +PYU>kN64Ƶ梹,+ZLa.CЊqqezF׈ zMwm9IGh/tjbPB!g\= j|fmO5"FF s7S>\q0 KxK(Ɗg^5P + "ZYI'ę19dWcM섌(/ ֶCV=ܴ>p/U-ŗQ c6X`"7HFn\_ˁmZ>}c>Mȼ-UJtP7|*&gr_SJ(;ߞo]`ܽ3GN>DoHf)4~Xmb\,{P4.?K :YS|=v9f3)<)Z!HUkA:o96ޭ#;R-ҦbN2DEkB4ruW GwT +j)Kuv}^F`dTxҁ\ 8yaG>u<Fla Uӏf#N| I%+>`rNhΤ5 V=?ˮ6X9|E|V B-%O0;Ͻoi~ +-ug*7Y`vd-~NjB +3'G=Qe?nk#U^GJHvdIg<]Rpj cI+5#E]~% RZ/)Ax/NsyS{mE/ҐN.RR4! %''Ո2٥ B֒5lYpz)wx^9sDD-IG,*[~h,u+\Ō Ǹ;wŁ [ejԱ$th_?e8{ERB5r2ihںixbfzmy p"< 3yD"YTPrK]Ym.If[sP;CVn2R\J=T2#GFm~Q3\Bd1(95t)Nk)0bꄼ3T:vUXKuŴfj$'i=KT!:+9X5HMQ=|`tr3Et\wmQE,:5h`6A$v2hVFۑmb ў"86|ku +F?#Jծ3B\T#C ֯ 0Tʂv79Z;l%O.ғԊ{)eJMix> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1944 +/Length3 533 +/Length 2479 +>> +stream +xy<ǕG֧AY2b/)QјyٌHDBE%{#$HTHuQ9u;}y>nl(Ёh`LW׎ 8aO8Ţ.0FhS6, vL Q8WlLb$NHI4$C  pKC "s +1`ȯH@&ަpYJ@v sbJ +A0taW,1ֿ1܁K_cJC4?t&lIٌw4gq? "04@}oAaPHCrH #xld|WM +<8!>?ݣ zOΚhu",'b=_ $Ehԡz{9jaaIJ>U;&G1boڦp= kgS9OҌvoUM^j4=v[)kG:+wyY3ӵ+w3 /`;+&h^UvT7*Ts}CDeUݒ&jg{AހiUogT5=)i%D +=M;IݦT-w-@E\}Mx㣻v9|2΢J i! Sbݝnǫ Ҧ + ua!.9?/.oZ=*b +/:x:_g!^@Z&UDJGZG9ehP5]ګ'ICg(.?Ϲ<CVgS +w,aFW݈iꥆf5vy6Z<_X0(28DuiKt덮PaD[`x'Tj^_=렖|=vwqQҞc/m^ b>6U˼,jmiimjc–Rs1˽sZ;\=qG8Jطa gNڅ0ֳXY^Q5;^sɉq lAϻ8%zC/wiH .F!w*E%Qstv)rK@`=*^fed=crUdzG>E(a \snZT^ܛeyp X9Ȏl㖪8#oD\բkkdd;%z ~}S?@$6I'C`?J +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/TRPALP+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1600 +>> +stream +xiTWH* +\h !̀ a)[@" +CfS8`"n Di((- +`, + h[RDAT\$* z:g}sP2# f̂\ +Ch$|s 8rvu\ -R%V`.wި 8…Bz&х1B,8b1E1F%c(aB$`"`8B$`QQ2t(I8=Semjݶ WYt_zQf͖tNɩ_3J> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 2029 +/Length3 533 +/Length 2566 +>> +stream +xy<D5ql=! 31,8$ǘy0gȐ]Y#% GN"[eE l=۹<K[ ЄB*`%78B6@$@Mk4D0x3D7whɥ xT"G08;Ǒ +*`@"֟^A T  4t#!dW +E&н|A>T $P$@]!}p}nB',p^?/mMTC!T 6 H ҽi8o@v# }L~ Hû8YɄoICm9~iZd-?׈?Q~#\G+7!)" OP8Sӄ6ք<3Dp:RS ,ڕ?!` F]a$!Iu +fS3Ri-5 2~5cpZcZlPnMwPp6[va^vƀ dL.5ޔSeL3 +@Z'4Z+_xSWۭ>#}G5K!R=IlM34΃yoڞeOspJ?6=ZsW.Zjs{N/94Oq.l5^{#};ilwW-DÁۿTKrFf'ϧ܈NO> Sjn3/UCBG?[ŔkIq.^# [jT]zK"Gǡ|c՛l؂o1Ršza/O,)K3ߎ¡۫ki.=(455YuҭY^Ǜ OF9w"Qg2,~зCQӋ4FyX] +^'S>=UJ)u)j/TNY%$slMO!r>цk%/7pe$JNJc\(2$I]a[GM6r̳RDXpm UP W  >r,*:s5[{C?'?j+jXZl}c)4<]ga"bI{dǼ#^,kt{#{P) Z\,s-V|,¨ 67}Gw$d*3q? 4g0uOa_EtKP0ZHZnWdɻ=C/$6Jw[OhS 䤳-\G_,y@NTٲz-(p`4RK0N<`]s6%Z#(= +0 Xb _N8u>17S(2s{߃JX-ί! ^YǵO.:P5-)^Yw7+PXot8R>_|w"QbRl⡣@ ObNJ|Pȓ ^%ᗨ ',V߱00?Ъ 5?O\$q^!!#Ӹ {t1Qf]TQ~3%y[o +|R#\]08Px7'9=z~h:,~:zlx0lL3RJEVNaza|x֌XYT֞PB~sĶVCNd[$ Є;DfԛJD({X]#90WTAWiHBi7{0~\ ~sVUnswaD#ѮXT3|P&BòenD4 IH6 +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IFEXKV+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3701 +>> +stream +xy8}2Qm,7fa u$;`14(dWnK֊B(!wJu,Q%D^ws<{\uSRJ8E!ӕ``GM` +:Oc +C#0'jTTUNj Mt$<Ő4'`1D%`%?~xZ`0G eBj8߭bLʤUˮ\?ʮP#e{k} qkZ$#FwStԴs{ |`Ucpz^Lwfy[>!(u+{c_x] `=]Wӧ2{X8%d-S%<2v,Qz!r&u yR"# +ch=CxPe=^ +`6'),_ ~jljvx+V@J`ZXHpO-Ew z<f=v/Qb|rˁC %5H?LXX"k7(8T~" Q9ˏHR]<r* f ϒr IV&׭Sk=%e vjvu;jIwNV|f ˅ sBĨ6@ܿE<"ʘ 2yUr\>s2G$g +OCAO.Q#8`p4{iW%\ڀN̠1˔m|QQ+x@pRŕY|Odݼ@6Hpo/N5_GnFh>\uѧ`zHI5E\GBe5 '_,Y;ckncC{.X尐ɧo[1[u:u M5^o[DAjcQP7 <~*9A^9٪fo7_5qfry^*tdQ7ۼ^8\LXgʑ%HãMV{/9غ+"c->xqa".bpۜm3%~Q5P0%o7g+̾:^m:6'L)RdN3k'G~fDaz>Qβ] ?)Ÿ ڹہs>fOmy5awi/ I8zк^+w}xob;ҷ nr߲83Ϫ`OdZO1^>)5F iP)Z%(]+~tՄK$v 7r IE+`Bm%Fܺrϓn7slSy j=/xox -͒c1xˑ҃P C+#iwr_}zuYu,]5o¨T';k 5Ŷ}VWD2+ÊjzUvTsQK ́ڙZsdUo:k~&(78S#?-5qcH)7Mb {@aVb6Rԩ+$>qt!Q[Ŷ-%Om1T`fE8g9h`{xof?KVכ9$]\wpgƸW)]Z$e@[hP;@X;o2WyhfJԐLc3}h3h_/]AM?ֱͧ +f<ҙLA/ s~`,qI.rܳNrs/S?>2Z&wcN*Inv= + 3i2KU:V.B!u7cZ1æ0A B=#CeAm#ߵ( naJ(5( 9/P^3)Gv؋el6cO_eCӶ^LߎjxR^Gww,w$IeY#Ԏs-diM$խGp5;;F F|h4ͨ1 3CWԟ~xyfAFa>(&{~0NHDžz=cGKeY1?ӕ:c=1g"eFRT +B 'D> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0hGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&gu p HIvt +[QtGB&d"-D2gAl0e_┘p$njvs L6?S3"FX3T|ܰ[ 3``̍͗UR BdXEB$D ?L|BWp{n:w-fljdžN/fEƟY;W8ϲyCèiܜ̵ ̋<!VӁBk3;N'M_T2yú÷oXŽOօp tN[P?Zl$Qɀv=bJeiBTDoWJOo= 1bj:fsYgZtki踴9Uj! . ]S +YAr5 d2y?>KZ8v|L)KõT&͎XVo٨/I}Vu-?P< .11ŷKIhnS>Ncf{Km\PwRtR%O`vj<喀B)ȩ5 +IGskUr:~:FoSʈث`zé!<+'M}qAՏN\Qs"tf8\ލ5f$#Y;ک~W ?SS1Djl;%1FXhl\IsC"}KLJu*cc 3M*9jW•W.Q)fjO[᷅gh$>5ٵrl|hH0&sm:&꥛ч_5UYNZ9muWzz~o28yw=-"?Xra>5Z QvUep<EsO"BN$EɦO6-r#R/hYC]J] i_zUK6'\dxf74`\92u-a'iD 8uϬ9ZÆ3 +J\k5UMuE$#q݆MC!f]-y4 +c.Gw^y ]',O'Tpm'1cE˴5])Z+tM*rJnN2wVozOg֪y×uǟ[?S2ӪV5c[ =k*n)G&U^hm-a'4YU5zɡecj#+/BDKg} (){rs,ހ_9z +3uo3FZVp7X=rLNͨ:qfCV;su {=%Jq~.ΗzECF;we~|dĪW#lg'yǴ,&\S *:**ڡ@c]){3rx5ȑYϟ +'fЈP +endstream +endobj +63 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/OGTUGB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 62 0 R +/Flags 4 +>> +endobj +62 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 11319 +/Length3 533 +/Length 11878 +>> +stream +xUT%֥&'wD6kh␸%n_=T1'V7AM$j`r3~c+X!RS`+{ c0uظ,|l\qG%@'_.ndejlP0[ 159ZQ[[q W7DDVV)`Gdd3nApM hȬzh3\V_7;G0Pp0Ӫ/8veƶV@IVRV@3e+% r[ڛ'?7U6{8]?YX0?3$M̬-j`c{3cw*11w/&;'4쭜\Nv. }wmnp@w)9*. Q% ][ix@jAkwZ 7'f]w9Sф`kM$G tl$V>X].'m2-pX[]xi[]iJEho +Zgx#O$25)FMA TƯr).$9(H4ާ,}|e(r"Ha2V{{UHm|ni5% H4K`H$v&ZL5a|kWmsPSkj<'k(ٝ۳tdv0 +v7:tѼ[ 4jgԀ .n2?3=׬ctOUY _(ՙ)E׉8Y,KiPs"2sq dBV.1Fa}eF][a|W,V=ټ6>t>=%fI|+VšU0U.)ﳆ&@P{ 6mE~W0:Aw ژѹ=.yw<)ЙLظz)6|aIM>h'R/64b"hH6ghސJ¢?%:&DBO+E/n!LF䲛 d蕙;S;SQ@EscEgY@ƻ/8_=FN i +mzD ͢՞jiGh{[*ګK Rw : q~%r@UOU;[J)Ւf}'"Jt_,vfHq;Y(Xf8<]BHM9Gcra_;ƠyvwE{0RJVĚxJ9瘙?&2 +I^K?fȂl[IEwkX^7Ӥ({d▧zK:pm'`A_I|Q0ZO1Km48?I励6{__41:OЖ ;6Up̢Qn/j F=X3@oclYX@d OSs*z'9]AmxßVAb;ږl80:0tM8&#o6px9"/i'(t)O56=ixKX/ErF("e U,Duf֔;ȝ +viN᥁ -aO~ Lt݊gFGSQqZe@zco*zRpQC\[Xi9!p)LTpƈJtpМ +*. YJaB'0QL}BE8lwˆ(?A׏iQqaҍ!rY!|D(8RS;#к>6%fAVOS1Oly@8;o򼱬_G6"fKE1h*-g. u$db|xdPm̈́Z#bzqx{&+qwֵ71\m@~IdmPtbb|fHnV`8܎=?ٲA^*H/oZo,NRB$->'e|?%XSߝΑ!5j΅WjE~Ke =Wav?%vnbG"C`#ţt*#үvdYmYA_A + elc@Ռ: +HwXW29?Qn8~PIT4gl۟S6qT^r|EX!qmy2y5&kA[m*<>/`= J&'NmhdL|ȴy;n`a-I/@iLD41/4@On, +'NyJeQGk$~€{6hm !D4msO Mn 9e^r}xɤAJ&JL˂>"8sAޔ_hH[)@9mʉN?! $^`5l)IUgydc:ƚI6ga!h%1J/ߣ-ѹéc6fG6ΑĠ`8@$|NFMy;B!VN~R09; +gMh~Ѕ"$Yi|0U㩩*}Ciѣc5ozHgC.[Z;W90a9rĽ-`PSgWW'~]WM $WX}Fѡ@}=O>NT۩5 C+\XUY){zv3Է^hNMR~U^~ljI?VH( *ZPikI:84ـ'̀;Żv[5z]%5rnYĪD\KPɱg&w:R+O:^GvCauHg2!6p'[JtZAf+jZN$9:nH]뎗 .}BFfp_M$Ù[qU7lNaп]T8_zl4K#Qq @-ѐFG)qpџ +x_"eceFT糜T.Oى9UsfEۦa!/JU]?OvpDd's ӗ^=^th  +n1:1. +Em}[> Չ_|1>%9y~<9!- +{VC'cR&u<+ijCl9K<1E@?W9ITvK*;MLjMw)ۃBep9GZٮ;!QoZąkFW‚o8_ܚa6U(m@Ұ9ŜlU'P@qOy Z8yCeP~a$~‹]i ciQ~QS YqeFTUY&+c'˜1?%*ER~;j<+ "Z'(?T$ f фs$ZSFΥRÇ5iOFakg rL 0i/rswyQVe0&V:nU},m<%0O6> èh+IE≼jygwz܄Ҳ5QԆw珱6{}fH?ݣ~L 6eS?Njw_Vsy`(2Enٸ8"7U0}i|m|=64u:"e>fw%Yd&`/VlHaU)׳BWM!i?i,~ ?' -M uj]R g` +~| {[${;%^V?ۭb\Y֋ +𷃉] 5 0*x~njcsYrF]tvVdxx2nTZc)3%NF ʽj٠ㆪ<4HO|X,W97 +[ ÒmA4A![@9O :|I6@Yz@&_)/ 9m>bʀ0%=!Gni/qX6a9֮D"b",:k#g~Ol˪3ÓLK%ťF!BWƤ!;&$'1:q_oC\擑W':Bl&B5HߣQo9ovȎ2s +꿆I뻡:Ek26vgx,}U5fkl^^RX; gk} C7#it&5 أ;Z}8)7y\UvmJǎ@>Xcsg8)$(L3an˲WG 7k_ }ȁR-Lj] `JK~Y:mDm\JFd1{r$Vʶ;%H8I1[1bN#'| )L,"'U#eg%+9iOrC+RJX ݻ$6!D6П"-x6H@?ϯ"TrYS|x.{<l6|,~Ȫ y`9XHВw8I8h'@IMF\˓﯐Djwr"|g` +S[D%~^u"hxCf3Fr'*/K"r|Ghto {{ѫXB9dkšw\ @m6bns-Ffyi V5ך? x]I! +m$vYU=7m܎6_<9%R8lJ$}k`T=bL\"A/\ɍ^tXņB8j̄F.Fl[ˏU_lR;C2=SBn - ⑦6p "m:=5O9s ԫB͘T;Fȓ'OC}t CzW,iKNOgp/']R:6Snt^M0x.}aGaosԿʅ|Ů\Ȓ󌓗7@_I|(k= +z0)2qόs&ĻjCjMD&j e :kF>d4}B\ih"0{UxۈBC a 7m<)" ` +P$ov-Br^c@`'\Ju(X@V}G,F{پH~b&)ͻf)os1 ++$*vCw?y$g=qx';TD[Q+屬ΠP5lSMV8Gҗ] +!944\[l[d.E  3=p:r~&ByuUoa-:ay4Sո^X,G*OpqS)fV mH: +VDE&`Bu.7*q̺l94Eûk<1TPlӕwFR=I?TаXpP܁HA d 4U@F$%=Laxnq1k^XA +lHDUߑ"C+w@!z4BD*UO_<܆hS?03fH IňnNt.< QZ63~, $MR-v v0cZ{8dv"4Pp)m7# ¬UGa*[4~k?c_|!={H, ?37uXkfrpFTt~|)NBYy KgAr" $:a"axRL)+@kfu<ހr!kAKmZ%ie5qZEyŀ}Y{u&Рg'ї?~ x~i֪;&,iLg̤af&sۃF[yӤ O_igăE:[jlahn t[,=e'R7Ů 3LQ.|˂62 se_M֌1u8Al!<#$)p]t`8e՗\֬h>d*B}%XB{Eu-c$Ȼm1u*G3?j[l]?lv Ҙ (F2)2w:5JKCJQ2?7FA:- 2"?p -`HS*t}q:̽u-Sťtަh"ĮT>>orȄ2%GDކ_֍Q +7Bsd]hL|QJܿҔlY܁%ŭJ}DTk@oGo7~Kf1bf`7s=PaX>Wkl!$>KıezJ$X?u͋řg(#&NƮ1pSN-(rrrݼQ|<iFjcXV׬9P&{mki +{ͼ?8tV[*(?rNY`CDo V*0@nD<_SH7L01j#uѢi(F/&p5i?l!κx14nisw/H\WRs(fډ@|ň,9x}<,NX:B1Ug}Oo֚r$m^y6RD(ĢeK5~rt=\R<0J謁Xg)%K$ߨž)t'ޘeW_1'jQO"M%o2 XI'ÄU uq'q[QO6V+sΣÈ/S{o>+ګaԚ tMB'饰oLso=3LiHfm8?Rp7R.d##\O j4frƇ=vb,a.5l!Kiw'nƵj:`DnDgnEش]Q-$)au(B 5f8> J:o*'3K$)3VzHL +glw +F!EW*eʣD /Nt)u$|Vvu N=d7ochЍ(6O[א뀪*yD;"N6LO'nFO6zƟxZ6xgGդ_h4Dc\T_ mnR=A~֙y"{oBhe(t2f,/?@cd!N? +endstream +endobj +82 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/JCUYCF+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 81 0 R +/Flags 68 +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D94Mɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\3w +endstream +endobj +345 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/NSRWIF+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 344 0 R +/Flags 68 +>> +endobj +344 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 350 0 R +>> +endobj +350 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 45 0 R 52 0 R] +/Parent 349 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 351 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 351 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 351 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 352 0 R +>> +endobj +352 0 obj +<< +/Type/Pages +/Count 2 +/Kids[79 0 R 86 0 R] +/Parent 351 0 R +>> +endobj +351 0 obj +<< +/Type/Pages +/Count 5 +/Kids[67 0 R 71 0 R 75 0 R 352 0 R] +/Parent 349 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 353 0 R +>> +endobj +353 0 obj +<< +/Type/Pages +/Count 4 +/Kids[90 0 R 94 0 R 98 0 R 102 0 R] +/Parent 349 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 354 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 354 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 354 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 355 0 R +>> +endobj +355 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 354 0 R +>> +endobj +354 0 obj +<< +/Type/Pages +/Count 5 +/Kids[106 0 R 110 0 R 114 0 R 355 0 R] +/Parent 349 0 R +>> +endobj +349 0 obj +<< +/Type/Pages +/Count 18 +/Kids[350 0 R 351 0 R 353 0 R 354 0 R] +/Parent 3 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 357 0 R +>> +endobj +357 0 obj +<< +/Type/Pages +/Count 4 +/Kids[126 0 R 130 0 R 134 0 R 138 0 R] +/Parent 356 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 358 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 358 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 358 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 359 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 359 0 R +>> +endobj +359 0 obj +<< +/Type/Pages +/Count 2 +/Kids[154 0 R 158 0 R] +/Parent 358 0 R +>> +endobj +358 0 obj +<< +/Type/Pages +/Count 5 +/Kids[142 0 R 146 0 R 150 0 R 359 0 R] +/Parent 356 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 360 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 360 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 360 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 360 0 R +>> +endobj +360 0 obj +<< +/Type/Pages +/Count 4 +/Kids[162 0 R 166 0 R 170 0 R 174 0 R] +/Parent 356 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 361 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 361 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 361 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 362 0 R +>> +endobj +362 0 obj +<< +/Type/Pages +/Count 2 +/Kids[190 0 R 194 0 R] +/Parent 361 0 R +>> +endobj +361 0 obj +<< +/Type/Pages +/Count 5 +/Kids[178 0 R 182 0 R 186 0 R 362 0 R] +/Parent 356 0 R +>> +endobj +356 0 obj +<< +/Type/Pages +/Count 18 +/Kids[357 0 R 358 0 R 360 0 R 361 0 R] +/Parent 3 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 364 0 R +>> +endobj +364 0 obj +<< +/Type/Pages +/Count 4 +/Kids[198 0 R 202 0 R 206 0 R 210 0 R] +/Parent 363 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 365 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 366 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 366 0 R +>> +endobj +366 0 obj +<< +/Type/Pages +/Count 2 +/Kids[226 0 R 230 0 R] +/Parent 365 0 R +>> +endobj +365 0 obj +<< +/Type/Pages +/Count 5 +/Kids[214 0 R 218 0 R 222 0 R 366 0 R] +/Parent 363 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 367 0 R +>> +endobj +367 0 obj +<< +/Type/Pages +/Count 4 +/Kids[234 0 R 238 0 R 242 0 R 246 0 R] +/Parent 363 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 368 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 368 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 368 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 369 0 R +>> +endobj +369 0 obj +<< +/Type/Pages +/Count 2 +/Kids[262 0 R 266 0 R] +/Parent 368 0 R +>> +endobj +368 0 obj +<< +/Type/Pages +/Count 5 +/Kids[250 0 R 254 0 R 258 0 R 369 0 R] +/Parent 363 0 R +>> +endobj +363 0 obj +<< +/Type/Pages +/Count 18 +/Kids[364 0 R 365 0 R 367 0 R 368 0 R] +/Parent 3 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 371 0 R +>> +endobj +371 0 obj +<< +/Type/Pages +/Count 4 +/Kids[270 0 R 274 0 R 278 0 R 282 0 R] +/Parent 370 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 372 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 373 0 R +>> +endobj +373 0 obj +<< +/Type/Pages +/Count 2 +/Kids[298 0 R 302 0 R] +/Parent 372 0 R +>> +endobj +372 0 obj +<< +/Type/Pages +/Count 5 +/Kids[286 0 R 290 0 R 294 0 R 373 0 R] +/Parent 370 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 312 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +314 0 obj +<< +/Type/Page +/Resources 315 0 R +/Contents[17 0 R 4 0 R 316 0 R 19 0 R] +/Parent 374 0 R +>> +endobj +318 0 obj +<< +/Type/Page +/Resources 319 0 R +/Contents[17 0 R 4 0 R 320 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +322 0 obj +<< +/Type/Page +/Resources 323 0 R +/Contents[17 0 R 4 0 R 324 0 R 19 0 R] +/Parent 375 0 R +>> +endobj +375 0 obj +<< +/Type/Pages +/Count 2 +/Kids[318 0 R 322 0 R] +/Parent 374 0 R +>> +endobj +374 0 obj +<< +/Type/Pages +/Count 5 +/Kids[306 0 R 310 0 R 314 0 R 375 0 R] +/Parent 370 0 R +>> +endobj +326 0 obj +<< +/Type/Page +/Resources 327 0 R +/Contents[17 0 R 4 0 R 328 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +330 0 obj +<< +/Type/Page +/Resources 331 0 R +/Contents[17 0 R 4 0 R 332 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +334 0 obj +<< +/Type/Page +/Resources 335 0 R +/Contents[17 0 R 4 0 R 336 0 R 19 0 R] +/Parent 376 0 R +>> +endobj +338 0 obj +<< +/Type/Page +/Resources 339 0 R +/Contents[17 0 R 4 0 R 340 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +342 0 obj +<< +/Type/Page +/Resources 343 0 R +/Contents[17 0 R 4 0 R 347 0 R 19 0 R] +/Parent 377 0 R +>> +endobj +377 0 obj +<< +/Type/Pages +/Count 2 +/Kids[338 0 R 342 0 R] +/Parent 376 0 R +>> +endobj +376 0 obj +<< +/Type/Pages +/Count 5 +/Kids[326 0 R 330 0 R 334 0 R 377 0 R] +/Parent 370 0 R +>> +endobj +370 0 obj +<< +/Type/Pages +/Count 19 +/Kids[371 0 R 372 0 R 374 0 R 376 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 73 +/Kids[349 0 R 356 0 R 363 0 R 370 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +378 0 obj +<< +>> +endobj +379 0 obj +null +endobj +380 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 378 0 R +/Threads 379 0 R +/Names 380 0 R +>> +endobj +xref +0 381 +0000000000 65535 f +0000155731 00000 n +0000166807 00000 n +0000166452 00000 n +0000166657 00000 n +0000155895 00000 n +0000004048 00000 n +0000000009 00000 n +0000082832 00000 n +0000082648 00000 n +0000000913 00000 n +0000087710 00000 n +0000087524 00000 n +0000001906 00000 n +0000093293 00000 n +0000093105 00000 n +0000002823 00000 n +0000166557 00000 n +0000003740 00000 n +0000166607 00000 n +0000003993 00000 n +0000155998 00000 n +0000013367 00000 n +0000103786 00000 n +0000103597 00000 n +0000004109 00000 n +0000109057 00000 n +0000108867 00000 n +0000005055 00000 n +0000114360 00000 n +0000114171 00000 n +0000005991 00000 n +0000006967 00000 n +0000118272 00000 n +0000118078 00000 n +0000007921 00000 n +0000122182 00000 n +0000121996 00000 n +0000008867 00000 n +0000009831 00000 n +0000124970 00000 n +0000124775 00000 n +0000011447 00000 n +0000012398 00000 n +0000013268 00000 n +0000156103 00000 n +0000015460 00000 n +0000126875 00000 n +0000126684 00000 n +0000013429 00000 n +0000014424 00000 n +0000015360 00000 n +0000156208 00000 n +0000020874 00000 n +0000129749 00000 n +0000129555 00000 n +0000015522 00000 n +0000016493 00000 n +0000133759 00000 n +0000133564 00000 n +0000017400 00000 n +0000018382 00000 n +0000136416 00000 n +0000136230 00000 n +0000019359 00000 n +0000020104 00000 n +0000020750 00000 n +0000156407 00000 n +0000021785 00000 n +0000020936 00000 n +0000021650 00000 n +0000156512 00000 n +0000022839 00000 n +0000021847 00000 n +0000022704 00000 n +0000156617 00000 n +0000024085 00000 n +0000022901 00000 n +0000023950 00000 n +0000156722 00000 n +0000026115 00000 n +0000148604 00000 n +0000148410 00000 n +0000024147 00000 n +0000025157 00000 n +0000025956 00000 n +0000156827 00000 n +0000027282 00000 n +0000026177 00000 n +0000027135 00000 n +0000157109 00000 n +0000028330 00000 n +0000027344 00000 n +0000028195 00000 n +0000157214 00000 n +0000029405 00000 n +0000028392 00000 n +0000029270 00000 n +0000157319 00000 n +0000030115 00000 n +0000029467 00000 n +0000030069 00000 n +0000157425 00000 n +0000030519 00000 n +0000030178 00000 n +0000030473 00000 n +0000157629 00000 n +0000031593 00000 n +0000030583 00000 n +0000031457 00000 n +0000157737 00000 n +0000031909 00000 n +0000031657 00000 n +0000031863 00000 n +0000157845 00000 n +0000033029 00000 n +0000031973 00000 n +0000032904 00000 n +0000157953 00000 n +0000033767 00000 n +0000033093 00000 n +0000033721 00000 n +0000158061 00000 n +0000034381 00000 n +0000033831 00000 n +0000034335 00000 n +0000158449 00000 n +0000035443 00000 n +0000034445 00000 n +0000035307 00000 n +0000158557 00000 n +0000036143 00000 n +0000035507 00000 n +0000036097 00000 n +0000158665 00000 n +0000037206 00000 n +0000036207 00000 n +0000037070 00000 n +0000158773 00000 n +0000037909 00000 n +0000037270 00000 n +0000037863 00000 n +0000158980 00000 n +0000038892 00000 n +0000037973 00000 n +0000038767 00000 n +0000159088 00000 n +0000039699 00000 n +0000038956 00000 n +0000039653 00000 n +0000159196 00000 n +0000040414 00000 n +0000039763 00000 n +0000040368 00000 n +0000159304 00000 n +0000041421 00000 n +0000040478 00000 n +0000041296 00000 n +0000159412 00000 n +0000042222 00000 n +0000041485 00000 n +0000042176 00000 n +0000159702 00000 n +0000042939 00000 n +0000042286 00000 n +0000042893 00000 n +0000159810 00000 n +0000044085 00000 n +0000043003 00000 n +0000043949 00000 n +0000159918 00000 n +0000044824 00000 n +0000044149 00000 n +0000044778 00000 n +0000160026 00000 n +0000045635 00000 n +0000044888 00000 n +0000045589 00000 n +0000160233 00000 n +0000046453 00000 n +0000045699 00000 n +0000046407 00000 n +0000160341 00000 n +0000046910 00000 n +0000046517 00000 n +0000046864 00000 n +0000160449 00000 n +0000048049 00000 n +0000046974 00000 n +0000047913 00000 n +0000160557 00000 n +0000048803 00000 n +0000048113 00000 n +0000048757 00000 n +0000160665 00000 n +0000049603 00000 n +0000048867 00000 n +0000049557 00000 n +0000161053 00000 n +0000050420 00000 n +0000049667 00000 n +0000050374 00000 n +0000161161 00000 n +0000050882 00000 n +0000050484 00000 n +0000050836 00000 n +0000161269 00000 n +0000052080 00000 n +0000050946 00000 n +0000051944 00000 n +0000161377 00000 n +0000052662 00000 n +0000052144 00000 n +0000052616 00000 n +0000161584 00000 n +0000053876 00000 n +0000052726 00000 n +0000053740 00000 n +0000161692 00000 n +0000054510 00000 n +0000053940 00000 n +0000054464 00000 n +0000161800 00000 n +0000055992 00000 n +0000054574 00000 n +0000055832 00000 n +0000161908 00000 n +0000056695 00000 n +0000056056 00000 n +0000056649 00000 n +0000162016 00000 n +0000057500 00000 n +0000056759 00000 n +0000057454 00000 n +0000162306 00000 n +0000058274 00000 n +0000057564 00000 n +0000058228 00000 n +0000162414 00000 n +0000058853 00000 n +0000058338 00000 n +0000058807 00000 n +0000162522 00000 n +0000060141 00000 n +0000058917 00000 n +0000060005 00000 n +0000162630 00000 n +0000060867 00000 n +0000060205 00000 n +0000060821 00000 n +0000162837 00000 n +0000061658 00000 n +0000060931 00000 n +0000061612 00000 n +0000162945 00000 n +0000062455 00000 n +0000061722 00000 n +0000062409 00000 n +0000163053 00000 n +0000063214 00000 n +0000062519 00000 n +0000063168 00000 n +0000163161 00000 n +0000064004 00000 n +0000063278 00000 n +0000063958 00000 n +0000163269 00000 n +0000064801 00000 n +0000064068 00000 n +0000064755 00000 n +0000163657 00000 n +0000065608 00000 n +0000064865 00000 n +0000065562 00000 n +0000163765 00000 n +0000066388 00000 n +0000065672 00000 n +0000066342 00000 n +0000163873 00000 n +0000067216 00000 n +0000066452 00000 n +0000067170 00000 n +0000163981 00000 n +0000067938 00000 n +0000067280 00000 n +0000067892 00000 n +0000164188 00000 n +0000069436 00000 n +0000068002 00000 n +0000069288 00000 n +0000164296 00000 n +0000070202 00000 n +0000069500 00000 n +0000070156 00000 n +0000164404 00000 n +0000070964 00000 n +0000070266 00000 n +0000070918 00000 n +0000164512 00000 n +0000071693 00000 n +0000071028 00000 n +0000071647 00000 n +0000164620 00000 n +0000072441 00000 n +0000071757 00000 n +0000072395 00000 n +0000164910 00000 n +0000073244 00000 n +0000072505 00000 n +0000073198 00000 n +0000165018 00000 n +0000073693 00000 n +0000073308 00000 n +0000073647 00000 n +0000165126 00000 n +0000075195 00000 n +0000073757 00000 n +0000075047 00000 n +0000165234 00000 n +0000075889 00000 n +0000075259 00000 n +0000075843 00000 n +0000165342 00000 n +0000076637 00000 n +0000075953 00000 n +0000076591 00000 n +0000165632 00000 n +0000077443 00000 n +0000076701 00000 n +0000077397 00000 n +0000165740 00000 n +0000078482 00000 n +0000077507 00000 n +0000078322 00000 n +0000165848 00000 n +0000079792 00000 n +0000078546 00000 n +0000079632 00000 n +0000165956 00000 n +0000081199 00000 n +0000079856 00000 n +0000081039 00000 n +0000166064 00000 n +0000082584 00000 n +0000150021 00000 n +0000149826 00000 n +0000081263 00000 n +0000082186 00000 n +0000082526 00000 n +0000158351 00000 n +0000156313 00000 n +0000157013 00000 n +0000156932 00000 n +0000157533 00000 n +0000158252 00000 n +0000158169 00000 n +0000160955 00000 n +0000158881 00000 n +0000159603 00000 n +0000159520 00000 n +0000160134 00000 n +0000160856 00000 n +0000160773 00000 n +0000163559 00000 n +0000161485 00000 n +0000162207 00000 n +0000162124 00000 n +0000162738 00000 n +0000163460 00000 n +0000163377 00000 n +0000166354 00000 n +0000164089 00000 n +0000164811 00000 n +0000164728 00000 n +0000165533 00000 n +0000165450 00000 n +0000166255 00000 n +0000166172 00000 n +0000166739 00000 n +0000166762 00000 n +0000166784 00000 n +trailer +<< +/Size 381 +/Root 2 0 R +/Info 1 0 R +>> +startxref +166905 +%%EOF diff --git a/src/axiom-website/CATS/schaum29.input.pamphlet b/src/axiom-website/CATS/schaum29.input.pamphlet new file mode 100644 index 0000000..9c79630 --- /dev/null +++ b/src/axiom-website/CATS/schaum29.input.pamphlet @@ -0,0 +1,1431 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum29.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.590~~~~~$\displaystyle +\int{\sinh{ax}\cosh{ax}}~dx$} +$$\int{\sinh{ax}\cosh{ax}}= +\frac{\sinh^2{ax}}{2a} +$$ +<<*>>= +)spool schaum29.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sinh(a*x)*cosh(a*x),x) +--R +--R +--R 2 2 +--R sinh(a x) + cosh(a x) +--R (1) ----------------------- +--R 4a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=sinh(a*x)^2/(2*a) +--R +--R 2 +--R sinh(a x) +--R (2) ---------- +--R 2a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R 2 2 +--R - sinh(a x) + cosh(a x) +--R (3) ------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 4 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 +dd:=sinhsqrrule cc +--R +--R 2 +--R - cosh(2a x) + 2cosh(a x) + 1 +--R (5) ------------------------------ +--R 8a +--R Type: Expression Integer +--E + +--S 6 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 7 14:590 Schaums and Axiom differ by a constant +ee:=coshsqrrule dd +--R +--R 1 +--R (7) -- +--R 4a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.591~~~~~$\displaystyle +\int{\sinh{px}\cosh{qx}}~dx$} +$$\int{\sinh{px}\cosh{qx}}= +\frac{\cosh(p+q)x}{2(p+q)}+\frac{\cosh(p-q)x}{2(p-q)} +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(sinh(p*x)*cosh(q*x),x) +--R +--R +--R - q sinh(p x)sinh(q x) + p cosh(p x)cosh(q x) +--R (1) --------------------------------------------- +--R 2 2 2 2 2 2 +--R (q - p )sinh(p x) + (- q + p )cosh(p x) +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=(cosh(p+q)*x)/(2*(p+q))+(cosh(p-q)*x)/(2*(p-q)) +--R +--R (q - p)x cosh(q + p) + (- q - p)x cosh(q - p) +--R (2) --------------------------------------------- +--R 2 2 +--R 2q - 2p +--R Type: Expression Integer +--E + +--S 10 14:591 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R - 2q sinh(p x)sinh(q x) +--R + +--R 2 +--R ((- q + p)x cosh(q + p) + (q + p)x cosh(q - p))sinh(p x) +--R + +--R 2p cosh(p x)cosh(q x) +--R + +--R 2 +--R ((q - p)x cosh(q + p) + (- q - p)x cosh(q - p))cosh(p x) +--R / +--R 2 2 2 2 2 2 +--R (2q - 2p )sinh(p x) + (- 2q + 2p )cosh(p x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.592~~~~~$\displaystyle +\int{\sinh^n{ax}\cosh{ax}}~dx$} +$$\int{\sinh^n{ax}\cosh{ax}}= +\frac{\sinh^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(sinh(a*x)^n*cosh(a*x),x) +--R +--R +--R - sinh(a x)sinh(n log(sinh(a x))) - sinh(a x)cosh(n log(sinh(a x))) +--R (1) ------------------------------------------------------------------- +--R 2 2 +--R (a n + a)sinh(a x) + (- a n - a)cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 12 +bb:=sinh(a*x)/((n+1)*a) +--R +--R sinh(a x) +--R (2) --------- +--R a n + a +--R Type: Expression Integer +--E + +--S 13 14:592 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R - sinh(a x)sinh(n log(sinh(a x))) - sinh(a x)cosh(n log(sinh(a x))) +--R + +--R 3 2 +--R - sinh(a x) + cosh(a x) sinh(a x) +--R / +--R 2 2 +--R (a n + a)sinh(a x) + (- a n - a)cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.593~~~~~$\displaystyle +\int{\cosh^n{ax}\sinh{ax}}~dx$} +$$\int{\cosh^n{ax}\sinh{ax}}= +\frac{\cosh^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 14 +aa:=integrate(cosh(a*x)^n*sinh(a*x),x) +--R +--R +--R - cosh(a x)sinh(n log(cosh(a x))) - cosh(a x)cosh(n log(cosh(a x))) +--R (1) ------------------------------------------------------------------- +--R 2 2 +--R (a n + a)sinh(a x) + (- a n - a)cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 15 +bb:=cosh(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R cosh(a x) +--R (2) -------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 16 14:593 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R - cosh(a x)sinh(n log(cosh(a x))) - cosh(a x)cosh(n log(cosh(a x))) +--R + +--R 2 2 n + 1 +--R (- sinh(a x) + cosh(a x) )cosh(a x) +--R / +--R 2 2 +--R (a n + a)sinh(a x) + (- a n - a)cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.594~~~~~$\displaystyle +\int{\sinh^2{ax}\cosh^2{ax}}~dx$} +$$\int{\sinh^2{ax}\cosh^2{ax}}= +\frac{\sinh{4ax}}{32a}-\frac{x}{8} +$$ +<<*>>= +)clear all + +--S 17 +aa:=integrate(sinh(a*x)^2*cosh(a*x)^2,x) +--R +--R +--R 3 3 +--R cosh(a x)sinh(a x) + cosh(a x) sinh(a x) - a x +--R (1) ----------------------------------------------- +--R 8a +--R Type: Union(Expression Integer,...) +--E + +--S 18 +bb:=sinh(4*a*x)/(32*a)-x/8 +--R +--R sinh(4a x) - 4a x +--R (2) ----------------- +--R 32a +--R Type: Expression Integer +--E + +--S 19 14:594 Schaums and Axiom agree +cc:=complexNormalize(aa-bb) +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.595~~~~~$\displaystyle +\int{\frac{dx}{\sinh{ax}\cosh{ax}}}$} +$$\int{\frac{1}{\sinh{ax}\cosh{ax}}}= +\frac{1}{a}\ln\tanh{ax} +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(1/(sinh(a*x)*cosh(a*x)),x) +--R +--R +--R 2cosh(a x) 2sinh(a x) +--R - log(- ---------------------) + log(- ---------------------) +--R sinh(a x) - cosh(a x) sinh(a x) - cosh(a x) +--R (1) ------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=1/a*log(tanh(a*x)) +--R +--R log(tanh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R (3) +--R 2cosh(a x) +--R - log(tanh(a x)) - log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R / +--R a +--R Type: Expression Integer +--E + +--S 23 +dd:=expandLog cc +--R +--R - log(tanh(a x)) + log(sinh(a x)) - log(cosh(a x)) +--R (4) -------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 24 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (5) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +ee:=tanhrule dd +--R +--R sinh(a x) +--R log(sinh(a x)) - log(---------) - log(cosh(a x)) +--R cosh(a x) +--R (6) ------------------------------------------------ +--R a +--R Type: Expression Integer +--E + +--S 26 14:595 Schaums and Axiom agree +ff:=expandLog ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.596~~~~~$\displaystyle +\int{\frac{dx}{\sinh^2{ax}\cosh{ax}}}$} +$$\int{\frac{1}{\sinh^2{ax}\cosh{ax}}}= +-\frac{1}{a}\tan^{-1}\sinh{ax}-\frac{{\rm csch~}{ax}}{a} +$$ +<<*>>= +)clear all + +--S 27 +aa:=integrate(1/(sinh(a*x)^2*cosh(a*x)),x) +--R +--R (1) +--R 2 2 +--R (- 2sinh(a x) - 4cosh(a x)sinh(a x) - 2cosh(a x) + 2) +--R * +--R atan(sinh(a x) + cosh(a x)) +--R + +--R - 2sinh(a x) - 2cosh(a x) +--R / +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 28 +bb:=-1/a*atan(sinh(a*x)-csch(a*x))/a +--R +--R atan(sinh(a x) - csch(a x)) +--R (2) - --------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 29 14:596 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- 2a sinh(a x) - 4a cosh(a x)sinh(a x) - 2a cosh(a x) + 2a) +--R * +--R atan(sinh(a x) + cosh(a x)) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R * +--R atan(sinh(a x) - csch(a x)) +--R + +--R - 2a sinh(a x) - 2a cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.597~~~~~$\displaystyle +\int{\frac{dx}{\sinh{ax}\cosh^2{ax}}}$} +$$\int{\frac{1}{\sinh{ax}\cosh^2{ax}}}= +\frac{{\rm sech~}{ax}}{a}+\frac{1}{a}\ln\tanh{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 30 +aa:=integrate(1/(sinh(a*x)*cosh(a*x)^2),x) +--R +--R +--R (1) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2sinh(a x) + 2cosh(a x) +--R / +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 31 +bb:=sech(a*x)/a+1/a*log(tanh((a*x)/2)) +--R +--R a x +--R log(tanh(---)) + sech(a x) +--R 2 +--R (2) -------------------------- +--R a +--R Type: Expression Integer +--E + +--S 32 +cc:=aa-bb +--R +--R (3) +--R 2 2 a x +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1)log(tanh(---)) +--R 2 +--R + +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 +--R - sech(a x)sinh(a x) + (- 2cosh(a x)sech(a x) + 2)sinh(a x) +--R + +--R 2 +--R (- cosh(a x) - 1)sech(a x) + 2cosh(a x) +--R / +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 33 +sechrule:=rule(sech(x) == 1/cosh(x)) +--R +--R 1 +--R (4) sech(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 34 +dd:=sechrule cc +--R +--R (5) +--R 2 2 3 +--R (- cosh(a x)sinh(a x) - 2cosh(a x) sinh(a x) - cosh(a x) - cosh(a x)) +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 2 3 +--R (- cosh(a x)sinh(a x) - 2cosh(a x) sinh(a x) - cosh(a x) - cosh(a x)) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 3 +--R (cosh(a x)sinh(a x) + 2cosh(a x) sinh(a x) + cosh(a x) + cosh(a x)) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R - sinh(a x) + cosh(a x) - 1 +--R / +--R 2 2 3 +--R a cosh(a x)sinh(a x) + 2a cosh(a x) sinh(a x) + a cosh(a x) + a cosh(a x) +--R Type: Expression Integer +--E + +--S 35 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (6) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 36 +ee:=tanhrule dd +--R +--R (7) +--R 2 2 3 +--R (- cosh(a x)sinh(a x) - 2cosh(a x) sinh(a x) - cosh(a x) - cosh(a x)) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 3 +--R (cosh(a x)sinh(a x) + 2cosh(a x) sinh(a x) + cosh(a x) + cosh(a x)) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 3 +--R (- cosh(a x)sinh(a x) - 2cosh(a x) sinh(a x) - cosh(a x) - cosh(a x)) +--R * +--R a x +--R sinh(---) +--R 2 +--R log(---------) +--R a x +--R cosh(---) +--R 2 +--R + +--R 2 2 +--R - sinh(a x) + cosh(a x) - 1 +--R / +--R 2 2 3 +--R a cosh(a x)sinh(a x) + 2a cosh(a x) sinh(a x) + a cosh(a x) + a cosh(a x) +--R Type: Expression Integer +--E + +--S 37 +coshcuberule:=rule(cosh(x)^3 == 1/4*cosh(3*x)-3/4*cosh(x)) +--R +--R 3 cosh(3x) - 3cosh(x) +--R (8) cosh(x) == ------------------- +--R 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 38 +ff:=coshcuberule ee +--R +--R (9) +--R 2 2 +--R - 4cosh(a x)sinh(a x) - 8cosh(a x) sinh(a x) - cosh(3a x) +--R + +--R - cosh(a x) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (4cosh(a x)sinh(a x) + 8cosh(a x) sinh(a x) + cosh(3a x) + cosh(a x)) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R - 4cosh(a x)sinh(a x) - 8cosh(a x) sinh(a x) - cosh(3a x) +--R + +--R - cosh(a x) +--R * +--R a x +--R sinh(---) +--R 2 +--R log(---------) +--R a x +--R cosh(---) +--R 2 +--R + +--R 2 2 +--R - 4sinh(a x) + 4cosh(a x) - 4 +--R / +--R 2 2 +--R 4a cosh(a x)sinh(a x) + 8a cosh(a x) sinh(a x) + a cosh(3a x) +--R + +--R a cosh(a x) +--R Type: Expression Integer +--E + +--S 39 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (10) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 40 +gg:=coshsqrrule ff +--R +--R (11) +--R 2 +--R - 4cosh(a x)sinh(a x) + (- 4cosh(2a x) - 4)sinh(a x) - cosh(3a x) +--R + +--R - cosh(a x) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R 4cosh(a x)sinh(a x) + (4cosh(2a x) + 4)sinh(a x) + cosh(3a x) +--R + +--R cosh(a x) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 +--R - 4cosh(a x)sinh(a x) + (- 4cosh(2a x) - 4)sinh(a x) - cosh(3a x) +--R + +--R - cosh(a x) +--R * +--R a x +--R sinh(---) +--R 2 +--R log(---------) +--R a x +--R cosh(---) +--R 2 +--R + +--R 2 +--R - 4sinh(a x) + 2cosh(2a x) - 2 +--R / +--R 2 +--R 4a cosh(a x)sinh(a x) + (4a cosh(2a x) + 4a)sinh(a x) + a cosh(3a x) +--R + +--R a cosh(a x) +--R Type: Expression Integer +--E + +--S 41 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (12) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 42 +hh:=sinhsqrrule gg +--R +--R (13) +--R - log(sinh(a x) + cosh(a x) + 1) + log(sinh(a x) + cosh(a x) - 1) +--R + +--R a x +--R sinh(---) +--R 2 +--R - log(---------) +--R a x +--R cosh(---) +--R 2 +--R / +--R a +--R Type: Expression Integer +--E + +--S 43 +ii:=expandLog hh +--R +--R (14) +--R - log(sinh(a x) + cosh(a x) + 1) + log(sinh(a x) + cosh(a x) - 1) +--R + +--R a x a x +--R - log(sinh(---)) + log(cosh(---)) +--R 2 2 +--R / +--R a +--R Type: Expression Integer +--E + +--S 44 14:597 Schaums and Axiom agree +jj:=complexNormalize ii +--R +--R (15) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.598~~~~~$\displaystyle +\int{\frac{dx}{\sinh^2{ax}\cosh^2{ax}}}$} +$$\int{\frac{1}{\sinh^2{ax}\cosh^2{ax}}}= +-\frac{2\coth{2ax}}{a} +$$ +<<*>>= +)clear all + +--S 45 +aa:=integrate(1/(sinh(a*x)^2*cosh(a*x)^2),x) +--R +--R +--R (1) +--R - +--R 4 +--R / +--R 4 3 2 2 +--R a sinh(a x) + 4a cosh(a x)sinh(a x) + 6a cosh(a x) sinh(a x) +--R + +--R 3 4 +--R 4a cosh(a x) sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 46 +bb:=-(2*coth(2*a*x))/a +--R +--R 2coth(2a x) +--R (2) - ----------- +--R a +--R Type: Expression Integer +--E + +--S 47 14:598 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 4 3 +--R 2coth(2a x)sinh(a x) + 8cosh(a x)coth(2a x)sinh(a x) +--R + +--R 2 2 3 +--R 12cosh(a x) coth(2a x)sinh(a x) + 8cosh(a x) coth(2a x)sinh(a x) +--R + +--R 4 +--R (2cosh(a x) - 2)coth(2a x) - 4 +--R / +--R 4 3 2 2 +--R a sinh(a x) + 4a cosh(a x)sinh(a x) + 6a cosh(a x) sinh(a x) +--R + +--R 3 4 +--R 4a cosh(a x) sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.599~~~~~$\displaystyle +\int{\frac{\sinh^2{ax}}{\cosh{ax}}}~dx$} +$$\int{\frac{\sinh^2{ax}}{\cosh{ax}}}~dx= +\frac{\sinh{ax}}{a}-\frac{1}{a}\tan^{-1}\sinh{ax} +$$ +<<*>>= +)clear all + +--S 48 +aa:=integrate(sinh(a*x)^2/cosh(a*x),x) +--R +--R +--R (1) +--R 2 +--R (- 4sinh(a x) - 4cosh(a x))atan(sinh(a x) + cosh(a x)) + sinh(a x) +--R + +--R 2 +--R 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R / +--R 2a sinh(a x) + 2a cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 49 +bb:=sinh(a*x)/a-1/a*atan(sinh(a*x)) +--R +--R - atan(sinh(a x)) + sinh(a x) +--R (2) ----------------------------- +--R a +--R Type: Expression Integer +--E + +--S 50 14:599 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R (- 4sinh(a x) - 4cosh(a x))atan(sinh(a x) + cosh(a x)) +--R + +--R 2 2 +--R (2sinh(a x) + 2cosh(a x))atan(sinh(a x)) - sinh(a x) + cosh(a x) - 1 +--R / +--R 2a sinh(a x) + 2a cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.600~~~~~$\displaystyle +\int{\frac{\cosh^2{ax}}{\sinh{ax}}}~dx$} +$$\int{\frac{\cosh^2{ax}}{\sinh{ax}}}= +\frac{\cosh{ax}}{a}+\frac{1}{a}\ln\tanh{\frac{ax}{2}} +$$ +<<*>>= +)clear all + +--S 51 +aa:=integrate(cosh(a*x)^2/sinh(a*x),x) +--R +--R +--R (1) +--R (- 2sinh(a x) - 2cosh(a x))log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (2sinh(a x) + 2cosh(a x))log(sinh(a x) + cosh(a x) - 1) + sinh(a x) +--R + +--R 2 +--R 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R / +--R 2a sinh(a x) + 2a cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 52 +bb:=cosh(a*x)/a+1/a*log(tanh((a*x)/2)) +--R +--R a x +--R log(tanh(---)) + cosh(a x) +--R 2 +--R (2) -------------------------- +--R a +--R Type: Expression Integer +--E + +--S 53 14:600 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R a x +--R (- 2sinh(a x) - 2cosh(a x))log(tanh(---)) +--R 2 +--R + +--R (- 2sinh(a x) - 2cosh(a x))log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (2sinh(a x) + 2cosh(a x))log(sinh(a x) + cosh(a x) - 1) + sinh(a x) +--R + +--R 2 +--R - cosh(a x) + 1 +--R / +--R 2a sinh(a x) + 2a cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.601~~~~~$\displaystyle +\int{\frac{dx}{\cosh{ax}(1+\sinh{ax})}}$} +$$\int{\frac{1}{\cosh{ax}(1+\sinh{ax})}}= +\frac{1}{2a}\ln\left(\frac{1+\sinh{ax}}{\cosh{ax}}\right) ++\frac{1}{a}\tan^{-1}{e^{ax}} +$$ +<<*>>= +)clear all + +--S 54 +aa:=integrate(1/(cosh(a*x)*(1+sinh(a*x))),x) +--R +--R +--R (1) +--R 2cosh(a x) - 2sinh(a x) - 2 +--R - log(- ---------------------) + log(---------------------) +--R sinh(a x) - cosh(a x) sinh(a x) - cosh(a x) +--R + +--R 2atan(sinh(a x) + cosh(a x)) +--R / +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 55 +bb:=1/(2*a)*log((1+sinh(a*x))/cosh(a*x))+1/a*atan(%e^(a*x)) +--R +--R sinh(a x) + 1 a x +--R log(-------------) + 2atan(%e ) +--R cosh(a x) +--R (2) --------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 56 +cc:=aa-bb +--R +--R (3) +--R sinh(a x) + 1 2cosh(a x) +--R - log(-------------) - log(- ---------------------) +--R cosh(a x) sinh(a x) - cosh(a x) +--R + +--R - 2sinh(a x) - 2 a x +--R log(---------------------) + 2atan(sinh(a x) + cosh(a x)) - 2atan(%e ) +--R sinh(a x) - cosh(a x) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 57 +dd:=expandLog cc +--R +--R a x +--R atan(sinh(a x) + cosh(a x)) - atan(%e ) +--R (4) ----------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 58 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (5) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 59 +ee:=atanrule dd +--R +--R a x +--R - %e + %i - sinh(a x) - cosh(a x) + %i +--R %i log(------------) - %i log(----------------------------) +--R a x sinh(a x) + cosh(a x) + %i +--R %e + %i +--R (6) ----------------------------------------------------------- +--R 2a +--R Type: Expression Complex Integer +--E + +--S 60 +ff:=expandLog ee +--R +--R (7) +--R %i log(sinh(a x) + cosh(a x) + %i) - %i log(sinh(a x) + cosh(a x) - %i) +--R + +--R a x a x +--R - %i log(%e + %i) + %i log(%e - %i) +--R / +--R 2a +--R Type: Expression Complex Integer +--E + +--S 61 14:601 Schaums and Axiom agree +gg:=complexNormalize ff +--R +--R (8) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.602~~~~~$\displaystyle +\int{\frac{dx}{\sinh{ax}(\cosh{ax}+1)}}$} +$$\int{\frac{1}{\sinh{ax}(\cosh{ax}+1)}}= +\frac{1}{2a}\ln\tanh\frac{ax}{2}+\frac{1}{2a(\cosh{ax}+1)} +$$ +<<*>>= +)clear all + +--S 62 +aa:=integrate(1/(sinh(a*x)*(cosh(a*x)+1)),x) +--R +--R +--R (1) +--R 2 2 +--R - sinh(a x) + (- 2cosh(a x) - 2)sinh(a x) - cosh(a x) - 2cosh(a x) +--R + +--R - 1 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (sinh(a x) + (2cosh(a x) + 2)sinh(a x) + cosh(a x) + 2cosh(a x) + 1) +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2sinh(a x) + 2cosh(a x) +--R / +--R 2 2 +--R 2a sinh(a x) + (4a cosh(a x) + 4a)sinh(a x) + 2a cosh(a x) +--R + +--R 4a cosh(a x) + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 63 +bb:=1/(2*a)*log(tanh((a*x)/2))+1/(2*a*(cosh(a*x)+1)) +--R +--R a x +--R (cosh(a x) + 1)log(tanh(---)) + 1 +--R 2 +--R (2) --------------------------------- +--R 2a cosh(a x) + 2a +--R Type: Expression Integer +--E + +--S 64 +cc:=aa-bb +--R +--R (3) +--R 2 +--R (- cosh(a x) - 1)sinh(a x) +--R + +--R 2 3 2 +--R (- 2cosh(a x) - 4cosh(a x) - 2)sinh(a x) - cosh(a x) - 3cosh(a x) +--R + +--R - 3cosh(a x) - 1 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 +--R (- cosh(a x) - 1)sinh(a x) +--R + +--R 2 3 2 +--R (- 2cosh(a x) - 4cosh(a x) - 2)sinh(a x) - cosh(a x) - 3cosh(a x) +--R + +--R - 3cosh(a x) - 1 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (cosh(a x) + 1)sinh(a x) + (2cosh(a x) + 4cosh(a x) + 2)sinh(a x) +--R + +--R 3 2 +--R cosh(a x) + 3cosh(a x) + 3cosh(a x) + 1 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R - sinh(a x) + cosh(a x) - 1 +--R / +--R 2 +--R (2a cosh(a x) + 2a)sinh(a x) +--R + +--R 2 3 +--R (4a cosh(a x) + 8a cosh(a x) + 4a)sinh(a x) + 2a cosh(a x) +--R + +--R 2 +--R 6a cosh(a x) + 6a cosh(a x) + 2a +--R Type: Expression Integer +--E + +--S 65 +coshcuberule:=rule(cosh(x)^3 == 1/4*cosh(3*x)-3/4*cosh(x)) +--R +--R 3 cosh(3x) - 3cosh(x) +--R (4) cosh(x) == ------------------- +--R 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 66 +dd:=coshcuberule cc +--R +--R (5) +--R 2 +--R (- 4cosh(a x) - 4)sinh(a x) +--R + +--R 2 +--R (- 8cosh(a x) - 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R - 12cosh(a x) - 9cosh(a x) - 4 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 +--R (- 4cosh(a x) - 4)sinh(a x) +--R + +--R 2 +--R (- 8cosh(a x) - 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R - 12cosh(a x) - 9cosh(a x) - 4 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R (4cosh(a x) + 4)sinh(a x) + (8cosh(a x) + 16cosh(a x) + 8)sinh(a x) +--R + +--R 2 +--R cosh(3a x) + 12cosh(a x) + 9cosh(a x) + 4 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R - 4sinh(a x) + 4cosh(a x) - 4 +--R / +--R 2 +--R (8a cosh(a x) + 8a)sinh(a x) +--R + +--R 2 +--R (16a cosh(a x) + 32a cosh(a x) + 16a)sinh(a x) + 2a cosh(3a x) +--R + +--R 2 +--R 24a cosh(a x) + 18a cosh(a x) + 8a +--R Type: Expression Integer +--E + +--S 67 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (6) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 68 +ee:=sinhsqrrule dd +--R +--R (7) +--R 2 +--R (- 8cosh(a x) - 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R (- 2cosh(a x) - 2)cosh(2a x) - 12cosh(a x) - 7cosh(a x) - 2 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 +--R (- 8cosh(a x) - 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R (- 2cosh(a x) - 2)cosh(2a x) - 12cosh(a x) - 7cosh(a x) - 2 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (8cosh(a x) + 16cosh(a x) + 8)sinh(a x) + cosh(3a x) +--R + +--R 2 +--R (2cosh(a x) + 2)cosh(2a x) + 12cosh(a x) + 7cosh(a x) + 2 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 +--R - 2cosh(2a x) + 4cosh(a x) - 2 +--R / +--R 2 +--R (16a cosh(a x) + 32a cosh(a x) + 16a)sinh(a x) + 2a cosh(3a x) +--R + +--R 2 +--R (4a cosh(a x) + 4a)cosh(2a x) + 24a cosh(a x) + 14a cosh(a x) + 4a +--R Type: Expression Integer +--E + +--S 69 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (8) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 70 +ff:=coshsqrrule ee +--R +--R (9) +--R a x +--R - log(tanh(---)) - log(sinh(a x) + cosh(a x) + 1) +--R 2 +--R + +--R log(sinh(a x) + cosh(a x) - 1) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 71 14:602 Schaums and Axiom agree +gg:=complexNormalize ff +--R +--R (10) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.603~~~~~$\displaystyle +\int{\frac{dx}{\sinh{ax}(\cosh{ax}-1)}}$} +$$\int{\frac{1}{\sinh{ax}(\cosh{ax}-1)}}= +-\frac{1}{2a}\ln\tanh\frac{ax}{2}-\frac{1}{2a(cosh{ax}-1)} +$$ +<<*>>= +)clear all + +--S 72 +aa:=integrate(1/(sinh(a*x)*(cosh(a*x)-1)),x) +--R +--R +--R (1) +--R 2 2 +--R (sinh(a x) + (2cosh(a x) - 2)sinh(a x) + cosh(a x) - 2cosh(a x) + 1) +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 2 +--R - sinh(a x) + (- 2cosh(a x) + 2)sinh(a x) - cosh(a x) + 2cosh(a x) +--R + +--R - 1 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R - 2sinh(a x) - 2cosh(a x) +--R / +--R 2 2 +--R 2a sinh(a x) + (4a cosh(a x) - 4a)sinh(a x) + 2a cosh(a x) +--R + +--R - 4a cosh(a x) + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 73 +bb:=-1/(2*a)*log(tanh((a*x)/2))-1/(2*a*(cosh(a*x)-1)) +--R +--R a x +--R (- cosh(a x) + 1)log(tanh(---)) - 1 +--R 2 +--R (2) ----------------------------------- +--R 2a cosh(a x) - 2a +--R Type: Expression Integer +--E + +--S 74 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (cosh(a x) - 1)sinh(a x) + (2cosh(a x) - 4cosh(a x) + 2)sinh(a x) +--R + +--R 3 2 +--R cosh(a x) - 3cosh(a x) + 3cosh(a x) - 1 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 2 +--R (cosh(a x) - 1)sinh(a x) + (2cosh(a x) - 4cosh(a x) + 2)sinh(a x) +--R + +--R 3 2 +--R cosh(a x) - 3cosh(a x) + 3cosh(a x) - 1 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (- cosh(a x) + 1)sinh(a x) +--R + +--R 2 3 2 +--R (- 2cosh(a x) + 4cosh(a x) - 2)sinh(a x) - cosh(a x) + 3cosh(a x) +--R + +--R - 3cosh(a x) + 1 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R sinh(a x) - cosh(a x) + 1 +--R / +--R 2 +--R (2a cosh(a x) - 2a)sinh(a x) +--R + +--R 2 3 +--R (4a cosh(a x) - 8a cosh(a x) + 4a)sinh(a x) + 2a cosh(a x) +--R + +--R 2 +--R - 6a cosh(a x) + 6a cosh(a x) - 2a +--R Type: Expression Integer +--E + +--S 75 +coshcuberule:=rule(cosh(x)^3 == 1/4*cosh(3*x)-3/4*cosh(x)) +--R +--R 3 cosh(3x) - 3cosh(x) +--R (4) cosh(x) == ------------------- +--R 4 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 76 +dd:=coshcuberule cc +--R +--R (5) +--R 2 2 +--R (4cosh(a x) - 4)sinh(a x) + (8cosh(a x) - 16cosh(a x) + 8)sinh(a x) +--R + +--R 2 +--R cosh(3a x) - 12cosh(a x) + 9cosh(a x) - 4 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 2 +--R (4cosh(a x) - 4)sinh(a x) + (8cosh(a x) - 16cosh(a x) + 8)sinh(a x) +--R + +--R 2 +--R cosh(3a x) - 12cosh(a x) + 9cosh(a x) - 4 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (- 4cosh(a x) + 4)sinh(a x) +--R + +--R 2 +--R (- 8cosh(a x) + 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R 12cosh(a x) - 9cosh(a x) + 4 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 2 +--R 4sinh(a x) - 4cosh(a x) + 4 +--R / +--R 2 +--R (8a cosh(a x) - 8a)sinh(a x) +--R + +--R 2 +--R (16a cosh(a x) - 32a cosh(a x) + 16a)sinh(a x) + 2a cosh(3a x) +--R + +--R 2 +--R - 24a cosh(a x) + 18a cosh(a x) - 8a +--R Type: Expression Integer +--E + +--S 77 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (6) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 78 +ee:=sinhsqrrule dd +--R +--R (7) +--R 2 +--R (8cosh(a x) - 16cosh(a x) + 8)sinh(a x) + cosh(3a x) +--R + +--R 2 +--R (2cosh(a x) - 2)cosh(2a x) - 12cosh(a x) + 7cosh(a x) - 2 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 2 +--R (8cosh(a x) - 16cosh(a x) + 8)sinh(a x) + cosh(3a x) +--R + +--R 2 +--R (2cosh(a x) - 2)cosh(2a x) - 12cosh(a x) + 7cosh(a x) - 2 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 2 +--R (- 8cosh(a x) + 16cosh(a x) - 8)sinh(a x) - cosh(3a x) +--R + +--R 2 +--R (- 2cosh(a x) + 2)cosh(2a x) + 12cosh(a x) - 7cosh(a x) + 2 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 2 +--R 2cosh(2a x) - 4cosh(a x) + 2 +--R / +--R 2 +--R (16a cosh(a x) - 32a cosh(a x) + 16a)sinh(a x) + 2a cosh(3a x) +--R + +--R 2 +--R (4a cosh(a x) - 4a)cosh(2a x) - 24a cosh(a x) + 14a cosh(a x) - 4a +--R Type: Expression Integer +--E + +--S 79 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (8) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 80 +ff:=coshsqrrule ee +--R +--R (9) +--R a x +--R log(tanh(---)) + log(sinh(a x) + cosh(a x) + 1) +--R 2 +--R + +--R - log(sinh(a x) + cosh(a x) - 1) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 81 14:603 Schaums and Axiom agree +gg:=complexNormalize ff +--R +--R (10) 0 +--R Type: Expression Integer +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp89-90 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum29.input.pdf b/src/axiom-website/CATS/schaum29.input.pdf new file mode 100644 index 0000000..6bff5fd --- /dev/null +++ b/src/axiom-website/CATS/schaum29.input.pdf @@ -0,0 +1,2801 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/BPNPKR+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/MFIMKF+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/DNKIKV+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂G`BW82$ +][.-$e,-dRD b.RV(Ҡ$FLV%6n6J +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/JZFSYN+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/ZTXZWV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/RZMFRX+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/WDEHSO+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/OXDYHN+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +41 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/TRPALP+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +42 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +45 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/QKINME+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 848 +>> +stream +xڽKo1 |wƍ<9(WD-T$ql;nd⟝* Zolުsupݫۛ=ϗ_ޝ[!4A X,q_D z!+ڨ+kZ$ ֕>T #Utw?nWF3`H?OD5n24Xfh~Fj3N`bjArF;kav+-]5g9y5muP/=@r\;+DW#/I ToF/cvϫfiOK5 jٰ<`ЎH6=mvK:xG׼P %&?]:J8K- =! ڌ@%-aRtݑmY?F=K ׏ݹTs.l t +.)Z!ro._ +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/IFEXKV+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/UJAASU+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/OGTUGB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 684 +>> +stream +xڵU]o0}߯c`;F˴v7K[$J WG[& sϹr%>wٍ@L.IFTTDۈM0cGnnPŧٍDhi)02vo*j Gb*(We5$[6JD?jD+g"LjU D@3 R[=lNTN-I1$❂4 H$-%aӺ]/L# .#X'ceLnuJ[#(abF‡w4F'CVXL50jDiOA_g E%bs2s9fjW MCWzw.j}**(.0]n_uXCզ4D{w0WYt}^k,ʧl2̷4mJ (mEۭM4z'B]Ue;g|d +-~v]n̳ۛh-WBkrefYt SYaFF]U sWGH'V4ryq'^8Ȳ2GM$L/'E`~M1Oos^4 ձ_*i3J.nĿ^&\hZ<"+ +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 52 0 R +/F3 16 0 R +/F7 35 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 431 +>> +stream +xڽTO0W؁mF0zD,D}ݘB1&.}} QR4Gqΐy(pRU ]%Px 9 %d*(.l1Z"<"˜4ky0y뤷Q򖧛d}I&.$$n'E2}óNTTF3ƱN q,^.qw[Qt`k)1uW#>v7%͚#DO~&ndqsՅkpSFqFDNuxˀwSaNu<(d*} .37!6նtmV,.]-A)?jbeg$tvS)>eLƊV϶3<\OBP\/|eK +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 883 +>> +stream +xWMS0Wh'HѷNKz) ,9vd;}~zZ9#(/ttq0D(MDcH /H|;6@!%m!ƙY)΃V"fP+bh MD1fw}m r?ѯ< KRT4$HȀsR9RɸaNh`!*-~QZb&a`18Rm:JT$H߀RJOf1"OP 1H3I_RYĔ:e??m 5's[vlAQr +w∫;f "C*yL 9wp6@ۤ8h HݵaKN8$ZO"-rb(L̖bOɁ!GkgLKSebu?\GGAこ>_^>VzME)tLns7ahU1fv"L ä_H (1QK+;2 ;VZfےIeM6n(V1<,WG&bC}be{얿Zwvnl6rK[:Cq#:svaaK'XJ8Kk{@:yz^MeITTwu/&ZMLiR^WH4z`O+?/gZex,nvx\Ӽbxxep6k]aVb/mf'OdǸ dZ++ݐu:Qt%N!3 o=*?Z]=s=]99-wTXR,R4h{G:#b4 e^-߮jg +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 52 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 803 +>> +stream +xVn1+ mĢUI.i&J$2DT{0LS. + s|l0`<y7^sI8CfrP#j2{P:>  +IȦREQ΅NnT}9oaB߯!C] Sv1d٪1y8Ϊ6#Y$PfdB"/6vb*~8%D9s`F +6)i03%hsh-@&TOcW9Ӑ5j G0^W1&fWŕ7F9x#D3"?p-hec 8y"IPz&7kkOpo&J [7AG O{-h,^-j;j @(}%A:У\kZLQ1.N0 O{23ׅs㩿 Q`]e*/~IH{w`]Ք~!U0q0az27L:Zh`356Fyu:d)4D +~5;]*V7&J*[G!o:{y^C|dzx.w;+8k+g`>OvH)\CvAmmI\Pv$TS%_DBƻjoS.<˃^ݿq evOH唝zKcu#47y>%7¹l~]W4K0(aW01@u^6?kh7ːv VkjL|7yx +endstream +endobj +74 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 52 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 794 +>> +stream +xVMo@W@ +aQ2 R3]wF۲bp/02;)pARNA(ђ cu)C$䬉ڢ%>^KjAYsX-cmǯrmv`kW[ &/ d9{"-Sp L3pM|Ad ),a=.eh.(Ĵj_c *_p)4,`εqѲ)w +6(,Vb3HbͧNX!dsqɴq{sI1й/vu_OxJNi2q0AVmp0W!sc(4 +:O!ϿtVڄS\1B4ӏFq5\Ƅt_~؛;rRUʓf84ެIjddλ( +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F11 52 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 720 +>> +stream +xڵUKo@+hf߻C.䤦Ga>A"cfff(= Go+$BW1 +amD1[v7-nqzQF2Le &7Ai ZP4a̫ Sc5[QTCGM4;F&U?m8%jkn# wQdY#IdE ;^Ktǁu9A N3G#ڴ0:}p4%Dߡ5 Pvی>o7gx&Մ(5ťmu&6+!1z *}# S#vS7d; +s#zXB[$WdQ׮cz`hܰHcn Yh<]oboBz~( H&E2S [7X<<)&U~׻_R70xZfH)y|К3QECHV )> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 716 +>> +stream +xڵVMs0WhHHk}2åSi 4P2CI2Sﻒ06HBr@v[ی입#{?]I&$d;3-(m[q7&/nyt}d!t =`mX*Eo{æ3*C_L8,f?ZT]:, G;1RmQ죽cî s {*8і~gG-QA4\G${fǍHr(`lp QnU@آ[E#G!#1$MuCEN) +NJ(#*E VzC:y*Da _)%Xs4({0e/ZY4ՔE ߇rfb,T8u4;<:Z*(Ɠiy-y"FyP}>z9%ˋIJ0K2CЉJ/ӮƋwg*@qiR(ݙ1Ʌ2*# +_~}Ir+"'r٬6y2?n]O^Q%)0˴RN>'bT >j!(c)ƒk=i^Wvb1E:1%笿)A#lk]ϴQ'4t +mی6:G^ +ϤTk&/st^O>EћU'w4xϞny +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 422 +>> +stream +xڵU=o0+<&`;Fbhդj)a+8):q0`x{~wgeZHqxwxlMN H_ #H01=z B&WD 9O,0z#teP\I`lT(u SzLO]" H6~ڞi3#)b6_pi-DYy֏N$mFl%i_ ;kZ6SUJG✵ Mϰh <Leu5;\N̏*32 u*U}%nԏvс`>\-w/em8z5丄e\Dp)Bގjr[dK +!} QZHk]>Ps$"V(O<< +endstream +endobj +90 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +95 0 obj +<< +/Encoding 42 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 94 0 R +/BaseFont/JCUYCF+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 923 +>> +stream +xWKo1+|Lv<~;R +# "!HiZ5H=7f9d;oydC8"#y7~PjB`JSGp3C-fyϼ&)]d-iZ2*ʏC!so^0+59Cpqސ +(k_ܭw)>cgA2;I!T*f˜ŎtLD** ;4ΉhňGD1e#dB:eyN +ѡ8i"a "E&4l +<1+$gDIq-N T"%X$އm +X>&* XNNȹgR> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 243 +>> +stream +x}R0+4x Cӑ()#wq Dq` wf3+g/1% +hd*C(4Bgkv"$uFlU3T5 Rb:x\P(GXLEы>{'+ Ȣw*%䛴X{MN"&T<1ΥUS<6pL([jh°#Ij>npw +endstream +endobj +101 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 846 +>> +stream +xVMo0 W$"Qrq.;ɲ.@ie~dǎv/'M8ܑx{O.WŤ"f5d&s#*F.>N ̛E˔ .L%!jɔ T1 C.HC_Dx`59C~p%ב' o>|~trSGDqH SWy 30oHBT!juywWj}( +d-qc"zP I&4噂"5@Gx.$2MEjHL:3 ȖD{:A0O"gC$m@i&tCSt`d\2O*&*X,ظ4I|aShlTt)!Z[摒3;d!0}*Qnk0DlNԞBr;LvF&T2X.'qDՁG؏AVlQ!9Hf(ye Ӭ*|{Z틧uiUC>SR>|tJ?=hTh3 +_9|NT30e!)uz 44P&r4wDK]=0B7DQC{o_gW 9r$4A<11:y,TH5̤xI >nzw]]G|NY/cKr90D7r9Zb"8vKYeiYh kM} XF0Ji Ӕd\xyo +hgloլ^O^[3VyQ/>!2wMi*d +endstream +endobj +105 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 41 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 531 +>> +stream +xVKs0W’yƗNN{t۝:>BIrOvHL g kh(’Jm*Z+Sr]D`"8woD4DL~h`w,Y_T@pBW1iek~؄r#@s$Ą닿gg;f7A*d*"u5{ٗzkU +endstream +endobj +109 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 476 +>> +stream +xR0@~E6Ia#8zެT`) oP(őMmx!2[t= )$')‚yP2$v1׃b8w1w.RA}S1,XT˟{DS7]Bd:LWZ+!M3a i(rET APU5Gbo}{; [U*3C0@ȍfEJ:>$ .i- F^aGRՑ6anLzL@J@2aﳬmU<[,e6R-Yڃe毓)3O1v:Uzٷ!4;PkJVNjrYbC_Pe1Aqx 5߫ ?|N^ +D}GiZ)h$+g677?&~s/zKc=7*ܩm?)^$E(2Զn|a +endstream +endobj +113 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 520 +>> +stream +xVMo0WJW#ͭi,2,Rj`8dw{3f=2")!h}Ƿ#%R4UaR%P~`<L1xWe;nОpeuCٙvaҐvNegv6vewmeOMXQ\5oNwX'Ӡ8z#jX6R9AQByUٰex@DW>8n>QHbV&n%LnjnAQ=O3t3bLyOkۙwD7"U:3EzjTA w"^zC(u"NeR=OͿY4me/>>+ʍ=E}oO0*dLj휩tM +endstream +endobj +117 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xVM0+|LzĕzAtKnJCU$X=;)nȡ3oy%,aT.Ȼ|u)1Q$ BO$/Tb"PxFH/DsGeh~j~؀PFˈ\a7=H# +c*ĝّ{t +2%4-Itb`]a!t_$ֱu>=M=z;_Dw}x*w<]k@\s`c@U7Bq=_7^7PvUjoLցLJ֛yvL9 >A +r00;JO#`n`7+("Q|ۨ. giCoFoKVwSTIq$l66J? +endstream +endobj +121 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 458 +>> +stream +xڽUQo0~߯# +\)-L6, M:p+jJׯ]s<]NG1| qx 㩍}c%L;Oi],ٴGi V/;tQeH:y7~|cһAzFu#4#%Bp!YCٵz;90'SpBv'7[-R +endstream +endobj +125 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 340 +>> +stream +xڵSMO0 +rl%M,v!zLZ +lm-89~_LJQoe8[QV> +_XR@գvAx} +oA@)V6hLmwejӲ8 a*p"ȝ`~{[Ә""mWέIf:HS`4{~O1ސ|S W@de2T0gJuvyHu[D'wJVزj4,STc=1<JZpd[XE{hMﰴ&X$e^mu{_y5sGFk*U\"``YT +endstream +endobj +129 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 848 +>> +stream +xڥVN@+fiCg2G,ZvYM14H!A$Rñcś:>w4J +Wy:I"$"͈QNB/י1c\ef (l~3> cHC+"*MDX!.PDsjtFWL^ǫ"Ve+qEBe5Bif2HDyush'Efaaf"5QG<X> @#H$'7"5)t6]8S$R7{2beW2N4pH`='IB$i DU\vK4F0J/V$8•-r D{na>< jQ:ec9q(cœk9Dd\n8w0-]4U% W"-zQ>XPׁ +=Ghyxxw~QdlT-Yyv( UaFNj2*d}"%4=FQ_XF= •sȱt' WQn'($pȉ XɐH;tW'zُ6 S#{ VMznqsJMYm7Evqxx\vy.?BQ x+}kz7> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 239 +>> +stream +xڕ?O0w>ōsliUF2 Jjo_OEA1}~Ow2h5la8V)!!~[@|hӢ 41*܈H .QJ䊝mλJ7.1ݮ\FNc&}v+3q~I듼)ALn(+'o2:x2seIt86]۷cnms}X~ 㼪*RzuЊw +endstream +endobj +137 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 878 +>> +stream +xVn9W(9al|Hg9nFY*Y6,Q>P3:knVUWS>'{LjP->2+ƝlD)00e9 &&*͸#vmR]*"4 e +OO]c®DE CAy&*6Jnb3Q +OV; 5! x8"4EUAPU<]q,Ӡmj* +[H` )(q\ЪR2bl@X`Ա$TSضTX]r.s +MRA҃ӑ*rX9 }EE)&:Kr_ uvC+ ی$a[pd҆!qD>DޥqH.r !T\bTizJ|6JtqzEmuW b+Hæ7UxrCZlRESonڽo~1W$r.8SR8󿿹hE.3D+ɉL'6cE!t0Acf`8A> 8Q_|yXsruxx\v=/z|O׺=/eYr.q~[6 > +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 877 +>> +stream +xVKo1+|ܴc_H=(4\`AڔFJD8UQTp9%#y7~PD(&&F0 q 3!&TwcnɏCsA+>a˷mT!V*vwd 3&DphǷ&e!(ޅ\͑"pάC)E h krvP'Ah|`r܍˔${(2V*: 5k&sBX.Ȏn,O(*up6,D1e&^>D̊hr"YU2Ex2* 5"e$|~mbfWDYτ8&M~94DkxE'`=Q$mF*vTN} 1پk-2K&H\!NXr,ՃWo+6 +/T|uƄ"_iѸl<m~EcFUvi.EXn|P\B9HѨEm8*j_>eJʳC1 S_wSE,RΊLBQix:?yᡶVXk1Yoo33qaMYRUm=`k p+r-("NsUty!Jx 3=9({  e +ua9_7Ȯ'\ :ѰG],f.bZjyIwwBNh9R9㡜´M"$gsP%҄ɪℚŰWҔv_z)Vl]%],atmsܯ]zn޷6aO{Y} O +endstream +endobj +145 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F11 52 0 R +/F9 41 0 R +/F7 35 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 245 +>> +stream +x}Rn0 +|LT9Ć$jtڎSnc41Vi Ue ';=E{(\'8R-+g? Wlو|/T~`Yt O؂uFcUJ/ &i)&4 +-f[ yfvENmFzΫP~$kq sUdr&jq9?vmx??uSɋLk"c `lRA` +endstream +endobj +149 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 938 +>> +stream +xڝVn6}W/K3@^ftM" P;$EŗK\xΙXL +)G@ /fA8øC yh˖ܬ/U!„6NȊq-1_R +G o?L`}8O< +b׿QFssL"Lk䈸XD6… C807U*:-<&WAza=d0U u\R顀 :NM2w00SoZ +і +C[OGhE3!V/{`a!㕐P5,wBA˃dTON&LIhVpyV`TEj +BF䈞͙5m 4SbRkUTwnYչPd9` .|쾋YMIʁN$y`4T-XP}/ף@F5ԭ7s?웗%74!VPt%ҰS2m!&mҼitl}YVY+i:&\*z[, ؘ{UU VMʺP{>9ץ4i@$5b7GOg6[Oo6_5ibs + 63UAZߦ}~{z|&`ǯ/WO?fݿ|BLø=q8n{W {7ők4?i^RX%i_"5A6$R1єd7۫wakG^g.Z"1Σ.c#;4 jV(ќ-vkx 6U+F܉5N/y8 Sl > +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 541 +>> +stream +xڽVM0Wl`;riZr+=I%XlR93{3P|o ρ % + '` y5p=1Do'8#$YELh>2t*ʽqV[utdJ\bØGb.l.]9f6q ;g48iNfV.OW bO(.,N:XZS?\#*?wj~lRDaWnSM-[,[`rIȚٗ\3G4C 4f2kSRru,jmȨy~|W8[Qܸ jD#VG-h` a A塻iV-n +(Vj/) qOhjr瞤U/d`4J稟|齴zU!shōn!=Źs1w=zzм0cWɛ?kz +endstream +endobj +157 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 276 +>> +stream +xڵRMO0 +rjJMVGaˍrF*K-H_h:Q'َ(cȢܡko!@$9R@ "9U'L#T.pllW#S2Mfg"4u&\<[X&vmLM⛦jK3~3tj%'4 ;i ck^.\ ESMzl*+Oy~ K3x}qlN"@HQ<Y\D_|ׁ +endstream +endobj +161 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 864 +>> +stream +xڭVKs0+tj#^Vgzah8p@( i ߳ر$E)g\._7].f? +l e?Bv+v (7hms+;ceZ^r +-zZ غe;|1:*1!NzJEse!0_w+c:To yzo~Ztdb_ +(;ԣ~LbXL]XmhukWIF@vˬʿS zj"(^6_G؇eyT,LΫfdm|Un +68pri=#9HB n鵼C IGE<:7l3ʧ84X~I#sqBN2RRӕA{=TMxZC:Z0<0Y"]}/>Tx$A=9 +x,M}\~rc +o<)fm-~=.ϣú.7Og߅ݻ|:\/-t5"lqbM%>ǰċe߂.*48qrV7ɎG)Ԫihpv'TjJ'\IL=hde  0^Ȱlod~8 +endstream +endobj +165 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F10 45 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 473 +>> +stream +x;o0 +Nvԥ*Tfk:D)R0_'HDNssAST~<7(| M#M(i7 d+'ψ 428 F#P%N1O#PU{Uv\gbcK_"M|6?֛)C~.gY!%d M٩&w ΂G(ϩ{⮠buVl31Z:a:w+s:cL5 }m^ 6.0%ifЋAF .>lm9_~lp:c d(fsӸڟ? +q@=ý=,YIJΤ'xIZ11bZwk.D暘 U.xOpTd[k\iN~rY&y>[̫z2{?L*UkDq\c| k +endstream +endobj +169 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 487 +>> +stream +xVMO@+[7 bE0wmU73-GȗKp/&2O@H$-DhԹT@)Jȸr<}}Hׯ/`}'y,s\pV].4WrDJ+-=%2KAna{vfD%I Sy/KI)܇Rits8Nm:vئt}Zjn6©(F'aux!4'*S"p']<w͟,6Eog½'H7(`"u*^xr)p5&} X4܂%a,I,: *c UKehQe#67Wm$޾}|_;> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xVO0Wء{1.F0zݜ&D& #mLaM>{^PFzEYw1JÔ  i(n1!PN {!-a +i@ZJ1WJ$ L9J-cA@ b:@_MX;Nu.8~.yz>ï9΃CD1p'6c1=rf8t"@~ M +L f*zZsYEU͖ [iQG)ڌS-{Y~̋^αf\}ڮ7auiGGD;JLŴ=0!uQPDO;VLX]`|7(Iqy: (Wv'xT|u11_5#7vbsyjP';n/m:ZW3QHE^Ϛ8[J+P/\UۦD +@t{\6}̗[U䁓L3 twc;KC)kX_TPJ! +endstream +endobj +177 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 573 +>> +stream +xڵVM0WI!6CfC[i% ,R +Y5a 6h!0͛Iv1F9jhqG<]NQ!F\FCe>}gc;}E oX`Vpb+ XqXEخ/wϚa'P<b[Af>^yD03=5¾Q50JzF= La1Y탋.=ݲyXlE1z6 8kF&O'cOduڌB1]ʝL8eJ +__sZQ_eM;V؟ V+fpυbWڇb!X]78󵥺 JѝQk[Z}k.SiQԿ<5&Podr)ܘøq] .0 {Jvov0L?ŌAyKU?<%ϻJQ|8Z!iyq]-*!f+Hp۰w׿]$nDJ &ғ_GKW +endstream +endobj +181 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 133 +>> +stream +xE=0 Dw~d7!Pe(BL;GAKaM#d +I<` +$ ;ē mX}uc:ϷQ:ًzOt ωZdfP1.f~|% +endstream +endobj +185 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 900 +>> +stream +xڭVKs6WHxS0&U]ϨrLŗ&v?|xgnV Ԡ),3B:m\">[6?~ݾƒw۸ ` +7&1 -T༐Ҋ"A4)u%xkz.9ZѢ>54L]e^f RC`1(tGTqzH|h I*\Esz|Jj`CÕH%GN{#_2BH#\JMp,TOT_X 'V*.(Qp*.M1 01s/%I$h7v=fP>Ñ;쵞J\q8eߓ:d;<眦!2ћP#h,w0RvvFSCN6 n3La +]'P!& ѩ4b3A`LJo&.d#nu%7FaZ9v}8lBwͮn3u\ UUVoNUiھ},V9z#om(8é%(=P{тv`ZMW)X޸Pe10*;9l.16kqB[e6=l?L,(O^V8 xI5zYY`~7K+\^6&/UjڔMiUk9^jO"#RT_W%B]_hVZBFM٥|||:V兟_$?yk]M=>}aӆ W*kgLLWz8;uzi*\aRH]>0rzqzJokUwxJb c, ll`@NN ;+ +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 52 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F7 35 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 478 +>> +stream +xV=O0K E0B6VTBmv(iiEm'BH0094C~EeD92Q|A"P,7O1$"{.A@ind2sCxWWY̡Z`撸K0¶q04 |NC5fa 1Ih*`*jЈO8-{Qi"r.#,ToY.TYRƸ4c5`*Um5q^BIg)qZ&FU:v +߆N٦},͜H2=-L\HgI~KfYrTUŌ+~d$H8L[e"&7l0='Y\ ,>vaac=;dADc+ۅ|ՍXjVf3_.v:CLJftoRF h^pĥ?8,/>³b +endstream +endobj +193 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 517 +>> +stream +xV]O0}WwK‹>ޜ&I >{u펨Fyio{z9]Q!@gQL9U(zD"X%o0!"Zvn+"Bi`}p-:l"o.gT 2؊n`XϜ;AN5Z̜ZܑɀYR{> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 519 +>> +stream +xVMo0 W('#W\v|W X4@tvu~%NjA˖Cd(s&\ȈI$ U@T R|J[&,JВU +}ܗo=0U4÷35OFnzD a0|lz4Le?AaF1g῰>!JcN?Օ\<=Ulv[W:^b/cJDpbJ> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 562 +>> +stream +xڵVMs0W(%!鴇n! `C:H8 즭ڕv߾@ +#x.n cf=~ +m{c.Yc'̋4u{`lٞ"K=P#J[-Xǭ֚WbF| +A2߃D%t #}b7g&T_=GAb/q%}4Y쟚q{^A; Fnt4"TNlrcK`$#n*ۋMˎmRsJ $rK:(Eـ6nl`LMWKf#,oK#7kr07Fvos|VJX{tɐӶVx]=;dVjҴm×yKbIBذbn0&*"> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +210 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 209 0 R +/BaseFont/NSRWIF+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +211 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +cVU*%ܢ~Uq{aݙQ lxJE +6"匎tk 7y42T+ /g~$c \a8٢ȏ4 +O3Ntwqboۏ+&^BgweXy24d C`ٵJ scSDvnWyE*7]EUʵTJ͂]I k$j~gd+ +endstream +endobj +212 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 210 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 212 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/BPNPKR+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4020 +/Length3 533 +/Length 4568 +>> +stream +xgXۚ% jB wN(AiB D% ("ȦwiMiR*s}\o֟}g=^G;^"QjAd10OZpaݥr# +=s r"pSau{]lesLBVχ +OEG묉۾!m^ H#G=uX&އFY zh@iB Q8}HaM_%AP~ubٙؽty㯩SA%[RkC$]i޼Q;GT۽#Uʳ%7 N?;c"1b& XjI =&5UW(J8Hc*)!n$McaH#"#1'(q?*ܼvl7okpMuݏģk)Tv$%Y)G"ondw(Pyn޵dkm>eL+}UHP +M|=<׳.7e9E.F+C+V,brH+=M6rg\t\vV#w #.W\y)Cub<7l 4~rb 5~C(UC?RӋ j+gs_R_J'\1o>"=#eKQ>L(-Y/=qQ\cg*>q'=\PWfAyoUZctu7E!dcY˹['[4üRi_۰m"N¦IbkRΜcRxk;Jk=Q&z:;D/D6pqtN"Y5qDDP\s߇ hE*L^]Hፇ&Lmer?3zN*D˒NQޭ)Gd9\;YYn[GIϵ1+ yr]Kv*8Z]MvwFY6AĄ ysCO-nWG9Й־O9MT{7!aF-6RRԻ:6݆sU^N5=@Y_VZM<_iH $M +}7=6.I3Qdectc^5W&OX{GZ42.QǃP-"8E;RgS0}fuI`Pdb1qoew0+<}Y6T/uJm[i/*RcgXkJk@ChuB2IZ|lLu'{50Xݣ8Ƽ^`Нw.GSO Eq13v!ʤ_me>:LOȚ2|?BIm%*qROM >"<'w`UDPjuM˾%0T[#pfskTy߲ c~ [ 7 +2RU%w(iyvaЛ"N&xZ +} rZ?^4{{' ydqg͗dbadѼKS\]&!pG|5&okDF:;t%J\foV*vTN@s(^^Xt JqA[]j44:{ HL\$ <kV.?TeKGKuB%;r""AVO`TvڟBT~|'2;C-5ƾcZ SԈxmosfΚgJ6 +%-9i]iR߀X~Ir,f3w9oLv@񝩍亹k5/ADژ*IR1f;P^29vbncgB g9.s7y+wquo4č$q[0ZQ*>Sl"^בe)ܶ~8~")C)(zx^Pֽy2.Q3<v17:="F7dNrn|r> D6W rQ_E="v^J]\k}1r2;U)Msݛ938wiFVfPt{zBH k8UbCc\lcO |']Eh{퍃L>r𨨿ARbH65S~,E߮ Տ 5c5?ֺSYf=(8Q*{Bdy]K7z?BDLyWGzКB?L%% Q8\Vg + U]zd$NEUSˀ0r rK]ruoPL\}NU.)݊ U ig]%[=zи:W4 \υt*GfTW2 }thqjڳHk}@9|81G9]CsN;xSQqe߮[<& i^XbdEy״{$z.[}#q}iV)睉[Ou"`mjMhOd_2.rg2M{o_1:w cuVi_7a^ZP Wk-p0}q +"\ 1mGģt3/%yMt-C|BbjLICE1u 6*i/cHh8&N^ tr< Ycܷ%k䀛. O_cv_v1l8ʣ ntO$'yIaIAR.IاrmI6CaC&(BFNZ'IQ#P<dz!p*ZލږJZfl6j˕xdidu`,{!8upOc +Ca5vu(׽A6P&p0U g(]-+ 8w&FSi?wKh=j`>5וm_s3LU)l_S;qy@^p;1~v[9'^ TeWK7،m6䮂ev3zy6 ͗MDZ>R59Ɛ}Jŀ*;rԔ/-ԏ?A^rְҾ%29@FOLi-y䋣0" h auyj9.q7{1`naբ2l+sn\.Tӧ =[߀lpRKbLD@υR3ypOQHLb)B5qOҊ6j(f0IMi^mEs[ˇz!ot +lBw㹃0RiK|jIwŃ}\wY_r]uW;a4n+⹷R,GC{ws'Wsj4iiM@7J`/V/R,>vH"diN3 {e3Mh̴]0o$oR_hk䱩揉63`zEvQ%]\"sγ\yg"#Iٍ.JsBx5U8k@O*c,(i3;@2xU@Xe=|" =0p+ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/MFIMKF+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4731 +/Length3 533 +/Length 5281 +>> +stream +xeXkii If萒AnGffJ$KVZ:?Z׷c~?}s=s/"D@ i30$$PrQ0$BJ@RR @KHJ 9JHgoW= +Jl6e6;60([Ptr_[&ªۛlv|\<[RW$3jI([\gQDELjVgR'<1q\Ƶܦ3>aQ'ih>SE[#eI$ TQ pWz7:2@((+\C9C:gKb,&QWKؼ\~Xl~~O+vx*tIS)?\:W2OnNj^r whxOcؕ +薓. +sYbg)Q"hUCi߻j#XUw$_wR4Ҷ V"Nlkm߮l=iMZ=)TT)׎LIal^ߴgtLw >1rZpNC[z~ef<ӿzL5`skrPҦ?{ya-*[ u*5ɑJW#8.a^Qz>xF^ Ix {B$:w@{{ӥBXݟ'c;I~ 5ƀ~uBw*}}v|ؐ?ԒgtEf6GoS[$lQM{h[nI3FCmyܲsDVOݠu:- ?.h'}]JyEfoDN/d-Wqc>_\/ +#2_¨6y&$_'rxPpzH*>a;JϠka9 Tÿn/׬׽TޡAw܌*TMK9؆FS #Y̦w=?khn*l&ns!48\^X#wXqCdoݷ#زMfC +籦t<ʁ vBGվ +1*~i<_s[:dyDWz5}u\B/;xpc暥3P}b!+\dD_.Q q^ѰthȊK[}e^X}q7dFE&vip9i |8.ߓyR͞bQa-*fF5y,{7~=lG4YqnY/=_874f7MݶPL5 RChtީU>v$.~l?Q)y9.vF;1LM:"DAC}{1Ozw\F2lGh2kQfJ\/^k@⓸Tk#)SrnC&K d[ݥD.eJ'rZ8Al?w͏H"Iw0  tCdV;:hn JYY3;uƤ-z(ӂ->n̥nn# + 3NW(njSS}sFcܔ'5 +?b,%~Z&d?"1{Y{e$ZG?{z>hܢM7a3c-JFgv[W{bxoM-NXݥ6f崷z NXK'Bݧ$bd<'b=DRd4&ſQ=V&vk?a*Hg!E?%A7 +aKR(Y,K6ٔkA b!s_񻩳;s̑փ&S8$h  `7LP44s.6.ݔt5,wYSOz9.f t})^y}q'唣Nk?]ɀt+ŷD2]XX=79s{Jʏ6VAe׹HbPG6N6N-c>KNh8*kC.\MW;ܭ,gk2HCu|tKVKmg(\Ҧ$6E|5#J1?D3`.wdLO(iP^agCEx]P^Z#֠@ހy5-yyg h ϥtU)5%c#k +<-]A^&Brz$K#&n.g';狀g9ZmnYQؾ$RK\mH%8WDhC*m!-> + 7NTB;5%׶ $Xol,Ʀ賛h8~w=4u}|AJ:E[=tE4K;w7@koZE^|]8糷KZF L^t-wK4Wj~zy9=/i }wVr9>_*Reբ+&.+O0|kn . ~X]Q'wqeZxG|[Ǽ#%:hDBm;ob@rwyZq߷aʎvwFle1w^J&V +,nN'*7/i962["w>a;Y4&Ij|,<] ,#DvmMHL陵X:a['!AӬu_Ϗyֻ0sȌefJ{?`cl[PL$~a|ӇlO Vc-f[ƯldPþ~.*0I)OŸbדhبKxbaZڅī_c:F3173WZX^9d5Xz/G75?b$k1Fv/d8[[*ЎCrB0uB/ra=gHaXS(r^ TAd w[QCS)mE{1IPvݑ+hGd隣 1w~.| Lk)t{+>[GBd_4D|@-M>F)70lgtڿcH`3>ɿ̸~ycW@)& SfT/ Rl VeV~wj +qҎ|-Dc3Q+ܙҳ֎D9Bx[GE{S}ĔԹۓJI̲eXuʛ,WD,`i6 +&DR|0֭4U|>ڜ[8@ʶiʹ=Fdۆ']Tvus{2ȐJrZ7up+.0TKWJM0FH+b+NESPԥop~oxXٱ0ad#PR7+Wp58;S nr䪿D=:y.ץ͓$OoUM M߾,)xLK +0q]QH8ՑR~ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/DNKIKV+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9090 +/Length3 533 +/Length 9645 +>> +stream +xeT\qC4ݝwKpw rf}e|5:_*ZJ5MVqK{ =ԙS d@t;C̝AN. +#˅J hkm `d 9͡esg  дڂ=q0_ '+Ȓ `i tXmZt%W_.?I9-`% +]z4`7qU!G[b {g#@w._l K[ȿW@q5WIdf X@̃sD`RQWaױfn u_P38ں 9ϙ-& [BPKsGJw( {w/V.^N{!(UjCm\@R^>f. ?ogle? ;ꧩp°BAhZA0\ +YmM]mC}m2=6>;UH~s4!BMLz99M 6ժ++lޅB94KE!E@mQ-n&A8I4Q mC̏:j8RYJ*#_ 3[jzv~*sT b4g?)W>eiu~T\dlko&#I3n#5;M2B 8c[FZ B2Bc#aua2*p˦GLr0 TV5 +@73JQI|Vdv8N٤>l*GUqGb[PAgeR<ׂqx?"9ہaNIY1HKMM^)-+5/Eح|n ̇ SI3,q-M6QYw \?FיC >n" I-qޜlaAbg $Ⱥ́Z}&G>E(Imcf"PkJM&>#\_}u Al@YEӟtN-t4t|~C~|hPF 2 Crupn1|bMف5tzb~2q JQBSZfTM}β7?Fߦ4fզ-]$ +/ͧ37%ore9ZP|/ڟSv .dh$8jUbi)_*4B+Bs&-剢|03S*QDa}9TKU10:}_ȵ9Ebd\]݋'xc77dkNmDHI}HW`${(]}Ӱ"@+*hJK_pCɬ|4SÄ=(?Ȥu/#a"y9GgGqݑc)q"aht418cjO!-4m{}4N Y4 aT<=,s=qhj95!fg+ f^V-ėKygτ%QpY;|馮ɴ dB(/F~|IKdHwfQ,Lh5Ǽ W +"?sRu:>w:ԟ>S1_.i>E"1U KRoULO9\fG“e,i;8ې^ՠ6g`4jIu󛽜i.gWͲrN!4ײqy-שy|]>0Zf{0F J QwPXх]wjI.YJHݠl4*v/P4e\vY 'V%Ɇd~XnGLf5K`KZP3MF[=1HV=Ύ;iPR$XPuǘ}x],dBgcŚױ9 TNeC߆l*u,Ȩ!Ҧ?!'GE#(|Y1Uf ^D'}19W>Xjt7)~8l*hW u\ f@lkbRʜziC)IQY%_cRʗizЭICo,ŮRuCff ؁"CC1x [ +=tiW4s`)+-9jex.Ԗ +  /Hw#@>A V=9i:!ga$r FJ7 SIL0_xCGUUIG*ju9} LYʛM*|I(B=qWH Q9IHv2> {to"],rL?/?^G,替i6Ғ䥌^-b=c%fPMwG^R +LKPS_:b&"Wyҧ97ThgVORSu>pIQq +*isIMUˢ8"V=ZΊm q\?iVr(4ۀCl< i0F}9 2KgJ+;b?sTI,7`tA1b|ŨW=wQ>EJSug>B(I#8Ma5D$y 1uWAuF*J$z&˓AɂZewzp\,sY"dg#HGg0F곥p1t"V*v$<%{ADkj׮WpH*ug}T8pǢۏnսosLIoXAKD +^6@ l VrՄ9f!~]E1û-RKtkYc~ W\BY?821ĚEEdt B 5m$bΉolA{SY3.i0YNUa!fMXM&lYP y8.R%1|)< %K·_nyfmǶ+8 ϊ;1|$sk6C./KVY]yh/ CqQWȿ.,, +91 X[,:NdF+&؝jT~y=p\--$ˣdHSƓ봸{(@ oe C dĬojƭ{_5Ehq>}2%3sB:<%<ԓ3TgԺ99) Tr:9g!œJ{&JeP@póRPZ_/;bשx ͽzShߩGsiyT= +W=sv*Dwӱ'XMf Dh}3AbuHgwIC 00Rh1\oݨLYqaB%b1I;^>!N I]CdJ/CGG*1:zPj!?2V& #C],€'yơZՈ3 +JYzT&PeXcaǍF DK8=%{936ZAOr>PCkS o#_ :1zCnbl4ߧv;m~;0%ex$B1#hgnG{@IDD"9^M7yZ Ԫ$K݈;/ÏBW;8gsɏj+0{?}xxjco9Ȏ9iўW11OLϐO#C^ח^n]Kwf,ލ!OVO&_| {q\%mNNIp3Ly?ʹ A 1Šn3qߎMfʦ='{ +_NȄq}^5zĽSXIBVc,؍l{2jcfKÒ;.rW@n9D:-p_voe~M]8ӑ&]8 sS6Rr:kOD~&XNV]L!VJj=#ܛ 0h [Pۦ,:BK)wCN\aXx +H= +#hkxgNj)[Hx ;OD=w+3'uIJ + ՝aޯ$6}I:]=^ []v="VPu$yF<2Fwƿg_sCƂ].񗊊$M㌔{"\(*+8lkE7b`W#9@d|xBAscE! x<[xnpĨ9ڸDͥĢaR3r, J~\вCN;YzЙ}MX&7ROɗwsE|!P^2dዽ7".-j1ci莥QJwC/1= Ȯ?}(KA%to 'D'c2{6WOc~f;:6 x]ƏY1:#K_;pʵG\KƵ+[lVu^,(2̑8֩?JEp +Ͳk94~8 fbJyoByxOlKa2jOn?nϭg HŜc!/۞2vFV/Lnc;7|il6ْ|[ GrVySUch']SUHMhSbL{%V4tW0),ƏR&2Khh/]rkE禜 +\Tp8Ub@؋xN7Im#C +k_$jcP!? 3c3󥷰؉kY$b>/D*/ gנ·smBs9Gӏ +wY &ދ@͞0ذ~٥v[ȒAG7s%'& u;0&jZe=-i$"g.dAߩmȟX΀ O N:LhAt t]!%33l&mHU]MgoO `[SAMH 6nB;AVp@zXoBȀY`,ND(n +[?%R?X9&V^#EZe &6#rMBfxz~In3kՑ1^uwgIBv1MsȾnPW!)2S4ٓQEX%ՌB}4_ +Wv}= WԚOCulg +YG_uf9)a@v3e&?%P4~_ާ!G.mX^'Y;s 3aji>Q.} `m$/_n(GxSC*Zpe[1Dviw1m'/c5=Nm20eQSr8J+9_X=꟪&2.7ut4!X۝ى%քW|щ+ZT=}[O^='t:CCV%E`. 'tGn^~cu2G15I:^-)׬QDpI5pƏ2#a"Hhߠ܊Y cX3 t._ DڣsQ8vvW:Π*3H (N5P'K0rf`AE_HPIZː? Fa(7d4" |dz+_I̟2 +ƨbDž&vyxZX`wb·.Ǩ<|0~0rPڲ(]S1ĕ/ڊlyYT]/8TMDw;FBfD:UAl~bI5,w#GrltwRQܻCFMu+9 ^.q& R΍2/8-$ɴ}6%2Cvl3Fw6-G%|"#gA)[Lufo!˭ v!,:GдJr`Fٶk?3SSTބ9@-h, +x7Q+?çMؠ,tˑZ"ח8:kuvd*߿1NNK-zE)+N(5~^:xfhɌaRuz~ jIun~X8& +sT/h+ßL(pzЅo?roA $d2tVZ~1K-؏lQ].(mZ<| q:}RVowl}L~ƌG s5<9W͉<5,C_l <^},Bc5zv]sj_ErxۆSޡqvNyF2ɳ侻Q{6>\Nǒڟ'1u]=DMӷhI8x,Sv.պtbkMD5\CtNO5˚z12JK{DSK* ȗkiw>L_ i\TXSY^԰}tI]]q;:gZ]g] +v[1荇Fq'E#h~Wd5y(枒NݰL=ܓNۅ y^w*I.*!Y&ա93Ѡ:I"[E)[ɳ4Y^Ѓxix)ӥɔe#8OoPaU`AEaQۉwTmc~_d3-pzzg*qoA<]޾pڭV0UT׆`g=pg Ey ֻLٻwxz3yH}"7{߳v/!kǤȩ&̣DZOzpc +ڑZx2G6Y]N> F7R(r]]Xj. Ǭ3>>SkageNm'ҋ`3 .A@ԯM&Qw61$bFi(pulWKљhU[鬳Z~F85m6)z~Ynbacq?Qm)"Zhت͢YpLm?ӫT}ϩ¥H@G)s qFg(U>#RJy,c (~*B)MQxvԳ6ɭu?\5 0AsG;Tf +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/JZFSYN+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Ji_]#8 +5ù+5?@!'M8"P')A=J]ODJ$".Ar )H5cP^H&H +H:xyx 1?o{?H/E"| >5uexI>M"QlکJdmBB׉;rAC|U܆m5=dl:p- !"qx11w[^k%wOg?8yE@X2^H]>H;ϡY߷4×nQlBVGs92NOaҿe9!wmqvv&gPIsؼXXAMzsziֆ.qߵ%5Ő'#Lr׻xiERV>Ycrx,A[])y+"N!k+(Yx-l]ڲFw8eD!%Uy jy9T;DhU^]kJ%6@jLC6UyRx>ma#Bٲ4ߠ@f#[ߢ7yVY)`b#&nv[ìJο~cIx> 8?T޶z,JG.L (X}b{R3" 0l;9M dq>yz;u瘥nErD>Oozߎs({&QUvR/XByƭW׳(KqE82%:-QfmTd Eȅ5!2m3@?\]5q,bllrǯ M5궢K\PGD#WjQk9,&kZcdx>l*$JOver_&?5<,M @/gx f; ?#\ *&-pH6jZ*/J@fRg!?T /q"[ Eܠ( >0yNVPI49 +qͲVaJI*5˫0U@P ޾.mU +:pҷuc;}xbrqq;D'`J?# ۞.:ahғFd2{j{u$rhޓt<`\)8zgLaޔC1Ș>7VgNڃoiHm) TG`AZ:gM_8,}kA SWR8+'w?*=u$:k + hD c'ꥳ|EgsΞk 1_͇Hh.s `9'D&:%%T=|2rswn^6Bvz=(8I}j9O#FI@34ZfU/ލ?*Bl~"w%J(/86ּro YybǶ9=E䫖-n~֐7W %Q G\˴W},"π:䠾Xi$FXΰ%*].ph ړôزܵi1NxFpՑs3( +8z70`S*%T4=y;%)m @ZU ^^u#S(e ?]־*5)-lD9Qꕥz4 .M=[\/aa |6AblW&H;zF3bvShaEOH@В+{ӷCqN'JXV6a{ߡ1cm(*s'1.Hwbh#$䰐<.߬M` iF+3C@e*`~EH|@{0qzSFط:R5Chy N(cIԻUu@ +Y]S]OX#3%yc>QQ.EPЬk0{=9oFo5D=n5cԕ&d1߄@|JUN_#}SX1ժ mݬ)@cVnۓ !`үiLݬNurͼA&Ԇ:>wuɿWmt#S;iqj,FJߢS܎FBkRoIv4a'!O'| 0R l7y *AӸwCDyiIn躩LlNakkW_{D]j[Seja-#m)]5 U|+HFhkG69K ڌr/ +oDp İ r;FuUGu|CHsS&RvodɄ&ܥgk 91?EGsY;%՟v]8HqZ<2jZHO*SbSu'? Kgʷ2boV;^.a&Μkز\ub5:}oKΣT{?drMYQw[<ӗTNA:TucMu{ǣwpB7q-h ^Xiي˕1]Ros` 6DW9[]s[b}3t$qXcb/.9!a +;RR{ B#&gU#ƔYv]1zH"x9PrnzHEܧo|WYS4AGqǃ0\)+2OCeGj+&y\:$sX8aO>{a0˵MjCYQ)HSm^+<`d*87V.3\?|SX,ugllЗ50`.O)xIu&); +..\mpwD6-ՖٛGٗ^8iGu!>iFv &p") |woA4vJ6=mVk$O@UF YӪ-R*R*_`,P]4F?nbIɑ;pJKAql/LS|gPlYl phRéx[˓% COQ,3 yh$x{d +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/ZTXZWV+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5000 +>> +stream +xg8\mEFmh0%:Qch &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D8,^BZRZ me# JK@Z!!mo$aoH%4"E:_,.%9Y%< yx@m?U +@M Mxw$Z\PH|$F-|hAz!4rn(,@O,+Wϒ (Txa@ u wyA?onF߂c=1(t?8/ 4!ؿKȿpkcQ.X74+E#f(;A##\ 7ojGaVS;b<(|/?W릃u!PX7%EJ;?P|a$!#wϤeYUyEʁ@ yY_oo${'\|?cWŀH D+ձHiiLXm"Zu*iU|PAt HTqe|0PQ"ll b[7ٽ3Uʮf=+̡5(z0 &6g'L~Z1g ltxΚ]qBR:ciy}lwb|={Ѳg"a1P<;.:njU{Yܯ/S J*TdQ -0'G{Jye ;0_] )f/tI eѴF51K= T9V:m14~&μ H@Fz%N{;]*F*Kt, 0}yD͝;ujcc8yYO4=di ƥ +vxJ繏}"pe?-J,'TVx;tY0-=[euJs[?^O+LK:No|KŻ!y s7*@I_|K;[E+ YLN})`\eȗGsU44/r=hd*O8p Cj&Lvq {kj'oF3Qc|IXq,Pʍ.{om'xV(9oG7_n::ތ;8{3B5ca {#F\L3cdNa8{u8iN^O w"Er8CtJ6BCr˸oQږ +#MIaS!L +G@>y"]?Ì&L "hH.=xeUwΣݦI3)5"Sό}ybhmԛ +JkZQ%ߊ#!4;Wcܙ ]qm.~/VvilyϹ`ff1ls,0Շ&w.*P8=ã K '٩G4Su /azEڗEѹ=2HUEJ}K%{"g&D޲gHkܑyr_V=kKT#;$A%mAwmiCaH؜Hylq$w׊ã? q(8\baAE2$5hBFVuψgшZx0Ǫ{,"j%gQiS?IMl@ }*ҟ(bNs]N:o.YAMql3_p"Sv2]5ysx/9 gBߢ#l&iں .f>bFVMEp>T}7ȁ\qR'clIlV0by^9l=#yoB_?"WR +:)<`-U;N]M,VHzSfwȤ~Im *亹6gF(w+ŗ]s`9Bs^XQ [ O]ͻ̟ftzĩMa5OCrM, oސzKI]'i"jm +q-ǡib09Yy߯e06/91:TR%W}5f+oL0ٻL{8X; +43$=JUzⶆF_~"2q0,=n5 em$F|o3|G!%+;S댵#wz<h1/Uzy q>GrٵߜE1d}e|<3䌬,6`I2!ZP&M0J> T_* F>zF$V] /JqJlͶ'96]'|aď׶$VƓO]d6 !LlֲxƬnxsyx-%/][#Q,q4qLV끌 b~vu*9,7 +'8xOFU{gfsWi5:C)D~E@.UIc<5䵑aVF$1vZE{vfYNL5&vO?xuPEکȂiGL-YRrr +c`ơd^IFZn_9!_&HQf-wW&FX'O$)W3WEw7U^VRjg՚]Eg%$͐ꗽ?6m޿M_I69+0Pj ϷtlD rJdP*>2D,8Qh +Nƌxҿtbr u9CuK+QشSc{_>ҏՁrI!XcS{f6űQ,aE0zL{[)O,SYc$$?-s'[> >(xK]!RwgC ^+Ʌsˉt0cH\]ΕRߊ~AUұ=3Iw^\ng>[(aS͛kR jw25z4ح7gvꁛט n lAVCs޳܇ CI ?Mlu9~I+Me09N\3|=*}uG}O):P&7"aVJuu#k/ J ;jEqs$j&Ϋ(?nƯ׿찊8fPX:ԭ}FRCd;b(0Tᜤ1mL|FܨMԝ_+ﶗ(}0G z*GF!_5Hbۇ|_ŊrKO7˕NM}%([&x;Z+SfZq0";6!&ZjG :qPW%lE箽%11<)>K&k$+GbF+Rvg| +'RQYA)LKc{ +/Lì]Cp⨃ AX\}p~R^}zH”Cw7 C8N_6:$5w)3=ZH§С^>#QIs$A\ٮu +%(4F[s2+1sZe(tL$/HE1.=84Ȥl9b5%pŎ/6#z~fG,Aϖx)'[gfWLݙg>q7T5kFQEEJm!3SƗ33pLNyu?zi{F1QQ޽ts=$nv1pubL>ce`#UL[mJG^f(=x{P]6O\IQzr?e6*hay+-6M{<޴YmC7tpBnY[)^ *J(;ohߠJŕ;f~0v 3-I(YP~@mӃ2OfyADpY7KBQgbV=!Jn#v).,-%w q +SBQaXbCm^;(4M}P`ZQNORR@C6Ievfl{cbԾk0*DG?rt9-k/:Nt]*,ɼ, ^;~~agHjiS8\ȿx^eD [bQ> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2136 +>> +stream +xR{8yn71j10 +1ȴ͐:јyg9d+:jCDIڒO#1j吕n ]~|^s߿Y݂rcBA/W`"36 ‚(i"@'K b6pX' YD?JDh9r8Ӹ& +9j: l!Penl67{DBPd`X," dA\z 1 վQK@m㲣Ȅ)<8Pm_l}-%f)4ά\Ti"Py P~2G5JݍbS zA as}ڄ:9 hmd/ k ?oY\OHIuX5Q~4O.ǀ,ggZL}ԕ .DmmGu*RfWuh>Mr S +Xg0@d hl$iQs؟pwIbP8<vx'#3 EA``s]X.~꘿LHtX>j*#Nc̴|ý:LAܨۮAc^k(7ޱGI]U<>l)Qd$+VjU.s')=^;)Lf?\LK.]%ukyHKzVJb/BtlMA̼jCk(joMZnjN4=AS-}*+<[IJRJɾ`3C' )aiIPPvd ySB*UaVg%&[!:(p!\?5}!L/sHYUm2^tt№XoJ$cZn19G+QK^17saCӞVO4^jXuk>C#0~IU$Xޑ:ymǙy3;OM"Knt_KM 8uzMUc`=iQv:\41t/YzᄏG=e'xux,Ei7FAJrq_*\y̡c%MHg.OpgV3ӋHX_W8 X<ץٶIs*ys<o$Yc5--îYc_w3F&L]+G,{ɜ*4%M?ۈA~toAqnϯ7&0U}v0C:#noϋ7NiT׃N]+L'q,1SS|L'L5'YoY6> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3150 +/Length3 533 +/Length 3704 +>> +stream +xeXT@E  C7HJHJLC)*% JH "(v/:uoYB|fH,$Rʀ8[C !!m +F@c1:0JRR  QPQSm?JDEt)(0+,,4MG +`HJ +@rAc@b`_2wßq"HE3N$ Q I~31=\a3װD{Á"P8D0[Qh]ĸx )Y0D/CfhpyQt;~qHZ[51 +g}6% C RgƳobX$X`$ oߩ~2Ҁi* +r5ZaD QTQ"8 +Cu}6$ݓ)UҚ|@10KBx|~Y1: o&[y x,.O??;/omlqok:WFQB5OzM&lm +ˮ{ڒ3PY*g W4K 9=LPPMz׸_3#g%[pcgj~l) ѭ'̙L߮fO'bzFRt6FZJJɷ´+P%DSU.LNfJT^1dιܵZ҉s ΅ -p2g[~).&OdP3g},Ie=ur+{[g0M5D4m7IW= C"cHR(DK7j2j)]NvȐE3[Ygbȿ̚\~ */ӌC? o +2m^>wz%D.T6*Cz]sfrzT&u&9Wu.8İ~ɛӝG}jAFb}YZ%J\pЦOVe-ꎆ띃hsۗ૶!.[a\Hˈ:Gv,Bu-;eff7ȘZ!c d&CK2\ҥyb9 SE@AƧCwRZͽRst3xx&8Ccy<-g2o:lrsPd C){4ʐ駚ZFhCk 3q1q9]RV/K-}z8IeKBڷSX3"ӸIbJf:9CKyx<} *T:0rpL<5$#۔mWy+w|޹9?ԤsHHtd}6aΊci\̊FĔ:>R#bH∐ˌ͜UC'Ӆ?9QUMZ9k]~|ý_3\嫬DXRUմJ9V̽Qh7ؒnTu^RZRnݏCDej0_TF29 fmIk>t$f\e^,fNI3!准ƊZ We \mХ u *ۯuNmv+gS +O +ƻ4'omXّXۯs)xOg tm8q^C=,5YS#Ɔ>ڶbO;ԣޖT*8?XP=9=\)9f-Ȗ!kMb f OP-Y*iaCʾcF3(vr aE̗2M+>c LbWM<+n:]+sN {õﯗG!EM`Ҟsc%-\\F>}=Kaͱ +uRޫP^/vCNzE!W1>3ab]XNw.`7Ҿ}mF﭅J Q IƬQer1[X:RS?R WDҌM1&VoĊDj=ƊwȜ`IUΰO7Q򀛮]HTN+`as35]2;Sw' Wfm,i [$#ݩ^ 1fm ӧ{MM# (_@)avl.֙1zz<2Χa{hxnӛ[ O .]νb.װ`$_Szl9BU)WuL.ŧ4TG,q\,mV$fp]e_9Jq5vNSv8 vd׊t0YSK;7[PO/\.otn^5^$D.=sgΏ#!Ea'IkfAy֏ +?b6vQZEŰ5MCܥם\/rye! +a}vb?={gsPx?h# ?:m!KMOH8hM~]smY@4?aUEZ&uѰَ3 + + +>XBC'{I|B*ag(7Q}c0ݐZ-3b,#͜s="DC\6CH`Ԟ\vKURZk@s̱$<ߗ:I +=օ/~R`!|rU::c6lZl՛w_ʦuA_$5 ?8 DCدk-xU`rRfċ_gV_G 9wlb2X[wWms8`zRmeKfz0: '[v{cO~TWR"xPI9^A|}sI~@Uv[iجOt"'Xǫ~hҀ{\ 8o59/Ytׄ;w_] z}:dS&;㽅jVBx5G)p.ځj *3=^Ly3=lŕ'T t *3c<O璯+t_Ab,ż|#k6F+qQ7uHl!i.)y[1}G (qGzygڡ%>׹Zy\N]{=[FYދϓ 7>wC"K;PuFvDى T4Q1љoÕp ] JspVרZi2=//@x`8s 8i +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/OXDYHN+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 36 0 R +/Flags 68 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1693 +/Length3 533 +/Length 2233 +>> +stream +xy8@8/:B @ o~&p(of6F&Dw6%EP8,Z $LR@vQ8p_Ih琺d1<~oxrjڌX +` 4#i3-< +A1A i9+9Xw2Dr0EE}M&AG툥M)  PI-l¢'yngHRHM p =+<62&oalQ˹өZ >hӮPV}NRG_E?b T纴r~*:!|Sp}=;^戒Lﲃ JY +wdf 0awֽyfN)Rf>v`xp򃹽֦w۞&2 +1J7pV{=U%['XlwjJ$=T^;֢loZ0W +LEo t81wc1u1uẕ'o$ꅾS!wi s~2T2y{O?RΤ2dTk,SȟG Ue`YK#['۷=|׻SUIo +\74`e?5: R%WY-L". &`z5+JLm1YI ۏ}8=m^=ݶٖ)=߉ hC69X?'ك^}sTc+rͽ^ݖ-uәyk$84.+lYenD-n^\_6s^(,jU\ʵYHlMM;\|e{GIoNXQȜ_S >i[iikxvM:Ƽ1%$D9 vx-ܧ*+(gB?>B(!_Xmjz Ezz֗m¾+$%#G{n u U}`M a/o2:btHSZ%Ɛo9{Pc3,9ĊKjcS.EM>M8XP!5۬Gz ܒJLV&G%-I0447kn$-[D4Y{ϫ!b9?Z m|ͣ2(8uZmCWx\^ؐ:IU]GZsJݥ\EL\{>^,ZIuw8v{>KR JFN}M]Tj}H +W Pz",g%=0sP7O2^RK<>=aڙ[!'I3@o78^`->_9 yԂIU MDw;n'K0Yӣu?BM;fD?g˧iW#XW֝b;STX=d$ ~X~pY*?L0e**oǡx,e-~ zC\b;bMN5 /)ȠsF-ۋ9z]XÏf=z5X",']dOG(ʷS>W)E]Ff-q'7J;I\\<9% !ȹU{ U=ӿK{VDu}oiIc+_u;d`5MW9ОxA +/cJ{R\> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1423 +/Length3 533 +/Length 1956 +>> +stream +xiTYmQxH5$ad_&,*DCRĒCDqCMhDưt# ;hDf 0Ϝ7go߽d?3G:;tc<3<O|<` a*$xkk<8oI&pfs\q:-GȅhT,y4dD`= +ұ!0_Dr؀r"r.Pi)l`ܛ-_ XpH&ӛZO*1,N$^l:ȅѼ@:ZuQf0A܂"ܠhNxC@.A5|lKdd]T9.j?kpP4pxQ~ +j-WƦC0Qa:Kg&''v13`F /@5# @pV˔H.yK@/u$F4,mMNUon'#~}A|/B=}&wbl.VzQaM?Lef4˃V? <@pxZo.q7U̵[E/ +2j,:;`frE3=HS_BЌa[$.t0slס@0zJM>Y83.C㍐Ezl/|feI +mͥfc6Ɏ{Y_,Ծ2q>4 KTDNG*dJ:mm <Y:=0=rEth8B91E +s3[9g?\ צl^c#Mt㵏2R)JYb=tͣeI7VΣߞ?PHԑjȲduK5U)R;'tlOYhAȏo(2FgF7ZT뤕ɪu[3f 9d;36s ƺi +W]TIr3`53F}ifR܇WlkY8Q?vlꯁv{bfc۵ c Aψ:t!y!{(yJ.i%5m2,jy© +YO*w|xߏұ,DI|NI'ޚov/C^UyfhR,< |1A*fQA +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/QKINME+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 993 +/Length3 533 +/Length 1523 +>> +stream +x{8TiRU/r)sm+FLBr;0sΜa*.TzvEResK0*-)JTf)JtۉڞϞ}?} <(qHf`s~!C CC6!4N.9mrlX !`1. {G 80 +#"t&R!"8Fǘ,Ϗ'&ƨ( 5g0`8!'܈PFۨ$Qb%0Qr.JJ$1B#-]W 25}3/Edw-jMݒf'Sh%z'Wٵ'ϽpyiT\`#w \VG+XF-@W&=M.^lc 댮!qŮ53jCNyclԠ753=&j' :NJt‡kl]㻼XmS8A2&gfF!/ZúGڽůWݜnV1-9}t_Rٛ_m Wp7"byU#ip Me)fd2U7fkj5;V̡=BrJWs5.)*Λhחw|v׆84I68uZog:o7NQtB efTfm\띰^ 5͛pTuO`Y4q-0OBѤ"?De +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IFEXKV+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3701 +>> +stream +xy8}2Qm,7fa u$;`14(dWnK֊B(!wJu,Q%D^ws<{\uSRJ8E!ӕ``GM` +:Oc +C#0'jTTUNj Mt$<Ő4'`1D%`%?~xZ`0G eBj8߭bLʤUˮ\?ʮP#e{k} qkZ$#FwStԴs{ |`Ucpz^Lwfy[>!(u+{c_x] `=]Wӧ2{X8%d-S%<2v,Qz!r&u yR"# +ch=CxPe=^ +`6'),_ ~jljvx+V@J`ZXHpO-Ew z<f=v/Qb|rˁC %5H?LXX"k7(8T~" Q9ˏHR]<r* f ϒr IV&׭Sk=%e vjvu;jIwNV|f ˅ sBĨ6@ܿE<"ʘ 2yUr\>s2G$g +OCAO.Q#8`p4{iW%\ڀN̠1˔m|QQ+x@pRŕY|Odݼ@6Hpo/N5_GnFh>\uѧ`zHI5E\GBe5 '_,Y;ckncC{.X尐ɧo[1[u:u M5^o[DAjcQP7 <~*9A^9٪fo7_5qfry^*tdQ7ۼ^8\LXgʑ%HãMV{/9غ+"c->xqa".bpۜm3%~Q5P0%o7g+̾:^m:6'L)RdN3k'G~fDaz>Qβ] ?)Ÿ ڹہs>fOmy5awi/ I8zк^+w}xob;ҷ nr߲83Ϫ`OdZO1^>)5F iP)Z%(]+~tՄK$v 7r IE+`Bm%Fܺrϓn7slSy j=/xox -͒c1xˑ҃P C+#iwr_}zuYu,]5o¨T';k 5Ŷ}VWD2+ÊjzUvTsQK ́ڙZsdUo:k~&(78S#?-5qcH)7Mb {@aVb6Rԩ+$>qt!Q[Ŷ-%Om1T`fE8g9h`{xof?KVכ9$]\wpgƸW)]Z$e@[hP;@X;o2WyhfJԐLc3}h3h_/]AM?ֱͧ +f<ҙLA/ s~`,qI.rܳNrs/S?>2Z&wcN*Inv= + 3i2KU:V.B!u7cZ1æ0A B=#CeAm#ߵ( naJ(5( 9/P^3)Gv؋el6cO_eCӶ^LߎjxR^Gww,w$IeY#Ԏs-diM$խGp5;;F F|h4ͨ1 3CWԟ~xyfAFa>(&{~0NHDžz=cGKeY1?ӕ:c=1g"eFRT +B 'D> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0hGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&gu p HIvt +[QtGB&d"-D2gAl0e_┘p$njvs L6?S3"FX3T|ܰ[ 3``̍͗UR BdXEB$D ?L|BWp{n:w-fljdžN/fEƟY;W8ϲyCèiܜ̵ ̋<!VӁBk3;N'M_T2yú÷oXŽOօp tN[P?Zl$Qɀv=bJeiBTDoWJOo= 1bj:fsYgZtki踴9Uj! . ]S +YAr5 d2y?>KZ8v|L)KõT&͎XVo٨/I}Vu-?P< .11ŷKIhnS>Ncf{Km\PwRtR%O`vj<喀B)ȩ5 +IGskUr:~:FoSʈث`zé!<+'M}qAՏN\Qs"tf8\ލ5f$#Y;ک~W ?SS1Djl;%1FXhl\IsC"}KLJu*cc 3M*9jW•W.Q)fjO[᷅gh$>5ٵrl|hH0&sm:&꥛ч_5UYNZ9muWzz~o28yw=-"?Xra>5Z QvUep<EsO"BN$EɦO6-r#R/hYC]J] i_zUK6'\dxf74`\92u-a'iD 8uϬ9ZÆ3 +J\k5UMuE$#q݆MC!f]-y4 +c.Gw^y ]',O'Tpm'1cE˴5])Z+tM*rJnN2wVozOg֪y×uǟ[?S2ӪV5c[ =k*n)G&U^hm-a'4YU5zɡecj#+/BDKg} (){rs,ހ_9z +3uo3FZVp7X=rLNͨ:qfCV;su {=%Jq~.ΗzECF;we~|dĪW#lg'yǴ,&\S *:**ڡ@c]){3rx5ȑYϟ +'fЈP +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/OGTUGB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9947 +/Length3 533 +/Length 10504 +>> +stream +xUTѶqxp߸!xpw6w 4kp 4HsK~ѵYk*:lV`9g'w6.v.!'S +@G' +6wsv1w A@IW ){t@igW; 4?T@IGPtP5n`WO;tZmRpv+m%O_. ?I9 >@+5C|4`7@Taf?Ύ.`Wߥ<ntJٹy>ع[]=LoI&-/_vNZ>.e?c폫7Аo +2d,lNVVTRR޾l<@67/ (ʴ>zdܠf-=\]N\?ck Mu3UN +zƐ璨mWj~kڎ_-Z]M執@E9ծO:h8<7+ {`{ +[Xu h=u «;`a0 -O$2"EJr#GTPF;yƊ22Ϫ7J!h3]*L+AYx;ZH0ncC&u2'6e.%ɮk.)(t {.~DX|QOSeíwL@K"3N1r+K7 EU+ AWo٘G2!<;p’b\,(]cW\ag#ӟ+Ƭgilr(;۟40tӡ6c +t:3w1[tRn+NhRC`3)ITSdpu?5!zF$* E]-,LUf7o\WoZ^ +S={k/w'0SHs+횶gN]sk2$A䂞NAC >/Uvma](̟{'{ }SVLҫ fhަ;wEZP%O մT;1M(.r^LA ߃ 8a=j J)o)So8zQOlV[ |<fj־x;F{sXb¦ }(u+"-cD\XK}QܡL]_eφY->J0^.;J,OvPnCv'ХIő2+S > ఉtX3Y Ruuku6 o]j́\km-tubҍF/Ul$i''2 lL܍33dL-~`Ԑf%&^ҧb\vȤ7A[hG53Z=a^$}7G{oYw.FNc巜@ /Mt$!+G#FtN7z:(bÊkJD'bZ>3u"J]{x638 L*1> +߇gʹ[r>\cѳ>3ܥ EdbOEe_η27WX I4;T2\l)]m[#&v瘸Ey 0U7 I xʁɝ(":FJn nlE/`2Eχlˮ8jy"@6HV%t=H=NbѬmʀvܮ&l`iBXx=PIO8?vC&"CQ +hiQFa6J{Nbl {ȷ'-7=w4KHLQ[(r2gW)EjQY@S.5XM a@ؓ"'Kx_o.1?+d|evCB-46NtVbÉ‧> EdL̩6{VB4#|'. <Cziy d)B;?*=mՒW;FCK1i ѯSIs\Ȍ$6uqRtFYnJS N&py;SE1~t Ԅ!(a7>x UЧ,FjQU|1>ߠm"@qǃd@n=U˫ld.u-m zz%zE@/;v~΅yee``H#VxT^:?qn?Z%7H0Ew\|;9i +z|:O"ɋv +C)`YUGg=*q(|wr9O"4wnhwϧOx0u_Z?=_Gd[+yM#}4jF1^> 0e@[1^'t^ +JVUCԀJ";a K%V !=C&CY)$~Hl@6 0 +bj R8#2uYN2w9䧡%/:DQܙ/86ne1! .9j؞BVϿB{*_/ẘ{<MҊ[#tU<:YCR@f>j{TM'Y3ܥ#ɯU'lùY"4E'/.\&e9 iphǨaeL0mID✾iFMSWPq:gys2{$)|Q qOދL3wM} „}YK?Q˦Ysŗ&=dQah; >rTJ[Uw1錶 .qPp]!ՓslL{[_ɏj?ZB)-} +r-"wU}^S[kk0DYR +ʢӷ+0:t"> S|Rﶞx}uq}4 my{7}vl`;;0r)1\7 *sUi,,㍇yH<KjRhi4?h&@g8H?B]O NБ}@/8)2Vqz$*OF+ỸP"y2g5fcFOC A]5JrHRp) 6]v/^tPq Q`n&XHXg#xWs +>x ?va"uG& +q(caZt +o,1L_S9ں-tK75*sҧQbjU#Ls R|aҲ=,"fnN$!bM17o/8dk q5Iw0YzlS^})+[lG?AA''Ncfj#V uX !R + &~,lAzّAf 5o{#˗}yo#_Ls`g➯2܌J.`{50W#Pr(zb05"'ui-/|3u뎯Ϳ:oKC.K?))$?D4 nLƼ,IhDfnSu'qх |2;eXL)6)!Od3˭ Lmu9t:s3VWp%)q7PNK1S/?V')hiΤi긛J2{X =G§0䦮Q?n}~֜ZIpypX hZ.✃0{rq94\0e-l8&f̠v/*"^lJ uY$ +F?n@}g>NC0Qҵ5$s^(XJ@1i%ׄ&\xjF$B_0]I`R髖GEaS؊Ye2/x} CbN[dzf.Bj `5 Raǁ *$hh0y>|ګuSX' k8*l*czM]Z_Nrr{ [[܍sO(zZ]܍R p4 PlqӊQH#CVGeޒ XŪ\$~A&.6C/ $HkF?R] Yǃ&c3@m i:dwZ o7ԹdqHwO)[?&}dzv]F[]k#ABԾ3owk[g h5K 2($,&KCG#(W;u.rGpEA5%/:qѶ6I'ŔS#٨/: ;2 m`x;Fʼ"f:z'm8R__xޙ7*w(_!R@d8^ڽ1 hf삷PߖVQЙZ/$7Bi4w}c?N<㮰1 S0L]~w.]Da`EP\ċ0Td-ITiw%Fe˰ᖼ(8)}Vcc4'ʚ왃˙{F%N+9cTaW2K[&j; ovmn96 X3>߲E#rO^c; %4 +h?O>6LFMdOcQMzc{_] / Ґ9 iv Õ`ܠdש*Sm|s)>By]~ESkR$O +͎94 2<#wv7Exx WtB$.2aM>\nbbQ孫=Je $%~lM-|'*c;o/ ڻFJ- ٮ| Ӆˆ=Y{DЁ"C<_I=?lt!a2)RQѬ(26 S6^W%l#YM.9k[UH&@j= gUH;.R9לazY\ {[w k6\ WO&mktMYj2m ?\QF'Gv`cjeptX+!a {~Zi^s>j6Y߅YH3T˥83zQrJ<5oe9/fHxl35yl9\@s ؆WpM3i`7>v|1=:y[N^雧-z{orcW Fԧ9/Y%0Wov{{-~Ilz| +-4/[WɨJ #0u!}inTGty5_rV0?\YY[`AD/!*0Xհ) Wܘ،ʾJU{1g,WŁNkWYCQӡi~ᐻ)\ر2?nAgm[P)-2`/Μ ?SjvaK4Gq"1-򡒐Xyɕu'%Ubf[k5+:ls70sN`Ӟt;Hm^/K} c~ O|c$V-PxkKpEBįI}b{c<x{w C{%:1&Q,I2C?\U^Q8vurBD-'lRW&L+K5{ervx&fPFGAhĨոoY5 4bzuV!ƋNXbDnuFC.eD! z֍<.Q?\$5v\ <*-'f_tz[ߪAq=:93}fPVs.E3rv9*O*$~y-l% FyɜQ vy[hn-}=}37#ZG9M {PRIKqrS՚\q^O[kF*EHEch~aoF8Jqq иQr9% e7ddR++rKتqizhm&gd=v%v%(.{KyO/ilhCҧ"ٴ u0":ʁwYxOX B-M`;۲(>oPg[wҹЕ 4!ڽÛx“-rvgӦ%F U;+Hش>Q#(7U<Jv]hG +0a86-}͔DnOh$^R=oN&-b ʣwK/ ۵_lwg7]_73m?2Ub6 I7bֿٓPue^}YDK dgoGk2ît\T;*wf-ی)&ׇt_f]Le+'67R*[oF¡l;:H +}y!sT@XXCmjRGϚx<0@2qb#齶\ғWj< KS +endstream +endobj +94 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/JCUYCF+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 93 0 R +/Flags 68 +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D94Mɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\3w +endstream +endobj +209 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/NSRWIF+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 208 0 R +/Flags 68 +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +214 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 213 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +215 0 obj +<< +/Type/Pages +/Count 2 +/Kids[48 0 R 63 0 R] +/Parent 213 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 216 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 216 0 R +>> +endobj +216 0 obj +<< +/Type/Pages +/Count 2 +/Kids[67 0 R 71 0 R] +/Parent 213 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 217 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 217 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 217 0 R +>> +endobj +217 0 obj +<< +/Type/Pages +/Count 3 +/Kids[75 0 R 79 0 R 83 0 R] +/Parent 213 0 R +>> +endobj +213 0 obj +<< +/Type/Pages +/Count 9 +/Kids[214 0 R 215 0 R 216 0 R 217 0 R] +/Parent 3 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 219 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 219 0 R +>> +endobj +219 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 218 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 220 0 R +>> +endobj +220 0 obj +<< +/Type/Pages +/Count 3 +/Kids[98 0 R 102 0 R 106 0 R] +/Parent 218 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 221 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 221 0 R +>> +endobj +221 0 obj +<< +/Type/Pages +/Count 2 +/Kids[110 0 R 114 0 R] +/Parent 218 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 222 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 222 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 222 0 R +>> +endobj +222 0 obj +<< +/Type/Pages +/Count 3 +/Kids[118 0 R 122 0 R 126 0 R] +/Parent 218 0 R +>> +endobj +218 0 obj +<< +/Type/Pages +/Count 10 +/Kids[219 0 R 220 0 R 221 0 R 222 0 R] +/Parent 3 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 224 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 224 0 R +>> +endobj +224 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 223 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 225 0 R +>> +endobj +225 0 obj +<< +/Type/Pages +/Count 3 +/Kids[138 0 R 142 0 R 146 0 R] +/Parent 223 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 226 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 226 0 R +>> +endobj +226 0 obj +<< +/Type/Pages +/Count 2 +/Kids[150 0 R 154 0 R] +/Parent 223 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 227 0 R +>> +endobj +227 0 obj +<< +/Type/Pages +/Count 3 +/Kids[158 0 R 162 0 R 166 0 R] +/Parent 223 0 R +>> +endobj +223 0 obj +<< +/Type/Pages +/Count 10 +/Kids[224 0 R 225 0 R 226 0 R 227 0 R] +/Parent 3 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 229 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 229 0 R +>> +endobj +229 0 obj +<< +/Type/Pages +/Count 2 +/Kids[170 0 R 174 0 R] +/Parent 228 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 230 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 230 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 230 0 R +>> +endobj +230 0 obj +<< +/Type/Pages +/Count 3 +/Kids[178 0 R 182 0 R 186 0 R] +/Parent 228 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 231 0 R +>> +endobj +231 0 obj +<< +/Type/Pages +/Count 2 +/Kids[190 0 R 194 0 R] +/Parent 228 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 211 0 R 19 0 R] +/Parent 232 0 R +>> +endobj +232 0 obj +<< +/Type/Pages +/Count 3 +/Kids[198 0 R 202 0 R 206 0 R] +/Parent 228 0 R +>> +endobj +228 0 obj +<< +/Type/Pages +/Count 10 +/Kids[229 0 R 230 0 R 231 0 R 232 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 39 +/Kids[213 0 R 218 0 R 223 0 R 228 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +233 0 obj +<< +>> +endobj +234 0 obj +null +endobj +235 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 233 0 R +/Threads 234 0 R +/Names 235 0 R +>> +endobj +xref +0 236 +0000000000 65535 f +0000119354 00000 n +0000125810 00000 n +0000125455 00000 n +0000125660 00000 n +0000119518 00000 n +0000004048 00000 n +0000000009 00000 n +0000050694 00000 n +0000050510 00000 n +0000000913 00000 n +0000055561 00000 n +0000055375 00000 n +0000001906 00000 n +0000061144 00000 n +0000060956 00000 n +0000002823 00000 n +0000125560 00000 n +0000003740 00000 n +0000125610 00000 n +0000003993 00000 n +0000119621 00000 n +0000014425 00000 n +0000071092 00000 n +0000070903 00000 n +0000004109 00000 n +0000076363 00000 n +0000076173 00000 n +0000005055 00000 n +0000081666 00000 n +0000081477 00000 n +0000005991 00000 n +0000006967 00000 n +0000084110 00000 n +0000083916 00000 n +0000007921 00000 n +0000088119 00000 n +0000087928 00000 n +0000008867 00000 n +0000090652 00000 n +0000090466 00000 n +0000009861 00000 n +0000010825 00000 n +0000092917 00000 n +0000092722 00000 n +0000012441 00000 n +0000013393 00000 n +0000014314 00000 n +0000119806 00000 n +0000019962 00000 n +0000094747 00000 n +0000094553 00000 n +0000014487 00000 n +0000015458 00000 n +0000098757 00000 n +0000098562 00000 n +0000016365 00000 n +0000017347 00000 n +0000101414 00000 n +0000101228 00000 n +0000018324 00000 n +0000019069 00000 n +0000019826 00000 n +0000119911 00000 n +0000020573 00000 n +0000020024 00000 n +0000020528 00000 n +0000120097 00000 n +0000021716 00000 n +0000020635 00000 n +0000021591 00000 n +0000120202 00000 n +0000022801 00000 n +0000021778 00000 n +0000022654 00000 n +0000120388 00000 n +0000023877 00000 n +0000022863 00000 n +0000023730 00000 n +0000120493 00000 n +0000024868 00000 n +0000023939 00000 n +0000024732 00000 n +0000120598 00000 n +0000025844 00000 n +0000024930 00000 n +0000025719 00000 n +0000120888 00000 n +0000026446 00000 n +0000025906 00000 n +0000026401 00000 n +0000120993 00000 n +0000028662 00000 n +0000112227 00000 n +0000112033 00000 n +0000026508 00000 n +0000027518 00000 n +0000028514 00000 n +0000121179 00000 n +0000029087 00000 n +0000028724 00000 n +0000029041 00000 n +0000121285 00000 n +0000030207 00000 n +0000029150 00000 n +0000030070 00000 n +0000121393 00000 n +0000030922 00000 n +0000030271 00000 n +0000030876 00000 n +0000121591 00000 n +0000031582 00000 n +0000030986 00000 n +0000031536 00000 n +0000121699 00000 n +0000032286 00000 n +0000031646 00000 n +0000032240 00000 n +0000121890 00000 n +0000032981 00000 n +0000032350 00000 n +0000032935 00000 n +0000121998 00000 n +0000033623 00000 n +0000033045 00000 n +0000033577 00000 n +0000122106 00000 n +0000034147 00000 n +0000033687 00000 n +0000034101 00000 n +0000122403 00000 n +0000035270 00000 n +0000034211 00000 n +0000035133 00000 n +0000122511 00000 n +0000035693 00000 n +0000035334 00000 n +0000035647 00000 n +0000122702 00000 n +0000036858 00000 n +0000035757 00000 n +0000036709 00000 n +0000122810 00000 n +0000038010 00000 n +0000036922 00000 n +0000037873 00000 n +0000122918 00000 n +0000038439 00000 n +0000038074 00000 n +0000038393 00000 n +0000123117 00000 n +0000039675 00000 n +0000038503 00000 n +0000039515 00000 n +0000123225 00000 n +0000040400 00000 n +0000039739 00000 n +0000040354 00000 n +0000123416 00000 n +0000040860 00000 n +0000040464 00000 n +0000040814 00000 n +0000123524 00000 n +0000041988 00000 n +0000040924 00000 n +0000041862 00000 n +0000123632 00000 n +0000042645 00000 n +0000042052 00000 n +0000042599 00000 n +0000123929 00000 n +0000043316 00000 n +0000042709 00000 n +0000043270 00000 n +0000124037 00000 n +0000044011 00000 n +0000043380 00000 n +0000043965 00000 n +0000124228 00000 n +0000044768 00000 n +0000044075 00000 n +0000044722 00000 n +0000124336 00000 n +0000045085 00000 n +0000044832 00000 n +0000045039 00000 n +0000124444 00000 n +0000046249 00000 n +0000045149 00000 n +0000046123 00000 n +0000124643 00000 n +0000046911 00000 n +0000046313 00000 n +0000046865 00000 n +0000124751 00000 n +0000047612 00000 n +0000046975 00000 n +0000047566 00000 n +0000124942 00000 n +0000048315 00000 n +0000047676 00000 n +0000048269 00000 n +0000125050 00000 n +0000049061 00000 n +0000048379 00000 n +0000049015 00000 n +0000125158 00000 n +0000050446 00000 n +0000113644 00000 n +0000113449 00000 n +0000049125 00000 n +0000050048 00000 n +0000050388 00000 n +0000120791 00000 n +0000119726 00000 n +0000120016 00000 n +0000120307 00000 n +0000120703 00000 n +0000122305 00000 n +0000121098 00000 n +0000121501 00000 n +0000121807 00000 n +0000122214 00000 n +0000123831 00000 n +0000122619 00000 n +0000123026 00000 n +0000123333 00000 n +0000123740 00000 n +0000125357 00000 n +0000124145 00000 n +0000124552 00000 n +0000124859 00000 n +0000125266 00000 n +0000125742 00000 n +0000125765 00000 n +0000125787 00000 n +trailer +<< +/Size 236 +/Root 2 0 R +/Info 1 0 R +>> +startxref +125908 +%%EOF diff --git a/src/axiom-website/CATS/schaum3.input.pamphlet b/src/axiom-website/CATS/schaum3.input.pamphlet new file mode 100644 index 0000000..bed98c8 --- /dev/null +++ b/src/axiom-website/CATS/schaum3.input.pamphlet @@ -0,0 +1,398 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum3.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.105~~~~~$\displaystyle\int{\frac{dx}{(ax+b)(px+q)}}$} +$$\int{\frac{1}{(ax+b)(px+q)}}= +\frac{1}{bp-aq}~\ln\left(\frac{px+q}{ax+b}\right)$$ +<<*>>= +)spool schaum3.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/((a*x+b)*(p*x+q)),x) +--R +--R +--R - log(p x + q) + log(a x + b) +--R (1) ----------------------------- +--R a q - b p +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(b*p-a*q)*log((p*x+q)/(a*x+b)) +--R +--R +--R p x + q +--R log(-------) +--R a x + b +--R (2) - ------------ +--R a q - b p +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R +--R p x + q +--R - log(p x + q) + log(a x + b) + log(-------) +--R a x + b +--R (3) -------------------------------------------- +--R a q - b p +--R Type: Expression Integer +--E + +--S 4 +logdiv:=rule(log(a)-log(b) == log(a/b)) +--R +--R a +--I (4) - log(b) + log(a) + %I == log(-) + %I +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 +dd:=logdiv cc +--R +--R 1 +--R log(a x + b) + log(-------) +--R a x + b +--R (5) --------------------------- +--R a q - b p +--R Type: Expression Integer +--E + +--S 6 +logmul:=rule(log(a)+log(b) == log(a*b)) +--R +--I (6) log(b) + log(a) + %J == log(a b) + %J +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 7 14:105 Schaums and Axiom agree +ee:=logmul dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.106~~~~~$\displaystyle\int{\frac{x~dx}{(ax+b)(px+q)}}$} +$$\int{\frac{x}{(ax+b)(px+q)}}= +\frac{1}{bp-aq}\left\{\frac{b}{a}~\ln(ax+b)-\frac{q}{p}~\ln(px+q)\right\}$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(x/((a*x+b)*(p*x+q)),x) +--R +--R +--R a q log(p x + q) - b p log(a x + b) +--R (1) ----------------------------------- +--R 2 2 +--R a p q - a b p +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=1/(b*p-a*q)*(b/a*log(a*x+b)-q/p*log(p*x+q)) +--R +--R +--R a q log(p x + q) - b p log(a x + b) +--R (2) ----------------------------------- +--R 2 2 +--R a p q - a b p +--R Type: Expression Integer +--E + +--S 10 14:106 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.107~~~~~$\displaystyle\int{\frac{dx}{(ax+b)^2(px+q)}}$} +$$\int{\frac{1}{(ax+b)^2(px+q)}}= +\frac{1}{bp-aq} +\left\{\frac{1}{ax+b}+ +\frac{p}{bp-aq}~\ln\left(\frac{px+q}{ax+b}\right)\right\}$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(1/((a*x+b)^2*(p*x+q)),x) +--R +--R +--R (a p x + b p)log(p x + q) + (- a p x - b p)log(a x + b) - a q + b p +--R (1) ------------------------------------------------------------------- +--R 3 2 2 2 2 2 2 2 3 2 +--R (a q - 2a b p q + a b p )x + a b q - 2a b p q + b p +--R Type: Union(Expression Integer,...) +--E + +--S 12 +bb:=1/(b*p-a*q)*(1/(a*x+b)+p/(b*p-a*q)*log((p*x+q)/(a*x+b))) +--R +--R +--R p x + q +--R (a p x + b p)log(-------) - a q + b p +--R a x + b +--R (2) ------------------------------------------------------ +--R 3 2 2 2 2 2 2 2 3 2 +--R (a q - 2a b p q + a b p )x + a b q - 2a b p q + b p +--R Type: Expression Integer +--E + +--S 13 +cc:=aa-bb +--R +--R +--R p x + q +--R p log(p x + q) - p log(a x + b) - p log(-------) +--R a x + b +--R (3) ------------------------------------------------ +--R 2 2 2 2 +--R a q - 2a b p q + b p +--R Type: Expression Integer +--E + +--S 14 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 15 14:107 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.108~~~~~$\displaystyle\int{\frac{x~dx}{(ax+b)^2(px+q)}}$} +$$\int{\frac{x}{(ax+b)^2(px+q)}}= +\frac{1}{bp-aq} +\left\{\frac{q}{bp-aq} +~\ln\left(\frac{ax+b}{px+q}\right)-\frac{b}{a(ax+b)}\right\}$$ + +<<*>>= +)clear all + +--S 16 +aa:=integrate(x/((a*x+b)^2*(p*x+q)),x) +--R +--R +--R (1) +--R 2 2 2 +--R (- a q x - a b q)log(p x + q) + (a q x + a b q)log(a x + b) + a b q - b p +--R ------------------------------------------------------------------------- +--R 4 2 3 2 2 2 3 2 2 2 3 2 +--R (a q - 2a b p q + a b p )x + a b q - 2a b p q + a b p +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=1/(b*p-a*q)*(q/(b*p-a*q)*log((a*x+b)/(p*x+q))-b/(a*(a*x+b))) +--R +--R +--R 2 a x + b 2 +--R (a q x + a b q)log(-------) + a b q - b p +--R p x + q +--R (2) -------------------------------------------------------- +--R 4 2 3 2 2 2 3 2 2 2 3 2 +--R (a q - 2a b p q + a b p )x + a b q - 2a b p q + a b p +--R Type: Expression Integer +--E + +--S 18 +cc:=aa-bb +--R +--R +--R a x + b +--R - q log(p x + q) + q log(a x + b) - q log(-------) +--R p x + q +--R (3) -------------------------------------------------- +--R 2 2 2 2 +--R a q - 2a b p q + b p +--R Type: Expression Integer +--E + +--S 19 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 14:108 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.109~~~~~$\displaystyle +\int{\frac{x^2~dx}{(ax+b)^2(px+q)}}$} +$$\int{\frac{x^2}{(ax+b)^2(px+q)}}=$$ +$$\frac{b^2}{(bp-aq)a^2(ax+b)}+\frac{1}{(bp-aq)^2} +\left\{\frac{q^2}{p}~\ln(px+q)+\frac{b(bp-2aq)}{a^2}~\ln(ax+b)\right\}$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(x^2/((a*x+b)^2*(p*x+q)),x) +--R +--R +--R (1) +--R 3 2 2 2 +--R (a q x + a b q )log(p x + q) +--R + +--R 2 2 2 2 3 2 2 3 2 +--R ((- 2a b p q + a b p )x - 2a b p q + b p )log(a x + b) - a b p q + b p +--R / +--R 5 2 4 2 3 2 3 4 2 3 2 2 2 3 3 +--R (a p q - 2a b p q + a b p )x + a b p q - 2a b p q + a b p +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=b^2/((b*p-a*q)*a^2*(a*x+b))+_ + 1/(b*p-a*q)^2*(q^2/p*log(p*x+q)+((b*(b*p-2*a*q))/a^2)*log(a*x+b)) +--R +--R +--R (2) +--R 3 2 2 2 +--R (a q x + a b q )log(p x + q) +--R + +--R 2 2 2 2 3 2 2 3 2 +--R ((- 2a b p q + a b p )x - 2a b p q + b p )log(a x + b) - a b p q + b p +--R / +--R 5 2 4 2 3 2 3 4 2 3 2 2 2 3 3 +--R (a p q - 2a b p q + a b p )x + a b p q - 2a b p q + a b p +--R Type: Expression Integer +--E + +--S 23 14:109 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.110~~~~~$\displaystyle\int{\frac{dx}{(ax+b)^m(px+q)^n}}$} +$$\int{\frac{1}{(ax+b)^m(px+q)^n}}=$$ +$$\frac{-1}{(n-1)(bp-aq)} +\left\{\frac{1}{(ax+b)^{m-1}(px+q)^{n-1}}+ +a(m+n-2)~\int{\frac{1}{(ax+b)^m(px+q)^{n-1}}}\right\}$$ +<<*>>= +)clear all + +--S 24 14:110 Axiom cannot do this integral +aa:=integrate(1/((a*x+b)^m*(p*x+q)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------------------- d%L +--R ++ m n +--I (b + %L a) (q + %L p) +--R Type: Union(Expression Integer,...) +--E + +@ +\section{\cite{1}:14.111~~~~~$\displaystyle\int{\frac{ax+b}{px+q}~dx}$} +$$\int{\frac{ax+b}{px+q}}=\frac{ax}{p}+\frac{bp-aq}{p^2}~\ln(px+q)$$ +<<*>>= +)clear all + +--S 25 +aa:=integrate((a*x+b)/(p*x+q),x) +--R +--R +--R (- a q + b p)log(p x + q) + a p x +--R (1) --------------------------------- +--R 2 +--R p +--R Type: Union(Expression Integer,...) +--E + +--S 26 +bb:=(a*x)/p+(b*p-a*q)/p^2*log(p*x+q) +--R +--R +--R (- a q + b p)log(p x + q) + a p x +--R (2) --------------------------------- +--R 2 +--R p +--R Type: Expression Integer +--E + +--S 27 14:111 Schaums and Axiom agree +cc:=aa-bb +--R +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.112~~~~~$\displaystyle\int{\frac{(ax+b)^m}{(px+q)^n}~dx}$} +$$\int{\frac{(ax+b)^m}{(px+q)^n}}=\left\{ +\begin{array}{c} +\frac{-1}{(n-1)(bp-aq)} +\left\{\frac{(ax+b)^{m+1}}{(px+q)^{n-1}}+(n-m-2)a +\int{\frac{(ax+b)^m}{(px+q)^{n-1}}}\right\}\\ +\frac{-1}{(n-m-1)p}+\left\{\frac{(ax+b)^m}{(px+q)^{n-1}}+m(bp-aq) +\int{\frac{(ax+b)^{m-1}}{(px+q)^n}}\right\}\\ +\frac{-1}{(n-1)p}\left\{\frac{(ax+b)^m}{(px+q)^{n-1}}-ma +\int{\frac{(ax+b)^{m-1}}{(px+q)^{n-1}}}\right\} +\end{array} +\right.$$ +<<*>>= +)clear all + +--S 28 14:112 Axiom cannot do this integral +aa:=integrate((a*x+b)^m/(p*x+q)^n,x) +--R +--R +--R x m +--I ++ (b + %L a) +--I (1) | ----------- d%L +--R ++ n +--I (q + %L p) +--R Type: Union(Expression Integer,...) +--E +<<*>>= +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp62-63 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum3.input.pdf b/src/axiom-website/CATS/schaum3.input.pdf new file mode 100644 index 0000000..e958a81 --- /dev/null +++ b/src/axiom-website/CATS/schaum3.input.pdf @@ -0,0 +1,1944 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZADFFY+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RYAEJS+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/PJGLCI+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T5 盯t1e!oDl4;fӂͯb +jK$Sօvk@y4㌙̢Q56 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/FVFVNG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/AKKKLG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/HMGMRM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/MLMMPW+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/FGFNSJ+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/VXECUR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 673 +>> +stream +xWKs1 +|Lj/#2Õh{(SB ̐lg7[owPK$KIkSY6!ūo7K_sy~wrl`͊> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/IUDUGQ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/BPCHBU+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/VNHICW+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/GHFLWX+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 838 +>> +stream +xڽVr0+4$ebM.[i:$3kJזe#[:uν2cdN#y?(HEfDs|B'P΅18wϣM p mM[g[XȏC!O@C5y&߅_/"OQ9, Bęe +=WkWq10 t7_w5*)Aʺ"QGz!N>Ť\Aa17T$AK*.M*bm_+D4Ȼ}-#. cP*6'Ş&7BY!nb6I׆ʂ#NY\PUe)@8J o^H`a/)݉9ϊ77[U1,7 uG*4'ʠG}0x!TShlZ 1?KXw~WZtgvSKn{*Vn"7X!֔~3Ǔ.o]y|WI4F^OkaÚ/|Z*Gm.]2C&r8(F=;(4tvq'vN +ftlߖOeMg)'>\@%Ӻ)$x+ 3aQQ |AaHd_j:OW ZWBe>oS*Ǔ8Ig _kZB^vjMϥV5Kh|]}?̊rtw2A +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 431 +>> +stream +xTKo0 W2)KIڦ!z4;ͺJV`c~h3Ҥv jSRTg{EҖ>ސ``-8^0!#pcz"˜-6[IvWDZE$0 kK%!z%aRz}m{{4F9 ̡u•_':ML;>8^`Cg5,_lTVZ@vuJǵ%Sk!.i# +E2stZh]- i LL$$#ur-#:ܒg T6$ү7ήW5[Re+lӠ.Iо6".2/Un4}ok/> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 866 +>> +stream +xVr1:jk_\#10`BdƁb{ZY4aC$KZC0F.I; OpRGb8XM4Y?{7sʹгw +83Wx&pnAp.ogʁ*ѤSiCLQ+^ΐk"9o㹽C;ߞ5(CX]4q;=ÁVIv9k̏ ,X:s6`ʝq eJla^peJB9s`톅 !cEOIp]S(Fv0:*.`t#JUTZAz 2i&P.j7\m1\Vjx(''AYEf*8`u~GX|$d,KH.cRRAYXK$nrv1_J6~0j#.lħ:?{A;ؤd2do§Hk#>Ǔц'Ϩn_&SmmSa۵|bCytVp6Qr_|nfrX4'f*ض換44a*^6:KMN: Nh8T_q̯/Q|jQx83p,|}hk]Oj*T@G UUssu鬩ۻ;嗁1~i\rCh[=b RUyJWuy08ãMUn/>_n>ɓ[o9*Ӣe"XK/bRX& [NÃG@ +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 1017 +>> +stream +xWYo7~V +i N>6K)몎Y9=jvoL8ܐpL.+IEvjB`JݻO+QW׋,72% M~{1*G?O^\0 E& f1gW"rˬlCS['ȃb5)Cx(N}8U#L}ЈfmEk ƵcbSXH_Ϧ.i'ƆY5JG +.XͤLS9Ü +0=1M֧۾pjX A#lJ2gGy]-9@/) 7ö mHKKm=viʡ|fL92H0_!jKPgCT͸Ans +h\գb*yR_#Z KRa"pF `8nW6x*Ia=ȫW$ \3JaIn/[tKqfbhEoT#)> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 305 +>> +stream +xڕR0>Ea4!3tinBDfZ@,-Oɿ6QP./@SU7L"{ֻ~E ΩɼZE6IpLpj N!DG]i'_\KH|]$e 3I. N dΤNZ=s՜#ٚxcݔ;p^)Ls7mLۖu΃~G4KXE'L>MZx8fЊƘGyL,38g3H <c\ԕxQ`o~4* +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 1095 +>> +stream +xWKs6W(Z ,ޞS0!]HNf.G~-`4{EbRf5dǕ*Wŧ+6?^73o)\hK4B8`jt ፸:Fq1Zzjkm+,(}e\K< 3(‰;AablUg +++42: +qsЂ:kf :` +˙Ff*WgYq1H:S2FP&B2aH:1*cGZ 6COC!:1X$Ty2.db#bD7gtDTSRDE¨޷'t(VuL,}=q*X&E*NJ ex<ôS`?+ ]@'LvlU{$R*9Ȫ$q:T.8oH3)B8LM>SJ̈́<{g5e?N&*RcK ?Z%cNx0Lwݏ CsjɘbۈgAYcA58ݮAt,~Ba:Y6cu[%T]uY +jeQMS)WTTsoa?fC\qV,v0y%՜jxR![;ql,v]3#W:0: b n15ƹ4l{D*ËxU'̃Dle)TRR۰4M˔=$戗njp{{u]UCy-LZt,]lzDdf֗`)9N!T/nԧgt=W۷kͤ* +endstream +endobj +82 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 314 +>> +stream +xڅMo0 9mN@BAitڎ؁Chu~'_og<ţF8/zcY5,+1th*sk:liUlcp 1[]͜q_5ꉼk +endstream +endobj +86 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 1165 +>> +stream +xXKs6WGqOzƇvtc^&*Q6Sw(>Ɖf)v < wK@r!w2#9~j+x}AV۟6/5+x RZy_1(X&yLNDtA /,S.@έfYk`W[*C? R9W1, 7~`׾NL5V)ᩊKr]5)1,W^1 ۻi69ta.S8zδuqହgG5d,PD3"qT &>w]05S5W% ITk\n%;y iI nIኞ٣9:J X?ݟבϦ\SF^R>gLi%l2@R) +PBL--EmAtB[:(pbW7dbqYEx>Etj(k=:y헕(61|g=< $8쬞Ezoz @^bp\}dUvi*O=Cj6AYB@p?f 9A !ПD4ʮ"cn!OoB:n#BR?cL j\2EN}j覐˶QLsBKPCqDy8wChe/%/a_=.3Ep4 zoeasށy> nJt:w EM\85EȲE=-IQF0*RMԜ:<NVX7ȄǮgR.7Tq2CzbSې2&<9M.z }i~u>#~M#]\y[Y\U~&5\96w9Rz=Lu qMNsc!ϛ}}_}:Khzc̍;Ѡ/^}_qI]Yyd}Xu?˛7 +endstream +endobj +90 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +95 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 94 0 R +/BaseFont/WRWBVR+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 970 +>> +stream +xWKo@+4tgߎqpFJ!$~<^u盙e8gzdϧG(Ya/"Xd`5\\L"=?}bR)j<\oa LfQNN֫ /njT1T (BKl2~"2M%Z}@ީ5dj<9Rb0 +ؒIn!{[^t*[B̓جe(fO.ց@Sg7@ h&F7&T-}˫e}=.7E3CḮ&A(X8h|l&Q(IGVF.: ^0ź)V6ŰԑAXl uvjVGD@ q]KP.T l{o77͞n(%n +blWFtS#.2Vu6D+Ek}0^wy\D$-jպ*zje߱H%W1 ?ig >汢w;qUozk iKZMc\bÃH3N 7c #ކ j3RwGYqbׅ@N&<^}|_/(|W󻰚mE19< +8XѧAh}C2пuі8롋 %gQjuHY{Mw:3ZSefWL9upu^;`] j[iqڻҽ+6oõeKTf<>f3 +endstream +endobj +97 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F14 95 0 R +/F8 38 0 R +/F12 56 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 739 +>> +stream +xVo0{66Dai;e ei%ie1HH׮Iÿc¤-X5|`f皁Jwf@؈qBGl2!( e@x5tznX"Jʵ0ٶ%e\ħd[XD*<ù q'EM,bn*"4 &Ur0+ K)jz/PqT"V?tp#bi % j˫qX]O + ]Q3mdir=]T! $bXG$$0?EAT`ࠑ oLHQ'B' @]M$%蠃q/. +όm1wzT7|UdGteU夬';>Ql˳l2]=MXAd8O4(i'[/Q/X漆釵~P~A鶗Cpz.i7F9b?1!(I0Uٶ?:3͉bX6y>V8 Qɳ;k/\벍{_l,AC'Lx1~>"]mVde<_mxi.j]z~dJVg_7UR +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F11 52 0 R +/F8 38 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +106 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 105 0 R +/BaseFont/UFNAAU+CMMI5 +/FirstChar 33 +/LastChar 196 +/Widths[886.4 674.7 855.3 1144.8 726 578.1 918.1 1361.1 1361.1 1361.1 1361.1 458.3 +458.3 736.1 736.1 736.1 736.1 736.1 736.1 736.1 736.1 736.1 736.1 736.1 736.1 458.3 +458.3 1083.3 736.1 1083.3 736.1 749 1036.1 1037 996 1109.9 1007 867.4 1064 1110.4 +626.7 772.9 1138.9 955.6 1284 1075.7 1047.5 875.4 1082.2 1030 856.3 832.3 943.9 827.8 +1279.2 1112.9 824.3 943.1 597.2 597.2 597.2 1361.1 1361.1 597.2 774.4 633.3 649.4 +739.7 677 684 700.6 827.6 533.6 588.2 758.1 480.3 1228 880.8 702.8 739.7 658.9 671.3 +670.1 563.7 846.1 722.2 1009 791.7 730.6 688.7 533.6 553.5 889.2 736.1 458.3 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 832.6 1152.8 1047.5 +966.7 1017.7 1110.4 1065.3 840.3 944.5 893.5 0 0 1060.6 913.3 790.6 746.9 654.2 613.5 +666.7 743.8 677.1 549.8 827.6 840.3 849.8 712 666.7 831.1 726 815.2 681.6 791.7 841.7 +864.6 930.6 458.3] +>> +endobj +107 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +110 0 obj +<< +/Encoding 107 0 R +/Type/Font +/Subtype/Type1 +/Name/F16 +/FontDescriptor 109 0 R +/BaseFont/QDJVMN+CMR5 +/FirstChar 33 +/LastChar 196 +/Widths[402.8 680.6 1097.2 680.6 1097.2 1027.8 402.8 541.7 541.7 680.6 1027.8 402.8 +472.2 402.8 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 680.6 402.8 +402.8 1027.8 1027.8 1027.8 645.8 1027.8 980.6 934.7 958.3 1004.2 900 865.3 1033.4 +980.6 494.5 691.7 1015.3 830.6 1188.9 980.6 1027.8 900 1027.8 969.5 750 958.3 980.6 +980.6 1327.8 980.6 980.6 819.5 402.8 680.6 402.8 680.6 402.8 402.8 680.6 750 611.1 +750 611.1 437.5 680.6 750 402.8 437.5 715.3 402.8 1097.2 750 680.6 750 715.3 541.7 +548.6 541.7 750 715.3 958.3 715.3 715.3 611.1 680.6 1361.1 680.6 680.6 680.6 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 830.6 1097.2 1027.8 +911.1 888.9 980.6 958.3 1027.8 958.3 1027.8 0 0 958.3 680.6 680.6 402.8 402.8 645.8 +402.8 437.5 680.6 680.6 680.6 680.6 680.6 980.6 611.1 680.6 958.3 1027.8 680.6 1177.8 +1316.7 1027.8 402.8 680.6] +>> +endobj +113 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F17 +/FontDescriptor 112 0 R +/BaseFont/PIAYQE+CMSY5 +/FirstChar 33 +/LastChar 196 +/Widths[1361.1 736.1 736.1 1361.1 1361.1 1361.1 1083.3 1361.1 1361.1 875 875 1361.1 +1361.1 1361.1 1083.3 441 1361.1 944.5 944.5 1222.2 1222.2 0 0 805.6 805.6 944.5 736.1 +1013.9 1013.9 1083.3 1083.3 875 1113.5 919.3 782.1 1083.9 770.8 988.2 850.4 1194.5 +819.5 958.3 1055 964.7 1567.9 1126.1 1089.2 997.7 1132 1196.1 868.1 822.4 873.8 898.9 +1367.7 996.6 929.5 991.4 944.5 944.5 944.5 944.5 944.5 875 875 666.7 666.7 666.7 +666.7 736.1 736.1 597.2 597.2 458.3 736.1 736.1 875 736.1 458.3 1097.2 1036.1 1152.8 +632 944.5 944.5 1083.3 1083.3 666.7 666.7 666.7 875 1083.3 1083.3 1083.3 1083.3 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1083.3 458.3 1083.3 +736.1 1083.3 736.1 1083.3 1083.3 1083.3 1083.3 0 0 1083.3 1083.3 1083.3 1361.1 736.1 +736.1 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 1083.3 +1083.3 1361.1 1361.1 1083.3 1083.3 1361.1 1083.3] +>> +endobj +114 0 obj +<< +/Filter[/FlateDecode] +/Length 1423 +>> +stream +xXYo7~ؗR6-./ͦ T;$v֮593;7Y0X_ge%]hN*T1N & ouӞsC",F +hrA,. +-'FQ %>sЬھ1+LYNi # +(v޶USo}NPk bev۬L55rT] lH]ƚpC(O-Z8e7u@t" ͡-gxDeDmrןT\mp 2Gj0jBxƣFN|#w}#-6O䣌 +@"U/6.lK \Xn + 'zDv +XC!R y$ *Nv`LS|z32Yo0jө\ĺW') i_6۞taݕrRSI'$He[F8NӶSS&BU7.'E帩M; +&łrR=<&hXl30):gj0f_%q64] +u&)}X­$og b&4-1C!T .ֵ7RrJhab 0Po,;kY5?) +oQ"V' +wUsE;= qsٝ ƳL*vв)s$J~YoDonK/^O@۸ _ar>]|[n|At|~ڽ_u9ku^N}!/!oE[l)2FMs#iPݳ)VCug ?W( +J`,-ҭs6^U%fFN1&deu9ooww|P/)yY}xS[~5MﶛMfy.Y%͕`:(CU%_4@ +endstream +endobj +115 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F7 35 0 R +/F3 16 0 R +/F9 41 0 R +/F14 95 0 R +/F8 38 0 R +/F15 106 0 R +/F16 110 0 R +/F17 113 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 115 0 R +>> +endobj +120 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F18 +/FontDescriptor 119 0 R +/BaseFont/WWLBJJ+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +121 0 obj +<< +/Filter[/FlateDecode] +/Length 265 +>> +stream +xePn +B`תuJQ[qqb?䇪}0J ,fS +HF92`^*7t#M&ZVA8cD.S_Osa-NHSJ2(]dvNui}p©`]Q@&ގ0 R]XDj#:=Qnqy'_.9PqUR/*R[ K-J%9FL,/d +endstream +endobj +122 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F18 120 0 R +>> +endobj +117 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 122 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZADFFY+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3902 +/Length3 533 +/Length 4450 +>> +stream +xg8kՄQ A0ʌ^`-z13̘1D'z0$5H zYQDD$Zco>z~_a3KI-$%!R HP +ND08(+CZ@0""#8݃r)0(D<Zh1@ +Z@~(hrGcҿn8_2-? (z)d\AS:K\O43gpn2xJMi3tjy ʯWjҾ]>!6iW|[:{*﨤W 'Z?D֭7W'zB[־ń/M* ;$P^0iP%>֔ +{g ݱKՋ[GVҎ?Ќ/gL =\BWH>z}Y!V}YHI6)'֕ҷA cM :9i,d,i n=M3cq({VCNٯI8Wa x2ª-:<# +5?ݽ$7ml$gR&Ä#M٣= y%tT+V8v¸+3=seH4#A β34EN] gϚ|a&A*nr&<$::dqj1 !PFZֿNn})7R kG"W8ZTBB#y +MYF +w8MپCddBحɳ$s7R}"44ߝ|L>)AV ¾G83= {2 K%tDֳ"#Br-?sP($."@E5`9kgarD{Gzg=U-jSEϕZྡteQ+ !qS5d-MOH}&"\ά^O! T]f Er}D +? ? {wrNUJR,( OTݖF亜#eYGf5=L^IK1qq}]sa.icRNc^;o p.WT0_<?xY qS`해㌹o'$}mDL3=s܄ۯ=};MT;TvlpQHa`Hbjx~3ݭ}Zee$M,m>L Λ{wUd'Oc jEm;' F}a|I_ _v^ " +u| +aX;k,&+[+76O>([j&~fb1vąfffǍ@U-ZׄNuv5~ҳʞn%Kk]^;KkNjw6^*lymjʜ,V=CΎyP9~LLoTÃOk qxW|;TZsC!Ӆ?^Z= +tgW߯l +2=[:tm#ho $ЏO ۾Im]DGw!$30ua$ +5|}&+#tv[Rm-P\)]#eG32;3 czTwHo[N M6{8W4?ݘQg_|r£]ֹ5XO.TTu{3 + mx$KVѿ$pPtG/ھV:Eu2dmkz@۸p?3a5s!,'xuLۺ33Y,_KdNO7Y։K;oc^ɜ +HuN;$)TkX3i\ܒg@X( +_"i+d҆JVٽZӪ+^SS>]=Z.A;Y~0`k1"bEI%;^ˤaۓwmɟ)3骜\٧Ko ?af߄NU Yc_ _a-0j&+,B:]ym;!R免J>|. +XI[ZPr7SɦTq6Qĉ̊?s 8]wctY{O&6PPwv0?lePx m]3?E'HrfIov]f%=ujh#3f-3V!ܻUxaJ@e&<^VA3ARY([Ibz^th[1x5ZQ0+E=˷wwoj1ǣ򀴲_1 `\Oß>v{iBoa8S P}F8]JEɼ<_TL\O6jkQ3Whty8o:) +@T[8OhזB3;BE8!{fzk =Nhkm,/ :2cTlX5)U7'IHP+o^TQ+]Ώq PyI6O1 ނPcA.>obM1^?=I\g7^gSipX"FG>l{6/:,=v +ÜAo,9=gA]x2240J )Y+ pG)=e;hRne=`p3kXq`tvq'YOL\_Kl(sm$ffKwPKUc+-[@2r='9[^x O!u֒d8jb%K}W'3Qԇfxٽs`&rҚIHEۆcL]]%H#Hʘxdxsa}9ƾByx#fUxTEzݯC1Qju8F +Ā > +-u띜9d-l !aӼ]ZQ4.[iӓG=Ɠtqu)RfUViKt?o31Qd"IQc!m=quPU bϘ+P,z\Tl"Oy.!V%-%-l-$)DBU Vw7fO+ިIZzw#ۂkEۍ ,IлIo(T]ب?9LOlZ +bU66LzsuN+#t=u[L˾6B"C@TԵ,|2?ޛ{L+º[ڀt/c6rM]N9j%k`–4b.ˉjAAbii) +zzbyEh ȍ$`_,*Γ.JD!}򇪤n@@s]Ooa`=Ɉb8 +rC# }׆_drJYns/ĊF-/.)7fe)<0YvfB'-/b@!PEO!GFNnR +n׋B>v%Z Gl˵iNoT/#NrJr@/@aOި +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/RYAEJS+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAVUS\OWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, "Gݘ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/PJGLCI+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON5ŏJ2 +:@PgCϘh m1Y AJw(ii;w;?7= {J- DKPY3GG736b槩t´LEd\0\ %b~9z)e˫fPb͋uWQ= m,f[Xa}$>B]Rz)9 ]<٤##فuMɣ\ڨJG(I;w]Ti*M80vetp%54H]N(qI + YǴ{a|Y;<ŋS܆j v:k%+zO{/EJKgmQ{ziDᄇHn6E'-َ=B8,|/t#k_ ˛X9<(tS@hl#+m\yJ*:4I $iMU{%4:6a\ez 2_3/fL2 mq d֔#&g#'˳[?Bi$+!1,{Щ8 2I 1~JBE3W̌r7|_ykqPr|0 O!(pT0KoBmˬ%a\^mhWt#.gvG`T mرs[;{m>\РXLU"M(RlVФsmЉe'eFiɗC#4福˴?yKqcLˑ/Wxɱ88M@x8T)fΏR5kF:Zt{Yt~CO{lQʆ;ShT8vq+ʽ#%^*yQ?BI#! c^UtI.ڡYvRț= +fDQ r2?OQ_A )<HG69['Fd.As.X3d^у rm=7j1чP>PSE]Ҕ+lq=J5e էܦ!.q9"[kg?~Fh{>{^rz]^Lfs[:t-K,v"mlp<>ij:c~y`1qnǻ (:tjy$j;U&'lF5bm}IpwgkKsTS1~=Q[7:yg)UpQ3r馮ɲeƂ],7 +7Ch7`ysc3U #u.(OdֳoeoS'%> +R%K C$O_|j=<_]Ѡ1qQj+'IDrvg߰Sr9Iݼ %p4 "/ph s7KA_>5!ߊ,ԋ/{6f +eȚW-mgxewNe,=lREݚ=YDp rw|~c*)w6kCn) +kN_y}Y)**=Us_B#?{LX-c,q5z~PfRe iþ|`%HmVaj_4vR $53DbKcG}ZlI!hbZo-WXB쎈j=)* +LDvHu>4x(05@'Ǭ"<mZۣ"'YkV ZyST݌XvDoœV-L(4klٖWMGhuo͊gA)0^ȿ6I6(llazNN%fqL]>Z'|9S :!]m^~P#Q%an ֙̔s`ߐ4yƔ.uIz| +Y#k9z˶bwdlh]o =|>}^vj&8 rɴsy飁#m~K ϹpBS@&}gA ='lυ6QՇ(Si5 GK`0XD0RBiC{NH( +'Ф2Dsҧ g Pq +%`֟%';QF" Un eϺ8sdk(,.2sʇ{KlV2Md5UeҬ[l (E_cCF؜%!GaޱX'$F}0_+akٷ?}}cg{xgYzg`͞WD 4MVxaѦ~Eng6R$0#U8F$JƩQi֓~#Jݸv_ltlf:}*NjuM%/yW8W=CgĦ(aV9ҫ5?#Siׯ6:5m\hmƿS񢴶 +& M{1Hd;ped|ɏ& +vp1 *F)o>q n .`LYιS Oj\&~9Bn=, ҈K;H;{/7(8<>Qs~%Toy<;qr`#-N657ԫx'vkzl]sz:Lɾ#S-^D|tӾi9܈{S)U[e2 A$:zbы@n2Z۳%%{ c&;膗9Hp%My!|èfV>΍d/x:>`"1,clg1Y紸cTd^*>*B`nG]+/_-sKƈ%;>̥]RSo4_6c|R[i)(|i[5q'!14r.4Xkac]N⫴z~1-pPe2W*AHr黥wtDP +&LM{ b$Y=ӮBKANcD-1pdj- '3}Afdָ 'p[Aʌ3)vA~krwߊ'vrF"ٶcBZ`\w\x˘7i#.{i21~#휝PL9ׇ5U+x4`;{Fg*4æ_ha ,ѷwz;a!)F*"Jċ#X׈:V$vCw.BȺ-Zɪwͫf0'T6*Ai;M䛨;:ե2T +*n̠ -w=L6>穓1qHpO %_xjAf8̘OuQML3׊3_Ə&xbTZҦ_뭺[Ivų~GM)ƗC%*ƖsIZ_Iё|np˴~{Czȷ҈!m.l"@JE7ݳU7 pDFf#Y@R}ƒ$x?7iY YOƵ.={qM\ZdHDW \^jl(~pD>\׋|;͌qF~f (UڭAcI;L/+ɫݹF>>&}'^ɅCуfuCO9cS r(ouMGhc +c]O\k3\=b|x8?F@~9bF -۽' aiYGnC <ٮt`4|ό +VKQ} vcQf uV^$a=*=[CQl= Ta#r.ܷr2hV/.Kۋ=j0sy%E7x>p=yOJV9mN$CbTdT#lE {yuA@頺 韤y4WTFVi|pb{ $z3M-v_s1޲P_efDQ`o8ri1|(QJཧShɹ}N9Z+Qs5%*lH1 SE8>Vj o_1y: +/OKbz#Oy@> kf޳53aJQn6DofoV0Hl|F )x-vV0$GLy=D \JRY[ojU!hB =0Qmt9Ii狁)B@%)<1񈸘=h;T'ʈzFfrr_A5e_@Ir.(P|{f1f'KE0ۗLџ !oDnz|T̊K2%_&mŘ*<&2>W}7 w'dZjIU>mp75ɩM˵qdF;y])_aTܰ^iu:8fa?i]vgt"|G1@VD9.Ep)Ru`aha[ýYQG6˅/a'rh2x=,E|J@oPvLy^b~h0HERݍپq:{{R%ȟfG2K@&g4}Z! 癨&\mU1¡ܣ]"T#{q &!66Kʃ'D<}N}WN^EI":N:tbN 蕜槁K!&=[ l'SxQFyuѠBݙ7rD5Ά+US;/&criӟ c%Uڏ-jDnEBt]mm=G5.:ͧY( UߥlG,=N7O{ dX; +8]vm +XsL-0HhN~']Z%>|Eָet߿hV)Eܴ<3!!l.ugk;'8O*La +LG '6~+NҶɩ3 x1C?r|2ЍrUK.QKQa{ɽeг-Gn>REjeكM +7eH]iO37Xy/VS'p&m<v}2{NT,iI 9zJѡ}-RS7(CNdi>aEz)D8dSzͱ@S+ܽ<2.1C&Lݣ~&HVzx} 2,䁮W>ZaA%=>OzGV#An4X2 6#n,tWBCDdh~C=MpjZ* u{ɖxWf ?ދ i8`;X lf_?̀؍Ka?w~7(L<ʒ:W\٭<>Ϭ Re:W٭ZQ-aYcW˰zŐO[IE@Juٻ0UwX`!ޕ@9x`Kvz94@o{,IENH5'=RuדYJUh 3hvޔ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/FVFVNG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"t) B %E*"E:4"* Rixι3ΗyEycv*Yubccrf|,_!2F`uMs'gKB5úur25^LvL#*VZ &|N^bF4VW.!aWfG"fA6ǎ;s`mk? [&S\L)ƷSf؆nHsK58"Y!؎2u֥-k~wS|ARi_ \ǛCC&[eFK A]TijF4nsXo'Չ#Y1vpz;b9.-KS +d6(U-z{S>Nie&(V)=brI'U<:Y+tڿoyk\]ߖ:S Ceq^1+pϖ&w +bTn+_xe3x&܂ 4܃E/r#esp~IA;O~%Jsbj;FFɏF.پN[TdW6|+emSYo0!r{WP{Moƽ9w\GbH+v=I=aʚswvM9#HYЏ/KpxC.ou+=F_D޶R @L˨pAupĉTqsmu9w [Gd窥%@a{YNIZ AH~i^sY*6A0/a8]Z5e:&<=z2)OzrhZɷfGC6vc5u%R%VF+#=F-04!"tCʰ'J*[fbi.qk]^9@|4f4s?O/~;;f'#ʔqް=u5(EJ]|prq-BY Th@SXa-dqlpvdc]tfWt<=0칻FL s <~lď&1wѾ0fsB$oBmw/S"ꪏ~1^I%#F!#7wWv*HjY7GISCyWTg7H22xnPTze#+QʴDɆ =3n v+<o}vԛMjiҡ^g {s%QՀyĵL|"b/i8xkMi1Fjn4j \p֠=1-hefxL_,گjypOw:N'6$ݓ٣Z7y=0+M'=4mXd=Hãn$}pCY_3{#=smt42oJoqf0G7'xa*-SwI`zxQ;ԪY)o'ƁCkZmo-nc7kSE3o1@OtEb]UgyDlZ\ѹ|}Eҷڅ=\$;԰*„Ksmɛi&?oK6/ޠ6)>~7حV# "uL/)ɠ}M[S M+]5$gsO1M wa%6Lb7 .єٕ \'֡#뷻&y\:$sX8`O>{a0˵jCYQ)Hm^+<`d*87V.S\?|SX,ugllЗ50`.O)xIu&); +..\mpwD6-ՖGٗ^F8iGu!Ӣz>iFv'p") | uSC;T{sQOt\6+wwPqŽ'f|#مA,hiU WII^)/0 sMNro`{h7$]^^za|8%R%[ڠ8)3(t,EC`G4wTYDɒ!Ч(UVJQm> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xgTSkA.-4iz*$@$ҫ"M ҤH%Ho"J&-4;k;_fͷYsggGJRuEc18I)  #P 8$sCd@ Y>bq(ȫX@ +J F aP @/L`P + C"pR6 +_%㏀KQSHpGb2¸aJ~^,#||/Ip,#ܨoa/!.h` P[Pou( +!|X8w)ompPqG!RH_}dn<nP/wbp`?~_Us(߱A/+s!r[7= GbV8(+T::؀ I #IY}&(+>&@*)*||pݐB 00+ Sl@6ej(W "3§ +LΫ{U'CʒYC)֍_=cCuQvsi-c+fFtO|\L-zf3!VOZ-j`Ou":og?>`yg=~w/^ѿan;v(7CG5vg7%dt]t -F} +kgK}t\~0?קecџ%|'iv}k]/Vgk;xl +> R1^hmvז9**2]fM*-ECՍ>Y:p"Zj xXI>:pXNAkn@:] >)$z"(勜 ,%Sj.Ȅp;Rmך + asHI D)$0(cxU᝵Yޯnq۞79{ԋ˯=/ʥ3,~0!I`LJN~VgjtdކCyRR9gm}'7(7y?fO)r*G,ZUBe" @<;'kzϣ+M{iP5*h`pޭG{@,K^aLS̡Ƀ\_Ď1cSXcrQ\Ԙ3p*-tU uh9 +'"Mc\t%NeeZxݱ /3s̬7EX;,#S 6VoTAmP\>+>$˔ĺxyZ.](Og4!](РpDϞ+1)^eδOp&EXXUmě%fȳQa߫c`ӠImi(Y +brru,KU,zi8(3kG6(&sp}% GJΉ/mZ"ؾljy}a1g_nn̿43Rm[uJڢ

+7u27hgۻe~G_S8 +RlUBG'V+hތ4RkkGWѲ|YF:2cP做V+EGff2oo+-bt/㮭wk9uQ*Rҁ,v)tphŽ.in5U%G<:BRp샋dIjQLEL4QϒcuΖp3{ EVgQL1S)m c:2M@U.X(nUR8|Sls`i?U 40W%y>҆Ƶm3o1S*=E—49l<vjT.;珒sn+qbx6.e˂#T-*oI0뫝_ ჷ*6 wY3}jxXM[Tb(IjdWG\ ߲#MVj1NnWQL,J Gd:q[n~ď׶%W'e}:Nx`[ƈP8z.{{Sv@"ҵK̊9d!^aneZu|/]z03TSSF.G_{LO #^殻leP+%ܔ8i5zCک3UL愛ϲ )WK:3法aTEʦ(vYGuvg9ؼOLg&sӁ!O=a4!oug7u2U0p&/pPպ Y7I} +k~BV;0]lH\ %o/PђiK3MԟOQm0pnY +egFBؚg +~IeNJcBp +w~!}/\8ey2).B̈Ewݕ)Gb6u)g +\׫U׬o1=U5EufW j"Iųi;Cy0-nclrhr G[zv$h%hЈA-Q:}ZzK΁w!Ѫrrv4T݇pZL^EmJ3z۹Oɥ:#*Ɨ*En9h?K(lj +&]ܓ7/jUeDrJX9;m`ھ0k^yjt)u쒰hX0L A=ܚJQ}Obg~x_Z%_!+@Ak]wM*p*Jv +OΝX,RŲ]F;5|y5¯{Umy6& !};4tu4fGO!bʝ* կ=dJ*If aj7Ȱp%2Z,]Zd|'n{SROsX[^=) qڼȠ٩`sSi/Gײ^^cYqӞ|LN:[ܷSx΃hxiy"|¥_;0M(zoԬ-e/*;Hi᩺9IISU1KC_;V,S:[9 TK_Ic;F4\^;ĉ L?ǝACs%8G^-yvZw( q2E)wlJLos;\LJ}UTvs!;s!Ssko`y~t:Ѣ<-p(Ba:AӋTzЍs #IcNBzrԁpKwOar6Gf䅝SPH|e}~Sr۝}*+$ork3#g$j$+;uNdTaxf_XX[u#Nw8S0Ħ&f d`i1کeP6u)( 8-]F2>6-u~iu57;b ~bȗDaS8 +nMtic݆BfIeejAN9̦9\^ǰ58Q p vtEW2.RQ}sg`)C:,٢<p=~~aW;PzyK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1063 +/Length2 3049 +/Length3 534 +/Length 3750 +>> +stream +xSi<}&%KC:Yo$$ +\fk)PJȾ,]Rf+&3멷o﹮/yyMe5\GHsYǤ> әZ})X挽ʃvp[!UqΦ8T% jW33NDZ=np j_Lb4R$[\-cZk)'F}vc V$#"tYV"ۺn_oMKxGoXwbNskܩzG_FLYzVu&5Rd2/*R[++}7,r'])'1d{R83#>kr2B%L(^rkjbRíR.[wz c.UK/|vgq\eA IԑRpem׮XA5ybYQs1vnyimlUzQI]`xso-^d$39SCA]iޤe*rwdUxk_߲z&j>l<̇7BEnTyHM%Oq36Q7V8.%ymNws5ܙzȗs1ncaMsyn(L|ҥ)fNֱ~=KSVr ZfK`‰HEݣd=7癬{A]FކنLCca/M_JԄ6&L :Eke_Wd fY%n<'Ώ?ny].r\t&D2e/9Gy|"OՕږ,>TQI#gD*ĦL&׿ csn 3a\NchQ2H|?𨠩~vUVH7^E/%3/NإE+LJˮAy˂9`YFhY?:d/}.1j~z|۔S(|<>T`kV{nJ}d}ڌLg^꽯x}x~rkvyoWRq~fOAsWX9WGfat77!!|O #]%5afjKv{~fD }2e4Bst XIH+X>a-(C6>5~˙R.-#sjا,`] KFG׳dQ53?簉!Do,}ump2{P.3t!qbFE^O2¬%5y;Z4tnƸ +_M()TjP6 ^۲欄;X,n\j/k~ +\k + V!ؽb6 +uQ&I>UX;n.k OICqw8T"uWcͰQs6ŔdT< i.V-],L>h3nFBw JƱol^^5骧WKWqz\u@mXhDneEL +d{X.IsƳήrbbCx[mS4KI<0mCGuТk.}Sg"OWx琒I |^g-5Wgu]zZ/=]=nSax+{>WcInlcO9̫|b>Ε +g=R^s4f6LEu|̫#ԛzY_ x,BxTws~իܓmYzekLfVT1>TU`y[ίf9Ow˲_M@_Vټ&LӗXtS"c؞- '݈K?AWȆS>oU:Sv&z\r˾O>6REx>Թz4Ώ787Ϡ$ NeZZaMAsjX̞'W_*"n6YMdʬtW¡ {w g] rP]"aF(*q{&9 FU9n})kg.3\R VRxswk_C7׮8H{nL*.Fj肭Et:h:=V|\Дb[JdYnh#p6YGWZ时A"S=rrWCwSRe5PsVfP6#B>/"sHU;W"y)\2sjvl9]Q5՘T-\!UfYPC"J> +LB_.*7[brHa:n۬p,m<\]ު: !!J~&DRS?Y]P圑[ro.>U:h zU8K!ضI)lz{ A /)ɩ|w)B M +On2t˛?ǫm#'Bg3sfҳwzCS +_T߭<*|Q>ph/r@oD +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/MLMMPW+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2819 +/Length3 533 +/Length 3372 +>> +stream +xy<}DM/2f({vR=33L33"dIXm˾%(l!{e !:=:׹~IYZȮDG(@p8TRRb2ICQB]]0E%RVB)BˏBpS=?]5BbH9`1D%T??xAo`P(X* +HP?Ind@/GR'L"8 `A>8<7\ЈD ̵?k?k^4*H8Bj gkv"Cr'< # _gIb AWP0737k!~^ gW}0% +ppā{u.dXQ1$OߩtuɾJm#Uex5I4XP*)T4 +$Qއ/v# }A,4Z; @(0BSosHiiԶG_l}äΪOMZlx7FM (lCbؤcX9?ZkLڗy|KNO>iSw,}K [eUG߬eva^Q[i_)+-#V}!<[O~\\JM8G301ECFꪫG'8}EU{&k|?轳஥ewm_vhG\ s\ʲXV2q%ZtoB2UdzEEl4Uw^yt\A;r1GF5dϑ9D|ahr;GiK"D/u!!G&b"9׻yc>-s`{^`p2-9w#/ax5Z +J1M OтwWI.1s9̯-T>" 2ļ+F?rF/V#buɫu74^BMfyr\uiH.JɯNG#6Y7vbHykZ/68"/Y/~u_ Ia:!Pw#Lgjm=Y^5QutC}*(`QP,:)1YYK؉'r\ +l,&0z{Z ևcWz J4i/DO"?l+Ь>|LU>]iXN$llPA,{ T͕h̅'vd5AJgE$MD}9s|^HC𒡴5֚Anʆ[kJ~%;oC7Q$BM3MQ-*^x#e>ɛ}+r vjI3"JHY{9sO:47|E¢e놴v Oq}Om?WZXD=E/)pKi/Gg!WF峧MW60O߹Y^ f7]vl;/m^|[n #Bƭ9'3kK +^e=ݴrs{W:@AY]h5ާG g,-u5&ֹ,4S m#iAڸK $<|B90)2C~ܮeS`fndmH='h Y|x{/i 3_6qGͽOyP%bXצejAM7%x䛆WS%IQ>_{o`$=Yh`g N9ddEon%ʾ4,vPwh_T\̏ss:iY~$S_"G_>:ÄYX/_N9>M%Q )+Su xwyf>}1C:8;GyԬ\Vgb,}f*gSXMlxb*5UL|TrQ+vwVqQ]k`-tF1c(4rMi-Po6}#)zU"]QZ}F]kTNLqE{H0hiy<#-> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1669 +/Length3 533 +/Length 2200 +>> +stream +xgXSiJ(R(C4C0@2D +Aqw""HXE1N2XХ 2F]gu^o=y9wUS2X. . +3A" ӎY @ch4Ch>9fB>,@\0LDx"CHD +@ S +pK "Oh^tk&>d:Ƞ iKYcC}E bK~/* +QTF dx:dҾ:_  +~ZdJk +B@"^DJCiq–`@jvD:fF (] +7o_[(D'C4o"D&_!a=C_ `A$  +eJI +d2A%[! v5GOU\. |^?CePlEǤ'+MlbW#e\I,[E=wõJ'öErѰLeGz/ bPO3p6):t *sk3c9 +=57'>}TnQdٝ}`7flNV'WHYTʻpƨkFq{Gj_X!޸r|;kbjbS'@~>IeE82xMqq)ڤa^}C:.tVZ[=p&v,g\)ڟ}2]>Gq(w.-_w܂^[V[mtR[ +cޠ||Wbse^.g[aڽ95ITpֳ~])ia +W-_b -@˜'I5fiLtE;vcAʴ\{]Pr-"x.Q%>#w32Ckj W^tGA{342Vڥ܃HoWYՌq&qn iFm[GRs<=PD,:h(3 +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/VXECUR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 2661 +/Length3 533 +/Length 3205 +>> +stream +xyXAbCH$zw *|2{2g+$r2?HG0'TK_Í8%{YKQn I  `@"W`ɾvMHhCy2Sa) +K<81I;kg +œl~ FUΈ.85PlvA`^ Ǡ +ur+ $R Bf^ & +B]MI]A&A/'MEFϗ 1(䥹7Mth;Ĕz3alqٙ_ׂfz9EUrB=)O \LLO_^^c\}S6p ܼlX/wਞVl#@eQLQ @{u6YC0~ ;[ӾbHHtԵ1)Xu^ȓ(0i5Gj`Y(8LiM}K:.\VxI5uL=ǎ*% BbƹSt zTCږw g7讵>_2UXçGuG9s˃zDG|Um){C<N[y"r8T#zl SC3^nKC,]l^OFSa I~1k9XϨג2k/ژ< OQ"o[? hk1+m#^gu=,nBB'Y&jWQK?a0P1~:^\-<ŭ:\IY&Zƛ㟪}loh?")drIhi (YwCS쥲Q>-(F[slQ5!eU֫~6r^w"z}-.̾ƶ( + F![~Y6d.RhE{SHv`:/Y3 X#k?uU( oi7!o焁5Hl#KRTrbMYaGtLg5C& \TbEï]nҳL +h岙r\A/qcgzqd r-R]mYv,ɜ|RRL.BmTtv~b>z6 +Y y#Wj*.mI;\{͉_hU(6?6Rgg'*jȔ0[ ˬJF +߼ =D9;,'8/l€֋vRtAWCjs gr:;ed^3Q'jů% + ntx9)ܿK)wbA{[etxH|[ЃA!l{[##mHIE4x){Pd4>uag w ֩`Yœ0¾Iy̜ eAt+gEzSmV2*խ,ޅbj u`鵦Wa̬Iv5;Mr27n}Ix "8TP$ɩf*S=q}Jv#dd/."ٻ~@ɍ+=֊nĵQHx //'

Py +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IUDUGQ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3344 +/Length3 533 +/Length 3898 +>> +stream +xi8kkJUQKMi%5T5DIVլPcW2L[sլyyj 5.ʢ{}>}}s>]5cX"  +8[bb$,#Pd,QT)<Gɱ4^$ )Kǒph`"ag!h'a @`'>sŀXY!&8Xz"@/CgK9H$qbO*kL<{F?oC4F98O8x/ +K1XVk_pFX {Wġ Xa81őn%`Nr6zZfݿ(| > G؁A`0xseݴ h"GpXQ Oߩ44 0 `( /_7+PT K Nw6$,E5&pH !]( t IHKO#VIl?F }@X]#~ 4ԏ;K';iA7;TI!ƴUBRxGOĦ+Ǿ0FV?LlN + aa4N8d߼RĔ_TDAd+ﲈMyxީ8يUk<:Y,7=.ewev6ӲVh/2gj j\Dŵtj^hpp |k`Q鏐s'↗!#:ilrqTFgq ᭚|Ayk- ^ +߁@`6GuG#!Ft &y[-b"fKԛ~йX gZyY) N߼t,a12컷Yd=Htڽ_s Ӽo(_g\!|!zOdzgumo=K |ժmϽ|B`<eW1@`8by8iz}sjn^ݩ{濌d Q{sV~µ2:%ZHb !{ l3uo#rF$%?IJOᅭS`LCK S1x-Eed%L'j{4yŒE);ozsnGF!D^Y$jcm;&][jvwV\шK6=2 kf|㥧\Rf**7C8槫C1סLk,볘 1Q{{k's%j0*xq7f էF&u}Xʫ{4`~쟷UzQy'W`x)3LyR,uC:{87bSdob빨_ tHV6־cpUf&F1[Cft?{?lWC0b=)ϐzQ&qcK3?+ccέlHp땣DDN| :Wj>3E)@S@TseU {.YW,:6+D^2b]K pnAAQWOC~~UyMRiJT.{Xᗓⵏ;)JHo&6*ܓh1a *#cEEݩc%e>s(r#o9>Z̲ lߠ_4좋h WQYB- m8[h_:kfeRY,qQ2—l}.l-#7% Ъ{n!9SX,Dk /d 09fVQ>vdLNn|PLVaӖk: LIzHsŒMz?r𫦀F[$bi!.q,N/He2 BR)9" rYh ]QN(AQMZAkO6LcY9'JBֳܿ +M>6ࡎ!sChQ]n4Co,oW } 3p+Fk=vR( v79 k`7#yIo}!XJHuxo)[q**W?*)D1(A !+_!D<~̰]f2ݰC[e\/&?NsfʘԕZ3}ؐ쨶`6읥ob+˕twQ :RЊ{_ ֡8r2ր`FwyN'J򰮑L]YVB$w޼p$AG4|q[=1UJ76/l-rirZW/7)[s5~Im,IP?r#@럋@rC=}uӑ`U eXyptQ)PSV9d1\xU-{6goѧ&&L*UZp=" +#ut;lO9V61inºusC3S{"WY,83oW&fR<ʑ׾؜|vzlMO7-7`mav&4o*e*̚8s$}Mply&_*m#d<ҫY:,w~tMvfCuQx! A~cDQr~{nrQ +=6ӫgRbq@yQw#E>;)WA{C{ Ş-?INㆰ0qdsٟsw+4EjmZ?p;zL6uɚ:Nm@Zw1j`d3JQndW.*5s.yDY6'"$wXPY |["o:RA{k 'E"(+Ӻ +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/BPCHBU+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 993 +/Length3 533 +/Length 1524 +>> +stream +xiTWbV, +#KUQXd2CHfp2 Eź.l" +,."A%p46S쟞̟>ЋtA0C4l1LL8I!4`Hrg1&MFR0y.pc.@EL "'8FZ"_$`T Z10 P\@0L A("6*,`D՜% Q,@p5TY1P HE""W:"E8ZJc(F#0CqxA#"\BE`vVK8 CpZc:E=!kW/2W_OG;z!8AFcb/zL.k +F+hjK i@ +5+)c8UŲїJ17`ABaJ0q0L 9p/BjZO]jl/2 (yM36Avk NDJΕUEOdbk#}Y-(5vW;FdK'o{~K9ጒzgLwS1|-^޲4]m\1slcytmk:}צpy|WTEJΑ-?&w/ṋ\ƢSUaj&*,#:'=PۡuLmmF=?֬94je$d,u`WX+^g*Iu5!|nTGWWv&(-9]Wֿ.TnY1`ɾī iOW,q}߬綡t'{"G^4ׁ)9|xNdiظT:~)؂7Pmrݴڋ]3o4ο?_ )G8KDJ ݯ/gs zG5EY=Ojz4zܾvyE [Is4zIe>[)C4$:s’ˡvYE2 ۬jN6\im|,]BjK6,ν4ɔ:ahސ _bT1=J\ zNZFM#\$ gsťyKZa|'} ΑT.6?i'Q{[s'WzXwa gbѴW+BngɞaQ{؀*2m7mWKeT{d{8,Kj2=|(;X3vbUI䰚fJghenI׸ώݚfjJb9W2N2rgn'7=-_Ժ=O䪉 ++qhm섾{S:沍_m Ǵ,|`> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0bGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&g@8}ׅM$;: +Fح(o:r#!f2ʂu~O"o5~za:;* 0ٗk_8%& c1cF*$)MD&OTH0267V3:0`0*)Ʉ!?k2,N "!"Q>PTԽR7 6ce'TJϬ֝+JgV$]59<yp-毡I,en:}t6j}hmrKpRUCK) o i泺cR62ڇ|Og+Ro[)W#OiJ 5e7Og'kv=g+*gǂUU; +WFm=^);ćFT?|!sxf*\OVʘ}GYG~:r)ыJ0;5rK@g Pmso#_ف~9Ww?iCӷ)eWU0Tr +8 G'j: O.G D|En WSެ`T+om㩍FRxX˰~PiVHZeKF$se/\6Vj¬U`"66ּҍ-hL\Aإ2 dmM j}Z ^3 +xT~h3vj[]6}ͫ!X(7v橂 +>d~uO9Sω}VPGV<`OCKULdt=ѺCCN\]v5]_9в4oï#KK1|F"Г,'ȏ;;n>^+ +O/QێDIżZ+21~nvH9hR]JXLS +mήŇp%GU)AKhʾ٩wk"vxmar9Efw:e=k6IFMv"_;R ̿6\n z&A!Ÿc q>vwNvބߛ Nl]`exO<ּEr)ڃU(*ڲAEsߞt9DŝjIM*lZdiGx_\#;faJE,BߗQ lNnir$eܷu-a'iD 8uϬ9ZÆ3 +J\k5UMuE$#q݆MC!f]-y4 +c.Gw^y ]',O'Tpm'1cE˴5])Z+tM*rJnN2wVOzOg֪y×uǟ[?S2ӪV5c[ =k*n)G&U^hm-a'4YU5zɡecj#+/BDKg} (){rs,ހ_9z +3uo3FZVp7X=rLNͨ:qfCV;su {=%Jq~.ΗzECF;we~|dĪW#lg'yǴ,&\S *:**ڡ@×ܽ9ȬiO^` HTd3hDf(C@ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/GHFLWX+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9745 +/Length3 533 +/Length 10301 +>> +stream +xUPqww6qww7Bww !!@9;5ԼMMw?Z믻TZ֮`9W/VN6N!6'C +[xٻXx\I7CHAUptu8ղ[{Yz2*LlY0GO O}*JY" 5ILp)ZE74Џ5$PX d\VFhAF$6P>΃W 6%/'ZX;:c]!rpE2{Vp.[sN$J'z1O):vW~j#ݺC-ϡ}ڶw6}zKFAF+ ᇏ@ TIoϥ ܲ:JqS$27Y*!|]o`-q A3زQoys/'[hn}׺Zw&AO607\*n^{7|a1PLMVMNvƞihvJ"jd`F=FsG%OH]'̜46 +q,^+$fO6 +/y=w~\\2lejsVRtUoZϑVhZN& xi +]ylܝ`K +T-|ٸI;ץeX9yhY&GNw*dgpŵm+fmR{`=o@E7ЇhTuRNX%g@֐_m-YmTiPI^~@H ]f>9-a\ro=+.qt- !'GV|f_ZB2Cu>ԛm}hSE^%Trx*gP( )67L(:kSOV0hηOƕ>=+2-F8St9iBG9x|G1p} [N,v%i?#wO +ª5X F4r ՟,ܸ󭭲(Ҥ D%)Ke-( *ߙR)#X:($W9geӘ@r2 /EX2^ݣa'z_Zcؤ`[RPސȼR}OYB +10 SV9򾓯(in{~!<5 EgfsŜ| hːd3(a.aߓ?qZ4L]hn_^pPLfj +ﯣI5a`&IeFwәi2<1%( /)U8!fVLQ ߛ0qf>o3>5BՁsbß3~0͢>X,vNpG!Ct/oi/f.T25R'x2tO}Ӕ+xm4.4yU9tb?r\ϊQ/1N!;A,OvWfK أE^6+]>"Vw|\?D=:;ggcW24eMp#eNϤ{89yUԴ'14w@Xy$\qoq/LGޒJ Bk}X;9DYWw1!_q"jO)?RG]Z!(z:&,͇,~p"v5zo"#ħOF&I֨1-g&y;0mQ% 1l? "ʠXN K  8\$>y_,3%/]JeU + ? 03J铟̔hR^ eJ`N(RyoO'y|'dȽe;=F\hp4 +Fi1T䪅"XB]kL|'PB(34ZjSvj6t@m߄!Չ?eٓ]jA]LLX)Xd]uwe#)Jfw}&UF-?\]VyrU~2 h82zE}hSzX+!ʡM|Ǿ E4%1ݴwdg,=Ͷ +2#jHBDB +u*Pz_c@$iJW,*Slɡӕ-o'76QY9r\y{Ns֫4w.@+Ykڛ7X4~ˍet% 왋QNpߜeNRQQ'<圩|Z8h{K0RTl_vK&7*읿pl/'U2^Y:*MF]Dd 'iMД z*ȷ8D0{Π[ůdr8[:N Ñ")!TG?x]KUf,Ga-2U!m_Q9 "&]󁁅LvҎ} +N;ٱ}=U2Gp|d3Ɨwmo3:?u}f4kZ ʒUknjP0NL!'_g߂*}K0vۡpP|:2%^!vPB^[/ח Nݗ)-"a]W2'cFb94H&)sL#8A*dLT8fE" C|l AɊG3k7Z[1$\LOت8:Ɉc +[4F( tv:'5p)}BCQ<}Ħ~nA~g6*_hy(2} +ʘl8$bwE PqhmTTI?'Z6 e85I\’2Hn^/doԤ#a$t%W+%@lp#X;tw +rlQ <]r0AJxlTz)@>&}f։!M +Eq3GkXN(`5 xO+. Ȳlb~4NI1Ű#I%GOG1ir͍>T  gS$PiY S,O=Nr:ےF}8\iԴ 2W"M)RkO-aYřX-bP[ s<~>L +._TUĺ]wxhH_*;wBmN^v_1 ӸH?[B  +xc̤¡;χF|ءՖ"F7w{1o ^mqCf+,Ф%!&+yjbz$_< Q{FPZAK +-c@J4VgtQb&jߥ ! `]1Eln8г8 w`1WDZ)_8g];B EݣP DŽnɨϖh8@J+mi o2[%LRrO[B:u4탍q^pX|<ZqxMV M)N'Q}2X4ʹ[&OCfbQ*i#Z#}IK:'ū|FT,| h>U'+L˝N@f:{gٟ^X\ixK:#>:>:wnN+ԗtKS8aLcĠd̤!hZE4)ƺY%S3-GETL_-!"NʍwᶊJ =Gc->D > Y+^|f/NCs]f=>[a2gD.In%e* T!r'V͹+KhE LWi Q~5<uFͽe]7XF4jS>fؘ`[^=_)" H/Y\Bn& ~Â:ӽuD6 : y߂h72-JƉABۘ#97Ҳl5}^zta"=bD) 7:2n +傏z4k+$bB P5HK=Vkb;WřtWZ ߤt:e1CGZzRw ?ϢHXVR)ҴR>EKmDk*@ŐZ3c!W̙IHVz[4ԉ DMjeMT%?rf銙"K_:7\#z<ʬϢ$WM ]D T>U4bto!J Vm]Ty>"`bũTէkx|NxuRSf؀wmњDHAeAPHlb/y^-hԉo`R3Ç+p?-A˫|Uv>PB1{Lh-EkGYܳb@}Z#`VK~,7hdHm3nyb_U$MC>ah7vjˊ!,=qEw܌%@Dg*`U9ڬ_jPM﫩gxagL@ /'Ĩ@*DjE[v\Noqs whϝmcY0WT<ѯF&9_5>.O΅T+!=~fɃXx~ + uz6ظgξ\RAZjt0o~1t_'߾4eEQ!cȮ,6 +n5>9Ht2'ާe^zefԳ]%W +BhdШ4.vj<҉VUZ;uٓ9|[N" `ٖ4KpD +Zsagȅ6L^=0C1cb@Hv +Hz +n'}Og%?C^U ތl+ꜘ ~,|?`5V济e}v`:,Uˬ#PbƸhW_ (0jt \B[OR +Ij#S2 ^4>)(ϻe'm;l`D lƨzn˰UpkEk8ocoےDEˠ}ڰ8WO9{0UlP8vEY*h%v*ܴ]\F0h槅.$ɾ.  S^lic##t'R6pv:P\_@4hN«4C4{iԢӘSgCeFWioYT]=\TCqn4Q)ҜD~ +yB|֠J`y#7lu4ЀjlG5B:鞀:“N)`=E$*~9f:x#_z-JBre\ʠ{erwcǧF{Q2)B49M(&(ׂFdz3 +7CpۊP0~@IZY!%Q~bݑanb 'ƁX2L!#$֞YT\ Oc=NR1`SGz1Yw M6 e u&.jCt eHHW̰?V4Beg`Jo˫D1<+mkFqH_::\sjTT 2_cy;Tk7ZCS~Vh_oə>7 +Y6btØ{ijW51/6?pBLz_̜^C 3HJkTB=m" ęlD`iW*n14h}% +r/ BYt5 +3FW9#8aR B/ܤѭe*Kp2M'qyt^2Hp{_ǰ;fv^Iqt-熶{ kߨ6 +ߓr~Ԙ0:6 +T?t-$rUMps>K2rI[|lSu^1QJiᄗcaY=?76Zw hfdAajwy/$]&Y6L̖&&GqKXl̨+x,qԖn9giE_38?8IPɞ*TlbnʏwS5WxP)!v+=Ssض +`w9ݤ6Y$8GrɘMʉ0YNPw=$p}Ia74v˞a񚤺T'#1(6C3 j}ʐ[XA iRr*Ub6ZeF+Jͺ6v"s^!W@sSdr1PF˶^kI0ͯON1|-d-ր>@KP*~n .cf,{7i*c4)sFS +wQTAa+DqS bMek,R8`)r7@7Ib@-?;dRlJU2J$slsE2KԂ\=ܼm8ە +[.%|J,#DHJH㜩>6Wmύ{;9y__ @Gg҃G?mkdTnY'~^QbSg.SP,J'ѓOǔU-]e0)ȩ+1zF-pH7,ђ1#M|dnIw߫oJwɳ6Sv>o.%éPt ?Ζ\[[FX^F|?Mˡ/W=NU"}]VJ)2f P L¦d\V_|=_r0mL$4m';(ºxMQ2<) %FLU5l;AG%[A~Ýtmqë.w5ͤ7 ߺ&Rt%IC牎RDaWVC?& 樎!%.XwVRU\j]c9,9'TN*Q j_]t4iQ{`V>BFDfm6\l+`1qLQ=yq'GVZsQ]o#iWO7ϵؗzK=u*/fY0s,+`atz B ע &٨WQh> RW?W>) $*re1w5FBƽO&.|9DGAe(v͏`\o /A]C,~ ɾh86voO߃'K)GUg胅mǬNTn% ‰9jN5ᢇ捣J#39Lt}o7xgkpP=4t|-`lz\}Xv|tK̍mm ԂI3t7GA]xG2L_ ^l_ +3'cy䧭f/=ګ$UZDY;gZDV~ +g8R;[wۖ[v|j4 +Z(&=Y UOV8QyWOۚ|NW?" ȃ`X@G 㢰n(=uyXUha}/Q5<Ў]CߏံSk)r\ZNC #B"}SKsH.f,ج1VJwW 9_ERO iOd݈!&;:> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1108 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?<(),Hɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\#x +endstream +endobj +105 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[37 -250 1349 750] +/FontName/UFNAAU+CMMI5 +/ItalicAngle -14.04 +/StemV 90 +/FontFile 104 0 R +/Flags 68 +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length1 723 +/Length2 1657 +/Length3 533 +/Length 2192 +>> +stream +x{8ǻJ#*ۏ114dkÙl\~3~ cF.)$w!JJ$횄Br\*[Sh3tssg]YZHUΥ6\_5,!<‡+ +4~(`clb5b`0$` AL?>eD6ȃhHl H\Cbl A /`X,@h| +2! ʞ4] D\WR s9P2`h'`PXA<ȡO"jW讳E +ễw{, +<1 V$of͡q £3G( nH8a,ΐ0'U΁`1!i~} H" iHӗ O0/KvXe᣽ĉeC,Pӧvd_Jҍ8⒭p\Z,ntR'Uׁw6[ţ +Ʊf[_toJ*[./ݸ/9&V(&a4GKTZܵzupSUF<27IK%L0{P~؃}:=|3;ZUX{-jeZA gRa[V-gGi )a\,mJ[1OCmwv1ynԑ7פLVK2l od/%go{gvhNKvbzW1I`CDJ᫑  +U:Y:uiڶ=3G+EpQSi:LgU ;NLjF.dɱK7٢yCJ:ve~zŬ+[ݹ<\rFMV~$_D?ݼhb} 3sz:kxdْڋY%FqzhϽI,v7h|2aǢ # +: g~Z%He[MϙC3xLop2k W`Lԑ>JCߎs9YVn%f_ v!`Pl*<=!^9jXTrjZjr|ĕNY2J2w{G4pމY;4<^ٳ&%ۣ[n:ya߆O2)1{ITsvl6i oi^ʚmj bYRn)qH}P><| L= ߖ7WR; +kE誁}%LJ\ fVgdŽ@WUZ)vZ;D+e2z (3(D^» %ىaa|s9~Q#Y |7E5&)r޴Z"W[WDz]N;w}&5В#*PM8C.WeHmێ=#\KjIVB%Y]D+7ҀfEym}ثTM5uB/g{Kb/Ǫ(ecdWc4 +Fӗɶ-MϳxyHMX`A׶'}(q{Ra]fڊnӸEzwG9`70@ +eSx04hk +endstream +endobj +109 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-341 -250 1304 965] +/FontName/QDJVMN+CMR5 +/ItalicAngle 0 +/StemV 89 +/FontFile 108 0 R +/Flags 4 +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length1 717 +/Length2 1353 +/Length3 533 +/Length 1886 +>> +stream +x{<duG.͐ά>3 O3>n@kS?h #użZYKÇcPt$Qz\};DY0 Ѕ ?fruEc,,I Y-;ku"DVD"v"\=Xax (bb>ؗ؇"ʍ-h0*iI0ZRx>wqq+{^P^I٩컠jY97xrHk@;ᆲ$8Q/Hx脹oelzn +f@惝MA͡To΂mܠz}n{~FS/<'Rv=dq:ȹGw? L`S+Yr2{$s`ƬiPܻm2'ŁhL7z +@b$7Mʓ}36-a2U揰`_fQ^$x[%mAD>?Et2=e~qMPA~g)Cf~ %ȐY\AwJVc:19|{_Z˼5  j[HyY#K +Ň!i^A9 y*j5|7-1?)ٚ$t]#@&|R@ +wFlKY>nvN}Z0fRAoC0k-cNwZ]L5~s 6~Ζ0Pѫ Ͼ]6e^'چ4]M)FW_@ެKdqS 'qS/b,./9_Ybul-U'k*7H;!y؉ }/p + sh<]X&|`zhIx}X [?W zhM-tG5پ@[,4!rR)3d=IYQyʆ 5TZuʚY,45|mdbx̳Z̾UzʗSo_UI1xQ{HϨo׋UwšZ;l䣇u)3e}T*q7uo4;F#Yd1%n;-@]w9&,VK)uF+w{T+p.|ڏ$z1ΝC0m[(JjϨ0z"ص.:, !|/:pCߪU{u\N7S Bwbx=!-{&WܥUo?4 +x/X7.dkW]?q ZW l7\J73{3{〷AnShe!(`rcQߺ^}k~F:Of⤱.̽v&Fh&v0/< &ƝHgӎ3.gwLw+u +s43Z!_nl*Ѭr!֞-Lj+}4@8iOV8?3-2O6"C//'\ Q`0 +endstream +endobj +112 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[21 -944 1448 791] +/FontName/PIAYQE+CMSY5 +/ItalicAngle -14.035 +/StemV 101 +/FontFile 111 0 R +/Flags 68 +>> +endobj +111 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 600 +/Length3 533 +/Length 1108 +>> +stream +xSU uLOJu+53Rp 4U03RUu.JM,sI,IR04Tp,MW04U002224RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?12Uɀ̼ʂTj0RQfB!P!Xh%d+$$0_Qmdkib`hbb`niX.4/4EҢԼpZOQjjEj29:_ĹfGm2;49)ozsǵu>/yM s9sﯼsekOryvO [y%ɾD}YQǚ{ׅ]Ւ=*]bqpA jSʂY ~ćHNJ#J;9MIŭV'jʫi>mNpŽd?̪ѯAd©N7cv<[ɯq!is +-ce>ڇS݁z2KpbӸe7&:| Zѻq[uҜ=-Vgt_}p֕g[-a ƒXg4,g}mVl:2=잧+} eWV.鬀O1Ɲ[}gnuL_6[߳?[DϹ69xKgVi&qe׸\~mP XbXv&YkM*'J|>RZ{%_wq}/rydvc݌箥y.\w`,f˶]s$>7(䥇g76Yևvs$W=1_;\HoX (\ sRJsMz +endstream +endobj +119 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/WWLBJJ+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 118 0 R +/Flags 68 +>> +endobj +118 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5591 +>> +stream +xUT\ۖqw "TK $@p  8'@soK~{sEO. vȹ8A@@ZU[ 91!0% " +}>!N!.N z;`ftC-0;kKG5?^hA< ^00 /ϖ77'37%`p^ P=\Q?o}K'?.N0;@ qwU* t{Wftu<|P9Yl,= gA~O }})%%ؿPg+/5_!C}Ɯ@NNoO[M uh,JJǟ {#ը u(x999T=!ΰ?7/gm=#b! +oFzeq3Jm{hш<#jC &%lOqN=[)8Df5%y|_;9O<~"f\O.Ӓ>!,> y;'H"F^6xkUJxHҹQ1}I\7P39p"\G=\sE'ű9{Is˨,WlbZJk'[.2 @CN4Z-!v#W]rOU3` yx;y0X =j -18q,(48[p` pT"|_bCiKmP'ǒ:.|J;[';iA30IW>tt- &Aڇ`X+3N|̕JD)X4:Vz 93o7Ǻ"0 *Yl{q?y1> +Š,fi Z5|DP 9agǷh7V& +\J][†qDDJBB|}YqTbmCi6RpG3,'M?d<9?RFbjXtLH<RjFiHp-;.1j'͉їD p":pLnj|O*"t5MaD ߛY0Nі7ryER>>|qH)Kvh g g$|఍.\trؤ5b j+F|]ï@v%[C;comq]VKgofvxÂ!{IfE=3߱m$)) ,pGiXHZdB`Yil,m`Qtuشq[1 Xf-y w(Y70d+NT;tYQtsS!rB~Poh T7)M_|ʛ2iՉUTMrEJc 튭qDq[l$آ?Ͼ1̝eܰ j8<*E#槿-{83YA?Ў\k͛f2XecqSKЍ7)mZ?ǾjSuG僫ʂe?&fYÏTe#Y1BSya/%Spp@U?'b$Ň(}4-GR!)g;כr5ɳFd? zRzŔGl=+ h.g\-waZ)r 'dl~F­nCқ *>^䯒Ik4zCsX@uj2rަ;\sָONTʵ Y!TnoץT4بfs F,ZJX^` {_ оAϏβqa3rWل/ >r(*0^'Qp_AhE|FS}-@5էڐukAz{]יEq{Ed]<NGw2,w ilf՗iuZ,)/>lg.)V߼#-Gul_2Y4qۥ}W?*~r&RxRq^GIsm :a +/F⨥fY2.L#l GV-/L릠y/Αd>ŭ:( +c +=h] ]y?)e z ;lpE?Fx;_&AU1ъA135%ܪK)3\Pwiԏv-r,8!aDi!FNɡ|@jtB1ҠipG8X[t$b7W8{VV3cn"f Ƹ8&b7-}n+`p׿`ŸjvCՁ8$FNyEV bfS.13m=[+:l9܀c}9].7^}&\zF4VsY{: ;=<~=lz. fU?G%]ejܭ╎I7?V0_wYމPFprGl@cx 'ӝkBфGtW !ן(Nu4ФD1QlZO۩Qo?OE=Fzʽ7JhAyT%qC2 u?%>0K)}m.SJzB8cEс)gH5{2¿w Aff5w`rXe;=3I[R5k"9L7; ޒ &1B<Rc}y[l`{vȀ'8#Q$ydbغy9 Z4;[l2i ls23/!s WE5#=^~]1i7dDG :B ʼEB̈blM#, +#jw8GP&s{H;ok}蹃N.xR{ÆLui1E}͏Xu&bǥA?rA{zRJ@64$G1'jP-檆#i?7 f(2df]k wp8E4aUd1ٺxM#j֤1 9rƮC݆N׺߅Ҡ경_H|C |$nw^|G~$pB MPB`Ί"KV}&_'˓Wk%lH aSG +׸>p#|I7$%(j[ش>S5\ Ѷ7RYParl8BOǗ6Q~O}Aj$Ngol༏C1FqaRB.\dҞc7xƸeQiߚFM)2]Ԍi5́Na*B4K1>]%oy3gqω+d; ^v)7>/ G/ͷp7=xpQr9Lxo-A":V%%J*dl߄xװ? O;M) +}#Ć-f"ǣ2:TˇsY.vGK>Uu,o6ГW ѿO3H^ 'ur +2[Gv7u%x]Pj.. +/8~oծb\Cb99"ȳѥd5~ <]d_Sc>9 \Įhu9(Ջaiw)P'_HRk:iʊЉ Ym_ b@#KQu`MG'+7!qJ:*}in%_:5@`}ʘ?{je='i$nrxv5(oW|8rPLB+v&_WR&kvn˘/6?kiǷd.Oܚ؉7s$J(T4#+HEݤb> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 123 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 123 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 123 0 R +>> +endobj +123 0 obj +<< +/Type/Pages +/Count 3 +/Kids[5 0 R 21 0 R 44 0 R] +/Parent 3 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 124 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 124 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 124 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 124 0 R +>> +endobj +124 0 obj +<< +/Type/Pages +/Count 4 +/Kids[63 0 R 67 0 R 71 0 R 75 0 R] +/Parent 3 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 125 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 125 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 125 0 R +>> +endobj +125 0 obj +<< +/Type/Pages +/Count 3 +/Kids[79 0 R 83 0 R 87 0 R] +/Parent 3 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 126 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 126 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 114 0 R 19 0 R] +/Parent 126 0 R +>> +endobj +116 0 obj +<< +/Type/Page +/Resources 117 0 R +/Contents[17 0 R 4 0 R 121 0 R 19 0 R] +/Parent 126 0 R +>> +endobj +126 0 obj +<< +/Type/Pages +/Count 4 +/Kids[91 0 R 98 0 R 102 0 R 116 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 14 +/Kids[123 0 R 124 0 R 125 0 R 126 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +127 0 obj +<< +>> +endobj +128 0 obj +null +endobj +129 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 127 0 R +/Threads 128 0 R +/Names 129 0 R +>> +endobj +xref +0 130 +0000000000 65535 f +0000114092 00000 n +0000116445 00000 n +0000116090 00000 n +0000116295 00000 n +0000114256 00000 n +0000004047 00000 n +0000000009 00000 n +0000037431 00000 n +0000037247 00000 n +0000000913 00000 n +0000042180 00000 n +0000041994 00000 n +0000001906 00000 n +0000047419 00000 n +0000047231 00000 n +0000002823 00000 n +0000116195 00000 n +0000003740 00000 n +0000116245 00000 n +0000003992 00000 n +0000114359 00000 n +0000011669 00000 n +0000057231 00000 n +0000057042 00000 n +0000004108 00000 n +0000062502 00000 n +0000062312 00000 n +0000005054 00000 n +0000067806 00000 n +0000067617 00000 n +0000005990 00000 n +0000006966 00000 n +0000071865 00000 n +0000071671 00000 n +0000007920 00000 n +0000075537 00000 n +0000075351 00000 n +0000008866 00000 n +0000078042 00000 n +0000077851 00000 n +0000009830 00000 n +0000010824 00000 n +0000011570 00000 n +0000114464 00000 n +0000019917 00000 n +0000081555 00000 n +0000081361 00000 n +0000011731 00000 n +0000012702 00000 n +0000085762 00000 n +0000085567 00000 n +0000014318 00000 n +0000015270 00000 n +0000087594 00000 n +0000087399 00000 n +0000016177 00000 n +0000017159 00000 n +0000090251 00000 n +0000090065 00000 n +0000018136 00000 n +0000018881 00000 n +0000019792 00000 n +0000114654 00000 n +0000020528 00000 n +0000019979 00000 n +0000020483 00000 n +0000114759 00000 n +0000021654 00000 n +0000020590 00000 n +0000021529 00000 n +0000114864 00000 n +0000022943 00000 n +0000021716 00000 n +0000022807 00000 n +0000114969 00000 n +0000023428 00000 n +0000023005 00000 n +0000023383 00000 n +0000115167 00000 n +0000024795 00000 n +0000023490 00000 n +0000024659 00000 n +0000115272 00000 n +0000025289 00000 n +0000024857 00000 n +0000025244 00000 n +0000115377 00000 n +0000026726 00000 n +0000025351 00000 n +0000026590 00000 n +0000115568 00000 n +0000029000 00000 n +0000100861 00000 n +0000100667 00000 n +0000026788 00000 n +0000027798 00000 n +0000028841 00000 n +0000115673 00000 n +0000030012 00000 n +0000029062 00000 n +0000029875 00000 n +0000115779 00000 n +0000035799 00000 n +0000102276 00000 n +0000102082 00000 n +0000030075 00000 n +0000031082 00000 n +0000104772 00000 n +0000104583 00000 n +0000032051 00000 n +0000106969 00000 n +0000106773 00000 n +0000033062 00000 n +0000034102 00000 n +0000035600 00000 n +0000115887 00000 n +0000037183 00000 n +0000108386 00000 n +0000108191 00000 n +0000035863 00000 n +0000036786 00000 n +0000037125 00000 n +0000114569 00000 n +0000115074 00000 n +0000115482 00000 n +0000115995 00000 n +0000116377 00000 n +0000116400 00000 n +0000116422 00000 n +trailer +<< +/Size 130 +/Root 2 0 R +/Info 1 0 R +>> +startxref +116543 +%%EOF diff --git a/src/axiom-website/CATS/schaum30.input.pamphlet b/src/axiom-website/CATS/schaum30.input.pamphlet new file mode 100644 index 0000000..5df48bc --- /dev/null +++ b/src/axiom-website/CATS/schaum30.input.pamphlet @@ -0,0 +1,744 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum30.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.604~~~~~$\displaystyle +\int{\tanh{ax}}~dx$} +$$\int{\tanh{ax}}= +\frac{1}{a}\ln\cosh{ax} +$$ +<<*>>= +)spool schaum30.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(tanh(a*x),x) +--R +--R +--R 2cosh(a x) +--R log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (1) ---------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/a*log(cosh(a*x)) +--R +--R log(cosh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R 2cosh(a x) +--R - log(cosh(a x)) + log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (3) ----------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +dd:=expandLog cc +--R +--R - log(sinh(a x) - cosh(a x)) + log(- 2) - a x +--R (4) --------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 5 14:604 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R - log(- 1) + log(- 2) +--R (5) --------------------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.605~~~~~$\displaystyle +\int{\tanh^2{ax}}~dx$} +$$\int{\tanh^2{ax}}= +x-\frac{\tanh{ax}}{a} +$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(tanh(a*x)^2,x) +--R +--R +--R - sinh(a x) + (a x + 1)cosh(a x) +--R (1) -------------------------------- +--R a cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=x-tanh(a*x)/a +--R +--R - tanh(a x) + a x +--R (2) ----------------- +--R a +--R Type: Expression Integer +--E + +--S 8 +cc:=aa-bb +--R +--R cosh(a x)tanh(a x) - sinh(a x) + cosh(a x) +--R (3) ------------------------------------------ +--R a cosh(a x) +--R Type: Expression Integer +--E + +--S 9 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (4) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 10 14:605 Schaums and Axiom differ by a constant +dd:=tanhrule cc +--R +--R 1 +--R (5) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.606~~~~~$\displaystyle +\int{\tanh^3{ax}}~dx$} +$$\int{\tanh^3{ax}}= +\frac{1}{a}\ln\cosh{ax}-\frac{\tanh^2{ax}}{2a} +$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(tanh(a*x)^3,x) +--R +--R +--R (1) +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) + 4cosh(a x))sinh(a x) + cosh(a x) + 2cosh(a x) + 1 +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 4 3 +--R - a x sinh(a x) - 4a x cosh(a x)sinh(a x) +--R + +--R 2 2 +--R (- 6a x cosh(a x) - 2a x + 2)sinh(a x) +--R + +--R 3 4 +--R (- 4a x cosh(a x) + (- 4a x + 4)cosh(a x))sinh(a x) - a x cosh(a x) +--R + +--R 2 +--R (- 2a x + 2)cosh(a x) - a x +--R / +--R 4 3 2 2 +--R a sinh(a x) + 4a cosh(a x)sinh(a x) + (6a cosh(a x) + 2a)sinh(a x) +--R + +--R 3 4 2 +--R (4a cosh(a x) + 4a cosh(a x))sinh(a x) + a cosh(a x) + 2a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 12 +bb:=1/a*log(cosh(a*x))-tanh(a*x)^2/(2*a) +--R +--R 2 +--R 2log(cosh(a x)) - tanh(a x) +--R (2) ---------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 13 14:606 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 4 3 2 2 +--R - 2sinh(a x) - 8cosh(a x)sinh(a x) + (- 12cosh(a x) - 4)sinh(a x) +--R + +--R 3 4 2 +--R (- 8cosh(a x) - 8cosh(a x))sinh(a x) - 2cosh(a x) - 4cosh(a x) - 2 +--R * +--R log(cosh(a x)) +--R + +--R 4 3 2 2 +--R 2sinh(a x) + 8cosh(a x)sinh(a x) + (12cosh(a x) + 4)sinh(a x) +--R + +--R 3 4 2 +--R (8cosh(a x) + 8cosh(a x))sinh(a x) + 2cosh(a x) + 4cosh(a x) + 2 +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) + 4cosh(a x))sinh(a x) + cosh(a x) + 2cosh(a x) + 1 +--R * +--R 2 +--R tanh(a x) +--R + +--R 4 3 +--R - 2a x sinh(a x) - 8a x cosh(a x)sinh(a x) +--R + +--R 2 2 +--R (- 12a x cosh(a x) - 4a x + 4)sinh(a x) +--R + +--R 3 4 +--R (- 8a x cosh(a x) + (- 8a x + 8)cosh(a x))sinh(a x) - 2a x cosh(a x) +--R + +--R 2 +--R (- 4a x + 4)cosh(a x) - 2a x +--R / +--R 4 3 2 2 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) + (12a cosh(a x) + 4a)sinh(a x) +--R + +--R 3 4 2 +--R (8a cosh(a x) + 8a cosh(a x))sinh(a x) + 2a cosh(a x) + 4a cosh(a x) +--R + +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.607~~~~~$\displaystyle +\int{\tanh^n{ax}{{\rm ~sech}^2{ax}}}~dx$} +$$\int{\tanh^n{ax}{{\rm ~sech}^2{ax}}}= +\frac{\tanh^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 14 +aa:=integrate(tanh(a*x)^n*sech(a*x)^2,x) +--R +--R +--R sinh(a x) sinh(a x) +--R sinh(a x)sinh(n log(---------)) + sinh(a x)cosh(n log(---------)) +--R cosh(a x) cosh(a x) +--R (1) ----------------------------------------------------------------- +--R (a n + a)cosh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 15 +bb:=tanh(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R tanh(a x) +--R (2) -------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 16 14:607 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R sinh(a x) sinh(a x) +--R sinh(a x)sinh(n log(---------)) + sinh(a x)cosh(n log(---------)) +--R cosh(a x) cosh(a x) +--R + +--R n + 1 +--R - cosh(a x)tanh(a x) +--R / +--R (a n + a)cosh(a x) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.608~~~~~$\displaystyle +\int{\frac{{\rm sech}^2{ax}}{\tanh{ax}}}~dx$} +$$\int{\frac{{\rm sech}^2{ax}}{\tanh{ax}}}= +\frac{1}{a}\ln\tanh{ax} +$$ +<<*>>= +)clear all + +--S 17 +aa:=integrate(sech(a*x)^2/tanh(a*x),x) +--R +--R +--R 2cosh(a x) 2sinh(a x) +--R - log(- ---------------------) + log(- ---------------------) +--R sinh(a x) - cosh(a x) sinh(a x) - cosh(a x) +--R (1) ------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 18 +bb:=1/a*log(tanh(a*x)) +--R +--R log(tanh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 19 +cc:=aa-bb +--R +--R (3) +--R 2cosh(a x) +--R - log(tanh(a x)) - log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R / +--R a +--R Type: Expression Integer +--E + +--S 20 +tanhrule:=rule(tanh(x) == sinh(x)/cosh(x)) +--R +--R sinh(x) +--R (4) tanh(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 21 +dd:=tanhrule cc +--R +--R (5) +--R sinh(a x) 2cosh(a x) +--R - log(---------) - log(- ---------------------) +--R cosh(a x) sinh(a x) - cosh(a x) +--R + +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R / +--R a +--R Type: Expression Integer +--E + +--S 22 14:608 Schaums and Axiom agree +ee:=expandLog dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.609~~~~~$\displaystyle +\int{\frac{dx}{\tanh{ax}}}~dx$} +$$\int{\frac{1}{\tanh{ax}}}= +\frac{1}{a}\ln\sinh{ax} +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(1/tanh(a*x),x) +--R +--R +--R 2sinh(a x) +--R log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (1) ---------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=1/a*log(sinh(a*x)) +--R +--R log(sinh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R 2sinh(a x) +--R - log(sinh(a x)) + log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (3) ----------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 26 +dd:=expandLog cc +--R +--R - log(sinh(a x) - cosh(a x)) + log(- 2) - a x +--R (4) --------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 27 14:609 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R - log(- 1) + log(- 2) +--R (5) --------------------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.610~~~~~$\displaystyle +\int{x\tanh{ax}}~dx$} +$$\int{x\tanh{ax}}= +\frac{1}{a^2}\left\{ +\frac{(ax)^3}{3}-\frac{(ax)^5}{15}+\frac{2(ax)^7}{105}-\cdots +\frac{(-1)^{n-1}2^{2n}(2^{2n}-1)B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 28 14:610 Axiom cannot compute this integral +aa:=integrate(x*tanh(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %O tanh(%O a)d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.611~~~~~$\displaystyle +\int{x\tanh^2{ax}}~dx$} +$$\int{x\tanh^2{ax}}= +\frac{x^2}{2}-\frac{x\tanh{ax}}{a}+\frac{1}{a^2}\ln\cosh{ax} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(x*tanh(a*x)^2,x) +--R +--R +--R (1) +--R 2 2 +--R (2sinh(a x) + 4cosh(a x)sinh(a x) + 2cosh(a x) + 2) +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 2 2 2 +--R (a x - 4a x)sinh(a x) + (2a x - 8a x)cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (a x - 4a x)cosh(a x) + a x +--R / +--R 2 2 2 2 2 2 +--R 2a sinh(a x) + 4a cosh(a x)sinh(a x) + 2a cosh(a x) + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=x^2/2-(x*tanh(a*x))/a+1/a^2*log(cosh(a*x)) +--R +--R 2 2 +--R 2log(cosh(a x)) - 2a x tanh(a x) + a x +--R (2) --------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1)log(cosh(a x)) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 +--R (a x sinh(a x) + 2a x cosh(a x)sinh(a x) + a x cosh(a x) + a x) +--R * +--R tanh(a x) +--R + +--R 2 2 +--R - 2a x sinh(a x) - 4a x cosh(a x)sinh(a x) - 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 32 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 33 +dd:=sinhsqrrule cc +--R +--R (5) +--R 2 +--R (- 4cosh(a x)sinh(a x) - cosh(2a x) - 2cosh(a x) - 1)log(cosh(a x)) +--R + +--R 2 +--R (4cosh(a x)sinh(a x) + cosh(2a x) + 2cosh(a x) + 1) +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 +--R (4a x cosh(a x)sinh(a x) + a x cosh(2a x) + 2a x cosh(a x) + a x) +--R * +--R tanh(a x) +--R + +--R 2 +--R - 8a x cosh(a x)sinh(a x) - 2a x cosh(2a x) - 4a x cosh(a x) + 2a x +--R / +--R 2 2 2 2 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 34 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 35 +ee:=coshsqrrule dd +--R +--R (7) +--R (- 2cosh(a x)sinh(a x) - cosh(2a x) - 1)log(cosh(a x)) +--R + +--R 2cosh(a x) +--R (2cosh(a x)sinh(a x) + cosh(2a x) + 1)log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R (2a x cosh(a x)sinh(a x) + a x cosh(2a x) + a x)tanh(a x) +--R + +--R - 4a x cosh(a x)sinh(a x) - 2a x cosh(2a x) +--R / +--R 2 2 2 +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 36 +ff:=expandLog ee +--R +--R (8) +--R (- 2cosh(a x)sinh(a x) - cosh(2a x) - 1)log(sinh(a x) - cosh(a x)) +--R + +--R (2a x cosh(a x)sinh(a x) + a x cosh(2a x) + a x)tanh(a x) +--R + +--R (2log(- 2) - 4a x)cosh(a x)sinh(a x) + (log(- 2) - 2a x)cosh(2a x) +--R + +--R log(- 2) +--R / +--R 2 2 2 +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 37 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %N sinh(y + x) - %N sinh(y - x) +--I (9) %N cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 38 +gg:=sinhcoshrule ff +--R +--R (10) +--R (- sinh(2a x) - cosh(2a x) - 1)log(sinh(a x) - cosh(a x)) +--R + +--R (a x sinh(2a x) + a x cosh(2a x) + a x)tanh(a x) +--R + +--R (log(- 2) - 2a x)sinh(2a x) + (log(- 2) - 2a x)cosh(2a x) + log(- 2) +--R / +--R 2 2 2 +--R a sinh(2a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 39 14:611 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R - log(- 1) + log(- 2) +--R (11) --------------------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.612~~~~~$\displaystyle +\int{\frac{\tanh{ax}}{x}}~dx$} +$$\int{\frac{\tanh{ax}}{x}}= +ax-\frac{(ax)^3}{9}+\frac{2(ax)^5}{75}-\cdots +\frac{(-1)^{n-1}2^{2n}(2^{2n}-1)B_n(ax)^{2n-1}}{(2n-1)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 40 14:612 Axiom cannot compute this integral +aa:=integrate(tanh(a*x)/x,x) +--R +--R +--R x +--I ++ tanh(%O a) +--I (1) | ---------- d%O +--I ++ %O +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.613~~~~~$\displaystyle +\int{\frac{dx}{p+q\tanh{ax}}}~dx$} +$$\int{\frac{1}{p+q\tanh{ax}}}= +\frac{px}{p^2-q^2}-\frac{q}{a(p^2-q^2)}\ln(q\sinh{ax}+p\cosh{ax}) +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(1/(p+q*tanh(a*x)),x) +--R +--R +--R - 2q sinh(a x) - 2p cosh(a x) +--R q log(-----------------------------) + (- a q - a p)x +--R sinh(a x) - cosh(a x) +--R (1) ----------------------------------------------------- +--R 2 2 +--R a q - a p +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=(p*x)/(p^2-q^2)-q/(a*(p^2-q^2))*log(q*sinh(a*x)+p*cosh(a*x)) +--R +--R q log(q sinh(a x) + p cosh(a x)) - a p x +--R (2) ---------------------------------------- +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R (3) +--R - 2q sinh(a x) - 2p cosh(a x) +--R - q log(q sinh(a x) + p cosh(a x)) + q log(-----------------------------) +--R sinh(a x) - cosh(a x) +--R + +--R - a q x +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 44 +dd:=expandLog cc +--R +--R (4) +--R - q log(q sinh(a x) + p cosh(a x)) - q log(sinh(a x) - cosh(a x)) +--R + +--R q log(- q sinh(a x) - p cosh(a x)) + q log(2) - a q x +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 45 14:613 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R q log(2) - 2q log(- 1) +--R (5) ---------------------- +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.614~~~~~$\displaystyle +\int{\tanh^n{ax}}~dx$} +$$\int{\tanh^n{ax}}= +\frac{-\tanh^{n-1}{ax}}{a(n-1)}+\int{\tanh^{n-2}{ax}} +$$ +<<*>>= +)clear all + +--S 46 14:614 Axiom cannot compute this integral +aa:=integrate(tanh(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | tanh(%O a) d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp89-90 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum30.input.pdf b/src/axiom-website/CATS/schaum30.input.pdf new file mode 100644 index 0000000..9962b03 --- /dev/null +++ b/src/axiom-website/CATS/schaum30.input.pdf @@ -0,0 +1,2070 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/CJDWMG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/COMDUG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/MDOTUY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%= @ wE+4\cTjNC@;mSBx  &5; +`!VG<3պ*{f9ӥ!T#YŠ7Ieک(&l%8ȵpJ62Er5/DI8ٶqii6B +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/VMJSKW+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/NVHZGI+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/VKTYGI+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/EIYTLT+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/ZAWNTT+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/LQFVIR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 629 +>> +stream +xVMo1+| +3O|+9QPV?$6Qɒ={~lAkU {z}vn`_CVҰ~{zs1np]?[!A X#^69ڍI!uÆO9Dpm[c! }s2"9ė0NgbAa)KACD2`\@rq=9TrPv 7ܳⓀKLʟT\iAyaTŀȯ9Ȋ07'rДl+wd@T]8;b RGFQh-87)!48]},k0r +zFJ K၇rcL6Xņ\\Cn\&S3S +ṈRv$CwGbM> +i.Ү~$uj^ cc><"1ځ +N!2=5Dl1~—N<,jGrk",^IT=.fob9Q%qBaQl_SH/21n,YCz/jq_4 1Am1=ZHIGpqۮr/)_ +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/TXMCWS+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/MRCIRK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/QYSORG+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/JQGGEB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 659 +>> +stream +xڵ]o0LRoq .6*eIդ{NlI3V{>sdD hG~~}+DH4DֆHX3UtTN柯o5JH@,Z9^[^[Im'b JdS #աKNT-vfm@Ih +A3EՉw!awl6Nc41G0Ǜ9"&4A8эq)uNgTf|b8 (Ѳgi%0"8f\ʜꈟ>Hlݲڤ\&`me K'ն, V=!r_oCGZYYUuuVez+`xlgvy~Tﲡ٦YZ+!P >BC(J#T,z~uyN#~39xEjS:x)QQQƺ9N1Oq.T&6Hvmj!|7/t,W`E])ahX>vQ M ; G)51> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 313 +>> +stream +xڵSR09qfC: +endstream +endobj +66 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 721 +>> +stream +xڝVKS0WZY3>SGQτI}WlIoRgR~kI@P3"T&q! + T zi?ך,.CUr=D +ڸ{5fe1,2ȭ +mJT +Qv6zL)9)[ɤڤdjZ%dF^Xv4p*c;ťm$$ETTBxfjeeDƸSIPSr}A,EکYthRc5ziJ& j39 fFU+,M0ŶX 4L] Ži! +=,=E魷D[l,*{ |v#(9E*y'WcZ|3=e +8\ +1َL-q0zz7Qp~_d%ot`ƺS= tM7viO(VmJݵ+Wyѯ|OsD >QM$䦨=jq[ƨe2IRkx|xح1ZG7v"`bytGitN4KRZ4ݔ}~8:ҭF/asR[Zad|*TH38WLߢbvj?ޖQ0{|OsV@㯭#c2-QUW1 {U(TP +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x}0 >Eб 9/F0z4M D^> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 863 +>> +stream +xڝVn0+xȥhRƽ4J%u}Cm)YMy3|oQ#'a1V+*Y"SIn,U6s[~7afr26So !="D *!j y-7O%8Q戡W6Q':?[C"`T.'aMJcJ *ݥd @E]$0^cip9.^-!j ]`=u~_WKsh XSp r7POcӱ |Eh2BDFi D$)0C HP߾tgԙnvNvTԻZ\HE*I@ZhazP]_xqhֹ69a6WLr;5Lk^cX@=&9mwY/W|]X"+bC]Szw1&a.i2|8w *V?nB +Fy-F +5Ë;A'W}|uҪܸ}Hhq*֔ZqFi ũ̼b+%#јcz `];0PO<9[к`fzi +gyN0 g-TG *hJay(H_" + +FW7Bګ;8}G^:5Tp#<fDhǻSpFiSrqX>Q'a9ܩfdbB2A6.g#GxJᣱGoȮ/npYnSJ#pս[M"K>+O1%y#fE&esnA +endstream +endobj +78 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 598 +>> +stream +xڭKs0:B^ҩi-!3 xη H V `#d"G G f8)Ⱦg#A8 p' J`b\U'a48P1Q@]` +u粁aAv(6֛Z4MYWXr-$eW!MA7 2yw*UUm)_['SVq6㇇&IzcgV@ d+^sw=Yܔvb czd;Tvr=9aI]H*`ZPcK9c }*A`9ĕ+>m\敳!O\ +endstream +endobj +82 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 281 +>> +stream +xڍSN0{Uٱ?=V7¡B%q^iezvV V>[Nr'YŝF{LYeȂxJmJuTQfBy(CY hh+dWq@R&)+kI+mo|O&n_ U*!&MU|{ +=E7б/1Ŋp$XsC5!uJy>|ջeJ -04Wس9r +endstream +endobj +86 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 795 +>> +stream +xVMo0 Wh'orذv؎kvYNRH,$;V8]|%|aD gq>I"$#͈QkC$?F2ƌqݲ)XijɵF)Iua s-xq" jk˫GoeqxBh4a̙T6LB5)1Qw-17Q#Zek;D}0`aTk-3ΈF`#]P-=$R#I +Ko1|8o +P$Ѻ-HW)A Afgoڬ=1ǬKrBWsPD)hOHPb\Z4!>,B +1'M1G,{9JZ[U 3 PSFe7qs4fÌkYPVpI%Uob`䫕#H 0L6gֻnV>ծx"sȢ|DzX{Oc؄4ږgeͳ㫷-xka.F tl5nZL/OsWzܣUyWr뿊6r99^,T1|$3ҹ"Q\\8W\ ';;Rp+k0%zX6R*Fϔl4` +endstream +endobj +90 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 753 +>> +stream +xڵVMo@W$egH\&U{lȥq*J$J"T;v> ̼y1BJv#{?^(JM~0jƭuuv 7#2 n&yM(BX5e` +Њq%|g4]JPR)F>܆v>qH!d;}udq&3*D)L|,Ww e)Eԝ߷p[JtySz`yJGRx󜐊)LSǡ mYhI$]v*aĨ"&PgTG}h{a78NӢMps/0o2U4o1mP*j1'kyژ΁r(?R$u#d`e149i!+-i6 +O[6,Ш].%J'BH̖r=o\Fec)tFr4^q^gYy-pݝѷ]g~n76 +2,VNlPʌmQ]/um1L@ҞKn %ID/&ݲg%E'j_a=lwZ4_ !9¡]00,O5yncLbsc=UQUD {{V68ͷ+fѸ,tc[͜жv< :X6G M|Zt^ӿrQɛ<> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 413 +>> +stream +xڵTAO0+zdB[BI8h܌M<d^`)&r"BP OіX\ 8dD5(p3H U;/7q+,Urw&ض6k~Y2rnt8aZ8ʼDLj16P~( 9EBVsgĪR9>Pw͸Ȳ(%~91]gCA`MOQ̶5u"u/Y6 ݦ6mN9A]S;0LbZ{HWĘQuE9t1- ~4&5.[ Ҹ7qɅrrGɮ,D&|_xMB}M-O/L5BU,3:pnhc< +endstream +endobj +98 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 688 +>> +stream +xڽVMo@W$agFRTzjqBJ}w66HB[쾙}͌1 [={;* +bo X͸%PMGfIG0r(#ְC-(S5 PTi)W1l2u40!`ΰd Z7.IU2 &$Om.D¡H>V5*uA8 uA :q8/HQ( rHBSPV : AKSqJbT3Ι Bݢ]Hk3 +eD4kk<6[7DudS;d?% "[N -R\2ʰuf-h}͔*`²|݌dMȹ'#8 $*|ݖ8\?7CTl4av_]`J%cؾV{hcp'͐nGqaqveesQtku #Tb+p3tX o ӎX,F1.>VAKł?k3@=> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +107 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 106 0 R +/BaseFont/ZRRGOB+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 1025 +>> +stream +xڵWKo7WlVV!o>4SK9l-@Zn}Pܕ/KqoJ~ެ^e<ĪluiF4 +DlǼ(\Ljaji[F1b#)h"_}y߶OЄcP?ϙhtpĵ6lޭj6as=rǣ/^˱jqʟY7iWnmAgBy,w_r˩ P6 .2ΘQ["cpzSpI,x%,c#tZ`6cL ~n.A :P5XǩN0F. +Eip +)Q}t2QH͎7 ft(jIo|5"ZM7oW8"'#=:acَUbӑT/4O%h0DałJϧECy aq648i6äq鍳abwcf!%f,2Pz ,Į˰ɜ 1S"DzpF:F夜ת԰ari#ju f}VLt MIUdrpR[tqqXkID˩S\0NX}\ZrRݨtgP%{e߂^[|{ғ{&XoSđraPuPkbNU.ֻ8kŔ%DiU~U=?}>v> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 873 +>> +stream +xڭVMo7WC3KPHzi6֎P6Pwȥ/))73oޛI!%{`7vzh4|a3['4}cM> e6YD1*&"@vibHmTY 8.ℷDh >9HB!aU] J㎐- zb\J@8dZhS +s z(S%60[8g72]J>raG?؇4R l#)B۹Qi0#=EH.A[:/:T%;b@ьJU7 J{,1> = mnO;j]u2LӬgG(>$TNAq!q1 qHx<+VsU,)MGvEn`4T69J+ h8n|g><5:2->G/l_3=rp&h=!E|޷_bznN% +ݭB>7ŪUs˴ֹgnNT2KS1NbY$((dӞ\NǓIfMS y/Zaqn~w~Uk~a01jǨ_{ +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 539 +>> +stream +xV0+|&)٪=ܖVviil!U_cLMC{؄E яOC>dQ&HH$*0oJW!2 )4˷ aDY *R a)F(By&\IN/JrMrzL +5q l\jt\zV!DBZޢ:_ߵYG::J;wI$[S+C=\C'=K +W7| 7F9^K2+6by \>=Ve]ovyw(7eee(3߾^&WU~(*-up&ejR^t˜PJ4.~s O*#I*TCwO4vbNā:~)djEǼqwkIa@riK#&G/x f77T"J +Y BO> +endstream +endobj +117 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 560 +>> +stream +xڽVK0W@mlǏKUO4P1ilBUױ8 iiL<;}`1#xHHx $A((_=@lԨ`l K {#ǦAv\6ﶥ¸XC  +{c6)C+M(QmD~U"ϥCß_gHeى_jj ClQmTڅm^*iBŞ +X@`t&Ԟͬ$:*`X/2Uۤ2)nj2G\eDaf.uW L8vU3o~ۣZv +ߗiDO(Zjx/o)[GIU7^@yIZEpCoFQ2ZkጯlY@yWWY=x9'&"0ݦh\3u:,w5Sj@_ +ߪ;9y<%\Pj"o" y7 +endstream +endobj +121 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 589 +>> +stream +xVM0WRlcb$=d,$D!&5 @BH`3fJ)P|EhDn,P-@de wLL!d)?o"Kʹ a+n{̓trSx]{H.mG_O]U2> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 846 +>> +stream +xڭVMo1+)KSR +  =Jڴj?$Byx^!AJ];z~V ԠQ:m,%"%^*T\?"@сVf/yuhQjyź^E(UJB&yjS` p$J[q'Hy0f}+.X ȡLFQ*:M~݌%(/JB/Bu2 |$G\>NqI0,~69:jYP~6f p3+@ݘ+8.gx7WMaN9R;&wtTZM 0d<ݼ_kO`2V:%a68͈WU5;<<.x .`79clR5Rhp +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F8 38 0 R +/F9 41 0 R +/F14 107 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 931 +>> +stream +xVMo8W(՘3H@.&u/Z@zDNw(JdIS.|f(!AJq+On5(-V`SX_"qHi.Y̠/ 3^O!&LPPf5KhȂ;/#.W l& 'ύaee28J -du:/v>TW%!d5'Lrؤ@g]|^F9>[p0Aõq+ m-Y4R>F~j h3Ue(RC f&.F? h``@2~` + wl5G +1N 4>y u U}Lg~ۃaXHZ2@ h/vCm7^z\Ac\56Ì|~34gj{FCѻyxvTM{B$U1FcUqw1*GF]$?{7u').fSTV9$a?kbyqw},y<*ۙLyTvyow5QjMS047X( 6.%|x'K#TW'4n_v79y_ͶIYny9ٜG^Ggb%hlPHe HwaP%:VetrW>=l ~| H\vI, zytFq]xwvxVc;U.OKh=QjF9q@';z1c)'HҥIHJg:W$8ɋZa77ˋH_RP5٣dMW2e^5Z=5' @N114\'~=8֭`ϼ"{(? ++H~d'+P +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 890 +>> +stream +xڭVMo6e9~S2C,(Zq/R@D,yc/O7 i 9Ji}uHF CHb}+)E1)knWiOO哃m6cƿNLā]>v!/f~Ȋ8Hܟ + {Ϩ<0 j;/So\hpz'J3>mﻃUl*+wna+;ScR H|%ywmݰ>WL>qWMN\=&3èp`|{;VV"&uöa!Ic{f-m+Q q"lBeZ7<$4D0f!3zr֤pH*H2Q")Kԭ!R"` 4GHtljʸ'hAkr0sɆ#"_v~LY}ؚ5 ;6 ,F5D!bb,"N! 1Q?Gw 3J" ^(#;?ᦡ I)}!a(n`y&ÃcӑxC/8_fME%s@ԝ}ϐ^> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +142 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 141 0 R +/BaseFont/XKALMW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +143 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +cVU*%ܢ!?TkK/ 27X`fS*R0%HN0/gtt]S_&5ZI8U|< &cU&Btd#?(ij?%8 +"sv +6WLfv>j?c-(j&}L&oPM< V3 ʨ@8:=AnqyF_5.:\_aUb/*R[)M4 J*$L_$Y^^d# +endstream +endobj +144 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 142 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 144 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/CJDWMG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4073 +/Length3 533 +/Length 4624 +>> +stream +xg8kE7`)`uI f0 c^"u$$d(E kޣG—o{}>}}=s>rs Pvp #$*,* T{( + +jh8@!ա,PTFFEdťe$npty~@W8aE'{ ec|@[<p& a{ @D~3i!P@_2-/8'% t}ԯXX 5<]\PWPn8ȿ[bӃja.{ KBxh 0C uÑC۟"j IjBH _֢Y @?߬v== +@:0P$ Kw(UU8PHL%dpk%A XFO#1k:p7̀f#*pb{:a`Д.yq҅Dxq8xØs^v@=Sv9F~+'B#"-_16^JY^bܚ?rܬ>< +1hzH k?~N洜93g)p}*4,d4Zj![v7qd6b-qCyⱳ>^7e։3<${÷u +EtaaoR~X +HPk3|[6T3&y)%yX1V5LHRTեzF $VTîϮ9:I4"Ĕ9r܊(v$DaO.mhrRFSWhGXl>9+ղ2O:E&|GhchHAyW]9ID@])xF|n+HDܻ$YaѡrV'վAin?[ukf^RlR/KHkf?*z +ʾ˔^$XxV}n5s]`֝#S>U 6\->gNv)E}~/V΁rtxir{vogwYF]XG4¹mPOܬyFL}Z-dR"S[+A$0V0B?yJ&3PJe ?ָwU{;ظgY/; +2֡5wH.%z0,|sWYL7.pB%"9,簥g{Yc_^mfkJJr$"ۍRไuQ׫+47 q#cA:f,iކf6c! +j>̎kWw.T U1m%~|S曗4!um'SX` *z˪8:Tڼ}]Ϥ_d듈fl:$ֿyyl~ۛph]3YyvN"zuNWeRn ǾqoUK-zOy +>>!Ajktz裇ծTeVjG6עNOAc֦7ҡ. +:K4V\)_vYؿs\nTޚWOU>WUּj#\vkE}>NGu -,>k|utZ<=صХ,`(樞 K%,42,j/$??I>ᓖhď2߸*S Yȴp]8|6-M N"nJ9WApdl!&I=OcIeBi i!6՟}oR2╅U k<;i_8*S5hgcvoJ+05*7~ma`)[LN!3(}Z~# +̊c2J%3j +6\ܑf9$Y6x@բe .#uRvPMp`P,jVC 'Oy T\2?:+f3mެ펴OPgZ7iXA8XrD(=V^8_ ~*.;S;m*XNߪMmΪܟ/G ,pMKvU(ގz|muıdvPF'x0 `NB5b.pYaC%6ڧ3E߿ӴG_1'q(4x\b{ܻnPM3CH[ lDFOg`Py8#6u#MM),l`BNZfJN j;PI2\va&(RW*:*\Ijwљ3v5;iR[35`ƌKWʄɏim/hB@9ܑyM`MqY~Qڻn}5őT;?g>)'OE-c&$E`_*f/ oDR\n/{L%7 +9/n`bTW^ldZmDȚxT(^<4st'iLAh9~|Rםz^*&'}CE~vgN> կjĻ1AݶX˫\,y/v|f-qSєS;pT1G +Ow"ŞtԣTPqi>kq~8@-"J;yfv(N/$zSjJS-qş||&9nR2+K/4e[u19fuŕ kz${jZBbB< +Ӭ2B ⇿r 5-dS%Lt'}Wl%T$Eh--L?mW!SU(c֍&{`"I%"krD̴kuMO2ܹ͹HSzFNHUMĖ#V*"MԔ[=)6/%7D;.8t$ՓH^C +ctﶒfQoJZ2w^L0CT-I0tOi[p\З/Yk \Ţ ԹQxHRk2&f!zfixEh+Ѽ\^*Ks6o ShnJ $_> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5020 +>> +stream +xg8\m` AaG2`3zt!H$!zoQ(QB޻(_߷~>}Yu_z^X:YxB`0qL98ݑpOD`bb0H += *9@XW_w'[H鎲c@pOG;8C!=}A Y4# =a0e E:0@?T1X_2-oo.oNoJ!@-ݐYX Õh-p? XW/O;H@cn5FŦD\UQv4KBy(|#@#1C۟ښ +ʼҿ:p_aY;dBa?,"@a@p PrrX!DPCrB*PП;WQD i(|k>f#öI6:漭L]240gi S{AmVL%st`&#(M@62ڼ7Sߊr~ڲXk'eQbi{ԏF.*\hQ#\||J(W[Rw_d1)nĿ/gE?%#[[# XBQTdrMIׅd{L?+3rpti]|=:NMnS)Yh@Y?N9&@|,!' SMw)^2_]Ԫ/$ 7ID,Փ9HAǏ)H_՝s^үhU8l{t)Bf[w: IwD@#Nulf-Šd,O 0>%;*ʣ}gYM.K;pUpz='Zc}{}uIyݥ8DQ~yƝci+O]Π_я2u  #% LW}S9(G~؈5[[qZa0s̪TV=I܏^jV:/}\u!>ѧe9쁹?F8֝'qp~sAY4,T5&qn6ƿvdQ*36:AԆIZ&}DJL[nX$ev*o>Nt(fKbQk|L# v2N~(ڷ=ěYuv8SS%~h]sN6KTD*jmVTuo2rv[=kacA`VW).4TMRu+|VAA=*\Xi7(ιNEli%ʑCJ cKJrIا-y18=X#+yFr8ݙQfA^?3-N%'z;]hJ'=\@Π|.!1ir[X Ao.8NIߦ1&椆Ff~GsD;[W?>9^#kaZavwhՕpB0K"Q\dBj7C9 $~tB r>& aؕV47@$x.9fzt٤K,tYTu፥>L]seW^4rN8ԟ3Uo e[RS~yQԌ]gQ:1wفPx[ͥt+GS`Ej3a|bŝ%rGQg +5ʚO|V/X+NuaE9=Xwգ=>v R <.;dKz˓: "Y0ۛ^8< @_e*cygZ/ϵ8E-zavy]O(Ox\qj؊,E{3aBt]s#u Jvy, SA +Ol&U.o~5rҨ+A +_z]cUUAPߣg_6:dK.EE+o{ŕ)O67))>\*)y +d(}4dr| _ ky Y(gK%g46 ;Gh/aqmbFaC43wMj0dcgx ^R~eôF c-;H0??4B4烣Va>x{t}Y{q޸pKc%f%ڴl.Aeb(쨿O=d4pX'IF&[-G=iYVNt?'v.ّk/feBI"xb;\|0} wTҺ${ηQ#DzS_\_rFL{ +^e9jʚ-RiEWrc$MLYjU3sN iF4z4ưYt?q8֛utK+H^Fl&~*p zWFsRohVvjNPJU?Y? ڟ#+A|iuҔRf@8HӾ>k6Q| r\mȞpzq$6qݜYų:牦# >K{C+ +3tܽ`8{YΩp ~M:[!=L]@siçnvKcHwfĦ%Mָй_Y +ԟ@?擲~WLRkgS;Mq!zEao2a2D367.؈=H*o-vZ*شs>ns30nѿau<9czu%mHrL遪#6Nn 2U3]蚄N41KJ/wd!|znJn?eJmEcġsׄ."hguጃ}–8\])t0}#S8]v}<E՘XS^9/mmޛ<N8 [n|ZUwrE ud82w4rn3֣" 3A(&g;C '"Mr#`L} P BvnM]WgXL ɗ7b -ma0~;ڒ&W I7N"(h> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`QPeWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-p +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/VMJSKW+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}߶_Em uZDxb|;O?kmXKc洆 ukٙܟBy&ybbaG6YՏ~sזpCr0 ȕ^KZd=ٳ )Rrnu硻l:AhcLnd]ui_`W5WnPVrzvA&jvBF+l1 \.VaIuHEzV>ގXξ e@~jvnU^{-gtZe UJ\m nNFxJF(;[WD&!$b2dxtvZP^{om2(e0%`%Iԋ4@JO|:gr4H;;-ԝcYɥs?QAb;ΡDV5wJ` q@^]Ϣ.bfE&>ȔxD t5r}PE3!f׈F#k?ʌϷ:PzsuYdgdDZeX4ըۊ.sA/b `EE" `ыB-7y_EЎ_E\iŎQlK*U?ٕ}YԨt4EV2L#ܞ/^vӛq4@doDp%/} ٨hJ(qK]8vXn`S,| Tĉ`nNp#4/9YA% L+05Z*%2.TyfC-{U=+@=KVԒU 9 Y[Y _+Yr4l{8IO:u׋ɼ]%בʡzOaOXqp\m0]zSy;6#cR8ވ[;i!"TDS2.\Pq"1U\ka7D]`a>i3sm|j鸃g >ycnckdAlг4eWܪrJ5?ĘHM/3 rTUJ*wQv Lv|0cȥݐ2IʖaKleAAWn#as;SΎɫq2e| pGF7kO] KR\诜hU2 h+,U, .l/-O9{QG7Ɯ|5~#񣉻o]/;ɛf딈_xsRɪQջj;x$h5,O{|$!<+\3$g~h}VQx7fp\]Cܕ(eZdÿJXʙM7`tdO;g +R\g|>fZڶtYC>\2|4F5`q-Ӯ3_K?g~cuL2/b88>t#5hO?zcrצ!8!TGj͠+8gÀM}PDiET!2xU{L-{7D73t[rNd +P{DW>w]ߛ,4tns5-UEHٮ_"iP@ZMm"L"m#GBKjEO::(a>Z8vg!B8ǎDŽ"""ъ᣹lB~>p$~6P:E B٫EU#7O]nPĆp9{r {WK1&fFcxLR=48E57Z3KFGM#~$wkClPʘytsɯ29{[D +fYJ*a[69a/xyroب+ϳe1$dFѣ*[ϣ(ipǬᢎLmEllYU[dCU_J(7-tsm]4xU6 ]%p ]D#'1Lz\Pey¶۹:d>^Ǭԫ\?ZLa,K|9偤;B'8RVՅ;)duMv?at6DFEZӻxBBY@ 䜾|ݦװFV[SW~ ~V,)U9Ma;Tu[GkY~nO3IE2;vF8]4P^H $MgZ$%^q&O@ĦEWt*}Nq;I ]HZ'Ѥ<] .H&t_kM!|zQL } +&nrw3me+^p;Z ®]uylANf@jtte$&j>TV~o'{R< + p>T.Z7j3ʽ(辙Sr5"$1&!VrY !#,MpkxHٽ%zpY/,UeķVuE i}`j!]\?ɪLM֝,,.%{|*Zh&XE0Rzϻi8sBar׉7pIj=\FZӴD vrW7U\k@<Е2y{oc)tM.;R= P賞5mfEޅNHnO_*R91pSՍ36?ߙé M%/xai.f+/WNctIɾ́]LlAt"%o gqna)KEKi^'p:G(W9DgCCSfeqv|F! @YIh!qU +6_eчN=[έچʢ +#2BS]EYsAz]}t7вSBJbb0D*0r\ryԉ]_ۭEY`+Vc@]y}qI nY4`~~N1קH=kڪ8ZhZyv'9l +_,s.a9p,ήd<\b|q|̍c4jD&fVN{>S?|.6Y Ilg?F%"M]ޏz GWhGuXIwpKOauL8fם]; A_"t:d\yԱ:ЪIGV)!L=[!Rg񍳑F^9kV3 =קLd\s:(xDl'5X I3(,e=ڻ|;j*Z\0_PKxj|(m8FZ]YE?&1MS '4Ó;1Rp[.Wh-Sb. xLJC;g H_[?m$_[X{I@GgHPi=jC0`?ͫAn/ރv7+#z<}vNPxq_ԮP fJfAӕ{{t-K8\4d$\7vjz l<슃<%th(@VT;şT[+fog_zk+'Յ̊_?5͊H4-NTʋ߽J)ڛۈzBnY[Wv<U5. gAOzH]JJJ|IlBuu{'?,G&iR'G GN(Z/DZ;0MAA%g/R=K m"J,O49>EJįVrꆇn39BO8p _b +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/NVHZGI+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmhF/щDf01EBFhѢ=D%#z%my\yϗso:{Z׾3Ђc]zX NBZRZcm+ JK@!! bnpe4,C\,.ey9e z =p@?U@-4 +Ma8Za]\$B-|hE#4t]H @O,CWϒ? (Tx bP@8 u {qA?onB݂=HT?X4>K!റkcZw+C H E#0#\ 7-?~_Us߱A.+}!r[7]+ĸp0 WߩAF2LZASx_1Ho?M<RTPuA`pw'3vC^ @¬,LE~LX*DņGV$Ԧ_e. +j4zNVN·B$"RNH{xdžZ\,<[@W6xUTO\L-zf3AO<-j\-jGt6 D ~f9}x+HϺW^wFwPn$Ώj"o>fAK"՗lO4\ B$!WnM1|蘹H~4~O1`XYo2c-wuX9Ūil_ЂG˘mL&WQwoF3iPi.lq};CA#'ƀaY͹tM097r"0kh0M:w!8J\j"+R3(zo%"'](70駐p" Uтwf^JzU5Ɖm{dR+.vsDP(pkd PtƂ:j:5kBܞQJӑyvJ 0JأD6=(˕챘kNV? &@T9ի>_u_4|UȢ2<[,ߕ)wI7tK^aLRaɃ_D0cS2N%chskcz92>s(.+wU uh +'"Mc\xt`e42@jXOTҍR5Pӗ֙9&MafwI᛻=wP5Opu QaLbYF8-t*^b5*\oo8"gޕ7^ʄl8|ZJ$Y,H;wr,@{p5-8}EKRW3mnۺ} +EW/-BoTd{p<nd..$(V 9QeMKYb? 71l8 mff_?`#X6c iQ[!;&o]?ǟ}|QL{G%=c·OB!7rZMqt0YX!@=4n.^8Sz+f(VP܍X u3 htӣ7a7蓑EG.QXQ-8[j溠%m'VB,;OWx2ڊzSWթ| *hlH7G@E*/ #Nd ػ}Tݗ~I .!E1y2k|G>KEֹ&p>V;c1\N.boװ(k>b-I˜Kji i Ƒ;ZT邅BV%/7J6&azɜ.t65.m?ÿ,. }Qn)`\oCxʍ cL s(8&+TÓq)^8BŊآL0fyA%|𖱲?=ǣ#>oa&B_?!`;V2 ~>`-U$;N=E-ȷlVQpFSVw𔊣Ai])?ݛvgHGk 󅢲mvh2}0EN7um%[̟t݇ +-uR/ۊPe͗PoސH&\gh#lW& .bPy90yXpv/TQR⥖54nL29ΰ{:Xj; +47"Mo R_W֔LK5HְPA2N)v^kfT?ЇqGx-&S: ]~~[[Zw3<$dmoqvT뮲qMZ7F4|դ>dECQ#\ [S?*ş㲣m2&#\U%8H&jʤ F+DW5psĻ~}\($،ԊB1K屻÷yCÑ-dǖ#TڶPDҴ4[ "1"^t/6bEN[W2Bł[@s7d/Ԕ˒EcȈ<[Tj *;%FsP%z*D"0F*}Eg^넔)릳G MGeR:He{vgYOLg4&s C.CJ{FCBndC3Us&/Pպ Z5I~ k~BV;0]lX\%n/SѐiKMԟOQ?pn +%gؚg +ś~IrejƕNJ!>)B&Zn_!p׷_<`QCfmwWYɧ O$w)p]V]V4W]VQdי_'d ++%&ϒ?5D ݿC_N!9V!쉚^o؈uCCzLD סJu}D.9;ޙXxFPuϻ_k5"n>/rx';_e,c'"dʱ'goJ_$[="ʈf9 '#=svZ_gZ}arEu׼R>%!査aA=\Q}Obg~x_Z9O>3@^k] wM*J:v +OΝX,RŲ];5y5B{Umy6& !};lܵ5fGOr!勢ͷJʟ ծ=dJ*Ifa/aj7@pKzehHɘN݀Wd ƤTT[{L1Ab4yA'S#MŇlhpi]zyMPzAyLk>Q+nAcNWq;7neu$ ^P$ܳ67"Z"˝Qȗ 9Džj$%MW2/ }mCZm{Ldn9ZWU92X )F1rL>Nt[z9 j+9*&PqL1Y"43JF x_ޱ)1Z"{TX$8X ;s!SRs4korr$"Eyyoy&0"5tM$9vE776$9 dpKwO]U1WmF+( ;`C2$/%tcr۝}g +ӣ+N$|:ok3#g$N$+;udTaxf_׀NF%5-fNaM!LLBP@m1$ccˠLc (6pZ[ƍd|lZf;ovlŀ7dq2y֓aNṽyc{C_Mknp TR|߼lՠb=#0ub=sz *9'Bcg3^*x@<7Kn x!]/ft;QW -k콆nK EݻGߐ`uB`Tš<=Cqv7S6tJ::VJ|P_w_fGԺbּdzK8t͠/B~-?⎊6MDAX9lK^c +Oxؑ6?8==޸!D0 T-w%e7mVu:3ޘQCSx %OJy-7tbҥ g f_O((-S]80ZҨ\fw~mö7._(DbL̃mg/ף+:p2;jO JidᰆkARL[D"ofb2 h!+#HTUc&pd}#[YH}3}gQ2T2M(E|< ( +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/VKTYGI+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2234 +>> +stream +xRgXSYf2:DMteBr.`H Q`D)#M (0-,eHtQ :4E)"ـy{6'B a4FG$ AHp Fu1 4FL22PH4 +6B tGZ8BM%`O0Gń0N9f[] ɮR+9c|?NWK\?jTxPH[_)u5ؖYyb{LlO( wE+(Gڻ;lԸEK]Z͒)Ç&h}+5 |U|و2{[SP̵~\g3xQ\uԐfP׬(?=ߓS:$(;?|I])J;~mi÷^zvPv[o*NWZ AKboȏjF/E5[\VXoAyC[lqy1Hj)V$Wq-T +t΀~KҌa ]H튧}Z6Tc̅.U^m֓n! 9ߍRlwbR_h|-x~4l&AV?Ij,,a eʋabso_~~sOAӧp?KMʲ˞WF\0HWd yF)=p|AKFrppH[wAaXBIv_:{ieҷGCR7Ć=VP)]抒nuqĒzxwNuip !Z" UጳVJμ7Sp]cx z!c6Zvԓ5\T5U1k]区*^h=!]X?I;8ز4tF5 Njj[Y苳Y&bT{D/PHy>b\-e5#0@ڌJ +8pr?W%F/eĘ?捒rrޤ-w6W\QʔJt ͖|0ak14ڹmhiS*Lez*o|饻;Plu)Kѡ̼ rjF̓PxFՋp?u{IDqUߊ̖Yɥrвhz;|Dbv܂xz1,n_wKʽֱYe%<,E=)WxFS4Sn*.}Os.! `vS5㤜Ϋ?Փ5pKJ3_]iIοYK8mZWT>)k-7QȘp2FL r_COptD Ϡ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/EIYTLT+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2536 +/Length3 533 +/Length 3085 +>> +stream +xk8X49c*A 0$ȈԘy15f1#B9C8尔,%*P$Vؠ"Ukum_}&ps0DtYR||LR"YN)29p:R 071vTO*}ZsuL \ĜOQڕkd@pUZT387m{o(c?(*XJ+atF!΢\ɪ~Q0a^"m> +ڔdr>|TD*h<-/į]Yi8!˿%%$6ɠg +']! +Eg17 0 7]`hYqfh6H])c3$:l |X\F:82PWj>.j9y."[ouoU~ +SfJSBg~Wxljpi'cz.K]q暂+ +Lw)}/pqL{d'߫E0WS4oTtWcPt=ʄoU 6\Wf~_.jXDUA\{"yT,\0f"Gn㜳^o_2q'?V1]+o;MzwQ,ؔ3B_EnTV)FEO2>N$=Cˋ4L%g_&ɋw'kלBe +c雇f1UʝzA0_H%otzeVy=@~_NB}4xр70G38ň5>`@AbK#)>6T!n v@~mF,fԯ)qЊm[V+Ugzut{a.K7.#"bc6ME8G϶_1B y?OaFӝ㘀-]BK4DN1W#S$68 V:wN%zlo:iZkRڲRczftfW,%HL9\!v8Qfv./y9c} V(̱°%T6.$haxX}h+GdSJ-4AR鮒u #ģ9 yh͢-cjfcMMu}8KJ'IKrU 76loZQbb9*kxGWE9d#΁פ;<7`!p +e_7TOP]qK9KY*q9T+57YxA(oFfd۶ɨEK֤ *&ԌCyQYjxgA$Sڭ';pO~$6GA*2~% +eek&2T-p M509wJT(ENB裲kʧ)_Zmb^SK=ɄE4 BRfDJjȮAv:iP~#| QA"E"2B, +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/ZAWNTT+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1974 +/Length3 533 +/Length 2508 +>> +stream +x{LkȂHD:Bdi +$ds J?a H60 @H0OH K*Ya.@[( :`+C(` շT+)^0DDCgИl0 pڷ>6 +*0($ 6L -`l }\=;F}$X H/ m]:kNG/Vwe&m!уYiӐøž+p)u<׷&gK ,ߥxWk06Џ[h| ih\fWGTv\[O+%G8g|[!Nݖ쫨©0R_;`xw|XzYt.{ɳDSW4K'h&XW\f)mR"1[ʲ7=Աzxy'9EIoԤw`s2{{^h.tj!b9>\KRiinRQDr$s)OnDztg0Z{v&ul'8Jq`UeGtJ` i™𣋳riK )S[B A9Y~TqݗGy~#܈V>^&Ux{ފ6scg1\+5_yS%zq5C*uLuɣLEipnlphaGf ?V^}%ȵ޽ց򦓳yˀ1&ةZrB"rPMlкQc5Vz[B^ZB5?ȭ]Y{|b3W6)AVIMwz5mِ]lqu p'6;5 xUev. Ud1gvXsOO3BZ5龫89jIj/؜dkq-T[trOs/#;{P,J_VtMZaGf#f/ѡ4o( |mlbw#AWOO0Woy,|9wYlPC[^q'GBUrO*2[.5Ù0»Ϊ/wm1;&W\/jX!_.eG$Wd +~48T3`,y1d ꑲw J/K̙X>N<9ᥓMؕ<8aCoMn)Mh>[eJ+MRٱn ȇsإMEQEy2.XܚvZwiҫk K޵+b8As{޴r-u9>|?{-^2hFWR^}w٣UqfGqO[Nt]'~Ds9tky6!&npϦg%$+ݲ'Jܜ^$[ O9uh'˹z-S[$:0A! )*QӚ ̊V܇ߏޕ/5ʼo*^,|V-»e[xrtKDǫV[擰i +f05pL1]{;^3W^#PA[2Piʵ],>dG㩳`g.JkNjgaLPtGclc^]+ ?8"xGmiE'zjd0c1.rM$jd4p_*zF kaFJ]]åd160C}^ [%~=!6|`u+W3|e4|I0܎2xvH$<⴮Ӳ*ᶆEb[tĉ3E\协oP?"D,6FdQA +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/LQFVIR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}pٺs0[? TG f-)?8<Gk.=niUݸb WE|w! !; T h\][>4 +rV\{Wzg5[4 }Pd2H\焎_8ԯapsa!܀Jv9QMUvhe5|vF۞H ten2rH˻d(Y0_*^d\WXpFD~?a"WVx1 wkUw&.L +sw4-1RJ#i?㚕,Bc ~외\/,&wS;Rc9Y"\tJI^Yڂ4IDL7ϋ^Wn^45pcm]nA&#mBϗ}ypK(Z.*[,fE(HuW6';&S݅&I+Y qyI[peE:td W(y^֤-OI ;,HM嚾GhR:F+`;UnX+R5ŗX܏ {O סfOsD)wI[M/ӲuL3nQ4l{u.52r<* Vw̡֜xQG@h[[RLdLr6iP% j!'nGZB]>}nj.NO>dl=*ȯ9SM((כ^,2> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2(4v,7f 36flBv՝}Ȓ%!{v:J(D!Jx>^?{~suKة(^xS +mW0q#C'P: E P`ZH Mt0Pi_:`K0 i, 1t_D A!Qx4V'_ph<HkN X!0tB)X_C dܯ$wF9)յt`*ޟ 0|߸re72#};:p-;!TT5`45`@& ě0-M5-OH]{3XPzpD GmAP̬LzGj1U~ݘ:%F8!lP?x(V{ a6ɞ#!aZ 0+9cWc²Z)& %T^ɿPz-S୺d}s *ze9<\ȭuJ|Wj& +.ɨ?ZW9ĕ' +ZǮq, rmr+s}Z<] +{\Igd;4~u9=B׽/48Oņ#T8M4"6ɫg8۵֝w ՎG=N +ll m(8]*"4f|:! ޻gl}5טQqA<pّcn'Nܷ9;eTU6M|]w}yz˕6rUT8-+C!@䙮 fTv$A^ETl`?lGHFUz\=Ȼg5ȶʁ.\F=#֜L©;kk%t?7~;E\^TmY+w! 'lv FmKsZYլSl>)أrJXJWg,S7ؼ_N)[BN<3Jdg ^RB@zQ,3u51^5aچ:AXP`Μ1vٟpSl/u݉ㅠeHG5ڮ蕔/94Kus[%Ir%μ(}zm^~?ߵT'DZd.N+_jtfv)zvx>2/:@A9ugl$je{ǫ8 Ш/|4!q/N O{KuA/L7R 8mkC3۞FڞYH~N~#gyN'i5C tӾ8U +eJO +6$,hj/;`*V~@OQj]6m +@e0{U=>햾z#ȁmƅ5k\Hjy. n,~cx3-S~٥_[Mh)qxZ#aAƥ{;Vh'uW?RKb8ר(z$kӝ)uķW-jD3c'wэBK+zMgIG ֋d _:kA&] Qu-S$lʮ4ɕ.4=&YVKH/{(FL nj}"m#-\ydFZ{*_~pN7LTe,`$} Gtt:h``TϤ xҗC8?I2ڔ%%^dۉ2pT?>2̑c5!gUԮZ8 7oѵL8S>Q*!J-}'cZ:p߁Ԫpl4~j3W4Ǟӧe5#.8+xN0, b+/,-vJSEiK\-Azef|ؼ*C!\=qq.Ku웨Jtt[. tף+vDCjff4cUVuvbJby~5bWw~8hD$6%t{rZVo}f],fNGi(h[eqBT#;7٬w!}9pj01# 9zYBg'W @4N#1 JB)^vz .GLULyd',VOJSoW,{(]/ //BAP +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/MRCIRK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWZ.TanKY`d&N&HQqE(({P)m*.F)OOt|{kg&pdz ~5Ǽy^ٖos=Dٙi\52h7ca/fmv>W|~n>ˆռu$6 \-󞾳,h;Mi?9{1u&ME[cMIJɎY]rVv(>KGM-15N5k!3!ķvQFiQM)G6s40>3.U,_n+ 4^#bNCk+ӭ{6 ޞdh,ϭ~>i')] i,([5do~wgݾg55T沊:-д[מaQ|CsmuOb_Xݸ]76[e.Οm~`aiimvnhbHhsN iyѸR,Qsۮ+.}Kt'Ƀ{W$,O/(7 =ۮ]̘5 +΋`jcX{i]IAgп|'D hRP o.ct +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QYSORG+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDa)c֚ 3cblr BhWnmQG +\Τ~NsyZ}}wt4= Fv #rbFX}\`::8&Dd  YX c +/ď% p(&L f8W61a`&B"RC(QWX7ĂD!X,$6Q`:˕Nf۾`D؟-deR$ tjBdڃ!`NTurXi05BL=78<ﻮl"&)T0nEa~a 0 TCt{q~h]Άo]O"LgDA/rĄ#8f(\|#a: t)ޞ5šFƦjXYWn:: |Y%E0| ğgM)AP$DBϔ1*t +WsB`6vlDbVJiպν)|ͣeFeOP7gMHg^䙼<_)5u<}ۍ.u}S\ĒOt.}.4([8pڪ%$`bN_ N{NS*snNsG"b~Rz*}ӮW1Kl]/Y54ivlzCuM.FMxN곪xh 5=ep!|Vw,]JFFpÝ ul3[m+j܁)\Oafl:D`-N[z%S%X}ʳj@*ըؠM~2G[?_zDs=Kwg_V2Bxdk6`ЈRsO<:d2REVvJs(+OG.%zP"T Y)|@LAN ,F1QH>򅞛Xsqד94:}RF|^N%)Y9hK ~tʏ^0r.@tW6ې%1? +Nh6ژm/牵 XJ*IlIhd,kJ-_ y̙'LmTu9ImNlzGdަƚW1Ms])+(Y&A 5AO#zcFOm_-Qw/`{Ȧy92wx!riӮB՛0ד{ͻ빞 o)ǚI=EQ5eg^[?F(p۝.S-IQSMl"kd,ڽv#PRihgc~Bq㗃hU0j ;! W)s`|fwا+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;I+e2m h7?]rSJR;L]e⸢ŀjo>tԺδU!/s[yʑIb~Kp&J_F/9ԷlLm${e@輂h43"wO{%+~Yc\Oavtы-2\xfHkGiq֌̯{g8dUᜫm6g]%1PhsMow+.L04ڹc,cO&[&V]za?=V~`&?;e)7`VёPY'TՈ{JiݛëAn^?xTxe濼?1DL6Fd"!@ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/JQGGEB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9851 +/Length3 533 +/Length 10404 +>> +stream +xUTᶥqٸ\7nkp{@p!sνG/=GWCfY5~ HPdc1#. S)`c9عl/$$ @  r17u(AMMN6 3 foP#u+d1@V6H,stm#w_.?I9- K$eo\^ MlC,@.. N daS9='Bln 9Z;I"&##%_SUSGCϚq w@lhab_N%. `bpxYYW7$]s7#o8 ')PCMv ׸6x"2(XP^h-#c׷~Ldƅj||[g*@)8k*aOTng"9JYTv5-YC{P$-AP8"]Y6] +GuY3qᶢ\-S"dbmZa}rg=Od#o&2 +-+4i kF:6#t27F' |L$djHS֯U@,eR7o}yeUhjsն_}ήwa)2i\Yxk*M<G}pD`7}eR/ǂU\AH7GN qGs>S1I7ɰ9'Y/G}=gllŊ< ;[Nkndau1{x)ı 5zZB=Rb!#*-M\"J٩~qFl(7}MQF1Prdا[( *<1L!G+:mAV "iHe--k>*{:*{Q_4Yu؝#EPrzxax4 YrMwh tOBA7wcX)#V'yK;s[g= JʙVy^+8{&Y/0~ [+g}ʔ$4Qz,$ F =iiNBLrDbFJV}E/QHn 8g `!;·$nCP?J2Mkj}لdhK.o=$fbӓ?v,R7BQdgj_\Bb$RË%f@r"͐O 0 ;'kgSlsj ]}bwlLcY7wרݐ򗧂:lz"г A +Gs[X?<v\< *!4q]9At)I5Woܷ??sV\RuT|7t[Cz7 eCIpRш ԵR¡Pe0K:#sD{fOHMyU's¢v*8nLz!0ŧ*xJg:Ww3pgPvsMBpe`u(G=lcF@ ;'JP6~aф +C J(cl3^?#^P>Y̶#{kD{{+鎰&8~8k̀5$50y;Mf ֑Jj\ ̯o5 m K[MqlqKD|mpyxI>G+: +NYE) Q +!^Ќ?<*ANa- +&@*UۋdۦI$b)8┗x)slVOVyr}K}zjYH vKodT +GHJrGA̯MGLx}$@i3-$OymĄG՟;[ )~)B(|ФQf"0KI7,Ug|R=5$DbaKÜ8N2]q{|j9&#=+Ğ+k;kVkBwc4?J%3`*=s;f؉LȖa^g/;/*@!M㷉{D-/.UjCK[FdjZŇC ңښ]{9QՀOE?vi ;DFƪ r]fdmÌkhJ0(;3eKپ +`P[䇿lJ`Pf#LD%/o([0KXF$}M٥\|HxX|Q;.W|W^3b= yG@ +kj9X8!#<{c>GncX jEF½W&۾?n_fʵ~j{|Zj؆")\ Ġ'3<^*4 +`|a|a\E$4#-ԩS(|wz;`y)Hn _ ĕ>=Vr}ç%YeǍ{PbƤl9#\x\aW3pz > |Y s= ӷ VN;| _kn<('h4}\LCK?)GL)[(ج^] 3Jٓ]~(RȞ9*AҌDuN @W$@ + IjPMH`G<dX/|V'w<@m㊱dq+@N-;5#S ؝)91l+*pCtriRZ_0 +i/rRj?p!\ThJW^iA)}u8 +DI#4k"|V\t,KO5?/A& jb)Σ{u88ɏؗ %;F9,[o<_NڼfK%hB}+M)2lR?'nR?:Ϣ]/|pdJ+KNl -jJڕ{;&YH9dksj4 +8 eUMcg ъw;!;ͣFI1SI3HS7*ov"?&7EӢ#!J SjTObzm?J~Vܓ&ow !3).<0WHe956 +3Sx,VE);lCg|àu-9Q~3vz?l $sP9{s5؇Y̙ruYurdd=\8df"2]2f0? PdH]BX u-y 8"ԢlR{G b?vǀC q9+={_{IwMT)wVMe@@atQa}*eSEhaM@F ?f^k?-yIo.n؏l{:/b!k^D7jAF뉧?E/hx ygyeZ^]z3hzh~tޫ$jB2W pcX״xaӝcG)8QMC$6-4z<#9XH6*V5[,|cD βOiOyуaC_bG \o(5Q|UȂvN+6FkR?42Kڻf;־ezQ@->HBp0|Ê%(E4 =@ۛkcʕ>ׁԪ |I^_3BJ0,"I]\QRDobU 0hIySJ V!>=Ф$1=vDɨscQ(VJD ˎZ/_gZ m=P#@ڥۊb6|%)0=CT<6{HTS]Ѩh*)DQ;=;= ­#8QωHW;vFͷ*![ˆ*LD`!3_;XJEdQ !U6bsŝɘ@r 8 g{I0`Y!=%(uc!;& <$8-^ nㆅ eC>H} B`uu aO~hwcLWQK;QlLZFVğfM+Z44/eM;oUçD 7pTk? ؘbi;H$w1icYm;s1ϝ}|X#%T&MxwA]/y1s G?iC-AL^a W ȺU+h +J,99i:!x!S!V"cbs!bW"i+ +ʜw/*QD|ןkoe21;doEH:rF]Du 7S 2wG%è<8lA7c4 `sY쨟/sc}l&:IM>\t # R]ڂKƼvjj5rxʸ.!?Dɰ#w+,Ƃ 2rQ焎5(1 { +db5]}ǦDR}d;:Jg@4v7= 7]roChf66Kgfķb:LH9DU5D2pKPq`[^C;L.fjÜ=ZCdzxlN5:D*bUHQSg':OFK=% 3؃cѧj?2] P@Zu%R To{*TgJG fYyey@S.ĊdK|(>"??>C Opqov@) "geI:\ϦipZAoMbhke6 ”ff^:5ٺflͮN A,85zc[ZaۣFӐ*2D+r +N Ǫ)|#JYq2&f_(w~SyC7z(`Poڴj~P +{:u);<}aX{|o4OUY +<7MM 6ZƿPo|G{,SLRKfN~.^uuN;$<9SUqm:J]lV',ޘ|ar"#oLj3@ki*y-~:9᤬x]R8>d7x`S=Bt[Yƨ̼aཨpn,.mS!hI;–b .<~&7( TrX:$lщv6ګ|NWYb戁M$t5]M>ǰLug2x9ᗬ +GTu'foXY c6qO ®{gaos9y~􄆻jXJ* +EWP.& l5 K %P5Ր 1qћ3HI<俟3 fAau:9K1y88K(-}^!;0L)X`?{~fAћ1 'kN%=LlAj1~@Dv*Բxj\_ҍ}e=$YTFmaGkNӬȤSɬQͣ ^PiaGH i[+qϣֲ # 3)H`H_Nkא|,9$vMA:ZƵ(ƵϫUJ:0o)7`a)RQkjVZ-V8<5`G>ۇۜpQ͢*YYaاkbNOoFI:/Pv*i4w|̺'i904K#]HX+VmN%;fbvFgZpe/p/œ 1k>#M@^H~}談h;S/_6K~շ +wbvNd'bޕO^k,ݗ[>vox[K F2S ]-Z{[WSoό +Srwwhқu_9c$8~udK}.'ƚ K՜W~"R)O7Twl {Td =MVS\3['?<&ۿuCkPl +qTb3O.Y2bTn@tŀ0ꂗqzO!Wg?e ! .|}w;+*紇fH}m([z[fEq5NgJ-14.JwDcZeT8apU HhME-%}^k,I)T 1(8pNr-r:3r5h@܍_Ԑx3FoӹXv)=tmZ;`^ 򹖲P?ѧf1%&#tʣi3lo7Fwf#EKF8*kz8Wtocb;;(yKA~_ܭgD^ULhAXGu$_> 4Swdmd&9XH \;ooi*Oaݑ!5)> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?*(Iɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +141 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/XKALMW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 140 0 R +/Flags 68 +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5590 +>> +stream +xUT\ۖqw " +(\ +@pM 4@psν}G/=G?oϽ^=6$"cABiUm'ĠvXN20$(Hz~x8810.>nP[I?@pZl!C,VPH:8xqyB@ ZPNd?[7\ߜ̀ߔ`g'b{5o1Cp95 ?Կ->p8;x nUg0V=_p0]EJ`%Cfe ppC=?18%UTXcjX@`:>.֠տq99A>m5Y'+g0 p[Sw*))go?v>.;rW(Sps8 5 oLb(E+!CbuX/ W >I :vMn&K]ޣWQb}/jg4g?{ BK'%YH=Dsۮ#p+ϐZE =V)a"IGF$r\C [Nf颳 pmr1>c|G~ &g@UG7zz6Z ZF\I H*n< 9Wf(]˖ Dl^u]UE䩣9H=@3u:idz^@ɜC"xtKrnZE/9QSګj_qG  o_IZ<{_yPJFHWa.=!ɸ2dG\ɸ{ ĩ< NY&̮~hFdt(&cz W{QѦBn +%"oȲ?I 3rXU˔GW)[[rikz}E[{@(#ɨc:MtDUov!u}X`KI6t'SG"lWbpٴS?|'fߧcz;}QMoʸno.?(-۝aZ5e7>vRkʀ>74Z:mUzV)iHvz M') 'l1hY`%ֲWp5&>+IN_sIƈB8"ƀ,Da.1B="hoY޶Nw?"m0 Kek8%Ց|[iOxn>'9y M7fT_Z&xv ;+3NNE +eT{GAK!As/O ̡a(9GU<BLX^I\ؼ5Rע u?t0] -pKNz.Nl#zil']9ҵ BOqrSޒGgВjAG,)gpmKtHQ3щ`mBqT)Z<`]k܄]ܴZ`|Qu%S7T yuп";AOߌV1 aMXd+:MlGfm($t`M؃" KEV8zp[^M +lG_̧ߙyfrӯYKR5qyߔܝ,i4[vQgb,ΰMЩ[%F6eby6Ǫ:!wUe2foG0,zW{Y窝ۣٝzÓXʌBRF>ɒ%)m{m3۝}r15= 7RzɔKl5#hkT)wfZ.tǧoD­lAқ*ڟZ"/ it!5 D?IEŜu9Z9gͱßg(39P4]qIhQx 2$7wKh NCif茉# x[[G`}tPTay?4,NQWAI|JS} @%5+~z;]7We軅d<畎%+,} .+z[lc5Z,/>o|`..T߸%-ȮxmO(Bw{ٯt))~?s$ S{PqDE Isn8b +~(BਦfY4*H%lGN%/T:q7ցx.wٵ20 +e 9hYY;!e/;I7B8x7[6^U1^1# %܊K)S\d7iO i8 0#4#&P_#~t<&Ap4?Cx\h,i )~z-9IyVZ5ef"ƨ(&B }N38`ǯaŸjz}qTI ROX2~xhڍ§Lbۯmb/jLDg͂rϏ gvҏyxkpI 7ߎFGdc*@p17B6v/{>I.*Wٜ)!^ᐨwqsU; +8e8'gz=Bg3;پ-ExsFJ&>ªy3G4hV͓;QfQ~[@ dG/sGt_9ϙoӼ},҅|vTK~j? iF͚a-Tk@;nWWXˑCܩ$rpg0O\:PD41R/hZX5UЋOU+( Iz̦n'peRaAΘ9Y)W$sc T( + SnO#oeܔtW/z8궅7iъDln0JK2lv/&4@%fpr@-R۪ar+xE HH}\|:|ߞۓx: wQTb?[:sx]A7^p',} r܉n.(f@6 +ۋMl+%{Y'q-({D1ST!n'7 7mJiDŽSm"x$q:es'{1 2SS:Jޟ%t?yܐYb܈v_0e`ٱE_=Ċ"9+ [fТغ`iN +a)e:%2:pQD]5|/>#&ꌌ4 OQQ[3OUP]P>̀-ђ.Gzqdd0h*ޛ;.>2tD,Suݼ(y.'"v\)DQCWT!M%dSOr=0r||zLjpST^ϋ*|Ы"%(Z$bL),_x ِ.!Q~}tee&bݬ#s4UD9&}>JWW@kBE͂rxȱ=pԅ.nL/zKyAr8Vgwl]cOi bBm=w]yцWeg CCΥe_>=XpR3 P0a`u b;s iO'-(Ui'lC#|;J^NcÞI@IR*o_A_m9Fnx$a:pd*XDt,Y3͕T ȯb3(}Iׇ;b䵏0QjNJ ybpEFٵ]ͫ>*Ϲg::",1\.|ضTыZGO^9@}(D!mջ)0Od$+\6lH%]9TM/, +8~Ԯl]b83" 3Q%6dUn:fٜ.(5)0œq{!P+_@Rk0 r0paEoDž,v7ݭVJ1k &ڳiTh;k&  yif ![GcyJ_ TH}JHeCYl)KP>?W,kzsXMsS@˷TR$ilɘ4>ji5dO6ۊ5r}"J+Th7#LjE{]ݳoL0?D hfCM +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1853) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185356-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +146 0 obj +<< +/Type/Pages +/Count 2 +/Kids[63 0 R 67 0 R] +/Parent 145 0 R +>> +endobj +145 0 obj +<< +/Type/Pages +/Count 5 +/Kids[5 0 R 21 0 R 44 0 R 146 0 R] +/Parent 3 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +148 0 obj +<< +/Type/Pages +/Count 2 +/Kids[75 0 R 79 0 R] +/Parent 147 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +149 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 147 0 R +>> +endobj +147 0 obj +<< +/Type/Pages +/Count 6 +/Kids[71 0 R 148 0 R 83 0 R 149 0 R] +/Parent 3 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +151 0 obj +<< +/Type/Pages +/Count 2 +/Kids[110 0 R 114 0 R] +/Parent 150 0 R +>> +endobj +150 0 obj +<< +/Type/Pages +/Count 5 +/Kids[95 0 R 99 0 R 103 0 R 151 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 152 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 143 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 2 +/Kids[134 0 R 138 0 R] +/Parent 152 0 R +>> +endobj +152 0 obj +<< +/Type/Pages +/Count 6 +/Kids[118 0 R 153 0 R 130 0 R 154 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 22 +/Kids[145 0 R 147 0 R 150 0 R 152 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +155 0 obj +<< +>> +endobj +156 0 obj +null +endobj +157 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 155 0 R +/Threads 156 0 R +/Names 157 0 R +>> +endobj +xref +0 158 +0000000000 65535 f +0000106580 00000 n +0000110308 00000 n +0000109953 00000 n +0000110158 00000 n +0000106744 00000 n +0000004048 00000 n +0000000009 00000 n +0000038454 00000 n +0000038270 00000 n +0000000913 00000 n +0000043377 00000 n +0000043191 00000 n +0000001906 00000 n +0000048699 00000 n +0000048511 00000 n +0000002823 00000 n +0000110058 00000 n +0000003740 00000 n +0000110108 00000 n +0000003993 00000 n +0000106847 00000 n +0000011626 00000 n +0000058755 00000 n +0000058566 00000 n +0000004109 00000 n +0000064026 00000 n +0000063836 00000 n +0000005055 00000 n +0000069330 00000 n +0000069141 00000 n +0000005991 00000 n +0000006967 00000 n +0000071872 00000 n +0000071678 00000 n +0000007921 00000 n +0000075257 00000 n +0000075071 00000 n +0000008867 00000 n +0000078070 00000 n +0000077879 00000 n +0000009831 00000 n +0000010825 00000 n +0000011527 00000 n +0000106952 00000 n +0000019695 00000 n +0000080165 00000 n +0000079971 00000 n +0000011688 00000 n +0000012659 00000 n +0000084176 00000 n +0000083981 00000 n +0000014275 00000 n +0000015227 00000 n +0000086084 00000 n +0000085889 00000 n +0000016134 00000 n +0000017116 00000 n +0000088742 00000 n +0000088556 00000 n +0000018093 00000 n +0000018838 00000 n +0000019570 00000 n +0000107057 00000 n +0000020188 00000 n +0000019757 00000 n +0000020143 00000 n +0000107162 00000 n +0000021180 00000 n +0000020250 00000 n +0000021044 00000 n +0000107441 00000 n +0000021539 00000 n +0000021242 00000 n +0000021494 00000 n +0000107546 00000 n +0000022673 00000 n +0000021601 00000 n +0000022537 00000 n +0000107651 00000 n +0000023451 00000 n +0000022735 00000 n +0000023406 00000 n +0000107837 00000 n +0000023912 00000 n +0000023513 00000 n +0000023867 00000 n +0000107942 00000 n +0000024989 00000 n +0000023974 00000 n +0000024842 00000 n +0000108047 00000 n +0000026013 00000 n +0000025051 00000 n +0000025877 00000 n +0000108328 00000 n +0000026606 00000 n +0000026075 00000 n +0000026561 00000 n +0000108433 00000 n +0000027556 00000 n +0000026668 00000 n +0000027430 00000 n +0000108540 00000 n +0000029893 00000 n +0000099457 00000 n +0000099261 00000 n +0000027620 00000 n +0000028632 00000 n +0000029732 00000 n +0000108648 00000 n +0000031041 00000 n +0000029957 00000 n +0000030904 00000 n +0000108756 00000 n +0000031764 00000 n +0000031105 00000 n +0000031718 00000 n +0000109042 00000 n +0000032508 00000 n +0000031828 00000 n +0000032462 00000 n +0000109150 00000 n +0000033281 00000 n +0000032572 00000 n +0000033235 00000 n +0000109258 00000 n +0000034426 00000 n +0000033345 00000 n +0000034265 00000 n +0000109449 00000 n +0000035632 00000 n +0000034490 00000 n +0000035495 00000 n +0000109557 00000 n +0000036821 00000 n +0000035696 00000 n +0000036660 00000 n +0000109665 00000 n +0000038206 00000 n +0000100875 00000 n +0000100680 00000 n +0000036885 00000 n +0000037808 00000 n +0000038148 00000 n +0000107348 00000 n +0000107267 00000 n +0000108233 00000 n +0000107756 00000 n +0000108152 00000 n +0000108947 00000 n +0000108864 00000 n +0000109856 00000 n +0000109366 00000 n +0000109773 00000 n +0000110240 00000 n +0000110263 00000 n +0000110285 00000 n +trailer +<< +/Size 158 +/Root 2 0 R +/Info 1 0 R +>> +startxref +110406 +%%EOF diff --git a/src/axiom-website/CATS/schaum31.input.pamphlet b/src/axiom-website/CATS/schaum31.input.pamphlet new file mode 100644 index 0000000..343aa2a --- /dev/null +++ b/src/axiom-website/CATS/schaum31.input.pamphlet @@ -0,0 +1,735 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum31.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.615~~~~~$\displaystyle +\int{\coth{ax}}~dx$} +$$\int{\coth{ax}}= +\frac{1}{a}\ln\sinh{ax} +$$ +<<*>>= +)spool schaum31.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(coth(a*x),x) +--R +--R +--R 2sinh(a x) +--R log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (1) ---------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/a*log(sinh(a*x)) +--R +--R log(sinh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R 2sinh(a x) +--R - log(sinh(a x)) + log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (3) ----------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +dd:=expandLog cc +--R +--R - log(sinh(a x) - cosh(a x)) + log(- 2) - a x +--R (4) --------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 5 14:615 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R - log(- 1) + log(- 2) +--R (5) --------------------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.616~~~~~$\displaystyle +\int{\coth^2{ax}}~dx$} +$$\int{\coth^2{ax}}= +x-\frac{\coth{ax}}{a} +$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(coth(a*x)^2,x) +--R +--R +--R (a x + 1)sinh(a x) - cosh(a x) +--R (1) ------------------------------ +--R a sinh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=x-coth(a*x)/a +--R +--R - coth(a x) + a x +--R (2) ----------------- +--R a +--R Type: Expression Integer +--E + +--S 8 +cc:=aa-bb +--R +--R (coth(a x) + 1)sinh(a x) - cosh(a x) +--R (3) ------------------------------------ +--R a sinh(a x) +--R Type: Expression Integer +--E + +--S 9 14:616 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 1 +--R (4) - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.617~~~~~$\displaystyle +\int{\coth^3{ax}}~dx$} +$$\int{\coth^3{ax}}= +\frac{1}{a}\ln\sinh{ax}-\frac{\coth^2{ax}}{2a} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(coth(a*x)^3,x) +--R +--R +--R (1) +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) - 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) - 4cosh(a x))sinh(a x) + cosh(a x) - 2cosh(a x) + 1 +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 4 3 +--R - a x sinh(a x) - 4a x cosh(a x)sinh(a x) +--R + +--R 2 2 +--R (- 6a x cosh(a x) + 2a x - 2)sinh(a x) +--R + +--R 3 4 +--R (- 4a x cosh(a x) + (4a x - 4)cosh(a x))sinh(a x) - a x cosh(a x) +--R + +--R 2 +--R (2a x - 2)cosh(a x) - a x +--R / +--R 4 3 2 2 +--R a sinh(a x) + 4a cosh(a x)sinh(a x) + (6a cosh(a x) - 2a)sinh(a x) +--R + +--R 3 4 2 +--R (4a cosh(a x) - 4a cosh(a x))sinh(a x) + a cosh(a x) - 2a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=1/a*log(sinh(a*x)-coth(a*x)^2)/(2*a) +--R +--R 2 +--R log(sinh(a x) - coth(a x) ) +--R (2) --------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 12 14:617 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 4 3 2 2 +--R - sinh(a x) - 4cosh(a x)sinh(a x) + (- 6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (- 4cosh(a x) + 4cosh(a x))sinh(a x) - cosh(a x) + 2cosh(a x) - 1 +--R * +--R 2 +--R log(sinh(a x) - coth(a x) ) +--R + +--R 4 3 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) +--R + +--R 2 2 +--R (12a cosh(a x) - 4a)sinh(a x) +--R + +--R 3 4 +--R (8a cosh(a x) - 8a cosh(a x))sinh(a x) + 2a cosh(a x) +--R + +--R 2 +--R - 4a cosh(a x) + 2a +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 4 2 3 +--R - 2a x sinh(a x) - 8a x cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 +--R (- 12a x cosh(a x) + 4a x - 4a)sinh(a x) +--R + +--R 2 3 2 2 4 +--R (- 8a x cosh(a x) + (8a x - 8a)cosh(a x))sinh(a x) - 2a x cosh(a x) +--R + +--R 2 2 2 +--R (4a x - 4a)cosh(a x) - 2a x +--R / +--R 2 4 2 3 2 2 2 2 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) + (12a cosh(a x) - 4a )sinh(a x) +--R + +--R 2 3 2 2 4 2 2 +--R (8a cosh(a x) - 8a cosh(a x))sinh(a x) + 2a cosh(a x) - 4a cosh(a x) +--R + +--R 2 +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.618~~~~~$\displaystyle +\int{\coth^n{ax}{{\rm ~csch}^2{ax}}}~dx$} +$$\int{\coth^n{ax}{{\rm ~csch}^2{ax}}}= +-\frac{\coth^{n+1}{ax}}{(n+1)a} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(coth(a*x)^n*csch(a*x)^2,x) +--R +--R +--R cosh(a x) cosh(a x) +--R - cosh(a x)sinh(n log(---------)) - cosh(a x)cosh(n log(---------)) +--R sinh(a x) sinh(a x) +--R (1) ------------------------------------------------------------------- +--R (a n + a)sinh(a x) +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=-coth(a*x)^(n+1)/((n+1)*a) +--R +--R n + 1 +--R coth(a x) +--R (2) - -------------- +--R a n + a +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R (3) +--R cosh(a x) cosh(a x) +--R - cosh(a x)sinh(n log(---------)) - cosh(a x)cosh(n log(---------)) +--R sinh(a x) sinh(a x) +--R + +--R n + 1 +--R sinh(a x)coth(a x) +--R / +--R (a n + a)sinh(a x) +--R Type: Expression Integer +--E + +--S 16 +dd:=expandLog cc +--R +--R (4) +--R cosh(a x)sinh(n log(sinh(a x)) - n log(cosh(a x))) +--R + +--R - cosh(a x)cosh(n log(sinh(a x)) - n log(cosh(a x))) +--R + +--R n + 1 +--R sinh(a x)coth(a x) +--R / +--R (a n + a)sinh(a x) +--R Type: Expression Integer +--E + +--S 17 14:618 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.619~~~~~$\displaystyle +\int{\frac{{\rm csch}^2{ax}}{\coth{ax}}}~dx$} +$$\int{\frac{{\rm csch}^2{ax}}{\coth{ax}}}= +-\frac{1}{a}\ln\coth{ax} +$$ +<<*>>= +)clear all + +--S 18 +aa:=integrate(csch(a*x)^2/coth(a*x),x) +--R +--R +--R 2cosh(a x) 2sinh(a x) +--R - log(- ---------------------) + log(- ---------------------) +--R sinh(a x) - cosh(a x) sinh(a x) - cosh(a x) +--R (1) ------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 19 +bb:=-1/a*log(coth(a*x)) +--R +--R log(coth(a x)) +--R (2) - -------------- +--R a +--R Type: Expression Integer +--E + +--S 20 +cc:=aa-bb +--R +--R (3) +--R 2cosh(a x) 2sinh(a x) +--R log(coth(a x)) - log(- ---------------------) + log(- ---------------------) +--R sinh(a x) - cosh(a x) sinh(a x) - cosh(a x) +--R ---------------------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 21 +dd:=expandLog cc +--R +--R log(sinh(a x)) + log(coth(a x)) - log(cosh(a x)) +--R (4) ------------------------------------------------ +--R a +--R Type: Expression Integer +--E + +--S 22 14:619 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.620~~~~~$\displaystyle +\int{\frac{dx}{\coth{ax}}}~dx$} +$$\int{\frac{1}{\coth{ax}}}= +\frac{1}{a}\ln\cosh{ax} +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(1/coth(a*x),x) +--R +--R +--R 2cosh(a x) +--R log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (1) ---------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=1/a*log(cosh(a*x)) +--R +--R log(cosh(a x)) +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R 2cosh(a x) +--R - log(cosh(a x)) + log(- ---------------------) - a x +--R sinh(a x) - cosh(a x) +--R (3) ----------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 26 +dd:=expandLog cc +--R +--R - log(sinh(a x) - cosh(a x)) + log(- 2) - a x +--R (4) --------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 27 14:620 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R - log(- 1) + log(- 2) +--R (5) --------------------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.621~~~~~$\displaystyle +\int{x\coth{ax}}~dx$} +$$\int{x\coth{ax}}= +\frac{1}{a^2}\left\{ +ax+\frac{(ax)^3}{9}-\frac{(ax)^5}{225}+\cdots +\frac{(-1)^{n-1}2^{2n}B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 28 14:621 Axiom cannot compute this integral +aa:=integrate(x*coth(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %O coth(%O a)d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.622~~~~~$\displaystyle +\int{x\coth^2{ax}}~dx$} +$$\int{x\coth^2{ax}}= +\frac{x^2}{2}-\frac{x\coth{ax}}{a}+\frac{1}{a^2}\ln\sinh{ax} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(x*coth(a*x)^2,x) +--R +--R +--R (1) +--R 2 2 +--R (2sinh(a x) + 4cosh(a x)sinh(a x) + 2cosh(a x) - 2) +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 2 2 2 +--R (a x - 4a x)sinh(a x) + (2a x - 8a x)cosh(a x)sinh(a x) +--R + +--R 2 2 2 2 2 +--R (a x - 4a x)cosh(a x) - a x +--R / +--R 2 2 2 2 2 2 +--R 2a sinh(a x) + 4a cosh(a x)sinh(a x) + 2a cosh(a x) - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=x^2/2-(x*coth(a*x)/a)+1/a^2*log(sinh(a*x)) +--R +--R 2 2 +--R 2log(sinh(a x)) - 2a x coth(a x) + a x +--R (2) --------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) + 1)log(sinh(a x)) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 +--R (a x coth(a x) - 2a x)sinh(a x) +--R + +--R (2a x cosh(a x)coth(a x) - 4a x cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a x cosh(a x) - a x)coth(a x) - 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 32 +dd:=expandLog cc +--R +--R (4) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) + 1) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R 2 +--R (a x coth(a x) + log(- 2) - 2a x)sinh(a x) +--R + +--R (2a x cosh(a x)coth(a x) + (2log(- 2) - 4a x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a x cosh(a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(a x) - log(- 2) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 33 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (5) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 34 +ee:=sinhsqrrule dd +--R +--R (6) +--R 2 +--R (- 4cosh(a x)sinh(a x) - cosh(2a x) - 2cosh(a x) + 3) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R (4a x cosh(a x)coth(a x) + (4log(- 2) - 8a x)cosh(a x))sinh(a x) +--R + +--R 2 +--R (a x cosh(2a x) + 2a x cosh(a x) - 3a x)coth(a x) +--R + +--R 2 +--R (log(- 2) - 2a x)cosh(2a x) + (2log(- 2) - 4a x)cosh(a x) - 3log(- 2) +--R + +--R 2a x +--R / +--R 2 2 2 2 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) - 3a +--R Type: Expression Integer +--E + +--S 35 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (7) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 36 +ff:=coshsqrrule ee +--R +--R (8) +--R (- 2cosh(a x)sinh(a x) - cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (2a x cosh(a x)coth(a x) + (2log(- 2) - 4a x)cosh(a x))sinh(a x) +--R + +--R (a x cosh(2a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(2a x) - log(- 2) +--R / +--R 2 2 2 +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 37 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %L sinh(y + x) - %L sinh(y - x) +--I (9) %L cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 38 +gg:=sinhcoshrule ff +--R +--R (10) +--R (- sinh(2a x) - cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (a x coth(a x) + log(- 2) - 2a x)sinh(2a x) +--R + +--R (a x cosh(2a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(2a x) - log(- 2) +--R / +--R 2 2 2 +--R a sinh(2a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 39 14:622 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R - log(- 1) + log(- 2) +--R (11) --------------------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.623~~~~~$\displaystyle +\int{\frac{\coth{ax}}{x}}~dx$} +$$\int{\frac{\coth{ax}}{x}}= +-\frac{1}{ax}+\frac{(ax)}{3}-\frac{(ax)^3}{135}+\cdots +\frac{(-1)^{n}2^{2n}B_n(ax)^{2n-1}}{(2n-1)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 40 14:623 Axiom cannot compute this integral +aa:=integrate(coth(a*x)/x,x) +--R +--R +--R x +--I ++ coth(%O a) +--I (1) | ---------- d%O +--I ++ %O +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.624~~~~~$\displaystyle +\int{\frac{dx}{p+q\coth{ax}}}~dx$} +$$\int{\frac{1}{p+q\coth{ax}}}= +\frac{px}{p^2-q^2}-\frac{q}{a(p^2-q^2)}\ln(p\sinh{ax}+q\cosh{ax}) +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(1/(p+q*coth(a*x)),x) +--R +--R +--R - 2p sinh(a x) - 2q cosh(a x) +--R q log(-----------------------------) + (- a q - a p)x +--R sinh(a x) - cosh(a x) +--R (1) ----------------------------------------------------- +--R 2 2 +--R a q - a p +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=(p*x)/(p^2-q^2)-q/(a*(p^2-q^2))*log(p*sinh(a*x)+q*cosh(a*x)) +--R +--R q log(p sinh(a x) + q cosh(a x)) - a p x +--R (2) ---------------------------------------- +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R (3) +--R - 2p sinh(a x) - 2q cosh(a x) +--R - q log(p sinh(a x) + q cosh(a x)) + q log(-----------------------------) +--R sinh(a x) - cosh(a x) +--R + +--R - a q x +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 44 +dd:=expandLog cc +--R +--R (4) +--R - q log(p sinh(a x) + q cosh(a x)) - q log(sinh(a x) - cosh(a x)) +--R + +--R q log(- p sinh(a x) - q cosh(a x)) + q log(2) - a q x +--R / +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E + +--S 45 14:624 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R q log(2) - 2q log(- 1) +--R (5) ---------------------- +--R 2 2 +--R a q - a p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.625~~~~~$\displaystyle +\int{\coth^n{ax}}~dx$} +$$\int{\coth^n{ax}}= +-\frac{\coth^{n-1}{ax}}{a(n-1)}+\int{\coth^{n-1}{ax}} +$$ +<<*>>= +)clear all + +--S 46 14:625 Axiom cannot compute this integral +aa:=integrate(coth(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | coth(%O a) d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp90-91 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum31.input.pdf b/src/axiom-website/CATS/schaum31.input.pdf new file mode 100644 index 0000000..7778d6b --- /dev/null +++ b/src/axiom-website/CATS/schaum31.input.pdf @@ -0,0 +1,2067 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/CJDWMG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/COMDUG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/MDOTUY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/VMJSKW+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/NVHZGI+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/VKTYGI+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/EIYTLT+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/ZAWNTT+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/LQFVIR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 623 +>> +stream +xVn0+xPp]r豏>5!p_&i痤Hɢ,dž'.wg8;P!Q]_\"8RZV:o]?]\lJPB ī+~o}=@ ls—>@`I1bsrC)0.VN7O^>QөZ;!B>e{Ζ\Q0Tm Y@-p‚P{T<*ӠDPݵ(?EV16juD>9:CRԅ㩣ĊT`nƞd_ij%a6y%>gj-3L1]4lhIŎz6õ&UH9zĵM҈ko+FY4uBa!7ˈnkͳɓQZ,9$8B)|=#֩$Wk#)Tq' +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/TXMCWS+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/MRCIRK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/QYSORG+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/JQGGEB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 661 +>> +stream +xڵVMo@W~/XjRq. 91v, Va&ɂ}f͌ֈJ'aq}+DHX#͈QkC$?>l*x`3@i&/׷E$ҵ c5VGq"$EQ0!8¨`u""ЙE'$9 Qϼ8%ҴޜÚ4THs޼Y@\FGF=#.НS3 3>~ !ag9B\""^.qH'2:_@VSL 6Z66V 20X<)wEM)'{xjwtԣ Vݤ~Qe]neUX̒,e'yu0lhmlͫtU֊;=Ɠ+ `BQ@-9bCar:](G릢`uZ{1 ƥ3StCϷE7jr>7: ٜ]۩ӿS¾Uo#Ž54j\C GlU d6/6K꘲}Z -. ʄ06!zs$lw6_}-6>hwUnYf-)k/ݠ +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 312 +>> +stream +xڵSR09qfC:> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 697 +>> +stream +xڵVMs0WIh>3>ӤzKB:#c0cCv c$Khw߾}F&qNH|"גd${E6L[O@(FAw/ךD,U:Vuȍ* jGlqfJĵxcXh[aKFy!Ә/l9L@CF!rLdR22[d`n^AxmFu& kE-Mp@I@8fj]0 RID 2 p&*f8M*x+ SP19!`Ƙx~D!V"-{Lqb,r dڕO],jQ8ȍgխv4M45={VqJxT +=t Jb叝ꖤX楠WhJ$1cu> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 862 +>> +stream +xڝVKo1Wx^\&U{lTڤ4AA߱˾,xf><&qNHx|&E@171&XDN(ˀ/n IYj|:Kat=D +ID\KqaZxcȭ*N~ڔ Bg9kf$mJI689uJTh]$`F~ˡ_"@3 4u"P45 /܁;6b11~ynk)Z +Dה-̙PГOͦ .b0F@JXfrjUv:;*%wS! +IHt%#´ ]¯^t'^ڨ^SzqwqV:{ , F#VEjy]>e%M~KG[fp9hB> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xڭVMs0W͈h%! NN{lqI|p}1H6n}Ah?[ DB7%$(B  _G1HFyD?DH+D/ͦڪ~.2)M}vU0tVHF8I|) qMRm-OhRivp.۷uVM޿׻f6}oRd/Tf׎[zzwouџVOeaffX&],b1VܐcR?ֆ૦=wj8qgtH; +V$7<e`^hC(#3 hK!hi5@ˠ:T9M9=xyT.1s4d+m[q;8n<7Rݓ[g+mw#} +j|tGo@F yvtsײÌ@эAA*Ix wK]8~B%L,Q:K? +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 301 +>> +stream +xڍSN0{tTٱׯ#"EpD +j8'iiejf8-O>] 9`V5ȬA(}OF &4Ν+Mo +XIA&)׾)H. +oxMtlN)Gd {\o .dջjJ*^dm2 glLU]I7o5jCaqͷ)-=j*), })P3[613fnߡ|Xn_k[n=?__ +4@*.@?8ܔ +endstream +endobj +82 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 771 +>> +stream +xVMo0 Wh'5#Q_V\v\p ER`ٿeٱ`ibri$||Ojgo+ń;3fh&Qi&FN)ʈ<\"K_*K@T Y?QX hdB\LޚBV20mRG{n*ǡN&N392"2R Rݥ g b&c48cy;AjA B'> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 337 +>> +stream +xSAO0+z,Yڵ@[ Af4ƃ&TFL_/ncibb<}^_`B@r:>  +` ~i,dWUz2 1$;@iQ&Yg j7.ڼJ"H1u*6OyO7ęџj? ugbzL?70gREĻ/[xU·ZFmmlN_@& a R7:įek,V^\v* 5R~"Qe]A5e\RH_< ђ +e:> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 790 +>> +stream +xڽVMo0 W贕"Ғ,eX;li.k:X K?Jc'+f-ӣm&l#{?(J~2"ӌgZHdwqˀݏ>o s zC*B+ƕpc$1CJ1#F; +,{|]Q7"Cͷ[˟OWBv_PkL&!~~&Ct =L{Om钋a̒k\vx>8e3b: O&goz1Y3FYzC]sHCfR лMiN7B3l6wze(Q _I52;ުYG9ry +endstream +endobj +94 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 247 +>> +stream +xڭ?O0w>ō`vD``Z9B(.Pv@‹w'?RB v ~%8 g(,7JX f88jٖhRˉmEO$pDϜ*҈kY6v= C6k^=j):ؔzI`tw/[="o ƪ~"J/wmi|h:W Eq]g?bSY~lj@7B5;3 ك +endstream +endobj +98 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 687 +>> +stream +xڽVMo@W$awH\UO 4K(Dwkc$nZBݙy1& #k'o[I!" HE#=Eid&1ڧpn@ +CY$TBBV'CfsGC &? + q\ޒ'VeE8\w#ayDEp쭬Q Z& S$s9,r&>/=UdCsBBSR4g9X袇=)./+i^#ݹƩ9!n* U +) ZT֦IxJ4a3A-*r|(8-YzQ$nsY=ywaEYd=eC%'QzuJF7ΠJЗ"T IDC(\z,T=F(7$ǕQg{Y.>$QEd2Iehvz> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +107 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 106 0 R +/BaseFont/ZRRGOB+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 972 +>> +stream +xڵVK6W:ç A7EzhsIjkw bA?CQ$-±>ΐ8pYެ_ecV,5V4u +mUOgEZUXFԏOXSy_>͹tQB~ ^h)!AA>nχ𧨶AAhFKkͱz>)4{zs<<ӡヨmO+2(L J&, +iަ6p0 ',zJm=N'F%#|l1 D2@) p X|l(d7k[~'{b'1b2G>>mrBdh@k8Ac#y#a` +M3OA% q/mN*F/G Z f1fN1Y[qb0"2ɖ&%&IdEd7@/!#dCF QArD *;^AcSܔ(hT sZlzr8=SUW]15]N6VMqKsqfү> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 868 +>> +stream +xڭVIo1+|c?zA4\$R)Uyd<[o!qNI|{O.f7Ť"of52enB݉9Fϼ )B` %)_IJM̡$3i 2@ۀaZÄ!ob3(*ξM`0UG)VB "1 Tya4.b0.:g.i9ӪfB HKj \_fodm_2ϤkI.;GE@QU  \W7ԅ$^mdx5*FU2YP[7~f]Nƻl 1|}di_?ua\4T? Hƫ&DT5h'NZUme?LYu KN`,Zy:U4tb:O!E6ϏyݕFӭCyIVz *<J?HeuQhpd'~z˓NI 4,h݃پbxN/HRg1x^2ygׇn˟?knzS3{sV 1+`׺"fpޟ2aFG;@@qOM]yCcҟFT(4 :Z.:~j5* +\?@Yz&< P|j +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 477 +>> +stream +xVMs0W2$8Ki[QJ#oXQH;8ԋ; +HAu {@pr #. ~ |ZĆ@bcYІPXf/Ȗш.v^>(1X 84jenIԪ EOM*Qv,Q# OQIؠ +>p𮾛ٷA X&ܥإ9C"@ +72ͱ_Z(h=MVDt.ud˫@*@)2 Vrs(a=PÍY*vNbgmIdnxPkuQbrlWqSyMK0ZYro7~WL>rw /Fo'wP*2Do3xgggz6̔o?z^7c܀KpcVOË\޹ +endstream +endobj +117 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xV0+|L$$.U٪=ܚVZ-ICưR9`y3~󞙁1!v@ޕ;")$)DDqB%$J?Ozh+k*1 ­|}m01njU-?F(IRR7R+|&e$ [E9Ι`LoQ˕ʬ0@z^4zd̢uʲqw}xۮ˗烮~qbҤ..Ѥ';8;HĄPD@&k9P4)F0ez:P)7&v~Ӿ Ή#́)DZn6xq/D[-)y?Y7,S)dx}yiq}C4T$͌1!Ņ!<.【a[_e'Kg MuBڊk> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 586 +>> +stream +xVK0WR 65CfhRj误a[x<7_tMA FmE m x(Tml)+ +thа +Th1 YqnWY9XɊ1}%۵w3tE\ACncZl6v"tKWC{3#dYtuь>Iyq,{gWCn/<,$K!-8E׷&64G~ 5::n+_uq.]VxaUQV+߸k$s7-~NCoZ;k8ҹ ӰS*e¶Tv<)]SQR1FL/ıI-H KҦl 'k IӴd@耸WTgnMK8_u#jԹSi6t^Y+u&m ӱ1曏Cr*ڀg>xI>'QĞj?(8w=O1ݶ}T=M".6"}SnG4SJbAek;Z1#Ew +endstream +endobj +125 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 836 +>> +stream +xڭVMo1+)t{*ZT.H4\jC)M4 ۛ]7ƻy~Ke<&pI$Dsj) P%F7vVDq;4Q J!tt-C*IJI][ogXꀰ`Q>!OI~ jD@hyI1QkHi 0E/ҵ2\p Z}$jw +0EܐG)бOyPih;DH>c`<YI +"3 (><G";(WSDc/(,B18K9jyj|>ZGaL.-9Ӻ +OE Q (}; 3(g 0n j钀&mƵ`ϫNU8*}ȕ1dIݞ*'BC}|QuNf`WEV-ÙAkм-)KP_B*\;Ds&Ij8A&Dg[QmPx dpjn3O^0c;Hn?< \wy)J\X/Ȳ%h\p9bwj6<>l/qXm=Qӳfw;¥[]ULvf7eseQ'ByU ̚}n4xᗄ¢C+7e!X8XhuaL|U5=o//)0Q:|Fv5 Tq +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F8 38 0 R +/F9 41 0 R +/F14 107 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 934 +>> +stream +xŖn8} +%s)eI=U (Yo67}dIe'E"K8Pc12 h#2!/ T"R|s6dү++ 6ri]R༐6܊2ӼGso¬LN +UNyzx3pyxwN9ƽK 37uՑT.$i0+h)-E遲ʆcmk)EefW-Fc4uUjs@Q_={~Ӻg:'+7BN<B9|)棧Ak0XxQ sdPY j +2x^6 ;ޅ!]DLnEF(Tk`{VP"yS zJժZ+lg`8Ϻh{le'fUm(BR+ҡQM#Umu:1!)^f9f,SRVUIU{R~0ziyX>-gEn&1I9iՠԞant:S:>.J\v!$~}=`po$7ߨHf |)IzRW+To[_hO{x2q^8~z11c5#tQ"$LH\|u ,Xa77󋲔/h-ݣėw+[nhMQPYhy,g3R{~{`vjkUBQ2. +kV9U_d_Q +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 893 +>> +stream +xڭVK6WR@C.ߔ !E7AQ +(vW,9kUHZ%HBq8/GD  e{ D2Ġ#WXqI Q#ns[޽k,0?1SFEi$N7TcXOi7 VZgzWzh. RV͂PrJ#0Ս Y&gb.Cq\eSx,C΋\dRFswn-ʇ8??o)O6ohoYUSxus7l%ʈ-VjSvIw`(# 1Iz Ibk>m6Nvzt>heG9=9pMG0f!3:;pZѮZMbDMC0h@0A 8!I4lMY;;E!;)%yi%I"#g2$I세k…sg>sm$qѕJ C{ĕ&+t8.PF$wz^*hjRN/c+ѳ_mf:$vy=;%#2'zN@bR]` u-lba4FˇG ,]UyȪ + 1 Y]73_O8NOgY5oYSڤ#_KlY~2H=@VB9YY{3` +9Kt©LtG L.KBH8@E:&tUGKP87K#~>F +endstream +endobj +137 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F14 107 0 R +/F8 38 0 R +/F12 56 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +142 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 141 0 R +/BaseFont/XKALMW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +143 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +aMZNT)@\XK~^fٝnM\Ɛo`*򐽜wMz6Í17X\y eԕ'ʤ0і|~A?%QXdvڎen0ǕYOMPo 1II_{Fd +m3V0pe!rҞr/rSʼOcU6.8\_a͕B//uU4J[ zw +X"Q-/d +endstream +endobj +144 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 142 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 144 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/CJDWMG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4022 +/Length3 533 +/Length 4571 +>> +stream +xgXۚiRR Z )B@z5"EJG (R"R [K# s\k5g>!sFi iIi0PTZ(-  iQpՄP`͛@ PV*e!qq%5D~cp+,w_MoQx_R"1~3a8_2-_ (|)z"t#Rj}ʗhخHY?a2qф4e̺Ecϙ@!% "}}a%oG/s\NlM 9 IT9^TIh +cD;tx /M?Å(&&W +!jfm_y(,b{Sl6͊Avw _* L3 +,IL]{{BDU?cqqp.k tSoi-ْ86߭m_ا1ܕ8BJY_5I^b;>U|Zj<[[AOzrOB<ȳ_R2PJUb9yg&څA9ާf߸z)Ix8B$%?:]-Hi(ƞVOhNm ɀSV,-|WOv FI=|'"YLv'u>Z3o sƮ F&v +yshf0XUDyJ[¡)%ZDa@2zE3<"ۉ\(I{emn\ ?Ip(wcm8? m|l~9^wխO Y6%E &w@3ǵ^rB^ K$B`!9fJF[u9'7Wym; & lW+(p|=]ezSF?֛&+{XstP˨\lZ J[lRp)is?TӉ. jդ/i$}Q m%kma JMUQL%sxV .ꀰJ2W Uٰ3Z rUAXklwz[qGL}36J +:'k~Ezy%ԑ)ߗINA"ÄGJW`|^wr'-g'Tm C(Z}}DB5z DPxeA&O?]RO-ҳsKD +/ɏ 7r+҅d/?捶F92o^#'>a/eK3,x-e:(KbfN|^Bu포Lit˂s %k[=Ls`|[+ǭ) +ǙVʥy ٦mo;{ގ|p֘zs.dkQ tτJq'w#]M+]PL`,SB Z#mkt\tDqooSZUTPS-3OlJgSSN֥ztQrr8O58eFY0s:)Gh2bYފo{Dcgƣa71>qgKI1[LإC"m7/xԒx)$;Ы%sFWHϬAlQ\PQ٨>^]ʷF SGM1_,-41tYoz#XJbf V}<'F}xnSĴ#.T6͠ 5VHD _<ĖQ٘`r$4U-Ow=֓ʹ]6ni]v.G+&=iV +uY+esq_~N˵5ިZoͲ۩tO2x;_m%Z*ɘP->mF-i1,gzNj*RSG%q`\lи0llne% {elZWDrî{#>Α%Lkav >uӚ5SP+F0/NeˁCٻc m9@U^ (da |&f?+ 9'ZxJ6ϏrsAg7m.HܿuYnAƒr"*;jgcW 4Ӡ52HEVެ~o^B'yi t'T'V&lL_T[ ${ -;MLOjoș[isK4҃v _ze:wX * +{X:NUC, o#0{UjEIȥ9~0>7Q`>:i0 ʼo:Dw{2eWu6rJ{ +7  4-NqU7YcšR +"x=46F H+Ki9H+zh3ڔR't:hpՂS9HEm/Lꛘ'}I9٢;+1CPj!*:=u7_%5 >u3Z`G*vkFr&_-E6z)[1(%[BqiW.f#[lwzOMtNyN}kX}@-JO0WȔQb~&)dpk Fp<}kK\`Vؾ:vLdvJor,!ޒnY#YD¨;=TLg +B qtKSC̸ېw-PIC^GPhN]"܀Rpܩ>|+*(6!́@POfazD!h }/v')V%rܮIw; e̘ +ZC&89WShJ[#j;+)m&:*{vⷚj0QFw[Vr[\~CZ̏q%4x{I+oz;G4G8rAkWC[^ +C 7:Ff`,3Gn;VE`[rqQ?2hr4pZD)R #|x6Qq_Ԫ(n֎JUE[T _w4@\#cjф9_+d$ -_ONT? dX1 +JVa|I|zL ]u٤ڗ vxpkWo=:D.X7zFB}RG7[u1?x0ZTͰ}-'%E3Ν7&9>IOP;pޢ܉(C)y໒@MdA[E$gp~`KkÖ<6l NN]&E0E\o^hkM1ρS6lOK`ma+ Li)-nSb=Z0(kIZN"B‘滎ԛ^ fmRF~o8޸Ew $)5-@\|$%RQMM+[I4\o 2VZX])J%D({[#WV}?xݝ%ǵLfo&=ywKݶ|"ᎂ 88 [+ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/COMDUG+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5020 +>> +stream +xg8\m` AaG2`3zt!H$!zoQ(QB޻(_߷~>}Yu_z^X:YxB`0qL98ݑpOD`bb0H += *9@XW_w'[H鎲c@pOG;8C!=}A Y4# =a0e E:0@?T1X_2-oo.oNoJ!@-ݐYX Õh-p? XW/O;H@cn5FŦD\UQv4KBy(|#@#1C۟ښ +ʼҿ:p_aY;dBa?,"@a@p PrrX!DPCrB*PП;WQD i(|k>f#öI6:漭L]240gi S{AmVL%st`&#(M@62ڼ7Sߊr~ڲXk'eQbi{ԏF.*\hQ#\||J(W[Rw_d1)nĿ/gE?%#[[# XBQTdrMIׅd{L?+3rpti]|=:NMnS)Yh@Y?N9&@|,!' SMw)^2_]Ԫ/$ 7ID,Փ9HAǏ)H_՝s^үhU8l{t)Bf[w: IwD@#Nulf-Šd,O 0>%;*ʣ}gYM.K;pUpz='Zc}{}uIyݥ8DQ~yƝci+O]Π_я2u  #% LW}S9(G~؈5[[qZa0s̪TV=I܏^jV:/}\u!>ѧe9쁹?F8֝'qp~sAY4,T5&qn6ƿvdQ*36:AԆIZ&}DJL[nX$ev*o>Nt(fKbQk|L# v2N~(ڷ=ěYuv8SS%~h]sN6KTD*jmVTuo2rv[=kacA`VW).4TMRu+|VAA=*\Xi7(ιNEli%ʑCJ cKJrIا-y18=X#+yFr8ݙQfA^?3-N%'z;]hJ'=\@Π|.!1ir[X Ao.8NIߦ1&椆Ff~GsD;[W?>9^#kaZavwhՕpB0K"Q\dBj7C9 $~tB r>& aؕV47@$x.9fzt٤K,tYTu፥>L]seW^4rN8ԟ3Uo e[RS~yQԌ]gQ:1wفPx[ͥt+GS`Ej3a|bŝ%rGQg +5ʚO|V/X+NuaE9=Xwգ=>v R <.;dKz˓: "Y0ۛ^8< @_e*cygZ/ϵ8E-zavy]O(Ox\qj؊,E{3aBt]s#u Jvy, SA +Ol&U.o~5rҨ+A +_z]cUUAPߣg_6:dK.EE+o{ŕ)O67))>\*)y +d(}4dr| _ ky Y(gK%g46 ;Gh/aqmbFaC43wMj0dcgx ^R~eôF c-;H0??4B4烣Va>x{t}Y{q޸pKc%f%ڴl.Aeb(쨿O=d4pX'IF&[-G=iYVNt?'v.ّk/feBI"xb;\|0} wTҺ${ηQ#DzS_\_rFL{ +^e9jʚ-RiEWrc$MLYjU3sN iF4z4ưYt?q8֛utK+H^Fl&~*p zWFsRohVvjNPJU?Y? ڟ#+A|iuҔRf@8HӾ>k6Q| r\mȞpzq$6qݜYų:牦# >K{C+ +3tܽ`8{YΩp ~M:[!=L]@siçnvKcHwfĦ%Mָй_Y +ԟ@?擲~WLRkgS;Mq!zEao2a2D367.؈=H*o-vZ*شs>ns30nѿau<9czu%mHrL遪#6Nn 2U3]蚄N41KJ/wd!|znJn?eJmEcġsׄ."hguጃ}–8\])t0}#S8]v}<E՘XS^9/mmޛ<N8 [n|ZUwrE ud82w4rn3֣" 3A(&g;C '"Mr#`L} P BvnM]WgXL ɗ7b -ma0~;ڒ&W I7N"(h> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`QPeWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-p +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/VMJSKW+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}߶_Em uZDxb|;O?kmXKc洆 ukٙܟBy&ybbaG6YՏ~sזpCr0 ȕ^KZd=ٳ )Rrnu硻l:AhcLnd]ui_`W5WnPVrzvA&jvBF+l1 \.VaIuHEzV>ގXξ e@~jvnU^{-gtZe UJ\m nNFxJF(;[WD&!$b2dxtvZP^{om2(e0%`%Iԋ4@JO|:gr4H;;-ԝcYɥs?QAb;ΡDV5wJ` q@^]Ϣ.bfE&>ȔxD t5r}PE3!f׈F#k?ʌϷ:PzsuYdgdDZeX4ըۊ.sA/b `EE" `ыB-7y_EЎ_E\iŎQlK*U?ٕ}YԨt4EV2L#ܞ/^vӛq4@doDp%/} ٨hJ(qK]8vXn`S,| Tĉ`nNp#4/9YA% L+05Z*%2.TyfC-{U=+@=KVԒU 9 Y[Y _+Yr4l{8IO:u׋ɼ]%בʡzOaOXqp\m0]zSy;6#cR8ވ[;i!"TDS2.\Pq"1U\ka7D]`a>i3sm|j鸃g >ycnckdAlг4eWܪrJ5?ĘHM/3 rTUJ*wQv Lv|0cȥݐ2IʖaKleAAWn#as;SΎɫq2e| pGF7kO] KR\诜hU2 h+,U, .l/-O9{QG7Ɯ|5~#񣉻o]/;ɛf딈_xsRɪQջj;x$h5,O{|$!<+\3$g~h}VQx7fp\]Cܕ(eZdÿJXʙM7`tdO;g +R\g|>fZڶtYC>\2|4F5`q-Ӯ3_K?g~cuL2/b88>t#5hO?zcrצ!8!TGj͠+8gÀM}PDiET!2xU{L-{7D73t[rNd +P{DW>w]ߛ,4tns5-UEHٮ_"iP@ZMm"L"m#GBKjEO::(a>Z8vg!B8ǎDŽ"""ъ᣹lB~>p$~6P:E B٫EU#7O]nPĆp9{r {WK1&fFcxLR=48E57Z3KFGM#~$wkClPʘytsɯ29{[D +fYJ*a[69a/xyroب+ϳe1$dFѣ*[ϣ(ipǬᢎLmEllYU[dCU_J(7-tsm]4xU6 ]%p ]D#'1Lz\Pey¶۹:d>^Ǭԫ\?ZLa,K|9偤;B'8RVՅ;)duMv?at6DFEZӻxBBY@ 䜾|ݦװFV[SW~ ~V,)U9Ma;Tu[GkY~nO3IE2;vF8]4P^H $MgZ$%^q&O@ĦEWt*}Nq;I ]HZ'Ѥ<] .H&t_kM!|zQL } +&nrw3me+^p;Z ®]uylANf@jtte$&j>TV~o'{R< + p>T.Z7j3ʽ(辙Sr5"$1&!VrY !#,MpkxHٽ%zpY/,UeķVuE i}`j!]\?ɪLM֝,,.%{|*Zh&XE0Rzϻi8sBar׉7pIj=\FZӴD vrW7U\k@<Е2y{oc)tM.;R= P賞5mfEޅNHnO_*R91pSՍ36?ߙé M%/xai.f+/WNctIɾ́]LlAt"%o gqna)KEKi^'p:G(W9DgCCSfeqv|F! @YIh!qU +6_eчN=[έچʢ +#2BS]EYsAz]}t7вSBJbb0D*0r\ryԉ]_ۭEY`+Vc@]y}qI nY4`~~N1קH=kڪ8ZhZyv'9l +_,s.a9p,ήd<\b|q|̍c4jD&fVN{>S?|.6Y Ilg?F%"M]ޏz GWhGuXIwpKOauL8fם]; A_"t:d\yԱ:ЪIGV)!L=[!Rg񍳑F^9kV3 =קLd\s:(xDl'5X I3(,e=ڻ|;j*Z\0_PKxj|(m8FZ]YE?&1MS '4Ó;1Rp[.Wh-Sb. xLJC;g H_[?m$_[X{I@GgHPi=jC0`?ͫAn/ރv7+#z<}vNPxq_ԮP fJfAӕ{{t-K8\4d$\7vjz l<슃<%th(@VT;şT[+fog_zk+'Յ̊_?5͊H4-NTʋ߽J)ڛۈzBnY[Wv<U5. gAOzH]JJJ|IlBuu{'?,G&iR'G GN(Z/DZ;0MAA%g/R=K m"J,O49>EJįVrꆇn39BO8p _b +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/NVHZGI+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmhF/щDf01EBFhѢ=D%#z%my\yϗso:{Z׾3Ђc]zX NBZRZcm+ JK@!! bnpe4,C\,.ey9e z =p@?U@-4 +Ma8Za]\$B-|hE#4t]H @O,CWϒ? (Tx bP@8 u {qA?onB݂=HT?X4>K!റkcZw+C H E#0#\ 7-?~_Us߱A.+}!r[7]+ĸp0 WߩAF2LZASx_1Ho?M<RTPuA`pw'3vC^ @¬,LE~LX*DņGV$Ԧ_e. +j4zNVN·B$"RNH{xdžZ\,<[@W6xUTO\L-zf3AO<-j\-jGt6 D ~f9}x+HϺW^wFwPn$Ώj"o>fAK"՗lO4\ B$!WnM1|蘹H~4~O1`XYo2c-wuX9Ūil_ЂG˘mL&WQwoF3iPi.lq};CA#'ƀaY͹tM097r"0kh0M:w!8J\j"+R3(zo%"'](70駐p" Uтwf^JzU5Ɖm{dR+.vsDP(pkd PtƂ:j:5kBܞQJӑyvJ 0JأD6=(˕챘kNV? &@T9ի>_u_4|UȢ2<[,ߕ)wI7tK^aLRaɃ_D0cS2N%chskcz92>s(.+wU uh +'"Mc\xt`e42@jXOTҍR5Pӗ֙9&MafwI᛻=wP5Opu QaLbYF8-t*^b5*\oo8"gޕ7^ʄl8|ZJ$Y,H;wr,@{p5-8}EKRW3mnۺ} +EW/-BoTd{p<nd..$(V 9QeMKYb? 71l8 mff_?`#X6c iQ[!;&o]?ǟ}|QL{G%=c·OB!7rZMqt0YX!@=4n.^8Sz+f(VP܍X u3 htӣ7a7蓑EG.QXQ-8[j溠%m'VB,;OWx2ڊzSWթ| *hlH7G@E*/ #Nd ػ}Tݗ~I .!E1y2k|G>KEֹ&p>V;c1\N.boװ(k>b-I˜Kji i Ƒ;ZT邅BV%/7J6&azɜ.t65.m?ÿ,. }Qn)`\oCxʍ cL s(8&+TÓq)^8BŊآL0fyA%|𖱲?=ǣ#>oa&B_?!`;V2 ~>`-U$;N=E-ȷlVQpFSVw𔊣Ai])?ݛvgHGk 󅢲mvh2}0EN7um%[̟t݇ +-uR/ۊPe͗PoސH&\gh#lW& .bPy90yXpv/TQR⥖54nL29ΰ{:Xj; +47"Mo R_W֔LK5HְPA2N)v^kfT?ЇqGx-&S: ]~~[[Zw3<$dmoqvT뮲qMZ7F4|դ>dECQ#\ [S?*ş㲣m2&#\U%8H&jʤ F+DW5psĻ~}\($،ԊB1K屻÷yCÑ-dǖ#TڶPDҴ4[ "1"^t/6bEN[W2Bł[@s7d/Ԕ˒EcȈ<[Tj *;%FsP%z*D"0F*}Eg^넔)릳G MGeR:He{vgYOLg4&s C.CJ{FCBndC3Us&/Pպ Z5I~ k~BV;0]lX\%n/SѐiKMԟOQ?pn +%gؚg +ś~IrejƕNJ!>)B&Zn_!p׷_<`QCfmwWYɧ O$w)p]V]V4W]VQdי_'d ++%&ϒ?5D ݿC_N!9V!쉚^o؈uCCzLD סJu}D.9;ޙXxFPuϻ_k5"n>/rx';_e,c'"dʱ'goJ_$[="ʈf9 '#=svZ_gZ}arEu׼R>%!査aA=\Q}Obg~x_Z9O>3@^k] wM*J:v +OΝX,RŲ];5y5B{Umy6& !};lܵ5fGOr!勢ͷJʟ ծ=dJ*Ifa/aj7@pKzehHɘN݀Wd ƤTT[{L1Ab4yA'S#MŇlhpi]zyMPzAyLk>Q+nAcNWq;7neu$ ^P$ܳ67"Z"˝Qȗ 9Džj$%MW2/ }mCZm{Ldn9ZWU92X )F1rL>Nt[z9 j+9*&PqL1Y"43JF x_ޱ)1Z"{TX$8X ;s!SRs4korr$"Eyyoy&0"5tM$9vE776$9 dpKwO]U1WmF+( ;`C2$/%tcr۝}g +ӣ+N$|:ok3#g$N$+;udTaxf_׀NF%5-fNaM!LLBP@m1$ccˠLc (6pZ[ƍd|lZf;ovlŀ7dq2y֓aNṽyc{C_Mknp TR|߼lՠb=#0ub=sz *9'Bcg3^*x@<7Kn x!]/ft;QW -k콆nK EݻGߐ`uB`Tš<=Cqv7S6tJ::VJ|P_w_fGԺbּdzK8t͠/B~-?⎊6MDAX9lK^c +Oxؑ6?8==޸!D0 T-w%e7mVu:3ޘQCSx %OJy-7tbҥ g f_O((-S]80ZҨ\fw~mö7._(DbL̃mg/ף+:p2;jO JidᰆkARL[D"ofb2 h!+#HTUc&pd}#[YH}3}gQ2T2M(E|< ( +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/VKTYGI+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2234 +>> +stream +xRgXSYf2:DMteBr.`H Q`D)#M (0-,eHtQ :4E)"ـy{6'B a4FG$ AHp Fu1 4FL22PH4 +6B tGZ8BM%`O0Gń0N9f[] ɮR+9c|?NWK\?jTxPH[_)u5ؖYyb{LlO( wE+(Gڻ;lԸEK]Z͒)Ç&h}+5 |U|و2{[SP̵~\g3xQ\uԐfP׬(?=ߓS:$(;?|I])J;~mi÷^zvPv[o*NWZ AKboȏjF/E5[\VXoAyC[lqy1Hj)V$Wq-T +t΀~KҌa ]H튧}Z6Tc̅.U^m֓n! 9ߍRlwbR_h|-x~4l&AV?Ij,,a eʋabso_~~sOAӧp?KMʲ˞WF\0HWd yF)=p|AKFrppH[wAaXBIv_:{ieҷGCR7Ć=VP)]抒nuqĒzxwNuip !Z" UጳVJμ7Sp]cx z!c6Zvԓ5\T5U1k]区*^h=!]X?I;8ز4tF5 Njj[Y苳Y&bT{D/PHy>b\-e5#0@ڌJ +8pr?W%F/eĘ?捒rrޤ-w6W\QʔJt ͖|0ak14ڹmhiS*Lez*o|饻;Plu)Kѡ̼ rjF̓PxFՋp?u{IDqUߊ̖Yɥrвhz;|Dbv܂xz1,n_wKʽֱYe%<,E=)WxFS4Sn*.}Os.! `vS5㤜Ϋ?Փ5pKJ3_]iIοYK8mZWT>)k-7QȘp2FL r_COptD Ϡ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/EIYTLT+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2536 +/Length3 533 +/Length 3085 +>> +stream +xk8X49c*A 0$ȈԘy15f1#B9C8尔,%*P$Vؠ"Ukum_}&ps0DtYR||LR"YN)29p:R 071vTO*}ZsuL \ĜOQڕkd@pUZT387m{o(c?(*XJ+atF!΢\ɪ~Q0a^"m> +ڔdr>|TD*h<-/į]Yi8!˿%%$6ɠg +']! +Eg17 0 7]`hYqfh6H])c3$:l |X\F:82PWj>.j9y."[ouoU~ +SfJSBg~Wxljpi'cz.K]q暂+ +Lw)}/pqL{d'߫E0WS4oTtWcPt=ʄoU 6\Wf~_.jXDUA\{"yT,\0f"Gn㜳^o_2q'?V1]+o;MzwQ,ؔ3B_EnTV)FEO2>N$=Cˋ4L%g_&ɋw'kלBe +c雇f1UʝzA0_H%otzeVy=@~_NB}4xр70G38ň5>`@AbK#)>6T!n v@~mF,fԯ)qЊm[V+Ugzut{a.K7.#"bc6ME8G϶_1B y?OaFӝ㘀-]BK4DN1W#S$68 V:wN%zlo:iZkRڲRczftfW,%HL9\!v8Qfv./y9c} V(̱°%T6.$haxX}h+GdSJ-4AR鮒u #ģ9 yh͢-cjfcMMu}8KJ'IKrU 76loZQbb9*kxGWE9d#΁פ;<7`!p +e_7TOP]qK9KY*q9T+57YxA(oFfd۶ɨEK֤ *&ԌCyQYjxgA$Sڭ';pO~$6GA*2~% +eek&2T-p M509wJT(ENB裲kʧ)_Zmb^SK=ɄE4 BRfDJjȮAv:iP~#| QA"E"2B, +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/ZAWNTT+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2368 +>> +stream +xy<Bƒ4fb!CqFdcMf3FDȖ%$ERBd qt5 !TvILu;u;}y>!T t/ДNcXVCA#&g4c< hmm4` `PZŠ!`DgdS,g`@dXY@*/vtdB83 Q A"@o2 dA#m?tdH#~ʗd˞+KgP(4{}n-N$Ӽ;F35dhH Vh Bc0*_'hd_@PZ_) L&Hc}~Idt@0$@fː8[es~䗂יݏE)j|pCgq=s7Zү-lΒ1YeRg +4aJWڅ _Z.Eb.ѸжOFðabJ#gz>,$*Ej7##JP: (vBpl l*H|$U뜫X:<#J?tgiLd%W,aNQ~~w֧ؽIpُL&]nµXy +UÂ';7NTo2D6yuc" }iX.]SdiǵTNN,dw +yXS3׳*:ߎ#l.ޣ0iim@~j֤*(`V{ 因j]3EMbe +hNى$)f?xo8SV#+6E+ĔR7^rˉۗaߋ-'l9ӯR;dε͸Va};/6jdqF2^;ENo6F^6AqLbѝ +Bq YenI7{H.Rvr7/ܛDrz''/dŰ[t#H}I7Hn:2%$I-p ֵ&FCuZeZue\UW=?mf~N#觇8p;dFUnwv.RUh)ȢЧ}&"+,?Gf";3%=/Z虖 F ( Av]w!V)Po9f=uxeÜK=Q"SSe oК2};3 ,j{~:R ?y6\Lw,^`d?V Su"Wr!\bY}m:-⥦Ȃˣ!3ҍKI^쌻@rY,''E gUe6npo-K rR[T]}{R;G{oeT-Wkq ~D'je/I  JZb~0?4n﫶w +Nr"h9ACVAj^8'0Tު"f^K_aHcn]pBsVrv^e]u%9)Ŷ*uJ.F< +=>s(?_>AJPv$Z(M0͠?L6$|i8##17ڏ!_u-Sܶ`I`&>Uo\*gǷAuh\+:Q/ܨi}3[U.eÏ+ukylIɔOjg˛-C(ϰ]b/)N ;-Uz}>01bqJ?8&W#@ց.ݼ_}!7 \dLKڏ[1]-!w_VܛY|A2ciۃ Ruͳ"9efB^.ƗVkUQ&y41_YWgRp󺲾bZj4-!@?@x&N3} ?| +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/LQFVIR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}pٺs0[? TG f-)?8<Gk.=niUݸb WE|w! !; T h\][>4 +rV\{Wzg5[4 }Pd2H\焎_8ԯapsa!܀Jv9QMUvhe5|vF۞H ten2rH˻d(Y0_*^d\WXpFD~?a"WVx1 wkUw&.L +sw4-1RJ#i?㚕,Bc ~외\/,&wS;Rc9Y"\tJI^Yڂ4IDL7ϋ^Wn^45pcm]nA&#mBϗ}ypK(Z.*[,fE(HuW6';&S݅&I+Y qyI[peE:td W(y^֤-OI ;,HM嚾GhR:F+`;UnX+R5ŗX܏ {O סfOsD)wI[M/ӲuL3nQ4l{u.52r<* Vw̡֜xQG@h[[RLdLr6iP% j!'nGZB]>}nj.NO>dl=*ȯ9SM((כ^,2> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2(4v,7f 36flBv՝}Ȓ%!{v:J(D!Jx>^?{~suKة(^xS +mW0q#C'P: E P`ZH Mt0Pi_:`K0 i, 1t_D A!Qx4V'_ph<HkN X!0tB)X_C dܯ$wF9)յt`*ޟ 0|߸re72#};:p-;!TT5`45`@& ě0-M5-OH]{3XPzpD GmAP̬LzGj1U~ݘ:%F8!lP?x(V{ a6ɞ#!aZ 0+9cWc²Z)& %T^ɿPz-S୺d}s *ze9<\ȭuJ|Wj& +.ɨ?ZW9ĕ' +ZǮq, rmr+s}Z<] +{\Igd;4~u9=B׽/48Oņ#T8M4"6ɫg8۵֝w ՎG=N +ll m(8]*"4f|:! ޻gl}5טQqA<pّcn'Nܷ9;eTU6M|]w}yz˕6rUT8-+C!@䙮 fTv$A^ETl`?lGHFUz\=Ȼg5ȶʁ.\F=#֜L©;kk%t?7~;E\^TmY+w! 'lv FmKsZYլSl>)أrJXJWg,S7ؼ_N)[BN<3Jdg ^RB@zQ,3u51^5aچ:AXP`Μ1vٟpSl/u݉ㅠeHG5ڮ蕔/94Kus[%Ir%μ(}zm^~?ߵT'DZd.N+_jtfv)zvx>2/:@A9ugl$je{ǫ8 Ш/|4!q/N O{KuA/L7R 8mkC3۞FڞYH~N~#gyN'i5C tӾ8U +eJO +6$,hj/;`*V~@OQj]6m +@e0{U=>햾z#ȁmƅ5k\Hjy. n,~cx3-S~٥_[Mh)qxZ#aAƥ{;Vh'uW?RKb8ר(z$kӝ)uķW-jD3c'wэBK+zMgIG ֋d _:kA&] Qu-S$lʮ4ɕ.4=&YVKH/{(FL nj}"m#-\ydFZ{*_~pN7LTe,`$} Gtt:h``TϤ xҗC8?I2ڔ%%^dۉ2pT?>2̑c5!gUԮZ8 7oѵL8S>Q*!J-}'cZ:p߁Ԫpl4~j3W4Ǟӧe5#.8+xN0, b+/,-vJSEiK\-Azef|ؼ*C!\=qq.Ku웨Jtt[. tף+vDCjff4cUVuvbJby~5bWw~8hD$6%t{rZVo}f],fNGi(h[eqBT#;7٬w!}9pj01# 9zYBg'W @4N#1 JB)^vz .GLULyd',VOJSoW,{(]/ //BAP +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/MRCIRK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWZ.TanKY`d&N&HQqE(({P)m*.F)OOt|{kg&pdz ~5Ǽy^ٖos=Dٙi\52h7ca/fmv>W|~n>ˆռu$6 \-󞾳,h;Mi?9{1u&ME[cMIJɎY]rVv(>KGM-15N5k!3!ķvQFiQM)G6s40>3.U,_n+ 4^#bNCk+ӭ{6 ޞdh,ϭ~>i')] i,([5do~wgݾg55T沊:-д[מaQ|CsmuOb_Xݸ]76[e.Οm~`aiimvnhbHhsN iyѸR,Qsۮ+.}Kt'Ƀ{W$,O/(7 =ۮ]̘5 +΋`jcX{i]IAgп|'D hRP o.ct +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QYSORG+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDa)c֚ 3cblr BhWnmQG +\Τ~NsyZ}}wt4= Fv #rbFX}\`::8&Dd  YX c +/ď% p(&L f8W61a`&B"RC(QWX7ĂD!X,$6Q`:˕Nf۾`D؟-deR$ tjBdڃ!`NTurXi05BL=78<ﻮl"&)T0nEa~a 0 TCt{q~h]Άo]O"LgDA/rĄ#8f(\|#a: t)ޞ5šFƦjXYWn:: |Y%E0| ğgM)AP$DBϔ1*t +WsB`6vlDbVJiպν)|ͣeFeOP7gMHg^䙼<_)5u<}ۍ.u}S\ĒOt.}.4([8pڪ%$`bN_ N{NS*snNsG"b~Rz*}ӮW1Kl]/Y54ivlzCuM.FMxN곪xh 5=ep!|Vw,]JFFpÝ ul3[m+j܁)\Oafl:D`-N[z%S%X}ʳj@*ըؠM~2G[?_zDs=Kwg_V2Bxdk6`ЈRsO<:d2REVvJs(+OG.%zP"T Y)|@LAN ,F1QH>򅞛Xsqד94:}RF|^N%)Y9hK ~tʏ^0r.@tW6ې%1? +Nh6ژm/牵 XJ*IlIhd,kJ-_ y̙'LmTu9ImNlzGdަƚW1Ms])+(Y&A 5AO#zcFOm_-Qw/`{Ȧy92wx!riӮB՛0ד{ͻ빞 o)ǚI=EQ5eg^[?F(p۝.S-IQSMl"kd,ڽv#PRihgc~Bq㗃hU0j ;! W)s`|fwا+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;I+e2m h7?]rSJR;L]e⸢ŀjo>tԺδU!/s[yʑIb~Kp&J_F/9ԷlLm${e@輂h43"wO{%+~Yc\Oavtы-2\xfHkGiq֌̯{g8dUᜫm6g]%1PhsMow+.L04ڹc,cO&[&V]za?=V~`&?;e)7`VёPY'TՈ{JiݛëAn^?xTxe濼?1DL6Fd"!@ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/JQGGEB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9851 +/Length3 533 +/Length 10404 +>> +stream +xUTᶥqٸ\7nkp{@p!sνG/=GWCfY5~ HPdc1#. S)`c9عl/$$ @  r17u(AMMN6 3 foP#u+d1@V6H,stm#w_.?I9- K$eo\^ MlC,@.. N daS9='Bln 9Z;I"&##%_SUSGCϚq w@lhab_N%. `bpxYYW7$]s7#o8 ')PCMv ׸6x"2(XP^h-#c׷~Ldƅj||[g*@)8k*aOTng"9JYTv5-YC{P$-AP8"]Y6] +GuY3qᶢ\-S"dbmZa}rg=Od#o&2 +-+4i kF:6#t27F' |L$djHS֯U@,eR7o}yeUhjsն_}ήwa)2i\Yxk*M<G}pD`7}eR/ǂU\AH7GN qGs>S1I7ɰ9'Y/G}=gllŊ< ;[Nkndau1{x)ı 5zZB=Rb!#*-M\"J٩~qFl(7}MQF1Prdا[( *<1L!G+:mAV "iHe--k>*{:*{Q_4Yu؝#EPrzxax4 YrMwh tOBA7wcX)#V'yK;s[g= JʙVy^+8{&Y/0~ [+g}ʔ$4Qz,$ F =iiNBLrDbFJV}E/QHn 8g `!;·$nCP?J2Mkj}لdhK.o=$fbӓ?v,R7BQdgj_\Bb$RË%f@r"͐O 0 ;'kgSlsj ]}bwlLcY7wרݐ򗧂:lz"г A +Gs[X?<v\< *!4q]9At)I5Woܷ??sV\RuT|7t[Cz7 eCIpRш ԵR¡Pe0K:#sD{fOHMyU's¢v*8nLz!0ŧ*xJg:Ww3pgPvsMBpe`u(G=lcF@ ;'JP6~aф +C J(cl3^?#^P>Y̶#{kD{{+鎰&8~8k̀5$50y;Mf ֑Jj\ ̯o5 m K[MqlqKD|mpyxI>G+: +NYE) Q +!^Ќ?<*ANa- +&@*UۋdۦI$b)8┗x)slVOVyr}K}zjYH vKodT +GHJrGA̯MGLx}$@i3-$OymĄG՟;[ )~)B(|ФQf"0KI7,Ug|R=5$DbaKÜ8N2]q{|j9&#=+Ğ+k;kVkBwc4?J%3`*=s;f؉LȖa^g/;/*@!M㷉{D-/.UjCK[FdjZŇC ңښ]{9QՀOE?vi ;DFƪ r]fdmÌkhJ0(;3eKپ +`P[䇿lJ`Pf#LD%/o([0KXF$}M٥\|HxX|Q;.W|W^3b= yG@ +kj9X8!#<{c>GncX jEF½W&۾?n_fʵ~j{|Zj؆")\ Ġ'3<^*4 +`|a|a\E$4#-ԩS(|wz;`y)Hn _ ĕ>=Vr}ç%YeǍ{PbƤl9#\x\aW3pz > |Y s= ӷ VN;| _kn<('h4}\LCK?)GL)[(ج^] 3Jٓ]~(RȞ9*AҌDuN @W$@ + IjPMH`G<dX/|V'w<@m㊱dq+@N-;5#S ؝)91l+*pCtriRZ_0 +i/rRj?p!\ThJW^iA)}u8 +DI#4k"|V\t,KO5?/A& jb)Σ{u88ɏؗ %;F9,[o<_NڼfK%hB}+M)2lR?'nR?:Ϣ]/|pdJ+KNl -jJڕ{;&YH9dksj4 +8 eUMcg ъw;!;ͣFI1SI3HS7*ov"?&7EӢ#!J SjTObzm?J~Vܓ&ow !3).<0WHe956 +3Sx,VE);lCg|àu-9Q~3vz?l $sP9{s5؇Y̙ruYurdd=\8df"2]2f0? PdH]BX u-y 8"ԢlR{G b?vǀC q9+={_{IwMT)wVMe@@atQa}*eSEhaM@F ?f^k?-yIo.n؏l{:/b!k^D7jAF뉧?E/hx ygyeZ^]z3hzh~tޫ$jB2W pcX״xaӝcG)8QMC$6-4z<#9XH6*V5[,|cD βOiOyуaC_bG \o(5Q|UȂvN+6FkR?42Kڻf;־ezQ@->HBp0|Ê%(E4 =@ۛkcʕ>ׁԪ |I^_3BJ0,"I]\QRDobU 0hIySJ V!>=Ф$1=vDɨscQ(VJD ˎZ/_gZ m=P#@ڥۊb6|%)0=CT<6{HTS]Ѩh*)DQ;=;= ­#8QωHW;vFͷ*![ˆ*LD`!3_;XJEdQ !U6bsŝɘ@r 8 g{I0`Y!=%(uc!;& <$8-^ nㆅ eC>H} B`uu aO~hwcLWQK;QlLZFVğfM+Z44/eM;oUçD 7pTk? ؘbi;H$w1icYm;s1ϝ}|X#%T&MxwA]/y1s G?iC-AL^a W ȺU+h +J,99i:!x!S!V"cbs!bW"i+ +ʜw/*QD|ןkoe21;doEH:rF]Du 7S 2wG%è<8lA7c4 `sY쨟/sc}l&:IM>\t # R]ڂKƼvjj5rxʸ.!?Dɰ#w+,Ƃ 2rQ焎5(1 { +db5]}ǦDR}d;:Jg@4v7= 7]roChf66Kgfķb:LH9DU5D2pKPq`[^C;L.fjÜ=ZCdzxlN5:D*bUHQSg':OFK=% 3؃cѧj?2] P@Zu%R To{*TgJG fYyey@S.ĊdK|(>"??>C Opqov@) "geI:\ϦipZAoMbhke6 ”ff^:5ٺflͮN A,85zc[ZaۣFӐ*2D+r +N Ǫ)|#JYq2&f_(w~SyC7z(`Poڴj~P +{:u);<}aX{|o4OUY +<7MM 6ZƿPo|G{,SLRKfN~.^uuN;$<9SUqm:J]lV',ޘ|ar"#oLj3@ki*y-~:9᤬x]R8>d7x`S=Bt[Yƨ̼aཨpn,.mS!hI;–b .<~&7( TrX:$lщv6ګ|NWYb戁M$t5]M>ǰLug2x9ᗬ +GTu'foXY c6qO ®{gaos9y~􄆻jXJ* +EWP.& l5 K %P5Ր 1qћ3HI<俟3 fAau:9K1y88K(-}^!;0L)X`?{~fAћ1 'kN%=LlAj1~@Dv*Բxj\_ҍ}e=$YTFmaGkNӬȤSɬQͣ ^PiaGH i[+qϣֲ # 3)H`H_Nkא|,9$vMA:ZƵ(ƵϫUJ:0o)7`a)RQkjVZ-V8<5`G>ۇۜpQ͢*YYaاkbNOoFI:/Pv*i4w|̺'i904K#]HX+VmN%;fbvFgZpe/p/œ 1k>#M@^H~}談h;S/_6K~շ +wbvNd'bޕO^k,ݗ[>vox[K F2S ]-Z{[WSoό +Srwwhқu_9c$8~udK}.'ƚ K՜W~"R)O7Twl {Td =MVS\3['?<&ۿuCkPl +qTb3O.Y2bTn@tŀ0ꂗqzO!Wg?e ! .|}w;+*紇fH}m([z[fEq5NgJ-14.JwDcZeT8apU HhME-%}^k,I)T 1(8pNr-r:3r5h@܍_Ԑx3FoӹXv)=tmZ;`^ 򹖲P?ѧf1%&#tʣi3lo7Fwf#EKF8*kz8Wtocb;;(yKA~_ܭgD^ULhAXGu$_> 4Swdmd&9XH \;ooi*Oaݑ!5)> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?*(Iɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +141 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/XKALMW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 140 0 R +/Flags 68 +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5590 +>> +stream +xUT\ۖqw " +(\ +@pM 4@psν}G/=G?oϽ^=6$"cABiUm'ĠvXN20$(Hz~x8810.>nP[I?@pZl!C,VPH:8xqyB@ ZPNd?[7\ߜ̀ߔ`g'b{5o1Cp95 ?Կ->p8;x nUg0V=_p0]EJ`%Cfe ppC=?18%UTXcjX@`:>.֠տq99A>m5Y'+g0 p[Sw*))go?v>.;rW(Sps8 5 oLb(E+!CbuX/ W >I :vMn&K]ޣWQb}/jg4g?{ BK'%YH=Dsۮ#p+ϐZE =V)a"IGF$r\C [Nf颳 pmr1>c|G~ &g@UG7zz6Z ZF\I H*n< 9Wf(]˖ Dl^u]UE䩣9H=@3u:idz^@ɜC"xtKrnZE/9QSګj_qG  o_IZ<{_yPJFHWa.=!ɸ2dG\ɸ{ ĩ< NY&̮~hFdt(&cz W{QѦBn +%"oȲ?I 3rXU˔GW)[[rikz}E[{@(#ɨc:MtDUov!u}X`KI6t'SG"lWbpٴS?|'fߧcz;}QMoʸno.?(-۝aZ5e7>vRkʀ>74Z:mUzV)iHvz M') 'l1hY`%ֲWp5&>+IN_sIƈB8"ƀ,Da.1B="hoY޶Nw?"m0 Kek8%Ց|[iOxn>'9y M7fT_Z&xv ;+3NNE +eT{GAK!As/O ̡a(9GU<BLX^I\ؼ5Rע u?t0] -pKNz.Nl#zil']9ҵ BOqrSޒGgВjAG,)gpmKtHQ3щ`mBqT)Z<`]k܄]ܴZ`|Qu%S7T yuп";AOߌV1 aMXd+:MlGfm($t`M؃" KEV8zp[^M +lG_̧ߙyfrӯYKR5qyߔܝ,i4[vQgb,ΰMЩ[%F6eby6Ǫ:!wUe2foG0,zW{Y窝ۣٝzÓXʌBRF>ɒ%)m{m3۝}r15= 7RzɔKl5#hkT)wfZ.tǧoD­lAқ*ڟZ"/ it!5 D?IEŜu9Z9gͱßg(39P4]qIhQx 2$7wKh NCif茉# x[[G`}tPTay?4,NQWAI|JS} @%5+~z;]7We軅d<畎%+,} .+z[lc5Z,/>o|`..T߸%-ȮxmO(Bw{ٯt))~?s$ S{PqDE Isn8b +~(BਦfY4*H%lGN%/T:q7ցx.wٵ20 +e 9hYY;!e/;I7B8x7[6^U1^1# %܊K)S\d7iO i8 0#4#&P_#~t<&Ap4?Cx\h,i )~z-9IyVZ5ef"ƨ(&B }N38`ǯaŸjz}qTI ROX2~xhڍ§Lbۯmb/jLDg͂rϏ gvҏyxkpI 7ߎFGdc*@p17B6v/{>I.*Wٜ)!^ᐨwqsU; +8e8'gz=Bg3;پ-ExsFJ&>ªy3G4hV͓;QfQ~[@ dG/sGt_9ϙoӼ},҅|vTK~j? iF͚a-Tk@;nWWXˑCܩ$rpg0O\:PD41R/hZX5UЋOU+( Iz̦n'peRaAΘ9Y)W$sc T( + SnO#oeܔtW/z8궅7iъDln0JK2lv/&4@%fpr@-R۪ar+xE HH}\|:|ߞۓx: wQTb?[:sx]A7^p',} r܉n.(f@6 +ۋMl+%{Y'q-({D1ST!n'7 7mJiDŽSm"x$q:es'{1 2SS:Jޟ%t?yܐYb܈v_0e`ٱE_=Ċ"9+ [fТغ`iN +a)e:%2:pQD]5|/>#&ꌌ4 OQQ[3OUP]P>̀-ђ.Gzqdd0h*ޛ;.>2tD,Suݼ(y.'"v\)DQCWT!M%dSOr=0r||zLjpST^ϋ*|Ы"%(Z$bL),_x ِ.!Q~}tee&bݬ#s4UD9&}>JWW@kBE͂rxȱ=pԅ.nL/zKyAr8Vgwl]cOi bBm=w]yцWeg CCΥe_>=XpR3 P0a`u b;s iO'-(Ui'lC#|;J^NcÞI@IR*o_A_m9Fnx$a:pd*XDt,Y3͕T ȯb3(}Iׇ;b䵏0QjNJ ybpEFٵ]ͫ>*Ϲg::",1\.|ضTыZGO^9@}(D!mջ)0Od$+\6lH%]9TM/, +8~Ԯl]b83" 3Q%6dUn:fٜ.(5)0œq{!P+_@Rk0 r0paEoDž,v7ݭVJ1k &ڳiTh;k&  yif ![GcyJ_ TH}JHeCYl)KP>?W,kzsXMsS@˷TR$ilɘ4>ji5dO6ۊ5r}"J+Th7#LjE{]ݳoL0?D hfCM +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1853) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185356-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 145 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 146 0 R +>> +endobj +146 0 obj +<< +/Type/Pages +/Count 2 +/Kids[63 0 R 67 0 R] +/Parent 145 0 R +>> +endobj +145 0 obj +<< +/Type/Pages +/Count 5 +/Kids[5 0 R 21 0 R 44 0 R 146 0 R] +/Parent 3 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 148 0 R +>> +endobj +148 0 obj +<< +/Type/Pages +/Count 2 +/Kids[75 0 R 79 0 R] +/Parent 147 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 147 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 149 0 R +>> +endobj +149 0 obj +<< +/Type/Pages +/Count 2 +/Kids[87 0 R 91 0 R] +/Parent 147 0 R +>> +endobj +147 0 obj +<< +/Type/Pages +/Count 6 +/Kids[71 0 R 148 0 R 83 0 R 149 0 R] +/Parent 3 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 150 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 151 0 R +>> +endobj +151 0 obj +<< +/Type/Pages +/Count 2 +/Kids[110 0 R 114 0 R] +/Parent 150 0 R +>> +endobj +150 0 obj +<< +/Type/Pages +/Count 5 +/Kids[95 0 R 99 0 R 103 0 R 151 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 153 0 R +>> +endobj +153 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 152 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 152 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 143 0 R 19 0 R] +/Parent 154 0 R +>> +endobj +154 0 obj +<< +/Type/Pages +/Count 2 +/Kids[134 0 R 138 0 R] +/Parent 152 0 R +>> +endobj +152 0 obj +<< +/Type/Pages +/Count 6 +/Kids[118 0 R 153 0 R 130 0 R 154 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 22 +/Kids[145 0 R 147 0 R 150 0 R 152 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +155 0 obj +<< +>> +endobj +156 0 obj +null +endobj +157 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 155 0 R +/Threads 156 0 R +/Names 157 0 R +>> +endobj +xref +0 158 +0000000000 65535 f +0000106254 00000 n +0000109982 00000 n +0000109627 00000 n +0000109832 00000 n +0000106418 00000 n +0000004048 00000 n +0000000009 00000 n +0000038321 00000 n +0000038137 00000 n +0000000913 00000 n +0000043191 00000 n +0000043005 00000 n +0000001906 00000 n +0000048513 00000 n +0000048325 00000 n +0000002823 00000 n +0000109732 00000 n +0000003740 00000 n +0000109782 00000 n +0000003993 00000 n +0000106521 00000 n +0000011620 00000 n +0000058569 00000 n +0000058380 00000 n +0000004109 00000 n +0000063840 00000 n +0000063650 00000 n +0000005055 00000 n +0000069144 00000 n +0000068955 00000 n +0000005991 00000 n +0000006967 00000 n +0000071686 00000 n +0000071492 00000 n +0000007921 00000 n +0000075071 00000 n +0000074885 00000 n +0000008867 00000 n +0000077744 00000 n +0000077553 00000 n +0000009831 00000 n +0000010825 00000 n +0000011521 00000 n +0000106626 00000 n +0000019691 00000 n +0000079839 00000 n +0000079645 00000 n +0000011682 00000 n +0000012653 00000 n +0000083850 00000 n +0000083655 00000 n +0000014269 00000 n +0000015221 00000 n +0000085758 00000 n +0000085563 00000 n +0000016128 00000 n +0000017110 00000 n +0000088416 00000 n +0000088230 00000 n +0000018087 00000 n +0000018832 00000 n +0000019566 00000 n +0000106731 00000 n +0000020183 00000 n +0000019753 00000 n +0000020138 00000 n +0000106836 00000 n +0000021151 00000 n +0000020245 00000 n +0000021015 00000 n +0000107115 00000 n +0000022284 00000 n +0000021213 00000 n +0000022148 00000 n +0000107220 00000 n +0000023057 00000 n +0000022346 00000 n +0000023012 00000 n +0000107325 00000 n +0000023538 00000 n +0000023119 00000 n +0000023493 00000 n +0000107511 00000 n +0000024591 00000 n +0000023600 00000 n +0000024444 00000 n +0000107616 00000 n +0000025108 00000 n +0000024653 00000 n +0000025063 00000 n +0000107721 00000 n +0000026169 00000 n +0000025170 00000 n +0000026033 00000 n +0000108002 00000 n +0000026596 00000 n +0000026231 00000 n +0000026551 00000 n +0000108107 00000 n +0000027545 00000 n +0000026658 00000 n +0000027419 00000 n +0000108214 00000 n +0000029828 00000 n +0000099131 00000 n +0000098935 00000 n +0000027609 00000 n +0000028621 00000 n +0000029667 00000 n +0000108322 00000 n +0000030971 00000 n +0000029892 00000 n +0000030834 00000 n +0000108430 00000 n +0000031632 00000 n +0000031035 00000 n +0000031586 00000 n +0000108716 00000 n +0000032382 00000 n +0000031696 00000 n +0000032336 00000 n +0000108824 00000 n +0000033152 00000 n +0000032446 00000 n +0000033106 00000 n +0000108932 00000 n +0000034287 00000 n +0000033216 00000 n +0000034126 00000 n +0000109123 00000 n +0000035496 00000 n +0000034351 00000 n +0000035359 00000 n +0000109231 00000 n +0000036688 00000 n +0000035560 00000 n +0000036527 00000 n +0000109339 00000 n +0000038073 00000 n +0000100549 00000 n +0000100354 00000 n +0000036752 00000 n +0000037675 00000 n +0000038015 00000 n +0000107022 00000 n +0000106941 00000 n +0000107907 00000 n +0000107430 00000 n +0000107826 00000 n +0000108621 00000 n +0000108538 00000 n +0000109530 00000 n +0000109040 00000 n +0000109447 00000 n +0000109914 00000 n +0000109937 00000 n +0000109959 00000 n +trailer +<< +/Size 158 +/Root 2 0 R +/Info 1 0 R +>> +startxref +110080 +%%EOF diff --git a/src/axiom-website/CATS/schaum32.input.pamphlet b/src/axiom-website/CATS/schaum32.input.pamphlet new file mode 100644 index 0000000..e5b2409 --- /dev/null +++ b/src/axiom-website/CATS/schaum32.input.pamphlet @@ -0,0 +1,999 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum32.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.626~~~~~$\displaystyle +\int{{\rm sech~}{ax}}~dx$} +$$\int{{\rm sech~}{ax}}= +\frac{2}{a}\tanh^{-1}{e^{ax}} +$$ +<<*>>= +)spool schaum32.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(sech(a*x),x) +--R +--R +--R 2atan(sinh(a x) + cosh(a x)) +--R (1) ---------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=2/a*atan(%e^(a*x)) +--R +--R a x +--R 2atan(%e ) +--R (2) ------------ +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R a x +--R 2atan(sinh(a x) + cosh(a x)) - 2atan(%e ) +--R (3) ------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 4 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (4) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 5 +dd:=atanrule cc +--R +--R a x +--R - %e + %i - sinh(a x) - cosh(a x) + %i +--R %i log(------------) - %i log(----------------------------) +--R a x sinh(a x) + cosh(a x) + %i +--R %e + %i +--R (5) ----------------------------------------------------------- +--R a +--R Type: Expression Complex Integer +--E + +--S 6 +ee:=expandLog dd +--R +--R (6) +--R %i log(sinh(a x) + cosh(a x) + %i) - %i log(sinh(a x) + cosh(a x) - %i) +--R + +--R a x a x +--R - %i log(%e + %i) + %i log(%e - %i) +--R / +--R a +--R Type: Expression Complex Integer +--E + +--S 7 14:626 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Complex Integer +--E +@ + +\section{\cite{1}:14.627~~~~~$\displaystyle +\int{{\rm sech}^2~{ax}}~dx$} +$$\int{{\rm sech}^2~{ax}}= +\frac{\tanh{ax}}{a} +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(sech(a*x)^2,x) +--R +--R +--R 2 +--R (1) - ------------------------------------------------------- +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=tanh(a*x)/a +--R +--R tanh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 10 +cc:=aa-bb +--R +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1)tanh(a x) - 2 +--R (3) ------------------------------------------------------------------ +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 11 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (4) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 12 +dd:=sinhsqrrule cc +--R +--R 2 +--R (- 4cosh(a x)sinh(a x) - cosh(2a x) - 2cosh(a x) - 1)tanh(a x) - 4 +--R (5) ------------------------------------------------------------------- +--R 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 13 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (6) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 14 +ee:=coshsqrrule dd +--R +--R (- 2cosh(a x)sinh(a x) - cosh(2a x) - 1)tanh(a x) - 2 +--R (7) ----------------------------------------------------- +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 15 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %L sinh(y + x) - %L sinh(y - x) +--I (8) %L cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 16 +ff:=sinhcoshrule ee +--R +--R (- sinh(2a x) - cosh(2a x) - 1)tanh(a x) - 2 +--R (9) -------------------------------------------- +--R a sinh(2a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 17 14:627 Schaums and Axiom differ by a constant +gg:=complexNormalize ff +--R +--R 1 +--R (10) - - +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.628~~~~~$\displaystyle +\int{{\rm sech}^3~{ax}}~dx$} +$$\int{{\rm sech}^3~{ax}}= +\frac{{\rm sech}~{ax}~\tanh{ax}}{2a}+\frac{1}{2a}\tan^{-1}{\rm ~sech~}{ax} +$$ +<<*>>= +)clear all + +--S 18 +aa:=integrate(sech(a*x)^3,x) +--R +--R +--R (1) +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) + 4cosh(a x))sinh(a x) + cosh(a x) + 2cosh(a x) + 1 +--R * +--R atan(sinh(a x) + cosh(a x)) +--R + +--R 3 2 2 +--R sinh(a x) + 3cosh(a x)sinh(a x) + (3cosh(a x) - 1)sinh(a x) +--R + +--R 3 +--R cosh(a x) - cosh(a x) +--R / +--R 4 3 2 2 +--R a sinh(a x) + 4a cosh(a x)sinh(a x) + (6a cosh(a x) + 2a)sinh(a x) +--R + +--R 3 4 2 +--R (4a cosh(a x) + 4a cosh(a x))sinh(a x) + a cosh(a x) + 2a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 19 +bb:=(sech(a*x)*tanh(a*x))/(2*a)+1/(2*a)*atan(sinh(a*x)) +--R +--R atan(sinh(a x)) + sech(a x)tanh(a x) +--R (2) ------------------------------------ +--R 2a +--R Type: Expression Integer +--E + +--S 20 14:628 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 4 3 2 2 +--R 2sinh(a x) + 8cosh(a x)sinh(a x) + (12cosh(a x) + 4)sinh(a x) +--R + +--R 3 4 2 +--R (8cosh(a x) + 8cosh(a x))sinh(a x) + 2cosh(a x) + 4cosh(a x) + 2 +--R * +--R atan(sinh(a x) + cosh(a x)) +--R + +--R 4 3 2 2 +--R - sinh(a x) - 4cosh(a x)sinh(a x) + (- 6cosh(a x) - 2)sinh(a x) +--R + +--R 3 4 2 +--R (- 4cosh(a x) - 4cosh(a x))sinh(a x) - cosh(a x) - 2cosh(a x) - 1 +--R * +--R atan(sinh(a x)) +--R + +--R 4 3 +--R - sech(a x)sinh(a x) - 4cosh(a x)sech(a x)sinh(a x) +--R + +--R 2 2 +--R (- 6cosh(a x) - 2)sech(a x)sinh(a x) +--R + +--R 3 +--R (- 4cosh(a x) - 4cosh(a x))sech(a x)sinh(a x) +--R + +--R 4 2 +--R (- cosh(a x) - 2cosh(a x) - 1)sech(a x) +--R * +--R tanh(a x) +--R + +--R 3 2 2 +--R 2sinh(a x) + 6cosh(a x)sinh(a x) + (6cosh(a x) - 2)sinh(a x) +--R + +--R 3 +--R 2cosh(a x) - 2cosh(a x) +--R / +--R 4 3 2 2 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) + (12a cosh(a x) + 4a)sinh(a x) +--R + +--R 3 4 2 +--R (8a cosh(a x) + 8a cosh(a x))sinh(a x) + 2a cosh(a x) + 4a cosh(a x) +--R + +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.629~~~~~$\displaystyle +\int{{\rm sech}^n~{ax}~{\tanh{ax}}}~dx$} +$$\int{{\rm sech~}^n{ax}~{\tanh{ax}}}= +-\frac{{\rm sech~}^{n}{ax}}{na} +$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(sech(a*x)^n*tanh(a*x),x) +--R +--R +--R (1) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R / +--R a n +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=-sech(a*x)^n/(n*a) +--R +--R n +--R sech(a x) +--R (2) - ---------- +--R a n +--R Type: Expression Integer +--E + +--S 23 +cc:=aa-bb +--R +--R (3) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R + +--R n +--R sech(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 24 +sechrule:=rule(sech(x) == 1/cosh(x)) +--R +--R 1 +--R (4) sech(x) == ------- +--R cosh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 25 +dd:=sechrule cc +--R +--R (5) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1 +--R + +--R 1 n +--R (---------) +--R cosh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 26 +ee:=expandLog dd +--R +--R (6) +--R sinh +--R 2 2 +--R n log(sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R - +--R cosh +--R 2 2 +--R n log(sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R 1 n +--R (---------) +--R cosh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 27 14:629 Schaums and Axiom agree +ff:=complexNormalize ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.630~~~~~$\displaystyle +\int{\frac{dx}{{\rm sech~}{ax}}}~dx$} +$$\int{\frac{1}{{\rm sech~}{ax}}}= +\frac{{\rm sech}~{ax}}{a} +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(1/sech(a*x),x) +--R +--R +--R sinh(a x) +--R (1) --------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=sinh(a*x)/a +--R +--R sinh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 30 14:630 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.631~~~~~$\displaystyle +\int{x{\rm ~sech~}{ax}}~dx$} +$$\int{x{\rm ~sech~}{ax}}= +\frac{1}{a^2}\left\{ +\frac{(ax)^2}{2}-\frac{(ax)^4}{8}+\frac{5(ax)^6}{144}+\cdots +\frac{(-1)^{n}E_n(ax)^{2n+2}}{(2n+2)(2n)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 31 14:631 Axiom cannot compute this integral +aa:=integrate(x*sech(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %O sech(%O a)d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.632~~~~~$\displaystyle +\int{x~{\rm sech}^2~{ax}}~dx$} +$$\int{x~{\rm sech}^2~{ax}}= +\frac{x\tanh{ax}}{a}-\frac{1}{a^2}\ln\cosh{ax} +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(x*sech(a*x)^2,x) +--R +--R +--R (1) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1) +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 +--R 2a x sinh(a x) + 4a x cosh(a x)sinh(a x) + 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=(x*tanh(a*x))/a-1/a^2*log(cosh(a*x)) +--R +--R - log(cosh(a x)) + a x tanh(a x) +--R (2) -------------------------------- +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 34 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1)log(cosh(a x)) +--R + +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) - 1) +--R * +--R 2cosh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 +--R (- a x sinh(a x) - 2a x cosh(a x)sinh(a x) - a x cosh(a x) - a x) +--R * +--R tanh(a x) +--R + +--R 2 2 +--R 2a x sinh(a x) + 4a x cosh(a x)sinh(a x) + 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 35 +dd:=expandLog cc +--R +--R (4) +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) + 1) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R 2 2 +--R (- a x sinh(a x) - 2a x cosh(a x)sinh(a x) - a x cosh(a x) - a x) +--R * +--R tanh(a x) +--R + +--R 2 +--R (- log(- 2) + 2a x)sinh(a x) + (- 2log(- 2) + 4a x)cosh(a x)sinh(a x) +--R + +--R 2 +--R (- log(- 2) + 2a x)cosh(a x) - log(- 2) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 36 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (5) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 37 +ee:=sinhsqrrule dd +--R +--R (6) +--R 2 +--R (4cosh(a x)sinh(a x) + cosh(2a x) + 2cosh(a x) + 1) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R 2 +--R (- 4a x cosh(a x)sinh(a x) - a x cosh(2a x) - 2a x cosh(a x) - a x) +--R * +--R tanh(a x) +--R + +--R (- 4log(- 2) + 8a x)cosh(a x)sinh(a x) + (- log(- 2) + 2a x)cosh(2a x) +--R + +--R 2 +--R (- 2log(- 2) + 4a x)cosh(a x) - log(- 2) - 2a x +--R / +--R 2 2 2 2 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) + a +--R Type: Expression Integer +--E + +--S 38 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (7) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 39 +ff:=coshsqrrule ee +--R +--R (8) +--R (2cosh(a x)sinh(a x) + cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (- 2a x cosh(a x)sinh(a x) - a x cosh(2a x) - a x)tanh(a x) +--R + +--R (- 2log(- 2) + 4a x)cosh(a x)sinh(a x) + (- log(- 2) + 2a x)cosh(2a x) +--R + +--R - log(- 2) +--R / +--R 2 2 2 +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 40 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %P sinh(y + x) - %P sinh(y - x) +--I (9) %P cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 41 +gg:=sinhcoshrule ff +--R +--R (10) +--R (sinh(2a x) + cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (- a x sinh(2a x) - a x cosh(2a x) - a x)tanh(a x) +--R + +--R (- log(- 2) + 2a x)sinh(2a x) + (- log(- 2) + 2a x)cosh(2a x) - log(- 2) +--R / +--R 2 2 2 +--R a sinh(2a x) + a cosh(2a x) + a +--R Type: Expression Integer +--E + +--S 42 14:632 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R log(- 1) - log(- 2) +--R (11) ------------------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.633~~~~~$\displaystyle +\int{\frac{{\rm sech~}{ax}}{x}}~dx$} +$$\int{\frac{{\rm sech~}{ax}}{x}}= +\ln{x}-\frac{(ax)^2}{4}+\frac{5(ax)^4}{96}-\frac{61(ax)^6}{4320}+\cdots +\frac{(-1)^{n}E_n(ax)^{2n}}{2n(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 43 14:633 Axiom cannot compute this integral +aa:=integrate(sech(a*x)/x,x) +--R +--R +--R x +--I ++ sech(%O a) +--I (1) | ---------- d%O +--I ++ %O +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.634~~~~~$\displaystyle +\int{\frac{dx}{q+p{\rm ~sech~}{ax}}}~dx$} +$$\int{\frac{1}{q+p{\rm ~sech~}{ax}}}= +\frac{x}{q}-\frac{p}{q}\int{\frac{dx}{p+q\cosh{ax}}} +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(1/(q+p*sech(a*x)),x) +--R +--R +--R (1) +--R [ +--R p +--R * +--R log +--R 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R q cosh(a x) + 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 +--R a x\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R , +--R +-------+ +--R | 2 2 +-------+ +--R (q sinh(a x) + q cosh(a x) + p)\|q - p | 2 2 +--R - 2p atan(-----------------------------------------) + a x\|q - p +--R 2 2 +--R q - p +--R --------------------------------------------------------------------] +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Union(List Expression Integer,...) +--E + +--S 45 +t1:=integrate(1/(p+q*cosh(a*x)),x) +--R +--R (2) +--R [ +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R a\|- q + p +--R , +--R +-------+ +--R | 2 2 +--R (q sinh(a x) + q cosh(a x) + p)\|q - p +--R 2atan(-----------------------------------------) +--R 2 2 +--R q - p +--R ------------------------------------------------] +--R +-------+ +--R | 2 2 +--R a\|q - p +--R Type: Union(List Expression Integer,...) +--E + +--S 46 +bb1:=x/q-p/q*t1.1 +--R +--R (3) +--R - +--R p +--R * +--R log +--R 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R q cosh(a x) + 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +---------+ +--R | 2 2 +--R a x\|- q + p +--R / +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Expression Integer +--E + +--S 47 +bb2:=x/q-p/q*t1.2 +--R +--R +-------+ +--R | 2 2 +-------+ +--R (q sinh(a x) + q cosh(a x) + p)\|q - p | 2 2 +--R - 2p atan(-----------------------------------------) + a x\|q - p +--R 2 2 +--R q - p +--R (4) -------------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R a q\|q - p +--R Type: Expression Integer +--E + +--S 48 +cc1:=aa.1-bb1 +--R +--R (5) +--R p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R / +--R +---------+ +--R | 2 2 +--R a q\|- q + p +--R Type: Expression Integer +--E + +--S 49 +cc2:=aa.2-bb1 +--R +--R (6) +--R +-------+ +--R | 2 2 +--R p\|q - p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (2q - 2p q)sinh(a x) + (2q - 2p q)cosh(a x) + 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R - 2p\|- q + p atan(-----------------------------------------) +--R 2 2 +--R q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 50 +cc3:=aa.1-bb2 +--R +--R (7) +--R +-------+ +--R | 2 2 +--R p\|q - p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) - q + 2p +--R * +--R +---------+ +--R | 2 2 +--R \|- q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q + 2p q)sinh(a x) + (- 2q + 2p q)cosh(a x) - 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) + q +--R + +--R +-------+ +--R +---------+ | 2 2 +--R | 2 2 (q sinh(a x) + q cosh(a x) + p)\|q - p +--R 2p\|- q + p atan(-----------------------------------------) +--R 2 2 +--R q - p +--R / +--R +---------+ +-------+ +--R | 2 2 | 2 2 +--R a q\|- q + p \|q - p +--R Type: Expression Integer +--E + +--S 51 14:634 Schaums and Axiom agree +cc4:=aa.2-bb2 +--R +--R (8) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.635~~~~~$\displaystyle +\int{{\rm sech}^n~{ax}}~dx$} +$$\int{{\rm sech}^n~{ax}}= +\frac{{\rm sech}^{n-2}~{ax}~\tanh{ax}}{a(n-1)} ++\frac{n-2}{n-1}\int{{\rm sech}^{n-2}~{ax}} +$$ +<<*>>= +)clear all + +--S 52 14:635 Axiom cannot compute this integral +aa:=integrate(sech(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | sech(%O a) d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p91 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum32.input.pdf b/src/axiom-website/CATS/schaum32.input.pdf new file mode 100644 index 0000000..3a29251 --- /dev/null +++ b/src/axiom-website/CATS/schaum32.input.pdf @@ -0,0 +1,2318 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/CJDWMG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/COMDUG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/MDOTUY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.yB 8!Y $=*  P^rֱ}wwyߝ˂+꼒@XTơ0)N'Qri%/`o! +d= %buBBGoX1m,Z8Jcj6D +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/VMJSKW+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/NVHZGI+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/VKTYGI+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/EIYTLT+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/ZAWNTT+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/LQFVIR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xVn1}O<ĕ=Ad%|3zvY8Yru1p n-EO4yzsZ=\wrA [tԂi$v |_;БHv× HA3"9w00:==c׍DY}{cH& \UN]u)ƂE֟ _=3L*fŘi%fbN,-1eVd1Bj.2!Q/ #V ;ˆYM#~"K.߃Vc'亊.vK1tuC.:4Ի潔s}[*N;jPc[cŏ |.zh2w 6QbП&gؚ͒>Svr.ܩ(X=v4ע4\ghuU%6`G> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/TXMCWS+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/MRCIRK+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +55 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 54 0 R +/BaseFont/QYSORG+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +56 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +59 0 obj +<< +/Encoding 56 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 58 0 R +/BaseFont/JQGGEB+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 62 0 R +/BaseFont/ZRRGOB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +64 0 obj +<< +/Filter[/FlateDecode] +/Length 719 +>> +stream +xڵVˎ0+AJI:St2 0H AT +Eؾαcg)hPL*2z%FDjp91t,^2`!ˌs҅0ڻh +`u9!R*9Ke1~mOsRH0bڤ,,is!g`ҴOH@c͝N51, />PE~8;ݠɓg {ܸ|5L&L7vMj2 D1z-@I@6S@eg{_NY^@)RτPȶҤ8qVQ @) ~˪T\O]6rS{Qx@\ \7z/d^Uw,ASsoklQӕmܷ"mO#0lbR\p? I>26mDpkݟh;\eϲr/f]P/ruáJyw0zFT|OqYpHxHI +boT'an-/Q2[fܨj_y +4:VwԅWRa~(P'2zմp7scCɲ#zfHɏs۞ )$ +endstream +endobj +65 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F8 38 0 R +/F9 41 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 65 0 R +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 506 +>> +stream +xڽUMo0Q$VzH8)R-_MƯg,Ӳ@|׈t7##69"11jHo`需95 mQaU=OͰc2j%ز e/\t-A"0~e|ߊθ(4ϔ]k]uFljʑj& +E}#i gua~{^/)IZ^)/)vi7luBsDm$8iIpٯ!:F8U]~+RW5fi~1ey‰]xg}*o6 zڇY|' +&m3>PG}N N51.噻С~,ձ5 +9/ϕ59xs qfv=ϻR-6Ƿ*w-)ٸ^rˋ]M=+j޿g1ĎZ^QǴajuIA +endstream +endobj +69 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +67 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 746 +>> +stream +xڽVr0+HHW/o:M:2錡n %) ^=lXs&qNnHOFŤ"f52 TɵL>. Yn\,] +}U.&1k粮g).x6h0!bqo|'gAKM*E0mj֜jx L?+C$(..&XW^%,3V`+ZgtBJr>)H@eLHBsOg6%( y"h@R3dHNzLs^ub vAC`Q,̖lQWjdXxR8A</5.|oWզ.]ʤ:ٖ78~/nv\ +PND`!l H>CUǜnn\`0G5xi؀hݯxC ͬC=_eoVzae:c=߼pE1^7'1;NS M5ald5ӱ ޏEUjH3X6S1 hשa@<~ҋ^q3 +L3HE?bkDž.#qEGpNn)#6ꍙ$+H$0A*% ~\֏4i;Л@̓3cEFwmj +endstream +endobj +73 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xڽVQo0~߯$hflpLKN{x4dZgr%.Kw}wA[r>DRlC$PAIG}"!Ҭ})1h $Xgj~ + W!d$Gh aE꾺˽g_ݞヱFcpBחOYfq;3p ?{MgyW/"Ԭu%mj8Asbպr IyvxP34\<>;VCLI6on0kLWz{:ՐZ )0-cWZfޠ> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 260 +>> +stream +xڝQ=O07:]ۉ&@Q:!RcGIR~=&nJP{}%B [XRJ(F,9Q 9\-y3Y( ClhjG(`HzG$=pbʗ $W\G;nƵnf?S:;Qung'׷Ů4ASU/KL1CE8U+.sty~*>p, oP0W_E +endstream +endobj +81 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 897 +>> +stream +xڝWKo@Wh ^^$Tĩd wa973NR$*N!9qljl&vm3#a B;ٓV i 0 pZ_ZpszQ, > +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 527 +>> +stream +xڵVR0 +9!ada +O@ё'T>!rnSJA +.R0P=>M^GĸT?!fMQ5FlUE5Bj׊!͘0J)Z}#m4u?cs$7& +Ӿ!3S#R*esIXj3DlTvIAu}ցX+]\ǒnuSDC" 8$<>$E(XН (Ev/&G$+ўd$G=g"qcvelk{e=lJ<lG(CzF<;b$6fxxct[W%QJE8m/8?fpu5(:jlfrtÄ))'7@kah$MQm݇L5O85L?I@pֈ$0%ߟݍ;e6}?[egwLRJNW! +endstream +endobj +89 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 85 +>> +stream +x=!0 P)Ѯ2KHu ̃|X=T9' S6-·'*G4&^ ܖJK(޽EO +endstream +endobj +93 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 702 +>> +stream +xVMo@+h~7R."94S%ٵ]oP"R7;~ޒ׳"\TdVj,(sr.tro'2¥KC8S8GF5Bt\D+ɲFG.=ET2l!ž``%a!PT>dl@*N>pFo.HLcUGPeNo9; f:a7PģMuM36Lpپ~b1cʿ7N͋SӃ%m<Տu0 +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 432 +>> +stream +xO0=(.h$:JeSBaXT-dUT5@ |ySh++u%W?6EH/>e)in(3Dښxŀā/lȃ!{? |c>c𷙸S)h`A3e8uxD&ʱB&Pj0^SRy'Ğvi^ga*TT3׃h&3RXekgj>9o,i^}tHkq-QĠ%SP;hRDz;_?"GiRE}ӛ"Sfij#wc0eNe 'o7 +endstream +endobj +101 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 390 +>> +stream +xTMO@+vwhAckAR@ޅ  ә7_ RнMXSBJmXQ$J"!*1FD)_@;Gr8dP ƘIXxH0ew%cXOc#JLuMYѣZRnޢAy615Üc1-K(:%B,>K3t?=p)8#d|[Ns3'-}σ^Z9TxשWG'qH{s,OR:7#폤xuyK+ǭզ{> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xڵTMo@WѤagˋġUIsi7AAY NREU׳3o{;@)q+g^+OWHD^8i5./\,A`tp{@R!i }iK` $!wb-H"WbZPP!wb@.$TU !+MNWURȁ#xLSIbXkB)DiV?(a,$q:9[d<, >#esz Ln! 7SB:mșft F /W !`!4R~lr4^nmX2w<WH AiHlDDETیIpߛUm~W>FLȊ(|Yofdv;^(ڞ&]OO, }fh.ln}ͮs2]^xfr.ʟ]Ӵ_ޯ'-qYM&RGcκKBkh+ +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 826 +>> +stream +xڵVKo@+nw-*$.=Xi#I$~<^?֏ ɳ~FdYUѻ٥.ŷH12JA7JRP7vNVvREr.1w!\z ua``(.A? Cr-Rʔk qJA!Yp=HI@]dbbkNxd&R=*ł!d 5xDm֫躪V@gU@yjg#1t^C +m@V̛ p0x2'xm UUBj,ȅ@a.rQeoDMXdLuŀRɎ02Ƭ:!a{ֶ#9?h1/F;/R}^ xш!8/nA/&|Pf% +Lh%!3[bP hPn`z5kRcTYmS&]V%nCwǦ+hzY˝w,DչR7k4 \I0rR~ ]' $Ed"jPX@7zO"W#(nʑ.&\{O(ِYcJAD f <[6I%=!ժ\HSWһ"EEsȨ~=,7O^+;7O_;/-a[8Xk y\{53ZKP +Mf14fW˿Oڬ<'Ne-ҕarc}Y/7<8> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 824 +>> +stream +xڕVKs0WhJH NN{lq2c(M$)]YpK&qNI|IEfjBe +ϟR!@'qZFB8631g, KACʭ&m:PSLKnH&/AIC T@eT}JUɯ)l,bFܶ3 +c\tbqES +buE+L; Zh=ؼ`:ΰ52t"|̈́>{-r Ī@l!,IjY!NӬXj@iۨh/e4"cšDa#y +Z R+U42]ZLU)̚MYs\Up,I0/OeMƑ/ @Qzaxae^j|<ُp(^ >wۆg/ +mu'9|r )  V3G>M6] ؍ o +@+4u.TSE[KGYbQ S?+༗Ҫ$C +W] Qpdm9 ?6M߶Wۏn*ol[瓩_3-<T'3 ++UC[t䦛8 -qiw&p;P=Wlg vR/FXLEAk +9$f_\54ӂotٶexƿ +PeKԇL +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 495 +>> +stream +xVn@+fA20qT6]jĠؿ>`FES +s_s v4E= CBoH[9؂f,L^$sdf3j0qSDaH">LE[ Df5ABh3pŴć>r:JLwm#2Ar P d K ylɍDԖꜣrr>IdjtPᱣ9Gh$&>뜵?j;5scI'LC`jGG8UQ Q_q\x~DZ}ϣ^?.KnT]b +e{`woԄqro{^6l Ǭ_ +endstream +endobj +121 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xڵVK0Wh$~)linVB"`P:$njfMP!ڣz>e$H8vH@PD8-&d3}C!"IH Ì C|w*.lF0L@i8 YQ_yZ?WDqjUyF-grxV{U|lPey8v]yY(Hwc1Vif(4:S5}8s< uih5b'ӑA,^h#vE7O2YS+?o6GzE:M8*MϪ֡9 +[oF >`;j|э*ÁHK8V"h|,5A<+o۫e.Na.pBjouaO]ZQ_EW f '%mssW.꺢尅&]k׽&9`[JM&zj> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xVQo0~߯$hfblHyشt)m􁥄 %TKg!@vD>Gr )bp3ȈS|aA|j!%"G)yz-4_c$Ll4= <9?']N5MI?84<#)FzT|WXSf5UdHs?!vTΏ}\i'~}^/X-ޫ£KEiOgohId"{6Mc6#Ca`w2ЩsOmT`Ua .Zh"ε C\bZĿ!^TPPKMw$Y juu bqEOu` ?/ #.k g/+)\'6\{kWd]7wd,ګɚYF(؛2:z*Q*icZ*穇.+D.Xem|6oI2 z=WePdt9^MOz2oo&̙R'> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 842 +>> +stream +xڭVKOA WL;V^*RC)D + TMzfٵٟnYz|bfgI Jf%8øCІ>^N|D3WSҲJWg6H@a-T`4BxZ\h'wYQVS DҚ(V~12n=x*:}. C)#LFQ +NovC\i8JCLIAj#e#g€!1y.Q$BTP!8F$?)8:7YGNtA$6RAV 9q9gdϞЋ,FqצTIT}'K^,\91ck6M#Ѳ--3E e^e_Z^zH +Rx;"?T1gt7^O:9OZ8 zT((ԳЩ je]s4s j82Xֹ MnR/5]Pth(L\kԽJ#0. 4e[oeCgdӭ7y]o4c˴[`PgaE h _;\yF,:03S亳鰚*>.bXpC~Z%"ŞW!YmK@~|lv_w˧|Zy c>Tveq;-l1ޏ8gyبrK4Y'o2 aqB$ʒ]_4#~[/7rr{x\<=9>\<Qi"+cM7PT_SP +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F12 55 0 R +/F8 38 0 R +/F9 41 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 876 +>> +stream +xڝVMo0 W$"R_V^v\sZCemM?~dNJ9r"z|$3`w,,R1P\* pYi+_ 7)PpsN(#f}~ix˕!Lt rDV*"כǰ _%xeVs]B.Ɠ;HI&q6A?f ֗mq?!˘?J%ɥHnJ\WHry=4(BVB +/mW+Lꎴ\XX*/ESԹ$TT4Q2.@]dQ^ ZD +)RY~f9a$p.qS2Uc2hwζȩ\q/ǎ[ qaajKꜯa":N?FEPagd:K#2?9a跙X]L!ɏB=wmJ7lt} +wD܈zozk6~ϧӟr5 +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 596 +>> +stream +xڵVMo0Wh`lc ˴tڴSNuY)!gl2R8x 0l^OytOHpS& !8P:f%aa6G?KX}֩d Ii!ax2:4)XO7AHHZZ]c I%) B\EJ8M҄~O M)KtaZ3Ka`Wߐ>T?Uyg{Uۦ5cu(F][n +!7u}>10,hmP$Z ۽ ո2Xzp" ׊1WC,D R:$ +}b+HL)9Ykfɠ_2]0̼Zo*LZI>"IaC0癒.\ErOdt28_T9'`gýI'M#%,Ǡ#ibbDc!ę +b:?-ΚU{"_~7V6=}y]?pR+0̗O,:n>8xQwe@JT=evN u/"` +endstream +endobj +141 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 541 +>> +stream +xڝVM0+|LZJ\]D8tQ)Plz(R<θɒNZzq㾙y3D hx#QF CXsb}K0b&2Daƈ.)V\%<ŜQSMQ\*@M7,cV:r_H>듿Xm][pϯ !En/ ]/xcOO9pU#,L5_xD#Z\R##}E렡JٜAjOQ?*M .E¯Ǻ)k\agUcFx> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 532 +>> +stream +xV +8F``^fVzFiRě=l|| c{˅f7o捃e mQ>KdPiN5GT+T RQ i J(,3vޥ(ןCsjGV*nxp'Wlz +Nޒ3tacSqHRU/nd@>@cX{)78+< JzjV3tL67`z:> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 531 +>> +stream +xV=o0+8JH'Rd j:8(l%ΐTȤ̢Kh({8'[Y +I 3iL B+`Z[F關UV*g 1B;11gm{9UG-.&Qn]Kq8J'J-y\0懇ݏ6[Koȹ!NN䕶\1eШNRthW&QxbAROznj3M#*cJ )5f=1jȇZ][_._߹fy +m^BɌyIs^jŀ݉00FͪbgDE/3tVAE:QJam."1vaya0p/^RɴzKNWv6Mi^=L8uRU)>0hG6}m'Tjm;au^0Ҳt< +endstream +endobj +153 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 579 +>> +stream +xڽVM0+|tJ\]G sVtEc'ِf.}gޛg9h=z[D6ߐaahw_0!2xEgf%1#+3™GkQDx2e`"S\|{p?\lgS̹GdTQLA &},-~7 +ӻ5:8L>>mlr# MeVg R& [-kj:\8n +M]E桾۝ϷCpwwSlmA.rێ}oWo*gHa2f^ZvPg:؏ʎcçM?jMTSȗ]euLieHz6>T*$f<Lo +_~֚M ]NS l$l<=ˈD0QH=;D!=Ů?/ \T @B85plnfHsR_`$H_AuXKaTz\= ',Qc?;n+hTG}kʔ nEsؔ~_8 +endstream +endobj +157 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 816 +>> +stream +xڵVKo0 W2n*ÆCwf^ q$\?~%; GXR}&'g IM&fP͙Qd&[H*7 +j F `I9 +xH9DHEVn1a (sG'Zk`\ov*U͐E-%MX Yܺw|MCMr|eӻ# b< 4lDmC4]J iN%2ʹPI7LYp8G΄Ѝ63gi(Dh&CԂ#Tc!H}MY7GLvfb:0R0K0T%dR'3# mYً$ȿ՞Wjh -Nf\x5fmձHˊ~7`_qLXۘj r@bg7Ÿt ʚު $=bտS2ЖKbQGpX2ASׄdqKJekH˽y{xZ PckU7gb |ϻ$G=Gco/-^mavEm8Y,5x{D0fEj~c76Sa-c!^S[Yd'e,NKS^6ņG2د#̽SQ)!f:B5~l,Z]ܣ cѱL{s5=6cOc <8p^ +v)w}YGA Ɲ7 Z +endstream +endobj +161 0 obj +<< +/F14 63 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F8 38 0 R +/F12 55 0 R +/F13 59 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +166 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 165 0 R +/BaseFont/XKALMW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +167 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aMZNT)@\X#CUƸ0 pvo02|SDtk 7sI%no")K ٽrWW?Q&$-;#B)@"s5v +[m?.|j}zWzIJLƛL|5"Ph˩٥+ 6+N*>uպrÚ؅\_l_hAo7RK5?Tc +endstream +endobj +168 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 166 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 168 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/CJDWMG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4053 +/Length3 533 +/Length 4603 +>> +stream +xg8\m>$eѣwHL0D !JQ]E ={M$}cϺz|y (u,/*FPI* P<QEQ2TZ +(y8*!#&%# +n% (ph;EQ.C΀13`wy  + vxH .bBANKf2[OwYGªL~EL3gl ++d }#|'}ByY GGD0\+L^J87SEiw. Đi+e>=aӀƊgqj8퉾")'ȇ9!d}1[Na^|ͅ8"GGIsthX%k%r܊8=3DA0}VǶlw+wM6_+(R +rP>Sp2H|;>ײ6I&L+6ƶtp,:aLrFl~+l."]$7az +^|^YN#y<(~b5| mc2?\A[_PP&>65O\QrRKj_X̓OHo ]j$K]2TgګRK?D.;Gp1휆~&^XwOqςgZиāoWPޣ[,?&+2J2"~۵"k>$4ޮ(l^Ml+ui'F&: 7لoP&Tuյ4\Mޚ4W`Om`!,ɛ:c0yUஶ )>as?^%*E(y4Lu Hh՚+`W68uTݳVFu(:ЬR& ֲXjf:U 9Id'OTݾ &LAW;iNy%=\YN95܌V?).z UȚpLl&EJfd~z"g"kI鍝V}ikU:Na>3O'gKcYo֍xN+}%C iB0T[-d9 09e4Y(pZaAP I. ܚAHkdE]N*#FY0[r] bwTEQs-e=󲋘X3~;| +{"7\}ҏHQ aѲ>r1JI_M͸.iwӷeFqy4NW-n<;^K+cBU&PugiکI2IgЧl<.[DehDW(;ԴqfɠJ-]9? 3"/wyCp`PH-PHZ<&ȳVl!i8^ +UIQp(G@Ys.q `x_P W?GN#tys0g)YlWpsp'Hc4$V29& "h)1-å47X=Ṫ)5$|S4aMхB[D~Vv4+am<Ύ +%0wW 4@ޥXaB1G6Z~FN.tz7~߇"[ ^"V/# kv(uA@'b% +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/COMDUG+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5020 +>> +stream +xg8\m` AaG2`3zt!H$!zoQ(QB޻(_߷~>}Yu_z^X:YxB`0qL98ݑpOD`bb0H += *9@XW_w'[H鎲c@pOG;8C!=}A Y4# =a0e E:0@?T1X_2-oo.oNoJ!@-ݐYX Õh-p? XW/O;H@cn5FŦD\UQv4KBy(|#@#1C۟ښ +ʼҿ:p_aY;dBa?,"@a@p PrrX!DPCrB*PП;WQD i(|k>f#öI6:漭L]240gi S{AmVL%st`&#(M@62ڼ7Sߊr~ڲXk'eQbi{ԏF.*\hQ#\||J(W[Rw_d1)nĿ/gE?%#[[# XBQTdrMIׅd{L?+3rpti]|=:NMnS)Yh@Y?N9&@|,!' SMw)^2_]Ԫ/$ 7ID,Փ9HAǏ)H_՝s^үhU8l{t)Bf[w: IwD@#Nulf-Šd,O 0>%;*ʣ}gYM.K;pUpz='Zc}{}uIyݥ8DQ~yƝci+O]Π_я2u  #% LW}S9(G~؈5[[qZa0s̪TV=I܏^jV:/}\u!>ѧe9쁹?F8֝'qp~sAY4,T5&qn6ƿvdQ*36:AԆIZ&}DJL[nX$ev*o>Nt(fKbQk|L# v2N~(ڷ=ěYuv8SS%~h]sN6KTD*jmVTuo2rv[=kacA`VW).4TMRu+|VAA=*\Xi7(ιNEli%ʑCJ cKJrIا-y18=X#+yFr8ݙQfA^?3-N%'z;]hJ'=\@Π|.!1ir[X Ao.8NIߦ1&椆Ff~GsD;[W?>9^#kaZavwhՕpB0K"Q\dBj7C9 $~tB r>& aؕV47@$x.9fzt٤K,tYTu፥>L]seW^4rN8ԟ3Uo e[RS~yQԌ]gQ:1wفPx[ͥt+GS`Ej3a|bŝ%rGQg +5ʚO|V/X+NuaE9=Xwգ=>v R <.;dKz˓: "Y0ۛ^8< @_e*cygZ/ϵ8E-zavy]O(Ox\qj؊,E{3aBt]s#u Jvy, SA +Ol&U.o~5rҨ+A +_z]cUUAPߣg_6:dK.EE+o{ŕ)O67))>\*)y +d(}4dr| _ ky Y(gK%g46 ;Gh/aqmbFaC43wMj0dcgx ^R~eôF c-;H0??4B4烣Va>x{t}Y{q޸pKc%f%ڴl.Aeb(쨿O=d4pX'IF&[-G=iYVNt?'v.ّk/feBI"xb;\|0} wTҺ${ηQ#DzS_\_rFL{ +^e9jʚ-RiEWrc$MLYjU3sN iF4z4ưYt?q8֛utK+H^Fl&~*p zWFsRohVvjNPJU?Y? ڟ#+A|iuҔRf@8HӾ>k6Q| r\mȞpzq$6qݜYų:牦# >K{C+ +3tܽ`8{YΩp ~M:[!=L]@siçnvKcHwfĦ%Mָй_Y +ԟ@?擲~WLRkgS;Mq!zEao2a2D367.؈=H*o-vZ*شs>ns30nѿau<9czu%mHrL遪#6Nn 2U3]蚄N41KJ/wd!|znJn?eJmEcġsׄ."hguጃ}–8\])t0}#S8]v}<E՘XS^9/mmޛ<N8 [n|ZUwrE ud82w4rn3֣" 3A(&g;C '"Mr#`L} P BvnM]WgXL ɗ7b -ma0~;ڒ&W I7N"(h> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`QPeWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-p +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/VMJSKW+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}߶_Em uZDxb|;O?kmXKc洆 ukٙܟBy&ybbaG6YՏ~sזpCr0 ȕ^KZd=ٳ )Rrnu硻l:AhcLnd]ui_`W5WnPVrzvA&jvBF+l1 \.VaIuHEzV>ގXξ e@~jvnU^{-gtZe UJ\m nNFxJF(;[WD&!$b2dxtvZP^{om2(e0%`%Iԋ4@JO|:gr4H;;-ԝcYɥs?QAb;ΡDV5wJ` q@^]Ϣ.bfE&>ȔxD t5r}PE3!f׈F#k?ʌϷ:PzsuYdgdDZeX4ըۊ.sA/b `EE" `ыB-7y_EЎ_E\iŎQlK*U?ٕ}YԨt4EV2L#ܞ/^vӛq4@doDp%/} ٨hJ(qK]8vXn`S,| Tĉ`nNp#4/9YA% L+05Z*%2.TyfC-{U=+@=KVԒU 9 Y[Y _+Yr4l{8IO:u׋ɼ]%בʡzOaOXqp\m0]zSy;6#cR8ވ[;i!"TDS2.\Pq"1U\ka7D]`a>i3sm|j鸃g >ycnckdAlг4eWܪrJ5?ĘHM/3 rTUJ*wQv Lv|0cȥݐ2IʖaKleAAWn#as;SΎɫq2e| pGF7kO] KR\诜hU2 h+,U, .l/-O9{QG7Ɯ|5~#񣉻o]/;ɛf딈_xsRɪQջj;x$h5,O{|$!<+\3$g~h}VQx7fp\]Cܕ(eZdÿJXʙM7`tdO;g +R\g|>fZڶtYC>\2|4F5`q-Ӯ3_K?g~cuL2/b88>t#5hO?zcrצ!8!TGj͠+8gÀM}PDiET!2xU{L-{7D73t[rNd +P{DW>w]ߛ,4tns5-UEHٮ_"iP@ZMm"L"m#GBKjEO::(a>Z8vg!B8ǎDŽ"""ъ᣹lB~>p$~6P:E B٫EU#7O]nPĆp9{r {WK1&fFcxLR=48E57Z3KFGM#~$wkClPʘytsɯ29{[D +fYJ*a[69a/xyroب+ϳe1$dFѣ*[ϣ(ipǬᢎLmEllYU[dCU_J(7-tsm]4xU6 ]%p ]D#'1Lz\Pey¶۹:d>^Ǭԫ\?ZLa,K|9偤;B'8RVՅ;)duMv?at6DFEZӻxBBY@ 䜾|ݦװFV[SW~ ~V,)U9Ma;Tu[GkY~nO3IE2;vF8]4P^H $MgZ$%^q&O@ĦEWt*}Nq;I ]HZ'Ѥ<] .H&t_kM!|zQL } +&nrw3me+^p;Z ®]uylANf@jtte$&j>TV~o'{R< + p>T.Z7j3ʽ(辙Sr5"$1&!VrY !#,MpkxHٽ%zpY/,UeķVuE i}`j!]\?ɪLM֝,,.%{|*Zh&XE0Rzϻi8sBar׉7pIj=\FZӴD vrW7U\k@<Е2y{oc)tM.;R= P賞5mfEޅNHnO_*R91pSՍ36?ߙé M%/xai.f+/WNctIɾ́]LlAt"%o gqna)KEKi^'p:G(W9DgCCSfeqv|F! @YIh!qU +6_eчN=[έچʢ +#2BS]EYsAz]}t7вSBJbb0D*0r\ryԉ]_ۭEY`+Vc@]y}qI nY4`~~N1קH=kڪ8ZhZyv'9l +_,s.a9p,ήd<\b|q|̍c4jD&fVN{>S?|.6Y Ilg?F%"M]ޏz GWhGuXIwpKOauL8fם]; A_"t:d\yԱ:ЪIGV)!L=[!Rg񍳑F^9kV3 =קLd\s:(xDl'5X I3(,e=ڻ|;j*Z\0_PKxj|(m8FZ]YE?&1MS '4Ó;1Rp[.Wh-Sb. xLJC;g H_[?m$_[X{I@GgHPi=jC0`?ͫAn/ރv7+#z<}vNPxq_ԮP fJfAӕ{{t-K8\4d$\7vjz l<슃<%th(@VT;şT[+fog_zk+'Յ̊_?5͊H4-NTʋ߽J)ڛۈzBnY[Wv<U5. gAOzH]JJJ|IlBuu{'?,G&iR'G GN(Z/DZ;0MAA%g/R=K m"J,O49>EJįVrꆇn39BO8p _b +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/NVHZGI+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmhF/щDf01EBFhѢ=D%#z%my\yϗso:{Z׾3Ђc]zX NBZRZcm+ JK@!! bnpe4,C\,.ey9e z =p@?U@-4 +Ma8Za]\$B-|hE#4t]H @O,CWϒ? (Tx bP@8 u {qA?onB݂=HT?X4>K!റkcZw+C H E#0#\ 7-?~_Us߱A.+}!r[7]+ĸp0 WߩAF2LZASx_1Ho?M<RTPuA`pw'3vC^ @¬,LE~LX*DņGV$Ԧ_e. +j4zNVN·B$"RNH{xdžZ\,<[@W6xUTO\L-zf3AO<-j\-jGt6 D ~f9}x+HϺW^wFwPn$Ώj"o>fAK"՗lO4\ B$!WnM1|蘹H~4~O1`XYo2c-wuX9Ūil_ЂG˘mL&WQwoF3iPi.lq};CA#'ƀaY͹tM097r"0kh0M:w!8J\j"+R3(zo%"'](70駐p" Uтwf^JzU5Ɖm{dR+.vsDP(pkd PtƂ:j:5kBܞQJӑyvJ 0JأD6=(˕챘kNV? &@T9ի>_u_4|UȢ2<[,ߕ)wI7tK^aLRaɃ_D0cS2N%chskcz92>s(.+wU uh +'"Mc\xt`e42@jXOTҍR5Pӗ֙9&MafwI᛻=wP5Opu QaLbYF8-t*^b5*\oo8"gޕ7^ʄl8|ZJ$Y,H;wr,@{p5-8}EKRW3mnۺ} +EW/-BoTd{p<nd..$(V 9QeMKYb? 71l8 mff_?`#X6c iQ[!;&o]?ǟ}|QL{G%=c·OB!7rZMqt0YX!@=4n.^8Sz+f(VP܍X u3 htӣ7a7蓑EG.QXQ-8[j溠%m'VB,;OWx2ڊzSWթ| *hlH7G@E*/ #Nd ػ}Tݗ~I .!E1y2k|G>KEֹ&p>V;c1\N.boװ(k>b-I˜Kji i Ƒ;ZT邅BV%/7J6&azɜ.t65.m?ÿ,. }Qn)`\oCxʍ cL s(8&+TÓq)^8BŊآL0fyA%|𖱲?=ǣ#>oa&B_?!`;V2 ~>`-U$;N=E-ȷlVQpFSVw𔊣Ai])?ݛvgHGk 󅢲mvh2}0EN7um%[̟t݇ +-uR/ۊPe͗PoސH&\gh#lW& .bPy90yXpv/TQR⥖54nL29ΰ{:Xj; +47"Mo R_W֔LK5HְPA2N)v^kfT?ЇqGx-&S: ]~~[[Zw3<$dmoqvT뮲qMZ7F4|դ>dECQ#\ [S?*ş㲣m2&#\U%8H&jʤ F+DW5psĻ~}\($،ԊB1K屻÷yCÑ-dǖ#TڶPDҴ4[ "1"^t/6bEN[W2Bł[@s7d/Ԕ˒EcȈ<[Tj *;%FsP%z*D"0F*}Eg^넔)릳G MGeR:He{vgYOLg4&s C.CJ{FCBndC3Us&/Pպ Z5I~ k~BV;0]lX\%n/SѐiKMԟOQ?pn +%gؚg +ś~IrejƕNJ!>)B&Zn_!p׷_<`QCfmwWYɧ O$w)p]V]V4W]VQdי_'d ++%&ϒ?5D ݿC_N!9V!쉚^o؈uCCzLD סJu}D.9;ޙXxFPuϻ_k5"n>/rx';_e,c'"dʱ'goJ_$[="ʈf9 '#=svZ_gZ}arEu׼R>%!査aA=\Q}Obg~x_Z9O>3@^k] wM*J:v +OΝX,RŲ];5y5B{Umy6& !};lܵ5fGOr!勢ͷJʟ ծ=dJ*Ifa/aj7@pKzehHɘN݀Wd ƤTT[{L1Ab4yA'S#MŇlhpi]zyMPzAyLk>Q+nAcNWq;7neu$ ^P$ܳ67"Z"˝Qȗ 9Džj$%MW2/ }mCZm{Ldn9ZWU92X )F1rL>Nt[z9 j+9*&PqL1Y"43JF x_ޱ)1Z"{TX$8X ;s!SRs4korr$"Eyyoy&0"5tM$9vE776$9 dpKwO]U1WmF+( ;`C2$/%tcr۝}g +ӣ+N$|:ok3#g$N$+;udTaxf_׀NF%5-fNaM!LLBP@m1$ccˠLc (6pZ[ƍd|lZf;ovlŀ7dq2y֓aNṽyc{C_Mknp TR|߼lՠb=#0ub=sz *9'Bcg3^*x@<7Kn x!]/ft;QW -k콆nK EݻGߐ`uB`Tš<=Cqv7S6tJ::VJ|P_w_fGԺbּdzK8t͠/B~-?⎊6MDAX9lK^c +Oxؑ6?8==޸!D0 T-w%e7mVu:3ޘQCSx %OJy-7tbҥ g f_O((-S]80ZҨ\fw~mö7._(DbL̃mg/ף+:p2;jO JidᰆkARL[D"ofb2 h!+#HTUc&pd}#[YH}3}gQ2T2M(E|< ( +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/VKTYGI+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2234 +>> +stream +xRgXSYf2:DMteBr.`H Q`D)#M (0-,eHtQ :4E)"ـy{6'B a4FG$ AHp Fu1 4FL22PH4 +6B tGZ8BM%`O0Gń0N9f[] ɮR+9c|?NWK\?jTxPH[_)u5ؖYyb{LlO( wE+(Gڻ;lԸEK]Z͒)Ç&h}+5 |U|و2{[SP̵~\g3xQ\uԐfP׬(?=ߓS:$(;?|I])J;~mi÷^zvPv[o*NWZ AKboȏjF/E5[\VXoAyC[lqy1Hj)V$Wq-T +t΀~KҌa ]H튧}Z6Tc̅.U^m֓n! 9ߍRlwbR_h|-x~4l&AV?Ij,,a eʋabso_~~sOAӧp?KMʲ˞WF\0HWd yF)=p|AKFrppH[wAaXBIv_:{ieҷGCR7Ć=VP)]抒nuqĒzxwNuip !Z" UጳVJμ7Sp]cx z!c6Zvԓ5\T5U1k]区*^h=!]X?I;8ز4tF5 Njj[Y苳Y&bT{D/PHy>b\-e5#0@ڌJ +8pr?W%F/eĘ?捒rrޤ-w6W\QʔJt ͖|0ak14ڹmhiS*Lez*o|饻;Plu)Kѡ̼ rjF̓PxFՋp?u{IDqUߊ̖Yɥrвhz;|Dbv܂xz1,n_wKʽֱYe%<,E=)WxFS4Sn*.}Os.! `vS5㤜Ϋ?Փ5pKJ3_]iIοYK8mZWT>)k-7QȘp2FL r_COptD Ϡ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/EIYTLT+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2750 +/Length3 533 +/Length 3299 +>> +stream +xgXS[چAi& M;N(қR: B$$1$H"% GEP)҅HWDAT);(x\̟ggK\ +!!A#, }ssS8\Cqq}"c x0uu*\Y +? I$p ('};$.}@/@`0u'heLT1_-_sH$91<!C?pnD,PֿQXo" s$ڃ™,׮)ú=p S*c}~ +Kv.p>Oc~%9OyCSG]+OFAOpJ$ Ba_N3Ļ0X  ߩ~ +m*Р5W) USUTSSH$Oy2pH CB c&0!kir&4g+I"~D bO2*lGUpZmIc^5dG>4k>"ݺSY«(vltU$% 7mH'LcmRlqXF|HY{:gC.ܬU&~/vr" %|Y>VdCNtϩ^ߎcF_ )=٩ +u>}^jbat%9eh%eތ [A(!Ps]Z}v۸اǝ b"A5߱]!Aɝ#4$c?0Z9\# Q_)t!S5"ϻ뒶N=J @9b|յ?Sz}56Q=[dx`rSݾt +JMMuO4:Z;*Y(\#,HcKMgYFs\CcnN:,|o}';gkc_wcBSiEӋ[IG~k0R&?UpiT9wJVs"u/E@"HIIK% x9`BQg?q[HX6L!j]}Dz]e>2(5jhK#x[rl6D+w\(GKf -QqYkA +7<> +lG\bL*?H<ڠY 0/5_ +VZƕ4̊W~RQ}kvGZz/ zGr֎E5r69oxMEܶ.U*;8ӻuk{{_KDw7.-JQU˾\4v?1 4]z+@rضkϓ0򢷨=r}u4m}B6o*ZcjZ6bNH߅wËνVKm-bf#ګ^}Μ-kS1*)qCc"zS@7ע;%pnV$ҏ𩙐q[{z4O m_Z+ْ}o5I}uB76e$y;Kc|+ne(r^ɰ5+Cy#3wLv7ፚv-cdh{1o?i&)؄z^ X˿&8.$"PE[Q5ǵLLO i{5y(٧DMmO`b ;DŽZ_yi^Q40-$rr=&%yB +*6Z84(me&/7@ݍB u 3A\7'?+{6$F:!kǰQzi]^dɧ~{,tg77CzUH0WfNە z=CCgT>3GkS::+Rnj|`'7$~Se(~ `.j,Bw6 M@[:>8v1G2?JV-&[5h˔^t3#.VqV-QJ}͡7v/W:b/Ш} رtCW3?GnSIBHiJZ#gH eLqڂ6(gWB*JX.HNR&u))Ɉ(k}3XIֵc4aaj5wy6Ofuj"*$N+8b߀#{p3E)s|g|i 7A(h0]A q]zi3XU}rӌյ$wy~Wm.LF 2bTC(9`.2VQIW+*!xh#|՛?Q$2E@ס +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/ZAWNTT+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1944 +/Length3 533 +/Length 2479 +>> +stream +xy<ǕG֧AY2b/)M4c<˜*Dd!TZT7R*N؊DHulT'křs_s}~?{&ȆXLvN@tu dX,c6m0.` +!Z г6 QL  +Y`C_ \0}"`04B & ɑ0Tnȟ!&Ĝby !Y@1o~ wdxr@6ĢlVw;HUGQl4:0( % o}IBmeԗUZ7NB*NS ^e֕"AM^1E[PqV%*5,4:۫ 5L.r|;>v)mNH,!"VQnrNz6rlS}*mnݵqUBVPO놿GX26U^t nuIy)GwyXܘP;.Wx:C P7"R=: +Atqj$>Q](27(4?J;XUvI)v.U(YLS/!DUAp@FvkCEә͖&InmI+lJ4.pȻ3S4)ơ#9^\ -(T]T)REyb=*('}v Qbj#CwULՖOMXw+ݜHіbi UGL䓸ytun +6;w dVV=~"cn-V=`su2a\.rSx+Sfv1(kTp6@qW=mp͹iQyroa 1$cY\dG#;[8DW9\qipTզ!q6^RW5OQD +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/LQFVIR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1693 +/Length3 533 +/Length 2232 +>> +stream +xyjqDq\ 00@%  H"DA%(蒰4W>0w&`]7<0($0@]@7j +L( H5,0'`z/-"3F92<\@DqXo :A$ @* o~&aHof6 N" w6!EX J qL滎ƐArXO@qI;7ֶ@o7`j_5uF I`pzXGcp΀)C#  +RWǓ}a, ြ,_m8 Dh0yiE"@,P?G턡N +(PQ-lS̬#3zdIҒ-KA;t]} D؄e=&Lkx$LmSnN?J'zvHȤ. 8J(t]覂FwkLea>46 ʙw{g +f7es6yjI.Q&a=NP4H>z$GS;3S'yZyu8?aW _ :_icYt-+goۏrvnS"`FOw'5+c;coa2|"ިKYB- Ww#tB$zo(u4 X{ dzH( +R~N:OX:{>7 J'c_JФxe/S{7t3 Ylnc9Nk +iE$B9hZtAfdcwɞ/}soR,=xmuӪiËfXx;i] +L5gbXq8' 4c,$DM՜l(Bf #՚2w/7sl~|ۢv§ce#[N/sz#5؁k:z* +;Gw}cQMd_'dC&mW}d[=b#z:f2ԉ_ʏPZj:<)0b}rgjcq`|A]ƜeeB?焌"M)G*+Q p9ˆ<ND1_ j' kkYhk8N Z PEʘbV;5v ^jhWd y!]U"5V^~aa[^iOmX Z*[%`n}>LaE쫗uɮPMi CDjݚ@mHC˝ikhB;cf\u X }Wq'C׾I`c mba [ZyYT%QhkA9eJw4@`_2}Skgx>F"nDQӕa~+.]I^ \έNSgT7x&EK ccx&~$ҪєX;(d܏G)m<`g]nJkK?#I.mBr +Rvo+1B9WkiY$FxD7\;}+46=N}PyEba E: `'-m_CDyc~|}%3?V7&rGbicpELwyu?^}},Rf}w"F7^?}bȜ I$E֣2w0dg yze*;$6.g=âSrqayU{~9~f_/c_~g:ReYѭ*)%\yިmg)OxnPӜg&+~ %\m,aUSh7ht9n:2ʹ "c+V:ùR"ZDNNC$nK&Sd!Ͻj.U}mߍxVDmuyY}+_zu2P M7YƉSоžDa2CrG"RZ:bDms0vk/*-,zjkܛo5Q2k _^O @Ļ! ? ' +endstream +endobj +47 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/TXMCWS+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 46 0 R +/Flags 68 +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2(4v,7f 36flBv՝}Ȓ%!{v:J(D!Jx>^?{~suKة(^xS +mW0q#C'P: E P`ZH Mt0Pi_:`K0 i, 1t_D A!Qx4V'_ph<HkN X!0tB)X_C dܯ$wF9)յt`*ޟ 0|߸re72#};:p-;!TT5`45`@& ě0-M5-OH]{3XPzpD GmAP̬LzGj1U~ݘ:%F8!lP?x(V{ a6ɞ#!aZ 0+9cWc²Z)& %T^ɿPz-S୺d}s *ze9<\ȭuJ|Wj& +.ɨ?ZW9ĕ' +ZǮq, rmr+s}Z<] +{\Igd;4~u9=B׽/48Oņ#T8M4"6ɫg8۵֝w ՎG=N +ll m(8]*"4f|:! ޻gl}5טQqA<pّcn'Nܷ9;eTU6M|]w}yz˕6rUT8-+C!@䙮 fTv$A^ETl`?lGHFUz\=Ȼg5ȶʁ.\F=#֜L©;kk%t?7~;E\^TmY+w! 'lv FmKsZYլSl>)أrJXJWg,S7ؼ_N)[BN<3Jdg ^RB@zQ,3u51^5aچ:AXP`Μ1vٟpSl/u݉ㅠeHG5ڮ蕔/94Kus[%Ir%μ(}zm^~?ߵT'DZd.N+_jtfv)zvx>2/:@A9ugl$je{ǫ8 Ш/|4!q/N O{KuA/L7R 8mkC3۞FڞYH~N~#gyN'i5C tӾ8U +eJO +6$,hj/;`*V~@OQj]6m +@e0{U=>햾z#ȁmƅ5k\Hjy. n,~cx3-S~٥_[Mh)qxZ#aAƥ{;Vh'uW?RKb8ר(z$kӝ)uķW-jD3c'wэBK+zMgIG ֋d _:kA&] Qu-S$lʮ4ɕ.4=&YVKH/{(FL nj}"m#-\ydFZ{*_~pN7LTe,`$} Gtt:h``TϤ xҗC8?I2ڔ%%^dۉ2pT?>2̑c5!gUԮZ8 7oѵL8S>Q*!J-}'cZ:p߁Ԫpl4~j3W4Ǟӧe5#.8+xN0, b+/,-vJSEiK\-Azef|ؼ*C!\=qq.Ku웨Jtt[. tף+vDCjff4cUVuvbJby~5bWw~8hD$6%t{rZVo}f],fNGi(h[eqBT#;7٬w!}9pj01# 9zYBg'W @4N#1 JB)^vz .GLULyd',VOJSoW,{(]/ //BAP +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/MRCIRK+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D73[ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\Hw +endstream +endobj +54 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/QYSORG+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 53 0 R +/Flags 68 +>> +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWR(pRB1R ( !$3q2D@JP( +GET ؀ JmSqA6S쟞̟>*oAX̗$h;n! 1ll8Ix#4`ggp";8 %J +-t7.6H0 +"B襘D"DĀO +qV /20*CY    ?GPKI %q:@GX P,a#ua:7T}b1:"ʷR"Hpl.CqdO#b\!Db XӐ|qp)C2lpA/پ=!5 :L)>Xkݘ(\A,uFk|!i@ +!HspvγuW g6i_ |Nq) +#:M g4}[l^~ixwH&y752{e,[Mr%+uE١% G)=;@Щ k9LWâ'>n_s/R4-|ϕ/3(Q>i"C%,Ǹ!ͻK-b/q)6۳[[}蕳"D-'nex:hW?L\[yF\& uk^k˸RY!&ub_Gƶ{_.|$YaEg՞sd +=qnV|;nװK+-)Pn*+ew[{qgeZcR*]~ʚ1>_?PC2+i~FQDyb^p~Q36y8k^>28?kh&s[3>ӾQ}cۛyYJ̵]'vvԪ|TihmeWg'l3X[ L*KR)[JXې)29kvjQS[hPp{HZ󄗚?>=vI֊6穨E/\Ծ^&;2㒋+?7H 9)*0;bjf>xksKr|.E <#ʮ$tUSzvϽa(ΤE:18`n^{v&z8=/} ]1NhKܐW}Y~ϒ>${)~Lcuy6}3v詂Ta>~[G9C{R&J2C NHXcMyB~QHd5ŷZG<8j`MfGL5Ws eͩΛi󮻩l,60&YIKw +fSiʾw +skӃu>43t7749R3VOs7>WhWmX~`tO&Uu]˂;re>ibsIQq{KMϴjV)Ҧ|rn=+#7)>o_ˇ"@(&%`c +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/JQGGEB+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDa)c֚ 3cblr BhWnmQG +\Τ~NsyZ}}wt4= Fv #rbFX}\`::8&Dd  YX c +/ď% p(&L f8W61a`&B"RC(QWX7ĂD!X,$6Q`:˕Nf۾`D؟-deR$ tjBdڃ!`NTurXi05BL=78<ﻮl"&)T0nEa~a 0 TCt{q~^Ύo]O"LgDA/rĄ#8f(\|#a: t)ޞ5šFƦjXYWn:: |Y%E0| ğgM)AP$DBϔ1*t +WsB`6vlDbVJiպν)|ͣeFeOP7gMHg^䙼<_)5u<}ۍ.u}S\ĒOt.}.4([8pڪ%$`bN_ N{NS*snNsG"b~Rz*}ӮW1Kl]/Y54ivlzCuM.FMxN곪xh 5=ep!|Vw,]JFFpÝ ul3[m+j܁)\Oafl:D`-N[z%S%X}ʳj@*ըؠM~2G[?_zDs=Kwg_V2Bxdk6`ЈRsO<:d2REVvJs(+OG.%zP"T Y)|@LAN ,F1QH>򅞛Xsqד94:}RF|^N%)Y9hK ~tʏ^0r.@tW6ې%1? +Nh6ژm/牵 XJ*IlIhd,kJ-_ y̙'LmTu9ImNlzGdަƚW1Ms])+(Y&A 5AO#zcFOm_-Qw/`{Ȧy92wx!riӮB՛0ד{ͻ빞 o)ǚI=EQ5eg^[?F(p۝.S-IQSMl"kd,ڽv#PRihgc~Bq㗃hU0j ;! W)s`|fwا+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;I+e2m h7?]rSJR;L]e⸢ŀjo>tԺδU!/s[yʑIb~Kp&J_F/9ԷlLm${e@輂h43"wO{%+~Yc\Oavtы-2\xfHkGiq֌̯{g8dUᜫm6g]%1PhsMow+.L04ڹc,cO&[&V]za?=V~`&?;e)7`VёPY'TՈ{JiݛëAn^?xTxe濼?1DL6Fd" + +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/ZRRGOB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 61 0 R +/Flags 4 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10402 +/Length3 533 +/Length 10957 +>> +stream +xUTᶥnA7.݃-8a!; 9{{ңztU=ZkUPTd*ꌢf&@){;FV&V>+ E J h0vXyyN6.+  + ntЊC :L.@ۿ&6u{Sœ g4cBDdeL]&@ "?dj: @OR:_N3{;OYz4`7rQ2?osc[(m\]NE{3ݿK4Td*jgaryT@.'W?@;g? uԤžsTd_f|@=ۿ&igjoۙ;WS{x3r9UirtJ8YXXx5uurڹ={YzMUiiWqYp R) ~\=hIKxч'f]ǸcPxܜjhb׵#GJ:ǟl$%#FTVpJ.sꓶ/W,6%?uʔ8*K"$w%զibMkc+8k!J +֏y " eL,6v!,9XBvvzt_ظ7&n^R_i|u{Zݰ #HTXF&9k pH Z Jz0xR\k0P K9Y,iQjr2sq ehCW/1F`ۂQV\+ ?"d6/`9-}lOIlLEXв*ab^ e}VП_BL[m2fActژѹ=.!,p5S´ЙLаz)6|"ߦ?PUxwRW(2I0d"hH6glڐLE +[M㯾?ٯh#p KӇX5Xn&VWj6LX|NEqJZߌ~@ +sTYefq2}x)ı҆~i<-,CaZ"ʿr0.SZQ?Jo`U̵ӠQ*;; k: BpƒPN9*H:J)ԓ +3M~źOGE/ _lwfHq;X@Xfh9ܽ\Bk~sεhwAB+R20x2QHE̖ǙxI9瘙?$2 +Jy^K?=gHm[HDwX^7Ӥ*>S)xf▥zCpA{>~< ؄ }M'&3r?agr|j ^/VWp"x]|oxGEϝщ 5\oD%p` !}}J\8c@%UӌzR-$hʨ9 f-!KO{I8L: 4 j·RցLhG ϴ} :I{N jRBou!ooPG&6g G6uV?Q_@MXw>H9M +{ε~VX#D'˺%_c'6ic~ >eY/;i> ?yAC*vDCJҖϢ9[ϥ`A&rpa uz(xش2dvI@C{ohz]B>DW[9RcArG1F ĹGC@!7L^Eq3GBO!Ren*"gb k3b!\ ue'2R=؅LooKl.02[CPI<$Ȉ?n.IeB_{>By6ODnN[yxC5o{?c '@At<‰PSoKD8i.3~:'Bg4e{t XnW.^6GID` UousҋxS缎6Q/t"-61a*&ѱwG 4$r+AQ`DaSx-gA(`E^)혩Y~A+A*/ͬ2)^\  }'JQEXߜ&?|c8>> .gVe.%5LJ-+,S,Zv5 +!ŝh^V]^*|4{]}E"8d"FP,ͻU9ξxЏ~zHM .^SɥcIV'k6FpzBKnDד@ 7j&s:1ؑ`T0a37!_z6dun{<=OveCBTjk2VNRy 3GB InF5Z΂ +On;c!b{mI݃SDw*QP~mG[1)&*H{l݋@T#VƂaᛶKwyIP;ĸD#$B.cUsik)H/~zK;&e'boTZF+;)ƟcR\>~ s864QOCG`O<{ڸޞ$ OTG߶0*.r=U<SK㔌E/)[F 9;x* 7+H#h:0z" #V15 z\}خw\g(bQFGN-CK9T<hHnlS`|L ee˔zf;K[v,I.J2"=Yz\K>~°tmH,=;qNuTJi()iQ#8KZw֖3hw'ߏ֛FjA`G(pI)nuw}獰}"6fCf|ބSwF0Or\O_VFۡzzd>S%FMzZ;+f?xgս-5f0K{ ܊97Duom<dȸx vwZ@™G8@@PNԴ2-K%^wF6?*DT@򅀋,ݯ}\|MF'.?:)´;>kBJಿmNA1'X9qV@r[] +k0`}="&=,#,B|PwRkr(9q%kB>6N0)Ec\~ՃSNuW? "k_$$w:!ju{8Z)N X((w! ?N#bD0B? O0c=,b q\9*a :d ^OQevnz5ob1d %0biqa̒X0! +9ۍaSC\f(N)OFzrGa3+TGռi"羚aQI1FuV=0C(|`ѧ4n_EH#plڢ_^#IP)>&F_QWIK;,|?*lU p4ͭ?71czKaѪpod`40~g,nKC.)[M`@ҥ[G&y-SSRCuePmY|iNpm]r#Pn%l01~YOhRu?wԜ +2b*f y鶤aa +,8d"ToڇII^RI\"ڴI =X1ŋbPi(قP4WlwDf岛ӟ^ɁşiJEcmdj*.BM~k ̶lŇ,}̇tY|_n꤈J +W"s VۣSުn+XlV[4Xsx#s*rn>aK񠭑԰9Pv!C٪UɇO,nhT)?|7z37]XLu㭕b9k:p\8lK<%` rj>AX d1qqݰtF<_xAz@=3ڵ_Y ٩fIʨOs_&cI qk:1^_XaT5ѭ#3q3wP!!bJ6òRP0XUXi}S}([rѣ8`y  7yu-l[e $4cPSj\9xW ّ50F"$EuA␑[ڈ|{Q6tzT:'&ܖZp[|<^*gde:t+$M ~ ݫİGCjœp4z_ OïkA좶#0.%XVL9{#f~'N&?li +Q=50Օ(Fؔʒ.y6_7LY}hKsGsXNެ霭vn0x( Wq)uUY}"*=Ÿ 93. KV HOI3 + bʱ32ޖ__i-򔧘-.["=VQ D_ʏF:iN %;WjjG.VBSfLL^cimwwZExv-PW$ KbBb_] mJ0z`iA5Hj2hQw]~E?>zJз{?\Bέo"IF6וV&ǚ"X/(e/7UM"v:v}U£ 39y[mSؔGO(kKpVt%p)'cciPwJ=+:R<9wNH{+u茯?iӰƫ`C\@v +$N=zQػQWD=?ow>6GyK57~@ÕQ  b FUzIR>|x:zqEvO*֤* +tovP`h%웂@?E ꙰#v&N1b w ÊIR%3W2jhBJ]~$CD f kg?o:8:]ݹqꨁC JTBۻh%e~ed;JY`lw()쮻1̮{aOXg{6&:m +fƾ :$7lUҧQk@mv0U~Tϯ[3߽ F3%VzV!Ϥ`$b=TmnMXï#C\iԥUlWWiF`ã:(oUhYIurB[|Ǎ=Ir~ Z/%r͉4?l2z&O؈r,bvtN;}#jHhȟJ,8y&d?)tݯY QuB {cMs8q~G2$xQ s5:5A+r,%Z-=/}d&a$ұ藂_X 9;@B#<}2LBn5AIIS#~gH"hEkwpܭw.Q#=s>2/-f9rOG<זR~ nQzkX2Գ= e?C~릾`qAQoi#AiBR8L *fRk3~vޘ z +~8rvZ5Cdd<,vD;9ߣ55Lsάwgȱ$ +wO= +I-:5n=|Nyn$@xDh7AynaZQDY,:) +ZAplR ҁ |Y-YnݶT3lS璷@ieO3wfIcTMk*>vC\ +T[| vH-DTuvoBTDZ*|ָ@8t)g/HE +{HH:dȁ8a\iuAL\Io;fI܌6/H>v[  :kzp@]*EA3)z~3k|@Jܖ+ޯAV~aUSZM>ZaV,Ʀ7{ͥr-<7Q'49lUqZܚJ4CNlRoul#@.SjNҲ.c &-8`AGK؀~h͋SqG{XHԋHlRa##I$`@ _h_ R9!sI,P q .N\=V+UL0!ՊAa +xUWk1ߓ%$<s;'/̊ENɜ0&)h8vk"ƍ!W*Tl +{a[kL6-fBQG97Lg-_ZuSKL%_@L-QsGͤXi_9'(m +׌۸9/d t,N-%l VkaaȽR2(0]8f01W0mQ5]!D/!keh' b _>wě^5PK~[8S"Oz +; uKDq(YPRR8J>XTǂ&,kM)C2n–,qGN_,VV^k*;x,ŨLr)(%~HΔv}c^,K( %b68Gжq]Qu(Q5_o卆E\I!Aˠ(g\olKu O;=hc2<HZv}[GuвP=}P᠋^SMTp_iw3XJfMfO:$+*~P=C1}?v^]Ⱥ '>rv[FPEP̈f1Z~n2X9k&Pbn _[ 9?<=9N,pjsa>1y޳Q*}ݦJ;n(\b,e"8pOȵyS@czEૌj0l͗hZ϶e-^*լo!$<iJxIJ3yQvf?cvvW|?ΑV=W(B_m8h+* dCe8jVoWEɕ3=e\˜aQyLq2k*h ;LPy玨*"TP;S+n5ӽT8[`x-nuފ-<(Ʒi ořo?d92럧zP\} #QelvXWJGbsui5qmcG8WT@`!OZ(ؗ >V޼l4i2p[5Ɉ4-jp*\Z=*33Lg*P-STmBQ*xvZ: >׈#y7Υl*<*pI(d8;#X/7o ̬3 +endstream +endobj +165 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/XKALMW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 164 0 R +/Flags 68 +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5590 +>> +stream +xUT\ۖqw " +(\ +@pM 4@psν}G/=G?oϽ^=6$"cABiUm'ĠvXN20$(Hz~x8810.>nP[I?@pZl!C,VPH:8xqyB@ ZPNd?[7\ߜ̀ߔ`g'b{5o1Cp95 ?Կ->p8;x nUg0V=_p0]EJ`%Cfe ppC=?18%UTXcjX@`:>.֠տq99A>m5Y'+g0 p[Sw*))go?v>.;rW(Sps8 5 oLb(E+!CbuX/ W >I :vMn&K]ޣWQb}/jg4g?{ BK'%YH=Dsۮ#p+ϐZE =V)a"IGF$r\C [Nf颳 pmr1>c|G~ &g@UG7zz6Z ZF\I H*n< 9Wf(]˖ Dl^u]UE䩣9H=@3u:idz^@ɜC"xtKrnZE/9QSګj_qG  o_IZ<{_yPJFHWa.=!ɸ2dG\ɸ{ ĩ< NY&̮~hFdt(&cz W{QѦBn +%"oȲ?I 3rXU˔GW)[[rikz}E[{@(#ɨc:MtDUov!u}X`KI6t'SG"lWbpٴS?|'fߧcz;}QMoʸno.?(-۝aZ5e7>vRkʀ>74Z:mUzV)iHvz M') 'l1hY`%ֲWp5&>+IN_sIƈB8"ƀ,Da.1B="hoY޶Nw?"m0 Kek8%Ց|[iOxn>'9y M7fT_Z&xv ;+3NNE +eT{GAK!As/O ̡a(9GU<BLX^I\ؼ5Rע u?t0] -pKNz.Nl#zil']9ҵ BOqrSޒGgВjAG,)gpmKtHQ3щ`mBqT)Z<`]k܄]ܴZ`|Qu%S7T yuп";AOߌV1 aMXd+:MlGfm($t`M؃" KEV8zp[^M +lG_̧ߙyfrӯYKR5qyߔܝ,i4[vQgb,ΰMЩ[%F6eby6Ǫ:!wUe2foG0,zW{Y窝ۣٝzÓXʌBRF>ɒ%)m{m3۝}r15= 7RzɔKl5#hkT)wfZ.tǧoD­lAқ*ڟZ"/ it!5 D?IEŜu9Z9gͱßg(39P4]qIhQx 2$7wKh NCif茉# x[[G`}tPTay?4,NQWAI|JS} @%5+~z;]7We軅d<畎%+,} .+z[lc5Z,/>o|`..T߸%-ȮxmO(Bw{ٯt))~?s$ S{PqDE Isn8b +~(BਦfY4*H%lGN%/T:q7ցx.wٵ20 +e 9hYY;!e/;I7B8x7[6^U1^1# %܊K)S\d7iO i8 0#4#&P_#~t<&Ap4?Cx\h,i )~z-9IyVZ5ef"ƨ(&B }N38`ǯaŸjz}qTI ROX2~xhڍ§Lbۯmb/jLDg͂rϏ gvҏyxkpI 7ߎFGdc*@p17B6v/{>I.*Wٜ)!^ᐨwqsU; +8e8'gz=Bg3;پ-ExsFJ&>ªy3G4hV͓;QfQ~[@ dG/sGt_9ϙoӼ},҅|vTK~j? iF͚a-Tk@;nWWXˑCܩ$rpg0O\:PD41R/hZX5UЋOU+( Iz̦n'peRaAΘ9Y)W$sc T( + SnO#oeܔtW/z8궅7iъDln0JK2lv/&4@%fpr@-R۪ar+xE HH}\|:|ߞۓx: wQTb?[:sx]A7^p',} r܉n.(f@6 +ۋMl+%{Y'q-({D1ST!n'7 7mJiDŽSm"x$q:es'{1 2SS:Jޟ%t?yܐYb܈v_0e`ٱE_=Ċ"9+ [fТغ`iN +a)e:%2:pQD]5|/>#&ꌌ4 OQQ[3OUP]P>̀-ђ.Gzqdd0h*ޛ;.>2tD,Suݼ(y.'"v\)DQCWT!M%dSOr=0r||zLjpST^ϋ*|Ы"%(Z$bL),_x ِ.!Q~}tee&bݬ#s4UD9&}>JWW@kBE͂rxȱ=pԅ.nL/zKyAr8Vgwl]cOi bBm=w]yцWeg CCΥe_>=XpR3 P0a`u b;s iO'-(Ui'lC#|;J^NcÞI@IR*o_A_m9Fnx$a:pd*XDt,Y3͕T ȯb3(}Iׇ;b䵏0QjNJ ybpEFٵ]ͫ>*Ϲg::",1\.|ضTыZGO^9@}(D!mջ)0Od$+\6lH%]9TM/, +8~Ԯl]b83" 3Q%6dUn:fٜ.(5)0œq{!P+_@Rk0 r0paEoDž,v7ݭVJ1k &ڳiTh;k&  yif ![GcyJ_ TH}JHeCYl)KP>?W,kzsXMsS@˷TR$ilɘ4>ji5dO6ۊ5r}"J+Th7#LjE{]ݳoL0?D hfCM +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1853) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185356-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 169 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 64 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +170 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 44 0 R] +/Parent 169 0 R +>> +endobj +66 0 obj +<< +/Type/Page +/Resources 67 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 171 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 171 0 R +>> +endobj +171 0 obj +<< +/Type/Pages +/Count 2 +/Kids[66 0 R 70 0 R] +/Parent 169 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +172 0 obj +<< +/Type/Pages +/Count 2 +/Kids[74 0 R 78 0 R] +/Parent 169 0 R +>> +endobj +169 0 obj +<< +/Type/Pages +/Count 7 +/Kids[5 0 R 170 0 R 171 0 R 172 0 R] +/Parent 3 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 173 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +174 0 obj +<< +/Type/Pages +/Count 2 +/Kids[86 0 R 90 0 R] +/Parent 173 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 175 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 175 0 R +>> +endobj +175 0 obj +<< +/Type/Pages +/Count 2 +/Kids[94 0 R 98 0 R] +/Parent 173 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 176 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 176 0 R +>> +endobj +176 0 obj +<< +/Type/Pages +/Count 2 +/Kids[102 0 R 106 0 R] +/Parent 173 0 R +>> +endobj +173 0 obj +<< +/Type/Pages +/Count 7 +/Kids[82 0 R 174 0 R 175 0 R 176 0 R] +/Parent 3 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 177 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 178 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 178 0 R +>> +endobj +178 0 obj +<< +/Type/Pages +/Count 2 +/Kids[114 0 R 118 0 R] +/Parent 177 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 179 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 179 0 R +>> +endobj +179 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 177 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 180 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 180 0 R +>> +endobj +180 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 177 0 R +>> +endobj +177 0 obj +<< +/Type/Pages +/Count 7 +/Kids[110 0 R 178 0 R 179 0 R 180 0 R] +/Parent 3 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 181 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 182 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 182 0 R +>> +endobj +182 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 181 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 183 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 183 0 R +>> +endobj +183 0 obj +<< +/Type/Pages +/Count 2 +/Kids[150 0 R 154 0 R] +/Parent 181 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 184 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 167 0 R 19 0 R] +/Parent 184 0 R +>> +endobj +184 0 obj +<< +/Type/Pages +/Count 2 +/Kids[158 0 R 162 0 R] +/Parent 181 0 R +>> +endobj +181 0 obj +<< +/Type/Pages +/Count 7 +/Kids[138 0 R 182 0 R 183 0 R 184 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 28 +/Kids[169 0 R 173 0 R 177 0 R 181 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +185 0 obj +<< +>> +endobj +186 0 obj +null +endobj +187 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 185 0 R +/Threads 186 0 R +/Names 187 0 R +>> +endobj +xref +0 188 +0000000000 65535 f +0000111213 00000 n +0000116090 00000 n +0000115735 00000 n +0000115940 00000 n +0000111377 00000 n +0000004049 00000 n +0000000009 00000 n +0000041927 00000 n +0000041743 00000 n +0000000913 00000 n +0000046829 00000 n +0000046643 00000 n +0000001906 00000 n +0000052151 00000 n +0000051963 00000 n +0000002823 00000 n +0000115840 00000 n +0000003740 00000 n +0000115890 00000 n +0000003994 00000 n +0000111480 00000 n +0000011567 00000 n +0000062207 00000 n +0000062018 00000 n +0000004110 00000 n +0000067478 00000 n +0000067288 00000 n +0000005056 00000 n +0000072782 00000 n +0000072593 00000 n +0000005992 00000 n +0000006968 00000 n +0000075324 00000 n +0000075130 00000 n +0000007922 00000 n +0000078923 00000 n +0000078737 00000 n +0000008868 00000 n +0000081707 00000 n +0000081516 00000 n +0000009832 00000 n +0000010826 00000 n +0000011468 00000 n +0000111585 00000 n +0000020740 00000 n +0000084247 00000 n +0000084053 00000 n +0000011629 00000 n +0000012600 00000 n +0000088257 00000 n +0000088063 00000 n +0000014216 00000 n +0000089674 00000 n +0000089479 00000 n +0000015226 00000 n +0000016178 00000 n +0000091582 00000 n +0000091387 00000 n +0000017085 00000 n +0000018067 00000 n +0000094240 00000 n +0000094054 00000 n +0000019044 00000 n +0000019789 00000 n +0000020581 00000 n +0000111771 00000 n +0000021426 00000 n +0000020802 00000 n +0000021381 00000 n +0000111876 00000 n +0000022443 00000 n +0000021488 00000 n +0000022307 00000 n +0000112062 00000 n +0000023187 00000 n +0000022505 00000 n +0000023142 00000 n +0000112167 00000 n +0000023627 00000 n +0000023249 00000 n +0000023582 00000 n +0000112448 00000 n +0000024807 00000 n +0000023689 00000 n +0000024659 00000 n +0000112553 00000 n +0000025514 00000 n +0000024869 00000 n +0000025469 00000 n +0000112658 00000 n +0000025778 00000 n +0000025576 00000 n +0000025733 00000 n +0000112844 00000 n +0000026751 00000 n +0000025840 00000 n +0000026615 00000 n +0000112949 00000 n +0000027365 00000 n +0000026813 00000 n +0000027319 00000 n +0000113136 00000 n +0000027938 00000 n +0000027428 00000 n +0000027892 00000 n +0000113244 00000 n +0000028795 00000 n +0000028002 00000 n +0000028669 00000 n +0000113531 00000 n +0000029907 00000 n +0000028859 00000 n +0000029759 00000 n +0000113639 00000 n +0000031006 00000 n +0000029971 00000 n +0000030869 00000 n +0000113747 00000 n +0000031685 00000 n +0000031070 00000 n +0000031639 00000 n +0000113938 00000 n +0000032438 00000 n +0000031749 00000 n +0000032392 00000 n +0000114046 00000 n +0000033215 00000 n +0000032502 00000 n +0000033169 00000 n +0000114237 00000 n +0000034343 00000 n +0000033279 00000 n +0000034195 00000 n +0000114345 00000 n +0000035483 00000 n +0000034407 00000 n +0000035357 00000 n +0000114633 00000 n +0000036263 00000 n +0000035547 00000 n +0000036217 00000 n +0000114741 00000 n +0000036988 00000 n +0000036327 00000 n +0000036942 00000 n +0000114849 00000 n +0000037704 00000 n +0000037052 00000 n +0000037658 00000 n +0000115040 00000 n +0000038419 00000 n +0000037768 00000 n +0000038373 00000 n +0000115148 00000 n +0000039182 00000 n +0000038483 00000 n +0000039136 00000 n +0000115339 00000 n +0000040296 00000 n +0000039246 00000 n +0000040136 00000 n +0000115447 00000 n +0000041679 00000 n +0000105508 00000 n +0000105313 00000 n +0000040360 00000 n +0000041283 00000 n +0000041621 00000 n +0000112353 00000 n +0000111690 00000 n +0000111981 00000 n +0000112272 00000 n +0000113435 00000 n +0000112763 00000 n +0000113055 00000 n +0000113352 00000 n +0000114536 00000 n +0000113855 00000 n +0000114154 00000 n +0000114453 00000 n +0000115638 00000 n +0000114957 00000 n +0000115256 00000 n +0000115555 00000 n +0000116022 00000 n +0000116045 00000 n +0000116067 00000 n +trailer +<< +/Size 188 +/Root 2 0 R +/Info 1 0 R +>> +startxref +116188 +%%EOF diff --git a/src/axiom-website/CATS/schaum33.input.pamphlet b/src/axiom-website/CATS/schaum33.input.pamphlet new file mode 100644 index 0000000..61506d7 --- /dev/null +++ b/src/axiom-website/CATS/schaum33.input.pamphlet @@ -0,0 +1,1021 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum33.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.636~~~~~$\displaystyle +\int{{\rm csch~}{ax}}~dx$} +$$\int{{\rm csch~}{ax}}= +\frac{1}{a}\ln\tanh{\frac{ax}{2}} +$$ +<<*>>= +)spool schaum33.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(csch(a*x),x) +--R +--R +--R - log(sinh(a x) + cosh(a x) + 1) + log(sinh(a x) + cosh(a x) - 1) +--R (1) ----------------------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/a*log(tanh((a*x)/2)) +--R +--R a x +--R log(tanh(---)) +--R 2 +--R (2) -------------- +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R (3) +--R a x +--R - log(tanh(---)) - log(sinh(a x) + cosh(a x) + 1) +--R 2 +--R + +--R log(sinh(a x) + cosh(a x) - 1) +--R / +--R a +--R Type: Expression Integer +--E + +--S 4 14:636 Schaums and Axiom agree +dd:=complexNormalize cc +--R +--R (4) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.637~~~~~$\displaystyle +\int{{\rm csch}^2~{ax}}~dx$} +$$\int{{\rm csch}^2~{ax}}= +-\frac{\coth{ax}}{a} +$$ +<<*>>= +)clear all + +--S 5 +aa:=integrate(csch(a*x)^2,x) +--R +--R +--R 2 +--R (1) - ------------------------------------------------------- +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 6 +bb:=-coth(a*x)/a +--R +--R coth(a x) +--R (2) - --------- +--R a +--R Type: Expression Integer +--E + +--S 7 14:637 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 2 +--R coth(a x)sinh(a x) + 2cosh(a x)coth(a x)sinh(a x) +--R + +--R 2 +--R (cosh(a x) - 1)coth(a x) - 2 +--R / +--R 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.638~~~~~$\displaystyle +\int{{\rm csch}^3~{ax}}~dx$} +$$\int{{\rm csch}^3~{ax}}= +-\frac{{\rm csch~}{ax}\coth{ax}}{2a}-\frac{1}{2a}\ln\tanh\frac{ax}{2} +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(csch(a*x)^3,x) +--R +--R +--R (1) +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) - 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) - 4cosh(a x))sinh(a x) + cosh(a x) - 2cosh(a x) + 1 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 4 3 2 2 +--R - sinh(a x) - 4cosh(a x)sinh(a x) + (- 6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (- 4cosh(a x) + 4cosh(a x))sinh(a x) - cosh(a x) + 2cosh(a x) - 1 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 3 2 2 +--R - 2sinh(a x) - 6cosh(a x)sinh(a x) + (- 6cosh(a x) - 2)sinh(a x) +--R + +--R 3 +--R - 2cosh(a x) - 2cosh(a x) +--R / +--R 4 3 2 2 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) + (12a cosh(a x) - 4a)sinh(a x) +--R + +--R 3 4 2 +--R (8a cosh(a x) - 8a cosh(a x))sinh(a x) + 2a cosh(a x) - 4a cosh(a x) +--R + +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=-(csch(a*x)*coth(a*x))/(2*a)-1/(2*a)*log(tanh((a*x)/2)) +--R +--R a x +--R - log(tanh(---)) - coth(a x)csch(a x) +--R 2 +--R (2) ------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 10 14:638 Axiom cannot simplify this expression +cc:=aa-bb +--R +--R (3) +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) - 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) - 4cosh(a x))sinh(a x) + cosh(a x) - 2cosh(a x) + 1 +--R * +--R a x +--R log(tanh(---)) +--R 2 +--R + +--R 4 3 2 2 +--R sinh(a x) + 4cosh(a x)sinh(a x) + (6cosh(a x) - 2)sinh(a x) +--R + +--R 3 4 2 +--R (4cosh(a x) - 4cosh(a x))sinh(a x) + cosh(a x) - 2cosh(a x) + 1 +--R * +--R log(sinh(a x) + cosh(a x) + 1) +--R + +--R 4 3 2 2 +--R - sinh(a x) - 4cosh(a x)sinh(a x) + (- 6cosh(a x) + 2)sinh(a x) +--R + +--R 3 4 2 +--R (- 4cosh(a x) + 4cosh(a x))sinh(a x) - cosh(a x) + 2cosh(a x) - 1 +--R * +--R log(sinh(a x) + cosh(a x) - 1) +--R + +--R 4 +--R coth(a x)csch(a x)sinh(a x) +--R + +--R 3 +--R (4cosh(a x)coth(a x)csch(a x) - 2)sinh(a x) +--R + +--R 2 2 +--R ((6cosh(a x) - 2)coth(a x)csch(a x) - 6cosh(a x))sinh(a x) +--R + +--R 3 2 +--R ((4cosh(a x) - 4cosh(a x))coth(a x)csch(a x) - 6cosh(a x) - 2)sinh(a x) +--R + +--R 4 2 3 +--R (cosh(a x) - 2cosh(a x) + 1)coth(a x)csch(a x) - 2cosh(a x) - 2cosh(a x) +--R / +--R 4 3 2 2 +--R 2a sinh(a x) + 8a cosh(a x)sinh(a x) + (12a cosh(a x) - 4a)sinh(a x) +--R + +--R 3 4 2 +--R (8a cosh(a x) - 8a cosh(a x))sinh(a x) + 2a cosh(a x) - 4a cosh(a x) +--R + +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.639~~~~~$\displaystyle +\int{{\rm csch}^n~{ax}~{\coth{ax}}}~dx$} +$$\int{{\rm csch~}^n{ax}~{\coth{ax}}}= +-\frac{{\rm csch~}^{n}{ax}}{na} +$$ +<<*>>= +)clear all + +--S 11 +aa:=integrate(csch(a*x)^n*coth(a*x),x) +--R +--R +--R (1) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R / +--R a n +--R Type: Union(Expression Integer,...) +--E + +--S 12 +bb:=-csch(a*x)^n/(n*a) +--R +--R n +--R csch(a x) +--R (2) - ---------- +--R a n +--R Type: Expression Integer +--E + +--S 13 +cc:=aa-bb +--R +--R (3) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R + +--R n +--R csch(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 14 +cschrule:=rule(csch(x) == 1/sinh(x)) +--R +--R 1 +--R (4) csch(x) == ------- +--R sinh(x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 15 +dd:=cschrule cc +--R +--R (5) +--R 2sinh(a x) + 2cosh(a x) +--R - sinh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R + +--R 2sinh(a x) + 2cosh(a x) +--R - cosh(n log(-------------------------------------------------)) +--R 2 2 +--R sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1 +--R + +--R 1 n +--R (---------) +--R sinh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 16 +ee:=expandLog dd +--R +--R (6) +--R sinh +--R 2 2 +--R n log(sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R - +--R cosh +--R 2 2 +--R n log(sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R 1 n +--R (---------) +--R sinh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 17 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (7) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 18 +ff:=sinhsqrrule ee +--R +--R (8) +--R sinh +--R 2 +--R 4cosh(a x)sinh(a x) + cosh(2a x) + 2cosh(a x) - 3 +--R n log(--------------------------------------------------) +--R 2 +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R - +--R cosh +--R 2 +--R 4cosh(a x)sinh(a x) + cosh(2a x) + 2cosh(a x) - 3 +--R n log(--------------------------------------------------) +--R 2 +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R 1 n +--R (---------) +--R sinh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 19 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (9) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 20 +gg:=coshsqrrule ff +--R +--R (10) +--R sinh +--R n log(2cosh(a x)sinh(a x) + cosh(2a x) - 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R - +--R cosh +--R n log(2cosh(a x)sinh(a x) + cosh(2a x) - 1) +--R + +--R - n log(sinh(a x) + cosh(a x)) - n log(2) +--R + +--R 1 n +--R (---------) +--R sinh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 21 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %O sinh(y + x) - %O sinh(y - x) +--I (11) %O cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 22 +hh:=sinhcoshrule gg +--R +--R (12) +--R sinh +--R n log(sinh(2a x) + cosh(2a x) - 1) - n log(sinh(a x) + cosh(a x)) +--R + +--R - n log(2) +--R + +--R - +--R cosh +--R n log(sinh(2a x) + cosh(2a x) - 1) - n log(sinh(a x) + cosh(a x)) +--R + +--R - n log(2) +--R + +--R 1 n +--R (---------) +--R sinh(a x) +--R / +--R a n +--R Type: Expression Integer +--E + +--S 23 14:639 Schaums and Axiom agree +ii:=complexNormalize hh +--R +--R (13) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.640~~~~~$\displaystyle +\int{\frac{dx}{{\rm csch~}{ax}}}~dx$} +$$\int{\frac{1}{{\rm csch~}{ax}}}= +\frac{1}{a}{\rm cosh}~{ax} +$$ +<<*>>= +)clear all + +--S 24 +aa:=integrate(1/csch(a*x),x) +--R +--R +--R cosh(a x) +--R (1) --------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 25 +bb:=1/a*cosh(a*x) +--R +--R cosh(a x) +--R (2) --------- +--R a +--R Type: Expression Integer +--E + +--S 26 14:640 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.641~~~~~$\displaystyle +\int{x{\rm ~csch~}{ax}}~dx$} +$$\int{x{\rm ~csch~}{ax}}= +\frac{1}{a^2}\left\{ +ax-\frac{(ax)^3}{18}+\frac{7(ax)^5}{1800}+\cdots+ +\frac{2(-1)^n(2^{2n-1}-1)B_n(ax)^{2n+1}}{(2n+1)!}+\cdots\right\} +$$ +<<*>>= +)clear all + +--S 27 14:641 Axiom cannot compute this integral +aa:=integrate(x*csch(a*x),x) +--R +--R +--R x +--R ++ +--I (1) | %O csch(%O a)d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.642~~~~~$\displaystyle +\int{x~{\rm csch}^2~{ax}}~dx$} +$$\int{x~{\rm csch}^2~{ax}}= +-\frac{x\coth{ax}}{a}+\frac{1}{a^2}\ln\sinh{ax} +$$ +<<*>>= +)clear all + +--S 28 +aa:=integrate(x*csch(a*x)^2,x) +--R +--R +--R (1) +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 2 +--R - 2a x sinh(a x) - 4a x cosh(a x)sinh(a x) - 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Union(Expression Integer,...) +--E + +--S 29 +bb:=-(x*coth(a*x))/a+1/a^2*log(sinh(a*x)) +--R +--R log(sinh(a x)) - a x coth(a x) +--R (2) ------------------------------ +--R 2 +--R a +--R Type: Expression Integer +--E + +--S 30 +cc:=aa-bb +--R +--R (3) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) + 1)log(sinh(a x)) +--R + +--R 2 2 +--R (sinh(a x) + 2cosh(a x)sinh(a x) + cosh(a x) - 1) +--R * +--R 2sinh(a x) +--R log(- ---------------------) +--R sinh(a x) - cosh(a x) +--R + +--R 2 +--R (a x coth(a x) - 2a x)sinh(a x) +--R + +--R (2a x cosh(a x)coth(a x) - 4a x cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a x cosh(a x) - a x)coth(a x) - 2a x cosh(a x) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 31 +dd:=expandLog cc +--R +--R (4) +--R 2 2 +--R (- sinh(a x) - 2cosh(a x)sinh(a x) - cosh(a x) + 1) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R 2 +--R (a x coth(a x) + log(- 2) - 2a x)sinh(a x) +--R + +--R (2a x cosh(a x)coth(a x) + (2log(- 2) - 4a x)cosh(a x))sinh(a x) +--R + +--R 2 2 +--R (a x cosh(a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(a x) - log(- 2) +--R / +--R 2 2 2 2 2 2 +--R a sinh(a x) + 2a cosh(a x)sinh(a x) + a cosh(a x) - a +--R Type: Expression Integer +--E + +--S 32 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (5) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 33 +ee:=sinhsqrrule dd +--R +--R (6) +--R 2 +--R (- 4cosh(a x)sinh(a x) - cosh(2a x) - 2cosh(a x) + 3) +--R * +--R log(sinh(a x) - cosh(a x)) +--R + +--R (4a x cosh(a x)coth(a x) + (4log(- 2) - 8a x)cosh(a x))sinh(a x) +--R + +--R 2 +--R (a x cosh(2a x) + 2a x cosh(a x) - 3a x)coth(a x) +--R + +--R 2 +--R (log(- 2) - 2a x)cosh(2a x) + (2log(- 2) - 4a x)cosh(a x) - 3log(- 2) +--R + +--R 2a x +--R / +--R 2 2 2 2 2 +--R 4a cosh(a x)sinh(a x) + a cosh(2a x) + 2a cosh(a x) - 3a +--R Type: Expression Integer +--E + +--S 34 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (7) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 35 +ff:=coshsqrrule ee +--R +--R (8) +--R (- 2cosh(a x)sinh(a x) - cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (2a x cosh(a x)coth(a x) + (2log(- 2) - 4a x)cosh(a x))sinh(a x) +--R + +--R (a x cosh(2a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(2a x) - log(- 2) +--R / +--R 2 2 2 +--R 2a cosh(a x)sinh(a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 36 +sinhcoshrule:=rule(sinh(x)*cosh(y) == 1/2*(sinh(x+y)+sinh(x-y))) +--R +--I %P sinh(y + x) - %P sinh(y - x) +--I (9) %P cosh(y)sinh(x) == ------------------------------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 37 +gg:=sinhcoshrule ff +--R +--R (10) +--R (- sinh(2a x) - cosh(2a x) + 1)log(sinh(a x) - cosh(a x)) +--R + +--R (a x coth(a x) + log(- 2) - 2a x)sinh(2a x) +--R + +--R (a x cosh(2a x) - a x)coth(a x) + (log(- 2) - 2a x)cosh(2a x) - log(- 2) +--R / +--R 2 2 2 +--R a sinh(2a x) + a cosh(2a x) - a +--R Type: Expression Integer +--E + +--S 38 14:642 Schaums and Axiom differ by a constant +hh:=complexNormalize gg +--R +--R - log(- 1) + log(- 2) +--R (11) --------------------- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.643~~~~~$\displaystyle +\int{\frac{{\rm csch~}{ax}}{x}}~dx$} +$$\int{\frac{{\rm csch~}{ax}}{x}}= +-\frac{1}{ax}-\frac{ax}{6}+\frac{7(ax)^3}{1080}+\cdots +\frac{(-1)^n2(2^{2n-1}-1)B_n(ax)^{2n-1}}{(2n-1)(2n)!}+\cdots +$$ +<<*>>= +)clear all + +--S 39 14:643 Axiom cannot compute this integral +aa:=integrate(csch(a*x)/x,x) +--R +--R +--R x +--I ++ csch(%O a) +--I (1) | ---------- d%O +--I ++ %O +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.644~~~~~$\displaystyle +\int{\frac{dx}{q+p{\rm ~csch~}{ax}}}~dx$} +$$\int{\frac{1}{q+p{\rm ~csch~}{ax}}}= +\frac{x}{q}-\frac{p}{q}\int{\frac{dx}{p+q\sinh{ax}}} +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(1/(q+p*csch(a*x)),x) +--R +--R +--R (1) +--R p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (2q + 2p q)sinh(a x) + (2q + 2p q)cosh(a x) + 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R +-------+ +--R | 2 2 +--R a x\|q + p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 41 +t1:=integrate(1/(p+q*sinh(a*x)),x) +--R +--R (2) +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R / +--R +-------+ +--R | 2 2 +--R a\|q + p +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=x/q-p/q*t1 +--R +--R (3) +--R - +--R p +--R * +--R log +--R 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) +--R + +--R 2 2 2 2 +--R q cosh(a x) + 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R +-------+ +--R | 2 2 +--R a x\|q + p +--R / +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb +--R +--R (4) +--R p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (2q + 2p q)sinh(a x) + (2q + 2p q)cosh(a x) + 2p q + 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R + +--R p +--R * +--R log +--R 2 2 2 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p q)sinh(a x) + q cosh(a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R 2 2 +--R q sinh(a x) + (2q cosh(a x) + 2p)sinh(a x) + q cosh(a x) +--R + +--R 2p cosh(a x) - q +--R / +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Expression Integer +--E + +--S 44 +sinhsqrrule:=rule(sinh(x)^2 == 1/2*cosh(2*x)-1/2) +--R +--R 2 cosh(2x) - 1 +--R (5) sinh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 45 +dd:=sinhsqrrule cc +--R +--R (6) +--R p +--R * +--R log +--R 2 2 +--R (4q cosh(a x) + 4p q)sinh(a x) + q cosh(2a x) +--R + +--R 2 2 2 2 +--R 2q cosh(a x) + 4p q cosh(a x) + q + 4p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (4q + 4p q)sinh(a x) + (4q + 4p q)cosh(a x) + 4p q + 4p +--R / +--R 2 +--R (4q cosh(a x) + 4p)sinh(a x) + q cosh(2a x) + 2q cosh(a x) +--R + +--R 4p cosh(a x) - 3q +--R + +--R p +--R * +--R log +--R 2 2 +--R (4q cosh(a x) + 4p q)sinh(a x) + q cosh(2a x) +--R + +--R 2 2 2 2 +--R 2q cosh(a x) + 4p q cosh(a x) + q + 4p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 4q - 4p q)sinh(a x) + (- 4q - 4p q)cosh(a x) - 4p q - 4p +--R / +--R 2 +--R (4q cosh(a x) + 4p)sinh(a x) + q cosh(2a x) + 2q cosh(a x) +--R + +--R 4p cosh(a x) - 3q +--R / +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Expression Integer +--E + +--S 46 +coshsqrrule:=rule(cosh(x)^2 == 1/2*cosh(2*x)+1/2) +--R +--R 2 cosh(2x) + 1 +--R (7) cosh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 47 +ee:=coshsqrrule dd +--R +--R (8) +--R p +--R * +--R log +--R 2 2 +--R (2q cosh(a x) + 2p q)sinh(a x) + q cosh(2a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (2q + 2p q)sinh(a x) + (2q + 2p q)cosh(a x) + 2p q + 2p +--R / +--R (2q cosh(a x) + 2p)sinh(a x) + q cosh(2a x) + 2p cosh(a x) - q +--R + +--R p +--R * +--R log +--R 2 2 +--R (2q cosh(a x) + 2p q)sinh(a x) + q cosh(2a x) +--R + +--R 2 2 +--R 2p q cosh(a x) + q + 2p +--R * +--R +-------+ +--R | 2 2 +--R \|q + p +--R + +--R 3 2 3 2 2 3 +--R (- 2q - 2p q)sinh(a x) + (- 2q - 2p q)cosh(a x) - 2p q - 2p +--R / +--R (2q cosh(a x) + 2p)sinh(a x) + q cosh(2a x) + 2p cosh(a x) - q +--R / +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Expression Integer +--E + +--S 48 14:644 Schaums and Axiom differ by a constant +ff:=complexNormalize ee +--R +--R 4 2 2 +--R p log(q + p q ) +--R (9) ---------------- +--R +-------+ +--R | 2 2 +--R a q\|q + p +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.645~~~~~$\displaystyle +\int{{\rm csch}^n~{ax}}~dx$} +$$\int{{\rm csch}^n~{ax}}= +\frac{-{\rm csch}^{n-2}~{ax}~\coth{ax}}{a(n-1)} +-\frac{n-2}{n-1}\int{{\rm csch}^{n-2}~{ax}} +$$ +<<*>>= +)clear all + +--S 49 14:645 Axiom cannot compute this integral +aa:=integrate(csch(a*x)^n,x) +--R +--R +--R x +--R ++ n +--I (1) | csch(%O a) d%O +--R ++ +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp91-92 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum33.input.pdf b/src/axiom-website/CATS/schaum33.input.pdf new file mode 100644 index 0000000..5ee405c --- /dev/null +++ b/src/axiom-website/CATS/schaum33.input.pdf @@ -0,0 +1,2315 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/CJDWMG+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/COMDUG+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/MDOTUY+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%=@ wE#r1j&o3Ĩ^86> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/VMJSKW+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/NVHZGI+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/VKTYGI+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/EIYTLT+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/ZAWNTT+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/LQFVIR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +x͖n0 E +.(̈DI]vV (EHKY~g2 0|e\]w.9@V8_o/6onKr\n?{H$/0вCO6\+}X)jՑȢn"]a(du|ߴ6͗:fWZkƔhRé B'h8t\QE0}SⳑӐҩuM>Yz2]8e,-|Gag}s_fX zR;Amub8= +2Õя?c7SfaǚZ&'1h5nV^^L!7H2ϋTѾRsNy cA$0ȯ1f?FH,` +f?"6$ @Re1M~3}B٬y*/tݺ• +9|‚6=r__ƚ6\)M7Ь 8 uA-SqsC*?ZK +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +48 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 47 0 R +/BaseFont/TXMCWS+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +49 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +52 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/MRCIRK+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/QYSORG+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/JQGGEB+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 681 +>> +stream +xڭVr0+7~xƛNNlMC2%g0x _ ux@ҹs0 \O#HP*cDbH#y8d2~}I`>f>Mȏ]VBsY;HZ1UK@AFܠ.L&q2&+zgjW %ɮqmW~'Hۙ_2HZ l?}xz'X"c +j,煳Dʨ^^)SuFX +S9F[Hg&xwH7ㅴjEdHvqP[@G`6iպ, +יUb+Pۺ1hGgu, jߣ.ۨsaiM=2dH>hk'eQgķK.o+&!G0TEU3Bs1\Ҳ^$GMt=βL{$o@1[h{MbYIt[o\{0ջmnB waCS ɔן$jbLl!bN2pl0n J 4}ԿRwv4L5;fL*qpFw83Fuc٤}}}/;zs|?{c{q2? +endstream +endobj +62 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length 219 +>> +stream +xuPn@-=bK0QRPu²/~&@ AJ8WxEXCQ`P#RLtwW=x5cg >;@"En\}y~F\=Ql68bq> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 66 0 R +>> +endobj +69 0 obj +<< +/Filter[/FlateDecode] +/Length 707 +>> +stream +xVMo@WN~C&U{l%q*K"@;11(r{7'R|!EVj,(||r.tteF78p +e:{6+ 1k2ca\BW pvR1H l\2ҪWEaդ[s0=$cDlSD҇>U`au⭕nPSJr[tʆ :+I3g4D$kޗE@`r pROjz4H.z $n@[aȨ`o)j Q&|gjo\֤0ڡ[uckl<)Vi"2+GP/RP^IʵQq,[YD=Rw*ajĝSn fXUDr/`oQC9l\y1&Cח|#*˗M_Zew}B0'ĠQExFCtPĠjXYm6ARhLY<9j\]DzX?=VQ˲x|oEOyW|>Of!;(~bWgƠǷ^zJJ\='@'gJWKO^Z!!X#=R7v x!:: +endstream +endobj +70 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +68 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 70 0 R +>> +endobj +73 0 obj +<< +/Filter[/FlateDecode] +/Length 861 +>> +stream +xڵWN1+6MUeI70T)DJ 5^;3I߇93!qNH|^*"L#Մ~ t 0H7y~53oB,C "ĮMl;MLYZ&DyՊ3g`&TZuqQ}w;!̐!!oDǸ")eFYOhv$@x.Y&ʙe4%ՎyXـ) ֯jΔݫ&7St"9$MLV_.wQk`C/*a`N1zzH3Hة$APh"Mj!Nٞr'Ř5[lk]y%6`%sWcnIH刉 't݉jgKUx+ +lTo)Z1 O/K:-fB54rÑd8QWŚ,^^Ou&._A鷃^B[IhJ|3R}i}U[ hn(kf^x<=MLLuPIT, =óMdClu*8t()EdR`1M49X+w-?b"7:3:@a ng,;:T_fA|G}gl",Lc7yO.8=rCBGL>h_}{Zg, =.6СȎU>C)G!Ԑ#@%1ut7P5R +}_|_-֫4ٽl-_, Kcl;lk~zPהoQ +endstream +endobj +74 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F3 16 0 R +/F10 48 0 R +/F8 38 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +72 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 74 0 R +>> +endobj +77 0 obj +<< +/Filter[/FlateDecode] +/Length 571 +>> +stream +xVMo0WhLlævܸ;DSCgYHUa\x~<~e/S'!XHH v;`Vg +Iy~V;Zyk*򟪽ǴJVmMUW ` bLǒCrxr01DF!FkVlSgsvD /=)9ꢛXfys +!Mb*#`z7&uQ<t|,jCTѳlsh[2|pf.L뮅!oƥl(/Gof2 UxZ]Aqma065&U0ڧDdM"j;BհjyDp1qwmc[@\mOWڋs?0wzBb}E 1rIft鈣YrTs6s\C[ qdžm&r/#=L-B?/nLC [O1_fvݎs8~IAʲ&~Ȧ +endstream +endobj +78 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +76 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 78 0 R +>> +endobj +81 0 obj +<< +/Filter[/FlateDecode] +/Length 352 +>> +stream +xڭT=O0mUv?-e UJj:T|8M޻ 8G_OV"G9d3Q (T> +endobj +80 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 82 0 R +>> +endobj +85 0 obj +<< +/Filter[/FlateDecode] +/Length 696 +>> +stream +xVMo@W&ERTƩd($j"T;mTmT c޼fZBR$-y=H$I_f`Io"'qݱF V,Ve' + hŕX +|рAq5$?q +F mWme aTp.,qʔ+PăYbMYDTF9 +GcTӖ: +4γ^EǕ!RPu4㒝g~JգDD,L8|'ck-SJA%X[?o-*v~S i5#yKN±cnSGvk"Рj^WD>jYE0R .NX,o.N~dfSzBQ[cMvq友ufEşa?){_d; +Fppu]_|?vs lB>PwvOśqTQ] _Dup]2l|%fx=cчTha1z[d[x_s_bw M݂m<&1Įt/Zӯ Kz0P1OlRwhgq'olmŶSl'%eY&RaOϘ +endstream +endobj +86 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +84 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 86 0 R +>> +endobj +89 0 obj +<< +/Filter[/FlateDecode] +/Length 431 +>> +stream +xMO0~KZ` f4&7@% ,0#~{ ބ5r}^OFt5qAB'`s|hs&K=Hee3`X\-4-``ƒX.r)ԏU'Ob3F۪ 3av9=E#b馉ʻ|xb iZ*qJ!LɨHZLYWMn7Bwx|mKJLwH:j. C%Ix}$zh2ʮ>S*xwL=8r#]v5~|`Y6mN?eڧ̽~WKZbВߩoNe4 d<:=T~ѬEvW,ˌbc(eAgDp8 < +endstream +endobj +90 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +88 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 90 0 R +>> +endobj +93 0 obj +<< +/Filter[/FlateDecode] +/Length 515 +>> +stream +xVn0+xӒ&)>$uV@PЮNqˇ\Y$$8" 1Opcǩ{s:LZHLKhpB2U!%2H)FX/KߟXxl{E+ǑJ +6(t>u[ecrЧ|\ok4Cnm=|EF ߣfXV8˸~..pS$L +ؓ'9u)fI:#P + xmݽ]{v"gBqb鉓 lˎ@hs(/d1r>g hTHPBP^9<ϬwyH;BkzMD3jn̯!A x4=|U~k' +endstream +endobj +94 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +92 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 94 0 R +>> +endobj +97 0 obj +<< +/Filter[/FlateDecode] +/Length 458 +>> +stream +xVAO0+z,-mp1nFhKmŒ[h h9P{{LA=܀ĝQD8 Y$8H BsQJ|IA\S6's1*g6hucC'yLdaFy*Wȣc3dkXz  48hX#R18yBboig2ZFþu.]EsKC2Pj(e8=슬,W[fY1},2Gz^QS($ީNSXwH {$c97q`Q ʨ$SG +Hucay-wS,OXNp}6_6!5Ú$><ĭ)[E6JjKRN:sj%^k9rDJdP<< +@>šW;QԦ'$m +endstream +endobj +98 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +96 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 98 0 R +>> +endobj +101 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xڵUKo@Wg> qhU'Jp+= w H6X8aITٝ`cF܂0o`& j~@ )?D(c>+ ] ]-< +yJ5Vy՞Qu<w"ܶAVR#%f}a qouh3'feZCC|nĂ;'O䮙]$#_wr[rYIZ|NI\lǮ7EnF4v*8Ym /V`5.OΆڰu;Vv\=Lj=:T45,@4Ʀlj+?bDڌN@-ZEy]jY/v]j|M{jMz rsqB]:|)\i$q}v<dy𐼴B.'n1,panʉrR> +endobj +100 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 102 0 R +>> +endobj +105 0 obj +<< +/Filter[/FlateDecode] +/Length 599 +>> +stream +xڵTMo@W3/VMX!q !*{m@J̼yzRTltjH}!6b:1H&ƛ1Vѕ-Klacɷ@ն R}3O6̊{A)/|-Oj6edTAFBU'V(i PHRບ,aeǂ,R[!%0LVktv Bja,6&D ]Ev)j(>Tl1Ŷ<]_;도 V> +endobj +104 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 106 0 R +>> +endobj +111 0 obj +<< +/Encoding 49 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 110 0 R +/BaseFont/ZRRGOB+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 839 +>> +stream +xڵVMo6WM8o94S$( kޢ[?CR\I^z"{3JHR|iQݼ~jPZl~XTٺA$S}We5֟7^"@q ";šr +N>CeL֛盚\u $x콺c(/9 `U {(0'@*)[N7yH/l\IKqdhhT{8|߉)[%gfC<#c >i9Ɩ.M%K!C}Rh続5qGVj&'!YeDZʉ>]>px%1ޞ%f1sJh +1R!^8#&e +J馟R;Io('Mg.ϖuZѠUqeT})q+rͣ\fW}=e;y|GYG=5Z B[ Kd+̋ݚlo]*2Njkr^$9~{-ϊ4>)1.aㆈbMG[{$-7dOQq $ $eb9bRq[%gp@7wn BtwwI:)HM1ɱ'OFZ{ӛn8q=n~}C"Uö߶UwqlW\_,69 V1%y`xkvՏԳMXHIHPm|^Xw>>>myGO`]E/06M,&V5Y a` +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F11 52 0 R +/F9 41 0 R +/F14 111 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +108 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 839 +>> +stream +xڥVKoA Wq0y.Izi66&HD!R鿯&Dol3 bzPL*E`Vj,Sx&#*Fen_W,7ޅȏr+It[a5dr6{ y G2L@9r?ҪM +Ιvxu\q[K@dAb3u@!'qISN +b =N oe +2O)ʊYd-@{r\Co xz}lΔKȌ\.wC͍ HrE@Z_jF'C$k +lќ;VF ߥQ̹H2I" 7[ +czۭXdb (hɜB\;h\iN:C6r*_FT(7 8_^G+:^zzx)_WE<Y9;JRΊL y@u*bFXʘi0wGB KQtjPҾOxas92E=4e@VMy:3}:P /$m С?+? V#*O?i-irpdy5Ӷ./_fX\0Kyyj9 kҚ)Fr" ۇ*@9.UiLe^jƠ4*FǃYڀ\o +I.r6/Kz +\a29Wɵ¨*(ޠ> +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 513 +>> +stream +xVo05A)xY˖6ncK2gbKEQ*Kfv~4G-c<!NmN 7Ər`Vde=&ru:F^4;8n/X/="Sj5(V]!$H.ZʊU?;95bM@>x- ,б1U*F Q0“aFD׌l/-Q= `rAHY12JaǴI '.Dx'q=f_xPue4)w&kSЦl6$=syL*V~}ÕZ${k/JD[/F?u+6va~UC.;l)/^yzYi +p(Uݲ c,ֺڪHbEv`u_ؔy7Elʋ|`ų +endstream +endobj +121 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 575 +>> +stream +xVMs0W( +K+$gdtڣ-3Dvޮ^^?: +\+Oo#$Όdn3~uqz\FM}GDhQ:8v.Rh 4R;}CpEvJף䂆<2j"nCnH~2P_Ǝ ,#JZ:CgCeD&Fv;5kNK.ػ7˃NŦ'PNϫ=OzxX/qijl{bSUWS"`fvL]Ƹ"`u~!F+TGFVU!{Sb|olJN9yٔxŔ9ț^>siW,2I5-T٧栂 +endstream +endobj +125 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 564 +>> +stream +xV0+|`vġUJ4 )X5` `6+̼!4L$Y/Y?HAA!2S[! -B srlV h@c9:ԡm^}8zfBXBAP5|\\ETi燬R_Ml OB"u>r7Dd;YybEK|xʐw:Ny"MbaCpƚf /ɘ&SlkOVѦ!\OyFް +2op*E%iU_(<7k?TմbdziR}Ydzc9z7?qlq66y,4_QSQ +7Wmvv֡YOi~sF}EUU~v}tz̋COm$ӹ΄MFtA݄~˼orP.?%!Ɗ pX?` +endstream +endobj +129 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 862 +>> +stream +xڭVMo0+)+@E.ҮnvďglIv+ax3=a8g7,<>љbBTlV"(/2/@]y%ǣ38aAI%_QXE"GFG{OɡDƃWvv:'`!Xd)4잡ka(PBEJNK&cC SE(%fkDӾ6 S$ +1(@p`?n=RձB%&L6!FJKʀC)ο\oWò),azX +uƸF\&D#껻-h./@ﶫ8\æ??~,vGfyTwIzu=;ne*nh{=Ю0 0{' mn>6FP侚yͧFad +FjE!)֞yH, 4 D\6ň_֫un4^!F}:9iTH}Ɇ77?eo +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 48 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F8 38 0 R +/F9 41 0 R +/F14 111 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 882 +>> +stream +xڭVMO@W1!dwKUcI/4 A*ݍ?+3of޼Yqݰx>, ROfX +4[|i!ɕ>%Qjz20̃7E J&|OsXe +|x v f#Xΰ_  ${C@ ohzKNYX z, +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 48 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 561 +>> +stream +xڵVM Wp΂`"jj{*=d+7T%vC*/ v$`[!603ae m<ޢUS*P IN%GTzq;՛TkE㳎t`/{*I$̱"ED!rc ,,dRd٧˺k0.cHnl:n`YL0;㍝}3qVG.v9) ((LYd^M2!Ksq@_Yq0z14E:/7Ĉp:E7̮ƙ EjjL:=.rQmV:LlintF$QIwiU7x,9UͭjҶɘSF3p=?`V~6~m;WPMy}x^ 3]"|39iIA'H0zyĀy cH +((WH1g>3W=G8e8mjsVrcJ( z > +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 535 +>> +stream +xڭVMO0+|Lڎ?b=[P=ď߉4W*xf̛":ݿn^dauj +v'nت +ŵɼT _ivFf_&6QwY6Hc'A4Y|Z/P>/h)!d)$_1þ:_b Q䘒E߱aܘ*5?vuߛy=Z/b<=̏;m̑Co۵|Xh ,$]oӴ䓘S##hQ:Fnx8кST28 +OFɑQ*xP 8ә{B ȕWNrޕƩ+${JhKr4.#reTȼT :/KclΫ5v/2 +endstream +endobj +145 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 598 +>> +stream +xڥV[o0~߯6HyNc[٤i*!i? `j<`N0;`/S!)P $$h"9?B3Db23c3.݇^0?o-v1Z +x&-Å`?69px*fzr!]8@F(Ŕ1vŒ̙kYO8kpBgzh;A(誀L̉a9=H1kMGdL- [`}qw .Rۺ E #2BXPY'>Fļ?߲ɩ \|+41m޵πTfOU浪˦nRzM]]n0kNu\ͻQ IݾڍdIt:HCn d);-g^q$8tH.J;~ޢD'+V:ܖKx?c5}琁w厇պ!`xUۛLx>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 565 +>> +stream +xVM0+|LZڎ?zAtKnV(JIHqw%PiF4CXq%Eoclg>!0c c,x9Ԯ[!ieKv +LMl@SEbqONԋTlH 'X<yt<ofcٝVj[jes(('*C^M i^@ęaZsǰ$eX =1 -n>w &K"4\KS p ĘbzQO}`T]I@qҩE?-t/(||(F'xZþEa{ouO`KPKpF3)񾝊T:HfO nNUQŮjܴ7;ZDr^V|᛽v8NZ̼ἰHPOw:٥m JԯW6}m_:t> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 477 +>> +stream +xVOO0)zPJx1nFM<,ecL-- 2ʘwߟ~}0,܀ȝ$N'qG ‰ (=ؐQf# $Mo}0à~ ̊0e԰Q_j0lek BbDH^7fzՍ/4-|6}EAP/i:&B(Swb"A2G !7&*h_8&A4PJ TKP>d'4K|Y-Y$YN> PG@a@D?@F +endstream +endobj +157 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 875 +>> +stream +xڵVK6WR@ _ZtS躗F x]];PdY A}fqf83c4՛\NՆ~Qz\ABkb$R6BWKTؼ[?f_v'+/څf?_[\XUy8f;spfYW}]VlA'ϧhJn~k7E"XLQ=SL9KX{),i| O4rtg?,^{tך;bX4}\gaP>_mmUcQo[E|&ըLhDVIP}VoB8YdGa =M%%X LqhduL%FӢ\r_eN +iᑐb8-0EdHD܂Q򬞜$޴C7P|l7N$nasVLJ-oZ1O}`({Uu}!!1XKSAr Zb-Pϛ_5։^ Ese +Y\B0rzGsc^U54.vIq˻j5ڧ^;dx(?}@r5 +endstream +endobj +161 0 obj +<< +/F13 60 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F7 35 0 R +/F10 48 0 R +/F3 16 0 R +/F9 41 0 R +/F11 52 0 R +/F14 111 0 R +/F8 38 0 R +/F12 56 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +166 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 165 0 R +/BaseFont/XKALMW+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +167 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +aMZNT)@\XK~^fٝnM\Ɛo`*򐽜wMz6Í17X\y eԕ'ʤ0і|~A?%QXdvڎen0ǕYOMPo 1II_{Fd +m3V0pe!rҞr/rSʼOcU6.8\_a͕B//uU4J[d&*.D_H//d$ +endstream +endobj +168 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 166 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 168 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/CJDWMG+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3902 +/Length3 533 +/Length 4451 +>> +stream +xg8kEI5!% {3Y̌C([%ҢDD$ZO߷g>y뾞9}M-$487KHBP#s"  A (8D2jy@, | hO"P*˥Ġh 4=QhCQ@I Phk/"DDHbú +H?Qs.9(z(w149뿡{1+ל ǠÀQ"`nAfB0h&%}u()ý}Q(,sA +1IjXeϿb!Y:%`ȹ|oic8$ ±H8/ߡp22@ i90PIV _}VX4ʁ`%?U }>*d\E_psmizk +h)Ȓ/`ݢ=6twx4)PO=*H%}߹30l]}2QZ{JoP\3 Oku'=32{PktR& +eĤm(e"vg f DDZhHXuGz&ȪcGi''VbN>XLOP.zcYV]iHqVg+3)?+Ar\b;9I/¤-iT5-S2;>j|+dpMːIפ TB<{aK}^ +ރh_i6>E5*I?D](7s_]FnP+] B<%Qͳb'n`".\p|sRܧ| K_;&]j_.<NrkW,_#{lo{ w'F#yDzOְoo?L-n {* S5tDws‡u[kL#<->q \h#Q_BǧWe=Q^uT& +^4B+VcV^]#▸[zVlDw޽9ݞ0+fp$ok'~Tg~`9ȕ(K'I)_p7)Ե⾢}7"\UȢ5XL5'iVjjFGy +>=E2 ikar%HK-Ikt(2);]=c@'5L[*_W +#hN2[*L$lah{nc܄;=sധ;MT3D9:>b(v0D8|C!5< yFSȑ^vP%߲S*THi5ze:]e)Ed'ͳ؂I}* _o{yC} A`g.ӏbh}X#[D}C.t0i)= :ӿ~cbVTY}_In񘭹S_`d(G Cнv%2i9?˿L#π=_(+>YVxSy%6Dj)3?n/f0v" 5DWMTdP)ccP/31;J=ISy˅DV=&&Y,R=2Q$gcyͳXjJ.q}ö_԰֜6꬏\Ԕ9U홝) : -y˞prc\ߨ$;8^g8|{۔C!K3r?^Z= +tVt+ޭn 2Ze;t h/Z& AlEBodGf~f]I n{{%)u ߘzϩ1J + !s4,~~xFUjǶpw~\wuD\vSiST}e]RK%,k+-}WDaB蔃[g0u ר.ZGWY܌d->n>sHcn꒺oí ۸U-ם5G+:w%IMk4nY#'6 HPY4ҝ}FE&}fz=ׯS65S*eii[-QK4Uļ5b٤JB?$G.._ֺj,섶liR}r٧wߞ՗-5~b2Pp&Znfv3⌟?*MpvP2=>av39Ky)#n qyw4F>ꥨcSn$E*k  dɁM=[@;X?6"8Ѳ^f 9xQ1wֺh쎟v3s2{ԑPpzfOtܒEv ^tXQ85jh"`j!@:7bc-B =/]~QiW[⸛S;'gހIW_zp%_P׷A}TjhcJG>~su-WG&sVYfr5yz#ۨN.GZWbZL3#2O=.DTuNKINvmӽ /e[Š賮hcIIX=.#*X1c&Pن^CʦU jtǓ{ +1p/n{MM 'A.c>ƛ#ȅgM~5&9a:f#i^h>U6"UwXNC PYLD Ikzձ8QQ}|?DSz7g^9?tzw'@2kRɶVb|Y ~']oDLMYYUkspyW2p m8C9і9LLspRTsGc,/J ^j:tv[CoW"]8cA"Gpb *CsoTSu_ j.컙eιE;^IeлIbFo(tU(y,<=JOlZ +b5VVlzs ƒzN8 t=/[Lˁ$ޑ}q I %U 3^4֏ywf^n,m7aܝa{ r\W,=(8OhMqGgaFׇVjOBHוAM)䅴^^y˞X~ar# X~?iEvXȶR]EBU'0tl ǥ0HҞhH1[zk'I2|]C)^۴ӊZ=/.)7zy9<(Yzfb ?|P>HYW>G JN;6uDUvC> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4469 +/Length3 533 +/Length 5020 +>> +stream +xg8\m` AaG2`3zt!H$!zoQ(QB޻(_߷~>}Yu_z^X:YxB`0qL98ݑpOD`bb0H += *9@XW_w'[H鎲c@pOG;8C!=}A Y4# =a0e E:0@?T1X_2-oo.oNoJ!@-ݐYX Õh-p? XW/O;H@cn5FŦD\UQv4KBy(|#@#1C۟ښ +ʼҿ:p_aY;dBa?,"@a@p PrrX!DPCrB*PП;WQD i(|k>f#öI6:漭L]240gi S{AmVL%st`&#(M@62ڼ7Sߊr~ڲXk'eQbi{ԏF.*\hQ#\||J(W[Rw_d1)nĿ/gE?%#[[# XBQTdrMIׅd{L?+3rpti]|=:NMnS)Yh@Y?N9&@|,!' SMw)^2_]Ԫ/$ 7ID,Փ9HAǏ)H_՝s^үhU8l{t)Bf[w: IwD@#Nulf-Šd,O 0>%;*ʣ}gYM.K;pUpz='Zc}{}uIyݥ8DQ~yƝci+O]Π_я2u  #% LW}S9(G~؈5[[qZa0s̪TV=I܏^jV:/}\u!>ѧe9쁹?F8֝'qp~sAY4,T5&qn6ƿvdQ*36:AԆIZ&}DJL[nX$ev*o>Nt(fKbQk|L# v2N~(ڷ=ěYuv8SS%~h]sN6KTD*jmVTuo2rv[=kacA`VW).4TMRu+|VAA=*\Xi7(ιNEli%ʑCJ cKJrIا-y18=X#+yFr8ݙQfA^?3-N%'z;]hJ'=\@Π|.!1ir[X Ao.8NIߦ1&椆Ff~GsD;[W?>9^#kaZavwhՕpB0K"Q\dBj7C9 $~tB r>& aؕV47@$x.9fzt٤K,tYTu፥>L]seW^4rN8ԟ3Uo e[RS~yQԌ]gQ:1wفPx[ͥt+GS`Ej3a|bŝ%rGQg +5ʚO|V/X+NuaE9=Xwգ=>v R <.;dKz˓: "Y0ۛ^8< @_e*cygZ/ϵ8E-zavy]O(Ox\qj؊,E{3aBt]s#u Jvy, SA +Ol&U.o~5rҨ+A +_z]cUUAPߣg_6:dK.EE+o{ŕ)O67))>\*)y +d(}4dr| _ ky Y(gK%g46 ;Gh/aqmbFaC43wMj0dcgx ^R~eôF c-;H0??4B4烣Va>x{t}Y{q޸pKc%f%ڴl.Aeb(쨿O=d4pX'IF&[-G=iYVNt?'v.ّk/feBI"xb;\|0} wTҺ${ηQ#DzS_\_rFL{ +^e9jʚ-RiEWrc$MLYjU3sN iF4z4ưYt?q8֛utK+H^Fl&~*p zWFsRohVvjNPJU?Y? ڟ#+A|iuҔRf@8HӾ>k6Q| r\mȞpzq$6qݜYų:牦# >K{C+ +3tܽ`8{YΩp ~M:[!=L]@siçnvKcHwfĦ%Mָй_Y +ԟ@?擲~WLRkgS;Mq!zEao2a2D367.؈=H*o-vZ*شs>ns30nѿau<9czu%mHrL遪#6Nn 2U3]蚄N41KJ/wd!|znJn?eJmEcġsׄ."hguጃ}–8\])t0}#S8]v}<E՘XS^9/mmޛ<N8 [n|ZUwrE ud82w4rn3֣" 3A(&g;C '"Mr#`L} P BvnM]WgXL ɗ7b -ma0~;ڒ&W I7N"(h> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9196 +/Length3 533 +/Length 9753 +>> +stream +xePѶq5Xnݝv -@ ;M}ejMMwW^kj*2u&Qs{S=ą( +dcfePQ;L\ ?(2;{sqsT@q{O' V* lf*X Of PGj gȜ`c\ K0*Y=_isW,riIJin,,J?p?ѫV6z horT/6E9߫.&`3Q-Y +2WY-Llà sD`QPeWQ qt/o{@=ֿe+{&ٛ!@u%;7;>ceqJM$+beeg qN[UiOiX*i_J#5ylw}hFכm>T/\XFn'x2'}Od׺ǓB.E`rݬfr +1gڴSuYzt|I]¿+4F*S,',ܔ֚fLIحOgG(y(̀]DF!svF3Aٳz0eѻ|uNV3b3]Ylŭ\=ȒYrRZeF?W =`bnvK~æ۱%+6s5U#ehK,'E6jkn,5_AiLہ<0+"?.i'Nm$kh?AP͇wŪ=zh[[pu3 mHǍI3HAk+\"xl|46>"Ts%V θ E-1jv04'eijGLgnKf tإI"c nܴȼt4/Je]vssA?@5;mPu5.9~' S8չ+4 Ae&~u<ɇ!4VۏcT(^F"-i QQ=-s4$¡GDm`<h}2?M ('Zbh%=Ns1iLq͗ˮbKd 4Rp>(v{ʟ +Th2\\bFdG~uijV SӨ&joWI7C\QMRL.s!1d )UGO:9G d_9bC&>zbz 3b`3ڭ+1gVx+drnv%K^^OLSf- .ҞGrWU_F3+/F|EdY4QF E-k,0Zc`v!u6(xzx^.]ZN?Dti0Vԟ +?d(6e Oe䧍8K>pKrc\Ƅhc ~e\' w✁W6Ρm{ ;1^W5_VQ!$\Uλ٢IP'$D!FSU΢rG5A^xJֈW~zQ,dwLJ㸚o +Sro&"u>o0YNU:H<9܉H^I!B#bIUi׊ V{9`șm[}0b,Ֆ}eHugCaDz%Q2汅t\VH-|De|Rwۨ-?9ʋ}MS<W>)v5c2' ߢbHA`/v-L:z3sY *t"r]EjJθ!e7_nbU6h eg4Lne+3t d;n38HQҞ)wu~M/j 23O?⾏ȭ|Q1)t;Pı.<ray:j>E&p0i¥AbՃW Ei%T-a;@2ٝ)kz$Eug"?x2i]T|3Mh" fC'G҇DYF7|eʳfp&,h9\5c"m>[|h˘R ŏΐm-fmpɜ62 ZF~e]uv9cRn+|6w1?.V*DǙZ[LXѿs>& +Ԁ2Pe8G,s ҅ώL8uK3s JO +GZ5#fxen9ׅD۲NOLIοERef,;KѶ9WZ\"a5MkO /@ixcߟ;5·X3%ܯOn##rnAD0 e׷_ %/ +5Wsܳ"cseL,g3~=,h9S \1KPEJϜ[`sX9P}SN|-żä*~T p1NpaXWŒN狄f=(DUܭSYA`ޮLYȎbk`4MyFT{줰{ݿgNb1xƚTJrk ]bR?[KG&z4*$F>+lJZlCKlkcX`q; X8+>z>LN '() . {{_721s|/7ڳWっCwF+X?J)<춛"_pd9IixDžonY˰9骹IO.g Y[ !Ҳ҉}ȡ81YWw&a6"yjþN1?qu&0z-!6o.mҠ&QeW5rDʐlxƼm3LJMXRSḿwg5V&\I!ı:9~TbzLf7aO3OBKAy#=&F7`ߟd64\{lFm/bIj.>[d$sqw]Zg,7BB#;3jִQ<\࠿B{Yt}F9PV,r^E-]0"PTtUDaRy*mpfw[Z>Z!_\izHhxQש م7.KuC0\QʞF͢/eoM:~4xP[ocZ֕V20 +Xg]ST) om9D8鞚dOx$=$CSInȔNcDصZ2T͐`|-U{ھ sQh+*53iBfv$>oO|+RtQ/!i)d=p', Ϙ$].HmWRhY,G;B,(oJ`χ91*({+:~_]p5 }vK~O+δ,?[FE٥ߨNwP9v7V8}|iTtv2iPhy+ zM/`aj41>%C3"Q,f8ř毌_9?2t{u[.mܯXp?>%fʺ:F)UuϿ&Jb ` WcH1,d$T\ӰoE嚷yLE>{5͢iO~v +!o>y\ +OzQZ\oZ#[<P$;&z*1+3N9t̉# SĒ I&qHV*!oCU#lߴ@_{UuLjP.V +$dgpQv7Sy? BOTw9'&˗{,sj,rX֑>rjb\~G-'$W[D30@ +w2Ru?!i tOhrF9 +-:Q.k%6ī~]6( qok9,$x甔ۡR+n!9hcUST wڊt#.qVxgOGI'*h?_EN>5u2})"K_zf)|B#$tR2aQJxZMPݳµY'/6}rHQx+m_y[Ph7Q3OaA*]e%IZF~Q-j,ϴ/ZH-3V&.2P0d(@=! Dv:]0m +2SnYIeR٘#^;(V܊@CW.I-F i4wS< m12JXLc%DTxf|Ksi;ɴ`0u^d:f/]+lw y(xt:_/ т:uVȅħA< +_ U?c׶Zi{J9,Tfe-鄒%^|^F4'sg"RׄV[;HVf82c=>A0UC):m^n#u˲C1`6s?9?t7YZWQ:19a[m4`\g +M#4əlLXTo$# "bZo2N_&өIlr5H>VEQau+sxpH%4i_>1Sqب&Dxoɰ7_r2:0^JWDi/Y߉?QM#?b ./ G>̚(OtH/@h΄,SwX4Pxdd,QAO! %hOt/e 9S!īGv_pj1ȝeŚ7U&W>]qYڔ99~?cj;/\kkIُNն0DW.f% +NE\Y,؆ڵTv:s_ӷ ђm%弃dd|?YNe2AxyU3U%;hPxz1gj5s}Ttv e7Ca6^zۊM۫z5>1|kSO[|kbftSؾlVJJI%tշHtT{4O_$re Y5bY#Et"Ϻl?^ݙqZIL +ͨ`mŸϰJ5NuQYkP^#IJƜAy/Y{W` }߹,4[ 8S7{9$#k&  yWTSw٧wI0axN$ʚ2ߢKŋSE!r"p6vKm78Ú88#c$b}(E1ŷPmg17$\1d(7&B;1_EәhW_Zu3SD{V!Ë{ht/ rM!BgڲL>čktu d; q;&/nsF_̼f3M + ;p;|x6]++uJjlJhw\UVGWsntYx qT˺5~i!Ց 4yOnu6B& +2̎ɏ}G"y:jX<'tru"f*](p>îrKnz7tS~R&DYAKy *nd&(zjȢo^YD\`gPj[fB3c֠u#A)mVUrvwZr)zB,OJ>F%+4g!8 &rm}VχPpy.n4kNO~:ƣUH"3^d#GbyS$ nq\=Lо9KE% #م0N k~;8kfc÷ǻd:C@_{;5c $.H6xMGAa)s-WcJ6 Jukњ:^x_p#t *Ozw=U\2;T(S|o϶^H[Q<0.Cr+W_m u9Ä%}cV31 r +dŔ[$֞R dͱ)9#inB?,/|9PP24* $HH?tC16+ *iŧFtm\ªxXN ;t+ɞal+h8DKܔo,${o؅RUl+RƖ)q~| +-۴Bn^H''Y;bJİ\nBY_"ml|!=ݐ+͆mU[I7ҫf5[4Uҡ,ص%n:9#]~Nxr6iP{FёvְGi* _Z{ԑ2[ П$D펛%d'݈jrxkTR=_hK Áic3yG`Zڰ/k+}RxIe*DuKy[sMg -*$`slYr1/.7S>Q$[53Dzf{^f Ak/ݒui7ki^ÐM"Gkh"Zdkv܈$X=G3wFd +ؼPOvǻ+K +!)čK";tvoP~thZGC7@jF5<9`^3 ^^Ax'm1ކ=V]wkק5P:M+]e3DeeG؞_o-p +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/VMJSKW+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %THh-HA^ D.H9;Ϝ;_o_zoy9LEHmW V* +i[@APQW Ǣ\1p,RԼ@TZ^BR^Jif}߶_Em uZDxb|;O?kmXKc洆 ukٙܟBy&ybbaG6YՏ~sזpCr0 ȕ^KZd=ٳ )Rrnu硻l:AhcLnd]ui_`W5WnPVrzvA&jvBF+l1 \.VaIuHEzV>ގXξ e@~jvnU^{-gtZe UJ\m nNFxJF(;[WD&!$b2dxtvZP^{om2(e0%`%Iԋ4@JO|:gr4H;;-ԝcYɥs?QAb;ΡDV5wJ` q@^]Ϣ.bfE&>ȔxD t5r}PE3!f׈F#k?ʌϷ:PzsuYdgdDZeX4ըۊ.sA/b `EE" `ыB-7y_EЎ_E\iŎQlK*U?ٕ}YԨt4EV2L#ܞ/^vӛq4@doDp%/} ٨hJ(qK]8vXn`S,| Tĉ`nNp#4/9YA% L+05Z*%2.TyfC-{U=+@=KVԒU 9 Y[Y _+Yr4l{8IO:u׋ɼ]%בʡzOaOXqp\m0]zSy;6#cR8ވ[;i!"TDS2.\Pq"1U\ka7D]`a>i3sm|j鸃g >ycnckdAlг4eWܪrJ5?ĘHM/3 rTUJ*wQv Lv|0cȥݐ2IʖaKleAAWn#as;SΎɫq2e| pGF7kO] KR\诜hU2 h+,U, .l/-O9{QG7Ɯ|5~#񣉻o]/;ɛf딈_xsRɪQջj;x$h5,O{|$!<+\3$g~h}VQx7fp\]Cܕ(eZdÿJXʙM7`tdO;g +R\g|>fZڶtYC>\2|4F5`q-Ӯ3_K?g~cuL2/b88>t#5hO?zcrצ!8!TGj͠+8gÀM}PDiET!2xU{L-{7D73t[rNd +P{DW>w]ߛ,4tns5-UEHٮ_"iP@ZMm"L"m#GBKjEO::(a>Z8vg!B8ǎDŽ"""ъ᣹lB~>p$~6P:E B٫EU#7O]nPĆp9{r {WK1&fFcxLR=48E57Z3KFGM#~$wkClPʘytsɯ29{[D +fYJ*a[69a/xyroب+ϳe1$dFѣ*[ϣ(ipǬᢎLmEllYU[dCU_J(7-tsm]4xU6 ]%p ]D#'1Lz\Pey¶۹:d>^Ǭԫ\?ZLa,K|9偤;B'8RVՅ;)duMv?at6DFEZӻxBBY@ 䜾|ݦװFV[SW~ ~V,)U9Ma;Tu[GkY~nO3IE2;vF8]4P^H $MgZ$%^q&O@ĦEWt*}Nq;I ]HZ'Ѥ<] .H&t_kM!|zQL } +&nrw3me+^p;Z ®]uylANf@jtte$&j>TV~o'{R< + p>T.Z7j3ʽ(辙Sr5"$1&!VrY !#,MpkxHٽ%zpY/,UeķVuE i}`j!]\?ɪLM֝,,.%{|*Zh&XE0Rzϻi8sBar׉7pIj=\FZӴD vrW7U\k@<Е2y{oc)tM.;R= P賞5mfEޅNHnO_*R91pSՍ36?ߙé M%/xai.f+/WNctIɾ́]LlAt"%o gqna)KEKi^'p:G(W9DgCCSfeqv|F! @YIh!qU +6_eчN=[έچʢ +#2BS]EYsAz]}t7вSBJbb0D*0r\ryԉ]_ۭEY`+Vc@]y}qI nY4`~~N1קH=kڪ8ZhZyv'9l +_,s.a9p,ήd<\b|q|̍c4jD&fVN{>S?|.6Y Ilg?F%"M]ޏz GWhGuXIwpKOauL8fם]; A_"t:d\yԱ:ЪIGV)!L=[!Rg񍳑F^9kV3 =קLd\s:(xDl'5X I3(,e=ڻ|;j*Z\0_PKxj|(m8FZ]YE?&1MS '4Ó;1Rp[.Wh-Sb. xLJC;g H_[?m$_[X{I@GgHPi=jC0`?ͫAn/ރv7+#z<}vNPxq_ԮP fJfAӕ{{t-K8\4d$\7vjz l<슃<%th(@VT;şT[+fog_zk+'Յ̊_?5͊H4-NTʋ߽J)ڛۈzBnY[Wv<U5. gAOzH]JJJ|IlBuu{'?,G&iR'G GN(Z/DZ;0MAA%g/R=K m"J,O49>EJįVrꆇn39BO8p _b +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/NVHZGI+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmhF/щDf01EBFhѢ=D%#z%my\yϗso:{Z׾3Ђc]zX NBZRZcm+ JK@!! bnpe4,C\,.ey9e z =p@?U@-4 +Ma8Za]\$B-|hE#4t]H @O,CWϒ? (Tx bP@8 u {qA?onB݂=HT?X4>K!റkcZw+C H E#0#\ 7-?~_Us߱A.+}!r[7]+ĸp0 WߩAF2LZASx_1Ho?M<RTPuA`pw'3vC^ @¬,LE~LX*DņGV$Ԧ_e. +j4zNVN·B$"RNH{xdžZ\,<[@W6xUTO\L-zf3AO<-j\-jGt6 D ~f9}x+HϺW^wFwPn$Ώj"o>fAK"՗lO4\ B$!WnM1|蘹H~4~O1`XYo2c-wuX9Ūil_ЂG˘mL&WQwoF3iPi.lq};CA#'ƀaY͹tM097r"0kh0M:w!8J\j"+R3(zo%"'](70駐p" Uтwf^JzU5Ɖm{dR+.vsDP(pkd PtƂ:j:5kBܞQJӑyvJ 0JأD6=(˕챘kNV? &@T9ի>_u_4|UȢ2<[,ߕ)wI7tK^aLRaɃ_D0cS2N%chskcz92>s(.+wU uh +'"Mc\xt`e42@jXOTҍR5Pӗ֙9&MafwI᛻=wP5Opu QaLbYF8-t*^b5*\oo8"gޕ7^ʄl8|ZJ$Y,H;wr,@{p5-8}EKRW3mnۺ} +EW/-BoTd{p<nd..$(V 9QeMKYb? 71l8 mff_?`#X6c iQ[!;&o]?ǟ}|QL{G%=c·OB!7rZMqt0YX!@=4n.^8Sz+f(VP܍X u3 htӣ7a7蓑EG.QXQ-8[j溠%m'VB,;OWx2ڊzSWթ| *hlH7G@E*/ #Nd ػ}Tݗ~I .!E1y2k|G>KEֹ&p>V;c1\N.boװ(k>b-I˜Kji i Ƒ;ZT邅BV%/7J6&azɜ.t65.m?ÿ,. }Qn)`\oCxʍ cL s(8&+TÓq)^8BŊآL0fyA%|𖱲?=ǣ#>oa&B_?!`;V2 ~>`-U$;N=E-ȷlVQpFSVw𔊣Ai])?ݛvgHGk 󅢲mvh2}0EN7um%[̟t݇ +-uR/ۊPe͗PoސH&\gh#lW& .bPy90yXpv/TQR⥖54nL29ΰ{:Xj; +47"Mo R_W֔LK5HְPA2N)v^kfT?ЇqGx-&S: ]~~[[Zw3<$dmoqvT뮲qMZ7F4|դ>dECQ#\ [S?*ş㲣m2&#\U%8H&jʤ F+DW5psĻ~}\($،ԊB1K屻÷yCÑ-dǖ#TڶPDҴ4[ "1"^t/6bEN[W2Bł[@s7d/Ԕ˒EcȈ<[Tj *;%FsP%z*D"0F*}Eg^넔)릳G MGeR:He{vgYOLg4&s C.CJ{FCBndC3Us&/Pպ Z5I~ k~BV;0]lX\%n/SѐiKMԟOQ?pn +%gؚg +ś~IrejƕNJ!>)B&Zn_!p׷_<`QCfmwWYɧ O$w)p]V]V4W]VQdי_'d ++%&ϒ?5D ݿC_N!9V!쉚^o؈uCCzLD סJu}D.9;ޙXxFPuϻ_k5"n>/rx';_e,c'"dʱ'goJ_$[="ʈf9 '#=svZ_gZ}arEu׼R>%!査aA=\Q}Obg~x_Z9O>3@^k] wM*J:v +OΝX,RŲ];5y5B{Umy6& !};lܵ5fGOr!勢ͷJʟ ծ=dJ*Ifa/aj7@pKzehHɘN݀Wd ƤTT[{L1Ab4yA'S#MŇlhpi]zyMPzAyLk>Q+nAcNWq;7neu$ ^P$ܳ67"Z"˝Qȗ 9Džj$%MW2/ }mCZm{Ldn9ZWU92X )F1rL>Nt[z9 j+9*&PqL1Y"43JF x_ޱ)1Z"{TX$8X ;s!SRs4korr$"Eyyoy&0"5tM$9vE776$9 dpKwO]U1WmF+( ;`C2$/%tcr۝}g +ӣ+N$|:ok3#g$N$+;udTaxf_׀NF%5-fNaM!LLBP@m1$ccˠLc (6pZ[ƍd|lZf;ovlŀ7dq2y֓aNṽyc{C_Mknp TR|߼lՠb=#0ub=sz *9'Bcg3^*x@<7Kn x!]/ft;QW -k콆nK EݻGߐ`uB`Tš<=Cqv7S6tJ::VJ|P_w_fGԺbּdzK8t͠/B~-?⎊6MDAX9lK^c +Oxؑ6?8==޸!D0 T-w%e7mVu:3ޘQCSx %OJy-7tbҥ g f_O((-S]80ZҨ\fw~mö7._(DbL̃mg/ף+:p2;jO JidᰆkARL[D"ofb2 h!+#HTUc&pd}#[YH}3}gQ2T2M(E|< ( +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/VKTYGI+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1623 +/Length3 534 +/Length 2234 +>> +stream +xRgXSYf2:DMteBr.`H Q`D)#M (0-,eHtQ :4E)"ـy{6'B a4FG$ AHp Fu1 4FL22PH4 +6B tGZ8BM%`O0Gń0N9f[] ɮR+9c|?NWK\?jTxPH[_)u5ؖYyb{LlO( wE+(Gڻ;lԸEK]Z͒)Ç&h}+5 |U|و2{[SP̵~\g3xQ\uԐfP׬(?=ߓS:$(;?|I])J;~mi÷^zvPv[o*NWZ AKboȏjF/E5[\VXoAyC[lqy1Hj)V$Wq-T +t΀~KҌa ]H튧}Z6Tc̅.U^m֓n! 9ߍRlwbR_h|-x~4l&AV?Ij,,a eʋabso_~~sOAӧp?KMʲ˞WF\0HWd yF)=p|AKFrppH[wAaXBIv_:{ieҷGCR7Ć=VP)]抒nuqĒzxwNuip !Z" UጳVJμ7Sp]cx z!c6Zvԓ5\T5U1k]区*^h=!]X?I;8ز4tF5 Njj[Y苳Y&bT{D/PHy>b\-e5#0@ڌJ +8pr?W%F/eĘ?捒rrޤ-w6W\QʔJt ͖|0ak14ڹmhiS*Lez*o|饻;Plu)Kѡ̼ rjF̓PxFՋp?u{IDqUߊ̖Yɥrвhz;|Dbv܂xz1,n_wKʽֱYe%<,E=)WxFS4Sn*.}Os.! `vS5㤜Ϋ?Փ5pKJ3_]iIοYK8mZWT>)k-7QȘp2FL r_COptD Ϡ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/EIYTLT+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2536 +/Length3 533 +/Length 3085 +>> +stream +xk8X49c*A 0$ȈԘy15f1#B9C8尔,%*P$Vؠ"Ukum_}&ps0DtYR||LR"YN)29p:R 071vTO*}ZsuL \ĜOQڕkd@pUZT387m{o(c?(*XJ+atF!΢\ɪ~Q0a^"m> +ڔdr>|TD*h<-/į]Yi8!˿%%$6ɠg +']! +Eg17 0 7]`hYqfh6H])c3$:l |X\F:82PWj>.j9y."[ouoU~ +SfJSBg~Wxljpi'cz.K]q暂+ +Lw)}/pqL{d'߫E0WS4oTtWcPt=ʄoU 6\Wf~_.jXDUA\{"yT,\0f"Gn㜳^o_2q'?V1]+o;MzwQ,ؔ3B_EnTV)FEO2>N$=Cˋ4L%g_&ɋw'kלBe +c雇f1UʝzA0_H%otzeVy=@~_NB}4xр70G38ň5>`@AbK#)>6T!n v@~mF,fԯ)qЊm[V+Ugzut{a.K7.#"bc6ME8G϶_1B y?OaFӝ㘀-]BK4DN1W#S$68 V:wN%zlo:iZkRڲRczftfW,%HL9\!v8Qfv./y9c} V(̱°%T6.$haxX}h+GdSJ-4AR鮒u #ģ9 yh͢-cjfcMMu}8KJ'IKrU 76loZQbb9*kxGWE9d#΁פ;<7`!p +e_7TOP]qK9KY*q9T+57YxA(oFfd۶ɨEK֤ *&ԌCyQYjxgA$Sڭ';pO~$6GA*2~% +eek&2T-p M509wJT(ENB裲kʧ)_Zmb^SK=ɄE4 BRfDJjȮAv:iP~#| QA"E"2B, +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/ZAWNTT+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1834 +/Length3 533 +/Length 2368 +>> +stream +xy<Bƒ4fb!CqFdcMf3FDȖ%$ERBd qt5 !TvILu;u;}y>!T t/ДNcXVCA#&g4c< hmm4` `PZŠ!`DgdS,g`@dXY@*/vtdB83 Q A"@o2 dA#m?tdH#~ʗd˞+KgP(4{}n-N$Ӽ;F35dhH Vh Bc0*_'hd_@PZ_) L&Hc}~Idt@0$@fː8[es~䗂יݏE)j|pCgq=s7Zү-lΒ1YeRg +4aJWڅ _Z.Eb.ѸжOFðabJ#gz>,$*Ej7##JP: (vBpl l*H|$U뜫X:<#J?tgiLd%W,aNQ~~w֧ؽIpُL&]nµXy +UÂ';7NTo2D6yuc" }iX.]SdiǵTNN,dw +yXS3׳*:ߎ#l.ޣ0iim@~j֤*(`V{ 因j]3EMbe +hNى$)f?xo8SV#+6E+ĔR7^rˉۗaߋ-'l9ӯR;dε͸Va};/6jdqF2^;ENo6F^6AqLbѝ +Bq YenI7{H.Rvr7/ܛDrz''/dŰ[t#H}I7Hn:2%$I-p ֵ&FCuZeZue\UW=?mf~N#觇8p;dFUnwv.RUh)ȢЧ}&"+,?Gf";3%=/Z虖 F ( Av]w!V)Po9f=uxeÜK=Q"SSe oК2};3 ,j{~:R ?y6\Lw,^`d?V Su"Wr!\bY}m:-⥦Ȃˣ!3ҍKI^쌻@rY,''E gUe6npo-K rR[T]}{R;G{oeT-Wkq ~D'je/I  JZb~0?4n﫶w +Nr"h9ACVAj^8'0Tު"f^K_aHcn]pBsVrv^e]u%9)Ŷ*uJ.F< +=>s(?_>AJPv$Z(M0͠?L6$|i8##17ڏ!_u-Sܶ`I`&>Uo\*gǷAuh\+:Q/ܨi}3[U.eÏ+ukylIɔOjg˛-C(ϰ]b/)N ;-Uz}>01bqJ?8&W#@ց.ݼ_}!7 \dLKڏ[1]-!w_VܛY|A2ciۃ Ruͳ"9efB^.ƗVkUQ&y41_YWgRp󺲾bZj4-!@?@x&N3} ?| +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/LQFVIR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1252 +/Length3 533 +/Length 1787 +>> +stream +x}pٺs0[? TG f-)?8<Gk.=niUݸb WE|w! !; T h\][>4 +rV\{Wzg5[4 }Pd2H\焎_8ԯapsa!܀Jv9QMUvhe5|vF۞H ten2rH˻d(Y0_*^d\WXpFD~?a"WVx1 wkUw&.L +sw4-1RJ#i?㚕,Bc ~외\/,&wS;Rc9Y"\tJI^Yڂ4IDL7ϋ^Wn^45pcm]nA&#mBϗ}ypK(Z.*[,fE(HuW6';&S݅&I+Y qyI[peE:td W(y^֤-OI ;,HM嚾GhR:F+`;UnX+R5ŗX܏ {O סfOsD)wI[M/ӲuL3nQ4l{u.52r<* Vw̡֜xQG@h[[RLdLr6iP% j!'nGZB]>}nj.NO>dl=*ȯ9SM((כ^,2> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3146 +/Length3 533 +/Length 3702 +>> +stream +xy8}2(4v,7f 36flBv՝}Ȓ%!{v:J(D!Jx>^?{~suKة(^xS +mW0q#C'P: E P`ZH Mt0Pi_:`K0 i, 1t_D A!Qx4V'_ph<HkN X!0tB)X_C dܯ$wF9)յt`*ޟ 0|߸re72#};:p-;!TT5`45`@& ě0-M5-OH]{3XPzpD GmAP̬LzGj1U~ݘ:%F8!lP?x(V{ a6ɞ#!aZ 0+9cWc²Z)& %T^ɿPz-S୺d}s *ze9<\ȭuJ|Wj& +.ɨ?ZW9ĕ' +ZǮq, rmr+s}Z<] +{\Igd;4~u9=B׽/48Oņ#T8M4"6ɫg8۵֝w ՎG=N +ll m(8]*"4f|:! ޻gl}5טQqA<pّcn'Nܷ9;eTU6M|]w}yz˕6rUT8-+C!@䙮 fTv$A^ETl`?lGHFUz\=Ȼg5ȶʁ.\F=#֜L©;kk%t?7~;E\^TmY+w! 'lv FmKsZYլSl>)أrJXJWg,S7ؼ_N)[BN<3Jdg ^RB@zQ,3u51^5aچ:AXP`Μ1vٟpSl/u݉ㅠeHG5ڮ蕔/94Kus[%Ir%μ(}zm^~?ߵT'DZd.N+_jtfv)zvx>2/:@A9ugl$je{ǫ8 Ш/|4!q/N O{KuA/L7R 8mkC3۞FڞYH~N~#gyN'i5C tӾ8U +eJO +6$,hj/;`*V~@OQj]6m +@e0{U=>햾z#ȁmƅ5k\Hjy. n,~cx3-S~٥_[Mh)qxZ#aAƥ{;Vh'uW?RKb8ר(z$kӝ)uķW-jD3c'wэBK+zMgIG ֋d _:kA&] Qu-S$lʮ4ɕ.4=&YVKH/{(FL nj}"m#-\ydFZ{*_~pN7LTe,`$} Gtt:h``TϤ xҗC8?I2ڔ%%^dۉ2pT?>2̑c5!gUԮZ8 7oѵL8S>Q*!J-}'cZ:p߁Ԫpl4~j3W4Ǟӧe5#.8+xN0, b+/,-vJSEiK\-Azef|ؼ*C!\=qq.Ku웨Jtt[. tף+vDCjff4cUVuvbJby~5bWw~8hD$6%t{rZVo}f],fNGi(h[eqBT#;7٬w!}9pj01# 9zYBg'W @4N#1 JB)^vz .GLULyd',VOJSoW,{(]/ //BAP +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/MRCIRK+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1066 +/Length3 533 +/Length 1599 +>> +stream +xiTWZ.TanKY`d&N&HQqE(({P)m*.F)OOt|{kg&pdz ~5Ǽy^ٖos=Dٙi\52h7ca/fmv>W|~n>ˆռu$6 \-󞾳,h;Mi?9{1u&ME[cMIJɎY]rVv(>KGM-15N5k!3!ķvQFiQM)G6s40>3.U,_n+ 4^#bNCk+ӭ{6 ޞdh,ϭ~>i')] i,([5do~wgݾg55T沊:-д[מaQ|CsmuOb_Xݸ]76[e.Οm~`aiimvnhbHhsN iyѸR,Qsۮ+.}Kt'Ƀ{W$,O/(7 =ۮ]̘5 +΋`jcX{i]IAgп|'D hRP o.ct +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/QYSORG+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2358 +>> +stream +x{8T%aO ːDa)c֚ 3cblr BhWnmQG +\Τ~NsyZ}}wt4= Fv #rbFX}\`::8&Dd  YX c +/ď% p(&L f8W61a`&B"RC(QWX7ĂD!X,$6Q`:˕Nf۾`D؟-deR$ tjBdڃ!`NTurXi05BL=78<ﻮl"&)T0nEa~a 0 TCt{q~h]Άo]O"LgDA/rĄ#8f(\|#a: t)ޞ5šFƦjXYWn:: |Y%E0| ğgM)AP$DBϔ1*t +WsB`6vlDbVJiպν)|ͣeFeOP7gMHg^䙼<_)5u<}ۍ.u}S\ĒOt.}.4([8pڪ%$`bN_ N{NS*snNsG"b~Rz*}ӮW1Kl]/Y54ivlzCuM.FMxN곪xh 5=ep!|Vw,]JFFpÝ ul3[m+j܁)\Oafl:D`-N[z%S%X}ʳj@*ըؠM~2G[?_zDs=Kwg_V2Bxdk6`ЈRsO<:d2REVvJs(+OG.%zP"T Y)|@LAN ,F1QH>򅞛Xsqד94:}RF|^N%)Y9hK ~tʏ^0r.@tW6ې%1? +Nh6ژm/牵 XJ*IlIhd,kJ-_ y̙'LmTu9ImNlzGdަƚW1Ms])+(Y&A 5AO#zcFOm_-Qw/`{Ȧy92wx!riӮB՛0ד{ͻ빞 o)ǚI=EQ5eg^[?F(p۝.S-IQSMl"kd,ڽv#PRihgc~Bq㗃hU0j ;! W)s`|fwا+IZ-H(Nh>`3kaL<3a㸼nG'fMkm]D\aPȧ`{/{ g&'~&WHzɭ: պ;I+e2m h7?]rSJR;L]e⸢ŀjo>tԺδU!/s[yʑIb~Kp&J_F/9ԷlLm${e@輂h43"wO{%+~Yc\Oavtы-2\xfHkGiq֌̯{g8dUᜫm6g]%1PhsMow+.L04ڹc,cO&[&V]za?=V~`&?;e)7`VёPY'TՈ{JiݛëAn^?xTxe濼?1DL6Fd"!@ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/JQGGEB+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10067 +/Length3 533 +/Length 10615 +>> +stream +xUTѶq $8lݝMݸKp݂;$t9}n]j׿5k$UQg7J93254XYL,,bH`3N`e:l\V>7%@ j  j MV@ۿ&6u{sك ' vZ0!!,@3W?d,J[8gv')-/hĬdw>_c ׿K(ouS[(m\`lRm :ڀE,J@@ ghg ;Of9UiiI15<Ƭ30>lv ugS; S%;# +aa_ev GYs0h}w[6t#*\Ь}ab\AE8^(Fp-Ǯw-ðz7$owN&㓻ʷ ?9y3ٵα k-dwiYJ&ϭ-Z}ɱz]:>$ΡlJ4a?)UE[JjUSȾ6OJخbg|)+|{I^DDb 'Š%zqU> 톁H>ȅ(@2$%J"̗N˵/"L^$ 9 ?S#qZ~ +RKgP&$Eߜ@u8StһOѾ -Vr1 q^As-0v3k6٨)r:'{CY^5Mܠ/+:MA琮LU@KNz5;'hIK1蟔n tC^EU_Ha7dX =R'e|>H'V_uPQ; ^3a YPh3x7K'F'JfVT6BBdyn_HrdHhMN}9 | ݩuب!yku:`2)ۙdcC?7mcޔ5rk_y#Υqg_@W;񉰰&M uRÙ"k(;Z9\$iࠔ/ŪX`:?;R!5#KDl3|Qkض̨ K/a&2[`9MF-}lωlLEʘ3в*!bTe}x_[> VI7<Ɗoޞw8)aZLZo\9i],@(*+3"lIOd oޔH$?':$DAPL+G-|C a@+N/s"Cw,@'nlE ?";Xhl1M_ .u^d;K㎒D?2K9IVof96`1 l\GyİK.6Wk)maB$&f~˜#(JR(!kJ\x+asO n3B,WT򊻕*UGnx3rpƆ-TLWt"3b\k}?Ɣn 3~Rιht$e6xZMDKEXꊛN=CoK5>wbA-4͟4WtȤVX@:dzPO||򾁀?=X8DžSd`c~o3dVHb31+LӱKRmu\G ldmȌ o!ů9UXtgaA篡d}d8g6Di@\Pȃj Ҽg0w16Mw\YB4O m``v|5:-EǼ g1K*JgEe8D o'A>$]Y2AD{_P nr4#CP\b8.i βU}6ShDvT=. Y *tZH2 ^DwWl'3.ežs<{)swo Vf60}J|b+ۇ)о(~AM]46$a)h:&Ԥr~:nf|xl^_e͈Z-X9t|HliBL\ ` #Lx]v~qq!4ISZa-bJkD6n~,l?{oCd.L9j v0J?b~&Jl@R>`œOG&C2"ǶF {'iU"Mho5{GacnUYb0;9w\1HyԐP !V܁xntea,P+$O;aF|>'WM!3<"Zb +[ lxȼm¶C: +UjN^ѿUNEeOGZ$8_ H9 9Vd )BBba6D1@NBI§\LUInkۙm=◝R/S )Eaz%YAen+&>ԦЋ%a~c|&>9s1FdW}sÏ +ݻ[-dEڲ*E"(L4?n[9J ie%avG<ilNjz+P%0|RG#< +wFt,1tjB I})Ey0_qt>D큱dRIS +Sb|Yt"+TnF~s_,D ya>ʦOg 3t5}ۈ^"Tɥ~:&P2Ԣ~WXm≊SA8us;b̧#68`pJ?LhSUgDLJSMX/"j(P_yXLA(}dcMAlP;_OsP';`9(osa\DS̊Hju= CyO\^1.n!\*[[kG l" +|@Evl0G@/کr2w:;4r-B7ːbm*TݡJ|͖gB;~x#i 5e_W[G uDhp~"thW; :#fQɅ0ed|EƎ #i#C&ņ +o3z7)Cƙ<!nh 7/3@kO'J-sa1[r!m#~!:a`g9LOPg!l$Vq%ŗUQ< (8]a%@q 2qX'X{?28-REo"¹ႂgFiM{/7=޲ h41d?q]ri$[ėEZ#67>PRGys@~l6K3*aV}$pz2 ]ռ)m={-7~ѡioKwɿVY9bzV۹Ij1{ks$!vťܡyԾyB'*@hy3EcoUB79{UgA+c2p-FN^{._r㒥A)s.ie.Fi+_HO/%)zWA}4u-a +{ـX2Uޝ"!|1 +z~2WBت=}G_":a촐Ӵ6tDq+AZϤTa-?q8ޞ{-Y~3g7YOuޚ!+$aJ@cg[+D;fLHAޕG^I8hrw塻Dg:e3?*~|!3rR^IԨA ܔC%}RfS&}n|Tip~px -:_[rR}mX>y$]w1Źۓu0k[%OVB,Zwͮ Zg+mAYqDεa~ K;#G0|IqMYkv!O.ʓOB}Pİx*z4buޓNK Psj&/U~SE-w@LM.tC4ϸ&rz8X[iRp#3Gx ֌'yMDW 6(BroD'9ű4$c4) kD#yHTTʷ +v3MfXYk*> o#_W6ӡ +$m Y(>5ߍDžqf1P;8uE\X^] tף2a ҪQmjx!,)ehz$^2DQH.* k|_~Mt)ݹnqÿj?E]'0r*sftvʞw|yYOcRyb+ np4:yKKX ,jo +2G6#qmFV~U&+: B~WYlrV +y:+IuAT谁ݯCXlxxՒǍu"->ğv(*D4\^i6-d-[U3WZ~Oo䁙qvؓb41r;>`'5wQ}GRSꁯSTyþu|jFNrɭ9k*<XzӾl$gve)m`KBeZG,JѢ.GRHn`˜>V,[u)lb|+6SK"{ ih)eo$?]:&Ћ[NM<čvL6)6ile[kԺB^U|x7H%f7sN}=RӸٕVDztK*]#̛C3XrJ[H:[% m$O Ûh%DZ۫}BK/PC񁲽#Ṷ.%Ԕ$?E8h,r8tՃ\hᆐC Zl,l2#_b:ȡ[nYOs8(E>:e>񋆦@Ê+583'3i/aU(bɓ>0&C±6ʸquN_^iYNzk=̏~' ;5}L Uޘ1%$VG6,+%hO0Pludl9\8mVidmաhdGj +!!H0%y Yk%H s/55d h*sO5+;UoYZ,"Cv|fhL {IFhnmIe0FSО\9O ^?Bc ++UNyJ_m;Uc1(+ϓIY-Dtwn5H=[ʨaXLMyne%ms☭‘ٷWyEMBK#PO!JZ ޻MG ;ʦpuZĞfC1n^DRGtˬl[4b/)#m'Ì1^YM z\P]L%T0o6d5Pa:$;() 8 +msĻ_B <&PώʪL]cK i.SEq0cθBQ;Y~ K*hK^ƳqpC򟶈!ږ9*nuØ?GeNOF!5K3:{g]>{S~2/e>|oJ"}F(~i:45>m;MC +@y ]rWGўhe5fslyVωXzP\1h:`{|@:19}^40MBLSGhtBC=r +JWb? =㬪]djP//҈z.x;;W&X]əTtT`ZTn!Z@/6 Jk٩sӜN !KE1yGV77ՂO!3RS,Cށ]F +qѣac<{B!f= >-oj(́JiNx\e]?#@q?18ȭd E@#sުNJ&0;*ۉf'!nSYȠQ3.9;^X  [#]Fk_LsK[NOi۪B݊ns"5 ^&$wxM=(IR+$xHfU_Hbg]NsKf^ wfǤP|KTCaH:cQ*CIn1ZEh =_yX*SLkٜs1cq)|!.ӌhS8 r78<e!DEI`?1pIZ%)NV?M: MK:'v~ƨdC).ɥߛ6\h]E``uOso8,w4;͸N` ׅ)߬q4k/ TE\ t u&8>];C %NeXɹXEN!ĩΒvw/>k|Xe~u,eQ ,]#Xfضނ5>ga'<댒 GvQb@T†S fR.6[S-XAuɓԤEj'k}D~< )/J[Ƨ}7A<|#֪zҒbȺ`LĈBq[Ǣ]"ań ++%Am'pi`V +\yKy^3zXB>$f]1ǸyJ7/YdT 4FTQ{}Dq{lV7A\ts01kb`,Y83ސTArCi{*g7\@O6ψ"m̶aj9 Q {%9 "ѩ/Fd72u޴1R݌ !s}rKTaYgԐHDHU?F/~ IOHrP\)Ľv22]f?7g.,<=Pqs 񢚜>JVanJ xȊ!9Jߥ=)"(\m3VgD4bt˜_S$0'y83Q8|ߪ2`::~,osBjhX1>5Uz gc1=_ܟiS'2SR]d9KÉO@['6gqq.q"*]+2Am.,1k'CXnpd +w^50J(蛚Ѧ:4qˮr~} 4:5E׻VWWU3V R7x }͗|FK>ԙxZ^QeRyS!f|kQNωC*o`uN-731Fcɳ<py_ȪW+ wDhwôl٪䝝i9MӅY卹/N(OқB#hT9)E˙\KSg*f0)LQÝ%0>ĸcqBS5ϭ\2!{cY(/ОJmn4cz[fƘPeteϣv*WT!3PEz*o?d(YrJг ]w Hfv%~xZ i;}*Ĥ`/ FxRgf̝T^$O8/) @ȾM +. ND۶1Q3 TȿHec3SL5"i&">+F[f ؃;#xZs2r%,:S%SIV#ZSH}3]yEv"_*O8VXqpN*rq0=*z 2j:+XWiͨlh"lqz>) M $έ፭v2SlDbfJoxz-Ĺ,ɳ+FۂZ..pZkaܙ}h=MQ.Ty$.31<"Z*> +w{ 8jY)vl|⭪Oz8Qd`Q5$G-M-2DŽp +C8 +p-#CЬ>Bjw1fjnsm߷ nHFi ۣ2Q jZo$ofjh(w@(G.0go'UQ1<">e'V'~ m+p 2 UⴄIi7)$ZSS=iH >JG L gΟ~oo\.}{r&n֎o!nm';7 dd7^b84x^\KiDx9!Q/B2;eublqU _mR;E;Aiq~GV̢b@1䭱Nb+Dlm!w_$qDkKZ8y!' m`g{[S7$u +endstream +endobj +110 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/ZRRGOB+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 109 0 R +/Flags 68 +>> +endobj +109 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?*(Iɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +165 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/XKALMW+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 164 0 R +/Flags 68 +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5590 +>> +stream +xUT\ۖqw " +(\ +@pM 4@psν}G/=G?oϽ^=6$"cABiUm'ĠvXN20$(Hz~x8810.>nP[I?@pZl!C,VPH:8xqyB@ ZPNd?[7\ߜ̀ߔ`g'b{5o1Cp95 ?Կ->p8;x nUg0V=_p0]EJ`%Cfe ppC=?18%UTXcjX@`:>.֠տq99A>m5Y'+g0 p[Sw*))go?v>.;rW(Sps8 5 oLb(E+!CbuX/ W >I :vMn&K]ޣWQb}/jg4g?{ BK'%YH=Dsۮ#p+ϐZE =V)a"IGF$r\C [Nf颳 pmr1>c|G~ &g@UG7zz6Z ZF\I H*n< 9Wf(]˖ Dl^u]UE䩣9H=@3u:idz^@ɜC"xtKrnZE/9QSګj_qG  o_IZ<{_yPJFHWa.=!ɸ2dG\ɸ{ ĩ< NY&̮~hFdt(&cz W{QѦBn +%"oȲ?I 3rXU˔GW)[[rikz}E[{@(#ɨc:MtDUov!u}X`KI6t'SG"lWbpٴS?|'fߧcz;}QMoʸno.?(-۝aZ5e7>vRkʀ>74Z:mUzV)iHvz M') 'l1hY`%ֲWp5&>+IN_sIƈB8"ƀ,Da.1B="hoY޶Nw?"m0 Kek8%Ց|[iOxn>'9y M7fT_Z&xv ;+3NNE +eT{GAK!As/O ̡a(9GU<BLX^I\ؼ5Rע u?t0] -pKNz.Nl#zil']9ҵ BOqrSޒGgВjAG,)gpmKtHQ3щ`mBqT)Z<`]k܄]ܴZ`|Qu%S7T yuп";AOߌV1 aMXd+:MlGfm($t`M؃" KEV8zp[^M +lG_̧ߙyfrӯYKR5qyߔܝ,i4[vQgb,ΰMЩ[%F6eby6Ǫ:!wUe2foG0,zW{Y窝ۣٝzÓXʌBRF>ɒ%)m{m3۝}r15= 7RzɔKl5#hkT)wfZ.tǧoD­lAқ*ڟZ"/ it!5 D?IEŜu9Z9gͱßg(39P4]qIhQx 2$7wKh NCif茉# x[[G`}tPTay?4,NQWAI|JS} @%5+~z;]7We軅d<畎%+,} .+z[lc5Z,/>o|`..T߸%-ȮxmO(Bw{ٯt))~?s$ S{PqDE Isn8b +~(BਦfY4*H%lGN%/T:q7ցx.wٵ20 +e 9hYY;!e/;I7B8x7[6^U1^1# %܊K)S\d7iO i8 0#4#&P_#~t<&Ap4?Cx\h,i )~z-9IyVZ5ef"ƨ(&B }N38`ǯaŸjz}qTI ROX2~xhڍ§Lbۯmb/jLDg͂rϏ gvҏyxkpI 7ߎFGdc*@p17B6v/{>I.*Wٜ)!^ᐨwqsU; +8e8'gz=Bg3;پ-ExsFJ&>ªy3G4hV͓;QfQ~[@ dG/sGt_9ϙoӼ},҅|vTK~j? iF͚a-Tk@;nWWXˑCܩ$rpg0O\:PD41R/hZX5UЋOU+( Iz̦n'peRaAΘ9Y)W$sc T( + SnO#oeܔtW/z8궅7iъDln0JK2lv/&4@%fpr@-R۪ar+xE HH}\|:|ߞۓx: wQTb?[:sx]A7^p',} r܉n.(f@6 +ۋMl+%{Y'q-({D1ST!n'7 7mJiDŽSm"x$q:es'{1 2SS:Jޟ%t?yܐYb܈v_0e`ٱE_=Ċ"9+ [fТغ`iN +a)e:%2:pQD]5|/>#&ꌌ4 OQQ[3OUP]P>̀-ђ.Gzqdd0h*ޛ;.>2tD,Suݼ(y.'"v\)DQCWT!M%dSOr=0r||zLjpST^ϋ*|Ы"%(Z$bL),_x ِ.!Q~}tee&bݬ#s4UD9&}>JWW@kBE͂rxȱ=pԅ.nL/zKyAr8Vgwl]cOi bBm=w]yцWeg CCΥe_>=XpR3 P0a`u b;s iO'-(Ui'lC#|;J^NcÞI@IR*o_A_m9Fnx$a:pd*XDt,Y3͕T ȯb3(}Iׇ;b䵏0QjNJ ybpEFٵ]ͫ>*Ϲg::",1\.|ضTыZGO^9@}(D!mջ)0Od$+\6lH%]9TM/, +8~Ԯl]b83" 3Q%6dUn:fٜ.(5)0œq{!P+_@Rk0 r0paEoDž,v7ݭVJ1k &ڳiTh;k&  yif ![GcyJ_ TH}JHeCYl)KP>?W,kzsXMsS@˷TR$ilɘ4>ji5dO6ۊ5r}"J+Th7#LjE{]ݳoL0?D hfCM +endstream +endobj +1 0 obj +<< +/Creator( TeX output 2008.06.15:1853) +/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) +/CreationDate(D:20080615185357-05'00') +>> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 169 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +170 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 44 0 R] +/Parent 169 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 65 0 R 19 0 R] +/Parent 171 0 R +>> +endobj +67 0 obj +<< +/Type/Page +/Resources 68 0 R +/Contents[17 0 R 4 0 R 69 0 R 19 0 R] +/Parent 171 0 R +>> +endobj +171 0 obj +<< +/Type/Pages +/Count 2 +/Kids[63 0 R 67 0 R] +/Parent 169 0 R +>> +endobj +71 0 obj +<< +/Type/Page +/Resources 72 0 R +/Contents[17 0 R 4 0 R 73 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +75 0 obj +<< +/Type/Page +/Resources 76 0 R +/Contents[17 0 R 4 0 R 77 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +172 0 obj +<< +/Type/Pages +/Count 2 +/Kids[71 0 R 75 0 R] +/Parent 169 0 R +>> +endobj +169 0 obj +<< +/Type/Pages +/Count 7 +/Kids[5 0 R 170 0 R 171 0 R 172 0 R] +/Parent 3 0 R +>> +endobj +79 0 obj +<< +/Type/Page +/Resources 80 0 R +/Contents[17 0 R 4 0 R 81 0 R 19 0 R] +/Parent 173 0 R +>> +endobj +83 0 obj +<< +/Type/Page +/Resources 84 0 R +/Contents[17 0 R 4 0 R 85 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +87 0 obj +<< +/Type/Page +/Resources 88 0 R +/Contents[17 0 R 4 0 R 89 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +174 0 obj +<< +/Type/Pages +/Count 2 +/Kids[83 0 R 87 0 R] +/Parent 173 0 R +>> +endobj +91 0 obj +<< +/Type/Page +/Resources 92 0 R +/Contents[17 0 R 4 0 R 93 0 R 19 0 R] +/Parent 175 0 R +>> +endobj +95 0 obj +<< +/Type/Page +/Resources 96 0 R +/Contents[17 0 R 4 0 R 97 0 R 19 0 R] +/Parent 175 0 R +>> +endobj +175 0 obj +<< +/Type/Pages +/Count 2 +/Kids[91 0 R 95 0 R] +/Parent 173 0 R +>> +endobj +99 0 obj +<< +/Type/Page +/Resources 100 0 R +/Contents[17 0 R 4 0 R 101 0 R 19 0 R] +/Parent 176 0 R +>> +endobj +103 0 obj +<< +/Type/Page +/Resources 104 0 R +/Contents[17 0 R 4 0 R 105 0 R 19 0 R] +/Parent 176 0 R +>> +endobj +176 0 obj +<< +/Type/Pages +/Count 2 +/Kids[99 0 R 103 0 R] +/Parent 173 0 R +>> +endobj +173 0 obj +<< +/Type/Pages +/Count 7 +/Kids[79 0 R 174 0 R 175 0 R 176 0 R] +/Parent 3 0 R +>> +endobj +107 0 obj +<< +/Type/Page +/Resources 108 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 177 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 178 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 178 0 R +>> +endobj +178 0 obj +<< +/Type/Pages +/Count 2 +/Kids[114 0 R 118 0 R] +/Parent 177 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 179 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 179 0 R +>> +endobj +179 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 177 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 180 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 180 0 R +>> +endobj +180 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 177 0 R +>> +endobj +177 0 obj +<< +/Type/Pages +/Count 7 +/Kids[107 0 R 178 0 R 179 0 R 180 0 R] +/Parent 3 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 181 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 182 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 182 0 R +>> +endobj +182 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 181 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 183 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 183 0 R +>> +endobj +183 0 obj +<< +/Type/Pages +/Count 2 +/Kids[150 0 R 154 0 R] +/Parent 181 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 184 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 167 0 R 19 0 R] +/Parent 184 0 R +>> +endobj +184 0 obj +<< +/Type/Pages +/Count 2 +/Kids[158 0 R 162 0 R] +/Parent 181 0 R +>> +endobj +181 0 obj +<< +/Type/Pages +/Count 7 +/Kids[138 0 R 182 0 R 183 0 R 184 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 28 +/Kids[169 0 R 173 0 R 177 0 R 181 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +185 0 obj +<< +>> +endobj +186 0 obj +null +endobj +187 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 185 0 R +/Threads 186 0 R +/Names 187 0 R +>> +endobj +xref +0 188 +0000000000 65535 f +0000110179 00000 n +0000115053 00000 n +0000114698 00000 n +0000114903 00000 n +0000110343 00000 n +0000004048 00000 n +0000000009 00000 n +0000042154 00000 n +0000041970 00000 n +0000000913 00000 n +0000046904 00000 n +0000046718 00000 n +0000001906 00000 n +0000052226 00000 n +0000052038 00000 n +0000002823 00000 n +0000114803 00000 n +0000003740 00000 n +0000114853 00000 n +0000003993 00000 n +0000110446 00000 n +0000011566 00000 n +0000062282 00000 n +0000062093 00000 n +0000004109 00000 n +0000067553 00000 n +0000067363 00000 n +0000005055 00000 n +0000072857 00000 n +0000072668 00000 n +0000005991 00000 n +0000006967 00000 n +0000075399 00000 n +0000075205 00000 n +0000007921 00000 n +0000078784 00000 n +0000078598 00000 n +0000008867 00000 n +0000081457 00000 n +0000081266 00000 n +0000009831 00000 n +0000010825 00000 n +0000011467 00000 n +0000110551 00000 n +0000019657 00000 n +0000083552 00000 n +0000083358 00000 n +0000011628 00000 n +0000012599 00000 n +0000087563 00000 n +0000087368 00000 n +0000014215 00000 n +0000015167 00000 n +0000089471 00000 n +0000089276 00000 n +0000016074 00000 n +0000017056 00000 n +0000092129 00000 n +0000091943 00000 n +0000018033 00000 n +0000018778 00000 n +0000019532 00000 n +0000110737 00000 n +0000020056 00000 n +0000019719 00000 n +0000020011 00000 n +0000110842 00000 n +0000021034 00000 n +0000020118 00000 n +0000020898 00000 n +0000111028 00000 n +0000022166 00000 n +0000021096 00000 n +0000022030 00000 n +0000111133 00000 n +0000022917 00000 n +0000022228 00000 n +0000022872 00000 n +0000111414 00000 n +0000023449 00000 n +0000022979 00000 n +0000023404 00000 n +0000111519 00000 n +0000024416 00000 n +0000023511 00000 n +0000024280 00000 n +0000111624 00000 n +0000025027 00000 n +0000024478 00000 n +0000024982 00000 n +0000111810 00000 n +0000025722 00000 n +0000025089 00000 n +0000025677 00000 n +0000111915 00000 n +0000026360 00000 n +0000025784 00000 n +0000026315 00000 n +0000112101 00000 n +0000027053 00000 n +0000026422 00000 n +0000027007 00000 n +0000112208 00000 n +0000027916 00000 n +0000027117 00000 n +0000027790 00000 n +0000112494 00000 n +0000030066 00000 n +0000103056 00000 n +0000102860 00000 n +0000027980 00000 n +0000028992 00000 n +0000029905 00000 n +0000112602 00000 n +0000031180 00000 n +0000030130 00000 n +0000031043 00000 n +0000112710 00000 n +0000031877 00000 n +0000031244 00000 n +0000031831 00000 n +0000112901 00000 n +0000032636 00000 n +0000031941 00000 n +0000032590 00000 n +0000113009 00000 n +0000033384 00000 n +0000032700 00000 n +0000033338 00000 n +0000113200 00000 n +0000034545 00000 n +0000033448 00000 n +0000034384 00000 n +0000113308 00000 n +0000035691 00000 n +0000034609 00000 n +0000035565 00000 n +0000113596 00000 n +0000036436 00000 n +0000035755 00000 n +0000036390 00000 n +0000113704 00000 n +0000037155 00000 n +0000036500 00000 n +0000037109 00000 n +0000113812 00000 n +0000037937 00000 n +0000037219 00000 n +0000037891 00000 n +0000114003 00000 n +0000038686 00000 n +0000038001 00000 n +0000038640 00000 n +0000114111 00000 n +0000039347 00000 n +0000038750 00000 n +0000039301 00000 n +0000114302 00000 n +0000040521 00000 n +0000039411 00000 n +0000040360 00000 n +0000114410 00000 n +0000041906 00000 n +0000104474 00000 n +0000104279 00000 n +0000040585 00000 n +0000041508 00000 n +0000041848 00000 n +0000111319 00000 n +0000110656 00000 n +0000110947 00000 n +0000111238 00000 n +0000112398 00000 n +0000111729 00000 n +0000112020 00000 n +0000112316 00000 n +0000113499 00000 n +0000112818 00000 n +0000113117 00000 n +0000113416 00000 n +0000114601 00000 n +0000113920 00000 n +0000114219 00000 n +0000114518 00000 n +0000114985 00000 n +0000115008 00000 n +0000115030 00000 n +trailer +<< +/Size 188 +/Root 2 0 R +/Info 1 0 R +>> +startxref +115151 +%%EOF diff --git a/src/axiom-website/CATS/schaum34.input.pamphlet b/src/axiom-website/CATS/schaum34.input.pamphlet new file mode 100644 index 0000000..d61b757 --- /dev/null +++ b/src/axiom-website/CATS/schaum34.input.pamphlet @@ -0,0 +1,2492 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum34.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.646~~~~~$\displaystyle +\int{\sinh^{-1}\frac{x}{a}}~dx$} +$$\int{\sinh^{-1}\frac{x}{a}}= +x\sinh^{-1}\frac{x}{a}-\sqrt{x^2+a^2} +$$ +<<*>>= +)spool schaum34.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(asinh(x/a),x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 2 \|x + a + x | 2 2 2 2 +--R (x\|x + a - x )log(--------------) + x\|x + a - x - a +--R a +--R (1) ------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R \|x + a - x +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=x*asinh(x/a)-sqrt(x^2+a^2) +--R +--R +-------+ +--R | 2 2 x +--R (2) - \|x + a + x asinh(-) +--R a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R \|x + a + x x +--R (3) x log(--------------) - x asinh(-) +--R a a +--R Type: Expression Integer +--E + +--S 4 +asinhlogrule:=rule(asinh(x) == log(x+sqrt(x^2+1))) +--R +--R +------+ +--R | 2 +--R (4) asinh(x) == log(\|x + 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 +dd:=asinhlogrule cc +--R +--R +-------+ +--R | 2 2 +--R |x + a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R \|x + a + x \| a +--R (5) x log(--------------) - x log(---------------) +--R a a +--R Type: Expression Integer +--E + +--S 6 +ee:=expandLog dd +--R +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 |x + a +--R (6) x log(\|x + a + x) - x log(a |------- + x) +--R | 2 +--R \| a +--R Type: Expression Integer +--E + +--S 7 14:646 Schaums and Axiom agree +ff:=rootSimp ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.647~~~~~$\displaystyle +\int{x\sinh^{-1}\frac{x}{a}}~dx$} +$$\int{x\sinh^{-1}\frac{x}{a}}= +\left(\frac{x^2}{2}+\frac{a^2}{4}\right)\sinh^{-1}\frac{x}{a} +-\frac{x\sqrt{x^2+a^2}}{4} +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(x*asinh(x/a),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 3 2 | 2 2 4 2 2 4 \|x + a + x +--R ((4x + 2a x)\|x + a - 4x - 4a x - a )log(--------------) +--R a +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (2x + a x)\|x + a - 2x - 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 8x\|x + a - 8x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=(x^2/2+a^2/4)*asinh(x/a)-(x*sqrt(x^2+a^2))/4 +--R +--R +-------+ +--R | 2 2 2 2 x +--R - x\|x + a + (2x + a )asinh(-) +--R a +--R (2) ---------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 10 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R 2 2 \|x + a + x 2 2 x +--R (2x + a )log(--------------) + (- 2x - a )asinh(-) +--R a a +--R (3) ---------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 11 +asinhlogrule:=rule(asinh(x) == log(x+sqrt(x^2+1))) +--R +--R +------+ +--R | 2 +--R (4) asinh(x) == log(\|x + 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 12 +dd:=asinhlogrule cc +--R +--R +-------+ +--R | 2 2 +--R |x + a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R 2 2 \|x + a + x 2 2 \| a +--R (2x + a )log(--------------) + (- 2x - a )log(---------------) +--R a a +--R (5) ---------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 13 +ee:=expandLog dd +--R +--R +-------+ +--R +-------+ | 2 2 +--R 2 2 | 2 2 2 2 |x + a +--R (2x + a )log(\|x + a + x) + (- 2x - a )log(a |------- + x) +--R | 2 +--R \| a +--R (6) ---------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 14 14:647 Schaums and Axiom agree +ff:=rootSimp ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.648~~~~~$\displaystyle +\int{x^2\sinh^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\sinh^{-1}\frac{x}{a}}= +\frac{x^3}{3}\sinh^{-1}\frac{x}{a}+\frac{(2a^2-x^2)\sqrt{x^2+a^2}}{9} +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(x^2*asinh(x/a),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 5 2 3 | 2 2 6 2 4 \|x + a + x +--R ((12x + 3a x )\|x + a - 12x - 9a x )log(--------------) +--R a +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (4x - 5a x - 6a x)\|x + a - 4x + 3a x + 9a x + 2a +--R / +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (36x + 9a )\|x + a - 36x - 27a x +--R Type: Union(Expression Integer,...) +--E + +--S 16 +bb:=x^3/3*asinh(x/a)+((2*a^2-x^2)*sqrt(x^2+a^2))/9 +--R +--R +-------+ +--R 2 2 | 2 2 3 x +--R (- x + 2a )\|x + a + 3x asinh(-) +--R a +--R (2) ------------------------------------ +--R 9 +--R Type: Expression Integer +--E + +--S 17 +cc:=aa-bb +--R +--R +-------+ +--R | 2 2 +--R 3 \|x + a + x 3 x +--R x log(--------------) - x asinh(-) +--R a a +--R (3) ---------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 18 +asinhlogrule:=rule(asinh(x) == log(x+sqrt(x^2+1))) +--R +--R +------+ +--R | 2 +--R (4) asinh(x) == log(\|x + 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 19 +dd:=asinhlogrule cc +--R +--R +-------+ +--R | 2 2 +--R |x + a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R 3 \|x + a + x 3 \| a +--R x log(--------------) - x log(---------------) +--R a a +--R (5) ---------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 20 +ee:=expandLog dd +--R +--R +-------+ +--R +-------+ | 2 2 +--R 3 | 2 2 3 |x + a +--R x log(\|x + a + x) - x log(a |------- + x) +--R | 2 +--R \| a +--R (6) ---------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 21 14:648 Schaums and Axiom agree +ff:=rootSimp ee +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.649~~~~~$\displaystyle +\int{\frac{\sinh^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\sinh^{-1}(x/a)}{x}}= +\left\{ +\begin{array}{lr} +\displaystyle +\frac{x}{a}-\frac{(x/a)^3}{2\cdot 3\cdot 3} ++\frac{1\cdot 3(x/a)^5}{2\cdot 4\cdot 5\cdot 5} +-\frac{1\cdot 3\cdot 5(x/a)^7}{2\cdot 4\cdot 6\cdot 7\cdot 7}+\cdots& +|x| a\\ +\\ +\displaystyle +-\frac{\ln^2(-2x/a)}{2}+\frac{(a/x)^2}{2\cdot 2\cdot 2} +-\frac{1\cdot 3(a/x)^4}{2\cdot 4\cdot 4\cdot 4} ++\frac{1\cdot 3\cdot 5(a/x)^6}{2\cdot 4\cdot 6\cdot 6\cdot 6}-\cdots& +x<-a\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 22 14:649 Axiom cannot compute this integral +aa:=integrate(asinh(x/a)/x,x) +--R +--R +--I %P +--R x asinh(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.650~~~~~$\displaystyle +\int{\frac{\sinh^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\sinh^{-1}(x/a)}{x^2}}= +-\frac{\sinh^{-1}(x/a)}{x} +-\frac{1}{a}\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(asinh(x/a)/x^2,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - x log(\|x + a - x + a) + x log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R \|x + a + x +--R - a log(--------------) +--R a +--R / +--R a x +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=-asinh(x/a)/x-1/a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +--R \|x + a + a x +--R - x log(--------------) - a asinh(-) +--R x a +--R (2) ------------------------------------ +--R a x +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R (3) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - x log(\|x + a - x + a) + x log(\|x + a - x - a) +--R + +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R \|x + a + x \|x + a + a x +--R - a log(--------------) + x log(--------------) + a asinh(-) +--R a x a +--R / +--R a x +--R Type: Expression Integer +--E + +--S 26 +asinhlogrule:=rule(asinh(x) == log(x+sqrt(x^2+1))) +--R +--R +------+ +--R | 2 +--R (4) asinh(x) == log(\|x + 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 27 +dd:=asinhlogrule cc +--R +--R (5) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - x log(\|x + a - x + a) + x log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R |x + a +--R +-------+ +-------+ a |------- + x +--R | 2 2 | 2 2 | 2 +--R \|x + a + x \|x + a + a \| a +--R - a log(--------------) + x log(--------------) + a log(---------------) +--R a x a +--R / +--R a x +--R Type: Expression Integer +--E + +--S 28 +ee:=expandLog dd +--R +--R (6) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - a log(\|x + a + x) + x log(\|x + a + a) +--R + +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - x log(\|x + a - x + a) + x log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R |x + a +--R a log(a |------- + x) - x log(x) +--R | 2 +--R \| a +--R / +--R a x +--R Type: Expression Integer +--E + +--S 29 +ff:=rootSimp ee +--R +--R (7) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R log(\|x + a + a) - log(\|x + a - x + a) + log(\|x + a - x - a) +--R + +--R - log(x) +--R / +--R a +--R Type: Expression Integer +--E + +--S 30 14:650 Schaums and Axiom differ by a constant +gg:=complexNormalize ff +--R +--R log(- 1) +--R (8) - -------- +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.651~~~~~$\displaystyle +\int{\cosh^{-1}\frac{x}{a}}~dx$} +$$\int{\cosh^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +x\cosh^{-1}(x/a)-\sqrt{x^2-a^2},\quad\cosh^{-1}\frac{x}{a} > 0\\ +\\ +\displaystyle +x\cosh^{-1}(x/a)+\sqrt{x^2-a^2},\quad\cosh^{-1}\frac{x}{a} < 0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 31 +aa:=integrate(acosh(x/a),x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 2 \|x - a + x | 2 2 2 2 +--R (x\|x - a - x )log(--------------) + x\|x - a - x + a +--R a +--R (1) ------------------------------------------------------------- +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R Type: Union(Expression Integer,...) +--E + +--S 32 +bb1:=x*acosh(x/a)-sqrt(x^2-a^2) +--R +--R +-------+ +--R | 2 2 x +--R (2) - \|x - a + x acosh(-) +--R a +--R Type: Expression Integer +--E + +--S 33 +bb2:=x*acosh(x/a)+sqrt(x^2-a^2) +--R +--R +-------+ +--R | 2 2 x +--R (3) \|x - a + x acosh(-) +--R a +--R Type: Expression Integer +--E + +--S 34 +cc1:=aa-bb1 +--R +--R +-------+ +--R | 2 2 +--R \|x - a + x x +--R (4) x log(--------------) - x acosh(-) +--R a a +--R Type: Expression Integer +--E + +--S 35 +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R | 2 2 2 \|x - a + x x | 2 2 +--R (x\|x - a - x )log(--------------) + (- x acosh(-) + 2x)\|x - a +--R a a +--R + +--R 2 x 2 2 +--R x acosh(-) - 2x + 2a +--R a +--R / +--R +-------+ +--R | 2 2 +--R \|x - a - x +--R Type: Expression Integer +--E + +--S 36 +acoshlogrule:=rule(acosh(x) == log(x+sqrt(x^2-1))) +--R +--R +------+ +--R | 2 +--R (6) acosh(x) == log(\|x - 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 37 +dd1:=acoshlogrule cc1 +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R \|x - a + x \| a +--R (7) x log(--------------) - x log(---------------) +--R a a +--R Type: Expression Integer +--E + +--S 38 +ee1:=expandLog dd1 +--R +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 |x - a +--R (8) x log(\|x - a + x) - x log(a |------- + x) +--R | 2 +--R \| a +--R Type: Expression Integer +--E + +--S 39 14:651 Schaums and Axiom agree +ff1:=rootSimp ee1 +--R +--R (9) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.652~~~~~$\displaystyle +\int{x\cosh^{-1}\frac{x}{a}}~dx$} +$$\int{x\cosh^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{4}(2x^2-a^2)\cosh^{-1}(x/a)-\frac{1}{4}x\sqrt{x^2-a^2}, +\quad\cosh^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{1}{4}(2x^2-a^2)\cosh^{-1}(x/a)+\frac{1}{4}x\sqrt{x^2-a^2}, +\quad\cosh^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(x*acosh(x/a),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 3 2 | 2 2 4 2 2 4 \|x - a + x +--R ((4x - 2a x)\|x - a - 4x + 4a x - a )log(--------------) +--R a +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (2x - a x)\|x - a - 2x + 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 8x\|x - a - 8x + 4a +--R Type: Union(Expression Integer,...) +--E + +--S 41 +bb1:=1/4*(2*x^2-a^2)*acosh(x/a)-1/4*x*sqrt(x^2-a^2) +--R +--R +-------+ +--R | 2 2 2 2 x +--R - x\|x - a + (2x - a )acosh(-) +--R a +--R (2) ---------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 42 +bb2:=1/4*(2*x^2-a^2)*acosh(x/a)+1/4*x*sqrt(x^2-a^2) +--R +--R +-------+ +--R | 2 2 2 2 x +--R x\|x - a + (2x - a )acosh(-) +--R a +--R (3) -------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 43 +cc1:=aa-bb1 +--R +--R +-------+ +--R | 2 2 +--R 2 2 \|x - a + x 2 2 x +--R (2x - a )log(--------------) + (- 2x + a )acosh(-) +--R a a +--R (4) ---------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 44 +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +--R +-------+ | 2 2 +--R 3 2 | 2 2 4 2 2 4 \|x - a + x +--R ((4x - 2a x)\|x - a - 4x + 4a x - a )log(--------------) +--R a +--R + +--R +-------+ +--R 3 2 x 3 2 | 2 2 +--R ((- 4x + 2a x)acosh(-) + 4x - 2a x)\|x - a +--R a +--R + +--R 4 2 2 4 x 4 2 2 +--R (4x - 4a x + a )acosh(-) - 4x + 4a x +--R a +--R / +--R +-------+ +--R | 2 2 2 2 +--R 8x\|x - a - 8x + 4a +--R Type: Expression Integer +--E + +--S 45 +acoshlogrule:=rule(acosh(x) == log(x+sqrt(x^2-1))) +--R +--R +------+ +--R | 2 +--R (6) acosh(x) == log(\|x - 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 46 +dd1:=acoshlogrule cc1 +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R 2 2 \|x - a + x 2 2 \| a +--R (2x - a )log(--------------) + (- 2x + a )log(---------------) +--R a a +--R (7) ---------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 47 +ee1:=expandLog dd1 +--R +--R +-------+ +--R +-------+ | 2 2 +--R 2 2 | 2 2 2 2 |x - a +--R (2x - a )log(\|x - a + x) + (- 2x + a )log(a |------- + x) +--R | 2 +--R \| a +--R (8) ---------------------------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 48 14:652 Schaums and Axiom agree +ff1:=rootSimp ee1 +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.653~~~~~$\displaystyle +\int{x^2\cosh^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\cosh^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{3}x^3\cosh^{-1}(x/a)-\frac{1}{9}(x^2+2a^2)\sqrt{x^2-a^2}, +\quad\cosh^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{1}{3}x^3\cosh^{-1}(x/a)+\frac{1}{9}(x^2+2a^2)\sqrt{x^2-a^2}, +\quad\cosh^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(x^2*acosh(x/a),x) +--R +--R +--R (1) +--R +-------+ +--R +-------+ | 2 2 +--R 5 2 3 | 2 2 6 2 4 \|x - a + x +--R ((12x - 3a x )\|x - a - 12x + 9a x )log(--------------) +--R a +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (4x + 5a x - 6a x)\|x - a - 4x - 3a x + 9a x - 2a +--R / +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (36x - 9a )\|x - a - 36x + 27a x +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb1:=1/3*x^3*acosh(x/a)-1/9*(x^2+2*a^2)*sqrt(x^2-a^2) +--R +--R +-------+ +--R 2 2 | 2 2 3 x +--R (- x - 2a )\|x - a + 3x acosh(-) +--R a +--R (2) ------------------------------------ +--R 9 +--R Type: Expression Integer +--E + +--S 51 +bb2:=1/3*x^3*acosh(x/a)+1/9*(x^2+2*a^2)*sqrt(x^2-a^2) +--R +--R +-------+ +--R 2 2 | 2 2 3 x +--R (x + 2a )\|x - a + 3x acosh(-) +--R a +--R (3) ---------------------------------- +--R 9 +--R Type: Expression Integer +--E + +--S 52 +cc1:=aa-bb1 +--R +--R +-------+ +--R | 2 2 +--R 3 \|x - a + x 3 x +--R x log(--------------) - x acosh(-) +--R a a +--R (4) ---------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 53 +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +--R +-------+ | 2 2 +--R 5 2 3 | 2 2 6 2 4 \|x - a + x +--R ((12x - 3a x )\|x - a - 12x + 9a x )log(--------------) +--R a +--R + +--R +-------+ +--R 5 2 3 x 5 2 3 4 | 2 2 +--R ((- 12x + 3a x )acosh(-) + 8x + 10a x - 12a x)\|x - a +--R a +--R + +--R 6 2 4 x 6 2 4 4 2 6 +--R (12x - 9a x )acosh(-) - 8x - 6a x + 18a x - 4a +--R a +--R / +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (36x - 9a )\|x - a - 36x + 27a x +--R Type: Expression Integer +--E + +--S 54 +acoshlogrule:=rule(acosh(x) == log(x+sqrt(x^2-1))) +--R +--R +------+ +--R | 2 +--R (6) acosh(x) == log(\|x - 1 + x) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 55 +dd1:=acoshlogrule cc1 +--R +--R +-------+ +--R | 2 2 +--R |x - a +--R +-------+ a |------- + x +--R | 2 2 | 2 +--R 3 \|x - a + x 3 \| a +--R x log(--------------) - x log(---------------) +--R a a +--R (7) ---------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 56 +ee1:=expandLog dd1 +--R +--R +-------+ +--R +-------+ | 2 2 +--R 3 | 2 2 3 |x - a +--R x log(\|x - a + x) - x log(a |------- + x) +--R | 2 +--R \| a +--R (8) ---------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 57 14:653 Schaums and Axiom agree +ff1:=rootSimp ee1 +--R +--R (9) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.654~~~~~$\displaystyle +\int{\frac{\cosh^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\cosh^{-1}(x/a)}{x}}= +\begin{array}{l} +\displaystyle +\pm\left[\frac{1}{2}\ln^2(2x/a)+\frac{(a/x)^2}{2\cdot 2\cdot 2} ++\frac{1\cdot 3(a/x)^4}{2\cdot 4\cdot 4\cdot 4} ++\frac{1\cdot 3\cdot 5(a/x)^6}{2\cdot 4\cdot 6\cdot 6\cdot 6}+\cdots\right]\\ +\\ +\displaystyle +\hbox{\hskip 2cm}+{\rm if\ }\cosh^{-1}(x/a)>0, +\quad -{\rm if\ }\cosh^{-1}(x/a)<0, +\end{array} +$$ +<<*>>= +)clear all + +--S 58 14:654 Axiom cannot compute this integral +aa:=integrate(acosh(x/a)/x,x) +--R +--R +--I %P +--R x acosh(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.655~~~~~$\displaystyle +\int{\frac{\cosh^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\cosh^{-1}(x/a)}{x^2}}= +\begin{array}{l} +\displaystyle +-\frac{\cosh^{-1}(x/a)}{x} +\mp\frac{1}{a}\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right)\\ +\\ +\displaystyle +\hbox{\hskip 1cm}-{\rm if\ }\cosh^{-1}(x/a)>0, +\quad +{\rm if\ }\cosh^{-1}(x/a)<0, +\end{array} +$$ +<<*>>= +)clear all + +--S 59 +aa:=integrate(acosh(x/a)/x^2,x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R \|x - a + x \|x - a - x +--R - a log(--------------) + 2x atan(--------------) +--R a a +--R (1) ------------------------------------------------- +--R a x +--R Type: Union(Expression Integer,...) +--E + +--S 60 +bb1:=-acosh(x/a)/x-1/a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +--R \|x + a + a x +--R - x log(--------------) - a acosh(-) +--R x a +--R (2) ------------------------------------ +--R a x +--R Type: Expression Integer +--E + +--S 61 +bb2:=-acosh(x/a)/x+1/a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +--R \|x + a + a x +--R x log(--------------) - a acosh(-) +--R x a +--R (3) ---------------------------------- +--R a x +--R Type: Expression Integer +--E + +--S 62 +cc1:=aa-bb1 +--R +--R (4) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R \|x + a + a \|x - a + x \|x - a - x +--R x log(--------------) - a log(--------------) + 2x atan(--------------) +--R x a a +--R + +--R x +--R a acosh(-) +--R a +--R / +--R a x +--R Type: Expression Integer +--E + +--S 63 14:655 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R \|x + a + a \|x - a + x \|x - a - x +--R - x log(--------------) - a log(--------------) + 2x atan(--------------) +--R x a a +--R + +--R x +--R a acosh(-) +--R a +--R / +--R a x +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.656~~~~~$\displaystyle +\int{\tanh^{-1}\frac{x}{a}}~dx$} +$$\int{\tanh^{-1}\frac{x}{a}}= +x\tanh^{-1}\frac{x}{a}+\frac{a}{2}\ln(a^2-x^2) +$$ +<<*>>= +)clear all + +--S 64 +aa:=integrate(atanh(x/a),x) +--R +--R +--R 2 2 - x - a +--R a log(x - a ) + x log(-------) +--R x - a +--R (1) ------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 65 +bb:=x*atanh(x/a)+a/2*log(a^2-x^2) +--R +--R 2 2 x +--R a log(- x + a ) + 2x atanh(-) +--R a +--R (2) ------------------------------ +--R 2 +--R Type: Expression Integer +--E + +--S 66 +cc:=aa-bb +--R +--R 2 2 - x - a 2 2 x +--R a log(x - a ) + x log(-------) - a log(- x + a ) - 2x atanh(-) +--R x - a a +--R (3) ---------------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 67 +atanhrule:=rule(atanh(x) == 1/2*log((1+x)/(1-x))) +--R +--R - x - 1 +--R log(-------) +--R x - 1 +--R (4) atanh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 68 +dd:=atanhrule cc +--R +--R 2 2 2 2 +--R a log(x - a ) - a log(- x + a ) +--R (5) --------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 69 14:656 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R a log(- 1) +--R (6) ---------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.657~~~~~$\displaystyle +\int{x*\tanh^{-1}\frac{x}{a}}~dx$} +$$\int{x*\tanh^{-1}\frac{x}{a}}= +\frac{ax}{2}+\frac{1}{2}(x^2-a^2)\tanh^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 70 +aa:=integrate(x*atanh(x/a),x) +--R +--R +--R 2 2 - x - a +--R (x - a )log(-------) + 2a x +--R x - a +--R (1) ---------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 71 +bb:=(a*x)/2+1/2*(x^2-a^2)*atanh(x/a) +--R +--R 2 2 x +--R (x - a )atanh(-) + a x +--R a +--R (2) ----------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 72 +cc:=aa-bb +--R +--R 2 2 - x - a 2 2 x +--R (x - a )log(-------) + (- 2x + 2a )atanh(-) +--R x - a a +--R (3) --------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 73 +atanhrule:=rule(atanh(x) == 1/2*log((1+x)/(1-x))) +--R +--R - x - 1 +--R log(-------) +--R x - 1 +--R (4) atanh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 74 14:657 Schaums and Axiom agree +dd:=atanhrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.658~~~~~$\displaystyle +\int{x^2\tanh^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\tanh^{-1}\frac{x}{a}}= +\frac{ax^2}{6}+\frac{x^3}{3}\tanh^{-1}\frac{x}{a} ++\frac{a^3}{6}\ln(a^2-x^2) +$$ +<<*>>= +)clear all + +--S 75 +aa:=integrate(x^2*atanh(x/a),x) +--R +--R +--R 3 2 2 3 - x - a 2 +--R a log(x - a ) + x log(-------) + a x +--R x - a +--R (1) -------------------------------------- +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 76 +bb:=(a*x^2)/6+x^3/3*atanh(x/a)+a^3/6*log(a^2-x^2) +--R +--R 3 2 2 3 x 2 +--R a log(- x + a ) + 2x atanh(-) + a x +--R a +--R (2) ------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 77 +cc:=aa-bb +--R +--R 3 2 2 3 - x - a 3 2 2 3 x +--R a log(x - a ) + x log(-------) - a log(- x + a ) - 2x atanh(-) +--R x - a a +--R (3) ---------------------------------------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 78 +atanhrule:=rule(atanh(x) == 1/2*log((1+x)/(1-x))) +--R +--R - x - 1 +--R log(-------) +--R x - 1 +--R (4) atanh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 79 +dd:=atanhrule cc +--R +--R 3 2 2 3 2 2 +--R a log(x - a ) - a log(- x + a ) +--R (5) --------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 80 14:658 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R 3 +--R a log(- 1) +--R (6) ---------- +--R 6 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.659~~~~~$\displaystyle +\int{\frac{\tanh^{-1}(x/a)}{a}}~dx$} +$$\int{\frac{\tanh^{-1}(x/a)}{a}}= +\frac{x}{a}+\frac{(x/a)^3}{3^2}+\frac{(x/a)^5}{5^2}+\cdots +$$ +<<*>>= +)clear all + +--S 81 14:659 Axiom cannot compute this integral +aa:=integrate(atanh(x/a)/x,x) +--R +--R +--I %P +--R x atanh(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.660~~~~~$\displaystyle +\int{\frac{tanh^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{tanh^{-1}(x/a)}{x^2}}= +-\frac{\tanh^{-1}(x/a)}{x}+\frac{1}{2a}\ln\left(\frac{x^2}{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 82 +aa:=integrate(atanh(x/a)/x^2,x) +--R +--R +--R 2 2 - x - a +--R - x log(x - a ) + 2x log(x) - a log(-------) +--R x - a +--R (1) --------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 83 +bb:=-atanh(x/a)/x+1/(2*a)*log(x^2/(a^2-x^2)) +--R +--R 2 +--R x x +--R x log(- -------) - 2a atanh(-) +--R 2 2 a +--R x - a +--R (2) ------------------------------ +--R 2a x +--R Type: Expression Integer +--E + +--S 84 +cc:=aa-bb +--R +--R (3) +--R 2 +--R 2 2 x - x - a +--R - x log(x - a ) + 2x log(x) - x log(- -------) - a log(-------) +--R 2 2 x - a +--R x - a +--R + +--R x +--R 2a atanh(-) +--R a +--R / +--R 2a x +--R Type: Expression Integer +--E + +--S 85 +atanhrule:=rule(atanh(x) == 1/2*log((1+x)/(1-x))) +--R +--R - x - 1 +--R log(-------) +--R x - 1 +--R (4) atanh(x) == ------------ +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 86 +dd:=atanhrule cc +--R +--R 2 +--R 2 2 x +--R - log(x - a ) + 2log(x) - log(- -------) +--R 2 2 +--R x - a +--R (5) ----------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 87 14:660 Schaums and Axiom agree +ee:=expandLog dd +--R +--R log(- 1) +--R (6) - -------- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.661~~~~~$\displaystyle +\int{\coth^{-1}\frac{x}{a}}~dx$} +$$\int{\coth^{-1}\frac{x}{a}}= +x\coth^{-1}{x}+\frac{a}{2}\ln(x^2-a^2) +$$ + +Note that it appears there is a typo in Schaums (1968 printing 4). +$$\int{\coth^{-1}\frac{x}{a}}= +x\coth^{-1}{x/a}+\frac{a}{2}\ln(x^2-a^2) +$$ +<<*>>= +)clear all + +--S 88 +aa:=integrate(acoth(x/a),x) +--R +--R +--R 2 2 x + a +--R a log(x - a ) + x log(-----) +--R x - a +--R (1) ----------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 89 +bb:=x*acoth(x/a)+a/2*log(x^2-a^2) +--R +--R 2 2 x +--R a log(x - a ) + 2x acoth(-) +--R a +--R (2) ---------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 90 +cc:=aa-bb +--R +--R x + a x +--R x log(-----) - 2x acoth(-) +--R x - a a +--R (3) -------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 91 +acothrule:=rule(acoth(x) == 1/2*log((x+1)/(x-1))) +--R +--R x + 1 +--R log(-----) +--R x - 1 +--R (4) acoth(x) == ---------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 92 14:661 Schaums and Axiom agree +dd:=acothrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.662~~~~~$\displaystyle +\int{x\coth^{-1}\frac{x}{a}}~dx$} +$$\int{x\coth^{-1}\frac{x}{a}}= +\frac{ax}{2}+\frac{1}{2}(x^2-a^2)\coth^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 93 +aa:=integrate(x*acoth(x/a),x) +--R +--R +--R 2 2 x + a +--R (x - a )log(-----) + 2a x +--R x - a +--R (1) -------------------------- +--R 4 +--R Type: Union(Expression Integer,...) +--E + +--S 94 +bb:=(a*x)/2+1/2*(x^2-a^2)*acoth(x/a) +--R +--R 2 2 x +--R (x - a )acoth(-) + a x +--R a +--R (2) ----------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 95 +cc:=aa-bb +--R +--R 2 2 x + a 2 2 x +--R (x - a )log(-----) + (- 2x + 2a )acoth(-) +--R x - a a +--R (3) ------------------------------------------- +--R 4 +--R Type: Expression Integer +--E + +--S 96 +acothrule:=rule(acoth(x) == 1/2*log((x+1)/(x-1))) +--R +--R x + 1 +--R log(-----) +--R x - 1 +--R (4) acoth(x) == ---------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 97 14:662 Schaums and Axiom agree +dd:=acothrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.663~~~~~$\displaystyle +\int{x^2\coth^{-1}\frac{x}{a}}~dx$} +$$\int{x^2\coth^{-1}\frac{x}{a}}= +\frac{ax^2}{6}+\frac{x^3}{3}\coth^{-1}\frac{x}{a} ++\frac{a^3}{6}\ln(x^2-a^2) +$$ +<<*>>= +)clear all + +--S 98 +aa:=integrate(x^2*acoth(x/a),x) +--R +--R +--R 3 2 2 3 x + a 2 +--R a log(x - a ) + x log(-----) + a x +--R x - a +--R (1) ------------------------------------ +--R 6 +--R Type: Union(Expression Integer,...) +--E + +--S 99 +bb:=(a*x^2)/6+x^3/3*acoth(x/a)+a^3/6*log(x^2-a^2) +--R +--R 3 2 2 3 x 2 +--R a log(x - a ) + 2x acoth(-) + a x +--R a +--R (2) ----------------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 100 +cc:=aa-bb +--R +--R 3 x + a 3 x +--R x log(-----) - 2x acoth(-) +--R x - a a +--R (3) -------------------------- +--R 6 +--R Type: Expression Integer +--E + +--S 101 +acothrule:=rule(acoth(x) == 1/2*log((x+1)/(x-1))) +--R +--R x + 1 +--R log(-----) +--R x - 1 +--R (4) acoth(x) == ---------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 102 14:663 Schaums and Axiom agree +dd:=acothrule cc +--R +--R (5) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.664~~~~~$\displaystyle +\int{\frac{\coth^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{\coth^{-1}(x/a)}{x}}= +-\left(\frac{a}{x}+\frac{(a/x)^3}{3^2}+\frac{(a/x)^5}{5^2}+\cdots\right) +$$ +<<*>>= +)clear all + +--S 103 14:664 Axiom cannot compute this integral +aa:=integrate(acoth(x/a)/x,x) +--R +--R +--I %P +--R x acoth(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.665~~~~~$\displaystyle +\int{\frac{\coth^{-1}(x/a)}{x^2}}~dx$} +$$\int{\frac{\coth^{-1}(x/a)}{x^2}}= +-\frac{\coth^{-1}(x/a)}{x}+\frac{1}{2a}\ln\left(\frac{x^2}{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 104 +aa:=integrate(acoth(x/a)/x^2,x) +--R +--R +--R 2 2 x + a +--R - x log(x - a ) + 2x log(x) - a log(-----) +--R x - a +--R (1) ------------------------------------------- +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 105 +bb:=-acoth(x/a)/x+1/(2*a)*log(x^2/(x^2-a^2)) +--R +--R 2 +--R x x +--R x log(-------) - 2a acoth(-) +--R 2 2 a +--R x - a +--R (2) ---------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 106 +cc:=aa-bb +--R +--R (3) +--R 2 +--R 2 2 x + a x x +--R - x log(x - a ) + 2x log(x) - a log(-----) - x log(-------) + 2a acoth(-) +--R x - a 2 2 a +--R x - a +--R -------------------------------------------------------------------------- +--R 2a x +--R Type: Expression Integer +--E + +--S 107 +acothrule:=rule(acoth(x) == 1/2*log((x+1)/(x-1))) +--R +--R x + 1 +--R log(-----) +--R x - 1 +--R (4) acoth(x) == ---------- +--R 2 +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 108 +dd:=acothrule cc +--R +--R 2 +--R 2 2 x +--R - log(x - a ) + 2log(x) - log(-------) +--R 2 2 +--R x - a +--R (5) --------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 109 14:665 Schaums and Axiom agree +ee:=expandLog dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.666~~~~~$\displaystyle +\int{{\rm sech}^{-1}\frac{x}{a}}~dx$} +$$\int{{\rm sech}^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +x{\rm ~sech}^{-1}(x/a)+a\sin^{-1}(x/a),\quad{\rm sech}^{-1}(x/a)>0\\ +\\ +\displaystyle +x{\rm ~sech}^{-1}(x/a)-a\sin^{-1}(x/a),\quad{\rm sech}^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 110 +aa:=integrate(asech(x/a),x) +--R +--R +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R (1) x log(----------------) - 2a atan(----------------) +--R x x +--R Type: Union(Expression Integer,...) +--E + +--S 111 +bb1:=x*asech(x/a)+a*asin(x/a) +--R +--R x x +--R (2) a asin(-) + x asech(-) +--R a a +--R Type: Expression Integer +--E + +--S 112 +bb2:=x*asech(x/a)-a*asin(x/a) +--R +--R x x +--R (3) - a asin(-) + x asech(-) +--R a a +--R Type: Expression Integer +--E + +--S 113 +cc1:=aa-bb1 +--R +--R (4) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a x x +--R x log(----------------) - 2a atan(----------------) - a asin(-) - x asech(-) +--R x x a a +--R Type: Expression Integer +--E + +--S 114 +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a x x +--R x log(----------------) - 2a atan(----------------) + a asin(-) - x asech(-) +--R x x a a +--R Type: Expression Integer +--E + +--S 115 +asechrule:=rule(asech(x) == log(1/x+sqrt(1/x^2-1))) +--R +--R +--------+ +--R | 2 +--R |- x + 1 +--R x |-------- + 1 +--R | 2 +--R \| x +--R (6) asech(x) == log(----------------) +--R x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 116 +dd1:=asechrule cc1 +--R +--R (7) +--R +---------+ +--R | 2 2 +--R |- x + a +--R x |--------- + a +---------+ +--R | 2 | 2 2 +--R \| x \|- x + a + a +--R - x log(-----------------) + x log(----------------) +--R x x +--R + +--R +---------+ +--R | 2 2 +--R \|- x + a - a x +--R - 2a atan(----------------) - a asin(-) +--R x a +--R Type: Expression Integer +--E + +--S 117 +asinrule:=rule(asin(x) == %i*log(-%i*x+sqrt(1-x^2))) +--R +--R +--------+ +--R | 2 +--R (8) asin(x) == %i log(\|- x + 1 - %i x) +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 118 +ee1:=asinrule dd1 +--R +--R (9) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R x |--------- + a a |--------- - %i x +--R | 2 | 2 +--R \| x \| a +--R - x log(-----------------) - %i a log(--------------------) +--R x a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R x log(----------------) - 2a atan(----------------) +--R x x +--R Type: Expression Complex Integer +--E + +--S 119 +atanrule:=rule(atan(x) == -%i/2*log((1+%i*x)/(1-%i*x))) +--R +--R - x + %i +--R %i log(--------) +--R x + %i +--R (10) atan(x) == - ---------------- +--R 2 +--R Type: RewriteRule(Integer,Complex Integer,Expression Complex Integer) +--E + +--S 120 +ff1:=atanrule ee1 +--R +--R (11) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R x |--------- + a a |--------- - %i x +--R | 2 | 2 +--R \| x \| a +--R - x log(-----------------) - %i a log(--------------------) +--R x a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a - \|- x + a + %i x + a +--R x log(----------------) + %i a log(-------------------------) +--R x +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 121 +gg1:=expandLog ff1 +--R +--R (12) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R - x log(x |--------- + a) - %i a log(a |--------- - %i x) +--R | 2 | 2 +--R \| x \| a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - %i a log(\|- x + a + %i x - a) + x log(\|- x + a + a) +--R + +--R +---------+ +--R | 2 2 +--R %i a log(\|- x + a - %i x - a) + %i a log(a) + %i a log(- 1) +--R Type: Expression Complex Integer +--E + +--S 122 +hh1:=rootSimp gg1 +--R +--R (13) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) - %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R | 2 2 +--R %i a log(%i\|x - a - %i x - a) + %i a log(a) + %i a log(- 1) +--R Type: Expression Complex Integer +--E + +--S 123 14:666 Schaums and Axiom agree +ii1:=complexNormalize hh1 +--R +--R (14) 0 +--R Type: Expression Complex Integer +--E + +@ +Note that Axiom has a built-in assumption about the sign of asech(x/a). +We can see this if we simplify the cc2 value and show that it differs +by a complex value of x. +<<*>>= +--S 124 +dd2:=asechrule cc2 +--R +--R (15) +--R +---------+ +--R | 2 2 +--R |- x + a +--R x |--------- + a +---------+ +--R | 2 | 2 2 +--R \| x \|- x + a + a +--R - x log(-----------------) + x log(----------------) +--R x x +--R + +--R +---------+ +--R | 2 2 +--R \|- x + a - a x +--R - 2a atan(----------------) + a asin(-) +--R x a +--R Type: Expression Integer +--E + +--S 125 +ee2:=asinrule dd2 +--R +--R (16) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R x |--------- + a a |--------- - %i x +--R | 2 | 2 +--R \| x \| a +--R - x log(-----------------) + %i a log(--------------------) +--R x a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a \|- x + a - a +--R x log(----------------) - 2a atan(----------------) +--R x x +--R Type: Expression Complex Integer +--E + +--S 126 +ff2:=atanrule ee2 +--R +--R (17) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R x |--------- + a a |--------- - %i x +--R | 2 | 2 +--R \| x \| a +--R - x log(-----------------) + %i a log(--------------------) +--R x a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R \|- x + a + a - \|- x + a + %i x + a +--R x log(----------------) + %i a log(-------------------------) +--R x +---------+ +--R | 2 2 +--R \|- x + a + %i x - a +--R Type: Expression Complex Integer +--E + +--S 127 +gg2:=expandLog ff2 +--R +--R (18) +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R |- x + a |- x + a +--R - x log(x |--------- + a) + %i a log(a |--------- - %i x) +--R | 2 | 2 +--R \| x \| a +--R + +--R +---------+ +---------+ +--R | 2 2 | 2 2 +--R - %i a log(\|- x + a + %i x - a) + x log(\|- x + a + a) +--R + +--R +---------+ +--R | 2 2 +--R %i a log(\|- x + a - %i x - a) - %i a log(a) + %i a log(- 1) +--R Type: Expression Complex Integer +--E + +--S 128 +hh2:=rootSimp gg2 +--R +--R (19) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - %i a log(%i\|x - a + %i x - a) + %i a log(%i\|x - a - %i x) +--R + +--R +-------+ +--R | 2 2 +--R %i a log(%i\|x - a - %i x - a) - %i a log(a) + %i a log(- 1) +--R Type: Expression Complex Integer +--E + +--S 129 +ii2:=complexNormalize hh2 +--R +--R +-------+ +--R | 2 2 +--R (20) 2%i a log(%i\|x - a - %i x) - 2%i a log(a) +--R Type: Expression Complex Integer +--E + +@ +Thus we can conjecture that solutions that show up with x in only the +imaginary part do so when the assumption of the sign of an inverse +function differs. + +\section{\cite{1}:14.667~~~~~$\displaystyle +\int{x{\rm ~sech}^{-1}\frac{x}{a}}~dx$} +$$\int{x{\rm ~sech}^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{l} +\displaystyle +\frac{1}{2}x^2{\rm ~sech}^{-1}(x/a)-\frac{1}{2}a\sqrt{a^2-x^2}, +\quad{\rm sech}^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{1}{2}x^2{\rm ~sech}^{-1}(x/a)+\frac{1}{2}a\sqrt{a^2-x^2}, +\quad{\rm sech}^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 130 +aa:=integrate(x*asech(x/a),x) +--R +--R +--R +---------+ +--R +---------+ | 2 2 +--R 2 | 2 2 2 \|- x + a + a 2 +--R (x \|- x + a - a x )log(----------------) + a x +--R x +--R (1) --------------------------------------------------- +--R +---------+ +--R | 2 2 +--R 2\|- x + a - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 131 +bb1:=1/2*x^2*asech(x/a)-1/2*a*sqrt(a^2-x^2) +--R +--R +---------+ +--R | 2 2 2 x +--R - a\|- x + a + x asech(-) +--R a +--R (2) ---------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 132 +bb2:=1/2*x^2*asech(x/a)+1/2*a*sqrt(a^2-x^2) +--R +--R +---------+ +--R | 2 2 2 x +--R a\|- x + a + x asech(-) +--R a +--R (3) -------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 133 +cc1:=aa-bb1 +--R +--R +---------+ +--R | 2 2 +--R 2 \|- x + a + a 2 x 2 +--R x log(----------------) - x asech(-) - a +--R x a +--R (4) ----------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 134 +cc2:=aa-bb2 +--R +--R (5) +--R +---------+ +--R +---------+ | 2 2 +--R 2 | 2 2 2 \|- x + a + a +--R (x \|- x + a - a x )log(----------------) +--R x +--R + +--R +---------+ +--R 2 x 2 | 2 2 2 x 2 3 +--R (- x asech(-) + a )\|- x + a + a x asech(-) + 2a x - a +--R a a +--R / +--R +---------+ +--R | 2 2 +--R 2\|- x + a - 2a +--R Type: Expression Integer +--E + +--S 135 +asechrule:=rule(asech(x) == log(1/x+sqrt(1/x^2-1))) +--R +--R +--------+ +--R | 2 +--R |- x + 1 +--R x |-------- + 1 +--R | 2 +--R \| x +--R (6) asech(x) == log(----------------) +--R x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 136 +dd1:=asechrule cc1 +--R +--R +---------+ +--R | 2 2 +--R |- x + a +--R x |--------- + a +---------+ +--R | 2 | 2 2 +--R 2 \| x 2 \|- x + a + a 2 +--R - x log(-----------------) + x log(----------------) - a +--R x x +--R (7) --------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 137 +ee1:=expandLog dd1 +--R +--R +---------+ +--R | 2 2 +---------+ +--R 2 |- x + a 2 | 2 2 2 +--R - x log(x |--------- + a) + x log(\|- x + a + a) - a +--R | 2 +--R \| x +--R (8) --------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 138 14:667 Schaums and Axiom differ by a constant +ff1:=rootSimp ee1 +--R +--R 2 +--R a +--R (9) - -- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.668~~~~~$\displaystyle +\int{\frac{{\rm sech}^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{{\rm sech}^{-1}(x/a)}{x}}= +\left\{ +\begin{array}{l} +\displaystyle +-\frac{1}{2}\ln(a/x)\ln(4a/x)-\frac{(x/a)^2}{2\cdot 2\cdot 2} +-\frac{1\cdot 3(x/a)^4}{2\cdot 4\cdot 4\cdot 4} +-\cdots,\quad{\rm sech}^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{1}{2}\ln(a/x)\ln(4a/x)+\frac{(x/a)^2}{2\cdot 2\cdot 2} ++\frac{1\cdot 3(x/a)^4}{2\cdot 4\cdot 4\cdot 4} ++\cdots,\quad{\rm sech}^{-1}(x/a)<0\\ +\end{array} +\right. +$$ + +This is a interesting result since Axiom gives a closed form +solution to the problem but Schaums gives a series solution. +<<*>>= +)clear all + +--S 139 14:668 Axiom cannot compute this integral +aa:=integrate(asech(x/a)/x,x) +--R +--R +--I %P +--R x asech(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.669~~~~~$\displaystyle +\int{{\rm csch}^{-1}\frac{x}{a}}~dx$} +$$\int{{\rm csch}^{-1}\frac{x}{a}}= +x{\rm ~csch}^{-1}\frac{x}{a}\pm a\sinh^{-1}\frac{x}{a} +\quad +{\rm if\ }x>0, -{\rm if\ }x<0 +$$ +<<*>>= +)clear all + +--S 140 +aa:=integrate(acsch(x/a),x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 \|x + a + a +--R (1) - a log(\|x + a - x) + x log(--------------) +--R x +--R Type: Union(Expression Integer,...) +--E + +--S 141 +bb1:=x*acsch(x/a)+a*asinh(x/a) +--R +--R x x +--R (2) a asinh(-) + x acsch(-) +--R a a +--R Type: Expression Integer +--E + +--S 142 +bb2:=x*acsch(x/a)-a*asinh(x/a) +--R +--R x x +--R (3) - a asinh(-) + x acsch(-) +--R a a +--R Type: Expression Integer +--E + +--S 143 +cc1:=aa-bb1 +--R +--R (4) +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 \|x + a + a x x +--R - a log(\|x + a - x) + x log(--------------) - a asinh(-) - x acsch(-) +--R x a a +--R Type: Expression Integer +--E + +--S 144 14:669 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 \|x + a + a x x +--R - a log(\|x + a - x) + x log(--------------) + a asinh(-) - x acsch(-) +--R x a a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.670~~~~~$\displaystyle +\int{x{\rm ~csch}^{-1}\frac{x}{a}}~dx$} +$$\int{x{\rm ~csch}^{-1}\frac{x}{a}}= +\frac{x^2}{2}{\rm ~csch}^{-1}\frac{x}{a}\pm \frac{a\sqrt{x^2+a^2}}{2} +\quad +{\rm if\ }x>0, -{\rm if\ }x<0 +$$ +<<*>>= +)clear all + +--S 145 +aa:=integrate(x*acsch(x/a),x) +--R +--R +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R 2 | 2 2 3 \|x + a + a | 2 2 2 3 +--R (x \|x + a - x )log(--------------) - a x\|x + a + a x + a +--R x +--R (1) ------------------------------------------------------------------ +--R +-------+ +--R | 2 2 +--R 2\|x + a - 2x +--R Type: Union(Expression Integer,...) +--E + +--S 146 +bb1:=x^2/2*acsch(x/a)+(a*sqrt(x^2+a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R a\|x + a + x acsch(-) +--R a +--R (2) ------------------------ +--R 2 +--R Type: Expression Integer +--E + +--S 147 +bb2:=x^2/2*acsch(x/a)-(a*sqrt(x^2+a^2))/2 +--R +--R +-------+ +--R | 2 2 2 x +--R - a\|x + a + x acsch(-) +--R a +--R (3) -------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 148 +cc1:=aa-bb1 +--R +--R +-------+ +--R | 2 2 +--R 2 \|x + a + a 2 x +--R x log(--------------) - x acsch(-) +--R x a +--R (4) ---------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 149 14:670 Axiom cannot simplify these expressions +cc2:=aa-bb2 +--R +--R (5) +--R +-------+ +--R +-------+ | 2 2 +-------+ +--R 2 | 2 2 3 \|x + a + a 2 x | 2 2 +--R (x \|x + a - x )log(--------------) + (- x acsch(-) - 2a x)\|x + a +--R x a +--R + +--R 3 x 2 3 +--R x acsch(-) + 2a x + 2a +--R a +--R / +--R +-------+ +--R | 2 2 +--R 2\|x + a - 2x +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.671~~~~~$\displaystyle +\int{\frac{{\rm csch}^{-1}(x/a)}{x}}~dx$} +$$\int{\frac{{\rm csch}^{-1}(x/a)}{x}}= +\left\{ +\begin{array}{lr} +\displaystyle +\frac{1}{2}\ln(x/a)\ln(4a/x)+\frac{1(x/a)^2}{2\cdot 2\cdot 2} +-\frac{1\cdot 3(x/a)^4}{2\cdot 4\cdot 4\cdot 4}+\cdots& +0a +\end{array} +\right. +$$ + +Schaums gives 3 different series expansions for this integral +but Axiom has computed a closed form. +<<*>>= +)clear all + +--S 150 14:671 Axiom cannot compute this integral +aa:=integrate(acsch(x/a)/x,x) +--R +--R +--I %P +--R x acsch(--) +--R ++ a +--I (1) | --------- d%P +--I ++ %P +--R Type: Union(Expression Integer,...) +--E + +@ + +\section{\cite{1}:14.672~~~~~$\displaystyle +\int{x^m\sinh^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\sinh^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\sinh^{-1}\frac{x}{a} +-\frac{1}{m+1}\int{\frac{x^{m+1}}{\sqrt{x^2+a^2}}} +$$ +<<*>>= +)clear all + +--S 151 14:672 Axiom cannot compute this integral +aa:=integrate(x^m*asinh(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | asinh(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.673~~~~~$\displaystyle +\int{x^m\cosh^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\cosh^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{lr} +\displaystyle +\frac{x^{m+1}}{m+1}\cosh^{-1}\frac{x}{a} +-\frac{1}{m+1}\int{\frac{x^{m+1}}{\sqrt{x^2-a^2}}},& +\quad\cosh^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{x^{m+1}}{m+1}\cosh^{-1}\frac{x}{a} ++\frac{1}{m+1}\int{\frac{x^{m+1}}{\sqrt{x^2-a^2}}},& +\quad\cosh^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 152 14:673 Axiom cannot compute this integral +aa:=integrate(x^m*acosh(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | acosh(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.674~~~~~$\displaystyle +\int{x^m\tanh^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\tanh^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\tanh^{-1}\frac{x}{a} +-\frac{a}{m+1}\int{\frac{x^{m+1}}{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 153 14:674 Axiom cannot compute this integral +aa:=integrate(x^m*atanh(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | atanh(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.675~~~~~$\displaystyle +\int{x^m\coth^{-1}\frac{x}{a}}~dx$} +$$\int{x^m\coth^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}\coth^{-1}\frac{x}{a} +-\frac{a}{m+1}\int{\frac{x^{m+1}}{a^2-x^2}} +$$ +<<*>>= +)clear all + +--S 154 14:675 Axiom cannot compute this integral +aa:=integrate(x^m*acoth(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | acoth(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.676~~~~~$\displaystyle +\int{x^m{\rm ~sech}^{-1}\frac{x}{a}}~dx$} +$$\int{x^m{\rm ~sech}^{-1}\frac{x}{a}}= +\left\{ +\begin{array}{lr} +\displaystyle +\frac{x^{m+1}}{m+1}{\rm ~sech}^{-1}\frac{x}{a} ++\frac{a}{m+1}\int{\frac{x^m}{\sqrt{a^2-x^2}}}& +{\rm sech}^{-1}(x/a)>0\\ +\\ +\displaystyle +\frac{x^{m+1}}{m+1}{\rm ~sech}^{-1}\frac{x}{a} +-\frac{a}{m+1}\int{\frac{x^m}{\sqrt{a^2-x^2}}}& +{\rm sech}^{-1}(x/a)<0\\ +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 155 14:676 Axiom cannot compute this integral +aa:=integrate(x^m*asech(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | asech(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.677~~~~~$\displaystyle +\int{x^m{\rm ~csch}^{-1}\frac{x}{a}}~dx$} +$$\int{x^m{\rm ~csch}^{-1}\frac{x}{a}}= +\frac{x^{m+1}}{m+1}{\rm ~csch}^{-1}\frac{x}{a} +\pm\frac{a}{m+1}\int{\frac{x^m}{\sqrt{x^2+a^2}}} +\quad+{\rm if\ }x>0 +~-{\rm if\ }x<0 +$$ +<<*>>= +)clear all + +--S 156 14:677 Axiom cannot compute this integral +aa:=integrate(x^m*acsch(x/a),x) +--R +--R +--R x +--I ++ %P m +--I (1) | acsch(--)%P d%P +--R ++ a +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp92-93 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum34.input.pdf b/src/axiom-website/CATS/schaum34.input.pdf new file mode 100644 index 0000000..1048462 --- /dev/null +++ b/src/axiom-website/CATS/schaum34.input.pdf @@ -0,0 +1,3928 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZPDSYJ+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/UUYADW+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/IOJTVN+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 181 +>> +stream +x%=0w m"G-5 ݌1*$&.w<@!,JA(l{9sؾ̻;> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/VHPHIY+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/NQBBPR+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/SOIXIJ+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/GCDFCG+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/BMXKGS+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/ABBPKJ+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/PXBQZQ+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1118 +>> +stream +xXMo6 W)[=n[%%3㱝x&z2LS'y'͛wag97?uo%W  3^w{Vg͛GoA@r qks"0nqח?Sv %W ]B@. 4TV52rTG~Q@ס$I? B,L}dۙz֓qqT ԭTV(b.ߧmZ>-ʗk!Q<zI )[vs##Ҷx{1 -, D*AOIY R,nFEjFيYկ*"PjâXrFv._S%HmO谝aF45}!]BP%)aFMz=&kOĢQ"gRJq4_exe\:AEZ[l'baYTj}hMNؓ]nZ]x2՛\%~ +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/JTGUQP+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length 1041 +>> +stream +xM6 :̈EJz){jb 4a4?i02-#jOAyr;ɬgәruAK7iG- em,u57 M=Cgso.p&Z]w&bS{< ,6c$i u.[ +3쎱:!oerƣW3>e0ްl^o&(iR·vIOGJ2 45i,gKCIgSDP2 4ƉNo7n˻7dz_P5eQ ~R^+$,^T@+DhR*ĺ7 !Ԗp*¬Ha:s 1MXY<}x^=( hQdb,<0}Yw #Q9X,>>ԅƆoE~0ECYy`bѫ֑hX _pNq͑V,: K^`VA hש@0O MB+ᐱmCWq4'b/Ѷ8dKuVe8 +t.kz2C~_ _x +endstream +endobj +54 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F9 42 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 52 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 54 0 R +>> +endobj +59 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/DXTGCY+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/OFKLRS+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/FTWJIG+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 883 +>> +stream +xVˎ;^vi66 =H$7Ɉ N']޸m:>Ue0`ܑ8%o +"[b8XMq`,#ʹu(C@xRE~!%HG(<tRDZ::i 4w2.~5^,XB%0%@z} ,@n1 +B)ϑ"Ȁ.0Z0t>hӠ<ո 4D|)Vz!Ru^=KSh&&'c5x2X`uDn֬n7 Ю]&v"[fYX}<"(vuL.nlںjBGЀO."FXUiæT[ PN9؃Ub[4Y8=MqWr='͇9(*xz4[CfG gvi;L{X‚ú!z_cOWEBX,36)_M-I~/uu]?- Ү^pw\ד˲qM<O4yA@ɓB"W{X +Is" nn&MCug\LtY#9Yll3ӆOH+l'OxJ`&$ +endstream +endobj +69 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +56 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 525 +>> +stream +xڽUˎ0+Q3GʢU3UvC+0HH!R)_'6vZ*H.>α (i'8H6aa#3 +OKI~̅PgѶe]O^q&cHkJyc|֖K]4/b6?>SeK.u|F Vx8uPDj2`YOgTTbQF YbD=4=t)3 D"dRhʽXxۏd኎/\$9o$@ iof@XvYr >La̕v9@?De5D?2C[ B{ 1ЬHtLgf4vr./uPy~WOuy+8}ZbhrPo_F% + *a. ,(m~^nTw]YohGl1UU)r) +@!2ی`81~H'ɛ_ +endstream +endobj +73 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 1020 +>> +stream +xڽVMo6W(eYr/E=6Kݭk`㸶@~|%K`䛧F#1B;.?wI J_Jpq:c%MQ~jW~}gY`c֦[đV"(1M!c">?ݑ>h@hfx#B-[ .&Ree +L3`{BjVNw3ݍPޓRґ;&ԉJ6sTc1^2B&#XH0YHHITeTS}BΎ )u6;$#I%NŎF*bբ+Úy>9bPcl -v<5ZXX +J3F IU-'X愥ҹӹyhD=˓zȹsy<\^PA}!v|^C]^7K-z-| ӜzdFN4-4SE )!ޠ^=>^ӭ=8Ƃ%|q*Vͨ3уK v>eeq4D;1Ys5"0{Pl&#TCFMy{;)PG/Iջo) [4i4+riH]5b>74}Ч*T +6 +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xVM0+|LJ ĩF@TZ%-"HL$I6bwH3cAƼCoқ[‘ND7H%M@A˜PDpcAE@Øb~I? bB8 X \A,p09,rE/2[8,~d~d}ٸ릠6F|#?nw 'AT:V'`/Ǎ-junj eqyI;J)Wqap;>.|gonY0 c̄SeMl +endstream +endobj +81 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 214 +>> +stream +xm;0{~ŖNv#]q$qN.EJ@QO3;A XW\V+pj8(p=A̢1/G"\F((R-Mt ~oU[X{>9(ҟm/yUw8B}CȕQ@!zjai&{ГݺC6a4_~*>>c?XDR\EV +endstream +endobj +85 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 1062 +>> +stream +xڥKo7  ?aXOs+ptN`P^P"c*12jl00FOt#rRḅWyѦ Ymm,FEOg(5;Č?܁s}"azum>nZ3ھ8 I.'ē{Z0Ŀ ALyVst ]+In5Hh'O}̙x1P.P 9fd:ʬG\.9oOU(iVr8}5SF(fFҹ,Yש]sXV^r~!WՇx(twk7uph^wxWM纩JU[i6{Jh邉 +CXU*ANvz):-&dFp:dm MB& +i5MpSre*-1)cZDu #4G,R-O&҆}W,ު)OȺXe[K2kBVRV +YXRf=|tT@ U^\ocShVh]ƫ` f\p\C% 2+}zݴ'S/>6QǯO|ؽq0vw0͙Y80ww\\KS+k;)WMX˵N-fquAX⩐߬d7lIt$9: t]_\+ْ<^As*ouv sA;?NRL +endstream +endobj +89 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F3 16 0 R +/F2 13 0 R +/F10 45 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 539 +>> +stream +xVM0+|L؎+"ژRiՖ 3QH罙EƼCoG"+oHXR%GLbxB(!`AX9T(iAEqCL 'Ad7].,m +z,*#ͦy>l x>Ehp՜uvRJlJ*MTo$!*xq# 'RB]a2Q/lXiwYou5^$VO֋f~62P^,Vrt]GW"l>÷)xdMzMdL^/{\1HUzmR#T Wi,;bfOO8aD)0ʀE-a!/c3>k3e,0ơl97,ʈLf56ܨ/1iZ>nh(Ǘ+LD%> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 1418 +>> +stream +xYKo7W쥀T49| qu +TQXUȒ!+ +wH]ɏ:M㛏r2Fn{.3GΦיhFeӟ?9hj|L@-mlt{?U|qXm7sLדz\ǎ]=mU#ʨldfc|fX5cA'qfXv~3t0NˌK*GD$qz|'KKmt2Jq?cG*3?,Vg8(SBHڟH܃[(*-3wх,o@-#)RKfg!/.-)a]F'6ièRZvML 0G9RW!f2E7lA }1I}LmES}L)x 5M@*n< Bc)z& x>úK(Uz"*gPC[ [ +ԹV}B<}16ԉodѓ&mLdFPSQ5D0'ƠU$@?z4oKc +C *7 lqyMɪ LEܛ -Zg.+C0H= m'W5ھ@wa|}!*VT#T xOTU/ǸmQ?2YebmF-gI >ER{;'U kB*E +MeC)eajN|Z$mba8v}4fGhsvd 'dH9WƩ< ek㰶ķ=!N< /VuL~h*XkÓdu0*ו1IPWfOy)ZeZ'B2*}Wx^-|Qj/U<o(ehwƧ7BƏUю.9Fv 0 94+yWC1?)_{U8> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 981 +>> +stream +xŖKo7m7 +)KPhri6hGq + +w},7=T<8̓fRHXzo5-f̂pqgDCfr&7e?~] o Z$L&Wy%f\ _i<TJ [?Hgf@)QCZ'f2ar`*?oPE-/(fW;_ < +DV K$aXRDΜ $iP.?9P9G-F.;]!fhU@ Cۘ}D{vZN.j>4໳@S|%cԊ>. B#SMn'Jgh""&dc7 PG.G$~xRSQaXq ,<Vkцik:T+YGBҐS fpq/UW,Y0e8eR7ӄ}VhηR2|5M7 4L]Cl|M2SgU`X^4ln57,&0MǸzҺx6;Z{]E 6opʹ 7 T,x]%E;6e):|8_|`uCWS(يWUνw>5}39~}އt92VMNc)K\+޹m:%b]kM2ЃT 1BRx>:{v?7c]NGKb>ԫfMO nn6[>0,<=W<*,B#'* R\lzHS\#yI; &~T.AI|)@}\AJ&[讋}5^fjq{نonc+ +?=(b47 ' +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 554 +>> +stream +xVM0W&GʥjjSʭZ4*IIR)?6&DUT"řxQZށ7Q CA  + ǡ` yكpØF@>RЎ%" +Ň 3#-ETʡ~<yږvy:lS/M/ tZVi sBѫP9xWLAP.Mc2@}@ ȉ>W 6& iML t&uiu|I+ԻppP5:1^p] u:{+ߟVcFI(kݧ[>̩]#U|R˕N<ժh~g~J} Am`ҨHiԣ& +ɴbfsݡ-ۨ_6X5AU?:AU0kx>97l g}`wEbZyH[2'o (LKz{cix ĄXod7Efш=s`w &Ӝ.8R1[kl@0eǕ"Uua +endstream +endobj +105 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xڭM0>V&6GîC E +%Vul$\qf3y xO  pq =NAW 1"ĔS'vXZBs΅S[΃$0"QjfQ;w}=Vp "+ӊKL9$}'0vOFPKooUw1I<,^f19iY|x'z٥Kjvp(J_cUfqmFd~_uQW˚lQJcuPbo6V#H1BA(FMf]_dPWqC[;0'-R2bdO<(ճ<4E]se(5{[mpLPG/7uۦz_&_cldҜ slǭk(x +endstream +endobj +109 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 993 +>> +stream +xVMo6W͆4g%n:EsLF [v{'EpH&o @ ofA8ø-ul.8 ]X]\P @heVFH]J [ iG@lM?J igFȒ}dQx[ HRAhzQhRM*'Ae4 K ĐG.JQ:b!>G))v !JQډzCAQp/^hM|!PNeC2^-yg#KZYg!yy5[VCNhsfӳr(*Չ꫕d&:Ӌa~*O`jZZ +;o%ahg$vO'5vxM3dIeZ'e(V saxsm?Ȥ?ڥ>"Ry"}dJ+@>t4bå0-%1>wC`: PAt?Ej-3 rv3Itb@dnlõ~Rխ_gHGp> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 545 +>> +stream +xڭV0+|Clm)٪=Vfij%J6 lBrBJɁ+w,#:ђ߉bbT(R|ApYD(-~Vx`TD, yzu{8c a*hdkܲEZcgXe&nn`"xH3}fxP ;2я*YTy)W.~塬|my+O@ +o +(GLpBa^(<@K)śdyF~.۱DNXc)TZ>pKxSQL\CM6Kkm:ѯ%-D%I"6v O2JvS#Xaa,h.|]t9^aIGUպ4u'z=hx:cƁe2m1M\O6ٷc`MK#\n-Yoʟ}-q{u_$h&P>/o2_'yn3gM/v +endstream +endobj +117 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 408 +>> +stream +xڭTn +8ڊp0zhդjS[CT7Rc[N*R>`ӏU;HA==h8` =dDo.$Hl*bD]H uf{ {CN4c~ X40֪/`s(Hvq$ 1!<@{u0vxڀ𕧱#ȃl F,A^)CU觐#d\\yfOZlsoM6iIG*fY$XZF{e\&;?'_hti~8B:AE:df#F1N?>g˕T]ȗ֖R6SJleeaJњu]É>1e^U}lQמ? +endstream +endobj +121 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 1163 +>> +stream +xWKo7WB8NllR5ڮm[ ?Ǯ/)N] qvD8\n{RTd1YMqXMeWTOg/ ̛"eJĐC!&1M> gW?>~00mpA"{jOĴϸ!i(\nE"4wZ2BBc:&ib4w2mQ]Jm11zED s(׻r/ne DI"<"&{C'E!Py +ϔB2V1q!P⺋upB]<Z^t`M, r>%?V\?DE#7tn>lP9A;10,xWA `yR$DĖW$%JA=UӍj|D!hf*/cSnvWRc`,Ӯ`,;b6duJ_U1o}󸫫vYS a?4HK(8gUYօWhipH +ds,jKP[FV.wbyE39&= 5H+5&֫͛.RU֫U]gH'eRt 6-ĖV+䑔H91LATapOΒ.قN掭w> =y*7BBy.ۻNC?c_cHL#޿LuhՠѰܮDKE> AZ{?LjNuE֫|~=_-љ/ĉ0?YۭZ:\-d9J Yp|0UL%a (.{~ +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xڭM0 +UNJ\]Gȍ![- 4db*%3x\*ȑrI\4+ PE_ J?w'rI@bCo9~ ()pWh̹a!1$xirC6i0_ e?7mJd t~ȪGְKS]@L$bcAM:{|:?NixxZr߽L'$7)=y۶/Kzg4OF'kyE|[Y@j@~D v0t>CՐ)Lie6״]CI^"p\z! &*`m$G(g0r}>QP =Rf]]@_>C LkJ!dD;禺b`jАT[x==d"$VHFq۸RW:.8>A9il(̦8e#JH[Pa-]fuyDsÿ8teŮ6.n* +endstream +endobj +129 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 593 +>> +stream +xڽVM0W:k;8*[ r۴"-&J:cXnĐɛx= }+@_%ї;} C X,!٤z<)ca{6n2wN^fEhVwʉH@(#Tt>PUpq|Y7q#*0߃PgO=Y٬oNClm^>{cX5-эXxR. j +0c<DU Qb@S[(6{*8R^F5\2d,aR0Y\YtcO &]A1hxwrF <0Wr5֙nS]΁S|2Ć^z) {+CSlD{bnFj:?,Hgb~> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 86 +>> +stream +x=!0 P)Ѳ2KHu Ccco H#[ogOTˏN(VP{XQ +endstream +endobj +137 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1223 +>> +stream +xXn$5^vnQvAd SfhBLH4|<ׯ*׳`Tl߇9ק\!qNIx|Gm*"~%FJj,3}~eTЫ9Z-v?l3E)C\~İ!6JŜ%9!.*f+B[OO4b&&5(1΂,ƻt"vR!4qK>ز[Ie:hB L +۸_C)J']33aB[hfQ|֎HB GY1evI # +t$N 6Bho{B2َ2ZaYcJ>~LojC8&πLug·{8 b1`C Jr0r=k;Lf[C!2c3dհGE3Si^aՉSGGh4 QDA(T+7$3kYp!Pʖy8lY! Cj!E&&gpMw_`NiIHq+wH1{d{PZpW(>w> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 590 +>> +stream +xڭVK0+|LU9EplU +ڮ?c7m{> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xڽVM0WDHZZ5])EZMX5ub $ 7#RP/_S }Aȉ/ ~E2\mP^0F?=S #k:A*\D-[gIs̈́m AX)UQ!a5a73ҮP>٭~di +VX}v5?QOaU> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 1012 +>> +stream +xڵKo7X7:@:Ez +($dɰUt wHKkɉ]Z΋ Y&@ǟK,@l9[ ΰ +ίf 5(xA$fQ~ )ktֱ]DZE&YBvVQdB|PvbYHYFuKH8rb@{Z^_El_]# Rb՜hj@$(n(\޴/mgπ" ZAUɨv@b|F"XǸ dj%x倩#%2 VD!\Ykku!^~`6M.2j^44;WG[}J: QQ@&r ` ؈;PA땉U1¬luuRڂʮdCtf-Z|̊T&e|a|,&K)mq:}x%tUhCJc@ѾVcwh& 'H ҕߠs滜<v<8iL: %Cad(LgdЭcd<>ɺd~f&O5? +~(8݁P +A=ɺg0={9Z׎lI+.,'p)Lj4 X7O:u5]2:ȣ}oaulHS̓bɯ@泹;387 N؅w'ӏ8.pԥhS)rq7ݽj~Y`QW)M6'ԫ5GCé~a鱘]>j:mMADAIiX=jr2}]j[~+[']eyqY(r1;Uu\:7c;|5!8S<}=P)d{IkGbgg> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 1085 +>> +stream +xWKo#E+.wW"8F]!IAOuOݞ$|;L쎥fRlY 0 dͤs)Wf_|cY` I$K& +*͸j|||Ub-X,Ht*ԲQ;N35b@{Pfx@岼G1YPPp5S{߰ 2*4oۘzgNb&%@ikӇpT,x,WE{=\eM{S}q{ })(|&p'7`ʃ^;q0.b &r `j*z@SJV*Iz9?\O.-%!D_"}=h" ب!>U.؈AV0aT4GeZ6;`U= .CS:9i%T"1.кi1h%ի{)Um`ԧKa۞5:U-z2;4B)[2Hۮ_Mk@Q`#@i-4ёuN>Mޑ##uliK ,o#쫁!BnG\tzL 2x>2%yDܒ[݅F5ӹUW\-Z =+Nw۪7zKk\٤4t%߶B:޺^we]Hj,jlnuldǟ&?r(Ezm8(Ϡu~pIXU +#f]gy]R=IR5ŧȤk^Ĺ)_C(Tl_'##X'&wޙ+1)I,̿EƨóƳ+lK~73yl +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 469 +>> +stream +xV=O0SUN`lTiIE:6mN;Y;?߽SHJZ"B +dRP@"X%/oGRdҎ$v >Jj /F&3)B L@8 vu92ײiVujS.٧~b>Sk#9i1;Ӣogxݓg +wƍUxo@ LqCa p]\//7x Xi7@f IG2C*e)p`>Pu( 8rdHOj׳v񐞊;Us[UƯyxlJ,TY0Wrݙ ? 'vU&A#б9*Uiw=Uvg0 +endstream +endobj +161 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 855 +>> +stream +xڽVMo@WB<Kդj 4N$4%IUwvƋ jbf3[l|.K6ƴX-hf.B 3!P .Մ̴ëf> ʇ:|F9EmMh%&Zil +"Oq5A`Pyv6L%PJRS 4]ȲXJ(C :Eyx2@ i0 9hB4%r`(igY##Cݘh@ܦ%9C@ai0 +N91 \ kx3eSް@JR11V} F3`2:l@%.L Xe`c@дodRF-^"ar#={ CL.\aj. +B!ZRRjh: O f%Cч3T{Tq,4s Nvd@7'c2j +ԲޗIϣNNor=r =΄,1kr2[=-nӢ9A5.iitS?އ4ӌ" 2"BYSť+DHeYMp[ְb,^$'m;F')Q<{KIDyuwOMvV=;>[O`wrgi1N5|>V'i1k̪kL-EY#n$P=:$8m-xxybEuf2-l>WM%J/%U#fȄɟk_AqG{'b2JtWь#Ӛ?{KuV[o;hם7 +endstream +endobj +165 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 415 +>> +stream +xڥTKS0+r AcCM< -3<:@G7$Pc.ͷ0t+ #og0/u ĈnQ?B„DĄMkQ7a; +HZ+ƮNR",:l@ .LSvmxG|Myxyi)yU%Ewa>H& +s@YZ ze , lA{? 28 U9)cuS;~U+]~TFX")j#RvMQhnʹk"Sn,wG}"ۤy),Ln:x%Ý8/I$Ao)ng SۖٺC-HԿy+0 +endstream +endobj +169 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 882 +>> +stream +xڽVMO1WI؉gKUcI/eAZhJҀU~d&!$oFHR܊r(gZ쇰Έf`}H)"/'f\>Ϭmë`oUR aۘu#B9i]E TT,n B(\`6!!pL Ʒ5SAւ$ƀ/AT?,9YF(p0v.̋c}K2eh g_|t;9˻2ǑРmlb6y>BPGzފ\g~\t8CxК먩Yr{WBt`\\[ƨN!q>bI&DEPY[ɨDӦNv?: ІuRy=ҙ`, -ޖw,LV}Q+v,\>;^]P޶"koÈ,+*5døŻ._QOsUMۺQG ojob5H bQ" +ZtYkwdz|߮yEЍ|pf1-w2dlXr\JZU؃w!%cm!,os,?|avT T4y FqKu̧u}20T|]/t?>jSk:m}1Lcᘆ-GFxe~%h\$QA阠{OJܣIxs3Ez}V]jLJi^n͛`j6wx/hvԳZٽnwQ=w| m{1L|͍ecckՆƆ[2~$)Yd׭ +endstream +endobj +173 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F10 45 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 298 +>> +stream +xڍRn0+|4RƏġUIo.AJ ҿ/`Pe]Ȁ`B@ fG9'bE +D(re$ݐλ~ Jl!o9Vycե+1qLڤ<İ19X+VԬƷ#Y.G×59εi* 9ބmbr0R( Cr95H:MX^{SOݿ2?dԶwh6K?VR!V).YH@ +endstream +endobj +177 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 979 +>> +stream +xڽVMo7W(Y!E!)@Nl ]1: r?P-,μy8L +)=oam3C%e@v~\(J]|T6/?XCDxv!#%}XBSާJ> D̊mHY'<29<_4^PPSQ4TLa!iaC]*~2@8Z!=~{}` R牒P0'WCA(8HDFcyV)"'$z*9afR9}Čf9t]E@! (쓠80dj@"P9HHXҪ[h(nN izJ04tn'r]s|DS ̘ʀI @s<*'1N]MUnhS :e0;< vr)&are3ʀYe#kJi НW?rL8-j͇ajt0iM6j!`w}y\rKϹp;$kIlן.i,Ţ2^ .*&qEn%'1 Y -62Od_ktq"Ǖ2; PIOG:NUꌯ%B ڳ>Ӥ;r\҄oMWշw  +!Nƺ>#"ClEyE)k\U7zOt*i jK4ȡӐVTq\WDmu\zխYS 4nʺT2ޓdG$pH48Ո`r̈RY1Ͷ, iW+ si&w8\‘syjFz}5q5f-Uۮ6Y4hjhwMJ>y\CoN +endstream +endobj +181 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F3 16 0 R +/F2 13 0 R +/F10 45 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 423 +>> +stream +xڝR0>Ea43tl=xheB#$th &| 2- ,@cC8`x@8Ĉ) BSa, "QzoZQXalz]E$/\7#2SAGkRx{^:Ng eIw~꞊*ۊ.|.b!֎u%6,Tzy:mz7S: 2+ZK[p) DDZ,+#z-6N?Xo֚&Z^jnOu +e w%n +kgƎϨdV]}+5M\j_GFBARֹ_jٷ4re%~߀2 '4؇t&>e<4R +endstream +endobj +185 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 739 +>> +stream +xڽUKo@+dH9hQ9!.4=Xmh#Ia$~nv6#`Jp"\$dKi{oSЁyLU_N.)R8񺫨H^f HR +C=>ĂRz5鵜a>D"Q#ESȤYhld֙N]Dѵf>_IG.W핔H}z(" i$–{1r5|t1"t1k@nm9Pi=[ :P*` *% |DZ nd*d[ LKG_ifkN}L7$R[fMRtqk?v.*UCZH;sZ7(WԁHC +2;qeɐ8ZnySכ]mocw|r[m=H.ɴ󢌷㼨|4N::Hmx1!8St<GުV!s*GGa''Q"Di漐T&ۿ7ow{U@%mmKG)|\Lr/f=/Ϊ|^lOxkgi5 +Qc=~~ +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 982 +>> +stream +xڵVKo7WC3| ХSF4kGq J;侸Oۇr7 I!%{`i|ؾ P2 Ɲ˧̆)>Y+7o[DчvGX\ cA "&JvLJPEpUe1Оν ۸_D\_n69OPJ#Qo +}HDPȫ6416Nk%&.|`PT/UN~Ȫ#<0nY\JYxS;>-cw/~L|F;()R DI9ЄH7={ѻͪLJXUeqVf{we?@q+ѡ5K4#4p#ӷ2>4wO aNu=^)1G@ +jo- Z"%< ?=ׯu?>BW&Ĥww=JeW|UENOMJ<vCpI^0Ǝ)c_-MN| DSuaU+et +,%nEԙnTFJSݾ݋.b[kcHӱT,q38z4_[9/RYƹTfkJ0ӢWo᧡'?2O1h +endstream +endobj +193 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F10 45 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 482 +>> +stream +xڵUQo0~߯`HyXtڴ<M"jp&G9w>t[!IdH,X!n)cK$紘=d?'L l +8 =AQ(fLY$ ;6fۣL=p;tKԹGq,˓/g6  "O*9Wv7YڂCE;C=F.8 D$.;U6ӎ4_lqL)\D+ͪCܱ9)ЭϯSʼnr4[CD"Vׯ[/%JIl@aA٧S` +endstream +endobj +197 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 974 +>> +stream +xVn7+C| Ц.je(Ɗj P$AVQ{ G/nhCs!E8<'?n)"$F0 5KFo?VTGifƈכwxMSI<.$ +`v&1Y i 6cP9ܙPOe"gɴ`@nGة"P4|%9='wIP밣A0h d݇ @gƗ(t %ŮF9ASf31 d_#w \HM!>nd aw(x!x`wE9-8>HHv]L `UA}7?0) + +zetH1ס7_R k_SL.dOG W^r[{ +e:D1I节d{JkOj4bֻI zl]WWk4lNոf5]V㺍Q7G:jI3Gvx|jһt\{ع7`8[lf3WMqimzm? +spr@{ \CPa.bu|A 6_ȣ&iX/`J]LPY kNrC'0y gZk{*_M6?N# +endstream +endobj +201 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 334 +>> +stream +xڅS]o0}߯c-LQy{0ءAؿ_?蔭$\8==% +pbD)FCbP.p‚ QDYYa -(|e!_U܀Ah*jkYm֊xp>3.뺂}.E9W(aL֠mѧ1ӎ{Sj{=q1némwe͏S4#:c~J<8-z_fxlU>4>,[^e-iOX\ MB]XqkK#G$C 1cECr} +endstream +endobj +205 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 872 +>> +stream +xڵVMo1W@l<5I[zi66hTc.kݐ(-bXy3~o]go3@ ; a:xwq49\f-.gym]aX܋!_+`K (ѶmI!R(d]=I. ZaYAS +v(/eJVN$f% 5LBE]N eh=WmW T{nG)O5 ,S(=28ĻHvw+)b#x rY.1v~i:$OK4+d<fNr僀IvMwEhQԹI"]7ȶ2Goe1:ْI> > %u G2"JVMB5RH 7uA@zKlxd[&X(Wc']D}sU|-f@I͉bߔ45:d͋SǤ%^meݰGk{\xr)t9_9X.gWW|vtfh@ /Xg/_]a{n z5E֌q|^aܣ77mJ+5 vT%Ɔ1rQR>~Ht +endstream +endobj +209 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 297 +>> +stream +xڅRn0+|4jƏġUI  %Q4w<;2 P1xxؓ bE +wP $!w`A@|oD)\" w_I%)P&fL%0lDYR#z};WiZu%m[֕?7/ swƶSbrXR2 n]z:6I^>RNcf,^k@djmpE7VwxTHVqʰGa|o; +endstream +endobj +213 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 964 +>> +stream +xڽWn7}WQgxN>6K1vǀjr/VE0ۙ3$(%nE*~,_!x+ va.96/_;!V5!e!-hN;xAX1S6<'dp-j+' p{*w6A90UF|dXPAx}މ7%;I$u+!8Pe($a"1<#8bOxDbO\K-do8} SwBP1WkA@)7Xd "Rܘ'V2e'a -3LydoGDJ\T44().x +ă1AvyM PtaANnLm O¤CΜ04R}'e|;6aXBI9KTӸ;4Břlhw(8+r⤥gѶovz?zk&"M6ن^q[WtQou5utA8Ci<sIWjV>W1Hh;8E}wU +GeLiaeC ^wn狢#o$} _ +3^+әnq%"? ޑO>?-My3r]>8v}ZW%S͗nqK}$E͏E:yȄ괚F8A*ԎJ}CmLJLKҘ SùYZ^_O1?1ɍ-'y>Vv8`igLsJ"jmW;t|mfۂ%7)A}w;/G>" +endstream +endobj +217 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F3 16 0 R +/F2 13 0 R +/F10 45 0 R +/F9 42 0 R +/F8 38 0 R +/F7 35 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 937 +>> +stream +xڽVKo8e&|S4.6-"^ApU>$Q^BǏ3C(PJ_>?7$&a`5Y-r5Yٕ[T_JrTX9hʨ$js8=Y6jּY TcZ{!q{vu}ܟxݮ˱~}y?mظw|s\j-z{~ C㱮+|/: 7Bԡ@fy/ ^9K\x!f?C3ٗ%i-芧 xo P0A נ)dAF|\' +dϢͪXD#nF%J8`,G)0<nؑS{B(-@[ŬPߓC !"EU$C]jEkLN%H5´D4p>Ĵw][!BPM"T` L(g6V'+ +вh5 L"&cka >*V G@pQH™Hj3N +2\y?t"u^j]\G+@2QbXD2:z_\QW#pI іk P# +O0\`~F#4v0k\h>dŶcȅiv[9M,`5oKvN{iJM=mJmIFV.6:Ɔ]j"mr7~8)v6N[OnPj'T*7u3I~0ȭũO32xD 4(vu?qa~qx0*[:/96cS΍3pa>zaWb +endstream +endobj +221 0 obj +<< +/F14 67 0 R +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 984 +>> +stream +xڽVKo8W( t=U( M4z}d) PTK7b`oh&5(_ ΀@SbťDS|dfY}޿ݼ,@чV.Q?H. Z0Y)Qd:N3Q/I3MmOjoU\f{"J +.3f2t +n<*<oSi=3 R'I iL=0btrU8"6$$ڎTC#Cg@\1BA.)2-! %PMsZ 0bx`BUZwJl)AӔEYqpnp=+t*#IazpTœ#OH&PEFuJ +: l X[q̅,[M;EۭuoNQO@)TYJprcQnL,! zah'{Ψ^ m$=G@dY{s8ߴHw\O]<}kuy n_nq XwOP 4jߧE)tάpX=ʢ,N\mNWl? ^r(;8J!]JiFnj: +lm0Rn6vqRx +=Tu/Bd _s! % R;l<}{<|N߱هpXBfr}prSxA+Կr"MhҌ5^0ƎDtxӖ>;1uQ=SꙋA~y9ˌN1z4c4vWUٮ j JguaUj̉KѵBfP 5"0bܸGNH]sYBᗪ}ji郻Ъ> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 435 +>> +stream +xڵTO0W8ԎҮF0Olu#ֲLF%G A3z S`H2@' @8(|z0>WD_Z߼9q𥉈|(+5WߑqD^Lxlvg VnZgmg81Ѐ2>[WqU_ICjsbWrVL_3U,jV٫LG;)_\qhKmR.N&m݊fj聵 zҁfTՖvs܆5Уo%RV.ۋcFCq AEojM 5UV%(ΓE|X,x(Bn-Unu[d^}̠!yCPh>51VGN›f^J" +endstream +endobj +229 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 901 +>> +stream +xWMo6W(eC37qA 9K-gk/]@~|_- +4^dof޼ye&nu^3BiY0n a[r!MvKYkէym]aX܋!7 +EY{"G]5H].J0J`Tqil P;YQPyC{FȂPP.o)AAWPW!IP4DPqK=lc!@ $~s:8b]Bj}b}|WQiH' +G*RB!Up|/İRS$RdHeid=ʛv7CjQR`> IUϾ}x6H\Od#|sbҦ$ 7IwvL΅龻ñ'ɩ49kͷH~J9H]Ycz&';A{t<+pEvdjO~5G匙L͸ p1 |,hu׃Cf |-خ詶B%a>K-r^x{+@; +F_sHH^k?~22+oQ0I+$WZa> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 558 +>> +stream +xV]o0}߯#HyNc[$JiJ;iLꏟ$`4M*s{/G 4Їdq P <  %G[㍏Kc{pv!l(Rr) JD[BuTMvٗflb["aWƪIduG1u䕍)?Ҟp=XlE_4 +4_- )yN,wwDS_.N}~]uS v1_RѺtL9ݛa}G/O>d_rUmNUjuV`XTgy4C׿>K"u\S8r +HTQimގAoit򒋺;;Uwbަ]ƼFZvDzQ )ͱ9(h5d\;E6,xSv9.ކK5*iÏFV5~>[bNzȁ4+9yƊ3B^DݷpRYqlh̊x A6< +endstream +endobj +237 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 648 +>> +stream +xV0+T&cl)٪=fVBZEJ4IU*wl`D113`S>=D  Nǯ!Be %B$iH#D i-Ȟ(^PR5.B0roF9li\}UDf[e B(Bdc0ۮ:_Mu}>D6Ϟ!bBZ,dP-f|};l 5ӥ "R?w"T ⶐTZ,LūqoF-"۩(0Ժs^.eÇ㮪-ܯ&CKUŲ=?,uЇ0ERAQQ`8Ou<3c7WG y4~}57ԭQ)zսsn46rǸyx@8[z/9dfQ-Kj4P;ԦG +4_&jMrGD;W"|Z\}L: +ұJ7j Q3j +4*VUD3%W.H!a݁=-q["ӑ +0B ?q}'$t|7 Sa +endstream +endobj +241 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 544 +>> +stream +xVMo0WR L<8R/I6Un(fwI%*폯a?6z(1DbBPdW@I% ,h,9~/ŸWDIZC9PF,px)ֻ߫% 0~j#.yy2(JIvf+h)Ҭ@R_lhNn B;Ho?1ȭX:?>v7@Z5aDߐ;J3ih4jS?osګ0 A%}?y4Htegf{eLl{5.a=fAZadž1D:}&?',S/hlY +endstream +endobj +245 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 375 +>> +stream +xڽ=o0 +/@Ȏ&ԡI.A +TU~|L@v(%݄ p(|Gw/S &`} E(;4 +% s?w'1@8~JC*RmlK (FR|4ejcl"O"MeRAw\)lA氇}i{s KQ,~N22M95ҰgGWEW4_m t\D]ƻ$jO|$ld}D5U+H +endstream +endobj +249 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length 738 +>> +stream +xڭVI0Wpd CLzh#Pz`'XJBH!}o|a<|>n"/ ͖gKԲmVA+(adќAqp\M)W[kX6b+l&K#ˏ17"$D-(HlLvS岴;6ꤥr`|OU 냻϶ ʃ>QWí b޸^-8s. +Y&BeM5:Л;>w*l +r'>62 +b0ZL4vBi3E +S-''rpP;!b +&.nu?̙q/! =+6d ( CqBzc>djs8rN3lM6:HL'KʰeruJ> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 253 0 R +>> +endobj +256 0 obj +<< +/Filter[/FlateDecode] +/Length 543 +>> +stream +xVM0+|AJT9kO"'67!nRi"?N6MjPzbgy)"!Avy^7w!) 4a2ʷŚ'D”fn_O}Nkaɿ)<*!F, b*JI6񧶁 +H1PB .dkH ?(Üm`[Ɨ&[+b7nzƭPi6؍n*۞uԱ! @YCl"5,ҧ5'Z*6a`34ƹ4ʠ`hZeصž~rar?;f}'=&䙚;hĺ=Իwf܊ /W@K;[oxw 3N?&_uyg7)؋.E] 6"FTѢ;˟R.Bʊ¢9 募n +endstream +endobj +257 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +255 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 257 0 R +>> +endobj +260 0 obj +<< +/Filter[/FlateDecode] +/Length 371 +>> +stream +xڭN@>^L dMуM<4)I[M-C+m(a$!Ux `,HSA9+y#o}4/'ĕyW{ .G;i0v6! |B] +*J,6( +endstream +endobj +261 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +259 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 261 0 R +>> +endobj +264 0 obj +<< +/Filter[/FlateDecode] +/Length 1271 +>> +stream +xWMs6WHYL,8NN{lKdVhKYREVfMJC"}X} QB$z[YjU4{FD2>-&C1!˜y*<[MfG>v`"KYͺ9D:lrw,gجW었0A 6$|lLlb< #Ey}^p(O[ix<qUb_+z8>K5igiTvVD.@ 8 z߳7QJU +T:wB (s 6;HE>w]z*IHQ<.%E AUSi,JPDK=Em=ޡJ]|Y@b"F}pYPe6UHLRjVhiD(˳14Bx25DQ]$9 +,1@5f*%5(Yr0npTcTRw%nJ JpM5#kkjb~GI k-Z"'- "O緦دt;zF%[D+ftn=/ScJm6BN}hb+Hc0 -*k$6Bi)) ^PokOO +I'ps ۅEvps#5aζ:]^kק}|=ѵ*㛁'D՞>ZnFZBoz-=fC O[USpo 5{Er+yM?kv|Ձm7{8Ʒ-W;.<@B9:ĮF&6Xgn9Nڝw]?Wyl8 VƓ7B.q4>^eX\g1u! bk)~8Ձe@_01"w\3}WZg4BXӒұyD?ٝ 򒨤~,Ak<1Ӟx"w'OcbB (ֲ3<\J(d'iIgM@4;nwyQOp7k|R:.v[ |nn5\?B̮?w4>Azl&g`#}!3sziz.WKjKA:;UHb0)O VZ8`xBLݷr֝H!k +endstream +endobj +265 0 obj +<< +/F3 16 0 R +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F2 13 0 R +/F10 45 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +263 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 265 0 R +>> +endobj +268 0 obj +<< +/Filter[/FlateDecode] +/Length 529 +>> +stream +xڽo0WL|qLKqm$h6j?~ C}]BX9|}$HbRhH5T+R|Q%+%L97{)("S;8 M%wƥ9; +.l2쩮~؈82msm$ߌqlm>>9Qc}:|OO>ιI.R}^ 8U]Yқ?u&uQZ4JRFk-9qV|摗h׊.1 !Yr# Xa߱sԥx W]JWN.\FW4}(r޳(WTdݸEo={a0ۓm@o̧C0XBS +JB +HX,: 9Ruq9w5y1,Gh%P HgS.´6G׋=^yQSO+ +v>&9:> Շ\ ,͵;Ioy_0J +endstream +endobj +269 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +267 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 269 0 R +>> +endobj +272 0 obj +<< +/Filter[/FlateDecode] +/Length 574 +>> +stream +xڽVMo0WHbm)MKM;%,1)RPJ3؄ 04UU_l^?gq4W9G6 C6CRl3/?- \qk Z.~߁ B6a(8R="S ^/mH,zB2tWhehpG?VU2k?fЂ%AqnNڴ> +endobj +271 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 273 0 R +>> +endobj +276 0 obj +<< +/Filter[/FlateDecode] +/Length 1284 +>> +stream +xXKo7WZ)SQF9l-@ i*@|rlFRpGF u?f?O2YbU6iF4 +Dl(Lj/raJBهo +ƈMF80ڀ_`bvf[uRpoEy\x p/dh=pbJU(΄ +v +YeHV̻j: В"  2aI0Mnfj9.^D[+2@ƎUv2 Q}bôުPKCX `H\0)<p 6k"By&\M+\{vӠv !XqS-1:dڎi7rǯLP1!GJ ,UKxy{XmyBцFu~`a"w1`fJk1ge #܉p!Td])br`Jy3bh PGqt#$?DN+r $`c~ZA,zՄ%qڈ.|!vpi&q 1x0.Lb&k0q! #a┹|(LZ<Ea ~uR.q"2NxpӂlZiIdQqmoF~ ԧWxrI~bwGx,`;ĎQ k>?o61'E;-1.j6ɽ¸\]qoRDn6VdXxl`Xp< +{,VMX?,4bH5 dϞ&;vwX]yv> +endobj +275 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 277 0 R +>> +endobj +280 0 obj +<< +/Filter[/FlateDecode] +/Length 856 +>> +stream +xڵKS0:ڤZ/NKz)` ԝwA(ߟ֛8'W/_$BL%тEL2rL3q>E3|D)Sğy_XQ<\KXJfD3ޮ)MVx&Z1{V+YΤ+O1n i\"9bU.H`P(f~w@ʘ5g:oh 4% +aP~ne\ɤpf:r $sW nz#rpf6wGM]($29ƪE<[PУ5m +5KPVZGfMW_0Ac~n{ dc^a[tL(@5?n +&b6nٜ}bڲ38pZi@۟1v5!|z4Snت-l &`u`y"& +{Z^{\C!q/rڔ").,Ut etP ɈQ_c1s\نE- ⮏=!|TF5"H -۫_qr;]m|Rc)p'wis]quY]b1656rq!GA]&A^||IXwt4hJx1)˘{p`@˶B-G祤TFt 7 ެ2c%.~IFLrK74vy_kgQi7T&x1 +endstream +endobj +281 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +279 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 281 0 R +>> +endobj +284 0 obj +<< +/Filter[/FlateDecode] +/Length 343 +>> +stream +xTn0!;C&U;lAN@g R>BtT:\ +@0!` +r` EIDcPLԛUH`JAW탫d䝶\;/OI]^,kUmf.k; QMO7c#ZbShJ3FlsyYمޣONIbC䧧Q>HJOU^EQf>-޵w+ Xh6c?qT H6}<[=ҊÃty ַ^s2oWw< kP5aaNT[ +endstream +endobj +285 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +283 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 285 0 R +>> +endobj +288 0 obj +<< +/Filter[/FlateDecode] +/Length 1012 +>> +stream +xڭWMo6W(19Nfu/]mmp.?CR/;EB{ñSp༸+*ͧ`Ɓ% |/>\X^}~k +ބ(!'V H1!2@xܽ}Д["~T=hR(G,Gay6 F38q|fQq0))oƢrsgǁ}5^^)EAbxJs..)S+[duMޔܸxq5.'>y^JNvDUokY!!BGW QHOK@ kRQ  +kFf43zyeg3=EFIv: ݕv?>; \Mj4WP8̩}uu6ikv! ޥMtه7ng ה88iqQ QߢOUW)`JHKMgK8kJCXZvj.CVMvK*[CЬLx|;g ֥D6IN8PoVx\6 >~,έ|dZ⧟JzMhiwi_k@ +endstream +endobj +289 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +287 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 289 0 R +>> +endobj +292 0 obj +<< +/Filter[/FlateDecode] +/Length 487 +>> +stream +xڵU;O0UNv]D`l!DCj:R<~$!ig]PX;=x< H /đ +I⇷—9!,|BNx0+w(ۍ6| 1T>7 T0\zdަ)CdC('#htr. #~,-PbQ0r6 ٘DhUn%Z2 `g$;niVd+ էh9bL\c| xungjrQs`6ݻrr,l._*/r̛d>J|j_g䲣ag䊔2k Vpmo[ +KOfpA*)>"iJ:&ܔuw`IߋZk5v:DYA]"I:jn%sMk4$q*Re<sM Qzob֚U +endstream +endobj +293 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +291 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 293 0 R +>> +endobj +296 0 obj +<< +/Filter[/FlateDecode] +/Length 1359 +>> +stream +xXK6WR@F\r^d HOE׽4A:.X؛V;$EzxNH&A~3iȌJ?Ͼ^l.ShZ +79I {{bJTfUNgt&*h2N +AlCd1a@x#fGnk]UWẞMtv3EDGmFhh֣:"#Q7)#]ǴY!Xy;1vkEDT5h3ӂjEwAmݠv5>*%Z=2Ak.4֕r7o;x8' ׃lEӐ MxD1F^G#@=ӈ9qdW#$5f^L*_͌G +HNXq dG+<3x򆴫&Vab3`Jy3o9CZ~dpkԁp'VZԾ.9Q,2a]0̽tM8w[@!`NϠEX}6#L&P0d0^tӆ m$Lȑ~4Np^ 8Š{mz10蟉A_M;auQ5 ~_Ah O9`_.c1@$#Aci'<k>nα^N(vݼcqNнI5%u^'Ez2F0JV:Xn;u5z o+rמgQ9YT'=T P7%Ҝ-=FE_JG [g+mJUxxa]M,?H3elp'싥kZ!ǁHQHwX=G#tb!yo_x6ڰ޾:΢FSUK-ڵhX="y 8V9[N y[yv Wt&[e{Jw@caDž${B wT~RpPwH-6N |-c/}Px݅e= ] +s-}S- P=-'HOۮ?-Ps1_maH8k2FSFcW#_hUIM*HnMEIyZ57 P1Eqf`bL\J?Zc^f}jO{[n@;f!eyu]>-fy9fyuY&ՋOGjJ!5V5yQtVZh_D߽Y? W W- +O?<.ş7Xz->kb2͐K]iR*¾ 4 +endstream +endobj +297 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F12 59 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +295 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 297 0 R +>> +endobj +300 0 obj +<< +/Filter[/FlateDecode] +/Length 1350 +>> +stream +xXKo7W쥀rv-hK5`Ɇ +r>$i|C|dU>USRU?+#3[~|7;eBPX|T{C:850&dDYfe|2bw^u.-ndŒj󹙧NFБZU$3%,0,~z^Jr R 88 5~{>"AHڊYE03F.zq #AH8f@It$1G9 i}OJzL[ ftʔEp)Ffp>V|y6^36#{IQnP +V~2r<۬7ryu)᷼|9G$d4Ld\d$K߂d$ n$YQ}kGbBEI߉dA$Vf1Ʋ.BsEò2EvTReQ*Sap=dY2[R6h܁dwj/ vvNJ˶kL oBǧBjw{8x፼q$9V,NA \'Qe//x|؏A"`n9j)0AeiO*М^{Xhd$}뚻]q/Ɯ[F30U55 +hq7P6Nl,OIr<*oY0i_S둥Rhn"> +endobj +299 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 301 0 R +>> +endobj +304 0 obj +<< +/Filter[/FlateDecode] +/Length 1064 +>> +stream +xWMo7WR@496C:Ez*($VQ Jr"[AOf8|f >3qvZ3l';*ulӻ i%%; +a/- Eq7$tP +$1Q9"`E b ,YИn?: &p;}:*ŀǠt:  Eo퇆C:Ո*:cD)n{D5BJB$'X2IiO|Fi[$3=dH`8eV r]|;/9znEM3|r7locK?V9iwD( Wqs>VZ6QW|JF(돸QEN&90a2nq ^n~ 9zN Q*vF MV)1A2_qꠄl (t<n0 %#KBHCpLZRD{>pʹ“ Ҿ BphP/}Zd-tdOǴ78'#P,`*lOm(tN LRNB>M.W#ʦۧ=rH![)dZ +R +K!b)dJQ?Y +gB/GU?{, +endstream +endobj +305 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F9 42 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F11 52 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +303 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 305 0 R +>> +endobj +308 0 obj +<< +/Filter[/FlateDecode] +/Length 1425 +>> +stream +xXKo7WR@Czoqu +T4Q + lrQ}h-=yE ŏߘT'H$> (Beڐ&;xbOo4qiLyZߢ,p&l#26bD1':nPZKlWSn&鬪6HA4ܜK28 c6}>tk%3̗$9|,Yn0"!o1AHhBżx#`O1n")Gօc\6yytIt/vDCŬ#hgfJ;f8|9v(a_0L ̘&e8(/ё^sVLXo#6™s{2 +ܤ_Y 4@$i4MTΰʤʝ@6JM +b 6-o6'̮ÏtrcːXF1ҍzg7r@̀"b΁A' ^e/HI 4+}HP/n -67aa C P dE8xkxQ ݵ`.ڼش"J B6~k +q(f(G*{^|Ii=WPm<&k( *8So<ڨOf3 lN:Ӯ.&(oD߸Yu)_4x2nK #@& rx\ZcC'՞d(kq"Y&N 3H湞)m#H&ǫHj$+RKrLD 9b4ʦUBX 3seڗc`Nn)U8-nnjYx砪& Vۮjq{{>.&~n1#y}\'/5yO_ncJr"UƨiS);AXCgul]Эwt>F|cأp?Ū})+&˳h|rXn6/}/cٺQ4,-xw7g|njg|%6Ǟ،/<bO )_(@94=g·|#QϚ؜/Lx9?-t|aCLE°\/:KyF";AM<{./qDSexe<͋$4=vVm'HG/Y쉔C1օAzZf,rI'HHѰ0@&@.gF^J!xKy$V +$҈+TrcOvgs>'ı|{g;O_>h= b%$ ¨&1zl¨E[՝O7wwOoVhw>2OT弥}/RZp;5 +endstream +endobj +309 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F12 59 0 R +/F9 42 0 R +/F2 13 0 R +/F10 45 0 R +/F3 16 0 R +/F11 52 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +307 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 309 0 R +>> +endobj +314 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 313 0 R +/BaseFont/SZEWSF+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +315 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +cVU*%ܢ!?TkK/ 27X`fS*R0%HN0/gtt]S_&5ZI8U|< &cU&Btd#?(ij?%8 +"sv +6WLfv>j?c-(j&}L&oPM< V3 ʨ@8:=AnqyF_5.:\_aUb/*R[h,ߕTH F2[^^d' +endstream +endobj +316 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 314 0 R +>> +endobj +311 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 316 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZPDSYJ+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4023 +/Length3 533 +/Length 4573 +>> +stream +xy<}Dž,1!*aƚ,FNcf0e"Y.)BPdl#!B}RLy9us}?﵉ +L4(],^ +, V]7 Veq(8ՆQ* 2Ipɂ +*J*r@tvv\RibP84.(I2@Qx?iHt)ޠ(o`Qh,@7$xAO@WN8@'Hry:ac7T%1p ? Oz Q8߭? QH4FhbQ ?%."q2?daڦV?087Wo5?о YiYYdo`H4dcp_¿CiiyH˃䠲 eQ_}X **CP\_d:(/ +Fr~wqH0µT^.O_&ia׈07++* U[οwꮷR UmM+CYGżqȅ؟f{6l#jl|i-9R55WGҹg({iJ>&D>j!e4̝LՄ ЊȭNI?/t3W EL󙽛s-ih F ^`ƊFrs )>8a$7Ӗ3>mi"+aOgfSg(-VyDG!Qdx5U0igjb=H}Dp,X)h$ys`_ +=2dG_.ygvj粥2]}#|z7|9sx, nGq˻9FSׅ0Ju<`?d[0xx'4{U56_A,Ucxl-d}_& B\<%2l m=t XyىB {k.]8a|%%Ur9!_&h՗i(6Í&b\x`Cl\پԷ@3ܕ#R,qˆ*ejX:iP$>D!>e)Dq|&&{evedwZՆY +_~V3~逼I'f:>EQh$&HRc,ęӯ :ڎF 03Vt[L$%Oa]CcjVWȵѐp[oD'7ڃ d_OtzLl W#YR/I\ 2JO9=oWuZk ɺK%#^V[Ye+S_ĻPǡ8ultn.zuf0@|_8ء`w7jEVW?^ЯN.Q5#`7(sCltl g6/e4~WkDep)MP_V,Q`왯"M2loT jٰw`TgjesđeA;Lviߥ᝸`q̸@H'R@MoΧ`&:@)Tn0g-2C+EA.B:򂖑l(_j|;wЍ r ς.ByZhv 8\!Tc,0rn\Mpac>Jz0n֚6`ut#sa] 寷Z5i||'~dԺ *)יoZгcuN*G~izSpXeXU4pZA}*Qq\&p=?[}TӨn4t\-,#!VǦ_^ SNu V0jkveg=+isy@lǚ}Bv9؆Oıag~ʑlRoc<ŗoxMUGM\dkɵ, +w\5y*VL ۖOPǔvc+hu+)\w`뒾[肳Zb +58BF~z:68lN{0~ߘrȨ+a$1sN>wX:")QkYx3Pm「O $gVs:7]&p <"w…ƓڛQ#ﰨFeF0+◵hD8e"\d=O^'8!jZR2Ա%O>9$4ε T_O`A`I+5. +ajXG 19|GJ y%hYޘm)E?%gW*k6"MϺn5'_֦]agC)K4XʬchWwa=;Au:)zsŰ5omo +ݶ5/<$mk~~Qn$Fn7%|1{c1eؙI磭+@ˤ2Or^mT-:5{N,! +L͵9 Y _"v*b-'S0gLݐA#`8W4ף6v5^b،4&YC¿23Q zx%-ohQ饧׺]~f;X˜QvQU)tQQdPwszWAAWhcO-pRP->Z'u{zZ.K2AXB|5z>q/6Zz!ULT]M?<9*:Y}yh31C ['շLL*Gws=O.LNt9>RlT8IY:-ee*i778oF G*|-9 ql627NO)Ǵ>nx:a(Yp/ҖfϞQb15>|Rl0- y%!y% q+{_Pº/&%ky,֌KTh{AfFQ3ZK좛54| @Q(To%#%&p'=a S%&I 2q9yq7]2xЗec9G!+ٓ|rat[,oTi 6'*/.ҋEpޗ iQ )~;}K25 t*ޙb诜' +t`#v5Nf.CBf":#yU5 D±j1DB>Kw=ͪ;(v۹lAé{T5Hs/mL_M>߰\𽸭xF?^zm.9kjxf])H'-#/$9^͈,6XJyԝL]W./&/URiI3[ՖeCbFKztZ>Ïٓ6zY1?%CV# G5iI0UDlk/eu{r83sPXP9 +xji]"'oҎuzuRٶ&WbIBPz ?Yfܰ"`#^ٛ ]>z ˊ /T2vui\qC2A_ qY3F1/ +n_R4Zn7qȵ= ^Eg3z1 SJ[ܳCVGJBy/>:v *p+z<"-G[j)Awm=6H3=^(qZ$#kNׂVR,U!!lG)D(DDCke(j;| / ^t]U{edM).m {SIT"8ŵgne$<ؿ.Dˎcqw=Ӄ+(;Yl1ϱYj +vy+bw?67biXT2r ءhL:pQ5Wbҷ§wڼXV0a쟙=VB, 1{cfAc*aԋ.ًԉU%4׏sf=ބu,AՇL7W-+we[#3P9im gQrkBOf~ !ieO Qpǹ/o +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/UUYADW+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4618 +/Length3 533 +/Length 5169 +>> +stream +xgXS뚆AzE:Dz %;IzM,"DzS ǽ33sy|cpA\`^Hs$ @ 9?U +C +~+t`0 ͻw:q:m::c(1{κŸQ1J.Ɵo6Bo$nC3OcPzfl}gd̕9NUؕK:Y9×'S02f jk-9=./)|o7V)g&ABi\jRp j\uin}+9ҩϡe1|^ + +kdF<[GN*,mZA倨0=lTٺtѾT\3LۂtXUFǏE]]R:G'Ј[Rv+Tb:n]1癘oGNFafrphWZM׆kiQ(b t4=8Tl"}ZAG<Woʧ .5?-.>i`O3tڪH.7UlY܋̼׿Ki_'yʋ"d0؊ +Y̜,~6",ث^3g,R:pShA3Nv~Dm +%X2^lqNc3fj\L##OA&/nR cڷnoy> 1hML]\E-=Jp}ܿdÄ5N "STI;ٕ[iRyJ0X~ H3emtf$E0409;ŝ\1%y|YNR_z +֛h6#}[+-XՌ~>$-1f\8rj|j%ӌ |>E4.TT HFEnS)^w[\%i(y= 8ݝ }\KmEo?3r2$'Jz--:u% 7-eCF<;Cl]l*Vl%[wq"ڮ2iv ^ al1'/9PZ^x8f*Ւ1ҁI~֔y3/Ϛد/bၠ^YLyj=:ӫJzH}byJa<88-5]zcݢEȜrw79VܠW5L9}]z|'djj Vtf Fxcv;YE7 +8j8ȰʶT@} +VW 2^>dl 2zu9Y)DCG.yNް"0sjhѫi΄mXB"ior삗rF&Pf?׭ ۳!T|x'4:;r97f,3k^IN +7rdZi1XfgZe>i]H:rۋfrg +kf8mj%L[Y{Qp ĵ1f)jb$ƸN^y+Y,_B{0Qrգ, gީP_ prq w9F7VOZ?6^r1zÕ/rZ:Ul}3@WnIEF󱎍nh띝]ҠzƱ TN[`tgx.^Cn*8|<˧0JK!ᾐѴ#d>FLei,Ă Dƍp-~+8jhH1˃{w- *Z1SfyؔnO9R҈ׅTTX̑I- +.C"z^p&IkM2S,|\T ppo5y܆X&gS@0no2?N1ٓ{m.]&/QV# ζYa mXBE=~׸Km[|!O0 $ _(MRU~Q=At:sU8"8d31`kӼmZqbIgc, +wwf7DPeWH cՁ"c_-[2v^ Zyᡭ:Vd&,ëCW~-[*+Y"[}JqW񻸑넻eb3?Q$3P[Ì~MdLHmA?<@30i/&ǣpүV[嫊w#''i8gP ~!yM3>.$A8ߧ-aqZ1VLtI(W(K_\j}Y8KD)>4WzyIao2c^U{lPlܬ[-=a~`5fb䘒)Ġ',ZsT)}[x㡣7nuI5(9~07F&qts +; 4V3̋;HoP@f6Oe8{F׾<2օf*T` g X#S"8z˅R"m3& ɳVSPԄq%RHsx>bW;MۇP؃SS>P6ӓ&y+ZϦekhAo÷ +2?-jJUaIߐw&D$nqcbZ5f'q?0Gq[6c/TMv8l)T3Zatv;~ æ Kg!C kCR'.`d ]8,o3o-5T#@bVCA:e{y;FD4]:mW$n*e1oaLCe?F\v<ȄЊ١iAhm"ڧj"srMM|ɋFe~_=;vs6fL`G_*mc#E/Sd x#f-1_1.fv^ +/m +]a)֛!-;z#tY|&o;'^`'6|ãOuŻrnU2W=pF~1IT|qmf Yn)IA|*XHwRl6]tHqJ/ky9*!zvԦ%XoZ1QV 7my[\]t$7c'(C)MR9Os8SҴ)O\Ck 9EՋ8+*c=O8|V=1,j3c^> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 11159 +/Length3 533 +/Length 11713 +>> +stream +xctfѶcVŶmU_lv*F۶m'۹u{{G{ǚs]Ϛ{J "f&I{gF^1yfFffQ8 + +1 ^KJ" 0;{rrQ98z,,Ih"LI䍝-vMLmITL$$"$*xʼnDXXH̬LILVpL7w W?K_.Ґ4s 11)8]. +vG[]@y3ߥ̬\*llke*boa aWI`dljIbnlg`o;O&iE5 }<,3;.9$M̬-HT͌fP^ ,$33 'T'`ffag;$VLUϩװ +(Kչ>mb[vkm)9 O*߾&d3&}Ϥ:=5PkV3sHP[[4Ru|5òYÛ1ZJkLEɂz&W1׳ƒlW%H]A$}Mz:̷ |"ct?6gdp62hnx̷bW0nI-8KOW/:b$Dmt81wbj& MFzKdX=ĻWvI Q]Yk(*ge)j:f&]%=dA&piF0W!6eo>Wfu-,MeJ-ԑЄhC:fti58x~ĸ6 N& o^=Aār@+qO+5Df^)ceU)9Ŏ`iQ0ȆmSwiA(nXnrWE6( 3iowRa-/\UrYQ 2U`5i)3%p"or[oRvE1&ߗ2g,,{$7IV܏epEWOdԀ`[?uWYZue\=US_ߘ3Q^سlgZni<LGfT ;2*g,h.>V+;bI- c:afQ!y°.ݬUȖ|-m$P)wPِ6H:PVHaM/ZhiOy.<9B f/'^zH4%yJz@1p{Z]*6HۤWx1킯Ы$ @&B;0xjUƾd"" d!Z \@ 4wgL.wv,?\ss%{&jj X@:UVqd ޅUo!QHmD/QoHbLƇqk TxmKamGT:I1f>¼j#vntT4zy5L(g_S~]v;,wƣ d$w~O24<EW?D'$d/4kC*} hA1^";i ) +mCA8 [[8z mϙ@#B36w;;  +}BRLϵǖĄ`z{ۛ"'ol5GGnNgI\Ӓ(,TIlAFu@ vIŹkt^"澨.K 3ig6!ٮ.ӥ 3 ﴡũO,,B6)0أw"o gL˰ 0f)}$n9Xd9@ib#˳@Ȩ&;zfc;?o/A 8LVès rf uJDIG/<3R)SckPMZ>vuQd&%Wxr,$or@. P!@L3Bsɭ>obwgZy6*G1U}a3U)}Ae&ݷ^4]ִ]F)Gblrlp#z,5_c J @`N|FYTڬ4?\n1j 9Qz'FHy %U]qFS?~Ո\Wז&RhSZKJ/,h?KZN> M4c/K*cza)IZd#H%zpw6ڽ̳~kieBa"y#+F9Pliאk&!wü ]5cp 6b5:2X +G'𶁎 +A3k*A jHcM-Nx`.~*¢i*Hώ gA;l/םi0mz\D&f#},H ?[aA:Mrĵŭi"n|{Nn *5]+5!xߥcQ.=t*MNH$2uy bIb5s?l v;o@ R2.`&Z.^Vyp,%e|7" nDp~8/.yDm"3D{?Ď7C_dS'!J@H[rE>4?'l?Vd!b}LxJ9ҤpdĒ`خm +k3w^{"[M5>S4Rl%y1nկ]𳖼xAmS_~~Dz|9cU+#5~Z%F%OiS5;; ^9H-)471k3(D[A|8 o5l/=K"!bk0.+G>WF{EAJyx$*`Ձ +0m/ujmth9ʛX2?cli2cP$YK8ɷPSӮxOyQӺ2L9uc..:UT-%QH25|)Ɔ6, N0m{$D9A!)*EiQsўHrʧhEZEu8M;okD7leq v`׵ݬ~|(ZZ&ٱDs7r=%n-c(~YGb'(;wKtTi!nWsl/Gbaqc֍᪗-]ZYm{Ӭ[7+R r;f 4g5wa~+p9ڤGv M@7cﳮR$fCzYӴxW&a0+M-}xS3rj1+l7ÔrH:x1W +-Um-/O^$֨x!"U@lC`*p'@s+etk*aQ +$Ias"fxQ<c3F0Ҭh>Nw*e90(&,/OEc( +D.B ΝъR5aN&6ytj^wt_~ UNx'@^vA͝30Gℴn6QEC %ȋq;S9khsеٷh +jkzޯ EZF5Ij˯\4?{mTpώlI*Ky'{Wi^8c_Ag! n"_@]hqL7^! <) bĠD#LEkbi,۠wuiA@ڽ8|'IcP}}}?>+DڂFâVBȘLDZ+*3VR;/j_t-Aɡ d z@t0*DD7oyI*oݘYTY rfD[yvRYg8A߽Mti~d?Y5|#JFx~|9Lu| ?ըA*Sd8yRz舶/ꛂm>gi%V +ZǶ~Yc!ȽwgCVmo4΋ DN׳x!LS%py)ʢVљA4+|+Ƀ~ނTt4Y .V(*|ʫj:in{/ݥ376} +,:^.0u&r7*Ԋ/v~k^dA-{`}#>gbVI^ R2ay$k;BԒKIciMhyf%c + 62EFQ^%ɉ7?yWԄ$F#dZaC+&_f ث${ٌ`X?j8gA|2=V B@u Kbf/(8No0wJIU(ژ $,\11jMuwPơ|f&pn̒V-k? H7͂ـb 1@$a $\ĢcM[^OafW\ʝjMXԺz7<2Ih3֥h*)q\v֦.sbFqD)5xNO ^ *ɛlR7UkO ~߫Y-7Z0=pZ&It.ټxxMFA;;aTHsx gRHF0:P 2IVha.I$<o6\QUL2lj2L62UUV~cQ@6OFb_.C3td QFgB&ZW]x -u =ͪm5#ߝ|yR:kʶn|&m;UŎ|N۱Rc΃\V V`Ө:N@5 ]16Ry2sUZz֛ŏI.,f}[GA#OHBT["l I&9{F:YE[jdf%z!uA=l &ޥ/h[8elzDnY>ʻvCfE4}㳷q]N26V6GRw!⡼`V4w҂{4JdwBngrrZzlx~՘ 3'|>˦3':iLbp^\j h󃗍Q:lޒe_iӼٓT[~3 ,vлn+= +Ĭqi4i7%o` NR3ܽ0!~$ +e%8'ƭrz6qv!YJE^\,Ki"wX#I:^ۧoh_@مxPN +7GX w$%x)G%r߱]Ⱥ N2Q3oeyPJT < :ʙq" (6Ś/G|AbT(ZOrZͱj(G' ?-'Ҽ/lcMLd+hɤ+8ҺI Ֆ+m.HiSF7|R0woA-TW9kt0({#y#xQyZS!}Ԭޖ߫oAʧ6Plm(Dw6' +S\ M3R}sTz.7{%7\{ yjJMN?y +j+bpݒmiB?y4xp܍cJJV}$OEnZ+" emE`gW2 |J}SQa0eo@0~E+9d7F{d +M_xJ2< +BVS8r 6MbBu,iZ͉\ʉ UHü3q* GT} +h~mݎ~> _+R75X{HY%JŪBqJsnJ?yݬF>;bE}!*p>]wٍuGs +[[h@44uvKAU$-(%z4?߾EAa(ȍnG!{PtZyp>@A߇'=ǔ(c$Ú 6Q]GO |H2Bp `6Ѿ$ 00쌁6ppM +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/VHPHIY+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4968 +>> +stream +xgXSA$ Rz %"THhB4AzJEH"MJAxι3ΗyCbAn$w]_pn(G 3 %5D*H]"h^Fqg=.=]tdSڴ:#A$@ԯaFXr7}dgg~b +围͋U%ۦ7fmV?MWC[[|22Pz^/u`j5gO(%\$]! +lɺţmQҖ5*[) */kVs͡!bLX#OKa:}TiZ&ts8'Չ#ޖY1\pF{R.[S5 +d6.( U5zGS!^ym&(V%=brY'U2&Y/rڿyk\C< `>?鐭AizmKȢC”GU|S+ʫ+=9ܽ#[b6ǫN"]xSwfA:d?T('YI [/queOʶʮXPK)=ҹ{%:-uFDǻ!I`Qr*Ҝ힢y0t NSۀ~_~Tf|m[6s>3' V,ԟ-KĦAV|ş ˟g.M+-hy_F\ +(v"J-JzdC/qR瘍\E2iVSɏjO6KS䥾.D ے^"e׽NFWKƍ@K2)(L"]ql +`bDs vHkli@3J:v`[r +TFZ /d\Q*ˁZumzZӁcKT4LE㹈 %$nېY_X4j{4 KO:uKSȽ]ԓRɡzG@\pyp\]0}zSe[#r8%x1&w|CAE*oO eR8Fcxҹ6H*g-[-#rsղqO 0,g$id?˴W/W,jzcm 42Z_x&SgI ppdAnvsK({r[F /=Rln4k[á+"fLi#UԂco +X\uQGb Cǥ*j[\iq+]^9@B4fMi?N.]a1 +z'@c 8=ޞeK~}T@>5xekU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'Ӂ֬Īܭi9NxFxՑs=(8z 0 `Ӏ2%T<=e;9} @V;MAA}#`(e5 ?}־:-9 |D9I꥕mFwt 7M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"NfVHe2`aEXcB@w iz @PH @C5Lݿ4v +|rQN  +&nrw3m+;Y ®\wydINDj4&nּ| p^8xXAv9B_;2rȭZ6nDf{Q}=%gELf1K#1:G1B~<7e½uOLiFVXT~4sZi%)#í˅tI$2e{wӰ; Vkal1jv`58jٵ>kfٯ,_%__Ã'- 󺆓zkkORB&L_M;ؙ@L*\:_VCl"⪔ɟc#z>xv}f[:Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&x8#":sk*2L* +lˉLueν `ovq3X^CO-+Iқ“\ +c\Xis'JY~"mvɮ@[wÛ ݒͫרMOlN|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],oW1ɼx6n VDj"{f4&탁O^>GZr]EK_DzC yTr:ua[pt5z0?|$X7J:N|_zuGk[|Ϟaqϼɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩ[msOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H{9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5}q0 U:dWj~Kg1;FĎfKxsCT]^q /]EeĴyQsŇt#Y1ٔNʼnJE;7 uSCZ;4{sQ\I7+uwwPqN'fB#ՕI,hIU+ OII^)/0 sMIvwh;hqWM]_H ^zQ|8%R%_ڠ(-3(r"YKhPpG<wTYL!(3Uv6JQm<'G4ʱLX +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/NQBBPR+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R̵,[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1067 +/Length2 2641 +/Length3 534 +/Length 3342 +>> +stream +xSi<VBf;YJF!e̼3Y#$K ҂셤,Qʱudv(dWXp:towW搅TGu: CjfH!} ( @)( +T@A7]2H#b1 Cɬ$X b =$` X 4A H$#b;H R MU&<PyAi,]ܦPy%GTV9%?~LnG"1[7C&yP~tQq 83G#Ț1$"VB wkD qD:cHRp?`MnKⷵZ`uy7ݷl_6k@4b` rd|9P͐RU04&º +!"`K2FY!k*JlH!x;@Qo; 'URV(Vs[) _w;O\ N&"P\4Yά#z0Eh歲}zzԀ (J4Y**:*6hb"uu-GcuLX'N%BT 4^ ^#}| +j#5V6qg&U.6?vcBӆ'S<#\+}grկ$e`b{׵E_t%/^1 +F)2)MΥ?7~M$#bbK-dw q+ڙv*Q ]H4aƻu]23rD`KbjgQ8.ݸlSX\4iV8ax<NJN[ սиܞSw<Ѹx…Q'Z9Ssyˆ.zxߏ+Ir#qԮFv*]TYk"XB@ڗۧQ)q=\e҃x*y"Bzjn5ID3JF3К O/k'""^?^V{uT H{T֊zGSWF'4fDnGWԫ^xeOEePU!?/r?ͽx'l%y =dUS{_i;^NMQe#&1UN$Z̑D_ E7=ucBo"#Snce13 GaRZg,T M0)#3d^7®]#^/&;#E1uEBR&~9Քm^a}dE'Js볢/?v](Ƨ͋%dX{*沊+- zzX7>%HiDHu(W-3 hM)huN\pΦ\ﱽG2]̘vШǴvYQ)uKVMcEC>l|tۙy3baG/+18\mS>hv_V +[4*7+qw'cC4B݊NJsrı~{%.>ڜމϽj^tkM2,y0$cJQHл>(9#([\,Rȹm7>4]^ɉ4?s:_9å-e3m#Y@Q164-rzdZtiai;S%s7 +=yMҐ`7BؤUqL$ES +ae<$)i)9&䴰ս_)0.ANڎxGH73l;/Tt|gKl| >S{tQANizxj3/^ A żRtsvs|귈^wya^ЕRc{'{zN 8`GZ]H$FJ]vma4Or*Yٯ.LOP#)S{_Qi7ddțMn3&@th^C<}%s=m e- }CͫןA'] ߬7_1qQ6R]yL댕%BN[l/nBw^SI:,{٧=hNR-["FM a7>nZLHiXAmtZg"!O ,ƅWlDI?R׺UHƨw?{~#{N~Ұ(oe"n音OS+E]v7M+WyWc_*Շ-K`/Ӹ\s)Ka#ˡ_:f\Ooc+N}k Ag +fz/[b;Mŧ<$u lҰ9BE6VI*"W~םn)gdٿ9:t LcjOw=lntD ;evMzr漫,≄A&TY^ *y]!n#/du_^]Y^ǻp4fd^P +ֹRRe> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D]ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\hw +endstream +endobj +37 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/BMXKGS+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 36 0 R +/Flags 4 +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2296 +/Length3 533 +/Length 2834 +>> +stream +xy<Q1HZ02dߗFcD!2f,%:q &),Pr{q!Ks_s}~?{A՘-XL*Z Lq lȡfD 0(`50eiT/d F"22BHD:"@N/ف Y A2oqi<diH!2W%lQjd z{0iRPw~rǷfg5BƆK7]в&h]^7DX6ĵpy!ߥsw{ʡg|*$ g1UE +e[\Dw̒]1|q H?le^o4ej3;&dR^A,&)5kO9@:* 韕|?_ʔlT /܃*&mˮuptƝcݩ4DNFVOJ0dPptp`ƥAy漰 36L+~9G]0pCOCb + /~O+V!KRPy-QykXa};d7*<[E&FC^d e/ERMMt?~NH$]wx<# f ҊUkL4J,Wpu5Z>{W=iK S,fAqʗx cW>1X?7inr|ң)1̜HWs.lS9>8#0Vm U֞jp8B~v={ǎ NM,w/G\NNJ73}(nx TZSod~f>X|츊۾ fH^RY~HEPJLq(OzMc8ńwԉq_c1:*,|M}3-K&k{kcdqU.+U(gⸯitܹ^W~F6QLV扷2laEGԾp+' J]V#E[1 {[L!\@z1V'Sh2otp*^׋PŎfCKդ;|ؐ6*|J*_x;,;(>u'KRgȚ0ϓ&,6#:⊟S1]+Ցcr78:ߥ_d_y&jäFlU2hZ⭎؄fSDX.hu.'Y3wt +;Gfwq[kymyB4csRFW4z 9mӞW+9nguy^ "oOYuZ}bt1D^~!v9SՃQ#Ȯx7h~dn,CXQZ, wg`=k",r,_>O a1l冀 +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/ABBPKJ+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3022 +/Length3 533 +/Length 3575 +>> +stream +xgXS麆NIQH #E(!"U" EQ (Ф(A: -HG=ks:k}׻> Qk;9=4 4rB00E50 ("3DA `E +Hx ӋHR|A,PD/8=,s?` A Ƹ7e[$H 9x6@yKy1?pnZ|1|1ؠ8~DX  Dc|QX r%\/o ?tx~?8dwZ08"2DW08ql<~^tE;yvD"[w*}}|` ||Jj2<_8P*)PGqs<$ !"Og1&SQ"ElHu 1<6#nL9O T0<tn )!|jIbuWc~!nhxnZI!'ܰx^G@7Yqljg B;7h$鏋S9\.gjAFfKJw:רn,ɤkXG@s,s=;֜: \# +.O~γ[~TB;̮!+Eʽz{]ξMU +SFAg غ\x/,Vҧ#]9!k ;F/mRJ^m]K,JogIOX^d"gʓő4EWIyO#ܒ:Ғ|i+\lm4 aQđ fŶKv#[  w`fu |}{֥%.mͿU +07؟7 Ssm]{lBϸ^ԉA H9uւw˴0^%>L{ޞ!E߳o;%f#G7Z.(J )<qs >?Ν>DXM^}fh0<,xa f%/(H' +?RW'6OC{'̝4R' Ņ \ >q+$:wm4RkS :xET!RRiXjfr #f_3rp*.\ŝfʭT9uvtF0eMlU3 .AX?Ȝra[R$4w(vor^S-GǴvx/䡓C@/7wj0^I\]tXi]&y3L ̿h?{2[,x=5 +^aӅݻ_1MEh&K;zI쪔ˆ@E坁JLK!s2rut +'O*JߐneVuۅYEAws>!$܊ +xz$m6~*mv#H]eL߲wVz[Ta:KS⋞r\(:jq$^G"|Ӎ>[ +=:Pze(쭬XuꈇE*%i0CM J?/Q?]|T5].:/IL)>.ژys'U 7Y=6e؊Ao~ؿ,OmgΓzA |:N߻u| o՜Ɵux 4}s uɨB67gCTVaȬVk_tNA4НٜӮaIfW:Ks.$jng9^Uקn,gNDYE;qB8eu{7rLll,X/$$0PsUB$imWN AtO&xpApQeT:*kOW29e´'+h&k}bWRk +Ơj`62vNЫ ע&EͲÏ/ڝBfe T1ZQFKi—bҨק{LYj Ly6dMءȞj3G-jut^&O~ӣLi:ʡz>Ф'{+1yϻJVԐ kwˬqɅJ]lg%ϜhE}MV$X:Ś^>oWjIz?PsUt;7"}f.W#pcLV~EU.^S6tDtc0q+K; - Y,Us*=8ҥ%;7fC DzA6 ә 1&YxeLWM7 +ҷg!3Jvuh#V-E]#$%X[1e{Y墇ɌGUK%=gFn;AW4!V5qV'7KҠwfLtD,z8ز{u4Tqa+u%]-'[fW+AS3Üu-B0|ӇX_>?Q"E@ M#V +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/PXBQZQ+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1759 +/Length3 533 +/Length 2302 +>> +stream +xgXSi@Е& 1:)( %!9@r!t"E@D) ()Ы"`DJd;:gמ绿;d;h̀Xh !`ŻQZ- Ee@Dh ЀPZ(C]} X0|TOťA&D, !$" 3HT4? YC2A*eQ62\n>'S- &_ Xpk G:D:AgL LG  UF%C4PGhu T?kjHHHA# +|_A4a?jOB> FUĤQ(o߿Dbg!2IgT #(T]P7_54Z WDm,] +7J? Bׁ5ʟ$Xijې]rJ/[qEN R}:=O#+H\m\xP)+7gL;7{IWf!5"ݪ4qYWKܓxr&9zj d'e_ff_Ql;Ϭb vFذ^tB1F{\ !Kظ"J[_ߏ7~Ķ5{,]aNۍUyBdrYT9TϮݒ5z4< n ;Et[ ɬ풇_4|+ki:aIoi/fC&Cƕ$iK z%ȶF6=Ȧ}]N -@\R+UfI tL,a:_^ћw伦wJKB̅B|8^T 5GbMs.ItKgEۙn?1t߶yvvN{#$γD>gEݝL3MR4";r /%/qn,D߽bMuV}ܪR/:@/ɚ":6 tjdJ$ vtBU=8{ +>bΦ+O<^~vCkO=psX 7qf8ߺ;-uȒ11ղٚ.-Pب]nubgƅcM?_< T}~!stN0NwlŜ+.miЛ\N-?`0(e#T2ZU05$;(,\礪Zx u8z {^訊pcq͵Yj^Y{Pt妟Dgy>$cfۚCumǶl@m99 TFmp҂RTR(TϛB]2J(H?}{uKIV#W{acnVYewקknh?`3͔=V(MkSGoL̍ᦟHy٨?"DLNdz`x +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/JTGUQP+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1346 +/Length3 533 +/Length 1883 +>> +stream +xiTSgNj@+C 7lM `Rdp$ & HGT +ԍ}EҲ) e)l2LqzΗ9m{?}<4fdxؓ$ ^ +ga2 6Lf  hj,~P(4`ό౐P6p^oElaBb*Da$ O6BKZu;ꆘ84(S&U3SEsѐB\ZŢJ w;KqTP>Y4Z-J*_#/&e,& +D=/L Sі1zYG2ѓz] <79Ru_ㄔ6vwh@ut~fLt 3ꅜk)ɶGvR +L"J +gM4(Ī9~z:p`TwmgqկGg-+0m +K^*Nz]|nJ{ೊrT\do7JW_ثN^h3H[uycdfLj~r!-062FҒ-.`RkdL +͢P6W {WnG +ut=9M݋B?C3K)~z6m +vf1YL gǍ1Eb{8HkX I]:bYxy_~@q44(3xe[nq瑌ߤg_e4hi2yݏUI f +]y4u)r:ܾq//'tb+ ;E[ +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/DXTGCY+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3432 +/Length3 533 +/Length 3988 +>> +stream +xyp,hA`Ŀ[Y`1߻&KAP0D/S+<z|u,wP4lkk)X _5_x*@+fHD0x'І"bPd +NG!@*(jj#&@U:췊 D=CbX4 B%8\C=#zu&gLͦټ N6>㜙9w!mM?Xz[_=jOޛ 3/|n +.*k?Xe@Afl@@2Vrg'-hRk3ٍA\ (/%#leZ'lO.PӸbIWfyB~1?X[1UF3mA*MY#U[ L0N1T0(la?ǕS+ܔ,1KƹؕmnƂo_@N ՛>i&J&v\ү[ zfA恾S5As\-A,E7/kx6XsxW%Tڷϳ](Yoc.[>[ vCk^zm4y-yjR\yD56x|hLo>e~dCPfrN,Fn.x1|e+ݨC[f{kr&:ENgp[JY![_DG{< ++O/gc)zQ߯rt||!Ya:>KtVgnSv>[m~ +2|eId*wyqu04Ma#CUeISh-C_U`Ve4&/2BxLMpFyPMWr,.5>`1nx΀MB~(FIa<8u @z?oNat;=( QW9̺ۑv>6Ug]C2ޖ0*K;n~9'L!LYٔ"Uz [e-{fݓP؃!kMjYY'Mz> =1mh*_v%o1nߔ1Ie?' Ӯߍ\ZrAhe)}TKz1 +c + 5Si̥ZAYi< jgT%'[q]۶ *.14aZ`&`\bBnތ.3mR&5ؤM4i,&1j/(Pƴeҕ\ިM(f8,8v iy"lmK-b +m*Bmm Ԏh!(a&h}B#VB{P[MK 9nE[k8Fe2ڛ5n.ff{J?rz 0KZ÷}bua?:qGN>_o0hxkfCEm.g eڻ^׮q>;&i&w;b{}jIt\unw;:Z_jRJz4dvU`?}lHCUII$ÕY «QN>:6,橉LwɌGC#SRfŠ8O{2TC#tʯ龊)K2ghoSoyɆmw-yUuhI(mg-iUϦ\&&q;"H}`5vC*//aLq3ufOIG!)&5u\scT*%ͷr~SٓxSXkꣴ'rs]g<'{+ʅؖ>Vz5&')CJ5+Ù@gBQr1H ֊\,.-6 #ACgm.`%*:-=}e!Ѷ}`]S~`̳œi O9>4s}~aܖA'wǗ?Su@.! +9x -_ZGbjozwGm1a f+%lSpɰVŧ3*Q3BdUDp%ΥO4S{/Nw +#>މ-ǯXc8Dv]K8JZCt^nSNӑ&QUE%BRk.r?S 5rg߿~<1ik9yܨj "lG +OJ=Kol WxE__ɘg +߱c8|xb:؝i;wv!͋.3Yqە-2n2kD+#C>}@}uQ+w1)}`\]W) + ÚGzKa5~{)/kAW8Urv軲JM> 7{;7סÅo ̕ƸA1b}{j +P,Fqנ?g/%}Y3гR_>?E. +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/OFKLRS+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2356 +>> +stream +x{8T%)tr\\" 1HEʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?M=p :XX  `hBG˄lAw$!+cii@BX[ad” 65 + &L"<CHD*@``{* + XH@! +LGa `w Ł,1Dj9A rg41ؿq8.Ju'Ҿ_ +o}" F`B3@IѺ@8cׅM${: +Ƙ-H:IAHeAK:D$āڅsu"ww=0 +K5Z1bsnNt&A"w*Fcn +f9`iny_pX8h %dBtҁ5A M?WF+,?&\Z]Yۚѡғq *%qgW%L3m?)m0.};눼<}}\:PTAeLܚSnS,mp^kmۢB|3fa_ϳHڐlnCێ)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-_OE[q.3+qU n-7H͇צ"}%)']7}1_&]'WE<:a:S^OY 4a~࢕lz}U-O-slLzI쵮tx95ixtNw4MJVFHWo urٛ*䪥܀I\i~_`fClx@ ^Ɂz3%Cހ5jA +UȘ2njXfdSKwc_Q2Fgi6ucаb GOeCsSD cwJ3r$+WG.9jpt1z3n1{j_OL6 ^Zm᭐8t+='+F7Ӯ-(TV} +f7qŎX)hs_՟jybr_ec-Ps~T:crycZ{u<X>lB\+Uwg˦~1K1L?SC‡!)]⸼]WjnŃ4qA'`IF9=<3B -بF]"r!yq&_K6;Vl h&[M >@4 x-:9Hlh=)1VoXIq#Lw`%͚E jSTF&epvV.<Ҿpn%NQfjϮU[ +3SaawIeWv`(69ѹ|t|Hp0F9:[z_cV[MX=cyOz zbo281<W]c"_2ɱ.p7rFУ,gx7,{w!.~*PKTl\n,'@k9*Ż:)v=ܩT'ڙ_jJwgsD&NgnuqH&c{]כܶLk~Zv[RỊZgoš5P{T?v6DAi !.'W)dlz2˨Qd0s}ӏG`sSEYv6&OT*m$FdR@Rt(z+E.1JGNS܍A&0uZzI\lZ7oJ gk\[*W}9vN.8Ĥ 0&*K]F-:5oHi {C(̏4="wM}!2?+}]mlwAV:tɓAU\E5U7= W 5~#C37 VU#9uƎ,YO)'IM_:=ҋ#p#GG>ly|ťkvn~3ڳ}ZVro u|MmW (]~߾Ե`hȑYs.\ A'fЈWA +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/FTWJIG+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10077 +/Length3 533 +/Length 10630 +>> +stream +xUTᶥqٸ;l4w l f]kp !B nsνG/=GWCfYSkhIٸX]l\\@U.N ;'4^]e- a 7Prq +rz7lg20C%-P{Ї&֖N@mk0J99;P |ٰ\\@5h;8lW?GA\@2rڸ8;ym@5o\I?[~;y僫؀ . NdS%Z W .h@(6&Oy}e%jX:ޮe?kYs w  tWSIKxٸy<\@ANNU v)899yٵ@@?k[p@ /5 H[Sqм1dKTprn[Ʀ_ݻfG3nuD [HħY#a>zhjw8uKYϹhj@mziD8aSC#?si>70FhlORk)M쇕%05wKrhHzb'?3/YTiK=X]("p1d8>V +c TUHfǏ>M^=HHO ~aN]$mZHl0}x +~_jfO]1;K–;eM.kM} U.P{gr@I%nju266/F,۸fНۭIY]D̺kHppB,n rǚzy|%ɋ]m*\.08>H;:@<ȥ}|D}a40b<'UU&u 3v*Ƿ門eF*vB?lNS9A#ӌ>Xxu7"V|g;tQLX79hf*?YȻXg=PJK[qIQ*YRVx1{%OP:ͱLQJ-l~|$^ϔ$xCX<^- E &NF{މXG^:|_"aA?շ5WA6X0{ԚcVL|-ݘ{ݖ8{ +/RP:ij,b-+{T'^!Wb.L!I\4d:QL/IG<;Ԣ#~u"c?H^p bY0 ԢJ4ѝ’0O441צ$lC&{_L +L_eC8j0*<4DO XqMHy-s?a|ɏ+g p[obE3+8/ޯ7wLJ$I}BA~k73D(Lb~!hXA-U(ٰȷ-O6) Vod!Ta܅[T)ۈ2{~3IA8B=f) E[à~#%HA >Ej'^ZJߨ_pSm.d^Ʃm<3u +`9yp|CO&y + 0&pIVi詄U]L5ˍI);|ИSgSCA2YyUWV%!u{faȓ sRC {H 4ue23#EQ z6Wu7iJ4PrJq{V%1Băy,2)_!6G}̐3~_?ݫENŔK4-,!H5To5̪42+ y&J</9ĔnA°ҳŕSpd 'sb4T6j\g\ mih( .UW8&lȣASIus!ڞ,a:*tI>U1|q .ѰI\/ at#m2knM4м&wħpۚۑPI 3:%5cikM7@@atvfŀ1e dcq`]kf-xEkj(jj/\㥝dPMTa;{ 1dwqZfd~KJ4?{v6X n+K>>ԻuP7 \.1jv"48w0Sn컪3^s"3RV,_Ήnwk%䤜3i*v;ሺYi VK9c1,{LouR04tPwDӑ|1'bq&5="GlG ʱQlPXʏrSM,]_Ԃۮ58:VV0Nx#7LKT *r +!4B{QiVr3hxY gs\Q5if7&ߡS+MqB4(7ӵQ=IA cݤ)ت!&6hASI#.|YC"{>efY"樘<*oEhqi;T)F+U%Vhb>)?|>&`0qsݱ[\ŬG)IS@/GV[l>.A<]G]Dl\m޵sObcVgs0/gQy>E `'AOMRܽ!&-5elZw3L8zJ#:n|R\cNt򺗵m D]&XG^f']n ggA8-1vuնV +3hӖzdz ^kB{ &|tś\OdN *e5 +eo;3;6#\Qoŧ;d|y l.>Am a.|[rydM7R/ I]&LH+tT79fxM'|r0Z8.brK9X#qR-43Ygξ] +19L|~ͣb? ll6 !JB {}! ǵ#xX1JܛR>5#6pߓSy*")m#͉`D2@+$.- Ӿ{%=#'_yGn`8(J,h;COJ񤈋:OILgWG>J,zxOAE^vvMQyMNEO{'jklFOf3`x$>i+yBL+PLk~1yq9JS%bNay]D0rz%]TN>zLHC_*31 [fadً#2V)na{`>RvUV+}j5_RL ō;Z.rcmluk\u/Jꋱ=4q(fϾ8 +jS/47_҈]#8l:mz (.V"2Ck3e;&cWw8Uև^E/[ef-t "j)T"[8l x A$lqo{*9CguΞI>V(܎~GZ6VƲNN6Y&#t$dc>bEJC; ǤPS;&K!3)' 3o|+cFC(4#Q{n'V%[6y*߄7gH+]U;nu#sUpp(*v;`Gۏ$Q?OG[\\mE +E5Q;Jyp2V*[B燣II&$Sj^.ϼyy8:aNE!`_1ZRPG1FIJ\'+氛w(F}?Cw2L6__fU&*|d.|H煪lȧ[%ZۧPĞDmeq,aeP}`Ha@.pǼR'Hb(G›KaM|~1W_K2f^n{m&H~#"/4ad";ZYoQTt9zaX<9s]D6* <"Ӓķ&).·yerO|*wĻH9W0ӔtrgiL#wkIZ^3SBet{YWζ#SUg]8 /GRys8_umGS>~} X(FbO ANJ[ʄɎyO[A!1HqF(֕P;ñ[|su)'`)/)8 Aiy#YJxͅk_ +3bFbG[K1S$P*˷q󇋻v%Y3h6tMl{ҤUvV"$rdAD6t\wFM$3]rҿfKg#+9++?h2-y DzKLPK @O{Oރ hX ujG{s:Y&޵ՋֻSGϵ4~^EWR#[lL0V>@iVoE"o]SE0pxVڂ>lf̓_2BSٍ fRԥDfo%^~>Fޔm?2\q-fU+Qh[S|?#@_a }[ +(nRnX7b- ;B#s,?/hj2ŤAZD8BPh V1XA bS&-ީ%y[$chh,[0YJtXuHx24LTl68BJخ6λ y3'Y3kv>~꼋R=bRRT#FLLfK`j>3uVt(Ǐ+ +p*^ݪ8]Dyhk\(F+N=}Ph-uwRNF),GxQPyε\գ>x3QEf1|WN7o {*5/vQMɖضMq< Ic8φ=>C c&&G m$&)ߟ.ETڶ}}]<2uEA|Lj{F$NLULPվ*k&wp_.*o;y^[]o0vvAv`gp߁+G%k%ZzOnѮ4~ܛ'=9/r[4 +H y]}ũ_1SlᘅD:5{rC4gx榲Ũ,cv5t +L/\-ĸ:G7‘umOj9.4ۍ?5mO#\rQG@j.xs 5PXēֳmf]ͪi-pɢsbxW;,-&kbw ,t S (e r<˹-Vs:5eOQVҢ+㈧i +3kt2W:d57=lhGG.<"QLluK5TYs@N&agsˡH2UL5i$fU!♎",Q!w_bFs0d1\"Dȇihhvq'>wG; +Gvd݉mm6{oV[ibLT?FIpıId;,:hnOy|Ge̮'Ϟ:oqsLMg.#1H sUGksE /zOsK&ir!@i}Û3k|tiRh +}X9ըNy,T!u]c@.s0;U 0{H< \/pdx |vYz`S?Pd: hrlaCg[_0t=`UR)6!jĉ`i aE8ma&!Z{3s-/PH-[s~6R'j8~"Vq&`S^iKIҸuQ_6g1.B<#y|_-Į3̌䆨}i@q]SM;Kd2"'~*7)T[!gGTJLcԞHV[,Zwtk"Y$rxIfk}ok%9(L; Y>dgp z IiŸ D%ІݭߝBԏYS>E1qҘ^['jȜC#_RM/$V.WH3ƪ+Qr<LWe+s*#hH<Ow^;,#I-4Y+r"ƖrrrE[>nZUUӫC3w`SlqEqC~:;c׶`Vm(W%W%g!DN(ԧ ˉ&CsKsY)B)Rd\}Ee2Xg{#1ɘ ~ # كSgƲ5L@8Qw蕽M){eeGې.yѥ89)$]>\ӈTwan +1%;=[/ī7iP:Rf &UP@im[B/?_-nQZ`*cjmDž$̢?\61 ^Ȥ"u}^Vdi1 ( a+s$q*$G(why?3\nqgUcU{K.Gg>O6[W;hvS2͹ϛ^8}"zXS&S5˗w'SՐ' @K#?h +endstream +endobj +313 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/SZEWSF+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 312 0 R +/Flags 68 +>> +endobj +312 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpw/ + +%\.P֠տsA>m59'kgtXASw*iigo?N'sW$ Sps:! 5 {FP7}&)ٜkA!aa df,ʴYisnmdb&7z^*?!4b/&._ +hn~0C3J<8OJy͒{{0۷窴]nEUX=a+DE~8h291=籼y[i)wQS7FzV5zF|i X*AwS%gV(=& |λDl~ 5YH]@*+~:ytɑ6XTɂ KxtKrAzE/%aCڋ_IG Sl/QEZ<{}׈wn%#+.=F!<uԩ<հ QzsތyN׀aNEF?ߚi`ꝥh{˳w~Wֆv4O+c^"G^1Gq}2QΓShL5m'!)dqsų']w 5yL%Y huVpo!C\lO?îJ6lw}!.a2D-_ͦ'ܧPkz@ai/DZz]prќ~3Wx!A|xz|˨a4cw%\S&Z N\7+Dx욲 3Gmu;Yq): rĖ{ +P$ +fRUWCqM|焖O{㔍Okǹ1XYEܗHR3x>I_5qȔHX"ƀl$a{DF.1"Uj=bXٯ^~l#|A-@Kej%PQ47y}[ѵ-#Oxo=&9y H}%-nZs)J Ơ;*Q~}k-P~ ;`܍)Bb" +:>?xB` È9v a*gmjz $M;Js_3q[$.0gX:8F *_TK0gJW'=%);yAY6YS& Gcԣ3(yVqSv4N H^h=yaԥlZ!*$~@!5b|3VŸ(=as2?yܪ 8݁34a,)#kY lz5*^rD~|c9Mb/yEHEIkhTQbxO?tղ3k9duKjk%hjXuP7; njlDp欵-ɸCRk%'B7g ,WS86TfZ2U/YiLw*|Ÿ:GN(BK."u3[Tq*\\u^VduRh;XrC)}Uyh1;kor[R_@1|4k~>ͱadDYXosN_6 pQdF¤r}û*A3ETʔ8aT FBt7Mwt8ݓLK]g3();r$:(VnYfar_6L3:OEqhfS*oON1eo6^q٠yG}*NCI Nm?̢+,:fУQke4 Il6ăш**ZD C,l$uG]%W -߂ QVA*qӐ?7Z-1'JW;tGaKU8B233e|һA܍ui =A 9jI'V2R^Q#-?6#0 Q/Lv0vokN"ZYC X1], +[!*6v Ip*~# l7BCh3w7پ#E|wFJ~b]{7Ƈw[j24.<-hFuJ /=o>Kݡvї2zu@ ٔTGw[yqJ γ&tUA|taK~Ҍ5b[*"6Qj,v˄ `8һ8́Z4ɐiƃW05V@/f>qW +/uϛf ;c*/l;w&Ɇ/PPԹT<$P=`_j7Se?D"qbkƽMEWA,i$HTŞs{Z¶'d &d/x W?&xi  ~k:Pc3mE02[Xj2SÒO6¯=4)n5Ry3&d|o%>8> .xjWGFD^[ ]"9a{9zn#ʠX(/۫9CW2 OjkM>^+kS뾮#s*buvaWtc<ZK]xNߥprㅔܩO}X6y::ؒA[zk<ԟU mEfRZy*`Gq-Ke2WE< RxLJi:0j;GAxhU1Ƭif[:JwG<uqHΑE`Z`/7Ǎ j+L3JF 5}ƍd;*qeiκgCt/F8Squ3fߧ7|<2ߎ7FN.^¹@(1mFFJk]pt!*kI?O}")GzU:ח8!@"IhQ048D֦f;7} iQM Â5 +jvyI`eQPM!*<ZJdqX]v]-PH%CT01eI˜%M:$nߞ p'rmK +" >`ˏ*aHz,X8Axn/͔H7o Ɲ#\#vJ߁[`j$1S4`k=6R崯GSVTmOELgIQ7wΜ$4)#gM08|ga?nsMnMB;ep#,țŊga?$br6xځ3"cxsA'd"ƧB.J+`}nAm WgtTtxbҬEbԐ|L<]4 +-bWWƱ@kkp[/k/ypS:BLΰD~XˋR\v"$B':pŔxrTBB10 O5~_1OЈQ U@I{$r<6Bqk2@ܹT_sRkv}md^1DVSR*ʸQXVs*+MhNy+Knq,5-'VC[#eӕgR8-z/V io-r$oަ.h :?3{QˠeG .SJe(DŁ%7? nBa?IFZf]Ø"AOg+MqT; X,;118gmhl+{)y\9 y4^ {LX'96ZU_{?<7t$XH%p2T࿶Zg3[(SpSXcR\ҝo0t絏0QkJ xYLDFٵ]Ω= +\T1 dl=,1X.zضXދYHY5} .kw? ;13`a&lQNk#HXtQu~T0{ǭx~i,ÅȞKD*Iv:;}Uk-6h/\vo0À1pJvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 53 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +55 0 obj +<< +/Type/Page +/Resources 56 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 318 0 R +>> +endobj +318 0 obj +<< +/Type/Pages +/Count 4 +/Kids[5 0 R 21 0 R 48 0 R 55 0 R] +/Parent 317 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 319 0 R +>> +endobj +319 0 obj +<< +/Type/Pages +/Count 4 +/Kids[70 0 R 74 0 R 78 0 R 82 0 R] +/Parent 317 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 320 0 R +>> +endobj +320 0 obj +<< +/Type/Pages +/Count 4 +/Kids[86 0 R 90 0 R 94 0 R 98 0 R] +/Parent 317 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 321 0 R +>> +endobj +321 0 obj +<< +/Type/Pages +/Count 4 +/Kids[102 0 R 106 0 R 110 0 R 114 0 R] +/Parent 317 0 R +>> +endobj +317 0 obj +<< +/Type/Pages +/Count 16 +/Kids[318 0 R 319 0 R 320 0 R 321 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 323 0 R +>> +endobj +323 0 obj +<< +/Type/Pages +/Count 4 +/Kids[118 0 R 122 0 R 126 0 R 130 0 R] +/Parent 322 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 324 0 R +>> +endobj +324 0 obj +<< +/Type/Pages +/Count 4 +/Kids[134 0 R 138 0 R 142 0 R 146 0 R] +/Parent 322 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 325 0 R +>> +endobj +325 0 obj +<< +/Type/Pages +/Count 4 +/Kids[150 0 R 154 0 R 158 0 R 162 0 R] +/Parent 322 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 326 0 R +>> +endobj +326 0 obj +<< +/Type/Pages +/Count 4 +/Kids[166 0 R 170 0 R 174 0 R 178 0 R] +/Parent 322 0 R +>> +endobj +322 0 obj +<< +/Type/Pages +/Count 16 +/Kids[323 0 R 324 0 R 325 0 R 326 0 R] +/Parent 3 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 328 0 R +>> +endobj +328 0 obj +<< +/Type/Pages +/Count 4 +/Kids[182 0 R 186 0 R 190 0 R 194 0 R] +/Parent 327 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 329 0 R +>> +endobj +329 0 obj +<< +/Type/Pages +/Count 4 +/Kids[198 0 R 202 0 R 206 0 R 210 0 R] +/Parent 327 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 330 0 R +>> +endobj +330 0 obj +<< +/Type/Pages +/Count 4 +/Kids[214 0 R 218 0 R 222 0 R 226 0 R] +/Parent 327 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 331 0 R +>> +endobj +331 0 obj +<< +/Type/Pages +/Count 4 +/Kids[230 0 R 234 0 R 238 0 R 242 0 R] +/Parent 327 0 R +>> +endobj +327 0 obj +<< +/Type/Pages +/Count 16 +/Kids[328 0 R 329 0 R 330 0 R 331 0 R] +/Parent 3 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 252 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +254 0 obj +<< +/Type/Page +/Resources 255 0 R +/Contents[17 0 R 4 0 R 256 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +258 0 obj +<< +/Type/Page +/Resources 259 0 R +/Contents[17 0 R 4 0 R 260 0 R 19 0 R] +/Parent 333 0 R +>> +endobj +333 0 obj +<< +/Type/Pages +/Count 4 +/Kids[246 0 R 250 0 R 254 0 R 258 0 R] +/Parent 332 0 R +>> +endobj +262 0 obj +<< +/Type/Page +/Resources 263 0 R +/Contents[17 0 R 4 0 R 264 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +266 0 obj +<< +/Type/Page +/Resources 267 0 R +/Contents[17 0 R 4 0 R 268 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +270 0 obj +<< +/Type/Page +/Resources 271 0 R +/Contents[17 0 R 4 0 R 272 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +274 0 obj +<< +/Type/Page +/Resources 275 0 R +/Contents[17 0 R 4 0 R 276 0 R 19 0 R] +/Parent 334 0 R +>> +endobj +334 0 obj +<< +/Type/Pages +/Count 4 +/Kids[262 0 R 266 0 R 270 0 R 274 0 R] +/Parent 332 0 R +>> +endobj +278 0 obj +<< +/Type/Page +/Resources 279 0 R +/Contents[17 0 R 4 0 R 280 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +282 0 obj +<< +/Type/Page +/Resources 283 0 R +/Contents[17 0 R 4 0 R 284 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +286 0 obj +<< +/Type/Page +/Resources 287 0 R +/Contents[17 0 R 4 0 R 288 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +290 0 obj +<< +/Type/Page +/Resources 291 0 R +/Contents[17 0 R 4 0 R 292 0 R 19 0 R] +/Parent 335 0 R +>> +endobj +335 0 obj +<< +/Type/Pages +/Count 4 +/Kids[278 0 R 282 0 R 286 0 R 290 0 R] +/Parent 332 0 R +>> +endobj +294 0 obj +<< +/Type/Page +/Resources 295 0 R +/Contents[17 0 R 4 0 R 296 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +298 0 obj +<< +/Type/Page +/Resources 299 0 R +/Contents[17 0 R 4 0 R 300 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +302 0 obj +<< +/Type/Page +/Resources 303 0 R +/Contents[17 0 R 4 0 R 304 0 R 19 0 R] +/Parent 336 0 R +>> +endobj +306 0 obj +<< +/Type/Page +/Resources 307 0 R +/Contents[17 0 R 4 0 R 308 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +310 0 obj +<< +/Type/Page +/Resources 311 0 R +/Contents[17 0 R 4 0 R 315 0 R 19 0 R] +/Parent 337 0 R +>> +endobj +337 0 obj +<< +/Type/Pages +/Count 2 +/Kids[306 0 R 310 0 R] +/Parent 336 0 R +>> +endobj +336 0 obj +<< +/Type/Pages +/Count 5 +/Kids[294 0 R 298 0 R 302 0 R 337 0 R] +/Parent 332 0 R +>> +endobj +332 0 obj +<< +/Type/Pages +/Count 17 +/Kids[333 0 R 334 0 R 335 0 R 336 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 65 +/Kids[317 0 R 322 0 R 327 0 R 332 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +338 0 obj +<< +>> +endobj +339 0 obj +null +endobj +340 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 338 0 R +/Threads 339 0 R +/Names 340 0 R +>> +endobj +xref +0 341 +0000000000 65535 f +0000156519 00000 n +0000166067 00000 n +0000165712 00000 n +0000165917 00000 n +0000156683 00000 n +0000004049 00000 n +0000000009 00000 n +0000083095 00000 n +0000082911 00000 n +0000000913 00000 n +0000087967 00000 n +0000087781 00000 n +0000001906 00000 n +0000093438 00000 n +0000093250 00000 n +0000002823 00000 n +0000165817 00000 n +0000003740 00000 n +0000165867 00000 n +0000003994 00000 n +0000156786 00000 n +0000014712 00000 n +0000105456 00000 n +0000105267 00000 n +0000004110 00000 n +0000110728 00000 n +0000110538 00000 n +0000005056 00000 n +0000116032 00000 n +0000115843 00000 n +0000005992 00000 n +0000006968 00000 n +0000119683 00000 n +0000119489 00000 n +0000008584 00000 n +0000121091 00000 n +0000120905 00000 n +0000009593 00000 n +0000010557 00000 n +0000124233 00000 n +0000124039 00000 n +0000011511 00000 n +0000128117 00000 n +0000127922 00000 n +0000012457 00000 n +0000013409 00000 n +0000014601 00000 n +0000156891 00000 n +0000016984 00000 n +0000130724 00000 n +0000130533 00000 n +0000014774 00000 n +0000015769 00000 n +0000016884 00000 n +0000156996 00000 n +0000022731 00000 n +0000132915 00000 n +0000132721 00000 n +0000017046 00000 n +0000018017 00000 n +0000137212 00000 n +0000137017 00000 n +0000018924 00000 n +0000019906 00000 n +0000139868 00000 n +0000139682 00000 n +0000020883 00000 n +0000021628 00000 n +0000022584 00000 n +0000157195 00000 n +0000023436 00000 n +0000022793 00000 n +0000023391 00000 n +0000157300 00000 n +0000024739 00000 n +0000023498 00000 n +0000024592 00000 n +0000157405 00000 n +0000025488 00000 n +0000024801 00000 n +0000025443 00000 n +0000157510 00000 n +0000025882 00000 n +0000025550 00000 n +0000025837 00000 n +0000157710 00000 n +0000027227 00000 n +0000025944 00000 n +0000027080 00000 n +0000157815 00000 n +0000027946 00000 n +0000027289 00000 n +0000027901 00000 n +0000157920 00000 n +0000029647 00000 n +0000028008 00000 n +0000029500 00000 n +0000158025 00000 n +0000030912 00000 n +0000029709 00000 n +0000030764 00000 n +0000158226 00000 n +0000031649 00000 n +0000030975 00000 n +0000031603 00000 n +0000158334 00000 n +0000032361 00000 n +0000031713 00000 n +0000032315 00000 n +0000158442 00000 n +0000033640 00000 n +0000032425 00000 n +0000033492 00000 n +0000158550 00000 n +0000034369 00000 n +0000033704 00000 n +0000034323 00000 n +0000158855 00000 n +0000034961 00000 n +0000034433 00000 n +0000034915 00000 n +0000158963 00000 n +0000036411 00000 n +0000035025 00000 n +0000036263 00000 n +0000159071 00000 n +0000037161 00000 n +0000036475 00000 n +0000037115 00000 n +0000159179 00000 n +0000037938 00000 n +0000037225 00000 n +0000037892 00000 n +0000159386 00000 n +0000038207 00000 n +0000038002 00000 n +0000038161 00000 n +0000159494 00000 n +0000039717 00000 n +0000038271 00000 n +0000039569 00000 n +0000159602 00000 n +0000040491 00000 n +0000039781 00000 n +0000040445 00000 n +0000159710 00000 n +0000041241 00000 n +0000040555 00000 n +0000041195 00000 n +0000159917 00000 n +0000042540 00000 n +0000041305 00000 n +0000042392 00000 n +0000160025 00000 n +0000043912 00000 n +0000042604 00000 n +0000043764 00000 n +0000160133 00000 n +0000044565 00000 n +0000043976 00000 n +0000044519 00000 n +0000160241 00000 n +0000045706 00000 n +0000044629 00000 n +0000045558 00000 n +0000160448 00000 n +0000046305 00000 n +0000045770 00000 n +0000046259 00000 n +0000160556 00000 n +0000047473 00000 n +0000046369 00000 n +0000047325 00000 n +0000160664 00000 n +0000047955 00000 n +0000047537 00000 n +0000047909 00000 n +0000160772 00000 n +0000049220 00000 n +0000048019 00000 n +0000049072 00000 n +0000161077 00000 n +0000049827 00000 n +0000049284 00000 n +0000049781 00000 n +0000161185 00000 n +0000050852 00000 n +0000049891 00000 n +0000050704 00000 n +0000161293 00000 n +0000052120 00000 n +0000050916 00000 n +0000051972 00000 n +0000161401 00000 n +0000052786 00000 n +0000052184 00000 n +0000052740 00000 n +0000161608 00000 n +0000054046 00000 n +0000052850 00000 n +0000053898 00000 n +0000161716 00000 n +0000054564 00000 n +0000054110 00000 n +0000054518 00000 n +0000161824 00000 n +0000055722 00000 n +0000054628 00000 n +0000055574 00000 n +0000161932 00000 n +0000056203 00000 n +0000055786 00000 n +0000056157 00000 n +0000162139 00000 n +0000057453 00000 n +0000056267 00000 n +0000057305 00000 n +0000162247 00000 n +0000058676 00000 n +0000057517 00000 n +0000058528 00000 n +0000162355 00000 n +0000059946 00000 n +0000058740 00000 n +0000059798 00000 n +0000162463 00000 n +0000060565 00000 n +0000060010 00000 n +0000060519 00000 n +0000162670 00000 n +0000061752 00000 n +0000060629 00000 n +0000061604 00000 n +0000162778 00000 n +0000062494 00000 n +0000061816 00000 n +0000062448 00000 n +0000162886 00000 n +0000063326 00000 n +0000062558 00000 n +0000063280 00000 n +0000162994 00000 n +0000064054 00000 n +0000063390 00000 n +0000064008 00000 n +0000163299 00000 n +0000064613 00000 n +0000064118 00000 n +0000064567 00000 n +0000163407 00000 n +0000065559 00000 n +0000064677 00000 n +0000065489 00000 n +0000163515 00000 n +0000066286 00000 n +0000065623 00000 n +0000066240 00000 n +0000163623 00000 n +0000066841 00000 n +0000066350 00000 n +0000066795 00000 n +0000163830 00000 n +0000068399 00000 n +0000066905 00000 n +0000068251 00000 n +0000163938 00000 n +0000069112 00000 n +0000068463 00000 n +0000069066 00000 n +0000164046 00000 n +0000069870 00000 n +0000069176 00000 n +0000069824 00000 n +0000164154 00000 n +0000071441 00000 n +0000069934 00000 n +0000071293 00000 n +0000164361 00000 n +0000072583 00000 n +0000071505 00000 n +0000072435 00000 n +0000164469 00000 n +0000073110 00000 n +0000072647 00000 n +0000073064 00000 n +0000164577 00000 n +0000074409 00000 n +0000073174 00000 n +0000074261 00000 n +0000164685 00000 n +0000075080 00000 n +0000074473 00000 n +0000075034 00000 n +0000164892 00000 n +0000076726 00000 n +0000075144 00000 n +0000076578 00000 n +0000165000 00000 n +0000078375 00000 n +0000076790 00000 n +0000078215 00000 n +0000165108 00000 n +0000079738 00000 n +0000078439 00000 n +0000079578 00000 n +0000165216 00000 n +0000081462 00000 n +0000079802 00000 n +0000081302 00000 n +0000165324 00000 n +0000082847 00000 n +0000150809 00000 n +0000150614 00000 n +0000081526 00000 n +0000082449 00000 n +0000082789 00000 n +0000158757 00000 n +0000157101 00000 n +0000157615 00000 n +0000158131 00000 n +0000158658 00000 n +0000160979 00000 n +0000159287 00000 n +0000159818 00000 n +0000160349 00000 n +0000160880 00000 n +0000163201 00000 n +0000161509 00000 n +0000162040 00000 n +0000162571 00000 n +0000163102 00000 n +0000165614 00000 n +0000163731 00000 n +0000164262 00000 n +0000164793 00000 n +0000165515 00000 n +0000165432 00000 n +0000165999 00000 n +0000166022 00000 n +0000166044 00000 n +trailer +<< +/Size 341 +/Root 2 0 R +/Info 1 0 R +>> +startxref +166165 +%%EOF diff --git a/src/axiom-website/CATS/schaum4.input.pamphlet b/src/axiom-website/CATS/schaum4.input.pamphlet new file mode 100644 index 0000000..0edbbf9 --- /dev/null +++ b/src/axiom-website/CATS/schaum4.input.pamphlet @@ -0,0 +1,525 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum4.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.113~~~~~$\displaystyle\int{\frac{px+q}{\sqrt{ax+b}}}~dx$} +$$\int{\frac{px+q}{\sqrt{ax+b}}}= +\frac{2(apx+3aq-2bp)}{3a^2}\sqrt{ax+b}$$ +<<*>>= +)spool schaum4.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate((p*x+q)/sqrt(a*x+b),x) +--R +--R +--R +-------+ +--R (2a p x + 6a q - 4b p)\|a x + b +--R (1) -------------------------------- +--R 2 +--R 3a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=(2*(a*p*x+3*a*q-2*b*p))/(3*a^2)*sqrt(a*x+b) +--R +--R +-------+ +--R (2a p x + 6a q - 4b p)\|a x + b +--R (2) -------------------------------- +--R 2 +--R 3a +--R Type: Expression Integer +--E + +--S 3 14:113 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.114~~~~~$\displaystyle +\int{\frac{dx}{(px+q)\sqrt{ax+b}}}$} +$$\int{\frac{1}{(px+q)\sqrt{ax+b}}}= +\left\{ +\begin{array}{l} +\frac{1}{\sqrt{bp-aq}\sqrt{p}}\ln\left( +\frac{\sqrt{p(ax+b)}-\sqrt{bp-aq}}{\sqrt{p(ax+b)}+\sqrt{bp-aq}}\right)\\ +\frac{2}{\sqrt{aq-bp}\sqrt{p}}\tan^{-1}\sqrt{\frac{p(ax+b)}{aq-bp}} +\end{array} +\right. +$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(1/((p*x+q)*sqrt(a*x+b)),x) +--R +--R +--R (1) +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R [-----------------------------------------------------------------------, +--R +--------------+ +--R | 2 +--R \|- a p q + b p +--R +------------+ +--R | 2 +-------+ +--R \|a p q - b p \|a x + b +--R 2atan(-------------------------) +--R a q - b p +--R --------------------------------] +--R +------------+ +--R | 2 +--R \|a p q - b p +--R Type: Union(List Expression Integer,...) +--E + +--S 5 +aa1:=aa.1 +--R +--R (2) +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R ----------------------------------------------------------------------- +--R +--------------+ +--R | 2 +--R \|- a p q + b p +--R Type: Expression Integer +--E + +--S 6 +aa2:=aa.2 +--R +--R +------------+ +--R | 2 +-------+ +--R \|a p q - b p \|a x + b +--R 2atan(-------------------------) +--R a q - b p +--R (3) -------------------------------- +--R +------------+ +--R | 2 +--R \|a p q - b p +--R Type: Expression Integer +--E + +--S 7 +bb1:=1/sqrt(b*p-a*q)*log((sqrt(p*(a*x+b))-sqrt(b*p-a*q))/(sqrt(p*(a*x+b))+sqrt(b*p-a*q))) +--R +--R +-----------+ +-----------+ +--R \|a p x + b p - \|- a q + b p +--R log(-------------------------------) +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R (4) ------------------------------------ +--R +-----------+ +--R \|- a q + b p +--R Type: Expression Integer +--E + +--S 8 +bb2:=2/(sqrt(a*q-b*p)*sqrt(p))*atan(sqrt((p*(a*x+b))/(a*q-b*p))) +--R +--R +-----------+ +--R |a p x + b p +--R 2atan( |----------- ) +--R \| a q - b p +--R (5) --------------------- +--R +-+ +---------+ +--R \|p \|a q - b p +--R Type: Expression Integer +--E + +--S 9 +cc1:=aa1-bb1 +--R +--R (6) +--R +-----------+ +--R \|- a q + b p +--R * +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R + +--R +--------------+ +-----------+ +-----------+ +--R | 2 \|a p x + b p - \|- a q + b p +--R - \|- a p q + b p log(-------------------------------) +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R / +--R +--------------+ +--R | 2 +-----------+ +--R \|- a p q + b p \|- a q + b p +--R Type: Expression Integer +--E + +--S 10 +cc2:=aa1-bb2 +--R +--R (7) +--R +-+ +---------+ +--R \|p \|a q - b p +--R * +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R + +--R +--------------+ +-----------+ +--R | 2 |a p x + b p +--R - 2\|- a p q + b p atan( |----------- ) +--R \| a q - b p +--R / +--R +--------------+ +--R | 2 +-+ +---------+ +--R \|- a p q + b p \|p \|a q - b p +--R Type: Expression Integer +--E + +--S 11 +cc3:=aa2-bb1 +--R +--R (8) +--R +------------+ +-----------+ +-----------+ +--R | 2 \|a p x + b p - \|- a q + b p +--R - \|a p q - b p log(-------------------------------) +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R + +--R +------------+ +--R | 2 +-------+ +--R +-----------+ \|a p q - b p \|a x + b +--R 2\|- a q + b p atan(-------------------------) +--R a q - b p +--R / +--R +------------+ +--R +-----------+ | 2 +--R \|- a q + b p \|a p q - b p +--R Type: Expression Integer +--E + +--S 12 14:114 Axiom cannot simplify these answers +cc4:=aa2-bb2 +--R +--R (9) +--R +------------+ +--R | 2 +-------+ +--R +-+ +---------+ \|a p q - b p \|a x + b +--R 2\|p \|a q - b p atan(-------------------------) +--R a q - b p +--R + +--R +------------+ +-----------+ +--R | 2 |a p x + b p +--R - 2\|a p q - b p atan( |----------- ) +--R \| a q - b p +--R / +--R +------------+ +--R +-+ +---------+ | 2 +--R \|p \|a q - b p \|a p q - b p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.115~~~~~$\displaystyle\int{\frac{\sqrt{ax+b}}{px+q}}~dx$} +$$\int{\frac{\sqrt{ax+b}}{px+q}}= +\left\{ +\begin{array}{l} +\frac{2\sqrt{ax+b}}{p}+\frac{\sqrt{bp-aq}}{p\sqrt{p}}\ln\left( +\frac{\sqrt{p(ax+b)}-\sqrt{bp-aq}}{\sqrt{p(ax+b)}+\sqrt{bp-aq}}\right)\\ +\frac{2\sqrt{ax+b}}{p}-\frac{2\sqrt{aq-bp}}{p\sqrt{p}} +\tan^{-1}\sqrt{\frac{p(ax+b)}{aq-bp}} +\end{array} +\right.$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(sqrt(a*x+b)/(p*x+q),x) +--R +--R +--R (1) +--R [ +--R +-----------+ +--R |- a q + b p +-------+ +--R +-----------+ - 2p |----------- \|a x + b + a p x - a q + 2b p +--R |- a q + b p \| p +--R |----------- log(-------------------------------------------------) +--R \| p p x + q +--R + +--R +-------+ +--R 2\|a x + b +--R / +--R p +--R , +--R +---------+ +-------+ +--R |a q - b p \|a x + b +-------+ +--R - 2 |--------- atan(------------ + 2\|a x + b +--R \| p +---------+ +--R |a q - b p +--R |--------- +--R \| p +--R -----------------------------------------------] +--R p +--R Type: Union(List Expression Integer,...) +--E + +--S 14 +aa1:=aa.1 +--R +--R (2) +--R +-----------+ +--R |- a q + b p +-------+ +--R +-----------+ - 2p |----------- \|a x + b + a p x - a q + 2b p +--R |- a q + b p \| p +--R |----------- log(-------------------------------------------------) +--R \| p p x + q +--R + +--R +-------+ +--R 2\|a x + b +--R / +--R p +--R Type: Expression Integer +--E + +--S 15 +aa2:=aa.2 +--R +--R +---------+ +-------+ +--R |a q - b p \|a x + b +-------+ +--R - 2 |--------- atan(------------ + 2\|a x + b +--R \| p +---------+ +--R |a q - b p +--R |--------- +--R \| p +--R (3) ----------------------------------------------- +--R p +--R Type: Expression Integer +--E + +--S 16 +bb1:=(2*sqrt(a*x+b))/p+sqrt(b*p-a*q)/(p*sqrt(p))*log((sqrt(p*(a*x+b))-sqrt(b*p-a*q))/(sqrt(p*(a*x+b))+sqrt(b*p-a*q))) +--R +--R +-----------+ +-----------+ +--R +-----------+ \|a p x + b p - \|- a q + b p +-+ +-------+ +--R \|- a q + b p log(-------------------------------) + 2\|p \|a x + b +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R (4) -------------------------------------------------------------------- +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +--S 17 +bb2:=(2*sqrt(a*x+b))/p-(2*sqrt(a*q-b*p))/(p*sqrt(p))*atan(sqrt((p*(a*x+b))/(a*q-b*p))) +--R +--R +-----------+ +--R +---------+ |a p x + b p +-+ +-------+ +--R - 2\|a q - b p atan( |----------- ) + 2\|p \|a x + b +--R \| a q - b p +--R (5) ----------------------------------------------------- +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +--S 18 +cc1:=aa1-bb1 +--R +--R (6) +--R +-----------+ +-----------+ +--R +-----------+ \|a p x + b p - \|- a q + b p +--R - \|- a q + b p log(-------------------------------) +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R + +--R +-----------+ +--R |- a q + b p +-------+ +--R +-----------+ - 2p |----------- \|a x + b + a p x - a q + 2b p +--R |- a q + b p +-+ \| p +--R |----------- \|p log(-------------------------------------------------) +--R \| p p x + q +--R / +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +--S 19 +cc2:=aa1-bb2 +--R +--R (7) +--R +-----------+ +--R |- a q + b p +-------+ +--R +-----------+ - 2p |----------- \|a x + b + a p x - a q + 2b p +--R |- a q + b p +-+ \| p +--R |----------- \|p log(-------------------------------------------------) +--R \| p p x + q +--R + +--R +-----------+ +--R +---------+ |a p x + b p +--R 2\|a q - b p atan( |----------- ) +--R \| a q - b p +--R / +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +--S 20 +cc3:=aa2-bb1 +--R +--R (8) +--R +-----------+ +-----------+ +--R +-----------+ \|a p x + b p - \|- a q + b p +--R - \|- a q + b p log(-------------------------------) +--R +-----------+ +-----------+ +--R \|a p x + b p + \|- a q + b p +--R + +--R +---------+ +-------+ +--R +-+ |a q - b p \|a x + b +--R - 2\|p |--------- atan(------------) +--R \| p +---------+ +--R |a q - b p +--R |--------- +--R \| p +--R / +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +--S 21 14:115 Axiom cannot simplify these answers +cc4:=aa2-bb2 +--R +--R (9) +--R +---------+ +-------+ +-----------+ +--R +-+ |a q - b p \|a x + b +---------+ |a p x + b p +--R - 2\|p |--------- atan(------------) + 2\|a q - b p atan( |----------- ) +--R \| p +---------+ \| a q - b p +--R |a q - b p +--R |--------- +--R \| p +--R ------------------------------------------------------------------------- +--R +-+ +--R p\|p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.116~~~~~$\displaystyle\int{(px+b)^n\sqrt{ax+b}}~dx$} +$$\int{(px+b)^n\sqrt{ax+b}}= +\frac{2(px+q)^{n+1}\sqrt{ax+b}}{(2n+3)p}+\frac{bp-aq}{(2n+3)p} +\int{\frac{(px+q)^n}{\sqrt{ax+b}}}$$ + +<<*>>= +)clear all + +--S 22 14:116 Axiom cannot compute this integral +aa:=integrate((p*x+q)^n*sqrt(a*x+b),x) +--R +--R +--R x +--R ++ n +--------+ +--I (1) | (q + %L p) \|b + %L a d%L +--R ++ +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.117~~~~~$\displaystyle +\int{\frac{dx}{(px+b)^n\sqrt{ax+b}}}$} +$$\int{\frac{1}{(px+b)^n\sqrt{ax+b}}}= +\frac{\sqrt{ax+b}}{(n-1)(aq-bp)(px+q)^{n-1}}+ +\frac{(2n-3)a}{2(n-1)(aq-bp)} +\int{\frac{1}{(px+q)^{n-1}\sqrt{ax+b}}}$$ + +<<*>>= +)clear all + +--S 23 14:117 Axiom cannot compute this integral +aa:=integrate(1/((p*x+q)^n*sqrt(a*x+b)),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------------------- d%L +--R ++ n +--------+ +--I (q + %L p) \|b + %L a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.118~~~~~$\displaystyle +\int{\frac{(px+q)^n}{\sqrt{ax+b}}}~dx$} +$$\int{\frac{(px+q)^n}{\sqrt{ax+b}}}= +\frac{2(px+q)^n\sqrt{ax+b}}{(2n+1)a}+ +\frac{2n(aq-bp)}{(2n+1)a} +\int{\frac{(px+q)^{n-1}}{\sqrt{ax+b}}}$$ +<<*>>= +)clear all + +--S 24 14:118 Axiom cannot compute this integral +aa:=integrate((p*x+q)^n/sqrt(a*x+b),x) +--R +--R +--R x n +--I ++ (q + %L p) +--I (1) | ----------- d%L +--R ++ +--------+ +--I \|b + %L a +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.119~~~~~$\displaystyle +\int{\frac{\sqrt{ax+b}}{(px+q)^n}}~dx$} +$$\int{\frac{\sqrt{ax+b}}{(px+q)^n}}= +\frac{-\sqrt{ax+b}}{(n-1)p(px+q)^{n-1}}+ +\frac{a}{2(n-1)p}\int{\frac{1}{(px+q)^{n-1}\sqrt{ax+b}}}$$ +<<*>>= +)clear all + +--S 25 14:119 Axiom cannot compute this integral +aa:=integrate(sqrt(a*x+b)/(p*x+q)^n,x) +--R +--R +--R x +--------+ +--I ++ \|b + %L a +--I (1) | ----------- d%L +--R ++ n +--I (q + %L p) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p63 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum4.input.pdf b/src/axiom-website/CATS/schaum4.input.pdf new file mode 100644 index 0000000..a9291fc --- /dev/null +++ b/src/axiom-website/CATS/schaum4.input.pdf @@ -0,0 +1,1765 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZADFFY+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RYAEJS+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/PJGLCI+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 178 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T5\7_%%b C, vتivtQ_-,(?H(ݭ k +li3E+`;6m6 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/FVFVNG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/AKKKLG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/HMGMRM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/MLMMPW+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/FGFNSJ+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/VXECUR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length 768 +>> +stream +xWKo1 +rZwlɑG'@<.P@ џLtfvn:vb%kk|{vn Z`kGl+9r>D?nz$cu4<O]3R5 :>Mf0!px{L٠L6 8o ʊr0p6 ! >L[C1$lĤ_%&={{f#6 L#FV"ʾPHQ^Jq,HV3+k#0EBV|޳:ߒޤF +Qk]].q3,"WTqB^Wkp5,BcNi^l"{a"-pT ;#0!E: +>ցU {QQlJY2;:n_S@t8\ͭ2gX> * +endstream +endobj +44 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 39 0 R +/F9 42 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 44 0 R +>> +endobj +49 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/IUDUGQ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +52 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/BPCHBU+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 55 0 R +/BaseFont/VNHICW+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +57 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +60 0 obj +<< +/Encoding 57 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 59 0 R +/BaseFont/GHFLWX+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length 891 +>> +stream +xVMo6W(K~ȡEE{lKW[*@|dɶ,rYLy|H4s@ i~^Td~O`Vj9P + >0JY~vϼ)BXd09!x+<*uXr "AxڞģM&7s,ABe’'JtAnSnȥ̊Lc-.E`a=bvCv] \ j*!Lk"Osqo{{ s=^<8Ƣu`7(Is\?t@ @\>L 氼6pB{SˬM0"T9cNaDnDŽ;P QQ&ﺡa!T z}-Oh 1& },q7"/Ps6njsnH/OO6R϶Gt_vOK鞞,c9$'N +j{fG5PZj(Wsx~Rl_?P<.Чf M]Z~fߏ-mc.)ۼ).0~\m7UQaʫf*ڦ=9_H}bU13}!JHB!> +endobj +46 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 62 0 R +>> +endobj +67 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/WRWBVR+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 1349 +>> +stream +xXKo6WhS f{꺗F9ȭf$@] ?ÇDŸ,Z_37F&%-KrG=v}N (ZB3*$Yw` ^XޮxFYMW(򋗀2^+C +AheOQH*Z)0)dVbhwe0K";qzGE ǫ6Fʊj?TxVj IL4pSgZo3VJҊIMZG**Z1'"J|$JDFb!hzӝ)NjP`gtkjIQT%sIs=CI`G\+ak𕘁,j@M֭0q;K͓e$},XN\_fӳ߸>OOl}> +endobj +64 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 538 +>> +stream +xڽVM Wp4F؀1R5[ַ,eqHN7qlpm\޼1F}G!UHDqD (OO0RIwQ}E Qߢ*5LOud̉b*gиa)JGկfp٭׍{9֫]?—o"Kt7Ek> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 527 +>> +stream +xVMo WpkAl TjӪ=DiTJݏCWʏ_ vLb!B{~ψQfW MDR@ "9Ue`B"՜8W/#"uuo5"E3{KwW+Y@KW>+L 9y012 7!v e]?'IJ0kդ>-RtLc.ûȹIlxV̗ydzQ7eQbԴ j*{ad9Ҕ19 CU]ב~ 6f$1nqgdKqc^h"TNFe1 R J'(Jشxr<ؓfC+X1ro^emXgb93t:ǣSS/;8o9㈱SauCzbq2MISWBèC(m52޼VgWg4MiHK]v +endstream +endobj +77 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 551 +>> +stream +xڭVMo0Li6]w5=f#$"m*ǯe P 37 J$A6Ad,9XœĂ} ­' +(A ]󌰀?l|ơ0 .fXA5S;=EFh˹1\ʼ<o$% zο>#0 e4gUdA:k$5wHb UK>{* YiYm!NTSʥV4-#"<8^T8 +&lS"d(pXT/,4,3 ftfmd3Twj0JddĦt@i{6uQUżuiv3}g2Ae>+:s\@z^şkBIɴ&ʣƻ{:`MABa#3Z]hݒz+OrI5Trr#vq?drU22}OȿH~a +endstream +endobj +81 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 132 +>> +stream +xE0 Dwc2؍S4!PeG!ӝӁ#`{js RBd > +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 1423 +>> +stream +xڵWMs6W(E& ,=u:vzjK-Du=:홪3]$@$-'޾} VPZUs \T*ňU%j/k@.1&7_߫cvPһ,̰)DJlAuFRWV@Tn*12:;(I‘! əH^Qzަ[X׷p9`p~8hc@F*BPa!0KFbMӡfBظύl|1*'FFTm0:&tX~Sn>qt갃Sͤ@̀" i-ZxF6Op͎֨#yHB{yW~W++XO]t`x$Ԓ? BD "<ɳ.p¥hј, .CLQHʩq<:bQ6 MX]xuqe) ^DxFrP!yAHl*.2xha(ڀ`@Z/Rʨq(FI0QEͱ|+C0yI Z =%,v (Y7皍p7&c{v.aCW{$nerLds$sĹX;P@h=k ;MyQÔJᤊNCs7Ms0&T=0alZFp +l,eʁp0xD(yʫ[hג5խ"G}b aHLGXfhqMЄrqOR"@s> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 614 +>> +stream +xڭVK0WClH{cm4Te!5X Vɼf +\$Fy3TF hST|yq0b$w┦N!4r| U|G„1Ѡ)bPo,.40?2Yܴe!`]zƒkH&|G To,ȸ4LYHyRr} +endstream +endobj +93 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 506 +>> +stream +xV=o0+<E>DZc.Uj6[! *U>*ݽ{~w:DBiB$Q4J_=;x>.C:867f{ryKA \\|KӴ17/Lʦg~o1'iWs뷏~  ڦmD ׋ +P@\Lj+y= + G"Kq_r1x2^! ={1^Fл2!42MWRJ@n) k) jNR5G/lR T#oWC\g_ɵAoȏC.wN.|<+MTjt((kQ];Rk 񶐳nم9wԦSQ&? ]i+C`Aէwuo ba]TE!Pb ;D<ı f'7 +endstream +endobj +97 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 545 +>> +stream +xڵVM0WB&Cfr+=M#"5+ױCvblfyA$$"@#J@XPr~a@8f;"Ic$$8>SAWeٱrȘ2/}2^]Qכmi}.vC"OFIc1oI< Z^KUrMe3,/4BL}O99i<U^۽y70bW%;%Kѓ-@yO&y3_lg9q\oe[Jǖ<grgdHZwIL|L]r% "r$L»;"%RmƑ6E? 9 +endstream +endobj +101 0 obj +<< +/F13 60 0 R +/F3 16 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 1382 +>> +stream +xXKo7W쥀r6C:E(։eVQȏ >-(v!=߸(yY*RFp f,WL͙gcߟr{C,B #,D +H +OM$Ye"\ ۛŐDw{Wo.q׶k:n"\Y6JF)OL+lqYf}Q %m8Qm6ˤճ_t&>J.}@HM/Z/g'7dKiObe0xb.>0Fw '@Tsu}YCcRsu_͇&sٰߴ'NsdWѹäV0MIշ%{ؼuyÓ {is)2Ul_)G~%~cTըoQF[z->p/Gv15W=}OoG}ClQ~hF 'F _1) G6T?v=&8`xOkzmhfl Mձ] ȴ];= V-Fn/X fӛ(-SŞ`6 Đ\۬!zu-} +Q{D80@Y& -BANfVVVS}Mx`e+))B۔ƛRKM)kJ惕}JM W;^9/Lߞg0 +:u>.Bc +endstream +endobj +105 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F10 49 0 R +/F7 35 0 R +/F8 39 0 R +/F3 16 0 R +/F9 42 0 R +/F11 52 0 R +/F12 56 0 R +/F13 60 0 R +/F14 67 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 1416 +>> +stream +xXKo7W쥀gimu=55`K +!>؍A g8of8q^-3YdB? + ̨4*f?i j^],;}5.sڋ&Wu-V+dQJjo(&uf?`b=|6wa͌i5a]0 hq5#2Em1pxg3;bڐVi*CI0h ezN% +1A|=J>="mȪh}`6%+ZYzW0kzv]V2\;@v^ҟQ@dX%ϐ#d󢅴I@1 :! eЉ~Ei%3s\9P-ok_)ˬHR畯*;jH.yByL7C3x?Lʮ6-ԙ#W}S/C&0lTly_Z'ݯPY5RLRhH>\؈cu#Pnqʃ\/y`.:T OaRL,b*@3 ݌F<\B8MVL#UXGp~s˩1 ,_Qn@^V1n\j׷?w{ƻjx{?oVi/.ݢ<ٟUWۻ]5u5}+AG,yR&'zi) |FIO +'۟u3nɃ"U(C}-_񆔍*`IbgԖUՇQSAMf78r&Wbgq1trUq!J ,wp\}NP.ȴ}mxX9j\Cc29Y/$WTW#H1η@TPDt +pIt.4>ͦs6d-)C' 8ŰCloۿ*jor~/"e+!yG1#:=?$P܎+3 = c#pl1$ +J<  ʚ˶c49F7ُO&uM$PdB. yE0an 8y+@>N\8J3jܲ~[CyB8S-wE;t@%0S" ?aa6[8|D7J=4F܄}aBwDS}z/!gww;:\> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +114 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 113 0 R +/BaseFont/UFNAAU+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +115 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +aMZNT)@\X#CUƸ0 pvo02|SDtk 7sI%no")K ٽrWW?Q&$-;#B)@"s5v +[m?.|j}zWzIJLƛL|5"Ph˩٥+ 6+N*>uպrÚ؅\_l_hnYťHk?Tnc +endstream +endobj +116 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 114 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 116 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZADFFY+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3816 +/Length3 533 +/Length 4368 +>> +stream +xg8\k`D'`0.z`AKhى2Dt'!zys/:ue׺%,`jҀ{!t18D +22!R`Czc]q% DQ{e@u%Y%9@Ezx•Zb\@ 4bF8O"ZxÐ\B=4G!H@bҿ0@d8- (z){cP@8 m}P=\Bӿ]HT>x 4#[m!H<]=+ + x@_O"q0O+q1?4uuoKJj"18@rYCK 6H犁bJS;HVrPbYax6 +0< +.y1"dp ɝ%y%]ڈ6o?|4mf@ lӣ&DGzM2Ƨx*H9#0b抸{}ʄe[4;"}D>5<S:h희D#5x"|Ps 3cX#$YBoy-ZQHcx5ljU{,jFd>uՂr:2}Bz͞k?k 0eE1QQl/SWέ$i;8FeLe,zT5,Ks(MRe44dy?seQKl<`>asi4~T+fClN _ݟgd#샤le*RT'Lw~xH,dw]"nW>0NfqDBW0Wt͜ g˿/y0DRR)5Knjss׶әŌg4C{Im;"C,@?ha{vy_1]#8S"x-aG~|s r{Bngܮ{U%di4UV%K+= +zM}U+,<ׅ+hmaT!p8UGH]ՎPUJ%~fVj^}x‚ߙ\ +zj(TNM6F󹥪m YK9~sTQ)wqt5sK X^*|<P8Y(SQ^G8RS}Nly;"Oɑm|ߒO]&ZqU6y9u׀ݕ"+Q7Yh"l(0,`S>A(n9g{--k׊ل=M3F\Xwii* aJ ϢDm;Gڪߴvh啠u-鮸;Odk%}V`H;}jEq¹iwK@ ⁜c`C‹݈ P/g̛#Vx9(MѣNJ@ۿB]^+]_)'SiYbOTkUkR)|͔ ^ dsJ(>DdL,5sF|{e;5U~9|~gVM3?H9>%8 ɣK[jƗן@M}?# j5uK/)y8D^Pe.w3&Cuzx6çx0`Zghnmz8-Lant>7t9f"-*wlwUҐ?P9tk~x>#sYv&K +}4ng6* =Tc{}7S캐w5u@UKH3Z]nc w-Œ)rm=B}*!ڞ!H園.C~%  :{%DQcLyNG:UtI(xôy]I+>U?|!r2K V%1OԻf8S{KG*}P YKdGBX7@HF,Q5LmacK$)z2~V )wXWkFz~EA=H393tΔu\\Q&/#?rb*Yw)gXO]FL"˘۸.^FVץ* 鵹}rw`x iw,L7∥.ds>Yb=lHaSb +,\(ocu6>' 6"RŜ<-Iwu<$u^ʩxԖS[F{b{4nsqP:P a +5 UNXƢKB;2\>@"=>mduqX7\J}?-y'Lswa!KYl8~vt!]zygGmMbSR2IEʷdycZg;lu`:i^/v4 +׸N3+en vC6q?O3:9P W~+ūS&Wњ;S5i чex I|(yH|B عte=*&I&?pÉ%Hu+|a}$Ҟ>hͨ`ھ@֏Aҁ6'"iO1 a7ǔ#d9d[uq^ F79 UL+QmchbGf^ {;.qV#ĘYM mP[uG d; X zW;SfnMcj({U3Z;,.Sl➹nCCDϳ^ܑ~7$ֽKM!*I43N\Kǟ98anEq:W[E!Ps^U5!vZ3k?)_#]˾jz +,ҩIqӀGoVxJל' 8mJo%Ԑ5fp̋ W5/;K}-9rJojy bfBҠe ׊V@RY,"㓐'{kNOmՄzW:_\)urHxbM%X .U#AGE }f^oO<;2Ji'ƍ{" '`(+vzQ +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/RYAEJS+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAVUS\OWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, "Gݘ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/PJGLCI+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON5ŏJ2 +:@PgCϘh m1Y AJw(ii;w;?7= {J- DKPY3GG736b槩t´LEd\0\ %b~9z)e˫fPb͋uWQ= m,f[Xa}$>B]Rz)9 ]<٤##فuMɣ\ڨJG(I;w]Ti*M80vetp%54H]N(qI + YǴ{a|Y;<ŋS܆j v:k%+zO{/EJKgmQ{ziDᄇHn6E'-َ=B8,|/t#k_ ˛X9<(tS@hl#+m\yJ*:4I $iMU{%4:6a\ez 2_3/fL2 mq d֔#&g#'˳[?Bi$+!1,{Щ8 2I 1~JBE3W̌r7|_ykqPr|0 O!(pT0KoBmˬ%a\^mhWt#.gvG`T mرs[;{m>\РXLU"M(RlVФsmЉe'eFiɗC#4福˴?yKqcLˑ/Wxɱ88M@x8T)fΏR5kF:Zt{Yt~CO{lQʆ;ShT8vq+ʽ#%^*yQ?BI#! c^UtI.ڡYvRț= +fDQ r2?OQ_A )<HG69['Fd.As.X3d^у rm=7j1чP>PSE]Ҕ+lq=J5e էܦ!.q9"[kg?~Fh{>{^rz]^Lfs[:t-K,v"mlp<>ij:c~y`1qnǻ (:tjy$j;U&'lF5bm}IpwgkKsTS1~=Q[7:yg)UpQ3r馮ɲeƂ],7 +7Ch7`ysc3U #u.(OdֳoeoS'%> +R%K C$O_|j=<_]Ѡ1qQj+'IDrvg߰Sr9Iݼ %p4 "/ph s7KA_>5!ߊ,ԋ/{6f +eȚW-mgxewNe,=lREݚ=YDp rw|~c*)w6kCn) +kN_y}Y)**=Us_B#?{LX-c,q5z~PfRe iþ|`%HmVaj_4vR $53DbKcG}ZlI!hbZo-WXB쎈j=)* +LDvHu>4x(05@'Ǭ"<mZۣ"'YkV ZyST݌XvDoœV-L(4klٖWMGhuo͊gA)0^ȿ6I6(llazNN%fqL]>Z'|9S :!]m^~P#Q%an ֙̔s`ߐ4yƔ.uIz| +Y#k9z˶bwdlh]o =|>}^vj&8 rɴsy飁#m~K ϹpBS@&}gA ='lυ6QՇ(Si5 GK`0XD0RBiC{NH( +'Ф2Dsҧ g Pq +%`֟%';QF" Un eϺ8sdk(,.2sʇ{KlV2Md5UeҬ[l (E_cCF؜%!GaޱX'$F}0_+akٷ?}}cg{xgYzg`͞WD 4MVxaѦ~Eng6R$0#U8F$JƩQi֓~#Jݸv_ltlf:}*NjuM%/yW8W=CgĦ(aV9ҫ5?#Siׯ6:5m\hmƿS񢴶 +& M{1Hd;ped|ɏ& +vp1 *F)o>q n .`LYιS Oj\&~9Bn=, ҈K;H;{/7(8<>Qs~%Toy<;qr`#-N657ԫx'vkzl]sz:Lɾ#S-^D|tӾi9܈{S)U[e2 A$:zbы@n2Z۳%%{ c&;膗9Hp%My!|èfV>΍d/x:>`"1,clg1Y紸cTd^*>*B`nG]+/_-sKƈ%;>̥]RSo4_6c|R[i)(|i[5q'!14r.4Xkac]N⫴z~1-pPe2W*AHr黥wtDP +&LM{ b$Y=ӮBKANcD-1pdj- '3}Afdָ 'p[Aʌ3)vA~krwߊ'vrF"ٶcBZ`\w\x˘7i#.{i21~#휝PL9ׇ5U+x4`;{Fg*4æ_ha ,ѷwz;a!)F*"Jċ#X׈:V$vCw.BȺ-Zɪwͫf0'T6*Ai;M䛨;:ե2T +*n̠ -w=L6>穓1qHpO %_xjAf8̘OuQML3׊3_Ə&xbTZҦ_뭺[Ivų~GM)ƗC%*ƖsIZ_Iё|np˴~{Czȷ҈!m.l"@JE7ݳU7 pDFf#Y@R}ƒ$x?7iY YOƵ.={qM\ZdHDW \^jl(~pD>\׋|;͌qF~f (UڭAcI;L/+ɫݹF>>&}'^ɅCуfuCO9cS r(ouMGhc +c]O\k3\=b|x8?F@~9bF -۽' aiYGnC <ٮt`4|ό +VKQ} vcQf uV^$a=*=[CQl= Ta#r.ܷr2hV/.Kۋ=j0sy%E7x>p=yOJV9mN$CbTdT#lE {yuA@頺 韤y4WTFVi|pb{ $z3M-v_s1޲P_efDQ`o8ri1|(QJཧShɹ}N9Z+Qs5%*lH1 SE8>Vj o_1y: +/OKbz#Oy@> kf޳53aJQn6DofoV0Hl|F )x-vV0$GLy=D \JRY[ojU!hB =0Qmt9Ii狁)B@%)<1񈸘=h;T'ʈzFfrr_A5e_@Ir.(P|{f1f'KE0ۗLџ !oDnz|T̊K2%_&mŘ*<&2>W}7 w'dZjIU>mp75ɩM˵qdF;y])_aTܰ^iu:8fa?i]vgt"|G1@VD9.Ep)Ru`aha[ýYQG6˅/a'rh2x=,E|J@oPvLy^b~h0HERݍپq:{{R%ȟfG2K@&g4}Z! 癨&\mU1¡ܣ]"T#{q &!66Kʃ'D<}N}WN^EI":N:tbN 蕜槁K!&=[ l'SxQFyuѠBݙ7rD5Ά+US;/&criӟ c%Uڏ-jDnEBt]mm=G5.:ͧY( UߥlG,=N7O{ dX; +8]vm +XsL-0HhN~']Z%>|Eָet߿hV)Eܴ<3!!l.ugk;'8O*La +LG '6~+NҶɩ3 x1C?r|2ЍrUK.QKQa{ɽeг-Gn>REjeكM +7eH]iO37Xy/VS'p&m<v}2{NT,iI 9zJѡ}-RS7(CNdi>aEz)D8dSzͱ@S+ܽ<2.1C&Lݣ~&HVzx} 2,䁮W>ZaA%=>OzGV#An4X2 6#n,tWBCDdh~C=MpjZ* u{ɖxWf ?ދ i8`;X lf_?̀؍Ka?w~7(L<ʒ:W\٭<>Ϭ Re:W٭ZQ-aYcW˰zŐO[IE@Juٻ0UwX`!ޕ@9x`Kvz94@o{,IENH5'=RuדYJUh 3hvޔ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/FVFVNG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4278 +/Length3 533 +/Length 4828 +>> +stream +xWTDr 9v& H(@74t%JF EiA A$ 9(xιΚseּ͚_UBVRZ0\KA[v YHH#$C(,F+@`0Ep e7hh:X@Rhyq((#^C4 + E _%äih@ ( PF #xa1@ 1?oO@M!^CP8^<q[mic6AZw4KB0s h_:; oocj WWPG4m}o0P, qX!T؀`)y9<ɁjAFy Sp88gY#P4sYQ]$y$]چl?4?̒?*dޡEKzD?4?;Y7O<ӈ +vx$8ܡry sL<űZP>ؙ~jVn}Yw:2{ qz!n2tX8E"娒ӧs`e{p~{_SvPr2ak>Ҏs՗OvUiLg}_TIiGY.|3f7 Y[Obȵ÷ +*/9e7ds *<-]?Зѕ_v &R 1K |-_ _0%Y]oE쵩$unuJ'%Ӡ5IGb`g+bꋰi&kÕުVĹҵ'QuU;gvbL qF + &jQEI{?>W+ح UB}[<n CЮVl-Կ +s_#Q%eG/XJ4>pL5D/t-!/.^4%>eI D Z:!w?Ш_ k +YȻmN8|g /ʤ.WV]L_ߧ +"KW3S\~2TMgHu|ID_}Sxa)4b"ikW.g#!veJ,֤J,slw* 1ihRe0btJt<Ӏxt8a$pM;Z&]Q~+GtgƵQst,Z*~-YAj: 7-k݅V}l`xKmvø!/CW 2ѩ/cۏOO|M{VTcM_^Fc>;H);ڿcO%76B}^o).H8}GAN%ك +{]4Zy$0eGp6--x P4sf1]%!j]>VɷބOŎY "s/^7nr2-Mmt56TYh 2Rts+U4n.nW3=Ͽ|h _4<*%^wp/d0lϭƳ#z|>Am&ۡ\Mx(½u2It Ә$bPߟ6u N&mw.BtbmVy3ó5GS"F|rs߀-vJ=wC3NfPyҨOR,5n*۶>ЉӔ9 pRvNnxОMAu^b ;ٷΛ*q7GMRhEܾԃJjjdec7dseaE#*y7Y5ᧄ{t6#裃IڮxC`QzaXϩz;uEߍY#`!MCbRD le[(-x;(eL ɸQw!:D S3YeU{(P kϷ4*:RRpV.f_"wyƶiVȗ6hϝZvwQgVBlfӷLqm o} +.u"/܄uwuCx7!_Α!ECR%7y0GwȼttZ`%p0D"Fi .7w jԾl)zfjG"˦YS)k\(,`'>Uf5οkVdV.JV=sI mIBǂ5 ػu4[vSը FtqW_0Q[0 +7w +EGf2stŤZ H[5ڶDUHov(+&\ =1Hp`T4g4B֬9v_nꨄF9׆7 lτ@=_H/hBt9KsS/4 P_j>~^0IU e4JуDv}B`D܇xJ92a&Cn<-y rS~9q17H{8(GBgaǫ'H]8.]vcXк"xr{b`B_g؃ܐ/0ON}Ȥ~'Gz]>3v٘^FOV\ؤ:ץqJƙJ*A`@K![VToÇ+1ܐ vTi~qtM-8W;KLPx3'~|fk9P1gIՇ +G-=;rx .XxRݘ~*q/zgN&;ֺ!I~3-M먽AW;O_^u=]AhQ[2e#6>~{~30 +Ӽw'fNЛ[jq^zSwR‘-b +hi.SD,ˊj+񳛥z +Ue +j 6h/ÛZ876>J{%n}7q|=u'"GfPdfgKe5vz/,)L|WWkO-xP;RLZ)\VCPN⠞Wsg/݂+{TЯ|nK[?HIktu>u$D?28XQem_tk`=TS,Z"Ide d=!/dХѺ>'|K0I i"iv&8B()!{s9٘OÇԼU' d*O_6Q|wK ?إ+||bZ'b#"$>B+uRc\t=WװsS,3M BÓƾ ^ d5/pxc3IVoE Ht-9ԏ3޼ϯR9ɢC/:dώWb-]gxN2Dů]6)G>H{W|xn-y(^' Tj +endstream +endobj +27 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-301 -250 1164 946] +/FontName/AKKKLG+CMBX10 +/ItalicAngle 0 +/StemV 114 +/FontFile 26 0 R +/Flags 4 +>> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4308 +/Length3 533 +/Length 4860 +>> +stream +xgXSi +E:H PJ  NMzGD@A + +Ҥ^D@z +x̹e6?k^q1vM '*!&!TW3%@ 5:!1h !%#/#-Wo, TS%TuA`04PsB\P@c=UQ(џn.HHH{DA;`r,y nW\@ߤB+N8qU?; +essAX>.5CA[ WE;@_)& 7D은0wjpU!?~_UC{/?cƃEz@W^\Y==D;q04+Tjj/Q+#QI}&!+ KW ;BG(dڻc4Nȫ!^{@1T_p[p (_0x,72(XD4R[,pԩ| N&{unh&vlE#]N[P`1AAV>_Cuֹ9|ymt(e:K=>͕F3֓7Z  R<%/8l_g_xz +37o|g3_ n'?-eixjg^q ujv9}+qƏ Q4~fD(KʂGVUu9E*ŮUπaI-}$l9v_qrJˁ,;hu, a1=B? 㒏V"R!ő+a/tB-iX䖴7 +yOZ\,(=2FB#8ԅ6[_`Ŕ\oz@GsJ隩9zFu2$VLkkWc +EAZD|4S&#?sƥ[gy6Y T:#Ke2e'%9 @i8ؒ,cǖң +-l8bҌR-;մ,pwɊ䌸ߣfXX)W4늓ͼAx4/wՔ":\+b׮Kb'lW% +G]\^h~N1 frPvp() `Ӆc`¬M|.ّޗtm'qqLiˣÆ[B0*7>嫜3.+{x6O܍9qLf@kCIZEOߟQGuDCR zA^&<;itfqjY&zd,R|%"fo5bg&eqtzeL0IǙuBfdl~-O[*-@RLN0pLi=WCw+L^NB#7/ ].ݦ +oW,С47Q80p-~NP{ +H`G/G3lqi#'c0v6뾍~pM>Cd-K1%Y9` g_(~WDukSeuĻIj Q:^&6&_a2:RTIsUe0ݥ}su!y?nnXۆsj{f#1/u,bq Ay H˾G$0Ҿ]z$ej&IPt/w)RZ}ijQ;dA81I(bW{FZ<SUI)}ȼ !{UD P|_NǍwL,{i\yGS2[wCLՎo{M/-q-F):2!l6&vԠb[勘T &K9,h-¤RIHE<Qcޯ2KwJvw}&p}+LzB"݌$ +:ɃU!D' +mrfUV +6Kޓ{oX4Ɩݝ A8q<[\>!$%RPV' -0iz;EŘDki3L\Rk;~ _LvbXNʾt5 9ћ+SIhjl%Rb1Y1KൻMF7j5/ f  dTSG992s#0!/c.eȥ.Fd .KyBp>)5wX> +JT< +gA5۪c缼&EwԂ˾ڹ)7 t0 .ܬi7An>X}QKyl@oL~rƛ[pV3#4AE/W$Ua59KIXoAMc@*k]3 |/j"?t4XfQ̩vmxkV찈/#hi&Zu=aJ=ja&tbQrV?sux4bJfVv7qMQ:Fih}`+-H.M(dk9i*)$*U* ";'a>_snbսI8f43=`}cҵ +-hT ZJ2?9h\` +Bt)bVk3ܚk;Iފn18oe) Oٍ +[$M%7~HWؗ :XŌ=E}Q9&%/ѫh}IKW]|.6p$n-NCe" +Qi̪Ej,kDSf;} +ImNeoMSLxrbN^p ֑H-KTy#!!uZ#Wsicτ WǤ P)/74|gď/LbhTsF+sTHzN9-ME6^;,4l閘< s!U oQvXd>h`@}%nw(v"q%hTsԈW޼] 祴~`䢿+CsK u`fӂOY)SR5~up0T^1x0ާrÈ9G~<2j(+^m,i܃YLwxʦQ$EGn.#ea'4N݂*J{mi(.%i~!\ =ݎׄ:D3WvL$WivE  ONSusSe@ap`&rOa\ ?L?vOzQ,'*`Uk}7[R:6W0Rw,CӋDžɾ'ڰhetYw=OvӇnFȡONX0n +sbv{Dh tA zg Zs#b0EIHA=203+\hrX#7*m +-7HRnUtP~3YL7ŏ |$^ |Q~֦'K%]S~|`(YyONG {a\`Xg?-Ge +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/HMGMRM+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 954 +/Length2 2081 +/Length3 534 +/Length 2750 +>> +stream +xy8{[,5dT'YId;1cafLd;%"IE8qlYjw{3{ܿz8"mhl*f #{biiq@ +b0XbqFf0`r ?c;e +0AKaD +dR+yBa0#\䂜fa0 TbPT ~iVኹyP]@IcBa([\|DaΗ2&~`3<49 +GiKQ ˏu t + ~Ag .Dou@,aПuӿĘx@HD'fe 56(Eo82B1ĢQ,6O|O% 9+ŘaT Go{/8C7N3!c~!~ +q(!Phc }mmقP$@bŭ1FF)6n,(165597}y~xĐ/,HUln_NEybfinI{GMۚUR]68 +6RbȬ|^ŇS~uZch}@);6\=8XSuXBJbME4g C}h1=J{".:tY'wff6N..,2'-mCv~K˩zQҢ{=jj2e+a*F.:A :/uzh7f'\S6mMdOxkx`=boq[P]x[MU9vy3W,咱xCt0|3N9tUHݶ=6^ٱaӳG?"4[̸%FMHW}vX+LaUϊt{=87 f|hɒ|o\Рl|4_1O4ytG#Qc=)-e5~[kiZsRY9WTfEac&:tHtR*Wp+&O[ۮ,ߔIzБWy{\bLB eiDm;]~V4{n^V^ +=4:9wY\RV}CgYe[YKRYYmfʑt4Dᖅ~ ݔI1]̶K>8k윴ߔIaP[b\ĩ{b>Vdwka‰2-iM / +Gm*_5~P,Z3J9 ]u:4djw HbTU6;.v޲G~Ypsju'2+2$boUl8EȹӝdjN{1s|f@-F)GM)I~ (d7Kz1F + C>%&.p&԰֣[µU- ӡ/\x7#©^SDI%ɑMJE5 g(RCѺΐ= +63UJƆmc189HK&5K_՟P٨JrŠcR]!6! )g{g2Rw=\.&BgǃZkRm-2X4l$&4S3)0) K'}EUc㗽H-lOŮ#y$O({nÜ DԳ394>(EX4n<Mq-hYVXVsG^\T#@ 팫8jikO5= }9a6Sۤ1F ^[8{^/4oܚT\]Sf9uobqiA# UNO &wr^/zVԻ֥rU>z-:ͪ*'gb.7{}93%'s{а{Rb:siS}ǚ-j2߽,*HR4Ci8GFbuG'9^fTv̴h =C~!ǝٸD^hU()pxD+nmM>W -f;;|Zh)aeJNa SZ-ΣZ1MTi 4:h(zM/>o|s߾`I[6YdZ\u4WɃc[B^|*R5k)k;3i<.\[}-5(Van~B \4Ǹ`^VuI9G$ucg_ܬF<7, +y۟YT/ +HgݾwCWP~ତSC*4( N}Q*|},u#C{BTjTQJUظwXINsAY[㍕OcЭNvNp> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2506 +/Length3 533 +/Length 3055 +>> +stream +xk8014HVRÌrSʙ83o c1RZB+J9,%gȶZk}m_}Ȕ?4? Hh$NgA~?v +hHUEaɁdKf3J ]IC-Le؇5֔B[_+N;F%Hdc$w_h!H:T?uPXM@0*⟍x*9 43450 :2߇/>CDyl|-89;~"L:x=KU5v +iBlҲ/S#8m 5Jm7h(0o[So- Bh^ |z]YjB}{X+%M/_XћƋB׊cJx]Z==x3Ev)qEqwB +B YվcC4D]}Z gauroL#"ۃ)I:l'{Һ.EKnF͟z7wtzwqo6ҵC;"U,Ou=60.jwQjjKWv޴Tͅ7Z +"$ǃQ>SijE$PR3D`/>VdxҼD3E=3rAbE0 7T+quxϽ_M +& m˕@4b'>eKKjtZU/W . +ZLzPpB.NcFuC'VN2X' j.} +9sg}>IB:V=# O3J"ҚXk}o_Z0^it,Ϻ-FIJ=?NWxА¼X"$\IZp;>Ze + J%(P}'ůF"q;22v 1,\%kv%ɽFʖkķB>v{Vl&SuZgz?C +欽W uIc\4j4~qJsAG|Cg+ +9 u>4I{jh5u;:Š1*_ɶl5fz5o##q]ōmarm!nY6s"hw+7!}èOVU$U;KQiK +vcrTA}^JׂGMVԌ8TS9#G(=H<ʑvεs䑮:+FzD߫Wnaa6WxB{ܕ"-%cJKr ЄhBZ4dkQma/ܩjjdKu[D;Fr*j?4`Ei+n*/s>ǘr(Y6!/0ҁMͷwElJUu;q{ٕn /'PZ'7LcrEx{dE@&O;^I"5?}\nQޭz/8 iIG(mV 71dQ_Xw3~i9v=0_̫Փ{QLj#8ֆG5͵s +;'ᝑF+Oyo…5y.p);RnjmDt[SSC:SnepB-v-+C.|6sWƦpt#i_*UϺ }qgKؕz4儌DZ<;58>K2J +F^>5/+:]?mU?Q1gu^M6mLڊEeT;nO)zX6QkLl%tOZl#_[э2ߨ;3?!FLZoMnGy%^nYIuP>p=\6ME0AX#2r;F14$/VN%׹٧>UB'&r!$]ȗӦr" 31r />')>nY6`ۋ/tl89?0rey?ٍ.'xTXѢȦNOEu:q#b$D\zc? ʶy8`b,ܚA^oZJצF;qM\ӥS8POoNE6`VfaIoSwF]^7'ڏ|`UsOUZdaF  +hM? RfzΊ}gsV1Wqa8n}tOOka{v^#TQ?U9x: w~!F3o0r/'$ ++J{wKEoasl^r=' pe[+2nqor7Qetm4e-V& +Movߚnţj1׫5e&"*jkX.\~\v_DCtϝVS"D\i*C_o,ļ60BkDN '2B =V-ݢ@qNAw:A[w1W;\χK^u:ʳ:a +ODݨNK Lss2\˜+| R@A#}п0 +endstream +endobj +38 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/FGFNSJ+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 37 0 R +/Flags 68 +>> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1671 +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ !S U[PZZZ4<8Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D/Kـ̼ʂTr0SQfB!P!Xh%d+$$0]_QkdkiLjf +榵 +C2 KS=]L , L.-*J+'aL`(V&s͞##5ˁJNaz&CIMXǞ;w\[Žg40њ3;nY($ǝg0eXWҞ1Jԗ]aKuz]XU- ݣ%6 t6,`N|+Kgdq;)yAWpq3z]K&j؟u~x?˰ *wO٭\vwv%|3:YY}|v߿Xd?/ya^:-w^fys[Ӟ|g;} +[ף~m7 {?hr=<ɩ qKݮ<:w}Լ8wÛK3?'lqf>H~I9qŧϞM69}o=[,_JqUl9Y&˩H)n;AۍvCNǏy2`R\=#cGeIC6Xp0zm%2pz,+`-4rˇ6I7o|qmG/gl\_}ªzmSV=(|5p9}T= +SvnQ[).46p0, HIM,*M,H +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/VXECUR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 2325 +/Length3 533 +/Length 2869 +>> +stream +xy du\02GK "/oLQd,`"\OOZ ~ yH#aɀ70ƒ$,EPdF" i`^ `b4 8`d ߨ DCPlm.@;2͉!p4B441ؿ9ܔY_(<GA`EĀ$VgR?w(mDÁ:\[Cb KF(\0] IC{G%i Uoψ0  mܾ\yI2A0 "5 F8 !`( "tW $nO M,;1 K. Ilh"do9QMtGFtkN=RrGq8}mA Xltqjk讬 K˵RXSuY&+^ѵ^ZJzg/ -p?oU&T֤u}D,%Tn$a; ?nջ;Ƽo~>zO M0< }u>1TlGdn\\^6ׯ^HX-9qS"nǤ'o o/(+ m"pǻs~y*JW5tvQf=%.5+ȴ;F]kAQ1*͜)jnSqmıG))#~[+xޯT9 X2xLN@JY=onEJ(ç=8 KؠO =QJo%g K`<;p&\Edb.M!=ިc^QML|/׿{?wեЏ%,'\c|F<*"ege+9s}-Ɯ|#BL*nJ*oUy 8Yun9:!(bۗ\PƬѫ"tގ9[T+cuY*%<ݣ1F{1ש@8L~%;*0n^޻% cO Л*e18tkJ뾶]eO={LĂj`olaNJ 8͝-(3|ۥAɔK%f\hP +s?iXXQ껃&B5x<Uc1.?2r5R6pCLtJb½6'ʠ*;'[Gח@qک{"i]+e"ًP;AE` sq\wĤ[A΄7WҬlu + I]]{r~|t97ɽO6M c}t:CSv'#/~⤵n~)5.vrU[{[Fߌ4\Rp/zt]t1@:Lr13w+^g0e7| 5õeP7Z3RW+evUHI󸚤ey?\b躕Kz.rE@b^FF`A,b[G+**XR7vZ(1l b˩5׉k/% Uo葉M}*Ґ kcg'o[Dm<ڮYR$fg-ҘCARJTu3NwsR5^aNWwf! +ՠ͖7f&8y;۪"ͩaԯ= +Rp~&pcֆ?KܾXFtaLЪ٫Uf2cE&@󈽆 :k'Rr9Mb=D Tz X)4UQ(eМL8#RF=&fv'CfJ.fIvd.njH>1:/ښ1'J'-O2W5>;K@**5z6caXcq/g2pjM;Z/ɳ&jl6Grk +D[Hu"+P*mۢHOm=wO=8ع,t>vʱ,ǍIZq{8>i$ + ^6eqD,P9 7RLE,r~MYЦr@Yhp9}!l!(LLM,~I̹}9]' )oZO"^Wլw͍u520ZED Ӥ֎/7Wֱ$ w^U-C( + ӧͺw|vu cЯDo_hj =n+#mAlӦyUdzMRGE MsڜܹrN|ƝhV7=as/cݣe˴yzZ| ,쿼 @@LģH bާ +endstream +endobj +48 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IUDUGQ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 47 0 R +/Flags 68 +>> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3344 +/Length3 533 +/Length 3898 +>> +stream +xi8kkJUQKMi%5T5DIVլPcW2L[sլyyj 5.ʢ{}>}}s>]5cX"  +8[bb$,#Pd,QT)<Gɱ4^$ )Kǒph`"ag!h'a @`'>sŀXY!&8Xz"@/CgK9H$qbO*kL<{F?oC4F98O8x/ +K1XVk_pFX {Wġ Xa81őn%`Nr6zZfݿ(| > G؁A`0xseݴ h"GpXQ Oߩ44 0 `( /_7+PT K Nw6$,E5&pH !]( t IHKO#VIl?F }@X]#~ 4ԏ;K';iA7;TI!ƴUBRxGOĦ+Ǿ0FV?LlN + aa4N8d߼RĔ_TDAd+ﲈMyxީ8يUk<:Y,7=.ewev6ӲVh/2gj j\Dŵtj^hpp |k`Q鏐s'↗!#:ilrqTFgq ᭚|Ayk- ^ +߁@`6GuG#!Ft &y[-b"fKԛ~йX gZyY) N߼t,a12컷Yd=Htڽ_s Ӽo(_g\!|!zOdzgumo=K |ժmϽ|B`<eW1@`8by8iz}sjn^ݩ{濌d Q{sV~µ2:%ZHb !{ l3uo#rF$%?IJOᅭS`LCK S1x-Eed%L'j{4yŒE);ozsnGF!D^Y$jcm;&][jvwV\шK6=2 kf|㥧\Rf**7C8槫C1סLk,볘 1Q{{k's%j0*xq7f էF&u}Xʫ{4`~쟷UzQy'W`x)3LyR,uC:{87bSdob빨_ tHV6־cpUf&F1[Cft?{?lWC0b=)ϐzQ&qcK3?+ccέlHp땣DDN| :Wj>3E)@S@TseU {.YW,:6+D^2b]K pnAAQWOC~~UyMRiJT.{Xᗓⵏ;)JHo&6*ܓh1a *#cEEݩc%e>s(r#o9>Z̲ lߠ_4좋h WQYB- m8[h_:kfeRY,qQ2—l}.l-#7% Ъ{n!9SX,Dk /d 09fVQ>vdLNn|PLVaӖk: LIzHsŒMz?r𫦀F[$bi!.q,N/He2 BR)9" rYh ]QN(AQMZAkO6LcY9'JBֳܿ +M>6ࡎ!sChQ]n4Co,oW } 3p+Fk=vR( v79 k`7#yIo}!XJHuxo)[q**W?*)D1(A !+_!D<~̰]f2ݰC[e\/&?NsfʘԕZ3}ؐ쨶`6읥ob+˕twQ :RЊ{_ ֡8r2ր`FwyN'J򰮑L]YVB$w޼p$AG4|q[=1UJ76/l-rirZW/7)[s5~Im,IP?r#@럋@rC=}uӑ`U eXyptQ)PSV9d1\xU-{6goѧ&&L*UZp=" +#ut;lO9V61inºusC3S{"WY,83oW&fR<ʑ׾؜|vzlMO7-7`mav&4o*e*̚8s$}Mply&_*m#d<ҫY:,w~tMvfCuQx! A~cDQr~{nrQ +=6ӫgRbq@yQw#E>;)WA{C{ Ş-?INㆰ0qdsٟsw+4EjmZ?p;zL6uɚ:Nm@Zw1j`d3JQndW.*5s.yDY6'"$wXPY |["o:RA{k 'E"(+Ӻ +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/BPCHBU+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 50 0 R +/Flags 4 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1669 +/Length3 533 +/Length 2200 +>> +stream +xgXSiJ(R(C4C0@2@ +Aqw""HXE1N2XХ 2F]gu^o=y9wUS2X. . +3A" ӎY @ch4Ch>9fB>,@\0LDx"CHD +@'A  +` A YC2Db7D!?#YѼ69M +|.@ϩ)t A/Җ_ Xp@ +ŖH_T"ө@t2Ȥ}ouA2H^b)ɔM`d"^DJCiF04;@j"Dc`3LlRYÄBW. +﷯߭uF!7"D&_!a=C_ `A$  +eJI +d2A%[! v5GOU ~.xYS|>/NAwRÐǷ5dŽYSj{:+Etո"{Va6Hc1]%a\i4&EJ0Ü".ד Fl\:8[m|KS %Bp{p1MH]>Uks.~Pm*B 眷4φSi#&$U>a"Y]= l*G+8k[^Żdef%fS6gS1VdWč{f‹TgV2/Gv뫑8 %t)x{}hU, }F֖yʱHvΘɩܡtL[sqEhb+aKuPKKފ{َF ċ7ʌnOVp f$% e}d|<8D0A(V#+7-VIh+6츝$v)Tog8U)L/kn^j˨|Lyq-Uus,m0hrz +mj,82]0X ULR%լS۾"{YAicb]u?rfRAѠHN<-Č;RY"tC*X+c.Ru7R֡=vcE/q.6u#12SzcUS_˰m''\+?{3+/p&-O}9FH[XpxQ*<4<|&E[>XET:y;K]1Z0Z_JHMIV/7Z_4|s/;,,lw>z!EPOT+3?{h +g<Ʀ*)7 E<;/d |]ք!IOX®NLT5ҢmӇZ]y3Ü9psۉFG4okAn#ms [q7r9)ն4^uhYhS'8yhYVG}%ړ鱛VY<]5$gVuI*mվX쏼d:PVۜBze0U<ԼPJB+{h_U6LpS1NVG:dırG>*7(>36~~ Oi+,]8cԂuoFq{Gj_X!޸r|;kbjbS'@~>IeE82xMqq)ڤ~^}C:.tVZ[=p&v,g\)ڝ}2]>Gq(w.-_w܂^[V[mtR[ +cޠ||Wbse^.g[aڽ95ITpֳ~])ia +W-_b -@˜'I5fiLtE;vcAʴ\{]Pr-"x.Q%>#w32Ckj W^tGA{342Vڥ܃HoWYՌq&qn iFm[GRs<=PD,: ) +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/VNHICW+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːDD0bGʘf,̘h"[\DD"*ڕ.e"EDB)3iﳟ>w~z]?Mtpxo,0{ 0@dCp cijf5C t#, Sـ>յ ALDx";T ; +vT* &Q 0 A@ro2g1Yb.@ 9Avg41ؿ~SN}DLE!&g@8}ׅM$;: +Fح(o:r#!f2ʂu~O"o5~za:;* 0ٗk_8%& c1cF*$)MD&OTH0267V3:0`0*)Ʉ!?k2,N "!"Q>PTԽR7 6ce'TJϬ֝+JgV$]59<yp-毡I,en:}t6j}hmrKpRUCK) o i泺cR62ڇ|Og+Ro[)W#OiJ 5e7Og'kv=g+*gǂUU; +WFm=^);ćFT?|!sxf*\OVʘ}GYG~:r)ыJ0;5rK@g Pmso#_ف~9Ww?iCӷ)eWU0Tr +8 G'j: O.G D|En WSެ`T+om㩍FRxX˰~PiVHZeKF$se/\6Vj¬U`"66ּҍ-hL\Aإ2 dmM j}Z ^3 +xT~h3vj[]6}ͫ!X(7v橂 +>d~uO9Sω}VPGV<`OCKULdt=ѺCCN\]v5]_9в4oï#KK1|F"Г,'ȏ;;n>^+ +O/QێDIżZ+21~nvH9hR]JXLS +mήŇp%GU)AKhʾ٩wk"vxmar9Efw:e=k6IFMv"_;R ̿6\n z&A!Ÿc q>vwNvބߛ Nl]`exO<ּEr)ڃU(*ڲAEsߞt9DŝjIM*lZdiGx_\#;faJE,BߗQ lNnir$eܷu-a'iD 8uϬ9ZÆ3 +J\k5UMuE$#q݆MC!f]-y4 +c.Gw^y ]',O'Tpm'1cE˴5])Z+tM*rJnN2wVOzOg֪y×uǟ[?S2ӪV5c[ =k*n)G&U^hm-a'4YU5zɡecj#+/BDKg} (){rs,ހ_9z +3uo3FZVp7X=rLNͨ:qfCV;su {=%Jq~.ΗzECF;we~|dĪW#lg'yǴ,&\S *:**ڡ@×ܽ9ȬiO^` HTd3hDf(C@ +endstream +endobj +59 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/GHFLWX+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 58 0 R +/Flags 4 +>> +endobj +58 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9723 +/Length3 533 +/Length 10277 +>> +stream +xUT]qw qwwwF7эA; Bpww s=~o=zzXsլEK*ib sq`dHpr888Phi@ {g SP +p89x((iW ?@ pZxXY.V@ ;@ {PP89VK3 +?m\J[{g v`')#/3ڠr ?٬VpACT]` +tJp+e.gְx=LoI. l!g?86/Malmrcrq9L(g :{]6P5UNV8̪Bg_ʢCBEt@+uM(/8MfGߞǂXC3fD~+t$^~DP橻^yAU3`M~ bލ@KM!E_cQ-qJ3C*ly\iut5=:\G^ vYA壨E8b:FNS4O\$T:h߁?zU +PD }& + 6ES#c[1JU[BR95+CȪV ȈDǀy?־4Z݂h`E?ʘ}R +G^&=#l+\ZM +(#%mXIW/1YZ׼tgv6*[kg [LZfD`5Uf/mpuT-.z7a(P6ߕDܸr%5ijtJI RbnG2ަ)nӼHKzHqM]ةޛ +R"gCRm-YeTn=SNV|LGmĉߡDϺiHͰs-vr!M~9:cpI-ɑ^ZWh?,9kLNkS5Y^%XX|qxwi@8h +%FZI eWhv*{wqts~Laɓr-Ӽb؀49 +A5-=u 4'f.wݭ lG|q( Y6[(Z.z2WΕ;*۸`(^*S=G;ⵙTu}zEڜq^7D ?mxɿJx,e9dR-BuPO䓘UU8.jVLQߓ0( n57:j Bt%>H]-AHjis_< ?6 oⴱ86*~ O9h%C,>8UP&~xvHgŨlhzԾhNɓ/ÕR 8viw•.i8n9?*;ƎoԢGF3zfo,&AcM=+ۗ+*uFWCH*Z݉}B= 潂ωV_݁KDs*+*M&T +?'̌8lg_Ūv}KGJ 7Z +SBwň?~_u7NSOvk APww'ͅa=;<5tJ *mŧ{#A! +|9hLr0Ma[bTyEALD#KsUt"Ǯ,L@S% + + Ƌ4-K/DAMK9ipF"{)oIkfֆ23>Lz}x2Pw Ȏ<'0,?шaD̵pexF4—Is{7HC}V-W)ReY8= Q6R|RRiK# ɨoaeOrvց-Nlb?Oz7&32㗋nMlGl8yT:#V׈ʠ +OS߀Ld;FVub-Ð GF1jU殊<~ +uރoxj6ߴo}CQ8*E -@:18 JQp-8~I!õgv6' D8a7DZ[whXwXJ"j[q2޺3V;dt&RINX^9Zef釕HBfafUTgۍztXz-SR XT.~;г%F7]]۴jD(ffˍ rlvBNu[[/P#^:ZZ}|>Ẓ+i&cgMv}jx- %I}AEssk +X 8N#JS공wla֭;5k8(_,͝`L&!jnr"2ڊ |Ӓ5AfT c7 c~6L)bI/P&Wvpr0i):A1rE$@(B̈߻؟7O >8 Y~\Qg?*s,~͌=\ZK,< Ȧ* T-I`"*ri(Ofgcn +Pz6ER"h|iRB(6,\J h\j)<i]E7>݄`c~F"!-ԖGe$+ҢǠHiV<%4s^J23w9O&*HXRHMm42 \D.;jQ۝2e˦xts +;9#I5 뿤LP6)6 +cH§,RºQdWjcvJ̑ZJ%Xs}Fԫ)şMFeL1H`R>s##U*2)?4yZ{U&IX&>l{Z:Ypdaupjsc{86mL4HӇ mZRɦ[zpW$<udp0'NbCQˋ%PE:ؚXWw1~n rH";9w·*aycʜ>b` $<292R\6p$Q췿g\u.3떤x`7?s,Z2Jl ߬\}׌L-.xXàO\y +hFq) +?*[V Kx2< TQ+:PHV( d>w]29a*PVX=2y/0ᢃEW;62M%:>oo"4(DFgsoIؓ5U3Qy}͢Z +S.aQv!\G=qXJ,F\Ҝ#kȝyp^@9vΟImaHr;IzBES=9$BALqw-גzA49=X&`6 J;Lh2O=qe? Vv ׏鏁#4VZ{9p(5A[gͩDnsI$gCjT Jv1;8i!zrKwP!v,rd^O$ +$M 袶Nzvhau;OQ%Mt-'d&'H FnʷU (G%H{ 5Y+tp4h3ym7T$Uٌa H_7#lG:?mUTq |.qVߚY̽ʘZ赶J!j?13Xƌb|$ *鑄.SLu2-dFd8CэeE 9U!%Lxt6?鉡t1p_Av@)?H\ׅgrI +z 4h2ӈlfvkjDI!r1߳=aWUgSɲlI4^H;WX6=%yF/uS=ǡ8<]A.toq,õ":d˶gKb}k a-ÜlkPJަL6tX˂ #~x{|f+;٫dYm?#~kpyL9 l\5cƋ%(At9ҾGUNL_a/泇 +-LMŌ*/;{ʠ֌U0qX<"0ɦ̟uQ-bZ,cAӵv(|j#^} +; }=ȎaqȰ}o.Ixe|b5#ެXlh1S~Xq-)w*1iRvq%3 J99 hXCV)ϓ%b5ZuOcD!xOb)F+܎$hb6}0 +趽=46I!c-,HJaY؆u P&3HZ^haWax WCb|iesZ*RvF濩k^|BJ, kAު2J#S'kHs uwl܇lwUdt8E|~dU=X-mL(i֍`~paV%XNhlj#ǠuNCJ]Lʳl/W+ +bpB!~ uq܎Gm?RfE7}_JQkZujMp ,BSӈ;K}ǧ/Xn)3k+,9nƬƓ\! +wiQ]մ z(#Z2jn|0?¦cH{*8&w-:D֦N>Qˀ!gzR*G5b" /S +_FWM.1gƂqEK:A9Rn`N0:U& { ԾfNXT!iX+Żljۘ)_Vdk4i|zRR@Ͷ5UeףlMv.im>zuJ$8dhXAg=i|'M}J6[֍NUɔ\# -+צyEKaUCSn;Av>CH yg^َt_zõ6e3Y.۹LUX浽 )VFLlV*|'0a\G8|QΠ*b@C|.?o^3X%g0X $Zt%e>(i]9a-'/'!6}M@69-xnUz@cyK;9Ժ; |<\o F9iUA6f 絛h&bc^>sV3c^Ro]W+ɣ'gJWʍKoE0&=3'!VhޱQ<Lj4p ^0ռ_=l߭U$E|nHj +K\ )^.iԢ G< +w%`|5XX+%(`)fk +4Sd~>_6!3;sP"H/r|_q:pAuiU&Qes I[=k!2QX D@ae2 %O+m}|kYY;?m-1AB/1MD5פN;C}v-+X+"c^ 6{? fK%s9h{k^xmbI QAʑ- 89`,u2g֒7WΜٱrzRAPPKŃZe>Pl8gC -OT^|WpvL'Soy9[XFam{"H6@4Z֋~ +1,Gg>1e3Ü/`U!|Ey/6#`sS[sq/uE5T –wy%e*Om{gN1A~J8=`#5TS\T{s& +I(XRNN,sت-'`O|Vd85lwYm?zu` oFzO`0qn}[w?|z^p~-uݻJq.KQպOPes{h_蓊9/ohpq;- +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/WRWBVR+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 65 0 R +/Flags 68 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 732 +/Length3 533 +/Length 1248 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?<(),Hɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;'4ƞ5Kj_{(j35\Kw<nMXnt K>UOf&JsW~+~TzM~_7zy(cyV rS?jʕQ~qE9^G?r*|Ƿ.nEeU_>d}|4NJ(M{uL+7]^U˳fx:% N_t̔7%i {V=3%/+V{\=Sws9JJ򚸺gׯ5tټx(Yϼt_ +ר€ĢĢl..:@ +endstream +endobj +113 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/UFNAAU+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 112 0 R +/Flags 68 +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq)[ANP.A{p 4@pNsoK~{sEO. vȹ8A@@ZU[ 9!0% " +>'::=@jk0I3H:Aܡ֖UK9b |#@W<Z DG`5 `:slK{qx0=s2).Ύ0Cy53뿡{NPG8\\=aw w>/8U"j-l yrPX +X:z@!࿃<O ]95II]ؿPg+/5_ܡ>cN ''|o:[ζm3¿SIIqعx7_P7O _PO s3<?k 5,"(9%E+։EÂb ԅLJT+✺6R%_^ݣׄa} (nod4<x Alʾq=OLI ϑx2:t)_mGWZ!yU+9c ID&q^CZO0gbrY prO-|GM΀ܫNAXh7jr&v"i8?"M24d$_mOuZ3lsx%wUe: +氢8k\z$Y'ny|g ~WOlHW1)8 j}dRGvfjĝx'=M)~A&n#Xݻ&$(\{ BSpdHRp\IkF]JԐYfA~|KuӠ{Ki֗ ,(_08)A  +VF8#D?=DmD'_:_)cS&6R7/R(+K;4L?pe(ͦCp#|. ~]&is;fOΏ;7da-]~:C O)N5x48udM[/D p"MҮ=j|*="t5ȟ ~4OQ1a(􎞠-6nDl2SU|lޞRX21H<&ak]ݿAkjaHZ<݉%HW#*J m.'v$ Ա!Q/:^3k<pCw{6̊3"ư`Q}0|A\RfCXF 푴J*%-|=XR(5[$u:I[lZ6} ܁d,àJ2;\ebiŎyNEq a~ klPjZZ{~7mߺqٟv7aFe2utbǒ[# ~mZ_'S}Xi꟒Ń4eV\Z%zuۍ";(1}{g-Xq˹ ޏC#O-^B&Qrjx+m05Ew tx<8Et1~c:X㤔-^Pg;F߰NtUJQ4& `K]KFdmɞ,ҡ}O'C iӉfhMˠM|&LYa5&EW2 HE ǯZ *Һt + -hh\ĵ.ޔ dvچoL'(PylWl'`#u|g,/㚵5M9g>#q^4"~RX34f Lv,U& 6 F9M쥄6yjj'y@5rя毳%lg{נs}5y>Ј 'WJ/7hgm[ߣ󌫅֠2xnl2BEnS@[-SB8-vPzW>3WKU2#iFNbb +(O :W&YTy+ &7>ЉRv~~>k$R-fL7^!"C0EsiK[Ap+tfR4/c,u\،\0/U6`k :׃4 <B>F9E?mTuw(PM)6$sJxfN;uUQy܋"҂Nj'jX[ׂ4Aqꋴ:-ŊR7޳kaoi#g:/Baw|,S+] +WG8LEFM< `Mدc9PDGS6o0ߗ_ rR,Xe4Dz{rȌy]дeHs<޷Vi gI..| Dߐ2 ݗ2$%+z*Ƙ|HrJhE^135܊(YZYW4Dž;|d8R + l0 "K5#'P>8#x 7hޟ!P,KCcE +gvNRj͍_&` 85@X0x2Fm,W1C^ծG(U.#>OA(zb~)fٱgw[g-:kbp~d_0~+ƳD3KbDo/ˆj6kWw>X~;[_C nN6FMo#tc_O䢮2}^LpktJ$̻+_:Pn(#iع#GO6SM~ Q\\cݩUmhCt^P +~u]}A8f~lYE{jE,l2N`#=3jFL:Ӣ]߫ o:+. 2Ԉ?^G.0E Q27p֪[+1V=h\0_ӌsi.wc;İ^KP qz2sńmm%CaLDF'oY]eVrjyPgISU +7%N| )bDl$ Ja&(z'K^pxQ!ҬyvS"ZgW4 qyD– +ZϢN,{ď’ *MK4|MĻZ2.:eïa5 +UfS[J#6GJi'I룧P[f$#BUlmQò:tL-@mpaO:Q/@zdhcc +q~ + ;P]4#NOTŒdW?f87qњTla0FK:b~/.mRj=xX9$JM>G 4g.:Pl4eSUn׊g#ǯ7(mP0Sua!avu`G}ʧn_2%NH wEX,n^ T+hvJh\n9KLUuHO_|dGLёiz# ).Ы2M3p#öd+{|I~4"!:/_l]ش>NS }9\mo($ߵ!ǡf<8<~s4-nL ,핟leiI=9Y/xvBsb%E_pz}b-4# K=>ZrR5 T0e`ur;kiO' =eIG#|;Jf΂MŸN@F=mR* o|!x[NQ8I{8(Yl7 ~+  %RBG- +ף >w&x\Pj-, +9~Ԯb\Cb993"S3ѥ5~9f \.h5!9(Ջaiw)P'_Rc:aʊЁYi[ b@#KQu`MG+7!~B<:*6/ Wz8x !MIKQ)vu:vd_4=kiǷdM5ߘ؉7qp5H_:ͩa G V0[? > +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 117 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 43 0 R 19 0 R] +/Parent 117 0 R +>> +endobj +45 0 obj +<< +/Type/Page +/Resources 46 0 R +/Contents[17 0 R 4 0 R 61 0 R 19 0 R] +/Parent 117 0 R +>> +endobj +117 0 obj +<< +/Type/Pages +/Count 3 +/Kids[5 0 R 21 0 R 45 0 R] +/Parent 3 0 R +>> +endobj +63 0 obj +<< +/Type/Page +/Resources 64 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 118 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 118 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 118 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 118 0 R +>> +endobj +118 0 obj +<< +/Type/Pages +/Count 4 +/Kids[63 0 R 70 0 R 74 0 R 78 0 R] +/Parent 3 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 119 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 119 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 119 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 119 0 R +>> +endobj +119 0 obj +<< +/Type/Pages +/Count 4 +/Kids[82 0 R 86 0 R 90 0 R 94 0 R] +/Parent 3 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 120 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 120 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 120 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 115 0 R 19 0 R] +/Parent 120 0 R +>> +endobj +120 0 obj +<< +/Type/Pages +/Count 4 +/Kids[98 0 R 102 0 R 106 0 R 110 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 15 +/Kids[117 0 R 118 0 R 119 0 R 120 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +121 0 obj +<< +>> +endobj +122 0 obj +null +endobj +123 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 121 0 R +/Threads 122 0 R +/Names 123 0 R +>> +endobj +xref +0 124 +0000000000 65535 f +0000102949 00000 n +0000105418 00000 n +0000105063 00000 n +0000105268 00000 n +0000103113 00000 n +0000004046 00000 n +0000000009 00000 n +0000034148 00000 n +0000033964 00000 n +0000000913 00000 n +0000038815 00000 n +0000038629 00000 n +0000001906 00000 n +0000044054 00000 n +0000043866 00000 n +0000002823 00000 n +0000105168 00000 n +0000003740 00000 n +0000105218 00000 n +0000003991 00000 n +0000103216 00000 n +0000013366 00000 n +0000053866 00000 n +0000053677 00000 n +0000004107 00000 n +0000058998 00000 n +0000058808 00000 n +0000005053 00000 n +0000064161 00000 n +0000063972 00000 n +0000005989 00000 n +0000006965 00000 n +0000067219 00000 n +0000067025 00000 n +0000007919 00000 n +0000008865 00000 n +0000070583 00000 n +0000070388 00000 n +0000010481 00000 n +0000072559 00000 n +0000072368 00000 n +0000011432 00000 n +0000012426 00000 n +0000013267 00000 n +0000103321 00000 n +0000020075 00000 n +0000075736 00000 n +0000075542 00000 n +0000013428 00000 n +0000079934 00000 n +0000079748 00000 n +0000014399 00000 n +0000015364 00000 n +0000082443 00000 n +0000082248 00000 n +0000016271 00000 n +0000017253 00000 n +0000085100 00000 n +0000084914 00000 n +0000018230 00000 n +0000018975 00000 n +0000019939 00000 n +0000103511 00000 n +0000022729 00000 n +0000095686 00000 n +0000095492 00000 n +0000020137 00000 n +0000021147 00000 n +0000022570 00000 n +0000103616 00000 n +0000023447 00000 n +0000022791 00000 n +0000023402 00000 n +0000103721 00000 n +0000024154 00000 n +0000023509 00000 n +0000024109 00000 n +0000103826 00000 n +0000024885 00000 n +0000024216 00000 n +0000024840 00000 n +0000104024 00000 n +0000025197 00000 n +0000024947 00000 n +0000025152 00000 n +0000104129 00000 n +0000026915 00000 n +0000025259 00000 n +0000026756 00000 n +0000104234 00000 n +0000027709 00000 n +0000026977 00000 n +0000027664 00000 n +0000104339 00000 n +0000028395 00000 n +0000027771 00000 n +0000028350 00000 n +0000104537 00000 n +0000029122 00000 n +0000028457 00000 n +0000029076 00000 n +0000104643 00000 n +0000030802 00000 n +0000029185 00000 n +0000030642 00000 n +0000104751 00000 n +0000032517 00000 n +0000030866 00000 n +0000032357 00000 n +0000104859 00000 n +0000033900 00000 n +0000097242 00000 n +0000097047 00000 n +0000032581 00000 n +0000033504 00000 n +0000033842 00000 n +0000103426 00000 n +0000103931 00000 n +0000104444 00000 n +0000104967 00000 n +0000105350 00000 n +0000105373 00000 n +0000105395 00000 n +trailer +<< +/Size 124 +/Root 2 0 R +/Info 1 0 R +>> +startxref +105516 +%%EOF diff --git a/src/axiom-website/CATS/schaum5.input.pamphlet b/src/axiom-website/CATS/schaum5.input.pamphlet new file mode 100644 index 0000000..a5d3fc3 --- /dev/null +++ b/src/axiom-website/CATS/schaum5.input.pamphlet @@ -0,0 +1,1667 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum5.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.120~~~~~$\displaystyle +\int{\frac{dx}{\sqrt{(ax+b)(px+q)}}}$} +$$\int{\frac{1}{\sqrt{(ax+b)(px+q)}}}= +\left\{ +\begin{array}{l} +\frac{2}{\sqrt{ap}}\ln\left(\sqrt{a(px+q)}+\sqrt{p(ax+b)}\right)\\ +\frac{2}{\sqrt{-ap}}\tan^{-1}\sqrt{\frac{-p(ax+b)}{a(px+b)}} +\end{array} +\right.$$ +<<*>>= +)spool schaum5.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/sqrt((a*x+b)*(p*x+q)),x) +--R +--R +--R (1) +--R [ +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R , +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R --------------------------------------------------------------] +--R +-----+ +--R \|- a p +--R Type: Union(List Expression Integer,...) +--E + +--S 2 +aa1:=aa.1 +--R +--R (2) +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 3 +aa2:=aa.2 +--R +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R (3) -------------------------------------------------------------- +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E + +--S 4 +bb1:=2/sqrt(a*p)*log(sqrt(a*(p*x+q))+sqrt(p*(a*x+b))) +--R +--R +-----------+ +-----------+ +--R 2log(\|a p x + a q + \|a p x + b p ) +--R (4) ------------------------------------- +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 5 +bb2:=2/sqrt(-a*p)*atan(sqrt((-p*(a*x+b))/(a*(p*x+q)))) +--R +--R +-------------+ +--R |- a p x - b p +--R 2atan( |------------- ) +--R \| a p x + a q +--R (5) ----------------------- +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E + +--S 6 +cc1:=aa1-bb1 +--R +--R (6) +--R +-----------+ +-----------+ +--R - 2log(\|a p x + a q + \|a p x + b p ) +--R + +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 7 +cc2:=aa1-bb2 +--R +--R (7) +--R +-----+ +--R \|- a p +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +-------------+ +--R +---+ |- a p x - b p +--R - 2\|a p atan( |------------- ) +--R \| a p x + a q +--R / +--R +-----+ +---+ +--R \|- a p \|a p +--R Type: Expression Integer +--E + +--S 8 +cc3:=aa2-bb1 +--R +--R (8) +--R +-----+ +-----------+ +-----------+ +--R - 2\|- a p log(\|a p x + a q + \|a p x + b p ) +--R + +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R +---+ \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2\|a p atan(-------------------------------------------------------) +--R a p x +--R / +--R +-----+ +---+ +--R \|- a p \|a p +--R Type: Expression Integer +--E + +--S 9 14:120 Axiom cannot simplify these answers +cc4:=aa2-bb2 +--R +--R (9) +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R + +--R +-------------+ +--R |- a p x - b p +--R - 2atan( |------------- ) +--R \| a p x + a q +--R / +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.121~~~~~$\displaystyle +\int{\frac{x~dx}{\sqrt{(ax+b)(px+q)}}}$} +$$\int{\frac{x}{\sqrt{(ax+b)(px+q)}}}= +\frac{\sqrt{(ax+b)(px+q)}}{ap}-\frac{bp+aq}{2ap} +\int{\frac{1}{\sqrt{(ax+b)(px+q)}}} +$$ +<<*>>= +)clear all + +--S 10 +aa:=integrate(x/sqrt((a*x+b)*(p*x+q)),x) +--R +--R +--R (1) +--R [ +--R +---------------------------+ +--R +---+ | 2 +--R (2a q + 2b p)\|b q \|a p x + (a q + b p)x + b q +--R + +--R 2 2 2 2 2 2 +--R (- a q - 2a b p q - b p )x - 2a b q - 2b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +---------------------------+ +--R +---+ | 2 +--R (- 2a q - 2b p)x\|a p \|a p x + (a q + b p)x + b q +--R + +--R 2 +---+ +---+ +--R (4a p x + (2a q + 2b p)x)\|a p \|b q +--R / +--R +---------------------------+ +--R +---+ +---+ | 2 +--R 4a p\|a p \|b q \|a p x + (a q + b p)x + b q +--R + +--R 2 2 +---+ +--R ((- 2a p q - 2a b p )x - 4a b p q)\|a p +--R , +--R +--R +---------------------------+ +--R +---+ | 2 +--R (- 2a q - 2b p)\|b q \|a p x + (a q + b p)x + b q +--R + +--R 2 2 2 2 2 2 +--R (a q + 2a b p q + b p )x + 2a b q + 2b p q +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R +---------------------------+ +--R +-----+ | 2 +--R (- a q - b p)x\|- a p \|a p x + (a q + b p)x + b q +--R + +--R 2 +-----+ +---+ +--R (2a p x + (a q + b p)x)\|- a p \|b q +--R / +--R +---------------------------+ +--R +-----+ +---+ | 2 +--R 2a p\|- a p \|b q \|a p x + (a q + b p)x + b q +--R + +--R 2 2 +-----+ +--R ((- a p q - a b p )x - 2a b p q)\|- a p +--R ] +--R Type: Union(List Expression Integer,...) +--E + +--S 11 +bb1:=integrate(1/(sqrt(a*x+b)*(p*x+q)),x) +--R +--R (2) +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R [-----------------------------------------------------------------------, +--R +--------------+ +--R | 2 +--R \|- a p q + b p +--R +------------+ +--R | 2 +-------+ +--R \|a p q - b p \|a x + b +--R 2atan(-------------------------) +--R a q - b p +--R --------------------------------] +--R +------------+ +--R | 2 +--R \|a p q - b p +--R Type: Union(List Expression Integer,...) +--E + +--S 12 +bb2:=sqrt((a*x+b)*(p*x+q))/(a*p)-(b*p+a*q)/(2*a*p) +--R +--R +---------------------------+ +--R | 2 +--R 2\|a p x + (a q + b p)x + b q - a q - b p +--R (3) ------------------------------------------- +--R 2a p +--R Type: Expression Integer +--E + +--S 13 +bb:=bb2*bb1 +--R +--R (4) +--R [ +--R +---------------------------+ +--R | 2 +--R (2\|a p x + (a q + b p)x + b q - a q - b p) +--R * +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R / +--R +--------------+ +--R | 2 +--R 2a p\|- a p q + b p +--R , +--R +------------+ +--R +---------------------------+ | 2 +-------+ +--R | 2 \|a p q - b p \|a x + b +--R (2\|a p x + (a q + b p)x + b q - a q - b p)atan(-------------------------) +--R a q - b p +--R ---------------------------------------------------------------------------- +--R +------------+ +--R | 2 +--R a p\|a p q - b p +--R ] +--R Type: Vector Expression Integer +--E + +--S 14 14:121 Axiom cannot simplify this answer +cc:=aa-bb +--R +--R (5) +--R [ +--R +---+ +---+ +---+ +--R ((2a q + 2b p)\|a p \|b q + ((2a q + 2b p)x + 4b q)\|a p ) +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 2 +---+ +---+ +--R (- 4a p x + (- 4a q - 4b p)x - 4b q)\|a p \|b q +--R + +--R 2 2 2 2 2 2 +---+ +--R ((- a q - 2a b p q - b p )x - 2a b q - 2b p q)\|a p +--R * +--R +--------------+ +--R 2 +-------+ | 2 +--R (2a p q - 2b p )\|a x + b + (a p x - a q + 2b p)\|- a p q + b p +--R log(------------------------------------------------------------------) +--R p x + q +--R + +--R +--------------+ +---------------------------+ +--R | 2 +---+ | 2 +--R (2a q + 2b p)\|- a p q + b p \|b q \|a p x + (a q + b p)x + b q +--R + +--R +--------------+ +--R 2 2 2 2 2 2 | 2 +--R ((- a q - 2a b p q - b p )x - 2a b q - 2b p q)\|- a p q + b p +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +--------------+ +---------------------------+ +--R | 2 +---+ | 2 +--R (- 2a q - 2b p)x\|- a p q + b p \|a p \|a p x + (a q + b p)x + b q +--R + +--R +--------------+ +--R 2 | 2 +---+ +---+ +--R (4a p x + (2a q + 2b p)x)\|- a p q + b p \|a p \|b q +--R / +--R +--------------+ +---------------------------+ +--R | 2 +---+ +---+ | 2 +--R 4a p\|- a p q + b p \|a p \|b q \|a p x + (a q + b p)x + b q +--R + +--R +--------------+ +--R 2 2 | 2 +---+ +--R ((- 2a p q - 2a b p )x - 4a b p q)\|- a p q + b p \|a p +--R , +--R +--R +------------+ +---------------------------+ +--R +---+ | 2 | 2 +--R (- 2a q - 2b p)\|b q \|a p q - b p \|a p x + (a q + b p)x + b q +--R + +--R +------------+ +--R 2 2 2 2 2 2 | 2 +--R ((a q + 2a b p q + b p )x + 2a b q + 2b p q)\|a p q - b p +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R +-----+ +---+ +-----+ +--R ((2a q + 2b p)\|- a p \|b q + ((2a q + 2b p)x + 4b q)\|- a p ) +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 2 +-----+ +---+ +--R (- 4a p x + (- 4a q - 4b p)x - 4b q)\|- a p \|b q +--R + +--R 2 2 2 2 2 2 +-----+ +--R ((- a q - 2a b p q - b p )x - 2a b q - 2b p q)\|- a p +--R * +--R +------------+ +--R | 2 +-------+ +--R \|a p q - b p \|a x + b +--R atan(-------------------------) +--R a q - b p +--R + +--R +------------+ +---------------------------+ +--R +-----+ | 2 | 2 +--R (- a q - b p)x\|- a p \|a p q - b p \|a p x + (a q + b p)x + b q +--R + +--R +------------+ +--R 2 +-----+ +---+ | 2 +--R (2a p x + (a q + b p)x)\|- a p \|b q \|a p q - b p +--R / +--R +------------+ +---------------------------+ +--R +-----+ +---+ | 2 | 2 +--R 2a p\|- a p \|b q \|a p q - b p \|a p x + (a q + b p)x + b q +--R + +--R +------------+ +--R 2 2 +-----+ | 2 +--R ((- a p q - a b p )x - 2a b p q)\|- a p \|a p q - b p +--R ] +--R Type: Vector Expression Integer +--E +@ + +\section{\cite{1}:14.122~~~~~$\displaystyle\int{\sqrt{(ax+b)(px+q)}}~dx$} +$$\int{\sqrt{(ax+b)(px+q)}}= +\frac{2apx+bp+aq}{4ap}\sqrt{(ax+b)(px+q)}- +\frac{(bp-aq)^2}{8ap}\int{\frac{1}{\sqrt{(ax+b)(px+q)}}} +$$ +<<*>>= +)clear all + +--S 15 +aa:=integrate(sqrt((a*x+b)*(p*x+q)),x) +--R +--R +--R (1) +--R [ +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q +--R + +--R 3 3 4 2 2 +--R 16a b p q - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 3 2 2 2 2 3 3 +--R (- 4a p q - 24a b p q - 4a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- 2a q - 46a b p q - 46a b p q - 2b p )x +--R + +--R 2 3 2 2 3 2 +--R (- 8a b q - 48a b p q - 8b p q)x +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|a p \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 3 4 3 2 2 2 2 3 3 +--R (16a p q + 16a b p )x + (24a p q + 80a b p q + 24a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (6a q + 74a b p q + 74a b p q + 6b p )x +--R + +--R 2 3 2 2 3 2 +--R (8a b q + 48a b p q + 8b p q)x +--R * +--R +---+ +---+ +--R \|a p \|b q +--R / +--R 2 2 +---+ +---+ +--R ((32a p q + 32a b p )x + 64a b p q)\|a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 8a p q - 48a b p q - 8a b p )x + (- 64a b p q - 64a b p q)x +--R + +--R 2 2 +--R - 64a b p q +--R * +--R +---+ +--R \|a p +--R , +--R +--R 3 3 2 2 2 2 3 3 2 3 +--R (- 4a q + 4a b p q + 4a b p q - 4b p )x - 8a b q +--R + +--R 2 2 3 2 +--R 16a b p q - 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (a q + 4a b p q - 10a b p q + 4a b p q + b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (8a b q - 8a b p q - 8a b p q + 8b p q)x + 8a b q - 16a b p q +--R + +--R 4 2 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R 3 2 2 2 2 3 3 +--R (- 2a p q - 12a b p q - 2a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- a q - 23a b p q - 23a b p q - b p )x +--R + +--R 2 3 2 2 3 2 +--R (- 4a b q - 24a b p q - 4b p q)x +--R * +--R +---------------------------+ +--R +-----+ | 2 +--R \|- a p \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 3 4 3 2 2 2 2 3 3 +--R (8a p q + 8a b p )x + (12a p q + 40a b p q + 12a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (3a q + 37a b p q + 37a b p q + 3b p )x +--R + +--R 2 3 2 2 3 2 +--R (4a b q + 24a b p q + 4b p q)x +--R * +--R +-----+ +---+ +--R \|- a p \|b q +--R / +--R 2 2 +-----+ +---+ +--R ((16a p q + 16a b p )x + 32a b p q)\|- a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 4a p q - 24a b p q - 4a b p )x + (- 32a b p q - 32a b p q)x +--R + +--R 2 2 +--R - 32a b p q +--R * +--R +-----+ +--R \|- a p +--R ] +--R Type: Union(List Expression Integer,...) +--E +@ +Since there are two parts to the aa variable we split them: +<<*>>= +--S 16 +aa1:=aa.1 +--R +--R (2) +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q + 16a b p q +--R + +--R 4 2 2 +--R - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 3 2 2 2 2 3 3 +--R (- 4a p q - 24a b p q - 4a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- 2a q - 46a b p q - 46a b p q - 2b p )x +--R + +--R 2 3 2 2 3 2 +--R (- 8a b q - 48a b p q - 8b p q)x +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|a p \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 3 4 3 2 2 2 2 3 3 +--R (16a p q + 16a b p )x + (24a p q + 80a b p q + 24a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (6a q + 74a b p q + 74a b p q + 6b p )x +--R + +--R 2 3 2 2 3 2 +--R (8a b q + 48a b p q + 8b p q)x +--R * +--R +---+ +---+ +--R \|a p \|b q +--R / +--R 2 2 +---+ +---+ +--R ((32a p q + 32a b p )x + 64a b p q)\|a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 8a p q - 48a b p q - 8a b p )x + (- 64a b p q - 64a b p q)x +--R + +--R 2 2 +--R - 64a b p q +--R * +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 17 +aa2:=aa.2 +--R +--R (3) +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (- 4a q + 4a b p q + 4a b p q - 4b p )x - 8a b q + 16a b p q +--R + +--R 3 2 +--R - 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (a q + 4a b p q - 10a b p q + 4a b p q + b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (8a b q - 8a b p q - 8a b p q + 8b p q)x + 8a b q - 16a b p q +--R + +--R 4 2 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R 3 2 2 2 2 3 3 +--R (- 2a p q - 12a b p q - 2a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- a q - 23a b p q - 23a b p q - b p )x +--R + +--R 2 3 2 2 3 2 +--R (- 4a b q - 24a b p q - 4b p q)x +--R * +--R +---------------------------+ +--R +-----+ | 2 +--R \|- a p \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 3 4 3 2 2 2 2 3 3 +--R (8a p q + 8a b p )x + (12a p q + 40a b p q + 12a b p )x +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (3a q + 37a b p q + 37a b p q + 3b p )x +--R + +--R 2 3 2 2 3 2 +--R (4a b q + 24a b p q + 4b p q)x +--R * +--R +-----+ +---+ +--R \|- a p \|b q +--R / +--R 2 2 +-----+ +---+ +--R ((16a p q + 16a b p )x + 32a b p q)\|- a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 4a p q - 24a b p q - 4a b p )x + (- 32a b p q - 32a b p q)x +--R + +--R 2 2 +--R - 32a b p q +--R * +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E +@ +We break the books answer into 3 parts, the first term, the coefficient +of the second term, and the integral. +<<*>>= +--S 18 +bba:=((2*a*p*x+b*p+a*q)/(4*a*p))*sqrt((a*x+b)*(p*x+q)) +--R +--R +---------------------------+ +--R | 2 +--R (2a p x + a q + b p)\|a p x + (a q + b p)x + b q +--R (4) -------------------------------------------------- +--R 4a p +--R Type: Expression Integer +--E + +--S 19 +bbb:=-(b*p-a*q)^2/(8*a*p) +--R +--R 2 2 2 2 +--R - a q + 2a b p q - b p +--R (5) ------------------------ +--R 8a p +--R Type: Fraction Polynomial Integer +--E + +--S 20 +bbc:=integrate(1/sqrt((a*x+b)*(p*x+q)),x) +--R +--R (6) +--R [ +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R , +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R --------------------------------------------------------------] +--R +-----+ +--R \|- a p +--R Type: Union(List Expression Integer,...) +--E +@ +Since the integral has two parts, we break them apart +<<*>>= +--S 21 +bbc1:=bbc.1 +--R +--R (7) +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 22 +bbc2:=bbc.2 +--R +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R (8) -------------------------------------------------------------- +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E +@ +And now we construct the two bb answers based on the integral parts +<<*>>= +--S 23 +bb1:=bba+bbb*bbc1 +--R +--R (9) +--R 2 2 2 2 +--R (- a q + 2a b p q - b p ) +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +---------------------------+ +--R +---+ | 2 +--R (4a p x + 2a q + 2b p)\|a p \|a p x + (a q + b p)x + b q +--R / +--R +---+ +--R 8a p\|a p +--R Type: Expression Integer +--E + +--S 24 +bb2:=bba+bbb*bbc2 +--R +--R (10) +--R 2 2 2 2 +--R (- a q + 2a b p q - b p ) +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R +---------------------------+ +--R +-----+ | 2 +--R (2a p x + a q + b p)\|- a p \|a p x + (a q + b p)x + b q +--R / +--R +-----+ +--R 4a p\|- a p +--R Type: Expression Integer +--E +@ +So there are 4 possible combinations that might yield an answer. +We construct all four. +<<*>>= +--S 25 +cc1:=aa1-bb1 +--R +--R (11) +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q + 16a b p q +--R + +--R 4 2 2 +--R - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q + 16a b p q +--R + +--R 4 2 2 +--R - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 2 3 2 2 3 2 2 3 3 2 +---+ +--R ((8a b q + 16a b p q + 8b p q)x + 16a b q + 16b p q )\|a p +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- 2a q - 14a b p q - 14a b p q - 2b p )x +--R + +--R 2 3 2 2 3 2 2 3 3 2 +--R (- 16a b q - 32a b p q - 16b p q)x - 16a b q - 16b p q +--R * +--R +---+ +---+ +--R \|a p \|b q +--R / +--R 2 2 +---+ +---+ +--R ((32a p q + 32a b p )x + 64a b p q)\|a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 8a p q - 48a b p q - 8a b p )x + (- 64a b p q - 64a b p q)x +--R + +--R 2 2 +--R - 64a b p q +--R * +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 26 +cc2:=aa1-bb2 +--R +--R (12) +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +-----+ +---+ | 2 +--R \|- a p \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q +--R + +--R 3 3 4 2 2 +--R 16a b p q - 8b p q +--R * +--R +-----+ +--R \|- a p +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (8a q - 8a b p q - 8a b p q + 8b p )x + 16a b q - 32a b p q +--R + +--R 3 2 +--R 16b p q +--R * +--R +---------------------------+ +--R +---+ +---+ | 2 +--R \|a p \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- 2a q - 8a b p q + 20a b p q - 8a b p q - 2b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 +--R (- 16a b q + 16a b p q + 16a b p q - 16b p q)x - 16a b q +--R + +--R 3 3 4 2 2 +--R 32a b p q - 16b p q +--R * +--R +---+ +--R \|a p +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R 2 3 2 2 3 2 2 3 3 2 +-----+ +---+ +--R ((8a b q + 16a b p q + 8b p q)x + 16a b q + 16b p q )\|- a p \|a p +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- 2a q - 14a b p q - 14a b p q - 2b p )x +--R + +--R 2 3 2 2 3 2 2 3 3 2 +--R (- 16a b q - 32a b p q - 16b p q)x - 16a b q - 16b p q +--R * +--R +-----+ +---+ +---+ +--R \|- a p \|a p \|b q +--R / +--R 2 2 +-----+ +---+ +---+ +--R ((32a p q + 32a b p )x + 64a b p q)\|- a p \|a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 8a p q - 48a b p q - 8a b p )x + (- 64a b p q - 64a b p q)x +--R + +--R 2 2 +--R - 64a b p q +--R * +--R +-----+ +---+ +--R \|- a p \|a p +--R Type: Expression Integer +--E + +--S 27 +cc3:=aa1-bb1 +--R +--R (13) +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q + 16a b p q +--R + +--R 4 2 2 +--R - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q + 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R - 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 3 3 2 2 2 2 3 3 2 3 2 2 +--R (4a q - 4a b p q - 4a b p q + 4b p )x + 8a b q - 16a b p q +--R + +--R 3 2 +--R 8b p q +--R * +--R +---------------------------+ +--R +---+ | 2 +--R \|b q \|a p x + (a q + b p)x + b q +--R + +--R 4 4 3 3 2 2 2 2 3 3 4 4 2 +--R (- a q - 4a b p q + 10a b p q - 4a b p q - b p )x +--R + +--R 3 4 2 2 3 3 2 2 4 3 2 2 4 3 3 +--R (- 8a b q + 8a b p q + 8a b p q - 8b p q)x - 8a b q + 16a b p q +--R + +--R 4 2 2 +--R - 8b p q +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R 2 3 2 2 3 2 2 3 3 2 +---+ +--R ((8a b q + 16a b p q + 8b p q)x + 16a b q + 16b p q )\|a p +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- 2a q - 14a b p q - 14a b p q - 2b p )x +--R + +--R 2 3 2 2 3 2 2 3 3 2 +--R (- 16a b q - 32a b p q - 16b p q)x - 16a b q - 16b p q +--R * +--R +---+ +---+ +--R \|a p \|b q +--R / +--R 2 2 +---+ +---+ +--R ((32a p q + 32a b p )x + 64a b p q)\|a p \|b q +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 8a p q - 48a b p q - 8a b p )x + (- 64a b p q - 64a b p q)x +--R + +--R 2 2 +--R - 64a b p q +--R * +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 28 14:122 Axiom cannot simplify this answer +cc4:=aa2-bb2 +--R +--R (14) +--R 2 3 2 2 3 2 2 3 3 2 +--R ((4a b q + 8a b p q + 4b p q)x + 8a b q + 8b p q ) +--R * +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R + +--R 3 3 2 2 2 2 3 3 2 +--R (- a q - 7a b p q - 7a b p q - b p )x +--R + +--R 2 3 2 2 3 2 2 3 3 2 +--R (- 8a b q - 16a b p q - 8b p q)x - 8a b q - 8b p q +--R * +--R +---+ +--R \|b q +--R / +--R +---------------------------+ +--R 2 2 +---+ | 2 +--R ((16a p q + 16a b p )x + 32a b p q)\|b q \|a p x + (a q + b p)x + b q +--R + +--R 3 2 2 2 2 3 2 2 2 2 2 +--R (- 4a p q - 24a b p q - 4a b p )x + (- 32a b p q - 32a b p q)x +--R + +--R 2 2 +--R - 32a b p q +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.123~~~~~$\displaystyle\int{\sqrt{\frac{px+q}{ax+b}}}~dx$} +$$\int{\sqrt{\frac{px+q}{ax+b}}}= +\frac{\sqrt{(ax+b)(px+q)}}{a}+\frac{aq-bp}{2a} +\int{\frac{1}{\sqrt{(ax+b)(px+q)}}} +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(sqrt((p*x+q)/(a*x+b)),x) +--R +--R +--R (1) +--R [ +--R (a q - b p) +--R * +--R +-------+ +--R +---+ 2 |p x + q +--R log((2a p x + a q + b p)\|a p + (2a p x + 2a b p) |------- ) +--R \|a x + b +--R + +--R +-------+ +--R |p x + q +---+ +--R (2a x + 2b) |------- \|a p +--R \|a x + b +--R / +--R +---+ +--R 2a\|a p +--R , +--R +-------+ +--R +-----+ |p x + q +--R \|- a p |------- +-------+ +--R \|a x + b +-----+ |p x + q +--R (a q - b p)atan(------------------) + (a x + b)\|- a p |------- +--R p \|a x + b +--R -----------------------------------------------------------------] +--R +-----+ +--R a\|- a p +--R Type: Union(List Expression Integer,...) +--E + +--S 30 +aa1:=aa.1 +--R +--R (2) +--R +-------+ +--R +---+ 2 |p x + q +--R (a q - b p)log((2a p x + a q + b p)\|a p + (2a p x + 2a b p) |------- ) +--R \|a x + b +--R + +--R +-------+ +--R |p x + q +---+ +--R (2a x + 2b) |------- \|a p +--R \|a x + b +--R / +--R +---+ +--R 2a\|a p +--R Type: Expression Integer +--E + +--S 31 +aa2:=aa.2 +--R +--R +-------+ +--R +-----+ |p x + q +--R \|- a p |------- +-------+ +--R \|a x + b +-----+ |p x + q +--R (a q - b p)atan(------------------) + (a x + b)\|- a p |------- +--R p \|a x + b +--R (3) ----------------------------------------------------------------- +--R +-----+ +--R a\|- a p +--R Type: Expression Integer +--E + +--S 32 +bba:=sqrt((a*x+b)*(p*x+q))/a +--R +--R +---------------------------+ +--R | 2 +--R \|a p x + (a q + b p)x + b q +--R (4) ------------------------------ +--R a +--R Type: Expression Integer +--E + +--S 33 +bbb:=(a*q-b*p)/(2*a) +--R +--R a q - b p +--R (5) --------- +--R 2a +--R Type: Fraction Polynomial Integer +--E + +--S 34 +bbc:=integrate(1/(sqrt((a*x+b)*(p*x+q))),x) +--R +--R (6) +--R [ +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R , +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R --------------------------------------------------------------] +--R +-----+ +--R \|- a p +--R Type: Union(List Expression Integer,...) +--E + +--S 35 +bbc1:=bbc.1 +--R +--R (7) +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R / +--R +---+ +--R \|a p +--R Type: Expression Integer +--E + +--S 36 +bbc2:=bbc.2 +--R +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R 2atan(-------------------------------------------------------) +--R a p x +--R (8) -------------------------------------------------------------- +--R +-----+ +--R \|- a p +--R Type: Expression Integer +--E + +--S 37 +bb1:=bba+bbb*bbc1 +--R +--R (9) +--R (a q - b p) +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +---------------------------+ +--R +---+ | 2 +--R 2\|a p \|a p x + (a q + b p)x + b q +--R / +--R +---+ +--R 2a\|a p +--R Type: Expression Integer +--E + +--S 38 +bb2:=bba+bbb*bbc2 +--R +--R (10) +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R (a q - b p)atan(-------------------------------------------------------) +--R a p x +--R + +--R +---------------------------+ +--R +-----+ | 2 +--R \|- a p \|a p x + (a q + b p)x + b q +--R / +--R +-----+ +--R a\|- a p +--R Type: Expression Integer +--E + +--S 39 +cc1:=aa1-bb1 +--R +--R (11) +--R +-------+ +--R +---+ 2 |p x + q +--R (a q - b p)log((2a p x + a q + b p)\|a p + (2a p x + 2a b p) |------- ) +--R \|a x + b +--R + +--R (- a q + b p) +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +---------------------------+ +-------+ +--R +---+ | 2 |p x + q +---+ +--R - 2\|a p \|a p x + (a q + b p)x + b q + (2a x + 2b) |------- \|a p +--R \|a x + b +--R / +--R +---+ +--R 2a\|a p +--R Type: Expression Integer +--E + +--S 40 +cc2:=aa1-bb2 +--R +--R (12) +--R +-----+ +--R (a q - b p)\|- a p +--R * +--R +-------+ +--R +---+ 2 |p x + q +--R log((2a p x + a q + b p)\|a p + (2a p x + 2a b p) |------- ) +--R \|a x + b +--R + +--R +---+ +--R (- 2a q + 2b p)\|a p +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R +---------------------------+ +--R +-----+ +---+ | 2 +--R - 2\|- a p \|a p \|a p x + (a q + b p)x + b q +--R + +--R +-------+ +--R +-----+ |p x + q +---+ +--R (2a x + 2b)\|- a p |------- \|a p +--R \|a x + b +--R / +--R +-----+ +---+ +--R 2a\|- a p \|a p +--R Type: Expression Integer +--E + +--S 41 +cc3:=aa2-bb1 +--R +--R (13) +--R +-----+ +--R (- a q + b p)\|- a p +--R * +--R log +--R +---------------------------+ +--R +---+ +---+ | 2 +--R (2\|a p \|b q - 2a p x)\|a p x + (a q + b p)x + b q +--R + +--R +---+ 2 +---+ +--R 2a p x\|b q + (- 2a p x + (- a q - b p)x - 2b q)\|a p +--R / +--R +---------------------------+ +--R +---+ | 2 +--R 2\|b q \|a p x + (a q + b p)x + b q + (- a q - b p)x - 2b q +--R + +--R +-------+ +--R +-----+ |p x + q +--R \|- a p |------- +--R +---+ \|a x + b +--R (2a q - 2b p)\|a p atan(------------------) +--R p +--R + +--R +---------------------------+ +--R +-----+ +---+ | 2 +--R - 2\|- a p \|a p \|a p x + (a q + b p)x + b q +--R + +--R +-------+ +--R +-----+ |p x + q +---+ +--R (2a x + 2b)\|- a p |------- \|a p +--R \|a x + b +--R / +--R +-----+ +---+ +--R 2a\|- a p \|a p +--R Type: Expression Integer +--E + +--S 42 14:123 Axiom cannot simplify these results +cc4:=aa2-bb2 +--R +--R (14) +--R (- a q + b p) +--R * +--R +---------------------------+ +--R +-----+ | 2 +-----+ +---+ +--R \|- a p \|a p x + (a q + b p)x + b q - \|- a p \|b q +--R atan(-------------------------------------------------------) +--R a p x +--R + +--R +-------+ +--R +-----+ |p x + q +--R \|- a p |------- +--R \|a x + b +--R (a q - b p)atan(------------------) +--R p +--R + +--R +---------------------------+ +-------+ +--R +-----+ | 2 +-----+ |p x + q +--R - \|- a p \|a p x + (a q + b p)x + b q + (a x + b)\|- a p |------- +--R \|a x + b +--R / +--R +-----+ +--R a\|- a p +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.124~~~~~$\displaystyle +\int{\frac{dx}{(px+q)\sqrt{(ax+b)(px+q)}}}~dx$} +$$\int{\frac{1}{(px+q)\sqrt{(ax+b)(px+q)}}}= +\frac{2\sqrt{ax+b}}{(aq-bp)\sqrt{px+q}} +$$ +<<*>>= +)clear all + +--S 43 +aa:=integrate(1/((p*x+q)*sqrt((a*x+b)*(p*x+q))),x) +--R +--R +--R 2x +--R (1) --------------------------------------------------- +--R +---------------------------+ +--R | 2 +---+ +--R q\|a p x + (a q + b p)x + b q + (- p x - q)\|b q +--R Type: Union(Expression Integer,...) +--E + +--S 44 +bb:=(2*sqrt(a*x+b))/((a*q-b*p)*sqrt(p*x+q)) +--R +--R +-------+ +--R 2\|a x + b +--R (2) --------------------- +--R +-------+ +--R (a q - b p)\|p x + q +--R Type: Expression Integer +--E + +--S 45 14:124 Axiom cannot simplify this result +cc:=aa-bb +--R +--R (3) +--R +---------------------------+ +--R +-------+ | 2 +-------+ +--R - 2q\|a x + b \|a p x + (a q + b p)x + b q + (2a q - 2b p)x\|p x + q +--R + +--R +---+ +-------+ +--R (2p x + 2q)\|b q \|a x + b +--R / +--R +---------------------------+ +--R 2 +-------+ | 2 +--R (a q - b p q)\|p x + q \|a p x + (a q + b p)x + b q +--R + +--R 2 2 +---+ +-------+ +--R ((- a p q + b p )x - a q + b p q)\|b q \|p x + q +--R Type: Expression Integer +--E + + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 pp63-64 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum5.input.pdf b/src/axiom-website/CATS/schaum5.input.pdf new file mode 100644 index 0000000..8bc22b5 --- /dev/null +++ b/src/axiom-website/CATS/schaum5.input.pdf @@ -0,0 +1,2930 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZADFFY+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RYAEJS+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/PJGLCI+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%= @ wE+WG*8 &E[ۡ:%yހFiaydxA6hꬖcZWū]&flճŎK;Ab`0_ͧ{f0:FÄrJCަSdWZBM 8by8Jm\76 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/FVFVNG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/AKKKLG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/HMGMRM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/MLMMPW+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length 598 +>> +stream +xVr1 +EM[}"0Ul@UӒf]ڦ"T=uX|6eymoNNŠ|2!83xŷkկuؼ99u&A<c\ /iD$[}R w 4 ECbpF+AG3D̕!@4>)ޕQS݀e?䛀}rB x`Q/&+or'Q,k}h;_ϓXU_ϓ$C[{(Trstu +:^2//8`8"=zxQL$":Ɛlh/f,sA?IFۍ30g$ta+2Ig v4!XnC.BJGA/GOG^nFFv>;Չ2JJp?` );_Lj 0: +>%hIǧ/a`jzbאE!ȣa]0spwFr&-$aP]xRɻۻ64c~ڐd"o2X'&vh +endstream +endobj +37 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 37 0 R +>> +endobj +42 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 41 0 R +/BaseFont/FGFNSJ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +45 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 44 0 R +/BaseFont/VXECUR+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +46 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +49 0 obj +<< +/Encoding 46 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 48 0 R +/BaseFont/IUDUGQ+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 51 0 R +/BaseFont/BPCHBU+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +55 0 obj +<< +/Encoding 46 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 54 0 R +/BaseFont/VNHICW+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +56 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +59 0 obj +<< +/Encoding 56 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 58 0 R +/BaseFont/GHFLWX+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 62 0 R +/BaseFont/WRWBVR+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +64 0 obj +<< +/Filter[/FlateDecode] +/Length 1309 +>> +stream +xڵWKSFWhc4Ae/ru.ưT,cSqǧ[fF!~~_wk((//Oˋ`Y, +͈QEi8X|=c1fouh˜!R M6JyR\-! Y]0ljE-x,儳)>7iF![}Ս]ꐃmA{p lP"R94r,Q=^ l;֞lq=\G"3JhМ)n`]ےSI( 9 Q(\ێI( DYM#vOodN\6RD= 8ezM#AI-gBmo( 2ۛ(('!n&B+ +3a0@! +ƈ8`_ ҠQt8 T" +@C*l&hF- Xアj=v&;A4^3*$^A^ ΀3 6O9f͓u hŵhRSJ`sr,!ݞwOv0V8ao1X,G]C)CB Bs,c`Pq-8|&mLɄ+2nkaeNpjlx3X'7L6W"\V\2_E4RW =1JtY2Ii: r5Kpѻ8c keyG74cd)Ѝ)zD3GȫbP%m$XmI 6o[V)*y{*5oA"U`zg(etp]v +./_GE/}6c>~_}+>VUrضVwwcls .Z!W凇:W3v=Vsuv\ܮgY ^3?? x(OR2aY2egSġpOM٢-s-|BUӀoXOD5BQ(V*o]n_;V_ylh!ݬ<5G^͏cDZP:[L_ w(99 +tL@ݪ՗!f82}{CpD Z5Fq}!g>AESJNGIg>^1=8tΨwc (`Ƨ)B\z[̷͉cB^mZ}=oּTTڸ)8$^_z?u R+~焐 1 +)J-ڻBq +endstream +endobj +65 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 42 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 45 0 R +/F10 49 0 R +/F11 52 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +39 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 65 0 R +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 571 +>> +stream +xڵVK0WhL+R5[ǖHh*K*폯1&`Cm3op1|#@%JHHLA "#B)M!~Du{eI>eB[} Ie + H(@>n-Sc~cc`2_͞Kal.κ- "Ķ&ݗO&n"j|C bzo*uBPtވ0Z#&yM!$j|< +$tag˄v۬oAc@% +P.K|cvդj64QirCitzyw_n{oz!e"> +endobj +67 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 569 +>> +stream +xڭM0>6ƑR5[ǖ[hU|R)? Ɔ06g^c EH2 cA ` "3@2Ȃw"$f& *Zay) +6֡ex* iosp7dB/PjnF~b IʬM76_H Cn qDa: "x.iOG,pͅf[6fZv;\vɵٶ74S'y(KY$դ+AݡAButwהWH:T#6h ߭ . HgkC5%C8`Gp&#*p@6i7JG$ wF7,! +;md+{St3' 2Z#A- )w"+vS#%' W￵n2ջi߻{^]ގîD>cpIV %NV> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 626 +>> +stream +xW +8ڊpc0zhl[țFuqf|| XQ.07oP +>g'L38@F"˯!' B8 aB!480i#;@boJ +޵~IJBQ/،'J*>2yxt<Xq81;( `.x\T!lzзk{v7ͺe`''["R)!_FBWN#Y Rpg]T2TXp;fQ{֌ H.E&qVЫ =)f^Iɚ@W=\U;q}_zvS6R5}3zm3"w4#-6,ĔSG[ǃJ6/ p"I(M^Lm>OI +endstream +endobj +77 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 237 +>> +stream +x}R=o0+n4Bg|8cURcdE](Iď/MJd\a'xɎ8 -ɭ_#$ceZj製HL+H d`1Ϫt0v{ʲ+bzE4w1.6]bX_q8$`RVk.fAm3nm}{Nϯ&MWޫfK/T*&.~ +endstream +endobj +81 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 1076 +>> +stream +xWK6W(+.gK@OY`7M ԇ(a{ݤ/y~͐b X}(.[ pYe+o +,+|xERP~Xz0Ͻ *+L>JdUK-QXV1Hb3-8 ¤@нػ&ځV1| "0Dn0w1)8%Sl2L4cǵjW!ۉ0ͺ { +g]#\05ܪo&l{-8*w8+$O#t´rMƹEGe΢-v +HljQi~&5)*nR֤jS/pz:uY=ɍSz#씚C"'hp( S, 4?mOVN)vrRJp 1ABU'Nj? Y$=O4$p% C8=MW6+)e +WVH䛉cDqnF*F)CSR7e:&:BVջ Kڛͫן|xW%l™UC`K[ /6|sJ&3$w4!1fˆ }~@I<3{En A#UjP97ƕkQ+.ǷDyҜm`u4ʿYe)l8Wzq-T39=*Ր#}-W_˗ʼ^ʇӳߖ҂k\җT]?4F +endstream +endobj +85 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 42 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 676 +>> +stream +xڭWM Wp@ lVjjS=-{Hl:Tʏ/1a͛a$` |)揘+00sfy"i!QO!1F%@3"~0LK3,=2>[w^R^~kW3_iF$!Fu'xrp:]Y[AD|T*6 >`-˪4&OԢd7o" hp!$II9)&w0% juZNڗ9U&*f Ϙ~z/c:|ŖN%ŸGƁ\:7#=L<bT1*4@w+D]Lm8ъF':Nt;f<r6>xj "KHNd)K|8Ҁ2ķt:悠Vw1k/upi2^BTaU-FML,a}a) +endstream +endobj +89 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 602 +>> +stream +xڽVMo0 WJhY2,6zHEj'9x@dITr⢘.i"I#J(E+dk1cI"*PH@ xq +iPڭ[cncQ#r*2+|wAД,FtYQ=K}0J(wZطT8GkhX# c%F4uQw+\z-no[?W +mYnZjwrsC9Ewb/^vom#T2jJ +jԨPNZ긌#Hi2Q628t||wb:#YuɛiJ޲4NO4d%Rgd)> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 720 +>> +stream +xWK0Wp"1"Ъ٪=e$ʦvI6Ԭ_cmF\x<1Nt%dA8!Td6cɐw\̗9F'0\AO#hC-bAYq.Yt-$I$Ѳ2xTa1s,i0\zx` `*Tegu 4m!lC%dNXkYG|kHhz+i7سKҡƺYC_Oq7l@0j'l],TM4 JDÕ( 2=h4QCp_wז YWr3DU[ܹX|\/zʵ`I(='aDP)P6]Q0Qa+sŴr&MӥTykWmVi"yE@VH$lJ^EXf&dg!Sls\6tǃmq\ܵ%VOH  +endstream +endobj +97 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 648 +>> +stream +xڽW= +(8| e&eF]BH=d9 kBp"f"B>v[MpB"ݧJUG0B9%np+)lԊZQ%A c{/6s#zlF> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 528 +>> +stream +xڭV +8ڵ jjKoz&R) h ac0h|n H]Ւ4bbR4_~ee#/f' :+(Rp?N(AêYi,3rkQtkܘ팸h6?gpk=Y$_" +0b &j[QryA( xHXbܪFQ ЈkWy !f#٭jE!Ԉ:Lm<#f]֖:,mBl`g>v)$dRr06t=[pr_.UejQHqM!.Rd=`H0kCwn>C$Cy#9ä1yȝdꤖN +oC^f7$P#fX> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 1130 +>> +stream +xXnF+x%bNdN(&" sǧzc7,"kRUӺ*wX{'*Jղ"JSoV|M\=W?tNU m5@en](L>X + (ѽꯊ@ESiê?*5ˌ̢AJ]TLRTv䥙 0T ގlmuv=jW8LfǑZ(T60BnAoamHm އ Pkpjtћ8='YsИd((3$Sm~^Y?vk"jk5y 0wݫן><>=w/K6]o;bcߟ> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 576 +>> +stream +xڭWr Rd@Cm&qfRfE)"i΅?>@m`,| DjB/zv{ +[$i-)‚Ւ-pR4%\򂕸Ў q0ÿwDn{ 50i3,~88[ӗH\IWI @`+'ZβpC0@$iaI>>l@[\}h2P(o6^l] +?U2ѐia5%p\ߟ] Jk_V.3#s94"Qf.8²:+0{8>PrZ8Dl0p?h.UqcI9I+[Gqdj +J!d  Lj"!JC/o<||Gx.:P߆o R&20瑞l7ڵpe}xF/*z+i WU4n<\J6c%:?'iQʝƞIV1Zѳ?O(V|߰dBN bP;g8gRZќM!xlEDRzƯ?n +endstream +endobj +113 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 652 +>> +stream +xڭ=  +J4,,j3e&e]B..]&Iq %qp֮a=c'q|z$C?(r~!z *kIΟ7~kl@-?-&YC&8%P~"*X1HOy _]+6Z6ueZ1^1\o_W$Z \ 9d[qZ]ټ[Y.\B9]٤5u,­Q|6sQGWVz[%[ Fl+:b >k7PUq%526uHW=SN +tF&ueV[#$YxQcT3-%MtVwui}K aJk|ue9w_*0=%vE!A x]wX]a޼*1/5X^XTF=@7{]X!qkN@6}2*U7FO\ǥqWu2^J0okx,D<(*f tV(>)t^D> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 377 +>> +stream +xڥT;O0c]0"ZbB;R"GItww;LXo^S5QJ\*P}M)gD $c g#r$z Jqy-UˀocOWs, hL`UW0}C,C{镏61eKK422%tML))p- \iM–嶼҈SQ:^*ֶ֞c5!} +O3>w{DD)Djb5(ť<6@]jr6a[rEt|h)l;]̷7Sؘwxݞu}x:uXT*\h`Z`=j9~tX +endstream +endobj +121 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 766 +>> +stream +xڭWKs0Wp#i 3ttƷgM~C?6)f=V1KBzCt|v}k*+r]lnca=n/;B1f|t:],S2ɍf@d\9 +Q’ +pr"!z!Ya>ŜrDD=aUUMLDL})sWB^Y^mFzڍ|EFBʄuG+.ĕeeADDNI(8,TB8wbZ2 N"G ”[Ck[ 9ިzY8`Uj2w 'p7+ s\)w_Lase㑦]!]R.w`z!Yp*Mކ)%|:<}=U8>. gܚ-̊L6W5&U$ivӸsǟAԣQJ8IC,7$5AU-LҲDoFڙ`n2r +8_ o~env]D.#A痍4#͜ L&ʱs\no=f.Z6kAisfgWsmu;qD#^F` ,|sWMq nRSsP]r-E 3)g(ߧջP^ +endstream +endobj +125 0 obj +<< +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 608 +>> +stream +xڽV;o0+8J1(%Scn%uIHJumxwB<3|3+-@H\I k )樸*_JOCg wwVB"$歵';,&%Ĩ d7}496$$E$/u@:Ԅ4#&*橙v=do$֍FSJ٧EAz"W."l#BQGii{MDRc3Xg$@³ˍa1ȗMY391%s5[M_oV<P+5kޯ*%Ԡf})ɕ߰)Hp)/y[6^&Y)[TBFT:Sl}AW"mZԆń9fEʤYп2ЬEo ~=|z>h~s|8>N9IB+澹+ږ\ߴmE$DjѦ̨ܴ_#N9y؞S4a6KgTfQ$@)u ZvZ ;:<1)u~?Z +endstream +endobj +129 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 655 +>> +stream +xڭ=s  +J)t|,j=32.J!IgR7BHB`b_vi AHum'Q)*dGj0M[4#AҶ64̃oZcJ&nwn9y/=.2`6r + ..53+PJ>L?|󙫈N{#gYM #jrLӓl[3 7uc;t1#OJ.\fAeb#ǫtswrj9H1&>l`j5e!uK4@9f^CSXRPkN OLfimH\~ʝ0'bcp,ǮžJekHYL'e͊2^d^J{l-ݏ,nҐ]{ĝ1˼ȕC$tΗ|in\/o +n sp u;_6P4"P9+W'v>xUN֚_BB| J iD" )m(ȵ)g8oDc e}Φ +BLt!xࡠ =* +aֵZ[cFw +endstream +endobj +133 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 311 +>> +stream +xڅSn0 +| CI'!4:m)*jԏ!)DV.g?gv + +Vd`?f `^ / ը9IiK7 Xj2}4t z"!z»PS%ZPĆDڸp+ d8:V&V +w%[YbԙcM1ϛ.W,9'͵)K$AU"d^bwXvͱ>>:|V^f+OȤP(U +endstream +endobj +137 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 764 +>> +stream +xڝV[o0~߯ѐ/i{H{(mRi?~6Bys9N|v>#}ɝ#ϥ9s֟O7 @B"%H4~raSI**0ʿ. -6ӧ*7@a{~ +&jsm N*Ǜmj~:S_R`_btgUt662dQӇ":I c>6S?F+/Y(F98 +Qibcܯ.d@}eīDx/bP-CQiX[sA1!N1# +a*!+J4wM{Ͳ0K; AxcPkM:q,Z!jEDP@Z!"TO~٧+cxsiYn̜d$i$Ӓ5" (bo!B3N:/%}X[$g7 $lK'춈7U׷|xgG|6gaF/'fsny;2Jl-CToR_f+(G`(ArNAxNvfEu/M_4 건l86ʡ6f󼯖!rizdzBv5Gr֯B~G xA 2bUrjLOѩ=` `0 =bY) +endstream +endobj +141 0 obj +<< +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 671 +>> +stream +xڵVM0WpvذR/UU쁬huIa6MR̛x"oUG}6#Kqʽ'C7'/.Gٰ|>{m U =l mAڏc803kЗ3\A&ga߁DžX>:mPn#~G4"=f*$d6V|X-/^ ͶTZy5Um4*r`rTRc +@x֒E3:jzMnd%76f۲ +="иdZ'BƦ& p'frٍZ +uxdyfy6y ͞;d8ÎBX@Ѳ GjU"5YtXY5\ʣc"Zt3,b17)U"MPp'[Z1`B/ );Tc#fga)NM_˩B#F-frN.udx眿<Ip +@ hi\4:@ zTdh\,b'7PnJ1EK^索^Cb7$檍@4Ɖhp ]+ +endstream +endobj +145 0 obj +<< +/F14 63 0 R +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 684 +>> +stream +xVˎ0+XB"|m VTeW4"@5N&Q[l s}q?dqOs$?;Nx!-Dsse^[}ݭQ|Q|_ւl[wSPUgOF{|^c8%09mcG8r-0?k' #HAe)0Zi'31  +!t(mi + +ͅ3!VxЗM(tS^W +,Va∶>i'2ZYe $ƶfٝԂd ;ngryڮ-b!Pw܂ V5(34$@Ǭ_cz}PZz-=N;ajْqDg h`"&L 0*l)(&ulqUG -0_E!B]">UShyAOlkFZHǒXt(YHG8vpI-}?zkj Bkjx&]KKt (&vQ\v,7j:O~*ܲSz.N;6v8|ܵW]"+m Gm.ssWdMyy&ѧUY!OzrPɦa.s1aq_,"ɛ +endstream +endobj +149 0 obj +<< +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 214 +>> +stream +xuM0 !clF0z49|xd`$.o}ڦ@ pF6ABI,A_@1D 냇q!O> +.Id5ߘ7 +[ +LX?P@HHC&h'Jxd gKWyUqw].[{ w"&$kELkK +endstream +endobj +153 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 744 +>> +stream +xWK0+rtr$.#[ᐔn[ۖ+i<~%uR-$=g>; J-M>"E$O&M +ఘfUyaVlSHrjfP/aY(W1uyX)`/g._bR%_Ӝ6'YV0%pVǩK)V+ryTa6WԸkSY.VޜNʠQj`$9=k c?#MWN°/h!j?Jq`8άzF2-a;֍LA&en*2G**pm6`FZ\L: +,"3S VB'I>l2CTJ#b˔[Gs[ gr.:Y<9`]Tj2wz1(ǔbpPWԕ򱲻v+LB1\4 +"wcbCiC:P82fȴmvd +n#>OxF̍6x#]F,H8ٲɠu a1p&RCI b\y6Ȳ 6{ZG=ͫThȔe t #2m|_HZhcMQT|/DgenwV&\:R1H0iWifgU4v> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 652 +>> +stream +xW=s WPJ %du+"i2KiA2 $qwv j-&c<x ݠ@ 'TCgm(R#k)-UGh #nu?/N5> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 674 +>> +stream +xڝWMo0WY#R/U7U{lhT%ۤTʏ0{37o *DgPG?$$ Z +g1v *&ОSXI%;?sjV&GVV%7hdJMm:Z{waTg~ ϚaJcIcQ]159@ @71ixZzӼF2.[xx<=>O evcS|{zx$m#DZm2B> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 651 +>> +stream +xڵW0,jd E)Ŧ [LJ"ii%QC9ތ1FOGh'HQ4:JΟtwo#m:NJ.<{*H+AE+}?I!kҕ߼·pȆ:OIKVp]Qp?jJXG)h#nmN킖B|'7yxd?]Ũ$4*e8rP'/ +endstream +endobj +169 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 649 +>> +stream +xڥWn0+xbPK|襨SV;pAb'=@>IIERk(jw8;cT" _zsP.RT|{ ժia+}z~2Wg 1. +6EA") dְmuxd_J ݳvW*hgm禘-b]ȇE`D<^@I,/MWjM>ͱSJIkhjdhbeI\u-vLi` YFфyn_f%w)9@iOgpk7n/˳p<vptdzI(be(iS䎋|G۶<U:tE49])қ<`y z)yNzӞQe &rYd,:57Y`TÚ}뉻UJ*}V ̑C`tʙBFz vr4NX +'O'BI܀ ݳ>x]Ne~KxxcƙÓpYM⛬\&dSs zz9ƽBz_ml,C;/J)M,Lm/ x +endstream +endobj +173 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 641 +>> +stream +xW=s +(%{h=3ңJq.39w.#in&)|WpZ`}}C#";@wҝhxAv",Y[!ذq> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 626 +>> +stream +xWˎ0+F&E.Z5S˖2SIHHm@3d{|q -oi2"d8do3LE3bRcP8Ʀ)D9- ezbbi^rN[M> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 336 +>> +stream +xڅn0>GqǪjNJtH$uIIҁJ<|5 H 7kJAyAOUaYb50bšP`biJߥXzCaƈ]U4#\. ǯ,ҩ wpҭ3h\#Bwzcz;96n%n%<(;on`$dU'A&!zXC+3‚)`:%vc| |> +u7*9x\arefф֣9v7`#V@;cWmeמׯǟМCp3߈+gJ $܂J,?v +endstream +endobj +185 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1068 +>> +stream +xVMs6 WhCiNO]QM3fmݙ>(JrnOE ! oI J/Jpqg`onzɥDwWd$Q-_z)h#X\~L"(q&F_)+VnV? +i_*o ӾnهL'B C1F۫D)9! 0qm/ Xԓ> }ˬsD#|z-"Ds=Y~q?GJ*!)!H-Dy Kj_Ď*R- ξ#VM?LT~r|#Axxhѝ1ghDTA%z1ya%9}4jXb*vQSgŀŒTPQJ=\ONTgэCeHC`0BVBvLJY6Z4LC1jlKӖTWTm6Fjj>Eꍛщjd[;N. e#vSзCݶ7;*x ?],޽}}T"wjyY-jwO,/s?X8C0 ng uL9>x|n$(DjRe_+A!*7ʦ(2خT4FNuc"N:&WyU{KA8,¶ kBdyQTnm 9:;bnqYqOVipt?CKB ,RB eq9 =AE`͋nD*h_56 2o[pgіro +w^37HS_[F]oN !T?ݜ8h֑D36WgǗC\9Z+ovsUbWu rvF[_&)|}7ς6 +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 42 0 R +/F2 13 0 R +/F7 35 0 R +/F3 16 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 572 +>> +stream +xڽVˮ +Xڱf0Dʦjn.[﮻RUr•@6$Uղp,C[d}I" T}GA._bLQAߪ(CR"~lGbya.rcĘQEc|nćG;OǬ0LN:K8C$u}i:Q|9DgG dF76&Jqva,)RSx'#dYxH܃*)&d'bY&JP(u2T9Of9̹/nuct,WJg  SFV'*n(2#1Ar +H !e@s,k3aGQ'#<L6y3!$ZoF?mi;|K˫0eT3TUL4j:P.ђ-_{-^?)\s# 9/]'ˇgͭ{ڦQd7weSi^=nTU z=2F?. R + R47ջ " +endstream +endobj +193 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 622 +>> +stream +xڵV0+rt6c;#*TzCXQD!@߉@BЦ]#g3{3#oG}:S)$Œz`X^7?FaObjOgx!X5 DDbC"J_c!{.ֻ}ۼlwƾlV Y߭YĻa];dR#:?ew`;r_~OE?)ᲲJqQFᒣ ta( $0 7VWp,@2kĴ~ͬun Xݾ. Ž +UgO&>?C88\ +0~0akձ6ЁYfU2UPFA*"Z|U%CPǿ n$cˎ:b 鷳g8w(':\ڰ*=)) _w'L +YVd[qz58ZO0Tl::`jCFF_ +f<~Zcjݨa|c:b6Kgp_ |̅=~M|[Cǯi 垾yt?Jc p/0gb\g +endstream +endobj +197 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 566 +>> +stream +xڵVn0+x"襨SVp&9@>#RVvl> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 599 +>> +stream +xڽVM0Whx? ^fr[zQUُC*C lj`3߀hF)#;|DpTfDw Sdp U("Y-rF)N !iĀI&0k$DcPq 7átxwO~Y nk-/;f[Tk}c + +B \cu[HBĞZó1s|14U=0FZIgtݗψNjnѝ Sh9!!;|>jм41~) +0M sm1PͿZ D_` 8ouƙΓBrycF9om \;+¬@[΄NHv*7BGܿ]XY)y'RGBW-/ܭp09'AЅ %ia;mEoY?!FCإk,UGBRUձg /0KM"Nv,wLd nL, +f 󴃵D">3w-XD@Bku dV(#eVvYT~Q +endstream +endobj +205 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 587 +>> +stream +xڵV=o0+8J-(!qvlE5 +1|i("aFck' ]_ gw~0N&$ %\7[_Y~~yl_כs(iB'=<ЫZmGnj"Xr; M6f 7#S:YquG]Q (r7`By up˻SP'1Q\*d'Tj041'(S7|R>GՖ\ wS1 +$k+[[ZDg3|Vs'pYuu33?z)`0;SR#%nj& K5YG?K 0n@c ,*UT1b\` +endstream +endobj +209 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 619 +>> +stream +xڭVM0W<`Zc[C@YP5va'm.v̼744Xf|J&)$HB@$d|cD8W-7e鹹qʳYR"r*% ڱ6D2J5!V̠ WA6 =*[EO:ed,c#ڙ@4p|ңBX + +օT/}1V.1'>.oTDdJ + (]Gea&g*-!]%Wj|9@}?էV jhif4Zt,sv̶,ٰ;D[ ឮ[gQ;o)pȩ9Fަa` ٠?ˠ5z{lKNMpe[Jӄй+wKRKb1EˁM^n/m1_/HaXl[zdl~o֏;?v9ЗKV^-:w].>&qu).th:5>5qɻn\ +endstream +endobj +213 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 409 +>> +stream +xڝU;o0+<";gtTXD.> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 1066 +>> +stream +xڵWɒ6+pF&46BUsp*cWrKLlJW4."ir새F^^?(c+?ɯ;IB95TdDMRA%9zqO?f4jP)\ )%I%ɹV!?[H3iD,7䃯x&y2HԄvWVS#|ҧç@mmiNa9iNN|UVQkNG2sFL2y$X eˑVPR3.EeF3xOs m a\ +3#Ӥ43=:0iEZwh:$@*?'Dg*{eΑQ:yC-Ũqͬ(\hSwe CP㮬KW$-׆3{dڠUgCfbfl +`3QSƜ:Eh ڊ[O :F'VB#8QUnZ29H~ܲߨ`{B/ (A*! mܓ[Tm +FSpdfnrc\ "hj&"tPzsٖ]qOM'U +? sܥKk/M?M)=(z{\}UY)N]>;G.pu9Ugդ7SnN綕Qc&.JpYTv0HҾHr6$1<`U.o|{Z??b}>ܬ!RG/\ w/k +endstream +endobj +221 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 42 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F12 55 0 R +/F13 59 0 R +/F14 63 0 R +>> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 281 +>> +stream +xuRn07ڪcURc$EDA!|サ{0+<͖D0#aؗO1F1vUXÑ }YxCq~ByxuB@3yKb"wD"Y=#uIDŽlީcnqSÚECo>clYe[ܧY'\{'O̻R:]˭\y>=J񶮪at++iLUI<:) +endstream +endobj +225 0 obj +<< +/F14 63 0 R +/F3 16 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +230 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 229 0 R +/BaseFont/UFNAAU+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +231 0 obj +<< +/Filter[/FlateDecode] +/Length 265 +>> +stream +xePn +V + \։*Eߢ!?TkK/ 27X`&%J/gtt]S_M&PBFI8|< &)cU&Btd#?(?%8"sv +6WLfv>5j?c-Ja=&C&hm93 N2@8&=AnqyF_5.:\_aUb/*7J[)A **T_#_^2d +endstream +endobj +232 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 230 0 R +>> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 232 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZADFFY+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3905 +/Length3 533 +/Length 4452 +>> +stream +xg8kF Q Gu5DQ&fQfC]D D}&5#z/щ:z%Bcoz~A>s u8BIHKJCf$ (Ep( Z C@JJ@u_ (U@MWh=X3 4\!09H@?~!|X?\Q8 + I!p_XK.%(A{$@sP=\Gs6/b,Vk_l8]]嬎v@I(m?n90ğ: ;DUֶu5M`(4"_Kҗ_[G]8%;,PBF TB䔂Ej`0DIOEqނF.@#Y,(RGqnСA/&G4n1Q&t?7M> 1r@,aC4-B˟%kmH5 A(f8|uc!M2[PSDo+Icw'^9Dkm0{FF[~W d) pZdrO d,艞nђM7TxլrK/_#N [}tIpa,St43_Vx 0N1Fz6a-.8 +S=uWIG#d~& %Udsh?lM<- 6yW'wHC_7j.^#^#dCl٫4c%ҏTŃ?m*Auk}C l O.{l~ZUw'c|5 #'Jt1295P(c%cy +:ʠ_!d #_@Ik)Yq=W/Bf;7T-ukEt +)t]͗Q\ y +5rҋ4}Gav,-BGu|zH)SP1Kk=Ms+?T+ +3yzsžOPwVw_!6/G~Ʋp +(u85m5#nd~@@+[i3D345?6 +,=|J&]ydAf qPπR--<ܮWF[)m<"[!yft:B-EeXmRuL+-*2;"l'WeI'RfH_OVo!u#^99ڲd(ifqGNݔM+:/ [yn*:l66n׭C3ىPy"8LչƊ Tws?hY 9+;,z +{sRܟRʟ0_0QM/|k 06ĒAq61!D{26@z21I\lqvPs\-5K=ET=Q`,# .2|Y, I + tǖ~\иU,KGjbȉ;gZAUp@&'&ZaLf8Q".I'UD  lh!'_zRV{A׺Qjn}Ĝ ~ٙt4=ռ7{$ؠu=o<,zCAkJh3D h(S+T8t0gQ2wp\+sua𜽘"ja9eHtee8wlNdtAz4SJy~*2~nMcO6~uoAW?wOzg4㎫J q]OLh4**gg V rLhZ\)? O br0!WHm24MdBˊ2׈lDCh?oK厑fsG06J.Nd`d>SY.UooVB?*|3^;>rKL0 '/X_4)6Hѻy/bܧ.bR/Е?xX)]Oe͹{fI^tZ"C?Ǯ9!YY7DfXNfo,NoE*!c#=s+gJ!3Nx_jףxaN%+8t|$^SQ|֛2o?#ۂU(6bK Rȫ[t̚KK*Z̦9ƍZ#N˘BF{v-sCjJý򛬮R'!)U?(Ix1+&e\hWxp 碱>eM&ٗ+;8oE/\<-zg7>ɟMTdzU +*cE9 3!C IʅTKӌVsTY7z,bVWHMΟ"PXM'yguUE5+k^ H ͎#u8?;ƍ,w=Au=7]$bot~go?Eޭ`$M `6=&G6Uշz4  F10Zl JMV*&d$DRq.{ 6PJ[mP!Mh8z]*7vJsNl.讌pQAKRP3ŋV!h 5/Ku%tf¿??q<+D` +T҂? GL]>~"; –!ކpOԷ9 z sE2h)bUrO|L7 n+ſ`{hHZe0:"'c1,s:xEfw˵OD%eQRSI'g,g7;)o2"e~e-Če$"Ä %G.:fsR6!G)yCd#QE S9ΉBqwwJv:1D|A_ d;*pÄ?уsQ0%,nBc~G?]k䝗_>~!_򦦲]g*t%yN4MljDdwgW" }9k*G*M_㭅SRSΉ£,a=`xf՞f {&B'eiAj$QQն0GEht"_S49 +d\b ˩z d1} +UDOYfRƔɳeĖ+Ϋx1\ްʻGj>&vOtY]'&Y2{ߠ2^66<>z*/H?沿| +K*:˩F`n>s}r_p,+ɮY}_QB[=]7ԹorVOnmHͲ[zQE< a@d+s/᭔O?!}߼PJ{+^P۞M?V1dXI.AŤ>as9gmݎ#TcDA~e 8xIj>am'dF !8ȤgHO,a3h Tf>diFVHtے?_)AE,jwy\ڹ~qow}aZЊ"#8S(\nGb AΓE?+( I_k@g9'`@oȋ/ҿmAN2:=ԅP!/*[hyL!nɘ'܍/,=`V k2ҋJN'mX: r#zJHlF>x396!jbc0a䨳KmBjOo,i54-ܑR1ĠƔBwUUjHUǪ+LYX&@9]g8w,Đyms +< s`Ȧ2qAMO ek<̯OMv\8X #|`ݔaM!\O4q3]wq| +LqH099\}pA?nJ (yGΗzWy080F* KΉMVg5?Da> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAVUS\OWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, "Gݘ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/PJGLCI+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 10929 +/Length3 533 +/Length 11492 +>> +stream +xePᶦqٸKl$h NЍo ;{ݹ9̽SsS~WU\QQ,nkSfY@ aO"`CG [QCG0(6;{pp"vnf@Z8B P kblh T5;1B@\T;&L h60J$4vM?p!+B,bٚm] U)GCk c!3k0+Dhjhglc;OfEi Y)= -lU,3{ WoY +9lmM,l̀*6&&P¶, r_j6ߝR@Ϭ=+glj?`+ૢ$G{B/{) +S|לYMs;$ +A}G?eѮeyB9(F"#e3&Y+.gc)ʏhQ$Ɲ4#T~,yа}oL_{x+JW\+/{K4iili$Nk"58E?gZBX`@1GLGCaj"B9aOZࣗzEaZ'mnV.?ɎhnV7F`U{ŌI8, ߛD.m@zsrXf)'Xt_8/gwԼc7>I9Apw/ҥr^RGbi^kL>$.j3cܩMLTMU̢J:G<sM?B33W=[4*ݛ4m((s.K<ZЇ;!͗ޠ8"n!P^XynX94K6#L''ucKck墽 E7Q$zJ~%ڳ3 +wOFZIOMXc' 'a=y_^Es޾ miCN".!2 wx^>ƽ8Q I҄B#YY'zQ}*H%N[ 9ݶ20*|?E\S* ڱ nWV"Cx( IwT 1+Gla*ԈӰ4jbb5!zRWXTX&uӭ ua:m}~21q*b "P5&Ca;ldCgbGySϯ?8@1C_X}=H7)?pfkӓ{d,s?DT+Epk Z/ptoHƈ`LmQ%Q}<)2a>YWdGϤ7]z|s5פ3]O\, +֑dLj` '|X;U\QʯEla +Y5#lG'nٽx)ZkmVX{DLB5 +9=f9,}6DǒB솰?ϫCTĦ\WL]Gu37(NpfJm%ko*r{,^*%G4UcKSt) S H9_]p.CO/NBI}*HqTL3ztI~ O,+R-ѼeEaUƀj>+dm \ aRum# Io5>vALf(FɚGy]uxu.d}K٪)AM1Υy#}J2(Ȥ?rWGIQ +7ù13Y`dyC.}D42"Td{4E9a>PL\透^1#= ꀻ1,v$#B̚)?&'$?쬾U8s5neָ#z nM,ʠ\@^-& ȈT7[07hEH\>π 99Ʊ!&u_NNyo[ԚD|>p`B+/+&~\K,# yJhJC8\sH<Ӣ5Rl+ʻ:A, +M;5*f*\, rGwx?3ZtiH/d֋RcqcS6ɫN)olICRCmȗ[K?,1\4I!ylVCu _!Uеvw% ӊBgKđZIR9Oe#c֢fO+OBjxD.:jJp,Q#y~%#*).V:I_1d:DMhzM~}=ôtpLCWRS 'v1CU%'5w> +.G|;o ٪hVͿN6{F&NVrhwt}LwFjᜌ\ڝFZMu}Mrmtۥ Y{zJ.l$g/ +n0Qo!L \ + GSOsP(r>Ǧ-`e=wo0|S;~U76PDX,"#e{ |@ΓlKDP11]os=\jWehn}[o{NIn:q v|8ʭŁ!9V|CwtCd+O@(ge'auᕕg&-W(rU'wD̩_L[@xz15yq OU+{[p-`Ԑ!G2{M_6ՁJ׸v\0.~f@<^VJ/w*UYd٘=~̑iX.d8`tu(:YCWmwIeϩMRHͿM=o!u4]>:k]^Pf00d2W uotFSû25\c(T~=G~Bbc;tQ42#7<˜.l3j ߬!OFFL_[U1CJVtc;t#;Qj6fbF,#3X9~,eQ`xF]Qn.jl%ݰK(ȔӋ%ʑ梍1eEŽrI ʤkBLIQ2GU@PwW`b{`x w礡|?v!bK5GR K*7I,2FeԼ01,,rժ\So1?T:NgCS2!.u֘{Sw!Lͨbkn(ng%3ݍ9Eg MꩊyQ))h즄;^eAI烪8PS$i,H(i QfW/B:ÿ9^dH^^r:{h BeVҊݾ͞Ҙf[g~ >nhMnz;4ѮgهctD + +әqs0ϋrU*bRZAoj3LG|f?lϧ 'kMNnfeՂ Pxe&N8W@&'Bq0aX[E %7Z;Y{eH¼)긏*\EVgunh?XFc0#*NwKc1:U|rHljR%eGԥrcO/n-n#1!'P#AĄF]SLf@G5p> +*2+{@}zt5U\E 6#80Jj03' &^2V*FGvRiE[ьNr_~6A}݉UW.@>qTwiMhGs?dźo;>J :iIS6gp1LGW"+٦!ޘ_4{-/􉴝d16˯0: ;ߟoIKM1Ռ7]M2yEPB <&fb.۲پq=5Df#1ȇ-xL'oH|-54I55bfa q߳OI.)x%,{JMHc` UU ĕD¶qXuFS\+ q)̀(A]-f o5$FLb? wC{L`9cEÁEe">}%8Ovm|D)t1c[CwsXHTh;=rKToļfxc5HH5~]<ݰn?@Ex> (lzK,yS7kSKP*=TOMpl U8S3Sp}Q6֞?I 0Ɛ5VX8ֽ,ޮ(9f,`JЦ祿c!j'd6V}zX~-F)tJטn7Pq1Wm0܃ 7ɷH?%_+mb9_!dABBo@L <_sdgJv-K^K %N3՜2mdc'=QA'A(R8Դ #/+?0&eՙvߌ-g_Z$5< +ht)^%NY05j0LoA^(TXqe˵Dn?F_|v{0l_G{l4vr2:>EqFz (#ᮭfh[f*LiEYZ~.&hR(w,;O* A6>gG9عȮ ^PvFF0] Q䯬&Wz> ^w^<,Zvjif_LĤ(Z(Emv3[D_ 28@F17"輑=EKLj4 `lhV |HcX|Α#A +kb 2Af= +WFq˱ƎqPd+ZH!"\6&%Sq"i3oFD?C!X<**6ү1՞6ңvlyDȬw&l6k6MCgY 'nxQv6~`N5QDh2orUNNʊ"e=CtłŤU,{R,~5S Ve4#nmhh!^ITy94TR 4'^{v`Hf= eؼwoTnz^uz%E!S_|7;kNelC$YU5G 񁱱lj;ċvTB݃P!: ^ސsEuF7Uki~$9wU}?df1)PKt!΄_ WTL䇉HȍbF%|JZC=#M!U^Y7́&0nNX+nI1=!{~gWἩBcD D&Epx(y`RqE]lPH\3E1Z&5 &Fl:P ;e 㠇|Nۛub;1E32SCѩOԪ<-wMhnw")U(H* +UHq6`m:*(s:X!?+~:۹n2]?VG U/d!>$EaQ<TyL?&cNo08 +ՠLޭ]ggCkqP&=%B5۸W7 8I`j ه"iIo"i͹b}2S8ogLJY9:N~4jRv6[Q{{E*fK'-E-UM#D d~?'?tQ@zfH~s[ &nYso"lW]s|M=Ýz~E0Ϥ~F sc]n{G;YDʄVѢ3Pm,"w_݉Lˉ7DpEbL}JgWay^b,o)RMu+׳ esI~Fb(z8ȍ3!ʀjs#BEN<e8@u5SkYn X*w&T! 00;B w~ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/FVFVNG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 3762 +/Length3 533 +/Length 4307 +>> +stream +xg8\{2LtQwFwB33c 1$:$ZB(QC%\g\۹Z_s?~~YKZR Gp2R2*, # +`P҅* B*r* + HO #KcP`y}.Bܡހ5 @`c0)HF!q-@0_8 .(ah7 is4뿡{9_GˁX cQF{ctByxȟOY"qQ#\>]K(;Z?`#D +0^=9m C<kbaI T$ed9e@QrmPH_.@*RX8 +7xjb?px ɂ$vv2gWaXT0ugƛ\^ K“"<!fגZ]xWӬbwTJW$H:WJ`r_a98L^'/{hwH앃x㕋K D*zwLRij\)P:0&6|,=p?m5%mBG V59w]*oWt|2k Rؽy~.XϜ3" X9#}/Qn< p+vkv\0gRO@= 7T:-vǮA'sS!~vsXr +#?U&5Ki)܈ct/J+Z+"qh]QOÈ4O$@|ablNMĴ&1v'. Hb>Ԗ%6ަD5aڕuHuaff}|ees qC9u埊`ǢJ3GLR0(b=9<<3)ވOS(d:2IǨrME/"O6G5Jϸ- gFk4*Ad,dضG)o.Pb}{Ysǧo-ntcu3杺G{XEe]Z5ϠMv=rjTBYGu>ֻ͚G 5Z.Fp%1+U"Bݑ|bm&ukx̭|c}_opOیH}wձx) v +#{߳ Im`-8iy* h`5llyKmsk." +mB)@('kAh +݃ވj:%g#g`&h1V֚θ0߶~<.P^(*+^MEW(OJ!#R +NERC)4L*BplV6deLz[(m'^Szzd@XFT^C ekőlwtI΍Ί,IxpPĸo.Ŗp4-Ip^5L(\˯@iI} 6+XE)~Lq^NzRE&I7%.c~v 䤏H%V\i^_/}kPE&x31fza\;-O@55je14ڵV+67 S/r xNh\ 'jKszD #a=usxYE>jȧ!짞I>?6?ȸ1%*A/^幪y-VFծslm8Z I[5*߂|]t\ݨVarʃ烢hat$dkKLka&ʘ@~tK]챤/֮%? 0Yj؉bn3Ҫ 9P8mƨMw븋f*?$69uGR[y:V.3#OMzGÙIK }DdVfV^c=SNbv+GӢj: RVCt+HvAwe9UD(1yEFȸgćMvNK%^㥊H4Y~nP2c~R <8:A+KcԨ[t͗˞Y4 {ܛsn&Ipb[U#BiMz#V/t> '&r2neDei)eD"CP*w4)]}X=!WR.2{Ukl JK&QN3Cg娳˖l1ˊ&SpUռ:ʾД*=9{=?N+jyY86%rCtZu<掔{ *Q%d|.#/ fY.HFoti fMއ(U 4וW~ʳ|y_EyY"eƂEG+Ew"F>; SֺmIe{nD?y>cV4EK͐r3ͺȺtc'Wț-? j~UGVQ!9{FQv48n+>lSlwǼja\֧_|>[pD?"^ͻL6&e&xmܭ1+b\iVu8;AT0ir%_7ˊkěTr<tyZOM^fˆ" =eCڇeqg/Ƅ +##N0{O-SLY ݘL%&NJyMRL7hXQ2rg[2#+GaN^v'1$4N;8gMOgv9wQ1U{Vc|NO{m8u'2ՏnQL1ٙ&Bsz4p ,Sow<)фyEڇ[xGEZPbiwƦ[/@LJYWBRoP:ߖ: +Jf"r̊o&#HVd]FE6 ]_g'()LhI>HQK-j._K$E^w6 teΚ=>n m'P=~{dXmbhٛ; kCv1EOt9]{+?WSыmvRLͥ9' %1·TjT:^b;Q֐qCDqik#by *)@fNa/u8NHTp.q/?髋SS]'%\/ f2>%QBlwTÝv=VB.N04Ͷ gQؑ=Qɥ+^ 1EÐxoy!#pͪY_%%!ޓ'fhRmߊjmZ9dAw hnfM"9enY#IJH:oM/h 2S2LUO_Ȭv2 .{IƔ4ĸw fIWl&I7 sS۹>Йk5 Jm'|q>rmf> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 3943 +/Length3 533 +/Length 4493 +>> +stream +xgXS[Ǒ"HtB7$@ $B]PA@P +H"E@z(M@@Д:\{y2|g9ZܦbH J%IK*44l% Iq0XϯG hV N@)$PHr8d?HG@B@^(<ǂw׹ Yh!PR`@2G~(8 ) B HuŁL#}*>\ ߤBsN$ !Q cy?9/c Q{1R༼} (<DڠaFǠX7 +3Fh +~QX@BPG_g,w,x=|ߺ"pH4 dAcp<߉RihĤ΍ 2LRV_VX-_H "|x&o}> *ܵ03f, ;~d%wQ>}>^L' XN@Xx@5iԌ.IWLeJ?1v]jnWMKVIeCɆW ֙~P6<0k{=5?2ui`y A6uEmQkee@vF9׏<$|ILZō6LSyp]^V&ӽ3q Ɲt#Sb Ĭ=MaPXH'7+3s{hjp޽aDr@Fq5CGm˪jB=WO35Nyt@~}G9A)/{j8Iw mx%p\_`"jG%NatBo~{˫4ʮ~_^GBW(釐0S낗ʢ}Y-A nq-r6NXۭLbHalzw&@Igh.QN57g-oe YɯA +GU,F'dX/ّ>2_er޴6O$Nd/.1٦=񇕟"+w~=ȅɣa0gswϹۤ0ÎfW%;S~OB-#!7křc *bFusSb1-(t~+;cϝ0qZA9W}K.1fc_*Z(Ԍn׫ BbGV5 |^s(5}w׋CLd] ͻC:қ־y]S#sr(e%*] ,|{Jj.^b֛4OvVCM\ZK<;6}̪,RjS5{0%SP9y4l6QΣuK_T r)q(I)ϓ a)JD{ChfC_3;,EU+QL#c?qu, c UAV:SB:o&YJ}Z%ogd~7%C;C5+76>g//,#m?)4u_Pu4"\e,"Wuv^~+Lo \~T1W8mT 3`:Q 76PczǓYp8gn4;bzkY}0+wI%'mƨB`};Nm9MǬ@ f2nQeovUsM*3O N@Kι\!)nc/u4-/ ^x{{yԔAm0.:]b?R-- +L >`im<'@|W5ZLؤS1Mt椡gwc̫7эM|ʎA&!Rd>WKeG j.`*p|J4!¯Hhx:Clz5#}"̓0_^z4zp>Yu R(?d?!3-xЙ'm6|"qEe;2/b"}WO Z-ɕX(-c+y&u_u/bэ=3ݾQm-g_)VND]6v+Mwy$ ]|Hͮ{@w<۠2Yg&6Fc~IФh. |r$\˹nЦ1'CW@Z77woUˊ"{YM{Eys mG$ن0b3Rr PU/LHG,W ؎n_`aGs*yp6*%KOldo~{c?WIqf=~0N|Y)jq/X-͜H%fG9M1[#5%~C2ﲤVFRvn7,KYu=nk#ǂV aU/{ڜ9>C UQrXQR $Z +p9( }]fRR׭#Ȏfr ci@If~$j:kR,?÷?L6RYyD]c]ŨLe2[ +ر“PbR{c *9%?} urm[nۮؠԁr5+SU[_w-0SExdfTwl$.0)sAOJnu,3C"򴅒9 :ۧ,f!d %`3upe!=(pBAcS?qrRw}na閑z7Eȃ, ;~T[']:<T/$]UK0&}]D0z}W]dNjPnnԕ +\ =eZcDeg.zQz( \{qd&{SFl(o. lw%SnR%Jw:ݼ̷B~eރ_^JMG9rm"BtʁuSlOT!A@C MRQ.ۛV}B#LeJ&+y,b>ўVg)Iky|W!s4GEY4XГJ%cUm*/UipYYTQjM\^pzZBʑe9qDѐP1{,dOw9p@e +A8Z4rVĉzR#=J)[^:7h:&xJc'?^E-\'K=3VtR)\|29/n|Ⱛa69e67h+:g' OyH +endstream +endobj +30 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-24 -2960 1454 772] +/FontName/HMGMRM+CMEX10 +/ItalicAngle 0 +/StemV 47 +/FontFile 29 0 R +/Flags 4 +>> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 1054 +/Length2 2507 +/Length3 534 +/Length 3203 +>> +stream +xSi<{NYǞE')YPD֘yF,g2*$$d,-r*!e)!A$99iyGS<_}_뾟-LЊɀtP(,`noB(]$e9 $BT&ÂXedvizFah,3BXT߃ne J"2{"t󋐈4`/D]h  Y@. Bd* |@_*XVeà00uduB5L2A   0@X׿sq+6F җV?תbyVa!/~x'REqRpx-";M$ys3[w-PV1:+4BaĦQv͊>Z&[jIROrAfƽP7whW5pf5C^(wl)zPyN& %j]@ĂlUc`/' ǴUx߰*]_{(|-ft觹¢l 'M2EKyNiǑSK[s餝_{5J#9r-S=XcמN[}R5xA0c:`!Et{)gK–vR?tt0-"ֺ#EpdbD@z5p{OAʺabt}ެ3}eO+eKsʼnba)N[\M}*v:h7:XԠ+ľ)J,.|.YVt}qQO"tuJC0C^\Ya؎~BpzsEF?r'Mg/L!=ǵJ۷K65Ә.Vex2'_ x8XM>ob(pf>=BE䘾7Zfs6e1~ / kSrάI:?-puYCs`LY:a"6B;i0Ꮙ\˞c[Z=%iiCKZxCyK si£rz$)ѷ 6wLTSEd'HM-WMwwfww +­O +sJ +x {C]T뺨kiVD`@IjW10ru~qBؼkmAo'ͷ"L/ {?v(-ݖ[@>ri}Ix‚vB!p'3\Z1r%D\xʪtѰP9XSN!"ceT8αGAф1kΉq3{.H甌O.ŌXYӹ766^٫7!C?i~x*e-jCr D1Yt/ 8*2i$t=SWa&7m6V]+ GsS{enxkTC-z-ɿBWd4}0U_&hM]״> @UgWn^]lhPIEiyj65QSa +qED*-=g6-38qm 9;sD=s>]gh4HN-ޠyd߮YMGTgsjaUҮ ѩ.'vqSܨDw>ޘ {?uC)}Vn5"UgpZLQUjf;jp+p4 +ո\&/Qm|nҡ)x潭+u+Ӯ +~{{'[X &C٣x}N +1{آŷKׄɛ4\BH5e6~w+m{SDS"quq]aݻ9ofkE{3wpzM +Sy䈌̫DX- # PjvXms<4N+ -~xnސӔ:D"GӔ"/4}aĤ#\h3pinF,'}]~ۑne8`.ʴϯGΝrHsJׇIԵ7J:;[yU^ 9UɤKNP)uXC7bSʺ`m^Lޝ0K? tNMv9Y_LiS8MU_gQsfe]X~qln?bޤ{;gwVܶ;lձ M!JMK@WA :%%Ť"y햌wşTֱW!f\|KFjxvp:W7Vy:JJ>9m8i'hEYa7Qq펓󹵘YK ))lt¨!7'\e,Zqu2GoAtsh[쉄@SSJjڪG+.u|kCbj~4OwoⓊI9fv !7 +h 1D? /D +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/MLMMPW+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2270 +/Length3 533 +/Length 2816 +>> +stream +xy<1$<3dd_ +%4,&cYD%˄5IYٷR5k(ZN5qU}>?}~lU~X܏DS +ek "'gB14C\GG M@DE@ r9BGL/H!0$y!8 @Z/[i +R@x`A/ ˂ x:VHrG*x?1uk]p}nN'1_o}/ϗL)h +w-h"gD"*\K M'P ޖ@y"$$ʡ:B٢ߺD_5zwJB Sϕwp~x aHx OT~: jt$項)pv yWGP@}?kO@0ABKt`"~C~ɀOyjOg]=z0$+,"U_kz5j$` qoȲS~>8z,Qs}nƻ1eJ=*uze3l×X>yT7ڋThoou#^ `?وP{$CVNrF1 .\1UmPfw:|}zc1OM -}]Qp*E83u .^ބ,ӬJC.xqfQ`[)\*EZ<{ɾ%Uml}Swv~X +/J]d]h}nY=}OթwirgU'G/kyƍ*'_mun3\2@<]Z㏵sxGpȃx1yӹ + {E_}Tlrg8q8B2[k䊆sY1q,j 84jċI┍^wx^+-q˞f1lzCc5\oh)UzdhlzwKSJkLIDY!Rֺ&eBDurVe3u7ZPGr ?lΨ{4#-ۜh!ݎt;W6U`]{yJ 2Xr!VAg8h 42AH_fEԌgO%2/[];|OTe|a>={nNb],/(Q# ,齕ԳMR$Q_r_!O?K]󅆢qhoWBFI6?-pя5Y~_ʌZLM}.v_M<7Ǒcv61CaY5KKԦ&;"8TNn]ל6Hńnw=\y8s UqyrcNt=߲?hm"Žv=#^[}Axqcs|bc{15XUc88W~Mvʵc:hs->ui~4/"'L?0= 96bhĆCBaUuR4.^s;z6b|>|ʙx.ӑmdkMb +$Yh޿.yp@7E`wVZHF>i1X؛Nr*njLLTXj%3nOkf 'i#rP2U7+Yȃ217M$6~0X]Rw 5s{ +#3^Ћ rbtʿw,֒1E=䰝dΖQF.b+K3i?ʣ +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/FGFNSJ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 3344 +/Length3 533 +/Length 3898 +>> +stream +xi8kkJUQKMi%5GSQI$VլPcW2L[sլyyj 5.ʢ{}>}}s>]51c=pHO"AMCC]pY4I84IBqDQУxBN!'*']\IM?]uǠC4G8 =<=<f~0H8,`2 'Kt%c)^lH>g\ɟR3N'9y;7\GR<<Є?hO# =8V+_p8,B{Wcԉ.8ax$ÚW3S'9OY\OW'o{֐gS"[0 6]d4&aSw* Ojʁ0F "ޛȁo( +#g'g?GaX`ŊO|vvDd.{"[$X]zIjy>~[#.QMu?j8P[ǝzGô_yF*(]Em6_E\* S0K|x:3Qr[?21HsnJKR*=wh0ɝy>Yat7BK%' 0ĈJOH _]xgٜMA=,5F b5X˘5l~eu]qt)/;@;'[ur7hU4Z<rN+f}Tw:bHLѫb"FPhϬ~z[Јp79 C!ξ{M֝J;"8F_8ur/ LƝgQ~^צٳ$_ [-8 +]J*snZveX8.A"v -r&X>ǨV8^ f@-XD+UnC#72 6j +AuCy,B*Ϟ?&r|$b#Ui}^ӢNLZdQ& ƍ +r٤4ZqeXƣ婌{GuE݌\'3ʏCtwr%c/u։l'5PP^S4cFdˎc=qKƫ]Naʓb ߣĹ %$;mc\EBn$DJõQ;RUᛙXIlY3r_ 0K|Tl3(j#o)>Z̲ lߠ_4좋h WإQYB- m8[h_HFx52)=^;Amx8R4=[`nG oF%;o -`I۷ۦ:*DȆl&:E /?Lsζ$9k'|wo2}?ߦ#Fh)9ރt;lzڒpM'/Y^ҿ">IiN}ZѷsC6Y ~hD,m[XV~;=$%ŴɖLA(P*%GZD=1kS->~^M7h/w\+#hԃi(+_D"ZB PȂj5;_c} A0>40+l׋%fEPKY|@'P; WLh仆cGҼ`7y˟}ݣmg=HڕXe/m7HRXǬrBt}*pџcu5ԋѿTv(|kџCilTU+Ԗ(̓: 5dmn=kԢE.MNp5Su՚@8ek>F5݀͞8 +En}9z}s(PpVn2̾)H#yVztFJx>T|fN7Y v_zpD5uQ a{ǎ[CI[_pA4(NGi8֊0V0UX.{~hu=jOd*9{MČV{P9w!qRͼ馹Fͷ#lxfMgxY6*I_7\*ۦޅu{H,Y>tFNo:˝]wmP]^iPb*ol(4JnϟbMn;Ha٦Uz,TJ,(o,6nvȇc'6t8_hOwh>Ħأ'1)s""CȞ4ɝ? +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/VXECUR+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 43 0 R +/Flags 4 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 1669 +/Length3 533 +/Length 2200 +>> +stream +xgXSiJ(R(C4C0@2EQ`Hp J@@Gz'"ePH)] nuZgs}|~\aLy4*FS>FpSH`B41h, :(t00Y Ǘ j|v TO`^@hDdL?؃ #$i`h4@L 0g$K7 &ѿI #85%F% Cx<P}nD&(ycJ@d?tFNW4.ZGǠ"x + +~$1 xP+ moW˒ +[QSrz5mv&%eQk:4]J?s`Fn4Uծ9Vz DހٹbX [Zpn7Qu@&nt`OZ׏'/R7,M[Gl?٩hܛ9 h3-РË0yѳ֩> +vǻ/3H\bi[ul +~Jooa1:1-5Enp`c]]vnHΈO{V@L^aDB4LV=}.Jܐ졡2+_( "V:ᠣSmR.w[xv,#zǥ!`|zRn׈K6O*U=n +o'\iAV}Fs=5Ag_;&nfrSklrHΆ**7s/+ +dR;k" jDjD+y#2v%ysxyŌȥ;T6lϬ&2 ۯdP1#v"HJ[~I㹺riN7z&?}Tl>YlՓsh/f|^vg=DW{pEk8, VIֽd20"cB(8 o6&g0ƥaE؎'@A=k+MaڝY8 +x]~i9ƨ~^uS2!pVZ> +endobj +47 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 732 +/Length3 533 +/Length 1248 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D3%=Pɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;'4ƞ5Kj_{(j35\Kw<nMXnt K>UOf&JsW~+~TzM~_7zy(cyV rS?jʕQ~qE9^G?r*|Ƿ.nEeU_>d}|4NJ(M{uL+7]^U˳fx:% N_t̔7%i {V=3%/+V{\=Sws9JJ򚸺gׯ5tټx(Yϼt_ +ר€ĢĢl..j% +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/BPCHBU+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1875 +/Length3 533 +/Length 2412 +>> +stream +xk8TǝD٢(jhfq&C2Wf3ƌSBMȌS9e"RRTvC/JK4;n_k><[z4fd Ȋ`,%,Ȧ2D6FF! @^_W ?EM]_]8$"%)]B"G& +1`F__ 1 $6p2_ &.9?Z+@h~#8L- C>m;h?HDí845&ҩtbL2bluBd*s&Ҩ$3/ X= ]XQ =M>DZMIDơmnoam~o S??jьX Ā Vd?V?mvAb _Md,??C3BAX, 938 q:TłogA?jhBzQF05V-[32؍Qɮ Ԝ{ d \u@놺<$uNlWeSeF.4\0JLgUZ2FoFx~n~>%rlL"?.'Bmlsݷ6[):*BwI)l/zKH_+/X;d5+cx+ iR)zl޿BF:lny7®sXS+5Rjo;TiLE^H?󇷕q&ׇS3L:RSo]#_N>g||!M^IDI*+hLG0Ә\K5HR@|[宬j|ޮqڱs) +\ +zVի~+TbҡWG5`"<{XQ!<\#6]zI(Y{ѥf(Y9&y Q(p7w׮@lX&.LXyd,'D3*xTJBۣbC\MhE{ GyZ <?v~821ZoQ~_̧s1dtX8E*K^d| E_ѣtO կLq&kؖ-Ξ]ʙ1-CcYV&k) P ԟԻ^)ȒWκu~C-]1rÏhBt wwf4 <'HHTQ8eBz^;7'`ZlAQ٦0%YEr+*%6J0<\evdoƞUԶ v떬d񢴠(B[!ًϟkC^-Ss z&e94,[*>Q(e̽!ӻ{Ӽ +Ӯ:9wԻ"sy<"-%4̼b؂XP稽_Ų>zd5$ҡM- +v6 '˽eN*濮k-LIou 4q3*^/l1Zѿ`7ql[JΈK6=/z(Q㕠_ϛgFi-OeĠ[AqwlLK.3Z/9w$Aى1|XRu3gQfv&ddt'yƱeTKG bT{}Evh-  "L:@҈? +endstream +endobj +54 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/VNHICW+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 53 0 R +/Flags 68 +>> +endobj +53 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1670 +>> +stream +xkTHŨY=erCn-` a ad&L&!*"8XEDVJ\Z +\RZT@)`,,@J#vY_Wgt"{.L">Nك "@:0ht:D +%p/B\R +,va2\XlDg2D% *C$ Pb(R40*XD4ǗP|<سmX)%R9=%L8ЯYg?0!${?3? 48\I!$ `Z,Qlʧ pq)zkV@>7$02Gpx.~|3 aB?>OlΪ!B4r`fjHT la80ި_}EY0K0D¿6HI39=Y@`Yo D%X ,DIN\_q~JF$DG۽ec+mG"W +w"Qmmmt'23d]=kr8_S!mݯ ;So# +k纸dI{'wFJMJ/y_#U"Cɡ+`u<-\:؛oWyvtb'ܻm6hƚ~ℕ}[_gowhYNMhM{ऋ??53e%=4b?L+/_q CUƶǦ? MI{0KF!Y&ΆejS[i`vѾvY#!DoKd[w4 > HކLmjNkO\?S Ugpyk"5V0OWG,va2U ػZnN[=֟1pwNz3KC1D&h9w$`i; /5}5[B?wWUu kNcw &$63}se5RR(1$u𽌅Kr>3P]ŝ-=џ~or.֍7^Ow{;pFےԎƔ/3w߁A)/U[38=p̑0+j.\b0ٓn8;46HOvVr?gըSkzI4.K5in^SGh_[fͯǏ*+Bw\+AOK t'fjol>Tْ}[6ڴ +o(JE~7Co%LWD7>[XحZ2c>Փ+7z1Bp+|,jržw9Lh縳<*D;hɾc"3ܰ.ͧgkUg-aAe-/}iNq?֨; #K?la+̪PN7QbaĦl_3F񶢕/*W߯z$ =7vbÎTN߭(p_ +>'UkO?{AF<V lU&:`nq'KH0")B 4ϔ +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/GHFLWX+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːD1ˆ"e̬03&)*0;J)vKH6xPLڝ<~hzH ˠ%yQBtt0Lt /ď% 0(&D fW62!"`&B$P<(QWXh@H0W,:l&"¾8 %IဘĠSH!@1 o~R [@Q:6p Ȥh@A&P!B#Vj7baH@e:H'H"ouc @twT/jqJL(GcF*D S<@' +gDrf&fչG.) +276_VL&Hg/'ɐ8%'N\2J@QRJtZ.;RfS(q +eqYQӸ9 kҙy&/Cn/(fvJM4Opdvuݻoqы{{>@`ׅp tN[P?ZlDQɀv/_d124wT!*"+7YHx53`ɹĬųVV-5Nt\ڜ*Zۮw xzV\į= u=gsR.Iw:>69%8Ϫ%74f`Yݱv)  w^'ɳvcorJwpȚ p7Og'kv=g+*gǒ<_v$\IO1qbk#oz׆y=\`\ٗ`M=!>8s0TU8R?J=ӑK^`3kaL<3a㘼nGW hdr"۰Ix(cR{/{ g&B'~&WHzɭ:պ;\ۉ+e2m HW?]rSJR]e⸢ـjtԺ̴UB^9#*/4DNVnlE^ro٘HyYh +^#>'fE\M f7Wţ 'o[xe|ĕ֪7< V1~-՗_'2!ƌqȪ @])W7lκSbΡ=!к^|Wz]?)}(h玱яo>lXu}\[ $܄kʃ[EGBepSE;T#HWwߕҚ7ÇW82ySᡶ9"$0  +M +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/WRWBVR+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 61 0 R +/Flags 4 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9772 +/Length3 533 +/Length 10326 +>> +stream +xUTᶥqu܂nCp`KnAws=~o=j5k_Ϳ&$!R`pK"Hl@N .BFH9:yXYH؃\l,*fn &f` ͋xrde,KG߿@A.$e::@%2@i7\n. Uaϰ +G{'8T/8bS73`WUdfa ps9or$`Е`}CϚq wF# +f4sWSIJ:zpX8x|\~vvU` )Hx8ٵ}-my,4UOWL*i^J#"q|nG֚}i^xL'(O|>VXK AW䮻^I~FQ5`lU؀AϏ\-EӒ8Y[uiz$eX_ +Z{D= +*AYGDb1󒙁X)H(1V:؟{9 _`r%tgpc;\^dսe$վ uSCB hJYi_=H}7]-V η86i_-C:Ep5ӫ"E>pD)mӒ]k?lU!Nf6'[ K^F 3_7Āi13$qG)vq5|ƆH<. WFP\'- k GuP>>-HtF?L{9dK`}C ޶mFBNJL(@Lڠ(rT~7ʊDvv*jmCl#F8 +.֠"B`H\&|=n䛥بN|.˝7fm8KLuF( XyWא-a}%ߤ{0_΄oolk6qN*D"mʨ.b\׉ʸd[H}^= 'R9-3/\*Y^)tU-|{0 +[bɣD<Γ!)SX {VASAwmy-,7ͧVTWMpl ,Nl'u/ÒL1)RօeՋ.6:یPo. &lēmb +ؔ.INQP;t_4TJ1 Wxp5Sс9\@a 2l+%s91KfrXќA-Y6v?zُ^MDžCv\">ⲋ$NrGǚEZQ:͓މA\-:ٲ 4=ybZ3\$ +Zni RF*df'p+ݥa_3dx46T#3PlR[!sK\8'ϝj&;4xSFV|5uZ?%KJZHI+{K=gyfV2ŝ'44B*SeLT| i7Α@CƆM4Dlw Rs2< ]< +Qf/lny{C`aB&wEbM aŧx-F|.#Sҹ7 , E˭UGlCE?r!|;P’2; 7ٸh@s1^&?gғTv#S?T +$&GnT+䡱馃IS 5y"?!pB y(ÖJrOqю#BN))Q7$Uġ@lf}f6z +v5^|xuuJ1%o%Tr]`\Q{ͩo-9 EEP$J>@`}?Ȭ-7wo8ye@ˇ<=$W/0_jhG=7'||t{r_MsB' 4WM}F] UNp"9&|VTN bKCtW _Pbc +!n^,֯ (/vO}MH?uXVToXDOM9h!#Z9U@:vxMcA{lr^DjDoxv.ful@!X?(.ЂDD꽸~┻{q5]Yb'pLh_E6ٌ4&~fw٥dl*A㣿5tg#m/·!)4Ѩ +'M87W~#>Y\¤I+gⱙ~Jڟ!ε=$/\'k#ߟ?DPK?b˪ћDRE_h_ЄjK&Z:(H)q9("؂O2,Kϳ[ 8LZv?O~θTuBr1/]zS,{ގs+}Q'ϣ5̨jt% F+n E9Mlqi֘!mB{nmF5+챛Jgn}# :`*Vǯ"e->ȒKO@ÑL(.^1 +vœ\$ȰOtUŋiXĿڌa)ӛs}/re YbG FzolqZWJ}UY'ԁN>#?箜 \.lώtcln/6#궆(*[3#TK0AYڛqK_Z.oJ#*RFOzݼ1cPmuQ2T*um^p/;s}3V kUFeK#TL_4dXʅ]iFկPbBW brm61V9I>m>@ã⦱V97m߃ QErSFWo>c܉&OeҖK}1lmY1$-clgapnu>5d[  +E7+wݺ{-M#ܮͮ>9ye|CHB1 "?G6{"EC$Hd>c=[PK3RNGW[4k1Jʎ6M +-b̖8='{!>EGuc;<Ҋ> iq3hk,9)KEZ ~6.iCҷ¾)S\{*Kuqx[д˯6n=sx؄\antĶ&&6B$2\_y_g?@L: 3̛P,%4b{J_DBt]-05~DWc4F4Ekil_C.Xm V7XE:AOM|O8N5b'Yl HߨBN gC]MW*'iF,unbIylCa:hi #pf=|"/\e(Px &X%=8TxƔČy%RA# %UWJ +XYw,ЬyޭD/{#%Ӯg|sa8a26mHU3o#U= YqMĢc?Y7_뎃7H;mz&5 w`JG;?q7k23*0[ 'w~ʏ揅3vd?kmYH"p~ުL?`f? Wpz46_FY8$h^SR |)22R⣚%!aś2"R~ns, +kfJ0wJw3'.܌zqpٳ -X#U +QޥpkŚ\ghFDώ!VSзsn'4iZK ҿoy2c2"ė(+ GD,5n삚COV*םH zWcĪ#(J}̴N+1N*2[ɐP&Gow +1\ψy9HdcPGes{״ZYu%*AXwUXIDXqu2~,}n _!Wq_qF +2**y5LcWO +底$5ZP ) +SR run- +tH/ ='!7*l& ^ߞa M vD/Ȱo:쇁y ; p=)IjN%,1d!߬d@[e 묪—:+Пt pKcpcMj8_)8TRD3OjCQ|LD2_`N5 Xf@oVм8[̍V[OWAM]W5aݤ0-x|z}I8}y=z| yX*RNV[aJEoCk]`(A RnlNh"?-c8ZwyX2[neӵo(%ڒ]UsccΘis{Bzvy5:ч'S\ ӪzCBrZ/[khKV=(mJ=eѩeЏmceu.̘AlIq)ѹaZ8:qJH6ǬrҐ O +_G^`Ef%~;S)ҝ[ms{N~;XlLՋTd]`ALs'$6.Fu cbC^TSz ܨۊX$$Yn% Oɪ;=qs2*Bk0(J\qlb4"瑛G-^fYLRd/|d͉^= Aoik$D[JZRLR9R_1(N_ɥ66؜rm +g8@\ 3[JgK`yNc:,ЄiBcQdDeghtD)ԼE l(%ۏ*(V~rG Ƅ!qPDoIOx:Hϛ&΋2Mrw]k5_}l^ wO&3*7{J$E:f;vd?AZNᓰ` d$|O.s #RFސK`TLvq_AS.yJ˂ ڔ'։sA:_Yp,apͥj{Z  %Mw=I@F cJXEU.}PWPplV'ɤ)_PΦMɑڝ&-Lõ;o윜b7 Y#,j ї[ Z⯣lURcZwie<' +Rv[!pYIDlT>~ٿޞ H2"V}LEh榮+8{7PpqAu%E79qJ +!o!-|I}512{Pm?Qc'2ddN1>GjR6`g|=k~$'JӮ{RrRFQI&ұC|ct#Y0wc\]Ow<@QƷE*[߰KM%h]Ht79EۏUW]iج \3!s.Žpe%-V7c)i}d?;; *":`⯉;kJv?4zP>9[κe[JWn}BZƵV77ࣛ"h04z1M_}$WۨL +B'n!NN"I]R^D{DyP(}u(y 2яt?nb>z0-ɓNUg;OF+ $EXToLgeeP"ֳ49X6. +s̗!c밵Yh;ʌ;7GYke HN;8Cx[O>ս;pF 4&^ /uo;}!o8jVM3,< +F;,%UٳyEsz)Al3d{zXUE'kA)8Q.>OYB>c3 vLSضy/ <[^\uթA]#Z: IUbԉ얷E?d +W=akTֻ&֪YԘ.^݇/ȵ#)ԗNȾarM:u:i3Hxe&Í/ςX1YWD4Fx!7{~bdhjbeH/;!t:e<&a>4$^XԄoŽ%RTczwMq*5OALۃJirc';V1ǖ8ҏ]=Y&eDb4Qx ͵} - =$s aΕ+f -"JwA IWb\)Ha#1!b=UQ6O.+\/5rDVH,Y,%6ի5S=*z%`Oq("qIįH]od2~@<o|/$*@Gx'KuL1}=ʚ<c%Ac(V>j߽}Ԑו:i[/3zL}*moKϙ~v$XhfS<(|%-,)~Z&VL`?\~MlA,_dO0Cc +ڶ3/sY\$~ڗ y"'Uv~/ +g?҃P=#cojSEs_3 "XNqs$V ^ mK:xɇL]Pw +2DHv&'  *E.jXKuljn +#y҃o*ŽpJyMH2cqua;T{Mdvojѳ-6W90Ll)|u ʔ]a\X|H4܌*m|pQ#.djDſ5_eh WNJs>t*J6 1|5XE'NZ +'写4+-m47*SI\1% DKc!P›qCg~F7<Q%:JdDK {hoP069GHn' UV1n5{~*s^etg}ZyB<{,DFM7oa0S  Su72T#{ʯfk4~ 4H 5O]5%X̺K"bCk SHqɤw3^ YD""F$}ܔwh<G}1,(gX? kX|ReG0B#(IF:r-iO(k//b3V/Nϔaۘw`)I!0դcrG '1.#߀_l`qRi/w>UŃ`cqW ^[_aLdU7Cw1"m$[ wwK7Uu&m m?a`9ڛ!#f +endstream +endobj +229 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/UFNAAU+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 228 0 R +/Flags 68 +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq)[ANP.A{p 4@pNsoK~{sEO. vȹ8A@@ZU[ 9!0% " +>'::=@jk0I3H:Aܡ֖UK9b |#@W<Z DG`5 `:slK{qx0=s2).Ύ0Cy53뿡{NPG8\\=aw w>/8U"j-l yrPX +X:z@!࿃<O ]95II]ؿPg+/5_ܡ>cN ''|o:[ζm3¿SIIqعx7_P7O _PO s3<?k 5,"(9%E+։EÂb ԅLJT+✺6R%_^ݣׄa} (nod4<x Alʾq=OLI ϑx2:t)_mGWZ!yU+9c ID&q^CZO0gbrY prO-|GM΀ܫNAXh7jr&v"i8?"M24d$_mOuZ3lsx%wUe: +氢8k\z$Y'ny|g ~WOlHW1)8 j}dRGvfjĝx'=M)~A&n#Xݻ&$(\{ BSpdHRp\IkF]JԐYfA~|KuӠ{Ki֗ ,(_08)A  +VF8#D?=DmD'_:_)cS&6R7/R(+K;4L?pe(ͦCp#|. ~]&is;fOΏ;7da-]~:C O)N5x48udM[/D p"MҮ=j|*="t5ȟ ~4OQ1a(􎞠-6nDl2SU|lޞRX21H<&ak]ݿAkjaHZ<݉%HW#*J m.'v$ Ա!Q/:^3k<pCw{6̊3"ư`Q}0|A\RfCXF 푴J*%-|=XR(5[$u:I[lZ6} ܁d,àJ2;\ebiŎyNEq a~ klPjZZ{~7mߺqٟv7aFe2utbǒ[# ~mZ_'S}Xi꟒Ń4eV\Z%zuۍ";(1}{g-Xq˹ ޏC#O-^B&Qrjx+m05Ew tx<8Et1~c:X㤔-^Pg;F߰NtUJQ4& `K]KFdmɞ,ҡ}O'C iӉfhMˠM|&LYa5&EW2 HE ǯZ *Һt + -hh\ĵ.ޔ dvچoL'(PylWl'`#u|g,/㚵5M9g>#q^4"~RX34f Lv,U& 6 F9M쥄6yjj'y@5rя毳%lg{נs}5y>Ј 'WJ/7hgm[ߣ󌫅֠2xnl2BEnS@[-SB8-vPzW>3WKU2#iFNbb +(O :W&YTy+ &7>ЉRv~~>k$R-fL7^!"C0EsiK[Ap+tfR4/c,u\،\0/U6`k :׃4 <B>F9E?mTuw(PM)6$sJxfN;uUQy܋"҂Nj'jX[ׂ4Aqꋴ:-ŊR7޳kaoi#g:/Baw|,S+] +WG8LEFM< `Mدc9PDGS6o0ߗ_ rR,Xe4Dz{rȌy]дeHs<޷Vi gI..| Dߐ2 ݗ2$%+z*Ƙ|HrJhE^135܊(YZYW4Dž;|d8R + l0 "K5#'P>8#x 7hޟ!P,KCcE +gvNRj͍_&` 85@X0x2Fm,W1C^ծG(U.#>OA(zb~)fٱgw[g-:kbp~d_0~+ƳD3KbDo/ˆj6kWw>X~;[_C nN6FMo#tc_O䢮2}^LpktJ$̻+_:Pn(#iع#GO6SM~ Q\\cݩUmhCt^P +~u]}A8f~lYE{jE,l2N`#=3jFL:Ӣ]߫ o:+. 2Ԉ?^G.0E Q27p֪[+1V=h\0_ӌsi.wc;İ^KP qz2sńmm%CaLDF'oY]eVrjyPgISU +7%N| )bDl$ Ja&(z'K^pxQ!ҬyvS"ZgW4 qyD– +ZϢN,{ď’ *MK4|MĻZ2.:eïa5 +UfS[J#6GJi'I룧P[f$#BUlmQò:tL-@mpaO:Q/@zdhcc +q~ + ;P]4#NOTŒdW?f87qњTla0FK:b~/.mRj=xX9$JM>G 4g.:Pl4eSUn׊g#ǯ7(mP0Sua!avu`G}ʧn_2%NH wEX,n^ T+hvJh\n9KLUuHO_|dGLёiz# ).Ы2M3p#öd+{|I~4"!:/_l]ش>NS }9\mo($ߵ!ǡf<8<~s4-nL ,핟leiI=9Y/xvBsb%E_pz}b-4# K=>ZrR5 T0e`ur;kiO' =eIG#|;Jf΂MŸN@F=mR* o|!x[NQ8I{8(Yl7 ~+  %RBG- +ף >w&x\Pj-, +9~Ԯb\Cb993"S3ѥ5~9f \.h5!9(Ջaiw)P'_Rc:aʊЁYi[ b@#KQu`MG+7!~B<:*6/ Wz8x !MIKQ)vu:vd_4=kiǷdM5ߘ؉7qp5H_:ͩa G V0[? > +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 36 0 R 19 0 R] +/Parent 234 0 R +>> +endobj +234 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 233 0 R +>> +endobj +38 0 obj +<< +/Type/Page +/Resources 39 0 R +/Contents[17 0 R 4 0 R 64 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +66 0 obj +<< +/Type/Page +/Resources 67 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 235 0 R +>> +endobj +235 0 obj +<< +/Type/Pages +/Count 3 +/Kids[38 0 R 66 0 R 70 0 R] +/Parent 233 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 236 0 R +>> +endobj +236 0 obj +<< +/Type/Pages +/Count 3 +/Kids[74 0 R 78 0 R 82 0 R] +/Parent 233 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 237 0 R +>> +endobj +237 0 obj +<< +/Type/Pages +/Count 3 +/Kids[86 0 R 90 0 R 94 0 R] +/Parent 233 0 R +>> +endobj +233 0 obj +<< +/Type/Pages +/Count 11 +/Kids[234 0 R 235 0 R 236 0 R 237 0 R] +/Parent 3 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 239 0 R +>> +endobj +239 0 obj +<< +/Type/Pages +/Count 2 +/Kids[98 0 R 102 0 R] +/Parent 238 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 240 0 R +>> +endobj +240 0 obj +<< +/Type/Pages +/Count 3 +/Kids[106 0 R 110 0 R 114 0 R] +/Parent 238 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 241 0 R +>> +endobj +241 0 obj +<< +/Type/Pages +/Count 3 +/Kids[118 0 R 122 0 R 126 0 R] +/Parent 238 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 242 0 R +>> +endobj +242 0 obj +<< +/Type/Pages +/Count 3 +/Kids[130 0 R 134 0 R 138 0 R] +/Parent 238 0 R +>> +endobj +238 0 obj +<< +/Type/Pages +/Count 11 +/Kids[239 0 R 240 0 R 241 0 R 242 0 R] +/Parent 3 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 244 0 R +>> +endobj +244 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 243 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 245 0 R +>> +endobj +245 0 obj +<< +/Type/Pages +/Count 3 +/Kids[150 0 R 154 0 R 158 0 R] +/Parent 243 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 246 0 R +>> +endobj +246 0 obj +<< +/Type/Pages +/Count 3 +/Kids[162 0 R 166 0 R 170 0 R] +/Parent 243 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 247 0 R +>> +endobj +247 0 obj +<< +/Type/Pages +/Count 3 +/Kids[174 0 R 178 0 R 182 0 R] +/Parent 243 0 R +>> +endobj +243 0 obj +<< +/Type/Pages +/Count 11 +/Kids[244 0 R 245 0 R 246 0 R 247 0 R] +/Parent 3 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 249 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 249 0 R +>> +endobj +249 0 obj +<< +/Type/Pages +/Count 2 +/Kids[186 0 R 190 0 R] +/Parent 248 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 250 0 R +>> +endobj +250 0 obj +<< +/Type/Pages +/Count 3 +/Kids[194 0 R 198 0 R 202 0 R] +/Parent 248 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 251 0 R +>> +endobj +251 0 obj +<< +/Type/Pages +/Count 3 +/Kids[206 0 R 210 0 R 214 0 R] +/Parent 248 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 231 0 R 19 0 R] +/Parent 252 0 R +>> +endobj +252 0 obj +<< +/Type/Pages +/Count 3 +/Kids[218 0 R 222 0 R 226 0 R] +/Parent 248 0 R +>> +endobj +248 0 obj +<< +/Type/Pages +/Count 11 +/Kids[249 0 R 250 0 R 251 0 R 252 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 44 +/Kids[233 0 R 238 0 R 243 0 R 248 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +253 0 obj +<< +>> +endobj +254 0 obj +null +endobj +255 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 253 0 R +/Threads 254 0 R +/Names 255 0 R +>> +endobj +xref +0 256 +0000000000 65535 f +0000125555 00000 n +0000132592 00000 n +0000132237 00000 n +0000132442 00000 n +0000125719 00000 n +0000004047 00000 n +0000000009 00000 n +0000055767 00000 n +0000055583 00000 n +0000000913 00000 n +0000060518 00000 n +0000060332 00000 n +0000001906 00000 n +0000065757 00000 n +0000065569 00000 n +0000002823 00000 n +0000132342 00000 n +0000003740 00000 n +0000132392 00000 n +0000003992 00000 n +0000125822 00000 n +0000009614 00000 n +0000077554 00000 n +0000077365 00000 n +0000004108 00000 n +0000082165 00000 n +0000081975 00000 n +0000005054 00000 n +0000086961 00000 n +0000086772 00000 n +0000005990 00000 n +0000006966 00000 n +0000090473 00000 n +0000090279 00000 n +0000007920 00000 n +0000008866 00000 n +0000009537 00000 n +0000126007 00000 n +0000021336 00000 n +0000093597 00000 n +0000093403 00000 n +0000009676 00000 n +0000097795 00000 n +0000097609 00000 n +0000010646 00000 n +0000011610 00000 n +0000100303 00000 n +0000100109 00000 n +0000013226 00000 n +0000101855 00000 n +0000101664 00000 n +0000014236 00000 n +0000104576 00000 n +0000104381 00000 n +0000015231 00000 n +0000016183 00000 n +0000106555 00000 n +0000106360 00000 n +0000017090 00000 n +0000018072 00000 n +0000109212 00000 n +0000109026 00000 n +0000019049 00000 n +0000019794 00000 n +0000021177 00000 n +0000126112 00000 n +0000022087 00000 n +0000021398 00000 n +0000022042 00000 n +0000126217 00000 n +0000022836 00000 n +0000022149 00000 n +0000022791 00000 n +0000126410 00000 n +0000023642 00000 n +0000022898 00000 n +0000023597 00000 n +0000126515 00000 n +0000024059 00000 n +0000023704 00000 n +0000024014 00000 n +0000126620 00000 n +0000025395 00000 n +0000024121 00000 n +0000025271 00000 n +0000126813 00000 n +0000026251 00000 n +0000025457 00000 n +0000026206 00000 n +0000126918 00000 n +0000027033 00000 n +0000026313 00000 n +0000026988 00000 n +0000127023 00000 n +0000027933 00000 n +0000027095 00000 n +0000027888 00000 n +0000127314 00000 n +0000028763 00000 n +0000027995 00000 n +0000028717 00000 n +0000127420 00000 n +0000029474 00000 n +0000028826 00000 n +0000029428 00000 n +0000127610 00000 n +0000030879 00000 n +0000029538 00000 n +0000030743 00000 n +0000127718 00000 n +0000031639 00000 n +0000030943 00000 n +0000031593 00000 n +0000127826 00000 n +0000032475 00000 n +0000031703 00000 n +0000032429 00000 n +0000128025 00000 n +0000033036 00000 n +0000032539 00000 n +0000032990 00000 n +0000128133 00000 n +0000034010 00000 n +0000033100 00000 n +0000033940 00000 n +0000128241 00000 n +0000034802 00000 n +0000034074 00000 n +0000034756 00000 n +0000128440 00000 n +0000035641 00000 n +0000034866 00000 n +0000035595 00000 n +0000128548 00000 n +0000036136 00000 n +0000035705 00000 n +0000036090 00000 n +0000128656 00000 n +0000037108 00000 n +0000036200 00000 n +0000037038 00000 n +0000128953 00000 n +0000037987 00000 n +0000037172 00000 n +0000037917 00000 n +0000129061 00000 n +0000038879 00000 n +0000038051 00000 n +0000038809 00000 n +0000129252 00000 n +0000039277 00000 n +0000038943 00000 n +0000039231 00000 n +0000129360 00000 n +0000040229 00000 n +0000039341 00000 n +0000040159 00000 n +0000129468 00000 n +0000041065 00000 n +0000040293 00000 n +0000041019 00000 n +0000129667 00000 n +0000041923 00000 n +0000041129 00000 n +0000041877 00000 n +0000129775 00000 n +0000042758 00000 n +0000041987 00000 n +0000042712 00000 n +0000129883 00000 n +0000043591 00000 n +0000042822 00000 n +0000043545 00000 n +0000130082 00000 n +0000044416 00000 n +0000043655 00000 n +0000044370 00000 n +0000130190 00000 n +0000045226 00000 n +0000044480 00000 n +0000045180 00000 n +0000130298 00000 n +0000045746 00000 n +0000045290 00000 n +0000045700 00000 n +0000130595 00000 n +0000047078 00000 n +0000045810 00000 n +0000046953 00000 n +0000130703 00000 n +0000047834 00000 n +0000047142 00000 n +0000047788 00000 n +0000130894 00000 n +0000048640 00000 n +0000047898 00000 n +0000048594 00000 n +0000131002 00000 n +0000049390 00000 n +0000048704 00000 n +0000049344 00000 n +0000131110 00000 n +0000050173 00000 n +0000049454 00000 n +0000050127 00000 n +0000131309 00000 n +0000050944 00000 n +0000050237 00000 n +0000050898 00000 n +0000131417 00000 n +0000051747 00000 n +0000051008 00000 n +0000051701 00000 n +0000131525 00000 n +0000052340 00000 n +0000051811 00000 n +0000052294 00000 n +0000131724 00000 n +0000053670 00000 n +0000052404 00000 n +0000053545 00000 n +0000131832 00000 n +0000054135 00000 n +0000053734 00000 n +0000054089 00000 n +0000131940 00000 n +0000055519 00000 n +0000119848 00000 n +0000119653 00000 n +0000054199 00000 n +0000055122 00000 n +0000055461 00000 n +0000127216 00000 n +0000125927 00000 n +0000126322 00000 n +0000126725 00000 n +0000127128 00000 n +0000128855 00000 n +0000127528 00000 n +0000127934 00000 n +0000128349 00000 n +0000128764 00000 n +0000130497 00000 n +0000129169 00000 n +0000129576 00000 n +0000129991 00000 n +0000130406 00000 n +0000132139 00000 n +0000130811 00000 n +0000131218 00000 n +0000131633 00000 n +0000132048 00000 n +0000132524 00000 n +0000132547 00000 n +0000132569 00000 n +trailer +<< +/Size 256 +/Root 2 0 R +/Info 1 0 R +>> +startxref +132690 +%%EOF diff --git a/src/axiom-website/CATS/schaum6.input.pamphlet b/src/axiom-website/CATS/schaum6.input.pamphlet new file mode 100644 index 0000000..ca2c6aa --- /dev/null +++ b/src/axiom-website/CATS/schaum6.input.pamphlet @@ -0,0 +1,886 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum6.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.125~~~~~$\displaystyle\int{\frac{dx}{x^2+a^2}}$} +$$\int{\frac{1}{x^2+a^2}}=\frac{1}{a}\tan^{-1}\frac{x}{a}$$ +<<*>>= +)spool schaum6.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(x^2+a^2),x) +--R +--R +--R x +--R atan(-) +--R a +--R (1) ------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=(1/a)*atan(x/a) +--R +--R x +--R atan(-) +--R a +--R (2) ------- +--R a +--R Type: Expression Integer +--E + +--S 3 14:125 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.126~~~~~$\displaystyle\int{\frac{x~dx}{x^2+a^2}}$} +$$\int{\frac{x}{x^2+a^2}}=\frac{1}{2}\ln(x^2+a^2)$$ +<<*>>= +)clear all + +--S 4 +aa:=integrate(x/(x^2+a^2),x) +--R +--R +--R 2 2 +--R log(x + a ) +--R (1) ------------ +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 5 +bb:=(1/2)*log(x^2+a^2) +--R +--R 2 2 +--R log(x + a ) +--R (2) ------------ +--R 2 +--R Type: Expression Integer +--E + +--S 6 14:126 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.127~~~~~$\displaystyle\int{\frac{x^2~dx}{x^2+a^2}}$} +$$\int{\frac{x^2}{x^2+a^2}}=x-a\tan^{-1}\frac{x}{a}$$ +<<*>>= +)clear all + +--S 7 +aa:=integrate(x^2/(x^2+a^2),x) +--R +--R +--R x +--R (1) - a atan(-) + x +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 8 +bb:=x-a*atan(x/a) +--R +--R x +--R (2) - a atan(-) + x +--R a +--R Type: Expression Integer +--E + +--S 9 14:127 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.128~~~~~$\displaystyle\int{\frac{x^3~dx}{x^2+a^2}}$} +$$\int{\frac{x^3}{x^2+a^2}}=\frac{x^2}{2}-\frac{a^2}{2}\ln(x^2+a^2)$$ + +<<*>>= +)clear all + +--S 10 +aa:=integrate(x^3/(x^2+a^2),x) +--R +--R +--R 2 2 2 2 +--R - a log(x + a ) + x +--R (1) --------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 11 +bb:=x^2/2-a^2/2*log(x^2+a^2) +--R +--R 2 2 2 2 +--R - a log(x + a ) + x +--R (2) --------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 12 14:128 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.129~~~~~$\displaystyle\int{\frac{dx}{x(x^2+a^2)}}$} +$$\int{\frac{1}{x(x^2+a^2)}}= +\frac{1}{2a^2}\ln\left(\frac{x^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(1/(x*(x^2+a^2)),x) +--R +--R +--R 2 2 +--R - log(x + a ) + 2log(x) +--R (1) ------------------------ +--R 2 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=1/(2*a^2)*log(x^2/(x^2+a^2)) +--R +--R 2 +--R x +--R log(-------) +--R 2 2 +--R x + a +--R (2) ------------ +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R - log(x + a ) + 2log(x) - log(-------) +--R 2 2 +--R x + a +--R (3) --------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 16 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 17 +dd:=divlog cc +--R +--R 2 +--R - log(x ) + 2log(x) +--R (5) ------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 18 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 19 14:129 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.130~~~~~$\displaystyle\int{\frac{dx}{x^2(x^2+a^2)}}$} +$$\int{\frac{1}{x^2(x^2+a^2)}}= +-\frac{1}{a^2x}-\frac{1}{a^3}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 20 +aa:=integrate(1/(x^2*(x^2+a^2)),x) +--R +--R +--R x +--R - x atan(-) - a +--R a +--R (1) --------------- +--R 3 +--R a x +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=-1/(a^2*x)-1/a^3*atan(x/a) +--R +--R x +--R - x atan(-) - a +--R a +--R (2) --------------- +--R 3 +--R a x +--R Type: Expression Integer +--E + +--S 22 14:130 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.131~~~~~$\displaystyle\int{\frac{dx}{x^3(x^2+a^2)}}$} +$$\int{\frac{1}{x^3(x^2+a^2)}}= +-\frac{1}{2a^2x^2}-\frac{1}{2a^4}\ln\left(\frac{x^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 23 +aa:=integrate(1/(x^3*(x^2+a^2)),x) +--R +--R +--R 2 2 2 2 2 +--R x log(x + a ) - 2x log(x) - a +--R (1) ------------------------------- +--R 4 2 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 24 +bb:=-1/(2*a^2*x^2)-1/(2*a^4)*log(x^2/(x^2+a^2)) +--R +--R 2 +--R 2 x 2 +--R - x log(-------) - a +--R 2 2 +--R x + a +--R (2) --------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 25 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R log(x + a ) - 2log(x) + log(-------) +--R 2 2 +--R x + a +--R (3) ------------------------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 26 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 27 +dd:=divlog cc +--R +--R 2 +--R log(x ) - 2log(x) +--R (5) ----------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 28 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 29 14:131 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.132~~~~~$\displaystyle\int{\frac{dx}{(x^2+a^2)^2}}$} +$$\int{\frac{1}{(x^2+a^2)^2}}= +\frac{x}{2a^2(x^2+a^2)}+\frac{1}{2a^3}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 30 +aa:=integrate(1/((x^2+a^2)^2),x) +--R +--R +--R 2 2 x +--R (x + a )atan(-) + a x +--R a +--R (1) ---------------------- +--R 3 2 5 +--R 2a x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 31 +bb:=x/(2*a^2*(x^2+a^2))+1/(2*a^3)*atan(x/a) +--R +--R 2 2 x +--R (x + a )atan(-) + a x +--R a +--R (2) ---------------------- +--R 3 2 5 +--R 2a x + 2a +--R Type: Expression Integer +--E + +--S 32 14:132 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.133~~~~~$\displaystyle\int{\frac{x~dx}{(x^2+a^2)^2}}$} +$$\int{\frac{x}{(x^2+a^2)^2}}= +\frac{-1}{2(x^2+a^2)} +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(x/((x^2+a^2)^2),x) +--R +--R +--R 1 +--R (1) - --------- +--R 2 2 +--R 2x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=-1/(2*(x^2+a^2)) +--R +--R 1 +--R (2) - --------- +--R 2 2 +--R 2x + 2a +--R Type: Fraction Polynomial Integer +--E + +--S 35 14:133 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.134~~~~~$\displaystyle\int{\frac{x^2dx}{(x^2+a^2)^2}}$} +$$\int{\frac{x^2}{(x^2+a^2)^2}}= +\frac{-x}{2(x^2+a^2)}+\frac{1}{2a}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(x^2/((x^2+a^2)^2),x) +--R +--R +--R 2 2 x +--R (x + a )atan(-) - a x +--R a +--R (1) ---------------------- +--R 2 3 +--R 2a x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=-x/(2*(x^2+a^2))+1/(2*a)*atan(x/a) +--R +--R 2 2 x +--R (x + a )atan(-) - a x +--R a +--R (2) ---------------------- +--R 2 3 +--R 2a x + 2a +--R Type: Expression Integer +--E + +--S 38 14:134 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.135~~~~~$\displaystyle\int{\frac{x^3dx}{(x^2+a^2)^2}}$} +$$\int{\frac{x^3}{(x^2+a^2)^2}}= +\frac{a^2}{2(x^2+a^2)}+\frac{1}{2}\ln(x^2+a^2) +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(x^3/((x^2+a^2)^2),x) +--R +--R +--R 2 2 2 2 2 +--R (x + a )log(x + a ) + a +--R (1) -------------------------- +--R 2 2 +--R 2x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=a^2/(2*(x^2+a^2))+1/2*log(x^2+a^2) +--R +--R 2 2 2 2 2 +--R (x + a )log(x + a ) + a +--R (2) -------------------------- +--R 2 2 +--R 2x + 2a +--R Type: Expression Integer +--E + +--S 41 14:135 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.136~~~~~$\displaystyle\int{\frac{dx}{x(x^2+a^2)^2}}$} +$$\int{\frac{1}{x(x^2+a^2)^2}}= +\frac{1}{2a^2(x^2+a^2)}+\frac{1}{2a^4}\ln\left(\frac{x^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 42 +aa:=integrate(1/(x*(x^2+a^2)^2),x) +--R +--R +--R 2 2 2 2 2 2 2 +--R (- x - a )log(x + a ) + (2x + 2a )log(x) + a +--R (1) ------------------------------------------------ +--R 4 2 6 +--R 2a x + 2a +--R Type: Union(Expression Integer,...) +--E + +--S 43 +bb:=1/(2*a^2*(x^2+a^2))+1/(2*a^4)*log(x^2/(x^2+a^2)) +--R +--R 2 +--R 2 2 x 2 +--R (x + a )log(-------) + a +--R 2 2 +--R x + a +--R (2) -------------------------- +--R 4 2 6 +--R 2a x + 2a +--R Type: Expression Integer +--E + +--S 44 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R - log(x + a ) + 2log(x) - log(-------) +--R 2 2 +--R x + a +--R (3) --------------------------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 45 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 46 +dd:=divlog cc +--R +--R 2 +--R - log(x ) + 2log(x) +--R (5) ------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 47 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 48 14:136 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.137~~~~~$\displaystyle\int{\frac{dx}{x^2(x^2+a^2)^2}}$} +$$\int{\frac{1}{x^2(x^2+a^2)^2}}= +-\frac{1}{a^4x}-\frac{x}{2a^4(x^2+a^2)}-\frac{3}{2a^5}\tan^{-1}\frac{x}{a} +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(1/(x^2*(x^2+a^2)^2),x) +--R +--R 3 2 x 2 3 +--R (- 3x - 3a x)atan(-) - 3a x - 2a +--R a +--R (1) ----------------------------------- +--R 5 3 7 +--R 2a x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb:=-1/(a^4*x)-x/(2*a^4*(x^2+a^2))-3/(2*a^5)*atan(x/a) +--R +--R 3 2 x 2 3 +--R (- 3x - 3a x)atan(-) - 3a x - 2a +--R a +--R (2) ----------------------------------- +--R 5 3 7 +--R 2a x + 2a x +--R Type: Expression Integer +--E + +--S 51 14:137 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.138~~~~~$\displaystyle\int{\frac{dx}{x^3(x^2+a^2)^2}}$} +$$\int{\frac{1}{x^3(x^2+a^2)^2}}= +-\frac{1}{2a^4x^2}-\frac{1}{2a^4(x^2+a^2)}- +\frac{1}{a^6}\ln\left(\frac{x^2}{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 52 +aa:=integrate(1/(x^3*(x^2+a^2)^2),x) +--R +--R +--R 4 2 2 2 2 4 2 2 2 2 4 +--R (2x + 2a x )log(x + a ) + (- 4x - 4a x )log(x) - 2a x - a +--R (1) -------------------------------------------------------------- +--R 6 4 8 2 +--R 2a x + 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 53 +bb:=-1/(2*a^4*x^2)-1/(2*a^4*(x^2+a^2))-1/a^6*log(x^2/(x^2+a^2)) +--R +--R 2 +--R 4 2 2 x 2 2 4 +--R (- 2x - 2a x )log(-------) - 2a x - a +--R 2 2 +--R x + a +--R (2) ---------------------------------------- +--R 6 4 8 2 +--R 2a x + 2a x +--R Type: Expression Integer +--E + +--S 54 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R log(x + a ) - 2log(x) + log(-------) +--R 2 2 +--R x + a +--R (3) ------------------------------------- +--R 6 +--R a +--R Type: Expression Integer +--E + +--S 55 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 56 +dd:=divlog cc +--R +--R 2 +--R log(x ) - 2log(x) +--R (5) ----------------- +--R 6 +--R a +--R Type: Expression Integer +--E + +--S 57 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 58 14:138 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.139~~~~~$\displaystyle\int{\frac{dx}{(x^2+a^2)^n}}$} +$$\int{\frac{1}{(x^2+a^2)^n}}= +\frac{x}{2(n-1)a^2(x^2+a^2)^{n-1}}+\frac{2n-3}{(2n-2)a^2} +\int{\frac{1}{(x^2+a^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 59 14:139 Axiom cannot do this integral +aa:=integrate(1/((x^2+a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------- d%L +--R ++ 2 2 n +--I (a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.140~~~~~$\displaystyle\int{\frac{x~dx}{(x^2+a^2)^n}}$} +$$\int{\frac{x}{(x^2+a^2)^n}}= +\frac{-1}{2(n-1)(x^2+a^2)^{n-1}} +$$ +<<*>>= +)clear all + +--S 60 +aa:=integrate(x/((x^2+a^2)^n),x) +--R +--R +--R 2 2 +--R - x - a +--R (1) ------------------------ +--R 2 2 +--R n log(x + a ) +--R (2n - 2)%e +--R Type: Union(Expression Integer,...) +--E + +--S 61 +bb:=-1/(2*(n-1)*(x^2+a^2)^(n-1)) +--R +--R 1 +--R (2) - ---------------------- +--R 2 2 n - 1 +--R (2n - 2)(x + a ) +--R Type: Expression Integer +--E + +--S 62 +cc:=aa-bb +--R +--R 2 2 +--R n log(x + a ) 2 2 2 2 n - 1 +--R %e + (- x - a )(x + a ) +--R (3) -------------------------------------------- +--R 2 2 +--R 2 2 n - 1 n log(x + a ) +--R (2n - 2)(x + a ) %e +--R Type: Expression Integer +--E + +--S 63 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 64 +dd:=explog cc +--R +--R 2 2 n 2 2 2 2 n - 1 +--R (x + a ) + (- x - a )(x + a ) +--R (5) -------------------------------------- +--R 2 2 n - 1 2 2 n +--R (2n - 2)(x + a ) (x + a ) +--R Type: Expression Integer +--E + +--S 65 14:140 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.141~~~~~$\displaystyle\int{\frac{dx}{x(x^2+a^2)^n}}$} +$$\int{\frac{1}{x(x^2+a^2)^n}}= +\frac{1}{2(n-1)a^2(x^2+a^2)^{n-1}}+\frac{1}{a^2} +\int{\frac{1}{x(x^2+a^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 66 14:141 Axiom cannot do this integral +aa:=integrate(1/(x*(x^2+a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ 2 2 n +--I %L (a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.142~~~~~$\displaystyle\int{\frac{x^mdx}{(x^2+a^2)^n}}$} +$$\int{\frac{x^m}{(x^2+a^2)^n}}= +\int{\frac{x^{m-2}}{(x^2+a^2)^{n-1}}} - +a^2\int{\frac{x^{m-2}}{(x^2+a^2)^n}} +$$ +<<*>>= +)clear all + +--S 67 14:142 Axiom cannot do this integral +aa:=integrate(x^m/((x^2+a^2)^n),x) +--R +--R +--R x m +--I ++ %L +--I (1) | ----------- d%L +--R ++ 2 2 n +--I (a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.143~~~~~$\displaystyle\int{\frac{dx}{x^m(x^2+a^2)^n}}$} +$$\int{\frac{1}{x^m(x^2+a^2)^n}}= +\frac{1}{a^2}\int{\frac{1}{x^m(x^2+a^2)^{n-1}}}- +\frac{1}{a^2}\int{\frac{1}{x^{m-2}(x^2+a^2)^n}} +$$ +<<*>>= +)clear all + +--S 68 14:143 Axiom cannot do this integral +aa:=integrate(1/(x^m*(x^2+a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ m 2 2 n +--I %L (a + %L ) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p64 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum6.input.pdf b/src/axiom-website/CATS/schaum6.input.pdf new file mode 100644 index 0000000..0309298 --- /dev/null +++ b/src/axiom-website/CATS/schaum6.input.pdf @@ -0,0 +1,2336 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/ZADFFY+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/RYAEJS+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/PJGLCI+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 180 +>> +stream +x%0 EwC"Q7$AHȆ*K :d˺\Aci`<2A X,ꨖAѿĐ5|M^3aYL&g2lG5{#]߄2Jf/S)*VƄBM 8by8Jm\76 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/FVFVNG+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/AKKKLG+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/HMGMRM+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/MLMMPW+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/FGFNSJ+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +41 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 40 0 R +/BaseFont/VXECUR+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +42 0 obj +<< +/Filter[/FlateDecode] +/Length 870 +>> +stream +xn1<3BSqUe#K2'BH,㥧t{HQvJ[rum`_ 8vBؿټyeR_kIڑ@vs/HhU`%wP1}j죿FQh-W;o;Cw] jCܗy.c)s-Znܽ^{K>G& E(Bїv|H%PK=iyݱII1׶icDErѪZT5RխWUPVD=i=PP?I(F9s4442vhAKh4|ݣQ 5 i8ӐFXMuZћHG-Ic:UBN$dQf@RA섳Eg#Drne "Q bi|cɗT|]66޻1T&#x2 fI8`z3Š>$֓4dNK*Vsrⓙu$kSbmɁs=֍f10g}udm+d(M?s=}Z)$aĭ=t3P(EÝHr"/Ri +endstream +endobj +43 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F3 16 0 R +/F9 41 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 43 0 R +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 446 +>> +stream +xŔ=O1 w~Vn'NˆX BY')4T!k +W5+ B,D.$[32HF-OH\qW\M)'l6%'1d-yR n\ewQ,h[3zjcKX@/'y5~JH?} I?,KBy/ bVzL rX1k$I'.\C5}sB[pi-nv[M"PӜǴn^G9Gf{9p#87ut\2mMgݴ. jw )5;7=pCw-Ӧp磹$fKbӯ?KE7~ZA֎4;61mX;E_.xdt sa~ +endstream +endobj +47 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 41 0 R +>> +endobj +45 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +52 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 51 0 R +/BaseFont/IUDUGQ+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +53 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +56 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/BPCHBU+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +59 0 obj +<< +/Encoding 53 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/VNHICW+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/GHFLWX+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/WRWBVR+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 720 +>> +stream +x͕n0} +$ER|hѤhsi8Q;\,)hE4͈" K2#|nႥLe*`"#)Ea*\/IrKk¹b".7RX f飀?6ͤie?S[#';6}oIPD%]$4G"͓r@7F=;P4,WVYf4y`҆pW@AZHMb9g:CJ"P]$}EK!?*7J +V 1# @tjR5iuMNvP&ߌp!n7c%x ܔi2y,p^A 9~[6"/%[;r&GeۙYT.lWoe:X=?2.J 9HJo)[3WU9ۚ,">(.#U]} JrS6x{a$Y,"z.`Levu3L#_TGryݭkLl!۟-r{;u[}d2Y/<ڮ?O + ?4Cyv{5݅7czf۲N#cdr7 t/uS#½'k +endstream +endobj +69 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 683 +>> +stream +xUKO@W1&x3tZXK1HNpCPj;P^)oc!AJ0k"8#RGQ"]Քlr529"̆DZ6|( H5de>9Hoŝ eAy#.n (UU Am(Tfx.C* +Yaz;ARch Z OMti"l0C#\7 4qsÖ,L/q8b\=uGoF4]hv#Arw +/;;3XLgLcªD&wZ_6ik9O(rY.ϻǚ&޼߯ծ,( A#jdž_o4 טּMJ +endstream +endobj +73 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 691 +>> +stream +xڭUn0+xr-.ŗZ4)c^' UK=iΣٙYfda}r&r9dZQ`OL q9,&}iE ZU[~"atꔲNgx o3+v:#9̈́C0H3P1lkvN:$+A*4,hd4 D+* {'`,dKA h+L3!Aa+D.YGmC/.>DIccĢz4I}EոW hΝ&#әQm+V9eZ$Modѱg0 " *pr-Djq ZXQpDt!a*I~dx\m0^|7&0G۫:OoS1ueKFdc6~2]m*Iywp/pްȭ呠PF%DPi:FhaLUG*!fKfI}'a[<>w%Qlaû!b2-?c&G_eyyl5\ʥ "j|y=66LJru׬lbsLŋꁃs0ʁ o!GjKt X +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 752 +>> +stream +xVMs0W!էNN{l!1%!$clhr}~"̤-X\>flY0`=hzp3,@߿|^Z̆' +Ē)d ^`ƸYJ٦U8yfƨ[ww]L ~1P8$R*+ݯY%yuucSk^X(Dr26r-Z@=$M)]J8b`fY`͘j%29%A'i6F8(kvU7mథ ք&Vǡ}<o(<>Df ,_k4M$w`0*NI#TL`kݢIۘmMlTjע|i^Ard.[B߲&#kL}Tè0xY RpyFU +K.㺦Dc;7}n W莌ܳ!W) +r|4^_&)o8o<5}&7Ŵ.]xUZV F9H"q-wMP[!&»>GeȣtzO(Q^>ob):mRs!Dvl6]Cy>K"l2-6<5Ӱ?ulG%(n^ϥt~||(hw1ygWJ*RyɄ 0&M\S +endstream +endobj +81 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 820 +>> +stream +xڽVMo@W쑏z؝FR5cC/ɤ4DID"*2xfμvmƁsv{7\*&Hߙ`5+,lzfJYfirioB &|MgXiAV()6䰋9/& $F hҎ4HAWt|a:Цh˄۱eꝎy+@KLnQcuR𡳉sShw:rgDPVj3,4jaHhQ\X6j:{X,7˲I9؎{a9|oZ_qjҡ@ynB +=uA&9єKj'^뻘R4UhZ& et%DU=QD`i9M~Y?> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 424 +>> +stream +xڵTQO0~Wm׵=h7d$0Poۊ^zzk(Ec]nu3%J^bbH%7Apr:$Y.'w#c.{%}ObM>qS32@D +x=кZxﷲj8ۛ)ũ*C,6 ( rjV/\ӊwfUL`KΎruN1YT,Y43Jy9p.%&8:U40ڧ8J&7>ҏ6iqg;l\͘(Q-~$ɩ88bTt~@{Nxm`/9]HN +endstream +endobj +89 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 803 +>> +stream +xVn0+x曔Z4)c^%쨉'Eտ!S4P>X;3CRBPn|B3$B1 +aÉTh"#WAtt2=('v)"!{`4 +FXH},[c. Qp nchow4QZw8$hVq^N"ăjSV2)7/ +`DP0i3r6_?W7*26-Ũqebz7mXrJ3#X?EGd(8bTA@&8eq?Tc5 @~VOOp?; !_Ӷnr9c$7ྼh=-1Nd:8cl7ر^qp}m)tn뇻8v.j6/K\3ANP{Q)<?h<6݋ +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 927 +>> +stream +xڭWMo7WB3KQ;Hzi6֎P wHj- >ZqqޛYI!%{`iy~߮o4-f̂pqBU|P(>n\XD1 ")=`Ƶ9!-UCƭ޲Z)t{<y!8<")*oc_2ڀz1B,1zdZf 9aP kZpԢ?D"c +T @_׫%J<"\ *,}IZhߩҟwخ!Ы!rZO(ўV "ٿj=]RlOQXRibj%tӇ:z 78pqKu`+$γ`dƕs#_‚Vo6cZwewMkCHMH0on%lQ|BHgAϴ1խiܪ=_t2;6LV6HM +ө8}j±RֶV]ޖ٣ywg'$݁87Qu{1fs}W/`]/j㪹ź7v\K]"jV:ƛHF +>[<3HJ\ V$cٌHGqf*B@ݶL$j?69/Oy}_2!.oqGG% Y~s+ʺH^VsGpbϙ xjf?y?$M /(3顂tuhk8~s4n?ol$#\0%Nj:3چք[ʉt׎CH = r>o({Bgo} +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 420 +>> +stream +xڵT]o0}߯cVl @Ö=*osKP:fhP^ +ԙe<D-JQ#} ޑddnIE/ApqG_Kt]-sZMJUyE1/{%m/!xqtHEfFXoG8GCX/QrjS U-ބM) ̕.agQBR/VnjI?6BV;xtr +o J;d-$AҀd^r+Dx&N ^w&+;#FnGåtTn> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 843 +>> +stream +xVMo0 W73+R>a첺4k ivG#rC"|$ RQ-Ai1. Dj t&.F.I)]儭PQr9||fo ](#H5 6tihS'$Rq/(jKq^Iup+|4 6BVe}6i[^pAuBMU 7!zbKIʽYHp):|(`U#]{ n6J IG S&=q18ͳ밂n1Ei܏պEq @ G*.Z=la`,cݑ[L[ܥ5$S??;&L?_EOI=uaHf7cPTsjf nX֥~ DM|V 0j:+}E$n1Tɻ!CKo_Ǻm.-  d-wiG^K!^w!8OO>X=;':fAG.d͹ʓ#qռDt(V֑bA,I\oO ǻ9Y/C&IQ]mx@w,cf`͟Hռ^}|0 +endstream +endobj +105 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F11 56 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 731 +>> +stream +x͖Ko0 :MZG6,f-^ "0OC$%OGJI I.ȇٹ LdH*%T!,>^E&a]멵b׋/g0ҹ0@p'!woN 'T&eLmL|aaA!RdK0ϼyސ*]tR΢a$Im +!v]>/A RkPQa|>5yXXOD4&Z.?*Ac `{@;emhXk"(iZ:q ҆n'յ9Fs_=]{gu`; +bG`7Ϟ+B:9^:>}=}(tˢJ6/@ABqq2p ꒡Rc~0֔?W"?4bTLlʂK?OK7ٹt=wȢ,ۨI~Y쾧G⏃Cԝ6,Ulf֐|ib-[wY4/㣽ßp +}:͚a 2 Ooc9`cCzj~ow:P$6:i&B5xnͲ7~[bj.oGȓ1 Jth^( ۰% +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 856 +>> +stream +xVMo0+|tH HiYJm˿g87]@B*U73=a`W,=^I JGf%8ø %[>;IQq)IwW- l\C`"5i6@HϸІlc84S1|H钺C!*[Q얡vĢUWP=ۙ2q^bC3 9l` +r HcAHDG&έ:UHt[ E)~[Q=cJ,XjsKhwr UڿރV_h$)\W"1k)qy@.~:x?сՐIQ9Q#Άq3:{6롹˺˾ݸA 9O($e E2PcQ1,ȭ&?92RAmO9H[J&Lb|}6Mt 'Fn{ͪYWЭ$Z@0p~N*E4뻇պyXճ{!s3NU5SJCP;Yy&#fw=)A}[Ὰ/E35^vep~ := 7mbq7<*PWsƚ:jU7vb #bQF〟j/G\ԋ1.?5_o3wO6ןoz\4 CdUϸؒY D4MQ +endstream +endobj +113 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 804 +>> +stream +xVMo1WȆ@ʡU=6l"-$H"wl,R"!fmB G~6T ;3 d,5ه@`6)̒ɥf;k(3P-&h`q,UŔ}L5βc>@ƕaipŌvOBp㈶d[Zp[=nU%VV55'*1[+Xo0C8}xiN5ۂϓ.@h,#K38nM4Se24ؖ2͝Kh$x8z e4XOT4 +44+Nj?UDpZ]0цF}ZM}=\o(|~ Te vy59. #;a͆0z#X٬8FSff- њR労X/i ~<_~Q:^52`sp ΋,z_&coYA̖uwVWh1Ve\4ɣMʓfY4l7"pw!!MbP*Pr+^h+'ȏ8.n1O챃4Ҟ&LO@)gԨ+<+!O6` @f(w>=!#;GLjv)Dhi9_֏]vg?yF] |zNS#Yd > +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 955 +>> +stream +xڽWn7}WQke).F}i6֮P P;h{k5A əÙ9C .gamťbn5-rͻ`U^[2i_7׆51އv& @ lYx-> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 425 +>> +stream +xڵTMS0+r jJL:GMt҈ha{K;68K6AԣMvEI +Pii➖(y : |M!K[ XLg931E1GƼ p !Jf@6|MXNϣD1(~6Z)R:LjGXl21*) rjVϮ\YkŻ*f%gGe:Di,E,AKn%M +n{gp lN"wRJ*a -77 t3>[ތ>y9p.%R&8:U40ڧ8L k|_!3\6)ifL(e?TW?*}zߙT^=^,Fo +endstream +endobj +125 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 928 +>> +stream +xW[o0~Wik+ĆMF&muCqΥ!Tj}Sԗr~PL*B`Vj)Mo&BTГ#q@3!mq|??03o2B)*`F&`CC8gjs\>_C9`0U$[(yGdq͔ 0dM Y0zh—>}PcHDQMhisBH˴3.Qk$Rp$#OۑF0 {aF̖s.Pm緄 2L]'aegCUװw;$4er2Z} 3ɬ# ->@CTT|X:٫)cwj Rݧ֔:ڧ`ڻ @G5֎62pcR–[Wfʁ;l GވR7Z%qA! +V*hd.4"Mq6"i/Tv@h߶yU]MA5LWWuS8րD.SzgN&\]ܭ7z5դ:i;+O`U*JKA|tPPiBw\$h5D75oxED%J Z=7APV#pvun]ƘНZfm-xU +v+?Y^D7_Uշ@z16~4:.hPyH)f\id[bW$f~GbY&g3SU%ZDEn>ǛWf|^3-ʒ7^6dS4jO/9y +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 1051 +>> +stream +xڽWn7}WQ,E!)/E}lFvU׀Nr/\%RcĀM̙=ji&5Wd(5a/^RY&[~CCVnƐߣ9? ֳwf`5<[ʳurW0縓jS;FI]T4Cڅ4jb* q z5|9Wv>~T] +iE(R!=w.U,7bRpOv)<*%pT;۩kroc49<'5ڛu{(lf)!F.^+W 8g㫬.E>uZX ԹAC&hD&'kӄ47-uVT +E䡛k .pdЪIuj44.p=O4뾔:eM̶#fp:/Ѕ< : r(hhܕۛ/Ǘq|P[55oW,&MH@L%+ê-"yIzb'M2Ypk uVqȜ~QqoSLb6`4֣_%K)isԄq?3} z<ᜏ6ոDۛ"HVAAs"}yU,6=5rH0LnTZR&S;H-ظke'[JoR2Z.pʇ?HalK5.MH)$9'hD3UMYL L̪+(~w mo&ljx'MZ6q*YK&@"ks +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 419 +>> +stream +xڵTQO0~WSB[ AfqiF$,l; \]AԢ~GaYD+RR -%Px W.wp~.`zd)ҍ>"cWJۖW`c4 NBONpԟNz^4>VVm4gz68j12`;BR/VjvX+<yѣ=9"J3]Yb?ig6k.x"][t8-x5Y9Z,4F]{8xu4>KZ6:ITUpִ@qdl3p<{54.ɖ6ϵ>Mk?Q-$SUqJpĎ΄\ele9>r^|K} +endstream +endobj +137 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 816 +>> +stream +xVKk1WRd 94))=5M :8ߑi(;o>͌DrsrG|I$I?f`TdrTFjtɮ&Ƅˮ4qഷA)(BGQ[A*EۍW!SD!O#T[<a r`_c`9p\aTR<7Q*hL'Q܉`AV{2X{f;,j `Ojsʌq\ox}Xn"LXY?rt{Z4 .I^m;uz=6YDȬ+ d@FReCa[M|;Sg^l ]ۻ d[N[Z.;7+:iӣEv*|E.)R25nR~3_>MYUu.㺾?ݼZVe +B(I-]ϊ;.6|\^c\WEv'طuH1T8gThbPXk&+muo싄ϻ)P՛U{k} +ͣ6kNʜҍg/bty\͞p?{g#Mv2}R!"6!g̛? +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 868 +>> +stream +xVMo8e).'⇁\q^Z5iW-uEJ%+EfLuWfRl b"m^+)X5I-_PCQ%oc#,zȸS%W*>C*~0g8p}f wuG3Twu1_mH wQ5mE^ + SjD +KJ~ׄF&/nճ:etKLiOۅ:&iᄡuqzKy?LA \RY]t=![Rjaqt0tT(2 Aj/Oޜ2ZGf-uMGf}4tN':W&ʹ><;'> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1090 +>> +stream +xWKo7Wb`eyiCE[4 ik V jcߏѡʜo3`B3r/=(BXS+D?Fuwx^,wy]OiT\NY:ŒhO_A18q0iHTxt3#&TjU>nz1f!|aE9nOڇ?Ǜr;!Sd'a)wgY,=^g*iC(qtl\1v$]Q}5~#D @kg~xiV QZ 5 l>; +bF6UFrө!*T~>߂=1'b>_wq`yOZ*dI +̅x+}17XygI0'`SA$HO@I + E}U[A '5(pl#uCPk50cY'.jiwEb8[S{G'f=h`E[y2D|ևz +\3 xnu|E71|2ivKG†  K8P)q" K#8ôJNDjn 堂!4 qǕ|ޅvk+Mh&]"ە' /zX4bhzxZI5ؔ7Q*||5OA@iNUӡT0ߟ +TxC`zUCc=f_1 ˪4rBc9Fh|,s. |e ƒ(fp +yk54OiviŹ0X;%!_ŗÇ +u@aYr}sjyPѪO Em-l˳cvN5;kYQN;; MMloвl J:ktv9k87##< Wnr1?8^F8[d8P &ƈH4X{1ƺf$$tS螣E-_{ +endstream +endobj +149 0 obj +<< +/F14 67 0 R +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F8 38 0 R +/F9 41 0 R +/F12 59 0 R +/F11 56 0 R +/F13 63 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 1147 +>> +stream +xWn9W2: +9` t hM"@aOj[ /bUaH9xW K  &ގ+(Bw+Q}\\d&mu+,XOl x\^{ 0fLJ\M0E#xq Yi_W1QET8GhT ,wCƂd'806\m{{ich.s_ݒ؛U5e\܃s9p XDp"'MgO$ .%x,1gGPEEF͹A JxDԀ58ve35mbkA:Sݏ'{wF%hՉH!ynU-M7πy5rcq>ہl:YUZ"k.cHk~Bfdhp~1T.x9 S씾JTpuHv^jK4}ol}6!LOջY9^//Qxz-zU ]KJ_jk52J2dM ,;.|6G9VFU8QQ٪`D8x1 pvq)?|]W]mong cU**4JWkOrU!W&2ڧ6%Ce,)ۤuaѽ*<5$R1Eܟ+R1T'R &\K\YWvowT(4 T]?ʹVea055x_iY#?1w \`!cuXA :EdY+O +#܊>Fk@̍Ńe1J9 ZS82xC-i)sIMۘ%*B'bn,N%~!ߙIu٥9*;JJ]~+/ZtV7=¹q OVJwq~?nj׹j!KYln b#VY&P*x5u,I +endstream +endobj +153 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F10 52 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F9 41 0 R +/F8 38 0 R +/F11 56 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +158 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 157 0 R +/BaseFont/UFNAAU+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +159 0 obj +<< +/Filter[/FlateDecode] +/Length 264 +>> +stream +xePn +V +cVU*žE9'V_0n/0̲;0\a<<RBYtI儎*;shehMV@N_:OI*Za08٢ȏ4 +O3Ntʸ87/S3:`r<`2;3jPl+' *R꘶*>Olt*qUb/oܺ*R]BɄ5IZ>Tc +endstream +endobj +160 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 158 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 160 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/ZADFFY+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3868 +/Length3 533 +/Length 4419 +>> +stream +xgXS뚆A bBQ0*Ez/! :I@z"U@z4)"7b=5̟\?}g=kX|@"Cdʺ)DLǧF°(O)HKC>NQ0")#vOFTF99c]REw$ytaXge0򄣐Xa@ ` A}a**@ʃJ7'@/ϖ/_r +.)nґJDr7%뿡{w9[rz"h[͐"(w507\ %0j(?$07 O;DTTQSJjBa(׿b!Y_X`ȥroz=('恀JI/PHL $*HKĥTH`)i?U\#r:HN"El' :sj+ΐ8c0CF&<8?Mk~ALmCU,wGZdpB WD:!YՃ$mɮj5B *KPtr["8^3Pa {e% Q`s=!K2[OLG.2rL9鑠aƏٛWfY!ᕈ>Fq\h{ܟ.ef.M]'<93IݤxJ>!U5Ofp_KѸ<$/ KEyI' Zm6%Z1_t= tĥ.5FC[ݮR}x[KAl-[S$B_ө6Y9re^07`i-ެL;T[P@+Y2giBatt±Wq"PA 8$&0gHa31SЈ^׾wpaLW;C4μ:\,R,NB#G!*m7 ?egLgo5m~H4Zb!@w RAu`q'ΉPq %µJ1b'D3ʸn2aB HW;:m( r6 r:؟U5Ѿ.ųhoa %/Rj_g;J1>=gH}&Uq]?<"^`aeyPbٶ:(uS4M‰[nP6Y_U_E_q'Tr'ON +dר)d'isIm!jRlw XZG)>;QC)bB}al責_fhma@)^>kcZɶ-F<2ghƸ={Za]wbz~DNUSU-7E휠qޞ5GLw2:nA/)Ƶa8Je(Bg.\g +:V LTfo{Au:"zW:N ZzJkY;pUGC,/u888hm]#pw5mg^YyQeyz=l}1{ H^ OlI_/K=j Tyrk}9z"ߗ )猟|0܋S ٜ&(Ќ6'[QPڑ@ +x*&~2.b_TUl-jE0{m?kڵ1 h5 i\s^Nь-kaWT]V}/8 )~0΂@c+FާdAg/U, n[QMu-M7EKWyTuxjZ&Z=g[uJVhȐSut1b;,5/:$J̕yMٿ~} @9̴(d(@*BX™-f nӸ- + "f!^#oJr.r=֚[ۭ9ֵt۫9wcEnaגfDzC + +N,Rغ +wAkZy: 5vѾE8Gza >ya1R/z]}/+2F{ HlT۪01u[r$ԯTWLAReH|,t(#qgO!FU!fgB4?] cisBߘ7iʩZHzTH ^g]zbWMЯtg./_f[<{ѣFjG7ޣ 31bbɋ['yxY7)oLf[0w3oCm Į[ 4)3Jr9e'UP“vd +̀hȍ|I PcdU۝’4~_b wpy#> C||+ޓ&oԕVyu} #{V⋆çpL̴qQ~&d6g_{ܳ%ڇvϞp3JJITe 嫨cc/?wfv$*!4RbWWqոӇIګk-aE[WL|NeZj&Z* /#aƶ(Tk}>,ҐKQ|Z:pe ߑ\K3@-pj桙Z D{+YpLį95:>b#z?xKYnD 9vDtb"Ve" őB懳tVJ!ыh@ _U,^>Yn.$*/JxL~>N`)C Sa2#Q$ݷrSZc ҂?=?(cm'0~zǞ}Ex<`Y79hNHɘ3[Y1UXMOZ +Ⱌ6x"{]׻Ҽ㜧1 Zj.K$Vk5؁ +k7"~>a(}dZu(,ՉOii*p9h.?X5;:00VCA_ +~#:fw//_͛apb$ߺPʮNv۷={^8YEEa7ݯ"3Fzo_tRt3ZrZ+S;1 A޼UAꬼaK=aG%%OUfoNuSl@ԁ1os!^Vjs#3;`7[y%%+` `s<ۛٴk]R7P +{y"8hYl}%EsQ)hYvy)o 1b7Upjg1ݜ-x|p<.Wd[RM\y2fv-4݆*;oH2CmwTrd:nv-2Uf66nٸ;f$#9KVg+ˋOݐ04v,' +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/RYAEJS+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{@DJ +DЋ H&" + Khǽ33sy]K\LvAhbRR@LJ c0," HKR7!2r aX@H]-@ A¼C;ѮH'(`?  Gb;$ g+~S(G$пOCfc7TG`^1kü(^>X0D["Hwu0U$~Z u`(?ğ:wsAVUS\OWZ|Z? {IqIIo;L GzX7Kw(55tP, &}C +nݐ >Ko?BW!))yK^OAxc ~t +(; y:1^릏&ⵌ{̃7hPwbyLҒ~$q+UBSp8v4[_."(6XgG.ѶHlt-DI?/a? 3'؉靬Y_l&i꧊:UQyYqUҌa^2N-U,#Fju+(Eþr_'_YM|v269~i2ؒ+"wHI#oIYXf!z˘6k$gM){!qW8}^}ή9/k#jImJE3$",:ۀqd,AImt>14F|S'1'ԛD3&ݪO`A-_c|T;wԒ1WY.]S9o/rjvQ}9ơ7<,cƽO$̪*0C {d#KDbTv9e}t0Z6ۺ@ڵNqH7g +^Sp$)QRp+/3(雵0Om7^{4&.U'T"/rsZK8njo>UBi}/,Ut]SV;2p& ]ا8n~ǝגZEo\ғfϞk*)LZEDX?Jb&b8cPnL>cn!]l(~R`fms:Py.9=ҧwWD?.-[zyj*r2d$BjI/~o2u64ZU]ד6Dmr + ^r{$nFIjRJF +Dr 2%EG- 2aAXp#'\{ED;AWz+cofŷ>67x؛{cJ +;42Iݚ&XtՕ]@(YPq{`넛G.5lMÏ0m]#! ڋ~l6(jW*ڒXZ8ATy/%:ak6N~ ?:;ƾIZ:::n,>2Z?)@Hɉ㍼ֽ/A}[˖{:($!˲Pg璟#Je9 utDe:a%/Mr=dxa%Y٤ѻԑ>L58N?r].h|R$aG:<4_ŏ\MuM+Ub5N3ljTk or[Fg-I^4ߠ@G!ݕtiS7VC+7唃q -yܤݶ{7_d=a U./0uEmCϨtu<-Gǐg*!3OlvU|W&A[gpП8~9Sxd`lq|'8fxހ$x6hxj+UxÞ!n2<{sCz*r[T +@Ty~-Mbz_? W_)(9hUh/'y^DEc0I3# |-uODi+ +嬢;᳞>^\J(cJCSgD[k̹T{O]M`s*1aC8,"ju]erU{;`diL_y)յÓXG4mh^ +@N8RDa`|*,~d9ј(o$"u5LD2c 8Ea^?+ARC0tg=}¢t}!ڨOaG r_SWs^qN] +S43ukY>: jI;EֺJZ 9QF}T5/~u)[0 *<]3xHH]Ai)#_G O +3 :=+eΘ-_F?\F{A^UAYbZ 6 " Rw%Orݒo-÷!65-Thy$[S .'؟#y!Q"}ۢZd-*uf. !ZU0ux)콱 \澐#:.mRzN eRׂJ ΂Sʬ=6ngk2P/K{W!)WLk l S < |ʆ 2x!<^GAnLD3E-;}7>sšq!Q S$^ZD\(ֶ([|Ye+kp[+âd-2BKʁg|)xkY ~ԎW}7VsUJjeM\9@>YN~_F|#v 8ҥ!,~%|?*/?I2!B\ <`dyźc:~0p?GZae+Dp~]kǁLeu_p1s1u5!2NTOnA˩pPnXG}U,Yg/ M(]}mwU.SYtمz_zDKnW8: /#|@t菮ɼ%PKWs^A W^Lg1 +(13.+@]0,fRG@vHLʮʊbm-%U`+DҌVI: vmx\VFl9-@-o8AYá ]ؕ~U<`SZ}вLp/{Y7;1K;?6%RW:햪VI~,Y]ET}x2:%w9¼aP#~ 3sgT4+hab@%DfԬUzƟV:9(m-7G&ƅuAz.=rؖ;9Y 6oI/pE!`, "Gݘ +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/PJGLCI+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 8955 +/Length3 533 +/Length 9509 +>> +stream +xeT\݂44 8k&hڸww<[p'rf}e|5:_*zj5Mv))D-QpspqI8B@Ζv g[X 1;d=-X8dHB-@P2b dд38{pR66Ѐ8A]!`44nn` +b E 4?KG\2r60Sz4`7sQoeڻ8Cv`#ߥ:)C.^UpXIA@\JY:YCjfsy;ON5ŏJ2 +:@PgCϘh m1Y AJw(ii;w;?7= {J- DKPY3GG736b槩t´LEd\0\ %b~9z)e˫fPb͋uWQ= m,f[Xa}$>B]Rz)9 ]<٤##فuMɣ\ڨJG(I;w]Ti*M80vetp%54H]N(qI + YǴ{a|Y;<ŋS܆j v:k%+zO{/EJKgmQ{ziDᄇHn6E'-َ=B8,|/t#k_ ˛X9<(tS@hl#+m\yJ*:4I $iMU{%4:6a\ez 2_3/fL2 mq d֔#&g#'˳[?Bi$+!1,{Щ8 2I 1~JBE3W̌r7|_ykqPr|0 O!(pT0KoBmˬ%a\^mhWt#.gvG`T mرs[;{m>\РXLU"M(RlVФsmЉe'eFiɗC#4福˴?yKqcLˑ/Wxɱ88M@x8T)fΏR5kF:Zt{Yt~CO{lQʆ;ShT8vq+ʽ#%^*yQ?BI#! c^UtI.ڡYvRț= +fDQ r2?OQ_A )<HG69['Fd.As.X3d^у rm=7j1чP>PSE]Ҕ+lq=J5e էܦ!.q9"[kg?~Fh{>{^rz]^Lfs[:t-K,v"mlp<>ij:c~y`1qnǻ (:tjy$j;U&'lF5bm}IpwgkKsTS1~=Q[7:yg)UpQ3r馮ɲeƂ],7 +7Ch7`ysc3U #u.(OdֳoeoS'%> +R%K C$O_|j=<_]Ѡ1qQj+'IDrvg߰Sr9Iݼ %p4 "/ph s7KA_>5!ߊ,ԋ/{6f +eȚW-mgxewNe,=lREݚ=YDp rw|~c*)w6kCn) +kN_y}Y)**=Us_B#?{LX-c,q5z~PfRe iþ|`%HmVaj_4vR $53DbKcG}ZlI!hbZo-WXB쎈j=)* +LDvHu>4x(05@'Ǭ"<mZۣ"'YkV ZyST݌XvDoœV-L(4klٖWMGhuo͊gA)0^ȿ6I6(llazNN%fqL]>Z'|9S :!]m^~P#Q%an ֙̔s`ߐ4yƔ.uIz| +Y#k9z˶bwdlh]o =|>}^vj&8 rɴsy飁#m~K ϹpBS@&}gA ='lυ6QՇ(Si5 GK`0XD0RBiC{NH( +'Ф2Dsҧ g Pq +%`֟%';QF" Un eϺ8sdk(,.2sʇ{KlV2Md5UeҬ[l (E_cCF؜%!GaޱX'$F}0_+akٷ?}}cg{xgYzg`͞WD 4MVxaѦ~Eng6R$0#U8F$JƩQi֓~#Jݸv_ltlf:}*NjuM%/yW8W=CgĦ(aV9ҫ5?#Siׯ6:5m\hmƿS񢴶 +& M{1Hd;ped|ɏ& +vp1 *F)o>q n .`LYιS Oj\&~9Bn=, ҈K;H;{/7(8<>Qs~%Toy<;qr`#-N657ԫx'vkzl]sz:Lɾ#S-^D|tӾi9܈{S)U[e2 A$:zbы@n2Z۳%%{ c&;膗9Hp%My!|èfV>΍d/x:>`"1,clg1Y紸cTd^*>*B`nG]+/_-sKƈ%;>̥]RSo4_6c|R[i)(|i[5q'!14r.4Xkac]N⫴z~1-pPe2W*AHr黥wtDP +&LM{ b$Y=ӮBKANcD-1pdj- '3}Afdָ 'p[Aʌ3)vA~krwߊ'vrF"ٶcBZ`\w\x˘7i#.{i21~#휝PL9ׇ5U+x4`;{Fg*4æ_ha ,ѷwz;a!)F*"Jċ#X׈:V$vCw.BȺ-Zɪwͫf0'T6*Ai;M䛨;:ե2T +*n̠ -w=L6>穓1qHpO %_xjAf8̘OuQML3׊3_Ə&xbTZҦ_뭺[Ivų~GM)ƗC%*ƖsIZ_Iё|np˴~{Czȷ҈!m.l"@JE7ݳU7 pDFf#Y@R}ƒ$x?7iY YOƵ.={qM\ZdHDW \^jl(~pD>\׋|;͌qF~f (UڭAcI;L/+ɫݹF>>&}'^ɅCуfuCO9cS r(ouMGhc +c]O\k3\=b|x8?F@~9bF -۽' aiYGnC <ٮt`4|ό +VKQ} vcQf uV^$a=*=[CQl= Ta#r.ܷr2hV/.Kۋ=j0sy%E7x>p=yOJV9mN$CbTdT#lE {yuA@頺 韤y4WTFVi|pb{ $z3M-v_s1޲P_efDQ`o8ri1|(QJཧShɹ}N9Z+Qs5%*lH1 SE8>Vj o_1y: +/OKbz#Oy@> kf޳53aJQn6DofoV0Hl|F )x-vV0$GLy=D \JRY[ojU!hB =0Qmt9Ii狁)B@%)<1񈸘=h;T'ʈzFfrr_A5e_@Ir.(P|{f1f'KE0ۗLџ !oDnz|T̊K2%_&mŘ*<&2>W}7 w'dZjIU>mp75ɩM˵qdF;y])_aTܰ^iu:8fa?i]vgt"|G1@VD9.Ep)Ru`aha[ýYQG6˅/a'rh2x=,E|J@oPvLy^b~h0HERݍپq:{{R%ȟfG2K@&g4}Z! 癨&\mU1¡ܣ]"T#{q &!66Kʃ'D<}N}WN^EI":N:tbN 蕜槁K!&=[ l'SxQFyuѠBݙ7rD5Ά+US;/&criӟ c%Uڏ-jDnEBt]mm=G5.:ͧY( UߥlG,=N7O{ dX; +8]vm +XsL-0HhN~']Z%>|Eָet߿hV)Eܴ<3!!l.ugk;'8O*La +LG '6~+NҶɩ3 x1C?r|2ЍrUK.QKQa{ɽeг-Gn>REjeكM +7eH]iO37Xy/VS'p&m<v}2{NT,iI 9zJѡ}-RS7(CNdi>aEz)D8dSzͱ@S+ܽ<2.1C&Lݣ~&HVzx} 2,䁮W>ZaA%=>OzGV#An4X2 6#n,tWBCDdh~C=MpjZ* u{ɖxWf ?ދ i8`;X lf_?̀؍Ka?w~7(L<ʒ:W\٭<>Ϭ Re:W٭ZQ-aYcW˰zŐO[IE@Juٻ0UwX`!ޕ@9x`Kvz94@o{,IENH5'=RuדYJUh 3hvޔ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/FVFVNG+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"t) B %E*"E:4"* Rixι3ΗyEycv*Yubccrf|,_!2F`uMs'gKB5úur25^LvL#*VZ &|N^bF4VW.!aWfG"fA6ǎ;s`mk? [&S\L)ƷSf؆nHsK58"Y!؎2u֥-k~wS|ARi_ \ǛCC&[eFK A]TijF4nsXo'Չ#Y1vpz;b9.-KS +d6(U-z{S>Nie&(V)=brI'U<:Y+tڿoyk\]ߖ:S Ceq^1+pϖ&w +bTn+_xe3x&܂ 4܃E/r#esp~IA;O~%Jsbj;FFɏF.پN[TdW6|+emSYo0!r{WP{Moƽ9w\GbH+v=I=aʚswvM9#HYЏ/KpxC.ou+=F_D޶R @L˨pAupĉTqsmu9w [Gd窥%@a{YNIZ AH~i^sY*6A0/a8]Z5e:&<=z2)OzrhZɷfGC6vc5u%R%VF+#=F-04!"tCʰ'J*[fbi.qk]^9@|4f4s?O/~;;f'#ʔqް=u5(EJ]|prq-BY Th@SXa-dqlpvdc]tfWt<=0칻FL s <~lď&1wѾ0fsB$oBmw/S"ꪏ~1^I%#F!#7wWv*HjY7GISCyWTg7H22xnPTze#+QʴDɆ =3n v+<o}vԛMjiҡ^g {s%QՀyĵL|"b/i8xkMi1Fjn4j \p֠=1-hefxL_,گjypOw:N'6$ݓ٣Z7y=0+M'=4mXd=Hãn$}pCY_3{#=smt42oJoqf0G7'xa*-SwI`zxQ;ԪY)o'ƁCkZmo-nc7kSE3o1@OtEb]UgyDlZ\ѹ|}Eҷڅ=\$;԰*„Ksmɛi&?oK6/ޠ6)>~7حV# "uL/)ɠ}M[S M+]5$gsO1M wa%6Lb7 .єٕ \'֡#뷻&y\:$sX8`O>{a0˵jCYQ)Hm^+<`d*87V.S\?|SX,ugllЗ50`.O)xIu&); +..\mpwD6-ՖGٗ^F8iGu!Ӣz>iFv'p") | uSC;T{sQOt\6+wwPqŽ'f|#مA,hiU WII^)/0 sMNro`{h7$]^^za|8%R%[ڠ8)3(t,EC`G4wTYDɒ!Ч(UVJQm> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xgTSkA.-4iz*$@$ҫ"M ҤH%Ho"J&-4;k;_fͷYsggGJRuEc18I)  #P 8$sCd@ Y>bq(ȫX@ +J F aP @/L`P + C"pR6 +_%㏀KQSHpGb2¸aJ~^,#||/Ip,#ܨoa/!.h` P[Pou( +!|X8w)ompPqG!RH_}dn<nP/wbp`?~_Us(߱A/+s!r[7= GbV8(+T::؀ I #IY}&(+>&@*)*||pݐB 00+ Sl@6ej(W "3§ +LΫ{U'CʒYC)֍_=cCuQvsi-c+fFtO|\L-zf3!VOZ-j`Ou":og?>`yg=~w/^ѿan;v(7CG5vg7%dt]t -F} +kgK}t\~0?קecџ%|'iv}k]/Vgk;xl +> R1^hmvז9**2]fM*-ECՍ>Y:p"Zj xXI>:pXNAkn@:] >)$z"(勜 ,%Sj.Ȅp;Rmך + asHI D)$0(cxU᝵Yޯnq۞79{ԋ˯=/ʥ3,~0!I`LJN~VgjtdކCyRR9gm}'7(7y?fO)r*G,ZUBe" @<;'kzϣ+M{iP5*h`pޭG{@,K^aLS̡Ƀ\_Ď1cSXcrQ\Ԙ3p*-tU uh9 +'"Mc\t%NeeZxݱ /3s̬7EX;,#S 6VoTAmP\>+>$˔ĺxyZ.](Og4!](РpDϞ+1)^eδOp&EXXUmě%fȳQa߫c`ӠImi(Y +brru,KU,zi8(3kG6(&sp}% GJΉ/mZ"ؾljy}a1g_nn̿43Rm[uJڢ

+7u27hgۻe~G_S8 +RlUBG'V+hތ4RkkGWѲ|YF:2cP做V+EGff2oo+-bt/㮭wk9uQ*Rҁ,v)tphŽ.in5U%G<:BRp샋dIjQLEL4QϒcuΖp3{ EVgQL1S)m c:2M@U.X(nUR8|Sls`i?U 40W%y>҆Ƶm3o1S*=E—49l<vjT.;珒sn+qbx6.e˂#T-*oI0뫝_ ჷ*6 wY3}jxXM[Tb(IjdWG\ ߲#MVj1NnWQL,J Gd:q[n~ď׶%W'e}:Nx`[ƈP8z.{{Sv@"ҵK̊9d!^aneZu|/]z03TSSF.G_{LO #^殻leP+%ܔ8i5zCک3UL愛ϲ )WK:3法aTEʦ(vYGuvg9ؼOLg&sӁ!O=a4!oug7u2U0p&/pPպ Y7I} +k~BV;0]lH\ %o/PђiK3MԟOQm0pnY +egFBؚg +~IeNJcBp +w~!}/\8ey2).B̈Ewݕ)Gb6u)g +\׫U׬o1=U5EufW j"Iųi;Cy0-nclrhr G[zv$h%hЈA-Q:}ZzK΁w!Ѫrrv4T݇pZL^EmJ3z۹Oɥ:#*Ɨ*En9h?K(lj +&]ܓ7/jUeDrJX9;m`ھ0k^yjt)u쒰hX0L A=ܚJQ}Obg~x_Z%_!+@Ak]wM*p*Jv +OΝX,RŲ]F;5|y5¯{Umy6& !};4tu4fGO!bʝ* կ=dJ*If aj7Ȱp%2Z,]Zd|'n{SROsX[^=) qڼȠ٩`sSi/Gײ^^cYqӞ|LN:[ܷSx΃hxiy"|¥_;0M(zoԬ-e/*;Hi᩺9IISU1KC_;V,S:[9 TK_Ic;F4\^;ĉ L?ǝACs%8G^-yvZw( q2E)wlJLos;\LJ}UTvs!;s!Ssko`y~t:Ѣ<-p(Ba:AӋTzЍs #IcNBzrԁpKwOar6Gf䅝SPH|e}~Sr۝}*+$ork3#g$j$+;uNdTaxf_XX[u#Nw8S0Ħ&f d`i1کeP6u)( 8-]F2>6-u~iu57;b ~bȗDaS8 +nMtic݆BfIeejAN9̦9\^ǰ58Q p vtEW2.RQ}sg`)C:,٢<p=~~aW;PzyK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2136 +>> +stream +xR{8yn71jꭥ1`L wƫ9Cf؉• +F5!D$mɧRMErJj7DNmo},WmAӹa7#Dbl1x@ +Ơ- $Ar $~BG [w>WcSCb`;Z0FMT_v~5͋C!;T>*ob0ġb-l9\NE +0|J1NţA d &s a?Cs{P|* x,ds\q Xg3=ptJ @" أhGG\&⫇ 箟:/5R/ /rx +tu}0ȣH#|0i=KqWi=H;7՜y`tMo4w8Y1QE*NHd%!5)[יּ{Eqgnf7&ZrFb4k'iÌiQqe~m5mIjbS E7ZS, f^47tV&R\-7 ^' ש>-YdbU)%d]BAߍ\ l;[(R؂⬡u@6(ayUHΔeKLB7u`C9k3BK7M".sH]U}2ntt№HoJ'`(cXn1Q9G+K^17saC^OY{/5َyt5^{}: +KH6Hˉ'&QKntz_@KM# <.ٺ?tC+Q wQ/VG* +gݻaQO;$wy7kg^xq5KfOVm=0Vm"W7$!H7T]fu%bvG-t`r#Wv-m#V;5O! +7F?RޫE8qvX9Y -LBJ5O/r3aa :̐tjL=1m*rJL=ʎ>U3};Άg@LujZDe~V[BT;EA>NY3{ZۖtSAؕq͇ HmL^xCS^oqg}{^kǧQ<^":?v0q8eZmDsb(4̛~#3|kX /䲩0ؿTp +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/MLMMPW+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2214 +/Length3 533 +/Length 2765 +>> +stream +xy<#o4YBEfېmPL!Ec1FcFe)dPZ,)ۋ,Gs+a03"Q0p`} Ct$Өx& hip=6JGQ4@:T{3_N&ੀ= K#AfQ([A@D2 x$2˚E~Dߟ-XT~94*% ^My: o~ bQ(x?>ޗL Ac1A:`O#tVg'=H$|Z32J Ԁ#d9$bL70:H%J>vg?.O2q~ FUONp8bݸ:iTH,O% +27ôm#=xȿR'XXt:He_gE^d`x || +ݏAw/he1)LrSܭ+r襮3\-zE̾ڴ,j̊U?/ߎOy],*?W<3;l9zG|QՠЂooJ[c)?f Ɔ.>fB$Cx4k 5Ɉ ElqAۚD'Y4GW>ړl؅/5=}v!Zlw&vn>t"#,u{Tf^$ . PHO EP񇖂wWC }QkJ68rTvօO~DDFNpͧ?oLUzy_*>} %~_k$ ZH)X<#vY))w{/i()}9zfg,/XE u +Zu{}:Yo[?0{!\[M=> rwA`ES C^Wɴ="Iڝ(u<4D@8x,dgE޽}l4gåfk7!.CH]zHnBE?{8[aGӑ 0`AwIG$=^Hm-,' + &"/FSzFTXH߄H٠sXXG1>0Da]*%I1OeD9{aT.=Tqvc٭і 9oe ecxO-]IG6q֮*Hsbb:u)Ƌ4 +Ϊ^)ZqG=;slsEk6C՞"{YIF < KHv1)7NإY +ő$G|FQ$CM]1=ml>*ԣfE-7vʻy;nb@Gu޶Ng9r}TgbcC~( +yy5-oBlD=Ô763}a^ ^;xxjRRgHhǤvSэG1|ysq'9\YKwb7d MXnk<3mXf^z;$)Ԓq2|FUO+ݨѺo%!b:C_31Ot;rϚ奏,WF\D榄yzƪ멹{e(V"u/3(nL}}5hC%;][i6ayc1T{S/*Wt=dn >4fJ FRNpؚbIo'Z?+ܮ #4g8Oys!{zL,O] [в Wak LlmԄvѽ'71 c[_!66;#lm|IO;qڑKoZ?2#X-uToLj˧GjQK?>p;^.a"t4EX}>\E$)Hθ;呇AeOD_FK'a]9,㑫VoZW,JGNF^m~z%Gᦏ0̦=$19a 5ӄ ױȶSog{F:fԺ84EC*D fp h,c,Z%~ K./٧AiB7/ +]g Y:^m77XUÃZRO"*#wv5kW3WEVs4gIjHWNc3NtncT'lV,~W{DFG\py9"%Ϡc|ӒUFO׎Ef:MK.\(jRxI#͗P"6 D&ƥ#']f/lyfu0k֜ۇ/ > +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2042 +/Length3 533 +/Length 2580 +>> +stream +xy<ǕDJ S"cfc>DFc,P͚ +$#-d5«&ٗLu|N|s~wazV/hdpp$vtH8Y@dؐ8 @bH*@!C!!` 䲨G9o. `EYT288GA8LL2p`E.~a. d8D*TDÏ `~)AH -Ŝ;1%ɠq +wbW,1ֿ96Fs"ѿŋDҸЙ zRAU;F%[1i Ѣm @吏~$!co^$* 3{g- +x!Rl|ynI2WA!(6ʄ3CP@_ $ +`ЈjtgPv6@`?(A,|QQP RٵEwCHml4)xױT¹Ks[-N98Clr7Bu{ q Cz=W?*FMP9u[

':TZb]:;5֠fx5Ju^mE.-/-FCr r/h.MtTJ%5k&J騦H^Sq~M[4d-v-VUU@k!-L6|6Q8|JaBC/--.5DO{ Irߤ{IRڸ6M yM; U铺K˱|`-UBn?T(_Y6oLJp Z+|:(іDF 鬜3J~v̭m'Zh/>Q+ǹlyS!؏eߘ8eW[h+wӄIJ,}w9jl݀&9uK}dԬ^LicWzC" +n7 HEī<. X$^Uqb'g_>--ܶfr17OIr_Dy'SrO2s`ꛓm”7މKvPSGd1,q欟D,h,`k3g7꤮3ԩZ61ŏ"7lF%?i)ȩW) 4HJRf^YZFDC9de|9=tY}q +(Bn:$'qkT>BY6^qJլ{kNMMLn7M-NSZCVZ׬n]ދ.z%ҁ+`4=vBtoR=o~9|B*qnWǕ2|#wV-}K1Bl}[6ǷLD/"Q¬>:$B[ѷv`KѠdA2bzr]dPl1|J\@!cD)e_>Oi aIZTn +endstream +endobj +40 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/VXECUR+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 39 0 R +/Flags 68 +>> +endobj +39 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2126 +>> +stream +xgXSii*x( %@Fb"EGf2C8!A4ˀ +"E1 (C@ G!2εkyF8Bh,$% +qLĂtW h{{ M,-J`pLj0!J 0ř}r4 '$!!$*@ T*p+0dFd$ Fd(@ee2;K+ +dFJ5R3@IfЩ vx1$p}ƦRHOf6Q900hl<dI~fu"Qg: +5eY"ݠhb$j$t$q ؍=`~n'At'PjdFL( (Zb_V_m Ct +"$&_\\ѱ(aih[4`kW/: rM a3 v$$h0`Ia2Jh]fP(QR OfԘ70y1t41>7j.͍밠 )ۊiSǂНx .ReXSAO+]pWn v^ţwJ1iy- + +[5;)j 6^0^=PAixZjJv{"!Ř +{&i*|&;|:5Ş +wB1ǭu9!{VZ..W|O>v9?aèGa`,5)˦MOu[U_u]|,Kr<4"9oF{CB041ξTq=KkK`yt*tZё:qa4{a_1I)X͡Jt3ۦ:Dq=fyU.Z.o30O15b(^B:+ j7̥40*na;# Ķ%&L`E1^r~P(竹n_DLp^=vrZI&( Yg݊ rK^nѳ~_uش$qHǎ;ˍнJ[Z .{ž]n:X4UB.z87ğ-xw0tJ߃6/9߈XT26mt]eŮ0/_3AqLk1 +hyŰ.oғ[RPR9(ځV(ؖjuɵ:\lWpBt6P!fVZthE +3(ux7N8AuLM>Ƨýo`B#nK܀i%;ˮ o9;0U_%B)Kk9X3ZQ49a,(QȾ\|lӾj\ /e9N~j̷ $ޛlk~q345_M0;2sF@ھ´(4hѶ9?A(M=~;hs5'3ukױbZ^cyEGd[%:(}^)a7NE}_Ioŵ5t.ˆ +Mu7.P^y+g?e*:*Nd83 ߜw +꿼`$&A#1a?le +endstream +endobj +51 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/IUDUGQ+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 50 0 R +/Flags 68 +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw31]2fn h FNRȒǒ%'%d߷lEB# o~7'? _x +wFԟp8H5f$.Փ 0$ +@ ILhAb<T$llk`kdygO2l|AzJtpBqknDx*O'Tzz4f04"$BE PWE\g-t46Thh*N=HCA&HhEFzˋEJ]x%vXjZFR-{i@5ƾ^dmVYmtw;ՋޚtCg;T_FKħ-z5-7N?z'?#,6__O7_s)W[sz_4PZȻBqxT4Yt.G?~eooSlqoJٻ'ֳ#J)Eʩ ][3C[}QUwsRBC9yOs=|­NIeȗ|g1;}TS!ax#hoȃ׵ jyZ RKP_Sn6CFmie=#j)9k:|.<3C)۲/IÙ +WyY2!u#ѶuM\n_XJ(D)i< YLNwY95 GͲoC[>( c_A"Q;;pl)&+0bJNOoxch9uNiw#w5vr]_gMe*٢ν\t)9&Zc쿑4IΏ =׾Ce7Q7'umh+=V8śyU]%2gw\tH T˚7?gE $O|!5 +`-Z̕:0>o-vM SШ24z0vRŕ +ktҴ@梁8CAw˙IVrk} lc +qR>.zv 7n27cWMN%^BB藍gzaU^{PZoes֎X#1IGRSZlS璝?S8&w2B +x) 6t̮8j?v6#L +r at%b*݌pLj`b8jI篍P'zzdKy6xTeVGGX +O{?k2}T#̖Ofj +cQWk\ T/'6_WmXS3g(B\fR.'0 7fXmH߄OSYWᕙJoꡋǣZz03<= ѧ]῾2Tyu޲TDPߌzN-cP5a9OH?$<Th꼠ڟ7;j7m7X ΅wnz)3'ߌ ;~Oj졗ZXv,9#TG lh8+EpTUt3" U1#mXu'X6Ҕ{AـWݲQMu~琰źxaq1 ϸkΝ8D^ ƠJ+&ak"f:fuЀ\UڜV!QWZUg ]K5HZlN~cJ ;}5? +$*~/>$, ]^ hjxWрEvk,鷞ܯ+W `rQlDd^5ٛC!XZ% 7jJ javSOѸز_Q"jxZOFuFCTxm29 V,>qObK'_4,X_|Z~(+cmf}^uVS6^ͮ䷝MtA wU=6<:E үӥ;=s 3,$5@#BwZ(YN`ݖAvEv9'NԶb0|mWg_Rdևw rbGNh]OFda)XW(g^PBo|B=N3,DQǷ8'P?a,,P>C+[k +9*z@&=ŭTBhA|zѲK[҉v y%6vyfQ iIa %.u]"XR1Chi\△}Z-;tSU}؂cINw<~V ?1>I׬0Gyx%2eb yʟJpg)m3|"@t@IkV +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/BPCHBU+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D))Tɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\w +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/VNHICW+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 993 +/Length3 533 +/Length 1522 +>> +stream +x{8TiR )6Ջ\m+F#2CVnǜcfљ3l +GTH +d–KJJFe%EzzT*tۉڞϞ}?} |N(qHf=`s}~!C CC6!4N.NmIJmX !`q. {G 80 +#"t&R!!8FǙ$7&ƨ 5g0`8a'܈pFۨ$Qb%0Qr.JJ$qd?}] caTюY h*~:Z)(kRFc&d.s6pdht+ΎH$ֲg͈UJckjRDgmpjf)|oWֿV .n{pTwmՄtӕzw*.`OȊؑuŽG[o6 +;闊-Yxe8i&J=0+H&JSr ֡-?>M=)](TO֝hy}9;w}Ts^v|g5Բ{ɂMl d@uK|)Bl9taYLˡ7&!K \VjXFmw }'}MN FjbK.,޵ MzAxۓ~ޘq![.3^m  NzJu#/s93w>%1u{H*d +qW?9s*fg`ᗏr&+2DlM H ӊ=&T⮾]NH{5$Gv#K 蚨ƚ]CFUL\1x$vJX|ccVm27ɔG.wk]mLYJQ5-I`+my;G+kqSu▏_é=$ˆ&O)x+f u^OU:nƱ .e޽[mv梿y= ; z6b _>|!P4)B(?mDo +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/GHFLWX+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%aO ːD1ˆ"e̬03&)*0;J)vKH6xPLڝ<~hzH ˠ%yQBtt0Lt /ď% 0(&D fW62!"`&B$P<(QWXh@H0W,:l&"¾8 %IဘĠSH!@1 o~R [@Q:6p Ȥh@A&P!B#Vj7baH@e:H'H"ouc @twT/jqJL(GcF*D S<@' +gDrf&fչG.) +276_VL&Hg/'ɐ8%'N\2J@QRJtZ.;RfS(q +eqYQӸ9 kҙy&/Cn/(fvJM4Opdvuݻoqы{{>@`ׅp tN[P?ZlDQɀv/_d124wT!*"+7YHx53`ɹĬųVV-5Nt\ڜ*Zۮw xzV\į= u=gsR.Iw:>69%8Ϫ%74f`Yݱv)  w^'ɳvcorJwpȚ p7Og'kv=g+*gǒ<_v$\IO1qbk#oz׆y=\`\ٗ`M=!>8s0TU8R?J=ӑK^`3kaL<3a㘼nGW hdr"۰Ix(cR{/{ g&B'~&WHzɭ:պ;\ۉ+e2m HW?]rSJR]e⸢ـjtԺ̴UB^9#*/4DNVnlE^ro٘HyYh +^#>'fE\M f7Wţ 'o[xe|ĕ֪7< V1~-՗_'2!ƌqȪ @])W7lκSbΡ=!к^|Wz]?)}(h玱яo>lXu}\[ $܄kʃ[EGBepSE;T#HWwߕҚ7ÇW82ySᡶ9"$0  +M +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/WRWBVR+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9976 +/Length3 533 +/Length 10534 +>> +stream +xUT]퉻qwwwww6q6l&h Awܝ?߭vϽ/Z>@!ca Tpipx8e@P#" x<ܢN@Ll\zv quo.sAv>[#_X*jC<{ {`7) N{wW(ƥzh\i/m@p { ?Fڃ n9Uqɸ;y+ ;'wn $o.#]#YC]q5նC=y| ??#7XMqN%+'ss2w"w}@Bt42/qYU12{) $n *זPtKj-E}|5(g`]=6.:ܳ3tպ96ά [;/.}`2z3u#~I bGKxe +@ӡx@z.y?k]1|/yP4ԝ$G;^ +PCMVDt^Jy1Ld]OR2itYQ:kė.3U}2&9rĂhNk&gC᭺2C^vع/عvcC;N𧎭_} /R׼"ntOQ\AEvƕkyA&aJ|/犡^%-v*3_dΞGE&YY30.%;dVA마˻;?އL^y-ix ;5YƊ>gxR7p6 W=Lxo=g\)IS2΅E.N!&yM77zm»W DrfoT +}ƚ>-!31zvSdZ&"+BZк<>{qLroZ +c&8iu=F-xI{l@_zul}TtFli9.b,rq([P>FBѣ7I|wR~蝿Bױ}q(m/vi>;Os)cRUSV+!Xb*TE7dM9w`͜/l)u`~L-p/qSIye ῘSl/a`([It~nOwDn90ߤyLNd ~/| zG%巡oE)}z;!`%: ?yDGK:6"ìI$ |VWd|5 +H{2,>%n$T]_Att|7\y$%dZ4 Z ++ &.kМXp䚅v,<]֤8u_W<F3$۸ihD(~90$Gr1_f%[\!=a+dǂZ}'F{7&O\f%|q؝l ]L5De7ROaI&6%;ǛtJ6[ȇٺr458 +q`*=x-Ɲ2KfXWBٮ^`-hLA)Ġ Y;ǸUƔv?jbPmO'HhF(,Cgb:˥ujv90 dۙ˜e=u,MXaC1&S|疇-MJLvȔׅuX;{owY6һ&("NE1sl5x}߽̀"oQj׹D;lq#]+/B-gMa8C?0gN;Ʒ5*1j5Pw<1^K/Hh]87] ԸVlpc=ep>P>HyblN{vEY4] +T$xf4?]y5A"L d+̽A3a9cT)Iu)VV{,e6۸|5P#%ФWl7r#؀N }(t< bԎ!sA[3J:OeҀoxh 8:"ۋ 2߼cv\[k]ymu~$N}=8î\+λ},-.mh,;VQl4Tn^,l |sWI\Rx҆!Voǎ %h> pٿ:;a2v@x@aji5ݮxb⩅+Nv8k^ Lv0kR?ܘ9&`/pN]+Gj&zu{OoFTףED7Sgo따Eܞ85B:s,!3?{`Cüb;I]܃k, &lgh +AWSp!RN;>:hވC2IһDK5{H,7shlUWO ++~1CeCgYhkE[iu HD~Ȭ̹IEʈܴ44^sJÞ[~\)ĐS2hא$"9a~&Hqg̤Zxtj:^R.#w~\k?MvzMȾ<.'ʪ9lNLƅk1 /`4BAlwyAO)ₐQq#;1𣦒]V߸ +tuyG'Ƽ7ol􌆦OBKMErbrTx8>-(% ٰx; +d鳵 ~vO-X0Jw#t ;[Lo$|[Ց7\? .6.yB8N(::˴+dWk>ȴ^4J9)~X 26L+e)hS5񺥹 .B3Nc9)z֤:]ZT2~`Y~WBGL䆇P̶݄fO\3npnCb]wh*T2 + +~"w2OvXO%xtZ! [kH6|zkċS72'YF?Cqߌ\wZ}Srt|;lK>O*fOh槥&U}S- YwyYcbEc̲CTzΓ[U-?C([X*yUH ِ4eǑbٞ%Ȭi +FV3y`pb]! JCܸx= F}v9#^B.@]cھBƛ݃POH0Dxڃaҭ‹ 妷 -J ~'(CuPPٿ.ٳr7'c#W4KQ#hC0Wf /jl!mdOS +7;Ƽf RPjԍ%I0r!~vNRjZIEi3ؕwt2)5D;;*hW+)<0Z%M{ݸ6+ecpWQs1:sT*?mHJOZꔲZ1pz׎3byTvߴr"=$Ě­TP]b.zgxLep3/̪JHtX[rLByWZx{s\TyI#Hc;}(&q( +@qq:ؕ 4*}İ{-HGvX?F7@B +_//O !9ς(3NBEDmyHƋb4E__is]L0RZߣ$t/|pX,uR؊^>:g$h`o'dZCTϥ_݃}#ܝr6 ̛MEV>.n)/ 2lAĘszn <-)d\:yO#bG +;g`YjYZ|mtN!F oFlɓΜEf7ȳ<k7ie_5Y k|'2UFf !vL֫K4"G' +YAuGY<ήF3ccxK,̑xQX?f=M_N1eNSXKJDd^NwT}VWF hpJ _$y2jBo)u_ْ2y/}HHP"<{lŦ~ia]z[ZGTWfF *JABS*W9 [nV9Nu!9K>"r‰]0_5n<}뻑VJ4f ؤ]{E&uʛF?60ܺ#w2_-] &S?~483odMtjY8ðUD}=D\ Bb㝬ת6(7+<}܋5W^I# `v +^J(20Ɓ;X֙cD7gre;PEh[ifD}󎃩pN+яOCJ!tN1tLc,#׊^' SJb˼KN\"V߉~]fOݹ.|bH\( #9)pnsXUN+?W.w2[c>V3ߞȥb„(u)Ԇtͭmu?1#VʢϦN(k%mO +:&%"bqX[wMb:rT; , N#d@}o^G=:E]F7qeg8挽6G|zP# |꜋mnQ0ykwV0GM׾Ώ(֯T"2&#fO +s&űp9l +^YYtܑanW+oGB,'WzK_/SMob^cAKߺsJ#WҸ+>._|~9+L`{1h@dn8qad+h~bd%/]uQyMK6 ҬL0NQtNkͲګK<&%JR"NYyul'R|<\Ϭ +GŹ*f-4b^P.1, #0IVͧ v",&7ˈ3?OWJ: }wzα$yl06w`t^mzV˓ IoSյFl:`LjGNSaNHm}^ב8#a!m{'=%bZ/9^h7lswLGl1y(U f2L0T!rt޳OS6/o 93B\]|;Rn4Eb0_IAr\o3gUkdD+ z1Z +(:-z5I^OfB0`9e<\=9I2k}LXO74s$oEyAA:Oq`u`Mx5h7Zܟ cq,lBmp djy3WR)>"*ži+H][r'RFۥdrya5q%ʬ򒴿Cڇ@AU[ܿJ>_* +]0܎yА2Tp.'f= kzJCn: +mnm g{|Βe·[C~kɊVHvSo_1tEF SYż).U Ege;!WZ-6HŃ<#JԗU]ox /X2*b)aTp6 +/~Gb'D1g+]w0wXA? +_flbUuB8P_Ejev~GG4QKշ_a(d]q^whY:g @D_Swh1ËHbHG +8jyPjv'F9v9||!!ZB*8)źɯ >ODD|Ւ%ض{%z=1Ok]DISr3mZQU?AQ VG׶̓9 Ӎ{C{N82:HZukL#q N]&iC{ m=PR6p׏rYA3 |N?i'iʷq?)U(ס&B޶neG RinHh+scyK&տنoR!iXUf|`U6Rti\A1j@&$,`ռaAQDczhq[Nl{B'¿*/SBƬpS/Ǿ.A=綋iloIv +8a,h( 'W]ڪV8byʣw0_^0OYE)AQ~Rڟ903췝@=+3>)j%emqnxA=fCyF,M/ַ3zT3fyTwwB>"cb5laSQHJ~~ݭ2r$PmUȀ?kcmUkR'jw2~>mc-JM-SYICgؠo //v@   ! +endstream +endobj +157 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/UFNAAU+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 156 0 R +/Flags 68 +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5592 +>> +stream +xUT\ۖq)[ANP.A{p 4@pNsoK~{sEO. vȹ8A@@ZU[ 9!0% " +>'::=@jk0I3H:Aܡ֖UK9b |#@W<Z DG`5 `:slK{qx0=s2).Ύ0Cy53뿡{NPG8\\=aw w>/8U"j-l yrPX +X:z@!࿃<O ]95II]ؿPg+/5_ܡ>cN ''|o:[ζm3¿SIIqعx7_P7O _PO s3<?k 5,"(9%E+։EÂb ԅLJT+✺6R%_^ݣׄa} (nod4<x Alʾq=OLI ϑx2:t)_mGWZ!yU+9c ID&q^CZO0gbrY prO-|GM΀ܫNAXh7jr&v"i8?"M24d$_mOuZ3lsx%wUe: +氢8k\z$Y'ny|g ~WOlHW1)8 j}dRGvfjĝx'=M)~A&n#Xݻ&$(\{ BSpdHRp\IkF]JԐYfA~|KuӠ{Ki֗ ,(_08)A  +VF8#D?=DmD'_:_)cS&6R7/R(+K;4L?pe(ͦCp#|. ~]&is;fOΏ;7da-]~:C O)N5x48udM[/D p"MҮ=j|*="t5ȟ ~4OQ1a(􎞠-6nDl2SU|lޞRX21H<&ak]ݿAkjaHZ<݉%HW#*J m.'v$ Ա!Q/:^3k<pCw{6̊3"ư`Q}0|A\RfCXF 푴J*%-|=XR(5[$u:I[lZ6} ܁d,àJ2;\ebiŎyNEq a~ klPjZZ{~7mߺqٟv7aFe2utbǒ[# ~mZ_'S}Xi꟒Ń4eV\Z%zuۍ";(1}{g-Xq˹ ޏC#O-^B&Qrjx+m05Ew tx<8Et1~c:X㤔-^Pg;F߰NtUJQ4& `K]KFdmɞ,ҡ}O'C iӉfhMˠM|&LYa5&EW2 HE ǯZ *Һt + -hh\ĵ.ޔ dvچoL'(PylWl'`#u|g,/㚵5M9g>#q^4"~RX34f Lv,U& 6 F9M쥄6yjj'y@5rя毳%lg{נs}5y>Ј 'WJ/7hgm[ߣ󌫅֠2xnl2BEnS@[-SB8-vPzW>3WKU2#iFNbb +(O :W&YTy+ &7>ЉRv~~>k$R-fL7^!"C0EsiK[Ap+tfR4/c,u\،\0/U6`k :׃4 <B>F9E?mTuw(PM)6$sJxfN;uUQy܋"҂Nj'jX[ׂ4Aqꋴ:-ŊR7޳kaoi#g:/Baw|,S+] +WG8LEFM< `Mدc9PDGS6o0ߗ_ rR,Xe4Dz{rȌy]дeHs<޷Vi gI..| Dߐ2 ݗ2$%+z*Ƙ|HrJhE^135܊(YZYW4Dž;|d8R + l0 "K5#'P>8#x 7hޟ!P,KCcE +gvNRj͍_&` 85@X0x2Fm,W1C^ծG(U.#>OA(zb~)fٱgw[g-:kbp~d_0~+ƳD3KbDo/ˆj6kWw>X~;[_C nN6FMo#tc_O䢮2}^LpktJ$̻+_:Pn(#iع#GO6SM~ Q\\cݩUmhCt^P +~u]}A8f~lYE{jE,l2N`#=3jFL:Ӣ]߫ o:+. 2Ԉ?^G.0E Q27p֪[+1V=h\0_ӌsi.wc;İ^KP qz2sńmm%CaLDF'oY]eVrjyPgISU +7%N| )bDl$ Ja&(z'K^pxQ!ҬyvS"ZgW4 qyD– +ZϢN,{ď’ *MK4|MĻZ2.:eïa5 +UfS[J#6GJi'I룧P[f$#BUlmQò:tL-@mpaO:Q/@zdhcc +q~ + ;P]4#NOTŒdW?f87qњTla0FK:b~/.mRj=xX9$JM>G 4g.:Pl4eSUn׊g#ǯ7(mP0Sua!avu`G}ʧn_2%NH wEX,n^ T+hvJh\n9KLUuHO_|dGLёiz# ).Ы2M3p#öd+{|I~4"!:/_l]ش>NS }9\mo($ߵ!ǡf<8<~s4-nL ,핟leiI=9Y/xvBsb%E_pz}b-4# K=>ZrR5 T0e`ur;kiO' =eIG#|;Jf΂MŸN@F=mR* o|!x[NQ8I{8(Yl7 ~+  %RBG- +ף >w&x\Pj-, +9~Ԯb\Cb993"S3ѥ5~9f \.h5!9(Ջaiw)P'_Rc:aʊЁYi[ b@#KQu`MG+7!~B<:*6/ Wz8x !MIKQ)vu:vd_4=kiǷdM5ߘ؉7qp5H_:ͩa G V0[? > +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 42 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +44 0 obj +<< +/Type/Page +/Resources 45 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 162 0 R +>> +endobj +162 0 obj +<< +/Type/Pages +/Count 2 +/Kids[21 0 R 44 0 R] +/Parent 161 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 161 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 163 0 R +>> +endobj +163 0 obj +<< +/Type/Pages +/Count 2 +/Kids[70 0 R 74 0 R] +/Parent 161 0 R +>> +endobj +161 0 obj +<< +/Type/Pages +/Count 6 +/Kids[5 0 R 162 0 R 48 0 R 163 0 R] +/Parent 3 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 164 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 165 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 165 0 R +>> +endobj +165 0 obj +<< +/Type/Pages +/Count 2 +/Kids[82 0 R 86 0 R] +/Parent 164 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 166 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 166 0 R +>> +endobj +166 0 obj +<< +/Type/Pages +/Count 2 +/Kids[90 0 R 94 0 R] +/Parent 164 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 167 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 167 0 R +>> +endobj +167 0 obj +<< +/Type/Pages +/Count 2 +/Kids[98 0 R 102 0 R] +/Parent 164 0 R +>> +endobj +164 0 obj +<< +/Type/Pages +/Count 7 +/Kids[78 0 R 165 0 R 166 0 R 167 0 R] +/Parent 3 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 168 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 169 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 169 0 R +>> +endobj +169 0 obj +<< +/Type/Pages +/Count 2 +/Kids[110 0 R 114 0 R] +/Parent 168 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 168 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 170 0 R +>> +endobj +170 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 168 0 R +>> +endobj +168 0 obj +<< +/Type/Pages +/Count 6 +/Kids[106 0 R 169 0 R 118 0 R 170 0 R] +/Parent 3 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 171 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 172 0 R +>> +endobj +172 0 obj +<< +/Type/Pages +/Count 2 +/Kids[134 0 R 138 0 R] +/Parent 171 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 173 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 173 0 R +>> +endobj +173 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 171 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 159 0 R 19 0 R] +/Parent 174 0 R +>> +endobj +174 0 obj +<< +/Type/Pages +/Count 2 +/Kids[150 0 R 154 0 R] +/Parent 171 0 R +>> +endobj +171 0 obj +<< +/Type/Pages +/Count 7 +/Kids[130 0 R 172 0 R 173 0 R 174 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 26 +/Kids[161 0 R 164 0 R 168 0 R 171 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +175 0 obj +<< +>> +endobj +176 0 obj +null +endobj +177 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 175 0 R +/Threads 176 0 R +/Names 177 0 R +>> +endobj +xref +0 178 +0000000000 65535 f +0000112499 00000 n +0000116994 00000 n +0000116639 00000 n +0000116844 00000 n +0000112663 00000 n +0000004048 00000 n +0000000009 00000 n +0000045318 00000 n +0000045134 00000 n +0000000913 00000 n +0000050036 00000 n +0000049850 00000 n +0000001906 00000 n +0000055275 00000 n +0000055087 00000 n +0000002823 00000 n +0000116744 00000 n +0000003740 00000 n +0000116794 00000 n +0000003993 00000 n +0000112766 00000 n +0000011867 00000 n +0000065087 00000 n +0000064898 00000 n +0000004109 00000 n +0000070358 00000 n +0000070168 00000 n +0000005055 00000 n +0000075662 00000 n +0000075473 00000 n +0000005991 00000 n +0000006967 00000 n +0000078106 00000 n +0000077912 00000 n +0000007921 00000 n +0000081171 00000 n +0000080985 00000 n +0000008867 00000 n +0000084056 00000 n +0000083865 00000 n +0000009831 00000 n +0000010825 00000 n +0000011768 00000 n +0000112871 00000 n +0000012536 00000 n +0000011929 00000 n +0000012448 00000 n +0000113057 00000 n +0000021699 00000 n +0000086490 00000 n +0000086296 00000 n +0000012598 00000 n +0000013569 00000 n +0000090044 00000 n +0000089850 00000 n +0000015185 00000 n +0000091461 00000 n +0000091266 00000 n +0000016195 00000 n +0000017147 00000 n +0000093291 00000 n +0000093096 00000 n +0000018054 00000 n +0000019036 00000 n +0000095948 00000 n +0000095762 00000 n +0000020013 00000 n +0000020758 00000 n +0000021551 00000 n +0000113162 00000 n +0000022653 00000 n +0000021761 00000 n +0000022517 00000 n +0000113267 00000 n +0000023627 00000 n +0000022715 00000 n +0000023479 00000 n +0000113547 00000 n +0000024650 00000 n +0000023689 00000 n +0000024514 00000 n +0000113652 00000 n +0000025741 00000 n +0000024712 00000 n +0000025605 00000 n +0000113757 00000 n +0000026345 00000 n +0000025803 00000 n +0000026300 00000 n +0000113943 00000 n +0000027431 00000 n +0000026407 00000 n +0000027283 00000 n +0000114048 00000 n +0000028629 00000 n +0000027493 00000 n +0000028493 00000 n +0000114234 00000 n +0000029231 00000 n +0000028691 00000 n +0000029185 00000 n +0000114340 00000 n +0000030360 00000 n +0000029294 00000 n +0000030211 00000 n +0000114626 00000 n +0000031366 00000 n +0000030424 00000 n +0000031229 00000 n +0000114734 00000 n +0000032509 00000 n +0000031430 00000 n +0000032360 00000 n +0000114842 00000 n +0000033588 00000 n +0000032573 00000 n +0000033451 00000 n +0000115033 00000 n +0000034818 00000 n +0000033652 00000 n +0000034681 00000 n +0000115141 00000 n +0000035427 00000 n +0000034882 00000 n +0000035381 00000 n +0000115249 00000 n +0000036642 00000 n +0000035491 00000 n +0000036493 00000 n +0000115537 00000 n +0000037969 00000 n +0000036706 00000 n +0000037832 00000 n +0000115645 00000 n +0000038572 00000 n +0000038033 00000 n +0000038526 00000 n +0000115753 00000 n +0000039686 00000 n +0000038636 00000 n +0000039526 00000 n +0000115944 00000 n +0000040852 00000 n +0000039750 00000 n +0000040692 00000 n +0000116052 00000 n +0000042241 00000 n +0000040916 00000 n +0000042081 00000 n +0000116243 00000 n +0000043687 00000 n +0000042305 00000 n +0000043527 00000 n +0000116351 00000 n +0000045070 00000 n +0000106792 00000 n +0000106597 00000 n +0000043751 00000 n +0000044674 00000 n +0000045012 00000 n +0000113453 00000 n +0000112976 00000 n +0000113372 00000 n +0000114530 00000 n +0000113862 00000 n +0000114153 00000 n +0000114448 00000 n +0000115440 00000 n +0000114950 00000 n +0000115357 00000 n +0000116542 00000 n +0000115861 00000 n +0000116160 00000 n +0000116459 00000 n +0000116926 00000 n +0000116949 00000 n +0000116971 00000 n +trailer +<< +/Size 178 +/Root 2 0 R +/Info 1 0 R +>> +startxref +117092 +%%EOF diff --git a/src/axiom-website/CATS/schaum7.input.pamphlet b/src/axiom-website/CATS/schaum7.input.pamphlet new file mode 100644 index 0000000..52e0b97 --- /dev/null +++ b/src/axiom-website/CATS/schaum7.input.pamphlet @@ -0,0 +1,1009 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum7.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.144~~~~~$\displaystyle\int{\frac{dx}{x^2-a^2}}$} +$$\int{\frac{1}{x^2-a^2}}=\frac{1}{2a}\ln\left(\frac{x-a}{x+a}\right)$$ +$$\int{\frac{1}{x^2-a^2}}=-\frac{1}{a}\coth^{-1}\frac{x}{a}$$ +<<*>>= +)spool schaum7.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(x^2-a^2),x) +--R +--R +--R - log(x + a) + log(x - a) +--R (1) ------------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(2*a)*log((x-a)/(x+a)) +--R +--R x - a +--R log(-----) +--R x + a +--R (2) ---------- +--R 2a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 4 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 14:144 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.145~~~~~$\displaystyle\int{\frac{x~dx}{x^2-a^2}}$} +$$\int{\frac{x}{x^2-a^2}}=\frac{1}{2}\ln(x^2-a^2)$$ +<<*>>= +)clear all + +--S 6 +aa:=integrate(x/(x^2-a^2),x) +--R +--R +--R 2 2 +--R log(x - a ) +--R (1) ------------ +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 7 +bb:=1/2*log(x^2-a^2) +--R +--R 2 2 +--R log(x - a ) +--R (2) ------------ +--R 2 +--R Type: Expression Integer +--E + +--S 8 14:145 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.146~~~~~$\displaystyle\int{\frac{x^2~dx}{x^2-a^2}}$} +$$\int{\frac{x^2}{x^2-a^2}}=x+\frac{a}{2}\ln\left(\frac{x-a}{x+a}\right)$$ +<<*>>= +)clear all + +--S 9 +aa:=integrate(x^2/(x^2-a^2),x) +--R +--R +--R - a log(x + a) + a log(x - a) + 2x +--R (1) ---------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 10 +bb:=x+a/2*log((x-a)/(x+a)) +--R +--R x - a +--R a log(-----) + 2x +--R x + a +--R (2) ----------------- +--R 2 +--R Type: Expression Integer +--E + +--S 11 +cc:=aa-bb +--R +--R x - a +--R - a log(x + a) + a log(x - a) - a log(-----) +--R x + a +--R (3) -------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 12 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 13 14:146 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.147~~~~~$\displaystyle\int{\frac{x^3~dx}{x^2-a^2}}$} +$$\int{\frac{x^3}{x^2-a^2}}=\frac{x^2}{2}+\frac{a^2}{2}\ln(x^2-a^2)$$ + +<<*>>= +)clear all + +--S 14 +aa:=integrate(x^3/(x^2-a^2),x) +--R +--R +--R 2 2 2 2 +--R a log(x - a ) + x +--R (1) ------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 15 +bb:=x^2/2+a^2/2*log(x^2-a^2) +--R +--R 2 2 2 2 +--R a log(x - a ) + x +--R (2) ------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 16 14:147 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.148~~~~~$\displaystyle\int{\frac{dx}{x(x^2-a^2)}}$} +$$\int{\frac{1}{x(x^2-a^2)}}= +\frac{1}{2a^2}\ln\left(\frac{x^2-a^2}{x^2}\right) +$$ +<<*>>= +)clear all + +--S 17 +aa:=integrate(1/(x*(x^2-a^2)),x) +--R +--R +--R 2 2 +--R log(x - a ) - 2log(x) +--R (1) ---------------------- +--R 2 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 18 +bb:=1/(2*a^2)*log((x^2-a^2)/x^2) +--R +--R 2 2 +--R x - a +--R log(-------) +--R 2 +--R x +--R (2) ------------ +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 19 +cc:=aa-bb +--R +--R 2 2 +--R 2 2 x - a +--R log(x - a ) - 2log(x) - log(-------) +--R 2 +--R x +--R (3) ------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 20 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 21 +dd:=divlog cc +--R +--R 2 +--R log(x ) - 2log(x) +--R (5) ----------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 22 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 23 14:148 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.149~~~~~$\displaystyle\int{\frac{dx}{x^2(x^2-a^2)}}$} +$$\int{\frac{1}{x^2(x^2-a^2)}}= +\frac{1}{a^2x}+\frac{1}{2a^3}\ln\left(\frac{x-a}{x+a}\right) +$$ +<<*>>= +)clear all + +--S 24 +aa:=integrate(1/(x^2*(x^2-a^2)),x) +--R +--R +--R - x log(x + a) + x log(x - a) + 2a +--R (1) ---------------------------------- +--R 3 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 25 +bb:=1/(a^2*x)+1/(2*a^3)*log((x-a)/(x+a)) +--R +--R x - a +--R x log(-----) + 2a +--R x + a +--R (2) ----------------- +--R 3 +--R 2a x +--R Type: Expression Integer +--E + +--S 26 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 27 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 28 14:149 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.150~~~~~$\displaystyle\int{\frac{dx}{x^3(x^2-a^2)}}$} +$$\int{\frac{1}{x^3(x^2-a^2)}}= +\frac{1}{2a^2x^2}-\frac{1}{2a^4}\ln\left(\frac{x^2}{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(1/(x^3*(x^2-a^2)),x) +--R +--R +--R 2 2 2 2 2 +--R x log(x - a ) - 2x log(x) + a +--R (1) ------------------------------- +--R 4 2 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=1/(2*a^2*x^2)-1/(2*a^4)*log(x^2/(x^2-a^2)) +--R +--R 2 +--R 2 x 2 +--R - x log(-------) + a +--R 2 2 +--R x - a +--R (2) --------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 31 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 32 +t1:=divlog bb +--R +--R 2 2 2 2 2 2 +--R - x log(x ) + x log(x - a ) + a +--R (4) --------------------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 33 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (5) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 34 +t2:=logpow t1 +--R +--R 2 2 2 2 2 +--R x log(x - a ) - 2x log(x) + a +--R (6) ------------------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 35 14:150 Schaums and Axiom agree +cc:=aa-t2 +--R +--R (7) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.151~~~~~$\displaystyle\int{\frac{dx}{(x^2-a^2)^2}}$} +$$\int{\frac{1}{(x^2-a^2)^2}}= +\frac{-x}{2a^2(x^2-a^2)}-\frac{1}{4a^3}\ln\left(\frac{x-a}{x+a}\right) +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(1/((x^2-a^2)^2),x) +--R +--R +--R 2 2 2 2 +--R (x - a )log(x + a) + (- x + a )log(x - a) - 2a x +--R (1) -------------------------------------------------- +--R 3 2 5 +--R 4a x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=-x/(2*a^2*(x^2-a^2))-1/(4*a^3)*log((x-a)/(x+a)) +--R +--R 2 2 x - a +--R (- x + a )log(-----) - 2a x +--R x + a +--R (2) ---------------------------- +--R 3 2 5 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 38 +cc:=aa-bb +--R +--R x - a +--R log(x + a) - log(x - a) + log(-----) +--R x + a +--R (3) ------------------------------------ +--R 3 +--R 4a +--R Type: Expression Integer +--E + +--S 39 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 40 14:151 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.152~~~~~$\displaystyle\int{\frac{x~dx}{(x^2-a^2)^2}}$} +$$\int{\frac{x}{(x^2-a^2)^2}}= +\frac{-1}{2(x^2-a^2)} +$$ +<<*>>= +)clear all + +--S 41 +aa:=integrate(x/((x^2-a^2)^2),x) +--R +--R +--R 1 +--R (1) - --------- +--R 2 2 +--R 2x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 42 +bb:=-1/(2*(x^2-a^2)) +--R +--R 1 +--R (2) - --------- +--R 2 2 +--R 2x - 2a +--R Type: Fraction Polynomial Integer +--E + +--S 43 14:152 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.153~~~~~$\displaystyle\int{\frac{x^2dx}{(x^2-a^2)^2}}$} +$$\int{\frac{x^2}{(x^2-a^2)^2}}= +\frac{-x}{2(x^2-a^2)}+\frac{1}{4a}\ln\left(\frac{x-a}{x+a}\right) +$$ +<<*>>= +)clear all + +--S 44 +aa:=integrate(x^2/((x^2-a^2)^2),x) +--R +--R +--R 2 2 2 2 +--R (- x + a )log(x + a) + (x - a )log(x - a) - 2a x +--R (1) -------------------------------------------------- +--R 2 3 +--R 4a x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 45 +bb:=-x/(2*(x^2-a^2))+1/(4*a)*log((x-a)/(x+a)) +--R +--R 2 2 x - a +--R (x - a )log(-----) - 2a x +--R x + a +--R (2) -------------------------- +--R 2 3 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 46 +cc:=aa-bb +--R +--R x - a +--R - log(x + a) + log(x - a) - log(-----) +--R x + a +--R (3) -------------------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 47 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 48 14:153 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.154~~~~~$\displaystyle\int{\frac{x^3dx}{(x^2-a^2)^2}}$} +$$\int{\frac{x^3}{(x^2-a^2)^2}}= +\frac{-a^2}{2(x^2-a^2)}+\frac{1}{2}\ln(x^2-a^2) +$$ +<<*>>= +)clear all + +--S 49 +aa:=integrate(x^3/((x^2-a^2)^2),x) +--R +--R +--R 2 2 2 2 2 +--R (x - a )log(x - a ) - a +--R (1) -------------------------- +--R 2 2 +--R 2x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 50 +bb:=-a^2/(2*(x^2-a^2))+1/2*log(x^2-a^2) +--R +--R 2 2 2 2 2 +--R (x - a )log(x - a ) - a +--R (2) -------------------------- +--R 2 2 +--R 2x - 2a +--R Type: Expression Integer +--E + +--S 51 14:154 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.155~~~~~$\displaystyle\int{\frac{dx}{x(x^2-a^2)^2}}$} +$$\int{\frac{1}{x(x^2-a^2)^2}}= +\frac{-1}{2a^2(x^2-a^2)}+\frac{1}{2a^4}\ln\left(\frac{x^2}{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 52 +aa:=integrate(1/(x*(x^2-a^2)^2),x) +--R +--R +--R 2 2 2 2 2 2 2 +--R (- x + a )log(x - a ) + (2x - 2a )log(x) - a +--R (1) ------------------------------------------------ +--R 4 2 6 +--R 2a x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 53 +bb:=-1/(2*a^2*(x^2-a^2))+1/(2*a^4)*log(x^2/(x^2-a^2)) +--R +--R 2 +--R 2 2 x 2 +--R (x - a )log(-------) - a +--R 2 2 +--R x - a +--R (2) -------------------------- +--R 4 2 6 +--R 2a x - 2a +--R Type: Expression Integer +--E + +--S 54 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R - log(x - a ) + 2log(x) - log(-------) +--R 2 2 +--R x - a +--R (3) --------------------------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 55 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 56 +dd:=divlog cc +--R +--R 2 +--R - log(x ) + 2log(x) +--R (5) ------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 57 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 58 14:155 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.156~~~~~$\displaystyle\int{\frac{dx}{x^2(x^2-a^2)^2}}$} +$$\int{\frac{1}{x^2(x^2-a^2)^2}}= +-\frac{1}{a^4x}-\frac{x}{2a^4(x^2-a^2)}- +\frac{3}{4a^5}\ln\left(\frac{x-a}{x+a}\right) +$$ +<<*>>= +)clear all + +--S 59 +aa:=integrate(1/(x^2*(x^2-a^2)^2),x) +--R +--R 3 2 3 2 2 3 +--R (3x - 3a x)log(x + a) + (- 3x + 3a x)log(x - a) - 6a x + 4a +--R (1) --------------------------------------------------------------- +--R 5 3 7 +--R 4a x - 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 60 +bb:=-1/(a^4*x)-x/(2*a^4*(x^2-a^2))-3/(4*a^5)*log((x-a)/(x+a)) +--R +--R 3 2 x - a 2 3 +--R (- 3x + 3a x)log(-----) - 6a x + 4a +--R x + a +--R (2) -------------------------------------- +--R 5 3 7 +--R 4a x - 4a x +--R Type: Expression Integer +--E + +--S 61 +cc:=aa-bb +--R +--R x - a +--R 3log(x + a) - 3log(x - a) + 3log(-----) +--R x + a +--R (3) --------------------------------------- +--R 5 +--R 4a +--R Type: Expression Integer +--E + +--S 62 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 63 14:156 Schaums and Axiom agree +dd:=divlog cc +--R +--R (5) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.157~~~~~$\displaystyle\int{\frac{dx}{x^3(x^2-a^2)^2}}$} +$$\int{\frac{1}{x^3(x^2-a^2)^2}}= +-\frac{1}{2a^4x^2}-\frac{1}{2a^4(x^2-a^2)}+ +\frac{1}{a^6}\ln\left(\frac{x^2}{x^2-a^2}\right) +$$ +<<*>>= +)clear all + +--S 64 +aa:=integrate(1/(x^3*(x^2-a^2)^2),x) +--R +--R +--R 4 2 2 2 2 4 2 2 2 2 4 +--R (- 2x + 2a x )log(x - a ) + (4x - 4a x )log(x) - 2a x + a +--R (1) -------------------------------------------------------------- +--R 6 4 8 2 +--R 2a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 65 +bb:=-1/(2*a^4*x^2)-1/(2*a^4*(x^2-a^2))+1/a^6*log(x^2/(x^2-a^2)) +--R +--R 2 +--R 4 2 2 x 2 2 4 +--R (2x - 2a x )log(-------) - 2a x + a +--R 2 2 +--R x - a +--R (2) -------------------------------------- +--R 6 4 8 2 +--R 2a x - 2a x +--R Type: Expression Integer +--E + +--S 66 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R - log(x - a ) + 2log(x) - log(-------) +--R 2 2 +--R x - a +--R (3) --------------------------------------- +--R 6 +--R a +--R Type: Expression Integer +--E + +--S 67 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 68 +dd:=divlog cc +--R +--R 2 +--R - log(x ) + 2log(x) +--R (5) ------------------- +--R 6 +--R a +--R Type: Expression Integer +--E + +--S 69 +logpow:=rule(log(a^n) == n*log(a)) +--R +--R n +--R (6) log(a ) == n log(a) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 70 14:157 Schaums and Axiom agree +ee:=logpow dd +--R +--R (7) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.158~~~~~$\displaystyle\int{\frac{dx}{(x^2-a^2)^n}}$} +$$\int{\frac{1}{(x^2-a^2)^n}}= +\frac{-x}{2(n-1)a^2(x^2-a^2)^{n-1}}- +\frac{2n-3}{(2n-2)a^2}\int{\frac{1}{(x^2-a^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 71 14:158 Axiom cannot do this integral +aa:=integrate(1/((x^2-a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ------------- d%L +--R ++ 2 2 n +--I (- a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.159~~~~~$\displaystyle\int{\frac{x~dx}{(x^2-a^2)^n}}$} +$$\int{\frac{x}{(x^2-a^2)^n}}= +\frac{-1}{2(n-1)(x^2-a^2)^{n-1}} +$$ +<<*>>= +)clear all + +--S 72 +aa:=integrate(x/((x^2-a^2)^n),x) +--R +--R +--R 2 2 +--R - x + a +--R (1) ------------------------ +--R 2 2 +--R n log(x - a ) +--R (2n - 2)%e +--R Type: Union(Expression Integer,...) +--E + +--S 73 +bb:=-1/(2*(n-1)*(x^2-a^2)^(n-1)) +--R +--R 1 +--R (2) - ---------------------- +--R 2 2 n - 1 +--R (2n - 2)(x - a ) +--R Type: Expression Integer +--E + +--S 74 +cc:=aa-bb +--R +--R 2 2 +--R n log(x - a ) 2 2 2 2 n - 1 +--R %e + (- x + a )(x - a ) +--R (3) -------------------------------------------- +--R 2 2 +--R 2 2 n - 1 n log(x - a ) +--R (2n - 2)(x - a ) %e +--R Type: Expression Integer +--E + +--S 75 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 76 +dd:=explog cc +--R +--R 2 2 n 2 2 2 2 n - 1 +--R (x - a ) + (- x + a )(x - a ) +--R (5) -------------------------------------- +--R 2 2 n - 1 2 2 n +--R (2n - 2)(x - a ) (x - a ) +--R Type: Expression Integer +--E + +--S 77 14:159 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.160~~~~~$\displaystyle\int{\frac{dx}{x(x^2-a^2)^n}}$} +$$\int{\frac{1}{x(x^2-a^2)^n}}= +\frac{-1}{2(n-1)a^2(x^2-a^2)^{n-1}}- +\frac{1}{a^2}\int{\frac{1}{x(x^2-a^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 78 14:160 Axiom cannot compute this integral +aa:=integrate(1/(x*(x^2-a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------------- d%L +--R ++ 2 2 n +--I %L (- a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.161~~~~~$\displaystyle\int{\frac{x^mdx}{(x^2-a^2)^n}}$} +$$\int{\frac{x^m}{(x^2-a^2)^n}}= +\int{\frac{x^{m-2}}{(x^2-a^2)^{n-1}}}+ +a^2\int\frac{x^{m-2}}{(x^2-a^2)^n} +$$ +<<*>>= +)clear all + +--S 79 14:161 Axiom cannot compute this integral +aa:=integrate(x^m/((x^2-a^2)^n),x) +--R +--R +--R x m +--I ++ %L +--I (1) | ------------- d%L +--R ++ 2 2 n +--I (- a + %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.162~~~~~$\displaystyle\int{\frac{dx}{x^m(x^2-a^2)^n}}$} +$$\int{\frac{1}{x^m(x^2-a^2)^n}}= +\frac{1}{a^2}\int{\frac{1}{x^{m-2}(x^2-a^2)^n}}- +\frac{1}{a^2}\int{\frac{1}{x^m(x^2-a^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 80 14:162 Axiom cannot compute this integral +aa:=integrate(1/(x^m*(x^2-a^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ---------------- d%L +--R ++ 2 2 n m +--I (- a + %L ) %L +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p65 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum7.input.pdf b/src/axiom-website/CATS/schaum7.input.pdf new file mode 100644 index 0000000..d145988 --- /dev/null +++ b/src/axiom-website/CATS/schaum7.input.pdf @@ -0,0 +1,2604 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/NGKDUA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/SGCAZP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/GAIAGZ+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T5Y\7_%%b C, vتivtQ_-,(?H(ݭ k +li3E+`;8)6 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/KUKDYT+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/XQDABV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/WQBGVY+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/JNGLNF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/CWFNWL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/MIIZOG+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/SLWXNZ+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 869 +>> +stream +x혹n0<Bc ϔ9 m"@&q?8J!?Zqq +:?ŧ>4]^ u4XA\zK0ixV_擓>HFh`YbN[l-8[nTN]S/':0z$ݾaUU1z$kk(tE_.U\k k@Qk:> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 453 +>> +stream +xŕ=o0 !(Jp]tm~Ñ]%nML%G ( "F0x؈s0_7!~nҎ(!Y Fˉ?5!ѺJ%aWOԉw Q41F;`+ܕV Ea՗fT3V-1r,`QY[qDoW/kU{է:k&PZo o5>(emef$yȕ`HPV$,!7ѥa_ѵ$2-͙LcƁdα3,K,ued98b3FX2KYp##ˌ QjxןYyKWreK/S#WY4rۋdnL ˅G>Fw5v÷ou >/]?.ԏູ +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/VJRYSM+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +59 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/WBZCOP+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/IRLNEJ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/BSTJRH+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 909 +>> +stream +xVMo8W('D~ȥh[eP\% A`CR2iKrR_$3ofTc0Kn`+ Tlk'%稊۔P\ɷך9p/܀>KSX4`\y  c!h VBxɾ=" av1s1,#1 ixXhsO6TQ3ː(IIjAҼ"QC)i)B}'-C$\\4814t!4h +O,y JM/zzIDe׋(C" y.G"$XyK#fZH ձIL+ʢqx J~s]ޑMU3 6)Тz֋!/#Z<],=TB28ʣP+$U<9@@d鸠 w\.|˵_m(}zyē,ԌՓv &RӺ^ޯSmXq>yO>(c/9L\UiWТK3Jb뱙F*׫yq{|"=~l0׫qO^z#J? &% ;<̢_@ *HSnAQC&Ib,ܔ7e]77o+[_ay'^`-s M ǒU_-yw2z? +* +endstream +endobj +69 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 306 +>> +stream +xڕR0>Ea4!! 3t)7@!"3-tla*-O|ɿ7QP{%yzסB&di(,1D8>kݔA:f^CJΠ)5ZB됸1$N<*qhi;`w;iLȯdI7RwCVw]Ԡ|\\J`3o:duClNl|cQ!?9ٯFLwFb {!ʕOd +F/[ +endstream +endobj +73 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 681 +>> +stream +xUKo@+3t@4\[IM)M)*\ٞ}3T,Eu(Z컰 $"&ڌfVd@ƐoKKȑBjȢn$3.փN`l u٪ 6㬃vIsI+bXAANi 8.k=(O 2CL h :P +Fƍ:W e ~_l;:uO~rfqȇPM˧GBNte}LhtNC[G*]agV5֛<9j>ψeT|I/rZgDRƹˢ7NV{qo\X i꺦Q1u>Zb;7G^WI+" .ty*̓ݘ$kGKal_iypakiZIyU<~i"k:񲏣[ ;qإS8~u~=Xfuϣ}{ؖ|͟fwv nl>LqL'QGK:@Γ|DWJS\$|<+qXěw]m[nrXhLBxT+TzlUBA +;dqzٿ b +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 817 +>> +stream +xڽUr1:㨭]WBPps!NƉ 2N `4f|,0`s JF1 e Uǐm u #DX; +0pȫxP7+7-"m}ANLy 6ʀP|pBDGЈIĽ.U!BEHp@n} 7RHBiyJd>DK8V`|pm)W'؝e]vK^nU FEP_ Z*Fcġ2[8Q8T`Mi&qV ax{BY3:tۣB +ܓ "E<+ז]Iް+F!ƅ?DQ긙 Wb3b +r3Ύs\̫%'(Ɠu)^l{'Fwb6i.}:%Ue(~X RIwG`fi$q(V\rkq`*ϦzeW^vz: x#qTB(j ad%=ASMIJ~2ue5Ǔ9NatbkY||g;T[ߞ>/k<\y+FJ$Qvx9cǫa;ZRG+t:Z.T;1s"϶п rʺ +endstream +endobj +81 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 251 +>> +stream +xuQMo0 W%EAainc2BQR{϶ q% l +"" ,`_>i@|8PDݐ(Lڿ"mK[J>19[uUSzdd[>木*߬өjvldE/g۔^o0@dD7P>!ἷ&fLZ1[PGLp^5Lx +endstream +endobj +85 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 746 +>> +stream +xVMo1W;xHZ5cC/ -A"$"J}_@J=4kϼy 9[8|d' PliXf$ ɇgzWx=Q(MzyxC +)V1[5,Z2 .lSA 8P\8Xϫ|ې'CG`g$4(]إ4e\ mSxk|1"VS32JMm[MSIhn2 ΄11[J܂A*@z"iծWgxNڞ(I`ͮnYTfmtFR/~y~K2%rѮ\DHmَ\  +\ oaZ'xnxV(Oix*$Oi0O†j=u-:g} _Ao u_>#}}{x:@wnPDkYZ_Wo LXyٳeM }SN|U~Veie9x~.7b~)ohMT9L_rD[Ga9/ WӋ n = wu'Xqz_(^>p}OO9M + +pXkgffwiH<%*wTz;K[hȞT('/wmzx]>ܗsMQtG> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 821 +>> +stream +xڭV]o;}WqS3t+xܗK@ږP* +3^ƛHQ9x6BRN44X[!=bϛ.$" ])4avryDR!V{ /ߧ3je]`$$ $Z0'^sCbϙ$Pnc&;Rގ%6s 9C=Π(UCedyuCkP PsD{TLy `p: .X/€ D$.ԁ^<jCofflG ֛)NI!uSX!ݘbEu{vC4O0{1PKSj@-7@q̓/}X+ڞ-d|{~ܰcI:B_>#AOb̘]tӐV]YiJ]HS{YBZnװRG&n/EU{m7.7ߑfY<۷GJ7ys~ZHBZ;Nϯ&eU%ۮh*չsL),M"K%R&V_\6W_$⷏`㫾8P3#nnVIBhĻh꩹ܧ]8Wvٴ*Ezd0'RӤ$ s-dr|Vqp{kys3] 1ϊx4[N7nnLAhkSBB8 z3K&jLe'uiKݫ U:| +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 418 +>> +stream +xڵT]o0}߯cVl @Ö=*osKP:GhP^ ̲~{-:.> <(|G!")>`B6V7߯2^'OFTfψ"˜-m#< N>˙d۹c7v擴lMX9cl*1PApjtSQ~V }[neF k(ttdr#D-Mڜ!wMVw 9F^*ꬼm.~ .a~U[Z6:I鏪*.K~4L }f`M?b (asO6˔:M)?Q-$SYrJp*TV[g0],iëoX} +endstream +endobj +97 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 888 +>> +stream +xڝUMs0W!.&Kd$4e&weXr}p9'#y^(",#ՄZ`JŇɨGWzVBzyzagބ#BXdpaoBƭhP|4r@!@q̫{C._Hr2Q nCC3 u!9똱{P E7$@8i&e*FAJa@.Kd\_ _.aFؖs.ͪZ&dξ$um|Ƿ5t{/I|# /@DNrMǰheu4XߟhXo:N{&,&u2$dkT+Ƭރ ;i! yhwHĆ⪪ӈφFIc +*aXÐph3TuZJa]&io0 LcI[}=96[wOsn/W*nEgUͨ;lJq( (p:GQ뇗xY#1G<˳]'~~X~K( m5T_I +P% +xW~EïLJ|t{ڮ=. +g~謻 ,y%FٸdiROJ䵥ϡ:He-?V4Ф'úpl1"[<{v6/ +\p)ѣ;P{pr`%</ȃM. `y戆xwl]RZL5yBu/˺ӛIh& +TL +endstream +endobj +101 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 287 +>> +stream +x}MS0h$#u&(DdZ#xͻ}LA^,)>%@Q(@a%~|7@b"""Jis"Vy (ah#+n하?9{&۪ޛ<ÕY&䦾btצiνZӣAd.{mm &ۄrߊ#9{H&Z^w, ¬l)ki:/ȟ̐bk1ޡX,P!cfP5X +endstream +endobj +105 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 950 +>> +stream +xڵVn1^fvkA%lh@(BA@{3I)YēOs䖄%y]*",?- 5TM/'B@=%j^_]j>DÔ)t y=iV*ǣ!KlC_D8`ՖYMМ9~u4XI,]f}LYF㰚 [EMߤhv92mİ@| + *@grL8\kfdG."k& ,#CaLl"14YML9K4s&m0kK^rCcN[{%WRksPʹ-saRf=ܔȢUF?u +s@ൠtLC얡ncvcvX4 Ќ85 +ۖ 1(NL MV]_'OS6d@q@A0yfڀ gȰ8BRkݯNv$&397eyt~ t(XS_*S`"lP~TLpM4K6#pbww=﷫&9@7Vճcs.WxITl +*k 5; |]g16ێ -t"i +`J`H8QM#cN{kq #4߶nn58~;lq{x;E) ՆÈf) +azbZUӈ :jy(<|ژ G*κ'̼74c(i]G#N*F9y9;h(4sRB8`,RB#yP5=шaO}8y(X6 Ţfݛrא~@CZ"/[&HmL)&W_*6#-'r/HMlj% +.ݚB5/ +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 429 +>> +stream +xڵUO0~# A4&4 Ʋ[hyw=Ѕ$p3\ð)-Ǚ/AZv0H*DػH +8{ ,ulkd Hg zET[(=}0S4.UG`Q +}e:"KcZD]ڈ=7Ӭlv)c-xMkPczwb[t]?+O5[%azGBNj5ڎJN)pjm5@F PޱjχyÆOo۠CL"}$!-8jc$JfVƖR&:NϹFjH {k~2w{W' Ls +endstream +endobj +113 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 952 +>> +stream +xڵWMo0+|tkWQa@@JR*-$N֎Y*Un23oo'.srC^q>DD#?K# Rzd6=bf|ir! 9di)Zޣޏ4T?6dc3dY +y@e O9sCX.R`CEU΅G*0oBF +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 301 +>> +stream +x}MS0hlGa#&hL[:jRRBOyvw&QPP4P (ND;ΊMAuܘ7i*q"A`%WimG"ԳC\p:Q%N8+j8~0 uQ]sT߽χ 85uw0Y ;]]!\5 $X\mm.(WW2?oj_F=SO1ilsN]vnwM +endstream +endobj +121 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 723 +>> +stream +xV]o0}W1.' &]*c=vhA*Is=>) /Ȼ Ld(Z$WM)c(+v=q(&1:PĂU>1 { +BclT)Z&ܩ'aA#ʀQdCPOuG[?owUY}lfh&&B=x/~lͲ 7onӌrjL./Gc9?X2D]CNt>(,㍙ ' +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 959 +>> +stream +xWM:+lc_W1<6e {8vJ,iھߴ3ȳ EbRGbPdL +zV[вzzuϼ >xtatt5}X e 8f >Dr.Isf1LKeZoɛ&tNѤ#g_nj w5(1N~h34 Ҏ2dڐVć%sxD sPa޶9'sdZrDx~i#K=iEPH$O B֟gRr<` f=ej wLI <^XVMo2 A`UAhɔ:AE193RWAdܜ=!(qB5 Ql2Nj؇ +b;& }^KFIa1YQ%?u.`F' i?α)$ 1fLBeD0 Zylb\e7ò a]8kxEWLu4j|6mDcxoCYnjn|Գ{gIPW9/RMj$x(7*VCk~aX3\׽3=LqfФ#bBېA6 c; SVʠjQQ̈́W~uh-}Pn_wos2c{;.Rqb 9=XKGU! SWU$).ps?o%rrh>-D?.s 5t3$5RjR:NʱCʙb1cŲiz} =^l۝qљ$QyRNh(g5Ǩ0k>@[|DКur,<:oğkxǓߟlJ +endstream +endobj +129 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 286 +>> +stream +x}MS0h$#uHs"2BZ^#xw}L(9<XR|K߁XQ$J +7@b""ә&Jr"EѩL0pn하v?9{&ޙ4|5ćIs7iwi۲sh^[{s]By@kU-*V4#σ0/?; +XM: 1'3:<#)g`L]?X,P!cf0k24| +endstream +endobj +133 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 815 +>> +stream +xV]o0}W׾vQ 6lRڅRMsm'q4BT~sm0Y?| f+IB78II9d~;A7vi|V̥P0A,KRImpQVOQiHZ;xr9UHcTc~h&Ȇ.}M2 +0FUtHo`1P݂+$Bѯ tt)n ʆ*rA Q@C:Px.3pXs]!*DPe'@F:T9sأ*1$igK*u;{ҍȇ } ]Ͱ#rva:JF*4eTMD +Zjai_ +?y8\Ey7ݱM#p-Ȫ*bzgiQ=@ac- +ٻI|ahT~@ql3g[q8g՚Uu_1O>pQzb]$+k ȭwH`pwdھ]R#7BZAž걃4ܞT&P8@Vx9Tx3 Kņ!O֏acxwĝ{2`-fIuR~>ezmvڕ?:P=~|>: yrpخ'ANZ=0 keJ.'O^/犥}xx_=n,ɴ(5P-ٟb#MOQOZ +endstream +endobj +137 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 969 +>> +stream +xڽW]o6}߯ࣔ4y)y 꾴j'nZ]HQboC qxL8<0D~mnIEv#ՄZ`J +y/>lLh~1c>ʴa˻h D +0 T.v6z0vǜ! .8#y8'# 3AJdY}ġ2+mW qK02A3]d:gh~ As9)L29B*Bp$C& =MD*676?zǔX/f+XI$svΉ#uvrq3'tZOaGP+l-?C fƲ #_Cx9PVH#_+ƭܺ-|'eqh*xUIfa2_xP+%Sl a6et[o>w:]KvB fde2!6&ES,,o)Si 1`u Z~\4wYe=q R* Q}{<[:;@JE 6poĦoNW=~z×/;Nrx~[u@QHP.=W .PrrW}{ +)5U!Dʰ|J3>H&yv!Ԉ_[ e /e%Bs%!5*GSK~O֡ԎuX7tA:Z +&+hOG%u +\Yu九ڳ "Tsk7/ߥD07o:U +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 427 +>> +stream +xڵTMS0+r jJL:GL2) vmq$owm1~yQO_HH zx :J2}-TAr. +\N9?+= !_J&f@:γ ,SCaf5x#Pj跢j8ݛp1H0l`MT/V9J=~dKOV38PbR=9o"J;d-Ah1>q{ɭ#iIFu n;#56+x%j~Piwf1zLGmqOoNo[^8S o|[qz S +.K^OK&􆰀gz4$On;XV(M 44&ምPNp<\0E}d/ +endstream +endobj +145 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1059 +>> +stream +xVM6W(!-c\gynp6D̼!%>w[$BH3b†f=3F8}`(˻hX '-ˑ}Q-leRݟX {1I'71ΉKLȩzdLʲM# B@6eT6Eq,4:>J)UH9qξ{庬Wq;U>MH\+'=+ACY"H~?AjfTvcD4*wDMk(UHJ+1Po6b*"љr4uNMrcձ8j\WxTtuխ(.;N慺tt ESN2E5QכӷùvWl; UJZߧ'2F\ö^[T:O8g7 txE+uBLi +@x߻u00 cYz"ؙ2~oab?o\Z(j3jib2V: gNO;sV7}u|9~qW/!dZ37tb/N.+oL0/`^¼/PX@W&(X[>P`P&jH2 lħUq.ʯΜ@r^Q>Gc* +4m]q(%KݬSϥVm:M>nu9V!V6'uhY;a]~BnNp1CW6~|R> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 287 +>> +stream +x}R0>Ea4iHR#uHs"2BZooJP@R,)@aɁz|Λz Jp Lra19n"|07CJLfΞ SU{y0_Myq\t!F}۶+뿭E?=DbֶOb$ (V\gqCZ6?׊F{y姡`eO#2Cɥ3pT{brcK <,ƻH2< +endstream +endobj +153 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 1051 +>> +stream +xڽWMo7W(YCR/E=6Q]5:pR$ljw>8|͈f XȾ߮o5+Ͷ0VYڰR/+),r.o^"c!+7!ƐߢCZ MZ}t|͖oBpY;d1RIs;˽cƬ: .:yL&=DbG- ⇸ClÙ, *iwB$t )FA+)ds,+׿lo .B:e +cȽugդ57졸cvHݳE"GI7눱49`\r^'}s=-5Ж6T>^VRȜ0 R5 +1{  U7!S˫i˜胄%,xf%s'ͅ3ӲYiN]h 2lVhS+U*>x.Փ+|\aXq{>JV) ]l"՜WykǬӇ|N6#p&dY?eeS sN@im4t1Wo>χBw^_=ͩm\U\.IT]iX-JjVB4hPEsxN`4DWCa븞[?<STwƸ4uqUeZIOװ Yf맀tj6-Ccrz񰉎>=~x-nN>nRˉMqwaU$<'b-*ҸxܥUjʵ>uvE6RLpԳ%/Id}UB<\(R6n$mA}=+i4'b<~s]|)3,FIGpB۸[KG'Ɖ& rK)^*7u-Hb*hi0\_Sv}/ +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 425 +>> +stream +xڵTQo0~߯cVl+@Ö=*osKP:FhP̲;EԢ%<;`6,OIfItP v.qT~82WUUk("Y^/A޳À8-?735z;Qw2@D +x#Pj跢j8ݛQ#9cl31PA +M3'\hkŻjk5~s1.Qk/Ӌ'1.DTBVނT&GR-f)Gӏh3_!bż\&oJnq#MNe);;U;sJԓ ^~x o +endstream +endobj +161 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 828 +>> +stream +xVKO@WRR;ġUꩤb,H!RpPT^qR}ٵ7/ -OT1@*6JNjc.хn|9|tjo IA&| +Bn+Qftɔ`(aΰ{!W8u8|4 AUMʄڂw,cցqq#"`FG T K …C}Abp#X 2 hA&H{nJpOc >ύCΓu^= Wl{MȒ +yR(xt=F)E|Y ա%_hYa"zw$68D0Y0#H.Űɱ~" YxaOq4ry8།oel`%ޮ ڴՇWaĽ֨6>pV<όDI՗M 4-hg҄Tha`g')H}'7S=! \RSsZ\L]_ݐ|`،ihTSu~":EjbV\X,BɈ9j鈜(bʣGBM~3_uQu,㺾?ݼ\nWE +B(q-]8ʩ6Wȋ+ꚫ2nbv}IV?W ІluliSzݧf}BK2ŚTfa];/(nK|PgsvLl5eN6#糐v3~2ڄzRpz[ +endstream +endobj +165 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F10 45 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 870 +>> +stream +xVMoH+d]=R.+ +dHNv6i0( )v@b.q}~z!?5f A}R)r&o_[ 6`6bˡʙC.F +.0n=x>2B쪃Y0tbY݀LU cuf0z*rY ~epRD`BB!*bHȻ +еwAd}נ]=.Ő>84'sF@'\/r6HJQ +%M7btǥ44&i=Ȑleʪ\N6qϊ.[@K?%;|.\Jp3s??Ybڭc:َ@@˾kvJnh}ׅN@}s~{^כyEpƪn!r?ݣ/@^Gt:P> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 1102 +>> +stream +xWKo6W@N"Z4[lQ6`G4E=w>4@@8&a<&KAF&˿E"I&)R"Y)-/|ۖyzQ>iu 3yzgl *LJ +>/MpewÓV S>eTjD%)Q?]$#^0K7φJeqBuӻ>C̩'.EZ|ږwrDszn*jw|wxqc}wzE1_< ė@Zh>9ѤՕJ >> ׏v/~lTpG=S .5,#h?[RM+QAa[*%(B x1\ +endstream +endobj +173 0 obj +<< +/F14 67 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F10 45 0 R +/F12 59 0 R +/F13 63 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1167 +>> +stream +xWK6WR@ʆ\ Т"EO{IM :@|(Rd Hf>!J(EP}<~.DH4 iFBp"`ČqUaoo@iVv\#G:pJ7 X2 q aI\ڀs>^-8%­@88%V%*zU'ʳ wɪ{UDjDE7d(HȈct-ƧT\pηn>O[/)YsUny]Wݪ*]M_+cCFB1*m8[yD:MyP[֖{׍) +ા sN+&6 j^U~s?n><~?%tmZ݆x,{ I)s<_c11*w;}fT.aF q|CB +WsqsWyUW+k ]uk6`l]v +88XB&ឝ*7E|WWa$ +l_ o`ZI[]IJ[G` DF "@(j$t޺xr:V@<1Vy\;̑[,f%rfu %Sx$RK/Rhr X`;Q4v8ޠxS zd `0VSGbn5۹o={[xTG,^d]oiNW%&O.a4~QG?j|$kxBrBinr1n??ۙ p}cikD?|v9 +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F7 35 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F10 45 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +182 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 181 0 R +/BaseFont/RLUPJI+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +183 0 obj +<< +/Filter[/FlateDecode] +/Length 263 +>> +stream +xePn +V +c\։*Ebߢ~D~K/ 2WX`&KTPT8J * PUnp]F|.6C +)5H©K牟1^k0B< '[F!.8k`N7ک.m'`%zjz_LQ'CLƎ ? +=4-2@8& rsʼSSw.:nݸ*w1ͺ*7J]`VQH!~MD?Tc +endstream +endobj +184 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 182 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 184 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/NGKDUA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3823 +/Length3 533 +/Length 4374 +>> +stream +xg8\m Qu-E$aff SDyDB%D'DA$D߷~>}Yu_z^22UaWPX 4p(qՄ +@ yy ( J*H)HJ|@  +hvjh8u@NpE48 x/1 P ~4X8L x= +qE`d-8w^P0(/ b.v_kP(C(w9[FÀAp,c]n}CBPA8m'f;8Pwbn"i JjAxS/vYKg}1,h $.wLC:MPW POQ)) (/-KW+ҝhe@ X^OՁ]~g@^L;_C^)o:`+E eg +E&6b7Es(&HJDb\MY!DҾBi0k+-12>6dt~n;\l'ӰWͽS+Qo/)8k=Kΰ=:`U! +=3U5 ] !+;?ēOc)aS}Lc%EܟWIS2[T0zJ3%~aaLEq[ S궳H.iJ +EWU3-Έ?%0f))"icSק"x-c'SDn 81H8(VB{IaQT֤%i*"~M (m<2`nl.S& FSſVq1JAl,;߆LҟFG5^;ÙM ߚDU.,0HF_pKoRJF?v܄wQw. ah 𫯝);Bf@MOQv3Y U'"͘&==iLz2%OhysmuZA=.]8%'9Iv~?3\+9DVe +v+"!]Avg)|˓mfS)G^L*tRWEɪQU܇.N扤2/`dfZ7Ug us1N[pW_X(밬e+iϵ՗O.,JxpC4uK)^[aǽzg]D)ꩼ{bсE}~[ Wwnk"Ri+GA0_6 Qʰ.':)*{l$"(+p'Ä6=Al$_{C*0+Bҽ2VuYS:_˙Ix;V<6gc#ѪxXUܩyP^•+i뇌P.xog9naAwqUDF'JN*$z/KD #BԵC0V9a="oJNݞelfT{)մ8bNP-ie&ns)[+Zʪet7*vm8CZP}#bYHUaI;b 8\7&H:V38' +jOtInUnq,Q~peZPe;8Ϋܤ5͡Z4‹NGO"3x8%f9Rn%Dg''ڀL쫱/OQQaN,+0,ɼe j6ݮ=VZRSUsKmmxByogFS 6) tb}v铝Z_;If>mrb9*ofsYb'IcRSRV\ƚq1~ff47b9O uTMLo|sQi) XkCXW[ ^NBm'Bz\I Y^ P\QdpZ Y?D8Iܙ~txyM dҦۘdxGY!HrDv$b, (Y5Ң]}e-&rn.ϹV0C8T~3C `e/(0(0Y{CŨlKҸ3u5;7фiޡ7ޠis}#~H~|mR$|(q؜G,'0Яnf@W7(~'y_+| +G9IP]c:$ڠJd/Ori[&[56}1W "8dqMONgÃ2XkEU]+!{єR_|*(AW?ַ6wfd iP}Ȳ:yX?_ԗ([ET' 3?)wLok)ө Yc{Px$UF㊛F'$g[cz$Q)16z<絑@mOʭ;6S4LߥcgLٖk07Z6"8kCm}'9٪>J˴.!ZG$kBG>=RJǻSҨδc7 {G0:Le>!\qhTMlos!EN.v=g $|0&m Z#8 PY,չ|W?$'} ҫM>OyGԺ ~2~Uy̘u\S\avdj2'؈|\KglWZ? +͓)Bg^XzѳOQ:_MR?q$>607 ϡQ{5zQO3eY(-/fŖ +s2$-y?D +1h(, +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/SGCAZP+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4273 +/Length3 533 +/Length 4821 +>> +stream +xgXۚ*EZ6% Ati"HAJH %ۦiқTE:( {Q:s\k5g>>n}#QB A@j D LǧF@1H7}(!B@*^ 0rWXE#1 A5?\ W @P#W 2r!2c'@?E()! ÀHL({7_2/./N!/J #)~?ou#9[t @t4V3_l8]m  SA9 @$Gb` {'OD7TSԇ"QcbpYC54d !?߬v: +G@F( +E%;I$+#W +оҲ0/4?k{ <6w1q}ʦܝdC=T.bNaǓ4[I\J?;X`,}wk#D-6"R>֤7Nnn)xHsd巨9ؘ384dOjp FVlkk#eQ/UZs3~;^XҺ'?dͷR.ѷ=/2ZVٓjB;%X( ?^#!.u[my8HdzbY\Bsyh|_d>Q`&2xZߙ\HFq\" l+v⺤6,qܖ=*=!tI+ܢdfVoVڙux\drDka`.W-m.bdqQҏ;{m:tS=꓀E|0L"]n1= JFZ@Xi~cAġ}%?ļh’ [{ؔ8kUn Qp 0+k0.4_e +Kj}rJ?)V +k7 G ݌yjBOOY,eܦ!t]* +-:_mxkL6׷K +Gk{u(,o~ Ӂz{ܷoYbN&˵lש]3"rPtgf7"zش.IWC!| CrJ,_NkpY7X.>!f7o3oj3eLp.4#J-I<oD7.{df\O=筭bM^1|]s cY6~v :ʈß*7N=`cц' T=b[= +Fُ{N;I}) ӽto{Vy6\jru85GB==s0-6߇ +?kwKkcdTbsSV~eɠ=v(2:ԕLcvw?sqo8 +t9nߡN$|-@wqYphdVO\Cz5u]wvVnH|ʽ0nqz";kekŖ B.Lb7>{wpp s0OIFyZ22tf\du+`A0F0| ;`bT l|A rN5cwXbGd}y=VkxvJ]i h)(گ8#g\Pa}"KL]v2$gwȨl פɆ2p~Uq; ӟC- +~/h OhJOq7ӊVK@^L;LtV" Ђ2wX97 1!U"E'].GVZX˦x:v~3a{K@Tt٘g_xD1i:#'ۓ^A'h@$&ϓ贉{nN6Ċ6Hap[q} +ٔ?u 3ȼb#^)Nr(qR/Rv?>Ҿ•se +XwS4d!V˿mggXo3r! y>h~Y{G Ў“Y}JUE&.If|@ Qe(^1V@@xPT7ŵ@ Q{Zg+ɽ+A] WٻUk3ԣSG›> +Q8$ ~^Y4_ ԯhC{#]{JԥĔ .*c+syn6ٰV7 <ʋVB Nn0hd;ԯ)Izk+Eo4iC}'N(B,6̆яK|M+xU-/qĬ3@B+WTPM_B9"V<;BUHD + 3$Q X^d8c+Q003U2Cc\7"dLN8ei˺+#Ow6A> +X􍊜&|cf60ֈ̛ztʺT׫ +="4ݫ-|m30KW66@JT|ywI7[gv޺؆Zi\j[RMt]4XKit$qbG3ܕōOz >7K:y^ Ǽ^̨5+af;41I&']&:N6\m|V|;y] +\9aI[U_l>zxke J8'VUbrÎz8W`>:zC#fNɡ{v'P^R4AVTpZz&0Gx(wk'GT[&/k V/Zsq[^ߥ5{߶O t&L=t-\e(5Ʊt+ݒhpcH?{zՎj",ƞy:ö5K##(V.Ec7N,;i@ !W|@D e,1B0tP΋S#N!ml +2BEpho\"N*#5Q:54˪eԃуl_ 3'\n&B6*j)i[O//V1kZ-e'hOx + 6.w%~y qqΙ8{wQrˏzNs3c#0PVR/%xF +/?sA@7W(ڙt +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/GAIAGZ+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9090 +/Length3 533 +/Length 9645 +>> +stream +xeT\qC4ݝwKpw rf}e|5:_*ZJ5MVqK{ =ԙS d@t;C̝AN. +#˅J hkm `d 9͡esg  дڂ=q0_ '+Ȓ `i tXmZt%W_.?I9-`% +]z4`7qU!G[b {g#@w._l K[ȿW@q5WIdf X@̃sD`5`ױfn u_P38ں 9ϙ-& [BPKsGJw( {w/V.^N{!(UjCm\@R^>f. ?ogle? ;ꧩp°BAhZA0\ +YmM]mC}m2=6>;UH~s4!BMLz99M 6ժ++lޅB94KE!E@mQ-n&A8I4Q mC̏:j8RYJ*#_ 3[jzv~*sT b4g?)W>eiu~T\dlko&#I3n#5;M2B 8c[FZ B2Bc#aua2*p˦GLr0 TV5 +@73JQI|Vdv8N٤>l*GUqGb[PAgeR<ׂqx?"9ہaNIY1HKMM^)-+5/Eح|n ̇ SI3,q-M6QYw \?FיC >n" I-qޜlaAbg $Ⱥ́Z}&G>E(Imcf"PkJM&>#\_}u Al@YEӟtN-t4t|~C~|hPF 2 Crupn1|bMف5tzb~2q JQBSZfTM}β7?Fߦ4fզ-]$ +/ͧ37%ore9ZP|/ڟSv .dh$8jUbi)_*4B+Bs&-剢|03S*QDa}9TKU10:}_ȵ9Ebd\]݋'xc77dkNmDHI}HW`${(]}Ӱ"@+*hJK_pCɬ|4SÄ=(?Ȥu/#a"y9GgGqݑc)q"aht418cjO!-4m{}4N Y4 aT<=,s=qhj95!fg+ f^V-ėKygτ%QpY;|馮ɴ dB(/F~|IKdHwfQ,Lh5Ǽ W +"?sRu:>w:ԟ>S1_.i>E"1U KRoULO9\fG“e,i;8ې^ՠ6g`4jIu󛽜i.gWͲrN!4ײqy-שy|]>0Zf{0F J QwPXх]wjI.YJHݠl4*v/P4e\vY 'V%Ɇd~XnGLf5K`KZP3MF[=1HV=Ύ;iPR$XPuǘ}x],dBgcŚױ9 TNeC߆l*u,Ȩ!Ҧ?!'GE#(|Y1Uf ^D'}19W>Xjt7)~8l*hW u\ f@lkbRʜziC)IQY%_cRʗizЭICo,ŮRuCff ؁"CC1x [ +=tiW4s`)+-9jex.Ԗ +  /Hw#@>A V=9i:!ga$r FJ7 SIL0_xCGUUIG*ju9} LYʛM*|I(B=qWH Q9IHv2> {to"],rL?/?^G,替i6Ғ䥌^-b=c%fPMwG^R +LKPS_:b&"Wyҧ97ThgVORSu>pIQq +*isIMUˢ8"V=ZΊm q\?iVr(4ۀCl< i0F}9 2KgJ+;b?sTI,7`tA1b|ŨW=wQ>EJSug>B(I#8Ma5D$y 1uWAuF*J$z&˓AɂZewzp\,sY"dg#HGg0F곥p1t"V*v$<%{ADkj׮WpH*ug}T8pǢۏnսosLIoXAKD +^6@ l VrՄ9f!~]E1û-RKtkYc~ W\BY?821ĚEEdt B 5m$bΉolA{SY3.i0YNUa!fMXM&lYP y8.R%1|)< %K·_nyfmǶ+8 ϊ;1|$sk6C./KVY]yh/ CqQWȿ.,, +91 X[,:NdF+&؝jT~y=p\--$ˣdHSƓ봸{(@ oe C dĬojƭ{_5Ehq>}2%3sB:<%<ԓ3TgԺ99) Tr:9g!œJ{&JeP@póRPZ_/;bשx ͽzShߩGsiyT= +W=sv*Dwӱ'XMf Dh}3AbuHgwIC 00Rh1\oݨLYqaB%b1I;^>!N I]CdJ/CGG*1:zPj!?2V& #C],€'yơZՈ3 +JYzT&PeXcaǍF DK8=%{936ZAOr>PCkS o#_ :1zCnbl4ߧv;m~;0%ex$B1#hgnG{@IDD"9^M7yZ Ԫ$K݈;/ÏBW;8gsɏj+0{?}xxjco9Ȏ9iўW11OLϐO#C^ח^n]Kwf,ލ!OVO&_| {q\%mNNIp3Ly?ʹ A 1Šn3qߎMfʦ='{ +_NȄq}^5zĽSXIBVc,؍l{2jcfKÒ;.rW@n9D:-p_voe~M]8ӑ&]8 sS6Rr:kOD~&XNV]L!VJj=#ܛ 0h [Pۦ,:BK)wCN\aXx +H= +#hkxgNj)[Hx ;OD=w+3'uIJ + ՝aޯ$6}I:]=^ []v="VPu$yF<2Fwƿg_sCƂ].񗊊$M㌔{"\(*+8lkE7b`W#9@d|xBAscE! x<[xnpĨ9ڸDͥĢaR3r, J~\вCN;YzЙ}MX&7ROɗwsE|!P^2dዽ7".-j1ci莥QJwC/1= Ȯ?}(KA%to 'D'c2{6WOc~f;:6 x]ƏY1:#K_;pʵG\KƵ+[lVu^,(2̑8֩?JEp +Ͳk94~8 fbJyoByxOlKa2jOn?nϭg HŜc!/۞2vFV/Lnc;7|il6ْ|[ GrVySUch']SUHMhSbL{%V4tW0),ƏR&2Khh/]rkE禜 +\Tp8Ub@؋xN7Im#C +k_$jcP!? 3c3󥷰؉kY$b>/D*/ gנ·smBs9Gӏ +wY &ދ@͞0ذ~٥v[ȒAG7s%'& u;0&jZe=-i$"g.dAߩmȟX΀ O N:LhAt t]!%33l&mHU]MgoO `[SAMH 6nB;AVp@zXoBȀY`,ND(n +[?%R?X9&V^#EZe &6#rMBfxz~In3kՑ1^uwgIBv1MsȾnPW!)2S4ٓQEX%ՌB}4_ +Wv}= WԚOCulg +YG_uf9)a@v3e&?%P4~_ާ!G.mX^'Y;s 3aji>Q.} `m$/_n(GxSC*Zpe[1Dviw1m'/c5=Nm20eQSr8J+9_X=꟪&2.7ut4!X۝ى%քW|щ+ZT=}[O^='t:CCV%E`. 'tGn^~cu2G15I:^-)׬QDpI5pƏ2#a"Hhߠ܊Y cX3 t._ DڣsQ8vvW:Π*3H (N5P'K0rf`AE_HPIZː? Fa(7d4" |dz+_I̟2 +ƨbDž&vyxZX`wb·.Ǩ<|0~0rPڲ(]S1ĕ/ڊlyYT]/8TMDw;FBfD:UAl~bI5,w#GrltwRQܻCFMu+9 ^.q& R΍2/8-$ɴ}6%2Cvl3Fw6-G%|"#gA)[Lufo!˭ v!,:GдJr`Fٶk?3SSTބ9@-h, +x7Q+?çMؠ,tˑZ"ח8:kuvd*߿1NNK-zE)+N(5~^:xfhɌaRuz~ jIun~X8& +sT/h+ßL(pzЅo?roA $d2tVZ~1K-؏lQ].(mZ<| q:}RVowl}L~ƌG s5<9W͉<5,C_l <^},Bc5zv]sj_ErxۆSޡqvNyF2ɳ侻Q{6>\Nǒڟ'1u]=DMӷhI8x,Sv.պtbkMD5\CtNO5˚z12JK{DSK* ȗkiw>L_ i\TXSY^԰}tI]]q;:gZ]g] +v[1荇Fq'E#h~Wd5y(枒NݰL=ܓNۅ y^w*I.*!Y&ա93Ѡ:I"[E)[ɳ4Y^Ѓxix)ӥɔe#8OoPaU`AEaQۉwTmc~_d3-pzzg*qoA<]޾pڭV0UT׆`g=pg Ey ֻLٻwxz3yH}"7{߳v/!kǤȩ&̣DZOzpc +ڑZx2G6Y]N> F7R(r]]Xj. Ǭ3>>SkageNm'ҋ`3 .A@ԯM&Qw61$bFi(pulWKљhU[鬳Z~F85m6)z~Ynbacq?Qm)"Zhت͢YpLm?ӫT}ϩ¥H@G)s qFg(U>#RJy,c (~*B)MQxvԳ6ɭu?\5 0AsG;T" +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/KUKDYT+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"THhZ(&H/TH)A0T]"HQ9y2|g׻~{ml&pu@bqbPq"HP* CZH8Ն㐊  RҊ2?H rvpɁ40H# 2\!p4A 4dO)DP(rā(,@($rg $SEA@4o1Cp]/4#E[ApbܼpH+./8MWhAP(_$st9ў?u$wk@@OWng z

= b'V8jpv:v( +N<Lϊ粇3ړ*8tؚ(T wANkݛڼ ΫlSWA*k:a6z}vu_[qd|އALlNn[Mu@MGew?0 BŜ(D=Q6f9'H4/=M#)XMϿzy׭*gTk\ьs7j=#(NJc#r@k^FA؋x2Z '|bsi%_ۚX_9и7cpHX%{Uho'䪋=cR=.UQ۲:LZzty &>Gc?ؚ $Sν/F_y^Po|͡ը9*s5ҙݏ죺 +qVR=5"mIRHͩGw95ڈ`]/ï7􍹋ҝ#|vT\b2r}wNA 1Bqz=ė$Y}j%_CLU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'ӁYUks#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+ی,07M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"Nf\!eÊVyDŽ.t7AxbCB p=9=ګ#m|5trcfET18@Wg iG3g=mD9˅Ŝ([/ G S">GUQ0S]Ey1Eי@*䛃)JGq5> r\47V)Dϫ,Ȕ +*/PlZεu5e|"o}&=J{f7IFNb3X&*l93#yfB GiEsMx(|iWx6 +7¾Yjr'@wB#EN:|'w -7wR(Ms8Z=4_R8WkO$ +ͻg كsvhVCԳv^yN\M]i"L.U4^ʧVvt77XS:+o4ff=&iW_˲\pdJkt#1d#g7Ѫ{jD;F& //vZ7kygFv}78ck8Yi6eD9'z`z'X;D̛~+Xp֊ ̴Ζx;lf&vrGSȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPT}Toq7&qynʄ[lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|p/3x$Hէuryz{B ^\Y.+tB| @\tgƙ9HnlٵaxTԥ^Sd:8.Mx+MØX9':2nSMtp1:!1g0AJ. 60(Li'_&ZFbh>Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&(pFDun6TeT]ٖ* +{ řw`y -?X.ή$Jo +ON.s *}p2*c%KNDn}/:]q +7A%WgQAؼ|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],o=byl0uDiBwGM}؏ 度<t"l@Au?fa[pt5z0?|$X7J:N|_zuGk[|Ϟaq˼ɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩkmsOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R675[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2136 +>> +stream +xR{8yn71jꭥ1` 1ȴ8Ġwƫ9Cf؉• +F%9H-4CʡVY [ȩmo}WnE8-@b1NAk4fna{PqtLk`1NX31"o1DzX R"Y** lP!P 7&;A>Ҭa0 AT2 6 5sOm*_bΨI㰙ba(G5T}[_{ L5'?՟p + b?38,P"_SO F  +L@jA|/H|!5S|pi_P%7o羉byP_ +֝טԪx؎VQU_MdS94vǣalX iE*(k6G:Rt6R@q)<p?C9?@¤A|.";G$N g?2P$xh47ߥ +y맊KMTKAHKݟ{"mmo <)0AOL¥kM4$}_mKE[jqj|ԑOz"I=^:<~;WF@~?8T^2kXQ=44:sYr}\K,%#`~y`lXfIyjrKm24H"k+|7^e6`L'XF]sfu'ѳ;YgNV0%V* LN6ݤnc@ϯz}2IC׼Alq*,,ԻrH%M^rVS}+/{Vgk2OFn.p/C-wL[HO L::~+=8?mnhoOT뷾"?$Cz,2 +XO%;/ ɥX6ry&޻m6GFk^!^B8i}H} Ϊy; r$7ng͸1KM~̊tesw>&z+zABY"ڇh'.32tx~<{Nm(V] NIF\JLi푧4ۧF{Jm)CڠʂQa&jP +V2xCslNwCR(7osbr.NxvƼ]A)G{5'Yvg؋$TyﶆH\\r;%Q!U7f҄iGY1fo[q{_Wzrͼ4,ŏ!E>:>U/$9nN veC~RYe®TOҬ>=Fijds#Z + +}J?MS:4c*#ǀXD!]Q}$NL3S/hiY1@}{~sKū}bϧl{%,4؈P4FWɓM +ft> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2214 +/Length3 533 +/Length 2765 +>> +stream +xy<#o4YBEfېmPL!Ec1FcFe)dPZ,)ۋ,Gs+a03"Q0p`} Ct$Өx& hip=6JGQ4@:T{3_N&ੀ= K#AfQ([A@D2 x$2˚E~Dߟ-XT~94*% ^My: o~ bQ(x?>ޗL Ac1A:`O#tVg'=H$|Z32J Ԁ#d9$bL70:H%J>6?</W>%:9pku/YR 4"JL<)ܜ `Z: t!jy}H  gM(t?b=*뿜!Ƭ1Y>Oy¯7rˡXsW +Ƀ3֢W8hӲëa2+[V|Z\|;>mw-Ԃ:~C\찵EWJxNC uh*o%S\\kP7o )Ӭ$#.okn`:td1u\jOaԠ`Fh +Q!ctڹipAOQy,|[//@Q#=W*/ 7]BZ +Y\e~ ]$z*F)ڜQY&?bNc;u163Ve|/^% +?Hx?iZx+Yz]XWfh R`=, fئ 、:2gGܩsBjEu6ϊ\CWU.3r}sA59W5m*Ol<-!-W$0\`sc܃yymA ].5rHç~2k5넛:k8i8Rژ(>RO%ޏy(, qU?([FC%ۯG"3:Tiw& "A Plͻ[|"NG6%{5bڇ"*0lHOSb!}">g-~bc~Ss|hEwL4&<\l8 هQ冻RY&Ώ-fjD[7Y^ =ѶDv'913oY׫lX"5!y0ץ/> +x6:v{!k- <9hxͳֲm!V{"e% C2lނ,!9ŤC`[_;ccd*GbV }G 5uL'qZW{+:ئPS[)Z_vkyz:MHQh&WHVFGwF뾕8, ~l>2?ks>>P\q՛y~XԽ8+;X 3 I[5'SD AhnܲiG.!&i'j S|Fʘڎ`׹R1RF/*G].:XJ +{Q>`ur;sItЦ 9~'8VϗG(>}-@vzOO|GZɾi])+λ:yX_[>7(3dx渒2L/\ǚ#NtQ3J_ هC«:Va'ІV%t!26>dx#F㎱hB/$(g ߼/> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2042 +/Length3 533 +/Length 2579 +>> +stream +xy<IXo,%06̃,ˤƛ5Pґ[d[UJc "K=|\}ݷҨL=> X;">eMLjghB@`hC@kZN + bֻx*g $+2p p = $C 0@$?HB !QhG\:n`HY 8WYcCsm(쌧|__T:)CuǗOkhD5pcDytiʄSj ?g|*u8#3|fHӧ*wWMoݦʱ4/!CWMDo9eV9\%0ncR#@aKe\h;H}| 9/)2)G1ՋcĩSjbNf*JmvO,JD[pCNFњܰ.>͹3l}|gg% +Ž( ~dq^S%B㹫5DC=8n eE3oC^dQG96gŋɫPQ4V%\sEYb¸.A+=Ϙүӳ[(_cT8JYCzS8^+sUkuOIԤHڙ>35ST5TܖQܤrX¥^,X#IS+`ndB7 kq-9U8rZfJ3˙k}Zbg}0͐3صc/39exl%V^B*KC뺤$SZl.]Z=uQ<֨qzUx5f/:VcoZ mc&#j0UKm8UR)5=iK31fw'h:4 ҼW j^`CR6rNص009gСFOMHo]I=z>_'I}Ħ'2]\;N9"̌tŗ{WǏ\l熋ku1{ QwID(hD^qLVr52# #TF,?)}8:rpujpgIm9S6=F71=Ia+Mg%`qۮ[WhKz^3G4#g[Cmz2P++ 5eB&‚ᲿRKU''.h|ި(qH_ҠA_xt/W{e+'JqfZYe4=yQ{=O v}L>mqxjj=4GI`QKkNΠ#K|tFyӽ$FG%NoZ[ ;T$ i@=]ގyadgpҵ +Jimkrc,Qd|yVa%NOAp tCn[Mxr|.oܮ]ߎaOvK*i82ƃ+Ho1ZbZ쬫`voћrg;/&p2tP;"/VUnVq;-{Q)U-@YcV đy &'Rr-)'t즜t&zr8Qнl)Y2j5KrFA !u)Mabb;- yzDl .2PCbԶ&\+wۇ;Oet(.?(ouIu6 iVbe^Z~^y9ŀO#J4sN"e$Jӫ+j7k>CXZ~I_ 5‘©K{z.Wa ~-ɸtEz)7{& rΈmvnۚI7s?O·FB$KP_9Ʊ }qt̅;r%m R\~!T0 /'dOg(xz0wT +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/MIIZOG+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 993 +/Length3 533 +/Length 1523 +>> +stream +x{8TiRR*mjˋP16lhs9:sUiuT.Oes"%2& ==*YҽY?9=Hӛ鄒a$h&l6902bSB$И=`$@,{Kކ`6G,`/b'F|\D>"$8sB1   #NhDb0J % a@pT)Y1P HB"?2tD >9HQ(%Q"ZQ8.XՍF8߉1!+Qsp)z4?#B16t,r|# \7WOG;z"8AEcb/rL.k!sF+hj >x"gk*ggRϴL;[Ua[b$ոI07`AbQJ0q0LY:j\Cum~'/6wfú^jI޾FS]z6WsԅjnÚ'beɿ4v3I(T6>wR#)G4J^?Y?Еf}RYFG?WP1j7/iq{XmӸmlW)tv3`E.K -=6O17sKNդYu>"2:l?}} aTϷю'6Rt"KZ#ͅ +JFNZJMu#__ rƧy[Re|;sڶT] ;w3RsyG^<zșRf_rUlӪ'Ԑi+i2H}9,KvfB^_tmTSna㓪s ۀW =-. Vw#D!uYv -Z0mZ׹q[2R֮VL,FJSż\tڵUeɴ㠇]>Xduصh*^TfkZ~„Gȸho#??bE"b0?]Do +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/SLWXNZ+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2125 +>> +stream +xgXSii*x( %@F`"EGd2$p$Ci: ,CGED " (C@ G!b&s{9>s>dF0ʠh$ 8{xLȂt" h[[ M-5B`paBP`li " +!$"b A# +\{%8FHh X@0H]kTxz,_Z 3BbN2Nd0˓!`pW6Iů/m" ra`, x0 !6.EB$G: +%eY"\(|bB"5\A:k9vy{~ ԟg-($ +UW}G'1xt2IW(''FT +@[4 X[bCA `1_WIl&ςs!xB `N#IDQf%)n"Up,VKL?p.C' 0 +?/_ + Jv\.!D:t, iSI"f ^6T~3V38i㹸x.A4n@!"(Gbj %Ӯj^[1j|2VUn%園Dc |T1>;u(;MNOμu{iNz=h~7ݛA+~4MI+tnu&j'GcG<3HR3Y S6wyXF̨l>nik!]*4hxL=ڮl".2zT$^6h|7&fi٤'mfWyS(&hljQV`7+Y_^LsWS Ժ s|"&TGrlUhX6!]2ɽT{|yם)o1q|:Ɓ]apgP~.,ɠ c'..2b+qle7ͱ>+&ND ۋ0nN!Zo'n}<,Xe2{-_/#=DFH<]=>(ڪu C(t lP``8m]V2juC6Ϊҫ͒רTr=sU1VJk0hf!65e;JՋywG?-T}d +p@~!d#MC03$Â-9&}ƍۘYr˼<7p Q9RSacMKnRymile?N?E!,>]ݭOP͊w*Ks5p$/9Mnd6 uVZԗusΞT4r}tݾ!«h#9JJ_閄vmd4#ģԞ7W.@RMumG%͕]3[Oߒz\)13:7`hwNuɲ'seaǭJnyG +^U- #o/oRPH:H\|l*\Lsaջs& %. gVN74~gHrkIzOwdz5s_zjPh:? HIm"ʲa+]zSPI:T {8E!EzsSb !>_󟹖Yz*EPw(}lxx^{xCOK=Bip/$+)- $> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw31]2fn h FNRȒǒ%'%d߷lEB# o~7'? _x +wFԟp8H5f$.Փ 0$ +@ ILhAb<T$lgb`;k'Q6A GG?%: 8!r߸risTHz <WW*==3vTT"іJiOTƏa! $@CQA 4"~#="%.a;pA,5-#Z)4W~w \NIgb|Bc_/6ƀ6EoM:w!_*ꃯ +_ӖgP@']_/ɹ\+-9=/k(l-]!8<*hm,:dJuqķ)87MCHsH"rL-ኙ>Ψ9IB)!՜ۼqz܏>~V~Ф2ˁW3[ʘEu>Hhryˑ M7c <ӆg}%()vB!Pr6ʴ2G{B֞Ax~op5N}F׃f }!”mߤ|LQ,ӑhۺ&eZaa,%rf"Ȕ4Նx&NGkfYO7-WL (a81_H're7X1Q{ⴻ;@nN.3&W}lQ^.]1o~$rՇWמkxࡲ:6Wލ4  Vh |ټծ?k3л`.:$A`eM3["bFb9og~_-ByݯB +/Fi%6n.^cK(تѩ٬;WeI:n;!m8ʙeDsZbz[\XJN4}yG) /vƇ!\’bGNaܢ: Aq>H]yZ}JPLӉbGZfo>қlxv^s12 +|2jű- %H}W^>h~0 jo5;EylIxswpz8M:]ﱎ +)pPdL?S{x(AeR>_Źɮ7-gzvX򐫬C%]nCԧQv69u7{KwJˋuӆ@{-Jp hTFxrs=ih)J5}iZ`qS sw]! ̤\w+>\ńk6e1IC =V; ^ 7Mcx&p/ iKRwQɳΏC*/(ExkG,#)-~)AsΟ)R  !U[u:fW 5;ET̑zl]Y01nFDL50 o$Fxp{<rmD}G^2F,'=u q3ޘHڜz1ا +f7 +r?E5ٵb `.ͩ,y/f0j Ϣu!8z(Ĵ[fɢNow5^qmuEaúi5>]*nfK 'Vz3FR5رЍ5.\寫Ō6eRj)g!m{q +3[`r3j6o',L%7R-pswߙaӮ__rݼ:oYh" +(oF\=1l('$Y *4u^PRϛyÝqi5鶛V,c?mrL_Γo{'?NE,_u[;v˜r#6jm4m8*^q6}qP,G EPci lƁn(&tXr:tsHdrQb]j<0Ǹg\5UdYcxML0S5EpG3Bl:h@ L.Έ*mNYmTѨ+-bK.˥$kT΋|K6'HuKoqs}Phc.yr 45<~aph"5^[ Wt0(6"2MQ|kxnj[|5q0k;)ݧo?h܏ +Slَ(Lzf5< uՋ':JFMYb!u*U\Em?qC̜+DU'[%/Yۯs>Fv-?1Zɶdk jn3>q+fi/fuYK&:`fѻb"uWRq~_h !-X,'vnKCl {_CBQHjsNqQ{1+GQU \VZqrN{G;BD['eZLl'n#^c2S0hn+3/(|[E!GBer{A[ZMSJnyM0 +O!5=MY{Fz![qq a>=h%-Cs\xhk(ܤw}Q:ZRK,)!4.zDqي>U^-Sr)ӪԾ]l1wk;?+ڟڌCkVh?@ x:F}Gkr +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/WBZCOP+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?)?@ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\-w +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/IRLNEJ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/BSTJRH+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 9976 +/Length3 533 +/Length 10534 +>> +stream +xUT]퉻qwwwww6q6l&h Awܝ?߭vϽ/Z>@!ca Tpipx8e@P#" x<ܢN@Ll\zv quo.sAv>[#_X*jC<{ {`7) N{wW(ƥzh\i/m@p { ?Fڃ n9Uqɸ;y+ ;'wn $o.Y=}U]eq5նC=y| ??#7XMqN%+'ss2w"w}@Bt42/qYU12{) $n *זPtKj-E}|5(g`]=6.:ܳ3tպ96ά [;/.}`2z3u#~I bGKxe +@ӡx@z.y?k]1|/yP4ԝ$G;^ +PCMVDt^Jy1Ld]OR2itYQ:kė.3U}2&9rĂhNk&gC᭺2C^vع/عvcC;N𧎭_} /R׼"ntOQ\AEvƕkyA&aJ|/犡^%-v*3_dΞGE&YY30.%;dVA마˻;?އL^y-ix ;5YƊ>gxR7p6 W=Lxo=g\)IS2΅E.N!&yM77zm»W DrfoT +}ƚ>-!31zvSdZ&"+BZк<>{qLroZ +c&8iu=F-xI{l@_zul}TtFli9.b,rq([P>FBѣ7I|wR~蝿Bױ}q(m/vi>;Os)cRUSV+!Xb*TE7dM9w`͜/l)u`~L-p/qSIye ῘSl/a`([It~nOwDn90ߤyLNd ~/| zG%巡oE)}z;!`%: ?yDGK:6"ìI$ |VWd|5 +H{2,>%n$T]_Att|7\y$%dZ4 Z ++ &.kМXp䚅v,<]֤8u_W<F3$۸ihD(~90$Gr1_f%[\!=a+dǂZ}'F{7&O\f%|q؝l ]L5De7ROaI&6%;ǛtJ6[ȇٺr458 +q`*=x-Ɲ2KfXWBٮ^`-hLA)Ġ Y;ǸUƔv?jbPmO'HhF(,Cgb:˥ujv90 dۙ˜e=u,MXaC1&S|疇-MJLvȔׅuX;{owY6һ&("NE1sl5x}߽̀"oQj׹D;lq#]+/B-gMa8C?0gN;Ʒ5*1j5Pw<1^K/Hh]87] ԸVlpc=ep>P>HyblN{vEY4] +T$xf4?]y5A"L d+̽A3a9cT)Iu)VV{,e6۸|5P#%ФWl7r#؀N }(t< bԎ!sA[3J:OeҀoxh 8:"ۋ 2߼cv\[k]ymu~$N}=8î\+λ},-.mh,;VQl4Tn^,l |sWI\Rx҆!Voǎ %h> pٿ:;a2v@x@aji5ݮxb⩅+Nv8k^ Lv0kR?ܘ9&`/pN]+Gj&zu{OoFTףED7Sgo따Eܞ85B:s,!3?{`Cüb;I]܃k, &lgh +AWSp!RN;>:hވC2IһDK5{H,7shlUWO ++~1CeCgYhkE[iu HD~Ȭ̹IEʈܴ44^sJÞ[~\)ĐS2hא$"9a~&Hqg̤Zxtj:^R.#w~\k?MvzMȾ<.'ʪ9lNLƅk1 /`4BAlwyAO)ₐQq#;1𣦒]V߸ +tuyG'Ƽ7ol􌆦OBKMErbrTx8>-(% ٰx; +d鳵 ~vO-X0Jw#t ;[Lo$|[Ց7\? .6.yB8N(::˴+dWk>ȴ^4J9)~X 26L+e)hS5񺥹 .B3Nc9)z֤:]ZT2~`Y~WBGL䆇P̶݄fO\3npnCb]wh*T2 + +~"w2OvXO%xtZ! [kH6|zkċS72'YF?Cqߌ\wZ}Srt|;lK>O*fOh槥&U}S- YwyYcbEc̲CTzΓ[U-?C([X*yUH ِ4eǑbٞ%Ȭi +FV3y`pb]! JCܸx= F}v9#^B.@]cھBƛ݃POH0Dxڃaҭ‹ 妷 -J ~'(CuPPٿ.ٳr7'c#W4KQ#hC0Wf /jl!mdOS +7;Ƽf RPjԍ%I0r!~vNRjZIEi3ؕwt2)5D;;*hW+)<0Z%M{ݸ6+ecpWQs1:sT*?mHJOZꔲZ1pz׎3byTvߴr"=$Ě­TP]b.zgxLep3/̪JHtX[rLByWZx{s\TyI#Hc;}(&q( +@qq:ؕ 4*}İ{-HGvX?F7@B +_//O !9ς(3NBEDmyHƋb4E__is]L0RZߣ$t/|pX,uR؊^>:g$h`o'dZCTϥ_݃}#ܝr6 ̛MEV>.n)/ 2lAĘszn <-)d\:yO#bG +;g`YjYZ|mtN!F oFlɓΜEf7ȳ<k7ie_5Y k|'2UFf !vL֫K4"G' +YAuGY<ήF3ccxK,̑xQX?f=M_N1eNSXKJDd^NwT}VWF hpJ _$y2jBo)u_ْ2y/}HHP"<{lŦ~ia]z[ZGTWfF *JABS*W9 [nV9Nu!9K>"r‰]0_5n<}뻑VJ4f ؤ]{E&uʛF?60ܺ#w2_-] &S?~483odMtjY8ðUD}=D\ Bb㝬ת6(7+<}܋5W^I# `v +^J(20Ɓ;X֙cD7gre;PEh[ifD}󎃩pN+яOCJ!tN1tLc,#׊^' SJb˼KN\"V߉~]fOݹ.|bH\( #9)pnsXUN+?W.w2[c>V3ߞȥb„(u)Ԇtͭmu?1#VʢϦN(k%mO +:&%"bqX[wMb:rT; , N#d@}o^G=:E]F7qeg8挽6G|zP# |꜋mnQ0ykwV0GM׾Ώ(֯T"2&#fO +s&űp9l +^YYtܑanW+oGB,'WzK_/SMob^cAKߺsJ#WҸ+>._|~9+L`{1h@dn8qad+h~bd%/]uQyMK6 ҬL0NQtNkͲګK<&%JR"NYyul'R|<\Ϭ +GŹ*f-4b^P.1, #0IVͧ v",&7ˈ3?OWJ: }wzα$yl06w`t^mzV˓ IoSյFl:`LjGNSaNHm}^ב8#a!m{'=%bZ/9^h7lswLGl1y(U f2L0T!rt޳OS6/o 93B\]|;Rn4Eb0_IAr\o3gUkdD+ z1Z +(:-z5I^OfB0`9e<\=9I2k}LXO74s$oEyAA:Oq`u`Mx5h7Zܟ cq,lBmp djy3WR)>"*ži+H][r'RFۥdrya5q%ʬ򒴿Cڇ@AU[ܿJ>_* +]0܎yА2Tp.'f= kzJCn: +mnm g{|Βe·[C~kɊVHvSo_1tEF SYż).U Ege;!WZ-6HŃ<#JԗU]ox /X2*b)aTp6 +/~Gb'D1g+]w0wXA? +_flbUuB8P_Ejev~GG4QKշ_a(d]q^whY:g @D_Swh1ËHbHG +8jyPjv'F9v9||!!ZB*8)źɯ >ODD|Ւ%ض{%z=1Ok]DISr3mZQU?AQ VG׶̓9 Ӎ{C{N82:HZukL#q N]&iC{ m=PR6p׏rYA3 |N?i'iʷq?)U(ס&B޶neG RinHh+scyK&տنoR!iXUf|`U6Rti\A1j@&$,`ռaAQDczhq[Nl{B'¿*/SBƬpS/Ǿ.A=綋iloIv +8a,h( 'W]ڪV8byʣw0_^0OYE)AQ~Rڟ903췝@=+3>)j%emqnxA=fCyF,M/ַ3zT3fyTwwB>"cb5laSQHJ~~ݭ2r$PmUȀ?kcmUkR'jw2~>mc-JM-SYICgؠo //v@  K + +endstream +endobj +181 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/RLUPJI+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 180 0 R +/Flags 68 +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 186 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 186 0 R +>> +endobj +186 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 185 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 187 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 187 0 R +>> +endobj +187 0 obj +<< +/Type/Pages +/Count 2 +/Kids[48 0 R 52 0 R] +/Parent 185 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 188 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 188 0 R +>> +endobj +188 0 obj +<< +/Type/Pages +/Count 2 +/Kids[70 0 R 74 0 R] +/Parent 185 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 189 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 189 0 R +>> +endobj +189 0 obj +<< +/Type/Pages +/Count 2 +/Kids[78 0 R 82 0 R] +/Parent 185 0 R +>> +endobj +185 0 obj +<< +/Type/Pages +/Count 8 +/Kids[186 0 R 187 0 R 188 0 R 189 0 R] +/Parent 3 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 191 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 191 0 R +>> +endobj +191 0 obj +<< +/Type/Pages +/Count 2 +/Kids[86 0 R 90 0 R] +/Parent 190 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 192 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 192 0 R +>> +endobj +192 0 obj +<< +/Type/Pages +/Count 2 +/Kids[94 0 R 98 0 R] +/Parent 190 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 193 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 193 0 R +>> +endobj +193 0 obj +<< +/Type/Pages +/Count 2 +/Kids[102 0 R 106 0 R] +/Parent 190 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 194 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 194 0 R +>> +endobj +194 0 obj +<< +/Type/Pages +/Count 2 +/Kids[110 0 R 114 0 R] +/Parent 190 0 R +>> +endobj +190 0 obj +<< +/Type/Pages +/Count 8 +/Kids[191 0 R 192 0 R 193 0 R 194 0 R] +/Parent 3 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 196 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 196 0 R +>> +endobj +196 0 obj +<< +/Type/Pages +/Count 2 +/Kids[118 0 R 122 0 R] +/Parent 195 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 197 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 197 0 R +>> +endobj +197 0 obj +<< +/Type/Pages +/Count 2 +/Kids[126 0 R 130 0 R] +/Parent 195 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 198 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 198 0 R +>> +endobj +198 0 obj +<< +/Type/Pages +/Count 2 +/Kids[134 0 R 138 0 R] +/Parent 195 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 199 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 199 0 R +>> +endobj +199 0 obj +<< +/Type/Pages +/Count 2 +/Kids[142 0 R 146 0 R] +/Parent 195 0 R +>> +endobj +195 0 obj +<< +/Type/Pages +/Count 8 +/Kids[196 0 R 197 0 R 198 0 R 199 0 R] +/Parent 3 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 201 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 201 0 R +>> +endobj +201 0 obj +<< +/Type/Pages +/Count 2 +/Kids[150 0 R 154 0 R] +/Parent 200 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 202 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 202 0 R +>> +endobj +202 0 obj +<< +/Type/Pages +/Count 2 +/Kids[158 0 R 162 0 R] +/Parent 200 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 203 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 203 0 R +>> +endobj +203 0 obj +<< +/Type/Pages +/Count 2 +/Kids[166 0 R 170 0 R] +/Parent 200 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 204 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 183 0 R 19 0 R] +/Parent 204 0 R +>> +endobj +204 0 obj +<< +/Type/Pages +/Count 2 +/Kids[174 0 R 178 0 R] +/Parent 200 0 R +>> +endobj +200 0 obj +<< +/Type/Pages +/Count 8 +/Kids[201 0 R 202 0 R 203 0 R 204 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 32 +/Kids[185 0 R 190 0 R 195 0 R 200 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +205 0 obj +<< +>> +endobj +206 0 obj +null +endobj +207 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 205 0 R +/Threads 206 0 R +/Names 207 0 R +>> +endobj +xref +0 208 +0000000000 65535 f +0000116042 00000 n +0000121683 00000 n +0000121328 00000 n +0000121533 00000 n +0000116206 00000 n +0000004047 00000 n +0000000009 00000 n +0000048884 00000 n +0000048700 00000 n +0000000913 00000 n +0000053557 00000 n +0000053371 00000 n +0000001906 00000 n +0000058680 00000 n +0000058492 00000 n +0000002823 00000 n +0000121433 00000 n +0000003740 00000 n +0000121483 00000 n +0000003992 00000 n +0000116309 00000 n +0000014445 00000 n +0000068628 00000 n +0000068439 00000 n +0000004108 00000 n +0000073899 00000 n +0000073709 00000 n +0000005054 00000 n +0000079203 00000 n +0000079014 00000 n +0000005990 00000 n +0000006966 00000 n +0000081647 00000 n +0000081453 00000 n +0000007920 00000 n +0000084712 00000 n +0000084526 00000 n +0000008866 00000 n +0000009830 00000 n +0000087600 00000 n +0000087405 00000 n +0000011446 00000 n +0000089427 00000 n +0000089236 00000 n +0000012397 00000 n +0000013392 00000 n +0000014334 00000 n +0000116494 00000 n +0000015133 00000 n +0000014507 00000 n +0000015033 00000 n +0000116599 00000 n +0000021905 00000 n +0000091860 00000 n +0000091666 00000 n +0000015195 00000 n +0000095414 00000 n +0000095220 00000 n +0000016166 00000 n +0000017176 00000 n +0000096831 00000 n +0000096636 00000 n +0000018083 00000 n +0000019065 00000 n +0000099488 00000 n +0000099302 00000 n +0000020042 00000 n +0000020787 00000 n +0000021769 00000 n +0000116785 00000 n +0000022391 00000 n +0000021967 00000 n +0000022346 00000 n +0000116890 00000 n +0000023331 00000 n +0000022453 00000 n +0000023207 00000 n +0000117076 00000 n +0000024407 00000 n +0000023393 00000 n +0000024283 00000 n +0000117181 00000 n +0000024838 00000 n +0000024469 00000 n +0000024793 00000 n +0000117464 00000 n +0000025843 00000 n +0000024900 00000 n +0000025719 00000 n +0000117569 00000 n +0000026934 00000 n +0000025905 00000 n +0000026799 00000 n +0000117755 00000 n +0000027532 00000 n +0000026996 00000 n +0000027487 00000 n +0000117860 00000 n +0000028692 00000 n +0000027594 00000 n +0000028556 00000 n +0000118047 00000 n +0000029162 00000 n +0000028755 00000 n +0000029116 00000 n +0000118155 00000 n +0000030386 00000 n +0000029226 00000 n +0000030250 00000 n +0000118346 00000 n +0000030999 00000 n +0000030450 00000 n +0000030953 00000 n +0000118454 00000 n +0000032225 00000 n +0000031063 00000 n +0000032089 00000 n +0000118742 00000 n +0000032710 00000 n +0000032289 00000 n +0000032664 00000 n +0000118850 00000 n +0000033707 00000 n +0000032774 00000 n +0000033571 00000 n +0000119041 00000 n +0000034940 00000 n +0000033771 00000 n +0000034804 00000 n +0000119149 00000 n +0000035410 00000 n +0000035004 00000 n +0000035364 00000 n +0000119340 00000 n +0000036499 00000 n +0000035474 00000 n +0000036363 00000 n +0000119448 00000 n +0000037742 00000 n +0000036563 00000 n +0000037606 00000 n +0000119639 00000 n +0000038353 00000 n +0000037806 00000 n +0000038307 00000 n +0000119747 00000 n +0000039687 00000 n +0000038417 00000 n +0000039551 00000 n +0000120035 00000 n +0000040158 00000 n +0000039751 00000 n +0000040112 00000 n +0000120143 00000 n +0000041484 00000 n +0000040222 00000 n +0000041348 00000 n +0000120334 00000 n +0000042093 00000 n +0000041548 00000 n +0000042047 00000 n +0000120442 00000 n +0000043219 00000 n +0000042157 00000 n +0000043059 00000 n +0000120633 00000 n +0000044387 00000 n +0000043283 00000 n +0000044227 00000 n +0000120741 00000 n +0000045788 00000 n +0000044451 00000 n +0000045628 00000 n +0000120932 00000 n +0000047254 00000 n +0000045852 00000 n +0000047094 00000 n +0000121040 00000 n +0000048636 00000 n +0000110332 00000 n +0000110137 00000 n +0000047318 00000 n +0000048241 00000 n +0000048578 00000 n +0000117367 00000 n +0000116414 00000 n +0000116704 00000 n +0000116995 00000 n +0000117286 00000 n +0000118645 00000 n +0000117674 00000 n +0000117966 00000 n +0000118263 00000 n +0000118562 00000 n +0000119938 00000 n +0000118958 00000 n +0000119257 00000 n +0000119556 00000 n +0000119855 00000 n +0000121231 00000 n +0000120251 00000 n +0000120550 00000 n +0000120849 00000 n +0000121148 00000 n +0000121615 00000 n +0000121638 00000 n +0000121660 00000 n +trailer +<< +/Size 208 +/Root 2 0 R +/Info 1 0 R +>> +startxref +121781 +%%EOF diff --git a/src/axiom-website/CATS/schaum8.input.pamphlet b/src/axiom-website/CATS/schaum8.input.pamphlet new file mode 100644 index 0000000..10d9ef5 --- /dev/null +++ b/src/axiom-website/CATS/schaum8.input.pamphlet @@ -0,0 +1,1198 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum8.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.163~~~~~$\displaystyle\int{\frac{dx}{a^2-x^2}}$} +$$\int{\frac{1}{a^2-x^2}}=\frac{1}{2a}\ln\left(\frac{a-x}{a+x}\right)$$ +$$\int{\frac{1}{a^2-x^2}}=-\frac{1}{a}\coth^{-1}\frac{x}{a}$$ +<<*>>= +)spool schaum8.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(a^2-x^2),x) +--R +--R +--R log(x + a) - log(x - a) +--R (1) ----------------------- +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=1/(2*a)*log((a+x)/(a-x)) +--R +--R - x - a +--R log(-------) +--R x - a +--R (2) ------------ +--R 2a +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R - x - a +--R log(x + a) - log(x - a) - log(-------) +--R x - a +--R (3) -------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 4 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 5 +dd:=divlog cc +--R +--R log(x + a) - log(- x - a) +--R (5) ------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 6 +logminus:=rule(log(x + a) - log(- x - a) == log(-1)) +--R +--I (6) log(x + a) - log(- x - a) + %I == log(- 1) + %I +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 7 14:163 Schaums and Axiom differ by a constant +ee:=logminus dd +--R +--R log(- 1) +--R (7) -------- +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.164~~~~~$\displaystyle\int{\frac{x~dx}{a^2-x^2}}$} +$$\int{\frac{x}{a^2-x^2}}=-\frac{1}{2}\ln(a^2-x^2)$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(x/(a^2-x^2),x) +--R +--R +--R 2 2 +--R log(x - a ) +--R (1) - ------------ +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=-1/2*log(a^2-x^2) +--R +--R 2 2 +--R log(- x + a ) +--R (2) - -------------- +--R 2 +--R Type: Expression Integer +--E + +--S 10 +cc:=aa-bb +--R +--R 2 2 2 2 +--R - log(x - a ) + log(- x + a ) +--R (3) ------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 11 +logminus1:=rule(-log(x^2-a^2)+log(-x^2+a^2) == log(-1)) +--R +--R 2 2 2 2 +--I (4) - log(x - a ) + log(- x + a ) + %H == log(- 1) + %H +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 12 14:164 Schaums and Axiom differ by a constant +dd:=logminus1 cc +--R +--R log(- 1) +--R (5) -------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.165~~~~~$\displaystyle\int{\frac{x^2~dx}{a^2-x^2}}$} +$$\int{\frac{x^2}{a^2-x^2}}=-x+\frac{a}{2}\ln\left(\frac{a+x}{a-x}\right)$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(x^2/(a^2-x^2),x) +--R +--R +--R a log(x + a) - a log(x - a) - 2x +--R (1) -------------------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=-x+a/2*log((a+x)/(a-x)) +--R +--R - x - a +--R a log(-------) - 2x +--R x - a +--R (2) ------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 15 +cc:=aa-bb +--R +--R - x - a +--R a log(x + a) - a log(x - a) - a log(-------) +--R x - a +--R (3) -------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 16 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 17 +dd:=divlog cc +--R +--R a log(x + a) - a log(- x - a) +--R (5) ----------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 18 +logminusa:=rule(b*log(x + a) - b*log(- x - a) == b*log(-1)) +--R +--I (6) b log(x + a) - b log(- x - a) + %M == b log(- 1) + %M +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 19 14:165 Schaums and Axiom differ by a constant +ee:=logminusa dd +--R +--R a log(- 1) +--R (7) ---------- +--R 2 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.166~~~~~$\displaystyle\int{\frac{x^3~dx}{a^2-x^2}}$} +$$\int{\frac{x^3}{a^2-x^2}}=-\frac{x^2}{2}-\frac{a^2}{2}\ln(a^2-x^2)$$ + +<<*>>= +)clear all + +--S 20 +aa:=integrate(x^3/(a^2-x^2),x) +--R +--R +--R 2 2 2 2 +--R - a log(x - a ) - x +--R (1) --------------------- +--R 2 +--R Type: Union(Expression Integer,...) +--E + +--S 21 +bb:=-x^2/2-a^2/2*log(a^2-x^2) +--R +--R 2 2 2 2 +--R - a log(- x + a ) - x +--R (2) ----------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 22 +cc:=aa-bb +--R +--R 2 2 2 2 2 2 +--R - a log(x - a ) + a log(- x + a ) +--R (3) ----------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 23 +logminus1b:=rule(-b*log(x^2-a^2)+b*log(-x^2+a^2) == b*log(-1)) +--R +--R 2 2 2 2 +--I (4) - b log(x - a ) + b log(- x + a ) + %N == b log(- 1) + %N +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 24 14:166 Schaums and Axiom differ by a constant +dd:=logminus1b cc +--R +--R 2 +--R a log(- 1) +--R (5) ---------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.167~~~~~$\displaystyle\int{\frac{dx}{x(a^2-x^2)}}$} +$$\int{\frac{1}{x(a^2-x^2)}}= +\frac{1}{2a^2}\ln\left(\frac{x^2}{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 25 +aa:=integrate(1/(x*(a^2-x^2)),x) +--R +--R +--R 2 2 +--R - log(x - a ) + 2log(x) +--R (1) ------------------------ +--R 2 +--R 2a +--R Type: Union(Expression Integer,...) +--E + +--S 26 +bb:=1/(2*a^2)*log(x^2/(a^2-x^2)) +--R +--R 2 +--R x +--R log(- -------) +--R 2 2 +--R x - a +--R (2) -------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 27 +cc:=aa-bb +--R +--R 2 +--R 2 2 x +--R - log(x - a ) + 2log(x) - log(- -------) +--R 2 2 +--R x - a +--R (3) ----------------------------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 28 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 29 +dd:=divlog cc +--R +--R 2 +--R 2log(x) - log(- x ) +--R (5) ------------------- +--R 2 +--R 2a +--R Type: Expression Integer +--E + +--S 30 +logpowminus:=rule(log(-a^n) == n*log(a)+log(-1)) +--R +--R n +--R (6) log(- a ) == n log(a) + log(- 1) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 31 14:167 Schaums and Axiom differ by a constant +ee:=logpowminus dd +--R +--R log(- 1) +--R (7) - -------- +--R 2 +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.168~~~~~$\displaystyle\int{\frac{dx}{x^2(a^2-x^2)}}$} +$$\int{\frac{1}{x^2(a^2-x^2)}}= +\frac{1}{a^2x}+\frac{1}{2a^3}\ln\left(\frac{a+x}{a-x}\right) +$$ +<<*>>= +)clear all + +--S 32 +aa:=integrate(1/(x^2*(a^2-x^2)),x) +--R +--R +--R x log(x + a) - x log(x - a) - 2a +--R (1) -------------------------------- +--R 3 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 33 +bb:=-1/(a^2*x)+1/(2*a^3)*log((a+x)/(a-x)) +--R +--R - x - a +--R x log(-------) - 2a +--R x - a +--R (2) ------------------- +--R 3 +--R 2a x +--R Type: Expression Integer +--E + +--S 34 +cc:=aa-bb +--R +--R - x - a +--R log(x + a) - log(x - a) - log(-------) +--R x - a +--R (3) -------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 35 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (4) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 36 +dd:=divlog cc +--R +--R log(x + a) - log(- x - a) +--R (5) ------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 37 +logminus:=rule(log(x + a) - log(- x - a) == log(-1)) +--R +--I (6) log(x + a) - log(- x - a) + %O == log(- 1) + %O +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 38 14:168 Schaums and Axiom differ by a constant +ee:=logminus dd +--R +--R log(- 1) +--R (7) -------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.169~~~~~$\displaystyle\int{\frac{dx}{x^3(a^2-x^2)}}$} +$$\int{\frac{1}{x^3(a^2-x^2)}}= +-\frac{1}{2a^2x^2}+\frac{1}{2a^4}\ln\left(\frac{x^2}{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 39 +aa:=integrate(1/(x^3*(a^2-x^2)),x) +--R +--R +--R 2 2 2 2 2 +--R - x log(x - a ) + 2x log(x) - a +--R (1) --------------------------------- +--R 4 2 +--R 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 40 +bb:=-1/(2*a^2*x^2)+1/(2*a^4)*log(x^2/(a^2-x^2)) +--R +--R 2 +--R 2 x 2 +--R x log(- -------) - a +--R 2 2 +--R x - a +--R (2) --------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 41 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 42 +bb1:=divlog bb +--R +--R 2 2 2 2 2 2 +--R - x log(x - a ) + x log(- x ) - a +--R (4) ----------------------------------- +--R 4 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 43 +cc:=aa-bb1 +--R +--R 2 +--R 2log(x) - log(- x ) +--R (5) ------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 44 +logminuspow:=rule(log(-x^n) == n*log(x)+log(-1)) +--R +--R n +--R (6) log(- x ) == n log(x) + log(- 1) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 45 14:169 Schaums and Axiom differ by a constant +dd:=logminuspow cc +--R +--R log(- 1) +--R (7) - -------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.170~~~~~$\displaystyle\int{\frac{dx}{(a^2-x^2)^2}}$} +$$\int{\frac{1}{(a^2-x^2)^2}}= +\frac{x}{2a^2(a^2-x^2)}+\frac{1}{4a^3}\ln\left(\frac{a+x}{a-x}\right) +$$ +<<*>>= +)clear all + +--S 46 +aa:=integrate(1/((a^2-x^2)^2),x) +--R +--R +--R 2 2 2 2 +--R (x - a )log(x + a) + (- x + a )log(x - a) - 2a x +--R (1) -------------------------------------------------- +--R 3 2 5 +--R 4a x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 47 +bb:=x/(2*a^2*(a^2-x^2))+1/(4*a^3)*log((a+x)/(a-x)) +--R +--R 2 2 - x - a +--R (x - a )log(-------) - 2a x +--R x - a +--R (2) ---------------------------- +--R 3 2 5 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 48 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 49 +bb1:=divlog bb +--R +--R 2 2 2 2 +--R (- x + a )log(x - a) + (x - a )log(- x - a) - 2a x +--R (4) ---------------------------------------------------- +--R 3 2 5 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 50 +cc:=aa-bb1 +--R +--R log(x + a) - log(- x - a) +--R (5) ------------------------- +--R 3 +--R 4a +--R Type: Expression Integer +--E + +--S 51 +logminus:=rule(log(x + a) - log(- x - a) == log(-1)) +--R +--I (6) log(x + a) - log(- x - a) + %P == log(- 1) + %P +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 52 14:170 Schaums and Axiom differ by a constant +dd:=logminus cc +--R +--R log(- 1) +--R (7) -------- +--R 3 +--R 4a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.171~~~~~$\displaystyle\int{\frac{x~dx}{(a^2-x^2)^2}}$} +$$\int{\frac{x}{(a^2-x^2)^2}}= +\frac{1}{2(a^2-x^2)} +$$ +<<*>>= +)clear all + +--S 53 +aa:=integrate(x/((a^2-x^2)^2),x) +--R +--R +--R 1 +--R (1) - --------- +--R 2 2 +--R 2x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 54 +bb:=1/(2*(a^2-x^2)) +--R +--R 1 +--R (2) - --------- +--R 2 2 +--R 2x - 2a +--R Type: Fraction Polynomial Integer +--E + +--S 55 14:171 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.172~~~~~$\displaystyle\int{\frac{x^2dx}{(a^2-x^2)^2}}$} +$$\int{\frac{x^2}{(a^2-x^2)^2}}= +\frac{x}{2(a^2-x^2)}-\frac{1}{4a}\ln\left(\frac{a+x}{a-x}\right) +$$ +<<*>>= +)clear all + +--S 56 +aa:=integrate(x^2/((a^2-x^2)^2),x) +--R +--R +--R 2 2 2 2 +--R (- x + a )log(x + a) + (x - a )log(x - a) - 2a x +--R (1) -------------------------------------------------- +--R 2 3 +--R 4a x - 4a +--R Type: Union(Expression Integer,...) +--E + +--S 57 +bb:=x/(2*(a^2-x^2))-1/(4*a)*log((a+x)/(a-x)) +--R +--R 2 2 - x - a +--R (- x + a )log(-------) - 2a x +--R x - a +--R (2) ------------------------------ +--R 2 3 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 58 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 59 +bb1:=divlog bb +--R +--R 2 2 2 2 +--R (x - a )log(x - a) + (- x + a )log(- x - a) - 2a x +--R (4) ---------------------------------------------------- +--R 2 3 +--R 4a x - 4a +--R Type: Expression Integer +--E + +--S 60 +cc:=aa-bb1 +--R +--R - log(x + a) + log(- x - a) +--R (5) --------------------------- +--R 4a +--R Type: Expression Integer +--E + +--S 61 +logminus2:=rule(-log(x + a) + log(- x - a) == log(-1)) +--R +--I (6) - log(x + a) + log(- x - a) + %S == log(- 1) + %S +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 62 14:172 Schaums and Axiom differ by a constant +dd:=logminus2 cc +--R +--R log(- 1) +--R (7) -------- +--R 4a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.173~~~~~$\displaystyle\int{\frac{x^3dx}{(a^2-x^2)^2}}$} +$$\int{\frac{x^3}{(a^2-x^2)^2}}= +\frac{a^2}{2(a^2-x^2)}+\frac{1}{2}\ln(a^2-x^2) +$$ +<<*>>= +)clear all + +--S 63 +aa:=integrate(x^3/((a^2-x^2)^2),x) +--R +--R +--R 2 2 2 2 2 +--R (x - a )log(x - a ) - a +--R (1) -------------------------- +--R 2 2 +--R 2x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 64 +bb:=a^2/(2*(a^2-x^2))+1/2*log(a^2-x^2) +--R +--R 2 2 2 2 2 +--R (x - a )log(- x + a ) - a +--R (2) ---------------------------- +--R 2 2 +--R 2x - 2a +--R Type: Expression Integer +--E + +--S 65 +cc:=aa-bb +--R +--R 2 2 2 2 +--R log(x - a ) - log(- x + a ) +--R (3) ----------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 66 +logminus3:=rule(log(x^2-a^2)-log(-x^2+a^2) == log(-1)) +--R +--R 2 2 2 2 +--I (4) log(x - a ) - log(- x + a ) + %T == log(- 1) + %T +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 67 14:173 Schaums and Axiom differ by a constant +dd:=logminus3 cc +--R +--R log(- 1) +--R (5) -------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.174~~~~~$\displaystyle\int{\frac{dx}{x(a^2-x^2)^2}}$} +$$\int{\frac{1}{x(a^2-x^2)^2}}= +\frac{1}{2a^2(a^2-x^2)}+\frac{1}{2a^4}\ln\left(\frac{x^2}{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 68 +aa:=integrate(1/(x*(a^2-x^2)^2),x) +--R +--R +--R 2 2 2 2 2 2 2 +--R (- x + a )log(x - a ) + (2x - 2a )log(x) - a +--R (1) ------------------------------------------------ +--R 4 2 6 +--R 2a x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 69 +bb:=1/(2*a^2*(a^2-x^2))+1/(2*a^4)*log(x^2/(a^2-x^2)) +--R +--R 2 +--R 2 2 x 2 +--R (x - a )log(- -------) - a +--R 2 2 +--R x - a +--R (2) ---------------------------- +--R 4 2 6 +--R 2a x - 2a +--R Type: Expression Integer +--E + +--S 70 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 71 +bb1:=divlog bb +--R +--R 2 2 2 2 2 2 2 2 +--R (- x + a )log(x - a ) + (x - a )log(- x ) - a +--R (4) ------------------------------------------------- +--R 4 2 6 +--R 2a x - 2a +--R Type: Expression Integer +--E + +--S 72 +cc:=aa-bb1 +--R +--R 2 +--R 2log(x) - log(- x ) +--R (5) ------------------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +--S 73 +logpowminus:=rule(log(-a^n) == n*log(a)+log(-1)) +--R +--R n +--R (6) log(- a ) == n log(a) + log(- 1) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 74 14:174 Schaums and Axiom differ by a constant +dd:=logpowminus cc +--R +--R log(- 1) +--R (7) - -------- +--R 4 +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.175~~~~~$\displaystyle\int{\frac{dx}{x^2(a^2-x^2)^2}}$} +$$\int{\frac{1}{x^2(a^2-x^2)^2}}= +-\frac{1}{a^4x}+\frac{x}{2a^4(a^2-x^2)}+ +\frac{3}{4a^5}\ln\left(\frac{a+x}{a-x}\right) +$$ +<<*>>= +)clear all + +--S 75 +aa:=integrate(1/(x^2*(a^2-x^2)^2),x) +--R +--R 3 2 3 2 2 3 +--R (3x - 3a x)log(x + a) + (- 3x + 3a x)log(x - a) - 6a x + 4a +--R (1) --------------------------------------------------------------- +--R 5 3 7 +--R 4a x - 4a x +--R Type: Union(Expression Integer,...) +--E + +--S 76 +bb:=-1/(a^4*x)+x/(2*a^4*(a^2-x^2))+3/(4*a^5)*log((a+x)/(a-x)) +--R +--R 3 2 - x - a 2 3 +--R (3x - 3a x)log(-------) - 6a x + 4a +--R x - a +--R (2) -------------------------------------- +--R 5 3 7 +--R 4a x - 4a x +--R Type: Expression Integer +--E + +--S 77 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 78 +bb1:=divlog bb +--R +--R 3 2 3 2 2 3 +--R (- 3x + 3a x)log(x - a) + (3x - 3a x)log(- x - a) - 6a x + 4a +--R (4) ----------------------------------------------------------------- +--R 5 3 7 +--R 4a x - 4a x +--R Type: Expression Integer +--E + +--S 79 +cc:=aa-bb +--R +--R - x - a +--R 3log(x + a) - 3log(x - a) - 3log(-------) +--R x - a +--R (5) ----------------------------------------- +--R 5 +--R 4a +--R Type: Expression Integer +--E + +--S 80 +dd:=divlog cc +--R +--R 3log(x + a) - 3log(- x - a) +--R (6) --------------------------- +--R 5 +--R 4a +--R Type: Expression Integer +--E + +--S 81 +logminusb:=rule(b*log(x + a) - b*log(- x - a) == b*log(-1)) +--R +--I (7) b log(x + a) - b log(- x - a) + %U == b log(- 1) + %U +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 82 14:175 Schaums and Axiom differ by a constant +ee:=logminusb dd +--R +--R 3log(- 1) +--R (8) --------- +--R 5 +--R 4a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.176~~~~~$\displaystyle\int{\frac{dx}{x^3(a^2-x^2)^2}}$} +$$\int{\frac{1}{x^3(a^2-x^2)^2}}= +\frac{1}{2a^4x^2}+\frac{1}{2a^4(a^2-x^2)}+ +\frac{1}{a^6}\ln\left(\frac{x^2}{a^2-x^2}\right) +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate(1/(x^3*(a^2-x^2)^2),x) +--R +--R +--R 4 2 2 2 2 4 2 2 2 2 4 +--R (- 2x + 2a x )log(x - a ) + (4x - 4a x )log(x) - 2a x + a +--R (1) -------------------------------------------------------------- +--R 6 4 8 2 +--R 2a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 84 +bb:=-1/(2*a^4*x^2)+1/(2*a^4*(a^2-x^2))+1/a^6*log(x^2/(a^2-x^2)) +--R +--R 2 +--R 4 2 2 x 2 2 4 +--R (2x - 2a x )log(- -------) - 2a x + a +--R 2 2 +--R x - a +--R (2) ---------------------------------------- +--R 6 4 8 2 +--R 2a x - 2a x +--R Type: Expression Integer +--E + +--S 85 +divlog:=rule(log(a/b) == log(a) - log(b)) +--R +--R a +--R (3) log(-) == - log(b) + log(a) +--R b +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 86 +bb1:=divlog bb +--R +--R 4 2 2 2 2 4 2 2 2 2 2 4 +--R (- 2x + 2a x )log(x - a ) + (2x - 2a x )log(- x ) - 2a x + a +--R (4) ----------------------------------------------------------------- +--R 6 4 8 2 +--R 2a x - 2a x +--R Type: Expression Integer +--E + +--S 87 +cc:=aa-bb1 +--R +--R 2 +--R 2log(x) - log(- x ) +--R (5) ------------------- +--R 6 +--R a +--R Type: Expression Integer +--E + +--S 88 +logpowminus:=rule(log(-a^n) == n*log(a)+log(-1)) +--R +--R n +--R (6) log(- a ) == n log(a) + log(- 1) +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 89 14:176 Schaums and Axiom differ by a constant +dd:=logpowminus cc +--R +--R log(- 1) +--R (7) - -------- +--R 6 +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.177~~~~~$\displaystyle\int{\frac{dx}{(a^2-x^2)^n}}$} +$$\int{\frac{1}{(a^2-x^2)^n}}= +\frac{x}{2(n-1)a^2(a^2-x^2)^{n-1}}+ +\frac{2n-3}{(2n-2)a^2}\int{\frac{1}{(a^2-x^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 90 14:177 Axiom cannot do this integration +aa:=integrate(1/((a^2-x^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | ----------- d%L +--R ++ 2 2 n +--I (a - %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.178~~~~~$\displaystyle\int{\frac{x~dx}{(a^2-x^2)^n}}$} +$$\int{\frac{x}{(a^2-x^2)^n}}= +\frac{1}{2(n-1)(a^2-x^2)^{n-1}} +$$ +<<*>>= +)clear all + +--S 91 +aa:=integrate(x/((a^2-x^2)^n),x) +--R +--R +--R 2 2 +--R - x + a +--R (1) -------------------------- +--R 2 2 +--R n log(- x + a ) +--R (2n - 2)%e +--R Type: Union(Expression Integer,...) +--E + +--S 92 +bb:=1/(2*(n-1)*(a^2-x^2)^(n-1)) +--R +--R 1 +--R (2) ------------------------ +--R 2 2 n - 1 +--R (2n - 2)(- x + a ) +--R Type: Expression Integer +--E + +--S 93 +cc:=aa-bb +--R +--R 2 2 +--R n log(- x + a ) 2 2 2 2 n - 1 +--R - %e + (- x + a )(- x + a ) +--R (3) -------------------------------------------------- +--R 2 2 +--R 2 2 n - 1 n log(- x + a ) +--R (2n - 2)(- x + a ) %e +--R Type: Expression Integer +--E + +--S 94 +explog:=rule(%e^(n*log(x)) == x^n) +--R +--R n log(x) n +--R (4) %e == x +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 95 +dd:=explog cc +--R +--R 2 2 n 2 2 2 2 n - 1 +--R - (- x + a ) + (- x + a )(- x + a ) +--R (5) -------------------------------------------- +--R 2 2 n - 1 2 2 n +--R (2n - 2)(- x + a ) (- x + a ) +--R Type: Expression Integer +--E + +--S 96 14:178 Schaums and Axiom agree +ee:=complexNormalize dd +--R +--R (6) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.179~~~~~$\displaystyle\int{\frac{dx}{x(a^2-x^2)^n}}$} +$$\int{\frac{1}{x(a^2-x^2)^n}}= +\frac{1}{2(n-1)a^2(a^2-x^2)^{n-1}}+ +\frac{1}{a^2}\int{\frac{1}{x(a^2-x^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 97 14:179 Axiom cannot integrate this expression +aa:=integrate(1/(x*(a^2-x^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ 2 2 n +--I %L (a - %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.180~~~~~$\displaystyle\int{\frac{x^mdx}{(a^2-x^2)^n}}$} +$$\int{\frac{x^m}{(a^2-x^2)^n}}= +a^2\int\frac{x^{m-2}}{(a^2-x^2)^n}- +\int{\frac{x^{m-2}}{(a^2-x^2)^{n-1}}} +$$ +<<*>>= +)clear all + +--S 98 14:180 Axiom cannot integrate this expression +aa:=integrate(x^m/((a^2-x^2)^n),x) +--R +--R +--R x m +--I ++ %L +--I (1) | ----------- d%L +--R ++ 2 2 n +--I (a - %L ) +--R Type: Union(Expression Integer,...) +--E +@ + +\section{\cite{1}:14.181~~~~~$\displaystyle\int{\frac{dx}{x^m(a^2-x^2)^n}}$} +$$\int{\frac{1}{x^m(a^2-x^2)^n}}= +\frac{1}{a^2}\int{\frac{1}{x^m(a^2-x^2)^{n-1}}}+ +\frac{1}{a^2}\int{\frac{1}{x^{m-2}(a^2-x^2)^n}} +$$ +<<*>>= +)clear all + +--S 99 14:181 Axiom cannot integrate this expression +aa:=integrate(1/(x^m*(a^2-x^2)^n),x) +--R +--R +--R x +--R ++ 1 +--I (1) | -------------- d%L +--R ++ m 2 2 n +--I %L (a - %L ) +--R Type: Union(Expression Integer,...) +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p66 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum8.input.pdf b/src/axiom-website/CATS/schaum8.input.pdf new file mode 100644 index 0000000..9b904e9 --- /dev/null +++ b/src/axiom-website/CATS/schaum8.input.pdf @@ -0,0 +1,2710 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/NGKDUA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/SGCAZP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/GAIAGZ+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%@ wÑHwĄی1*$& Ԧ/h^ >) "'ԁ/j{9G֩}wX4=T59\7_%%b C, vتivtQ_-,(?H(ݭ k +li3E+`;86 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/KUKDYT+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/XQDABV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/WQBGVY+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/JNGLNF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +38 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 37 0 R +/BaseFont/CWFNWL+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +39 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +42 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/MIIZOG+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/SLWXNZ+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 877 +>> +stream +x;s1 {>˻K-G* +fx4 +!?n;^ $<+˶[* Z*7oԋťQh~QA8J叛5\ؾ*@piV20;zȮ8#:.ޮH +`\wS}.`inu=݅S heRfR ؍ӴDΎ]osSVڎt*aʖVʚ.l˕u`(+r5RD]%0<&R 5q' "r'"2[;"4Kg#"P "0'"ND:I(Q~ Szu@RA7!Dv6`d<>t|C&(2Pz\/D郘EhpȶdiUXc<&?MJHysoq* @o/{0e&hV}v9LXI,Zw՜B|,غާ@5i/ږDFw6 0C4~ݢ훴mE[ι0kќ5'M֊]q9uƲؠ7Υ_}Qg +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 38 0 R +/F9 42 0 R +/F3 16 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 461 +>> +stream +xڵ?S#1 {>ʤ,ے);e#0wZĻ8,; ǫg~0h p}!b 0@(6!s0xZQXo؛=ߐC]?wQB@ޗ@z.yR쓣usH8x&ck F{*7ۣ^QL)ԚB( +`QY[qD1ouԻ]N05_Wvtj}DQQRmpi6)#WgLZ"#%7ɥq_5AKӡcC3(e ΢e(KRFOXZ;aiOY¨YgfarmjyןiO ccL..ȱ.X/ɱ.XrK9cq9dl9@W.j$G#_|EwW4ܴw洫d;+ҸK@鯺 +endstream +endobj +51 0 obj +<< +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F3 16 0 R +/F8 38 0 R +/F9 42 0 R +/F10 45 0 R +>> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/VJRYSM+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +59 0 obj +<< +/Encoding 39 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/WBZCOP+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/IRLNEJ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/BSTJRH+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 913 +>> +stream +xڵVMs:+LZ|k]}g ,!l 0t&M:M:/{,;R";0dc[:#;dwL/%d[9 + 2sT/P\k8C87 OCV~Lrȸ6Q.+Иcg1] + #/Js#%nq`m_6z +H2> xضznz^,li)[V:LoA :. xZ%v]!5@ s%E@ʔ}T' =кп@8r-YG ᨎ滅>u7Wiq^DRtdidAL{`]DFWnp͏MJ+N ^ZC`ez!H`Qn>rgܓe,cj;}gjyi,Xwzz]aS2RGͪ /.ɛ (>MwZU妾{6l/fo8yBbYimr77E"BreԈ9xJZ ;GXl4fn4XOBlt}|"Y>,Oѫa%0L.=xFs5t礁פ~}x-^OJ7ȿ +{:~XcQ BID'UUܼw3ANG7eSGKB98T쯥Mvݒw_<~^x$ +endstream +endobj +69 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 433 +>> +stream +xUr0+rL6T;J(2өz),{y1X +ސ5]9p85w@2hb*'_󷻥4C6ZSJw,BN-a 0BЉ`Ut:dF~~kOl8$#84 }Aي,K֩\126+;j{bFf@lS\"W9K`iHb !ݣ+ 7aH# ?Kk +Ԡ|!Ƽ/OJ]ֺU "RGuQ /o ʝsC*tsHYDAlpK&hʳ2dRf+N> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 792 +>> +stream +xڭMS0t!h]ɒ\:!ÌC]C+Yk?}v% ݲb>MG&fM?_F4Gx5vVjmtY.!tp,qI0Y4qsMԩQaB`qmjvHju{.PRDBBYK2 -sbcAk4HIa_s"J I?CÄ hW0j6S[/ ,5[r]@BőT?@TfNmiHOF`&JmbݠЎ^s!OQ@e&s=Q.Qn2"[]FYèh}p-i- Дsu}\7qFo(P}MI +"r(lUQ_l˽y7{o3:Z]ƺ[]B7rDMOD,',:Zi`Ï>KVD$TM<r~&ḍW]n$}axqDG »UaaW+d,6dps3d8O܊DheȦ??03VW +ǓS<`t$dXw4A;'Ig5y=m_[jvUTy?ꚫ^͛ݿ8ޢR +oQ] O +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 253 +>> +stream +xuQMO0 +|L4#ˍq(MOiʄĖ_޳-<՚$<1j-ɭݽ1OnPR2*3?tCHr_pl.jiхP~s?$I,ӻZheIs&QI!Tap~]#iٖI$MӮJCW>~iW| 2SP٘ob[p? +endstream +endobj +81 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 825 +>> +stream +xڽUn1^NGl-% :4iC*-k˝ɤ@d3>=C0FH|'osE+1&*]frD9:WSF'x&pnAPMY@qB2d[ȦwŎ #ncr61E`f%N4MM.p&Fч!)U÷0ƨrۡ%V8u) ,0Dކ H0lHblJvMB2.-(,K&$felh{[F]pp{mѼ* w8Y(&4kܶ +x~RKaPl]'ZՖOMC@CWvḫ.Ɉ"[3bֳ0oZZkӭNe7ԷжPqҷvު]78 qjqnYzYlFT[בq&@#J/M.뽐]Z(nS> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 406 +>> +stream +xTMO@+b*]`BAckj&VJ K 45^v:3e 'LX&4)p@*4p_%EY +|y(CU*UgU3reY%qLNuWb:8l*e6و SR![qxU[u6 T*F ")1"gH0HBUU)w1H#TiE!,;,o.nU +lی]+*=Q6J_oۥW;eC@0%" +޽.gCQa!8˽8[Ƙe7 -n1u#:a|v11F':W]f9W__ +endstream +endobj +89 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 880 +>> +stream +xڵVnA+ }AŎC6 c 2Tw 8hWU@0FI\O"\TdVjpN&{O9w/Fhō_L Mp܂!GeX@qBdI& b;AS# +19`<XhIn) ,,`dmRc}Á1`*߁5`{ +mf #8uu6mi"$XK')1m0`<`xEf)A9&P8hWn$Jd\zJagy+BH*K\ٞ+J]h?xLYgfU/aSl)S)5H +ߢR쀋Q]ى󐦄K Y8jA} +^!]R9h:<S4WE)PLORVK;* =TE3yo.ը,E'iT*X.ݒKk[:: ֡Գ5$m0WWq){jO> KlBŔmfz8w%^tf-?7N +78kh:LO8 ƥ^RUxm?^;oqT]:@,ZNO4*Q\˾z!sm+Jl> +endstream +endobj +93 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 261 +>> +stream +x}QN0>:uI$ RGE$TM*O +_vv48'53y JH[ -Q>S$k6%2G2F=?c&sk=,*γΗsa"(nwq7:ߤ O%8&1 *hJ(䊏n8tOaB!=ONNCM|↲rӅV动4 )Cf3w"gx +endstream +endobj +97 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 828 +>> +stream +xڽVMo@+v3DBM%R)TYuM%D.xvf޼v@)q#xZ/!x+'0V^]\"]%BVoND. z0:p9cށXj4۴GFOBoq6MmDjl6\A{fñp.nAܰ !2< -xqـ=JTŹ/v,8` ȶ a.ՁYvByެ{|3a$37tHAs=m%RYoqJ F`mHNc}jϾ\ls7NTg_g16J\}>|. Z)k2 +#v!k/+ܰ$k!NA.yχy>]ҪeڞBz]^o6t* *}b)eUݯ}k]pQͶ'լ$j^_l]|P]M8(3Fo(ew0f}Nt*Zn͓\m3 +Q.`DH8[^fnUϟ=?~X߿dUŁnqu> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 481 +>> +stream +xڭUAs0WkI 0uj;r}3(L hk}#@\,;%(p' ^AA w/QSƟk ,,WQmRnuvR *߳ɢ~7!emvor +9h6(2^tԡ}ZތӜ0zJ3ljv;ݰ3[ywN&I NM}ZH-A-ijL|r/D7O-SzTIK}VV$+X^|ОmCGpn= :XejW%U{#uwCCں3k8yyKvuRt]ߗ_)h1/$\_[*5Ɵ}ffg'sUl/e\)#tNCLb)Zo儡ѽ/t&3W_} +endstream +endobj +105 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 881 +>> +stream +xڭKO1>fKUcI/eA@J#ڦ߾:^6Xg~QB)G#z^H$-#͈QNBW#aƸ]X1mF80fޅ[ ƒ[ ’`r6|2$p%VkJ7t,'ܕn!8h1Y*Cyҡ^FeRD#Z.m´ܻmda@&IhQu)%@kPW3 +X&If=ZZiLm'ֳJ$XI5-U{5${o! VrC?iDW9qOE}*cķ#,e1YPޟ>ZоZ6HfIz6hAEGr80,o)OTVBftK3OzM^;LXJLf-Kk`t1W(8}[Gu{NEyMiҲ)kwcɳͪeXUl6eQ`|k~w8E1ϫ]Gl7|agyvbI,9yxR O%EODy{F?d]Q m9nï6w'OjwFr9cpďy6. KX&xi_"ǠPƚt??ƿ'tpc!*cր,;nog)sp"Og7w4m}7@#j`~?ڹJ{Dުn*9~m.ZLy؝S?PB2Y=Z/ +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 432 +>> +stream +xڵUQo0~߯˒ l@Ö^(oc(Ց(M*-(-F^]2KPWGR,&^>aLz@tOFƉ #0v:"e+}) )Jr>#aP~+oQ pd'8%+9or^I,MUaelSyn@ıɷϻ[$a[HAo`UX}ãPQDj ݣKn>,Vjp_XflL aOsq\OquW{WRٻ?0>mSGh.eX*O$[K5N 1,>;8pYZltsϯCrA{qXkt7fvj:L9ĴdLʓ i +endstream +endobj +113 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 956 +>> +stream +xVM6WhF4gmE{ܸFY@nܭw8HKr/x#e&쉅gzq(.[ pYe+?yz/) +_7so˕lK{euV)cȇcC/ b4yX,0O +$32!ʔ6QJ3^ɒ +WwsNrFaλeNl;fmsWޙ~49&T۸)}kMYv/ۧCggGySϚGXcwňoU=aդq!UJEgqB +Ǹ?>wjBhzg: Agt;}&<(s=;~:l?/yJIgl6UZo7鷪7G\5h9 +ɩ`30Ky'u%-?DNM81at^vDW3 欇 +r:a \50N_f J4M*jI\_Gk \$= 7w5{~9^tb:!y:.ɂ3,WQٌ jӾ* +KCq#T +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 463 +>> +stream +xڽUMs0W䨵`phiʭ3h7@&f=vPAf;",b]tư)p_6/ !ݺjs:C 3,0ߓ=I$&^{AZʎtoQ7 )\]@lU* SN"P2 mw0IX8p>)[\yU؎kjϥ^IRJvz}tl 'qM3$ccO?nB/. +GYq[9R k/N5+i2j^5fu+ fiYEN]a;Gg?# 1K΃Mi!jqZ.J"9Ьr9> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 981 +>> +stream +xڵWMo7WBr!@"Nl8&]rZJPErR"qNH o_("l>- 5TM6,lEzF]0z&9]0LI_B+5@b.|8yr4Nf@[f5DU`` bfJ۸+ bB]LkqgЀCpFp0 _$0ʘO<B0J!Z]ؚY3,DbĶIkK4s& fUXtOT'0xѵ'S&GJaɹ5L%#u*cjl<Ȇ2ʺ:g\g/I<{ 2p )43-*5?2/n1ϋfΏȒ=YzXi;jg8eq+~/Dvgje' +ݙvZPlpb$TK/B벩Bp{*喞ɯH/dWtUr5>-Ng$`8#AYAYsELO3BXBva _ +Uh}8.aq{D_r(OENR}$vNqw ^-nwߏm o~O;bʼnF,gj+-#s.lG~Kt +endstream +endobj +125 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 452 +>> +stream +xUo0e J[!elEБ(LUZGa~d\Y(p02bq +‰ mЄP`B(2zr%0Epzy)hPؠ"Cy]IX^'rjbOMv6#6*&VښYj­g>,I\6$u&.Y$:)t(T(jƋ" C8a}.e3kTkuv֎~]0-ou64箷/rա80t8+Y%dϺ$X}aDU%IMwɤPQ\[WcI4z \]6q{H+i|.gNj]]yı͡^ }&mƬٰc(/ +Sf Ed̑͗p +endstream +endobj +129 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 710 +>> +stream +xՖ[o0~L|f+Ć ²IiJLٷǎ:iVޠRU)a#G~vv! $ QUr9_O_>]h`¹) MG-0\9FeuF_;j V5A!H"Mv]HMX\Uހ+q%[ Z[Ak6pG4:H 7{@R S=xsfCb_r޽h%ږhp&n AvH3ՠ}z7}ڍ%H7Ew`d3ɇdQ Op$JPqL՟?QM){=B⥦9l<޳{{hgU=kƔ)1]M|]Nժ&;U獂˸Dr2]n]TY}VQ o|v~OXi# ʕW8ͼ|i9bcwE3GԈLlPMfy8N +Ȫ) t{> r|>Lg'=b=BbŮ\<~ٮ7\ HOڤ?~l6U8b1%_S#gǀHmNih^wA{? +endstream +endobj +133 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 970 +>> +stream +xWMo8Wh'C t=V- ެ7-lHSS(J&2FIX n^H%!SHc$圬~=lpjY70&:}p*Bw4CXpi$uMPgva@QiI r*$J1j0aT DߑWL(V$DdRMXƀ!H,k6ޠ ;CIjJry a[]5e`aB M9#jspi6&b^Uw҃Ԙ y9jL%iK@QݜXFft u R!{dØmK>övfE(3Rm2.P)8C, +;KgV(Q1uJ4*OQ_U +j`T{2w P h\F%zSV:. +U;ۚz\Ґ}g+(6_vn?oK.0ΰ`4i{Ǫn>çg_zul)ep[*W3cz> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 440 +>> +stream +xڵUMs0WLIT;jhQt A//lnv"@B`<vk s1X̀pdB dL 1Ȁ&\&r(;u61)A@r0TړPރWrkbʏ90Y~m- +!&$LT`V@ ;.n}=6'fgYN~"YWNb[n(E!N ]%%U-ڵY:*$ee,5mu(m|jÊdv"4#ǺZ- O1F6QfԃZ[<'疉Qs"#ܭt&}^Ispuiir6ꕔ3yjSsY=.@ew ra +endstream +endobj +141 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 867 +>> +stream +xVKO1W%cߑr +U{lK HH!j;fC(Hȱ}3F#7$,\.dhN"s2}w1<95cTFdӏsMu۠*B`5*-8 +䒺*aDQRu${r6*$I1jпaT rK`گP&$VT{j‚&, A8dCRm| $?H I!k;4!:&e:ț ZHDSgb 툠75p>W |W4PT4)ivi>Z|iL1O$Y6#8 hׇ@3(++ZhfvwXtCOT󗰫-]eLX=~~b (^{J(] Dv~ziWwDzcGp? h2Ia~.û߼?typ7 +endstream +endobj +145 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 324 +>> +stream +xuRn0+|dڱ!RT1H D@ D.>< )$ P+ +dX >!BQ !&&CC jZtltq4GmqC Jqm0IדYJj=L7ymRS>JSUY۲oT_$qฝ͓CLsU%w|ܓ/80ΒĔ6&*Nje1ϕkEf;!o'̴#MߔfÙK:npIgkR!\}Tw+oX +endstream +endobj +149 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 992 +>> +stream +xWn6}WQJVcrx hRYKW7];$uhY#r.gƁs#~WL(cFլJ e%$3aUa0x:CK4b(`M> [ ž2c6|`o goT# aN1,p84(o˰ -#BnX_BkР +>Vly$Vhi<#_LZ8`6pj{bѵCa6 \ЍZŜ_AM D?yv~X*$6H RZ0=I'5+4`~oX7ul~]j T2DZ'Jys88U@ U6;&ҲY/ebM8Em{<|zj*;kas*yLh o]3SHYU풙3VuWp^ش"WXy?yo`ZwE&Aw.W^wxCKהݾjʛH#.F&hm))4> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 491 +>> +stream +xڽUn0+|mMmcl@ⰫMp+[!$Ԙ($juCHh{=y<!V Wz)t 88 @8u'!r ǁ(uJ @ (s :#UVVv^-hR찦y6s?G.՟0Q,YL1JƝPm~lX#'Ͷ벒z$wŪON"37YYys<ŢAWnl¨#R7Gz[{OUץqݿGʓnI,̽6C%ךZwjږRRqtlw0eE5uF #)Z +jsȳدks`?e֟rT7 aJ;!wS.qqئ2Иg"?7fa>T~\|Q"]7H +endstream +endobj +157 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 1082 +>> +stream +xWM6W(!-ƽ4rn 6Dl.Y`!8%?7[$B͟H3b†w3W;~f̨ͯ[q,Q>.GRXCXI\4p6f0$88%V7r]s+!"Wq'Ha4jL4af%_KsɆ m2@ +3 9)+( 'G b Bbj$-ę Na'HgS=\bU{Y쎴=<pGn? D +0.3Jk%X k1J;71!18$"Ǫ1)RL6# BYfay)4"5R>V%, 5ҷMt|,bxVV(bSGl-.#%ZQ]3;7eZЙ,h&)i]F "қm"Wi֘ZxôЦQ0h +i}}ax  `6NƫQuZir[|[vߜA1[s rQQ\> -&HAg@ +4DES@o;60e[~YO`go\\Z(j2ji0+w4ΜOU4q[ݜ??{ŋizC34w{Yr\-+) 0y ]ٛFR{ʨ~#57|䧮`TRZSSV$=ei,XeEB#h?vV?G蒁zkIZ3ԅݵrN;&)0^Vw/.ms뛃klD"[N)c;.a%e;4W2 +endstream +endobj +161 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 517 +>> +stream +xڵVr0+ KB>X.;ѶQf/bg/M{֛ +ƣ),$aQXb& rO^cH !ǿ߮Q%8s1Z.’ ћ IS=g8?DS@UIUU1e^UcjQsDL2Ȥ o [1|]\/2aDH +endstream +endobj +165 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 1067 +>> +stream +xWKo7W𸲳CR.E=:ʥX5+@um!%}3 G"\Q7MJ#dEɹ{ab=Gx<ڛK7D0"^m0 E5`FQ}[ +̜'مb^d<}*hb*a7/u-% ,r!@UPquބ4T+="R+Xo9QFDkyozR-Lц$Ϫ[z]:V(vZo=k/r>LL6뀄Ӏ5 +. < ^DY+T UI)?鲾 JZH68:\v'iAr*Q M8dTि8z$ۙi\:LeѳϼbTWhVRH8g-U:m9j7u1ʇrp@|[zߛNfn0z\kj:%DOR+>v 3@|lϼ6DX<˪8oMU[QZoM˰sY>b;>*bHH_g,| &<)|Jt*3>fX]jqXPTqmTBer*5:c^9pFRsm/DgDFḉy4m't AB0z* +{:|z|ܟPJiwrg$!nZު@;!{دpa܊k_f!˪0`D#ys0hf;%űf=|)ǹF@P82p|WiZ>BHWӟGzk!]3.g4\~_ANvEd\L.Yatx?]'@/,06ljB]~%*\3 +endstream +endobj +169 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 511 +>> +stream +xڵUˎ0+NĢU3ṴZ!$E@M`0Qj\ls@B` Z |I02 q1<'¥3 G}Hć1!b F]3>F=m(b2Z1;VƞzyX nD0 Ǝ!Kbzb2J$3tB0\\Tt4jt:!BS8.C4e]Xl|m0vѠq\t-FB $s3x`_RqTEW/:5qr8=G:ڒc{2w7jjv`%UA/ʕk-Cy,-Ou6: )`LcT?i؆y|.y]V}_!&横:Nz*[_d4G'obGoÙYiQ6+#BPH?k +endstream +endobj +173 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 816 +>> +stream +xVN@+fSi˼X*T*$ R"53c{8!Uu3C0FnI\>3E'1& +PL?^\(Brn! 1hR#9pJZ'm!S/" 5!DL6<9aSΊaY ei 'sca&HvXACFö "^NEҡ>c"PN 8 3 iD{-pѣ:#lhG xv!,\&Ԁ=ǵGr7y +f9MnңOۓA|2L/2WhOoV랩C`]c㾶e">"PnXi~@̿3ͳp}`w;41<7 dCp@ )Q;YObw*̔W7_L_C{[JQhs@ ͙X zƻq6\uF5U*!oltx!*(!N)=OVFo1jLbu˪Zm*czZT,VUS#(I0xZ+^fmja?oϾ4KmAEJ^|g8j4&=W5oWX))ªpfE]kĵONgB0$y~t?>nן'tW\D*89/~ŞP +endstream +endobj +177 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F10 45 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 850 +>> +stream +xVMoFWf;|)Q/ cvǀN*CR-](rg޼yovI@)q/+h@}/Bzc7R"- o/]ë`[RL,EFH1J-Pqe6F-H)QH 8 Gt;4 b\[Ӫ>/Jq |K<TdpY QEh.+):f.DeAƱ&\A;: [$]1CKx4}TBSKT:Q|}`o1z~ hto蓯G5JѺe*JW +endstream +endobj +181 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F10 45 0 R +/F12 59 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 1104 +>> +stream +xWKo6W@#F||hlEC^M rxE|G$E5b}!M |Π' zBv }G82HXRZ!˗i<~it?Qq +iTt6r򱀥QbBq6~|RJ)Fg1P!B(x%HPg1Wm/4Lh%_T<Ͽ^}qʟM=ޕ/u{~W/R_{pzF lKY lܚL$hL*^(Ū!vS2i=)=s7۳wŻ (1f +%4]#QmUE4A1ϑWz_97~Ó|\/pg)l6SA*$x3(8"3^Șk" +'`1S!. i ȸ<V9[ʠiF{Dnvx#f$fZ*a9Kaf ]K]< )wtNRm]nR7I޵O'Ўw}I`~,bc0j,L;LX%ԅ `N(8AI%GDlxXph4̎^\`izQi 0U7&IlS +YtbRJ,߄nN +?PTQ,YFϸzGNc"Pcc! (bLe163ɆK%а oa"-gbHT+)$M|ƵBèlOe}&0LoyÊVxCaL{{y#hjb@ 5ݞy6Јi}=Uc˒3ymVֻ<;l;Svg:+ͷUtNn;=o}7ՠʲ2(6:GPWMM9U^M*5q>}--?~5lcD=vΖ6oq acCjZ_#*zo0$BV܌?*|z_Dڸ +endstream +endobj +185 0 obj +<< +/F14 67 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F9 42 0 R +/F7 35 0 R +/F8 38 0 R +/F10 45 0 R +/F12 59 0 R +/F13 63 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1181 +>> +stream +xXKo7WR@49Q/ƀ(= @ ?Cr䮴+KN p8GηFP>0@O/K$M? ͈QNB?^O0c\M^7W`,L|#N{%ʇhX q aI\4Eƀy,L#8%­]Oa88%V*%z6ʋ w!d=_U ӳ8+AP#]DƠ/hY-JΖ+Tu8kKr4LQ3q .„ ̨#0}ɛn=%uY bM[5iC-.Utq;avwۏD2zWzkpɳ~jGwp27]u@Zshy;mMUEiE3{g p-#IGbg}C8AQ=ٯJe]wV]4e,w`ڲz*@h̖ +;^6x _Yz0yHxnYwzsǻ<Ƨn.6Re6z:֓n8Y]'Bø*tc@`סX`Ĩ' Ҋ_翸c@>$QX*ѻ֖gE`0U sNL?ί?k\g`SBH7V*udW`q6Q +`3+!* ] վW[6.IZXX\/[jV9[u|*VyD!jeTG#3K}Ehh@R|I/R'*Wa$rsj0t2*k=Oȃ t;P=< +?C[9s3#9c9ƪ%3飲lEi'(u"ax8%8%1J\tjsx[)y')~x:]V߷dG%{ORoePOa}@@'#j}ST{+WTTvYrM> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +194 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 193 0 R +/BaseFont/RLUPJI+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +195 0 obj +<< +/Filter[/FlateDecode] +/Length 263 +>> +stream +xePn +V +c\։*Ebߢ~D~K/ 2WX`&KTPT8J * PUnp]F|.6C +)5H©K牟1^k0B< '[F!.8k`N7ک.m'`%zjz_LQ'CLƎ ? +=4-2@8& rsʼSSw.:nݸ*w1ͺ*7J]`VQH!~M\^^Tc +endstream +endobj +196 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 194 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 196 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/NGKDUA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3874 +/Length3 533 +/Length 4422 +>> +stream +xWTTۖQML (Yd\PUPTd((HFAE(ɒɒ.眾G/=G?oͽ MDU HG&P%O u@Ðu4TT0.$USԐ(+PTP;]'}@0c7` |1 + + sBPB&m3%C0l@QW\ pE A"<|ԙB>4뿡{&?om8? H' EH>F;xT.Pք=B ah'WE@q5?k骛Ij:hS_j<(c$I\?lv !\ Kw(UUcQ))@TRK`i3C0Pmu@eT0(/?kgtP' 0|;1nm[i2;bnQT7 cSnyRyhZ1(z@2(ъ@cκ^8Wߖ/H.ڳ}KXOP$Jo~[<1G/kH_ Vt̾5tpTą]Q{36~2]mx:C4z9)n,sC{%2QW'W&b;~YPVXMI]6n^-PX&4NQ伡IP iiV¡B6eu-_euYT0^{t WJjZ,'q*F qL+c6DeYwDho)x?0]gitXf&O+~UHx5Qu o&HE{Ch΢ib[IFOnĢƿΆnkh+ץF(ϡ~bR+ v]=_~}l2/dS78Mӷ UpD*e~%;z DDri3'ͶV/uN/Ȥe?xH$h/z˥;2տ?pVx1Wy~yQBoa͍zxegfY̳bV:,]|iozW=%d~OI(UtrgHڅc2PmeCqo"7%4d8`̆(8'ǬݜSȇfΜZ=fA%ʒcb6H^]H3z(/oVe&,ъJq9c|gs'~+kCYMNiVae;l +7GƲ'm':mfRS<{IM|O$H,MζUu.gc7\ȡ> +Җԛ(j2|Rr'n+Rħ)ڞicLaQW vZG~[QG}=' ]Kz|鍟C ! ߞb}a(+*M I* sG^b^PFJZl h;<݊W H^'̀ +;h'暬6#0L0o(R@7Tp+딆6ͳH<^Ѭilqaۧ둔" +<]=+:}ȇ?(N1\7/ʚz%21'Dk'&A@wBJ|E=9r^a (?fǜ e0TP DA#b:p)Cy{T忱&/v\RvlFLNC +.`\P[O)y^~9\;6I.I[&fb(}Tp\vT+DH,n +hb3->G/NGa;v:tqz 2)wz0Oq7K/(|@QGd/B_yh9M\h^zX-W!},C,gr{}Uc]jSDLHs.RΣt;r_0!aѺ'of^|lO2v 鿯jRqmĺ=@<X+%*󍔓kY kͤtB7biӤ'&<ݹ..ou9,k-qqt/-$oh( |_Nۮ@\:yLg5yfeg5("|FCB;N fߡ^%W}kЭҷ-M4HHr/i9&ÐJ27*xJ ℴȦDُ4buZ8_{]"f{&&dv24iRѽ"k +uYgOț+{(Sb4M^(QGt.q#Ceg; <2vj^RaoC~(.KOQQS-?頫nND_cw9Kz3%ÇnavD'=|b2=Y[pwE 'dډeֱ8,6YS! 3hq,D$Ǧq٧u,tʶ]o+tD&P,Y /l3ʍnѷۄ02LJG^47j:ٙ6-`O-;6:mr$vJhB8߬$EXD{1ZK`R=eN'X!^\Lt|Ve2Ȃ:+ȭwZYS=3{A9OXpR<5`jZ9ukfrS@6ƟSaSn=Ȫӣq/ ͞ +TPc+6o<71]G`Bh"+bZCe;!y{CӉ`7Mr.-UPi:S؜)}I>5')֨[ + u:9z)gI:x7=R`t'֤L$㒝?BRsoLeg +_{J Yi!w՟D$5m"l &s-"c*my2o7eԝq\8#w%7oNrFN8],M>09cXǝD5vܒIjUHA_%9K&*$%[xxe:X׷i{k0T~>[Dpn1L, 71-]Agc Cwx4f m|Z)*-j@27n1晠UWJ!=3wݺRG- oM/Yob,~=İ$UjTx1{&"-L&^{[Q+~=H*.HQ +"Z掷c5۹$C+1T-1vό𽏠~(Tl9:A(|&|Ţ j soyCLV¡[]*|DзB +o3QeX0uq/Ҹ.ުtݬֲ.RߘVJv(3J˭([^%((t\/QX Yk]|7/@+X`2ץ 1oY嬣Nɹp8ËiMtĄ1h45'dىw^ +$ݚ0f|%״I9ˬvx{4o'pƨU.;ތiW} +C:c) :P' +;)(R +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/SGCAZP+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4273 +/Length3 533 +/Length 4821 +>> +stream +xgXۚ*EZ6% Ati"HAJH %ۦiқTE:( {Q:s\k5g>>n}#QB A@j D LǧF@1H7}(!B@*^ 0rWXE#1 A5?\ W @P#W 2r!2c'@?E()! ÀHL({7_2/./N!/J #)~?ou#9[t @t4V3_l8]m  SA9 @$Gb` {'OD7TSԇ"QcbpYC54d !?߬v: +G@F( +E%;I$+#W +оҲ0/4?k{ <6w1q}ʦܝdC=T.bNaǓ4[I\J?;X`,}wk#D-6"R>֤7Nnn)xHsd巨9ؘ384dOjp FVlkk#eQ/UZs3~;^XҺ'?dͷR.ѷ=/2ZVٓjB;%X( ?^#!.u[my8HdzbY\Bsyh|_d>Q`&2xZߙ\HFq\" l+v⺤6,qܖ=*=!tI+ܢdfVoVڙux\drDka`.W-m.bdqQҏ;{m:tS=꓀E|0L"]n1= JFZ@Xi~cAġ}%?ļh’ [{ؔ8kUn Qp 0+k0.4_e +Kj}rJ?)V +k7 G ݌yjBOOY,eܦ!t]* +-:_mxkL6׷K +Gk{u(,o~ Ӂz{ܷoYbN&˵lש]3"rPtgf7"zش.IWC!| CrJ,_NkpY7X.>!f7o3oj3eLp.4#J-I<oD7.{df\O=筭bM^1|]s cY6~v :ʈß*7N=`cц' T=b[= +Fُ{N;I}) ӽto{Vy6\jru85GB==s0-6߇ +?kwKkcdTbsSV~eɠ=v(2:ԕLcvw?sqo8 +t9nߡN$|-@wqYphdVO\Cz5u]wvVnH|ʽ0nqz";kekŖ B.Lb7>{wpp s0OIFyZ22tf\du+`A0F0| ;`bT l|A rN5cwXbGd}y=VkxvJ]i h)(گ8#g\Pa}"KL]v2$gwȨl פɆ2p~Uq; ӟC- +~/h OhJOq7ӊVK@^L;LtV" Ђ2wX97 1!U"E'].GVZX˦x:v~3a{K@Tt٘g_xD1i:#'ۓ^A'h@$&ϓ贉{nN6Ċ6Hap[q} +ٔ?u 3ȼb#^)Nr(qR/Rv?>Ҿ•se +XwS4d!V˿mggXo3r! y>h~Y{G Ў“Y}JUE&.If|@ Qe(^1V@@xPT7ŵ@ Q{Zg+ɽ+A] WٻUk3ԣSG›> +Q8$ ~^Y4_ ԯhC{#]{JԥĔ .*c+syn6ٰV7 <ʋVB Nn0hd;ԯ)Izk+Eo4iC}'N(B,6̆яK|M+xU-/qĬ3@B+WTPM_B9"V<;BUHD + 3$Q X^d8c+Q003U2Cc\7"dLN8ei˺+#Ow6A> +X􍊜&|cf60ֈ̛ztʺT׫ +="4ݫ-|m30KW66@JT|ywI7[gv޺؆Zi\j[RMt]4XKit$qbG3ܕōOz >7K:y^ Ǽ^̨5+af;41I&']&:N6\m|V|;y] +\9aI[U_l>zxke J8'VUbrÎz8W`>:zC#fNɡ{v'P^R4AVTpZz&0Gx(wk'GT[&/k V/Zsq[^ߥ5{߶O t&L=t-\e(5Ʊt+ݒhpcH?{zՎj",ƞy:ö5K##(V.Ec7N,;i@ !W|@D e,1B0tP΋S#N!ml +2BEpho\"N*#5Q:54˪eԃуl_ 3'\n&B6*j)i[O//V1kZ-e'hOx + 6.w%~y qqΙ8{wQrˏzNs3c#0PVR/%xF +/?sA@7W(ڙt +endstream +endobj +15 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-251 -250 1009 969] +/FontName/GAIAGZ+CMR10 +/ItalicAngle 0 +/StemV 69 +/FontFile 14 0 R +/Flags 4 +>> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 9090 +/Length3 533 +/Length 9645 +>> +stream +xeT\qC4ݝwKpw rf}e|5:_*ZJ5MVqK{ =ԙS d@t;C̝AN. +#˅J hkm `d 9͡esg  дڂ=q0_ '+Ȓ `i tXmZt%W_.?I9-`% +]z4`7qU!G[b {g#@w._l K[ȿW@q5WIdf X@̃sD`5`ױfn u_P38ں 9ϙ-& [BPKsGJw( {w/V.^N{!(UjCm\@R^>f. ?ogle? ;ꧩp°BAhZA0\ +YmM]mC}m2=6>;UH~s4!BMLz99M 6ժ++lޅB94KE!E@mQ-n&A8I4Q mC̏:j8RYJ*#_ 3[jzv~*sT b4g?)W>eiu~T\dlko&#I3n#5;M2B 8c[FZ B2Bc#aua2*p˦GLr0 TV5 +@73JQI|Vdv8N٤>l*GUqGb[PAgeR<ׂqx?"9ہaNIY1HKMM^)-+5/Eح|n ̇ SI3,q-M6QYw \?FיC >n" I-qޜlaAbg $Ⱥ́Z}&G>E(Imcf"PkJM&>#\_}u Al@YEӟtN-t4t|~C~|hPF 2 Crupn1|bMف5tzb~2q JQBSZfTM}β7?Fߦ4fզ-]$ +/ͧ37%ore9ZP|/ڟSv .dh$8jUbi)_*4B+Bs&-剢|03S*QDa}9TKU10:}_ȵ9Ebd\]݋'xc77dkNmDHI}HW`${(]}Ӱ"@+*hJK_pCɬ|4SÄ=(?Ȥu/#a"y9GgGqݑc)q"aht418cjO!-4m{}4N Y4 aT<=,s=qhj95!fg+ f^V-ėKygτ%QpY;|馮ɴ dB(/F~|IKdHwfQ,Lh5Ǽ W +"?sRu:>w:ԟ>S1_.i>E"1U KRoULO9\fG“e,i;8ې^ՠ6g`4jIu󛽜i.gWͲrN!4ײqy-שy|]>0Zf{0F J QwPXх]wjI.YJHݠl4*v/P4e\vY 'V%Ɇd~XnGLf5K`KZP3MF[=1HV=Ύ;iPR$XPuǘ}x],dBgcŚױ9 TNeC߆l*u,Ȩ!Ҧ?!'GE#(|Y1Uf ^D'}19W>Xjt7)~8l*hW u\ f@lkbRʜziC)IQY%_cRʗizЭICo,ŮRuCff ؁"CC1x [ +=tiW4s`)+-9jex.Ԗ +  /Hw#@>A V=9i:!ga$r FJ7 SIL0_xCGUUIG*ju9} LYʛM*|I(B=qWH Q9IHv2> {to"],rL?/?^G,替i6Ғ䥌^-b=c%fPMwG^R +LKPS_:b&"Wyҧ97ThgVORSu>pIQq +*isIMUˢ8"V=ZΊm q\?iVr(4ۀCl< i0F}9 2KgJ+;b?sTI,7`tA1b|ŨW=wQ>EJSug>B(I#8Ma5D$y 1uWAuF*J$z&˓AɂZewzp\,sY"dg#HGg0F곥p1t"V*v$<%{ADkj׮WpH*ug}T8pǢۏnսosLIoXAKD +^6@ l VrՄ9f!~]E1û-RKtkYc~ W\BY?821ĚEEdt B 5m$bΉolA{SY3.i0YNUa!fMXM&lYP y8.R%1|)< %K·_nyfmǶ+8 ϊ;1|$sk6C./KVY]yh/ CqQWȿ.,, +91 X[,:NdF+&؝jT~y=p\--$ˣdHSƓ봸{(@ oe C dĬojƭ{_5Ehq>}2%3sB:<%<ԓ3TgԺ99) Tr:9g!œJ{&JeP@póRPZ_/;bשx ͽzShߩGsiyT= +W=sv*Dwӱ'XMf Dh}3AbuHgwIC 00Rh1\oݨLYqaB%b1I;^>!N I]CdJ/CGG*1:zPj!?2V& #C],€'yơZՈ3 +JYzT&PeXcaǍF DK8=%{936ZAOr>PCkS o#_ :1zCnbl4ߧv;m~;0%ex$B1#hgnG{@IDD"9^M7yZ Ԫ$K݈;/ÏBW;8gsɏj+0{?}xxjco9Ȏ9iўW11OLϐO#C^ח^n]Kwf,ލ!OVO&_| {q\%mNNIp3Ly?ʹ A 1Šn3qߎMfʦ='{ +_NȄq}^5zĽSXIBVc,؍l{2jcfKÒ;.rW@n9D:-p_voe~M]8ӑ&]8 sS6Rr:kOD~&XNV]L!VJj=#ܛ 0h [Pۦ,:BK)wCN\aXx +H= +#hkxgNj)[Hx ;OD=w+3'uIJ + ՝aޯ$6}I:]=^ []v="VPu$yF<2Fwƿg_sCƂ].񗊊$M㌔{"\(*+8lkE7b`W#9@d|xBAscE! x<[xnpĨ9ڸDͥĢaR3r, J~\вCN;YzЙ}MX&7ROɗwsE|!P^2dዽ7".-j1ci莥QJwC/1= Ȯ?}(KA%to 'D'c2{6WOc~f;:6 x]ƏY1:#K_;pʵG\KƵ+[lVu^,(2̑8֩?JEp +Ͳk94~8 fbJyoByxOlKa2jOn?nϭg HŜc!/۞2vFV/Lnc;7|il6ْ|[ GrVySUch']SUHMhSbL{%V4tW0),ƏR&2Khh/]rkE禜 +\Tp8Ub@؋xN7Im#C +k_$jcP!? 3c3󥷰؉kY$b>/D*/ gנ·smBs9Gӏ +wY &ދ@͞0ذ~٥v[ȒAG7s%'& u;0&jZe=-i$"g.dAߩmȟX΀ O N:LhAt t]!%33l&mHU]MgoO `[SAMH 6nB;AVp@zXoBȀY`,ND(n +[?%R?X9&V^#EZe &6#rMBfxz~In3kՑ1^uwgIBv1MsȾnPW!)2S4ٓQEX%ՌB}4_ +Wv}= WԚOCulg +YG_uf9)a@v3e&?%P4~_ާ!G.mX^'Y;s 3aji>Q.} `m$/_n(GxSC*Zpe[1Dviw1m'/c5=Nm20eQSr8J+9_X=꟪&2.7ut4!X۝ى%քW|щ+ZT=}[O^='t:CCV%E`. 'tGn^~cu2G15I:^-)׬QDpI5pƏ2#a"Hhߠ܊Y cX3 t._ DڣsQ8vvW:Π*3H (N5P'K0rf`AE_HPIZː? Fa(7d4" |dz+_I̟2 +ƨbDž&vyxZX`wb·.Ǩ<|0~0rPڲ(]S1ĕ/ڊlyYT]/8TMDw;FBfD:UAl~bI5,w#GrltwRQܻCFMu+9 ^.q& R΍2/8-$ɴ}6%2Cvl3Fw6-G%|"#gA)[Lufo!˭ v!,:GдJr`Fٶk?3SSTބ9@-h, +x7Q+?çMؠ,tˑZ"ח8:kuvd*߿1NNK-zE)+N(5~^:xfhɌaRuz~ jIun~X8& +sT/h+ßL(pzЅo?roA $d2tVZ~1K-؏lQ].(mZ<| q:}RVowl}L~ƌG s5<9W͉<5,C_l <^},Bc5zv]sj_ErxۆSޡqvNyF2ɳ侻Q{6>\Nǒڟ'1u]=DMӷhI8x,Sv.պtbkMD5\CtNO5˚z12JK{DSK* ȗkiw>L_ i\TXSY^԰}tI]]q;:gZ]g] +v[1荇Fq'E#h~Wd5y(枒NݰL=ܓNۅ y^w*I.*!Y&ա93Ѡ:I"[E)[ɳ4Y^Ѓxix)ӥɔe#8OoPaU`AEaQۉwTmc~_d3-pzzg*qoA<]޾pڭV0UT׆`g=pg Ey ֻLٻwxz3yH}"7{߳v/!kǤȩ&̣DZOzpc +ڑZx2G6Y]N> F7R(r]]Xj. Ǭ3>>SkageNm'ҋ`3 .A@ԯM&Qw61$bFi(pulWKљhU[鬳Z~F85m6)z~Ynbacq?Qm)"Zhت͢YpLm?ӫT}ϩ¥H@G)s qFg(U>#RJy,c (~*B)MQxvԳ6ɭu?\5 0AsG;T" +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/KUKDYT+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"THhZ(&H/TH)A0T]"HQ9y2|g׻~{ml&pu@bqbPq"HP* CZH8Ն㐊  RҊ2?H rvpɁ40H# 2\!p4A 4dO)DP(rā(,@($rg $SEA@4o1Cp]/4#E[ApbܼpH+./8MWhAP(_$st9ў?u$wk@@OWng z

= b'V8jpv:v( +N<Lϊ粇3ړ*8tؚ(T wANkݛڼ ΫlSWA*k:a6z}vu_[qd|އALlNn[Mu@MGew?0 BŜ(D=Q6f9'H4/=M#)XMϿzy׭*gTk\ьs7j=#(NJc#r@k^FA؋x2Z '|bsi%_ۚX_9и7cpHX%{Uho'䪋=cR=.UQ۲:LZzty &>Gc?ؚ $Sν/F_y^Po|͡ը9*s5ҙݏ죺 +qVR=5"mIRHͩGw95ڈ`]/ï7􍹋ҝ#|vT\b2r}wNA 1Bqz=ė$Y}j%_CLU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'ӁYUks#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+ی,07M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"Nf\!eÊVyDŽ.t7AxbCB p=9=ګ#m|5trcfET18@Wg iG3g=mD9˅Ŝ([/ G S">GUQ0S]Ey1Eי@*䛃)JGq5> r\47V)Dϫ,Ȕ +*/PlZεu5e|"o}&=J{f7IFNb3X&*l93#yfB GiEsMx(|iWx6 +7¾Yjr'@wB#EN:|'w -7wR(Ms8Z=4_R8WkO$ +ͻg كsvhVCԳv^yN\M]i"L.U4^ʧVvt77XS:+o4ff=&iW_˲\pdJkt#1d#g7Ѫ{jD;F& //vZ7kygFv}78ck8Yi6eD9'z`z'X;D̛~+Xp֊ ̴Ζx;lf&vrGSȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPT}Toq7&qynʄ[lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|p/3x$Hէuryz{B ^\Y.+tB| @\tgƙ9HnlٵaxTԥ^Sd:8.Mx+MØX9':2nSMtp1:!1g0AJ. 60(Li'_&ZFbh>Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&(pFDun6TeT]ٖ* +{ řw`y -?X.ή$Jo +ON.s *}p2*c%KNDn}/:]q +7A%WgQAؼ|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],o=byl0uDiBwGM}؏ 度<t"l@Au?fa[pt5z0?|$X7J:N|_zuGk[|Ϟaq˼ɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩkmsOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R675[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 837 +/Length2 1524 +/Length3 534 +/Length 2136 +>> +stream +xR{8yn71jꭥ1` 1ȴ8Ġwƫ9Cf؉• +F%9H-4CʡVY [ȩmo}WnE8-@b1NAk4fna{PqtLk`1NX31"o1DzX R"Y** lP!P 7&;A>Ҭa0 AT2 6 5sOm*_bΨI㰙ba(G5T}[_{ L5'?՟p + b?38,P"_SO F  +L@jA|/H|!5S|pi_P%7o羉byP_ +֝טԪx؎VQU_MdS94vǣalX iE*(k6G:Rt6R@q)<p?C9?@¤A|.";G$N g?2P$xh47ߥ +y맊KMTKAHKݟ{"mmo <)0AOL¥kM4$}_mKE[jqj|ԑOz"I=^:<~;WF@~?8T^2kXQ=44:sYr}\K,%#`~y`lXfIyjrKm24H"k+|7^e6`L'XF]sfu'ѳ;YgNV0%V* LN6ݤnc@ϯz}2IC׼Alq*,,ԻrH%M^rVS}+/{Vgk2OFn.p/C-wL[HO L::~+=8?mnhoOT뷾"?$Cz,2 +XO%;/ ɥX6ry&޻m6GFk^!^B8i}H} Ϊy; r$7ng͸1KM~̊tesw>&z+zABY"ڇh'.32tx~<{Nm(V] NIF\JLi푧4ۧF{Jm)CڠʂQa&jP +V2xCslNwCR(7osbr.NxvƼ]A)G{5'Yvg؋$TyﶆH\\r;%Q!U7f҄iGY1fo[q{_Wzrͼ4,ŏ!E>:>U/$9nN veC~RYe®TOҬ>=Fijds#Z + +}J?MS:4c*#ǀXD!]Q}$NL3S/hiY1@}{~sKū}bϧl{%,4؈P4FWɓM +ft> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2214 +/Length3 533 +/Length 2765 +>> +stream +xy<#o4YBEfېmPL!Ec1FcFe)dPZ,)ۋ,Gs+a03"Q0p`} Ct$Өx& hip=6JGQ4@:T{3_N&ੀ= K#AfQ([A@D2 x$2˚E~Dߟ-XT~94*% ^My: o~ bQ(x?>ޗL Ac1A:`O#tVg'=H$|Z32J Ԁ#d9$bL70:H%J>6?</W>%:9pku/YR 4"JL<)ܜ `Z: t!jy}H  gM(t?b=*뿜!Ƭ1Y>Oy¯7rˡXsW +Ƀ3֢W8hӲëa2+[V|Z\|;>mw-Ԃ:~C\찵EWJxNC uh*o%S\\kP7o )Ӭ$#.okn`:td1u\jOaԠ`Fh +Q!ctڹipAOQy,|[//@Q#=W*/ 7]BZ +Y\e~ ]$z*F)ڜQY&?bNc;u163Ve|/^% +?Hx?iZx+Yz]XWfh R`=, fئ 、:2gGܩsBjEu6ϊ\CWU.3r}sA59W5m*Ol<-!-W$0\`sc܃yymA ].5rHç~2k5넛:k8i8Rژ(>RO%ޏy(, qU?([FC%ۯG"3:Tiw& "A Plͻ[|"NG6%{5bڇ"*0lHOSb!}">g-~bc~Ss|hEwL4&<\l8 هQ冻RY&Ώ-fjD[7Y^ =ѶDv'913oY׫lX"5!y0ץ/> +x6:v{!k- <9hxͳֲm!V{"e% C2lނ,!9ŤC`[_;ccd*GbV }G 5uL'qZW{+:ئPS[)Z_vkyz:MHQh&WHVFGwF뾕8, ~l>2?ks>>P\q՛y~XԽ8+;X 3 I[5'SD AhnܲiG.!&i'j S|Fʘڎ`׹R1RF/*G].:XJ +{Q>`ur;sItЦ 9~'8VϗG(>}-@vzOO|GZɾi])+λ:yX_[>7(3dx渒2L/\ǚ#NtQ3J_ هC«:Va'ІV%t!26>dx#F㎱hB/$(g ߼/> +endobj +36 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2042 +/Length3 533 +/Length 2579 +>> +stream +xy<IXo,%06̃,ˤƛ5Pґ[d[UJc "K=|\}ݷҨL=> X;">eMLjghB@`hC@kZN + bֻx*g $+2p p = $C 0@$?HB !QhG\:n`HY 8WYcCsm(쌧|__T:)CuǗOkhD5pcDytiʄSj ?g|*u8#3|fHӧ*wWMoݦʱ4/!CWMDo9eV9\%0ncR#@aKe\h;H}| 9/)2)G1ՋcĩSjbNf*JmvO,JD[pCNFњܰ.>͹3l}|gg% +Ž( ~dq^S%B㹫5DC=8n eE3oC^dQG96gŋɫPQ4V%\sEYb¸.A+=Ϙүӳ[(_cT8JYCzS8^+sUkuOIԤHڙ>35ST5TܖQܤrX¥^,X#IS+`ndB7 kq-9U8rZfJ3˙k}Zbg}0͐3صc/39exl%V^B*KC뺤$SZl.]Z=uQ<֨qzUx5f/:VcoZ mc&#j0UKm8UR)5=iK31fw'h:4 ҼW j^`CR6rNص009gСFOMHo]I=z>_'I}Ħ'2]\;N9"̌tŗ{WǏ\l熋ku1{ QwID(hD^qLVr52# #TF,?)}8:rpujpgIm9S6=F71=Ia+Mg%`qۮ[WhKz^3G4#g[Cmz2P++ 5eB&‚ᲿRKU''.h|ި(qH_ҠA_xt/W{e+'JqfZYe4=yQ{=O v}L>mqxjj=4GI`QKkNΠ#K|tFyӽ$FG%NoZ[ ;T$ i@=]ގyadgpҵ +Jimkrc,Qd|yVa%NOAp tCn[Mxr|.oܮ]ߎaOvK*i82ƃ+Ho1ZbZ쬫`voћrg;/&p2tP;"/VUnVq;-{Q)U-@YcV đy &'Rr-)'t즜t&zr8Qнl)Y2j5KrFA !u)Mabb;- yzDl .2PCbԶ&\+wۇ;Oet(.?(ouIu6 iVbe^Z~^y9ŀO#J4sN"e$Jӫ+j7k>CXZ~I_ 5‘©K{z.Wa ~-ɸtEz)7{& rΈmvnۚI7s?O·FB$KP_9Ʊ }qt̅;r%m R\~!T0 /'dOg(xz0wT +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-29 -960 1116 775] +/FontName/MIIZOG+CMSY10 +/ItalicAngle -14.035 +/StemV 85 +/FontFile 40 0 R +/Flags 68 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 993 +/Length3 533 +/Length 1523 +>> +stream +x{8TiRR*mjˋP16lhs9:sUiuT.Oes"%2& ==*YҽY?9=Hӛ鄒a$h&l6902bSB$И=`$@,{Kކ`6G,`/b'F|\D>"$8sB1   #NhDb0J % a@pT)Y1P HB"?2tD >9HQ(%Q"ZQ8.XՍF8߉1!+Qsp)z4?#B16t,r|# \7WOG;z"8AEcb/rL.k!sF+hj >x"gk*ggRϴL;[Ua[b$ոI07`AbQJ0q0LY:j\Cum~'/6wfú^jI޾FS]z6WsԅjnÚ'beɿ4v3I(T6>wR#)G4J^?Y?Еf}RYFG?WP1j7/iq{XmӸmlW)tv3`E.K -=6O17sKNդYu>"2:l?}} aTϷю'6Rt"KZ#ͅ +JFNZJMu#__ rƧy[Re|;sڶT] ;w3RsyG^<zșRf_rUlӪ'Ԑi+i2H}9,KvfB^_tmTSna㓪s ۀW =-. Vw#D!uYv -Z0mZ׹q[2R֮VL,FJSż\tڵUeɴ㠇]>Xduصh*^TfkZ~„Gȸho#??bE"b0?]Do +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/SLWXNZ+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1588 +/Length3 533 +/Length 2125 +>> +stream +xgXSii*x( %@F`"EGd2$p$Ci: ,CGED " (C@ G!b&s{9>s>dF0ʠh$ 8{xLȂt" h[[ M-5B`paBP`li " +!$"b A# +\{%8FHh X@0H]kTxz,_Z 3BbN2Nd0˓!`pW6Iů/m" ra`, x0 !6.EB$G: +%eY"\(|bB"5\A:k9vy{~ ԟg-($ +UW}G'1xt2IW(''FT +@[4 X[bCA `1_WIl&ςs!xB `N#IDQf%)n"Up,VKL?p.C' 0 +?/_ + Jv\.!D:t, iSI"f ^6T~3V38i㹸x.A4n@!"(Gbj %Ӯj^[1j|2VUn%園Dc |T1>;u(;MNOμu{iNz=h~7ݛA+~4MI+tnu&j'GcG<3HR3Y S6wyXF̨l>nik!]*4hxL=ڮl".2zT$^6h|7&fi٤'mfWyS(&hljQV`7+Y_^LsWS Ժ s|"&TGrlUhX6!]2ɽT{|yם)o1q|:Ɓ]apgP~.,ɠ c'..2b+qle7ͱ>+&ND ۋ0nN!Zo'n}<,Xe2{-_/#=DFH<]=>(ڪu C(t lP``8m]V2juC6Ϊҫ͒רTr=sU1VJk0hf!65e;JՋywG?-T}d +p@~!d#MC03$Â-9&}ƍۘYr˼<7p Q9RSacMKnRymile?N?E!,>]ݭOP͊w*Ks5p$/9Mnd6 uVZԗusΞT4r}tݾ!«h#9JJ_閄vmd4#ģԞ7W.@RMumG%͕]3[Oߒz\)13:7`hwNuɲ'seaǭJnyG +^U- #o/oRPH:H\|l*\Lsaջs& %. gVN74~gHrkIzOwdz5s_zjPh:? HIm"ʲa+]zSPI:T {8E!EzsSb !>_󟹖Yz*EPw(}lxx^{xCOK=Bip/$+)- $> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw31]2fn h FNRȒǒ%'%d߷lEB# o~7'? _x +wFԟp8H5f$.Փ 0$ +@ ILhAb<T$lgb`;k'Q6A GG?%: 8!r߸risTHz <WW*==3vTT"іJiOTƏa! $@CQA 4"~#="%.a;pA,5-#Z)4W~w \NIgb|Bc_/6ƀ6EoM:w!_*ꃯ +_ӖgP@']_/ɹ\+-9=/k(l-]!8<*hm,:dJuqķ)87MCHsH"rL-ኙ>Ψ9IB)!՜ۼqz܏>~V~Ф2ˁW3[ʘEu>Hhryˑ M7c <ӆg}%()vB!Pr6ʴ2G{B֞Ax~op5N}F׃f }!”mߤ|LQ,ӑhۺ&eZaa,%rf"Ȕ4Նx&NGkfYO7-WL (a81_H're7X1Q{ⴻ;@nN.3&W}lQ^.]1o~$rՇWמkxࡲ:6Wލ4  Vh |ټծ?k3л`.:$A`eM3["bFb9og~_-ByݯB +/Fi%6n.^cK(تѩ٬;WeI:n;!m8ʙeDsZbz[\XJN4}yG) /vƇ!\’bGNaܢ: Aq>H]yZ}JPLӉbGZfo>қlxv^s12 +|2jű- %H}W^>h~0 jo5;EylIxswpz8M:]ﱎ +)pPdL?S{x(AeR>_Źɮ7-gzvX򐫬C%]nCԧQv69u7{KwJˋuӆ@{-Jp hTFxrs=ih)J5}iZ`qS sw]! ̤\w+>\ńk6e1IC =V; ^ 7Mcx&p/ iKRwQɳΏC*/(ExkG,#)-~)AsΟ)R  !U[u:fW 5;ET̑zl]Y01nFDL50 o$Fxp{<rmD}G^2F,'=u q3ޘHڜz1ا +f7 +r?E5ٵb `.ͩ,y/f0j Ϣu!8z(Ĵ[fɢNow5^qmuEaúi5>]*nfK 'Vz3FR5رЍ5.\寫Ō6eRj)g!m{q +3[`r3j6o',L%7R-pswߙaӮ__rݼ:oYh" +(oF\=1l('$Y *4u^PRϛyÝqi5鶛V,c?mrL_Γo{'?NE,_u[;v˜r#6jm4m8*^q6}qP,G EPci lƁn(&tXr:tsHdrQb]j<0Ǹg\5UdYcxML0S5EpG3Bl:h@ L.Έ*mNYmTѨ+-bK.˥$kT΋|K6'HuKoqs}Phc.yr 45<~aph"5^[ Wt0(6"2MQ|kxnj[|5q0k;)ݧo?h܏ +Slَ(Lzf5< uՋ':JFMYb!u*U\Em?qC̜+DU'[%/Yۯs>Fv-?1Zɶdk jn3>q+fi/fuYK&:`fѻb"uWRq~_h !-X,'vnKCl {_CBQHjsNqQ{1+GQU \VZqrN{G;BD['eZLl'n#^c2S0hn+3/(|[E!GBer{A[ZMSJnyM0 +O!5=MY{Fz![qq a>=h%-Cs\xhk(ܤw}Q:ZRK,)!4.zDqي>U^-Sr)ӪԾ]l1wk;?+ڟڌCkVh?@ x:F}Gkr +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/WBZCOP+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?)?@ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\-w +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/IRLNEJ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/BSTJRH+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10487 +/Length3 533 +/Length 11042 +>> +stream +xUp`혙혏)ff11 13333l18{yI{/ӒT QRe1s0J:ػ00X,̢b  +qX9,̼xx +@-F@25XTL.-@8T@Ќ`fe0ZX3K܀ \r9z̀L +?p?Yz;A. NhfjSc[+S{ [ _-+gI+w% +gho '7ix*[ٻy8?Yg7;@o,<$M̬-.f jw*QQw/v+\2fffn6vM]A ?߃p@w)<9:63a%%u[ix@ :ׇ=:fxo7f߷U~߸'c|Oeֻ=4n߲h3mBɱ:L=OZ>Ě.aY +o ᭊXJ+DqiA-SvkX +r6ik$ВS04,)dŮ9Hާn\ټeH`xaD}I + +Kʞ5纂[Dgr畼ZT  #7F{[r~J= qa^BHvq!S wH_͚uĔ%oZ5ØԍJ,C\0GFT;vlfVZ5 z?4"FuK|16w^BP[^q,> ɗi9pWGv_U01{sSqW9α'ЬlVdDP +]X4VW"B+ol:f/{M¡Qa=ݺ@ + 'c,/ WL``/6&\.ۥ61@W '?1Wj/.on]kvwe jCpY?3?2=78 讪[%>r啑]1E 9oe3[RE!D>ѧeb%ɴPˆ_YCu0!o?T,W>Io6%f3+bBț*ʊzSXC}! +fgA`tA^o~ ;qNp2.u'5_= ݥ=_S2qOKg FlɐoibP"BkTmenvh!kjsrQJ2tIQʁϩHhТGKj›L ,k-gBʡB{>6/aeNIKGhrgeJ/Tgq=}_ګQK MRrcM$ ֲ!LtNҒ&1͵NE<ȆY.j cwR0[0QvE ^wgb1#RVkBѰac/d|E#[i3QQ?Sq1Qൔ=aΌ8v^kHdyvdu.G&vyD> BHoͦƸmd 7TB"<+<C'cֳ~L.y(CG_mq59> e1U巜 ^_PwhѺ1,6.|P;fQ|3_7CYuLd#X3Docl]ZgN4!蟦TɍGx(֡O×ZHd;ڞl?4>4|K8MSו7 +UWkt9"~ a/(t)g5&->ixKX/)bˬV0E+Uz\J;ᬩq~958"ʟ V0\%{'c;( %aX)QX/>(uDvy׍c[( }!ܺv޽K- @ylix ? +P# +`8a87IÅ>g2YjBA&u\E+Zly 4:|\) +,x3 sB3\3kf,Q Gf-CDYE ߭P ߸aèU}nɠ!Dq&kŗsLJT˵5~ŖyA{0_}r-J)ӝ:kg󊶻ԦsHcS_6;/onZu}MSWimK8iۅ'nc{`c|riuq9I^mtL4LDZ؟ä2gOe4:> %Nȡͦ#9~{%5"{z[b4O񾵃72U^X Z)M2b|Y7 +߯"ת?W)_`~4'{KFD#_Jcgm3E؏+w*hT%F>QPBC )K.gn}LI+e[~QɃk80&\}>)~ט:==N#WkdA/mȌ +wz84&Rׇ_Ao\y-CNn!UçJ"ֿHE%j6fnOی03f["KZf\ GĜzQ|L>1֓A̡KVld50FC0L+^ݷ1Fvޔu2k}Irkd4Fai$BTˌ %[2ɾJJdμ GAQ:޴Gns?+T'JUBh=,,zXA II:XRb  +/ ](ϒEcdY6=%5l x>.U71/v?S ڌqx`-B-ֻ,:̰̑ +J hMښNFٞ8%j_Qۻjʽu +() Đ +N!tPB8L]Ä/=ۛkqҋHFvP89)[ ҋ $@0P +L}n"ׯj}WYoEL. + :pH}+s149#ܤS4vXίSVMǕ`D?ܾs[:92} +`r a /eJbƺOsiŝ)ƭ]. 涙q΢Dh o_1^VU9lRZm X:"z׿1zc+QR0z'fq4f2ދtȣϝ(~Ʉ5{%ڰ{i +aĠ A$~l瘂 <%XK̴kC +)%oV_iT.0ǃ6W13jp4֦{[Do'wz)1̮$ e< ďoaA/n] +g,),ٮyKgْ'Oh躌aUִso_+]ȘC51{k0S+ne/7hP/* PkGC~W99;| Iӿף6x\]CD錷ܾݍk;#- 8zǃ8pT#~m)N:FY(LtjZEþ, 3Äh-~hW\®r$ ZJiDsx%I-t^c1HLGjɁQ5A|+XZʺytpT*)2ӝt"1&oe{X9ŰE~m_ 9p@/:8Zv<aW_7z:hR-L`^C1fJlѓ9cr}nZ_OxX'5ƍmthZhB(uhzxɣ 5BT?_cUu9 {shK㜌dz#ctR { +Ӽ;n"ĜE!=z:TE)DWJCMKFW*]X_tbj@6>79qk` +;7/bgS$RTSv0Y%lT3\)pnT+A z%-cYMM >U޷U6sSDTXh뾰CבtaW0 <,i#ݨ6cyN)[:bbC = &nBzQd˵+ ]irnj +Y+n1̝Fj-?$(GF+TY31"ڟb}DKqG +\DހPbL< j 2.ub+ LE׬Gz(m.#!Q8$oz1:L%ҸǥQ6Ww/z߭qyI2; tؒmomO4KN J]`0iV8aO\dd %nHCY8b1‘d8&1tAc8r(Dao if呝bbte.Kԫ: W*oLUp~{a#u%k" -W[Nk&5Pdg(I-|Y Oe&Q*3rݑ~9%8t孔3 +Kk6g&b'lCIf~%tn7|H&&=Q'GV?:3d2 +I$GZi e4.Ox +k쿥<%<6V!XV6G{"u2g6`]| D iR}Il5,o x +YDSf5,?1:+%/ ++/EJ)tu@j~.lU"e9CXĽy5UWo_!{k [ZmlŌH[6(&Pt!9˱x,%=-Udꧪy] ).~Rw66vgEXsF{2Im +Qݼ8qozuÚA&u1nسW/Z7/piGߴN +V$2S- a('7YBZ?(V,jgttmU2R Ƹ^D*uYwI]B0B${~ }vM,7s0t+%o0WۣkKttLǔA3 ^FBV@X^gʆ7Q +́%pz" 7ʲG« 7#j W3s9[R/F޿bdEZ:0/mÕFU ʓn4Rm[o.͋*Dga(5R !^b1kL0($smO@$Y҈Yu6L,7^"7%KVG[`InvX^)gN+)|"f~<8Z ۉUѐbpU_yCeˈ>1<<w*6eGj~]qMJ^y@AIa)Xr_^ , 2߬a䤙CW7i]KUָ: :*T?G$՟n-?xp5:ޫ4%DԾew+/D3,QO|({i+j\+{1p'49 #DW_&IZBeqSaec6.^υ'sma +؇5ɎF bjn;jppBbDH0;fN:Yb+c6}K$h].M˶{?+IvZb]|J˞bjxƴ^Kݱ8 0^8qQ޽X]k p-=CI[y9&~:\R{vkN.Rd/r藺dhTg*),q wn4}Hֻ})vK\u}JSQXe[N,#-CUjDN6 = W5 Nޫ>B<͇#Ů]8}9 7DH~X8l֓oSh*.Lއx 45SZefl& KPh 6b]CvC5%5hɫac{6= aX] 4FtPouOuBbHFG廤r^/>oi?bC\N~8GSQ (dw$jՆR}j4ٝmg0ȭFժq.kd9+._y,h /IGhon W5\1[@kuV.R:Ϡ_p6QhfBQZTf21_t].;ݝkdikWtGl׵da6>y$־nRR.!-c2}}SeB:8}ѽKJ?{[ZnYXjd;=ĝ%gt\LA9w_*M @*|X+k\9!{VX/EY.iқ>oSy~%{jO :>$δU X*+ޝ(HcU~+H H_4+qHE&xxX=/ I0f̑mKk6h {—ژ#cQ߬u!Ʀt%Y'u~e)KWMQֱ$K\©UQ@5#x0|^ +D#u5Z/1$5OEFĥ<4n OEORK.DꊺpvhWPyT򸅰BlWV_CCCagopUE  ,Gw-daLE+#h5|Hm:۰XNZg{BڏT+LA4:Ѕ<,Zӝa00yU8m{ܡW;h8t)y[3Q_~C+5KhkQH1vYLBYp 0/) k\5QSR Akw%:=\IφwNtcA4l="}1"-q7Q8A0нu5q\F=nrSO1m1k2JF\NȜcٮsiZ3lD%9>$ч_'7ݴ E%ώdsJ+R4Qw#VKRo3܇"u +zx^K_vhTg+94_Fe( JDEb{&4b'Og + 'gjE?B pyzE"5j@+5NOiH8/(\x] ƅ49Ѐ +ɰ biu2ۖhyĒr2}uK{z\c!3 ~ٙ!:5|tG&J0.(.wL-~Smjy92ߟ:TK s$[~y9wv3 00\A6b +endstream +endobj +193 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/RLUPJI+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 192 0 R +/Flags 68 +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 198 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 198 0 R +>> +endobj +198 0 obj +<< +/Type/Pages +/Count 2 +/Kids[5 0 R 21 0 R] +/Parent 197 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 199 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 199 0 R +>> +endobj +199 0 obj +<< +/Type/Pages +/Count 2 +/Kids[48 0 R 52 0 R] +/Parent 197 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 200 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 200 0 R +>> +endobj +200 0 obj +<< +/Type/Pages +/Count 2 +/Kids[70 0 R 74 0 R] +/Parent 197 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 201 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 201 0 R +>> +endobj +201 0 obj +<< +/Type/Pages +/Count 2 +/Kids[78 0 R 82 0 R] +/Parent 197 0 R +>> +endobj +197 0 obj +<< +/Type/Pages +/Count 8 +/Kids[198 0 R 199 0 R 200 0 R 201 0 R] +/Parent 3 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 203 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 203 0 R +>> +endobj +203 0 obj +<< +/Type/Pages +/Count 2 +/Kids[86 0 R 90 0 R] +/Parent 202 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 204 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 204 0 R +>> +endobj +204 0 obj +<< +/Type/Pages +/Count 2 +/Kids[94 0 R 98 0 R] +/Parent 202 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 205 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 205 0 R +>> +endobj +205 0 obj +<< +/Type/Pages +/Count 2 +/Kids[102 0 R 106 0 R] +/Parent 202 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 206 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 206 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 206 0 R +>> +endobj +206 0 obj +<< +/Type/Pages +/Count 3 +/Kids[110 0 R 114 0 R 118 0 R] +/Parent 202 0 R +>> +endobj +202 0 obj +<< +/Type/Pages +/Count 9 +/Kids[203 0 R 204 0 R 205 0 R 206 0 R] +/Parent 3 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 208 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 208 0 R +>> +endobj +208 0 obj +<< +/Type/Pages +/Count 2 +/Kids[122 0 R 126 0 R] +/Parent 207 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 209 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 209 0 R +>> +endobj +209 0 obj +<< +/Type/Pages +/Count 2 +/Kids[130 0 R 134 0 R] +/Parent 207 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 210 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 210 0 R +>> +endobj +210 0 obj +<< +/Type/Pages +/Count 2 +/Kids[138 0 R 142 0 R] +/Parent 207 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 211 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 211 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 211 0 R +>> +endobj +211 0 obj +<< +/Type/Pages +/Count 3 +/Kids[146 0 R 150 0 R 154 0 R] +/Parent 207 0 R +>> +endobj +207 0 obj +<< +/Type/Pages +/Count 9 +/Kids[208 0 R 209 0 R 210 0 R 211 0 R] +/Parent 3 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 213 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 213 0 R +>> +endobj +213 0 obj +<< +/Type/Pages +/Count 2 +/Kids[158 0 R 162 0 R] +/Parent 212 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 214 0 R +>> +endobj +214 0 obj +<< +/Type/Pages +/Count 2 +/Kids[166 0 R 170 0 R] +/Parent 212 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 215 0 R +>> +endobj +215 0 obj +<< +/Type/Pages +/Count 2 +/Kids[174 0 R 178 0 R] +/Parent 212 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 216 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 216 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 195 0 R 19 0 R] +/Parent 216 0 R +>> +endobj +216 0 obj +<< +/Type/Pages +/Count 3 +/Kids[182 0 R 186 0 R 190 0 R] +/Parent 212 0 R +>> +endobj +212 0 obj +<< +/Type/Pages +/Count 9 +/Kids[213 0 R 214 0 R 215 0 R 216 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 35 +/Kids[197 0 R 202 0 R 207 0 R 212 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +217 0 obj +<< +>> +endobj +218 0 obj +null +endobj +219 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 217 0 R +/Threads 218 0 R +/Names 219 0 R +>> +endobj +xref +0 220 +0000000000 65535 f +0000119602 00000 n +0000125591 00000 n +0000125236 00000 n +0000125441 00000 n +0000119766 00000 n +0000004047 00000 n +0000000009 00000 n +0000051887 00000 n +0000051703 00000 n +0000000913 00000 n +0000056608 00000 n +0000056422 00000 n +0000001906 00000 n +0000061731 00000 n +0000061543 00000 n +0000002823 00000 n +0000125341 00000 n +0000003740 00000 n +0000125391 00000 n +0000003992 00000 n +0000119869 00000 n +0000014453 00000 n +0000071679 00000 n +0000071490 00000 n +0000004108 00000 n +0000076950 00000 n +0000076760 00000 n +0000005054 00000 n +0000082254 00000 n +0000082065 00000 n +0000005990 00000 n +0000006966 00000 n +0000084698 00000 n +0000084504 00000 n +0000007920 00000 n +0000087763 00000 n +0000087577 00000 n +0000008866 00000 n +0000009830 00000 n +0000090651 00000 n +0000090456 00000 n +0000011446 00000 n +0000092478 00000 n +0000092287 00000 n +0000012397 00000 n +0000013392 00000 n +0000014342 00000 n +0000120054 00000 n +0000015149 00000 n +0000014515 00000 n +0000015049 00000 n +0000120159 00000 n +0000021925 00000 n +0000094911 00000 n +0000094717 00000 n +0000015211 00000 n +0000098465 00000 n +0000098271 00000 n +0000016182 00000 n +0000017192 00000 n +0000099882 00000 n +0000099687 00000 n +0000018099 00000 n +0000019081 00000 n +0000102539 00000 n +0000102353 00000 n +0000020058 00000 n +0000020803 00000 n +0000021789 00000 n +0000120345 00000 n +0000022538 00000 n +0000021987 00000 n +0000022493 00000 n +0000120450 00000 n +0000023589 00000 n +0000022600 00000 n +0000023465 00000 n +0000120636 00000 n +0000024022 00000 n +0000023651 00000 n +0000023977 00000 n +0000120741 00000 n +0000025106 00000 n +0000024084 00000 n +0000024982 00000 n +0000121024 00000 n +0000025692 00000 n +0000025168 00000 n +0000025647 00000 n +0000121129 00000 n +0000026831 00000 n +0000025754 00000 n +0000026707 00000 n +0000121315 00000 n +0000027272 00000 n +0000026893 00000 n +0000027227 00000 n +0000121420 00000 n +0000028372 00000 n +0000027334 00000 n +0000028236 00000 n +0000121607 00000 n +0000029036 00000 n +0000028435 00000 n +0000028990 00000 n +0000121715 00000 n +0000030191 00000 n +0000029100 00000 n +0000030055 00000 n +0000121906 00000 n +0000030807 00000 n +0000030255 00000 n +0000030761 00000 n +0000122014 00000 n +0000032037 00000 n +0000030871 00000 n +0000031901 00000 n +0000122122 00000 n +0000032684 00000 n +0000032101 00000 n +0000032638 00000 n +0000122418 00000 n +0000033939 00000 n +0000032748 00000 n +0000033803 00000 n +0000122526 00000 n +0000034575 00000 n +0000034003 00000 n +0000034529 00000 n +0000122717 00000 n +0000035559 00000 n +0000034639 00000 n +0000035423 00000 n +0000122825 00000 n +0000036803 00000 n +0000035623 00000 n +0000036667 00000 n +0000123016 00000 n +0000037427 00000 n +0000036867 00000 n +0000037381 00000 n +0000123124 00000 n +0000038568 00000 n +0000037491 00000 n +0000038432 00000 n +0000123315 00000 n +0000039076 00000 n +0000038632 00000 n +0000039030 00000 n +0000123423 00000 n +0000040342 00000 n +0000039140 00000 n +0000040206 00000 n +0000123531 00000 n +0000041017 00000 n +0000040406 00000 n +0000040971 00000 n +0000123827 00000 n +0000042374 00000 n +0000041081 00000 n +0000042238 00000 n +0000123935 00000 n +0000043075 00000 n +0000042438 00000 n +0000043029 00000 n +0000124126 00000 n +0000044417 00000 n +0000043139 00000 n +0000044281 00000 n +0000124234 00000 n +0000045112 00000 n +0000044481 00000 n +0000045066 00000 n +0000124425 00000 n +0000046226 00000 n +0000045176 00000 n +0000046066 00000 n +0000124533 00000 n +0000047374 00000 n +0000046290 00000 n +0000047214 00000 n +0000124724 00000 n +0000048777 00000 n +0000047438 00000 n +0000048617 00000 n +0000124832 00000 n +0000050257 00000 n +0000048841 00000 n +0000050097 00000 n +0000124940 00000 n +0000051639 00000 n +0000113892 00000 n +0000113697 00000 n +0000050321 00000 n +0000051244 00000 n +0000051581 00000 n +0000120927 00000 n +0000119974 00000 n +0000120264 00000 n +0000120555 00000 n +0000120846 00000 n +0000122321 00000 n +0000121234 00000 n +0000121526 00000 n +0000121823 00000 n +0000122230 00000 n +0000123730 00000 n +0000122634 00000 n +0000122933 00000 n +0000123232 00000 n +0000123639 00000 n +0000125139 00000 n +0000124043 00000 n +0000124342 00000 n +0000124641 00000 n +0000125048 00000 n +0000125523 00000 n +0000125546 00000 n +0000125568 00000 n +trailer +<< +/Size 220 +/Root 2 0 R +/Info 1 0 R +>> +startxref +125689 +%%EOF diff --git a/src/axiom-website/CATS/schaum9.input.pamphlet b/src/axiom-website/CATS/schaum9.input.pamphlet new file mode 100644 index 0000000..fa7d4f2 --- /dev/null +++ b/src/axiom-website/CATS/schaum9.input.pamphlet @@ -0,0 +1,1700 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/input schaum9.input} +\author{Timothy Daly} +\maketitle +\eject +\tableofcontents +\eject +\section{\cite{1}:14.182~~~~~$\displaystyle\int{\frac{dx}{\sqrt{x^2+a^2}}}$} +$$\int{\frac{1}{\sqrt{x^2+a^2}}}=\ln\left(x+\sqrt{x^2+a^2}\right)$$ +$$\int{\frac{1}{\sqrt{x^2+a^2}}}=\sinh^{-1}\frac{x}{a}$$ +<<*>>= +)spool schaum9.output +)set message test on +)set message auto off +)clear all + +--S 1 +aa:=integrate(1/(sqrt(x^2+a^2)),x) +--R +--R +--R +-------+ +--R | 2 2 +--R (1) - log(\|x + a - x) +--R Type: Union(Expression Integer,...) +--E + +--S 2 +bb:=log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +--R | 2 2 +--R (2) log(\|x + a + x) +--R Type: Expression Integer +--E + +--S 3 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x + a + x) - log(\|x + a - x) +--R Type: Expression Integer +--E + +--S 4 14:182 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 +--R (4) - log(a ) +--R Type: Expression Integer +--E + +@ +This is equal to $-\log(a^2)$ but Axiom cannot prove it. + +\section{\cite{1}:14.183~~~~~$\displaystyle\int{\frac{x~dx}{\sqrt{x^2+a^2}}}$} +$$\int{\frac{x}{\sqrt{x^2+a^2}}}=\sqrt{x^2+a^2}$$ +<<*>>= +)clear all + +--S 5 +aa:=integrate(x/(sqrt(x^2+a^2)),x) +--R +--R +--R +-------+ +--R | 2 2 2 2 +--R - x\|x + a + x + a +--R (1) ----------------------- +--R +-------+ +--R | 2 2 +--R \|x + a - x +--R Type: Union(Expression Integer,...) +--E + +--S 6 +bb:=sqrt(x^2+a^2) +--R +--R +-------+ +--R | 2 2 +--R (2) \|x + a +--R Type: Expression Integer +--E + +--S 7 14:183 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.184~~~~~$\displaystyle +\int{\frac{x^2~dx}{\sqrt{x^2+a^2}}}$} +$$\int{\frac{x^2}{\sqrt{x^2+a^2}}}= +\frac{x\sqrt{x^2+a^2}}{2}-\frac{a^2}{2}\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 8 +aa:=integrate(x^2/sqrt(x^2+a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 | 2 2 2 2 4 | 2 2 +--R (2a x\|x + a - 2a x - a )log(\|x + a - x) +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (- 2x - a x)\|x + a + 2x + 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 4x\|x + a - 4x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 9 +bb:=(x*sqrt(x^2+a^2))/2-a^2/2*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 | 2 2 +--R - a log(\|x + a + x) + x\|x + a +--R (2) ------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 10 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R a log(\|x + a + x) + a log(\|x + a - x) +--R (3) --------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 11 +logmul1:=rule(c*log(a)+c*log(b) == c*log(a*b)) +--R +--I (4) c log(b) + c log(a) + %K == c log(a b) + %K +--R Type: RewriteRule(Integer,Integer,Expression Integer) +--E + +--S 12 14:184 Schaums and Axiom differ by a constant +dd:=logmul1 cc +--R +--R 2 2 +--R a log(a ) +--R (5) --------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.185~~~~~$\displaystyle +\int{\frac{x^3~dx}{\sqrt{x^2+a^2}}}$} +$$\int{\frac{x^3}{\sqrt{x^2+a^2}}}= +\frac{(x^2+a^2)^{3/2}}{3}-a^2\sqrt{x^2+a^2} +$$ +<<*>>= +)clear all + +--S 13 +aa:=integrate(x^3/sqrt(x^2+a^2),x) +--R +--R +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x + 5a x + 6a x)\|x + a + 4x - 3a x - 9a x - 2a +--R (1) ------------------------------------------------------------ +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x + 3a )\|x + a - 12x - 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 14 +bb:=(x^2+a^2)^(3/2)/3-a^2*sqrt(x^2+a^2) +--R +--R +-------+ +--R 2 2 | 2 2 +--R (x - 2a )\|x + a +--R (2) -------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 15 14:185 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.186~~~~~$\displaystyle\int{\frac{dx}{x\sqrt{x^2+a^2}}}$} +$$\int{\frac{1}{x\sqrt{x^2+a^2}}}= +-\frac{1}{a}\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 16 +aa:=integrate(1/(x*sqrt(x^2+a^2)),x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - log(\|x + a - x + a) + log(\|x + a - x - a) +--R (1) --------------------------------------------------- +--R a +--R Type: Union(Expression Integer,...) +--E + +--S 17 +bb:=-1/a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +--R \|x + a + a +--R log(--------------) +--R x +--R (2) - ------------------- +--R a +--R Type: Expression Integer +--E + +--S 18 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R +-------+ +-------+ | 2 2 +--R | 2 2 | 2 2 \|x + a + a +--R - log(\|x + a - x + a) + log(\|x + a - x - a) + log(--------------) +--R x +--R ------------------------------------------------------------------------- +--R a +--R Type: Expression Integer +--E + +--S 19 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R log(\|x + a + a) - log(\|x + a - x + a) + log(\|x + a - x - a) +--R + +--R - log(x) +--R / +--R a +--R Type: Expression Integer +--E + +--S 20 14:186 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) - -------- +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.187~~~~~$\displaystyle +\int{\frac{dx}{x^2\sqrt{x^2+a^2}}}$} +$$\int{\frac{1}{x^2\sqrt{x^2+a^2}}}= +-\frac{\sqrt{x^2+a^2}}{a^2x} +$$ +<<*>>= +)clear all + +--S 21 +aa:=integrate(1/(x^2*sqrt(x^2+a^2)),x) +--R +--R +--R 1 +--R (1) - ---------------- +--R +-------+ +--R | 2 2 2 +--R x\|x + a - x +--R Type: Union(Expression Integer,...) +--E + +--S 22 +bb:=-sqrt(x^2+a^2)/(a^2*x) +--R +--R +-------+ +--R | 2 2 +--R \|x + a +--R (2) - ---------- +--R 2 +--R a x +--R Type: Expression Integer +--E + +--S 23 14:187 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 1 +--R (3) - -- +--R 2 +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.188~~~~~$\displaystyle\int{\frac{dx}{x^3\sqrt{x^2+a^2}}}$} +$$\int{\frac{1}{x^3\sqrt{x^2+a^2}}}= +-\frac{\sqrt{x^2+a^2}}{2a^2x^2}+\frac{1}{2a^3} +\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 24 +aa:=integrate(1/(x^3*sqrt(x^2+a^2)),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 3 | 2 2 4 2 2 | 2 2 +--R (2x \|x + a - 2x - a x )log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +--R 3 | 2 2 4 2 2 | 2 2 +--R (- 2x \|x + a + 2x + a x )log(\|x + a - x - a) +--R + +--R +-------+ +--R 2 3 | 2 2 3 3 +--R (2a x + a )\|x + a - 2a x - 2a x +--R / +--R +-------+ +--R 3 3 | 2 2 3 4 5 2 +--R 4a x \|x + a - 4a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 25 +bb:=-sqrt(x^2+a^2)/(2*a^2*x^2)+1/(2*a^3)*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +-------+ +--R 2 \|x + a + a | 2 2 +--R x log(--------------) - a\|x + a +--R x +--R (2) ----------------------------------- +--R 3 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 26 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R +-------+ +-------+ | 2 2 +--R | 2 2 | 2 2 \|x + a + a +--R log(\|x + a - x + a) - log(\|x + a - x - a) - log(--------------) +--R x +--R ----------------------------------------------------------------------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 27 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R - log(\|x + a + a) + log(\|x + a - x + a) - log(\|x + a - x - a) +--R + +--R log(x) +--R / +--R 3 +--R 2a +--R Type: Expression Integer +--E + +--S 28 14:188 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) -------- +--R 3 +--R 2a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.189~~~~~$\displaystyle\int{\sqrt{x^2+a^2}}~dx$} +$$\int{\sqrt{x^2+a^2}}= +\frac{x\sqrt{x^2+a^2}}{2}+\frac{a^2}{2}\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 29 +aa:=integrate(sqrt(x^2+a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 | 2 2 2 2 4 | 2 2 +--R (- 2a x\|x + a + 2a x + a )log(\|x + a - x) +--R + +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (- 2x - a x)\|x + a + 2x + 2a x +--R / +--R +-------+ +--R | 2 2 2 2 +--R 4x\|x + a - 4x - 2a +--R Type: Union(Expression Integer,...) +--E + +--S 30 +bb:=(x*sqrt(x^2+a^2))/2+a^2/2*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 | 2 2 +--R a log(\|x + a + x) + x\|x + a +--R (2) ----------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 31 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 +--R - a log(\|x + a + x) - a log(\|x + a - x) +--R (3) ----------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 32 14:189 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 2 +--R a log(a ) +--R (4) - --------- +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.190~~~~~$\displaystyle\int{x\sqrt{x^2+a^2}}~dx$} +$$\int{x\sqrt{x^2+a^2}}= +\frac{(x^2+a^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 33 +aa:=integrate(x*sqrt(x^2+a^2),x) +--R +--R +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x - 7a x - 3a x)\|x + a + 4x + 9a x + 6a x + a +--R (1) ----------------------------------------------------------- +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x + 3a )\|x + a - 12x - 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 34 +bb:=(x^2+a^2)^(3/2)/3 +--R +--R +-------+ +--R 2 2 | 2 2 +--R (x + a )\|x + a +--R (2) ------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 35 14:190 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.191~~~~~$\displaystyle +\int{x^2\sqrt{x^2+a^2}}~dx$} +$$\int{x^2\sqrt{x^2+a^2}}= +\frac{x(x^2+a^2)^{3/2}}{4}-\frac{a^2x\sqrt{x^2+a^2}}{8}- +\frac{a^4}{8}\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 36 +aa:=integrate(x^2*sqrt(x^2+a^2),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 4 3 6 | 2 2 4 4 6 2 8 | 2 2 +--R ((8a x + 4a x)\|x + a - 8a x - 8a x - a )log(\|x + a - x) +--R + +--R +-------+ +--R 7 2 5 4 3 6 | 2 2 8 2 6 4 4 6 2 +--R (- 16x - 24a x - 10a x - a x)\|x + a + 16x + 32a x + 20a x + 4a x +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (64x + 32a x)\|x + a - 64x - 64a x - 8a +--R Type: Union(Expression Integer,...) +--E + +--S 37 +bb:=(x*(x^2+a^2)^(3/2))/4-(a^2*x*sqrt(x^2+a^2))/8-a^4/8*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 4 | 2 2 3 2 | 2 2 +--R - a log(\|x + a + x) + (2x + a x)\|x + a +--R (2) ----------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 38 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R a log(\|x + a + x) + a log(\|x + a - x) +--R (3) --------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 39 14:191 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 4 2 +--R a log(a ) +--R (4) --------- +--R 8 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.192~~~~~$\displaystyle +\int{x^3\sqrt{x^2+a^2}}~dx$} +$$\int{x^3\sqrt{x^2+a^2}}= +\frac{(x^2+a^2)^{5/2}}{5}-\frac{a^2(x^2+a^2)^{3/2}}{3} +$$ +<<*>>= +)clear all + +--S 40 +aa:=integrate(x^3*sqrt(x^2+a^2),x) +--R +--R +--R (1) +--R +-------+ +--R 9 2 7 4 5 6 3 8 | 2 2 10 2 8 +--R (- 48x - 76a x - 3a x + 35a x + 10a x)\|x + a + 48x + 100a x +--R + +--R 4 6 6 4 8 2 10 +--R 35a x - 40a x - 25a x - 2a +--R / +--R +-------+ +--R 4 2 2 4 | 2 2 5 2 3 4 +--R (240x + 180a x + 15a )\|x + a - 240x - 300a x - 75a x +--R Type: Union(Expression Integer,...) +--E + +--S 41 +bb:=(x^2+a^2)^(5/2)/5-(a^2*(x^2+a^2)^(3/2))/3 +--R +--R +-------+ +--R 4 2 2 4 | 2 2 +--R (3x + a x - 2a )\|x + a +--R (2) ---------------------------- +--R 15 +--R Type: Expression Integer +--E + +--S 42 14:192 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.193~~~~~$\displaystyle +\int{\frac{\sqrt{x^2+a^2}}{x}}~dx$} +$$\int{\frac{\sqrt{x^2+a^2}}{x}}= +\sqrt{x^2+a^2}-a\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 43 +aa:=integrate(sqrt(x^2+a^2)/x,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (- a\|x + a + a x)log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 2 2 +--R (a\|x + a - a x)log(\|x + a - x - a) - x\|x + a + x + a +--R / +--R +-------+ +--R | 2 2 +--R \|x + a - x +--R Type: Union(Expression Integer,...) +--E + +--S 44 +bb:=sqrt(x^2+a^2)-a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +-------+ +--R \|x + a + a | 2 2 +--R (2) - a log(--------------) + \|x + a +--R x +--R Type: Expression Integer +--E + +--S 45 +cc:=aa-bb +--R +--R (3) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - a log(\|x + a - x + a) + a log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R \|x + a + a +--R a log(--------------) +--R x +--R Type: Expression Integer +--E + +--S 46 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R a log(\|x + a + a) - a log(\|x + a - x + a) +--R + +--R +-------+ +--R | 2 2 +--R a log(\|x + a - x - a) - a log(x) +--R Type: Expression Integer +--E + +--S 47 14:193 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R (5) - a log(- 1) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.194~~~~~$\displaystyle +\int{\frac{\sqrt{x^2+a^2}}{x^2}}~dx$} +$$\int{\frac{\sqrt{x^2+a^2}}{x^2}}= +-\frac{\sqrt{x^2+a^2}}{x}+\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 48 +aa:=integrate(sqrt(x^2+a^2)/x^2,x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 2 | 2 2 2 +--R (- x\|x + a + x )log(\|x + a - x) - a +--R (1) -------------------------------------------- +--R +-------+ +--R | 2 2 2 +--R x\|x + a - x +--R Type: Union(Expression Integer,...) +--E + +--S 49 +bb:=-sqrt(x^2+a^2)/x+log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R x log(\|x + a + x) - \|x + a +--R (2) ---------------------------------- +--R x +--R Type: Expression Integer +--E + +--S 50 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x + a + x) - log(\|x + a - x) - 1 +--R Type: Expression Integer +--E + +--S 51 14:194 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 +--R (4) - log(a ) - 1 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.195~~~~~$\displaystyle +\int{\frac{\sqrt{x^2+a^2}}{x^3}}~dx$} +$$\int{\frac{\sqrt{x^2+a^2}}{x^3}}= +-\frac{\sqrt{x^2+a^2}}{2x^2}-\frac{1}{2a} +\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 52 +aa:=integrate(sqrt(x^2+a^2)/x^3,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 3 | 2 2 4 2 2 | 2 2 +--R (- 2x \|x + a + 2x + a x )log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +--R 3 | 2 2 4 2 2 | 2 2 +--R (2x \|x + a - 2x - a x )log(\|x + a - x - a) +--R + +--R +-------+ +--R 2 3 | 2 2 3 3 +--R (2a x + a )\|x + a - 2a x - 2a x +--R / +--R +-------+ +--R 3 | 2 2 4 3 2 +--R 4a x \|x + a - 4a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 53 +bb:=-sqrt(x^2+a^2)/(2*x^2)-1/(2*a)*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +-------+ +--R 2 \|x + a + a | 2 2 +--R - x log(--------------) - a\|x + a +--R x +--R (2) ------------------------------------- +--R 2 +--R 2a x +--R Type: Expression Integer +--E + +--S 54 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R +-------+ +-------+ | 2 2 +--R | 2 2 | 2 2 \|x + a + a +--R - log(\|x + a - x + a) + log(\|x + a - x - a) + log(--------------) +--R x +--R ------------------------------------------------------------------------- +--R 2a +--R Type: Expression Integer +--E + +--S 55 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R log(\|x + a + a) - log(\|x + a - x + a) + log(\|x + a - x - a) +--R + +--R - log(x) +--R / +--R 2a +--R Type: Expression Integer +--E + +--S 56 14:195 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) - -------- +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.196~~~~~$\displaystyle\int{\frac{dx}{(x^2+a^2)^{3/2}}}$} +$$\int{\frac{1}{(x^2+a^2)^{3/2}}}= +\frac{x}{a^2\sqrt{x^2+a^2}} +$$ +<<*>>= +)clear all + +--S 57 +aa:=integrate(1/(x^2+a^2)^(3/2),x) +--R +--R +--R 1 +--R (1) - --------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x + a - x - a +--R Type: Union(Expression Integer,...) +--E + +--S 58 +bb:=x/(a^2*sqrt(x^2+a^2)) +--R +--R x +--R (2) ------------ +--R +-------+ +--R 2 | 2 2 +--R a \|x + a +--R Type: Expression Integer +--E + +--S 59 14:196 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 1 +--R (3) -- +--R 2 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.197~~~~~$\displaystyle +\int{\frac{x~dx}{(x^2+a^2)^{3/2}}}$} +$$\int{\frac{x}{(x^2+a^2)^{3/2}}}= +\frac{-1}{\sqrt{x^2+a^2}} +$$ +<<*>>= +)clear all + +--S 60 +aa:=integrate(x/(x^2+a^2)^(3/2),x) +--R +--R +--R +-------+ +--R | 2 2 +--R \|x + a - x +--R (1) --------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x + a - x - a +--R Type: Union(Expression Integer,...) +--E + +--S 61 +bb:=-1/sqrt(x^2+a^2) +--R +--R 1 +--R (2) - ---------- +--R +-------+ +--R | 2 2 +--R \|x + a +--R Type: Expression Integer +--E + +--S 62 14:197 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.198~~~~~$\displaystyle +\int{\frac{x^2dx}{(x^2+a^2)^{3/2}}}$} +$$\int{\frac{x^2}{(x^2+a^2)^{3/2}}}= +\frac{-x}{\sqrt{x^2+a^2}}+\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 63 +aa:=integrate(x^2/(x^2+a^2)^(3/2),x) +--R +--R +--R +-------+ +-------+ +--R | 2 2 2 2 | 2 2 2 +--R (- x\|x + a + x + a )log(\|x + a - x) + a +--R (1) ------------------------------------------------- +--R +-------+ +--R | 2 2 2 2 +--R x\|x + a - x - a +--R Type: Union(Expression Integer,...) +--E + +--S 64 +bb:=-x/sqrt(x^2+a^2)+log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R \|x + a log(\|x + a + x) - x +--R (2) --------------------------------- +--R +-------+ +--R | 2 2 +--R \|x + a +--R Type: Expression Integer +--E + +--S 65 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R (3) - log(\|x + a + x) - log(\|x + a - x) - 1 +--R Type: Expression Integer +--E + +--S 66 14:198 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 +--R (4) - log(a ) - 1 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.199~~~~~$\displaystyle +\int{\frac{x^3dx}{(x^2+a^2)^{3/2}}}$} +$$\int{\frac{x^3}{(x^2+a^2)^{3/2}}}= +\sqrt{x^2+a^2}+\frac{a^2}{\sqrt{x^2+a^2}} +$$ +<<*>>= +)clear all + +--S 67 +aa:=integrate(x^3/(x^2+a^2)^(3/2),x) +--R +--R +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (- 2x - 4a x)\|x + a + 2x + 5a x + 2a +--R (1) -------------------------------------------- +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (2x + a )\|x + a - 2x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 68 +bb:=sqrt(x^2+a^2)+a^2/sqrt(x^2+a^2) +--R +--R 2 2 +--R x + 2a +--R (2) ---------- +--R +-------+ +--R | 2 2 +--R \|x + a +--R Type: Expression Integer +--E + +--S 69 14:199 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.200~~~~~$\displaystyle +\int{\frac{dx}{x(x^2+a^2)^{3/2}}}$} +$$\int{\frac{1}{x(x^2+a^2)^{3/2}}}= +\frac{1}{a^2\sqrt{x^2+a^2}}- +\frac{1}{a^3}\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 70 +aa:=integrate(1/(x*(x^2+a^2)^(3/2)),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R | 2 2 2 2 | 2 2 +--R (- x\|x + a + x + a )log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +-------+ +--R | 2 2 2 2 | 2 2 | 2 2 +--R (x\|x + a - x - a )log(\|x + a - x - a) - a\|x + a + a x +--R / +--R +-------+ +--R 3 | 2 2 3 2 5 +--R a x\|x + a - a x - a +--R Type: Union(Expression Integer,...) +--E + +--S 71 +bb:=1/(a^2*sqrt(x^2+a^2))-1/a^3*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R +-------+ | 2 2 +--R | 2 2 \|x + a + a +--R - \|x + a log(--------------) + a +--R x +--R (2) ----------------------------------- +--R +-------+ +--R 3 | 2 2 +--R a \|x + a +--R Type: Expression Integer +--E + +--S 72 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R +-------+ +-------+ | 2 2 +--R | 2 2 | 2 2 \|x + a + a +--R - log(\|x + a - x + a) + log(\|x + a - x - a) + log(--------------) +--R x +--R ------------------------------------------------------------------------- +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 73 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +-------+ +--R | 2 2 | 2 2 | 2 2 +--R log(\|x + a + a) - log(\|x + a - x + a) + log(\|x + a - x - a) +--R + +--R - log(x) +--R / +--R 3 +--R a +--R Type: Expression Integer +--E + +--S 74 14:200 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R log(- 1) +--R (5) - -------- +--R 3 +--R a +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.201~~~~~$\displaystyle +\int{\frac{dx}{x^2(x^2+a^2)^{3/2}}}$} +$$\int{\frac{1}{x^2(x^2+a^2)^{3/2}}}= +-\frac{\sqrt{x^2+a^2}}{a^4x}-\frac{x}{a^4\sqrt{x^2+a^2}} +$$ +<<*>>= +)clear all + +--S 75 +aa:=integrate(1/(x^2*(x^2+a^2)^(3/2)),x) +--R +--R +--R 1 +--R (1) - ----------------------------------- +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (2x + a x)\|x + a - 2x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 76 +bb:=-sqrt(x^2+a^2)/(a^4*x)-x/(a^4*sqrt(x^2+a^2)) +--R +--R 2 2 +--R - 2x - a +--R (2) ------------- +--R +-------+ +--R 4 | 2 2 +--R a x\|x + a +--R Type: Expression Integer +--E + +--S 77 14:201 Schaums and Axiom differ by a constant +cc:=aa-bb +--R +--R 2 +--R (3) - -- +--R 4 +--R a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.202~~~~~$\displaystyle +\int{\frac{dx}{x^3(x^2+a^2)^{3/2}}}$} +$$\int{\frac{1}{x^3(x^2+a^2)^{3/2}}}= +\frac{-1}{2a^2x^2\sqrt{x^2+a^2}}- +\frac{3}{2a^4\sqrt{x^2+a^2}}+ +\frac{3}{2a^5}\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 78 +aa:=integrate(1/(x^3*(x^2+a^2)^(3/2)),x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 5 2 3 | 2 2 6 2 4 4 2 | 2 2 +--R ((12x + 9a x )\|x + a - 12x - 15a x - 3a x )log(\|x + a - x + a) +--R + +--R +-------+ +--R 5 2 3 | 2 2 6 2 4 4 2 +--R ((- 12x - 9a x )\|x + a + 12x + 15a x + 3a x ) +--R * +--R +-------+ +--R | 2 2 +--R log(\|x + a - x - a) +--R + +--R +-------+ +--R 4 3 2 5 | 2 2 5 3 3 5 +--R (12a x + 7a x + a )\|x + a - 12a x - 13a x - 3a x +--R / +--R +-------+ +--R 5 5 7 3 | 2 2 5 6 7 4 9 2 +--R (8a x + 6a x )\|x + a - 8a x - 10a x - 2a x +--R Type: Union(Expression Integer,...) +--E + +--S 79 +bb:=-1/(2*a^2*x^2*sqrt(x^2+a^2))-3/(2*a^4*sqrt(x^2+a^2))+3/(2*a^5)*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R +-------+ | 2 2 +--R 2 | 2 2 \|x + a + a 2 3 +--R 3x \|x + a log(--------------) - 3a x - a +--R x +--R (2) --------------------------------------------- +--R +-------+ +--R 5 2 | 2 2 +--R 2a x \|x + a +--R Type: Expression Integer +--E + +--S 80 +cc:=aa-bb +--R +--R (3) +--R +-------+ +--R +-------+ +-------+ | 2 2 +--R | 2 2 | 2 2 \|x + a + a +--R 3log(\|x + a - x + a) - 3log(\|x + a - x - a) - 3log(--------------) +--R x +--R -------------------------------------------------------------------------- +--R 5 +--R 2a +--R Type: Expression Integer +--E + +--S 81 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 3log(\|x + a + a) + 3log(\|x + a - x + a) +--R + +--R +-------+ +--R | 2 2 +--R - 3log(\|x + a - x - a) + 3log(x) +--R / +--R 5 +--R 2a +--R Type: Expression Integer +--E + +--S 82 14:202 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R 3log(- 1) +--R (5) --------- +--R 5 +--R 2a +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.203~~~~~$\displaystyle\int{(x^2+a^2)^{3/2}}~dx$} +$$\int{(x^2+a^2)^{3/2}}= +\frac{x(x^2+a^2)^{3/2}}{4}+\frac{3a^2x\sqrt{x^2+a^2}}{8}+ +\frac{3}{8}a^4\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 83 +aa:=integrate((x^2+a^2)^(3/2),x) +--R +--R (1) +--R +-------+ +-------+ +--R 4 3 6 | 2 2 4 4 6 2 8 | 2 2 +--R ((- 24a x - 12a x)\|x + a + 24a x + 24a x + 3a )log(\|x + a - x) +--R + +--R +-------+ +--R 7 2 5 4 3 6 | 2 2 8 2 6 4 4 +--R (- 16x - 56a x - 42a x - 5a x)\|x + a + 16x + 64a x + 68a x +--R + +--R 6 2 +--R 20a x +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 4 +--R (64x + 32a x)\|x + a - 64x - 64a x - 8a +--R Type: Union(Expression Integer,...) +--E + +--S 84 +bb:=(x*(x^2+a^2)^(3/2))/4+(3*a^2*x*sqrt(x^2+a^2))/8+3/8*a^4*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 4 | 2 2 3 2 | 2 2 +--R 3a log(\|x + a + x) + (2x + 5a x)\|x + a +--R (2) ----------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 85 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 4 | 2 2 4 | 2 2 +--R - 3a log(\|x + a + x) - 3a log(\|x + a - x) +--R (3) ------------------------------------------------- +--R 8 +--R Type: Expression Integer +--E + +--S 86 14:203 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 4 2 +--R 3a log(a ) +--R (4) - ---------- +--R 8 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.204~~~~~$\displaystyle\int{x(x^2+a^2)^{3/2}}~dx$} +$$\int{x(x^2+a^2)^{3/2}}=\frac{(x^2+a^2)^{5/2}}{5}$$ +<<*>>= +)clear all + +--S 87 +aa:=integrate(x*(x^2+a^2)^(3/2),x) +--R +--R +--R (1) +--R +-------+ +--R 9 2 7 4 5 6 3 8 | 2 2 10 2 8 +--R (- 16x - 52a x - 61a x - 30a x - 5a x)\|x + a + 16x + 60a x +--R + +--R 4 6 6 4 8 2 10 +--R 85a x + 55a x + 15a x + a +--R / +--R +-------+ +--R 4 2 2 4 | 2 2 5 2 3 4 +--R (80x + 60a x + 5a )\|x + a - 80x - 100a x - 25a x +--R Type: Union(Expression Integer,...) +--E + +--S 88 +bb:=(x^2+a^2)^(5/2)/5 +--R +--R +-------+ +--R 4 2 2 4 | 2 2 +--R (x + 2a x + a )\|x + a +--R (2) --------------------------- +--R 5 +--R Type: Expression Integer +--E + +--S 89 14:204 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.205~~~~~$\displaystyle\int{x^2(x^2+a^2)^{3/2}}~dx$} +$$\int{x^2(x^2+a^2)^{3/2}}= +\frac{x(x^2+a^2)^{5/2}}{6}-\frac{a^2x(x^2+a^2)^{3/2}}{24}- +\frac{a^4x\sqrt{x^2+a^2}}{16}- +\frac{a^6}{16}\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 90 +aa:=integrate(x^2*(x^2+a^2)^(3/2),x) +--R +--R +--R (1) +--R +-------+ +--R 6 5 8 3 10 | 2 2 6 6 8 4 10 2 +--R (96a x + 96a x + 18a x)\|x + a - 96a x - 144a x - 54a x +--R + +--R 12 +--R - 3a +--R * +--R +-------+ +--R | 2 2 +--R log(\|x + a - x) +--R + +--R +-------+ +--R 11 2 9 4 7 6 5 8 3 10 | 2 2 +--R (- 256x - 832a x - 912a x - 404a x - 68a x - 3a x)\|x + a +--R + +--R 12 2 10 4 8 6 6 8 4 10 2 +--R 256x + 960a x + 1296a x + 772a x + 198a x + 18a x +--R / +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (1536x + 1536a x + 288a x)\|x + a - 1536x - 2304a x - 864a x - 48a +--R Type: Union(Expression Integer,...) +--E + +--S 91 +bb:=(x*(x^2+a^2)^(5/2))/6-(a^2*x*(x^2+a^2)^(3/2))/24-(a^4*x*sqrt(x^2+a^2))/16-a^6/16*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 6 | 2 2 5 2 3 4 | 2 2 +--R - 3a log(\|x + a + x) + (8x + 14a x + 3a x)\|x + a +--R (2) ---------------------------------------------------------- +--R 48 +--R Type: Expression Integer +--E + +--S 92 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 6 | 2 2 6 | 2 2 +--R a log(\|x + a + x) + a log(\|x + a - x) +--R (3) --------------------------------------------- +--R 16 +--R Type: Expression Integer +--E + +--S 93 14:205 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 6 2 +--R a log(a ) +--R (4) --------- +--R 16 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.206~~~~~$\displaystyle\int{x^3(x^2+a^2)^{3/2}}~dx$} +$$\int{x^3(x^2+a^2)^{3/2}}= +\frac{(x^2+a^2)^{7/2}}{7}-\frac{a^2(x^2+a^2)^{5/2}}{5} +$$ +<<*>>= +)clear all + +--S 94 +aa:=integrate(x^3*(x^2+a^2)^(3/2),x) +--R +--R +--R (1) +--R 13 2 11 4 9 6 7 8 5 10 3 +--R - 320x - 1072a x - 1240a x - 467a x + 112a x + 105a x +--R + +--R 12 +--R 14a x +--R * +--R +-------+ +--R | 2 2 +--R \|x + a +--R + +--R 14 2 12 4 10 6 8 8 6 10 4 12 2 +--R 320x + 1232a x + 1736a x + 973a x + 21a x - 175a x - 49a x +--R + +--R 14 +--R - 2a +--R / +--R +-------+ +--R 6 2 4 4 2 6 | 2 2 7 2 5 +--R (2240x + 2800a x + 840a x + 35a )\|x + a - 2240x - 3920a x +--R + +--R 4 3 6 +--R - 1960a x - 245a x +--R Type: Union(Expression Integer,...) +--E + +--S 95 +bb:=(x^2+a^2)^(7/2)/7-(a^2*(x^2+a^2)^(5/2))/5 +--R +--R +-------+ +--R 6 2 4 4 2 6 | 2 2 +--R (5x + 8a x + a x - 2a )\|x + a +--R (2) ------------------------------------ +--R 35 +--R Type: Expression Integer +--E + +--S 96 14:206 Schaums and Axiom agree +cc:=aa-bb +--R +--R (3) 0 +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.207~~~~~$\displaystyle +\int{\frac{(x^2+a^2)^{3/2}}{x}}~dx$} +$$\int{\frac{(x^2+a^2)^{3/2}}{x}}= +\frac{(x^2+a^2)^{3/2}}{3}+a^2\sqrt{x^2+a^2}- +a^3\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 97 +aa:=integrate((x^2+a^2)^(3/2)/x,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 3 2 5 | 2 2 3 3 5 | 2 2 +--R ((- 12a x - 3a )\|x + a + 12a x + 9a x)log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +--R 3 2 5 | 2 2 3 3 5 | 2 2 +--R ((12a x + 3a )\|x + a - 12a x - 9a x)log(\|x + a - x - a) +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x - 19a x - 12a x)\|x + a + 4x + 21a x + 21a x + 4a +--R / +--R +-------+ +--R 2 2 | 2 2 3 2 +--R (12x + 3a )\|x + a - 12x - 9a x +--R Type: Union(Expression Integer,...) +--E + +--S 98 +bb:=(x^2+a^2)^(3/2)/3+a^2*sqrt(x^2+a^2)-a^3*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +-------+ +--R 3 \|x + a + a 2 2 | 2 2 +--R - 3a log(--------------) + (x + 4a )\|x + a +--R x +--R (2) ----------------------------------------------- +--R 3 +--R Type: Expression Integer +--E + +--S 99 +cc:=aa-bb +--R +--R (3) +--R +-------+ +-------+ +--R 3 | 2 2 3 | 2 2 +--R - a log(\|x + a - x + a) + a log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R 3 \|x + a + a +--R a log(--------------) +--R x +--R Type: Expression Integer +--E + +--S 100 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +--R 3 | 2 2 3 | 2 2 +--R a log(\|x + a + a) - a log(\|x + a - x + a) +--R + +--R +-------+ +--R 3 | 2 2 3 +--R a log(\|x + a - x - a) - a log(x) +--R Type: Expression Integer +--E + +--S 101 14:207 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R 3 +--R (5) - a log(- 1) +--R Type: Expression Integer +--E +@ + +\section{\cite{1}:14.208~~~~~$\displaystyle +\int{\frac{(x^2+a^2)^{3/2}}{x^2}}~dx$} +$$\int{\frac{(x^2+a^2)^{3/2}}{x^2}}= +-\frac{(x^2+a^2)^{3/2}}{x}+\frac{3x\sqrt{x^2+a^2}}{2}+ +\frac{3}{2}a^2\ln\left(x+\sqrt{x^2+a^2}\right) +$$ +<<*>>= +)clear all + +--S 102 +aa:=integrate((x^2+a^2)^{3/2}/x^2,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 2 3 4 | 2 2 2 4 4 2 | 2 2 +--R ((- 12a x - 3a x)\|x + a + 12a x + 9a x )log(\|x + a - x) +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 4x - 3a x + 4a x)\|x + a + 4x + 5a x - 3a x - 2a +--R / +--R +-------+ +--R 3 2 | 2 2 4 2 2 +--R (8x + 2a x)\|x + a - 8x - 6a x +--R Type: Union(Expression Integer,...) +--E + +--S 103 +bb:=-(x^2+a^2)^(3/2)/x+(3*x*sqrt(x^2+a^2))/2+3/2*a^2*log(x+sqrt(x^2+a^2)) +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 2 | 2 2 +--R 3a x log(\|x + a + x) + (x - 2a )\|x + a +--R (2) ----------------------------------------------- +--R 2x +--R Type: Expression Integer +--E + +--S 104 +cc:=aa-bb +--R +--R +-------+ +-------+ +--R 2 | 2 2 2 | 2 2 2 +--R - 3a log(\|x + a + x) - 3a log(\|x + a - x) - 2a +--R (3) ------------------------------------------------------- +--R 2 +--R Type: Expression Integer +--E + +--S 105 14:208 Schaums and Axiom differ by a constant +dd:=complexNormalize cc +--R +--R 2 2 2 +--R - 3a log(a ) - 2a +--R (4) ------------------ +--R 2 +--R Type: Expression Integer +--E + +@ + +\section{\cite{1}:14.209~~~~~$\displaystyle +\int{\frac{(x^2+a^2)^{3/2}}{x^3}}~dx$} +$$\int{\frac{(x^2+a^2)^{3/2}}{x^3}}= +-\frac{(x^2+a^2)^{3/2}}{2x^2}+\frac{3}{2}\sqrt{x^2+a^2}- +\frac{3}{2}a\ln\left(\frac{a+\sqrt{x^2+a^2}}{x}\right) +$$ +<<*>>= +)clear all + +--S 106 +aa:=integrate((x^2+a^2)^(3/2)/x^3,x) +--R +--R +--R (1) +--R +-------+ +-------+ +--R 4 3 2 | 2 2 5 3 3 | 2 2 +--R ((- 12a x - 3a x )\|x + a + 12a x + 9a x )log(\|x + a - x + a) +--R + +--R +-------+ +-------+ +--R 4 3 2 | 2 2 5 3 3 | 2 2 +--R ((12a x + 3a x )\|x + a - 12a x - 9a x )log(\|x + a - x - a) +--R + +--R +-------+ +--R 5 2 3 4 | 2 2 6 2 4 4 2 6 +--R (- 8x - 2a x + 3a x)\|x + a + 8x + 6a x - 3a x - a +--R / +--R +-------+ +--R 4 2 2 | 2 2 5 2 3 +--R (8x + 2a x )\|x + a - 8x - 6a x +--R Type: Union(Expression Integer,...) +--E + +--S 107 +bb:=-(x^2+a^2)^(3/2)/(2*x^2)+3/2*sqrt(x^2+a^2)-3/2*a*log((a+sqrt(x^2+a^2))/x) +--R +--R +-------+ +--R | 2 2 +-------+ +--R 2 \|x + a + a 2 2 | 2 2 +--R - 3a x log(--------------) + (2x - a )\|x + a +--R x +--R (2) ------------------------------------------------- +--R 2 +--R 2x +--R Type: Expression Integer +--E + +--S 108 +cc:=aa-bb +--R +--R (3) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R - 3a log(\|x + a - x + a) + 3a log(\|x + a - x - a) +--R + +--R +-------+ +--R | 2 2 +--R \|x + a + a +--R 3a log(--------------) +--R x +--R / +--R 2 +--R Type: Expression Integer +--E + +--S 109 +dd:=expandLog cc +--R +--R (4) +--R +-------+ +-------+ +--R | 2 2 | 2 2 +--R 3a log(\|x + a + a) - 3a log(\|x + a - x + a) +--R + +--R +-------+ +--R | 2 2 +--R 3a log(\|x + a - x - a) - 3a log(x) +--R / +--R 2 +--R Type: Expression Integer +--E + +--S 110 14:209 Schaums and Axiom differ by a constant +ee:=complexNormalize dd +--R +--R 3a log(- 1) +--R (5) - ----------- +--R 2 +--R Type: Expression Integer +--E + +)spool +)lisp (bye) +@ + +\eject +\begin{thebibliography}{99} +\bibitem{1} Spiegel, Murray R. +{\sl Mathematical Handbook of Formulas and Tables}\\ +Schaum's Outline Series McGraw-Hill 1968 p67-68 +\end{thebibliography} +\end{document} diff --git a/src/axiom-website/CATS/schaum9.input.pdf b/src/axiom-website/CATS/schaum9.input.pdf new file mode 100644 index 0000000..93e4430 --- /dev/null +++ b/src/axiom-website/CATS/schaum9.input.pdf @@ -0,0 +1,3328 @@ +%PDF-1.2 +7 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +10 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F1 +/FontDescriptor 9 0 R +/BaseFont/NGKDUA+CMR17 +/FirstChar 33 +/LastChar 196 +/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 +249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 +249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 +471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 +693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 +458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 +510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3 +667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6 +458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6 +458.6] +>> +endobj +13 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F2 +/FontDescriptor 12 0 R +/BaseFont/SGCAZP+CMR12 +/FirstChar 33 +/LastChar 196 +/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 +462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 +734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 +272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 +544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 +489.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611.8 816 +761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272 +299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6 +761.6 272 489.6] +>> +endobj +16 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F3 +/FontDescriptor 15 0 R +/BaseFont/GAIAGZ+CMR10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +18 0 obj +<< +/Filter[/FlateDecode] +/Length 179 +>> +stream +x%= @ wE+\cTmP/UmSBx h6C&w d9iXt̜Wx߾rѤ~׌K&|Cc PN&kr1MW;50a+A΂B)yռ~ #fC'd9Q6 +endstream +endobj +20 0 obj +<< +/F1 10 0 R +/F2 13 0 R +/F3 16 0 R +>> +endobj +6 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 20 0 R +>> +endobj +25 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F4 +/FontDescriptor 24 0 R +/BaseFont/KUKDYT+CMBX12 +/FirstChar 33 +/LastChar 196 +/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 +562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 +875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 +675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 +687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 +343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 +593.7 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5 +656.2 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 +812.5 875 562.5 1018.5 1143.5 875 312.5 562.5] +>> +endobj +28 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F5 +/FontDescriptor 27 0 R +/BaseFont/XQDABV+CMBX10 +/FirstChar 33 +/LastChar 196 +/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 +575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 +869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 +863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 +319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 +319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 +511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8 +638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 +575 1041.7 1169.4 894.4 319.4 575] +>> +endobj +31 0 obj +<< +/Type/Font +/Subtype/Type1 +/Name/F6 +/FontDescriptor 30 0 R +/BaseFont/WQBGVY+CMEX10 +/FirstChar 33 +/LastChar 196 +/Widths[791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 +1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 +888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 +1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.4 472.2 833.3 833.3 833.3 833.3 +833.3 1444.4 1277.8 555.6 1111.1 1111.1 1111.1 1111.1 1111.1 944.4 1277.8 555.6 1000 +1444.4 555.6 1000 1444.4 472.2 472.2 527.8 527.8 527.8 527.8 666.7 666.7 1000 1000 +1000 1000 1055.6 1055.6 1055.6 777.8 666.7 666.7 450 450 450 450 777.8 777.8 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 458.3 458.3 416.7 416.7 +472.2 472.2 472.2 472.2 583.3 583.3 0 0 472.2 472.2 333.3 555.6 577.8 577.8 597.2 +597.2 736.1 736.1 527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 +791.7 777.8] +>> +endobj +32 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/flat/natural/sharp/slurbelow/slurabove/lscript/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/dotlessi/dotlessj/weierstrass/vector/tie/psi +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie] +>> +endobj +35 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F7 +/FontDescriptor 34 0 R +/BaseFont/JNGLNF+CMMI10 +/FirstChar 33 +/LastChar 196 +/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 +750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5 +762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 +388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 +298.4 878 600.2 484.7 503.1 446.4 451.2 468.7 361.1 572.5 484.7 715.9 571.5 490.3 +465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4 +639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5 +570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8] +>> +endobj +36 0 obj +<< +/Type/Encoding +/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft +161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus +173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade] +>> +endobj +39 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F8 +/FontDescriptor 38 0 R +/BaseFont/CWFNWL+CMSY10 +/FirstChar 33 +/LastChar 196 +/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 +275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 +611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 +820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 +666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 +500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4 +444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8 +777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 +777.8 777.8 1000 1000 777.8 777.8 1000 777.8] +>> +endobj +42 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F9 +/FontDescriptor 41 0 R +/BaseFont/MIIZOG+CMR7 +/FirstChar 33 +/LastChar 196 +/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 +323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4 +323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 +874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 +692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631 +323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5 +600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5 +877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4 +843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4] +>> +endobj +45 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F10 +/FontDescriptor 44 0 R +/BaseFont/SLWXNZ+CMMI7 +/FirstChar 33 +/LastChar 196 +/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 +339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3 +339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 +506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 +1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 +594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 +530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9 +797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8 +588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8 +756 339.3] +>> +endobj +46 0 obj +<< +/Filter[/FlateDecode] +/Length 1096 +>> +stream +x՘M4| +=~ĥ@' +\Z@*񙱝qQgSv'x~/BIğ"=~/^[V+ң7ÿǧӻ/^2:nĠt4DoKAgo7y.55;A{~58trxa?1+D'?_RoROtFFvO:`?#J^rp2zvA酖!f +R>o +J~[GnzfU^"טL`!k[.9( +4`n1yV2=`M3@G͝3 3ǭi>30S*UNשԜ i\Ը;1mpiBΙ/ļ2 !bCTK .1޿ + +cmKMjW+!vvԖ8SjXb _=A6ii/?FKw@tz+ޗo@f%TmZ 8dBqj%C N +%:UULoQNǥ \Qkch8/q^Z 9&5R@ꡚg#ӔɎf&OY{S2b$ٰ-PiA4a.\4gΒ)[+>8KR3pF7nUyLeՙg*`I_,7cݗk ;uīCBt3ݕr_\swea|ulGyZ|Ѳ[ՙl^v=PQA,oILwL jB3IC}U }Ԩ)ͷ?CNl16W]~ AZ~ą 弇N|Y'X>CA>>Ebig9S>ݞYAU陿]J5vyXxئ6כI!HH +endstream +endobj +47 0 obj +<< +/F4 25 0 R +/F5 28 0 R +/F6 31 0 R +/F7 35 0 R +/F8 39 0 R +/F9 42 0 R +/F3 16 0 R +/F10 45 0 R +>> +endobj +22 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 47 0 R +>> +endobj +50 0 obj +<< +/Filter[/FlateDecode] +/Length 817 +>> +stream +xMo 7v3| zT{jC ^ko=Yf0`)O=>#L#1`9x#~ _k7UaGwzhf!Q; vy o=S֠mM;),~_ OU^࢒h; D*L PRUW@ ,sue\`o=`IKzoӢ7%-i/͋}^h%/tLprdO g 1HBAa_BjHtWw! $ M =$XABGBRdXQGhvl_=:lol?Uq X~T>`Tjȴ*>oXú90Cw⦮> +endobj +49 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 51 0 R +>> +endobj +56 0 obj +<< +/Encoding 32 0 R +/Type/Font +/Subtype/Type1 +/Name/F11 +/FontDescriptor 55 0 R +/BaseFont/VJRYSM+CMMI12 +/FirstChar 33 +/LastChar 196 +/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6 +489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6 +761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2 +947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 +380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7 +334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4 +699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2 +652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2 +589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272] +>> +endobj +59 0 obj +<< +/Encoding 36 0 R +/Type/Font +/Subtype/Type1 +/Name/F12 +/FontDescriptor 58 0 R +/BaseFont/WBZCOP+CMSY7 +/FirstChar 33 +/LastChar 196 +/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 +1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8 +585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6 +646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9 +1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8 +523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4 +493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3 +892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9 +892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9 +892.9 1138.9 892.9] +>> +endobj +60 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis] +>> +endobj +63 0 obj +<< +/Encoding 60 0 R +/Type/Font +/Subtype/Type1 +/Name/F13 +/FontDescriptor 62 0 R +/BaseFont/IRLNEJ+CMTI10 +/FirstChar 33 +/LastChar 196 +/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 +306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 +306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 +525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 +743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 +460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 +460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6 +766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1 +511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1] +>> +endobj +64 0 obj +<< +/Type/Encoding +/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace +160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis] +>> +endobj +67 0 obj +<< +/Encoding 64 0 R +/Type/Font +/Subtype/Type1 +/Name/F14 +/FontDescriptor 66 0 R +/BaseFont/BSTJRH+CMTT10 +/FirstChar 33 +/LastChar 196 +/Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 +525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 +525 525] +>> +endobj +68 0 obj +<< +/Filter[/FlateDecode] +/Length 976 +>> +stream +xWM6W(!WR0CnC׽4Jٖ7l˵Swl,H"<μyyIҔ<<{+ LH2[řdFfKrY򎿟 ~Vˬr!k&P!༥)Cd6@g!3LC 4 3l H4-a9S[L#%ҟ\Sv#`=9T"Z5 +oG)0L)Wfpr^+VirlW@`ecb.eFT34RY?27m 5pMf2[b2,fLWJiUn Ԡ@m3=Q:^Y<0%Yd v¸Z͐Sm-S"&x|-yw=vͫJޖ*'KR<klw+\ ›€ti\WQ/ _GH|P_jz1.h8&Yrb b#tu4Z(9eb{ڌ,0e_1G}UmF4qxZV=O'_eݖcXSy룊SVŦ,n8a_GdޝCq*)O`\||ޜu$ްHY2osHЦ> +endobj +53 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 69 0 R +>> +endobj +72 0 obj +<< +/Filter[/FlateDecode] +/Length 905 +>> +stream +xڽVKo8W(oa.c^Zh;-i +tuə8qC[Va.^dfA02(6CeoX~a9HX$Hi9s}Qa2ijiЇfqi y8e).>NitmiGu{QdNlCw Z Y8X3~t}J|rJA=;m}J+@Q/9Oم43v +4ܳOTXkC*T'NtwGësw1g2q +@f6ʖ~&2"z =EXU6rjJbEB5e9\R-U.dy'>)?"-җ225Z yLM~-8Ko0GܹVR5%PN"1 @:_SñPO]+ >CM5ƻ~SnMDqx U?8`>^dsRGeQ($Ty{clfvG9Fv+wџM^^VՐbzY|#%$?STu B ΫXT^| +endstream +endobj +73 0 obj +<< +/F14 67 0 R +/F3 16 0 R +/F8 39 0 R +/F7 35 0 R +/F9 42 0 R +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F13 63 0 R +>> +endobj +71 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 73 0 R +>> +endobj +76 0 obj +<< +/Filter[/FlateDecode] +/Length 1039 +>> +stream +xVKo6WhEK R4[Ǯ{jPR7 fS'@]`|I{.ș3|3srO{~^Td1YMULFTЛSŧxMp2%d,(P|29'فX= .Lgj-~fi(3-xc#t^ G!cB ][A4b :zL1(gqK;+EIB浲 `ȋa<1`D2#3:HŔ`\!kTWSO!q%"B .qs<0]-WlNUϤ1M>B vڅnLHe ;6KUP ףR}4L}Sc.84 m(2!ԇa#dIs.ث@韋,u͢68V֒dǽ)唊TtCF()g}u3:G~TF1O)=-Ly`^jIwAkk8RC8S#< >BĜ"z]0,+~6|(.>ͷ*TPx㘁d)6]zwr?/js ?O/?CU;WE̟ްHzSm5+iʂzoU>;:aN*ה#qY.s7YXχ%Md~漲!I6ecE;pjZE)˂X\Zb²)?Ǟt;Wij9OZc:m Q)L.dR uYjDKO]c9?{8c Rs<5vըb pe{.'o[\zŭ]em^Jr;QnX{^s-I-:PvDF>=nw]bJZgwu;-"! +2O+Fy 6m)ᏒozL?É< +endstream +endobj +77 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +75 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 77 0 R +>> +endobj +80 0 obj +<< +/Filter[/FlateDecode] +/Length 369 +>> +stream +xڵSr0+rL&&! vۛr+= eF7%L/%}{@0!` <)Ů +8; ɰ#@[ +Y+ QV9capڥprܕiUeEϳ|Ӳ>iƮ-46@M6& aX*\lKlN,NoGf +endstream +endobj +81 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +79 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 81 0 R +>> +endobj +84 0 obj +<< +/Filter[/FlateDecode] +/Length 963 +>> +stream +xWKo7W9| СE=ʥX;cv\EU ?>a Ǚᮘ!5K/fRl'aimPMA~\fqe.R:*BX\kMT fӮHj->%v44ɀ`eTl> LD$dӔ#螁Y &%+$\6u5>OwI}*@׋, U6We+EHIWeVY(*O!{W"M@;F-_Ieݭ9i=EܩǐNjORhc=;{h +lNr{7~˱o.QijFy-T/nw~ ۤȩ.]޽i֛yB?'\6X/rOq[ҢՒ+4 bFA2pC_2"JQc/{qjgHPuŋsqlzQ_GM +״ C{Apzu%I?~sg8/K'aDY1sB,zMqZ7!qjK[8Q:bpN=b[g7_=>s^5vnN7ٰG_^7v+q8ߌCncVgfZ#]1#xc|dDuq ꌚձ^iscS~p宬]w)WWM׈[Sc[10|uI@WK?_~[ +endstream +endobj +85 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +83 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 85 0 R +>> +endobj +88 0 obj +<< +/Filter[/FlateDecode] +/Length 938 +>> +stream +xڵWMo0+-b=^DAp)-KDxǖ"k{8K8\8 OŤ"f5d}K*B+Lajϼ .BXd0]Kb>|j 9[1AfP3+m<ߒ7xν liR$L`pӅf +&'SÓgQP' DjT܆ {Ř@ mk/Ye{^=^.Zdk~aiB \ +G%O _ڎk=t20ϴw5j$ߨ6YF1UQAr|bw%xmdcxh@雴)Lzuzu}w˪hNnp#TeU>irKZ,uV EI՛q%yR~< 7i~Քs?цSZ& ysϏb0O"!H@p=fuU57-N/:6'$Ύ(ΎWT,cQ/Fr[@e=DI3 1/txRa +,*BSH+B!xoO ֡Jz:ڻ괮d<ւhh7$=Vi%biJ~LϷ30}P-k*l3a'j%_Ro~<  +endstream +endobj +89 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +87 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 89 0 R +>> +endobj +92 0 obj +<< +/Filter[/FlateDecode] +/Length 407 +>> +stream +xڭTO0W!emBIvиฉI#c&쏷 f-@6B @tf@jB5mCz3f]m[ԕ |c᳽86ӺBavȲpʻ&:WfizjFi bpcsĀ:Tr_ۉ0(_pS ,DA}ejzÞ*_yl 6EQd"Ut>+|cJ*=MLe2r)$cW.{u q*"LV7suجX.E(lK^W&6epNӺlV{e*v = @Ϻxtl ynk~p$į?d2wb0ioD΢" +endstream +endobj +93 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +91 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 93 0 R +>> +endobj +96 0 obj +<< +/Filter[/FlateDecode] +/Length 837 +>> +stream +xڵVn0+xPdMظF ;Nb qRE ߡHYAQ]7 8'w>sI@D-"&~tL.j^`M|5zzIRB K}PI TԻ·M$ AjH!@;'0a4?)a1,Q,80? A,¯=Bu +˴qQi' +l-;{V2)k` KWl: +$c K[T:<Ǔj[Eids-gZdq/M鷣zISxQ"s\zԴ h|F^1K7r<*F9,…2/ϋwZ>x^/6/N=cl銿-a{f mɈx7R6TS TnC|zӛ"ˮ0Zmj1'yNg~hy&]5e; +DLU>h'XUA0ʼne +endstream +endobj +97 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F8 39 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +95 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 97 0 R +>> +endobj +100 0 obj +<< +/Filter[/FlateDecode] +/Length 1096 +>> +stream +xڽWKo7W]+s R)c^MU]Djb$ՅK΃3|R3 "B1bP Limc[*xwZ¹kC:o"eJz&5(ngJXU~{r0Bcΐ8To$Ne# +bŮġr^-F1!1{TQy8lqqHP\8fG&),yAv +tg).f5 s1 Ho4ଳ8,d\laDa&sPكvjPÀ`&lqi@00 Je0 kԞF^|3A֐\bqj'nv<.d}s'^;1dU6H͙L^ͱ}.NX3DYƉ ̘1Eih3}0EK.'&:"kcM] +].`O~=YFmcyPMʲb^_?> +endobj +99 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 101 0 R +>> +endobj +104 0 obj +<< +/Filter[/FlateDecode] +/Length 503 +>> +stream +xڵUo019gGⰪ4Ð A@t?c ;+UK??}@!B` ܤ;̀ e8@B۟# H4~@Cɍ(i1<3)1ca K:k< : abdL:9˞}u6"ovZ\]/h8ṳ^]bqI%4Bw46[[D O% bWg"bN*5۝Wue_ZkHh(qG&,jyU~6(  +/18u@.SHm>{ @n `r#:;q{0f ck|(~珛}[ͪiZ,Qf>:H:+T2-vnWT W^#'n~2e 1y{:DžH~&w< +ce ۴f駿zP0 +endstream +endobj +105 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +103 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 105 0 R +>> +endobj +108 0 obj +<< +/Filter[/FlateDecode] +/Length 993 +>> +stream +xڵVK6W(B %hsiڭYl ;(SǙosrO yYSD(&|!F0 5)p%tQ|Z#J8_~zgg!,2&7fNhK&%SP6e~GG7ȌEv*~YAch!S8f,G@xK;?Q!ypgv(iSɬP.$3zDITKXCiZ6' 碯'y H 0gX 3./' q=ѩO v2=!5JaYϣ) .4 XsnN;#O2u/ជ*39v,)#Ǽ+v:=KIМYs`w/8ei$:";{M\UZ`0<^1S!e̺'˽'^_n>QHS{GNG5. +,N" ieeo]:{ֳv6-<9!W];_Vn1J߷໳l4Ǘy_8| uP}>B[]ԅ8C@E_UbXO9&KG +8c)k +ГRi4v=CJr +K];t1'ēY*xsrV= :/89qfr#9FME㚢_HZ($!}in?i}~_CnocӕrtH>]_c_ F@]\=T#%`0ڳ )3AqŶyeS\Zlc=F8 0?|ZD-MCoo/I'S)̈ +vhGBΤ WT! +yMjE% |-T_W +endstream +endobj +109 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +107 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 109 0 R +>> +endobj +112 0 obj +<< +/Filter[/FlateDecode] +/Length 276 +>> +stream +xڥMO0n[$4F\n PzJ7&.'{w&3~05X#OG@" +H$PP$9H<_}HeHS%0ijto~V` AWR5$lT|_d/[YY6UeZyP~~;GYƷV-/zVSvˡ{nlgZ]gNg@y np20^z}?\@D"|%3k +endstream +endobj +113 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +111 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 113 0 R +>> +endobj +116 0 obj +<< +/Filter[/FlateDecode] +/Length 862 +>> +stream +xڥVMo1WHZ5cC/&҆l$BRHU*w’byf؀&"|D泥3\w(Jc2Y\1!љBe](0J:oAi sMT ,Nxt:橭 +6lX=x]^2P~y!ȴ( {Pd +VR[$81X%ĮJR]/r/ uQ "@kzP8 mpʸĽPcuSF + +/Q|/@taẂV):v Qw4z|ˮ'1K6؎=r]?doJz1>|-N>p}=d.veaEzG{qE}؟vIJcZOW0xYzڎLjgwu(ty㿼m#fIӔׇk8* +Fz@DPEQ~r +endstream +endobj +117 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F8 39 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +115 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 117 0 R +>> +endobj +120 0 obj +<< +/Filter[/FlateDecode] +/Length 1193 +>> +stream +xڵWKo7W(yu8fc`qmU_ZKJrB ׈`Bǫ{\?XK+dS|j_W*gR, %A-eIgtΉ -bf Had!51PKB! V}y%)zHCb B~U!Eċǹ{g 6_%=3ȂXءNSд:@,fL /xJ4-bi>E)v< 3E` $ʄy5f> +endobj +119 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 121 0 R +>> +endobj +124 0 obj +<< +/Filter[/FlateDecode] +/Length 274 +>> +stream +xڥRMO0+zCm%5zz@(H&ކݓ̛:3mF +,ݞ0@@$ "Ɂ~x | !1e>& !> +endobj +123 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 125 0 R +>> +endobj +128 0 obj +<< +/Filter[/FlateDecode] +/Length 1020 +>> +stream +xWKoFW쑲ξ)uX+1@;cv\EU ?/iՅy|;%Eeۼ$~'QֆJ\X\Uà_6o5ih]zrZB@Nc=%6ܻEpی4DSmPE8JRRݯɥﳬ(eNKŽ;3nI'F'^I6q<9B<cpL}6fc!҂t̫ %(fIFPPi/ U<]֖dPÆhC(}HD0a +m5PxЋpZ\ǖ0ߗU+xe2W!qg뭱$*,HuD. Ӄţf~9e"t%Ltѿjjf~;4_MZLXM`ͯƙR1)+p6%ݐ"o=3uǢ{`WSq~V—bwa28%K>۞=o˾WË70Ȕ"误0֠BT5Mo=.Gim4Zb(ߕ ɕ K:,E\X×`\cf`&ڙ2}L[ՑP{DX`tnv10YMہ%{j/؉3" +ΒY"S)3 + [&ylgy7# +ޜ&z.%c2?VxUYZdÙ[6#GBv&-$2lR;>TD]6{Vǧgwzo(OEy"Hq8JmQu['UǑ#z(cӼux<ͅ*XWxC/,v> +endobj +127 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 129 0 R +>> +endobj +132 0 obj +<< +/Filter[/FlateDecode] +/Length 955 +>> +stream +xڵVKo@+t7~D"8pn%R)%DڱGV"gwfM8ܒ@'͔& + 0C/3!GTiKq5/jirnI`3l:59T(f4,l!G~)$sP'2e\ 0!7N ʱ Y&<Э894@h.ʵ!|8g.|ҺxB!<iۦ=2'E+.}[} Vh" pU` \W2̰Cl pk_gLR -m E16!055r Ƃ_JY\+^Uu+Uݘ'mRء +~P`xARȂ*m)tbs1ʜ7i&Wi +@[R>6p.NuT\@vNLoR MVՠQN՚˜ni*uwm:iue9Z]ީ3R$ nVb=^lj"уҋdժ2Njb:^ޮe=Z?Zk&M>ꞢMݤ8i;=&jf^v?10Z7-7pyU_/nlؿDܤG4j/m7>qS:e[ NJE摚yd`:d0 3:@Frr=q|zi#vr}hM }Z')Y1nphPE +5|LC~&嘓XuУ> +endobj +131 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 133 0 R +>> +endobj +136 0 obj +<< +/Filter[/FlateDecode] +/Length 411 +>> +stream +xUO0WYhHvиฉIGLo bb/{kbP;pg-EEQ x/ +*[ +TI 2} +nʨ"ƕ ;v3BP'ԫtҜZ#:9jy0oqKl-ʳah=ou9$JLml*ަ`<+$YVCӝ\# Xp]G+ J N 9w9=v_PݿAJeT,poi2]B8߃l"q<(Y,xYa0O%U,Oք>:okplDH29YD)# FԻu +endstream +endobj +137 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +135 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 137 0 R +>> +endobj +140 0 obj +<< +/Filter[/FlateDecode] +/Length 1010 +>> +stream +xWnF+HE:$'H9%ZőSPxlvUuzeD {$B=ҌQDO2&F1_okvtt3:(DI qƉ+ClWU7.$XЊgSR8 ]yuKAd038QAB|HGHs)]=6r%#Tkц⎤ǁrxB2LXSb"8M4y"J*$ePnCRv[,&Ӣ[>ݯڈs/&i;!g3"Y>->o)2P\߯8rT잺,b}ܬmYJ>Ay4q-M;Ш~2~hR` +endstream +endobj +141 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +139 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 141 0 R +>> +endobj +144 0 obj +<< +/Filter[/FlateDecode] +/Length 171 +>> +stream +xu0 wc28iQP!jB 0ߝ%VZClaB#(w,<=h@"}A"-5kٰ5U)γ٨oDNM*³9?.yWc_|\. +UrB)e ; +endstream +endobj +145 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +143 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 145 0 R +>> +endobj +148 0 obj +<< +/Filter[/FlateDecode] +/Length 1062 +>> +stream +xWMo6W7ۀ/E=6KPڭk`kKI- %p8K8ܑ8@[_VD(&YN`Vj5dF +y'_}!yfҒ_ +ɴ"yܬ1m026L%obB +!iOyH2Ka=XAx4V pάGE@T .OpO[4B687x$PlD"+k 3Xav , xruDL1GS3QZ/ JEbd0$24: _Bj'@]=?ȕ)fIQ%*tO PkOpػu!g2$w1#!pl .9|[Kx??b!^o\&ڀ-7#=U1qDj+m#\DJ$ln?osoaB^o}NQIsB[tX +EԼY[{EFr?h)Q + (އ'HӦ>] WceC^n?uQTnpED(:B-zPZJ?*3 T*aGF&k=S[]{*dzps`6T 2I=%eT)?.h77WLJ?6OO s{%WYN|puM>_"}ӯ*жhTᴊi*VF$/:>L3I,#G?ddpƻ\&× BT^R&ԥDL!֭Z<`Z](R=k?hPS`.h ݴ +endstream +endobj +149 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F8 39 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +147 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 149 0 R +>> +endobj +152 0 obj +<< +/Filter[/FlateDecode] +/Length 500 +>> +stream +xڵUK0WHZZU=ts@ A@l?"uy|3A8ݾOpC-QD P|C!V,`~ %4`@aIxnYx]Ĉ/L!Ҕw"xv PهCX=[МENOA8̧z>^)8MJ ym/JSa@ 0گ~cfHCƿuVks:Vq"j+ca]W:r?>Rj(xV6*+g>V x/޷[hl P{ 630nrWwnaJe( ez6y;]/&<&Z8C;=Tج,˥~/Υ,182v)~mKW nR9w2^oDD[{qcV8F%B2FLYQ7Nɇ{ +endstream +endobj +153 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +151 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 153 0 R +>> +endobj +156 0 obj +<< +/Filter[/FlateDecode] +/Length 831 +>> +stream +xڭ[O0+R~ԇMi{\RR) gN$m8ɹST7e6p8I*WH[5bzct)AF:+E¹W $i GƫܖN\lc R#-#ʾ} U4: 4ET.V .ĥ&k$FR°uE=St>tT7rŪs=&2څBF& L"X MYVH;V:ݳJ6'Vm:Hd^@$UF>캮5'\sUyCp"7M&r;db`8sYjt%֑cq݆b;ځ(YakuGH7~2;IHX5 -gEXTc3:0 +$X+tMU `C3|ֵH԰WvîrWTǼumZ}zYlP؋X+,fi@8Rja4/d/~gdg 74ж;>9$He"Jk@f}ߑà3<ľSwlge!az?\K(xs^ckzE]v,6})q>'ll wavJ#з +emȕ'q"{z!m qGuh~v +endstream +endobj +157 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +155 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 157 0 R +>> +endobj +160 0 obj +<< +/Filter[/FlateDecode] +/Length 812 +>> +stream +xVo0~_dƿ i=Z$J;Ls&>LCBw(ݢ/$bߑf( 'R˄3Urɮ&2^?/4H] Xrڇ|X! gKy*r|l$8dkKFXvF.mg5rԈ6Vё7$7G'X#8]QX_ s +>O5.tfጓ a,V-@ MCV*€;X0Dvjt j'Ut$v_ i_!&;]?D9-(״;{{"XIhOp%R8Ej;;@Fz^\GgQSf9/D|a?y!!h1&]ta3]1ܸ)u3Ҍ]#;m@JF8`hes w7Nt.m\z] C!y`aTQ/,Q Ht' 2xs$p.}\0r T\ý3,~,'fɓq[vor}Pn!Â-vXLw?OQW > +endobj +159 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 161 0 R +>> +endobj +164 0 obj +<< +/Filter[/FlateDecode] +/Length 1042 +>> +stream +xWKo7W +E=%Xɲ#@]IA7@~|>I}0;}|C%wDL!iFBHZ1af*>-eviFɴÀ(G|@ +j%ɂK\DaHf"[@i<]/a8d6%J=`t=ߡM+dtQD+G`6nÕC:dg>ǁ 3Eو> |]i҅־C#3 ;c~r H*šX.Cd&3$fm)sg)qXE͋m S»Ōb"vKً;h-&R>;eH-u]nU0vb%2 ["S1CC3DRk%4nFM*ȥ&*T0ZAp%z |Uy@P1Qs5GqH21<'+<@3B+]s=dN0TUiߏ1v, +`졯?UÜ7&&rn~fuktLIW=pQmD|k$YwܶqQ/q]m5[6qn+Gauc9+Wyp,Λ<)oO[nDa|SƪWB )s+,O9ԏSQ0EG`J[kO-TJHdTUOV7C\B˖yœïD5|/I90f +dR6LTpNe,>maxȓ99ws|Cʴ.DO +?s s^1b͙n>W +(G5ꦓnpSI K 3 4iSSUQ5#(}.c4nד5m +؅_\se=܅>> +endobj +163 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 165 0 R +>> +endobj +168 0 obj +<< +/Filter[/FlateDecode] +/Length 197 +>> +stream +xuP=078A{>%P +L; PwHD +P+JSeS\e\/maJN@3F<ҕAY"l*:Pls).]n#loAߴ2zLqg#7o0WT~J7%zgNB +endstream +endobj +169 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +167 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 169 0 R +>> +endobj +172 0 obj +<< +/Filter[/FlateDecode] +/Length 924 +>> +stream +xڭWKo1+|HÅ.mh+Efgx[D =zI"$Z|C60of'1cun̹;qǀ(U +K:aHb@i!.BRbMqat~FGᘼVf4FtOp*< h,pmxaCio'CP{'FM1K_~}0 l|5f5=R:4q&D^J,ZF/D@e|S̪&_-S'G5@uOaݐf"Y>^xS繠ݙMXI@>%Ruh507 L{76f p%Ґ,QOQ` U 3_>G|@Y@j϶OW"8qrTkJPT6F=C_O!1ҸL.&@[jXw7@\˔SַװFz٭&X+P8GѨMx/uaym>3ͧ o''m#fZNj`3OnoC)x(*5GN`6wf(w@KxE)gڶqxMLYX-]qvTچ'|va +8%pS*g4By>6W~Gc\nI 9.~-۶9\߭;n \"a=$l0%v;t~pcP 0">-airS>T|v4Cl S!qM؈;4sO%^e>Ut{^_}I{r;SMZ蚂Ϳ;`3%iC +endstream +endobj +173 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +171 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 173 0 R +>> +endobj +176 0 obj +<< +/Filter[/FlateDecode] +/Length 1092 +>> +stream +xWn7+[ڬ K9H"`,+L|d/uCXŪ-€1rGa}W A  &?o(B.m>پ7ă7C\~K 8*%r4`TPv~$0n | sJ;~# U1C2]UOIhƆ4:i +_OKSsYj3s2mgV}c&QnhZ 6'D6$!{\phn=hӽHv8r;χGTdӀHO x9 +p6/k Н<+UrǴ;{!g6"؁Aw%RdM8Gsy%L(I^@pr|lбQ2xcd_L3%|ΐ` +C`k3]J&4nGn5UI&N)gm鄪y9-f"q_w%!%Χp9Œ<QȸDm["mܞHW!Ý|?F +jŐȟMykm0t?$zrz¨fO]B"\X~+js{#~ +J?$e-x۱w/P|[ e}-uU-)u?/~%jR(j$cEISngoH43zf|Hib4>Uշf0@ L0T׻XV]4EtbEC e3\e!"oCxZ:[uĂvlk񌶨JDZ@^_5yg%KG]-RK ?>}?frxz2ZiP|2t%F=d̷HJ(r`)9j!65JGD9CN! > +endobj +175 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 177 0 R +>> +endobj +180 0 obj +<< +/Filter[/FlateDecode] +/Length 498 +>> +stream +xڭUM WptVV=xcFJ(I%o?4N] ffx a` |(w(PR(> >Y|@BgD(+G񀃑1Ǎs;TPk"{rqAJ0s +W=.OΒg>f.ix~aA,TEɇ (Zg,'*u(7fk16[-Ư?7{0HvwH6u=5ݦj‡fS@pO2h/e+1đT/yY)jJItr7=MKTƩdCT)ZG_p.7~U׻Per>Gcٝf5feov]LoSq/N\ C8^ŽX.Kg|ǎd"$ʕ b +qżŻ# +endstream +endobj +181 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +179 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 181 0 R +>> +endobj +184 0 obj +<< +/Filter[/FlateDecode] +/Length 984 +>> +stream +xڭWMo8Q IȡŦql'kXߡHId9u"3fq +Ϥ~| %a${E2A*ci1U},&9Š>X+ hF2 w^`G8`ri VG-fb:['ˁ5L3%XݛyWi]Hƥ&ugct|O_9tPڅ7,]>04!s,8kbx +{`y3)c egT=)TCJx}tW += ] pʢkJ V+sF+ +N'~L'r0e@MzamDW+#5q4l3 c* !v#6ú0θ9:d4ǹ?`t.wi/jb(vsȲo4h7_m]yX ,_Կg-/",7e +32\-G( B̗3#204ȫ-&i_w?9s $~k!F^Nf!,c[84݆6u #`s*dy=o7O"w ':H#UwwdB*oU}q2#TL`ĞO^9%/9InJU^}YT`ZP#1@_ȝF(dzcQۃ39w5ԋ7/}(h{_VGz_֓i?øj~Ur("10+ƳdJ=M֯a 2ןo^& +endstream +endobj +185 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +183 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 185 0 R +>> +endobj +188 0 obj +<< +/Filter[/FlateDecode] +/Length 1259 +>> +stream +xWKo7W7IRiNl lZ58*!.wWRpnZPL*`VjSB+T\~ھ63o J.L2%) neU'ߎA0 E"sf=1gG"8{%'1$P,(bC3BB*s܋{njWS~&ԽܗѯK12}ۋU?}]f TaX681wDlU@#i7Fb83lxؔD0gl0V;#ds|ҷaeu\G,箅= {]ǰ˴gro,`ǔ ţrS7elB~Q-1<"LKОGR?:|G2cF ƍiwC_Q_9eU@.R-M \ +&]Nj*վ _f/5#-N2f[Üp=",:f +v"Ɂ"w%Ea,QdϣHL<.ᡜGuLcd雴ӂH_ +ŅEv_0pG5.VHS/Т2dϣe eE hJUtL`7aFBZP:"#" F-a\Ʃg$r-/DH.oJI.4T. \U"ZxvM{k?{Q^yD\]0Q''ϧlVzIjL_Hgl +GϼyPeT3J^v55|F臨B6K i,>%_9"]+Mx2R|D}&S +endstream +endobj +189 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F3 16 0 R +/F2 13 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +187 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 189 0 R +>> +endobj +192 0 obj +<< +/Filter[/FlateDecode] +/Length 534 +>> +stream +xڽVM0Wl'8*[z@ A@l?Yx<cz>;A ")@G$R s/FAAE@xQ=K8 Պ`9=TF?}Vq]߯?ׇjYgOFPLބEQ4|ޟ~B]/ X6:w("Dn=R% +ccwjw% X> s>l, x ψzaOo} ܂@gL2"YZː]jx"<+雋t#2V6˯Ҹ?2$$s$ѫ>mreʇꦼA<2 8ҩF{1 d(1T_&<<ߛ@]vl̲\-[z=8Q >tdZ4j5M^,\y8U?FȢ7+"!+Q4c?7D(Ec&Y/@  +endstream +endobj +193 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +191 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 193 0 R +>> +endobj +196 0 obj +<< +/Filter[/FlateDecode] +/Length 86 +>> +stream +x=!0 P)Ѳ22KHu Ccco H'Ξ c(VԖP{W +endstream +endobj +197 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +195 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 197 0 R +>> +endobj +200 0 obj +<< +/Filter[/FlateDecode] +/Length 1183 +>> +stream +xڥWKo6WhYK_fu/]m%un6u;IH<}3C h?7EAQ(,X+JD)ϛ*gR, %[߼R9xUסWXⳗ.րe>Q*PP ,f%Ieͽt'.}{&266&=}B+ǠԉXS!Pj:e$޻ +U}O]3Z`޾M)IVm&iE0gD5OO17@#3Pw롞w3Pwuq$-0,'ԨaәUMXZҸB@]a=O (bM]a7 "o;ęq!NN0^q$<'KN'EE|A8C^uy<4Ijǖ8$m䅆GYo4ԼjfηjnY]+燳NMDRAXU*oAi3AI +ܶ'WENK98[퍧B(ƿ! ~>eq.-J@Pȸq2>uyG]yfžĈ2B(R؄6Ѐ(9" [d$2"&H}y7}fT۟z0LvF.is,/7I%BErlrb @]"jCM3'Ȯ>^קǯO|: xz, ;[QvߧD Rn'¹Lc>B1y hT$-c S̫׾ubBU|1Wu9ARJ*r-B96]s[1@{riBye\c-uR*}v.< +endstream +endobj +201 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +199 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 201 0 R +>> +endobj +204 0 obj +<< +/Filter[/FlateDecode] +/Length 290 +>> +stream +xڵRMO0+z,v] 5zrI +`mnl{y3Ӿ %8l6l ) Ű {={J-ayYL$?88-t@)>0&dFs?qdJ3ɣ#8BW]~4 6wf* +K۲:뚾6S74i]}Ez)'elv!ɖ%/3]糾(ԙX'8[I¾HP8dq8{ +endstream +endobj +205 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +203 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 205 0 R +>> +endobj +208 0 obj +<< +/Filter[/FlateDecode] +/Length 914 +>> +stream +xڥWn@}+id%R@4PۆR7 sggx-*{r|;."tzZ +Z}Cb-Q4~wR1>)e:KcDNW*^,>k4R9ma)DckΦEX莹/JlYx`P'݅zX1Xi%VvMJ2)luvps׽>ׁ*94S{:DIE$[=T% +LFD`(ҵx)2o.zp'I4)_hCI bj-:S+4ÒCRL: bc|J1²+fS7i7Pa*O*\AVF/nfVK'MPitsj~_7ؼ=c쬩A.SF0Tj LKP5SLj^|T ljN%Fn ",evk̐ { LMU(K -$kȮ贝iͬi~{c'2ϋ *ռDq\4n)z=d9bR`o -cTʢ6R`OXWwo*CFS@R46 ǖI]s(Ot0`.zq _ohY?=}0tcy1>G4q4qϗ $ZgatmaáPԼ> rt{;;NA]zʣ=/bSeyyz[mux)tK4yRW|06~۔ +endstream +endobj +209 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F11 56 0 R +/F2 13 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +207 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 209 0 R +>> +endobj +212 0 obj +<< +/Filter[/FlateDecode] +/Length 1310 +>> +stream +xڵWKo6 W׊R4[n44& t +/-LfG"E>JE }?W^Eu[hYJ>LlZ& +?^U%V3(%ҙP9(Lff'}M$,l U;*tB3oRf%ApK\ޤor&<(pu~4)1idsZƔe("8D-p"gJCV>E#Q>7Kmynr;- ^oQaȭ69n)O.^CZ| zf@BG.Tryjg%Rb_H +5a9 ZzTLeDT c<bńRKZ_=__L>k("LTA1^X$Uuy#i/'70C Y.eΰA\(?3s t}vC(%8Xa, rr-Օ+|g3| sʰc>1xRF'SY5o6k,XUdZoa +lV %}iLOi57C \|ˍR~ ݋܀"rhPydɹ&?Sf~Cx_ݶ޴n灣9^ml:W_mW؅wu5}hY 4XlAj Rk64-mЌ + $im’%o٦e@r5VqOh̝V#nqX=^F\\ Lf}ĽwYmJ!R fXACwQ]kЪLiفhvﻺ}qLS6ZyFjZ,Q-K{,^Ϟ7 A34֩c @6eBy>]j!–YM,$`Zך3脗%6֙w.d`=3R2})%FmaualIP~.|7 Sƻi8u YrO1,?yGOߤO#,Ή9wsrS;M`J^ y> +endobj +211 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 213 0 R +>> +endobj +216 0 obj +<< +/Filter[/FlateDecode] +/Length 366 +>> +stream +xڥSn@+f9qfhSmE-Z6ƏPMgs_sν3 J(E3TtL x +S DKܿaH"&nR:Dz6Է㍪2]cNg鲍G60s*m5>U"mul:5j9m\uTHbV2W`e]V\rMSRrgRF2E4o V#G7 +endstream +endobj +217 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +215 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 217 0 R +>> +endobj +220 0 obj +<< +/Filter[/FlateDecode] +/Length 1030 +>> +stream +xVM6W(#.9RtSƹ4J l&@] ?Y4Mi&@|M̛HBm~~l]>FhH k@^ӾR $m^~|N| [dBȯAV ;>Xf#6ahϓ)p ~[i/#xCI_iUMRh+%S C]C&(k /wO 򖰡&o%4Srh+eٛ2>]dfw9,%8;D2XJ.>씱N2AM9f9ASNQ\ڴҤqRQ.<%-oiE,H67ܦ` ͘ۅz(XPa5C/\%Wvcl9UB?hi>`0IZ ʥO'P!LfS? SAn&FA,VS⬮[PI6͉SlrJKKɵdbS-!=NBbR3ESBKYߺ=.IχMMy> +endobj +219 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 221 0 R +>> +endobj +224 0 obj +<< +/Filter[/FlateDecode] +/Length 219 +>> +stream +xڥP=o0+nt;>8UCE[R2$$b@NLݽ{q L]D Y n AZ0|J*LH>ODZ1_G!to"2{7Rd^2u(su$zW1&U+ Tf,CeYl'Ƈ?.Qi63@ &M=]2YdN +endstream +endobj +225 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +223 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 225 0 R +>> +endobj +228 0 obj +<< +/Filter[/FlateDecode] +/Length 1135 +>> +stream +xWˎ6+؝= +i&hiĝL^>$Qv[}F cnCW4)o6jZc,L PezݺE+7E[`E?40,g>@[C.8XU=H/ +2?ag sI25|]GA2&Dt 5kka͝W〶2 %&+UwDߙ!s}$DqQcRzsK\AT@qJ~V_Db,bˤhe0Mp/j1%Ӽax.B#ʠChd4jpDoa.z/w :tu0.m.+]s.A) g6ɿcFf4ւ &oڐڪhRH , +t<13}/_ќ}ܩp:OUR[ѳNیZ,72%X%܍t5jy{>o©/F4U4R>wa>5}@tHs\<<ˮUs]7WAtҨ;#f((J0UJ0fA\è koQhXE}t0gь$!#c> +endobj +227 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 229 0 R +>> +endobj +232 0 obj +<< +/Filter[/FlateDecode] +/Length 467 +>> +stream +xڵU[O0~Wq uKxЈFc|н9V6L㏷a}=g(@@]3 x0$ x |!'ܓo@cE4 {b.x4ruYJ)ؖ~1G}HB])hk5YdmQB㛚mR/I+ XkTseQݑHZgvƐ"d't-)앓xm6rbL_U.a^:SܯfsXR_+ $mt?$ϣfiߖ#e?z:(Gyg!ho'kUݰ R좨rbo78n`c$!{N_"7j\N1> +endobj +231 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 233 0 R +>> +endobj +236 0 obj +<< +/Filter[/FlateDecode] +/Length 1216 +>> +stream +xXKo6Wk\ R)c4ٺkM{IXoC|D7 J(Ew(<~D6o%bv#͈QEFޯYcƸZgƩ]y#N! +!Eޣ2ADX=UtaQDjD`FhpkތYu^aݭYDү<&,#3[HvD#N)1d`DY'ƺл [C@U  2e ) ac)2TW̹tY!\A&D"=D*s q$dЭ}|XvgO"3ٝJBgT0QG8Dn"o#8A;U(H!ڃVkD'撕8 ~Sۯ/0nD0 ,)la'jJ~3!=O1߰;aб|ԳpK9j^^Z9*AM/TF0jCeCf*DHOAy3Si3)'rNP.G1x1]9KPl ]iö @w̤?mtC:>>ퟟ=N !dX-WKNl/qtz9Vvqx%WqpX3rvh׹b+< /c8Y4'NAjU-V{u枢r4:kV3uxvqeU +ܖʼn4)zUsNo<#u?Q?Kz:}%?$X +endstream +endobj +237 0 obj +<< +/F4 25 0 R +/F6 31 0 R +/F2 13 0 R +/F11 56 0 R +/F3 16 0 R +/F7 35 0 R +/F9 42 0 R +/F10 45 0 R +/F8 39 0 R +/F13 63 0 R +/F14 67 0 R +>> +endobj +235 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 237 0 R +>> +endobj +240 0 obj +<< +/Filter[/FlateDecode] +/Length 295 +>> +stream +xڵR=O0ϱ$@Q8!RcUj:>ݻ% +Yf $*")zx0~1D3ɈqOX0᥇aTYWz\$ HvT@c5^8#١Wƙc&X$6}?.]BfiŹ2gl"$DffN{h.-3U7? +endstream +endobj +241 0 obj +<< +/F14 67 0 R +/F3 16 0 R +>> +endobj +239 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 241 0 R +>> +endobj +244 0 obj +<< +/Filter[/FlateDecode] +/Length 1213 +>> +stream +xWKo6W7mNͥQ lҭk`븶nIQk=fy}3Cp9!q=PL*&j& B>o>n9kg2\M~K +{iEb>i4URL£2P҉&3,n\x.;o6cx,Ij; +'O_- Yܖ\mE!9iL;s.VFG^AQP1K3)0~?IC @1mKe&-Yѐ!ǞmxT0wn;y=våk+Sp);yro$cKM!yPpϔD9p&` CK 8g'ᰦ<+vtۻPY +ֳ $ T +dߎ `B먏!($9@ ^irlSp+‘m,.C +3ễi!tx_í['y]%sutwLwo9=+K0hc<܍9'Fr9ňn33ZQ#G ;5 4/i>d} Uёf_v H.meeLJP=5WXx̥Z~- BJΟmSsl:w;Fj1_F{`@1܇~!Ǒ > +endobj +243 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 245 0 R +>> +endobj +248 0 obj +<< +/Filter[/FlateDecode] +/Length 513 +>> +stream +xڵVo0؀1FʡUөӴm@II?c4%> +abbP |!qQh #Re*Mf3UAS/Pb%A} p@>cg}XumbcS>ԠR.!Z(q:2XwjySG{,}n o+iH`dt!6 q8gCb, I|L4s?7> +endobj +247 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 249 0 R +>> +endobj +254 0 obj +<< +/Encoding 7 0 R +/Type/Font +/Subtype/Type1 +/Name/F15 +/FontDescriptor 253 0 R +/BaseFont/RLUPJI+CMSL10 +/FirstChar 33 +/LastChar 196 +/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 +500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 +750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 +680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 +277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 +500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500 +500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 833.3 +777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3 +277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 +277.8 500] +>> +endobj +255 0 obj +<< +/Filter[/FlateDecode] +/Length 266 +>> +stream +xePn +V +cc|Z'UJE9'V_0n/0; 0\a-M) )-Sŗ?c1^{D0;BOlt:ڡ㚫\_d׸*Vw_{G + $'cͫ~}c +endstream +endobj +256 0 obj +<< +/F4 25 0 R +/F3 16 0 R +/F15 254 0 R +>> +endobj +251 0 obj +<< +/ProcSet[/PDF/Text/ImageC] +/Font 256 0 R +>> +endobj +9 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-33 -250 945 749] +/FontName/NGKDUA+CMR17 +/ItalicAngle 0 +/StemV 53 +/FontFile 8 0 R +/Flags 4 +>> +endobj +8 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 3869 +/Length3 533 +/Length 4414 +>> +stream +xgXۚAzRM  +!)FKHDH HޛR.XB&(E{Ιk?sͿ[y{'*7@ڣ]qIY)Y(PDjCP,P('U+AQDivAX4DF{DM]4G +pq4A{^h + Da=Hf9!(Ox3.8sic׳g,cڞ..s6q+͓\Qh<ֻ،(']=92Im7N@OCln"H4@}ҿpG?kƃxddddόgo6;%;#IyyXB qD`2Oǣq?vMF#\{=!=p@Sz +x?B#5r?,;s|(&x=H%u߶LJtCW,zQt:=jP- mTyOcRKPshܓ +(rxPW^-%Wr~X|/uI׺γw2kq?xWEl4KsH8F`9%t˷ˋU" +ᅌyT7Op>#JNu_a{h(pQX,N5HfC4 7 əv\q$3n_{ j~bpQӐEsYBOOQs_љvD9Cx4e :5tG%yl_e&_kbj[W)(tG^m`<#_FBt[_lb0)%[, V񉍛0|QEa6[wD+Y7uVL߫-OIw!k$Zb_ĝϬ=-(yDca5|uvwl-w'ɑ!>؂. V̲ ?;V8l-n\*o2z\i=#aOXN{96a#rୡ lltV6WG&X.wk$=4x;d0XQ}Y?.qf%KҲCƞ4g P׊xdaueLg1DeS Cb<1Pyz<+Yk{\A"#oxe O'lN<|i]ҫM/Rp +H /Pj9(P,7DwA̢H,=f+-ۤ5!S/XzKq9\Y//!^F>hKLal}tIaA07D:))ǥa#(^O !6*4tfE6_9{` w/kV}遠s;usӁoy~‹A ߷@j;1|TQV./0Zma1TV'?ΚS3Ma$%Oזx03!L6Q#w)7X]#kr߯Y.XqT+G 0:IL3 ⸈_QxjOłRZbw/8)b*NjKr&ې9Fg?wڕ֏|Z`)ӒZUwC SRKQˁnT._WtjMgR]ĂWG |y΁"K5SepMhLxZsHuiB#eg<. %4B_ .?y=iL-ܻBAM<@Z܂lSj$Ic:kA?e~|դ{;AyB |WnSlrTυdt.`V%5:Pg+ǔ>'ɦ~;b %F*CuU7 +Ҡ2$7o *<~'CA0`Vk(}cm`^PF"ҫ=B  mi|r޳YBFdK.CͫQ0ͱ U+V<,2^R޵T UybPVnF,/ݠ]ˇFq/y"/aq󥡦Dγ"cXݣ :-hsrn+Kb9:"{ɉOCtHa'K4G%I$b2=HEϛFKU|Bg9^Pfu|euΩkcn;~o9L|Yld_(oQTV5,ɉy%L+{I˦M1Zv0cJaR z[纏YܓНe(|ɘu?ۯ\WE<$AV*iVu2&Y`T8 `\dB#k|5/ھ h°Qrl<ύMpqs_QMd Cݒ4 +ҡВFvBIGtv&W}v,k/.9]ᎮgLu2`@NH]JwBOOr޲{:]kTzHƵ-ɩ@'1,=~)΍[Fc1Q b1xǓ#(JICR8"t0ŁYw +,licr2'.hEd +endstream +endobj +12 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-34 -251 988 750] +/FontName/SGCAZP+CMR12 +/ItalicAngle 0 +/StemV 65 +/FontFile 11 0 R +/Flags 4 +>> +endobj +11 0 obj +<< +/Filter[/FlateDecode] +/Length1 714 +/Length2 4386 +/Length3 533 +/Length 4937 +>> +stream +xgXS뚆%(HhIG{oR $@$ M  +ATi""H J " v{9s>g7׬z޵xLThg +&%. ͤ)qI:"^0,HK~n$ u"# hoԅpT= 0aC\`(D`qBfl?.IIp pF!@0z[p?\oNa7%p+H4o1Cp-?Gs6E`C4!{W C!]TP@/ 髅 DMXwE#=?$̵UmMD5M`H/_= 2m4\p`yaRSCb7y99 B!t5eT]0Ͽ}Y"ODs眮sin8nj-^˸W<~E)>q76dg$1@[9:Ҿ؅ñE\Zv!IDa:[ruDb]h`GJ-xf7[XO؛)8VMdBb3eL3@?U4ik@nȊf 9V qy_ܳta! CޥEvquLljԅc=* +G ^fQ gFrbH9X~H~!_F,m#T by#߰*VP!!:'^X&;7ug4੨wR+n<8}|ɼ05 +|89U3-N{1V̜Z+P^6)?svٳws"9Od竌m'vɼ;s{2:mO/Nל8z-9s SrC/uu_Z?# jY[".W>5rtQf^{͒DžhЊvr*R ֲاmdltԖ[>."c% HcZzfEsXsjQ*YVX[T>04o730ڨd!DكӝxAY^>cu(NE699~6-D&'K+)F)LC_핽Fo}g` ዆]Nrdvmsd%9'~VE\y C +L HyI9xD=n)Kݣ}FXtghipW"{!Y}M٭z$Y*B&\=1PpWbټLK{aLSV-|cX=&<$zx6ی#8?r&ɪ>_f!z˘6k$gM){!qW8~^}ζ)k#jIJE3$"4*ۀqd,AoImt>14F|S'GԛD3&ݪO`A-_acw%7?%c,0)40]>rP_?rf}odyhl C"[HUUaF:|7,C$讃aЁl3uk#<nO0]>ؾjlIR8.V&W^fP:7ka&럌~xeJҘCWTSՁRfxh-㸁_ꪝT +f/nk2T"w~OYmqÁk0#4va +c:/w^K6k!aqKOʚ{nE0Qk]l$a+᳧Ǘȃ8A1fBۃro{U6詫߂r{i)AnO/uf1tϬ2WYQlTc+qK5 zX_ +R/ud9xZu)xEl"or[N\YmᬒD +m^4T;x"quF~/M|,C8J;{ܿS5;Tʽ]wfC[p4C/oӁ$sN1>G"j]wpp9p.RӳȖW3T mV$#?PK:x!C~<ᯯ9]P2@ +տf&jSs&t3JWW2U&" _^@)/):h_gXu7 45 +ƀC9/õ 4+{3+>v}ѽO~+TRءH7*׶h{bFZLS^'0^=r6ak~܀iX8n^|f YFQ[jUі ڔ7̓)Q #Xװt ǀ(~f4=-ItcM!n{:@JNoȶ}qm ;/|ү],Xy@O& ^˄:(t?^*Y;޻#28t,!i|wA'+&^Ŧe2qn@g"a;:aQ7Z-~jz९]lR^٧tM pFK_OkNH.7q8Umot.j!͎ +=:(eKBPZƟɄ- Akh{&ܬgT:ܴYNqͬSJd%_\jpI~<Q+ +o2}FUs;i9:=>V1yku﶑lu G 1׸YNq9n H)i_PWR:>yo١l8= !S;'<'Zb-ǻ.LJ$EIcsuBq/ZZ:L~0EdDu=B6em.ן' cOm~!e' +__U&]U fON_];2wUrjV@Fp85ޠLq"860PKרl=N(̃ +Gy+mm#xK0"VGa %<ܝE D*a=gw]xe'n|: +cz&l>/q.jaUgT-t@qJ +&&4(e&BᶶEqj*;^A];Z%lZW<Niۿ]eguAv׸苼a❫RR(k6 +twZ5SEU Ko)e^XՖ. 8d-ɈQy1YM|X l0'f0N̦ר[;WA ב|sVBtWȗKݵvxTOwǪk>;[HSYaP!SJ)V:y! ` F%pG^e˒xx豟_WEEg]3H;G,0;n}qv 92GH H[%:w5~Uu_tT3? b&u4 +4j̤lK/Y2MY> T=dsC0]J.{Mi:OK7!NfƝu i0I!,]&%Hlp&2.JzFs-tp1]$} ]Aow+~RPɤ<5sPǽ$Ӂ_7,ߺ`V qasHO!gwS^WǜH(}fFܦ65墇ۇ} n5$p}Qfܞ91#<=e?kRx@LX #Eg~ v߄m;7r N)%}m&f bLANl㲚6bGaojy#B- u*]8\"Į"Oꃖd3|QؓDىY +)Y +QnTŜJgz(ÓQ.DSΙ  dP T> +endobj +14 0 obj +<< +/Filter[/FlateDecode] +/Length1 720 +/Length2 10130 +/Length3 533 +/Length 10685 +>> +stream +xUTѺ6޸w'';'{p9=~o=F\_Z/EE$f2HLllJll̬TTSWPON* 0;{sqsSJm]Ii%!s8ۘIL]MMI5@6W/fRR1{{R'>PCMv۸6x,"(XP^h55}ǷaDdޗ s2@)8s2~OTnk<)ZATn%-AلmU_$5^PI׏DwveFڈ*XKm weuj!}?~I:M`eF*{*=f@H! قHtqBZn EŲ|pqIR7]baE܌[6y# +P+;VZaFT +=`biqK~aoߌwa>IDFU+ednYU--V?`fBkpn"@QyLǑ<(+*nf)L}@>v }$kh?aOJ/5*K>Һi%~t&0l#7O6 >?d^߁Y EAgPupeTOc;] =&Ò7w4Aʮd*K kCs"f4JgPf;K8:W*aݥF~kA~ )_z2꒟&#^ii)WKIԸzPX]aFt!Aqs +NWOYΦaN>O 7 @s;oם%Vieߨg@@JTpr,<,BF'b'_'tST?&|s(ZΣZkL}%' +>İv gyHHxL%?aB.}xC'z٘gߘD2_k-u2Ե&@NadQ<: "jASP 9NM6=y[(#V˞J%LdO$4SU?iKRݎLb $%O% +vva8D%tVlETq6M]g9ψD=1;$"$s&xLNgh繸 E]cA)I:rXnָXw' *uPd uZWS]1`J)#)ra/$jY\OEB~4¹az{N-Z|U3CM~ ٜT˛6npefOAw% [TtoA`=O7/Ush sm Y>ͲK4 eA0\ƴosYFAؙA^X.:$ak: )-ЗѦi6^œw6Ρ-;ythaHi,*pp0xzeg"[,>L$řvF9>?rl HgRHk4x-D5X\{; 8wqRCqC]zm.*}9o 3UA Y>Hp;b"y_6Q +l;UM;^P5k3۾(?a6;D`5ԇ,E˜ &SIdd*`6+R4 ]?I:_6;q'mTt"M↙oAzV]1/361ip +p%茷nCn6Rٓg}0xŵ H2>NMj|"-ܣոA9l%HVP~8DCȖO"򤋦nP)ý|yz.3al}:"=jv)䛳g fOf4kЈ΋ۧkgW't´b#a!Xx9+bDr׽񓛄n80aVE]֝T^xJv Bi ֿ2- o<`޾?pǾwㅣF6آ6SvaT@gK. |YO7j$[H7Ѳy8b,,تN gk"kQܨ)oRp)#c}p\RЬ&ZLF@qx)`,%'e`c6Ȋ>/?|{:h~ԌoƱ,˔-*@rTA5ծZt!ls@KRgOUz`eԟvX”C[׋P67C8Wu.pm )pPi6THn12kѕP73A7A^̂K>46 zOtqož E}3g6-,CUAO'Sfpo%iQ߃q b"z5 +Sj0`_A0Tk0N89bY]ZB?;Wg2ugȾetSynt5D]6bPK]wPg b7ڋG2ڋɃN+;ƀ(pR_p:X-}g\u[,zK̽iܰ#m~?͈Sxܙt/ݩCLP~`:EVdRc 'N7L9 Ù XݗHd3O!o~ԕ!։R+Gpve76q0浼;{tK2HCν +C R`f7~J!_,.he*NP/o\Y8SE_%|dϠͫ UtہְY.F5ʒtH\;yJGz~08e ~4Y +E9h@ +[M'/Uߧ,:= @wSv(RґnPpWpyC pCPZPcs;& Ф<7Kava.R@Ka1ჶJ_+uP.7V7 .*wXG>:2M;zxR9ծFe peiӔzf2ؕéT:-ui+X*n:*?Ǯ=_-*~&A&Xk$YԢx\hh2(@]!eg$x~{Ѿi%)_%Ncєd!i2g'lw"y23r69~r@ΤCTeѐ~K*~KQVw ts=uk̝c+͆yс%a+>m]O~A;ђfP'+iP0%<=sV/`^q}5}JBϿTCn.۬;sOuFTvkhsmjwAT眙kqC*%*~li)xԀ~ߙvs +NJwLR4$θ8sEd)moug^f ~BCThuo^É_?Qg=dv2"aSSE5 XeGk/KU>d?XnQ&;Mܨ`$<zTh_rתœZ.]EzjKʫjcgmKZ@#;pycdT[M~TyR$~}*K8ɲ@x~EƚIْ N9Hͻ{5h[պ"6tXe#lO8׬ݥG0WCCG+%ruRMfVR(0ہܰ5GRŃGc$pQ`(fw/0+8n/R8N <`?𫟒/ +]RS`r|eA5LJ텝ᢆV-;yw8eS89w 3gP 4̭\Y57JPJH+קt^.04@8U?Wb]fd#Ke^Oy*MdӜ9Hy_t&eT#.>'AЦ>q}B("YAշ +) }zuQ\#J<#~SA"Jx߾W( X;v/΋3 (S8^"3?afY,'@_qzQ_w ?FzLj~vHȝk}lϪdu^fkt0T^5I#;/r\O,Ki/^ycJfO -"$mJ?=>-aTY;\?24Kzů Ri}RN8Hhq4{Jdt\o0SݘI?uq..vQMswJ*}I?/ڔ2}JږʏQ|8o']f  c[ψ-WSi=dL6ŗzWKmpcϵƚξ&p?(uIVK!5j^7qOe +eDKgV䵲Eq2m PU.kމ=~EXBww侤ywR4v$pr`LCMYp|O5]§@wgteB)-=L{UK31opKxpl{ n!0׺_ɢ ,GTDqֻin\y$p㔰f؊c(aqqCrH9MKO.}@.*Y 4U'!>j-1pP MFOs4:>;K)3|*D+ Ck&xez~v jPJ2:TMfǭld8ki [^&AedF؂oq"=Qs&>ns Q=S]t_Rz,gloKuH麛> }73ܢmnSˏ!,q= B3Z铙&iw?1WeD5/7nGfא]<7hLVi!WW+"eRh$0 +Z;Aɢ?^j#ů7R)Dnf3XhUMYG>Ցφ 22`&J&UlDNa""Ma)!f]T)#50RWgw9cT B[fkRLh]6nф 9gtm<WQLGҟ`Sy0 qw|d ^Nz&1P3WZwfй XQ|jH]p =c1. ;jKRDў{~Mv21qA>^;i"i&$Ћ^k?'J *cVf'?F|qmHxslqo EeY..ӴʣK:| .N1{k8.>)aȃ7Ki[BfnC)?2bd؅8HQOc/Zg3C/VC:ۚAE4dcid}ãdZyׅCGWwEѦӊu}JS߮6҅8ޣ˨UCI[MN,(Gg+B^ۻf1|p%P@ ŀa9* +Vw/wZ 88#,FGkPMJI 4LSW8 ڕj(^mhN`EI^u8n؛2z,x'ܦqU,|(EaOx]%.ECW>gv̠$9erECɸ;{~̖%>&P&Ku̿\tjѥҕgA.2l|&4^%M jn d* ♜ +gi$D"'I.6{'͖?͇h)S(1}~;EaD!}m˖՟sR剦c=\5_46;5Ř: l9~I0 )Ǘqt'+ ՠ7`w܂E4vyg~ye?Oj&p;PO!#S*bd/B9q&^s3qYCdY;x32Z8i2A։s2 X.s.ԙ%7_h<6%y'phRO/13eQ'0'RQz1cgտ ow"bҔCTiz NO:P#Q^WƀcI̖ mRuIp6.fz';z?Dt $MB-]2ecݚa6g_0㊐:6hg﯉ B.9&]7M(!a'hEo_(SPXUsI_4xCnи\Gtjl&9%UŹQ-\5Z)qa5_'US9 d`ZUm_QHSu/`,rdۣIͤ0f3t!T1n5\_U|p|TX3Cq+(3<:;Ѹؾc&SsQ?eWcO&< 4;WЄ0av6"{OH8NOR, ؿ ~\@n[m/K'.nF=Öf7~9:\3Ү~ +$/7 ~pCq%ЦAB06imBl5Hed_!&t%X +CST .'Vls#Wv#磻JNL4scd F8(YꪡBf{в_ s{+?:$ +endstream +endobj +24 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-53 -251 1139 750] +/FontName/KUKDYT+CMBX12 +/ItalicAngle 0 +/StemV 109 +/FontFile 23 0 R +/Flags 4 +>> +endobj +23 0 obj +<< +/Filter[/FlateDecode] +/Length1 716 +/Length2 4421 +/Length3 533 +/Length 4967 +>> +stream +xgXSA$ Rz %"THhZ(&H/TH)A0T]"HQ9y2|g׻~{ml&pu@bqbPq"HP* CZH8Ն㐊  RҊ2?H rvpɁ40H# 2\!p4A 4dO)DP(rā(,@($rg $SEA@4o1Cp]/4#E[ApbܼpH+./8MWhAP(_$st9ў?u$wk@@OWng z

= b'V8jpv:v( +N<Lϊ粇3ړ*8tؚ(T wANkݛڼ ΫlSWA*k:a6z}vu_[qd|އALlNn[Mu@MGew?0 BŜ(D=Q6f9'H4/=M#)XMϿzy׭*gTk\ьs7j=#(NJc#r@k^FA؋x2Z '|bsi%_ۚX_9и7cpHX%{Uho'䪋=cR=.UQ۲:LZzty &>Gc?ؚ $Sν/F_y^Po|͡ը9*s5ҙݏ죺 +qVR=5"mIRHͩGw95ڈ`]/ï7􍹋ҝ#|vT\b2r}wNA 1Bqz=ė$Y}j%_CLU~z#,s)cw:Oj?ލߝ*B/햾#wJY9Ϲ6ҽ6ro1 Y{bYǶ9=ߌz)P-kW: Zxwd>J0iߙlYL⅟!tvͳQs?ͩ:&}HR͵^ \aJԺ]'ӁYUks#5zP%p@`;AeJxzv r@2Mwq9|GPʖk~ʭ}9$'.u +Z*%s=rK+ی,07M=\aa Av嗦H7g -f~-6>s D16-#nA=VodODjM=`)b}He_RSB \KhIa8eS Ye_PC"Nf\!eÊVyDŽ.t7AxbCB p=9=ګ#m|5trcfET18@Wg iG3g=mD9˅Ŝ([/ G S">GUQ0S]Ey1Eי@*䛃)JGq5> r\47V)Dϫ,Ȕ +*/PlZεu5e|"o}&=J{f7IFNb3X&*l93#yfB GiEsMx(|iWx6 +7¾Yjr'@wB#EN:|'w -7wR(Ms8Z=4_R8WkO$ +ͻg كsvhVCԳv^yN\M]i"L.U4^ʧVvt77XS:+o4ff=&iW_˲\pdJkt#1d#g7Ѫ{jD;F& //vZ7kygFv}78ck8Yi6eD9'z`z'X;D̛~+Xp֊ ̴Ζx;lf&vrGSȒ*W i>1kLiHMܬy_X5?їួqH(rvdl[$km܈8z.^)K b8J(GctPT}Toq7&qynʄ[lӄ;ru }!'gh$ӮKR)G[ Ie*`aw8SFc6-j +qԲk}̲_Ysu [˿JWOZV3u '3 < b- Lw3U$tNveZBUE.U)?F|p/3x$Hէuryz{B ^\Y.+tB| @\tgƙ9HnlٵaxTԥ^Sd:8.Mx+MØX9':2nSMtp1:!1g0AJ. 60(Li'_&ZFbh>Ad,9Be$>ژ6+׎/7^Io NB->KRYp?t"|&(pFDun6TeT]ٖ* +{ řw`y -?X.ή$Jo +ON.s *}p2*c%KNDn}/:]q +7A%WgQAؼ|8v\Sw:E6@PVڡBJpͻ7;S,eSBٝDK-5AhJlP],o=byl0uDiBwGM}؏ 度<t"l@Au?fa[pt5z0?|$X7J:N|_zuGk[|Ϟaq˼ɧ} rc8}L1q6r٘ʋ1G4U~eֺbꔩkmsOIz"V󥆢Ybk0YVSGA{oC|Ҽŋ & bM&<˃xDzBzv)cJǣ#VuY;o)j%{ҝZ.A\4Zp#,H9|/RhhWU?iY1{ =Kvywy[4 }S +zO^ n̯i]ti$A5> +endobj +26 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 4447 +/Length3 533 +/Length 5001 +>> +stream +xg8\mEFmh0%:Qcm &(CQ-ZhQDbDo!BѢy\yϗso:{Z׾3D\8,^BZRZ me# JK@Z!!mo$ aoH%4"E\,.%9Y%< yx@m?U +@M a&0;sa88 +5hş->Ho?$B"Pp<2 +,!}."IED ]Rp4c溾h-O: BCx@ N 6xĺ@_).0C@W;"p1R675[PXU|37xt1_ ϕߺ`8 +ð7_J/$d.,"+*ocQ^H@9 ; Fbw'3vE] G&"?DXANENKcUn+ѪSIK2jzԧ<ABr N+{'!ᙃcT ^>mMqAfsi.-g C+kzzT;OP|t-:&SAO<)JO#;nb>LgL(",ۈcR]W^:5p,#5 OC`zّ4 PY7beS/aTqCrhTF&WSt^ M@aN:EѮOafׅE*8"G| jq-gck՝ZTv4n_a@уf09u<U>!xek֊=ld=skHIK;lkԕV=H1kN? P _ǍL19v9fWz~~yܸwZVR" Ғ s|gWVCl+֘0 4E>:)A,6ۨ&f) +C;z=*Nm-|xI 8qc?fP^NJQ +j2]35)n~,2tsgzX,XpGp|0c"5ifѼ',T\~]e"]?Ì&L (EАt]zʠ&kGM5曍ʃSgAS1kD譧01ڨ7#B*4ִ/r-8l9KkGBZiv3A2~/VvilyϹhff1ldY`sM\2PUqzGfOSՏh*~z^@/mG+s92zddj|TK,E*9.g- fMܽeϐ"S׸#S ;7#߭zdזFv(HJۂ2& vs"QvN;d&񸻽VT]nE *!A3z0BS}F>KF9CgOOG̋'BpӪY4RE2FeN$5a4APJf{]t9鼹|f/7uvC"ɫ]Z}Y8?a3I](tI0{9+7޷j2e.웬v +~XK'u2Fʖfm]/ #Wۿn)Ycg>O{<7f,c) }%u>]@A'ٚ&^E)Upބ~bk=lL*;ԖP1پIkS^xfrtZ|Y5W +#4oŐA(K%мhFm(H8Q/)=IQkSk<MtdӛpQ h +#C!%^bQ}Wc|cM>*8@]P}!i|T_QԮ57lt͕evWZieaw 8I-;n#7r{#Ȥ}q;r]͠I.Yٛ_gK`C֘M!x)<}̇ԛLg<9z|asŸ1>|V \"x gۀ%Ʉ@ZhC4(znn3@RP}x67|pH]v1G,fg6oH*97۞t}S&~%1408%M~ \ 4 0UY.ԦT>^w!nPFyl2Yů22 ե`(c5B<2Wg +́_b.[2*`& QV %yP\y0`kk#;Ic><촊lw%Q̰zLkMdl ~*yPW=e30p>MТڰqU!\0 YwU3aR>r?2^=GEC'G7S_rE  +&0z-]2{m P1P +7}dKU*4Z:vz& i  o-B̑LwZ<+L:8OBHn;S;_d.|n0*5ѻPϳ?KH,!/{JmȽ'Bmrs\gW`ȡ o؈5Cz dסrU}d9;XpF^_yǻ[m5"f6'rx'+(Wi,} /"oWʱ'`kL_Q lVGr[f13'=o6?kNqrd1eHhϝPl4wM.uHޝ?qN3V>/x'N/'ҹÄ?"Wrv9WJ~+nܖ~T'K@T&yyp ltN5oIuOЫݽ,\T`ޜmj6کnZ_c&1вQ[{ϊzs2D&Xy'1\7rRho%"J4MJx|;ٶ߳scbws֭=I@1܈Y)Ff&S_94e&(=/<9Ήxb;o^^*|YBaSf0~Y+H Nik +tVSUs1q6"Sw~^t24-p(Qf,v|#MQl>Puf+:-=S,W:5lec;q *]"4ԊkIY d_ޱ 1ٮ|TPGUVtq:XZR4ojF}$Vi"oxƧ0"dM$9cf G}t`@@ šMupH{eU# +SJI4"߀ :}ii1ξ3N'>7YJ *v#U(A?mɀWB`iL1ɻӓPtgK aŸ< No ֔B;ڌt=[gM0ޮFnGuLJQĶ^1ugXJPS՜E%57+X+|~L_~ϜŲ2N +:I,륦m")tFJGy= h8^H׉Y0זKV1m)3yy{#qCw$>sqh&GMSw?!eQ)Fp%.;XiF(PlPQmهj SGb~vNɬG~nUyWb~Gx+EUw,ܥF7QxGe?ȧK> +endobj +29 0 obj +<< +/Filter[/FlateDecode] +/Length1 913 +/Length2 2022 +/Length3 534 +/Length 2669 +>> +stream +xRy<a*#Ǒ4̌- +YRtL)3Y3BXKcV[#kB$Q:0NjP9羿~=Ou3҂Hm4&6(BUU ix&h1` 1Vt6"0 +5`AOL!)3LXP(ZI  "0o kli$:`%Md@/@cͨ&I(lX:77aQ(X(ʩ,Dl&hO"Z2J]ܲB-#EI#o;m2t2w~th#Ֆd)XRVk +yoPCKՖY %0@O{z{'gUhօOP~DE+ݼo6P4VA4\>H ɞ] ab98#b'yz?$3/SV)Md|-hpWM ryf-. $m s{Ef.DZsi2=S܇3LۧMs}z΢W21xҬ e&,<3s?+<E`s˽m )W- |2oo%>SjAjם>р-38WgX$xyggּ}Häar|?lD}N|^8"eJȅ<+څl56[v~ºSv w~ixYXVQۭ!ZY+ģzHe=R#JҼfO6&@*`v'HipM?/P }\wzU'z%SZ)t7#ⱗ-$coˋ[>M>D5HM$G5~((QYT:˻@uQv/X|vxjB7N+zѳ>7"+}I*jL#"񼲭3]([26{Th6|N-4츢|𧥙k)Ѝ4zlԼw:,κI.82iF1i/& )3Lۏ`G&.:R䖢*zv+&Rnjݯb. (D ['•)|Ӧkr4v/GJ } Qk#S*BNw]9ٺ|wt +/.'_;y1sKnG`a)3ԉ:}HGbrAccq\!̕hM?\Kŷ?!9 =c\{P :4Yĝ~t>ve3BoV4Eh5iY:? |xr#G$#HȽiƍ8,o8>pY]tchm6urAˮ=q3Z_fq>(Lx/`oka MCp+m)U+ JRm;1wh߱Q뼃!#l{B`b_?q;rGw'-DlR.)whq?oqO'nq7a>j #yg@ߩ*Ѫ`k88UK$L-6ے;y׈A7̶;j.*he,1Kw^7>t +OX%q猜Y4GMi{jKs|QZ ܒL?w$0Ot2g{Ts2{@w]#~nh/#n#*gg͂#Y句6= +[OX["g޷͏oBlNVLVYacVqi#LPy65+蒼OgʸV/WO7y_r˚2$"|&̒ +f5M9wɶ [F{"/DP,uq-2Cd:f`sbp-e%ö,/Z/6/4 #BRy҂*ѩm96E +e_538Nupy-ؾvaڄb}rC ސP28AS +{>6԰WymxUɱYtg)I5wvIMѶiop_C@ &g{ +endstream +endobj +34 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-32 -250 1048 750] +/FontName/JNGLNF+CMMI10 +/ItalicAngle -14.04 +/StemV 72 +/FontFile 33 0 R +/Flags 68 +>> +endobj +33 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 1752 +/Length3 533 +/Length 2293 +>> +stream +xk8DZFjPF r>0 )ˡa)ØaL3 &2N9l%rȈrDT("ړV{]k~/(:u,I4ЖFetQXz>{H5$04 b54bP̡W d" +#0 a@4"dptB\n \PIP( +DPXT_&[,*H5!'Fp s 41ؿ1ܖI8Ư /}BA +f2@:F7} k PDKtPh]$N%A3A| PpMI[spe[י@28 ӾVS!.NC%Hdg$OTVV4v>o(mH11DѝJa6!c`lt:He}! $BO9&Vkv#>^ҕfdg0n&{(l{yFRφRzp3@C +ͼY I+H Y?+p_I.~ݴ&ɛ|eɟ >rU0'1ۛ<:oV9Ϛ\<2־m@tUv=ݗufO=R竎_2m[:ԌXZP93?2/$nk-wWD>xnL˻8X|rp8*z|Z<{65qg=$2;\@.L\+Y|1Qn'jYv:P~Tz3 S>ėv _+Z!tG;o2T&, ݚv[@  /[w2sA궵K 5/晩}|VJ}`|\|fb*jG<3W?^vxF+١SZB0= }~غ61 7a/_Y @ݼ!:: tѕ"!}=OF5b6#n> VGd…mMVY ɳO^e٭dNO1b-{RZÀ+ѧbN9CIٶU/]DIG|Np<,yVvѼPk%yzcz$|Sh)MҨ:3C]ZEGB?%(9(?صRrGIuF]sR[L3TwslW]7ە> cSiP;+ph<.['Eq:HEK|-M~RF3{c1xCdFsDM HkQʧ8e(Os> +endobj +37 0 obj +<< +/Filter[/FlateDecode] +/Length1 724 +/Length2 1132 +/Length3 533 +/Length 1671 +>> +stream +xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ !S U[PZZZ4<8Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D9/Gـ̼ʂTr0SQfB!P!Xh%d+$$0]_QkdkiLjf +榵 +C2 KS=]L , L.-*J+'aL`(V&s͞##5ˁJNaz&CIMXǞ;w\[Žg40њ3;nY($ǝg0eXWҞ1Jԗ]aKuz]XU- ݣ%6 t6,`N|+Kgdq;)yAWpq3z]K&j؟u~x?˰ *wO٭\vwv%|3:YY}|v߿Xd?/ya^:-w^fys[Ӟ|g;} +[ף~m7 {?hr=<ɩ qKݮ<:w}Լ8wÛK3?'lqf>H~I9qŧϞM69}o=[,_JqUl9Y&˩H)n;AۍvCNǏy2`R\=#cGeIC6Xp0zm%2pz,+`-4rˇ6I7o|qmG/gl\_}ªzmSV=(|5p9}T= +SvnQ[).46p0, HIM,*M,5 +endstream +endobj +41 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-27 -250 1122 750] +/FontName/MIIZOG+CMR7 +/ItalicAngle 0 +/StemV 79 +/FontFile 40 0 R +/Flags 4 +>> +endobj +40 0 obj +<< +/Filter[/FlateDecode] +/Length1 712 +/Length2 2182 +/Length3 533 +/Length 2719 +>> +stream +xy<E!-jp03ٷ0ً̃,S$%[TJc'Z$dDPa8D w_yy޿$gV3‘@s2W#m()P@ O&b  @tpD 0!(x_*5Q Ő $n`1MA*M/R΀8upx,}$W$+7))\tSئđI!mPnD b_7ChD *Hl8B ~Gq ⏪CcH>}o! OB p?Bl1 o]I4RáCw: 6n~a-3Ó|4Ca(g26&S4 h#`ajt$@+SuSb(Dv gߞXHv8~Ҫ˧LyG}v'2+y/[ccf=rog4'.ȭ.oAd ^+iZY48ɂO\bm&~P1 +v((RPa~v'޻yz˾CͧamTBR!_n/nb5ߛ~*tD*zN k6uƇ+,>4 {”(I6EF7Q5v1",m"zY@c7Y O8"3B 7N]Sd5pHНgy>hR%};[t?\İϺӾBc< o±)2)-5EU{mo|N\ka 6.{  +%F+6칵9mgg;|i-{j%Ykni)k"cUv\̾ʺ;<yPƈ$)lU!mdgIq&^ZU垻-W8DzGrq1 +d khuIDapJ|,2aU]EK6mu}%瘹fR>f_yW!93 580V]:щŴh5||^+_'#.Kx־WdFI=w85lQJ˼ccP >KCkkEgBk5G(oøGO=a]wN[dʲ??H57%AvH{pikvkkYm5 =U31[!jH!bjZK e5gM]Ufyrr_wYxlΘe'?})Gh,BcF?);,_lږO{/AE?퍕ሻ[fֆ |&ViE~C"0ⶶ]%C޵ʍC)Q-! 503OOWZ26y ߤ@pceЈ~ݐr`;z#OO,Ɂ6 C-u9Y+OHO?=&{\ JD΍ [ z'0 d~-//8f-KΪzY c=(tH^}D x[?͗HJskPM>M&L_gUN4Xgj\z'.l}}PMl23{xJ0} + +oKB΍jie{ ,x][2-CXPD . +endstream +endobj +44 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[0 -250 1171 750] +/FontName/SLWXNZ+CMMI7 +/ItalicAngle -14.04 +/StemV 81 +/FontFile 43 0 R +/Flags 68 +>> +endobj +43 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 1103 +/Length3 533 +/Length 1639 +>> +stream +xSU uLOJu+53Rp4W2 TURK2\KR --Js ̭LKU9(3=DAY\17(391O7$#5hHrbBp~rfjIcNBHKBPjqjQYjBJfrBRjzf>Uyi +TYjQ1] +`j*ݙSƥ/]膻%悌tbnfN%TA~nAiIjo~JjQT|SS2Kse=Ks2sRt M L n)% +i9ũ`Լt`(mHB$3JB* R |CFE +z@@cŢY暗\XtS~EA-мTOS sc #hriQQj^ 8- eC(5"5iMyy= eye~/ț1gFɡ&+Uq)Ңcs}`b <*1 7NĤgw-E-$xUaë,-Yv可UEӽDv4N;vR>ͯkO/LΓq™c}˲Y.'iKh:$EQfqQ %f(qRqR?n q;U^}Q;gw3u*;a@:"-f,O6}vBχyݿ< V#x|+?4U#+߳ ZU;| =ed_ lV3_-t*Ǧ)._=_bg7=])u[nZpmLvӓ^l=]|rA26eU߿D ǀB5j0 9'5$?7( w xS +endstream +endobj +55 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-30 -250 1026 750] +/FontName/VJRYSM+CMMI12 +/ItalicAngle -14.04 +/StemV 65 +/FontFile 54 0 R +/Flags 68 +>> +endobj +54 0 obj +<< +/Filter[/FlateDecode] +/Length1 727 +/Length2 2695 +/Length3 533 +/Length 3246 +>> +stream +xy<[&Kd+Kw31]2fn h FNRȒǒ%'%d߷lEB# o~7'? _x +wFԟp8H5f$.Փ 0$ +@ ILhAb<T$lgb`;k'Q6A GG?%: 8!r߸risTHz <WW*==3vTT"іJiOTƏa! $@CQA 4"~#="%.a;pA,5-#Z)4W~w \NIgb|Bc_/6ƀ6EoM:w!_*ꃯ +_ӖgP@']_/ɹ\+-9=/k(l-]!8<*hm,:dJuqķ)87MCHsH"rL-ኙ>Ψ9IB)!՜ۼqz܏>~V~Ф2ˁW3[ʘEu>Hhryˑ M7c <ӆg}%()vB!Pr6ʴ2G{B֞Ax~op5N}F׃f }!”mߤ|LQ,ӑhۺ&eZaa,%rf"Ȕ4Նx&NGkfYO7-WL (a81_H're7X1Q{ⴻ;@nN.3&W}lQ^.]1o~$rՇWמkxࡲ:6Wލ4  Vh |ټծ?k3л`.:$A`eM3["bFb9og~_-ByݯB +/Fi%6n.^cK(تѩ٬;WeI:n;!m8ʙeDsZbz[\XJN4}yG) /vƇ!\’bGNaܢ: Aq>H]yZ}JPLӉbGZfo>қlxv^s12 +|2jű- %H}W^>h~0 jo5;EylIxswpz8M:]ﱎ +)pPdL?S{x(AeR>_Źɮ7-gzvX򐫬C%]nCԧQv69u7{KwJˋuӆ@{-Jp hTFxrs=ih)J5}iZ`qS sw]! ̤\w+>\ńk6e1IC =V; ^ 7Mcx&p/ iKRwQɳΏC*/(ExkG,#)-~)AsΟ)R  !U[u:fW 5;ET̑zl]Y01nFDL50 o$Fxp{<rmD}G^2F,'=u q3ޘHڜz1ا +f7 +r?E5ٵb `.ͩ,y/f0j Ϣu!8z(Ĵ[fɢNow5^qmuEaúi5>]*nfK 'Vz3FR5رЍ5.\寫Ō6eRj)g!m{q +3[`r3j6o',L%7R-pswߙaӮ__rݼ:oYh" +(oF\=1l('$Y *4u^PRϛyÝqi5鶛V,c?mrL_Γo{'?NE,_u[;v˜r#6jm4m8*^q6}qP,G EPci lƁn(&tXr:tsHdrQb]j<0Ǹg\5UdYcxML0S5EpG3Bl:h@ L.Έ*mNYmTѨ+-bK.˥$kT΋|K6'HuKoqs}Phc.yr 45<~aph"5^[ Wt0(6"2MQ|kxnj[|5q0k;)ݧo?h܏ +Slَ(Lzf5< uՋ':JFMYb!u*U\Em?qC̜+DU'[%/Yۯs>Fv-?1Zɶdk jn3>q+fi/fuYK&:`fѻb"uWRq~_h !-X,'vnKCl {_CBQHjsNqQ{1+GQU \VZqrN{G;BD['eZLl'n#^c2S0hn+3/(|[E!GBer{A[ZMSJnyM0 +O!5=MY{Fz![qq a>=h%-Cs\xhk(ܤw}Q:ZRK,)!4.zDqي>U^-Sr)ӪԾ]l1wk;?+ڟڌCkVh?@ x:F}Gkr +endstream +endobj +58 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-15 -951 1252 782] +/FontName/WBZCOP+CMSY7 +/ItalicAngle -14.035 +/StemV 93 +/FontFile 57 0 R +/Flags 68 +>> +endobj +57 0 obj +<< +/Filter[/FlateDecode] +/Length1 721 +/Length2 599 +/Length3 533 +/Length 1109 +>> +stream +xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8&UZT tН +@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D?)?@ɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC +FF +F +C2 KS=]L , ɥEEy%0 ԊdsD3ud&|9pU)|׉s77Rd(wirkSsk|^1=6Zsas_y2-3%^ Jړ}9_+l5_ ?ܛ%a{TĆ6ႮԦ,؉v3k02<[RZlez_ 6n? qܸs)_Ǵ3٩F&dL淖g2)D^c]Q,'$'Z㛾 l>uy;Mwָhl49"K]9h\8?Lj#oY~8qo{ jVf4HOc_s&z򏲫۽;|]}xNezesC&Ꝧ[֭fS!ES:ZK8sJhOOʝv2+ìRZޖ(ynY҇3 +=m^un)[TZbeQ9E%E\\-w +endstream +endobj +62 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-163 -250 1146 969] +/FontName/IRLNEJ+CMTI10 +/ItalicAngle -14.04 +/StemV 68 +/FontFile 61 0 R +/Flags 68 +>> +endobj +61 0 obj +<< +/Filter[/FlateDecode] +/Length1 728 +/Length2 1814 +/Length3 533 +/Length 2357 +>> +stream +x{8T%)tr2"F*RƬ5c1fD3B&r'Q)Юv))&JI{<~hz@F Ġ(%{`1#ttpLȆt"ƀ(^KS3KLqo b$"AMu@T>.qgr(j*@26nMF)xKJ68_۵k6mQ!K>CڐlnC)CjNJ :uϟ$?浇C;UDȾ5Q m<(jж%Ɠ-^OE[r.3+pvqU n-7H͇b֦|vJ8R?On[bL:OryU!)Ic\uD4\shEK*[ΩZY?kU{"#sj[C3h\ +ۧ7VUKEZ%۹dx4~b9JY1jNP1%}e87)6 z&$[ɦ:%Ǿdpla&˜^妈:>Ɠg>IV걯\rbgbԾ ^^m8t+='+F7㮧-htV} +7/S`Wj$_՟jybr_ecsJ5.(զ41H05+\x}}JݪKS}S}] +f(2ϯĽ)^ P%l 'rsf|a卶sZuLUp *^3𱳜{ƴP $dpbry#ƚEe1ed/C]TwnԌjuGYϖ7,{w!.~*PKTl\n,'@k9*Ż:1v=ܩT'ڙ_jZwgsDƎgnuqHc{\߶Lk~Zv[RỊZgmšE=;4qH:.ɫISzW[H229e(x2yzt ֹ뾂G#09)_~l'rr*D|Bv6#2) ):jiLk=ڕտW#TF zV8.gja{t6`X7|%Mq5.-jӶE`𫾜s;'c{vdR兆w@%ۮXQ74r!tn~tGBЈˎd&־I Cᆴ}x +[`WQ&<~rMM:UwʹЌM¯{g8lﯮ#G7lֺSbɡ;)кV|Gz}6nxchȧM6toF{|tu [w\Rn5£!ΙO)ߗК6!Vu?ߺq…ɰ+y!?b +l A G +endstream +endobj +66 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-4 -235 731 800] +/FontName/BSTJRH+CMTT10 +/ItalicAngle 0 +/StemV 69 +/FontFile 65 0 R +/Flags 4 +>> +endobj +65 0 obj +<< +/Filter[/FlateDecode] +/Length1 719 +/Length2 10328 +/Length3 533 +/Length 10882 +>> +stream +xUTѶq . q qw эm]w ܃'w9ۣ֣kC9WX\YI$`WPWge2PSC@&.&. >+//@`q=QPkK+8?TQ;`bkbf9Y\<Q0[ g dΌ +06s,Qpp+m%7/􀿜`O9w>_c ׿K&vg[ +;GW`T /8ݿWe\Lf`_)kg)k +gdo ;Ox*Xۻ{:?Yg?kyeoIڛ9[[\LM TbbL&6vN7;+i[;d$,,,G~,unܽ|eh}PAr"Aτ~Hs{w΍x}?*\&=?䛖Ѧpj:ּ& 1߽S +^kJ#L)#o@o0ӄ-z_^? AOJ#>|(a\=c{4 +q0>vclZY3C NEk-8FbMlG7' qɄ3׼ Yw=RO|9^hW{V?5pa{^#A WЃ)IOO)è}n4!f'%ʔCLZʲ IV?l6H~ zԓU'(l2\6`}Ÿ+@EԁB`LeW.d륇8!k7&$c 5k Q`_]4lnt|j.ހY^+󱺎G +zuIwyehJcSxNP]gK՝CR&s$rAWMy ,SYW5pcXܘX3ڔa X1ׄ.O)\g"aEl^&&,DM4E4*!lٴ&CC|HrLZ +ݮW۝SE]m3|Xn.QWf>LTzLC$G ߡ8Z)NY &wOgx6ُÍG4="R\RjiahՎ⻒zƚ>*ګH Sw ; MBGj8`U;GK(Ւ]EySM~{%Or sFZ 춦HQ;Y)Y8ܽ~b␸Zp̴©?!w*oS3n1G{("+Ls2I~sEɊ$dLH=tϥ SdYFR,Oӥ (=<_F1%\P;~į[$a^HQfJa2  h6r)9"Vkx|`ąØd7UY>es4^ugh6wRE5yntT( ]ͩ?Ex{x/[agW4skS%d&crQWEOCpΑ y-[a %Oո DG!O~?4MZkS;+pe>Z6\+ ?sd Az3@AAIn WT3**ns`6=A/713jW%@xdɕU_5G~&hcFt\U0u/.:ZSlUL(HPGO +4*2F#q)}T=&кػq@;td2CyW|[Nj{:&8i(+j, +eI݁Su5XJu ևH `jTn&_lĠs88_0K+;_^1H6%jJV~Dڟu}}(,fl[ƕr+hx!*l-uVI^H8UY79K-nwp lpRzx#!Һ[f/.f>v۔=mnz{/dW(2 LWFi>vi[&n◨52R'@;Gbvs#G)'jH0M?ӥ4A)F?7Ceb.m&ҵ!z4p{u]j$j#f hB؎{=Qq#$-&Au=?ߙ#!M!(jw#q[Q,L-] +w̓@۽oLN /&nͤo+E"3Ia puf97sc*JWScg!TPn]&F7#nۜKIǴf E5u7!|Z21~(DSK#|(rp&+KXx-ƟpU8^tbɹ^_LvC(.`j3~2X[`an] B1V\VOk5욶FwJ.P+/07}u<3O[)jgPϘC=4xt?_ m,Olxqgcʎiok/qL~KJPzlQ`%fnQ3  ĆH 4C9xn9Uyۥ)D3:Q4clj`EiǍ|Α׆[2~|q,{FSxf/U[7>}CKbCIo$j}ŴR;7㇏vwIK{^4\"!RaUQyUdg>ZޫRcF{f5 3 ,`1E .)=p$7~= iOgFkmMuaX.dvkm?`|,4r3 Ԅ?{`8 C/o>@}oPzqDf8ae]!AR,z).)o',Lx{GlHk{J1>ĝc\U Ql6|~m%ft-]57o$ Aqֽgn$̝$aMg聰u &OUl!|<>[UF78=`YhEЋcD;R!3 [:}Eou^iG1=l28J:$M&㤿,lNTФv(~9} 6rl?YK/RY|x0~aұK^X/Y`F@&"[*CnvpdLkJ*mdڢd`ؕ|/+{Q{#pN7|.v# +>.{YfKz!ʪ$鷋U P>"OP?<`0nb~aDX &.KoDn>1l$ l_3E}ڒjKI@LݹOh򍠫:r:*J=Q@cWTW!? !U3"(|Px +s.N6|ϮEE%3#h&q4! OkG/}<?gVO0T)GYXk[aL#|jd +)r8[y5Rԛf8[FxLJhncZ덆fK.cX;[E<Ime#=l{L#7Y8[/4};S:Id[`!1D, B6pGHT^:%ݬKbY[9ֺ fRlU㣮rhˇD 7,ա+ +^Nju8Bګּe~1~n{;u~rE>L K~uDa7;9nB9yޡPi'F} ۲0 2 ޽y7hBc~'C_^d$jUt<(^^rBWg^0e09YԲm[ ZXԥ5Ou~]}]TL8jclFFbixPOWAkHp/՗¿J)3t }88aLq$ dcVioP%Gf +՞sy/B)/Ti"i3ܐjfxJ~M+eς6b崄z ^b׺Eۍp1$bTu b_Y-UFݣ5J/h7Sx+M`,gZkX{U;yCodK7@zб |Wϭ:CU#0aV _8lzS?IƄJ= F]Yf 54nDt +rL.Y\!I(R}PHSҿAUsy 4VH#VƯ#ѫS),ryQ<;J)j02/pVPSiZ ǧNB)-e5B\P +7V=7XZQSh/χ7h@l y>}Q4NCK356αqW,ʍ$_oz=HjnG0P~["9IE=ݷ`)&7aop/N0|~JY B]NXlԌ> mJV >p?<+ Thvf0qv]D?|a;Vc 4ȿpԖ #]X$~N#W:kgx|v9OLhԝbmoԴr! jnnZ \0bECepN!m"o"q68E68ɂ6x"Xdr\Y aEKX@Wik9;Ua4u.#Fux$8򭣭{u+ج6@_z҈83zf  ϴ_ ͨ$B7֭fVw0**yx Aܘiej[e|QV.@f$P" K{]yzؘK%f.m wnĬ1KeVX{~&2,qsRP feF >U2AH\7'0*"b\%߉H<٣jȘ⅄uP?9 99¥Nլ'")H#ޜ)ªo-@ Jo;כήhQ?vH0 7ѦlBYh}P%3XRB:%JN?znϻ%l·yzyD\, +\%Cr ARJJ~B+RF&u0i@k{&mLߧcR;6QN|Jk1qd΀;4/NJsg'BpPBl-\B8Y +`L $ŪW@>-;x5TDI(B6MFN&]q#< WķdžJP,o;V|@HZphvA4z 䶤ɗ9!2^fW)k_SЊ gOJBRC vWa͚>LӠoLJoE<'zcБӸrK=zX ýqe%o7qEdn7\d? qnsBLcpu1n^z!nɘx-}vO: ]- 5-jZYCI9IK&ԡk dlk W<|o2VbzMiUhDk(_TKK9\)>˩"wdl2$"KnXpFXqA2*k8vW|X)|/!t)`= .D^/ުZ*בkab%z:s`uGIG<5"ofKeOLC}Tîw!*u4=?y/dJxbH_4_X[[o\ؙ(k%%A>o/ )F&}W& /%,DM MFB&.}PD\ +}U6ij^#DMͭ]yy|Z +AAï_ Y'V/QI+ugw8kUK_헿p?uI ϶ h[!MvƊPtdI$cYsX߷.у'%D.u_P5ߜ|,t4C6t{0t.#(l,37Z6/ew=NbiH/Krm:- ,g77ܶD ukA]hz8 t)Z0󀈗TI~yc4_ɕﰪqJt#A;rq^'T7k0v.x^Ǜ4K[0-(XmdXS;@ȸ$VNAd u y.2lNk,2J_]5x>@ΏA$]&.#K~48“1}Ce[l)-cYK;edsyԿ'`fyc-l7 c1 +æ~"̜܎2ᐧbL0Byt%e0Ӵs>"uY6ΊdcSjљt&І6"@  ƆFR9Pz8}K5agP{u3\NaW ;{4[ +g,Fo_#֯lmrW*ADiΓ=GTկ +#MB +d#v#Yw}&zY81ZQ;/{ cTȌ/t|c \:B~N~uiy^N~n5;IZpOp y~ȁif w',J`Oz緊., .ɸat2,j&[f!Gv $KAjO0tT4QkV3;`T-< k8CgL$Xxo@|\wTMK[tzKqЈ]RE|8GMeY|u_I*TL, IGyꄦ/QDjZ{eȘRF7g^d4?a`@\L ((4] +endstream +endobj +253 0 obj +<< +/Type/FontDescriptor +/CapHeight 850 +/Ascent 850 +/Descent -200 +/FontBBox[-62 -250 1123 750] +/FontName/RLUPJI+CMSL10 +/ItalicAngle -9.46 +/StemV 79 +/FontFile 252 0 R +/Flags 68 +>> +endobj +252 0 obj +<< +/Filter[/FlateDecode] +/Length1 722 +/Length2 5038 +/Length3 533 +/Length 5595 +>> +stream +xUT\ۖqN)[ANpwª + +%\x0JFW/]zP +C dG)y v&:"ƺ`э?NoޘR <)@T=2R“ u);~ +wc~m:n蠷sg]Ϝo5`yw{[5Aa<^up!rcה`(wǺϭ1d# +&2EvRK~u'kg!jǸTO[HH}a޷]ۂ~Z/>D7;fc׀dWƬ5 .act'CC%J߯oe/A ➻Q"^HlPSY'Oa9Վ|",U 0\M/a$bI<~Ziw+q&=}8.Cɥ=VtxW<c= Y bOIJCޢGgТJA{,)GH][LHQ#ɱ`]|QT +nU=%s܌SҴZ}bz^u)[?V +>'{?*7`HߌU1aOX䜌+:OjG+$Nw M؃" dJ!EH^M'XfNsӯK^R|:?("d.A;X]j̚bNg0Ye⒂yMжdmW _yf-қ@Μ%wHʶB~Cd쉥zPeYBU?T;rG⮲ &ƅV+|0KV&%o3ӝ +}p1ε󆇧=6P~Kj=-hkR% +=#$r⠗Y*tܐƧoD!jA3^0xgM_.r V 7A>fpϧ96lCVh9 +vv4*5sș\4ZoxWUR9hs +P8,JٞC_4ѿ{Cia쌃/ +xXC`wRRc{;4,IAWEIrJKc5P̚UK~F[=WeOv +);ΪJnAn\ 6S9U穵(lJ>쭿+.X!/OshW<8ؤ®c =jVĆiL=h Ed0FR\7qߕ]b pr-Ze7 a|-s|Ċ{߸i@w4ֻZaGHrflYz;.m'7hxA7B<x3[:^M9ӝRF+je`pzig {[w湒 +ah8{$ZZ;kݝ <'Qd! 4^=<Loc߫VOv<ǡwBo9*&42_nh*͘ ɟ7` +/حYysW')S_K!uZ^CѾo{AX 16I?;4˟a Fq8ڣT+G|\7ܘj&sG.Ha+@S>.nfu"h=d}OWԂ +c~th+l +D_X/1o$é9Ç$ɛF_UܑdHEU(ium]~!n>и,;*%F8A>_Q]_W%s&e"|V65sר}]G0T _Xx$J%KX/ )S=9M9Աluu%SAlxz;7?Kۊͤ\rEUZd$y@" +*6tyaԤw0lbp if[:JwG<uqHΑE`Z`/7Ǎ j+2JF 5}&d;&*qeiκgCt/F8Squ3`Syr> +ok#'/\ O׌fʘV6#g#|Fid:5Ҥ۟T{PT>RR# dytbouW(AJK}iC"k3r0. o_l(ꦅ?aDb~0JO2l~((uFj-hH%8VU.@(${!*@$yceΒ&ayw{noOaA|v9ZL¥wxcdJj0 +c\M,iq < xfJ$훷rn΁^;[%[`j$1S4ƾ!nפ{6R崯GSVTmOELgIQ7wΜ$4)`șz*% cխI|gp n0yg,~#ĶƇ +rxHAvvlbhΊ1xzLt[w< +I1"쥀rhxOr2m>3LjVJt||1`#s #,S$֧kŞ\ZlN1MOaIq3~Jw!8}ٌ4Z;'JvFcPf+DkKU_𶐴zI;ԛ+՘?]|k> +endobj +5 0 obj +<< +/Type/Page +/Resources 6 0 R +/Contents[17 0 R 4 0 R 18 0 R 19 0 R] +/Parent 258 0 R +>> +endobj +21 0 obj +<< +/Type/Page +/Resources 22 0 R +/Contents[17 0 R 4 0 R 46 0 R 19 0 R] +/Parent 258 0 R +>> +endobj +48 0 obj +<< +/Type/Page +/Resources 49 0 R +/Contents[17 0 R 4 0 R 50 0 R 19 0 R] +/Parent 258 0 R +>> +endobj +258 0 obj +<< +/Type/Pages +/Count 3 +/Kids[5 0 R 21 0 R 48 0 R] +/Parent 257 0 R +>> +endobj +52 0 obj +<< +/Type/Page +/Resources 53 0 R +/Contents[17 0 R 4 0 R 68 0 R 19 0 R] +/Parent 259 0 R +>> +endobj +70 0 obj +<< +/Type/Page +/Resources 71 0 R +/Contents[17 0 R 4 0 R 72 0 R 19 0 R] +/Parent 259 0 R +>> +endobj +74 0 obj +<< +/Type/Page +/Resources 75 0 R +/Contents[17 0 R 4 0 R 76 0 R 19 0 R] +/Parent 259 0 R +>> +endobj +259 0 obj +<< +/Type/Pages +/Count 3 +/Kids[52 0 R 70 0 R 74 0 R] +/Parent 257 0 R +>> +endobj +78 0 obj +<< +/Type/Page +/Resources 79 0 R +/Contents[17 0 R 4 0 R 80 0 R 19 0 R] +/Parent 260 0 R +>> +endobj +82 0 obj +<< +/Type/Page +/Resources 83 0 R +/Contents[17 0 R 4 0 R 84 0 R 19 0 R] +/Parent 260 0 R +>> +endobj +86 0 obj +<< +/Type/Page +/Resources 87 0 R +/Contents[17 0 R 4 0 R 88 0 R 19 0 R] +/Parent 260 0 R +>> +endobj +260 0 obj +<< +/Type/Pages +/Count 3 +/Kids[78 0 R 82 0 R 86 0 R] +/Parent 257 0 R +>> +endobj +90 0 obj +<< +/Type/Page +/Resources 91 0 R +/Contents[17 0 R 4 0 R 92 0 R 19 0 R] +/Parent 261 0 R +>> +endobj +94 0 obj +<< +/Type/Page +/Resources 95 0 R +/Contents[17 0 R 4 0 R 96 0 R 19 0 R] +/Parent 261 0 R +>> +endobj +98 0 obj +<< +/Type/Page +/Resources 99 0 R +/Contents[17 0 R 4 0 R 100 0 R 19 0 R] +/Parent 261 0 R +>> +endobj +261 0 obj +<< +/Type/Pages +/Count 3 +/Kids[90 0 R 94 0 R 98 0 R] +/Parent 257 0 R +>> +endobj +257 0 obj +<< +/Type/Pages +/Count 12 +/Kids[258 0 R 259 0 R 260 0 R 261 0 R] +/Parent 3 0 R +>> +endobj +102 0 obj +<< +/Type/Page +/Resources 103 0 R +/Contents[17 0 R 4 0 R 104 0 R 19 0 R] +/Parent 263 0 R +>> +endobj +106 0 obj +<< +/Type/Page +/Resources 107 0 R +/Contents[17 0 R 4 0 R 108 0 R 19 0 R] +/Parent 263 0 R +>> +endobj +110 0 obj +<< +/Type/Page +/Resources 111 0 R +/Contents[17 0 R 4 0 R 112 0 R 19 0 R] +/Parent 263 0 R +>> +endobj +263 0 obj +<< +/Type/Pages +/Count 3 +/Kids[102 0 R 106 0 R 110 0 R] +/Parent 262 0 R +>> +endobj +114 0 obj +<< +/Type/Page +/Resources 115 0 R +/Contents[17 0 R 4 0 R 116 0 R 19 0 R] +/Parent 264 0 R +>> +endobj +118 0 obj +<< +/Type/Page +/Resources 119 0 R +/Contents[17 0 R 4 0 R 120 0 R 19 0 R] +/Parent 264 0 R +>> +endobj +122 0 obj +<< +/Type/Page +/Resources 123 0 R +/Contents[17 0 R 4 0 R 124 0 R 19 0 R] +/Parent 264 0 R +>> +endobj +264 0 obj +<< +/Type/Pages +/Count 3 +/Kids[114 0 R 118 0 R 122 0 R] +/Parent 262 0 R +>> +endobj +126 0 obj +<< +/Type/Page +/Resources 127 0 R +/Contents[17 0 R 4 0 R 128 0 R 19 0 R] +/Parent 265 0 R +>> +endobj +130 0 obj +<< +/Type/Page +/Resources 131 0 R +/Contents[17 0 R 4 0 R 132 0 R 19 0 R] +/Parent 265 0 R +>> +endobj +134 0 obj +<< +/Type/Page +/Resources 135 0 R +/Contents[17 0 R 4 0 R 136 0 R 19 0 R] +/Parent 265 0 R +>> +endobj +265 0 obj +<< +/Type/Pages +/Count 3 +/Kids[126 0 R 130 0 R 134 0 R] +/Parent 262 0 R +>> +endobj +138 0 obj +<< +/Type/Page +/Resources 139 0 R +/Contents[17 0 R 4 0 R 140 0 R 19 0 R] +/Parent 266 0 R +>> +endobj +142 0 obj +<< +/Type/Page +/Resources 143 0 R +/Contents[17 0 R 4 0 R 144 0 R 19 0 R] +/Parent 266 0 R +>> +endobj +146 0 obj +<< +/Type/Page +/Resources 147 0 R +/Contents[17 0 R 4 0 R 148 0 R 19 0 R] +/Parent 266 0 R +>> +endobj +150 0 obj +<< +/Type/Page +/Resources 151 0 R +/Contents[17 0 R 4 0 R 152 0 R 19 0 R] +/Parent 266 0 R +>> +endobj +266 0 obj +<< +/Type/Pages +/Count 4 +/Kids[138 0 R 142 0 R 146 0 R 150 0 R] +/Parent 262 0 R +>> +endobj +262 0 obj +<< +/Type/Pages +/Count 13 +/Kids[263 0 R 264 0 R 265 0 R 266 0 R] +/Parent 3 0 R +>> +endobj +154 0 obj +<< +/Type/Page +/Resources 155 0 R +/Contents[17 0 R 4 0 R 156 0 R 19 0 R] +/Parent 268 0 R +>> +endobj +158 0 obj +<< +/Type/Page +/Resources 159 0 R +/Contents[17 0 R 4 0 R 160 0 R 19 0 R] +/Parent 268 0 R +>> +endobj +162 0 obj +<< +/Type/Page +/Resources 163 0 R +/Contents[17 0 R 4 0 R 164 0 R 19 0 R] +/Parent 268 0 R +>> +endobj +268 0 obj +<< +/Type/Pages +/Count 3 +/Kids[154 0 R 158 0 R 162 0 R] +/Parent 267 0 R +>> +endobj +166 0 obj +<< +/Type/Page +/Resources 167 0 R +/Contents[17 0 R 4 0 R 168 0 R 19 0 R] +/Parent 269 0 R +>> +endobj +170 0 obj +<< +/Type/Page +/Resources 171 0 R +/Contents[17 0 R 4 0 R 172 0 R 19 0 R] +/Parent 269 0 R +>> +endobj +174 0 obj +<< +/Type/Page +/Resources 175 0 R +/Contents[17 0 R 4 0 R 176 0 R 19 0 R] +/Parent 269 0 R +>> +endobj +269 0 obj +<< +/Type/Pages +/Count 3 +/Kids[166 0 R 170 0 R 174 0 R] +/Parent 267 0 R +>> +endobj +178 0 obj +<< +/Type/Page +/Resources 179 0 R +/Contents[17 0 R 4 0 R 180 0 R 19 0 R] +/Parent 270 0 R +>> +endobj +182 0 obj +<< +/Type/Page +/Resources 183 0 R +/Contents[17 0 R 4 0 R 184 0 R 19 0 R] +/Parent 270 0 R +>> +endobj +186 0 obj +<< +/Type/Page +/Resources 187 0 R +/Contents[17 0 R 4 0 R 188 0 R 19 0 R] +/Parent 270 0 R +>> +endobj +270 0 obj +<< +/Type/Pages +/Count 3 +/Kids[178 0 R 182 0 R 186 0 R] +/Parent 267 0 R +>> +endobj +190 0 obj +<< +/Type/Page +/Resources 191 0 R +/Contents[17 0 R 4 0 R 192 0 R 19 0 R] +/Parent 271 0 R +>> +endobj +194 0 obj +<< +/Type/Page +/Resources 195 0 R +/Contents[17 0 R 4 0 R 196 0 R 19 0 R] +/Parent 271 0 R +>> +endobj +198 0 obj +<< +/Type/Page +/Resources 199 0 R +/Contents[17 0 R 4 0 R 200 0 R 19 0 R] +/Parent 271 0 R +>> +endobj +271 0 obj +<< +/Type/Pages +/Count 3 +/Kids[190 0 R 194 0 R 198 0 R] +/Parent 267 0 R +>> +endobj +267 0 obj +<< +/Type/Pages +/Count 12 +/Kids[268 0 R 269 0 R 270 0 R 271 0 R] +/Parent 3 0 R +>> +endobj +202 0 obj +<< +/Type/Page +/Resources 203 0 R +/Contents[17 0 R 4 0 R 204 0 R 19 0 R] +/Parent 273 0 R +>> +endobj +206 0 obj +<< +/Type/Page +/Resources 207 0 R +/Contents[17 0 R 4 0 R 208 0 R 19 0 R] +/Parent 273 0 R +>> +endobj +210 0 obj +<< +/Type/Page +/Resources 211 0 R +/Contents[17 0 R 4 0 R 212 0 R 19 0 R] +/Parent 273 0 R +>> +endobj +273 0 obj +<< +/Type/Pages +/Count 3 +/Kids[202 0 R 206 0 R 210 0 R] +/Parent 272 0 R +>> +endobj +214 0 obj +<< +/Type/Page +/Resources 215 0 R +/Contents[17 0 R 4 0 R 216 0 R 19 0 R] +/Parent 274 0 R +>> +endobj +218 0 obj +<< +/Type/Page +/Resources 219 0 R +/Contents[17 0 R 4 0 R 220 0 R 19 0 R] +/Parent 274 0 R +>> +endobj +222 0 obj +<< +/Type/Page +/Resources 223 0 R +/Contents[17 0 R 4 0 R 224 0 R 19 0 R] +/Parent 274 0 R +>> +endobj +274 0 obj +<< +/Type/Pages +/Count 3 +/Kids[214 0 R 218 0 R 222 0 R] +/Parent 272 0 R +>> +endobj +226 0 obj +<< +/Type/Page +/Resources 227 0 R +/Contents[17 0 R 4 0 R 228 0 R 19 0 R] +/Parent 275 0 R +>> +endobj +230 0 obj +<< +/Type/Page +/Resources 231 0 R +/Contents[17 0 R 4 0 R 232 0 R 19 0 R] +/Parent 275 0 R +>> +endobj +234 0 obj +<< +/Type/Page +/Resources 235 0 R +/Contents[17 0 R 4 0 R 236 0 R 19 0 R] +/Parent 275 0 R +>> +endobj +275 0 obj +<< +/Type/Pages +/Count 3 +/Kids[226 0 R 230 0 R 234 0 R] +/Parent 272 0 R +>> +endobj +238 0 obj +<< +/Type/Page +/Resources 239 0 R +/Contents[17 0 R 4 0 R 240 0 R 19 0 R] +/Parent 276 0 R +>> +endobj +242 0 obj +<< +/Type/Page +/Resources 243 0 R +/Contents[17 0 R 4 0 R 244 0 R 19 0 R] +/Parent 276 0 R +>> +endobj +246 0 obj +<< +/Type/Page +/Resources 247 0 R +/Contents[17 0 R 4 0 R 248 0 R 19 0 R] +/Parent 276 0 R +>> +endobj +250 0 obj +<< +/Type/Page +/Resources 251 0 R +/Contents[17 0 R 4 0 R 255 0 R 19 0 R] +/Parent 276 0 R +>> +endobj +276 0 obj +<< +/Type/Pages +/Count 4 +/Kids[238 0 R 242 0 R 246 0 R 250 0 R] +/Parent 272 0 R +>> +endobj +272 0 obj +<< +/Type/Pages +/Count 13 +/Kids[273 0 R 274 0 R 275 0 R 276 0 R] +/Parent 3 0 R +>> +endobj +3 0 obj +<< +/Type/Pages +/Count 50 +/Kids[257 0 R 262 0 R 267 0 R 272 0 R] +/MediaBox[0 0 595 842] +>> +endobj +17 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +19 0 obj +<< +/Length 1 +>> +stream + +endstream +endobj +4 0 obj +<< +/Length 33 +>> +stream +1.00028 0 0 1.00028 72 769.82 cm +endstream +endobj +277 0 obj +<< +>> +endobj +278 0 obj +null +endobj +279 0 obj +<< +>> +endobj +2 0 obj +<< +/Type/Catalog +/Pages 3 0 R +/Outlines 277 0 R +/Threads 278 0 R +/Names 279 0 R +>> +endobj +xref +0 280 +0000000000 65535 f +0000137869 00000 n +0000145602 00000 n +0000145247 00000 n +0000145452 00000 n +0000138033 00000 n +0000004047 00000 n +0000000009 00000 n +0000069300 00000 n +0000069116 00000 n +0000000913 00000 n +0000074013 00000 n +0000073827 00000 n +0000001906 00000 n +0000079252 00000 n +0000079064 00000 n +0000002823 00000 n +0000145352 00000 n +0000003740 00000 n +0000145402 00000 n +0000003992 00000 n +0000138136 00000 n +0000014673 00000 n +0000090242 00000 n +0000090053 00000 n +0000004108 00000 n +0000095513 00000 n +0000095323 00000 n +0000005054 00000 n +0000100817 00000 n +0000100628 00000 n +0000005990 00000 n +0000006966 00000 n +0000103794 00000 n +0000103600 00000 n +0000007920 00000 n +0000008866 00000 n +0000106396 00000 n +0000106201 00000 n +0000010482 00000 n +0000108367 00000 n +0000108181 00000 n +0000011433 00000 n +0000111391 00000 n +0000111200 00000 n +0000012397 00000 n +0000013392 00000 n +0000014562 00000 n +0000138241 00000 n +0000015714 00000 n +0000014735 00000 n +0000015625 00000 n +0000138433 00000 n +0000022564 00000 n +0000113338 00000 n +0000113144 00000 n +0000015776 00000 n +0000116892 00000 n +0000116698 00000 n +0000016747 00000 n +0000017757 00000 n +0000118309 00000 n +0000118114 00000 n +0000018664 00000 n +0000019646 00000 n +0000120966 00000 n +0000120780 00000 n +0000020623 00000 n +0000021368 00000 n +0000022417 00000 n +0000138538 00000 n +0000023739 00000 n +0000022626 00000 n +0000023604 00000 n +0000138643 00000 n +0000025049 00000 n +0000023801 00000 n +0000024914 00000 n +0000138836 00000 n +0000025598 00000 n +0000025111 00000 n +0000025553 00000 n +0000138941 00000 n +0000026843 00000 n +0000025660 00000 n +0000026696 00000 n +0000139046 00000 n +0000028051 00000 n +0000026905 00000 n +0000027916 00000 n +0000139239 00000 n +0000028638 00000 n +0000028113 00000 n +0000028593 00000 n +0000139344 00000 n +0000029745 00000 n +0000028700 00000 n +0000029610 00000 n +0000139449 00000 n +0000031114 00000 n +0000029807 00000 n +0000030978 00000 n +0000139741 00000 n +0000031800 00000 n +0000031177 00000 n +0000031754 00000 n +0000139849 00000 n +0000033067 00000 n +0000031864 00000 n +0000032931 00000 n +0000139957 00000 n +0000033527 00000 n +0000033131 00000 n +0000033481 00000 n +0000140156 00000 n +0000034675 00000 n +0000033591 00000 n +0000034527 00000 n +0000140264 00000 n +0000036155 00000 n +0000034739 00000 n +0000036007 00000 n +0000140372 00000 n +0000036613 00000 n +0000036219 00000 n +0000036567 00000 n +0000140571 00000 n +0000037920 00000 n +0000036677 00000 n +0000037772 00000 n +0000140679 00000 n +0000039149 00000 n +0000037984 00000 n +0000039013 00000 n +0000140787 00000 n +0000039744 00000 n +0000039213 00000 n +0000039698 00000 n +0000140986 00000 n +0000041029 00000 n +0000039808 00000 n +0000040893 00000 n +0000141094 00000 n +0000041384 00000 n +0000041093 00000 n +0000041338 00000 n +0000141202 00000 n +0000042721 00000 n +0000041448 00000 n +0000042585 00000 n +0000141310 00000 n +0000043405 00000 n +0000042785 00000 n +0000043359 00000 n +0000141615 00000 n +0000044522 00000 n +0000043469 00000 n +0000044374 00000 n +0000141723 00000 n +0000045620 00000 n +0000044586 00000 n +0000045472 00000 n +0000141831 00000 n +0000046949 00000 n +0000045684 00000 n +0000046801 00000 n +0000142030 00000 n +0000047330 00000 n +0000047013 00000 n +0000047284 00000 n +0000142138 00000 n +0000048540 00000 n +0000047394 00000 n +0000048392 00000 n +0000142246 00000 n +0000049919 00000 n +0000048604 00000 n +0000049771 00000 n +0000142445 00000 n +0000050601 00000 n +0000049983 00000 n +0000050555 00000 n +0000142553 00000 n +0000051871 00000 n +0000050665 00000 n +0000051723 00000 n +0000142661 00000 n +0000053417 00000 n +0000051935 00000 n +0000053269 00000 n +0000142860 00000 n +0000054135 00000 n +0000053481 00000 n +0000054089 00000 n +0000142968 00000 n +0000054404 00000 n +0000054199 00000 n +0000054358 00000 n +0000143076 00000 n +0000055874 00000 n +0000054468 00000 n +0000055726 00000 n +0000143373 00000 n +0000056348 00000 n +0000055938 00000 n +0000056302 00000 n +0000143481 00000 n +0000057548 00000 n +0000056412 00000 n +0000057400 00000 n +0000143589 00000 n +0000059145 00000 n +0000057612 00000 n +0000058997 00000 n +0000143788 00000 n +0000059695 00000 n +0000059209 00000 n +0000059649 00000 n +0000143896 00000 n +0000061012 00000 n +0000059759 00000 n +0000060864 00000 n +0000144004 00000 n +0000061415 00000 n +0000061076 00000 n +0000061369 00000 n +0000144203 00000 n +0000062837 00000 n +0000061479 00000 n +0000062689 00000 n +0000144311 00000 n +0000063488 00000 n +0000062901 00000 n +0000063442 00000 n +0000144419 00000 n +0000064991 00000 n +0000063552 00000 n +0000064843 00000 n +0000144618 00000 n +0000065470 00000 n +0000065055 00000 n +0000065424 00000 n +0000144726 00000 n +0000066970 00000 n +0000065534 00000 n +0000066822 00000 n +0000144834 00000 n +0000067667 00000 n +0000067034 00000 n +0000067621 00000 n +0000144942 00000 n +0000069052 00000 n +0000132159 00000 n +0000131964 00000 n +0000067731 00000 n +0000068654 00000 n +0000068994 00000 n +0000139643 00000 n +0000138346 00000 n +0000138748 00000 n +0000139151 00000 n +0000139555 00000 n +0000141517 00000 n +0000140065 00000 n +0000140480 00000 n +0000140895 00000 n +0000141418 00000 n +0000143275 00000 n +0000141939 00000 n +0000142354 00000 n +0000142769 00000 n +0000143184 00000 n +0000145149 00000 n +0000143697 00000 n +0000144112 00000 n +0000144527 00000 n +0000145050 00000 n +0000145534 00000 n +0000145557 00000 n +0000145579 00000 n +trailer +<< +/Size 280 +/Root 2 0 R +/Info 1 0 R +>> +startxref +145700 +%%EOF diff --git a/src/axiom-website/Journal/index.html b/src/axiom-website/Journal/index.html new file mode 100644 index 0000000..e6e8560 --- /dev/null +++ b/src/axiom-website/Journal/index.html @@ -0,0 +1,10 @@ + + + + Axiom Journal + + + + This is a placeholder page for the Axiom online Journal + + diff --git a/src/axiom-website/axiom.png b/src/axiom-website/axiom.png new file mode 100644 index 0000000..7cab007 Binary files /dev/null and b/src/axiom-website/axiom.png differ diff --git a/src/axiom-website/axiom.png.org b/src/axiom-website/axiom.png.org new file mode 100644 index 0000000..fe9e61c Binary files /dev/null and b/src/axiom-website/axiom.png.org differ diff --git a/src/axiom-website/bookvol10.2abb.html b/src/axiom-website/bookvol10.2abb.html new file mode 100644 index 0000000..f25430b --- /dev/null +++ b/src/axiom-website/bookvol10.2abb.html @@ -0,0 +1,121 @@ + + + + Axiom Computer Algebra System + + + + + +

+
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ + +

Axiom Abbreviated Category and Domain graph

+
+ choose here: + 0.1 or + 0.25 or + 0.5 or + 1.0 or + 1.5 or ... +
+
+ + +
+ + + diff --git a/src/axiom-website/bookvol10.2abb.svg b/src/axiom-website/bookvol10.2abb.svg new file mode 100644 index 0000000..91ca8a2 --- /dev/null +++ b/src/axiom-website/bookvol10.2abb.svg @@ -0,0 +1,926 @@ + + +]> + + + + + +dotabb + + +CATEGORY + + +CATEGORY + + + +ABELGRP + + +ABELGRP + + + +CABMON + + +CABMON + + + +ABELGRP->CABMON + + + + +ABELMON + + +ABELMON + + + +CABMON->ABELMON + + + + +ABELSG + + +ABELSG + + + +ABELMON->ABELSG + + + + +SETCAT + + +SETCAT + + + +ABELSG->SETCAT + + + + +REPDB + +REPDB + + +ABELSG->REPDB + + + + +BASTYPE + + +BASTYPE + + + +SETCAT->BASTYPE + + + + +KOERCE + + +KOERCE + + + +SETCAT->KOERCE + + + + +AGG + + +AGG + + + +TYPE + + +TYPE + + + +AGG->TYPE + + + + +TYPE->CATEGORY + + + + +ALAGG + + +ALAGG + + + +TBAGG + + +TBAGG + + + +ALAGG->TBAGG + + + + +LSAGG + + +LSAGG + + + +ALAGG->LSAGG + + + + +IXAGG + + +IXAGG + + + +TBAGG->IXAGG + + + + +KDAGG + + +KDAGG + + + +TBAGG->KDAGG + + + + +FLAGG + + +FLAGG + + + +LSAGG->FLAGG + + + + +ELAGG + + +ELAGG + + + +LSAGG->ELAGG + + + + +A1AGG + + +A1AGG + + + +A1AGG->FLAGG + + + + +LNAGG + + +LNAGG + + + +FLAGG->LNAGG + + + + +BASTYPE->CATEGORY + + + + +BGAGG + + +BGAGG + + + +HOAGG + + +HOAGG + + + +BGAGG->HOAGG + + + + +HOAGG->AGG + + + + +BMODULE + + +BMODULE + + + +LMODULE + + +LMODULE + + + +BMODULE->LMODULE + + + + +RMODULE + + +RMODULE + + + +BMODULE->RMODULE + + + + +LMODULE->ABELGRP + + + + +RMODULE->ABELGRP + + + + +BRAGG + + +BRAGG + + + +RCAGG + + +RCAGG + + + +BRAGG->RCAGG + + + + +RCAGG->HOAGG + + + + +BTAGG + + +BTAGG + + + +BTAGG->A1AGG + + + + +ORDSET + + +ORDSET + + + +BTAGG->ORDSET + + + + +LOGIC + +LOGIC + + +BTAGG->LOGIC + + + + +ORDSET->SETCAT + + + + +CLAGG + + +CLAGG + + + +CLAGG->HOAGG + + + + +DIAGG + + +DIAGG + + + +DIOPS + + +DIOPS + + + +DIAGG->DIOPS + + + + +DIOPS->BGAGG + + + + +DIOPS->CLAGG + + + + +DLAGG + + +DLAGG + + + +DLAGG->RCAGG + + + + +DQAGG + + +DQAGG + + + +SKAGG + + +SKAGG + + + +DQAGG->SKAGG + + + + +QUAGG + + +QUAGG + + + +DQAGG->QUAGG + + + + +SKAGG->BGAGG + + + + +QUAGG->BGAGG + + + + +ELAGG->LNAGG + + + + +LNAGG->CLAGG + + + + +LNAGG->IXAGG + + + + +ELTAB + + +ELTAB + + + +ELTAB->CATEGORY + + + + +ELTAGG + + +ELTAGG + + + +ELTAGG->ELTAB + + + + +FINITE + + +FINITE + + + +FINITE->SETCAT + + + + +FSAGG + + +FSAGG + + + +FSAGG->DIAGG + + + + +SETAGG + + +SETAGG + + + +FSAGG->SETAGG + + + + +SETAGG->SETCAT + + + + +SETAGG->CLAGG + + + + +IXAGG->HOAGG + + + + +IXAGG->ELTAGG + + + + +KDAGG->DIAGG + + + + +KOERCE->CATEGORY + + + + +KONVERT + + +KONVERT + + + +KONVERT->CATEGORY + + + + +MDAGG + + +MDAGG + + + +MDAGG->DIOPS + + + + +MONOID + + +MONOID + + + +SGROUP + + +SGROUP + + + +MONOID->SGROUP + + + + +SGROUP->SETCAT + + + + +MSETAGG + + +MSETAGG + + + +MSETAGG->SETAGG + + + + +MSETAGG->MDAGG + + + + +OAGROUP + + +OAGROUP + + + +OAGROUP->ABELGRP + + + + +OCAMON + + +OCAMON + + + +OAGROUP->OCAMON + + + + +OCAMON->CABMON + + + + +OAMON + + +OAMON + + + +OCAMON->OAMON + + + + +OAMON->ABELMON + + + + +OASGP + + +OASGP + + + +OAMON->OASGP + + + + +OASGP->ABELMON + + + + +OASGP->ORDSET + + + + +OAMONS + + +OAMONS + + + +OAMONS->OCAMON + + + + +OMSAGG + + +OMSAGG + + + +OMSAGG->MSETAGG + + + + +PRQAGG + + +PRQAGG + + + +OMSAGG->PRQAGG + + + + +PRQAGG->BGAGG + + + + +ORDFIN + + +ORDFIN + + + +ORDFIN->ORDSET + + + + +ORDFIN->FINITE + + + + +ORDMON + + +ORDMON + + + +ORDMON->ORDSET + + + + +ORDMON->MONOID + + + + +ORDRING + + +ORDRING + + + +ORDRING->MONOID + + + + +ORDRING->OAGROUP + + + + +RING + + +RING + + + +ORDRING->RING + + + + +RING->LMODULE + + + + +RING->MONOID + + + + +RNG + + +RNG + + + +RING->RNG + + + + +RETRACT + + +RETRACT + + + +RETRACT->CATEGORY + + + + +RNG->ABELGRP + + + + +RNG->SGROUP + + + + +SRAGG + + +SRAGG + + + +SRAGG->A1AGG + + + + +STAGG + + +STAGG + + + +STAGG->RCAGG + + + + +STAGG->LNAGG + + + + +STEP + + +STEP + + + +STEP->SETCAT + + + + +URAGG + + +URAGG + + + +URAGG->RCAGG + + + + + diff --git a/src/axiom-website/bookvol10.2full.html b/src/axiom-website/bookvol10.2full.html new file mode 100644 index 0000000..d45ab3a --- /dev/null +++ b/src/axiom-website/bookvol10.2full.html @@ -0,0 +1,121 @@ + + + + Axiom Computer Algebra System + + + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ + +

Axiom Abbreviated Category and Domain graph

+
+ choose here: + 0.1 or + 0.25 or + 0.5 or + 1.0 or + 1.5 or ... +
+
+ + +
+ + + diff --git a/src/axiom-website/bookvol10.2full.svg b/src/axiom-website/bookvol10.2full.svg new file mode 100644 index 0000000..8b5c3f1 --- /dev/null +++ b/src/axiom-website/bookvol10.2full.svg @@ -0,0 +1,1438 @@ + + +]> + + + + + +dotfull + + +Category + + +Category + + + +AbelianGroup() + + +AbelianGroup() + + + +CancellationAbelianMonoid() + + +CancellationAbelianMonoid() + + + +AbelianGroup()->CancellationAbelianMonoid() + + + + +AbelianMonoid() + + +AbelianMonoid() + + + +CancellationAbelianMonoid()->AbelianMonoid() + + + + +AbelianSemiGroup() + + +AbelianSemiGroup() + + + +AbelianMonoid()->AbelianSemiGroup() + + + + +SetCategory() + + +SetCategory() + + + +AbelianSemiGroup()->SetCategory() + + + + +RepeatedDoubling(SetCategory) + +RepeatedDoubling(SetCategory) + + +AbelianSemiGroup()->RepeatedDoubling(SetCategory) + + + + +BasicType() + + +BasicType() + + + +SetCategory()->BasicType() + + + + +CoercibleTo(OutputForm) + + +CoercibleTo(OutputForm) + + + +SetCategory()->CoercibleTo(OutputForm) + + + + +Aggregate() + + +Aggregate() + + + +Type() + + +Type() + + + +Aggregate()->Type() + + + + +Type()->Category + + + + +AssociationListAggregate(a:SetCategory,b:SetCategory) + + +AssociationListAggregate(a:SetCategory,b:SetCategory) + + + +TableAggregate(a:SetCategory,b:SetCategory) + + +TableAggregate(a:SetCategory,b:SetCategory) + + + +AssociationListAggregate(a:SetCategory,b:SetCategory)->TableAggregate(a:SetCategory,b:SetCategory) + + + + +ListAggregate(Record(a:SetCategory,b:SetCategory)) + + +ListAggregate(Record(a:SetCategory,b:SetCategory)) + + + +AssociationListAggregate(a:SetCategory,b:SetCategory)->ListAggregate(Record(a:SetCategory,b:SetCategory)) + + + + +IndexedAggregate(a:SetCategory,b:SetCategory) + + +IndexedAggregate(a:SetCategory,b:SetCategory) + + + +TableAggregate(a:SetCategory,b:SetCategory)->IndexedAggregate(a:SetCategory,b:SetCategory) + + + + +KeyedDictionary(a:SetCategory,b:SetCategory) + + +KeyedDictionary(a:SetCategory,b:SetCategory) + + + +TableAggregate(a:SetCategory,b:SetCategory)->KeyedDictionary(a:SetCategory,b:SetCategory) + + + + +ListAggregate(a:Type) + + +ListAggregate(a:Type) + + + +ListAggregate(Record(a:SetCategory,b:SetCategory))->ListAggregate(a:Type) + + + + +OneDimensionalArrayAggregate(a:Type) + + +OneDimensionalArrayAggregate(a:Type) + + + +FiniteLinearAggregate(a:Type) + + +FiniteLinearAggregate(a:Type) + + + +OneDimensionalArrayAggregate(a:Type)->FiniteLinearAggregate(a:Type) + + + + +LinearAggregate(a:Type) + + +LinearAggregate(a:Type) + + + +FiniteLinearAggregate(a:Type)->LinearAggregate(a:Type) + + + + +OneDimensionalArrayAggregate(Character) + + +OneDimensionalArrayAggregate(Character) + + + +OneDimensionalArrayAggregate(Character)->OneDimensionalArrayAggregate(a:Type) + + + + +OneDimensionalArrayAggregate(Boolean) + + +OneDimensionalArrayAggregate(Boolean) + + + +OneDimensionalArrayAggregate(Boolean)->OneDimensionalArrayAggregate(a:Type) + + + + +BasicType()->Category + + + + +BagAggregate(a:Type) + + +BagAggregate(a:Type) + + + +HomogeneousAggregate(a:Type) + + +HomogeneousAggregate(a:Type) + + + +BagAggregate(a:Type)->HomogeneousAggregate(a:Type) + + + + +HomogeneousAggregate(a:Type)->Aggregate() + + + + +BagAggregate(a:SetCategory) + + +BagAggregate(a:SetCategory) + + + +BagAggregate(a:SetCategory)->BagAggregate(a:Type) + + + + +BiModule(a:Ring,b:Ring) + + +BiModule(a:Ring,b:Ring) + + + +LeftModule(a:Ring) + + +LeftModule(a:Ring) + + + +BiModule(a:Ring,b:Ring)->LeftModule(a:Ring) + + + + +RightModule(a:Ring) + + +RightModule(a:Ring) + + + +BiModule(a:Ring,b:Ring)->RightModule(a:Ring) + + + + +LeftModule(a:Rng) + + +LeftModule(a:Rng) + + + +LeftModule(a:Ring)->LeftModule(a:Rng) + + + + +RightModule(a:Rng) + + +RightModule(a:Rng) + + + +RightModule(a:Ring)->RightModule(a:Rng) + + + + +BiModule(a:CommutativeRing,b:CommutativeRing) + + +BiModule(a:CommutativeRing,b:CommutativeRing) + + + +BiModule(a:CommutativeRing,b:CommutativeRing)->BiModule(a:Ring,b:Ring) + + + + +BiModule(a:Ring,b:OrderedAbelianMonoid) + + +BiModule(a:Ring,b:OrderedAbelianMonoid) + + + +BiModule(a:Ring,b:OrderedAbelianMonoid)->BiModule(a:Ring,b:Ring) + + + + +BinaryRecursiveAggregate(a:Type) + + +BinaryRecursiveAggregate(a:Type) + + + +RecursiveAggregate(a:Type) + + +RecursiveAggregate(a:Type) + + + +BinaryRecursiveAggregate(a:Type)->RecursiveAggregate(a:Type) + + + + +RecursiveAggregate(a:Type)->HomogeneousAggregate(a:Type) + + + + +BitAggregate() + + +BitAggregate() + + + +BitAggregate()->OneDimensionalArrayAggregate(Boolean) + + + + +OrderedSet() + + +OrderedSet() + + + +BitAggregate()->OrderedSet() + + + + +Logic() + +Logic() + + +BitAggregate()->Logic() + + + + +OrderedSet()->SetCategory() + + + + +Collection(a:Type) + + +Collection(a:Type) + + + +Collection(a:Type)->HomogeneousAggregate(a:Type) + + + + +Collection(a:SetCategory) + + +Collection(a:SetCategory) + + + +Collection(a:SetCategory)->Collection(a:Type) + + + + +Dictionary(a:SetCategory) + + +Dictionary(a:SetCategory) + + + +DictionaryOperations(a:SetCategory) + + +DictionaryOperations(a:SetCategory) + + + +Dictionary(a:SetCategory)->DictionaryOperations(a:SetCategory) + + + + +DictionaryOperations(a:SetCategory)->BagAggregate(a:SetCategory) + + + + +DictionaryOperations(a:SetCategory)->Collection(a:SetCategory) + + + + +Dictionary(Record(a:SetCategory,b:SetCategory)) + + +Dictionary(Record(a:SetCategory,b:SetCategory)) + + + +Dictionary(Record(a:SetCategory,b:SetCategory))->Dictionary(a:SetCategory) + + + + +DoublyLinkedAggregate(a:Type) + + +DoublyLinkedAggregate(a:Type) + + + +DoublyLinkedAggregate(a:Type)->RecursiveAggregate(a:Type) + + + + +DequeueAggregate(a:Type) + + +DequeueAggregate(a:Type) + + + +StackAggregate(a:Type) + + +StackAggregate(a:Type) + + + +DequeueAggregate(a:Type)->StackAggregate(a:Type) + + + + +QueueAggregate(a:Type) + + +QueueAggregate(a:Type) + + + +DequeueAggregate(a:Type)->QueueAggregate(a:Type) + + + + +StackAggregate(a:Type)->BagAggregate(a:Type) + + + + +QueueAggregate(a:Type)->BagAggregate(a:Type) + + + + +DequeueAggregate(a:SetCategory) + + +DequeueAggregate(a:SetCategory) + + + +DequeueAggregate(a:SetCategory)->DequeueAggregate(a:Type) + + + + +ExtensibleLinearAggregate(a:Type) + + +ExtensibleLinearAggregate(a:Type) + + + +ExtensibleLinearAggregate(a:Type)->LinearAggregate(a:Type) + + + + +LinearAggregate(a:Type)->Collection(a:Type) + + + + +IndexedAggregate(b:Integer,a:Type) + + +IndexedAggregate(b:Integer,a:Type) + + + +LinearAggregate(a:Type)->IndexedAggregate(b:Integer,a:Type) + + + + +Eltable(a:SetCategory,b:Type) + + +Eltable(a:SetCategory,b:Type) + + + +Eltable(a:SetCategory,b:Type)->Category + + + + +EltableAggregate(a:SetCategory,b:Type) + + +EltableAggregate(a:SetCategory,b:Type) + + + +EltableAggregate(a:SetCategory,b:Type)->Eltable(a:SetCategory,b:Type) + + + + +Finite() + + +Finite() + + + +Finite()->SetCategory() + + + + +FiniteSetAggregate(a:SetCategory) + + +FiniteSetAggregate(a:SetCategory) + + + +FiniteSetAggregate(a:SetCategory)->Dictionary(a:SetCategory) + + + + +SetAggregate(a:SetCategory) + + +SetAggregate(a:SetCategory) + + + +FiniteSetAggregate(a:SetCategory)->SetAggregate(a:SetCategory) + + + + +SetAggregate(a:SetCategory)->SetCategory() + + + + +SetAggregate(a:SetCategory)->Collection(a:SetCategory) + + + + +IndexedAggregate(a:SetCategory,b:Type) + + +IndexedAggregate(a:SetCategory,b:Type) + + + +IndexedAggregate(a:SetCategory,b:Type)->HomogeneousAggregate(a:Type) + + + + +IndexedAggregate(a:SetCategory,b:Type)->EltableAggregate(a:SetCategory,b:Type) + + + + +IndexedAggregate(a:SetCategory,b:SetCategory)->IndexedAggregate(a:SetCategory,b:Type) + + + + +IndexedAggregate(b:Integer,a:Type)->IndexedAggregate(a:SetCategory,b:Type) + + + + +KeyedDictionary(a:SetCategory,b:SetCategory)->Dictionary(Record(a:SetCategory,b:SetCategory)) + + + + +CoercibleTo(a:Type) + + +CoercibleTo(a:Type) + + + +CoercibleTo(a:Type)->Category + + + + +CoercibleTo(OutputForm)->CoercibleTo(a:Type) + + + + +ConvertibleTo(a:Type) + + +ConvertibleTo(a:Type) + + + +ConvertibleTo(a:Type)->Category + + + + +ConvertibleTo(DoubleFloat) + + +ConvertibleTo(DoubleFloat) + + + +ConvertibleTo(DoubleFloat)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Float) + + +ConvertibleTo(Float) + + + +ConvertibleTo(Float)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(InputForm) + + +ConvertibleTo(InputForm) + + + +ConvertibleTo(InputForm)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Integer) + + +ConvertibleTo(Integer) + + + +ConvertibleTo(Integer)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Pattern(Integer)) + + +ConvertibleTo(Pattern(Integer)) + + + +ConvertibleTo(Pattern(Integer))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Pattern(Float)) + + +ConvertibleTo(Pattern(Float)) + + + +ConvertibleTo(Pattern(Float))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Complex(Float)) + + +ConvertibleTo(Complex(Float)) + + + +ConvertibleTo(Complex(Float))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Complex(DoubleFloat)) + + +ConvertibleTo(Complex(DoubleFloat)) + + + +ConvertibleTo(Complex(DoubleFloat))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(String) + + +ConvertibleTo(String) + + + +ConvertibleTo(String)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Symbol) + + +ConvertibleTo(Symbol) + + + +ConvertibleTo(Symbol)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(SExpression) + + +ConvertibleTo(SExpression) + + + +ConvertibleTo(SExpression)->ConvertibleTo(a:Type) + + + + +ConvertibleTo(Pattern(Base)) + + +ConvertibleTo(Pattern(Base)) + + + +ConvertibleTo(Pattern(Base))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(List(Integer)) + + +ConvertibleTo(List(Integer)) + + + +ConvertibleTo(List(Integer))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(List(Character)) + + +ConvertibleTo(List(Character)) + + + +ConvertibleTo(List(Character))->ConvertibleTo(a:Type) + + + + +ConvertibleTo(UnivariatePolynomialCategory(CommutativeRing)) + + +ConvertibleTo(UnivariatePolynomialCategory(CommutativeRing)) + + + +ConvertibleTo(UnivariatePolynomialCategory(CommutativeRing))->ConvertibleTo(a:Type) + + + + +LeftModule(a:Rng)->AbelianGroup() + + + + +ListAggregate(a:Type)->FiniteLinearAggregate(a:Type) + + + + +ListAggregate(a:Type)->ExtensibleLinearAggregate(a:Type) + + + + +StreamAggregate(a:Type) + + +StreamAggregate(a:Type) + + + +ListAggregate(a:Type)->StreamAggregate(a:Type) + + + + +StreamAggregate(a:Type)->LinearAggregate(a:Type) + + + + +UnaryRecursiveAggregate(a:Type) + + +UnaryRecursiveAggregate(a:Type) + + + +StreamAggregate(a:Type)->UnaryRecursiveAggregate(a:Type) + + + + +MultiDictionary(a:SetCategory) + + +MultiDictionary(a:SetCategory) + + + +MultiDictionary(a:SetCategory)->DictionaryOperations(a:SetCategory) + + + + +Monoid() + + +Monoid() + + + +SemiGroup() + + +SemiGroup() + + + +Monoid()->SemiGroup() + + + + +SemiGroup()->SetCategory() + + + + +RepeatedSquaring(SemiGroup) + +RepeatedSquaring(SemiGroup) + + +SemiGroup()->RepeatedSquaring(SemiGroup) + + + + +MultisetAggregate(a:SetCategory) + + +MultisetAggregate(a:SetCategory) + + + +MultisetAggregate(a:SetCategory)->SetAggregate(a:SetCategory) + + + + +MultisetAggregate(a:SetCategory)->MultiDictionary(a:SetCategory) + + + + +OrderedAbelianGroup() + + +OrderedAbelianGroup() + + + +OrderedAbelianGroup()->AbelianGroup() + + + + +OrderedCancellationAbelianMonoid() + + +OrderedCancellationAbelianMonoid() + + + +OrderedAbelianGroup()->OrderedCancellationAbelianMonoid() + + + + +OrderedCancellationAbelianMonoid()->CancellationAbelianMonoid() + + + + +OrderedAbelianMonoid() + + +OrderedAbelianMonoid() + + + +OrderedCancellationAbelianMonoid()->OrderedAbelianMonoid() + + + + +OrderedAbelianMonoid()->AbelianMonoid() + + + + +OrderedAbelianSemiGroup() + + +OrderedAbelianSemiGroup() + + + +OrderedAbelianMonoid()->OrderedAbelianSemiGroup() + + + + +OrderedAbelianSemiGroup()->AbelianMonoid() + + + + +OrderedAbelianSemiGroup()->OrderedSet() + + + + +OAMONS + + +OAMONS + + + +OCAMON + +OCAMON + + +OAMONS->OCAMON + + + + +OrderedMultisetAggregate(a:SetCategory) + + +OrderedMultisetAggregate(a:SetCategory) + + + +OrderedMultisetAggregate(a:SetCategory)->MultisetAggregate(a:SetCategory) + + + + +PriorityQueueAggregate(a:SetCategory) + + +PriorityQueueAggregate(a:SetCategory) + + + +OrderedMultisetAggregate(a:SetCategory)->PriorityQueueAggregate(a:SetCategory) + + + + +PriorityQueueAggregate(a:Type) + + +PriorityQueueAggregate(a:Type) + + + +PriorityQueueAggregate(a:SetCategory)->PriorityQueueAggregate(a:Type) + + + + +OrderedFinite() + + +OrderedFinite() + + + +OrderedFinite()->OrderedSet() + + + + +OrderedFinite()->Finite() + + + + +OrderedMonoid() + + +OrderedMonoid() + + + +OrderedMonoid()->OrderedSet() + + + + +OrderedMonoid()->Monoid() + + + + +OrderedRing() + + +OrderedRing() + + + +OrderedRing()->Monoid() + + + + +OrderedRing()->OrderedAbelianGroup() + + + + +Ring() + + +Ring() + + + +OrderedRing()->Ring() + + + + +Ring()->LeftModule(a:Ring) + + + + +Ring()->Monoid() + + + + +Rng() + + +Rng() + + + +Ring()->Rng() + + + + +PriorityQueueAggregate(a:Type)->BagAggregate(a:Type) + + + + +PriorityQueueAggregate(a:OrderedSet) + + +PriorityQueueAggregate(a:OrderedSet) + + + +PriorityQueueAggregate(a:OrderedSet)->PriorityQueueAggregate(a:SetCategory) + + + + +QueueAggregate(a:SetCategory) + + +QueueAggregate(a:SetCategory) + + + +QueueAggregate(a:SetCategory)->QueueAggregate(a:Type) + + + + +RetractableTo(a:Type) + + +RetractableTo(a:Type) + + + +RetractableTo(a:Type)->Category + + + + +RetractableTo(SetCategory) + + +RetractableTo(SetCategory) + + + +RetractableTo(SetCategory)->RetractableTo(a:Type) + + + + +RetractableTo(Symbol) + + +RetractableTo(Symbol) + + + +RetractableTo(Symbol)->RetractableTo(a:Type) + + + + +RetractableTo(Integer) + + +RetractableTo(Integer) + + + +RetractableTo(Integer)->RetractableTo(a:Type) + + + + +RetractableTo(NonNegativeInteger) + + +RetractableTo(NonNegativeInteger) + + + +RetractableTo(NonNegativeInteger)->RetractableTo(a:Type) + + + + +RetractableTo(Fraction(Integer)) + + +RetractableTo(Fraction(Integer)) + + + +RetractableTo(Fraction(Integer))->RetractableTo(a:Type) + + + + +RetractableTo(Float) + + +RetractableTo(Float) + + + +RetractableTo(Float)->RetractableTo(a:Type) + + + + +RetractableTo(Kernel(ExpressionSpace)) + + +RetractableTo(Kernel(ExpressionSpace)) + + + +RetractableTo(Kernel(ExpressionSpace))->RetractableTo(a:Type) + + + + +RetractableTo(CommutativeRing) + + +RetractableTo(CommutativeRing) + + + +RetractableTo(CommutativeRing)->RetractableTo(a:Type) + + + + +Rng()->AbelianGroup() + + + + +Rng()->SemiGroup() + + + + +RightModule(a:Rng)->AbelianGroup() + + + + +StackAggregate(a:SetCategory) + + +StackAggregate(a:SetCategory) + + + +StackAggregate(a:SetCategory)->StackAggregate(a:Type) + + + + +StringAggregate() + + +StringAggregate() + + + +StringAggregate()->OneDimensionalArrayAggregate(Character) + + + + +UnaryRecursiveAggregate(a:Type)->RecursiveAggregate(a:Type) + + + + +StepThrough() + + +StepThrough() + + + +StepThrough()->SetCategory() + + + + + diff --git a/src/axiom-website/community.html b/src/axiom-website/community.html new file mode 100644 index 0000000..20314fd --- /dev/null +++ b/src/axiom-website/community.html @@ -0,0 +1,248 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+
+

Axiom community, mailing lists

+ + Several + mailing lists are available: + +
+
axiom-mail + (Archive) +
General discussion on Axiom + +
axiom-developer + (Archive) +
When you have issues to compile Axiom, when you have issues with + Axiom internals + +
axiom-legal + (Archive) +
All legal issues, like license issues + +
axiom-math + (Archive) +
Discussion of math theory and philosophy related to Axiom +
+ + +

Axiom Releases

+ +

+ Axiom is released about every two months on a best-effort basis. + The "golden" released sources are maintained in GIT, CVS and ARCH. +

+ +

+ Axiom release (Git) is hosted on GitHub. +

+ +

+ Axiom release (CVS) is hosted on Savannah. +

+ +

+ Axiom release (CVS) is hosted on Sourceforge. +

+ +

+ Axiom release (ARCH) is hosted on arch.axiom-developer.org +

+ + +

Axiom Development

+ +

+ Axiom is continuously developed and a "silver" version is available. + The development sources are maintained in git and SVN. +

+ +

+ Axiom development (SVN) is hosted on Sourceforge. +

+ +

+ Axiom development (git) is hosted on git.axiom-developer.org +

+ + +

+ Here is a list of people that have contributed to Axiom (to November, 2008) +

+Cyril Alberga          Roy Adler              Christian Aistleitner
+Richard Anderson       George Andrews         S.J. Atkins
+Henry Baker            Stephen Balzac         Yurij Baransky
+David R. Barton        Gerald Baumgartner     Gilbert Baumslag
+Jay Belanger           David Bindel           Fred Blair
+Vladimir Bondarenko    Mark Botch
+Alexandre Bouyer       Peter A. Broadbery     Martin Brock
+Manuel Bronstein       Florian Bundschuh      Luanne Burns
+William Burge
+Quentin Carpent        Robert Caviness        Bruce Char
+Ondrej Certik          Cheekai Chin           David V. Chudnovsky
+Gregory V. Chudnovsky  Josh Cohen             Christophe Conil
+Don Coppersmith        George Corliss         Robert Corless
+Gary Cornell           Meino Cramer           Claire Di Crescenzo
+David Cyganski
+Timothy Daly Sr.       Timothy Daly Jr.       James H. Davenport
+Didier Deshommes       Michael Dewar
+Jean Della Dora        Gabriel Dos Reis       Claire DiCrescendo
+Sam Dooley             Lionel Ducos           Martin Dunstan
+Brian Dupee            Dominique Duval
+Robert Edwards         Heow Eide-Goodman      Lars Erickson
+Richard Fateman        Bertfried Fauser       Stuart Feldman
+Brian Ford             Albrecht Fortenbacher  George Frances
+Constantine Frangos    Timothy Freeman        Korrinn Fu
+Marc Gaetano           Rudiger Gebauer        Kathy Gerber
+Patricia Gianni        Samantha Goldrich      Holger Gollan
+Teresa Gomez-Diaz      Laureano Gonzalez-Vega Stephen Gortler
+Johannes Grabmeier     Matt Grayson           Klaus Ebbe Grue
+James Griesmer         Vladimir Grinberg      Oswald Gschnitzer
+Jocelyn Guidry
+Steve Hague            Satoshi Hamaguchi      Mike Hansen
+Richard Harke          Vilya Harvey           Martin Hassner
+Arthur S. Hathaway     Dan Hatton             Waldek Hebisch
+Ralf Hemmecke          Henderson              Antoine Hersen
+Gernot Hueber
+Pietro Iglio
+Alejandro Jakubi       Richard Jenks
+Kai Kaminski           Grant Keady            Tony Kennedy
+Paul Kosinski          Klaus Kusche           Bernhard Kutzler
+Larry Lambe            Franz Lehner           Frederic Lehobey
+Michel Levaud          Howard Levy            Liu Xiaojun
+Rudiger Loos           Michael Lucks          Richard Luczak
+Camm Maguire           Francois Maltey        Alasdair McAndrew
+Bob McElrath           Michael McGettrick     Ian Meikle
+David Mentre           Victor S. Miller       Gerard Milmeister
+Mohammed Mobarak       H. Michael Moeller     Michael Monagan
+Marc Moreno-Maza       Scott Morrison         Joel Moses
+Mark Murray
+William Naylor         C. Andrew Neff         John Nelder
+Godfrey Nolan          Arthur Norman          Jinzhong Niu
+Michael O'Connor       Summat Oemrawsingh     Kostas Oikonomou
+Humberto Ortiz-Zuazaga  
+Julian A. Padget       Bill Page              Susan Pelzel
+Michel Petitot         Didier Pinchon         Ayal Pinkus
+Jose Alfredo Portes
+Claude Quitte
+Arthur C. Ralfs        Norman Ramsey          Anatoly Raportirenko
+Michael Richardson     Renaud Rioboo          Jean Rivlin
+Nicolas Robidoux       Simon Robinson         Raymond Rogers
+Michael Rothstein      Martin Rubey
+Philip Santas          Alfred Scheerhorn      William Schelter
+Gerhard Schneider      Martin Schoenert       Marshall Schor
+Frithjof Schulze       Fritz Schwarz          Nick Simicich
+William Sit            Elena Smirnova         Jonathan Steinbach
+Fabio Stumbo           Christine Sundaresan   Robert Sutor
+Moss E. Sweedler       Eugene Surowitz
+Max Tegmark            James Thatcher         Balbir Thomas
+Mike Thomas            Dylan Thurston         Barry Trager
+Themos T. Tsikas
+Gregory Vanuxem
+Bernhard Wall          Stephen Watt           Jaap Weel
+Juergen Weiss          M. Weller              Mark Wegman
+James Wen              Thorsten Werther       Michael Wester
+John M. Wiley          Berhard Will           Clifton J. Williamson
+Stephen Wilson         Shmuel Winograd        Robert Wisbauer
+Sandra Wityak          Waldemar Wiwianka      Knut Wolf
+Clifford Yapp          David Yun
+Vadim Zhytnikov        Richard Zippel         Evelyn Zoernack
+Bruno Zuercher         Dan Zwillinger
+  
+

+ + +
+ + + diff --git a/src/axiom-website/currentstate.html b/src/axiom-website/currentstate.html new file mode 100644 index 0000000..cca960f --- /dev/null +++ b/src/axiom-website/currentstate.html @@ -0,0 +1,811 @@ + + + + Axiom Website + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+
+ This information was last updated on July 23, 2008 +
+
+
+Axiom was released on March 25, 2008. You can view the 
+release notes for each release.
+
+This TODO list represents abbreviated notes to categorize the work directions
+and note progress (completed items have a - prefix). Items are expanded as
+the work thread moves into that subject. There is no priority and no schedule.
+The ratio is (# of completed task per section)/(total completed tasks) and
+is a measure of the ratio of effort between areas. Completed tasks are marked
+with a - in column 1 (+ indicates changes since last update)
+
+There are approximately 285 tasks listed. These tasks are broken into the
+following groups:
+
+ Pristine sources is the main thread of developing Axiom
+ Splits are pieces of work to give away
+ Joins are pieces of work to incorporate or cooperate with
+ New Development is a list of ideas for new directions or needed work
+ Research is a list of ideas that need investigation
+ Community is a list of supporting tasks for the algebra community
+
+**************************************************************************
+PRISTINE SOURCES 
+ Motivation: create a new source tree and slowly migrate original NAG/IBM
+             sources into the tree. This will ensure that only things that
+             are properly required, used and tested get shipped. Further
+             ensure that everything exists under make/cvs control.
+
+ All of the tasks have been completed except
+
+  recover numerics
+  port to Windows
+
+**************************************************************************
+SPLITS 
+ Motivation: several pieces of the system have nothing to do with algebra
+             and either have old technology that needs to be rewritten or
+             common technology that ought to be contributed to other efforts.
+
+
+ FIREFOX BROWSER
+  Motivation: We need a portable, useful front end to Axiom that combines
+  the separate pieces of the Axiom command line, hyperdoc, and graphics
+  into a unified way of working with pamphlet files.
+
+ * Rewrite Hyperdoc Pages
+    This task is to extract the information from the current
+    hyperdoc system and make it available in the browser.
+      rewrite all pages using AJAX
+      add additional pages
+      rearrange the order for clarity
+      dynamically create category/domain/packages pages
+      dynamically create operations pages 
+      allow ASQ style lookups
+
+ * Integrate Graphics
+    This task is to extract the functionality from the graphics
+    and make it work within the browser.
++     collect the graphics into a book volume
+      document the graphics
+      refactor graphics to extract X11 API
+      make API compatible version of graphics for CANVAS element
+      enable dynamic drawing into CANVAS
+      enable popup page with CANVAS and control menu elements
+ 
+ * Write Notebook Front End
+    This task is to make a new, browser-based front end to Axiom.
+      create new API domain to expose history
+      make new context sensitive menus
+      make card/div/Record objects 
+      enable create/destroy/rearrange/import/export of card decks
+      unify card decks and pamphlets
+
+
+ AXIOM TEST SUITE->COMMON TEST SUITE
+  Motivation: Algebra needs a hand-verified test suite which ought to be
+              shared with other computer algebra systems. Needs a common
+              syntax, could be a driver for previous item.
+   rewrite regression test files with results from MMA, Maple, Maxima
+   reformat files to use a common theory/practice format
+   organize files into a useful taxonomy
+
+
+**************************************************************************
+JOINS 
+ Motivation: there are several CA systems with very interesting features
+             and/or algebra. Axiom needs to import these ideas or find
+             ways to cooperate with these projects.
+
+
+
+
+ GAP->AXIOM
+  Motivation: GAP has much stronger facilities for manipulating groups.
+              Axiom can do group manipulation but GAP needs to be studied.
+
+
+
+
+ OCTAVE->AXIOM
+  Motivation: Octave has the capability to be a replacement for the NAG
+              numeric libraries. Either an interface has to be retargetted
+              or the code has to be ported to Aldor or Lisp.
+-  Test rewriting Fortran code into Aldor
++  BLAS converted to pamphlet form
+   BLAS integrated into Axiom
+
+
+
+
+
+ MAGNUS->AXIOM
+  Motivation: Magnus is strong in infinite group theory. Like GAP it needs
+              to be studied and imported.
+-  Discussion and proposal for work in this area with CCNY
++  Magnus is being rebuilt as a literate program and will eventually be
++  merged with Axiom
+   Rebuild Magnus as a literate program
+   Extract and categorize the magnus algorithms
+   Provide Axiom implementations of the algorithms
+
+
+
+
+
+ ASTRONOMER->AXIOM
+  Motivation: Internal representation of polynomials that can be scaled to
+              ~250k terms needs to be imported.
+
+This task is dead.
+
+
+
+
+ COMBINAT->AXIOM
+  Motivation: External basis representation of large polynomials needs to
+              be imported.
+
+This task is dead.
+
+
+
+
+
+ MATHEMATICA->AXIOM
+  Motivation: Workbooks need to be imported.
+
+This task has changed. Rather than focus on the mathematica workbooks
+we plan to create and use the new Axiom firefox browser as a notebook
+front end similar to Sage.
+
+
+
+
+**************************************************************************
+NEW DEVELOPMENT 
+
+
+
+
+ EXTERNALS DOCUMENTATION
+  Motivation: in order to allow users to use the system we need to collect
+              and organize the documentation and help facilities.
+- The Axiom book was rewritten and is now available as part of the normal
+- distribution. 
+- The Axiom tutorial book was published at Lulu.com
+- The firefox browser was created
++ Additional pages from hyperdoc need firefox rewrites
+  The .dvi files need to be accessible in the firefox hyperdoc
++ )help files are needed for more domains
++ )display operation needs examples for operations 
+
+
+
+ INTERNALS DOCUMENTATION
+  Motivation: in order to allow multiple developers to work on the system
+              the structure of the system needs to be explained.
+-  Directory structure
+-   document shell script
+-   Makefile structure
+-   document how the makefile tree works
+-  Lisp structure
+-   src structure
+-    algebra 
+-   boot
+-    clef
+-    doc
+-    etc
+-   graph
+-    htex
+-    hyper
+-    include
+-    input
+-    interp
+-   install
+-   lib
+-    lsp
+-   noweb
+-    paste
+-    sman
+
+  Motivation: restructure Axiom into literate book volumes
+- Volume 0: Jenks book
+- Volume 1: Tutorial
+  Volume 2: User's Guide
+  Volume 3: Programmer's Guide
++ Volume 4: Developer's Guide
++ Volume 5: Interpreter
+  Volume 6: Axiom Command
++ Volume 7: Hyperdoc
++ Volume 8: Graphics
+  Volume 9: Compiler
+  Volume 10: Algebra
+  Volume 11: Firefox Hyperdoc
+
+
+
+ ALGEGRA DOCUMENTATION
+  LITERATE PROGRAMMING 
+   Motivation: algebra code should be able to include research papers
+               and documentation of design choices, space, time and
+               complexity. Researchers should be encouraged to write
+               literate programs. Literate programs should be easily
+               turned into book sections or chapters. 
+-   seek appropriate tools
+-     tangle, weave
+-     cweb
+-     noweb
+-   seek feedback
+-   create preliminary setup
+-   create example pamphlet (DHMATRIX)
+-     define doc structure
+-     prototype
+-   modify/rewrite noweb
+-     make undefined chunks transparent
+-     example generation
+      test case generation
+-   create booklet example (MATRIX)
++     define booklet structure
++     prototype
+-   integrate into make
+-   integrate into obj/mnt
++   integrate example (DHMATRIX2) into make
++   integrate book example into make
+    write pamphlets for type hierarchy
+      write SetCategory pamphlet
+      integrate into make
+      integrate into test
+    write pamphlets for data structure hierarchy
+      write aggregate pamphlet
+      integrate into make
+      integrate into test
+    create example pamphlet from scratch (PRIMES is in P algorithm)
+      recreate paper in tex
+      write algorithm
+      merge into build
++   create example pamphlet from planarity paper
+      recreate paper in tex
+      write algorithm
+      merge into build
+    create complex pamphlet (Barry Trager's Integration thesis)
+-     recreate thesis in tex
+      factor thesis into booklets
+      factor booklets into pamphlets
+
+
+
+ SINGLE-STEPPING
+  Motivation: Users of algebra should be able to step thru algorithms at
+              some "appropriate" level of detail. Hard to do as most 
+              algebra algorithms differ from hand methods.
+
+
+
+ LIBRARY CLEANUP
+  Motivation: FullyExplicitRingOver needs a better theory basis, etc.
+
+
+
+
+ GCL BUILD
+  Motivation: run on a popular common lisp
+-  Download GCL
+-  Build image in /spad/lsp/gcl
+-  Build Axiom on image
+
+
+
+ CMUCL BUILD
+  Motivation: run on a popular common lisp
+   Download CMUCL sources
+   Build image in /spad/lsp/cmucl
+   Build Axiom on image
+
+
+
+ CCL BUILD
+  Motivation: run on a popular common lisp
+-  Get final CCL sources from Arthur
+-  Build image in /spad/lsp/ccl
+-  Build Axiom on image
+
+This effort is dead.
+              
+**************************************************************************
+RESEARCH 
+
+ AXIOM JOURNAL
+  Motivation: Provide a motivation and place to publish Axiom algorithms
+              in a literate programming style. Journal development will
+              require refereed papers.
+-  Discuss with Community
+   Contact TOMS at ACM
+   Create License for pamphlet submission
+-    This is likely to be the creative commons license
+-  Create Prototype online site (www.nongnu.org/axiom/Journal)
+     Create Journal directory
+     Structure pages similar to Journal
+     Integrate into CVS
+     Allow dynamic referee lists
+   Research online/offline references to Axiom in literature
+   Create citations bibliography
+   Get permission to mirror/host published papers
+-  Give presentation to Univ of Pisa re: literate journal
+-  Worked with ACM to provide electronic ISSAC journal
+
+
+
+ 
++CRYSTAL
++ Motivation: Soon it will be possible to have all prior published math
++             online and locally available. We need to design and build
++             a user interface model that supports researchers in math
++             by providing semantic searches, multi-faceted problem views,
++             real-time problem classification, and an "intensional stance"
++             assistant user interface.
++ Define model of interaction
+  Prototype semantic markup
+  Prototype semantic classification with KROPS
+  Prototype facet viewer
+  Prototype classifier
+  Prototype intensional stance assisant
+
+
+
+
+ COMPLEXITY
+  Motivation: Axiom is fully layered. Research results in the lowest 
+              layers can be leveraged to generate results in higher layers.
+              Use Axiom against itself to create towers of complexity.
+              Insist on complexity results in documentation.
+
+
+
+
+ TEXTBOOK OBJECT
+  Motivation: Axiom interpreter objects don't have a standard name for
+              their parts and do not have a manipulation language for
+              rewriting parts. 
+              idea: have a "tree" primitive for each type
+              idea: define a graph of tree to tree maps that label each 
+                    edge with the transformation applied to the subtree
+
+
+
+
+ TEXTBOOK CONTEXT
+  Motivation: Equations are ambiguous when standing alone. Textbooks provide
+              context in the surrounding text. This is not adequately 
+              captured by the type system. A new approach to this issue
+              is required.
+
+
+
+
+ OPEN PROBLEMS LIST
+  Motivation: Magnus maintains a community agreed-upon list of "open problems"
+              This is an excellent source of PhD work and a good focus
+              mechanism. Create and maintain this.
+
+
+
+
+ PROVISOS
+  Motivation: Assume is a weak, global mechanism for capturing provisos.
+              A new proviso object needs to exist that wraps existing 
+              objects, provides scope for provisos and provides an
+              algebra of provisos based on type (arithmetic, boolean,
+              typed, etc).
+-  Review the literature to extract proviso forms.
+-  Classify proviso forms.
+-  Draft research paper
+   Develop an arithmetic of proviso forms.
+
+
+
+
+ INTERVAL ARITHMETIC
+  Motivation: This is a fundamentally stronger way to represent uncertainty
+              in results. It needs to be lifted from the numeric domain and
+              defined symbolically. It needs to be integrated into the
+              proviso algebra.
+
+   Document interval.as algebra domain
+
+
+
+
++INDEFINITES
++ Motivation: Research needs to be done on how to represent and compute
++             with indefinite objects from domains. An indefinite object
++             has a fixed type (such as Integer) but a non-specified value.
++             Thus it is possible to say that x+1 is of type Indefinite Integer
++             since 1 is an Integer and x is an Indefinite Integer.
++ Submit NSF grant proposal (awarded)
++ Conduct research on indefinites
+   Construct domain examples
+
+
+
+
++WEB ACCESS TO AXIOM
++ Motivation: There are several research efforts to make computer algebra
++             available on the web. Axiom needs to participate and lead.
++ Work with ORCCA
+   rebuild OPENMATH support
+   update to latest OPENMATH standards
++ Work with MathAction
++  integrate automatically running Axiom into web pages
+
+
+
+
+ DOMAIN INTEGRATION
+  Motivation: Axiom would be strongly useful in domains such as robotics.
+              Areas such as backsolving of joint position can be fruitful
+              areas of research. Deep integration in domains (DSP, Vision)
+              needs to be pushed.
++ The Doyen effort is the current direction for this. Axiom will integrate
++ with the rest of the sciences thru this effort.
+
+
+
+
+ SEMI-ANALYTIC SOLUTIONS
+  Motivation: Axiom could provide parallel tasks that would continuously
+              try to extract analytic solutions from incoming data. For
+              example, in vision finding analytic edges to feed to a
+              parallel recognizer algorithm.
+
+
+
+
+ GAMES INTEGRATION
+  Motivation: Axiom can be used to model games in novel ways. For example,
+              flight games with pursuit curves that live in a non-uniform
+              space (planet gravity, changing density across air/water).
+
+
+
+
+ CONSTRAINED MODELS
+  Motivation: Force motion that always remains analytic. Thus the final
+              solution is known to be analytic. For example, constrain
+              intersecting pipes to known boundary conditions. Computational
+              geometry seems the most fruitful area.
+
+
+
+
+ VALIDATION and VERIFICATION
+  Motivation: Algebra systems need a high level of confidence in the results.
+              Hand checking of the results is difficult and expensive. 
+              Automatically substituting results into the original equations
+              could raise confidence. Auditing of boundaries of algebra
+              algorithms. Precondition/Postcondition results for domains.
+              Audited test suites used for regression testing.
+
+
+
+
+ ALGEBRA MANIPULATION LANGUAGE
+  Motivation: Algebra systems have interpreters that embody a lot of 
+              knowledge about the actions available to manipulate equations.
+              This knowledge needs a language. The language needs to be
+              crafted so that it can be added to domains and applied
+              in symbolic form by a generalized simplification routine.
+   Review the literature to extract manipulation sentences.
+   Classify manipulation forms.
+   Draft manipulation paper
+
+
+
+
+ BOYER-MOORE THEOREM PROVER INTEGRATION
+  Motivation: Computational logic is a branch of computer mathematics
+              that is not currently available in Axiom. The Boyer-Moore
+              theorem prover, written in common lisp, provides a good
+              general purpose platform to study the interaction of the
+              theorem proving systems with Axiom
+-  Contact Boyer & Moore
+-  Contact Chandy & Misra
+-  Download ACL2
+   Build ACL2
+   Invoke ACL2 from Axiom
+   Integrate ACL2 into Axiom
+     Use Dijkstra's methods against SetCategory
+   Draft research paper
+
+
+
+
+ MetaPRL THEOREM PROVER Application
+  Motivation: MetaPRL is a Higher-order Logic proof system that is well
+              suited to proving Axiom-style languages. The proofs from
+              this system would give higher confidence levels in the
+              correctness of Axiom's algorithms.
+-  Contact Artimov 
+-   Review nuprl
+-   Review MetaPRL
+-   Construct trial example
+-     Collect all sorting routines in Axiom
+      Model the required subset of Axiom's language 
+      Construct a proof of the sort algorithms
+
+**************************************************************************
+COMMUNITY 
+ 
+ COLLECT AXIOM ALGEBRA DEVELOPERS
+  Motivation: Work in Axiom has continued over the years but has not
+              been integrated. Find this work and integrate it.
+ 
+ COLLECT AXIOM KNOWN BUGS
++ Motivation: Axiom has known bugs. Create a known bug list.
++   Integrate fixes for catdef
++   Integrate fixes for pleqn
+ 
+ TRAIN AXIOM INTERNAL DEVELOPERS
+  Motivation: Many of the subtasks listed above can be split off, done in
+              parallel and lead independently. Find people who are interested,
+              especially external projects (eg work with Gnuplot to enhance
+              it with Axiom's abilities).
+-  Set up cvs on Tenkan
+-  Set up accounts for developers
+-  Import current Axiom tree into CVS
+-  Try system builds on developers machines
+-  Exchange code via CVS
+-  Expand platforms
+-    Cygwin
+-    Mingw
+-    FreeBSD
+
+ SUPPORT FRENCH WORK
+  Motivation: An organized community will help focus new Axiom development.
+-  Lyon conference presentation
+-  Set up OSCAS group
+-  Announce OSCAS group
+-  Moderate OSCAS group
+  This is a dead branch of effort.
+
+ SET UP GOLD REPOSITORIES
+  Motivation: Community needs all the usual tools enabled like bug list,
+              mailing list, cvs, etc.
+- savannah.nongnu.org (CVS)
+- sourceforge.net (CVS)
+- arch.axiom-developer.org (ARCH)
++ github (GIT)
+
+ SET UP SILVER REPOSITORIES
+  Motivation: Expose leading edge work
+- sourceforge.net (SVN)
+- git.axiom-developer.org (GIT)
+  savannah.nongnu.org (GIT)
+
+
+ ROSETTA
+  Motivation: the community needs to see and use the many open source
+              computer algebra systems so they can compare and contrast
+              the various systems. This will help focus the issues of
+              what is currently possible and how hard it is to develop
+              a large, general purpose system. Also useful for teaching.
+-  Build Rosetta CD
+-   collect open source systems
+-   build them on a common subtree
+-   write Rosetta document
+-   write them to CD such that they can be run with installation
+-   distribute CD to conferences, teachers, etc
++  Update Rosetta CD
++   add Axiom
++   fix mistakes
++   add paragraph per table
++   update Rosetta document for Giac
++   update Rosetta document for DoCon
++   update Rosetta document for Macsyma
++   write Meta-Rosetta document to expound on differences
++   integrate systems with browser front-end
++   build broken systems
++    feed back diffs to original projects
++   add new systems
++   find new customers
++ The Rosetta effort is joining with the Quantian effort and the result
++ will be known as Doyen. This work is in process.
+  Build Doyen
+   Create live CD
+   Create standalone MathAction
+   Integrate Axiom into standalone MathAction
+   Build coordination tools between daughter Doyen and mother Doyen site
+
+ AXIOM WEBSITE
+  Motivation: maintain a website so that progress on making
+              Axiom open-source is made visible and the community has
+              a place to discuss issues and ideas (not necessarily
+              related to Axiom but to the community in general).
+-  create website
+-  build interest list
+-  create and maintain update schedule
+
+
+ EXPLORE FUNDING MODELS
+  Motivation: Find creative ways to pay people who work on Axiom. Everybody
+              wants free developers but paid work will motivate development.
+   Academic degree (BA in open source? BA in computer algebra?)
+- Developed an open source lab at City College of NY. Lab is up and running
+- Lab is part of the capstone projects for CS undergrads
+   Grant model by line of code
+-   contact IBM
+-   contact SUN
++   contact NSF
+    contact INRIA
+    contact DARPA 
++   explore other contacts
+   Award Model 
+-   Schelter Award
+-    contact UTexas
+-    contact FSF
+     develop plan
+      define award type and frequency
+      find sponsor organization
+-       Efraim Armendariz 
+-       Brad Kuhn 
+      find volunteers to judge award
+    Oscars/Emmy/Tony award model for CA at ISSAC?
+-   Jenks Award
+   Pay for support model
++  Pay for travel model
++   Contact Google
++   Contact IBM
++   Contact SUN
++   Contact Sage
++   Contact NSF  
+
+  
+
+Completed, dead, or abandoned tasks +
+ HYPERTEX->BROWSER/TEX
+  Motivation: hypertex was pre-browser technology. It should be rewritten
+              to fit into today's technology. At least HTML, possibly XML.
+- This work has forked into two paths. The first path is to recreate the
+- browser from the hypertex sources. The second path is to rebuild the
+- whole effort into a standard browser-based tool. Ultimately this will
+- probably get merged with the Doyen science platform effort 
+- Recreate Hypertex
+- Create standard browser
+-   create standalone browser version
+-   merge into Doyen
+
+
+ ASQ->JAVADOC/DOC++
+  Motivation: asq is pre-javadoc. It should be rewritten to fit into the
+              browser/tex new world of docs
+- The ASQ tool needs to get redone so that standard html pages get built
+- during system build and made available. They should have a javadoc-like
+- look and feel.
+- Create ASQ-HTML page generator
+
+This task is complete.
+
+
+
+
+ PLOT->GNUPLOT
+  Motivation: plot has nothing to do with algebra but has some nice features
+              such as data feedback from graph manipulation. These facilities
+              should be moved to Gnuplot and the plot function retargetted.
+  The graphics have been rebuilt and currently work. The graphics can only
+  be run from a file at the moment because the connecting process, called
+  sman, which manages all of the axiom processes is not yet working again.
+  Rebuild sman
+  Connect sman to graphics
+  Connect graphics to gnuplot
+
+This task was abandoned.
+
+
+
+
+The 2D I/O direction has changed. The current plan is to use the
+firefox browser as a universal front-end to Axiom.
+
+ READ-EVAL-PRINT->TeXmacs
+  Motivation: the time has come for 2d input. TeXmacs provides this. There
+              needs to be a much tighter integration of TeXmacs and Axiom.
+   Connect to TeXmacs community
+-  Build TeXmacs on Linux
+-  Build TexMacs on Cygwin
+   Build TexMacs on Windows
+   pick up the notebook interface ideas from Sage
+
+
+ AXIOM I/O->COMMON SYNTAX
+  Motivation: Rosetta should not exist. Algebra syntax should standardize.
+              Existing committee work needs feedback from Axiom.
+
+The Rosetta effort is complete.
+
+  
+ + + + diff --git a/src/axiom-website/developers.html b/src/axiom-website/developers.html new file mode 100644 index 0000000..baaae86 --- /dev/null +++ b/src/axiom-website/developers.html @@ -0,0 +1,263 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+
+

Axiom Development

+ +Axiom development is now hosted on an Arch server +running on axiom.developer.org. +
+
+There is an irc channel where developers can find other developers. It is: +
+server: irc.freenode.net +
+channel:#axiom-developer +
+
+You only need to do these setup steps once. +In order to access the arch sources you need to let arch know who +you are with the command: +
+
+  tla my-id "First Last <addy@host.com>"
+
+
+Next you need to register an archive: +
+
+  tla register-archive arch@axiom-developer.org--axiom http://axiom-developer.org/archive/axiom
+
+
+Then set up a default archive +
+
+  tla my-default-archive arch@axiom-developer.org--axiom
+
+
+
+In order to get the latest source for the Axiom main line type: +
+
+  tla get axiom--main--1
+
+
+
+There are several branches available. Each branch is used to develop +a particular idea and get a stable, working version before merging +it back to the main line. The currently available branches are: +
+
+axiom--main--1       the main development branch
+     this branch will be mirrored to the CVS on savannah when it
+     is stable and tested. 
+     Currently in step 4 of development.
+
+axiom--hyperdoc--1   development of hyperdoc
+     NOTE: This branch has been merged and is now dead.
+     this branch contains code for building hyperdoc. 
+
+axiom--BSD--1        port to BSD
+     work with Mark Murray <mark at grondar.org>
+     Currently in step 1 of development.
+
+axiom--MACOSX--1     port to MACOSX
+     work with Chuck Miller <cfm at ms.unimelb.edu.au>
+     Currently in step 1 of development.
+
+book--main--1        axiom book
+     work with community to clean up the book for printing
+     Currently in step 1 of development.
+
+axiom--solaris--1    port to solaris
+     work with Kostas Oikonomou <ko at research.att.com>
+     Currently in step 1 of development.
+
+axiom--graphics--1   finish graphics integration
+     NOTE: This branch has been merged and is now dead.
+     work on integration, testing of graphics.
+
+axiom--windows--1    port to windows
+     work with < Mike Thomas <mike.thomas at brisbane.paradigmgeo.com>
+     Currently in step 1 of development.
+
+axiom--language--1   explore axiom language modifications
+     work with Stephen Wilson <wilsons at multiboard.com>
+     Currently in step 1 of development.
+
+axiom--sbcl--1       port axiom to steel bank common lisp
+     work with Tim Daly Jr. <tim at tenkan.org> and
+               Nate Daly <nate at tenkan.org>
+     Currently in step 1 of development.
+
+zlc--main--1        add a zero learning curve interface to axiom
+     work with Jinzhong Niu <jniu at gc.cuny.edu>
+               Xaiowei Xu <xuxw at yahoo.com>
+     Currently in step 1 of development.
+
+axiom--algebra--1    prototype algebra code
+     Currently in step 1 of development.
+
+axiom--GUI--1    portable GUI interface
+     work with Kai Kaminski (kai.kaminski@gmail.com)
+     Currently in step 1 of development.
+
+
+
+
+If you need write access to the archive you need to follow these steps: +
+Create a key by typing: +
+
+ssh-keygen -t dsa
+
+This will create a file called .ssh/id_dsa.pub. You need to send the +contents of this file to Tim Daly <daly@idsi.net> +so your interactions can be enabled. +
+In order to access the arch sources you need to let arch know who +you are with the command: +
+
+  tla my-id "First Last <addy@host.com>"
+
+
+Next you need to register an archive: +
+
+  tla register-archive arch@axiom-developer.org--axiom sftp://arch@axiom-developer.org/home/arch/archive/axiom
+
+Notice that you're using sftp rather than http. The sftp function +uses the secure keys to enable ftp access to the sources. The http +function is read-only. +
+Then set up a default archive +
+
+  tla my-default-archive arch@axiom-developer.org--axiom
+
+
+
+In order to get the latest source for the Axiom main line type: +
+
+  tla get axiom--main--1
+
+
+Now you can change the sources. Once you've made changes they need +to be sent back (commit) to the host. In order to do the commit +function in tla you need a log file that summarizes the changes. +You can create and edit the log file with: +
+
+  emacs -nw `tla make-log`
+
+
+or for the vi fans +
+  vi `tla make-log`
+
+Finally you commit the changes with: +
+
+  tla commit
+
+
+
+The official website for arch is +here +
+More information on arch is available +here +
+ + SourceForge.net Logo + + + + diff --git a/src/axiom-website/dhmatrix.spad.pdf b/src/axiom-website/dhmatrix.spad.pdf new file mode 100644 index 0000000..5fecda9 Binary files /dev/null and b/src/axiom-website/dhmatrix.spad.pdf differ diff --git a/src/axiom-website/diff.html b/src/axiom-website/diff.html new file mode 100644 index 0000000..5228d8a --- /dev/null +++ b/src/axiom-website/diff.html @@ -0,0 +1,78 @@ + + + + Submitting patch files + + + +
+
+In general a patch file is of the form
+
+cd the.dir
+diff -Naur file.pamphlet file.pamphlet.new >the.dir.file.pamphlet.patch
+
+this has several features:
+  * it tells me where the patch is being applied
+  * the Naur options give me context
+  * i can see the impact of a change to multiple files
+
+I read the patches before applying them so be sure to document the
+reasons for the change in the pamphlet file. It may seem trivial
+but remember that I didn't do the initial analysis so I, and others,
+will have to understand after the fact.
+
+In most cases in a pamphlet file if you're changing a few lines
+of code or a whole function it should be documented thus:
+
+
+...
+
+(defun foo ()
+  (list
+    "this is ok code"
+    "this is broken code"
+    "this is also broken"
+    "this is ok"
+  )
+)
+ 
+turns into
+
+\subsection{foo list fix}
+This code used to read:
+\begin{verbatim}
+    "this is broken code"
+    "this is also broken"
+\end{verbatim}
+but clearly the elements of the list are wrong. We are going to
+print this list for the user so we don't want them to know anything
+is broken. Thus we have wonderful new code that will inspire confidence.
+This list is printed with the [[printlist]] function.
+<>=
+    "this is great code"
+    "this inspires confidence"
+@
+
+
+...
+
+(defun foo ()
+  (list
+    "this is ok code"
+<>
+    "this is ok"
+  )
+)
+
+and, yes, I do know that this is tedious.
+
+In general, it is also useful to update the pamphlet files with 
+documentation-only changes as you understand what a block of code
+is intended to do. Most of this information has been lost to history
+and the world can leverage your efforts at understanding if you take
+the time to document it. In many ways this is as important as fixing
+the code.
+
+ + diff --git a/src/axiom-website/documentation.html b/src/axiom-website/documentation.html new file mode 100644 index 0000000..a31b83c --- /dev/null +++ b/src/axiom-website/documentation.html @@ -0,0 +1,257 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+
+

Why Literate Programming?

+ +Once a program has been developed and the developers have moved +on to other tasks it needs to be maintained. The fundamental problem +is that if you modify code you didn't write, you don't see the big +picture and you don't understand the reasons why the code is written +the way it is. Thus changing code without a larger context is almost +always going to introduce new bugs. +

+

+The only way to correctly change code is to deeply understand the +implications of the change. This requires a deep understanding of +the code and an awareness of the big picture. Yet the "why" of code +is rarely ever written down in standard programming practice. +The goal is only to elaborate the "how" so the machine can perform +the task. The programmer communicates with the machine. +

+

+Literate programming, as used in Axiom, is an attempt to communicate +with other users, developers, and researchers in addition to the +machine. The goal is to have the program read like a story so that +others can understand the rational, the theory, the choices, the +implications, and the implementation context as well as the "how". +

+

+This code is intended to live forever but it is highly probable +that you will not. Write to communicate with the next person to +pick up the torch. When you explore code, write down what you learn. +When you change code, explain why you made your choices. When you +write new code explain what others need to know to maintain it. +

+ + +

User documentation

+ +The Axiom system is gradually being documented in a set of volumes. +These change with every update to the system since they contain the +actual system source code. The volumes listed here are updated every +other month when the system is distributed. The current volume set is: + + +

+ Axiom is being reworked to use the Firefox browser as the new + front end. Static pages + from the new hyperdoc show some of the details. These pages + will be "live" in the new Axiom hyperdoc. + +

+ The algebra graph in its current form is + available. You'll need a reasonably new browser to see the graph. + This is a work in progress. + +

+ A first tutorial is available at: + http://www.dcs.st-and.ac.uk/~mnd/documentation/axiom_tutorial/ +

+ +

+ The Rosetta + (src) + (pdf) + document is a comparison of nearly equivalent commands between + many different computer algebra systems. +

+
+ + + diff --git a/src/axiom-website/dotabb b/src/axiom-website/dotabb new file mode 100644 index 0000000..4482d7f --- /dev/null +++ b/src/axiom-website/dotabb @@ -0,0 +1,646 @@ +digraph AxiomSept2008 { + ranksep=1.25; + node [shape=box, color=yellow, style=filled]; + +"ABELGRP" [color=lightblue,style=filled]; +"ABELGRP" -> "CABMON" + +"ABELMON" [color=lightblue,style=filled]; +"ABELMON" -> "ABELSG" + +"ABELSG" [color=lightblue,style=filled]; +"ABELSG" -> "SETCAT" + +"ACF" [color=lightblue,style=filled]; +"ACF" -> "FIELD" +"ACF" -> "RADCAT" + +"ACPLOT" -> "PPCURVE" + + +"AGG" [color=lightblue,style=filled]; +"AGG" -> "TYPE" + +"AHYP" [color=lightblue,style=filled]; +"AHYP" -> "CATEGORY" + +"ALAGG" [color=lightblue,style=filled]; +"ALAGG" -> "TBAGG" +"ALAGG" -> "LSAGG" + +"ALGEBRA" [color=lightblue,style=filled]; +"ALGEBRA" -> "RING" +"ALGEBRA" -> "MODULE" + + +"AMR" [color=lightblue,style=filled]; +"AMR" -> "RING" +"AMR" -> "BMODULE" + +"AN" -> "ES" +"AN" -> "ACF" +"AN" -> "RETRACT" +"AN" -> "LINEXP" +"AN" -> "REAL" +"AN" -> "CHARZ" +"AN" -> "KONVERT" +"AN" -> "DIFRING" + +"ANY" -> "SETCAT" + + +"ARRAY1" -> "A1AGG" + + +"ARRAY2" -> "ARR2CAT" +"ARRAY2" -> "IIARRAY2" + +"ARR2CAT" [color=lightblue,style=filled]; +"ARR2CAT" -> "HOAGG" + +"ASTACK" -> "STACK" + +"ATRIG" [color=lightblue,style=filled]; +"ATRIG" -> "CATEGORY" + +"ATTREG" [color=lightblue,style=filled]; +"ATTREG" -> "CATEGORY" + +"A1AGG" [color=lightblue,style=filled]; +"A1AGG" -> "FLAGG" + + +"BASTYPE" [color=lightblue,style=filled]; +"BASTYPE" -> "CATEGORY" + + +"BGAGG" [color=lightblue,style=filled]; +"BGAGG" -> "HOAGG" + +"BITS" -> "BTAGG" + +"BMODULE" [color=lightblue,style=filled]; +"BMODULE" -> "LMODULE" +"BMODULE" -> "RMODULE" + +"BOOLEAN" -> "ORDSET" +"BOOLEAN" -> "FINITE" +"BOOLEAN" -> "LOGIC" +"BOOLEAN" -> "KONVERT" + +"BRAGG" [color=lightblue,style=filled]; +"BRAGG" -> "RCAGG" + + +"BTAGG" [color=lightblue,style=filled]; +"BTAGG" -> "ORDSET" +"BTAGG" -> "LOGIC" +"BTAGG" -> "A1AGG" + +"CABMON" [color=lightblue,style=filled]; +"CABMON" -> "ABELMON" + +"CARD" -> "ORDSET" +"CARD" -> "ABELMON" +"CARD" -> "MONOID" +"CARD" -> "RETRACT" + +"CARTEN" -> "GRALG" +"CARTEN" -> "GRMOD" + + +"CATEGORY" [color=lightblue,style=filled]; + +"CHARNZ" [color=lightblue,style=filled]; +"CHARNZ" -> "RING" + +"CHARZ" [color=lightblue,style=filled]; +"CHARZ" -> "RING" + + +"CLAGG" [color=lightblue,style=filled]; +"CLAGG" -> "HOAGG" + +"CLIF" -> "RING" +"CLIF" -> "ALGEBRA" +"CLIF" -> "VSPACE" + + +"CFCAT" [color=lightblue,style=filled]; +"CFCAT" -> "CATEGORY" + + +"COLOR" -> "ABELSG" + + + +"COMBOPC" [color=lightblue,style=filled]; +"COMBOPC" -> "CFCAT" + +"COMRING" [color=lightblue,style=filled]; +"COMRING" -> "RING" +"COMRING" -> "BMODULE" + +"CONTFRAC" -> "ALGEBRA" +"CONTFRAC" -> "FIELD" + + + + + +"DBASE" -> "SETCAT" + +"DEQUEUE" -> "DQAGG" + +"DFLOAT" -> "FPS" +"DFLOAT" -> "DIFRING" +"DFLOAT" -> "OM" +"DFLOAT" -> "TRANFUN" +"DFLOAT" -> "SPFCAT" +"DFLOAT" -> "KONVERT" + +"DIAGG" [color=lightblue,style=filled]; +"DIAGG" -> "DIOPS" + +"DIFEXT" [color=lightblue,style=filled]; +"DIFEXT" -> "RING" + +"DIFRING" [color=lightblue,style=filled]; +"DIFRING" -> "RING" + +"DIOPS" [color=lightblue,style=filled]; +"DIOPS" -> "BGAGG" +"DIOPS" -> "CLAGG" + +"DIVRING" [color=lightblue,style=filled]; +"DIVRING" -> "ENTIRER" +"DIVRING" -> "ALGEBRA" + +"DLAGG" [color=lightblue,style=filled]; +"DLAGG" -> "RCAGG" + +"DLIST" -> "LSAGG" + +"DQAGG" [color=lightblue,style=filled]; +"DQAGG" -> "SKAGG" +"DQAGG" -> "QUAGG" + +"ELAGG" [color=lightblue,style=filled]; +"ELAGG" -> "LNAGG" + +"ELEMFUN" [color=lightblue,style=filled]; +"ELEMFUN" -> "CATEGORY" + +"ELTAB" [color=lightblue,style=filled]; +"ELTAB" -> "CATEGORY" + +"ELTAGG" [color=lightblue,style=filled]; +"ELTAGG" -> "ELTAB" + +"ENTIRER" [color=lightblue,style=filled]; +"ENTIRER" -> "RING" +"ENTIRER" -> "BMODULE" + +"ES" [color=lightblue,style=filled]; +"ES" -> "ORDSET" +"ES" -> "RETRACT" +"ES" -> "IEVALAB" +"ES" -> "EVALAB" + + + +"EUCDOM" [color=lightblue,style=filled]; +"EUCDOM" -> "PID" + +"EVALAB" [color=lightblue,style=filled]; +"EVALAB" -> "IEVALAB" + +"FAMR" [color=lightblue,style=filled]; +"FAMR" -> "AMR" +"FAMR" -> "FRETRCT" + +"FARRAY" -> "IFARRAY" + +"FFCAT" [color=lightblue,style=filled]; +"FFCAT" -> "MONOGEN" + + +"FIELD" [color=lightblue,style=filled]; +"FIELD" -> "EUCDOM" +"FIELD" -> "UFD" +"FIELD" -> "DIVRING" + +"FINITE" [color=lightblue,style=filled]; +"FINITE" -> "SETCAT" + +"FINRALG" [color=lightblue,style=filled]; +"FINRALG" -> "ALGEBRA" + +"FLAGG" [color=lightblue,style=filled]; +"FLAGG" -> "LNAGG" + + +"FLINEXP" [color=lightblue,style=filled]; +"FLINEXP" -> "LINEXP" + +"FPATMAB" [color=lightblue,style=filled]; +"FPATMAB" -> "TYPE" + +"FPS" [color=lightblue,style=filled]; +"FPS" -> "RNS" + +"FRAMALG" [color=lightblue,style=filled]; +"FRAMALG" -> "FINRALG" + +"FRETRCT" [color=lightblue,style=filled]; +"FRETRCT" -> "RETRACT" + +"FSAGG" [color=lightblue,style=filled]; +"FSAGG" -> "DIAGG" +"FSAGG" -> "SETAGG" + + + +"GCDDOM" [color=lightblue,style=filled]; +"GCDDOM" -> "INTDOM" + +"GRALG" [color=lightblue,style=filled]; +"GRALG" -> "GRMOD" +"GRALG" -> "RETRACT" + +"GRMOD" [color=lightblue,style=filled]; +"GRMOD" -> "SETCAT" + +"GROUP" [color=lightblue,style=filled]; +"GROUP" -> "MONOID" + +"HEAP" -> "PRQAGG" + +"HOAGG" [color=lightblue,style=filled]; +"HOAGG" -> "AGG" + +"HYPCAT" [color=lightblue,style=filled]; +"HYPCAT" -> "CATEGORY" + + +"IAN" -> "ES" +"IAN" -> "ACF" +"IAN" -> "RETRACT" +"IAN" -> "LINEXP" +"IAN" -> "REAL" +"IAN" -> "CHARZ" +"IAN" -> "KONVERT" +"IAN" -> "DIFRING" + +"IARRAY1" -> "A1AGG" + +"IARRAY2" -> "ARR2CAT" +"IARRAY2" -> "IIARRAY2" + +"IBITS" -> "BTAGG" + +"ICARD" -> "ORDSET" + +"IEVALAB" [color=lightblue,style=filled]; +"IEVALAB" -> "CATEGORY" + +"IFARRAY" -> "A1AGG" +"IFARRAY" -> "ELAGG" + +"IIARRAY2" -> "ARR2CAT" + + +"INS" [color=lightblue,style=filled]; +"INS" -> "UFD" +"INS" -> "EUCDOM" +"INS" -> "OINTDOM" +"INS" -> "DIFRING" +"INS" -> "KONVERT" +"INS" -> "RETRACT" +"INS" -> "LINEXP" +"INS" -> "PATMAB" +"INS" -> "CFCAT" +"INS" -> "REAL" +"INS" -> "CHARZ" +"INS" -> "STEP" + +"INT" -> "INS" +"INT" -> "KONVERT" +"INT" -> "OM" + +"INTDOM" [color=lightblue,style=filled]; +"INTDOM" -> "COMRING" +"INTDOM" -> "ALGEBRA" +"INTDOM" -> "ENTIRER" + + + +"IXAGG" [color=lightblue,style=filled]; +"IXAGG" -> "HOAGG" +"IXAGG" -> "ELTAGG" + +"KDAGG" [color=lightblue,style=filled]; +"KDAGG" -> "DIAGG" + +"KOERCE" [color=lightblue,style=filled]; +"KOERCE" -> "CATEGORY" + +"KONVERT" [color=lightblue,style=filled]; +"KONVERT" -> "CATEGORY" + +"LFCAT" [color=lightblue,style=filled]; +"LFCAT" -> "PRIMCAT" +"LFCAT" -> "TRANFUN" + +"LINEXP" [color=lightblue,style=filled]; +"LINEXP" -> "RING" + +"LOGIC" [color=lightblue,style=filled]; +"LOGIC" -> "BASTYPE" + +"LMODULE" [color=lightblue,style=filled]; +"LMODULE" -> "ABELGRP" + +"LNAGG" [color=lightblue,style=filled]; +"LNAGG" -> "IXAGG" +"LNAGG" -> "CLAGG" + +"LSAGG" [color=lightblue,style=filled]; +"LSAGG" -> "FLAGG" +"LSAGG" -> "ELAGG" + +"MDAGG" [color=lightblue,style=filled]; +"MDAGG" -> "DIOPS" + + +"MODULE" [color=lightblue,style=filled]; +"MODULE" -> "BMODULE" + +"MONOID" [color=lightblue,style=filled]; +"MONOID" -> "SGROUP" + +"MONOGEN" [color=lightblue,style=filled]; +"MONOGEN" -> "FRAMALG" +"MONOGEN" -> "COMRING" +"MONOGEN" -> "KONVERT" +"MONOGEN" -> "FRETRCT" +"MONOGEN" -> "FLINEXP" + + + +"MSETAGG" [color=lightblue,style=filled]; +"MSETAGG" -> "MDAGG" +"MSETAGG" -> "SETAGG" + + +"MTSCAT" [color=lightblue,style=filled]; +"MTSCAT" -> "PDRING" +"MTSCAT" -> "PSCAT" +"MTSCAT" -> "IEVALAB" +"MTSCAT" -> "EVALAB" + + +"NONE" -> "SETCAT" + + + +"NNI" -> "OAMONS" +"NNI" -> "MONOID" + +"OAGROUP" [color=lightblue,style=filled]; +"OAGROUP" -> "OCAMON" +"OAGROUP" -> "ABELGRP" + +"OAMON" [color=lightblue,style=filled]; +"OAMON" -> "OASGP" +"OAMON" -> "ABELMON" + +"OAMONS" [color=lightblue,style=filled]; +"OAMONS" -> "OCAMON" + +"OASGP" [color=lightblue,style=filled]; +"OASGP" -> "ORDSET" +"OASGP" -> "ABELMON" + +"OCAMON" [color=lightblue,style=filled]; +"OCAMON" -> "OAMON" +"OCAMON" -> "CABMON" + +"OINTDOM" [color=lightblue,style=filled]; +"OINTDOM" -> "INTDOM" +"OINTDOM" -> "ORDRING" + +"OM" [color=lightblue,style=filled]; +"OM" -> "CATEGORY" + +"OMSAGG" [color=lightblue,style=filled]; +"OMSAGG" -> "MSETAGG" +"OMSAGG" -> "PRQAGG" + +"ONECOMP" -> "SETCAT" +"ONECOMP" -> "FRETRCT" + + + +"ORDCOMP" -> "SETCAT" +"ORDCOMP" -> "FRETRCT" + + +"ORDFIN" [color=lightblue,style=filled]; +"ORDFIN" -> "ORDSET" +"ORDFIN" -> "FINITE" + +"ORDMON" [color=lightblue,style=filled]; +"ORDMON" -> "ORDSET" +"ORDMON" -> "MONOID" + +"ORDRING" [color=lightblue,style=filled]; +"ORDRING" -> "OAGROUP" +"ORDRING" -> "RING" +"ORDRING" -> "MONOID" + +"ORDSET" [color=lightblue,style=filled]; +"ORDSET" -> "SETCAT" + +"PALETTE" -> "SETCAT" + +"PATAB" [color=lightblue,style=filled]; +"PATAB" -> "CATEGORY" + +"PATLRES" -> "SETCAT" + +"PATMAB" [color=lightblue,style=filled]; +"PATMAB" -> "SETCAT" + +"PATRES" -> "SETCAT" + + +"PATTERN" -> "SETCAT" +"PATTERN" -> "RETRACT" + + + +"PDRING" [color=lightblue,style=filled]; +"PDRING" -> "RING" + +"PFECAT" [color=lightblue,style=filled]; +"PFECAT" -> "UFD" + +"PI" -> "OASGP" +"PI" -> "MONOID" + +"PID" [color=lightblue,style=filled]; +"PID" -> "GCDDOM" + + + + + + + +"PRIMARR" -> "A1AGG" + + +"PRIMCAT" [color=lightblue,style=filled]; +"PRIMCAT" -> "CATEGORY" + +"PRQAGG" [color=lightblue,style=filled]; +"PRQAGG" -> "BGAGG" + +"PSCAT" [color=lightblue,style=filled]; +"PSCAT" -> "AMR" + +"RADFF" -> "FFCAT" +"RADFF" -> "SAE" + + +"REF" -> "TYPE" + +"QFORM" -> "ABELGRP" + +"QUAGG" [color=lightblue,style=filled]; +"QUAGG" -> "BGAGG" + +"QUEUE" -> "QUAGG" + +"QEQUAT" -> "KOERCE" + +"RCAGG" [color=lightblue,style=filled]; +"RCAGG" -> "HOAGG" + +"RADCAT" [color=lightblue,style=filled]; +"RADCAT" -> "CATEGORY" + +"REAL" [color=lightblue,style=filled]; +"REAL" -> "KONVERT" + + +"RETRACT" [color=lightblue,style=filled]; +"RETRACT" -> "CATEGORY" + + +"RING" [color=lightblue,style=filled]; +"RING" -> "RNG" +"RING" -> "MONOID" +"RING" -> "LMODULE" + +"RMODULE" [color=lightblue,style=filled]; +"RMODULE" -> "ABELGRP" + +"RNG" [color=lightblue,style=filled]; +"RNG" -> "ABELGRP" +"RNG" -> "SGROUP" + +"RNS" [color=lightblue,style=filled]; +"RNS" -> "FIELD" +"RNS" -> "ORDRING" +"RNS" -> "REAL" +"RNS" -> "RETRACT" +"RNS" -> "RADCAT" +"RNS" -> "KONVERT" +"RNS" -> "PATMAB" +"RNS" -> "CHARZ" + +"ROMAN" -> "INS" + +"SAE" -> "MONOGEN" + + + +"SAOS" -> "ORDSET" + +"SETAGG" [color=lightblue,style=filled]; +"SETAGG" -> "SETCAT" +"SETAGG" -> "CLAGG" + +"SETCAT" [color=lightblue,style=filled]; +"SETCAT" -> "BASTYPE" +"SETCAT" -> "KOERCE" + +"SGROUP" [color=lightblue,style=filled]; +"SGROUP" -> "SETCAT" + +"SINT" -> "INS" +"SINT" -> "LOGIC" +"SINT" -> "OM" + +"SKAGG" [color=lightblue,style=filled]; +"SKAGG" -> "BGAGG" + +"SRAGG" [color=lightblue,style=filled]; +"SRAGG" -> "A1AGG" + +"STACK" -> "SKAGG" + +"STAGG" [color=lightblue,style=filled]; +"STAGG" -> "RCAGG" +"STAGG" -> "LNAGG" + +"STEP" [color=lightblue,style=filled]; +"STEP" -> "SETCAT" + +"SPFCAT" [color=lightblue,style=filled]; +"SPFCAT" -> "CATEGORY" + + +"TBAGG" [color=lightblue,style=filled]; +"TBAGG" -> "KDAGG" +"TBAGG" -> "IXAGG" + +"TRANFUN" [color=lightblue,style=filled]; +"TRANFUN" -> "TRIGCAT" +"TRANFUN" -> "ATRIG" +"TRANFUN" -> "HYPCAT" +"TRANFUN" -> "AHYP" +"TRANFUN" -> "ELEMFUN" + +"TRIGCAT" [color=lightblue,style=filled]; +"TRIGCAT" -> "CATEGORY" + +"TUPLE" -> "PRIMARR" + +"TYPE" [color=lightblue,style=filled]; +"TYPE" -> "CATEGORY" + +"UFD" [color=lightblue,style=filled]; +"UFD" -> "GCDDOM" + +"ULSCAT" [color=lightblue,style=filled]; +"ULSCAT" -> "UPSCAT" + +"URAGG" [color=lightblue,style=filled]; +"URAGG" -> "RCAGG" + +"UPSCAT" [color=lightblue,style=filled]; +"UPSCAT" -> "PSCAT" + +"UPXSCAT" [color=lightblue,style=filled]; +"UPXSCAT" -> "UPSCAT" + +"UTSCAT" [color=lightblue,style=filled]; +"UTSCAT" -> "UPSCAT" + +"VSPACE" [color=lightblue,style=filled]; +"VSPACE" -> "MODULE" + +} diff --git a/src/axiom-website/dotabb.html b/src/axiom-website/dotabb.html new file mode 100644 index 0000000..3ce1a05 --- /dev/null +++ b/src/axiom-website/dotabb.html @@ -0,0 +1,46 @@ + + +Axiom Abbreviated Category and Domain graph + + + + +

Axiom Abbreviated Category and Domain graph

+ + +
+ choose here: + 0.1 or + 0.25 or + 0.5 or + 1.0 or + 1.5 or ... +
+ +
+ + +
+ + + diff --git a/src/axiom-website/dotabb.svg b/src/axiom-website/dotabb.svg new file mode 100644 index 0000000..daeb754 --- /dev/null +++ b/src/axiom-website/dotabb.svg @@ -0,0 +1,2352 @@ + + +]> + + + + + +AxiomSept2008 + + +ABELGRP + +ABELGRP + + +CABMON + +CABMON + + +ABELGRP->CABMON + + + + +ABELMON + +ABELMON + + +CABMON->ABELMON + + + + +ABELSG + +ABELSG + + +ABELMON->ABELSG + + + + +SETCAT + +SETCAT + + +ABELSG->SETCAT + + + + +BASTYPE + +BASTYPE + + +SETCAT->BASTYPE + + + + +KOERCE + +KOERCE + + +SETCAT->KOERCE + + + + +ACF + +ACF + + +FIELD + +FIELD + + +ACF->FIELD + + + + +RADCAT + +RADCAT + + +ACF->RADCAT + + + + +DIVRING + +DIVRING + + +FIELD->DIVRING + + + + +EUCDOM + +EUCDOM + + +FIELD->EUCDOM + + + + +UFD + +UFD + + +FIELD->UFD + + + + +CATEGORY + +CATEGORY + + +RADCAT->CATEGORY + + + + +ACPLOT + +ACPLOT + + +PPCURVE + +PPCURVE + + +ACPLOT->PPCURVE + + + + +AGG + +AGG + + +TYPE + +TYPE + + +AGG->TYPE + + + + +TYPE->CATEGORY + + + + +AHYP + +AHYP + + +AHYP->CATEGORY + + + + +ALAGG + +ALAGG + + +TBAGG + +TBAGG + + +ALAGG->TBAGG + + + + +LSAGG + +LSAGG + + +ALAGG->LSAGG + + + + +IXAGG + +IXAGG + + +TBAGG->IXAGG + + + + +KDAGG + +KDAGG + + +TBAGG->KDAGG + + + + +FLAGG + +FLAGG + + +LSAGG->FLAGG + + + + +ELAGG + +ELAGG + + +LSAGG->ELAGG + + + + +ALGEBRA + +ALGEBRA + + +RING + +RING + + +ALGEBRA->RING + + + + +MODULE + +MODULE + + +ALGEBRA->MODULE + + + + +LMODULE + +LMODULE + + +RING->LMODULE + + + + +MONOID + +MONOID + + +RING->MONOID + + + + +RNG + +RNG + + +RING->RNG + + + + +BMODULE + +BMODULE + + +MODULE->BMODULE + + + + +AMR + +AMR + + +AMR->RING + + + + +AMR->BMODULE + + + + +BMODULE->LMODULE + + + + +RMODULE + +RMODULE + + +BMODULE->RMODULE + + + + +AN + +AN + + +AN->ACF + + + + +ES + +ES + + +AN->ES + + + + +RETRACT + +RETRACT + + +AN->RETRACT + + + + +LINEXP + +LINEXP + + +AN->LINEXP + + + + +REAL + +REAL + + +AN->REAL + + + + +CHARZ + +CHARZ + + +AN->CHARZ + + + + +KONVERT + +KONVERT + + +AN->KONVERT + + + + +DIFRING + +DIFRING + + +AN->DIFRING + + + + +ES->RETRACT + + + + +ORDSET + +ORDSET + + +ES->ORDSET + + + + +IEVALAB + +IEVALAB + + +ES->IEVALAB + + + + +EVALAB + +EVALAB + + +ES->EVALAB + + + + +RETRACT->CATEGORY + + + + +LINEXP->RING + + + + +REAL->KONVERT + + + + +CHARZ->RING + + + + +KONVERT->CATEGORY + + + + +DIFRING->RING + + + + +ANY + +ANY + + +ANY->SETCAT + + + + +ARRAY1 + +ARRAY1 + + +A1AGG + +A1AGG + + +ARRAY1->A1AGG + + + + +A1AGG->FLAGG + + + + +ARRAY2 + +ARRAY2 + + +ARR2CAT + +ARR2CAT + + +ARRAY2->ARR2CAT + + + + +IIARRAY2 + +IIARRAY2 + + +ARRAY2->IIARRAY2 + + + + +HOAGG + +HOAGG + + +ARR2CAT->HOAGG + + + + +IIARRAY2->ARR2CAT + + + + +HOAGG->AGG + + + + +ASTACK + +ASTACK + + +STACK + +STACK + + +ASTACK->STACK + + + + +SKAGG + +SKAGG + + +STACK->SKAGG + + + + +ATRIG + +ATRIG + + +ATRIG->CATEGORY + + + + +ATTREG + +ATTREG + + +ATTREG->CATEGORY + + + + +LNAGG + +LNAGG + + +FLAGG->LNAGG + + + + +BASTYPE->CATEGORY + + + + +BGAGG + +BGAGG + + +BGAGG->HOAGG + + + + +BITS + +BITS + + +BTAGG + +BTAGG + + +BITS->BTAGG + + + + +BTAGG->A1AGG + + + + +BTAGG->ORDSET + + + + +LOGIC + +LOGIC + + +BTAGG->LOGIC + + + + +LMODULE->ABELGRP + + + + +RMODULE->ABELGRP + + + + +BOOLEAN + +BOOLEAN + + +BOOLEAN->KONVERT + + + + +BOOLEAN->ORDSET + + + + +FINITE + +FINITE + + +BOOLEAN->FINITE + + + + +BOOLEAN->LOGIC + + + + +ORDSET->SETCAT + + + + +FINITE->SETCAT + + + + +LOGIC->BASTYPE + + + + +BRAGG + +BRAGG + + +RCAGG + +RCAGG + + +BRAGG->RCAGG + + + + +RCAGG->HOAGG + + + + +CARD + +CARD + + +CARD->ABELMON + + + + +CARD->RETRACT + + + + +CARD->ORDSET + + + + +CARD->MONOID + + + + +SGROUP + +SGROUP + + +MONOID->SGROUP + + + + +CARTEN + +CARTEN + + +GRALG + +GRALG + + +CARTEN->GRALG + + + + +GRMOD + +GRMOD + + +CARTEN->GRMOD + + + + +GRALG->RETRACT + + + + +GRALG->GRMOD + + + + +GRMOD->SETCAT + + + + +CHARNZ + +CHARNZ + + +CHARNZ->RING + + + + +CLAGG + +CLAGG + + +CLAGG->HOAGG + + + + +CLIF + +CLIF + + +CLIF->ALGEBRA + + + + +CLIF->RING + + + + +VSPACE + +VSPACE + + +CLIF->VSPACE + + + + +VSPACE->MODULE + + + + +CFCAT + +CFCAT + + +CFCAT->CATEGORY + + + + +COLOR + +COLOR + + +COLOR->ABELSG + + + + +COMBOPC + +COMBOPC + + +COMBOPC->CFCAT + + + + +COMRING + +COMRING + + +COMRING->RING + + + + +COMRING->BMODULE + + + + +CONTFRAC + +CONTFRAC + + +CONTFRAC->FIELD + + + + +CONTFRAC->ALGEBRA + + + + +DBASE + +DBASE + + +DBASE->SETCAT + + + + +DEQUEUE + +DEQUEUE + + +DQAGG + +DQAGG + + +DEQUEUE->DQAGG + + + + +DQAGG->SKAGG + + + + +QUAGG + +QUAGG + + +DQAGG->QUAGG + + + + +DFLOAT + +DFLOAT + + +DFLOAT->KONVERT + + + + +DFLOAT->DIFRING + + + + +FPS + +FPS + + +DFLOAT->FPS + + + + +OM + +OM + + +DFLOAT->OM + + + + +TRANFUN + +TRANFUN + + +DFLOAT->TRANFUN + + + + +SPFCAT + +SPFCAT + + +DFLOAT->SPFCAT + + + + +RNS + +RNS + + +FPS->RNS + + + + +OM->CATEGORY + + + + +TRANFUN->AHYP + + + + +TRANFUN->ATRIG + + + + +ELEMFUN + +ELEMFUN + + +TRANFUN->ELEMFUN + + + + +HYPCAT + +HYPCAT + + +TRANFUN->HYPCAT + + + + +TRIGCAT + +TRIGCAT + + +TRANFUN->TRIGCAT + + + + +SPFCAT->CATEGORY + + + + +DIAGG + +DIAGG + + +DIOPS + +DIOPS + + +DIAGG->DIOPS + + + + +DIOPS->BGAGG + + + + +DIOPS->CLAGG + + + + +DIFEXT + +DIFEXT + + +DIFEXT->RING + + + + +DIVRING->ALGEBRA + + + + +ENTIRER + +ENTIRER + + +DIVRING->ENTIRER + + + + +ENTIRER->RING + + + + +ENTIRER->BMODULE + + + + +DLAGG + +DLAGG + + +DLAGG->RCAGG + + + + +DLIST + +DLIST + + +DLIST->LSAGG + + + + +SKAGG->BGAGG + + + + +QUAGG->BGAGG + + + + +ELAGG->LNAGG + + + + +LNAGG->CLAGG + + + + +LNAGG->IXAGG + + + + +ELEMFUN->CATEGORY + + + + +ELTAB + +ELTAB + + +ELTAB->CATEGORY + + + + +ELTAGG + +ELTAGG + + +ELTAGG->ELTAB + + + + +IEVALAB->CATEGORY + + + + +EVALAB->IEVALAB + + + + +PID + +PID + + +EUCDOM->PID + + + + +GCDDOM + +GCDDOM + + +PID->GCDDOM + + + + +FAMR + +FAMR + + +FAMR->AMR + + + + +FRETRCT + +FRETRCT + + +FAMR->FRETRCT + + + + +FRETRCT->RETRACT + + + + +FARRAY + +FARRAY + + +IFARRAY + +IFARRAY + + +FARRAY->IFARRAY + + + + +IFARRAY->A1AGG + + + + +IFARRAY->ELAGG + + + + +FFCAT + +FFCAT + + +MONOGEN + +MONOGEN + + +FFCAT->MONOGEN + + + + +MONOGEN->KONVERT + + + + +MONOGEN->COMRING + + + + +MONOGEN->FRETRCT + + + + +FLINEXP + +FLINEXP + + +MONOGEN->FLINEXP + + + + +FRAMALG + +FRAMALG + + +MONOGEN->FRAMALG + + + + +UFD->GCDDOM + + + + +FINRALG + +FINRALG + + +FINRALG->ALGEBRA + + + + +FLINEXP->LINEXP + + + + +FPATMAB + +FPATMAB + + +FPATMAB->TYPE + + + + +RNS->FIELD + + + + +RNS->RADCAT + + + + +RNS->RETRACT + + + + +RNS->REAL + + + + +RNS->CHARZ + + + + +RNS->KONVERT + + + + +PATMAB + +PATMAB + + +RNS->PATMAB + + + + +ORDRING + +ORDRING + + +RNS->ORDRING + + + + +FRAMALG->FINRALG + + + + +FSAGG + +FSAGG + + +FSAGG->DIAGG + + + + +SETAGG + +SETAGG + + +FSAGG->SETAGG + + + + +SETAGG->SETCAT + + + + +SETAGG->CLAGG + + + + +INTDOM + +INTDOM + + +GCDDOM->INTDOM + + + + +INTDOM->ALGEBRA + + + + +INTDOM->COMRING + + + + +INTDOM->ENTIRER + + + + +GROUP + +GROUP + + +GROUP->MONOID + + + + +HEAP + +HEAP + + +PRQAGG + +PRQAGG + + +HEAP->PRQAGG + + + + +PRQAGG->BGAGG + + + + +HYPCAT->CATEGORY + + + + +IAN + +IAN + + +IAN->ACF + + + + +IAN->ES + + + + +IAN->RETRACT + + + + +IAN->LINEXP + + + + +IAN->REAL + + + + +IAN->CHARZ + + + + +IAN->KONVERT + + + + +IAN->DIFRING + + + + +IARRAY1 + +IARRAY1 + + +IARRAY1->A1AGG + + + + +IARRAY2 + +IARRAY2 + + +IARRAY2->ARR2CAT + + + + +IARRAY2->IIARRAY2 + + + + +IBITS + +IBITS + + +IBITS->BTAGG + + + + +ICARD + +ICARD + + +ICARD->ORDSET + + + + +INS + +INS + + +INS->RETRACT + + + + +INS->LINEXP + + + + +INS->REAL + + + + +INS->CHARZ + + + + +INS->KONVERT + + + + +INS->DIFRING + + + + +INS->CFCAT + + + + +INS->EUCDOM + + + + +INS->UFD + + + + +OINTDOM + +OINTDOM + + +INS->OINTDOM + + + + +INS->PATMAB + + + + +STEP + +STEP + + +INS->STEP + + + + +OINTDOM->INTDOM + + + + +OINTDOM->ORDRING + + + + +PATMAB->SETCAT + + + + +STEP->SETCAT + + + + +INT + +INT + + +INT->KONVERT + + + + +INT->OM + + + + +INT->INS + + + + +IXAGG->HOAGG + + + + +IXAGG->ELTAGG + + + + +KDAGG->DIAGG + + + + +KOERCE->CATEGORY + + + + +LFCAT + +LFCAT + + +LFCAT->TRANFUN + + + + +PRIMCAT + +PRIMCAT + + +LFCAT->PRIMCAT + + + + +PRIMCAT->CATEGORY + + + + +MDAGG + +MDAGG + + +MDAGG->DIOPS + + + + +SGROUP->SETCAT + + + + +MSETAGG + +MSETAGG + + +MSETAGG->SETAGG + + + + +MSETAGG->MDAGG + + + + +MTSCAT + +MTSCAT + + +MTSCAT->IEVALAB + + + + +MTSCAT->EVALAB + + + + +PDRING + +PDRING + + +MTSCAT->PDRING + + + + +PSCAT + +PSCAT + + +MTSCAT->PSCAT + + + + +PDRING->RING + + + + +PSCAT->AMR + + + + +NONE + +NONE + + +NONE->SETCAT + + + + +NNI + +NNI + + +NNI->MONOID + + + + +OAMONS + +OAMONS + + +NNI->OAMONS + + + + +OCAMON + +OCAMON + + +OAMONS->OCAMON + + + + +OAGROUP + +OAGROUP + + +OAGROUP->ABELGRP + + + + +OAGROUP->OCAMON + + + + +OCAMON->CABMON + + + + +OAMON + +OAMON + + +OCAMON->OAMON + + + + +OAMON->ABELMON + + + + +OASGP + +OASGP + + +OAMON->OASGP + + + + +OASGP->ABELMON + + + + +OASGP->ORDSET + + + + +ORDRING->RING + + + + +ORDRING->MONOID + + + + +ORDRING->OAGROUP + + + + +OMSAGG + +OMSAGG + + +OMSAGG->PRQAGG + + + + +OMSAGG->MSETAGG + + + + +ONECOMP + +ONECOMP + + +ONECOMP->SETCAT + + + + +ONECOMP->FRETRCT + + + + +ORDCOMP + +ORDCOMP + + +ORDCOMP->SETCAT + + + + +ORDCOMP->FRETRCT + + + + +ORDFIN + +ORDFIN + + +ORDFIN->ORDSET + + + + +ORDFIN->FINITE + + + + +ORDMON + +ORDMON + + +ORDMON->ORDSET + + + + +ORDMON->MONOID + + + + +PALETTE + +PALETTE + + +PALETTE->SETCAT + + + + +PATAB + +PATAB + + +PATAB->CATEGORY + + + + +PATLRES + +PATLRES + + +PATLRES->SETCAT + + + + +PATRES + +PATRES + + +PATRES->SETCAT + + + + +PATTERN + +PATTERN + + +PATTERN->SETCAT + + + + +PATTERN->RETRACT + + + + +PFECAT + +PFECAT + + +PFECAT->UFD + + + + +PI + +PI + + +PI->MONOID + + + + +PI->OASGP + + + + +PRIMARR + +PRIMARR + + +PRIMARR->A1AGG + + + + +RADFF + +RADFF + + +RADFF->FFCAT + + + + +SAE + +SAE + + +RADFF->SAE + + + + +SAE->MONOGEN + + + + +REF + +REF + + +REF->TYPE + + + + +QFORM + +QFORM + + +QFORM->ABELGRP + + + + +QUEUE + +QUEUE + + +QUEUE->QUAGG + + + + +QEQUAT + +QEQUAT + + +QEQUAT->KOERCE + + + + +RNG->ABELGRP + + + + +RNG->SGROUP + + + + +ROMAN + +ROMAN + + +ROMAN->INS + + + + +SAOS + +SAOS + + +SAOS->ORDSET + + + + +SINT + +SINT + + +SINT->LOGIC + + + + +SINT->OM + + + + +SINT->INS + + + + +SRAGG + +SRAGG + + +SRAGG->A1AGG + + + + +STAGG + +STAGG + + +STAGG->RCAGG + + + + +STAGG->LNAGG + + + + +TRIGCAT->CATEGORY + + + + +TUPLE + +TUPLE + + +TUPLE->PRIMARR + + + + +ULSCAT + +ULSCAT + + +UPSCAT + +UPSCAT + + +ULSCAT->UPSCAT + + + + +UPSCAT->PSCAT + + + + +URAGG + +URAGG + + +URAGG->RCAGG + + + + +UPXSCAT + +UPXSCAT + + +UPXSCAT->UPSCAT + + + + +UTSCAT + +UTSCAT + + +UTSCAT->UPSCAT + + + + + diff --git a/src/axiom-website/download.html b/src/axiom-website/download.html new file mode 100644 index 0000000..767259b --- /dev/null +++ b/src/axiom-website/download.html @@ -0,0 +1,1050 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+

Pre-compiled binaries

+ + Axiom has been compiled to run on various platforms. +
+
+
+

+ This table contains links to various tar-gzipped version of files. + In general you need to know the name of the file you download, + usually something ending in .tgz (tar-gzip). You also need to know + where the file gets untarred, this is referred to as (where) below. + When you cd to the (where) location you should see the top level + Makefile for Axiom, the changelog, etc. +

+

+ Axiom builds on various platforms and uses the convention that the last + name in the AXIOM shell variable denotes the type of system. This is + referred to as the SYSNAME. You need to know which SYSNAME you downloaded. +

+

+ To use one of these binaries just do: +

+  download the binary and untar it.
+  cd axiom
+  export AXIOM=`pwd`/mnt/SYSNAME <= replace SYSNAME with actual name
+  export PATH=$AXIOM/bin:$PATH
+  axiom
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + SYSNAME      + + + + Nov 2007 + + + + Jan 2008 + + + + Mar 2008 + + + + May 2008 + + + + July 2008 + + + + Sept 2008 + + + + Nov 2008 + +
+ + debian + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + + + + src + bin + + + + src + bin + +
+ + Doyen + + + + + + + src + iso + + + + src + iso + + + + + + + src + iso + + + + + + + src + +
+ + fedora5 + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + fedora6 + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + fedora7 + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + fedora8 + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + fedora8-64 + + + + + + + + + + src + bin + + + + src + bin + + + + + + + + + + src + +
+ + fedora9 + + + + + + + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + macosxppc + + + + + + + src + bin + + + + src + bin + + + + + + + + + + + + + +
+ + opensuse + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + +
+ + redhat72 + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + redhat9 + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + ubuntu + + + + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + + + + src + bin + +
+ + ubuntu64 + + + + + + + + + + + + + + + + + + + + + + src + bin + +
+ + +

Older versions

+ + + Fedora Core 1 (binary) + + +
+ + + Fedora Core 2 (binary) + + +
+ + + Fedora Core 2, AMD 64 bit processor (binary) + + +
+ +
+
+

Source code

+

+Axiom source code is maintained in a Gold and Silver +version. The Gold version is the "released" version. Gold +versions are released every two months. +
+The Silver version is the current "bleeding edge" that +contains changes which will be tested and released into Gold +every two months. Unless you need a recent feature or bug fix, or are +working as a developer, there is no reason to use Silver + + +

GOLD SOURCES

+

Tarball

+The Gold (November 2008) release of Axiom is available. +
+The source code tarball from November, 2008 is +here + +
+wget http://axiom.axiom-developer.org/axiom-website/downloads/axiom-july2008-src.tgz
+tar -zxf axiom-july2008-src.tgz
+cd axiom
+export AXIOM=`pwd`/mnt/ (see table below)
+export PATH=$AXIOM/bin:$PATH
+make
+
+ + +

GIT

+You can clone the git repository from GitHub: + +
+git-clone git://github.com/daly/axiom.git
+cd axiom
+export AXIOM=`pwd`/mnt/ (see table below)
+export PATH=$AXIOM/bin:$PATH
+make
+
+ + +

CVS

+ You can also download the source tree from CVS and compile it. To + download the code from sourceforge, do: + +
+export CVS_RSH="ssh"
+cvs -z3 -d:pserver:anonymous@axiom.cvs.sourceforge.net:/cvsroot/axiom co -P axiom 
+cd axiom
+export AXIOM=`pwd`/mnt/ (see table below)
+export PATH=$AXIOM/bin:$PATH
+make
+
+ +Or you can download the sourcecode from savannah: +
+export CVS_RSH="ssh"
+cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/axiom co -P axiom 
+cd axiom
+export AXIOM=`pwd`/mnt/ (see table below)
+export PATH=$AXIOM/bin:$PATH
+make
+
+ + +
+

Compile notes

+

In general, various systems insist on moving critical files + around or, worse yet, don't install needed files. These notes + show particular details for known systems + +

Ubuntu

+
+echo 0 >/proc/sys/kernel/randomize_va_space
+apt-get install cvs m4 libxpm-dev libxt-dev x-dev libx11-dev libxext-dev gettext git-core texlive gawk
+cvs -z3 -d:pserver:anonymous@axiom.cvs.sourceforge.net:/cvsroot/axiom co -P axiom
+cd axiom
+export AXIOM=`pwd`/mnt/ubuntu
+export PATH=$AXIOM/bin:$PATH
+make
+   
+ +

OpenSuSE

+
+echo 0 >/proc/sys/kernel/exec_shield
+echo 0 >/proc/sys/kernel/randomize_va_space
+rpm -i texlive-latex-2007-69.noarch.rpm
+cvs -z3 -d:pserver:anonymous@axiom.cvs.sourceforge.net:/cvsroot/axiom co -P axiom
+cd axiom
+export AXIOM=`pwd`/mnt/opensuse
+export PATH=$AXIOM/bin:$PATH
+make
+   
+ +

debian

+
+You might have to add a line to /etc/apt/sources.list like:
+  deb http://ftp.debian.org/debian etch main contrib
+and then do:
+apt-get update
+
+Next you need to install these packages:
+
+apt-get install gcc libc6-dev build-essential debhelper g++ g++-4.1 gcl 
+apt-get install gettext gs-gpl html2text intltool-debian libgmp3-dev
+apt-get install libgmp3c2 libgmpxx4 libice-dev libxau-dev libxaw-headers
+apt-get install libxaw7-dev libxdmcp-dev libxext-dev libxmu-dev libxmu-headers
+apt-get install libxpm-dev libxt-dev po-debconf x-dev x11proto-core-dev
+apt-get install x11proto-input-dev x11proto-kb-dev x11proto-xext-dev
+apt-get install xtrans-dev libncurses5-dev libreadline5-dev libsm-dev
+apt-get install libstdc++6-4.1-dev libx11-dev gawk
+cvs -z3 -d:pserver:anonymous@axiom.cvs.sourceforge.net:/cvsroot/axiom co -P axiom
+cd axiom
+export AXIOM=`pwd`/mnt/debian
+export PATH=$AXIOM/bin:$PATH
+make
+   
+ +

Mac OSX PPC

+The MAC port has a few issues. The known problems are: +
+The pseudo-terminals (/dev/pty) don't work so the hyperdoc/graphics fails.
+This is still under study.
+
+The )browse command works but you have to use the latest firefox because
+safari does not seem to know about the http request object.
+
+There is a nasty interaction between CVS and OSX. Apparently CVS won't
+let you delete directories. OSX considers two names that differ only
+by case to be the same thing. Axiom did a global downcase of all
+filenames but CVS doesn't want to delete directories so the uppercase
+ones overwrite the lowercase ones. The fix is to use the sources
+from git rather than from CVS.
+
+
+install xcode from http://developer.apple.com/tools/download
+download and untar the sources from the apple website.
+
+cd axiom
+export AXIOM=`pwd`/mnt/macosxppc
+export PATH=/sw/bin:$AXIOM/bin:$PATH
+make
+  
+ + + +

Doyen

+

The Doyen image was created by Jose Alfredo Portes

+ +
+

+ The book is included in the binary distribution. To view it type: +
+ + xdvi (where)/mnt/(SYSNAME)/doc/book.dvi + +

+

+ The tutorial is also included in the binary distribution. To view it type: +
+ + xdvi (where)/mnt/(SYSNAME)/doc/bookvol1.dvi + +

+
+ Axiom is also available as a pre-compiled package in: + + + +
+In general, you download the binary to a location and then type: +
+  tar -zxf binaryname.tgz
+     this creates a directory called "mnt"
+     in "mnt" there is a directory which is the sysname.
+     for instance, you'll see mnt/fedora5 so the sysname is fedora5
+  export AXIOM=`pwd`/mnt/(sysname)
+  export PATH=$AXIOM/bin:$PATH
+  axiom
+
+You do not need the source code to run Axiom. +Everything is in the binary. +If you do choose to build from the sources you download the source +and then type: +
+  tar -zxf sourcename.tgz
+    this creates a directory called "axiom"
+    the sysname is given in the column head of the following table
+  cd axiom
+  export AXIOM=`pwd`/mnt/(sysname)
+  export PATH=$AXIOM/bin:$PATH
+  make
+
+Note that if the make fails on some systems it may be due to the +security setup. As root you can try: +
+ echo 0 >/proc/sys/kernel/exec-shield
+ echo 0 >/proc/sys/kernel/randomize_va_space
+
+Both of these settings have caused build problems. + + + + diff --git a/src/axiom-website/endpaper.pdf b/src/axiom-website/endpaper.pdf new file mode 100644 index 0000000..45471f9 Binary files /dev/null and b/src/axiom-website/endpaper.pdf differ diff --git a/src/axiom-website/faq.html b/src/axiom-website/faq.html new file mode 100644 index 0000000..d94ea84 --- /dev/null +++ b/src/axiom-website/faq.html @@ -0,0 +1,255 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ +
+

FAQ

+ +
+
+ + What is Axiom license? + +
+
+ Axiom is free software, available under a BSD like license. For + more details, please have a look in the licences + available in the CVS repository. +
+ +
+ + What is the future of Axiom? + +
+
+ + Tim Daly is Lead Axiom Developer. He has a fairly detailed agenda for Axiom. + +
+ +
+ + What is Axiom size? + +
+
+ + Axiom is: +
    +
  • 92 MB of source code
  • +
  • about 56 MB once compiled
  • +
  • 403591 lines for the interpreted in 220 files
  • +
  • 255790 lines of algebra in 371 files
  • +
+ +
+ +
+ + On which system is known to run Axiom? + +
+
+ + People have compiled and run Axiom on: +
    + +
  • Debian GNU/Linux 3.0, on i386, Sparc64. On PowerPC + architecture, Axiom will not build because it + requires gcc-3.3 (which supports -mlong-calls option, + supporting relocs of more tha 24 bits). +
  • + +
  • Debian GNU/Linux sid, on mipsel, ia64, i386, ppc, alpha, + and sparc (and more + to come!)
  • + +
  • RedHat Linux 7.3 and 9.0 on i386
  • + +
  • Slackware Linux 8.0.01 on Intel ProLiant ML530 + 2@800MHz
  • + +
  • Red Hat Linux 8.0 on Intel ProLiant ML530 2@1.0GHz + -- Red Hat Enterprise Linux ES release 2.1 (Panama)
  • + +
  • SuSE Linux Ent Svr 8.0 on Intel ProLiant DL360 G2 + 2@1.4GHz
  • + +
  • Red Flag Linux 4.0
  • + +
  • Microsoft Windows
  • +
+ +
+ +
+ + How do I submit a patch? + +
+
+
+In general a patch file is of the form
+
+cd the.dir
+diff -Naur file.pamphlet file.pamphlet.new >the.dir.file.pamphlet.patch
+send the patch to the Axiom mailing list 
+<axiom-developer@nongngu.org> or
+Tim Daly <daly@axiom-developer.org>
+
+this has several features:
+  * it tells me where the patch is being applied
+  * the Naur options give me context
+  * I can see the impact of a change to multiple files
+
+I read the patches before applying them so be sure to document the
+reasons for the change in the pamphlet file. It may seem trivial
+but remember that I didn't do the initial analysis so I, and others,
+will have to understand after the fact.
+
+In most cases in a pamphlet file if you're changing a few lines
+of code or a whole function it should be documented thus:
+
+
+...
+
+(defun foo ()
+  (list
+    "this is ok code"
+    "this is broken code"
+    "this is also broken"
+    "this is ok"
+  )
+)
+ 
+turns into
+
+\subsection{foo list fix}
+This code used to read:
+\begin{verbatim}
+    "this is broken code"
+    "this is also broken"
+\end{verbatim}
+but clearly the elements of the list are wrong. We are going to
+print this list for the user so we don't want them to know anything
+is broken. Thus we have wonderful new code that will inspire confidence.
+This list is printed with the [[printlist]] function.
+<<foo list fix>>=
+    "this is great code"
+    "this inspires confidence"
+@
+
+
+...
+
+(defun foo ()
+  (list
+    "this is ok code"
+<<foo list fix>>
+    "this is ok"
+  )
+)
+
+and, yes, I do know that this is tedious.
+
+In general, it is also useful to update the pamphlet files with 
+documentation-only changes as you understand what a block of code
+is intended to do. Most of this information has been lost to history
+and the world can leverage your efforts at understanding if you take
+the time to document it. In many ways this is as important as fixing
+the code.
+
+
+ +
+
+ + + diff --git a/src/axiom-website/index.html b/src/axiom-website/index.html new file mode 100644 index 0000000..741592d --- /dev/null +++ b/src/axiom-website/index.html @@ -0,0 +1,214 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+DOCUMENTATION: + + + +
+

+ What is Axiom? +

+

+ + Axiom has been in development since 1971. At that time, it was called + Scratchpad. Scratchpad was a large, general purpose computer algebra + system that was originally developed by IBM under the direction of + Richard Jenks. The project started in 1971 and evolved slowly. Barry + Trager was key to the technical direction of the project. Scratchpad + developed over a 20 year stretch and was basically considered as a + research platform for developing new ideas in computational + mathematics. In the 1990s, as IBM's fortunes slid, the Scratchpad + project was renamed to Axiom, sold to the Numerical Algorithms Group + (NAG) in England and became a commercial system. As part of the + Scratchpad project at IBM in Yorktown + + Tim Daly + + worked on all aspects + of the system and eventually helped transfer the product to NAG. For a + variety of reasons it never became a financial success and NAG + withdrew it from the market in October, 2001. + +

+

+ + NAG agreed to release Axiom as free software. The basic motivation was + that Axiom represents something different from other programs in a lot + of ways. Primarily because of its foundation in mathematics the Axiom + system will potentially be useful 30 years from now. In its current + state it represents about 30 years and 300 man-years of research + work. To strive to keep such a large collection of knowledge alive + seems a worthwhile goal. + +

+ + Efforts are underway to extend this software to +

    +
  • (a) develop a better user interface +
  • (b) make it useful as a teaching tool +
  • (c) develop an algebra server protocol +
  • (d) integrate additional mathematics +
  • (e) rebuild the algebra in a literate programming style +
  • (f) integrate logic programming +
  • (g) develop an Axiom Journal with refereed submissions. +
+

+
+

+ + Axiom is a general purpose Computer Algebra system. It is useful for + research and development of mathematical algorithms. It defines a + strongly typed, mathematically correct type hierarchy. It has a + programming language and a built-in compiler. + +

+

+ Axiom development was partially supported by + CAISS, + the Center for Algorithms and Interactive Scientific Software. + CAISS is a joint effort of the Computer Science and Mathematics + Departments of The City College of New York, part of the City + University system. Support by CAISS and CCNY is gratefully acknowledged. + In particular, the support by +
+

+   Matthew Goldstein  CUNY Chancellor
+   Zeev Dagan         CCNY Provost
+   Maria Tamargo      CCNY Dean of Science
+   Joseph Barba       CCNY Dean of Engineering
+   Gilbert Baumslag   CCNY Distinguish Professor, Director of CAISS
+   Douglas Troeger    CCNY Computer Science Chair
+   Ed Grossman        CCNY Mathematics Chair
+  
+ +

+ + SourceForge.net Logo + +
Last Update: November 2008
+ + + + diff --git a/src/axiom-website/nov2008abb.svg b/src/axiom-website/nov2008abb.svg new file mode 100644 index 0000000..e22a237 --- /dev/null +++ b/src/axiom-website/nov2008abb.svg @@ -0,0 +1,3537 @@ + + +]> + + + + + +dotabb + + +CATEGORY + + +CATEGORY + + + +AHYP + + +AHYP + + + +AHYP->CATEGORY + + + + +ATRIG + + +ATRIG + + + +ATRIG->CATEGORY + + + + +ATTREG + + +ATTREG + + + +ATTREG->CATEGORY + + + + +BASTYPE + + +BASTYPE + + + +BASTYPE->CATEGORY + + + + +KOERCE + + +KOERCE + + + +KOERCE->CATEGORY + + + + +CFCAT + + +CFCAT + + + +CFCAT->CATEGORY + + + + +KONVERT + + +KONVERT + + + +KONVERT->CATEGORY + + + + +ELEMFUN + + +ELEMFUN + + + +ELEMFUN->CATEGORY + + + + +ELTAB + + +ELTAB + + + +ELTAB->CATEGORY + + + + +HYPCAT + + +HYPCAT + + + +HYPCAT->CATEGORY + + + + +IEVALAB + + +IEVALAB + + + +IEVALAB->CATEGORY + + + + +OM + + +OM + + + +OM->CATEGORY + + + + +PTRANFN + + +PTRANFN + + + +PTRANFN->CATEGORY + + + + +PATAB + + +PATAB + + + +PATAB->CATEGORY + + + + +PRIMCAT + + +PRIMCAT + + + +PRIMCAT->CATEGORY + + + + +RADCAT + + +RADCAT + + + +RADCAT->CATEGORY + + + + +RETRACT + + +RETRACT + + + +RETRACT->CATEGORY + + + + +SPFCAT + + +SPFCAT + + + +SPFCAT->CATEGORY + + + + +TRIGCAT + + +TRIGCAT + + + +TRIGCAT->CATEGORY + + + + +TYPE + + +TYPE + + + +TYPE->CATEGORY + + + + +AGG + + +AGG + + + +AGG->TYPE + + + + +COMBOPC + + +COMBOPC + + + +COMBOPC->CFCAT + + + + +ELTAGG + + +ELTAGG + + + +ELTAGG->ELTAB + + + + +EVALAB + + +EVALAB + + + +EVALAB->IEVALAB + + + + +FORTCAT + + +FORTCAT + + + +FORTCAT->KOERCE + + + + +FORTCAT->TYPE + + + + +FRETRCT + + +FRETRCT + + + +FRETRCT->RETRACT + + + + +FPATMAB + + +FPATMAB + + + +FPATMAB->TYPE + + + + +LOGIC + + +LOGIC + + + +LOGIC->BASTYPE + + + + +PPCURVE + + +PPCURVE + + + +PPCURVE->KOERCE + + + + +PSCURVE + + +PSCURVE + + + +PSCURVE->KOERCE + + + + +REAL + + +REAL + + + +REAL->KONVERT + + + + +SEGCAT + + +SEGCAT + + + +SEGCAT->TYPE + + + + +SETCAT + + +SETCAT + + + +SETCAT->BASTYPE + + + + +SETCAT->KOERCE + + + + +TRANFUN + + +TRANFUN + + + +TRANFUN->AHYP + + + + +TRANFUN->ATRIG + + + + +TRANFUN->ELEMFUN + + + + +TRANFUN->HYPCAT + + + + +TRANFUN->TRIGCAT + + + + +ABELSG + + +ABELSG + + + +ABELSG->SETCAT + + + + +REPDB + +REPDB + + +ABELSG->REPDB + + + + +FORTFN + + +FORTFN + + + +FORTFN->FORTCAT + + + + +FMC + + +FMC + + + +FMC->FORTCAT + + + + +FMFUN + + +FMFUN + + + +FMFUN->FORTCAT + + + + +FVC + + +FVC + + + +FVC->FORTCAT + + + + +FVFUN + + +FVFUN + + + +FVFUN->FORTCAT + + + + +FEVALAB + + +FEVALAB + + + +FEVALAB->CATEGORY + + + + +FEVALAB->ELTAB + + + + +FEVALAB->IEVALAB + + + + +FEVALAB->EVALAB + + + + +FILECAT + + +FILECAT + + + +FILECAT->SETCAT + + + + +FINITE + + +FINITE + + + +FINITE->SETCAT + + + + +FNCAT + + +FNCAT + + + +FNCAT->SETCAT + + + + +GRMOD + + +GRMOD + + + +GRMOD->SETCAT + + + + +HOAGG + + +HOAGG + + + +HOAGG->AGG + + + + +IDPC + + +IDPC + + + +IDPC->SETCAT + + + + +LFCAT + + +LFCAT + + + +LFCAT->PRIMCAT + + + + +LFCAT->TRANFUN + + + + +MONAD + + +MONAD + + + +MONAD->SETCAT + + + + +NUMINT + + +NUMINT + + + +NUMINT->SETCAT + + + + +OPTCAT + + +OPTCAT + + + +OPTCAT->SETCAT + + + + +ODECAT + + +ODECAT + + + +ODECAT->SETCAT + + + + +ORDSET + + +ORDSET + + + +ORDSET->SETCAT + + + + +PDECAT + + +PDECAT + + + +PDECAT->SETCAT + + + + +PATMAB + + +PATMAB + + + +PATMAB->SETCAT + + + + +RRCC + + +RRCC + + + +RRCC->SETCAT + + + + +SEGXCAT + + +SEGXCAT + + + +SEGXCAT->SEGCAT + + + + +SGROUP + + +SGROUP + + + +SGROUP->SETCAT + + + + +SEXCAT + + +SEXCAT + + + +SEXCAT->SETCAT + + + + +STEP + + +STEP + + + +STEP->SETCAT + + + + +SPACEC + + +SPACEC + + + +SPACEC->SETCAT + + + + +ABELMON + + +ABELMON + + + +ABELMON->ABELSG + + + + +BGAGG + + +BGAGG + + + +BGAGG->HOAGG + + + + +CACHSET + + +CACHSET + + + +CACHSET->ORDSET + + + + +CLAGG + + +CLAGG + + + +CLAGG->HOAGG + + + + +DVARCAT + + +DVARCAT + + + +DVARCAT->RETRACT + + + + +DVARCAT->ORDSET + + + + +ES + + +ES + + + +ES->IEVALAB + + + + +ES->RETRACT + + + + +ES->EVALAB + + + + +ES->ORDSET + + + + +GRALG + + +GRALG + + + +GRALG->RETRACT + + + + +GRALG->GRMOD + + + + +IXAGG + + +IXAGG + + + +IXAGG->ELTAGG + + + + +IXAGG->HOAGG + + + + +MONADWU + + +MONADWU + + + +MONADWU->MONAD + + + + +MONOID + + +MONOID + + + +MONOID->SGROUP + + + + +ORDFIN + + +ORDFIN + + + +ORDFIN->FINITE + + + + +ORDFIN->ORDSET + + + + +RCAGG + + +RCAGG + + + +RCAGG->HOAGG + + + + +ARR2CAT + + +ARR2CAT + + + +ARR2CAT->HOAGG + + + + +BRAGG + + +BRAGG + + + +BRAGG->RCAGG + + + + +CABMON + + +CABMON + + + +CABMON->ABELMON + + + + +DIOPS + + +DIOPS + + + +DIOPS->BGAGG + + + + +DIOPS->CLAGG + + + + +DLAGG + + +DLAGG + + + +DLAGG->RCAGG + + + + +GROUP + + +GROUP + + + +GROUP->MONOID + + + + +LNAGG + + +LNAGG + + + +LNAGG->CLAGG + + + + +LNAGG->IXAGG + + + + +OASGP + + +OASGP + + + +OASGP->ORDSET + + + + +OASGP->ABELMON + + + + +ORDMON + + +ORDMON + + + +ORDMON->ORDSET + + + + +ORDMON->MONOID + + + + +PSETCAT + + +PSETCAT + + + +PSETCAT->KOERCE + + + + +PSETCAT->SETCAT + + + + +PSETCAT->CLAGG + + + + +PRQAGG + + +PRQAGG + + + +PRQAGG->BGAGG + + + + +QUAGG + + +QUAGG + + + +QUAGG->BGAGG + + + + +SETAGG + + +SETAGG + + + +SETAGG->SETCAT + + + + +SETAGG->CLAGG + + + + +SKAGG + + +SKAGG + + + +SKAGG->BGAGG + + + + +URAGG + + +URAGG + + + +URAGG->RCAGG + + + + +ABELGRP + + +ABELGRP + + + +ABELGRP->CABMON + + + + +BTCAT + + +BTCAT + + + +BTCAT->BRAGG + + + + +DIAGG + + +DIAGG + + + +DIAGG->DIOPS + + + + +DQAGG + + +DQAGG + + + +DQAGG->QUAGG + + + + +DQAGG->SKAGG + + + + +ELAGG + + +ELAGG + + + +ELAGG->LNAGG + + + + +FLAGG + + +FLAGG + + + +FLAGG->LNAGG + + + + +FAMONC + + +FAMONC + + + +FAMONC->RETRACT + + + + +FAMONC->CABMON + + + + +MDAGG + + +MDAGG + + + +MDAGG->DIOPS + + + + +OAMON + + +OAMON + + + +OAMON->ABELMON + + + + +OAMON->OASGP + + + + +PERMCAT + + +PERMCAT + + + +PERMCAT->GROUP + + + + +STAGG + + +STAGG + + + +STAGG->RCAGG + + + + +STAGG->LNAGG + + + + +TSETCAT + + +TSETCAT + + + +TSETCAT->PSETCAT + + + + +FDIVCAT + + +FDIVCAT + + + +FDIVCAT->ABELGRP + + + + +FSAGG + + +FSAGG + + + +FSAGG->SETAGG + + + + +FSAGG->DIAGG + + + + +KDAGG + + +KDAGG + + + +KDAGG->DIAGG + + + + +LZSTAGG + + +LZSTAGG + + + +LZSTAGG->STAGG + + + + +LMODULE + + +LMODULE + + + +LMODULE->ABELGRP + + + + +LSAGG + + +LSAGG + + + +LSAGG->ELAGG + + + + +LSAGG->FLAGG + + + + +MSETAGG + + +MSETAGG + + + +MSETAGG->SETAGG + + + + +MSETAGG->MDAGG + + + + +NARNG + + +NARNG + + + +NARNG->MONAD + + + + +NARNG->ABELGRP + + + + +A1AGG + + +A1AGG + + + +A1AGG->FLAGG + + + + +OCAMON + + +OCAMON + + + +OCAMON->CABMON + + + + +OCAMON->OAMON + + + + +RSETCAT + + +RSETCAT + + + +RSETCAT->TSETCAT + + + + +RMODULE + + +RMODULE + + + +RMODULE->ABELGRP + + + + +RNG + + +RNG + + + +RNG->SGROUP + + + + +RNG->ABELGRP + + + + +BMODULE + + +BMODULE + + + +BMODULE->LMODULE + + + + +BMODULE->RMODULE + + + + +BTAGG + + +BTAGG + + + +BTAGG->LOGIC + + + + +BTAGG->ORDSET + + + + +BTAGG->A1AGG + + + + +NASRING + + +NASRING + + + +NASRING->MONADWU + + + + +NASRING->NARNG + + + + +NTSCAT + + +NTSCAT + + + +NTSCAT->RSETCAT + + + + +OAGROUP + + +OAGROUP + + + +OAGROUP->ABELGRP + + + + +OAGROUP->OCAMON + + + + +OAMONS + + +OAMONS + + + +OAMONS->OCAMON + + + + +OMSAGG + + +OMSAGG + + + +OMSAGG->PRQAGG + + + + +OMSAGG->MSETAGG + + + + +RING + + +RING + + + +RING->MONOID + + + + +RING->LMODULE + + + + +RING->RNG + + + + +SFRTCAT + + +SFRTCAT + + + +SFRTCAT->RSETCAT + + + + +SRAGG + + +SRAGG + + + +SRAGG->A1AGG + + + + +TBAGG + + +TBAGG + + + +TBAGG->IXAGG + + + + +TBAGG->KDAGG + + + + +VECTCAT + + +VECTCAT + + + +VECTCAT->A1AGG + + + + +ALAGG + + +ALAGG + + + +ALAGG->LSAGG + + + + +ALAGG->TBAGG + + + + +CHARNZ + + +CHARNZ + + + +CHARNZ->RING + + + + +CHARZ + + +CHARZ + + + +CHARZ->RING + + + + +COMRING + + +COMRING + + + +COMRING->BMODULE + + + + +COMRING->RING + + + + +DIFRING + + +DIFRING + + + +DIFRING->RING + + + + +ENTIRER + + +ENTIRER + + + +ENTIRER->BMODULE + + + + +ENTIRER->RING + + + + +FMCAT + + +FMCAT + + + +FMCAT->RETRACT + + + + +FMCAT->BMODULE + + + + +LALG + + +LALG + + + +LALG->LMODULE + + + + +LALG->RING + + + + +LINEXP + + +LINEXP + + + +LINEXP->RING + + + + +MODULE + + +MODULE + + + +MODULE->BMODULE + + + + +ORDRING + + +ORDRING + + + +ORDRING->MONOID + + + + +ORDRING->OAGROUP + + + + +ORDRING->RING + + + + +PDRING + + +PDRING + + + +PDRING->RING + + + + +PTCAT + + +PTCAT + + + +PTCAT->VECTCAT + + + + +RMATCAT + + +RMATCAT + + + +RMATCAT->HOAGG + + + + +RMATCAT->BMODULE + + + + +SNTSCAT + + +SNTSCAT + + + +SNTSCAT->NTSCAT + + + + +SNTSCAT->SFRTCAT + + + + +STRICAT + + +STRICAT + + + +STRICAT->OM + + + + +STRICAT->SETCAT + + + + +STRICAT->SRAGG + + + + +OREPCAT + + +OREPCAT + + + +OREPCAT->FRETRCT + + + + +OREPCAT->BMODULE + + + + +OREPCAT->RING + + + + +XALG + + +XALG + + + +XALG->BMODULE + + + + +XALG->RING + + + + +ALGEBRA + + +ALGEBRA + + + +ALGEBRA->RING + + + + +ALGEBRA->MODULE + + + + +DIFEXT + + +DIFEXT + + + +DIFEXT->RING + + + + +DIFEXT->DIFRING + + + + +DIFEXT->PDRING + + + + +FLINEXP + + +FLINEXP + + + +FLINEXP->LINEXP + + + + +LIECAT + + +LIECAT + + + +LIECAT->MODULE + + + + +LODOCAT + + +LODOCAT + + + +LODOCAT->ELTAB + + + + +LODOCAT->OREPCAT + + + + +NAALG + + +NAALG + + + +NAALG->NARNG + + + + +NAALG->MODULE + + + + +VSPACE + + +VSPACE + + + +VSPACE->MODULE + + + + +XFALG + + +XFALG + + + +XFALG->RETRACT + + + + +XFALG->RING + + + + +XFALG->XALG + + + + +DIVRING + + +DIVRING + + + +DIVRING->ENTIRER + + + + +DIVRING->ALGEBRA + + + + +FINAALG + + +FINAALG + + + +FINAALG->NAALG + + + + +FLALG + + +FLALG + + + +FLALG->LIECAT + + + + +INTDOM + + +INTDOM + + + +INTDOM->COMRING + + + + +INTDOM->ENTIRER + + + + +INTDOM->ALGEBRA + + + + +MLO + + +MLO + + + +MLO->BMODULE + + + + +MLO->RING + + + + +MLO->ALGEBRA + + + + +OC + + +OC + + + +OC->FRETRCT + + + + +OC->FEVALAB + + + + +OC->ALGEBRA + + + + +QUATCAT + + +QUATCAT + + + +QUATCAT->FRETRCT + + + + +QUATCAT->FEVALAB + + + + +QUATCAT->ALGEBRA + + + + +QUATCAT->DIFEXT + + + + +QUATCAT->FLINEXP + + + + +SMATCAT + + +SMATCAT + + + +SMATCAT->FRETRCT + + + + +SMATCAT->BMODULE + + + + +SMATCAT->RMATCAT + + + + +SMATCAT->DIFEXT + + + + +SMATCAT->FLINEXP + + + + +XPOLYC + + +XPOLYC + + + +XPOLYC->XFALG + + + + +AMR + + +AMR + + + +AMR->BMODULE + + + + +AMR->RING + + + + +AMR->CHARNZ + + + + +AMR->COMRING + + + + +AMR->ALGEBRA + + + + +AMR->INTDOM + + + + +FMTC + + +FMTC + + + +FMTC->RETRACT + + + + +FMTC->ORDSET + + + + +FMTC->INTDOM + + + + +FRNAALG + + +FRNAALG + + + +FRNAALG->FINAALG + + + + +GCDDOM + + +GCDDOM + + + +GCDDOM->INTDOM + + + + +OINTDOM + + +OINTDOM + + + +OINTDOM->ORDRING + + + + +OINTDOM->INTDOM + + + + +FAMR + + +FAMR + + + +FAMR->FRETRCT + + + + +FAMR->AMR + + + + +INTCAT + + +INTCAT + + + +INTCAT->RADCAT + + + + +INTCAT->RETRACT + + + + +INTCAT->TRANFUN + + + + +INTCAT->ORDSET + + + + +INTCAT->GCDDOM + + + + +PSCAT + + +PSCAT + + + +PSCAT->AMR + + + + +PID + + +PID + + + +PID->GCDDOM + + + + +UFD + + +UFD + + + +UFD->GCDDOM + + + + +EUCDOM + + +EUCDOM + + + +EUCDOM->PID + + + + +MTSCAT + + +MTSCAT + + + +MTSCAT->IEVALAB + + + + +MTSCAT->EVALAB + + + + +MTSCAT->PDRING + + + + +MTSCAT->PSCAT + + + + +PFECAT + + +PFECAT + + + +PFECAT->UFD + + + + +UPSCAT + + +UPSCAT + + + +UPSCAT->PSCAT + + + + +FIELD + + +FIELD + + + +FIELD->DIVRING + + + + +FIELD->UFD + + + + +FIELD->EUCDOM + + + + +INS + + +INS + + + +INS->CFCAT + + + + +INS->KONVERT + + + + +INS->RETRACT + + + + +INS->REAL + + + + +INS->PATMAB + + + + +INS->STEP + + + + +INS->CHARZ + + + + +INS->DIFRING + + + + +INS->LINEXP + + + + +INS->OINTDOM + + + + +INS->UFD + + + + +INS->EUCDOM + + + + +PADICCT + + +PADICCT + + + +PADICCT->CHARZ + + + + +PADICCT->EUCDOM + + + + +POLYCAT + + +POLYCAT + + + +POLYCAT->IEVALAB + + + + +POLYCAT->RETRACT + + + + +POLYCAT->EVALAB + + + + +POLYCAT->ORDSET + + + + +POLYCAT->PDRING + + + + +POLYCAT->FLINEXP + + + + +POLYCAT->GCDDOM + + + + +POLYCAT->FAMR + + + + +POLYCAT->PFECAT + + + + +UTSCAT + + +UTSCAT + + + +UTSCAT->UPSCAT + + + + +ACF + + +ACF + + + +ACF->RADCAT + + + + +ACF->FIELD + + + + +DPOLCAT + + +DPOLCAT + + + +DPOLCAT->RETRACT + + + + +DPOLCAT->DIFEXT + + + + +DPOLCAT->POLYCAT + + + + +DIRPCAT + + +DIRPCAT + + + +DIRPCAT->KOERCE + + + + +DIRPCAT->FRETRCT + + + + +DIRPCAT->FINITE + + + + +DIRPCAT->IXAGG + + + + +DIRPCAT->BMODULE + + + + +DIRPCAT->OAMONS + + + + +DIRPCAT->ORDRING + + + + +DIRPCAT->DIFEXT + + + + +DIRPCAT->FLINEXP + + + + +FPC + + +FPC + + + +FPC->CHARNZ + + + + +FPC->FIELD + + + + +FINRALG + + +FINRALG + + + +FINRALG->CHARNZ + + + + +FINRALG->CHARZ + + + + +FINRALG->ALGEBRA + + + + +FINRALG->FIELD + + + + +FS + + +FS + + + +FS->KONVERT + + + + +FS->PATAB + + + + +FS->RETRACT + + + + +FS->FRETRCT + + + + +FS->FPATMAB + + + + +FS->ABELMON + + + + +FS->ES + + + + +FS->MONOID + + + + +FS->GROUP + + + + +FS->ABELGRP + + + + +FS->CHARNZ + + + + +FS->PDRING + + + + +FS->FLINEXP + + + + +FS->INTDOM + + + + +FS->FIELD + + + + +MATCAT + + +MATCAT + + + +MATCAT->ARR2CAT + + + + +QFCAT + + +QFCAT + + + +QFCAT->PATAB + + + + +QFCAT->RETRACT + + + + +QFCAT->FPATMAB + + + + +QFCAT->FEVALAB + + + + +QFCAT->ALGEBRA + + + + +QFCAT->DIFEXT + + + + +QFCAT->FLINEXP + + + + +QFCAT->FIELD + + + + +RCFIELD + + +RCFIELD + + + +RCFIELD->RADCAT + + + + +RCFIELD->FRETRCT + + + + +RCFIELD->CHARZ + + + + +RCFIELD->COMRING + + + + +RCFIELD->ORDRING + + + + +RCFIELD->ALGEBRA + + + + +RCFIELD->FIELD + + + + +RNS + + +RNS + + + +RNS->KONVERT + + + + +RNS->RADCAT + + + + +RNS->RETRACT + + + + +RNS->REAL + + + + +RNS->PATMAB + + + + +RNS->CHARZ + + + + +RNS->ORDRING + + + + +RNS->FIELD + + + + +RPOLCAT + + +RPOLCAT + + + +RPOLCAT->POLYCAT + + + + +ULSCAT + + +ULSCAT + + + +ULSCAT->RADCAT + + + + +ULSCAT->TRANFUN + + + + +ULSCAT->UPSCAT + + + + +ULSCAT->FIELD + + + + +UPXSCAT + + +UPXSCAT + + + +UPXSCAT->RADCAT + + + + +UPXSCAT->TRANFUN + + + + +UPXSCAT->UPSCAT + + + + +UPXSCAT->FIELD + + + + +UPOLYC + + +UPOLYC + + + +UPOLYC->ELTAB + + + + +UPOLYC->STEP + + + + +UPOLYC->COMRING + + + + +UPOLYC->DIFRING + + + + +UPOLYC->ALGEBRA + + + + +UPOLYC->DIFEXT + + + + +UPOLYC->INTDOM + + + + +UPOLYC->GCDDOM + + + + +UPOLYC->PFECAT + + + + +UPOLYC->FIELD + + + + +UPOLYC->POLYCAT + + + + +ACFS + + +ACFS + + + +ACFS->ACF + + + + +ACFS->FS + + + + +XF + + +XF + + + +XF->RETRACT + + + + +XF->VSPACE + + + + +XF->FIELD + + + + +XF->FPC + + + + +FFIELDC + + +FFIELDC + + + +FFIELDC->FINITE + + + + +FFIELDC->STEP + + + + +FFIELDC->DIFRING + + + + +FFIELDC->FPC + + + + +FPS + + +FPS + + + +FPS->RNS + + + + +FRAMALG + + +FRAMALG + + + +FRAMALG->FINRALG + + + + +ULSCCAT + + +ULSCCAT + + + +ULSCCAT->ULSCAT + + + + +UPXSCCA + + +UPXSCCA + + + +UPXSCCA->RETRACT + + + + +UPXSCCA->UPXSCAT + + + + +FAXF + + +FAXF + + + +FAXF->RETRACT + + + + +FAXF->XF + + + + +MONOGEN + + +MONOGEN + + + +MONOGEN->KONVERT + + + + +MONOGEN->FRETRCT + + + + +MONOGEN->FINITE + + + + +MONOGEN->COMRING + + + + +MONOGEN->DIFEXT + + + + +MONOGEN->FLINEXP + + + + +MONOGEN->FIELD + + + + +MONOGEN->FFIELDC + + + + +MONOGEN->FRAMALG + + + + +COMPCAT + + +COMPCAT + + + +COMPCAT->PATAB + + + + +COMPCAT->FRETRCT + + + + +COMPCAT->FPATMAB + + + + +COMPCAT->FEVALAB + + + + +COMPCAT->ORDSET + + + + +COMPCAT->COMRING + + + + +COMPCAT->DIFEXT + + + + +COMPCAT->FLINEXP + + + + +COMPCAT->MONOGEN + + + + +FFCAT + + +FFCAT + + + +FFCAT->MONOGEN + + + + + diff --git a/src/axiom-website/patches.html b/src/axiom-website/patches.html new file mode 100644 index 0000000..b717fce --- /dev/null +++ b/src/axiom-website/patches.html @@ -0,0 +1,740 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ +RELEASES + + +
+

November 2007 release

+
+November 2007 Release Notes +

+
+20070721.01.tpd.patch +update contributor name list
+20070721.02.tpd.patch +make evalSharpOne declare arg specials (Waldek Hebisch)
+20070722.01.tpd.patch +cleanup latex warnings
+20070810.01.tpd.patch +remove metameta
+20070811.01.tpd.patch +add mathml (Arthur Ralfs)
+20070811.02.tpd.patch +remove spurious trace debug calls (Greg Vanuxem)
+20070811.03.tpd.patch +fix digits-by-radix (Steve Wilson)
+20070812.01.tpd.patch +remerge input branch
+20070812.02.tpd.patch +mathml license change
+20070812.03.tpd.patch +newton.spad added
+20070819.01.tpd.patch +move commands into bookvol6
+20070821.01.tpd.patch +remove bookvol6.idx file
+20070821.02.tpd.patch +move axiom command to bookvol6
+20070822.01.tpd.patch +document the axiom command
+20070822.02.tpd.patch +add )help files
+20070823.01.tpd.patch +add )help files
+20070824.01.tpd.patch +add )help documentation to algebra sources
+20070826.01.tpd.patch +add )help files
+20070826.02.tpd.patch +add )help files
+20070826.03.tpd.patch +update VERSION variable
+20070901.01.tpd.patch +add )help files
+20070903.01.tpd.patch +add )help files
+20070905.01.tpd.patch +add )help files
+20070906.01.tpd.patch +add )help files
+20070907.01.tpd.patch +copy axiom command to int
+20070907.02.tpd.patch +make regression respect NOISE variable
+20070909.01.tpd.patch +remove duplicate newton.spad
+20070913.01.tpd.patch +schaum1.input added
+20070914.01.tpd.patch +fix )hd restart (Jose Portes)
+20070914.02.tpd.patch +remove double )spool from regression tests
+20070914.03.tpd.patch +fix bad bracing of )hd command
+20070915.01.tpd.patch +cleanup regression tests
+20070915.02.tpd.patch +100 integrate((z^a+1)^b,z) infinite loop
+20070916.01.tpd.patch +103 solve(z=z,z)
+20070921.01.tpd.patch +101 laplace(log(z),z,w)
+20070927.01.tpd.patch +add pfaffian regression test
+20070929.01.tpd.patch +remove pfaffian regression test
+20071003.01.tpd.patch +add AxiomServer domain
+20071004.01.tpd.patch +kamke0 ODE regression tests
+20071004.02.tpd.patch +kamke1 ODE regression tests
+20071005.01.tpd.patch +kamke2 ODE regression tests
+20071005.02.tpd.patch +kamke3 ODE regression tests
+20071005.03.tpd.patch +kamke4 ODE regression tests
+20071005.04.tpd.patch +kamke5 ODE regression tests
+20071006.01.tpd.patch +kamke6 ODE regression tests
+20071006.02.tpd.patch +kamke7 ODE regression tests
+20071013.01.acr.patch +add Arthur Ralfs license
+20071014.01.acr.patch +use getContentType(pathvar) in axserver (Arthur Ralfs)
+20071020.01.acr.patch +fix axserver to use new return values (Arthur Ralfs)
+20071118.01.tpd.patch +7010 (209), 7011 fix i-output bugs
+20071119.01.tpd.patch +add fedora 6,7,8 stanzas
+ +
+

January 2008 Release

+ +January 2008 Release Notes +

+
+20071129.01.tpd.patch +add zips/axiomfonts.tgz for mathml
+20071129.02.tpd.patch +remove some mathml fonts, change instructions
+20071205.01.tpd.patch +7014, 7016 fix continuedFraction mathml
+20071206.01.tpd.patch +7020 find right sourcefile for )show
+20071208.01.tpd.patch +add makeDBPage, getShow to AxiomServer domain
+20071215.01.tpd.patch +rewrite boot code to lisp and add to bookvol5
+20071215.02.tpd.patch +fix Makefile typos for bookvol11 and axbook
+20071215.03.gxv.patch +7023 fix memory leak in makegraph.c (Greg Vanuxem)
+20071216.01.tpd.patch +put Aldor into build process
+20071216.02.tpd.patch +put Aldor into build process
+20071216.03.acr.patch +7019 fix F,3 mathml rendering (Arthur Ralfs)
+20071217.01.acr.patch +fix hex(10) mathml rendering (Arthur Ralfs)
+20071217.02.tpd.patch +7041, 7042 ignore regression gensyms
+20071218.01.acr.patch +fix lastType output (Arthur Ralfs)
+20071225.01.sxw.patch +fix top_level throw target typo (Steve Wilson)
+20071228.01.tpd.patch +create graphics for complex gamma function
+20071229.01.jap.patch +fix hardcoded firefox pathnames (Jose Portes)
+20071230.01.acr.patch +fix ambiguous mathml output (Arthur Ralfs)
+20071230.02.tpd.patch +update summation.input with new mathml output
+20071230.03.tpd.patch +prevent spurious remake of axbook
+20080102.01.tpd.patch +fix Makefile typo for axbook
+20080103.01.tpd.patch +7090/355 handle besselK
+20080104.01.tpd.patch +function renames in regression files
+20080104.02.tpd.patch +correct authorship of besselk patches
+20080106.01.tpd.patch +revert dgamma change
+20080107.01.tpd.patch +add multiple platforms to Makefile
+20080107.02.tpd.patch +regression test gamma and polygamma
+20080107.03.tpd.patch +regression test besselk
+20080116.01.tpd.patch +regression test special fns against Abramowitz & Stegun
+20080119.01.tpd.patch +add E1 special function
+20080119.02.tpd.patch +add Franz Lehner
+20080119.03.tpd.patch +handle E1(0.0) correctly
+20080120.01.gxv.patch +handle numlock in hyperdoc (Greg Vanuxem)
+20080120.02.tpd.patch +7101/204 fix MoreSystemCommand
+20080120.03.tpd.patch +7102/412 fix equality in TBAGG
+20080125.01.tpd.patch +add En special function
+20080125.02.tpd.patch +change VERSION variable
+ +
+

March 2008 Release

+ +March 2008 Release Notes +

+
+20080127.01.tpd.patch +refcard
+20080130.01.tpd.patch +Ei
+20080201.01.tpd.patch +7016 LexTriangularPackage
+20080209.01.tpd.patch +add Exponential Integral to book
+20080210.01.tpd.patch +powerpc-macosx defs patch
+20080215.01.tpd.patch +++E examples
+20080216.01.wxh.patch +hash tables to speed compiles
+20080216.02.tpd.patch +add function examples
+20080217.01.wxh.patch +fix hash tables to speed compiles
+20080218.01.tpd.patch +add function examples
+20080218.02.tpd.patch +add function examples
+20080219.01.tpd.patch +add additional firefox hyperdoc pages
+20080220.01.tpd.patch +add additional firefox hyperdoc pages
+20080221.01.tpd.patch +add additional firefox hyperdoc pages
+20080221.02.wxh.patch +7099 complex gamma function investigation
+20080222.01.tpd.patch +7099 logGamma vs log(Gamma)
+20080222.02.tpd.patch +add additional hyperdoc page translations
+20080222.03.tpd.patch +move hyperdoc bitmaps location
+20080229.01.tpd.patch +add additional hyperdoc page translations
+20080301.01.tpd.patch +add additional hyperdoc page translations
+20080302.01.tpd.patch +add additional hyperdoc page translations
+20080303.01.tpd.patch +add additional hyperdoc page translations
+20080304.01.tpd.patch +add additional hyperdoc page translations
+20080305.01.tpd.patch +add additional hyperdoc page translations
+20080312.01.tpd.patch +BasicSieve, primes, intfact documentation
+20080313.01.pab.patch +hashcode for Aldor
+20080314.01.wxh.patch +heugcd fricas rev 256
+20080316.01.acr.patch +bug 7113 invisible times
+20080316.02.tpd.patch +CATS verification
+20080317.01.tpd.patch +CATS verification
+20080318.01.tpd.patch +CATS verification
+20080323.01.tpd.patch +add menus to firefox axiom console
+20080325.01.tpd.patch +mathml invisibletimes regression testing
+20080325.02.tpd.patch +move display function to bookvol5
+20080325.03.tpd.patch +handle firefox operations page requests
+ +
+

May 2008 Release

+ +May 2008 Release Notes +

+
+20080328.01.tpd.patch +CATS integration regression testing
+20080330.01.tpd.patch +CATS integration regression testing
+20080331.01.tpd.patch +CATS integration regression testing
+20080401.01.tpd.patch +CATS integration regression testing
+20080402.01.tpd.patch +CATS integration regression testing
+20080403.01.tpd.patch +CATS integration regression testing
+20080404.01.tpd.patch +faq 45, faq 46
+20080406.01.tpd.patch +CATS integration regression testing
+20080408.01.tpd.patch +mapleok cleanup
+20080409.01.tpd.patch +CATS integration regression testing
+20080409.02.tpd.patch +add src/doc/toe.gif by Max Tegmark
+20080409.03.tpd.patch +CATS integration regression testing
+20080413.01.tpd.patch +CATS integration regression testing
+20080414.01.tpd.patch +CATS integration test suite
+20080415.01.tpd.patch +CATS Schaums-Axiom equivalence testing (1)
+20080416.01.tpd.patch +CATS Schaums-Axiom equivalence testing (2-7)
+20080417.01.tpd.patch +fixed 14:150
+20080417.02.tpd.patch +CATS Schaums-Axiom equivalence testing (8-10)
+20080418.01.tpd.patch +CATS Schaums-Axiom equivalence testing (1-11)
+20080419.01.tpd.patch +CATS Schaums-Axiom equivalence testing (12)
+20080420.01.tpd.patch +CATS Schaums-Axiom equivalence testing (13)
+20080421.01.tpd.patch +CATS Schaums-Axiom equivalence testing (14-16)
+20080423.01.tpd.patch +CATS Schaums-Axiom equivalence testing (17-22)
+20080424.01.tpd.patch +CATS Schaums-Axiom equivalence testing (23)
+20080425.01.tpd.patch +CATS Schaums-Axiom equivalence testing (24-25)
+20080426.01.tpd.patch +CATS Schaums-Axiom equivalence testing (26-28)
+20080427.01.tpd.patch +CATS Schaums-Axiom equivalence testing (29-34)
+20080428.01.tpd.patch +CATS Schaums-Axiom post-mortem fixex
+20080429.01.tpd.patch +CATS post-mortem typo fixes for schaum12
+20080430.01.tpd.patch +CATS schaum13 post-mortem fixes
+20080501.01.tpd.patch +CATS Schaums-Axiom post-mortem fixes
+20080502.01.tpd.patch +CATS Schaums-Axiom post-mortem fixes
+20080504.01.tpd.patch +CATS Schaums-Axiom post-mortem fixes
+20080504.02.tpd.patch +CATS Schaums-Axiom post-mortem fixes
+20080505.01.tpd.patch +CATS Schaums-Axiom post-mortem fixes
+20080505.02.tpd.patch +CATS Schaums-Axiom branch cut analysis
+20080506.01.tpd.patch +CATS Schaums-Axiom post-mortem fixups
+20080508.01.wxh.patch +intef.spad integrate(asech(x)/x,x) bug
+20080508.02.tpd.patch +ignore gensyms in schaums regression tests
+20080511.01.tpd.patch +CATS Schaums-Axiom post-mortem fixup
+20080523.01.tpd.patch +MIT integration tests
+20080526.01.tpd.patch +add fedora8-64 to Makefile
+ +
+

July 2008 Release

+ +July 2008 Release Notes +

+
+20080527.01.tpd.patch +Fedora 9 updates
+20080528.01.tpd.patch +configure/readme rewrite
+20080529.01.dxh.patch +fix hyperdoc on interrupted rebuilds
+20080530.01.tpd.patch +books creation
+20080531.01.tpd.patch +construct book PDFs
+20080601.01.tpd.patch +bookvol8/graphics documentation
+20080603.01.tpd.patch +remove src/graph/view2d
+20080604.01.tpd.patch +bookvol8 extract view3d
+20080605.01.tpd.patch +remove view3d directory and files
+20080606.01.tpd.patch +make viewman from bookvol8
+20080606.02.tpd.patch +remove view
+20080606.03.tpd.patch +correct pathnames in changelog
+20080607.01.tpd.patch +make viewalone from bookvol8
+20080607.02.tpd.patch +Remove src/graph/viewalone directory
+20080607.03.tpd.patch +FAQ 48: Getting Axiom source from git
+20080608.01.tpd.patch +make gdraws from bookvol8
+20080608.02.tpd.patch +remove gdraws directory, use bookvol8
+20080608.03.tpd.patch +remove src/graph, use bookvol8
+20080609.01.tpd.patch +move hypertex into bookvol7
+20080609.02.tpd.patch +remove unused files in src/hyper
+20080609.03.tpd.patch +src/hyper directory removed, use bookvol7
+20080610.01.tpd.patch +build bookvol11
+20080610.02.tpd.patch +stop redundant builds
+20080611.01.tpd.patch +general form updates for books
+20080613.01.tpd.patch +compress viewman.c to a single file
+20080614.01.tpd.patch +compress viewalone to a single C file
+20080618.01.tpd.patch +use dvipdfm for hyperlinking (Anatoly Raportirenko)
+20080619.01.tpd.patch +add Anatoly Raportirenko
+20080619.02.tpd.patch +systematically index chunks
+20080619.03.tpd.patch +add Ralf Hemmecke documentation to ax.boot
+20080620.01.wxh.patch +fix direct product multiply in Monoid
+20080621.01.wxh.patch +default to close on failed read
+20080701.01.tpd.patch +update faq for X11 libs
+20080704.01.tpd.patch +add Samantha Goldrich to credits
+20080707.01.tpd.patch +construct hypertex from bookvol7
+20080715.01.tpd.patch +bookvol7.1 hyperdoc pages
+20080715.02.tpd.patch +remove src/hyper/pages/*.ht
+20080715.03.gxv.patch +mousewheel handling by Greg Vanuxem
+20080715.04.tpd.patch +remove ht.db from bookvol7
+20080717.01.tpd.patch +remove src/graph
+20080718.01.tpd.patch +bookvol7.1 hyperdoc additional documentation
+20080719.01.tpd.patch +bookvol7.1 more documentation
+20080720.01.tpd.patch +bookvol7.1 hyperdoc documentation added
+20080721.01.tpd.patch +bookvol7.1 hyperdoc specific macros
+20080722.01.tpd.patch +change VERSION number
+ +
+

September 2008 Release

+ +September 2008 Release Notes +

+
+20080724.01.tpd.patch +document lisp calls from hypertex
+20080725.01.tpd.patch +reflow for line latex overflows
+20080727.01.tpd.patch +update What's New pages
+20080728.01.tpd.patch +expand RootPage->Topics->Numbers
+20080729.01.tpd.patch +expand next tree level
+20080729.02.tpd.patch +more hyperdoc pages 1 of 2
+20080729.03.tpd.patch +bookvol7.1 part 2 of 2
+20080802.01.tpd.patch +Build ht.db from bookvol7.1
+20080809.01.tpd.patch +Remove pages directory
+20080814.01.tpd.patch +Use uncompress at build time
+20080815.01.tpd.patch +make firefox pages before input tests
+20080816.01.tpd.patch +comment out long running test
+20080816.02.tpd.patch +add additional regression tests
+20080817.01.tpd.patch +fix uncompress
+20080817.02.tpd.patch +recover function.input
+20080817.03.tpd.patch +exported function documentation
+20080818.01.tpd.patch +demo Axiom type towers (Hemmecke)
+20080818.02.tpd.patch +new input files (Stumbo, Cyganski, Hemmecke)
+20080819.01.tpd.patch +overload.input added (Cyganski)
+20080820.01.tpd.patch +fix typos in latex code
+20080821.01.tpd.patch +add MappingPackage4
+20080822.01.tpd.patch +add linalg,overload regressions
+20080823.01.tpd.patch +UnaryRecursiveAggregate API examples
+20080823.02.tpd.patch +stream API examples
+20080823.03.tpd.patch +++CapitalLetter syntax change
+20080824.01.tpd.patch +use ++X for example lines
+20080824.02.tpd.patch +expose difference between ^ and ** (Xaiojun)
+20080827.01.wsp.patch +replace \over with \frac (Page)
+20080828.01.mxr.patch +add cost to bottomUp output (Page)
+20080829.01.tpd.patch +graphviz dotfile decoration
+20080830.01.tpd.patch +graphviz dotfile decoration
+20080831.01.tpd.patch +graphviz dotfile decoration
+20080901.01.tpd.patch +add start of multivar poly test suite
+20080904.01.tst.patch +add reduce example (Tsikas)
+20080904.02.tpd.patch +graphviz dotfile decoration
+20080905.01.tpd.patch +graphviz dotfile decoration
+20080906.01.tpd.patch +move aggcat.spad to bookvol10
+20080908.01.tpd.patch +bookvol10 latex cleanup
+20080909.01.tpd.patch +bookvol0 change \over to \frac
+20080911.01.tpd.patch +bookvol11 fix firefox background image
+20080911.02.tpd.patch +bookvol10 merge coerce.spad
+20080912.01.tpd.patch +split bookvol10 into 10, 10.1..4
+20080916.01.tpd.patch +bookvol10.2 document additional categories
+20080917.01.tpd.patch +bookvol10.2 remove dup function defn in FLAGG
+20080917.02.wsp.patch +mkfunc.spad add parse function
+20080918.01.tpd.patch +bookvol10.2 add BASTYPE, SETCAT, ABELSG
+20080918.02.tpd.patch +bookvol10.2 add FINITE, ORDSET, SGROUP
+20080919.01.tpd.patch +bookvol10.2 add more categories
+20080920.01.tpd.patch +bookvol10.2 add more categories
+20080921.01.tpd.patch +September 2008 release fixups
+ +
+

November 2008 Release

+ +November 2008 Release Notes +

+
+20080925.01.tpd.patch +bookvol10.2 new categories added
+20080926.01.tpd.patch +bookvol10.2 new categories, attributes added
+20080927.01.tpd.patch +bookvol10.2 new categories, absorb naalgc
+20080928.01.tpd.patch +bookvol10.2 new categories, absorb trigcat
+20080930.01.tpd.patch +bookvol10.2 move XF, FPC from ffcat.spad
+20081001.01.tpd.patch +bookvol10.2 add more categores
+20081002.01.tpd.patch +bookvol10.2 add more categores
+20081003.01.tpd.patch +bookvol10.2 add POLYCAT
+20081004.01.tpd.patch +bookvol10.2 add UPOLYC, update attributes
+20081005.01.tpd.patch +bookvol10.2 add categories
+20081006.01.tpd.patch +bookvol10.2 add categories
+20081007.01.tpd.patch +bookvol10.2 add categories, update ATTREG
+20081008.01.tpd.patch +bookvol10.2 add ACF, fix MONOGEN, FFCAT
+20081023.01.tpd.patch +bookvol10.2 add categories
+20081026.01.tpd.patch +bookvol10.2 add categories
+20081027.01.tpd.patch +add sae.input regression test
+20081029.01.tpd.patch +bookvol10.2 add categories
+20081101.01.tpd.patch +bookvol10.2 add categories
+20081105.01.axj.patch +add reclos2.input
+20081106.01.tpd.patch +remove matcat.spad from src/algebra/Makefile
+20081107.01.tpd.patch +ignore probabilistic results
+20081108.01.tpd.patch +bookvol10.2 add categories
+20081109.01.tpd.patch +bookvol10.2 add categories
+20081110.01.tpd.patch +bookvol10.2 add categories
+20081112.01.tpd.patch +bookvol10.2 add categories
+20081114.01.tpd.patch +bookvol10.3 add dhmatrix
+20081115.01.tpd.patch +bookvol10.2 remove duplicates in export lists
+20081116.01.tpd.patch +rosetta.pamphlet fix magnus URL
+20081118.01.tpd.patch +make parallel test work
+20081119.01.tpd.patch +november 2008 release
+20081119.02.tpd.patch +november 2008 fixups
+ +
+

January 2009 Release

+ +In process, not yet released

+
+
20081122.02.tpd.patch +ubuntu64 parallel core support
+ + + \ No newline at end of file diff --git a/src/axiom-website/releasenotes.html b/src/axiom-website/releasenotes.html new file mode 100644 index 0000000..fab2ec8 --- /dev/null +++ b/src/axiom-website/releasenotes.html @@ -0,0 +1,1280 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ +RELEASES + + + +

November 23, 2008 Release Notes

+
patch list +
+November 2008 Release Notes
+
+Axiom website
+
+  New patch tracking has been added:
+     * Patches
+
+  Volumes have been significantly updated:
+     * Book Volume 10.2
+     * Book Volume 10.3
+
+Book Volume 10.2 Axiom Categories completed
+
+   The effort here is to create fully indexed, cross-referenced,
+   graphical documentation for Axiom categories in a standalone
+   form. This is a "live" literate document which contains the 
+   actual source code used to build the system.
+
+   * Book Volume 10.2
+
+Book Volume 10.3 Axiom Domains started
+
+   This volume will contain the Axiom domains.
+
+   * Book Volume 10.3
+
+Rosetta documentation
+
+  * Fix the Magnus URL
+
+Input Files
+
+  * New input files (Jakubi, Maltey, Rubey, Page, Daly}
+     dhmatrix, reclos2
+  * Changed input files (Hebisch, Daly)
+     sae, r20bugs
+
+Build changes
+
+  * Testing is now run in parallel which will significantly
+    speed up the final test phase
+ 
+
+ + +

September 23, 2008 Release Notes

+
patch list +
+September 2008 Release Notes
+
+
+Axiom website
+   The effort here is to improve the support for offline literate
+   documentation. The primary changes are the inclusion of graphs
+   and additional book volumes.
+
+* 
+  Contains the new algebra volumes and subvolumes.
+* 
+  Contains a "clickable" graph that indexes into the algebra.
+
+
+
+
+Graphviz, PDF, and HTML integration
+   The effort here is to unify these three technologies in a way
+   that simplifies the user interface and improves documentation
+
+* Graphviz is used if available but not required
+* Algebra graphs are automatically generated at build time
+  from algebra source files
+* Graphviz graphs now properly hyperlink into PDF files allowing
+  any node in a graph to link to any document page
+
+
+
+
+Book volume 0 (Jenks and Sutor)
+
+* 
+* replace \over with \frac
+
+
+
+Book volume 7.1 (Hyperdoc pages)
+   The effort here is to create a literate document that contains
+   all of the "live" pages used in hyperdoc. The PDF is being
+   constructed so that a user can effectively "browse" the static
+   hyperdoc pages, which are included, without a running Axiom.
+
+* 
+* The source for all of the pages is now contained in this book.
+* Hyperdoc now fetches the pages directly from the book.
+* The hyper page directory and all files are gone.
+* Some of the static page images are now inside the PDF
+* Pages have href links allowing "in-pdf" navigation of pages
+
+
+
+
+Book volume 10 (Algebra)
+   The effort here is to create a way to describe and deeply
+   document the algebra. This volume was split to better handle
+   the structure of Axiom's information. 
+
+* Split into 5 volumes
+   - 10   Implementation
+   - 10.1 Theory
+   - 10.2 Categories
+   - 10.3 Domains
+   - 10.4 Packages
+
+
+
+
+Book volume 10.2 (Algebra Categories)
+   The effort here is to create fully indexed, cross-referenced,
+   graphical documentation for Axiom categories in a standalone
+   form. This is a "live" literate document which contains the 
+   actual source code used to build the system.
+
+* 
+* Contains 60 categories so far
+* Has partial graphs for each category
+* Has list of exported functions 
+* Has information about source of functions
+* Has index cross reference by function and category
+* Has PDF href links so that URLs work:
+   
+* Has forward/backward links between categories
+* Automatically generates "clickable" graphs:
+   
+* Graph clicking automatically opens to the proper source code
+
+
+
+
+New algebra examples (Daly, Tsikas)
+   The effort here is to create "real time" documentation that
+   gives the end user an example of how to construct the proper
+   arguments and call a function. This puts examples into the
+   system so users don't need to consult other documents.
+
+* )d op someop shows examples of function usage
+* about 100 new function examples were added 
+* new comment syntax added to allow automatic API testing
+
+
+
+
+Input Files
+   There is a new effort to automatically extract the algebra
+   examples in order to regression test the user API to the
+   algebra. In addition there is ongoing test work.
+
+* New input files (Hemmecke, Stumbo, Cyganski, Daly)
+     bini, biquat, ifthenelse, liu, overload, sqrt3, typetower
+* Changed input files (Hemmecke, Stumbo, Cyganski, Daly)
+     bern, function, linalg, regset, test, tutchap2
+
+
+
+
+Build changes
+
+* graphics does not depend on compress, done at build time
+* firefox html pages are now built before tests are run
+
+
+
+Algebra changes
+
+* FLAGG (FiniteLinearAggregate) -- removed a duplicate function
+
+
+
+Interpreter changes (Page)
+
+* add cost function to bottomUp output
+
+
+
+ 
+
+ + +

July 23, 2008 Release Notes

+
patch list +
+The July 2008 release marks the second large-scale change toward a
+literate Axiom distribution. The original change was to make every
+file into a pamphlet document. This second change draws Axiom into
+tighter collections, called books (for obvious reasons). 
+
+There is a new "books" directory which contains 14 books, most of
+which are new:
+
+ bookvol0:  The reconstructed Jenks and Sutor book
+ bookvol1:  The published tutorial volume
+ bookvol2:  Users Guide
+ bookvol3:  Programmers Guide
+ bookvol4:  Developers Guide
+ bookvol5:  Interpreter
+ bookvol6:  Command
+ bookvol7:  Hyperdoc
+ bookvol7.1 Hyperdoc Pages
+ bookvol8:  Graphics
+ bookvol9:  Compiler
+ bookvol10: Algebra
+ bookvol11: Browser
+ bookvol12: Crystal
+
+All of these books now exist. Portions of the current system have
+been moved completely into book form (Graphics and Hyperdoc) so
+the old files have been removed from the src tree. Both Graphics
+and Hyperdoc are now built directly from their book. Work will 
+follow on other parts of the system.
+
+These books are online at:
+
+
+
+
+
+There is an interesting side-effect of using literate technology.
+Once you combine C and .h files into a single document so that each
+file is a separate chunk it becomes obvious that there is no need for
+local include files. The lines that read:
+   #include "foo.h"
+become
+   <>
+and get expanded inline. Once you do this it also becomes obvious
+that many include files get included multiple times (a clear waste
+of disk I/O and preparser time). Further it becomes clear that there
+is no need for creating tiny .o files since all of the source can
+be combined into one C file using chunks. 
+
+These approaches were used to reduce the compile-time overhead
+for both the graphics and the hyperdoc functions.
+
+
+
+
+In addition to consolidating the source files for Graphics into
+bookvol8 there were several other changes.
+
+  * the functions for graphics, that is, viewman, view2d, view3d
+    and viewalone are now built as single C files. 
+  * the graphics code was reorganized into chapters of related code
+  * there is the beginnings of documentation
+  * there is the beginnings of a test suite based on the 
+    CRC Handbook of Curves and Surfaces
+  * the book is hyperlinked (Bill Page, Frederic Lehobey, Anatoly Raportirenko)
+  * redundant code was eliminated
+  * the code is fully indexed
+  * the src/graph subdirectory is gone
+
+
+
+In addition to consolidating the source files for Hyperdoc into
+bookvol7 there were several other changes.
+
+  * the functions for hyperdoc, that is, spadbuf, ex2ht, htadd, hthits
+    and hypertex are now built as single C files
+  * the hyperdoc code was reorganized into chapters of related code
+  * there is the beginnngs of documentation
+  * redundant code was eliminated
+  * scroll wheel handling was added (Gregory Vanuxem)
+  * the book is hyperlinked (Bill Page, Frederic Lehobey, Anatoly Raportirenko)
+  * the code is fully indexed
+  * )hd now works to start or restart Hyperdoc (Jose Alfredo Portes)
+  * the src/hyper subdirectory is gone
+
+
+
+In addition to consolidating the hyperdoc pages into bookvol7.1
+there were several other changes:
+
+  * the pages are hyperlinked
+  * new latex macros were written to simplify page handling
+  * images of hyperdoc pages were added
+  * forward and backward hyperlinks between pages images works
+    making it possible to "browse" the hyperdoc pages using only
+    the single PDF file (Bill Page, Frederic Lehobey, Anatoly Raportirenko)
+  * the pages are fully indexed
+  * the src/hyper/pages subdirectory is gone
+
+
+
+A combined table of contents PDF is now automatically generated
+which covers all of the volumes. This makes it easier to find the
+topic of interest.
+
+
+In addition there were several other changes.
+
+  * Some fixes were made for different platforms
+       In particular, Fedora9 breaks the build and needs work
+
+  * The configure script was replaced by instructions
+       The standard (export AXIOM) works everywhere so the configure
+       script is useless for guessing.
+
+  * the FAQ was updated about git
+       Since the May 2008 release the primary Gold source code platform
+       is github. The FAQ was updated to reflect this.
+
+  * the FAQ was updated about X11
+       X11 has moved yet again so more notes are needed
+
+  * move axbook to books
+       The hyperlinked version of Jenks is now built from the books dir
+
+  * add Ralf Hemmecke's documentation to ax.boot
+  * add Monoid multiply to DirectProduct (Ralf Hemmecke)
+  * add Monoid multiply regression test
+
+
+ + +

May 27, 2008 Release Notes

+
patch list +
+
+COMPUTER ALGEBRA TEST SUITE
+
+A large part of the effort for these two months has involved detailed
+test cases of Axiom's integration routines against Schaum's Handbook
+of Mathematical Formulas. Of the 619 integrals, the detailed results are:
+
+419 Schaums and Axiom agree
+137 No closed form solution
+ 60 Cannot simplify
+
+  2 Typos found in Schaums
+  1 Axiom bug
+
+The Axiom bug was in src/algebra/intef.spad.pamphlet. There was a
+fix applied to this code for a previously identified bug but the
+previous fix was incorrect.
+
+In addition, there were
+ src/input/danzwill2.input.pamphlet added for the MIT Integration tests
+ src/inputmapleok.input.pamphlet to fix typos
+ src/input/kamke1.input.pamphlet had ode97 removed due to running time
+ src/input/kamke2.input.pamphlet ode104, ode105 removed for running time
+
+DOCUMENTATION
+	Max Tegmark's 'toe' diagram, src/doc/toe.gif
+
+PORTING
+        GCLOPTS-CUSTRELOC disable-locbfd for MACOSXPPC
+
+ + +

March 25, 2008 Release Notes

+
patch list +
+Summary: March 2008 release
+
+Axiom is now available at github, a git-based code repository.
+This site will have the Gold version of Axiom, that is, only
+code that changes at each two-month release. To get a clone type:
+
+   git-clone git://github.com/daly/axiom.git
+
+
+USER VISIBLE CHANGES
+
+  One primary focus of this release has been extending the Firefox
+  toward being a full Axiom user interface (as opposed to a simple
+  hyperdoc replacement). The Firefox console page has new, AJAX
+  based, dropdown menus which are planned to be dynamically updated
+  to display available functions for the last computed type. This 
+  should make it much easier to find the applicable functions by
+  category and type. They are currently static in this release.
+
+* Firefox Pages
+
+ o Dropdown menus were added to the Axiom console page
+ o More hyperdoc pages were translated to Firefox/html
+ o Bitmaps and graphics are now properly handled in pages
+ o A minor mathml fix was applied (for invisible times)
+
+* Refcard
+
+ o An Axiom reference card of Axiom commands was created (src/doc/refcard)
+
+* Examples
+
+ o It is often difficult to figure the exact arguments required to call
+   any given function in Axiom. The )display operation command used to
+   only show the available modemaps. This command has now been changed.
+    )display operation foo
+   now shows examples of function calls for foo.
+
+* Help
+
+ o The plot routines have new help files and documentation
+
+PORTING
+
+ o Axiom was ported to MAC-OSX
+
+ o The binary download page now has binaries for 
+   Ubuntu, OpenSUsE, Redhat9, Redhat72, Debian, MACOSX at 
+    
+
+ o Binaries for the this release will be available shortly.
+
+
+INTERNALS
+
+* Compiler changes
+ o  hashtables were used to speed up compiles
+
+* Algebra changes
+ o  There are new special functions, Ei,En,Ei1,Ei2,Ei3,Ei4,Ei5,Ei6
+ o  The prime and BasicSieve functions are faster
+ o  The Brent/Pollard algorithm was documented
+ o  Bad gcd reductions are checked (heugcd regression test file added)
+ o  The plot routines have new help files and documentation
+
+* Makefile changes
+ o  Bi-capital SVN copies are no longer made
+
+* Interpreter changes
+ o  Book Volume 5 has new documentation on the display function
+ o  The display function code has been translated and moved to book volume 5
+ o  PI has a higher internal precision
+ o  Mappings are now properly hashed for Aldor
+
+CATS (Computer Algebra Test Suite)
+
+ o The differential equations regression tests are being checked against
+   Mathematica, Maple, and Maxima. This has happended for the kamke2.input
+   regression test file and will happen for the other regression tests.
+
+o  Complex Gamma, logGamma, and log(Gamma) have additional tests and
+   documentation. 
+
+ + +

January 25, 2008 Release Notes

+
patch list +
+Summary: January 2008 release
+
+There have been two major concentrations of effort in this release.
+
+The first concentration is on the new Firefox Hyperdoc and the
+second concentration was the verification of Axiom against
+published standards.
+
+
+
+
+Firefox Hyperdoc
+
+The Firefox Hyperdoc has been integrated with the rest of the
+interpreter. The new )browse command causes Axiom to listen and
+serve hyperdoc pages on port 8085. 
+
+The interpreter was changed to add the )browse command. As a 
+side-effect new documentation was added to the interpreter
+volume (bookvol5) to explain top-level command handling. In
+addition, lisp and boot code was rewritten as part of the
+literate change.
+
+New sections were added to cover the beginning of the Computer
+Algebra Test Suite (CATS) subsection which brings a focus on
+compliance with published standards.
+
+Arthur Ralf's mathml-enabled version of the Jenks book is fully
+integrated into the Firefox Hyperdoc. Arthur also fixed some
+rendering and ambiguity issues.
+
+  axbook.tgz              fix the user/group settings
+  axserver.spad           fix lastType output re: errors
+  bookvol5                browse and top-level command handling 
+  bookvol11               add standards compliance for gamma
+  gammacomplexinverse.png added
+  gammacomplex.png        added
+  gammareal3.png          added
+  loggamma.png            added
+  mathml.spad             fix ambiguity bug in mathml output
+  mathml.spad             fix hex(10) mathml rendering 
+  mathml.spad             fix F,3 mathml rendering 
+  mathml.spad             remove code to eat %% 
+  psi.png                 added 
+
+
+
+
+Standards Verification
+
+The Computer Algebra Test Suite (CATS) effort checks the results
+that Axiom generates against published results. Axiom has an
+extensive set of regression tests (the KAMKE suite) for ordinary
+differential equations, for integration (the SCHAUM suite), and
+for numeric special functions (the ABRAMOWITZ suite). In addition,
+results have been checked against Mathematica, Maple, and Maxima.
+
+  asinatan.input   regression for the functions asin and atan
+  asinhatanh.input regression for the functions asinh and atanh
+  besselk.input    regression for the function besselK
+  e1.input         regression for the function E1
+  en.input         regression for the function En
+  exp.input        regression for the function exp
+  gamma.input      regression for the function gamma
+  log.input        regression for the functions log
+  pfaffian.input   regression for the function pfaffian
+  seccsc.input     regression for the functions sec and csc
+  sincos.input     regression for the functions sin and cos
+  sinhcosh.input   regression for the functions sinh and cosh
+  tancot.input     regression for the functions tan and cot
+  tanhcoth.input   regression for the functions tanh and coth
+
+
+
+
+New Functions Added
+
+Axiom is missing various special functions found in other computer
+algebra systems. This release adds two new ones, the Exponential
+Integral E1 and the higher order Exponential Integral En.  These have
+been tested against the published results.
+
+  special.spad E1 added
+  special.spad En added
+
+
+
+
+Bugs Fixed
+
+There are 15 bug fixes in this release:
+
+  bug 7015: fix hex(10) mathml rendering
+  bug 7016: remove code to eat %% 
+  bug 7019: fix F,3 mathml rendering 
+  bug 7023: discardGraph free corrected 
+  bug 7042: ignore regression test gensym
+  bug 7045: wrong Makefile for Xpm fix 
+  bug 7052: spurious remake of axbook
+  bug 7054: /home/silver path in bookvol11
+  bug 7057: ambiguity in mathml
+  bug 7089/343: FreeAbelianGroup order 
+  bug 7090/355 handle besselK
+  bug 7093: Function name fix
+  bug 7100/149: numlock in hyperdoc
+  bug 7101/204: MoreSystemCommand unnecessary loading 
+  bug 7102/412: Equality testing in TableAggregate 
+
+
+
+
+Regression test fixes
+
+As changes happen in the system the regression tests are updated
+to reflect the new conditions. Changing the category of PositiveInteger
+caused (a + -bi) to print as (a - bi). New builds raised gensym faults
+which were fixed. And new builds change random numbers so the tests
+that depend on them are marked "ok" despite failures due to randomness.
+The FreeAbelianGroup bug is tested.
+
+  acplot.spad     fix output form of negative numbers
+  calculus2.input fix function names 
+  classtalk.input ignore gensyms
+  collect.input   fix function names 
+  dfloat.input    handle negative number output
+  easter.input    fix function names 
+  elemnum.input   handle negative number output
+  exlap.input     fix function names 
+  exsum.input     fix function names 
+  free.input      added to test bug
+  grpthry.input   mark random generation failures ok
+  grpthry.input   fix function names 
+  ico.input       mark random generation failures ok
+  intg0.input     ignore gensyms
+  is.input        type declare function
+  kamke3.input    mark random generation failures ok
+  knot2.input     fix function names 
+  lodo.spad       ignore regression test gensym 
+  mapleok.input   ignore gensyms
+  mathml.input    handle new mathml sub/sup change
+  ndftip.input    fix missing blank lines
+  pmint.input     rewritten
+  repa6.input     fix function names 
+  r20bugs.input   change spacing
+  sf.spad         fix output form of negative numbers
+  tbagg.input     regression for equality testing in TableAggregate
+
+
+
+
+Algebra file changes
+
+The fundamental change was a supposedly transparent move of
+the category for PositiveInteger. This had the effect of changing
+the output form and broke several regression tests. Some mathml
+issues were fixed. The new functions E1 and En were added. The
+FreeAbelianGroup bug was fixed.
+
+  axserver.spad  fix lastType output re: errors
+  acplot.spad    fix output form of negative numbers
+  combfunc.spad  fix bold font handling
+  integer.spad   category change for PositiveInteger
+  sf.spad fix    output form of negative numbers
+  sf.spad        handle besselK
+  op.spad        handle besselK 
+  combfunc.spad  handle besselK 
+  free.spad      fix FreeAbelianGroup bug 
+  special.spad   add E1
+  special.spad   add En
+  mathml.spad    fix ambiguity bug in mathml output
+  mathml.spad    fix hex(10) mathml rendering 
+  mathml.spad    fix F,3 mathml rendering 
+  mathml.spad    remove code to eat %% 
+
+
+
+Interpreter changes
+
+The primary changes are the addition of bookvol11 for the Firefox
+Hyperdoc and the literate documentation of the top level command
+handling in bookvol5 (the interpreter) along with rewrites of the
+lisp/boot code.
+
+  bootfuns.lisp move $systemCommands to bookvol5
+  bookvol5      browse and top-level command handling
+  bookvol11     added
+  http.lisp     mathObject2String for hex(10) 
+  incl.boot     move incBiteOff to bookvol5
+  intint.lisp   move setCurrentLine to bookvol5
+  int-top.boot  move ncloopCommand, etc. to bookvol5
+  i-syscmd.boot move $SYSCOMMANDS to bookvol5
+  Makefile      wrong Makefile for Xpm fix 
+  makegraph.c   discardGraph free corrected 
+  nci.lisp      move ncloopInclude to bookvol5
+  setq.lisp     move command initialization to bookvol5
+
+
+
+Documentation changes
+
+  bookvol5      explain top level input handling (lisp/boot rewrite)
+  combfunc.spad fix bold font handling
+  axiom.sty     add binom 
+
+
+
+Patches released
+
+  20071129.01.tpd.patch
+  20071129.02.tpd.patch
+  20071205.01.tpd.patch
+  20071206.01.tpd.patch
+  20071208.01.tpd.patch
+  20071215.01.tpd.patch
+  20071215.02.tpd.patch
+  20071215.03.gxv.patch
+  20071216.01.tpd.patch
+  20071216.02.tpd.patch
+  20071216.03.acr.patch
+  20071217.01.acr.patch
+  20071217.02.tpd.patch
+  20071218.01.acr.patch
+  20071225.01.sxw.patch
+  20071228.01.tpd.patch
+  20071229.01.jap.patch
+  20071230.01.acr.patch
+  20071230.02.tpd.patch
+  20071230.03.tpd.patch
+  20080102.01.tpd.patch
+  20080103.01.tpd.patch
+  20080104.01.tpd.patch
+  20080104.02.tpd.patch
+  20080106.01.tpd.patch
+  20080107.01.tpd.patch
+  20080107.02.tpd.patch
+  20080107.03.tpd.patch
+  20080116.01.tpd.patch
+  20080119.01.tpd.patch
+  20080119.02.tpd.patch
+  20080119.03.tpd.patch
+  20080120.01.gxv.patch
+  20080120.02.tpd.patch
+  20080120.03.tpd.patch
+
+
+
+ + +

November 23, 2007 Release Notes

+
patch list +
+Summary: November 2007 release
+
+All of the golden sources are up to date.
+  savannah.nongnu.org/projects/axiom CVS
+  sourceforge.net/projects/axiom CVS
+  arch@axiom-developer.org ARCH (axiom--main--1--patch-54)
+  git@axiom-developer.org GIT
+  
+
+ADD NEW CREDITS
+  New patches were posted by Arthur and Alfredo so their tlas were
+  added to the changelog
+
+20071001 acr Arthur C. Ralfs 
+20070914 jap Jose Alfredo Portes 
+
+
+PORT TO DIFFERENT SYSTEMS
+  As part of the new axiom website there is a binary release page.
+  The stanzas for these supported systems were added.
+
+20071119 tpd Makefile.pamphlet add fedora6,7,8 stanzas
+
+
+NEW Axiom WEBSITE: http://axiom-developer.org STARTED.
+  The new Axiom website (currently at axiom.axiom-developer.org)
+  has been started. It will include the binary release page.
+
+
+REMOVE OLD REGRESSION SYSTEM
+  The previous regression test system was removed. A new combined
+  regression test and help documentation system was built to replace
+  this mechanism.
+
+20070901 tpd src/input/Makefile remove ALGEBRA variable
+20070901 tpd src/algebra/perm.spad remove TEST mechanism
+20070901 tpd src/algebra/view2d.spad remove TEST mechanism
+20070901 tpd src/algebra/fr.spad remove TEST mechanism
+
+
+FIX BOOK DOCUMENTATION
+  Minor typos have been discovered in the book during documentation.
+
+20070905 tpd src/doc/book remove duplicate upperCase, lowerCase typo
+20070903 tpd src/doc/bookvol4 fix typos
+20070902 tpd src/doc/book MultiSet -> Multiset
+20080829 tpd src/doc/book.pamphlet correct typo
+
+
+FIX BUGS
+  Various bugs have been found and fixed.
+
+20071101 tpd src/interp/i-output.boot fix bugs 7010 (209), 7011
+20070920 tpd src/input/Makefile add bug101.input regression test
+20070920 tpd src/input/bug101.input test laplace(log(z),z,w) bug 101
+20070920 wxh src/algebra/laplace.spad fix laplace(log(z),z,w) bug 101
+20070916 tpd src/input/Makefile add bug103.input regression test
+20070916 tpd src/input/bug103.input test solve(z=z,z) bug fix
+20070916 tpd src/algebra/polycat.spad solve(z=z,z) bug fix
+20070916 tpd src/algebra/catdef.spad add zero? to exquo
+20070915 tpd merge bug100 branch
+20070915 tpd src/input/Makefile add bug100.input regression test
+20070915 tpd src/input/bug100.input test integrate((z^a+1)^b,z) infinite loop
+20070915 wxh src/algebra/intef.spad fix integrate((z^a+1)^b,z) infinite loop
+20070915 tpd src/algebra/carten minor edit for regression cleanup
+20070914 wxh src/hyper/hyper fix bad bracing of )hd change
+20070914 tpd src/algebra/fraction.spad remove double )spool command
+20070914 tpd src/algebra/kl.spad remove double )spool command
+20070914 tpd src/algebra/lindep.spad remove double )spool command
+20070914 tpd src/algebra/radix.spad remove double )spool command
+
+
+ENABLE DYNAMIC RESTART OF HYPERDOC
+  Hyperdoc can now be started dynamically or restarted if killed.
+
+20070914 jap adapt changes for )hd restart to Axiom sources
+20070914 wxh src/sman/bookvol6 enable restart of hyperdoc with )hd
+20070914 wxh src/include/sman.h1 enable restart of hyperdoc with )hd
+20070914 wxh src/hyper/hyper enable restart of hyperdoc with )hd
+
+
+SET UP THE NEW FIREFOX BASED HYPERDOC
+  Hyperdoc is going away. A new version of hyperdoc is being built
+  which uses html/javascript/mathml. These files change the interpreter
+  and algebra to support the new hyperdoc machinery.
+
+20071019 acr src/interp/http.lisp use new return values
+20071019 acr src/algebra/axserver.spad use new return values
+20071014 acr src/algebra/axserver.spad use getContentType(pathvar)
+20071013 acr license/license.ralfs license rewrite
+20071013 acr src/interp/http.lisp faster page service
+20071013 acr src/algebra/axserver.spad faster page service
+20071001 tpd src/algebra/exposed.lisp add (|AxiomServer| . AXSERV) to basic
+20071001 tpd src/algebra/Makefile add axserver.spad
+20071001 acr src/algebra/axserver.spad axserver socket connection code
+20071001 tpd src/interp/Makefile add http.lisp
+20071001 acr src/interp/http.lisp axserver socket connection code
+20071001 acr license/license.ralfs added
+
+
+REGRESSION TEST CALCULUS
+  A new regression test suite for calculus is being built. The first
+  of these files has been added to the system.
+
+20070913 tpd src/input/Makefile schaum1.input added
+20070913 tpd src/input/schaum1.input added
+
+
+REGRESSION TEST ORDINARY DIFFERENTIAL EQUATIONS
+  A regression test suite for ordinary differential equations was built. 
+
+20071005 tpd src/input/Makefile kamke7.input regression test added
+20071005 tpd src/input/kamke7.input ODE regression test added
+20071005 tpd src/input/Makefile kamke6.input regression test added
+20071005 tpd src/input/kamke6.input ODE regression test added
+20071005 tpd src/input/Makefile kamke5.input regression test added
+20071005 tpd src/input/kamke5.input ODE regression test added
+20071005 tpd src/input/Makefile kamke4.input regression test added
+20071005 tpd src/input/kamke4.input ODE regression test added
+20071005 tpd src/input/Makefile kamke3.input regression test added
+20071005 tpd src/input/kamke3.input ODE regression test added
+20071004 tpd src/input/Makefile kamke2.input regression test added
+20071004 tpd src/input/kamke2.input ODE regression test added
+20071004 tpd src/input/Makefile kamke1.input regression test added
+20071004 tpd src/input/kamke1.input ODE regression test added
+20071004 tpd src/input/Makefile kamke0.input regression test added
+20071004 tpd src/input/kamke0.input ODE regression test added
+
+
+REGRESSION TEST PFAFFIAN
+  Martin added the pfaffian regression test. It was added and removed
+  due to documentation license issues. New documentation is being written.
+
+20070929 tpd src/input/Makefile pfaffian regression test removed
+20070929 tpd src/input/pfaffian.input regression test removed
+20070927 tpd src/input/Makefile pfaffian regression test added 
+20070927 mxr src/input/pfaffian.input regression test added 
+
+
+ADD PORTIONS OF THE GUESS PACKAGE
+  The newton.spad file is actually part of the fffg.spad file so it
+  was removed. The very top level spad functions in GUESS still do
+  not work properly.
+
+20070909 tpd src/algebra/newton.spad included in fffg.spad
+20070909 tpd src/algebra/Makefile remove newton.spad (duplicate)
+
+
+FIX BUILD PROCESS
+  The build process was not properly suppressing output by default.
+
+20070907 tpd src/algebra/acplot.spad fix PlaneAlgebraicCurvePlot.help NOISE
+20070907 tpd src/algebra/Makefile make regression respect NOISE variable
+20070907 tpd src/input/Makefile make regression respect NOISE variable
+
+
+FIX INSTALL PROCESS
+  The install process had a bug.
+
+20070906 tpd Makefile int/sman/axiom command to target command for install
+20070906 tpd src/sman/Makefile copy axiom command to int
+
+
+ADD ALDOR RELEASE
+  The aldor release has been added to zips. It will soon be part of
+  the build mechanism but separately maintained like GCL.
+
+20070901 tpd zips/aldor.20070901.tgz add pdf documentation
+20070901 tpd zips/aldor.20070901.tgz added
+
+
+ADD )HELP FACILITY
+  The )help facility was recovered. The documentation is now integrated
+  into the spad files and used both for help documentation and algebra
+  regression testing. 
+
+20070902 tpd src/doc/Makefile document how to add help files
+20070902 tpd src/algebra/Makefile document how to add help files
+20070906 tpd merge help files branch
+20070906 tpd src/doc/spadhelp add ZeroDimensionalSolvePackage
+20070906 tpd src/algebra/Makefile add ZeroDimensionalSolvePackage.help 
+20070906 tpd src/algebra/zerodim.spad add ZeroDimensionalSolvePackage.help
+20070906 tpd src/algebra/zerodim.spad ZeroDimensionalSolvePackage.input
+20070906 tpd src/doc/spadhelp add XPolynomialRing
+20070906 tpd src/algebra/Makefile add XPolynomialRing.help 
+20070906 tpd src/algebra/xpoly.spad add XPolynomialRing.help (XPR)
+20070906 tpd src/algebra/xpoly.spad XPolynomialRing.input
+20070906 tpd src/doc/spadhelp add XPolynomial
+20070906 tpd src/algebra/Makefile add XPolynomial.help 
+20070906 tpd src/algebra/xpoly.spad add XPolynomial.help (XPOLY)
+20070906 tpd src/algebra/xpoly.spad XPolynomial.input
+20070906 tpd src/doc/spadhelp add XPBWPolynomial
+20070906 tpd src/algebra/Makefile add XPBWPolynomial.help 
+20070906 tpd src/algebra/xlpoly.spad add XPBWPolynomial.help (XPBWPOLY)
+20070906 tpd src/algebra/xlpoly.spad XPBWPolynomial.input
+20070905 tpd src/doc/spadhelp add WuWenTsunTriangularSet
+20070905 tpd src/algebra/Makefile add WuWenTsunTriangularSet.help 
+20070905 tpd src/algebra/triset.spad add WuWenTsunTriangularSet.help (WUTSET)
+20070905 tpd src/algebra/triset.spad WuWenTsunTriangularSet.input
+20070905 tpd src/doc/spadhelp add Void
+20070905 tpd src/algebra/Makefile add Void.help 
+20070905 tpd src/algebra/void.spad add Void.help (VOID)
+20070905 tpd src/algebra/void.spad Void.input
+20070905 tpd src/doc/spadhelp add Vector
+20070905 tpd src/algebra/Makefile add Vector.help 
+20070905 tpd src/algebra/vector.spad add Vector.help (Vector)
+20070905 tpd src/algebra/vector.spad Vector.input
+20070905 tpd src/doc/spadhelp add UniversalSegment
+20070905 tpd src/algebra/Makefile add UniversalSegment.help 
+20070905 tpd src/algebra/seg.spad add UniversalSegment.help (UNISEG)
+20070905 tpd src/algebra/seg.spad UniversalSegment.input
+20070905 tpd src/doc/spadhelp add UnivariatePolynomial
+20070905 tpd src/algebra/Makefile add UnivariatePolynomial.help 
+20070905 tpd src/algebra/poly.spad add UnivariatePolynomial.help (UP)
+20070905 tpd src/algebra/poly.spad UnivariatePolynomial.input
+20070905 tpd src/doc/spadhelp add TwoDimensionalArray
+20070905 tpd src/algebra/Makefile add TwoDimensionalArray.help 
+20070905 tpd src/algebra/array2.spad add TwoDimensionalArray.help (ARRAY2)
+20070905 tpd src/algebra/array2.spad TwoDimensionalArray.input
+20070905 tpd src/doc/spadhelp add TextFile
+20070905 tpd src/algebra/Makefile add TextFile.help 
+20070905 tpd src/algebra/files.spad add TextFile.help (TEXTFILE)
+20070905 tpd src/algebra/files.spad TextFile.input
+20070905 tpd src/doc/spadhelp add Table
+20070905 tpd src/algebra/Makefile add Table.help 
+20070905 tpd src/algebra/table.spad add Table.help (TABLE)
+20070905 tpd src/algebra/table.spad Table.input
+20070905 tpd src/doc/spadhelp add StringTable
+20070905 tpd src/algebra/Makefile add StringTable.help 
+20070905 tpd src/algebra/table.spad add StringTable.help (STRTBL)
+20070905 tpd src/algebra/table.spad StringTable.input
+20070905 tpd src/doc/spadhelp add String
+20070905 tpd src/algebra/Makefile add String.help 
+20070905 tpd src/algebra/stream.spad add String.help (STRING)
+20070905 tpd src/algebra/stream.spad String.input
+20070905 tpd src/doc/spadhelp add Stream
+20070905 tpd src/algebra/Makefile add Stream.help 
+20070905 tpd src/algebra/stream.spad add Stream.help (STREAM)
+20070905 tpd src/algebra/stream.spad Stream.input
+20070905 tpd src/doc/spadhelp add SquareFreeRegularTriangularSet
+20070905 tpd src/algebra/Makefile add SquareFreeRegularTriangularSet.help 
+20070905 tpd src/algebra/sregset.spad add SquareFreeRegularTriangularSet.help
+20070905 tpd src/algebra/sregset.spad SquareFreeRegularTriangularSet.input
+20070905 tpd src/doc/spadhelp add SquareMatrix
+20070905 tpd src/algebra/Makefile add SquareMatrix.help 
+20070905 tpd src/algebra/matrix.spad add SquareMatrix.help (SQMATRIX)
+20070905 tpd src/algebra/matrix.spad SquareMatrix.input
+20070905 tpd src/doc/spadhelp add SparseTable
+20070905 tpd src/algebra/Makefile add SparseTable.help 
+20070905 tpd src/algebra/table.spad add SparseTable.help (STBL)
+20070905 tpd src/algebra/table.spad SparseTable.input
+20070905 tpd src/doc/spadhelp add SingleInteger
+20070905 tpd src/algebra/Makefile add SingleInteger.help 
+20070905 tpd src/algebra/si.spad add SingleInteger.help (SINT)
+20070905 tpd src/algebra/si.spad SingleInteger.input
+20070905 tpd src/doc/spadhelp add Set
+20070905 tpd src/algebra/Makefile add Set.help 
+20070905 tpd src/algebra/sets.spad add Set.help (SET)
+20070905 tpd src/algebra/sets.spad Set.input
+20070905 tpd src/doc/spadhelp add SegmentBinding
+20070905 tpd src/algebra/Makefile add SegmentBinding.help 
+20070905 tpd src/algebra/seg.spad add SegmentBinding.help (SEGBIND)
+20070905 tpd src/algebra/seg.spad SegmentBinding.input
+20070905 tpd src/doc/spadhelp add Segment
+20070905 tpd src/algebra/Makefile add Segment.help 
+20070905 tpd src/algebra/seg.spad add Segment.help (SEG)
+20070905 tpd src/algebra/seg.spad Segment.input
+20070905 tpd src/algebra/integer.spad update RomanNumeral.help (ROMAN)
+20070905 tpd src/algebra/integer.spad update RomanNumeral.input
+20070904 tpd src/doc/spadhelp add RegularTriangularSet
+20070904 tpd src/algebra/Makefile add RegularTriangularSet.help 
+20070904 tpd src/algebra/regset.spad add RegularTriangularSet.help (REGSET)
+20070904 tpd src/algebra/regset.spad RegularTriangularSet.input
+20070904 tpd src/doc/spadhelp add RealClosure
+20070904 tpd src/algebra/Makefile add RealClosure.help 
+20070904 tpd src/algebra/reclos.spad add RealClosure.help (RECLOS)
+20070904 tpd src/algebra/reclos.spad RealClosure.input
+20070904 tpd src/doc/spadhelp add RadixExpansion
+20070904 tpd src/algebra/Makefile add RadixExpansion.help 
+20070904 tpd src/algebra/radix.spad add RadixExpansion.help (RADIX)
+20070904 tpd src/algebra/radix.spad RadixExpansion.input
+20070903 tpd src/doc/spadhelp add Polynomial
+20070903 tpd src/algebra/Makefile add Polynomial.help 
+20070903 tpd src/algebra/multpoly.spad add Polynomial.help (POLY)
+20070903 tpd src/algebra/multpoly.spad Polynomial.input
+20070903 tpd src/doc/spadhelp add Permanent
+20070903 tpd src/algebra/Makefile add Permanent.help 
+20070903 tpd src/algebra/perman.spad add Permanent.help (PERMAN)
+20070903 tpd src/algebra/perman.spad Permanent.input
+20070903 tpd src/doc/spadhelp add PartialFraction
+20070903 tpd src/algebra/Makefile add PartialFraction.help 
+20070903 tpd src/algebra/pfr.spad add PartialFraction.help (PFR)
+20070903 tpd src/algebra/pfr.spad PartialFraction.input
+20070903 tpd src/doc/spadhelp add OrderlyDifferentialPolynomial
+20070903 tpd src/algebra/Makefile add OrderlyDifferentialPolynomial.help 
+20070903 tpd src/algebra/dpolcat.spad add OrderlyDifferentialPolynomial (ODPOL)
+20070903 tpd src/algebra/dpolcat.spad OrderlyDifferentialPolynomial.input
+20070903 tpd src/doc/spadhelp add OrderedVariableList
+20070903 tpd src/algebra/Makefile add OrderedVariableList.help 
+20070903 tpd src/algebra/variable.spad add OrderedVariableList.help (OVAR)
+20070903 tpd src/algebra/variable.spad OrderedVariableList.input
+20070903 tpd src/doc/spadhelp add Operator
+20070903 tpd src/algebra/Makefile add Operator.help 
+20070903 tpd src/algebra/opalg.spad add Operator.help (OP)
+20070903 tpd src/algebra/opalg.spad Operator.input
+20070903 tpd src/algebra/radix.spad fix typos in help file
+20070903 tpd src/algebra/integer.spad fix typos in help file
+20070902 tpd src/doc/spadhelp add OneDimensionalArray
+20070902 tpd src/algebra/Makefile add OneDimensionalArray.help 
+20070902 tpd src/algebra/array1.spad add OneDimensionalArray.help (ARRAY1)
+20070902 tpd src/algebra/array1.spad OneDimensionalArray.input
+20070902 tpd src/doc/spadhelp add Octonion
+20070902 tpd src/algebra/Makefile add Octonion.help 
+20070902 tpd src/algebra/oct.spad add Octonion.help (OCT)
+20070902 tpd src/algebra/oct.spad Octonion.input
+20070902 tpd src/doc/spadhelp add None
+20070902 tpd src/algebra/Makefile add None.help 
+20070902 tpd src/algebra/any.spad add None.help (NONE)
+20070902 tpd src/algebra/any.spad None.input
+20070902 tpd src/doc/spadhelp add MultivariatePolynomial
+20070902 tpd src/algebra/Makefile add MultivariatePolynomial.help 
+20070902 tpd src/algebra/multpoly.spad add MultivariatePolynomial.help (MPOLY)
+20070902 tpd src/algebra/multpoly.spad MultivariatePolynomial.input
+20070902 tpd src/doc/spadhelp add Multiset
+20070902 tpd src/algebra/Makefile add Multiset.help 
+20070902 tpd src/algebra/mset.spad add Multiset.help (MSET)
+20070902 tpd src/algebra/mset.spad Multiset.input
+20070902 tpd src/doc/spadhelp add Matrix
+20070902 tpd src/algebra/Makefile add Matrix.help 
+20070902 tpd src/algebra/matrix.spad add Matrix.help (MATRIX)
+20070902 tpd src/algebra/matrix.spad Matrix.input
+20070902 tpd src/doc/spadhelp add MappingPackage3
+20070902 tpd src/algebra/Makefile add MappingPackage3.help 
+20070902 tpd src/algebra/mappkg.spad add MappingPackage3.help (MAPPKG3)
+20070902 tpd src/algebra/mappkg.spad MappingPackage3.input
+20070902 tpd src/doc/spadhelp add MappingPackage2
+20070902 tpd src/algebra/Makefile add MappingPackage2.help 
+20070902 tpd src/algebra/mappkg.spad add MappingPackage2.help (MAPPKG2)
+20070902 tpd src/algebra/mappkg.spad MappingPackage2.input
+20070902 tpd src/doc/spadhelp add MappingPackage1
+20070902 tpd src/algebra/Makefile add MappingPackage1.help 
+20070902 tpd src/algebra/mappkg.spad add MappingPackage1.help (MAPPKG1)
+20070902 tpd src/algebra/mappkg.spad MappingPackage1.input
+20070902 tpd src/doc/spadhelp add MakeFunction
+20070902 tpd src/algebra/Makefile add MakeFunction.help 
+20070902 tpd src/algebra/mkfunc.spad add MakeFunction.help (MKFUNC)
+20070902 tpd src/algebra/mkfunc.spad MakeFunction.input
+20070902 tpd src/algebra/view2d.spad fix typos in help file
+20070902 tpd src/algebra/files.spad fix typos in help file
+20070902 tpd src/algebra/acplot.spad fix typos in help file
+20070902 tpd src/doc/spadhelp add Magma
+20070902 tpd src/algebra/Makefile add Magma.help 
+20070902 tpd src/algebra/xlpoly.spad add Magma.help (MAGMA)
+20070902 tpd src/algebra/xlpoly.spad Magma.input
+20070902 tpd src/doc/spadhelp add LyndonWord
+20070902 tpd src/algebra/Makefile add LyndonWord.help 
+20070902 tpd src/algebra/xlpoly.spad add LyndonWord.help (LWORD)
+20070902 tpd src/algebra/xlpoly.spad LyndonWord.input
+20070902 tpd src/doc/spadhelp add List
+20070902 tpd src/algebra/Makefile add List.help 
+20070902 tpd src/algebra/list.spad add List.help (LIST)
+20070902 tpd src/algebra/list.spad List.input
+20070901 tpd src/doc/spadhelp add Permutation
+20070901 tpd src/algebra/Makefile add Permutation.help 
+20070901 tpd src/algebra/acplot.spad add Permutation.help (PERM)
+20070901 tpd src/algebra/acplot.spad Permutation.input
+20070901 tpd src/doc/spadhelp add TwoDimensionalViewport
+20070901 tpd src/algebra/Makefile add TwoDimensionalViewport.help
+20070901 tpd src/algebra/view2d.spad add TwoDimensionalViewport.help (VIEW2D)
+20070901 tpd src/doc/spadhelp add PlaneAlgebraicCurvePlot
+20070901 tpd src/algebra/Makefile add PlaneAlgebraicCurvePlot.help 
+20070901 tpd src/algebra/acplot.spad add PlaneAlgebraicCurvePlot.help (ACPLOT)
+20070901 tpd src/algebra/acplot.spad PlaneAlgebraicCurvePlot.input
+20070901 tpd src/doc/spadhelp add RealSolvePackage
+20070901 tpd src/algebra/Makefile add RealSolvePackage.help 
+20070901 tpd src/algebra/acplot.spad add RealSolvePackage.help (REALSOLV)
+20070901 tpd src/algebra/acplot.spad RealSolvePackage.input
+20070830 tpd src/doc/spadhelp add LinearOrdinaryDifferentialOperator2
+20070830 tpd src/algebra/Makefile add LinearOrdinaryDifferentialOperator2.help 
+20070830 tpd src/algebra/lodo.spad add LinearOrdinaryDifferentialOperator2.help
+20070830 tpd src/algebra/lodo.spad LinearOrdinaryDifferentialOperator2.input
+20070830 tpd src/doc/spadhelp add LinearOrdinaryDifferentialOperator1
+20070830 tpd src/algebra/Makefile add LinearOrdinaryDifferentialOperator1.help 
+20070830 tpd src/algebra/lodo.spad add LinearOrdinaryDifferentialOperator1.help
+20070830 tpd src/algebra/lodo.spad LinearOrdinaryDifferentialOperator1.input
+20070830 tpd src/doc/spadhelp add LinearOrdinaryDifferentialOperator
+20070830 tpd src/algebra/Makefile add LinearOrdinaryDifferentialOperator.help 
+20070830 tpd src/algebra/lodo.spad add LinearOrdinaryDifferentialOperator.help
+20070830 tpd src/algebra/lodo.spad add LinearOrdinaryDifferentialOperator.input
+20070830 tpd src/doc/spadhelp add LiePolynomial
+20070830 tpd src/algebra/Makefile add LiePolynomial.help 
+20070830 tpd src/algebra/xlpoly.spad add LiePolynomial.help (LPOLY)
+20070830 tpd src/algebra/xlpoly.spad add LiePolynomial.input
+20070830 tpd src/doc/spadhelp add LieExponentials
+20070830 tpd src/algebra/Makefile add LieExponentials.help 
+20070830 tpd src/algebra/xlpoly.spad add LieExponentials.help (LEXP)
+20070830 tpd src/algebra/xlpoly.spad add LieExponentials.input
+20070830 tpd src/doc/spadhelp add Library
+20070830 tpd src/algebra/Makefile add Library.help 
+20070830 tpd src/algebra/files.spad add Library.help (LIB)
+20070830 tpd src/algebra/files.spad add Library.input
+20070830 tpd src/doc/spadhelp add LexTriangularPackage
+20070830 tpd src/algebra/Makefile add LexTriangularPackage.help 
+20070830 tpd src/algebra/zerodim.spad add LexTriangularPackage.help (LEXTRIPK)
+20070830 tpd src/algebra/zerodim.spad add LexTriangularPackage.input
+20070830 tpd src/doc/spadhelp add KeyedAccessFile
+20070830 tpd src/algebra/Makefile add KeyedAccessFile.help 
+20070830 tpd src/algebra/numtheor.spad add KeyedAccessFile.help (KAFILE)
+20070830 tpd src/algebra/numtheor.spad add KeyedAccessFile.input
+20070830 tpd src/doc/spadhelp add Kernel
+20070830 tpd src/algebra/Makefile add Kernel.help 
+20070830 tpd src/algebra/numtheor.spad add Kernel.help (KERNEL)
+20070830 tpd src/algebra/numtheor.spad add Kernel.input
+20070830 tpd src/doc/spadhelp add IntegerNumberTheoryFunctions
+20070830 tpd src/algebra/Makefile add IntegerNumberTheoryFunctions.help 
+20070830 tpd src/algebra/numtheor.spad add IntegerNumberTheoryFunctions.help
+20070830 tpd src/algebra/numtheor.spad add IntegerNumberTheoryFunctions.input
+20070830 tpd src/doc/spadhelp add IntegerLinearDependence
+20070830 tpd src/algebra/Makefile add IntegerLinearDependence.help 
+20070830 tpd src/algebra/lindep.spad add IntegerLinearDependence.help (ZLINDEP)
+20070830 tpd src/algebra/lindep.spad add IntegerLinearDependence.input
+20070830 tpd src/doc/spadhelp add RomanNumeral
+20070830 tpd src/algebra/Makefile add RomanNumeral.help 
+20070830 tpd src/algebra/integer.spad add RomanNumeral.help (ROMAN)
+20070830 tpd src/algebra/integer.spad add RomanNumeral.input
+20070830 tpd src/doc/spadhelp add Integer
+20070830 tpd src/algebra/Makefile add Integer.help 
+20070830 tpd src/algebra/integer.spad add Integer.help (INT)
+20070830 tpd src/algebra/integer.spad add Integer.input
+20070830 tpd src/doc/spadhelp add HexadecimalExpansion
+20070830 tpd src/algebra/Makefile add HexadecimalExpansion.help 
+20070830 tpd src/algebra/radix.spad add HexadecimalExpansion.help (HEXADEC)
+20070830 tpd src/algebra/radix.spad add HexadecimalExpansion.input
+20070829 tpd src/doc/spadhelp add Heap
+20070829 tpd src/algebra/Makefile add Heap.help 
+20070829 tpd src/algebra/bags.spad add Heap.help (FR)
+20070829 tpd src/algebra/bags.spad add Heap.input
+20070829 tpd src/doc/spadhelp add GroebnerFactorizationPackage
+20070829 tpd src/algebra/Makefile add GroebnerFactorizationPackage.help 
+20070829 tpd src/algebra/fparfrac.spad add GroebnerFactorizationPackage.help
+20070829 tpd src/algebra/fparfrac.spad add GroebnerFactorizationPackage.input
+20070829 tpd src/doc/spadhelp add GeneralSparseTable
+20070829 tpd src/algebra/Makefile add GeneralSparseTable.help 
+20070829 tpd src/algebra/table.spad add GeneralSparseTable.help (GSTBL)
+20070829 tpd src/algebra/table.spad add GeneralSparseTable.input 
+20070829 tpd src/doc/spadhelp add FullPartialFractionExpansion
+20070829 tpd src/algebra/Makefile add FullPartialFractionExpansion.help 
+20070829 tpd src/algebra/fparfrac.spad add FullPartialFractionExpansion.help
+20070829 tpd src/algebra/fparfrac.spad add FullPartialFractionExpansion.input
+20070829 tpd src/doc/spadhelp add Fraction
+20070829 tpd src/algebra/Makefile add Fraction.help 
+20070829 tpd src/algebra/fraction.spad add Fraction.help (FR)
+20070829 tpd src/algebra/fraction.spad add Fraction.input
+20070829 tpd src/doc/spadhelp add Float
+20070829 tpd src/algebra/Makefile add Float.help 
+20070829 tpd src/algebra/float.spad add Float.help (FLOAT)
+20070829 tpd src/algebra/float.spad add Float.input
+20070828 tpd src/doc/spadhelp add FlexibleArray
+20070828 tpd src/algebra/Makefile add FlexibleArray.help 
+20070828 tpd src/algebra/array1.spad add FlexibleArray.help (FARRAY)
+20070828 tpd src/algebra/array1.spad add FlexibleArray.input
+20070827 tpd src/doc/spadhelp add FileName
+20070827 tpd src/algebra/Makefile add FileName.help 
+20070827 tpd src/algebra/fname.spad add FileName.help (FNAME)
+20070827 tpd src/algebra/fname.spad add FileName.input
+20070827 tpd src/doc/spadhelp add File
+20070827 tpd src/algebra/Makefile add File.help 
+20070827 tpd src/algebra/files.spad add File.help (FILE)
+20070827 tpd src/algebra/files.spad add File.input
+20070827 tpd src/doc/spadhelp add FactoredFunctions2
+20070827 tpd src/algebra/Makefile add FactoredFunctions2.help 
+20070827 tpd src/algebra/fr.spad add FactoredFunctions2.help (FR2)
+20070827 tpd src/algebra/fr.spad add FactoredFunctions2.input
+20070827 tpd src/doc/spadhelp add Factored
+20070827 tpd src/algebra/Makefile add Factored.help 
+20070827 tpd src/algebra/fr.spad add Factored.help (FR)
+20070827 tpd src/algebra/fr.spad add Factored.input
+
+
+ + diff --git a/src/axiom-website/rosetta.html b/src/axiom-website/rosetta.html new file mode 100644 index 0000000..0e0bd55 --- /dev/null +++ b/src/axiom-website/rosetta.html @@ -0,0 +1,5781 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+
+

+ Rosetta Stone +

+

+ +The following is a collection of synonyms for various operations in +the computer algebra systems Axiom, Derive, GAP, DoCon, +Macsyma, Magnus, Maxima, Maple, Mathematica, MuPAD, Octave, +Pari, Reduce, Scilab, Sumit and Yacas. This collection does not +attempt to be comprehensive, but hopefully it will be useful in giving +an indication of how to translate between the syntaxes used by the +different systems in many common situations. Note that a blank entry +means either (a) that there may be an exact translation of a +particular operation for the indicated system, but we don't know what +it is or (b) there is no exact translation but it may still be +possible to work around this lack with a related functionality. + +While commercial systems are not provided on this CD the intent of the +Rosetta effort is to make it possible for experienced Computer Algebra +users to experiment with other systems. Thus the commands for +commercial systems are included to allow users of those systems to +translate. + +Some of these systems are special purpose and do not support a lot of +the functionality of the more general purpose systems. Where they do +support an interpreter the commands are provided. + +Originally written by Michael Wester. +Modified for Rosetta by Timothy Daly, Alexander Hulpke (GAP). + +

System availability

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemLicenseStatus (2002)URL
AldorNon-freeavailablehttp://www.aldor.org
AxiomModifiedBSDavailablehttp://axiom.axiom-developer.org
Derivecommercialavailablehttp://www.mathware.com
DoConopen sourceavailablehttp://www.haskell.org/docon
GAPGPLRosettahttp://www.gap-system.org/~gap
Macsymacommercialdeadunavailable
MagnusGPLRosettahttp://sourceforge.net/projects/magnus
MaximaGPLRosettahttp://www.ma.utexas.edu/maxima.html
Maplecommercialavailablehttp://www.maplesoft.com
Mathematicacommercialavailablehttp://www.wolfram.com
MuPADcommercialavailablehttp://www.mupad.de
OctaveGPLRosettahttp://www.octave.org
PariGPLRosettahttp://www.parigp-home.de
Reducecommercialavailablehttp://www.zib.de/Symbolik/reduce
ScilabScilabavailablehttp://www-rocq.inria.fr/scilab
Sumitavailablehttp://www-sop.inria.fr/cafe/soft-f.html
YacasGPLavailablehttp://yacas.sourceforge.net
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemTypeInterpreted or Compiled +
AxiomGeneral Purposeboth
DeriveGeneral Purpose
DoConGeneral PurposeInterpreted in Haskell
GAPGroup Theory
MacsymaGeneral Purpose
MagnusInfinite Group Theory
MaximaGeneral Purpose
MapleGeneral Purpose
MathematicaGeneral Purpose
MuPADGeneral Purpose
OctaveNumerical Computing
PariNumber Theory
ReduceGeneral Purpose
ScilabGeneral Purpose
SumitFunctional Equations
YacasGeneral Purpose
+
+ +

Programming and Miscellaneous

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemUnix/Microsoft user initialization file
Axiom.axiom.input
GAP.gaprcGAP.RC
DoCon
Derivederive.ini
Macsymamacsyma-init.macsymamac-init.mac
Magnus
Maximamacsyma-init.macsymamac-init.mac
Maple.mapleinitmaplev5.ini
Mathematicainit.minit.m
MuPAD.mupadinit\mupad\bin\userinit.mu
Octave
Pari
Reduce.reducercreduce.rc
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemDescribe keywordFind keywords containing pattern
Axiom)what operations pattern
Derive
DoCon
GAP?keyword??keyword
Macsymadescribe("keyword")\$apropos("pattern");
Magnus
Maximadescribe("keyword")\$apropos("pattern");
Maple?keyword?pattern\,\fnm
Mathematica?keyword?*pattern*
MuPAD?keyword?*pattern*
Octavehelp -i keyword
Pari
Reduce
Scilab
Sumit
Yacas
+
+ +Only if the pattern is not a keyword and then the matches are simplistic. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemCommentLine Cont.Prev. Expr.Case sensitiveVariables assumed
Axiom-- commentinput _CR input%Yesreal
Derive"comment"input CRinputNoreal
DoCon
GAP# commentinput\CRinputlastYesno assumption
Macsyma/* comment */input CR input;%Noreal
Magnus
Maxima/* comment */input CR input;%Noreal
Maple# commentinput CR input;%Yescomplex
Mathematica(* comment *)input CR input%Yescomplex
MuPAD# comment #input CR input;%Yescomplex
Octave##Yes
Pari
Reduce% commentinput CR input;wsNocomplex
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemLoad a fileTime a commandQuit
Axiom)read "file" )quiet)set messages time on)quit
Derive[Transfer Load Derive][Quit]
DoCon
GAPRead("file");time; \h{(also see {\tt Runtime();})}quit;
Macsymaload("file")\$showtime: all\$quit();
Magnus
Maximaload("file")\$showtime: all\$quit();
Mapleread("file"):readlib(showtime): on;quit
Mathematica<< fileTiming[command]Quit[]
MuPADread("file"):time(command);quit
Octaveload filetic(); cmd ; toc()quit \OR\ exit
Pari
Reducein "file"\$on time;quit;
Scilabquit
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Display}\h{Suppress}
\h{output}\h{output}\h{Substitution: $f(x, y) \rightarrow f(z, w)$}
Axiominputinput;subst(f(x, y), [x = z, y = w])
Deriveinputvar:= input[Manage Substitute]
DoCon
GAPinput;input;;Value(f,[x,y],[z,w]);\fnm
Macsymainput;input\$subst([x = z, y = w], f(x, y));
Magnus
Maximainput;input\$subst([x = z, y = w], f(x, y));
Mapleinput;input:subs(\{x = z, y = w\}, f(x, y));
Mathematicainputinput;f[x, y] /. \{x -> z, y -> w\}
MuPADinput;input:subs(f(x, y), [x = z, y = w]);
Octaveinputinput;
Pari
Reduceinput;input\$sub(\{x = z, y = w\}, f(x, y));
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Set}\h{List}\h{Matrix}
Axiomset [1, 2][1, 2]matrix([[1, 2],[3, 4]])
Derive\{1, 2\}[1, 2][[1,2], [3,4]]
DoCon
GAPSet([1,2])[1, 2][[1,2], [3,4]]\fnm
Macsyma[1, 2][1, 2]matrix([1, 2], [3, 4])
Magnus
Maxima[1, 2][1, 2]matrix([1, 2], [3, 4])
Maple\{1, 2\}[1, 2]matrix([[1, 2], [3, 4]])
Mathematica\{1, 2\}\{1, 2\}\{\{1, 2\}, \{3, 4\}\}
MuPAD\{1, 2\}[1, 2]export(Dom): \q export(linalg):
matrix:= ExpressionField(normal)):
matrix([[1, 2], [3, 4]])
Octave
Pari
Reduce\{1, 2\}\{1, 2\}mat((1, 2), (3, 4))
Scilablist(1,2)A=[1,2;3,4]
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Equation}\h{List element}\h{Matrix element}\h{Length of a list}
Axiomx = 0l . 2m(2, 3)\#l
Derivex = 0l SUB 2m SUB 2 SUB 3DIMENSION(l)
DoCon
GAPx=0l[2]m[2][3]Length(l)
Macsymax = 0l[2]m[2, 3]length(l)
Magnus
Maximax = 0l[2]m[2, 3]length(l)
Maplex = 0l[2]m[2, 3]nops(l)
Mathematicax == 0l[[2]]m[[2, 3]]Length[l]
MuPADx = 0l[2]m[2, 3]nops(l)
Octave
Pari
Reducex = 0part(l, 2)m(2, 3)length(l)
Scilabl(2)
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\m{2}{\rm Prepend/append an element to a list}\h{Append two lists}
Axiomcons(e, l)concat(l, e)append(l1, l2)
DeriveAPPEND([e], l)APPEND(l, [e])APPEND(l1, l2)
DoCon
GAPConcatenation([e],l)Add(l,e)Append(l1, l2)
Macsymacons(e, l)endcons(e, l)append(l1, l2)
Magnus
Maximacons(e, l)endcons(e, l)append(l1, l2)
Maple[e, op(l)][op(l), e][op(l1), op(l2)]
MathematicaPrepend[l, e]Append[l, e]Join[l1, l2]
MuPAD[e, op(l)]append(l, e)l1 . l2
Octave
Pari
Reducee . lappend(l, {e})append(l1, l2)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Matrix column dimension}\h{Convert a list into a column vector}
Axiomncols(m)transpose(matrix([l]))
DeriveDIMENSION(m SUB 1)[l]\`{}
DoCon
GAPLength(mat[1])\h{objects are identical}
Macsymamat\_\,ncols(m)transpose(matrix(l))
Magnus
Maximamat\_\,ncols(m)transpose(matrix(l))
Maplelinalg[coldim](m)linalg[transpose](matrix([l]))
MathematicaDimensions[m][[2]]Transpose[\{l\}]
MuPADlinalg::ncols(m)transpose(matrix([l]))\,\fnm
Octave
Pari
Reduceload\_\,package(linalg)\$matrix v(length(l), 1)\$
column\_dim(m)for i:=1:length(l) do
\q\q v(i, 1):= part(l, i)
Scilab
Sumit
Yacas
+
+ +See the definition of matrix above. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Convert a column vector into a list}
Axiom[v(i, 1) for i in 1..nrows(v)]
Derivev\`{} SUB 1
DoCon
GAP\h{objects are identical}
Macsymapart(transpose(v), 1)
Magnus
Maximapart(transpose(v), 1)
Mapleop(convert(linalg[transpose](v), listlist))
MathematicaFlatten[v]
MuPAD[op(v)]
Octave
Pari
Reduceload\_\,package(linalg)\$
for i:=1:row\_\,dim(v) collect(v(i, 1))
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{True}\h{False}\h{And}\h{Or}\h{Not}\h{Equal}\h{Not equal} +
Axiomtruefalseandornot==
DeriveTRUEFALSEANDORNOT=/=
DoCon
GAPtruefalse\fnmandornot=<>
Macsymatruefalseandornot=\#
Magnus
Maximatruefalseandornot=\#
Mapletruefalseandornot=<>
MathematicaTrueFalse\\||!==!=
MuPADtruefalseandornot=<>
Octave
Pari
Reducetnilandornot=neq
Scilab\%t\%f
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{If+then+else statements}\h{Strings (concatenated)}
Axiomif \_ then \_ else if \_ then \_ else \_concat(["x", "y"])
DeriveIF(\_, \_, IF(\_, \_, \_))"xy"
DoCon
GAPif \_ then \_ elif \_ then \_ else \_ fiConcatenation("x","y")
Macsymaif \_ then \_ else if \_ then \_ else \_concat("x", "y")
Magnus
Maximaif \_ then \_ else if \_ then \_ else \_concat("x", "y")
Mapleif \_ then \_ elif \_ then \_ else \_ fi"x" . "y"
MathematicaIf[\_, \_, If[\_, \_, \_]]"x" <> "y"
MuPADif \_ then \_ elif \_ then \_ else \_"x" . "y"
\q\q end\_if
Octave
Pari
Reduceif \_ then \_ else if \_ then \_ else \_"xy" \OR\ mkid(x, y)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Simple loop and Block}\h{Generate the list $[1, 2, \ldots, n]$}
Axiomfor i in 1..n repeat ( x; y )[f(i) for i in 1..n]
DeriveVECTOR([x, y], i, 1, n)VECTOR(f(i), i, 1, n)
DoCon
GAPfor i in [1..n] do \_ od;[1..n] {\rm or} [1,2..n]
Macsymafor i:1 thru n do (x, y);makelist(f(i), i, 1, n);
Magnus
Maximafor i:1 thru n do (x, y);makelist(f(i), i, 1, n);
Maplefor i from 1 to n do x; y od;[f(i) \$ i = 1..n];
MathematicaDo[x; y, \{i, 1, n\}]Table[f[i], \{i, 1, n\}]
MuPADfor i from 1 to n do x; y[f(i) \$ i = 1..n];
\q\q end\_for;
Octave
Pari
Reducefor i:=1:n do <>;for i:=1:n collect f(i);
Scilab
Sumit
Yacas
\end{tabular}
[10pt] + +\begin{tabular}{l|l} +\h{Complex loop iterating on a list}
Axiomfor x in [2, 3, 5] while x**2 < 10 repeat output(x)
Derive
DoCon
GAPfor x in [2, 3, 5] do while x\^{}2<10 do Print(x);od;od;
Macsymafor x in [2, 3, 5] while x\^{}2 < 10 do print(x)\$
Magnus
Maximafor x in [2, 3, 5] while x\^{}2 < 10 do print(x)\$
Maplefor x in [2, 3, 5] while x\^{}2 < 10 do print(x) od:
MathematicaFor[l = \{2, 3, 5\}, l != \{\} \\l[[1]]\^{}2 < 10,
\q l = Rest[l], Print[l[[1]]] ]
MuPADfor x in [2, 3, 5] do if x\^{}2 < 10 then print(x) end\_if
\q end\_for:
Octave
Pari
Reducefor each x in \{2, 3, 5\} do if x\^{}2 < 10 then write(x)\$
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{\small Assignment}\h{Function definition}\h{Clear vars and funs}
Axiomy:= f(x)f(x, y) == x*y {\small\tt )clear properties y f}
Derivey:= f(x)f(x, y):= x*yy:= f:=
DoCon
GAPy:= f(x);f:=function(x, y) return x*y; end;\h{There are +no symbolic variables}
Macsymay: f(x);f(x, y):= x*y;remvalue(y)\$
remfunction(f)\$
Magnus
Maximay: f(x);f(x, y):= x*y;remvalue(y)\$
remfunction(f)\$
Mapley:= f(x);f:= proc(x, y) x*y end;y:= 'y': f:= 'f':
Mathematicay = f[x]f[x\_, y\_\,]:= x*yClear[y, f]
MuPADy:= f(x);f:= proc(x, y)y:= NIL: f:= NIL:
\q\q begin x*y end\_\,proc;
Octave
Pari
Reducey:= f(x);procedure f(x, y); x*y;clear y, f;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Function definition with a local variable}
Axiomf(x) == (local n; n:= 2; n*x)
Derive
DoCon
GAPf:=function(x) local n; n:=2;return n*x; end;
Macsymaf(x):= block([n], n: 2, n*x);
Magnus
Maximaf(x):= block([n], n: 2, n*x);
Maplef:= proc(x) local n; n:= 2; n*x end;
Mathematicaf[x\_\,]:= Module[\{n\}, n = 2; n*x]
MuPADf:= proc(x) local n; begin n:= 2; n*x end\_\,proc;
Octave
Pari
Reduceprocedure f(x); begin scalar n; n:= 2; return(n*x) end;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Return unevaluated symbol}\h{Define a function from an expression}
Axiome:= x*y;\q 'efunction(e, f, x, y)
Derivee:= x*y\q 'ef(x, y):== e
DoCon
GAP\h{No unevaluated symbols}\fnm
Macsymae: x*y\$\q 'e;define(f(x, y), e);
Magnus
Maximae: x*y\$\q 'e;define(f(x, y), e);
Maplee:= x*y:\q 'e';f:= unapply(e, x, y);
Mathematicae = x*y;\q HoldForm[e]f[x\_, y\_\,] = e
MuPADe:= x*y:\q hold(e);f:= hold(func)(e, x, y);
Octave
Pari
Reducee:= x*y\$for all x, y let f(x, y):= e;
Scilab
Sumit
Yacas
+
+ +Variables can be assigned to generators of a suitable free +object, for example x:=X(Rationals,"x"); or +f:=FreeGroup(2);x:=f.1;}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Fun.\ of an indefinite number of args}\h{Apply ``+'' to sum a list}
Axiomreduce(+, [1, 2])
DeriveLST l:= l
DoCon
GAPlst:=function(args) \_ end;Sum([1,2])
Macsymalst([l]):= l;apply("+", [1, 2])
Magnus
Maximalst([l]):= l;apply("+", [1, 2])
Maplelst:=proc() [args[1..nargs]] end;convert([1, 2], \`{}+\`{})
Mathematicalst[l\_\,\_\,\_\,]:= \{l\}Apply[Plus, \{1, 2\}]
MuPADlst:= proc(l) begin [args()]\_\,plus(op([1, 2]))
\q\q\q end\_\,proc;
Octave
Pari
Reducexapply(+, \{1, 2\})\,\fnm
Scilab
Sumit
Yacas
+
+ +procedure xapply(f, lst); lisp(f . cdr(lst)) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Apply a fun.\ to a}
\h{list of its args}\h{Map an anonymous function onto a list}
Axiomreduce(f, l)map(x +-> x + y, [1, 2])
Derivex:= [1, 2]
VECTOR(x SUB i + y, i, 1, DIMENSION(x))
DoCon
GAPList(l,f)List([1,2],x->x+y)
Macsymaapply(f, l)map(lambda([x], x + y), [1, 2])
Magnus
Maximaapply(f, l)map(lambda([x], x + y), [1, 2])
Maplef(op(l))map(x -> x + y, [1, 2])
MathematicaApply[f, l]Map[\# + y \, \{1, 2\}]
MuPADf(op(l))map([1, 2], func(x + y, x))
Octave
Pari
Reducexapply(f, l)\,\fnmfor each x in \{1, 2\} collect x + y
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Pattern matching: $f(3 y) + f(z y) \rightarrow 3 f(y) + f(z y)$}
Axiomf:= operator('f);
( rule f((n | integer?(n)) * x) == n*f(x) )( \_
\q\q f(3*y) + f(z*y))
Derive
DoCon
GAP
Macsymamatchdeclare(n, integerp, x, true)\$
defrule(fnx, f(n*x), n*f(x))\$
apply1(f(3*y) + f(z*y), fnx);
Magnus
Maximamatchdeclare(n, integerp, x, true)\$
defrule(fnx, f(n*x), n*f(x))\$
apply1(f(3*y) + f(z*y), fnx);
Maplemap(proc(q) local m;
\q\q\q if match(q = f(n*y), y, 'm') and
\q\q\q\q\q type(rhs(op(m)), integer) then
\q\q\q\q subs(m, n * f(y)) else q fi
\q\q end,
\q\q f(3*y) + f(z*y));
Mathematicaf[3*y] + f[z*y] /. f[n\_Integer * x\_\,] -> n*f[x]
MuPADd:= domain("match"): \q d::FREEVARIABLE:= TRUE:
n:= new(d, "n", func(testtype(m, DOM\_INT), m)):
x:= new(d, "x", TRUE):
map(f(3*y) + f(z*y),
\q\q proc(q) local m; begin m:= match(q, f(n*x));
\q\q\q if m = FAIL then q
\q\q\q else subs(hold("n" * f("x")), m) end\_if
\q\q end\_\,proc);
Octave
Pari
Reduceoperator f;
f(3*y) + f(z*y)
\q\q where \{f(n * x) => n*f(x) when fixp(n)\};
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Define a new infix operator and then use it}
Axiom
Derive
DoCon
GAP\h{One can overload existing infix operators for ones own purposes}
Macsymainfix("")\$ \q ""(x, y):= sqrt(x\^{}2 + y\^{}2)\$ \q + 3 4;
Magnus
Maximainfix("")\$ \q ""(x, y):= sqrt(x\^{}2 + y\^{}2)\$ \q + 3 4;
Maple\`{}\\`{}:= (x, y) -> sqrt(x\^{}2 + y\^{}2): \q 3 \ 4; +
Mathematicax\_ $\backslash$[Tilde] y\_:= Sqrt[x\^{}2 + y\^{}2]; \q + 3 $\backslash$[Tilde] 4
MuPADtilde:= proc(x, y) begin sqrt(x\^{}2 + y\^{}2) end\_\,proc:
\q 3 \tilde 4;
Octave
Pari
Reduceinfix |\$ \q procedure |(x, y); sqrt(x\^{}2 + y\^{}2)\$ \q + 3 | 4;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Main expression}
\h{operator}\h{\nth{1} operand}\h{List of expression operands}
Axiom\fnmkernels(e) . 1kernels(e)
Derive{\em various}\fnm
DoCon
GAP\m{3}{\rm There are no formal unevaluated expressions}
Macsymapart(e, 0)part(e, 1)args(e)
Magnus
Maximapart(e, 0)part(e, 1)args(e)
Mapleop(0, e)op(1, e)[op(e)]
MathematicaHead[e]e[[1]]ReplacePart[e, List, 0]
MuPADop(e, 0)op(e, 1)[op(e)]
Octave
Pari
Reducepart(e, 0)part(e, 1)for i:=1:arglength(e)
\q\q collect part(e, i)
Scilab
Sumit
Yacas
+
+ +The following commands work only on expressions that consist of a +single level (e.g., $x + y + z$ but not $a/b + c/d$). +TERMS, FACTORS, NUMERATOR, LHS, etc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Print text and results}
Axiomoutput(concat(["sin(", string(0), ") = ",
\q string(sin(0))]));
Derive"sin(0)" = sin(0)
DoCon
GAPPrint("There is no sin, but factors(10)= ",Factors(10), +"$\backslash$n")
Macsymaprint("sin(", 0, ") =", sin(0))\$
Magnus
Maximaprint("sin(", 0, ") =", sin(0))\$
Mapleprintf("sin(\%a) = \%a$\backslash$n", 0, sin(0)):
MathematicaPrint[StringForm["sin(\`{}\`{}) = \`{}\`{}", 0, Sin[0]]];
MuPADprint(Unquoted, "sin(".0.")" = sin(0)):
Octave
Pari
Reducewrite("sin(", 0, ") = ", sin(0))\$
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Generate FORTRAN}\h{Generate \TeX/\LaTeX}
AxiomoutputAsFortran(e)outputAsTex(e)
Derive[Transfer Save Fortran]
DoCon
GAPPrint(LaTeX(e));
Macsymafortran(e)\$ \OR gentran(eval(e))\$tex(e);
Magnus
Maximafortran(e)\$ \OR gentran(eval(e))\$tex(e);
Maplefortran([e]);latex(e);
MathematicaFortranForm[e]TexForm[e]
MuPADgenerate::fortran(e);generate::TeX(e);
Octave
Pari
Reduceon fort; \q e; \q off fort; \ORload\_\,package(tri)\$
load\_\,package(gentran)\$ gentran e;on TeX; e; off TeX;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Import two space separated columns of integers from {\tt file}}
Axiom
Derive[Transfer Load daTa] ({\rm from} file.dat)
DoCon
GAP
Macsymaxy: read\_num\_data\_to\_matrix("file", nrows, 2)\$
Magnus
Maximaxy: read\_num\_data\_to\_matrix("file", nrows, 2)\$
Maplexy:= readdata("file", integer, 2):
Mathematicaxy = ReadList["file", Number, RecordLists -> True]
MuPAD
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Export two space separated columns of integers to {\tt file}\fnm}
Axiom)set output algebra "file" \q ({\rm creates} file.spout)
for i in 1..n repeat output( \_
\q concat([string(xy(i, 1)), " ", string(xy(i, 2))]) )
)set output algebra console
Derivexy [Transfer Print Expressions File]\q({\rm creates} file.prt)
DoCon
GAPPrintTo("file");for i in [1..n] do
\q AppendTo("file",xy[i][1]," ",xy[i][2],"$\backslash$n");od;
Macsymawritefile("file")\$ \q for i:1 thru n do
\q print(xy[i, 1], xy[i, 2])\$ \q closefile()\$
Magnus
Maximawritefile("file")\$ \q for i:1 thru n do
\q print(xy[i, 1], xy[i, 2])\$ \q closefile()\$
Maplewritedata("file", xy);
Mathematicaoutfile = OpenWrite["file"];
Do[WriteString[outfile,
\q xy[[i, 1]], " ", xy[[i, 2]], "$\backslash$n"], \{i, 1, n\}]
Close[outfile];
MuPADfprint(Unquoted, Text, "file",
\q ("$\backslash$n", xy[i, 1], xy[i, 2]) \$ i = 1..n):
Octave
Pari
Reduceout "file"; \q for i:=1:n do
\q write(xy(i, 1), " ", xy(i, 2)); \q shut "file";
Scilab
Sumit
Sumit
Yacas
+
+ +

+Some editing of file will be necessary for all systems but +Maple and Mathematica. +

+ +

Mathematics and Graphics

+ +Since GAP aims at discrete mathematics, it does not provide much of +the calculus functionality listed in the following section. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$e$$\pi$$i$$+\infty$$\sqrt{2}$$2^{1/3}$
Axiom\%e\%pi\%i\%plusInfinitysqrt(2)2**(1/3)
Derive\#epi\#iinfSQRT(2)2\^{}(1/3)
DoCon
GAPE(4)infinityER(2)\fnm
Macsyma\%e\%pi\%iinfsqrt(2)2\^{}(1/3)
Magnus
Maxima\%e\%pi\%iinfsqrt(2)2\^{}(1/3)
Mapleexp(1)PiIinfinitysqrt(2)2\^{}(1/3)
MathematicaEPiIInfinitySqrt[2]2\^{}(1/3)
MuPADEPIIinfinitysqrt(2)2\^{}(1/3)
Octave
Pari
Reduceepiiinfinitysqrt(2)2\^{}(1/3)
Scilab
Sumit
Yacas
+
+ER represents special cyclotomic numbers and is not a +root function.} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Euler's constant}\h{Natural log}\h{Arctangent}$n!$
Axiomlog(x)atan(x)factorial(n)
Deriveeuler\_\,gammaLOG(x)ATAN(x)n!
DoCon
GAPLogInt(x,base)Factorial(n)
Macsyma\%gammalog(x)atan(x)n!
Magnus
Maxima\%gammalog(x)atan(x)n!
Maplegammalog(x)arctan(x)n!
MathematicaEulerGammaLog[x]ArcTan[x]n!
MuPADEULERln(x)atan(x)n!
Octave
Pari
ReduceEuler\_\,Gammalog(x)atan(x)factorial(n)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Legendre polynomial}\h{Chebyshev poly.\ of the \nth{1} kind}
AxiomlegendreP(n, x)chebyshevT(n, x)
DeriveLEGENDRE\_\,P(n, x)CHEBYCHEV\_\,T(n, x)
DoCon
GAP
Macsymalegendre\_\,p(n, x)chebyshev\_\,t(n, x)
Magnus
Maximalegendre\_\,p(n, x)chebyshev\_\,t(n, x)
Mapleorthopoly[P](n, x)orthopoly[T](n, x)
MathematicaLegendreP[n, x]ChebyshevT[n, x]
MuPADorthpoly::legendre(n, x)orthpoly::chebyshev1(n, x)
Octave
Pari
ReduceLegendreP(n, x)ChebyshevT(n, x)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Fibonacci number}\h{Elliptic integral of the \nth{1} kind}
Axiomfibonacci(n)
DeriveFIBONACCI(n)ELLIPTIC\_\,E(phi, k\^{}2)
DoCon
GAPFibonacci(n)
Macsymafib(n)elliptic\_\,e(phi, k\^{}2)
Magnus
Maximafib(n)elliptic\_\,e(phi, k\^{}2)
Maplecombinat[fibonacci](n)EllipticE(sin(phi), k)
MathematicaFibonacci[n]EllipticE[phi, k\^{}2]
MuPADnumlib::fibonacci(n)
Octave
Pari
ReduceEllipticE(phi, k\^{}2)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$\Gamma(x)$$\psi(x)$\h{Cosine integral}\h{Bessel fun.\ (\nth{1})}
AxiomGamma(x)psi(x)real(Ei(\%i*x))besselJ(n, x)
DeriveGAMMA(x)PSI(x)CI(x)BESSEL\_\,J(n, x)
DoCon
GAP
Macsymagamma(x)psi[0](x)cos\_\,int(x)bessel\_j[n](x)
Magnus
Maximagamma(x)psi[0](x)cos\_\,int(x)bessel\_j[n](x)
MapleGAMMA(x)Psi(x)Ci(x)BesselJ(n, x)
MathematicaGamma[x]PolyGamma[x]CosIntegral[x]BesselJ[n, x]
MuPADgamma(x)psi(x)besselJ(n, x)
Octave
Pari
ReduceGamma(x)Psi(x)Ci(x)BesselJ(n, x)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Hypergeometric fun.\ ${}_2F_1(a, b; c; x)$}\h{Dirac delta} \h{Unit step fun.}
Axiom
DeriveGAUSS(a, b, c, x)STEP(x)
DoCon
GAP
Macsymahgfred([a, b], [c], x)delta(x)unit\_\,step(x) +
Magnus
Maximahgfred([a, b], [c], x)delta(x)unit\_\,step(x) +
Maplehypergeom([a, b], [c], x)Dirac(x)Heaviside(x)
MathematicaHypergeometricPFQ[\{a,b\},\{c\},x] \m{2}{<< Calculus\`{}DiracDelta\`{}}
MuPADdirac(x)heaviside(x)
Octave
Pari
Reducehypergeometric(\{a, b\}, \{c\}, x)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Define $|x|$ via a piecewise function}
Axiom
Derivea(x):= -x*CHI(-inf, x, 0) + x*CHI(0, x, inf)
DoCon
GAP
Macsymaa(x):= -x*unit\_\,step(-x) + x*unit\_\,step(x)\$
Magnus
Maximaa(x):= -x*unit\_\,step(-x) + x*unit\_\,step(x)\$
Maplea:= x -> piecewise(x < 0, -x, x):
Mathematica<< Calculus\`{}DiracDelta\`{}
a[x\_]:= -x*UnitStep[-x] + x*UnitStep[x]
MuPADa:= proc(x) begin -x*heaviside(-x) + x*heaviside(x)
\q\q end\_\,proc:
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Assume $x$ is real}\h{Remove that assumption}
Axiom
Derivex :epsilon Realx:=
DoCon
GAP
Macsymadeclare(x, real)\$remove(x, real)\$
Magnus
Maximadeclare(x, real)\$remove(x, real)\$
Mapleassume(x, real);x:= 'x':
Mathematicax/: Im[x] = 0;Clear[x]
MuPADassume(x, Type::RealNum):unassume(x, Type::RealNum):
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Assume $0 < x \le 1$}\h{Remove that assumption}
Axiom
Derivex :epsilon (0, 1]x:=
DoCon
GAP
Macsymaassume(x > 0, x <= 1)\$forget(x > 0, x <= 1)\$
Magnus
Maximaassume(x > 0, x <= 1)\$forget(x > 0, x <= 1)\$
Mapleassume(x > 0);x:= 'x':
additionally(x <= 1);
MathematicaAssumptions -> 0 < x <= 1\,\fnm
MuPADassume(x > 0): assume(x <= 1):unassume(x):
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ +Note: This is an option for {\tt Integrate}.} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Basic simplification of an expression $e$}
Axiomsimplify(e) \OR\ normalize(e) \OR\ complexNormalize(e)
Derivee
DoCon
GAPe
Macsymaratsimp(e) \OR\ radcan(e)
Magnus
Maximaratsimp(e) \OR\ radcan(e)
Maplesimplify(e)
MathematicaSimplify[e] \OR\ FullSimplify[e]
MuPADsimplify(e) \OR\ normal(e)
Octave
Pari
Reducee
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Use an unknown function}\h{Numerically evaluate an expr.}
Axiomf:= operator('f); \q f(x)exp(1) :: Complex Float
Derivef(x):=Precision:= Approximate
f(x)APPROX(EXP(1))
Precision:= Exact
DoCon
GAPEvalF(123/456)
Macsymaf(x)sfloat(exp(1));
Magnus
Maximaf(x)sfloat(exp(1));
Maplef(x)evalf(exp(1));
Mathematicaf[x]N[Exp[1]]
MuPADf(x)float(exp(1));
Octave
Pari
Reduceoperator f; \q f(x)on rounded; \q exp(1);
off rounded;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$ n \bmod m$\h{Solve $e \equiv 0 \bmod m$ for $x$}
Axiomrem(n, m)solve(e = 0 :: PrimeField(m), x)
DeriveMOD(n, m)SOLVE\_\,MOD(e = 0, x, m)
DoCon
GAPn mod m\h{solve using finite fields}
Macsymamod(n, m)modulus: m\$ \q solve(e = 0, x)
Magnus
Maximamod(n, m)modulus: m\$ \q solve(e = 0, x)
Maplen mod mmsolve(e = 0, m)
MathematicaMod[n, m]Solve[\{e == 0, Modulus == m\}, x]
MuPADn mod msolve(poly(e = 0, [x], IntMod(m)), x)
Octave
Pari
Reduceon modular;load\_\,package(modsr)\$ \q on modular;
setmod m\$ \q nsetmod m\$ \q m\_solve(e = 0, x)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Put over common denominator}\h{Expand into separate fractions}
Axioma/b + c/d(a*d + b*c)/(b*d) :: \_
\q MPOLY([a], FRAC POLY INT)
DeriveFACTOR(a/b + c/d, Trivial)EXPAND((a*d + b*c)/(b*d))
DoCon
GAPa/b+c/d
Macsymaxthru(a/b + c/d)expand((a*d + b*c)/(b*d))
Magnus
Maximaxthru(a/b + c/d)expand((a*d + b*c)/(b*d))
Maplenormal(a/b + c/d)expand((a*d + b*c)/(b*d))
MathematicaTogether[a/b + c/d]Apart[(a*d + b*c)/(b*d)]
MuPADnormal(a/b + c/d)expand((a*d + b*c)/(b*d))
Octave
Pari
Reducea/b + c/don div; (a*d + b*c)/(b*d)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Manipulate the root of a polynomial}
Axioma:= rootOf(x**2 - 2); \q a**2
Derive
DoCon
GAPx:=X(Rationals,"x");
\q a:=RootOfDefiningPolynomial(AlgebraicExtension(Rationals,x\^{}2-2)); +a\^{}2
Macsymaalgebraic:true\$ \q tellrat(a\^{}2 - 2)\$ \q rat(a\^{}2);
Magnus
Maximaalgebraic:true\$ \q tellrat(a\^{}2 - 2)\$ \q rat(a\^{}2);
Maplea:= RootOf(x\^{}2 - 2): \q simplify(a\^{}2);
Mathematicaa = Root[\#\^{}2 - 2 \, 2] \q a\^{}2
MuPAD
Octave
Pari
Reduceload\_\,package(arnum)\$ \q defpoly(a\^{}2 - 2); \q a\^{}2;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Noncommutative multiplication}\h{Solve a pair of equations}
Axiomsolve([eqn1, eqn2], [x, y])
Derivex :epsilon NonscalarSOLVE([eqn1, eqn2], [x, y])
y :epsilon Nonscalar
x . y
DoCon
GAP*
Macsymax . ysolve([eqn1, eqn2], [x, y])
Magnus
Maximax . ysolve([eqn1, eqn2], [x, y])
Maplex \* ysolve(\{eqn1, eqn2\}, \{x, y\})
Mathematicax ** ySolve[\{eqn1, eqn2\}, \{x, y\}]
MuPADsolve(\{eqn1, eqn2\}, \{x, y\})
Octave
Pari
Reduceoperator x, y;solve(\{eqn1, eqn2\}, \{x, y\})
noncom x, y;
x() * y()
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\m{2}{\rm Decrease/increase angles in trigonometric functions}
Axiom\m{2}{simplify(normalize(sin(2*x)))}
DeriveTrigonometry:= ExpandTrigonometry:= Collect
sin(2*x)2*sin(x)*cos(x)
DoCon
GAP
Macsymatrigexpand(sin(2*x))trigreduce(2*sin(x)*cos(x))
Magnus
Maximatrigexpand(sin(2*x))trigreduce(2*sin(x)*cos(x))
Mapleexpand(sin(2*x))combine(2*sin(x)*cos(x))
MathematicaTrigExpand[Sin[2*x]]TrigReduce[2*Sin[x]*Cos[x]]
MuPADexpand(sin(2*x))combine(2*sin(x)*cos(x), sincos) +
Octave
Pari
Reduceload\_\,package(assist)\$
trigexpand(sin(2*x))trigreduce(2*sin(x)*cos(x))
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Gr\"obner basis}
Axiomgroebner([p1, p2, ...])
Derive
DoCon
GAP
Macsymagrobner([p1, p2, ...])
Magnus
Maximagrobner([p1, p2, ...])
MapleGroebner[gbasis]([p1, p2, ...], plex(x1, x2, ...))
MathematicaGroebnerBasis[\{p1, p2, ...\}, \{x1, x2, ...\}]
MuPADgroebner::gbasis([p1, p2, ...])
Octave
Pari
Reduceload\_\,package(groebner)\$ \q groebner(\{p1, p2, ...\})
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Factorization of $e$ over $i = \sqrt{-1}$}
Axiomfactor(e, [rootOf(i**2 + 1)])
DeriveFACTOR(e, Complex)
DoCon
GAPFactors(GaussianIntegers,e)
Macsymagfactor(e); \OR\ factor(e, i\^{}2 + 1);
Magnus
Maximagfactor(e); \OR\ factor(e, i\^{}2 + 1);
Maplefactor(e, I);
MathematicaFactor[e, Extension -> I]
MuPADQI:= Dom::AlgebraicExtension(Dom::Rational, i\^{}2 + 1);
QI::name:= "QI": \q Factor(poly(e, QI));
Octave
Pari
Reduceon complex, factor; \q e; \q off complex, factor;
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Real part}\h{Convert a complex expr.\ to rectangular form}
Axiomreal(f(z))complexForm(f(z))
DeriveRE(f(z))f(z)
DoCon
GAP(f(z)+GaloisCyc(f(z),-1))/2
Macsymarealpart(f(z))rectform(f(z))
Magnus
Maximarealpart(f(z))rectform(f(z))
MapleRe(f(z))evalc(f(z))
MathematicaRe[f[z]]ComplexExpand[f[z]]
MuPADRe(f(z))rectform(f(z))
Octave
Pari
Reducerepart(f(z))repart(f(z)) + i*impart(f(z))
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Matrix addition}\h{Matrix multiplication}\h{Matrix transpose}
AxiomA + BA * Btranspose(A)
DeriveA + BA . BA\`{}
DoCon
GAPA + BA * BTransposedMat(A)
MacsymaA + BA . Btranspose(A)
Magnus
MaximaA + BA . Btranspose(A)
Mapleevalm(A + B)evalm(A \* B)linalg[transpose](A)
MathematicaA + BA . BTranspose[A]
MuPADA + BA * Btranspose(A)
Octave
Pari
ReduceA + BA * Btp(A)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Solve the matrix equation $A x = b$}
Axiomsolve(A, transpose(b)) . 1 . particular :: Matrix \_\_\_
Derive
DoCon
GAPSolutionMat(TransposedMat(A),b)
Macsymaxx: genvector('x, mat\_nrows(b))\$
x: part(matlinsolve(A . xx = b, xx), 1, 2)
Magnus
Maximaxx: genvector('x, mat\_nrows(b))\$
x: part(matlinsolve(A . xx = b, xx), 1, 2)
Maplex:= linalg[linsolve](A, b)
Mathematicax = LinearSolve[A, b]
MuPAD
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Sum: $\sum_{i = 1}^n f(i)$}\h{Product: $\prod_{i = 1}^n f(i)$}
Axiomsum(f(i), i = 1..n)product(f(i), i = 1..n)
DeriveSUM(f(i), i, 1, n)PRODUCT(f(i), i, 1, n)
DoCon
GAPSum([1..n],f)Product([1..n],f)
Macsymaclosedform(closedform(
\q sum(f(i), i, 1, n))\q product(f(i), i, 1, n))
Magnus
Maximaclosedform(closedform(
\q sum(f(i), i, 1, n))\q product(f(i), i, 1, n))
Maplesum(f(i), i = 1..n)product(f(i), i = 1..n)
MathematicaSum[f[i], \{i, 1, n\}]Product[f[i], \{i, 1, n\}]
MuPADsum(f(i), i = 1..n)product(f(i), i = 1..n)
Octave
Pari
Reducesum(f(i), i, 1, n)prod(f(i), i, 1, n)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Limit: $\lim_{x \rightarrow 0-} f(x)$}\h{Taylor/Laurent/etc.\ series}
Axiomlimit(f(x), x = 0, "left")series(f(x), x = 0, 3)
DeriveLIM(f(x), x, 0, -1)TAYLOR(f(x), x, 0, 3)
DoCon
GAP
Macsymalimit(f(x), x, 0, minus)taylor(f(x), x, 0, 3)
Magnus
Maximalimit(f(x), x, 0, minus)taylor(f(x), x, 0, 3)
Maplelimit(f(x), x = 0, left)series(f(x), x = 0, 4)
MathematicaLimit[f[x], x->0, Direction->1]Series[f[x],\{x, 0, 3\}]
MuPADlimit(f(x), x = 0, Left)series(f(x), x = 0, 4)
Octave
Pari
Reducelimit!-(f(x), x, 0)taylor(f(x), x, 0, 3)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Differentiate: $\frac{d^3 f(x, y)}{dx \, dy^2}$} \h{Integrate: $\int_0^1 f(x) \, dx$}
AxiomD(f(x, y), [x, y], [1, 2])integrate(f(x), x = 0..1)
DeriveDIF(DIF(f(x, y), x), y, 2)INT(f(x), x, 0, 1)
DoCon
GAP
Macsymadiff(f(x, y), x, 1, y, 2)integrate(f(x), x, 0, 1)
Magnus
Maximadiff(f(x, y), x, 1, y, 2)integrate(f(x), x, 0, 1)
Maplediff(f(x, y), x, y\$2)int(f(x), x = 0..1)
MathematicaD[f[x, y], x, \{y, 2\}]Integrate[f[x], \{x, 0, 1\}]
MuPADdiff(f(x, y), x, y\$2)int(f(x), x = 0..1)
Octave
Pari
Reducedf(f(x, y), x, y, 2)int(f(x), x, 0, 1)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Laplace transform}\h{Inverse Laplace transform}
Axiomlaplace(e, t, s)inverseLaplace(e, s, t)
DeriveLAPLACE(e, t, s)
DoCon
GAP
Macsymalaplace(e, t, s)ilt(e, s, t)
Magnus
Maximalaplace(e, t, s)ilt(e, s, t)
Mapleinttrans[laplace](e,t,s)inttrans[invlaplace](e,s,t)
Mathematica\m{2}{\q << Calculus\`{}LaplaceTransform\`{}}
LaplaceTransform[e, t, s]{\st InverseLaplaceTransform[e,s,t]} +
MuPADtransform::laplace(e,t,s)transform::ilaplace(e, s, t)
Octave
Pari
Reduce\m{2}{\q load\_\,package(laplace)\$ \q load\_\,package(defint)\$} +
laplace(e, t, s)invlap(e, t, s)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Solve an ODE (with the initial condition $y'(0) = 1$)}
Axiomsolve(eqn, y, x)
DeriveAPPLY\_\,IC(RHS(ODE(eqn, x, y, y\_)), [x, 0], [y, 1])
DoCon
GAP
Macsymaode\_ibc(ode(eqn, y(x), x), x = 0, diff(y(x), x) = 1)
Magnus
Maximaode\_ibc(ode(eqn, y(x), x), x = 0, diff(y(x), x) = 1)
Mapledsolve(\{eqn, D(y)(0) = 1\}, y(x))
MathematicaDSolve[\{eqn, y'[0] == 1\}, y[x], x]
MuPADsolve(ode(\{eqn, D(y)(0) = 1\}, y(x)))
Octave
Pari
Reduceodesolve(eqn, y(x), x)
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{Define the differential operator $L = D_x + I$ and apply it to $\sin x$}
AxiomDD : LODO(Expression Integer, e +-> D(e, x)) := D();
L:= DD + 1; \q L(sin(x))
Derive
DoCon
GAP
Macsymaload(opalg)\$ \q L: (diffop(x) - 1)\$ \q L(sin(x));
Magnus
Maximaload(opalg)\$ \q L: (diffop(x) - 1)\$ \q L(sin(x));
Mapleid:= x -> x: \q L:= (D + id): \q L(sin)(x);
MathematicaL = D[\#, x]\+ Identity; \q Through[L[Sin[x]]]
MuPADL:= (D + id): \q L(sin)(x);
Octave
Pari
Reduce
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\h{2D plot of two separate curves overlayed}
Axiomdraw(x, x = 0..1); \q draw(acsch(x), x = 0..1);
Derive[Plot Overlay]
DoCon
GAP
Macsymaplot(x, x, 0, 1)\$ \q plot(acsch(x), x, 0, 1)\$
Magnus
Maximaplot(x, x, 0, 1)\$ \q plot(acsch(x), x, 0, 1)\$
Mapleplot(\{x, arccsch(x)\}, x = 0..1):
MathematicaPlot[\{x, ArcCsch[x]\}, \{x, 0, 1\}];
MuPADplotfunc(x, acsch(x), x = 0..1):
Octave
Pari
Reduceload\_\,package(gnuplot)\$ \q plot(y = x, x = (0 .. 1))\$
plot(y = acsch(x), x = (0 .. 1))\$
Scilab
Sumit
Yacas
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SystemSimple 3D plotting
Axiomdraw(abs(x*y), x = 0..1, y = 0..1);
Derive[Plot Overlay]
DoCon
GAP
Macsymaplot3d(abs(x*y), x, 0, 1, y, 0, 1)\$
Magnus
Maximaplot3d(abs(x*y), x, 0, 1, y, 0, 1)\$
Mapleplot3d(abs(x*y), x = 0..1, y = 0..1):
MathematicaPlot3D[Abs[x*y], \{x, 0, 1\}, \{y, 0, 1\}];
MuPADplotfunc(abs(x*y), x = 0..1, y = 0..1):
Octave
Pari
Reduceload\_\,package(gnuplot)\$
plot(z = abs(x*y), x = (0 .. 1), y = (0 .. 1))\$
Scilab
Sumit
Yacas
+
+ + + + + diff --git a/src/axiom-website/rosetta.pdf b/src/axiom-website/rosetta.pdf new file mode 100644 index 0000000..7a9bfdd Binary files /dev/null and b/src/axiom-website/rosetta.pdf differ diff --git a/src/axiom-website/rosetta.tex b/src/axiom-website/rosetta.tex new file mode 100644 index 0000000..9e14ccc --- /dev/null +++ b/src/axiom-website/rosetta.tex @@ -0,0 +1,1511 @@ +\documentclass{article} +\normalsize\baselineskip=12pt +\parskip=0pt +\parindent=10pt +\tolerance=5000 +\pretolerance=5000 +\frenchspacing +\hangindent=10pt +\skip\footins=18pt +\global\textwidth 31pc \global\textheight 47pc +\headsep 12pt +\oddsidemargin 0pt +\evensidemargin 0pt +% +\renewcommand{\textfraction}{.1} +\renewcommand{\floatpagefraction}{.75} +% +\catcode`@=11 +\def\ps@plain{\let\@mkboth\@gobbletwo% + \let\@oddhead\@empty\def\@oddfoot{\sysdetails} + \let\@evenhead\@empty\let\@evenfoot\@oddfoot} +\def\ps@empty{\let\@mkboth\@gobbletwo% + \let\@oddhead\@empty\def\@oddfoot{\sysdetails} + \let\@evenhead\@empty\let\@evenfoot\@oddfoot} +\catcode`@=12 +% +\def\sysdetails{\parbox{\textwidth}{% +Based on material originally published in {\sl Computer Algebra Systems: A +Practical Guide\/} edited by Michael J.\ Wester, John Wiley \& Sons, +Chichester, United Kingdom, ISBN 0-471-98353-5, xvi+436 pages, 1999.}} +% +\pagestyle{plain} + +\begin{document} +% +% \nth{n} produces 1^{st}, 2^{nd}, 3^{rd}, 4^{th}, etc. +% +\def\nth#1{$#1^{\rm \ifcase#1 th\or st\or nd\or rd\else th\fi}$} +% +% Abbreviations +% +\newcommand{\Axiom}{{\sf Axiom}} +\newcommand{\Derive}{{\sf Derive}} +\newcommand{\DoCon}{{\sf DoCon}} +\newcommand{\GAP}{{\sf GAP}} +\newcommand{\Gmp}{{\sf Gmp}} +\newcommand{\Macsyma}{{\sf Macsyma}} +\newcommand{\Magnus}{{\sf Magnus}} +\newcommand{\Maxima}{{\sf Maxima}} +\newcommand{\Maple}{{\sf Maple}} +\newcommand{\Mathematica}{{\sf Mathematica}} +\newcommand{\MuPAD}{{\sf MuPAD}} +\newcommand{\Octave}{{\sf Octave}} +\newcommand{\Pari}{{\sf Pari}} +\newcommand{\Reduce}{{\sf Reduce}} +\newcommand{\Scilab}{{\sf Scilab}} +\newcommand{\Sumit}{{\sf Sumit}} +\newcommand{\Yacas}{{\sf Yacas}} + +\section{Introduction} + +The following is a collection of synonyms for various operations in +the computer algebra systems \Axiom, \Derive, \GAP, \Gmp, \DoCon, +\Macsyma, \Magnus, \Maxima, \Maple, \Mathematica, \MuPAD, \Octave, +\Pari, \Reduce, \Scilab, \Sumit\ and \Yacas. This collection does not +attempt to be comprehensive, but hopefully it will be useful in giving +an indication of how to translate between the syntaxes used by the +different systems in many common situations. Note that a blank entry +means either (a) that there may be an exact translation of a +particular operation for the indicated system, but we don't know what +it is or (b) there is no exact translation but it may still be +possible to work around this lack with a related functionality. + +While commercial systems are not provided on this CD the intent of the +Rosetta effort is to make it possible for experienced Computer Algebra +users to experiment with other systems. Thus the commands for +commercial systems are included to allow users of those systems to +translate. + +Some of these systems are special purpose and do not support a lot of +the functionality of the more general purpose systems. Where they do +support an interpreter the commands are provided. + +Originally written by Michael Wester. +Modified for Rosetta by Timothy Daly, Alexander Hulpke (GAP). + +\section{System availability} + +\begin{tabular}{l|lll} +System & \rm{License} & \rm{Status (May 2002)} & \rm{Web Location} \\ +\hline +\Axiom & BSD & available & http://www.aldor.org \\ +\Axiom & open source & pending & http://home.earthlink.net/~jgg964/axiom.html \\ +\Derive & commercial & available & http://www.mathware.com \\ +\DoCon & open source & available & http://www.haskell.org/docon \\ +\GAP & GPL & Rosetta & http://www.gap-system.org/~gap \\ +\Gmp & GPL & Rosetta & http://www.swox.com/gmp \\ +\Macsyma & commercial & dead & unavailable \\ +\Magnus & GPL & Rosetta & http://sourceforge.net/projects/magnus \\ +\Maxima & GPL & Rosetta & http://www.ma.utexas.edu/maxima.html\\ +\Maple & commercial & available & http://www.maplesoft.com \\ +\Mathematica & commercial & available & http://www.wolfram.com \\ +\MuPAD & commercial & available & http://www.mupad.de \\ +\Octave & GPL & Rosetta & http://www.octave.org \\ +\Pari & GPL & Rosetta & http://www.parigp-home.de \\ +\Reduce & commercial & available & http://www.zib.de/Symbolik/reduce \\ +\Scilab & Scilab & available & http://www-rocq.inria.fr/scilab \\ +\Sumit & & available & http://www-sop.inria.fr/cafe/soft-f.html \\ +\Yacas & GPL & available & http://yacas.sourceforge.net \\ +\end{tabular} \\[10pt] +\\ +\begin{tabular}{l|ll} +System & \rm{Type} & \rm{Interpreted or Compiled}\\ +\hline +\Axiom & General Purpose & both \\ +\Derive & General Purpose & \\ +\DoCon & General Purpose & Interpreted in Haskell \\ +\GAP & Group Theory & \\ +\Gmp & arb. prec. arithmetic & \\ +\Macsyma & General Purpose & \\ +\Magnus & Infinite Group Theory & \\ +\Maxima & General Purpose & \\ +\Maple & General Purpose & \\ +\Mathematica & General Purpose & \\ +\MuPAD & General Purpose & \\ +\Octave & Numerical Computing & \\ +\Pari & Number Theory & \\ +\Reduce & General Purpose & \\ +\Scilab & General Purpose & \\ +\Sumit & Functional Equations & \\ +\Yacas & General Purpose & \\ +\end{tabular} \\[10pt] + +\section{Programming and Miscellaneous} + +\begingroup +\newcommand{\OR}{{\em or }} +\newcommand{\fnm}{\footnotemark} +\newcommand{\h}[1]{{\rm #1}} +\newcommand{\m}[2]{\multicolumn{#1}{l}{#2}} +\newcommand{\q}{\quad} +\newcommand{\st}{\small\tt} +\parindent=0pt +\hfuzz=1pt +\begin{tt} + +\begin{tabular}{l|ll} +& \m{2}{\rm Unix/Microsoft user initialization file} \\ +\hline +\Axiom & \~{}/axiom.input & \\ +\GAP & \~{}/.gaprc & GAP.RC \\ +\Gmp & & \\ +\DoCon & & \\ +\Derive & & derive.ini \\ +\Macsyma & \~{}/macsyma-init.macsyma & mac-init.mac \\ +\Magnus & & \\ +\Maxima & \~{}/macsyma-init.macsyma & mac-init.mac \\ +\Maple & \~{}/.mapleinit & maplev5.ini \\ +\Mathematica & \~{}/init.m & init.m \\ +\MuPAD & \~{}/.mupadinit & + $\backslash$mupad$\backslash$bin$\backslash$userinit.mu \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & \~{}/.reducerc & reduce.rc \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Describe {\em keyword}} & \h{Find keywords containing {\em pattern}} \\ +\hline +\Axiom & & )what operations pattern \\ +\Derive & & \\ +\DoCon & & \\ +\GAP & ?keyword & ??keyword\\ +\Gmp & & \\ +\Macsyma & describe("keyword")\$ & apropos("pattern"); \\ +\Magnus & & \\ +\Maxima & describe("keyword")\$ & apropos("pattern"); \\ +\Maple & ?keyword & ?pattern\,\fnm \\ +\Mathematica & ?keyword & ?*pattern* \\ +\MuPAD & ?keyword & ?*pattern* \\ +\Octave & help -i keyword & \\ +\Pari & & \\ +\Reduce & & \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\footnotetext{Only if the pattern is not a keyword and then the matches are +simplistic.} + +\begin{tabular}{l|l@{ }llll} +& & & \h{Prev.} & \h{Case} & \h{Variables} \\ +& \h{Comment} & \h{Line continuation} & \h{expr.} & \h{sensitive} & \h{assumed} + \\ +\hline +\Axiom & -- comment & input \_input & \% & Yes & real \\ +\Derive & "comment" & input \~{}input & & No & real \\ +\DoCon & & & & & \\ +\GAP & \# comment & input$\backslash$input&last&Yes&no assumption\\ +\Gmp & & & & & \\ +\Macsyma & /* comment */ & inputinput; & \% & No & real \\ +\Magnus & & & & & \\ +\Maxima & /* comment */ & inputinput; & \% & No & real \\ +\Maple & \# comment & inputinput; & \% & Yes & complex \\ +\Mathematica & (* comment *) & inputinput & \% & Yes & complex \\ +\MuPAD & \# comment \# & inputinput; & \% & Yes & complex \\ +\Octave & \#\# & & & Yes & \\ +\Pari & & & & & \\ +\Reduce & \% comment & inputinput; & ws & No & complex \\ +\Scilab & & & & & \\ +\Sumit & & & & & \\ +\Yacas & & & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Load a file} & \h{Time a command} & \h{Quit} \\ +\hline +\Axiom & )read "file" )quiet & )set messages time on & )quit \\ +\Derive & [Transfer Load Derive] & & [Quit] \\ +\DoCon & & & \\ +\GAP & Read("file"); & time; \h{(also see {\tt Runtime();})}&quit;\\ +\Gmp & & & \\ +\Macsyma & load("file")\$ & showtime: all\$ & quit(); \\ +\Magnus & & & \\ +\Maxima & load("file")\$ & showtime: all\$ & quit(); \\ +\Maple & read("file"): & readlib(showtime): on; & quit \\ +\Mathematica & @<< file & Timing[command] & Quit[] \\ +\MuPAD & read("file"): & time(command); & quit \\ +\Octave & load file & tic(); cmd ; toc() & quit \OR\ exit\\ +\Pari & & & \\ +\Reduce & in "file"\$ & on time; & quit; \\ +\Scilab & & & quit \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Display} & \h{Suppress} & \\ +& \h{output} & \h{output} & \h{Substitution: $f(x, y) \rightarrow f(z, w)$} \\ +\hline +\Axiom & input & input; & subst(f(x, y), [x = z, y = w]) \\ +\Derive & input & var:= input & [Manage Substitute] \\ +\DoCon & & & \\ +\GAP & input; & input;; & Value(f,[x,y],[z,w]);\fnm \\ +\Gmp & & & \\ +\Macsyma & input; & input\$ & subst([x = z, y = w], f(x, y)); \\ +\Magnus & & & \\ +\Maxima & input; & input\$ & subst([x = z, y = w], f(x, y)); \\ +\Maple & input; & input: & subs(\{x = z, y = w\}, f(x, y)); \\ +\Mathematica & input & input; & f[x, y] /. \{x -> z, y -> w\} \\ +\MuPAD & input; & input: & subs(f(x, y), [x = z, y = w]); \\ +\Octave & input & input; & \\ +\Pari & & & \\ +\Reduce & input; & input\$ & sub(\{x = z, y = w\}, f(x, y)); \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Set} & \h{List} & \h{Matrix} \\ +\hline +\Axiom & set [1, 2] & [1, 2] & matrix(@[[1, 2],[3, 4]]) \\ +\Derive & \{1, 2\} & [1, 2] & @[[1,2], [3,4]] \\ +\DoCon & & & \\ +\GAP & Set([1,2]) & [1, 2] & @[[1,2], [3,4]]\fnm \\ +\Gmp & & & \\ +\Macsyma & [1, 2] & [1, 2] & matrix([1, 2], [3, 4]) \\ +\Magnus & & & \\ +\Maxima & [1, 2] & [1, 2] & matrix([1, 2], [3, 4]) \\ +\Maple & \{1, 2\} & [1, 2] & matrix(@[[1, 2], [3, 4]]) \\ +\Mathematica & \{1, 2\} & \{1, 2\} & \{\{1, 2\}, \{3, 4\}\} \\ +\MuPAD & \{1, 2\} & [1, 2] & export(Dom): \q export(linalg): \\ + & & & matrix:= ExpressionField(normal)): \\ + & & & matrix(@[[1, 2], [3, 4]]) \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & \{1, 2\} & \{1, 2\} & mat((1, 2), (3, 4)) \\ +\Scilab & & list(1,2) & A=[1,2;3,4]\\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|llll} +& \h{Equation} & \h{List element} & \h{Matrix element} & \h{Length of a list} \\ +\hline +\Axiom & x = 0 & l . 2 & m(2, 3) & \#l \\ +\Derive & x = 0 & l SUB 2 & m SUB 2 SUB 3 & DIMENSION(l) \\ +\DoCon & & & & \\ +\GAP & x=0 & l[2] & m[2][3] & Length(l) \\ +\Gmp & & & & \\ +\Macsyma & x = 0 & l[2] & m[2, 3] & length(l) \\ +\Magnus & & & & \\ +\Maxima & x = 0 & l[2] & m[2, 3] & length(l) \\ +\Maple & x = 0 & l[2] & m[2, 3] & nops(l) \\ +\Mathematica & x == 0 & l@[[2]] & m@[[2, 3]] & Length[l] \\ +\MuPAD & x = 0 & l[2] & m[2, 3] & nops(l) \\ +\Octave & & & & \\ +\Pari & & & & \\ +\Reduce & x = 0 & part(l, 2) & m(2, 3) & length(l) \\ +\Scilab & & l(2) & & \\ +\Sumit & & & & \\ +\Yacas & & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \m{2}{\rm Prepend/append an element to a list} & \h{Append two lists} \\ +\hline +\Axiom & cons(e, l) & concat(l, e) & append(l1, l2) \\ +\Derive & APPEND([e], l) & APPEND(l, [e]) & APPEND(l1, l2) \\ +\DoCon & & & \\ +\GAP & Concatenation([e],l) & Add(l,e) & Append(l1, l2) \\ +\Gmp & & & \\ +\Macsyma & cons(e, l) & endcons(e, l) & append(l1, l2) \\ +\Magnus & & & \\ +\Maxima & cons(e, l) & endcons(e, l) & append(l1, l2) \\ +\Maple & [e, op(l)] & [op(l), e] & [op(l1), op(l2)] \\ +\Mathematica & Prepend[l, e] & Append[l, e] & Join[l1, l2] \\ +\MuPAD & [e, op(l)] & append(l, e) & l1 . l2 \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & e . l & append(l, {e}) & append(l1, l2) \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Matrix column dimension} & \h{Convert a list into a column vector} \\ +\hline +\Axiom & ncols(m) & transpose(matrix([l])) \\ +\Derive & DIMENSION(m SUB 1) & [l]\`{} \\ +\DoCon & & \\ +\GAP & Length(mat[1]) & \h{objects are identical} \\ +\Gmp & & \\ +\Macsyma & mat\_\,ncols(m) & transpose(matrix(l)) \\ +\Magnus & & \\ +\Maxima & mat\_\,ncols(m) & transpose(matrix(l)) \\ +\Maple & linalg[coldim](m) & linalg[transpose](matrix([l])) \\ +\Mathematica & Dimensions[m]@[[2]] & Transpose[\{l\}] \\ +\MuPAD & linalg::ncols(m) & transpose(matrix([l]))\,\fnm \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & load\_\,package(linalg)\$ & matrix v(length(l), 1)\$ \\ + & column\_dim(m) & for i:=1:length(l) do \\ + & & \q\q v(i, 1):= part(l, i) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\footnotetext{See the definition of {\tt matrix} above.} + +\begin{tabular}{l|l} +& \h{Convert a column vector into a list} \\ +\hline +\Axiom & [v(i, 1) for i in 1..nrows(v)] \\ +\Derive & v\`{} SUB 1 \\ +\DoCon & \\ +\GAP & \h{objects are identical} \\ +\Gmp & \\ +\Macsyma & part(transpose(v), 1) \\ +\Magnus & \\ +\Maxima & part(transpose(v), 1) \\ +\Maple & op(convert(linalg[transpose](v), listlist)) \\ +\Mathematica & Flatten[v] \\ +\MuPAD & [op(v)] \\ +\Octave & \\ +\Pari & \\ +\Reduce & load\_\,package(linalg)\$ \\ + & for i:=1:row\_\,dim(v) collect(v(i, 1)) \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lllllll} +& \h{True} & \h{False} & \h{And} & \h{Or} & \h{Not} & \h{Equal} & \h{Not equal} + \\ +\hline +\Axiom & true & false & and & or & not & = & \~{}= \\ +\Derive & TRUE & FALSE & AND & OR & NOT & = & /= \\ +\DoCon & & & & & & & \\ +\GAP & true & false\fnm & and & or & not & = & <> \\ +\Gmp & & & & & & & \\ +\Macsyma & true & false & and & or & not & = & \# \\ +\Magnus & & & & & & & \\ +\Maxima & true & false & and & or & not & = & \# \\ +\Maple & true & false & and & or & not & = & <> \\ +\Mathematica & True & False & \&\& & || & ! & == & != \\ +\MuPAD & true & false & and & or & not & = & <> \\ +\Octave & & & & & & & \\ +\Pari & & & & & & & \\ +\Reduce & t & nil & and & or & not & = & neq \\ +\Scilab & \%t & \%f & & & & & \\ +\Sumit & & & & & & & \\ +\Yacas & & & & & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{If+then+else statements} & \h{Strings (concatenated)} \\ +\hline +\Axiom & if \_ then \_ else if \_ then \_ else \_ & concat(["x", "y"]) \\ +\Derive & IF(\_, \_, IF(\_, \_, \_)) & "xy" \\ +\DoCon & & \\ +\GAP & if \_ then \_ elif \_ then \_ else \_ fi & Concatenation("x","y")\\ +\Gmp & & \\ +\Macsyma & if \_ then \_ else if \_ then \_ else \_ & concat("x", "y") \\ +\Magnus & & \\ +\Maxima & if \_ then \_ else if \_ then \_ else \_ & concat("x", "y") \\ +\Maple & if \_ then \_ elif \_ then \_ else \_ fi & "x" . "y" \\ +\Mathematica & If[\_, \_, If[\_, \_, \_]] & "x" <> "y" \\ +\MuPAD & if \_ then \_ elif \_ then \_ else \_ & "x" . "y" \\ + & \q\q end\_if & \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & if \_ then \_ else if \_ then \_ else \_ & "xy" \OR\ mkid(x, y)\\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Simple loop and Block} & \h{Generate the list $[1, 2, \ldots, n]$} \\ +\hline +\Axiom & for i in 1..n repeat ( x; y ) & [f(i) for i in 1..n] \\ +\Derive & VECTOR([x, y], i, 1, n) & VECTOR(f(i), i, 1, n) \\ +\DoCon & & \\ +\GAP & for i in [1..n] do \_ od; & [1..n] {\rm or} [1,2..n]\\ +\Gmp & & \\ +\Macsyma & for i:1 thru n do (x, y); & makelist(f(i), i, 1, n); \\ +\Magnus & & \\ +\Maxima & for i:1 thru n do (x, y); & makelist(f(i), i, 1, n); \\ +\Maple & for i from 1 to n do x; y od; & [f(i) \$ i = 1..n]; \\ +\Mathematica & Do[x; y, \{i, 1, n\}] & Table[f[i], \{i, 1, n\}] \\ +\MuPAD & for i from 1 to n do x; y & [f(i) \$ i = 1..n]; \\ + & \q\q end\_for; & \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & for i:=1:n do @<>; & for i:=1:n collect f(i); \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Complex loop iterating on a list} \\ +\hline +\Axiom & for x in [2, 3, 5] while x**2 < 10 repeat output(x) \\ +\Derive & \\ +\DoCon & \\ +\GAP & for x in [2, 3, 5] do while x\^{}2<10 do Print(x);od;od; \\ +\Gmp & \\ +\Macsyma & for x in [2, 3, 5] while x\^{}2 < 10 do print(x)\$ \\ +\Magnus & \\ +\Maxima & for x in [2, 3, 5] while x\^{}2 < 10 do print(x)\$ \\ +\Maple & for x in [2, 3, 5] while x\^{}2 < 10 do print(x) od: \\ +\Mathematica & For[l = \{2, 3, 5\}, l != \{\} \&\& l@[[1]]\^{}2 < 10, \\ + & \q l = Rest[l], Print[l@[[1]]] ] \\ +\MuPAD & for x in [2, 3, 5] do if x\^{}2 < 10 then print(x) end\_if \\ + & \q end\_for: \\ +\Octave & \\ +\Pari & \\ +\Reduce & for each x in \{2, 3, 5\} do if x\^{}2 < 10 then write(x)\$ \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{\small Assignment} & \h{Function definition} & \h{Clear vars and funs} \\ +\hline +\Axiom & y:= f(x) & f(x, y) == x*y & + {\small\tt )clear properties y f} \\ +\Derive & y:= f(x) & f(x, y):= x*y & y:= f:= \\ +\DoCon & & & \\ +\GAP & y:= f(x); & f:=function(x, y) return x*y; end; & \h{There are +no symbolic variables}\\ +\Gmp & & & \\ +\Macsyma & y: f(x); & f(x, y):= x*y; & remvalue(y)\$ \\ + & & & remfunction(f)\$ \\ +\Magnus & & & \\ +\Maxima & y: f(x); & f(x, y):= x*y; & remvalue(y)\$ \\ + & & & remfunction(f)\$ \\ +\Maple & y:= f(x); & f:= proc(x, y) x*y end; & y:= 'y': f:= 'f': \\ +\Mathematica & y = f[x] & f[x\_, y\_\,]:= x*y & Clear[y, f] \\ +\MuPAD & y:= f(x); & f:= proc(x, y) & y:= NIL: f:= NIL: \\ + & & \q\q begin x*y end\_\,proc; & \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & y:= f(x); & procedure f(x, y); x*y; & clear y, f; \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Function definition with a local variable} \\ +\hline +\Axiom & f(x) == (local n; n:= 2; n*x) \\ +\Derive & \\ +\DoCon & \\ +\GAP & f:=function(x) local n; n:=2;return n*x; end; \\ +\Gmp & \\ +\Macsyma & f(x):= block([n], n: 2, n*x); \\ +\Magnus & \\ +\Maxima & f(x):= block([n], n: 2, n*x); \\ +\Maple & f:= proc(x) local n; n:= 2; n*x end; \\ +\Mathematica & f[x\_\,]:= Module[\{n\}, n = 2; n*x] \\ +\MuPAD & f:= proc(x) local n; begin n:= 2; n*x end\_\,proc; \\ +\Octave & \\ +\Pari & \\ +\Reduce & procedure f(x); begin scalar n; n:= 2; return(n*x) end; \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Return unevaluated symbol} & \h{Define a function from an expression} \\ +\hline +\Axiom & e:= x*y;\q 'e & function(e, f, x, y) \\ +\Derive & e:= x*y\q 'e & f(x, y):== e \\ +\DoCon & & \\ +\GAP & \h{No unevaluated symbols}\fnm&\\ +\Gmp & & \\ +\Macsyma & e: x*y\$\q 'e; & define(f(x, y), e); \\ +\Magnus & & \\ +\Maxima & e: x*y\$\q 'e; & define(f(x, y), e); \\ +\Maple & e:= x*y:\q 'e'; & f:= unapply(e, x, y); \\ +\Mathematica & e = x*y;\q HoldForm[e] & f[x\_, y\_\,] = e \\ +\MuPAD & e:= x*y:\q hold(e); & f:= hold(func)(e, x, y); \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & e:= x*y\$ & for all x, y let f(x, y):= e; \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] +\footnotetext{Variables can be assigned to generators of a suitable free +object, for example {\tt x:=X(Rationals,"x");} or {\tt +f:=FreeGroup(2);x:=f.1;}.} +\addtocounter{footnote}{-1}% + +\begin{tabular}{l|ll} +& \h{Fun.\ of an indefinite number of args} & \h{Apply ``+'' to sum a list} \\ +\hline +\Axiom & & reduce(+, [1, 2]) \\ +\Derive & LST l:= l & \\ +\DoCon & & \\ +\GAP & lst:=function(args) \_ end; & Sum([1,2])\\ +\Gmp & & \\ +\Macsyma & lst([l]):= l; & apply("+", [1, 2]) \\ +\Magnus & & \\ +\Maxima & lst([l]):= l; & apply("+", [1, 2]) \\ +\Maple & lst:=proc() [args[1..nargs]] end; & convert([1, 2], \`{}+\`{}) \\ +\Mathematica & lst[l\_\,\_\,\_\,]:= \{l\} & Apply[Plus, \{1, 2\}] \\ +\MuPAD & lst:= proc(l) begin [args()] & \_\,plus(op([1, 2])) \\ + & \q\q\q end\_\,proc; & \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & & xapply(+, \{1, 2\})\,\fnm \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\footnotetext{\tt procedure xapply(f, lst); lisp(f . cdr(lst))\$} +\addtocounter{footnote}{-1}% + +\begin{tabular}{l|ll} +& \h{Apply a fun.\ to a} & \\ +& \h{list of its args} & \h{Map an anonymous function onto a list} \\ +\hline +\Axiom & reduce(f, l) & map(x +-> x + y, [1, 2]) \\ +\Derive & & x:= [1, 2] \\ + & & VECTOR(x SUB i + y, i, 1, DIMENSION(x)) \\ +\DoCon & & \\ +\GAP & List(l,f) & List([1,2],x->x+y) \\ +\Gmp & & \\ +\Macsyma & apply(f, l) & map(lambda([x], x + y), [1, 2]) \\ +\Magnus & & \\ +\Maxima & apply(f, l) & map(lambda([x], x + y), [1, 2]) \\ +\Maple & f(op(l)) & map(x -> x + y, [1, 2]) \\ +\Mathematica & Apply[f, l] & Map[\# + y \&, \{1, 2\}] \\ +\MuPAD & f(op(l)) & map([1, 2], func(x + y, x)) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & xapply(f, l)\,\fnm & for each x in \{1, 2\} collect x + y \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Pattern matching: $f(3 y) + f(z y) \rightarrow 3 f(y) + f(z y)$} \\ +\hline +\Axiom & f:= operator('f); \\ + & ( rule f((n | integer?(n)) * x) == n*f(x) )( \_ \\ + & \q\q f(3*y) + f(z*y)) \\ +\Derive & \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & matchdeclare(n, integerp, x, true)\$ \\ + & defrule(fnx, f(n*x), n*f(x))\$ \\ + & apply1(f(3*y) + f(z*y), fnx); \\ +\Magnus & \\ +\Maxima & matchdeclare(n, integerp, x, true)\$ \\ + & defrule(fnx, f(n*x), n*f(x))\$ \\ + & apply1(f(3*y) + f(z*y), fnx); \\ +\Maple & map(proc(q) local m; \\ + & \q\q\q if match(q = f(n*y), y, 'm') and \\ + & \q\q\q\q\q type(rhs(op(m)), integer) then \\ + & \q\q\q\q subs(m, n * f(y)) else q fi \\ + & \q\q end, \\ + & \q\q f(3*y) + f(z*y)); \\ +\Mathematica & f[3*y] + f[z*y] /. f[n\_Integer * x\_\,] -> n*f[x] \\ +\MuPAD & d:= domain("match"): \q d::FREEVARIABLE:= TRUE: \\ + & n:= new(d, "n", func(testtype(m, DOM\_INT), m)): \\ + & x:= new(d, "x", TRUE): \\ + & map(f(3*y) + f(z*y), \\ + & \q\q proc(q) local m; begin m:= match(q, f(n*x)); \\ + & \q\q\q if m = FAIL then q \\ + & \q\q\q else subs(hold("n" * f("x")), m) end\_if \\ + & \q\q end\_\,proc); \\ +\Octave & \\ +\Pari & \\ +\Reduce & operator f; \\ + & f(3*y) + f(z*y) \\ + & \q\q where \{f(\~{}n * \~{}x) => n*f(x) when fixp(n)\}; \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Define a new infix operator and then use it} \\ +\hline +\Axiom & \\ +\Derive & \\ +\DoCon & \\ +\GAP &\h{One can overload existing infix operators for ones own purposes}\\ +\Gmp & \\ +\Macsyma & infix("\~{}")\$ \q "\~{}"(x, y):= sqrt(x\^{}2 + y\^{}2)\$ \q + 3 \~{} 4; \\ +\Magnus & \\ +\Maxima & infix("\~{}")\$ \q "\~{}"(x, y):= sqrt(x\^{}2 + y\^{}2)\$ \q + 3 \~{} 4; \\ +\Maple & \`{}\&\~{}\`{}:= (x, y) -> sqrt(x\^{}2 + y\^{}2): \q 3 \&\~{} 4; + \\ +\Mathematica & x\_ $\backslash$[Tilde] y\_:= Sqrt[x\^{}2 + y\^{}2]; \q + 3 $\backslash$[Tilde] 4 \\ +\MuPAD & tilde:= proc(x, y) begin sqrt(x\^{}2 + y\^{}2) end\_\,proc: \\ + & \q 3 \&tilde 4; \\ +\Octave & \\ +\Pari & \\ +\Reduce & infix |\$ \q procedure |(x, y); sqrt(x\^{}2 + y\^{}2)\$ \q + 3 | 4; \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Main expression} & & \\ +& \h{operator} & \h{\nth{1} operand} & \h{List of expression operands} \\ +\hline +\Axiom\fnm & & kernels(e) . 1 & kernels(e) \\ +\Derive & & & {\em various}\fnm \\ +\DoCon & & & \\ +\GAP &\m{3}{\rm There are no formal unevaluated expressions}\\ +\Gmp & & & \\ +\Macsyma & part(e, 0) & part(e, 1) & args(e) \\ +\Magnus & & & \\ +\Maxima & part(e, 0) & part(e, 1) & args(e) \\ +\Maple & op(0, e) & op(1, e) & [op(e)] \\ +\Mathematica & Head[e] & e@[[1]] & ReplacePart[e, List, 0] \\ +\MuPAD & op(e, 0) & op(e, 1) & [op(e)] \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & part(e, 0) & part(e, 1) & for i:=1:arglength(e) \\ + & & & \q\q collect part(e, i) \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\addtocounter{footnote}{-1}% +\footnotetext{The following commands work only on expressions that consist of a +single level (e.g., $x + y + z$ but not $a/b + c/d$).} +\addtocounter{footnote}{-1}% +\footnotetext{{\tt TERMS}, {\tt FACTORS}, {\tt NUMERATOR}, {\tt LHS}, etc.} + +\begin{tabular}{l|l} +& \h{Print text and results} \\ +\hline +\Axiom & output(concat(["sin(", string(0), ") = ", \\ + & \q string(sin(0))])); \\ +\Derive & "sin(0)" = sin(0) \\ +\DoCon & \\ +\GAP & Print("There is no sin, but factors(10)= ",Factors(10), +"$\backslash$n")\\ +\Gmp & \\ +\Macsyma & print("sin(", 0, ") =", sin(0))\$ \\ +\Magnus & \\ +\Maxima & print("sin(", 0, ") =", sin(0))\$ \\ +\Maple & printf("sin(\%a) = \%a$\backslash$n", 0, sin(0)): \\ +\Mathematica & Print[StringForm["sin(\`{}\`{}) = \`{}\`{}", 0, Sin[0]]]; \\ +\MuPAD & print(Unquoted, "sin(".0.")" = sin(0)): \\ +\Octave & \\ +\Pari & \\ +\Reduce & write("sin(", 0, ") = ", sin(0))\$ \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Generate FORTRAN} & \h{Generate \TeX/\LaTeX} \\ +\hline +\Axiom & outputAsFortran(e) & outputAsTex(e) \\ +\Derive & [Transfer Save Fortran] & \\ +\DoCon & & \\ +\GAP &&Print(LaTeX(e));\\ +\Gmp & & \\ +\Macsyma & fortran(e)\$ \OR gentran(eval(e))\$ & tex(e); \\ +\Magnus & & \\ +\Maxima & fortran(e)\$ \OR gentran(eval(e))\$ & tex(e); \\ +\Maple & fortran([e]); & latex(e); \\ +\Mathematica & FortranForm[e] & TexForm[e] \\ +\MuPAD & generate::fortran(e); & generate::TeX(e); \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & on fort; \q e; \q off fort; \OR & load\_\,package(tri)\$ \\ + & load\_\,package(gentran)\$ gentran e; & on TeX; e; off TeX; \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Import two space separated columns of integers from {\tt file}} \\ +\hline +\Axiom & \\ +\Derive & [Transfer Load daTa] ({\rm from} file.dat) \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & xy: read\_num\_data\_to\_matrix("file", nrows, 2)\$ \\ +\Magnus & \\ +\Maxima & xy: read\_num\_data\_to\_matrix("file", nrows, 2)\$ \\ +\Maple & xy:= readdata("file", integer, 2): \\ +\Mathematica & xy = ReadList["file", Number, RecordLists -> True] \\ +\MuPAD & \\ +\Octave & \\ +\Pari & \\ +\Reduce & \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Export two space separated columns of integers to {\tt file}\fnm} \\ +\hline +\Axiom & )set output algebra "file" \q ({\rm creates} file.spout) \\ + & for i in 1..n repeat output( \_ \\ + & \q concat([string(xy(i, 1)), " ", string(xy(i, 2))]) ) \\ + & )set output algebra console \\ +\Derive & xy [Transfer Print Expressions File]\q({\rm creates} file.prt)\\ +\DoCon & \\ +\GAP & PrintTo("file");for i in [1..n] do\\ + &\q AppendTo("file",xy[i][1]," ",xy[i][2],"$\backslash$n");od;\\ +\Gmp & \\ +\Macsyma & writefile("file")\$ \q for i:1 thru n do \\ + & \q print(xy[i, 1], xy[i, 2])\$ \q closefile()\$ \\ +\Magnus & \\ +\Maxima & writefile("file")\$ \q for i:1 thru n do \\ + & \q print(xy[i, 1], xy[i, 2])\$ \q closefile()\$ \\ +\Maple & writedata("file", xy); \\ +\Mathematica & outfile = OpenWrite["file"]; \\ + & Do[WriteString[outfile, \\ + & \q xy@[[i, 1]], " ", xy@[[i, 2]], "$\backslash$n"], \{i, 1, n\}] \\ + & Close[outfile]; \\ +\MuPAD & fprint(Unquoted, Text, "file", \\ + & \q ("$\backslash$n", xy[i, 1], xy[i, 2]) \$ i = 1..n): \\ +\Octave & \\ +\Pari & \\ +\Reduce & out "file"; \q for i:=1:n do \\ + & \q write(xy(i, 1), " ", xy(i, 2)); \q shut "file"; \\ +\Scilab & \\ +\Sumit & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\footnotetext{Some editing of {\tt file} will be necessary for all systems but +\Maple\ and \Mathematica.} + +\section{Mathematics and Graphics} + +{\rm Since {\GAP} aims at discrete mathematics, it does not provide much of +the calculus functionality listed in the following section.} + +\begin{tabular}{l|llllll} +& $e$ & $\pi$ & $i$ & $+\infty$ & $\sqrt{2}$ & $2^{1/3}$ \\ +\hline +\Axiom & \%e & \%pi & \%i & \%plusInfinity & sqrt(2) & 2**(1/3) \\ +\Derive & \#e & pi & \#i & inf & SQRT(2) & 2\^{}(1/3) \\ +\DoCon & & & & & & \\ +\GAP & & & E(4) & infinity & ER(2)\fnm &\\ +\Gmp & & & & & & \\ +\Macsyma & \%e & \%pi & \%i & inf & sqrt(2) & 2\^{}(1/3) \\ +\Magnus & & & & & & \\ +\Maxima & \%e & \%pi & \%i & inf & sqrt(2) & 2\^{}(1/3) \\ +\Maple & exp(1) & Pi & I & infinity & sqrt(2) & 2\^{}(1/3) \\ +\Mathematica & E & Pi & I & Infinity & Sqrt[2] & 2\^{}(1/3) \\ +\MuPAD & E & PI & I & infinity & sqrt(2) & 2\^{}(1/3) \\ +\Octave & & & & & & \\ +\Pari & & & & & & \\ +\Reduce & e & pi & i & infinity & sqrt(2) & 2\^{}(1/3) \\ +\Scilab & & & & & & \\ +\Sumit & & & & & & \\ +\Yacas & & & & & & \\ +\end{tabular} \\[10pt] +\footnotetext{{\tt ER} represents special cyclotomic numbers and is not a +root function.} +\addtocounter{footnote}{-1}% + +\begin{tabular}{l|llll} +& \h{Euler's constant} & \h{Natural log} & \h{Arctangent} & $n!$ \\ +\hline +\Axiom & & log(x) & atan(x) & factorial(n) \\ +\Derive & euler\_\,gamma & LOG(x) & ATAN(x) & n! \\ +\DoCon & & & & \\ +\GAP & & LogInt(x,base) && Factorial(n) \\ +\Gmp & & & & \\ +\Macsyma & \%gamma & log(x) & atan(x) & n! \\ +\Magnus & & & & \\ +\Maxima & \%gamma & log(x) & atan(x) & n! \\ +\Maple & gamma & log(x) & arctan(x) & n! \\ +\Mathematica & EulerGamma & Log[x] & ArcTan[x] & n! \\ +\MuPAD & EULER & ln(x) & atan(x) & n! \\ +\Octave & & & & \\ +\Pari & & & & \\ +\Reduce & Euler\_\,Gamma & log(x) & atan(x) & factorial(n) \\ +\Scilab & & & & \\ +\Sumit & & & & \\ +\Yacas & & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Legendre polynomial} & \h{Chebyshev poly.\ of the \nth{1} kind} \\ +\hline +\Axiom & legendreP(n, x) & chebyshevT(n, x) \\ +\Derive & LEGENDRE\_\,P(n, x) & CHEBYCHEV\_\,T(n, x) \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & legendre\_\,p(n, x) & chebyshev\_\,t(n, x) \\ +\Magnus & & \\ +\Maxima & legendre\_\,p(n, x) & chebyshev\_\,t(n, x) \\ +\Maple & orthopoly[P](n, x) & orthopoly[T](n, x) \\ +\Mathematica & LegendreP[n, x] & ChebyshevT[n, x] \\ +\MuPAD & orthpoly::legendre(n, x) & orthpoly::chebyshev1(n, x) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & LegendreP(n, x) & ChebyshevT(n, x) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Fibonacci number} & \h{Elliptic integral of the \nth{1} kind} \\ +\hline +\Axiom & fibonacci(n) & \\ +\Derive & FIBONACCI(n) & ELLIPTIC\_\,E(phi, k\^{}2) \\ +\DoCon & & \\ +\GAP & Fibonacci(n) & \\ +\Gmp & & \\ +\Macsyma & fib(n) & elliptic\_\,e(phi, k\^{}2) \\ +\Magnus & & \\ +\Maxima & fib(n) & elliptic\_\,e(phi, k\^{}2) \\ +\Maple & combinat[fibonacci](n) & EllipticE(sin(phi), k) \\ +\Mathematica & Fibonacci[n] & EllipticE[phi, k\^{}2] \\ +\MuPAD & numlib::fibonacci(n) & \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & & EllipticE(phi, k\^{}2) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|llll} +& $\Gamma(x)$ & $\psi(x)$ & \h{Cosine integral} & \h{Bessel fun.\ (\nth{1})} \\ +\hline +\Axiom & Gamma(x) & psi(x) & real(Ei(\%i*x)) & besselJ(n, x) \\ +\Derive & GAMMA(x) & PSI(x) & CI(x) & BESSEL\_\,J(n, x) \\ +\DoCon & & & & \\ +\GAP & & & & \\ +\Gmp & & & & \\ +\Macsyma & gamma(x) & psi[0](x) & cos\_\,int(x) & bessel\_j[n](x) \\ +\Magnus & & & & \\ +\Maxima & gamma(x) & psi[0](x) & cos\_\,int(x) & bessel\_j[n](x) \\ +\Maple & GAMMA(x) & Psi(x) & Ci(x) & BesselJ(n, x) \\ +\Mathematica & Gamma[x] & PolyGamma[x] & CosIntegral[x] & BesselJ[n, x] \\ +\MuPAD & gamma(x) & psi(x) & & besselJ(n, x) \\ +\Octave & & & & \\ +\Pari & & & & \\ +\Reduce & Gamma(x) & Psi(x) & Ci(x) & BesselJ(n, x) \\ +\Scilab & & & & \\ +\Sumit & & & & \\ +\Yacas & & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Hypergeometric fun.\ ${}_2F_1(a, b; c; x)$} & \h{Dirac delta} & + \h{Unit step fun.} \\ +\hline +\Axiom & & & \\ +\Derive & GAUSS(a, b, c, x) & & STEP(x) \\ +\DoCon & & & \\ +\GAP & & & \\ +\Gmp & & & \\ +\Macsyma & hgfred([a, b], [c], x) & delta(x) & unit\_\,step(x) + \\ +\Magnus & & & \\ +\Maxima & hgfred([a, b], [c], x) & delta(x) & unit\_\,step(x) + \\ +\Maple & hypergeom([a, b], [c], x) & Dirac(x) & Heaviside(x) \\ +\Mathematica & HypergeometricPFQ[\{a,b\},\{c\},x] & + \m{2}{@<< Calculus\`{}DiracDelta\`{}} \\ +\MuPAD & & dirac(x) & heaviside(x) \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & hypergeometric(\{a, b\}, \{c\}, x) & & \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Define $|x|$ via a piecewise function} \\ +\hline +\Axiom & \\ +\Derive & a(x):= -x*CHI(-inf, x, 0) + x*CHI(0, x, inf) \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & a(x):= -x*unit\_\,step(-x) + x*unit\_\,step(x)\$ \\ +\Magnus & \\ +\Maxima & a(x):= -x*unit\_\,step(-x) + x*unit\_\,step(x)\$ \\ +\Maple & a:= x -> piecewise(x < 0, -x, x): \\ +\Mathematica & @<< Calculus\`{}DiracDelta\`{} \\ + & a[x\_]:= -x*UnitStep[-x] + x*UnitStep[x] \\ +\MuPAD & a:= proc(x) begin -x*heaviside(-x) + x*heaviside(x) \\ + & \q\q end\_\,proc: \\ +\Octave & \\ +\Pari & \\ +\Reduce & \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Assume $x$ is real} & \h{Remove that assumption} \\ +\hline +\Axiom & & \\ +\Derive & x :epsilon Real & x:= \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & declare(x, real)\$ & remove(x, real)\$ \\ +\Magnus & & \\ +\Maxima & declare(x, real)\$ & remove(x, real)\$ \\ +\Maple & assume(x, real); & x:= 'x': \\ +\Mathematica & x/: Im[x] = 0; & Clear[x] \\ +\MuPAD & assume(x, Type::RealNum): & unassume(x, Type::RealNum): \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & & \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Assume $0 < x \le 1$} & \h{Remove that assumption} \\ +\hline +\Axiom & & \\ +\Derive & x :epsilon (0, 1] & x:= \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & assume(x > 0, x <= 1)\$ & forget(x > 0, x <= 1)\$ \\ +\Magnus & & \\ +\Maxima & assume(x > 0, x <= 1)\$ & forget(x > 0, x <= 1)\$ \\ +\Maple & assume(x > 0); & x:= 'x': \\ + & additionally(x <= 1); & \\ +\Mathematica & Assumptions -> 0 < x <= 1\,\fnm & \\ +\MuPAD & assume(x > 0): assume(x <= 1): & unassume(x): \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & & \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\footnotetext{This is an option for {\tt Integrate}.} + +\begin{tabular}{l|l} +& \h{Basic simplification of an expression $e$} \\ +\hline +\Axiom & simplify(e) \OR\ normalize(e) \OR\ complexNormalize(e) \\ +\Derive & e \\ +\DoCon & \\ +\GAP & e \\ +\Gmp & \\ +\Macsyma & ratsimp(e) \OR\ radcan(e) \\ +\Magnus & \\ +\Maxima & ratsimp(e) \OR\ radcan(e) \\ +\Maple & simplify(e) \\ +\Mathematica & Simplify[e] \OR\ FullSimplify[e] \\ +\MuPAD & simplify(e) \OR\ normal(e) \\ +\Octave & \\ +\Pari & \\ +\Reduce & e \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Use an unknown function} & \h{Numerically evaluate an expr.} \\ +\hline +\Axiom & f:= operator('f); \q f(x) & exp(1) :: Complex Float \\ +\Derive & f(x):= & Precision:= Approximate \\ + & f(x) & APPROX(EXP(1)) \\ + & & Precision:= Exact \\ +\DoCon & & \\ +\GAP & & EvalF(123/456)\\ +\Gmp & & \\ +\Macsyma & f(x) & sfloat(exp(1)); \\ +\Magnus & & \\ +\Maxima & f(x) & sfloat(exp(1)); \\ +\Maple & f(x) & evalf(exp(1)); \\ +\Mathematica & f[x] & N[Exp[1]] \\ +\MuPAD & f(x) & float(exp(1)); \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & operator f; \q f(x) & on rounded; \q exp(1); \\ + & & off rounded; \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& $ n \bmod m$ & \h{Solve $e \equiv 0 \bmod m$ for $x$} \\ +\hline +\Axiom & rem(n, m) & solve(e = 0 :: PrimeField(m), x) \\ +\Derive & MOD(n, m) & SOLVE\_\,MOD(e = 0, x, m) \\ +\DoCon & & \\ +\GAP & n mod m & \h{solve using finite fields}\\ +\Gmp & & \\ +\Macsyma & mod(n, m) & modulus: m\$ \q solve(e = 0, x) \\ +\Magnus & & \\ +\Maxima & mod(n, m) & modulus: m\$ \q solve(e = 0, x) \\ +\Maple & n mod m & msolve(e = 0, m) \\ +\Mathematica & Mod[n, m] & Solve[\{e == 0, Modulus == m\}, x] \\ +\MuPAD & n mod m & solve(poly(e = 0, [x], IntMod(m)), x) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & on modular; & load\_\,package(modsr)\$ \q on modular; \\ + & setmod m\$ \q n & setmod m\$ \q m\_solve(e = 0, x) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Put over common denominator} & \h{Expand into separate fractions} \\ +\hline +\Axiom & a/b + c/d & (a*d + b*c)/(b*d) :: \_ \\ + & & \q MPOLY([a], FRAC POLY INT) \\ +\Derive & FACTOR(a/b + c/d, Trivial) & EXPAND((a*d + b*c)/(b*d)) \\ +\DoCon & & \\ +\GAP & a/b+c/d &\\ +\Gmp & & \\ +\Macsyma & xthru(a/b + c/d) & expand((a*d + b*c)/(b*d)) \\ +\Magnus & & \\ +\Maxima & xthru(a/b + c/d) & expand((a*d + b*c)/(b*d)) \\ +\Maple & normal(a/b + c/d) & expand((a*d + b*c)/(b*d)) \\ +\Mathematica & Together[a/b + c/d] & Apart[(a*d + b*c)/(b*d)] \\ +\MuPAD & normal(a/b + c/d) & expand((a*d + b*c)/(b*d)) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & a/b + c/d & on div; (a*d + b*c)/(b*d) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Manipulate the root of a polynomial} \\ +\hline +\Axiom & a:= rootOf(x**2 - 2); \q a**2 \\ +\Derive & \\ +\DoCon & \\ +\GAP & x:=X(Rationals,"x");\\ +&\q a:=RootOfDefiningPolynomial(AlgebraicExtension(Rationals,x\^{}2-2)); +a\^{}2\\ +\Gmp & \\ +\Macsyma & algebraic:true\$ \q tellrat(a\^{}2 - 2)\$ \q rat(a\^{}2); \\ +\Magnus & \\ +\Maxima & algebraic:true\$ \q tellrat(a\^{}2 - 2)\$ \q rat(a\^{}2); \\ +\Maple & a:= RootOf(x\^{}2 - 2): \q simplify(a\^{}2); \\ +\Mathematica & a = Root[\#\^{}2 - 2 \&, 2] \q a\^{}2 \\ +\MuPAD & \\ +\Octave & \\ +\Pari & \\ +\Reduce & load\_\,package(arnum)\$ \q defpoly(a\^{}2 - 2); \q a\^{}2; \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Noncommutative multiplication} & \h{Solve a pair of equations} \\ +\hline +\Axiom & & solve([eqn1, eqn2], [x, y]) \\ +\Derive & x :epsilon Nonscalar & SOLVE([eqn1, eqn2], [x, y]) \\ + & y :epsilon Nonscalar & \\ + & x . y & \\ +\DoCon & & \\ +\GAP &*&\\ +\Gmp & & \\ +\Macsyma & x . y & solve([eqn1, eqn2], [x, y]) \\ +\Magnus & & \\ +\Maxima & x . y & solve([eqn1, eqn2], [x, y]) \\ +\Maple & x \&* y & solve(\{eqn1, eqn2\}, \{x, y\}) \\ +\Mathematica & x ** y & Solve[\{eqn1, eqn2\}, \{x, y\}] \\ +\MuPAD & & solve(\{eqn1, eqn2\}, \{x, y\}) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & operator x, y; & solve(\{eqn1, eqn2\}, \{x, y\}) \\ + & noncom x, y; & \\ + & x() * y() & \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \m{2}{\rm Decrease/increase angles in trigonometric functions} \\ +\hline +\Axiom & \m{2}{simplify(normalize(sin(2*x)))} \\ +\Derive & Trigonometry:= Expand & Trigonometry:= Collect \\ + & sin(2*x) & 2*sin(x)*cos(x) \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & trigexpand(sin(2*x)) & trigreduce(2*sin(x)*cos(x)) \\ +\Magnus & & \\ +\Maxima & trigexpand(sin(2*x)) & trigreduce(2*sin(x)*cos(x)) \\ +\Maple & expand(sin(2*x)) & combine(2*sin(x)*cos(x)) \\ +\Mathematica & TrigExpand[Sin[2*x]] & TrigReduce[2*Sin[x]*Cos[x]] \\ +\MuPAD & expand(sin(2*x)) & combine(2*sin(x)*cos(x), sincos) + \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & load\_\,package(assist)\$ \\ + & trigexpand(sin(2*x)) & trigreduce(2*sin(x)*cos(x)) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Gr\"obner basis} \\ +\hline +\Axiom & groebner([p1, p2, ...]) \\ +\Derive & \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & grobner([p1, p2, ...]) \\ +\Magnus & \\ +\Maxima & grobner([p1, p2, ...]) \\ +\Maple & Groebner[gbasis]([p1, p2, ...], plex(x1, x2, ...)) \\ +\Mathematica & GroebnerBasis[\{p1, p2, ...\}, \{x1, x2, ...\}] \\ +\MuPAD & groebner::gbasis([p1, p2, ...]) \\ +\Octave & \\ +\Pari & \\ +\Reduce & load\_\,package(groebner)\$ \q groebner(\{p1, p2, ...\}) \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Factorization of $e$ over $i = \sqrt{-1}$} \\ +\hline +\Axiom & factor(e, [rootOf(i**2 + 1)]) \\ +\Derive & FACTOR(e, Complex) \\ +\DoCon & \\ +\GAP & Factors(GaussianIntegers,e)\\ +\Gmp & \\ +\Macsyma & gfactor(e); \OR\ factor(e, i\^{}2 + 1); \\ +\Magnus & \\ +\Maxima & gfactor(e); \OR\ factor(e, i\^{}2 + 1); \\ +\Maple & factor(e, I); \\ +\Mathematica & Factor[e, Extension -> I] \\ +\MuPAD & QI:= Dom::AlgebraicExtension(Dom::Rational, i\^{}2 + 1); \\ + & QI::name:= "QI": \q Factor(poly(e, QI)); \\ +\Octave & \\ +\Pari & \\ +\Reduce & on complex, factor; \q e; \q off complex, factor; \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Real part} & \h{Convert a complex expr.\ to rectangular form} \\ +\hline +\Axiom & real(f(z)) & complexForm(f(z)) \\ +\Derive & RE(f(z)) & f(z) \\ +\DoCon & & \\ +\GAP & (f(z)+GaloisCyc(f(z),-1))/2&\\ +\Gmp & & \\ +\Macsyma & realpart(f(z)) & rectform(f(z)) \\ +\Magnus & & \\ +\Maxima & realpart(f(z)) & rectform(f(z)) \\ +\Maple & Re(f(z)) & evalc(f(z)) \\ +\Mathematica & Re[f[z]] & ComplexExpand[f[z]] \\ +\MuPAD & Re(f(z)) & rectform(f(z)) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & repart(f(z)) & repart(f(z)) + i*impart(f(z)) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|lll} +& \h{Matrix addition} & \h{Matrix multiplication} & \h{Matrix transpose} \\ +\hline +\Axiom & A + B & A * B & transpose(A) \\ +\Derive & A + B & A . B & A\`{} \\ +\DoCon & & & \\ +\GAP & A + B & A * B & TransposedMat(A)\\ +\Gmp & & & \\ +\Macsyma & A + B & A . B & transpose(A) \\ +\Magnus & & & \\ +\Maxima & A + B & A . B & transpose(A) \\ +\Maple & evalm(A + B) & evalm(A \&* B) & linalg[transpose](A) \\ +\Mathematica & A + B & A . B & Transpose[A] \\ +\MuPAD & A + B & A * B & transpose(A) \\ +\Octave & & & \\ +\Pari & & & \\ +\Reduce & A + B & A * B & tp(A) \\ +\Scilab & & & \\ +\Sumit & & & \\ +\Yacas & & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Solve the matrix equation $A x = b$} \\ +\hline +\Axiom & solve(A, transpose(b)) . 1 . particular :: Matrix \_\_\_ \\ +\Derive & \\ +\DoCon & \\ +\GAP & SolutionMat(TransposedMat(A),b)\\ +\Gmp & \\ +\Macsyma & xx: genvector('x, mat\_nrows(b))\$ \\ + & x: part(matlinsolve(A . xx = b, xx), 1, 2) \\ +\Magnus & \\ +\Maxima & xx: genvector('x, mat\_nrows(b))\$ \\ + & x: part(matlinsolve(A . xx = b, xx), 1, 2) \\ +\Maple & x:= linalg[linsolve](A, b) \\ +\Mathematica & x = LinearSolve[A, b] \\ +\MuPAD & \\ +\Octave & \\ +\Pari & \\ +\Reduce & \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Sum: $\sum_{i = 1}^n f(i)$} & \h{Product: $\prod_{i = 1}^n f(i)$} \\ +\hline +\Axiom & sum(f(i), i = 1..n) & product(f(i), i = 1..n) \\ +\Derive & SUM(f(i), i, 1, n) & PRODUCT(f(i), i, 1, n) \\ +\DoCon & & \\ +\GAP & Sum([1..n],f) & Product([1..n],f)\\ +\Gmp & & \\ +\Macsyma & closedform( & closedform( \\ + & \q sum(f(i), i, 1, n)) & \q product(f(i), i, 1, n)) \\ +\Magnus & & \\ +\Maxima & closedform( & closedform( \\ + & \q sum(f(i), i, 1, n)) & \q product(f(i), i, 1, n)) \\ +\Maple & sum(f(i), i = 1..n) & product(f(i), i = 1..n) \\ +\Mathematica & Sum[f[i], \{i, 1, n\}] & Product[f[i], \{i, 1, n\}] \\ +\MuPAD & sum(f(i), i = 1..n) & product(f(i), i = 1..n) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & sum(f(i), i, 1, n) & prod(f(i), i, 1, n) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Limit: $\lim_{x \rightarrow 0-} f(x)$} & \h{Taylor/Laurent/etc.\ series} \\ +\hline +\Axiom & limit(f(x), x = 0, "left") & series(f(x), x = 0, 3) \\ +\Derive & LIM(f(x), x, 0, -1) & TAYLOR(f(x), x, 0, 3) \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & limit(f(x), x, 0, minus) & taylor(f(x), x, 0, 3) \\ +\Magnus & & \\ +\Maxima & limit(f(x), x, 0, minus) & taylor(f(x), x, 0, 3) \\ +\Maple & limit(f(x), x = 0, left) & series(f(x), x = 0, 4) \\ +\Mathematica & Limit[f[x], x->0, Direction->1] & Series[f[x],\{x, 0, 3\}] \\ +\MuPAD & limit(f(x), x = 0, Left) & series(f(x), x = 0, 4) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & limit!-(f(x), x, 0) & taylor(f(x), x, 0, 3) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Differentiate: $\frac{d^3 f(x, y)}{dx \, dy^2}$} & + \h{Integrate: $\int_0^1 f(x) \, dx$} \\ +\hline +\Axiom & D(f(x, y), [x, y], [1, 2]) & integrate(f(x), x = 0..1) \\ +\Derive & DIF(DIF(f(x, y), x), y, 2) & INT(f(x), x, 0, 1) \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & diff(f(x, y), x, 1, y, 2) & integrate(f(x), x, 0, 1) \\ +\Magnus & & \\ +\Maxima & diff(f(x, y), x, 1, y, 2) & integrate(f(x), x, 0, 1) \\ +\Maple & diff(f(x, y), x, y\$2) & int(f(x), x = 0..1) \\ +\Mathematica & D[f[x, y], x, \{y, 2\}] & Integrate[f[x], \{x, 0, 1\}] \\ +\MuPAD & diff(f(x, y), x, y\$2) & int(f(x), x = 0..1) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & df(f(x, y), x, y, 2) & int(f(x), x, 0, 1) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|ll} +& \h{Laplace transform} & \h{Inverse Laplace transform} \\ +\hline +\Axiom & laplace(e, t, s) & inverseLaplace(e, s, t) \\ +\Derive & LAPLACE(e, t, s) & \\ +\DoCon & & \\ +\GAP & & \\ +\Gmp & & \\ +\Macsyma & laplace(e, t, s) & ilt(e, s, t) \\ +\Magnus & & \\ +\Maxima & laplace(e, t, s) & ilt(e, s, t) \\ +\Maple & inttrans[laplace](e,t,s) & inttrans[invlaplace](e,s,t) \\ +\Mathematica & \m{2}{\q @<< Calculus\`{}LaplaceTransform\`{}} \\ + & LaplaceTransform[e, t, s] & {\st InverseLaplaceTransform[e,s,t]} + \\ +\MuPAD & transform::laplace(e,t,s) & transform::ilaplace(e, s, t) \\ +\Octave & & \\ +\Pari & & \\ +\Reduce & \m{2}{\q load\_\,package(laplace)\$ \q load\_\,package(defint)\$} + \\ + & laplace(e, t, s) & invlap(e, t, s) \\ +\Scilab & & \\ +\Sumit & & \\ +\Yacas & & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Solve an ODE (with the initial condition $y'(0) = 1$)} \\ +\hline +\Axiom & solve(eqn, y, x) \\ +\Derive & APPLY\_\,IC(RHS(ODE(eqn, x, y, y\_)), [x, 0], [y, 1]) \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & ode\_ibc(ode(eqn, y(x), x), x = 0, diff(y(x), x) = 1) \\ +\Magnus & \\ +\Maxima & ode\_ibc(ode(eqn, y(x), x), x = 0, diff(y(x), x) = 1) \\ +\Maple & dsolve(\{eqn, D(y)(0) = 1\}, y(x)) \\ +\Mathematica & DSolve[\{eqn, y'[0] == 1\}, y[x], x] \\ +\MuPAD & solve(ode(\{eqn, D(y)(0) = 1\}, y(x))) \\ +\Octave & \\ +\Pari & \\ +\Reduce & odesolve(eqn, y(x), x) \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Define the differential operator $L = D_x + I$ and apply it to $\sin x$} \\ +\hline +\Axiom & DD : LODO(Expression Integer, e +-> D(e, x)) := D(); \\ + & L:= DD + 1; \q L(sin(x)) \\ +\Derive & \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & load(opalg)\$ \q L: (diffop(x) - 1)\$ \q L(sin(x)); \\ +\Magnus & \\ +\Maxima & load(opalg)\$ \q L: (diffop(x) - 1)\$ \q L(sin(x)); \\ +\Maple & id:= x -> x: \q L:= (D + id): \q L(sin)(x); \\ +\Mathematica & L = D[\#, x]\& + Identity; \q Through[L[Sin[x]]] \\ +\MuPAD & L:= (D + id): \q L(sin)(x); \\ +\Octave & \\ +\Pari & \\ +\Reduce & \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{2D plot of two separate curves overlayed} \\ +\hline +\Axiom & draw(x, x = 0..1); \q draw(acsch(x), x = 0..1); \\ +\Derive & [Plot Overlay] \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & plot(x, x, 0, 1)\$ \q plot(acsch(x), x, 0, 1)\$ \\ +\Magnus & \\ +\Maxima & plot(x, x, 0, 1)\$ \q plot(acsch(x), x, 0, 1)\$ \\ +\Maple & plot(\{x, arccsch(x)\}, x = 0..1): \\ +\Mathematica & Plot[\{x, ArcCsch[x]\}, \{x, 0, 1\}]; \\ +\MuPAD & plotfunc(x, acsch(x), x = 0..1): \\ +\Octave & \\ +\Pari & \\ +\Reduce & load\_\,package(gnuplot)\$ \q plot(y = x, x = (0 .. 1))\$ \\ + & plot(y = acsch(x), x = (0 .. 1))\$ \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +\begin{tabular}{l|l} +& \h{Simple 3D plotting} \\ +\hline +\Axiom & draw(abs(x*y), x = 0..1, y = 0..1); \\ +\Derive & [Plot Overlay] \\ +\DoCon & \\ +\GAP & \\ +\Gmp & \\ +\Macsyma & plot3d(abs(x*y), x, 0, 1, y, 0, 1)\$ \\ +\Magnus & \\ +\Maxima & plot3d(abs(x*y), x, 0, 1, y, 0, 1)\$ \\ +\Maple & plot3d(abs(x*y), x = 0..1, y = 0..1): \\ +\Mathematica & Plot3D[Abs[x*y], \{x, 0, 1\}, \{y, 0, 1\}]; \\ +\MuPAD & plotfunc(abs(x*y), x = 0..1, y = 0..1): \\ +\Octave & \\ +\Pari & \\ +\Reduce & load\_\,package(gnuplot)\$ \\ + & plot(z = abs(x*y), x = (0 .. 1), y = (0 .. 1))\$ \\ +\Scilab & \\ +\Sumit & \\ +\Yacas & \\ +\end{tabular} \\[10pt] + +%\begin{tabular}{l|l} +%& \h{} \\ +%\hline +%\Axiom & \\ +%\Derive & \\ +%\DoCon & \\ +%\GAP & \\ +%\Gmp & \\ +%\Macsyma & \\ +%\Magnus & \\ +%\Maxima & \\ +%\Maple & \\ +%\Mathematica & \\ +%\MuPAD & \\ +%\Octave & \\ +%\Pari & \\ +%\Reduce & \\ +%\Scilab & \\ +%\Sumit & \\ +%\Yacas & \\ +%\end{tabular} \\[10pt] + +\end{tt} +\endgroup +\end{document} diff --git a/src/axiom-website/screenshot2.jpg b/src/axiom-website/screenshot2.jpg new file mode 100644 index 0000000..459d9c3 Binary files /dev/null and b/src/axiom-website/screenshot2.jpg differ diff --git a/src/axiom-website/screenshot3.png b/src/axiom-website/screenshot3.png new file mode 100644 index 0000000..7f43b07 Binary files /dev/null and b/src/axiom-website/screenshot3.png differ diff --git a/src/axiom-website/screenshots.html b/src/axiom-website/screenshots.html new file mode 100644 index 0000000..eef5c8b --- /dev/null +++ b/src/axiom-website/screenshots.html @@ -0,0 +1,301 @@ + + + + Axiom Computer Algebra System + + + + +
+ [ + + Home + + ] +   + [ + + Screenshots + + ] +   + [ + + FAQ + + ] +   + [ + + Download + + ] +   + [ + + Documentation + + ] +   + [ + + Current State + + ] +   + [ + + Community + + ] +   + [ + + Developers + + ] +   + [ + + Patches + + ] +
+ +
+
+ +
+ +
    + +
  • +

    + + Some computations. An important thing: everything is + mathematically typed in Axiom. + +
    +

    +(1) -> 1+1
    +
    +   (1)  2
    +                                                        Type: PositiveInteger
    +(2) -> integrate(1/x^(1/3),x)
    +
    +         3+-+2
    +        3\|x
    +   (2)  ------
    +           2
    +                                          Type: Union(Expression Integer,...)
    +  
    +

    +
  • + +
  • +

    + + Some matrix computations under TeXmacs. Please notice the hierarchical + editing capabilities of TeXmacs. + +
    +
    +
    +
    +

    +
  • + +
  • +

    + + Some more complicated computations: + +
    +
    +

    +)cl all
    + 
    +   All user variables and function definitions have been cleared.
    +
    +Word := OrderedFreeMonoid(Symbol)
    + 
    +
    +   (1)  OrderedFreeMonoid Symbol
    +                                                                 Type: Domain
    +poly:= XPR(Integer,Word)
    + 
    +
    +   (2)  XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +                                                                 Type: Domain
    +p:poly := 2 * x - 3 * y + 1
    + 
    +
    +   (3)  1 + 2x - 3y
    +                      Type: XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +q:poly := 2 * x + 1
    + 
    +
    +   (4)  1 + 2x
    +                      Type: XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +p + q
    + 
    +
    +   (5)  2 + 4x - 3y
    +                      Type: XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +p * q
    + 
    +
    +                        2
    +   (6)  1 + 4x - 3y + 4x  - 6y x
    +                      Type: XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +(p +q)^2 -p^2 -q^2 - 2*p*q
    + 
    +
    +   (7)  - 6x y + 6y x
    +                      Type: XPolynomialRing(Integer,OrderedFreeMonoid Symbol)
    +M := SquareMatrix(2,Fraction Integer)
    + 
    +
    +   (8)  SquareMatrix(2,Fraction Integer)
    +                                                                 Type: Domain
    +poly1:= XPR(M,Word)
    + 
    +
    +   (9)
    +   XPolynomialRing(SquareMatrix(2,Fraction Integer),OrderedFreeMonoid Symbol)
    +                                                                 Type: Domain
    +m1:M := matrix [[i*j**2 for i in 1..2] for j in 1..2]
    + 
    +
    +         +1  2+
    +   (10)  |    |
    +         +4  8+
    +                                       Type: SquareMatrix(2,Fraction Integer)
    +m2:M := m1 - 5/4
    + 
    +
    +         +  1    +
    +         |- -  2 |
    +         |  4    |
    +   (11)  |       |
    +         |     27|
    +         | 4   --|
    +         +      4+
    +                                       Type: SquareMatrix(2,Fraction Integer)
    +m3: M := m2**2
    + 
    +
    +         +129     +
    +         |---  13 |
    +         | 16     |
    +   (12)  |        |
    +         |     857|
    +         |26   ---|
    +         +      16+
    +                                       Type: SquareMatrix(2,Fraction Integer)
    +pm:poly1   := m1*x + m2*y + m3*z - 2/3
    + 
    +
    +         +  2     +             +  1    +    +129     +
    +         |- -   0 |             |- -  2 |    |---  13 |
    +         |  3     |   +1  2+    |  4    |    | 16     |
    +   (13)  |        | + |    |x + |       |y + |        |z
    +         |       2|   +4  8+    |     27|    |     857|
    +         | 0   - -|             | 4   --|    |26   ---|
    +         +       3+             +      4+    +      16+
    +Type: XPolynomialRing(SquareMatrix(2,Fraction Integer),OrderedFreeMonoid Symbol)
    +qm:poly1 := pm - m1*x
    + 
    +
    +         +  2     +   +  1    +    +129     +
    +         |- -   0 |   |- -  2 |    |---  13 |
    +         |  3     |   |  4    |    | 16     |
    +   (14)  |        | + |       |y + |        |z
    +         |       2|   |     27|    |     857|
    +         | 0   - -|   | 4   --|    |26   ---|
    +         +       3+   +      4+    +      16+
    +Type: XPolynomialRing(SquareMatrix(2,Fraction Integer),OrderedFreeMonoid Symbol)
    +qm**3
    + 
    +
    +   (15)
    +     +   8      +   +  1  8+    +43   52 +    +  129       +
    +     |- --   0  |   |- -  -|    |--   -- |    |- ---  - 26 |
    +     |  27      |   |  3  3|    | 4    3 |    |   8        | 2
    +     |          | + |      |y + |        |z + |            |y
    +     |         8|   |16    |    |104  857|    |         857|
    +     | 0    - --|   |--   9|    |---  ---|    |- 52   - ---|
    +     +        27+   + 3    +    + 3    12+    +          8 +
    +   + 
    +     +  3199     831 +      +  3199     831 +      +  103169     6409 +
    +     |- ----   - --- |      |- ----   - --- |      |- ------   - ---- |
    +     |   32       4  |      |   32       4  |      |    128        4  | 2
    +     |               |y z + |               |z y + |                  |z
    +     |  831     26467|      |  831     26467|      |   6409     820977|
    +     |- ---   - -----|      |- ---   - -----|      | - ----   - ------|
    +     +   2        32 +      +   2        32 +      +     2        128 +
    +   + 
    +     +3199   831 +     +103169   6409 +      +103169   6409 +
    +     |----   --- |     |------   ---- |      |------   ---- |
    +     | 64     8  | 3   |  256      8  | 2    |  256      8  |
    +     |           |y  + |              |y z + |              |y z y
    +     |831   26467|     | 6409   820977|      | 6409   820977|
    +     |---   -----|     | ----   ------|      | ----   ------|
    +     + 4      64 +     +   4      256 +      +   4      256 +
    +   + 
    +     +3178239   795341 +       +103169   6409 +       +3178239   795341 +
    +     |-------   ------ |       |------   ---- |       |-------   ------ |
    +     |  1024      128  |   2   |  256      8  |   2   |  1024      128  |
    +     |                 |y z  + |              |z y  + |                 |z y z
    +     |795341   25447787|       | 6409   820977|       |795341   25447787|
    +     |------   --------|       | ----   ------|       |------   --------|
    +     +  64       1024  +       +   4      256 +       +  64       1024  +
    +   + 
    +     +3178239   795341 +      +98625409  12326223 +
    +     |-------   ------ |      |--------  -------- |
    +     |  1024      128  | 2    |  4096       256   | 3
    +     |                 |z y + |                   |z
    +     |795341   25447787|      |12326223  788893897|
    +     |------   --------|      |--------  ---------|
    +     +  64       1024  +      +   128       4096  +
    +Type: XPolynomialRing(SquareMatrix(2,Fraction Integer),OrderedFreeMonoid Symbol)
    + 
    +

    +
  • + +
+ +
+
+ +Axiom is now running under Windows. This is a screenshot of Axiom +running on Windows in a TeXmacs window: + +
+
+ +
+ + +