Você está na página 1de 37

\

UNIT 2: SYNTAX ANALYSIS


4.1. INTRODUCTION:

o Parser or syntax analysis basically checks for the syntax of the language.
. A parser or syntax analysis is a process which takes the inputs (as tokens) and
produce either parse tree (Syntactic structure) or generates error report.

4.L.L Role of The Parser

In our compiler model, the parser obtains a string of tokens from the lexical analyzer (as
shown in Fig. 4.1,) and verifies that the string of token names can be generated by the grammar
for the source language.

texical Itmt *f in*nn*rli***


An,*i*;r:a*r $rrrrrt, Srt*tr fs$rs#$txti*lr

Fi;prb 4.1: F*+riti*ar cf prr**r in c*nrpih*r lri$*iel

In the process of cornpilation the parser and lexical analyzer works together. That means,
wlren parsel recluires string of tokens t invokes lexical analyzer. In turn, the lexical analyzer
supplies tokens to parser

The parser call the lexical analyzer (by the getNextToken command), causes the lexical
analyzer to read characters fi'om its input until it can identify the next lexeme and produce for it
the next token, which it returns to the parser.

We expect the parser to report any syntax errors in an intelligible fashion and to recover
frorn commonly occurring errors to continlle processing the remeinder of the program.

&re are three general tvnes of parsers fgr gramm+rs:


1. Universal Parser:
Universal parsing rnethods such as the Cocke-Younger-Kasami algorithrn ancl
Earley's algorithm can parse any grammar .These general methods are, however, too
inftficieut to use in production compilers.
2, Top-Down Parser:
Top-down methods build parse trees from the top (root) to the bottom (leaves).
Ex: LL Parser

3. Bottom-Up Parser:
Bottom-up methods start from the leaves and work their way up to the root. In
either case, the input to the parser is scanned from left to right, one symbol at a time.
Ex: LR Parser

4 .1.3 Svntax Error Handling:


If a compiler had to process only correct programs, its design and implementation
would be simplified greatly.

Planning the error handling right from the start can both simplify the structure of a
compiler and improve its handling of errors.

Common proqramning errors can occur at manv different levels.

. Lexical errors-
It include misspellings of identifiers, keywords, or operators .

e.9., Use of an identifrer arunknmr instead of arunkumar


Missing quotes around text intended as a string.

'Syntactic errors - include misplaced semicolons or extra or missing braces; that is, "{" or "}."
As another example, the appearance of a case statement without an enclosing switch is a
syntactic error.

' Semantic errors: include type mismatches between operators and operands. An example is a
return statement in a Java method with result type void.

' Logical errors : It can be anything from incorrect reasoning on the part of the programmer to
the use in a C program of the assignment operator: instead of the comparison operator__.

The gaols of error handler in a parser:


The error hanCier in a parser has goals that are simple to state but challenging to realize:
1. Report the presence of effors clearly and accurately.
2. Recover from each error quickly enough to detect subsequent errors.
3. Add minimal overhead to the processing of correct programs.
4. 1.4 :
E"rrgr:Recovery,Ftrategies
'l he following activities are performed whenever effors are detected by the parser:

program[ner can correct the program'

compilation.

Panic Mode Recoverv:

o It is the simplest and most popular effor recovery method'


. When .ooi is detected, ift. parser discarded symbols one at a time until
next
synchronizing token (valid token) is found
. The synchroni zing(valid) tokens are Llsually delimiters, such as semicolon
or), whose
role in the source program is clear and unambiguous.

For example consider the effoneous expression:

(x*y'r*z)*k /
. reading (, X, -F, Y,
The parser ,.un, the input from left to right and finds no errors after
and*. *
. and it
After reading the second 1, it knows that no expression has consecutive operators
*
display un erto, "Extra in the input expression"'
. token found (i.e 'z')'
In panic mode recovery, it skips all input-symbols till the next valid
Here z is the sYnchronizingtoken'

Phrlse-Levql Begoverv :

. the remaining inppt;


On cliscovering an error, a parser may perform local conection.on
that allows the parser
that is, it may ieplace a prefix of the remaining input by some string
to continue.

' d tyPical local correction is


o
To rePlace a comma bY a semicolon,
.
Delete an extraneous semicolon, or insert a missing semicolon.
Disadvantages of this Phase are:

: illTit".#Hmf,X.*ru:f#ff?Xlpr*..-enr as they mav reacr to innnite


loops.

Ilrrgr rlroductioni
. The error procluctions specify commonly knoln rnistakes in the grammar'
when we imprement the parser, when an effor production
is used, it displays the
appropriate error message.
For exampre, consider the expression r0x. Mathematically
it means multiply 10 with x'
* errors can be identified very
But in programming languug. *, should write 10 x. such
easily by error Production.

Global Correction:

. with correct input using


The global correction method replaces an incorrect input
least cost correction method'
grammar G, these algorithms will
. These algorithm take an incorrect input string * .*d
of insertions, deletions, and
find a pirr. tree for a.related string y, such ttiat the nu-b.t
changes of tokens required to transform x into
y is as small as possible'
. These methods are costly to implement in terms of
time and space and hence are only of

theoretical interest.

4 . 2 Context-Free Grammars:

4.2. 1 Th. Follrrul D.firritiglt of u Contttt-Fttt Gru*Tur (C'F'G\t

o I context-free grammar (grammar for short) consists of terminals, non-tertninals, a start


symbol, and Productions.
. G: ( v, T, p, s) where G is grammar, T-terminals, v-non-terminals, S-start symbol, and
P-productions.
. Consider the grammar

E) E+TIT

T) T*FIF
F+ id
l. Terminals:
. Terminals are the basic symbols from which strings are formed'
. ,,token name" i, u synonym for "terminal" and frequently we will use
The term
the word "token" for terminal.
* tidt .
. In above grammar terminals are * , and
o

2. Nonterminals:
. Nonterminals are syntactic variables that denote sets of strings'
. E, T and F are nonterminals in above grammar.
. language generated by
The sets of strings denoted by nonterminals help define the
the grammar.
f*
3. stirrt symbol:
. The first no-terminal of the grammar is the start syrnbol'
i]

,' E is the start symbol.

The productions of a grammar specify the manner in which the terminals and nonterminals can
be combined to form strings.

Each production consists of:


(a) A nonterminal called the head or left side of the production;
(b) The symbol ) .Sometimes: : =has been used inplace of the arrow.
(c) A body or right side consisting of zero or more terminals and nonterminals.

S ) E+TIT

(head) ; (body)

{.2.2 Notational Qonvent ions:

1. These symbols are terminals:


(a) Lower case letters early in the alphabet, such as a' b, c.
(b) Operator symbols such as *, *, and so on.
(c) Punctuation pymbols such as parentheses, comma, and so on.
(d) The digits 0, 1, . . . , 9.
(e) Boldface strings sych as id or if, each of which represents a single terminal symbol.

2. These symbols are nonterminals:


(a) Uppercase letters early in the alphabet, such as A, B, C.
(b) The letter S, which, when it appears, is usually the start symbol.
(c) Lowercase, italic names such as expr or stmt.
(cl) When discussing programming constructs, uppercase letters may be used t o represent
nonterminals for the constructs. For example, nonterminals for expressions, terms, and
factors are often represented by E, T, and F,respectively.

P "T,A

fc
't

$. Uppercaxe letters late in the*lphahet, *nch es ff; Y, fr,represerit grcmrnei


#rrr#pk thst i*, either n*nterminals $r *ermin*In
$

4, trcwerc**e letterx lats in ths *lphabeto *hiefly ur u, * r !.u, reprffien* {pns-


*ibly empty) *tri:sgp *f tarminsls.

$. L*wer*n*e Grmh le**eus, fr, Sn ? far exrurrplen represnnt (p*xs,ility *mpty)


*tri*gx of gr*mffi*r *pwrkl* Thux, * generic preelu*tisn s*tt be writteri
a* .S 4 *, wlwre "{ k fhe heed *,nd * the bsdy.

8- -& mt of produqticns d *l ftrn d. *l frs,,. o , d *l eu* rri*l e cffixrrnoa l*€*ild


*4 {*,ell them c-so"dudr*lm}r ffiflF be writ*en t *} c}r I *ll I '"" I o*. Call
t}1r*}*r, i , ,*; the *lfsrnn*$ue* fbr *4"

?" Unlw* stated otherwi#en the head af the first pradtr**i*n ie the st*rt syffi-
bnl.

{q
I
3'l"g--eit'"*, "!: gY*b'D
, .fl. g.'"e.al o| 9tt<tso6 ,^zlth r'on-*e*r"';nJCsio't- "h ^
abJ succees?vefu te?tAu'''fl iL-bd tt',. b"\ of, oo- o$ ita
Xvo-,nrruv
Fvcdrrsons ts c--L-[r*l ^ &ona-f,'Oo.
'T-;to o Tir ptg oh D e'\wo-iiDcra'.

| ' L"ftmoAb O-nvo*oo ".

2 . rR,iB t* rn oAt- <De--- \rot{ o D'

-{trz- stnnn N F{
A + X B $- o",d ts+ p a*e, '\.Ac- P*&^.1-
o nE ,
o AV
cqn \>u obtdooJ -e','* 'A^ ?Fd;^t}"o'
\
t*P{ A?xBI)
A+e Bil *fiu- P^,od'.u$"on

- 1d'P{-(rqt^k-,8?F-*n1fio-p"'dut$onB-"d
o.'9 '
I\>e- a-bor.e dt-lt'^fuo- cctn oJgo be vo*{"n

hb *pr
. -rt. 9y-to[ " +" '"d.*"* ln one gt?'' -
m('-^a

? xp rs &a"dJ-"o$tn 9*+
^+xP ".p",.r"^16th"f
@ n d.-s'o X P !n. orP-
s+"P '

, 9.o^^,'<n "! d-*".'S'on oc' -) V-:) --.- 01n ?e,.o+t'* 'x


o1, -to a(n, tOf, &;-.-,, <n)

*
c Nt =+Xn C

, X,5o(^ C
X, & "r{*fcA odn ^, D o o<- o( rr\o€ *t*+6 '
n
9vb= :

rl, q )'t *h.


Snmmar roJ S 1,9 -bre
gt -qb Sy^boL {A-r,

+
'le-.
C s &*\r-4 o( \n $-vo
ot- fflo'e- *+.f,

+ a( fs S" *^u.l 4' "f t [tF of cndo-i,'.r totA-le'-\-J:


o^4 t'rtr*fut"l"rg)
+ d" ir' Sn-*.^c,e- 'b ht P
F X co^ts,i n6 ,*tt-,^;{,
ry
S+ tr+r 7 S+ A"-B 7
J
t 6un4e"tf
C-r E+t \ 3 e-n4<*h o.i
A + o_aB J
T+ tE) J t.
B+1ol 3arl{3n {'a

E+ r d '[o.1 * Sente'''c<-

Ir
@erPro) rrt Ntta
-r-
choBeo
le$trnoc€ 'crbc,terror,,.e"L 'rn eadr g"^-k^$ti
'
,'Th.
c<- eb-
. -tfre- pvocrrD r* o' S{cor6 o ! -{s-*mr"ol* 4-"""^ o 9-qro-rr
obt+'^-i^3
+u^-t-ut'g, t'1ri-J'st' a"'\.-co-<[
aty\'-o"ne-*=** "'o''-+.*'''lJ'ro
o} "^* l-d'b*oec c-{.-?''rJoo'
a^4 e-'c-*tr =*o Ytc'0J,d
(^-){- .,c*{e- *#P
L. @CRMD ?n eqc'b gt.'-tt'''t"9' ts a-0oo16 <J'avo'
. '6c-'ngn*.r,orE- noote-'doJ
n
o o(t-te""'lJr *:' Seq'1e-"'ta o6
.'t'\-.p',sc-cre "[ obtai".r5 *tnt
l a ?"7t'co.l
a.zpl"'ci,.,,-.]- S, r-A il*.t "''J'tr tlt'^t"no4f noo-{e9"-^t-1

^-t e*l, a,.J e-treV e+"y, cJ'0"-4 ?OatrnolL d'-tv-*ot''


UOe 'roo.t<- {U 1ts
Trn I
. c"oei"tr- -s>* -f,-ttoo\"q 9 * r:
F n

*) L+ D -rh. L4-tF.cF &* 'J$oD+ '-- Sslzr : J+Y$,. lJ Ca_D


E U
bu s bba.,lxal a' Sl-"uD o b"-0-o. 1,
E+ E*E
E
FOI
)
n-\
Lb-) E+L+e
,-
Irn
tol
ts.-Z
4 iJ+tr-
&J*i
+riJ+ tr,r-L
9.".b
+i
Wo
?J +td
,d E r'+

*-L, *-",J
?J +\J
*o
"'&
At
t5ftt'od *3
d-""''"*on -{"' Sttl ld'+:J'ald cc-n ba
-tFr- ?iqt^tr.og+
v-
Sho.,rn bnio O .
1Z',q# 9'^+'^d*{
UIA+,'+e"A'I "a
9+ L+E o eb S e. ,^y wa- g?'*'t u i6 a'
4 E+ E*L #
+84 E* TJ ' 4,- 'h th- flr+n''-".
L,U- s"^+^#.J
E+TJ *TJ -6^ -tAJ x t\A a-
+ I
" + >< , v)e- n"'d

+ ?d+iJ *TJ' "fr:Kt-#J=^^


(l
''0- -S""' "$ tb'- ?*rnnotr

+"&'4 ?c.'s .'G:.ft ^4 OdAt^^ i


rA o' n?*rnt.^ho' "h cl d.'-''-Aoo
o ft +-r-q-
rparbe-
t"^{'l-tt"-l
a\r€- tPt 0.d
t?r".f 4 t t""u 'ut tfia or&'' to 6f*ich ?^,no&.$*A
+o q?ln.(<- ie6--@'*\n'/3 '

floletf o. nodn- ot- P" 16<- -bree. !r?r<g"^tr tl'€- ^p20tu,A'o 6


"b- o' ?\rodr^,$oo
{c

r.t\ od.g 'PV".zpJx -Ur- NoD-+e.'ii^^u


-
'f) flY- -terr-,r\^rk .
Le-c, vLg- ;'K-e? "rcgCI*t-4
O cpne{d"q tf.€- fpntc-at Qt"norn4tr o^4 tlr. 9tl'so3 o-o- + ^#
s-> ss+lu.*l a
@ 4;r<- cr Lr,t-D +" gtdnq
o( n r.u 4' gt,lr.",0
@ 6;ue- P

O Gl''' G pack +,-e-e +: e;rn'7

So lo'- t

f\D. Qqrbeq=
L \AD Q

S+ss-P$ S
s ? Es*- Trr)
+ So-+c
,/r \
,/t\
+ gs+sx S3-|e
+ ctQ#Sx -) 39Ja'-r ./\t
I
,/ l\ q
) aa+$x =) ta't-a'n
* S bS +
+ aa.*o\k 'a ecl ta
_\
\\
, C.q

Caosr J,l t1e f:-c1 a^A sLdt Pd +TJ*.$J


e+ tr+E o Q,". L-A[D *^A Par6e- $,-ez-
E+ E*Q @ Qiw- R Al.D a,4, Pqn6e -tr.e4- -

E+ ?d
3ot'" Qr-^J c-Lo"* otcttg '

*,a. s A-blq,.1 t--l i


rno* tf-Ao1 p' orie- panle ty<-L- t QY
+ A.J flJ ?\.a d^Le-
n-,.r.>rvtQ{
or -|so Dr tiLore- e,f.\D #. Sort^re_
eq/^,t\r.-hJ-t^so Dr rn.!^e Lf"tD
g*^fl S; Sa,t d t2 be a;rob\g ut" ( ,

"'- ?tv.rrvrv-c-
6rr* +AJ \t fA
Qrebi Svnd'
0 cong*d-r Qro rnrrta-A* o,^J-
E + Eo.-E
F-> tr+E-
tr+ tJ
3

fsnnttt^c") id +
id' orld '
goloi coneld,q tlv- stvin6:

*t"3 t .h€-
^'i
€ti-q-rnzrrg- t".rq .^^ o^u&-*"o 'ht'6**J- Po"{"
.: cco
0:
Po"6tlJr€4,l 'gt
39oce ldr"--{^9o
db4*-t--
t a-.-l= o3 gLooo b"lo"o ,
-l<r #'e gaa- r.6 a't'lt^,"'^s'
ltt [suxt^r.) ,'tbe 6'aro'nar
g E
,/t \
L + E
,');
| /\ \
/ I \ \r
t

id L t- E
t\ L+_E
n
d id Ir
id \d

+f\or! -th. {Ur.rl rarornaf- .'6 o^L'jXt'tC\Jg ?


@ p^,ohe
t f
s+ +Bl*o.g
tr+ a lA^
B + b

3o-ln: ?.--J cl-qr^ n'Dti '

n *16o n,
, Jya-rr)nq-r,5 aga rnoz- Poro*$J rlotc.-t''on R. E
/

, € ConAbu.LJ- ffi"f co.o bc- d"gct\bQJ bfl ar R'E C-o.o b <


U
U
d.g."toJ by a^ Qr*n.,rra!- , b.^* not \fic. - \tr8q'
d
erg Udvsq- tp Coq wrt Q" E +p c' tr 6:

Fon e-ach se-Iq c


o|,- t]r. NFA ) eY*o.Je q \ton-tu;^"/ 4;
|o I

fr+L
{c

r, rh L (gt*l.) rA A- f) o-cQ+t',yi Stot_[€" oJJ


3. r[ s6-b i ]'r":.traogi$so'tp sUie'i, oo ?nfd.'a', o'dJ +Fa_

pvsd,r-.-Soc, h-*^4.
of st"*- I ut"f" i oD ioP'$ t.,
o,a b
X
o-& t-,.. pro&-cl'oo Al -) ru
q. Lk ,,u th. IcaJL sboJe, rl/ta+<e- A; Se t''
gb'rtsg-bd
9F tAt flYa-rr"rqr

c-onverL P" E Cofb)++ a-bt tD c.. F- Ctl

Ao+ c_Ao /.A' lr +.


A' -> bl,,
A,- + bAs
A3J g

@ ur;^d.6a tf,- W L 4, fJ" ,b fiu's *d Gnnr( ,'t'f,,lD C f(


ggb P"-J rK* c-lrt-Y A'o'tu
6

&n*"r€w*/t'2''1
Ao+ (H"s
A,+ t+l"tAt l*,i Ms jL
\
brnar :
LF3 , | lsru c_*I \hrs.^-g
"t"$c.A
. plurlffi^g "fh..t c".^ be d-egcrrtb; Cd"{"^"J, F.f
? -
can aLto be-
drrcrP be-J l>y a eva;r>rnafr {^{-n
9J
tr rohV ?. E lr1 d-u-$ n . llr
v,-*>e c Lerct cAI glntoocb o [- G Long uoSog'
l
abaz qg\z SorennL Ato,gan*,

Io Sg"Lr4ij 'tf='" 0arc.'c.l qoA non-t"a''1,'c*-1 pa,r-ta Ci", co.Fl[o$"* p'"rr)


,p.rovtd.6, the coovenpJ feas'v) -"V to s-pto--"J+f.e- -Proob--<"rJ
\t"/ u
ob y'" co.ng\to1"
16e- proc-z:o
)-. ryco-cll-9ro.tr*
"b- 6.F,LJjon
€rrorA io the eou'ce- ?\ra-.o cqo be- id."r.1','$'reJ e"alf,.

3 1tr{ [€ilic6-{ q*L* os.a agrr,,tLe- 9;mpQ 7c.nd -b d'Ec'\|". tfKo"6

t,.:a do not a- not>lbst a-r por,o.re$J o-s


Brar.,'no.{6.
;e-eJ
+. R'E P"DVid-., q"sy *y {o ood.l,str^d tr'. nobo.*ioo

4t. t"PaoA tf:an 'qt*')t'.ot '


d A,*.\7tL- e.,n b<- c-onbtru-tled ""O"Otth
f . Mo'c. e-$-$cr'eJ fex'
-P,-.n Q-" E tlrao ?
rq-t"r'jr^o(q

+" 3. L Ll l'n? "#V A-btq*tq "' ennn^.t"+"d ln*-o


Can 1""-
+hJ <l*'L- Amblt*o*
.o So.r,e- fro-nnmag
ca^ lae- donn- LrgJ +t" ,-",nJKod,g ,

tln d-rnbifl*td 'Tf "'s t


.f oyer-d:on6'
I" tJ si,,3 tl-.- <Prt_ce_d.614 ctf,d 0ssod $$\
2, Dp&- G-rnblfl.-% A*is'
t'P"S@e.cr- gf,d +o:g:$y\ :b of:Ls"{; $6 arn l>tatJro
O Co.,w.t -$. +[o.rrnq
LLg
a-rnbig.rod t*,r-t('"ndD q
Jq
ro-rntrotn
fl
E-' Q-x E E

F_+ El a elr
t+ trtE
I
9+ Ln)'\ J

dev ob t1*- p.=ctd"^C'e


€gl.4 frr-anq e 14. s Fe tu*o'a ln ? n cvta*'n3 o*
b.[orl-
aLeTu^olfh cgsoo'a$rd\ o$
gkoLD')
a

o-4er.i ^o{
ocioS ritY
T
A ss no
g-,P@fs ,-
+t- T.Ft
' , rf
1)
F, / LoW T
4 P
Rioq \"-f
F
8 os+c u,.i t Cil., ?J

Un o,nlA1.re. g ffsm3t l

\t4
0w
E
-) E+T \ e-t\ 1^

T+f*rP\TtP\?
lt,

P+ F^? \F
F+ CE) \:J
@ c-onutr-f tA- +[o.o]rro, curnk\o6unu-* rbL i,tJD Unctnn$^rr*
'
.'t{ ?r.*- t*r.I
e_+ E+E lE-L

tr4 E^E
E+ tE) [ rf
.|to6
bH C-on3i &*",* * anJ ope p4orr [oo'"gt ?$t>d\ anJ Gs-€-
UJ -
L. [-f o;rto c.\ 4;w , / *d + oporos,"l hone
'th.- tvgh^c.gL priori ! on4
aA!. *aB * qSlo1a/7ive ar,tJ n yt*o v hos p reCcdanae \ n bdi^r-zn on d
"p.
i t 16 L*L a-s'sat".$ *

eo [n,. r - tn,arb
.DgsDgJ'\ 11O D-telrot'
e-=J*ctcs ' o De ttJPrj f
L
(o,^r.gb) kl€ l_"f| ,.
Ci n tra"ry) n L"t+ P
Ch\qh.rt ) - /,r* ?tfl"-t_ T-
$

Bc,gl c U^l b Ca), f d 7


rl^
?-> E+?lE-rlP
P+ paf lT
T+ F+r \rlrle
l.
F+ Ce) lTd ,

ft
a"l a,

- qI62 Qw-rrw" a^d p*,A +a*t (t t\6 aO{nal5q\O*€


]{ rtl n--l
Consid.f Dcr.ngb^o{ ,
.$d .

St^t --2 ?+ eY'r t.,"o gt' t


I 1 + edpt 16"o st^t "!r.1.
9tn't
I otf"r . \
*9ol".\
Co ng\d"a i1re- oa ShstpA b.,0""1 .
=n;Oy'F-{e-tr^nln--t8
i+ Et t$.r, ?+ Ey.th.o SI elda 3z

,, .

St.n b '

/r \\
/ t\\
i+ e*?r ii.,eo St"" F

/r
I

E1

i f- €'tf " tI',en Sbn I da. S-tr'.,n 'l'-

I I I
I

Ly Sr S2-

/t
Str.t

T;h::);*"3*"*
a*^"
11L €r?n th"" St""FL il+-" 3t"""b
q" uJtt*-r par6)"

/tN
+o '- sq-rrne, **"8
I
1 CSg"*.^q ,

S,>
tr1 \

\ l- €*p.' tbnn S+-. b


t
I

EL Sr
e

'Tbn lde-- {p Coowrf o"t., bl6uto"" il Oo-a"t$3uo"<r r$


" gbb*rnn} ".,3PQAg.t^-r bo*.^r"-eo * tl-rao e:nJ ao elso
"rnrrats be- * rn--t-c-qJd u.

- ib , the irr&t|"r gb'k'rn"a*-


rne-rr,o8 "r'nL,.gL no+ Qrrd

Lotth orr 't9na16!c.fre-d o r =tfieD


"pnn

Uog-b.lgu.o*a 9 rq_nnr^qL* -

Strnt
-), oeotcheJ- st^t \ tl"n-st'nt

+ iP eY" theo rn-Jc4nJ- st- L


0oc^ldLd--st"'-t.('l'\ e-[ae- rnd*eAJ

I o tl-,ur

opeo-st-t-; if ex?v l$,eo 9t'nt


I' i'p enp" 1bt"' ma{ei'J-st'"f qLt.'-oPa0-st$+

?ar6t {}.- n. ,*1 ?.( 'et il.,-iLE.:!r,nn er ,hn g-


St'n L
I

/t\ \
o Pert- s{"n b i'

i+ e*?' tfu" st"^ L


I I
Et tnafu^o-d - s{nt-

/\
i+ e*P" f?a.t a^ft.r'"e-s+,nt e_@
I I t

E> Sl s2_
@
roosldJL \ D c-n
tL\ ,kn gru-tnno^L " gho(jo.\ bJ-o*r o.nd P.,{r,qlFr6
O,r,b{fl*.* . CLO{ Qonr<..q-t it )^b tlocrn,[,3u4r{ ,
8*rDrry1l^
s+L EtsIt Et S eS l*
E+b
Sg_L"t C-o,s)d.r tl,e 9ti,3 [s""+en"; $bt?bto,e-a*

? Lt
-/ l\\

;/r
s

I Lt Ee
s \
N s
z\/I\
i Et
I
b
s

s
CI.
I

Itt 7L
taa I
+s
o.
b

tt- gq',u gt*a t^p.hoTe #'a-4'co4tev;-pqrbt**' 9'a


Fo. U
Tte
t11e a-bon'e- \ra-arn^\
16 arobl}'^o"-t '
Ir O 4{
'A
U arob]qt ugr)> Yra-rD/
v'-' n --'-- I
'n

I !gkj, ) o a-bo re fro.rwv-t


s+M*sl0-P f -sa.nds 1"" ?t,
FA-s+ i 6 b m3 e qt-s tr- (npt r t_ tJ.r-o
I olA'"t e d-te , o,rd g - gbnf '
}-P+i E t s a,>d 9bn"f or S*^+(^o<- lLtunx- a4
f f EA Yl-s eos "P". btv.,n Lt t)
P.l^tVloorr
f + {2 r {tr*n i ( E, +r.r, s, ,J8" 9r-
I

rL L IE LS<-3
I l l1
b 5 a* q.

?bt Pb t a s-or-
+
4 g3 Lb*tr$un oF L"kL Pa,.rsTan."
L"Ft Qn-u,tr'9i oD
F
9Je 4 tL p-d*dton t6
"'

The F;r,rl- 9.1-bol on tbe- 'r"4t'f h""J


ofi .tf*. p'd-dsn
SLrne a.s fl>z 9t1'bo[ or) t'ra L"'lb+ booJ Sd€
I

Qn^,il
,-l 4,'r).. €-at 6 ^,
,

A _> Ac. lp E+ g-rrl]-


h+S^ln :

Qun;:t"SJoo:
u-,b
*mr**b -1b4 T'r3 L^t siJn- g^d*t{ {b J61rAa o'3
o o "$tfin-
Jgd'-"& th.
o
P'*&-'J$o
bz eymbot oo the- t4+ han

LrE'- f

++xn\ r )
L+T+E\T
A >oAlb

, *t,:* P-'n'd"".F<

1"ff 1e-Lttrson ;€ rt A d d PYoqr-r\r'


lf::j#
-" 0
-+ +or # I of6'1" It' .

s\ ru\& Xra-rDm3J $.le-+r' ryod^'L'Aona


r+ f* FtF
os,-e- \rntnel|-Ic- t-frt- Q"-brrs"n, e -+ CA) [lJ '

L, r$ dr,'*-(jt L"kb Q"!+tgon:


tnuol &nvo$oo otr -tuso OV rnora g# f,S So
0 L+v ailu,rs4oo 'Ary
t 11, e tr16 h+^ kaoJ sidn
ob ff*- g"r{rJ
th^i- tb. Jt*t sy.ba
'o vl
+r.e- &-^^jt o", S\*l+eJC
the. S.f-Uoi -+.ro^
d-.rfvo}On r.A Sqrne- as> 'oh'r'cA
{.,! c-t-lo-t{ A-n d"t "uef t+t ? e-t'r^rC o'n'
8r-\ E -) T
T-)trr,
[= -2 EffiltJ
gr;
. 4 x"o_-"n4c ),5 t-ft *.-l""sir€. ).e lt F.,og o- oon'le.r",lno^J A s4d'
truI t',n- ,r o d.*i,,.oJ-.,o, 4 5 er( -f" t somz %? ( "
. Tdp-Jo,on p.,""ij m"*roa: raonpt ho-nJ--0"- L.&l- nJu*rgv'e-
k to"d,
(u;urrs. b{ ^Sa^1 NJ-
rcrnrror- .l-fr.l r r^ro1 )Jry+^!,L " I \ t'.,S"i
fl $
So .- $"-na-S,rno.*on |6 hr--d--d -to e-b,ol"*l' luff ?e-ctttsroa.
'
^ .F {-$ 01ro,D'^',. u $+4o<1P ,, it cqo
Qe"r--l #'- %l,r'cn,.
b. C^oov*r.[ed -lp ,.on- L4t 6u0rrr8^v' !'t"tn'n"-r= u*+r'l
c'4 grocodr^ra

gLo^^r.' b.to*l
' A-+ P B',
Ar-> xd I g
o r5+6rD +" el...ri n^Ie k4+ ?"ur€ion i
Tnp"i; Q"--rnar q iDTdfi no q&! @{ E- prcd.'dSon cbntai^ &-f^d,rtt*)
tt1"' L+b 9ei-t-trgioo - Cit -o..l
ou*p*t : Qro--*, ^' riD -
p4**doJ '. A?d-^d eho d fl'o 6 C"l

I , Nt*t no D-tt:r'' \odg in Crd-.g- A,r{r, --- An


"
L, +. Ce^c-h i +','^ r -t.n) L
3' RTlEhs' .F o fe^-"-r^, j -F*- | +D i -')t
qt Pe-pl.ce+fr{ \ &t Prcd'-L+ionA
6 Ar +S,rl5rrl.- \S;n ,.'h <s.e-$i *5\S.\-- IS"
{, \
arn't Ai
6 e-l-.. oo\ n *t.-
%J-nq#?f, I p"t
+'3
6 F hril^eJ'e thq- L++ eewsoo +- -fi" 1Ut 7 f runnrr.. (K ,

0 E-r E +rl r @ s+ sa-b\


r-+ TxFltr "J .S-+ A* lr
F+ cE) lla A-+ A" gd I,
S+.Jsl
fgll-' J+oa"' la
E+fE\ S-+ A^
Ej+r e'IE s+ sorl .
gol ol
A
-> Ac\+^, \orl t
T+ Frl -s-) sl l
t
'r\not'le sr+ *b ale
F+ tdl il S+ A* lb
A +bdAt lnl
4'+ cA' l'JA' It
I ri l--
+3'4 LtfE | ^
fatforrrng 3

. S 3ramma.l
)o o{ r',o€_ p.ro&rr-So.,g+*r- a- noo_4rxro}rqr(
eohJch -t\,eo
A dp.,ot hav<- o Co.ornoo p".h a of gy.nbot4 oo t6e- nfqr^-L-hqn.l
SIdo ob tb. A-pv"d*cAo^8 )Eco[e-J t_.pt €"U""ed
Trainrrnr,

f
"t @
-
A xl,lxP,
u&t .fl*S""r{ra"^ ny{
A-)o<fi1
A,) F,lp.
ErcX

o s+ sS+]sbe
t
Soln\
f+
s + obsl
ll
tr+ aq S'-) ff tB
B-l qb tr+ ."a-
g )o*b
J
,^\ ll
@ c-eJ-fi" -[f.t -'q noo- [..dt*rn1 g'arr"'','r- Crnvut rb_ m#a
^'A
eou-ry,-Qr,.*.Q- t+ (^r&,"'qr*1--,

s-) ?J=bs lt_E!S."1.


tr--) 6
(oln", I

t+itrtss'lo
rf
S sJes
-)
tr-+ b
r,A
hb^#- #. t"k+:fub#\z
Qt*"o-r t C.,so- L.bt- f-ttot 9.l"rn''*L)
5,np,rL:
o"+ft : .A"r zqtusvaJont U't+-.&Cl"^A Qvunor.*--
m{*fpJ t
t. fr. e.ch noD-{e'r,rro1 A, Fl",dfl->.'Lo7*e prcfi* oC
eorn rnoo to -too o{ rrrotet af*efndfn a , "

A-+c< p, xP, I lol^lf


A-> xfr'lr .

sr 4 F,JF, l 1F;"
-f73 1il.e tm'o$,-o**, ,,r-,.fi( no +o. .d{tnJ"u
^p"r&ed
-&" * noO-*e-C.r.,rro,{ har.e- CorrrrnOo p2rfik .
.. Ao TaPdog,cn porsioglbe p.rae trt-e 16
Seoerotrecl
{-""^ 6p to
bo++tr1^,'Ci.e 4"* "aoot +t [e.*s) . '
T^'1ti6 o+Prac},, r^re. gtlab t,c\tA 9b*b-91^b'o( 'ou Ke-<1, oo
'
drr.,r*'3 th€- Vorte +"*. C1-, r4*n-16" non-{u'l"al"*"n3 9t"&r*"0)
u.,b,l ,-nnkr,d.. B.F *b" !l*,- i"p^.&"<ttig', .

. h AeLr.j':si ue- Aesca^L Potst3 Ptn*- c',nt''A+b o[ ^ s'] "$-


proO-dtrS'.o, on" $" s'.cA noo-t-<9n\n-l '
6.".*o^t *rlh th. pr. /*--d,'fu.A. {-. gtt'tt trnbo,| )
be,arina
.,>t$$ t^rL-[,g. J", d q.DnDttn cQ} gqcceLs ?+ ? bs p^ru ao-drrJz b"\
Scq g t6. e-^..Are. *tnt eJ-Le Sar* €rror ?"flrtrt-.

Blg$ln e'P"-'st*-D"
\/o?d Ar )
t
c-h sobe. ar> A- rprodurA\oo , A +X, Xz Xo )
-+-" Cf= t +o' k)L
i + LX, lrt a no^ ta'rnln "-i_)
c^l^[ proced,^re- Xi O )
nJSu i + (Xi eru",a,i-s -1fi.- G.'.,.'.f tnpJ -ey",bol o.J
o*dvrrrn ce- il--- $op** -{.o tbe- De&t 9y^ 5"1 )
I
elA e-
€-.r'Y^o.(- CJ '
)
I
3

ntot l No-r-I3 " h Sl.cu.g\.8 DegeJ pcrst\ .

r. ffi, f F Syrnb,"[ ]6 DoD-&rrtd tAsn +f, trroJ"*'"q


or- <proC.d-k
L , 9t g.arr,bo [ *1nDl "r-( lpattt- co *#b inp'r'f,'.p htr.r'-
tr-alrtt .{L rLz '\A
,^r,"l"trn) \...2r.-p*,o,-# +f," t^rut-fi9,r*-9 ' -
v"a .D esc"-f Ps'gntq
Wtlpg -g F P*ggi
s

I o Pe e.--6, ne- D cgce-ib ?t'Cl i3 tnc)tA bo.Ple-tY-a{-trta3


t-, - t/ t cttfi ,*f b^*t "o'"t$t (f*atch'dP-rs D
,

A"aI*ffqz *eab^,rel,e- ?o t^rh-id $"


rE r'( - o$--
"lt2.lnu*
noo--te'rolnJ <1""bo( w<-e1,oose. o6e o-|luD"t't q"d t F <oa q
mf&mJk$ u"- AX a-oofr',a d'l-s^oA" ll,-"V
"uit6"n
0 c-oogJd..Ltbe f ra-mroo9_ Sireo b&,rr 6r-,., d St try, crl - Co._J a_rr_d
{ra-c-e. tt u*nX (perr-trsir.e Dr.geJ Fossir,$.

S- I +'cAJ
A-+ abl",-

9o lo."
\np.l* gt'n3
s
./l
-C-A d iol&potnLl

wa SlteJb u.le S,tq-xb3g,c,L,ot S , S tr"* t,rl7 e"- pro&uf,g, so


.
t'tz +xpani- 3 o,1 Sho.,-o a-bol€ , -fr- ?op1,t}* poi"lr V.lb.-l po)n-f
b tt. sL*67 rymbot .h ,"p"t st"t?,
,/1" p(l-oLt tr--[ "l- yartet .n Ci-e"e) rnJeA<-s *t.}^tt
gy,bol.
"t iop"* st;aX 0l'eu:oco|), su uL ad-ro^e lopJ_por".A,<_
4" N€&-g.yrbol l-<- a,

ft io pr^L Po k\i-t -

c N..t (.*fi- . F =fr.c 16 A ) hrc ex1oo 4 A us\\q


9'*f d*rr*#r e, A+ -b
t9'--
.. - S . No'^) g"-b^d t-,f ./, p""t<.+*-r.r M".*e!"1
,/ I \ u"rfr., taa ln2,.L;""(.volrq , so ux_
'J a{rqno"- *Ao- \opr.L ?oi^L,L +o J.
4
/\
t\
Cl a l d
O.b.
f inl*L?o)'cA^

' tt" b w do.s^rt t^,.**cj.cl-, we- g.p"#Ft"-


9p",q"
and, Hra 6o b^cq +o h (non-fu..,r;1) +r ees ,c[efALfiu-_nt
anolAu-"J*rtr-*re 1" A +ft A..s n.,t_ be,.n +-ied
" rtk * fl" L.-e<tn A,^u. YDu,st fleze,t-tl^"-irp"Lpot&t
to pctboo.z . C. "* A') , fTl;Tt-l
--7!;rv^t-[,"+"-
' 9.co^.d +t{o,..*'. "t + lB 4-> a,
n'
\
---ti \ t*h 'a' ,n,r-^*eA"g ,or.lA *Ft" lopa,t-pa.^f.,r.-
c A d {J)'4- '' 9o c^){- q,J v-a n0a*1h.a- i"p,^h p€-\$..L fu I .

a. c I o ld
tra-Po\^1*-

A a,.J it 61o"lcA"gttu fi;,-d


. r.io*-t t<*$- -$-P.t"r.tr-.s 16
91nbul- "t iopuf *A,5 (1..$ , .w.- hol-f o^d c.DhDq^qa
lu cce-ut $J bapU-l)oa " t pa.4,3 ,

dc
C us,'ib tf* Q"{rrr$he D esceb
PorNV il. W
J Qro,rynil-
S+ r' Ar
E+ L+r A + a,b la-
\

$otoi
VolJ EC) 8oh,t

f r/otJ s q
e (); Lt\
ll UTJ ey1-h[= j+') .ll
iI (tny^I g1-boL=
='O' )
{ ft:a&{qnaz,'np,J
ad vanv- tltz-\of^t Povtt*; P'oin$e,

Tn; AO)
)
] !h C,o X>^Lscl,nboL = ='J
/4e-
gftArL)', np & pnt'*Ll*
I
;
^&:fa(xQ9t ctusrn ' d\l L
) t
dJr.-
C F+ Ce) l;a er}trL))
3
su rda FL) i
a
l)

[\ AC)
i [- C,'rpJ SqmboL= ) (') sL
- , - r ,\
f i h CAp*f s3obot = ='q' )
nJn,.*Le iDP^f Po\ntrr
f
EC) ) cu.dto6 k-,nFJ S.1 rnboL;l

I h CinT*t 9J-.b {* =')') ?


F C,op"t
SlrboL = )
kvJ-
"b'
rywffw;
6"!rt I
^
adrqnu \W a&nonr-|q5**-ffilV
J.rrz
L"rro n 1\,,
l
) d's"
d;" tl L,nf#sV-bol =='?A) srTo{ U)
anrdnte- nt,*t PdP) f-r
j
lt5z o cfurn otl't*
€rro rt ))
_t
UW-fr (co.,s^*e.)

FrR sr A^l D Follo uJ

FrrsrCx) i Tt ia d-$-;"1 *t q s.f "6 {arr,\n-l-a tn",f *9p'o.'r.a


LLa U%gtt o fi c{."t"<$,on d.d*d $*^ V .

:"
Algo"'fu
--rFJF---+
3
I .
r Ttr x r$ a *e'rnioa0 ,4-rrnn FrBsr
cx) , f r I
f

z' 2F X + E t6 o. pmducbon ,.t6"^ adJ E €


F.*srLx)
3 . tb. X lr: o noo-*[e,ra?",o-0 o.,J X+ y,y"% yn
o-nJ ?F Y, YzYg V-, + E -tra ",
F rpsJ C<) ,,

.'& X -> Y,Y,YE Vn o.nJ y,y;


--^ VD )z
thun r rBlt Cx) ,+ €.?

Folloruqoa)'" Fo, ngr,-+dr-1.,..-l D( i6 d+".j o._.s tb.


s.* "F
--te,m?^o-l-b :th..t o?r( q?p.4r ?-_,cdr.otr{ ..b *he *$* .
b_ X ?o so,",., e ,
S".t -$o-0 4.*.
+$1y1
l. place. $ io poltoo(s), r,ch.re- 5 ,o tbe stcg.L sX-Lol
,. TF A ) xBB thlo €Ve",,.,.|R,.^
, P , thn"
e6
ev."6t$'n3 ro Fr*srtp) e*.9f
e
?s rotlo*.r CB), (,." .un,rrB) ^ trrRsr(p) ._.+sJ
t ' rk e-s 4 tr A-) o( Bp ,
P o urhae- rrn<r(p) conta.t^6.E _,
th'eo <-ve''X '11,in
3 ?n Folt6.^,r Ce) ps ?o trclloto CB)
t' Ci.e Fottor.J Cg) = p"floo1l))
O Fr^a tfre FrBst ood folLod -t^. t6a
;,9to.-rnq.-f,,
Sot^r$oo
e ->T,'' S1'nbotb \ trtasr FoU.o'+l
E'+ +r.e,lr
,' E I c lJ
T+ F.|
T' .-r ". pr'f L
E\ l+L )g
'TCI I . id t)$
f + Ctr) lid
tt l*a -+-)$
7 \ c td +'4 )r, .l'
+

S+ i Ctss' e1-bote httow>

,'- e les 3 @L; $e-


c-> b
=l
+a {€-
C b +

o s + #gca
S-+ ?sfrs.s/"
A ++al g
\nbol 9 F tpv Ftlo.c I + +*ele
I
o
.4_,J
la
c + vtslz
S-+ CC 31 onL,o l6 Fr&sr Folto u.-r

c-+.C \J s + -yT./ A +

S.1..,bola
Ftto,^r
A -l- L +r "/ J
.d {q
s B *L +'A.I
C c!+ L 7L d
L

i t- C t ) p a-y-S t9- o'r'- p'red, c{9ue P.. St-s' 3

, LLCr)' po."r9 cft ''\


6 one- o$ tF..*hp" "h Tbp-$"on_p"-Bc9

Ft, trt L sbaoda L"bt tp 116 tf scqnnig


L : sba Ab 4" " L " Ft ff,o1t d.t,"o-l-' oo
n
S e0ond ,

L gfo-nd b -{" uerog ? D. gy"Dbo( qs LrsoK crhoo.d .

4 -T|re. plte-dr\-{-'*- porS 61, *F.o}


t*rornaa +^-
.,c t.rtcA o^ f 6 _/
getr-uvS ?,re- eLegc"'.^f Pa''S ea .,ci*fto.*-F- laoeJ<t'"-*a?J ) 6 Con stn-..It<'
r,r CJ* d LL C') ?*-^1:..

a6. -fb. Jo [touo?,.,* g.rqrnrnqr,! q?e. not


lO
LL Ct)

(r)
l. A.hE** t*-rna.s. f{t not r_u ,

2, L"f t ?.t t-li *- e^L i6 nut LL (r) .

flrarnro
3. "T6" (,q fletrn rno-i- t^.r Lic |^y iA Alt t"$ -P"*"*-d f6 elgo not LLtt ,

l{. 'fir. g7arn'rn*-l thJ ?uS"L[* irr r"ulrhpta e^S"i ug [o


U
(r)
tbe pa.S',og tt'-bQ- &a not LL .

o fr' qvery( pm&c*ron oh th. $'r A+ M, lor" l- ^ Irr^


F rpsr Ca4) A Fr&grctrr) n >>?? n FtAsrC/^) : 4
A th^$- [a) 1on'fe-.." t
e. Ft e\fe? no6--[3t-ln*l 9,r.c-b FrPsr
rt
FrREr c+)
n Fstt'o tA) -p I
t",p
"k
3 tatj<
'

p*"di ctf \-e-


Fcr-rsing o*tp.^-F
proqtu"n

pcrs?n q
T..ud
vl

#0 t t r''tod-,u! o I tu-l"f.r - d* \.e4 prod, ct"q porscer

p,-e-d^t*;v<- p n93& Coogtnb,e ol):-

o Topv,t B"[rF,r ", tt- Conto.lnr tlre 9&i nn tp b e- p q" Le d


+ LLo,^vd
'v4
s tlcl< \ T f ra-rn'nag sy- ba.z- $-Ua"-'"1' J
'J ^
Co^t-cr-in6
f

T"tble : :rFft a LDo'*il'[-tX" frrrn NIL,"J


,,.r h rA e + t\6 @( DoD;trXr"f nq.,[ *,^d to.' ig4<;i,*l
LL (')
o bb.tr o tbe p-e-dj ct',^a pctrsloa to,H e J- . tb" J-tlourinq elra-rnm a,g -
o,nA SbowA fliz 511ee{5
tog p-e&'tA.'- por-Se-a v+t',l- io2,^F
'no.de ,'J+la-
( ".,
P-s Ttrl So0r*io6oo p-..6t*S.gt th" FtBsf A+.! 'frtt6.^3 .

E'+ -igi-E' L s1robo lt tro tl.o,*)

T+ Frl E, (iJ )*
g'
r1+ +FTl L +€, )j
F+ cE) id T C ;d +)3
TI J(a +)+
F c?d .+# ) +
3
pa-rg\ n tabL"
id + # ( ) 4
E E )TEr E;ral
I
E E \+rtl E\E E't+ €
T T+ FTI F+rr I

TI T5L o-l
r4*Ff I

15 €. r\ €-

F F, ir F+ te)

t'lovt-g rrtad* rt-d-r r e, c.{ I 1",.,


<t?.q_ 'tn id+jd

m
"khe-d sfuw fI f ,^-t- +*oaL
E+ i{+id +
j

re'4 r d,-+ id + ou*pJ E + TEI


lr'

F TrFls i,d +ld, o rd?,^f f -+


$
"J T.E I$ i d +i d f o.^fp,^f, F*r t d
Ed r'E '+ '+id s
,t:
6 oJ€-h i d
id Et+ +iJ* o"+(f. _rl; e
fJ .+T E, 9 t ide o,*pJ Et; r-7U
t

td + rrtl id 4 MoJekd +
iJ+ FTIEII rJ $ {
o,/p*-t- Tb FT I
i"t- + Fidr'Et 4 id 4 o&t F ->, d
fc+t.{ rt elj I id
rd+ld L,4 f TL) I
8-
H+id f I t

f,r-S e

tr/

r{o k: ?"^J qJt clato no & ?rsurtwt{ '

{t
C-s ns{d,r the- Atc--Tot
A+ 5+Tl3-l '

'T+ v \u*u\u+v
V+ "tlb n
$. ?"edig['ve pass's
2

S. tT-- gt-stot(*
@ l*.
? Do oeLe-tL*1
c,"o"a*
oo y :; * F-edt
@r"h*i F"rt ,(6, LLtD o'r€b
6 c-o*r^r"
ct^n'tt-'*1
::::*-
::1 ch.L,

6 tPt*l'"*t : :^
Po'6t-tr{€
CO til
const^r"'$1

s"t"t I ov '&d", . -fL->e stLo"'a pt'-4'$t"n


-r L{t'A.:
rs "'ot
c1^.or'wrcr-t
$*oppor- *$iO'
@] The- d"bo" Qo'*>fie6' <fi
ere J['Lf" L -\t^e-
.,q v+v
"r \"*rl\
rJe nP-ad {P
d-. t+ &U"vr'^3.
r-uc) P'.9a.A- )
ti- 9r^"bo-b(t +t
@ to 61alez- i

Qen {dI &' ^''


A-+ v P,l* P',l *r, \ T+v fo*t \"+v
.F+
I Y+vr
\ +;'\*ul*/
XAI
or-+ 13,
1 ?'\Pt

*e" @ F tlsf a-nJ 6 ltotP:

tl
hD I t(9q,
E+g+5 Iu--
_l
I E
5z +
T-)v I

Tr+ t l*v l* u T ,o\k) +


I
++ +L $
v+".fb T
*+
V

{q
.l

bu-LLc')-be-.P€[oor..1 -t*. cond$o.,.l rntotbe sa4*ft+


@ *" aYq,.ornaA-to
t' c"^g\e ft. PN'4g$"oo'
l_ \ 4
E s+Tl a -r
-) Fresr LS+TJ n P1s*rC" )
Ls ] A {}3 -b
F IPET C') n FrP*t-Cb)
v-> aIb l.

ro\ ntaI -f '

E;.lf- Con d^'{,on S"&r t$"d

trrpsr h') n P'[loo rr')


TI-> sl*vf +v
fx- 'F g3 c\ {-Sl -+
1=c{o .^.,J Co n& t oa s'*""$nd "

S 3?.nnomos f L LL CD '
4ftnk- '+t'<. ? e-s*Ijtt

potr 9in I tabta: o

o- b :r + +
6 3

5fl EtA;T
tr E+
T+ tar
I
T-+.rt I

T rbE,
T5*v r-I+ v
T I

\^-) o.
v+b
;

io P".&"u4;'u Po-.sl ,

re .An srrl,( JL
d+.pa &'\"fl p"'d"t#"e- ?arslng uchrn'tf"q--

*:ll:"'":fi :;,# docrnot


"-rc^.sr*b.-fr'c-'^21-f\'T.^*t"bl
ro tt' -bP ?F gtqc/< -,, 4 l'6 -t0'e
,' uobeo r,oo--tcJro!t.j. 'S
"O* syoboL ooA rotLA,*l h"a blo"'x "^+1(ulaox en\
\ dclo\ed a6 e---or)'
k,or *.tov"1 tc dooe-d,"g ?o,.,..c *ode *.1 gbor6e. te"cl 8"aoue*y,
?"nic Mode;
n -ttlc. ogproo.c.h ) eclo( 8"to*"i ,o do". b{ sKlpp\^3 gyrnbolf
&- tt" \opccF u*tl a. t Fao n"J<l,r^ *r4t gyr.-1.',-*,rrr,o tof:or..l_.1f,,1
9ynonroni\ {oKene ^9e Sefu.}e-d <ucJr f(o'0 the- po#.t<t^"Jd ou.'et
Q+lausrl"- .ltL e-rrcrA '/t',t-^a- hr* to oc&r-:- in p,r-au6.c. .
9'*t tb +l*- fleCorc.1 -t4Lbn,rett4 q;.z- ?l..,oc,cq LrL,rt
r) f o. o. non-l<.rdno<1 *, c,,ns..i,_s t6. gT,nbog io frlla,s ftf ),,TIu<,
91,obolc c*n b. hos:dld g1ncston',/\ feyt^6 a^d 4t- *d&.r
^a
f"to 7a&^n t+g" c.pb1 a,,fu Lbak nknu r.
'tl

) F, a ^on-4<t;,.--! *t considat lu ey^bal \a FpyfU),,T6,*<


-9ynb/e An ./*o le 6,,S;drzcJ, cjr"gs-e-tar6 q-d q.lJ -{p -te.-r*
Po8,An t-tJ.t flgL"u.y "4 b[anK psfu,,E ,

t tf d. n oD- {+-g,rn)"J Cqn


gun.'o_le. tA e Str.rnq . -/Y* r., -t^a
, -Ok
J)
pvo dr,.f' .r, ded rT "g
, Cc.n b6 tde-d oLg d n[or.rr$ l
(.)

q) tt
". -[oqr"o,,nJ..tp 06 gtrq< Cctonot be_ ,r._[ehod
) PtP -ta <
-+.Jroln ^Jrs -R-,^ tfrn- st.c/< c.n J \sSrra v €-ro, t-De_(ne
qn 4- ,./

?o!"rt t6. G"alpondi.,3 {gr^iao^,0 q.nd c"^*',nrrc-


?4r=,,8

rs ?eCo'-t r., itAoC i A trDpbnn n**ed


Tfr -l-Ut, Ff,. blarrr<
"d
eni$ c* i o th ., pYr- d-'rA '*, purg)r1 +*K- \€i+A p.olnler' +D er\^or
9",i{{.'u''
r-"4*-+ , "y
.fi>use c-boga , 'togert- ,, fl"|atg
- o,( dJ)-P
g1-bott+r.* -Ule-\ng,f q.od. ?slree- ogfwplaFe crvrcl rnt<ro,g<.
rh"d *^( dto pop +*^ i* rtq{r ,
f
F3e MD& p*b9-6:
' ei d ..-q *4 nq rannrnc'--l-
l Lo o
" -4oilor,l JU f
t +'-rE
tr ) +-TE ,TE
I

T+ prJ
T'+ FT'll
qA

F + te) lit
@co",rt'*J tlre Pa'sl^O
'ba-bk,

@ OdLJ tr''e \oc),n".,Ln lpr<-,e #. t(. pa"r,"fl €6"


.,
@ 9io.r,s tba 9e-qt",,o,.c.-ofi mow* mode bX porgo'4" -t"5') id+e+id
S jr.,bo I 6 FrR sf trolto,^;
9o lo:
E (rr aI-S)-
E, +L )+
rF t t-
| + )C
tr L?JT ll
porSinq t-gra

E;TEf

f-+ fJ
A P".-sl brorueil {o l<o.,g
?A -l- + C ) $
f D+rll E+TE I
Syn ch Sy ncb

E
I

E\+re\ e\s e.\c


IT TbFr' I
f->d 37nctt 97nch 9yn ch
t\L 15 r*rr\ tl-; L rlt a
ilr &\s1^,,r, STneb
,l \ f+ tE) ey"on Vr*r,
O geqlLn(o nov a- ttX N"'st-v ) iJ'+ + d'
"[ ^t PasszL

r,q alcheJ gta4a inp,b fit:l;ea

,D+
E+ ry+
iJx-+-lJ +
?-*-t , 9Kr'p -Remo\r< )l*"p{
o.r*-p.^-F D+TEl "tPt^,

T F'+ id+r-+ld+ olp ri trTl


fl'gl 4 i,C. x-#iJ + olp F-> id'
j4r'Er+ ;d. +* +id + t'^oich i d
.ll
?d T'E' { r*iJ f u lp T) i+ FT'

ia- t rrt r'+ t -l-iJ+ F/\Gjieh -tG


grrct sQ ?'
'?T'v' +-)d +
?d +r + goP +-,-P",-.n t"P+
?d +r e-i Et +
?d+ olp F-) id i
p'f t.,r.c,Jsh id f
?d+- i4-,J -Ld+ ' \ ''L t:t {'l

-TtEl4 o \prl T'-)


?a*id $
t* qe- id- Etq t o\P tr$L '

\d-r.- i d I t'

{q
ALQo hr+{ w) : corro+*
"!tr^ n#- ,eM
?q'oilv"q wilo

furgu*-:
I
n
e,.tO,vtnwgf q ,

f\i
ptl{putr: --il* l-1 i
I
f*unj
- lrn
F{e5o4' ;'
/.|

'Frl. 9"ll.
- fl*^hn^{.
L. ?t e,ca-[. lrr l,*.1 a- )n cL{)/
fnR's
.di A.+ .L +@ M t,S.Al
+?*lt^y t-d
g. . rP L $o $,T FI.-..\T (tl,
d.,',.t$rJ l" n po LJ-o r^,r (*l , "A ry
rr

ta nF+,6J, f$-e r3i-ut f*-w'T'(Al


A + & 'ln Wuuv L*)' 4-r"{ +-
tn- O'+,
4_l ae "il).
&-@, +q"^L- ''}t
,p+ r prr#rr^/^t
o.{+.- *to-
r\p p'o UAo\ oo4- *t4 $n r-t DA-, ol .'
S-+ r'{rA.ql *ff";t *Ph -^ry

Você também pode gostar