Merge lp:~spud/spud/update_options into lp:spud

Proposed by Cian Wilson
Status: Merged
Merged at revision: 535
Proposed branch: lp:~spud/spud/update_options
Merge into: lp:spud
Diff against target: 7047 lines
To merge this branch: bzr merge lp:~spud/spud/update_options
Reviewer Review Type Date Requested Status
Patrick Farrell Approve
Stephan Kramer Approve
Review via email: mp+130173@code.launchpad.net

Description of the change

This merge adds a new script to spud. Based on fluidity's update_options.py script this has been made schema ambivalent and uses the same rules as diamond to find the schema to be used for a given file extension. Alternatively (and similarly to fluidity) -s or -a may be used to specify the schema or a schema alias. Additionally, using the -r option, it can recurse down a file structure and search for files.

Manual has been updated and script has been added to the install target.

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

I assume you're using this (and thus have tested it) for the magma code you're working on?

Revision history for this message
Stephan Kramer (s-kramer) wrote :

Tested out, debuild the package: works like a charm.

One thing: when we merge this in we probably want to remove it directly from fluidity to avoid getting conflicts between the spud and fluidity package?

review: Approve
Revision history for this message
Cian Wilson (cwilson) wrote :

Yes, for about a year now. In fact this is me just copying it from that repository over to a more sensible location since its not specific.

I've also been using it in fluidity in preference to fluidity's update_options.py script. For example, in a fluidity checkout:
spud-update-options -s path/to/schema/fluidity_options.rng -r -- *.flml
will recurse through all flmls (rather than just the hard coded ones specified in fluidity's version).

Revision history for this message
Patrick Farrell (pefarrell) :
review: Approve
Revision history for this message
Cian Wilson (cwilson) wrote :

Stephan: don't think there'll be a conflict as the names are different (spud-update-options versus update_options.py). The original fluidity one might still be useful to some people (if you just want to update things in the tests directory it requires less thought) but it could be removed eventually, yes. Probably want to release a new spud package before then though.

Thanks for the reviews guys.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Makefile.in'
--- Makefile.in 2012-01-25 14:21:05 +0000
+++ Makefile.in 2012-10-17 16:52:21 +0000
@@ -88,6 +88,7 @@
88 @INSTALL@ -d $(DESTDIR)@prefix@/bin88 @INSTALL@ -d $(DESTDIR)@prefix@/bin
89 @INSTALL@ -m755 bin/spud-preprocess $(DESTDIR)@prefix@/bin89 @INSTALL@ -m755 bin/spud-preprocess $(DESTDIR)@prefix@/bin
90 @INSTALL@ -m755 bin/spud-set $(DESTDIR)@prefix@/bin90 @INSTALL@ -m755 bin/spud-set $(DESTDIR)@prefix@/bin
91 @INSTALL@ -m755 bin/spud-update-options $(DESTDIR)@prefix@/bin
91 @INSTALL@ -m644 schema/spud_base.rnc $(DESTDIR)@prefix@/share/spud92 @INSTALL@ -m644 schema/spud_base.rnc $(DESTDIR)@prefix@/share/spud
92 @INSTALL@ -m644 schema/spud_base.rng $(DESTDIR)@prefix@/share/spud93 @INSTALL@ -m644 schema/spud_base.rng $(DESTDIR)@prefix@/share/spud
9394
9495
=== added file 'bin/spud-update-options'
--- bin/spud-update-options 1970-01-01 00:00:00 +0000
+++ bin/spud-update-options 2012-10-17 16:52:21 +0000
@@ -0,0 +1,116 @@
1#!/usr/bin/env python
2
3import glob
4import os
5import sys
6import argparse
7import string
8
9import diamond.debug as debug
10import diamond.schema as schema
11
12def schemaerr():
13 debug.deprint("Have you registered it in /usr/share/diamond/schemata, /etc/diamond/schemata, $HOME/.diamond/schemata", 0)
14 debug.deprint("or a schemata directory beneath a location listed in the environment variable $DIAMOND_CONFIG_PATH?", 0)
15 debug.deprint("To register a schema, place a file in one of those directories, and let its name be the suffix of your language.", 0)
16 debug.deprint("The file should consist of:", 0)
17 debug.deprint(" A Verbal Description Of The Language Purpose", 0)
18 debug.deprint(" alias1=/path/to/schema1/file.rng", 0)
19 debug.deprint(" alias2=/path/to/schema2/file.rng", 0)
20 sys.exit(1)
21
22parser = argparse.ArgumentParser( \
23 description="""Updates option files.""")
24parser.add_argument('file', action='store', metavar='file', type=str, nargs='+',
25 help='specify a filename or expression')
26parser.add_argument('-a', '--alias', action='store', dest='alias', required=False, default=None,
27 type=str,
28 help='schema alias that should be used (will be ignored if -s is set)')
29parser.add_argument('-s', '--schema', action='store', dest='schema', required=False, default=None,
30 type=str,
31 help='schema that should be used')
32parser.add_argument('-r', '--recursive', metavar='depth', action='store', type=int, dest='recurse', nargs='?', default=None,
33 required=False, const=-1,
34 help='recursively search the directory tree for files (if no depth is specified full recursion will be used)')
35parser.add_argument('-v', '--verbose', action='store_const', dest='verbose', const=True, default=False,
36 required=False,
37 help='verbose output')
38args = parser.parse_args()
39
40if not args.verbose:
41 debug.SetDebugLevel(0)
42
43filenames = []
44exts = set()
45for f in args.file:
46
47 if args.recurse is None:
48 for filename in glob.glob(f):
49 filenames.append(os.path.join(os.curdir, filename))
50 exts.add(filename.split('.')[-1])
51 else:
52
53 if os.path.isabs(f):
54 dirname = os.path.dirname(f)
55 else:
56 dirname = os.curdir
57 dirname = os.path.normpath(dirname)
58
59 for root, dirnames, files in os.walk(dirname, topdown=True):
60 depth = string.count(root, os.path.sep)
61 for filename in glob.glob1(os.path.join(root, os.path.dirname(f)), os.path.split(f)[-1]):
62 filenames.append(os.path.join(os.path.join(root, os.path.dirname(f)), filename))
63 exts.add(filename.split('.')[-1])
64 if depth == args.recurse:
65 dirnames[:] = []
66
67import diamond.config as config
68# only import config after the debug level has been set
69extdict = {}
70if args.schema is not None:
71 for e in exts: extdict[e] = args.schema
72else:
73 if len(config.schemata) == 0:
74 debug.deprint("Could not find a schema file.", 0)
75 schemaerr()
76 for e in exts:
77 try:
78 extdict[e] = config.schemata[e][1][args.alias]
79 except:
80 debug.deprint("Could not find schema matching suffix %s." % e, 0)
81 schemaerr()
82
83# cache parsed schema files
84schemadict = {}
85for k,v in extdict.items():
86 schemadict[k] = schema.Schema(v)
87
88invalidFiles = []
89updated = 0
90for filename in filenames:
91 debug.dprint("Processing " + str(filename), 1)
92
93 ext = filename.split(".")[-1]
94 sch = schemadict[ext]
95
96 # Read the file and check that either the file is valid, or diamond.schema
97 # can make the file valid by adding in the missing elements
98 optionsTree = sch.read(filename)
99 lost_eles, added_eles, lost_attrs, added_attrs = sch.read_errors()
100 if len(lost_eles) + len(lost_attrs) > 0 or not optionsTree.valid:
101 debug.deprint(str(filename) + ": Invalid", 0)
102 debug.deprint(str(filename) + " errors: " + str((lost_eles, added_eles, lost_attrs, added_attrs)), 1)
103 invalidFiles.append(filename)
104 continue
105
106 # Write out the updated options file
107 optionsTree.write(filename)
108 debug.dprint(str(filename) + ": Updated", 0)
109 updated += 1
110
111debug.dprint("Summary:", 0)
112debug.dprint("Invalid options files:", 0)
113for filename in invalidFiles:
114 debug.dprint(filename, 0)
115debug.dprint("Invalid: " + str(len(invalidFiles)), 0)
116debug.dprint("Updated: " + str(updated), 0)
0117
=== modified file 'doc/spud_manual.pdf'
--- doc/spud_manual.pdf 2012-04-04 01:25:03 +0000
+++ doc/spud_manual.pdf 2012-10-17 16:52:21 +0000
@@ -493,35 +493,40 @@
493(xpath)493(xpath)
494endobj494endobj
495329 0 obj495329 0 obj
496<< /S /GoTo /D [330 0 R /Fit ] >>496<< /S /GoTo /D (section.5.2) >>
497endobj497endobj
498332 0 obj <<498332 0 obj
499/Length 130 499(Spud-update-options)
500endobj
501333 0 obj
502<< /S /GoTo /D [334 0 R /Fit ] >>
503endobj
504336 0 obj <<
505/Length 132
500/Filter /FlateDecode506/Filter /FlateDecode
501>>507>>
502stream508stream
503xÚuŽ±
504Â@DûûŠ)0ëîžwgJ+·‹@P„ AÈÿ›°¥X
50535093
506ÌcO0N�ÿøÞÂú¨[H!•´�= š)©` 510ÌcO0N�ÿøÞÂú¨[H!•´�= š)©`
507¬Ç­ºŽS_7š¸šKŠ511¬Ç­ºŽS_7š¸šKŠ
508/Ý{ê†únggµ)鈅24m&–âˆÝøy512/Ý{ê†únggµ)鈅24m&–âˆÝøy
509>Œ+weÑeþsë`á513>Œ+weÑeþsë`á
510bP'ÿ514bP'ÿ
515xÚ3PHW0Ppç2ÀA;…pé»Y(šëšš(„¤)™é™*±ž¡�¡BHŠB´FpAiŠ¦®‘©�PPÏÂôMÌ+MÌÑŒ
511ñ‚˜a¨gijj6Ã\ÏÌÀLA×ÒLÏÀÐ516ñ‚˜a¨gijj6Ã\ÏÌÀLA×ÒLÏÀÐ
512b„rI~RjÔs517b„rI~RjÔs
513ÃÈÀÐd†Ë\C¸ï™)518ÃÈÀÐd†Ë\C¸ï™)
514endstream519endstream
515endobj520endobj
516330 0 obj <<
517/Type /Page
518/Contents 332 0 R
519/Resources 331 0 R
520/MediaBox [0 0 595.276 841.89]
521/Parent 336 0 R
522>> endobj
523333 0 obj <<
524/D [330 0 R /XYZ 55.693 817.952 null]
525>> endobj
526334 0 obj <<521334 0 obj <<
527/D [330 0 R /XYZ 56.693 785.197 null]522/Type /Page
528>> endobj523/Contents 336 0 R
529331 0 obj <<524/Resources 335 0 R
530/Font << /F28 335 0 R >>525/MediaBox [0 0 595.276 841.89]
526/Parent 340 0 R
527>> endobj
528337 0 obj <<
529/D [334 0 R /XYZ 55.693 817.952 null]
530>> endobj
531338 0 obj <<
532/D [334 0 R /XYZ 56.693 785.197 null]
533>> endobj
534335 0 obj <<
535/Font << /F28 339 0 R >>
531/ProcSet [ /PDF /Text ]536/ProcSet [ /PDF /Text ]
532>> endobj537>> endobj
533339 0 obj <<538343 0 obj <<
534/Length 68 539/Length 68
535/Filter /FlateDecode540/Filter /FlateDecode
536>>541>>
@@ -530,21 +535,21 @@
530áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÒŒ535áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÒŒ
531ñâ2€jB§]C¸”é'536ñâ2€jB§]C¸”é'
532endstream537endstream
533endobj538endobj
534338 0 obj <<539342 0 obj <<
535/Type /Page540/Type /Page
536/Contents 339 0 R541/Contents 343 0 R
537/Resources 337 0 R542/Resources 341 0 R
538/MediaBox [0 0 595.276 841.89]543/MediaBox [0 0 595.276 841.89]
539/Parent 336 0 R544/Parent 340 0 R
540>> endobj545>> endobj
541340 0 obj <<546344 0 obj <<
542/D [338 0 R /XYZ 55.693 817.952 null]547/D [342 0 R /XYZ 55.693 817.952 null]
543>> endobj548>> endobj
544337 0 obj <<549341 0 obj <<
545/Font << /F28 335 0 R >>550/Font << /F28 339 0 R >>
546/ProcSet [ /PDF /Text ]551/ProcSet [ /PDF /Text ]
547>> endobj552>> endobj
548374 0 obj <<553378 0 obj <<
549/Length 1170 554/Length 1170
550/Filter /FlateDecode555/Filter /FlateDecode
551>>556>>
@@ -555,235 +560,235 @@
555�4~560�4~
556561
557ñ€Î562ñ€Î
558¢Cktþš­’beÑXªà«Z¸üÆ%¨ìiÈøÏF¦['M"Ð3…Åâ…ëªxÜêXå�‚Ø’ÝÕrÕÔH•×÷"•,VÕ®¹æ™Äc¹Ïj‰Ûjyyvñþ³ÝÿÓ¹³³@oº\þ$�»’n‹ç±-Õ‰Šõ¼á†¢ÐYâpƒ$èÐr|563¢Cktþš­’beÑXªà«Z¸üÆ%¨ìiÈøÏF¦['M"Ð3…Åâ…ëªxÜêXå�‚Ø’ÝÕrÕÔH•×÷"•,VÕ®¹æ™Äc¹Ïj‰Ûjyyvñþ³ÝÿÓ¹³³@oº\þ$�»’n‹ç±-Õ‰Šõ¼á†¢ÐYâpƒ$èÐr|
559ÇcæAÙu~•-¸êuƒh5w{—Ù°„I·É©hÁmpÐ+s×›Ôx¡=ÄqÉ¥+§�Kª¶B«¨Zül:úg„ÌÏ @ ìq.¥ÐÃÌA<ºþÁÜ<üh¶ Òß«¯Æ€xXs�«ÑŸv ê� `ž¤ÕR�IkÎ7­t‡¡C3$-tæƒ9ò ò÷b564ÇcæAÙu~•-¸êuƒh5w{—Ù°„I·É©hÁmpÐ+s×›Ôx¡=ÄqÉ¥+§�Kª¶B«¨Zül:úg„ÌÏ @ ìq.¥ÐÃÌA<ºþÁÜ<üh¶ Òß«¯Æ€xXs�«ÑŸv ê� `ž¤ÕR�IkÎ7­t‡¡C3$-tæƒ9ò ò÷b
560æÔÃæò!kt¤ãõ¨¶†Á'ò•¥°'d«81µ”{ˆR'\H7\ò"k&ÊÍ`ñ±'„#3úî,>7¸àj-“$áã2ìÛœ.{AÆ[€ì565æÔÃæò!kt¤ãõ¨¶†Á'ò•¥°'d«81µ”{ˆR'\H7\ò"k&ÊÍ`ñ±'„#3úî,>7¸àj-“$áã2ìÛœ.{AÆ[€ì
561ãbæ`LkŒ¯îâXxƒš4u’§™;ÃK|pmH/566ãbæ`LkŒ¯îâXxƒš4u’§™;ÃK|pmH/
562oƒ@_ykÆ¿«¥›»¶º-í83ÁnoÌCõy)ótyI�Cj-*ï“Ý‹a3Ù]ê’Ô‚R@«†4y¼ÁèXE9œÿ567oƒ@_ykÆ¿«¥›»¶º-í83ÁnoÌCõy)ótyI�Cj-*ï“Ý‹a3Ù]ê’Ô‚R@«†4y¼ÁèXE9œÿ
563ç³Úù'ilkíf ’$-”…ÄéÖxt®ÜOww?¯Ýÿ‡mÿj® tž÷(ƒ¶i¶ªTšÙ‹U“ßÃâÖ^�†*N568ç³Úù'ilkíf ’$-”…ÄéÖxt®ÜOww?¯Ýÿ‡mÿj® tž÷(ƒ¶i¶ªTšÙ‹U“ßÃâÖ^�†*N
564569
565›oÚ·OÒ%H­K\„³¼Ô570›oÚ·OÒ%H­K\„³¼Ô
5666ö¦ÂüÚ/;)«9±­µ† eÔãHl MZµ¡íâÒå=¶+l5716ö¦ÂüÚ/;)«9±­µ† eÔãHl MZµ¡íâÒå=¶+l
5678”ƨ5728”ƨ
568”†çEÛ53ÉZ§_®Ot¾ê»:ï’Býëœç¼�þ#ä6mäž&ñÛ**ÂeôÈè(…573”†çEÛ53ÉZ§_®Ot¾ê»:ï’Býëœç¼�þ#ä6mäž&ñÛ**ÂeôÈè(…
569ºæÒÿ|ÒŠï574ºæÒÿ|ÒŠï
570Ó¸ÍVEÏI#•$�>™^HÄ> i„‚SU¨§eâÀQØ3S%j iÆÊ‹575Ó¸ÍVEÏI#•$�>™^HÄ> i„‚SU¨§eâÀQØ3S%j iÆÊ‹
571E4/‡Ì¿!Äõ�£UaOÝ576E4/‡Ì¿!Äõ�£UaOÝ
572b�577b�
573üQÕ¶˜ôÕ578üQÕ¶˜ôÕ
574ÒÖŒiVd*q3¤µ…ù»Si«Ê‰+y¡‰WVSoNÞ½sÛá¡öÿO8Múx¯ÑÙ>©¸‚4ùfšƒ>}‡ËᵉM579ÒÖŒiVd*q3¤µ…ù»Si«Ê‰+y¡‰WVSoNÞ½sÛá¡öÿO8Múx¯ÑÙ>©¸‚4ùfšƒ>}‡ËᵉM
575¶¡ý¤�ž×580¶¡ý¤�ž×
576Àú.»Q�ÛH,†ÉrŸÈôe581Àú.»Q�ÛH,†ÉrŸÈôe
577k»„³Ì”5)3ïƒ582k»„³Ì”5)3ïƒ
578ö3r¦íÖNq·ÔÍ;™ŠµIÆÕë�·?šÇHrO”ò(583ö3r¦íÖNq·ÔÍ;™ŠµIÆÕë�·?šÇHrO”ò(
579iü»ñÕ³éè?Š;õË584iü»ñÕ³éè?Š;õË
580endstream585endstream
581endobj586endobj
582373 0 obj <<587377 0 obj <<
583/Type /Page588/Type /Page
584/Contents 374 0 R589/Contents 378 0 R
585/Resources 372 0 R590/Resources 376 0 R
586/MediaBox [0 0 595.276 841.89]591/MediaBox [0 0 595.276 841.89]
587/Parent 336 0 R592/Parent 340 0 R
588/Annots [ 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R ]593/Annots [ 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R ]
589>> endobj594>> endobj
590341 0 obj <<595345 0 obj <<
591/Type /Annot596/Type /Annot
592/Subtype /Link597/Subtype /Link
593/Border[0 0 0]/H/I/C[1 0 0]598/Border[0 0 0]/H/I/C[1 0 0]
594/Rect [55.697 615.366 199.474 628.099]599/Rect [55.697 615.366 199.474 628.099]
595/A << /S /GoTo /D (chapter.1) >>600/A << /S /GoTo /D (chapter.1) >>
596>> endobj601>> endobj
597342 0 obj <<602346 0 obj <<
598/Type /Annot603/Type /Annot
599/Subtype /Link604/Subtype /Link
600/Border[0 0 0]/H/I/C[1 0 0]605/Border[0 0 0]/H/I/C[1 0 0]
601/Rect [72.06 596.632 167.052 609.648]606/Rect [72.06 596.632 167.052 609.648]
602/A << /S /GoTo /D (section.1.1) >>607/A << /S /GoTo /D (section.1.1) >>
603>> endobj608>> endobj
604343 0 obj <<609347 0 obj <<
605/Type /Annot610/Type /Annot
606/Subtype /Link611/Subtype /Link
607/Border[0 0 0]/H/I/C[1 0 0]612/Border[0 0 0]/H/I/C[1 0 0]
608/Rect [72.06 578.072 199.801 591.088]613/Rect [72.06 578.072 199.801 591.088]
609/A << /S /GoTo /D (section.1.2) >>614/A << /S /GoTo /D (section.1.2) >>
610>> endobj615>> endobj
611344 0 obj <<616348 0 obj <<
612/Type /Annot617/Type /Annot
613/Subtype /Link618/Subtype /Link
614/Border[0 0 0]/H/I/C[1 0 0]619/Border[0 0 0]/H/I/C[1 0 0]
615/Rect [72.06 559.512 201.121 572.528]620/Rect [72.06 559.512 201.121 572.528]
616/A << /S /GoTo /D (section.1.3) >>621/A << /S /GoTo /D (section.1.3) >>
617>> endobj622>> endobj
618345 0 obj <<623349 0 obj <<
619/Type /Annot624/Type /Annot
620/Subtype /Link625/Subtype /Link
621/Border[0 0 0]/H/I/C[1 0 0]626/Border[0 0 0]/H/I/C[1 0 0]
622/Rect [72.06 540.952 183.743 553.968]627/Rect [72.06 540.952 183.743 553.968]
623/A << /S /GoTo /D (section.1.4) >>628/A << /S /GoTo /D (section.1.4) >>
624>> endobj629>> endobj
625346 0 obj <<630350 0 obj <<
626/Type /Annot631/Type /Annot
627/Subtype /Link632/Subtype /Link
628/Border[0 0 0]/H/I/C[1 0 0]633/Border[0 0 0]/H/I/C[1 0 0]
629/Rect [55.697 510.401 260.39 523.134]634/Rect [55.697 510.401 260.39 523.134]
630/A << /S /GoTo /D (chapter.2) >>635/A << /S /GoTo /D (chapter.2) >>
631>> endobj636>> endobj
632347 0 obj <<637351 0 obj <<
633/Type /Annot638/Type /Annot
634/Subtype /Link639/Subtype /Link
635/Border[0 0 0]/H/I/C[1 0 0]640/Border[0 0 0]/H/I/C[1 0 0]
636/Rect [72.06 494.568 155.641 504.47]641/Rect [72.06 494.568 155.641 504.47]
637/A << /S /GoTo /D (section.2.1) >>642/A << /S /GoTo /D (section.2.1) >>
638>> endobj643>> endobj
639348 0 obj <<644352 0 obj <<
640/Type /Annot645/Type /Annot
641/Subtype /Link646/Subtype /Link
642/Border[0 0 0]/H/I/C[1 0 0]647/Border[0 0 0]/H/I/C[1 0 0]
643/Rect [72.06 473.107 246.622 486.123]648/Rect [72.06 473.107 246.622 486.123]
644/A << /S /GoTo /D (section.2.2) >>649/A << /S /GoTo /D (section.2.2) >>
645>> endobj650>> endobj
646349 0 obj <<651353 0 obj <<
647/Type /Annot652/Type /Annot
648/Subtype /Link653/Subtype /Link
649/Border[0 0 0]/H/I/C[1 0 0]654/Border[0 0 0]/H/I/C[1 0 0]
650/Rect [97.151 454.547 338.912 467.563]655/Rect [97.151 454.547 338.912 467.563]
651/A << /S /GoTo /D (subsection.2.2.1) >>656/A << /S /GoTo /D (subsection.2.2.1) >>
652>> endobj657>> endobj
653350 0 obj <<658354 0 obj <<
654/Type /Annot659/Type /Annot
655/Subtype /Link660/Subtype /Link
656/Border[0 0 0]/H/I/C[1 0 0]661/Border[0 0 0]/H/I/C[1 0 0]
657/Rect [97.151 435.987 337.625 449.003]662/Rect [97.151 435.987 337.625 449.003]
658/A << /S /GoTo /D (subsection.2.2.2) >>663/A << /S /GoTo /D (subsection.2.2.2) >>
659>> endobj664>> endobj
660351 0 obj <<665355 0 obj <<
661/Type /Annot666/Type /Annot
662/Subtype /Link667/Subtype /Link
663/Border[0 0 0]/H/I/C[1 0 0]668/Border[0 0 0]/H/I/C[1 0 0]
664/Rect [97.151 417.426 254.76 430.442]669/Rect [97.151 417.426 254.76 430.442]
665/A << /S /GoTo /D (subsection.2.2.3) >>670/A << /S /GoTo /D (subsection.2.2.3) >>
666>> endobj671>> endobj
667352 0 obj <<672356 0 obj <<
668/Type /Annot673/Type /Annot
669/Subtype /Link674/Subtype /Link
670/Border[0 0 0]/H/I/C[1 0 0]675/Border[0 0 0]/H/I/C[1 0 0]
671/Rect [97.151 398.866 223.593 411.67]676/Rect [97.151 398.866 223.593 411.67]
672/A << /S /GoTo /D (subsection.2.2.4) >>677/A << /S /GoTo /D (subsection.2.2.4) >>
673>> endobj678>> endobj
674353 0 obj <<679357 0 obj <<
675/Type /Annot680/Type /Annot
676/Subtype /Link681/Subtype /Link
677/Border[0 0 0]/H/I/C[1 0 0]682/Border[0 0 0]/H/I/C[1 0 0]
678/Rect [72.06 380.306 249.982 393.322]683/Rect [72.06 380.306 249.982 393.322]
679/A << /S /GoTo /D (section.2.3) >>684/A << /S /GoTo /D (section.2.3) >>
680>> endobj685>> endobj
681354 0 obj <<686358 0 obj <<
682/Type /Annot687/Type /Annot
683/Subtype /Link688/Subtype /Link
684/Border[0 0 0]/H/I/C[1 0 0]689/Border[0 0 0]/H/I/C[1 0 0]
685/Rect [72.06 361.746 259.876 374.762]690/Rect [72.06 361.746 259.876 374.762]
686/A << /S /GoTo /D (section.2.4) >>691/A << /S /GoTo /D (section.2.4) >>
687>> endobj692>> endobj
688355 0 obj <<693359 0 obj <<
689/Type /Annot694/Type /Annot
690/Subtype /Link695/Subtype /Link
691/Border[0 0 0]/H/I/C[1 0 0]696/Border[0 0 0]/H/I/C[1 0 0]
692/Rect [72.06 346.088 232.561 356.202]697/Rect [72.06 346.088 232.561 356.202]
693/A << /S /GoTo /D (section.2.5) >>698/A << /S /GoTo /D (section.2.5) >>
694>> endobj699>> endobj
695356 0 obj <<700360 0 obj <<
696/Type /Annot701/Type /Annot
697/Subtype /Link702/Subtype /Link
698/Border[0 0 0]/H/I/C[1 0 0]703/Border[0 0 0]/H/I/C[1 0 0]
699/Rect [72.06 324.626 332.41 337.642]704/Rect [72.06 324.626 332.41 337.642]
700/A << /S /GoTo /D (section.2.6) >>705/A << /S /GoTo /D (section.2.6) >>
701>> endobj706>> endobj
702357 0 obj <<707361 0 obj <<
703/Type /Annot708/Type /Annot
704/Subtype /Link709/Subtype /Link
705/Border[0 0 0]/H/I/C[1 0 0]710/Border[0 0 0]/H/I/C[1 0 0]
706/Rect [55.697 294.163 115.856 306.808]711/Rect [55.697 294.163 115.856 306.808]
707/A << /S /GoTo /D (chapter.3) >>712/A << /S /GoTo /D (chapter.3) >>
708>> endobj713>> endobj
709358 0 obj <<714362 0 obj <<
710/Type /Annot715/Type /Annot
711/Subtype /Link716/Subtype /Link
712/Border[0 0 0]/H/I/C[1 0 0]717/Border[0 0 0]/H/I/C[1 0 0]
713/Rect [72.06 275.341 177.153 288.357]718/Rect [72.06 275.341 177.153 288.357]
714/A << /S /GoTo /D (section.3.1) >>719/A << /S /GoTo /D (section.3.1) >>
715>> endobj720>> endobj
716359 0 obj <<721363 0 obj <<
717/Type /Annot722/Type /Annot
718/Subtype /Link723/Subtype /Link
719/Border[0 0 0]/H/I/C[1 0 0]724/Border[0 0 0]/H/I/C[1 0 0]
720/Rect [72.06 256.781 187.801 269.797]725/Rect [72.06 256.781 187.801 269.797]
721/A << /S /GoTo /D (section.3.2) >>726/A << /S /GoTo /D (section.3.2) >>
722>> endobj727>> endobj
723360 0 obj <<728364 0 obj <<
724/Type /Annot729/Type /Annot
725/Subtype /Link730/Subtype /Link
726/Border[0 0 0]/H/I/C[1 0 0]731/Border[0 0 0]/H/I/C[1 0 0]
727/Rect [97.151 238.221 221.553 251.237]732/Rect [97.151 238.221 221.553 251.237]
728/A << /S /GoTo /D (subsection.3.2.1) >>733/A << /S /GoTo /D (subsection.3.2.1) >>
729>> endobj734>> endobj
730361 0 obj <<735365 0 obj <<
731/Type /Annot736/Type /Annot
732/Subtype /Link737/Subtype /Link
733/Border[0 0 0]/H/I/C[1 0 0]738/Border[0 0 0]/H/I/C[1 0 0]
734/Rect [97.151 222.563 183.154 232.677]739/Rect [97.151 222.563 183.154 232.677]
735/A << /S /GoTo /D (subsection.3.2.2) >>740/A << /S /GoTo /D (subsection.3.2.2) >>
736>> endobj741>> endobj
737362 0 obj <<742366 0 obj <<
738/Type /Annot743/Type /Annot
739/Subtype /Link744/Subtype /Link
740/Border[0 0 0]/H/I/C[1 0 0]745/Border[0 0 0]/H/I/C[1 0 0]
741/Rect [97.151 204.003 202.703 214.117]746/Rect [97.151 204.003 202.703 214.117]
742/A << /S /GoTo /D (subsection.3.2.3) >>747/A << /S /GoTo /D (subsection.3.2.3) >>
743>> endobj748>> endobj
744363 0 obj <<749367 0 obj <<
745/Type /Annot750/Type /Annot
746/Subtype /Link751/Subtype /Link
747/Border[0 0 0]/H/I/C[1 0 0]752/Border[0 0 0]/H/I/C[1 0 0]
748/Rect [72.06 182.541 226.735 195.557]753/Rect [72.06 182.541 226.735 195.557]
749/A << /S /GoTo /D (section.3.3) >>754/A << /S /GoTo /D (section.3.3) >>
750>> endobj755>> endobj
751364 0 obj <<756368 0 obj <<
752/Type /Annot757/Type /Annot
753/Subtype /Link758/Subtype /Link
754/Border[0 0 0]/H/I/C[1 0 0]759/Border[0 0 0]/H/I/C[1 0 0]
755/Rect [97.151 166.883 170.052 176.664]760/Rect [97.151 166.883 170.052 176.664]
756/A << /S /GoTo /D (subsection.3.3.1) >>761/A << /S /GoTo /D (subsection.3.3.1) >>
757>> endobj762>> endobj
758365 0 obj <<763369 0 obj <<
759/Type /Annot764/Type /Annot
760/Subtype /Link765/Subtype /Link
761/Border[0 0 0]/H/I/C[1 0 0]766/Border[0 0 0]/H/I/C[1 0 0]
762/Rect [97.151 148.322 141.787 158.224]767/Rect [97.151 148.322 141.787 158.224]
763/A << /S /GoTo /D (subsection.3.3.2) >>768/A << /S /GoTo /D (subsection.3.3.2) >>
764>> endobj769>> endobj
765366 0 obj <<770370 0 obj <<
766/Type /Annot771/Type /Annot
767/Subtype /Link772/Subtype /Link
768/Border[0 0 0]/H/I/C[1 0 0]773/Border[0 0 0]/H/I/C[1 0 0]
769/Rect [97.151 129.762 155.009 139.664]774/Rect [97.151 129.762 155.009 139.664]
770/A << /S /GoTo /D (subsection.3.3.3) >>775/A << /S /GoTo /D (subsection.3.3.3) >>
771>> endobj776>> endobj
772367 0 obj <<777371 0 obj <<
773/Type /Annot778/Type /Annot
774/Subtype /Link779/Subtype /Link
775/Border[0 0 0]/H/I/C[1 0 0]780/Border[0 0 0]/H/I/C[1 0 0]
776/Rect [72.06 108.301 200.161 120.984]781/Rect [72.06 108.301 200.161 120.984]
777/A << /S /GoTo /D (section.3.4) >>782/A << /S /GoTo /D (section.3.4) >>
778>> endobj783>> endobj
779368 0 obj <<784372 0 obj <<
780/Type /Annot785/Type /Annot
781/Subtype /Link786/Subtype /Link
782/Border[0 0 0]/H/I/C[1 0 0]787/Border[0 0 0]/H/I/C[1 0 0]
783/Rect [72.06 92.642 197.575 102.756]788/Rect [72.06 92.642 197.575 102.756]
784/A << /S /GoTo /D (section.3.5) >>789/A << /S /GoTo /D (section.3.5) >>
785>> endobj790>> endobj
786369 0 obj <<791373 0 obj <<
787/Type /Annot792/Type /Annot
788/Subtype /Link793/Subtype /Link
789/Border[0 0 0]/H/I/C[1 0 0]794/Border[0 0 0]/H/I/C[1 0 0]
790/Rect [97.151 74.082 189.449 84.196]795/Rect [97.151 74.082 189.449 84.196]
791/A << /S /GoTo /D (subsection.3.5.1) >>796/A << /S /GoTo /D (subsection.3.5.1) >>
792>> endobj797>> endobj
793370 0 obj <<798374 0 obj <<
794/Type /Annot799/Type /Annot
795/Subtype /Link800/Subtype /Link
796/Border[0 0 0]/H/I/C[1 0 0]801/Border[0 0 0]/H/I/C[1 0 0]
797/Rect [97.151 52.62 238.168 65.304]802/Rect [97.151 52.62 238.168 65.304]
798/A << /S /GoTo /D (subsection.3.5.2) >>803/A << /S /GoTo /D (subsection.3.5.2) >>
799>> endobj804>> endobj
800375 0 obj <<805379 0 obj <<
801/D [373 0 R /XYZ 55.693 817.952 null]806/D [377 0 R /XYZ 55.693 817.952 null]
802>> endobj807>> endobj
803377 0 obj <<808381 0 obj <<
804/D [373 0 R /XYZ 56.693 649.543 null]809/D [377 0 R /XYZ 56.693 649.543 null]
805>> endobj810>> endobj
806372 0 obj <<811376 0 obj <<
807/Font << /F37 376 0 R /F28 335 0 R >>812/Font << /F37 380 0 R /F28 339 0 R >>
808/ProcSet [ /PDF /Text ]813/ProcSet [ /PDF /Text ]
809>> endobj814>> endobj
810419 0 obj <<815423 0 obj <<
811/Length 1705 816/Length 1705
812/Filter /FlateDecode817/Filter /FlateDecode
813>>818>>
@@ -798,410 +803,418 @@
798ø£‡®v$T(¸Zß}éÒ ¼Öpiœ“Ãà½I£lKoGŒ³üð `½a;mºÞš¼ÛÌWÛnÓ·±Ü•:7A‡29wt¤ïÝ(?ó€µ€w­¡~803ø£‡®v$T(¸Zß}éÒ ¼Öpiœ“Ãà½I£lKoGŒ³üð `½a;mºÞš¼ÛÌWÛnÓ·±Ü•:7A‡29wt¤ïÝ(?ó€µ€w­¡~
799é+«Îþø²½å»qªùõå|u=_ÝT?|Zoª‹ùåýÝÃu«Páy²oz1èñÅÐVªÖ˜€$ÔâW›r»Þ´n804é+«Îþø²½å»qªùõå|u=_ÝT?|Zoª‹ùåýÝÃu«Páy²oz1èñÅÐVªÖ˜€$ÔâW›r»Þ´n
800mǽºAÔÙ£XªuÏH]ê×b[TwG9c)_Ý›bɲº]¼ðìl#Éâ5ÏÇžhCEo$é<6ÔËèцú]éqß†Ú È4*Æ–“òØP1ŠgŽ5ÚP‡ÙPûÁ iCmð@¢805mǽºAÔÙ£XªuÏH]ê×b[TwG9c)_Ý›bɲº]¼ðìl#Éâ5ÏÇžhCEo$é<6ÔËèцú]éqß†Ú È4*Æ–“òØP1ŠgŽ5ÚP‡ÙPûÁ iCmð@¢
801�“V屡ÆX¨Fjÿ%À806�“V屡ÆX¨Fjÿ%À
802³¡6X ɆŠÚË`²LÑb(g’\¨9²Ö.ÔfÖÑ„š,ðÜPjƒg’L¨ÈµÃ¡�ñi=\‰&Ô,‰kê^âc&Ô807³¡6X ɆŠÚË`²LÑb(g’\¨9²Ö.ÔfÖÑ„š,ðÜPjƒg’L¨ÈµÃ¡�ñi=\‰&Ô,‰kê^âc&Ô
803Iw&Ô½¤£ ußwàò™P)Õ„ª”;…9|'1ÁhBýžõï¶808Iw&Ô½¤£ ußwàò™P)Õ„ª”;…9|'1ÁhBýžõï¶
804Q¢ •809Q¢ •
805ËèÉcB�±”ÅÑ„ú#DSÓ„Ú �� õèjÆôÁB&ËbC™§ËF*î³räõQ¢»ý¼]ÞWKö…ï-çSNA2Ç·¡)PC*%E¬¡-G810ËèÉcB�±”ÅÑ„ú#DSÓ„Ú �� õèjÆôÁB&ËbC™§ËF*î³räõQ¢»ý¼]ÞWKö…ï-çSNA2Ç·¡)PC*%E¬¡-G
806iXË‘x¶fâ.�­ f[l~ Øš»æ:làø¬<ÿ–c!Q"Ør$Þ�­™¸ÓËKF˜e„Y“ÓRÌ»ËcÞ…à¥W£y7Ó>´jÞmRNŠy¼’Æä1ïÆXÚÀhÞÍ3?÷CÍ»M^H1ïBœh¸<æÝ‹ÜhÞý‘¼ÐiÞ¥4ó.”yÌ»1@¢y7KâÚ¼»—x4ïžYÈeÞ¥dó.h#ÝàíœÊ¼cY;šw{ïã„læ]úß¼{±Š811iXË‘x¶fâ.�­ f[l~ Øš»æ:làø¬<ÿ–c!Q"Ør$Þ�­™¸ÓËKF˜e„Y“ÓRÌ»ËcÞ…à¥W£y7Ó>´jÞmRNŠy¼’Æä1ïÆXÚÀhÞÍ3?÷CÍ»M^H1ïBœh¸<æÝ‹ÜhÞý‘¼ÐiÞ¥4ó.”yÌ»1@¢y7KâÚ¼»—x4ïžYÈeÞ¥dó.h#ÝàíœÊ¼cY;šw{ïã„læ]úß¼{±Š
807�űŠ»Ü GÇ^oÅz<�812�űŠ»Ü GÇ^oÅz<�
808ÝÞÓÙ@Å'¢Qõt6t»Äñï£i^,׫wžq|º‡Ýƒâ°þ—ö>�†3qfñ¦t¬Eûào«ûm±X]ÌÀ§ŽŠt¸Ï813ÝÞÓÙ@Å'¢Qõt6t»Äñï£i^,׫wžq|º‡Ýƒâ°þ—ö>�†3qfñ¦t¬Eûào«ûm±X]ÌÀ§ŽŠt¸Ï
809Hpð�9à?äz˸814Hpð�9à?äz˸
810endstream815endstream
811endobj816endobj
812418 0 obj <<817422 0 obj <<
813/Type /Page818/Type /Page
814/Contents 419 0 R819/Contents 423 0 R
815/Resources 417 0 R820/Resources 421 0 R
816/MediaBox [0 0 595.276 841.89]821/MediaBox [0 0 595.276 841.89]
817/Parent 336 0 R822/Parent 340 0 R
818/Annots [ 371 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R ]823/Annots [ 375 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R ]
819>> endobj824>> endobj
820371 0 obj <<825375 0 obj <<
821/Type /Annot826/Type /Annot
822/Subtype /Link827/Subtype /Link
823/Border[0 0 0]/H/I/C[1 0 0]828/Border[0 0 0]/H/I/C[1 0 0]
824/Rect [97.151 770.165 197.161 783.181]829/Rect [97.151 770.165 197.161 783.181]
825/A << /S /GoTo /D (subsection.3.5.3) >>830/A << /S /GoTo /D (subsection.3.5.3) >>
826>> endobj831>> endobj
827378 0 obj <<832382 0 obj <<
828/Type /Annot833/Type /Annot
829/Subtype /Link834/Subtype /Link
830/Border[0 0 0]/H/I/C[1 0 0]835/Border[0 0 0]/H/I/C[1 0 0]
831/Rect [97.151 751.603 195.405 764.619]836/Rect [97.151 751.603 195.405 764.619]
832/A << /S /GoTo /D (subsection.3.5.4) >>837/A << /S /GoTo /D (subsection.3.5.4) >>
833>> endobj838>> endobj
834379 0 obj <<839383 0 obj <<
835/Type /Annot840/Type /Annot
836/Subtype /Link841/Subtype /Link
837/Border[0 0 0]/H/I/C[1 0 0]842/Border[0 0 0]/H/I/C[1 0 0]
838/Rect [97.151 733.041 199.517 745.56]843/Rect [97.151 733.041 199.517 745.56]
839/A << /S /GoTo /D (subsection.3.5.5) >>844/A << /S /GoTo /D (subsection.3.5.5) >>
840>> endobj845>> endobj
841380 0 obj <<846384 0 obj <<
842/Type /Annot847/Type /Annot
843/Subtype /Link848/Subtype /Link
844/Border[0 0 0]/H/I/C[1 0 0]849/Border[0 0 0]/H/I/C[1 0 0]
845/Rect [97.151 714.478 207.623 727.494]850/Rect [97.151 714.478 207.623 727.494]
846/A << /S /GoTo /D (subsection.3.5.6) >>851/A << /S /GoTo /D (subsection.3.5.6) >>
847>> endobj852>> endobj
848381 0 obj <<853385 0 obj <<
849/Type /Annot854/Type /Annot
850/Subtype /Link855/Subtype /Link
851/Border[0 0 0]/H/I/C[1 0 0]856/Border[0 0 0]/H/I/C[1 0 0]
852/Rect [97.151 695.916 248.291 708.932]857/Rect [97.151 695.916 248.291 708.932]
853/A << /S /GoTo /D (subsection.3.5.7) >>858/A << /S /GoTo /D (subsection.3.5.7) >>
854>> endobj859>> endobj
855382 0 obj <<860386 0 obj <<
856/Type /Annot861/Type /Annot
857/Subtype /Link862/Subtype /Link
858/Border[0 0 0]/H/I/C[1 0 0]863/Border[0 0 0]/H/I/C[1 0 0]
859/Rect [97.151 677.353 196.812 690.037]864/Rect [97.151 677.353 196.812 690.037]
860/A << /S /GoTo /D (subsection.3.5.8) >>865/A << /S /GoTo /D (subsection.3.5.8) >>
861>> endobj866>> endobj
862383 0 obj <<867387 0 obj <<
863/Type /Annot868/Type /Annot
864/Subtype /Link869/Subtype /Link
865/Border[0 0 0]/H/I/C[1 0 0]870/Border[0 0 0]/H/I/C[1 0 0]
866/Rect [97.151 658.791 192.721 671.807]871/Rect [97.151 658.791 192.721 671.807]
867/A << /S /GoTo /D (subsection.3.5.9) >>872/A << /S /GoTo /D (subsection.3.5.9) >>
868>> endobj873>> endobj
869384 0 obj <<874388 0 obj <<
870/Type /Annot875/Type /Annot
871/Subtype /Link876/Subtype /Link
872/Border[0 0 0]/H/I/C[1 0 0]877/Border[0 0 0]/H/I/C[1 0 0]
873/Rect [97.151 640.229 190.932 652.912]878/Rect [97.151 640.229 190.932 652.912]
874/A << /S /GoTo /D (subsection.3.5.10) >>879/A << /S /GoTo /D (subsection.3.5.10) >>
875>> endobj880>> endobj
876385 0 obj <<881389 0 obj <<
877/Type /Annot882/Type /Annot
878/Subtype /Link883/Subtype /Link
879/Border[0 0 0]/H/I/C[1 0 0]884/Border[0 0 0]/H/I/C[1 0 0]
880/Rect [97.151 621.666 191.707 634.682]885/Rect [97.151 621.666 191.707 634.682]
881/A << /S /GoTo /D (subsection.3.5.11) >>886/A << /S /GoTo /D (subsection.3.5.11) >>
882>> endobj887>> endobj
883386 0 obj <<888390 0 obj <<
884/Type /Annot889/Type /Annot
885/Subtype /Link890/Subtype /Link
886/Border[0 0 0]/H/I/C[1 0 0]891/Border[0 0 0]/H/I/C[1 0 0]
887/Rect [97.151 603.104 197.739 616.12]892/Rect [97.151 603.104 197.739 616.12]
888/A << /S /GoTo /D (subsection.3.5.12) >>893/A << /S /GoTo /D (subsection.3.5.12) >>
889>> endobj894>> endobj
890387 0 obj <<895391 0 obj <<
891/Type /Annot896/Type /Annot
892/Subtype /Link897/Subtype /Link
893/Border[0 0 0]/H/I/C[1 0 0]898/Border[0 0 0]/H/I/C[1 0 0]
894/Rect [97.151 584.541 184.376 597.225]899/Rect [97.151 584.541 184.376 597.225]
895/A << /S /GoTo /D (subsection.3.5.13) >>900/A << /S /GoTo /D (subsection.3.5.13) >>
896>> endobj901>> endobj
897388 0 obj <<902392 0 obj <<
898/Type /Annot903/Type /Annot
899/Subtype /Link904/Subtype /Link
900/Border[0 0 0]/H/I/C[1 0 0]905/Border[0 0 0]/H/I/C[1 0 0]
901/Rect [97.151 565.979 188.314 578.995]906/Rect [97.151 565.979 188.314 578.995]
902/A << /S /GoTo /D (subsection.3.5.14) >>907/A << /S /GoTo /D (subsection.3.5.14) >>
903>> endobj908>> endobj
904389 0 obj <<909393 0 obj <<
905/Type /Annot910/Type /Annot
906/Subtype /Link911/Subtype /Link
907/Border[0 0 0]/H/I/C[1 0 0]912/Border[0 0 0]/H/I/C[1 0 0]
908/Rect [97.151 547.417 182.936 560.1]913/Rect [97.151 547.417 182.936 560.1]
909/A << /S /GoTo /D (subsection.3.5.15) >>914/A << /S /GoTo /D (subsection.3.5.15) >>
910>> endobj915>> endobj
911390 0 obj <<916394 0 obj <<
912/Type /Annot917/Type /Annot
913/Subtype /Link918/Subtype /Link
914/Border[0 0 0]/H/I/C[1 0 0]919/Border[0 0 0]/H/I/C[1 0 0]
915/Rect [97.151 528.854 228.306 541.87]920/Rect [97.151 528.854 228.306 541.87]
916/A << /S /GoTo /D (subsection.3.5.16) >>921/A << /S /GoTo /D (subsection.3.5.16) >>
917>> endobj922>> endobj
918391 0 obj <<923395 0 obj <<
919/Type /Annot924/Type /Annot
920/Subtype /Link925/Subtype /Link
921/Border[0 0 0]/H/I/C[1 0 0]926/Border[0 0 0]/H/I/C[1 0 0]
922/Rect [97.151 510.292 198.601 523.308]927/Rect [97.151 510.292 198.601 523.308]
923/A << /S /GoTo /D (subsection.3.5.17) >>928/A << /S /GoTo /D (subsection.3.5.17) >>
924>> endobj929>> endobj
925392 0 obj <<930396 0 obj <<
926/Type /Annot931/Type /Annot
927/Subtype /Link932/Subtype /Link
928/Border[0 0 0]/H/I/C[1 0 0]933/Border[0 0 0]/H/I/C[1 0 0]
929/Rect [97.151 491.729 196.506 504.413]934/Rect [97.151 491.729 196.506 504.413]
930/A << /S /GoTo /D (subsection.3.5.18) >>935/A << /S /GoTo /D (subsection.3.5.18) >>
931>> endobj936>> endobj
932393 0 obj <<937397 0 obj <<
933/Type /Annot938/Type /Annot
934/Subtype /Link939/Subtype /Link
935/Border[0 0 0]/H/I/C[1 0 0]940/Border[0 0 0]/H/I/C[1 0 0]
936/Rect [97.151 473.167 192.95 485.85]941/Rect [97.151 473.167 192.95 485.85]
937/A << /S /GoTo /D (subsection.3.5.19) >>942/A << /S /GoTo /D (subsection.3.5.19) >>
938>> endobj943>> endobj
939394 0 obj <<944398 0 obj <<
940/Type /Annot945/Type /Annot
941/Subtype /Link946/Subtype /Link
942/Border[0 0 0]/H/I/C[1 0 0]947/Border[0 0 0]/H/I/C[1 0 0]
943/Rect [97.151 454.605 198.099 467.124]948/Rect [97.151 454.605 198.099 467.124]
944/A << /S /GoTo /D (subsection.3.5.20) >>949/A << /S /GoTo /D (subsection.3.5.20) >>
945>> endobj950>> endobj
946395 0 obj <<951399 0 obj <<
947/Type /Annot952/Type /Annot
948/Subtype /Link953/Subtype /Link
949/Border[0 0 0]/H/I/C[1 0 0]954/Border[0 0 0]/H/I/C[1 0 0]
950/Rect [72.06 436.042 230.705 449.058]955/Rect [72.06 436.042 230.705 449.058]
951/A << /S /GoTo /D (section.3.6) >>956/A << /S /GoTo /D (section.3.6) >>
952>> endobj957>> endobj
953396 0 obj <<958400 0 obj <<
954/Type /Annot959/Type /Annot
955/Subtype /Link960/Subtype /Link
956/Border[0 0 0]/H/I/C[1 0 0]961/Border[0 0 0]/H/I/C[1 0 0]
957/Rect [97.151 420.382 164.031 430.163]962/Rect [97.151 420.382 164.031 430.163]
958/A << /S /GoTo /D (subsection.3.6.1) >>963/A << /S /GoTo /D (subsection.3.6.1) >>
959>> endobj964>> endobj
960397 0 obj <<965401 0 obj <<
961/Type /Annot966/Type /Annot
962/Subtype /Link967/Subtype /Link
963/Border[0 0 0]/H/I/C[1 0 0]968/Border[0 0 0]/H/I/C[1 0 0]
964/Rect [97.151 398.918 238.168 411.601]969/Rect [97.151 398.918 238.168 411.601]
965/A << /S /GoTo /D (subsection.3.6.2) >>970/A << /S /GoTo /D (subsection.3.6.2) >>
966>> endobj971>> endobj
967398 0 obj <<972402 0 obj <<
968/Type /Annot973/Type /Annot
969/Subtype /Link974/Subtype /Link
970/Border[0 0 0]/H/I/C[1 0 0]975/Border[0 0 0]/H/I/C[1 0 0]
971/Rect [97.151 380.355 197.161 393.371]976/Rect [97.151 380.355 197.161 393.371]
972/A << /S /GoTo /D (subsection.3.6.3) >>977/A << /S /GoTo /D (subsection.3.6.3) >>
973>> endobj978>> endobj
974399 0 obj <<979403 0 obj <<
975/Type /Annot980/Type /Annot
976/Subtype /Link981/Subtype /Link
977/Border[0 0 0]/H/I/C[1 0 0]982/Border[0 0 0]/H/I/C[1 0 0]
978/Rect [97.151 361.793 195.405 374.809]983/Rect [97.151 361.793 195.405 374.809]
979/A << /S /GoTo /D (subsection.3.6.4) >>984/A << /S /GoTo /D (subsection.3.6.4) >>
980>> endobj985>> endobj
981400 0 obj <<986404 0 obj <<
982/Type /Annot987/Type /Annot
983/Subtype /Link988/Subtype /Link
984/Border[0 0 0]/H/I/C[1 0 0]989/Border[0 0 0]/H/I/C[1 0 0]
985/Rect [97.151 343.23 199.517 355.75]990/Rect [97.151 343.23 199.517 355.75]
986/A << /S /GoTo /D (subsection.3.6.5) >>991/A << /S /GoTo /D (subsection.3.6.5) >>
987>> endobj992>> endobj
988401 0 obj <<993405 0 obj <<
989/Type /Annot994/Type /Annot
990/Subtype /Link995/Subtype /Link
991/Border[0 0 0]/H/I/C[1 0 0]996/Border[0 0 0]/H/I/C[1 0 0]
992/Rect [97.151 324.668 207.623 337.684]997/Rect [97.151 324.668 207.623 337.684]
993/A << /S /GoTo /D (subsection.3.6.6) >>998/A << /S /GoTo /D (subsection.3.6.6) >>
994>> endobj999>> endobj
995402 0 obj <<1000406 0 obj <<
996/Type /Annot1001/Type /Annot
997/Subtype /Link1002/Subtype /Link
998/Border[0 0 0]/H/I/C[1 0 0]1003/Border[0 0 0]/H/I/C[1 0 0]
999/Rect [97.151 306.106 248.291 319.122]1004/Rect [97.151 306.106 248.291 319.122]
1000/A << /S /GoTo /D (subsection.3.6.7) >>1005/A << /S /GoTo /D (subsection.3.6.7) >>
1001>> endobj1006>> endobj
1002403 0 obj <<1007407 0 obj <<
1003/Type /Annot1008/Type /Annot
1004/Subtype /Link1009/Subtype /Link
1005/Border[0 0 0]/H/I/C[1 0 0]1010/Border[0 0 0]/H/I/C[1 0 0]
1006/Rect [97.151 287.543 196.812 300.063]1011/Rect [97.151 287.543 196.812 300.063]
1007/A << /S /GoTo /D (subsection.3.6.8) >>1012/A << /S /GoTo /D (subsection.3.6.8) >>
1008>> endobj1013>> endobj
1009404 0 obj <<1014408 0 obj <<
1010/Type /Annot1015/Type /Annot
1011/Subtype /Link1016/Subtype /Link
1012/Border[0 0 0]/H/I/C[1 0 0]1017/Border[0 0 0]/H/I/C[1 0 0]
1013/Rect [97.151 268.981 192.721 281.997]1018/Rect [97.151 268.981 192.721 281.997]
1014/A << /S /GoTo /D (subsection.3.6.9) >>1019/A << /S /GoTo /D (subsection.3.6.9) >>
1015>> endobj1020>> endobj
1016405 0 obj <<1021409 0 obj <<
1017/Type /Annot1022/Type /Annot
1018/Subtype /Link1023/Subtype /Link
1019/Border[0 0 0]/H/I/C[1 0 0]1024/Border[0 0 0]/H/I/C[1 0 0]
1020/Rect [97.151 250.418 209.706 263.102]1025/Rect [97.151 250.418 209.706 263.102]
1021/A << /S /GoTo /D (subsection.3.6.10) >>1026/A << /S /GoTo /D (subsection.3.6.10) >>
1022>> endobj1027>> endobj
1023406 0 obj <<1028410 0 obj <<
1024/Type /Annot1029/Type /Annot
1025/Subtype /Link1030/Subtype /Link
1026/Border[0 0 0]/H/I/C[1 0 0]1031/Border[0 0 0]/H/I/C[1 0 0]
1027/Rect [97.151 231.856 210.481 244.872]1032/Rect [97.151 231.856 210.481 244.872]
1028/A << /S /GoTo /D (subsection.3.6.11) >>1033/A << /S /GoTo /D (subsection.3.6.11) >>
1029>> endobj1034>> endobj
1030407 0 obj <<1035411 0 obj <<
1031/Type /Annot1036/Type /Annot
1032/Subtype /Link1037/Subtype /Link
1033/Border[0 0 0]/H/I/C[1 0 0]1038/Border[0 0 0]/H/I/C[1 0 0]
1034/Rect [97.151 213.294 216.513 226.31]1039/Rect [97.151 213.294 216.513 226.31]
1035/A << /S /GoTo /D (subsection.3.6.12) >>1040/A << /S /GoTo /D (subsection.3.6.12) >>
1036>> endobj1041>> endobj
1037408 0 obj <<1042412 0 obj <<
1038/Type /Annot1043/Type /Annot
1039/Subtype /Link1044/Subtype /Link
1040/Border[0 0 0]/H/I/C[1 0 0]1045/Border[0 0 0]/H/I/C[1 0 0]
1041/Rect [97.151 194.731 184.376 207.414]1046/Rect [97.151 194.731 184.376 207.414]
1042/A << /S /GoTo /D (subsection.3.6.13) >>1047/A << /S /GoTo /D (subsection.3.6.13) >>
1043>> endobj1048>> endobj
1044409 0 obj <<1049413 0 obj <<
1045/Type /Annot1050/Type /Annot
1046/Subtype /Link1051/Subtype /Link
1047/Border[0 0 0]/H/I/C[1 0 0]1052/Border[0 0 0]/H/I/C[1 0 0]
1048/Rect [97.151 176.169 188.314 189.185]1053/Rect [97.151 176.169 188.314 189.185]
1049/A << /S /GoTo /D (subsection.3.6.14) >>1054/A << /S /GoTo /D (subsection.3.6.14) >>
1050>> endobj1055>> endobj
1051410 0 obj <<1056414 0 obj <<
1052/Type /Annot1057/Type /Annot
1053/Subtype /Link1058/Subtype /Link
1054/Border[0 0 0]/H/I/C[1 0 0]1059/Border[0 0 0]/H/I/C[1 0 0]
1055/Rect [97.151 157.606 182.936 170.29]1060/Rect [97.151 157.606 182.936 170.29]
1056/A << /S /GoTo /D (subsection.3.6.15) >>1061/A << /S /GoTo /D (subsection.3.6.15) >>
1057>> endobj1062>> endobj
1058411 0 obj <<1063415 0 obj <<
1059/Type /Annot1064/Type /Annot
1060/Subtype /Link1065/Subtype /Link
1061/Border[0 0 0]/H/I/C[1 0 0]1066/Border[0 0 0]/H/I/C[1 0 0]
1062/Rect [97.151 139.044 228.306 152.06]1067/Rect [97.151 139.044 228.306 152.06]
1063/A << /S /GoTo /D (subsection.3.6.16) >>1068/A << /S /GoTo /D (subsection.3.6.16) >>
1064>> endobj1069>> endobj
1065412 0 obj <<1070416 0 obj <<
1066/Type /Annot1071/Type /Annot
1067/Subtype /Link1072/Subtype /Link
1068/Border[0 0 0]/H/I/C[1 0 0]1073/Border[0 0 0]/H/I/C[1 0 0]
1069/Rect [97.151 120.482 198.601 133.498]1074/Rect [97.151 120.482 198.601 133.498]
1070/A << /S /GoTo /D (subsection.3.6.17) >>1075/A << /S /GoTo /D (subsection.3.6.17) >>
1071>> endobj1076>> endobj
1072413 0 obj <<1077417 0 obj <<
1073/Type /Annot1078/Type /Annot
1074/Subtype /Link1079/Subtype /Link
1075/Border[0 0 0]/H/I/C[1 0 0]1080/Border[0 0 0]/H/I/C[1 0 0]
1076/Rect [97.151 101.919 198.099 114.602]1081/Rect [97.151 101.919 198.099 114.602]
1077/A << /S /GoTo /D (subsection.3.6.18) >>1082/A << /S /GoTo /D (subsection.3.6.18) >>
1078>> endobj1083>> endobj
1079414 0 obj <<1084418 0 obj <<
1080/Type /Annot1085/Type /Annot
1081/Subtype /Link1086/Subtype /Link
1082/Border[0 0 0]/H/I/C[1 0 0]1087/Border[0 0 0]/H/I/C[1 0 0]
1083/Rect [55.697 74.063 121.322 84.09]1088/Rect [55.697 74.063 121.322 84.09]
1084/A << /S /GoTo /D (chapter.4) >>1089/A << /S /GoTo /D (chapter.4) >>
1085>> endobj1090>> endobj
1086415 0 obj <<1091419 0 obj <<
1087/Type /Annot1092/Type /Annot
1088/Subtype /Link1093/Subtype /Link
1089/Border[0 0 0]/H/I/C[1 0 0]1094/Border[0 0 0]/H/I/C[1 0 0]
1090/Rect [72.06 55.522 153.645 65.636]1095/Rect [72.06 55.522 153.645 65.636]
1091/A << /S /GoTo /D (section.4.1) >>1096/A << /S /GoTo /D (section.4.1) >>
1092>> endobj1097>> endobj
1098424 0 obj <<
1099/D [422 0 R /XYZ 55.693 817.952 null]
1100>> endobj
1101421 0 obj <<
1102/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R >>
1103/ProcSet [ /PDF /Text ]
1104>> endobj
1105441 0 obj <<
1106/Length 555
1107/Filter /FlateDecode
1108>>
1109stream
1110xÚí˜M�›0†ïü
1111ÉÁÎø|íîf¥JÝJ
1093=m{@ÁÉZ"èÇ¿/ „M@«f¯ªM¹`˲<h1112=m{@ÁÉZ"èÇ¿/ „M@«f¯ªM¹`˲<h
1094�ßw1113�ßw
1095h…Ý{"o:ãQ 4EÑIE”æ(A´V(JУóù!º{ˆæ“ïÑÇ錅ÇûE ˆà²>n¿UîöxОµ)Ñv…z+_î=„…ªŠ0È°9H6Á$ø7yö1114h…Ý{"o:ãQ 4EÑIE”æ(A´V(JУóù!º{ˆæ“ïÑÇ錅ÇûE ˆà²>n¿UîöxОµ)Ñv…z+_î=„…ªŠ0È°9H6Á$ø7yö
1096€­ªm\Ú<›`V/îVRSœDC�XSðÉKxÿƒÐúòSzé¡‚ ŸÓ×3b’€F˜†„ Õ"´FÄ`‡(Í«m?šRWãíȺ"C:¬¥3_<™u\1115€­ªm\Ú<›`V/îVRSœDC�XSðÉKxÿƒÐúòSzé¡‚ ŸÓ×3b’€F˜†„ Õ"´FÄ`‡(Í«m?šRWãíȺ"C:¬¥3_<™u\
1097ñðÈ›sÁÇ¥1116ñðÈ›sÁÇ¥
1098àðön›—ñ¶´Ùª¹Ônm¼Î³¤[RvÍ™vz·1•#Z8_‹¿‘Q|$óJ@Ü‘øˆN|>Ŷ5?¬ùyýÅã„©+6Ãây–�Ô.ÌË`B £îœ©;nÀðÌ­]Nhè/_fÃU8²ùµ#ˆ~gñÚ.ZBqj“¦÷é·;*øÏÓ.œ¤]¶iŸÙ,é4¿ÊªÂ$ͼØ[èfnR³6Y9ì=ñþDÝQR§31117àðön›—ñ¶´Ùª¹Ônm¼Î³¤[RvÍ™vz·1•#Z8_‹¿‘Q|$óJ@Ü‘øˆN|>Ŷ5?¬ùyýÅã„©+6Ãây–�Ô.ÌË`B £îœ©;nÀðÌ­]Nhè/_fÃU8²ùµ#ˆ~gñÚ.ZBqj“¦÷é·;*øÏÓ.œ¤]¶iŸÙ,é4¿ÊªÂ$ͼØ[èfnR³6Y9ì=ñþDÝQR§3
10991118
1100¿1119¿
1120`A‰�¢v¿šP©oµ¯Ú ¶-&MãÌäUÑä´Ìót�PΤf>oŸÎú‹Ó· ªWâ·Üû†½÷ÞT .LÙèp¼çÜ>éÄðÕØ:Ã÷k—Oý`"�£d]â1ä…½mŠ
1101×Wµ©•Ëà|³“¯A…KÇVé\"½ñ.òþéŒ51121×Wµ©•Ëà|³“¯A…KÇVé\"½ñ.òþéŒ5
1122endstream
1123endobj
1124440 0 obj <<
1125/Type /Page
1126/Contents 441 0 R
1127/Resources 439 0 R
1128/MediaBox [0 0 595.276 841.89]
1129/Parent 340 0 R
1130/Annots [ 420 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R ]
1131>> endobj
1102420 0 obj <<1132420 0 obj <<
1103/D [418 0 R /XYZ 55.693 817.952 null]
1104>> endobj
1105417 0 obj <<
1106/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R >>
1107/ProcSet [ /PDF /Text ]
1108>> endobj
1109436 0 obj <<
1110/Length 530
1111/Filter /FlateDecode
1112>>
1113stream
1114xÚí˜Mkã0†ïþ::)£O[×m›ÂÂvaã=u÷`b%8v‰íýø÷ëÄJšØ”m©Jiê‹%¡1ó0z_ Ð
1115º>%ÁtÆ5¢@4hŠ’%’Š(ÍQ
1116‚h­P’¡ÛðâëMru“Ì'?“ÏÓ‹�׋HÁe»Ýn©Ü® Àí¹�”h³B½È·ëa¡Ú@Dæ@"w Â&˜‚„ð¢,~°U³Ik[ÌÚà6’›ê$ºÅšBH&XÂû„Ö/ߥW1133‚h­P’¡ÛðâëMru“Ì'?“ÏÓ‹�׋HÁe»Ýn©Ü® Àí¹�”h³B½È·ëa¡Ú@Dæ@"w Â&˜‚„ð¢,~°U³Ik[ÌÚà6’›ê$ºÅšBH&XÂû„Ö/ߥW
1117*˜9}>#& h„iL˜P@„¶ˆlåe³égSêl`¼1134*˜9}>#& h„iL˜P@„¶ˆlåe³égSêl`¼
1118Y_„`H‡9:óÅ�Y§Õ�¼:|Ü:Ñ1135Y_„`H‡9:óÅ�Y§Õ�¼:|Ü:Ñ
1119wgÛ¼N7µ-VÝ¡viÓuYdýÜ’²s®´×³�yè1136wgÛ¼N7µ-VÝ¡viÓuYdýÜ’²s®´×³�yè
1120áà|¯þGFñ‘Ì3qOâ#âó%µÎü²æ÷ù7�¦¾Ø1137áà|¯þGFñ‘Ì3qOâ#âó%µÎü²æ÷ù7�¦¾Ø
1121›çAvr»0�ƒ‰�ŽºóDÝñ†;0—v9¡q¸|œ1138›çAvr»0�ƒ‰�ŽºóDÝñ†;0—v9¡q¸|œ
1122WñÈæ-zGìý-Òµ]8Bin³îîÓ¿î¨èƒ—]x)»teŸÙ";h~S4•Éºyµ³ÐÝÜäfmŠzx÷ŒÄûuOE�Îxtü*€%BŠÖýjB¥Ú¿1139WñÈæ-zGìý-Òµ]8Bin³îîÓ¿î¨èƒ—]x)»teŸÙ";h~S4•Éºyµ³ÐÝÜäfmŠzx÷ŒÄûuOE�Îxtü*€%BŠÖýjB¥Ú¿
1123´¾j+ضZ˜<O1140´¾j+ضZ˜<O
1124S6UWÓº,óAA9“š…Ü=)<é/Nß&¨"\‰SÜrçvÞû¾Épeê~ÚHÇã9çÏðI/†¯Åv0|îÓú®ŸLDr”¬—xŒ1141S6UWÓº,óAA9“š…Ü=)<é/Nß&¨"\‰SÜrçvÞû¾Épeê~ÚHÇã9çÏðI/†¯Åv0|îÓú®ŸLDr”¬—xŒ
1125§Þx•ÿ¬1142§Þx•ÿ¬
1126ær1143ær
1127endstream
1128endobj
1129435 0 obj <<
1130/Type /Page
1131/Contents 436 0 R
1132/Resources 434 0 R
1133/MediaBox [0 0 595.276 841.89]
1134/Parent 336 0 R
1135/Annots [ 416 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R ]
1136>> endobj
1137416 0 obj <<
1138/Type /Annot1144/Type /Annot
1139/Subtype /Link1145/Subtype /Link
1140/Border[0 0 0]/H/I/C[1 0 0]1146/Border[0 0 0]/H/I/C[1 0 0]
1141/Rect [72.06 770.165 189.579 783.181]1147/Rect [72.06 770.165 189.579 783.181]
1142/A << /S /GoTo /D (section.4.2) >>1148/A << /S /GoTo /D (section.4.2) >>
1143>> endobj1149>> endobj
1144422 0 obj <<1150426 0 obj <<
1145/Type /Annot1151/Type /Annot
1146/Subtype /Link1152/Subtype /Link
1147/Border[0 0 0]/H/I/C[1 0 0]1153/Border[0 0 0]/H/I/C[1 0 0]
1148/Rect [97.151 754.821 167.761 764.935]1154/Rect [97.151 754.821 167.761 764.935]
1149/A << /S /GoTo /D (subsection.4.2.1) >>1155/A << /S /GoTo /D (subsection.4.2.1) >>
1150>> endobj1156>> endobj
1151423 0 obj <<1157427 0 obj <<
1152/Type /Annot1158/Type /Annot
1153/Subtype /Link1159/Subtype /Link
1154/Border[0 0 0]/H/I/C[1 0 0]1160/Border[0 0 0]/H/I/C[1 0 0]
1155/Rect [97.151 736.575 175.911 746.689]1161/Rect [97.151 736.575 175.911 746.689]
1156/A << /S /GoTo /D (subsection.4.2.2) >>1162/A << /S /GoTo /D (subsection.4.2.2) >>
1157>> endobj1163>> endobj
1158424 0 obj <<1164428 0 obj <<
1159/Type /Annot1165/Type /Annot
1160/Subtype /Link1166/Subtype /Link
1161/Border[0 0 0]/H/I/C[1 0 0]1167/Border[0 0 0]/H/I/C[1 0 0]
1162/Rect [72.06 715.427 185.739 728.443]1168/Rect [72.06 715.427 185.739 728.443]
1163/A << /S /GoTo /D (section.4.3) >>1169/A << /S /GoTo /D (section.4.3) >>
1164>> endobj1170>> endobj
1165425 0 obj <<1171429 0 obj <<
1166/Type /Annot1172/Type /Annot
1167/Subtype /Link1173/Subtype /Link
1168/Border[0 0 0]/H/I/C[1 0 0]1174/Border[0 0 0]/H/I/C[1 0 0]
1169/Rect [72.06 697.181 176.248 710.197]1175/Rect [72.06 697.181 176.248 710.197]
1170/A << /S /GoTo /D (section.4.4) >>1176/A << /S /GoTo /D (section.4.4) >>
1171>> endobj1177>> endobj
1172426 0 obj <<1178430 0 obj <<
1173/Type /Annot1179/Type /Annot
1174/Subtype /Link1180/Subtype /Link
1175/Border[0 0 0]/H/I/C[1 0 0]1181/Border[0 0 0]/H/I/C[1 0 0]
1176/Rect [97.151 681.836 185.739 691.618]1182/Rect [97.151 681.836 185.739 691.618]
1177/A << /S /GoTo /D (subsection.4.4.1) >>1183/A << /S /GoTo /D (subsection.4.4.1) >>
1178>> endobj1184>> endobj
1179427 0 obj <<1185431 0 obj <<
1180/Type /Annot1186/Type /Annot
1181/Subtype /Link1187/Subtype /Link
1182/Border[0 0 0]/H/I/C[1 0 0]1188/Border[0 0 0]/H/I/C[1 0 0]
1183/Rect [97.151 663.59 182.587 673.704]1189/Rect [97.151 663.59 182.587 673.704]
1184/A << /S /GoTo /D (subsection.4.4.2) >>1190/A << /S /GoTo /D (subsection.4.4.2) >>
1185>> endobj1191>> endobj
1186428 0 obj <<1192432 0 obj <<
1187/Type /Annot1193/Type /Annot
1188/Subtype /Link1194/Subtype /Link
1189/Border[0 0 0]/H/I/C[1 0 0]1195/Border[0 0 0]/H/I/C[1 0 0]
1190/Rect [97.151 645.344 179.129 655.458]1196/Rect [97.151 645.344 179.129 655.458]
1191/A << /S /GoTo /D (subsection.4.4.3) >>1197/A << /S /GoTo /D (subsection.4.4.3) >>
1192>> endobj1198>> endobj
1193429 0 obj <<1199433 0 obj <<
1194/Type /Annot1200/Type /Annot
1195/Subtype /Link1201/Subtype /Link
1196/Border[0 0 0]/H/I/C[1 0 0]1202/Border[0 0 0]/H/I/C[1 0 0]
1197/Rect [97.151 624.196 229.866 637.212]1203/Rect [97.151 624.196 229.866 637.212]
1198/A << /S /GoTo /D (subsection.4.4.4) >>1204/A << /S /GoTo /D (subsection.4.4.4) >>
1199>> endobj1205>> endobj
1200430 0 obj <<1206434 0 obj <<
1201/Type /Annot1207/Type /Annot
1202/Subtype /Link1208/Subtype /Link
1203/Border[0 0 0]/H/I/C[1 0 0]1209/Border[0 0 0]/H/I/C[1 0 0]
1204/Rect [97.151 605.95 295.244 618.966]1210/Rect [97.151 605.95 295.244 618.966]
1205/A << /S /GoTo /D (subsection.4.4.5) >>1211/A << /S /GoTo /D (subsection.4.4.5) >>
1206>> endobj1212>> endobj
1207431 0 obj <<1213435 0 obj <<
1208/Type /Annot1214/Type /Annot
1209/Subtype /Link1215/Subtype /Link
1210/Border[0 0 0]/H/I/C[1 0 0]1216/Border[0 0 0]/H/I/C[1 0 0]
1211/Rect [55.697 579.675 173.117 589.702]1217/Rect [55.697 579.675 173.117 589.702]
1212/A << /S /GoTo /D (chapter.5) >>1218/A << /S /GoTo /D (chapter.5) >>
1213>> endobj1219>> endobj
1214432 0 obj <<1220436 0 obj <<
1215/Type /Annot1221/Type /Annot
1216/Subtype /Link1222/Subtype /Link
1217/Border[0 0 0]/H/I/C[1 0 0]1223/Border[0 0 0]/H/I/C[1 0 0]
1218/Rect [72.06 558.549 141.71 571.565]1224/Rect [72.06 558.549 141.71 571.565]
1219/A << /S /GoTo /D (section.5.1) >>1225/A << /S /GoTo /D (section.5.1) >>
1220>> endobj1226>> endobj
1221433 0 obj <<1227437 0 obj <<
1222/Type /Annot1228/Type /Annot
1223/Subtype /Link1229/Subtype /Link
1224/Border[0 0 0]/H/I/C[1 0 0]1230/Border[0 0 0]/H/I/C[1 0 0]
1225/Rect [97.151 540.302 161.598 553.318]1231/Rect [97.151 540.302 161.598 553.318]
1226/A << /S /GoTo /D (subsection.5.1.1) >>1232/A << /S /GoTo /D (subsection.5.1.1) >>
1227>> endobj1233>> endobj
1228437 0 obj <<1234438 0 obj <<
1229/D [435 0 R /XYZ 55.693 817.952 null]1235/Type /Annot
1230>> endobj1236/Subtype /Link
1231434 0 obj <<1237/Border[0 0 0]/H/I/C[1 0 0]
1232/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R >>1238/Rect [72.06 522.056 202.146 535.072]
1239/A << /S /GoTo /D (section.5.2) >>
1240>> endobj
1241442 0 obj <<
1242/D [440 0 R /XYZ 55.693 817.952 null]
1243>> endobj
1244439 0 obj <<
1245/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R >>
1233/ProcSet [ /PDF /Text ]1246/ProcSet [ /PDF /Text ]
1234>> endobj1247>> endobj
1235440 0 obj <<1248445 0 obj <<
1236/Length 96 1249/Length 96
1237/Filter /FlateDecode1250/Filter /FlateDecode
1238>>1251>>
@@ -1210,21 +1223,21 @@
1210áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÓŒ1223áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÓŒ
1211ñÒw3¶DVhbd¨gfa1224ñÒw3¶DVhbd¨gfa
12124¬ÆÙß/ÄÕ/$¤”Ëj>:íÂYæK12254¬ÆÙß/ÄÕ/$¤”Ëj>:íÂYæK
1213endstream1226endstream
1214endobj1227endobj
1215439 0 obj <<1228444 0 obj <<
1216/Type /Page1229/Type /Page
1217/Contents 440 0 R1230/Contents 445 0 R
1218/Resources 438 0 R1231/Resources 443 0 R
1219/MediaBox [0 0 595.276 841.89]1232/MediaBox [0 0 595.276 841.89]
1220/Parent 336 0 R1233/Parent 340 0 R
1221>> endobj1234>> endobj
1222441 0 obj <<1235446 0 obj <<
1223/D [439 0 R /XYZ 55.693 817.952 null]1236/D [444 0 R /XYZ 55.693 817.952 null]
1224>> endobj1237>> endobj
1225438 0 obj <<1238443 0 obj <<
1226/Font << /F28 335 0 R /F39 421 0 R >>1239/Font << /F28 339 0 R /F39 425 0 R >>
1227/ProcSet [ /PDF /Text ]1240/ProcSet [ /PDF /Text ]
1228>> endobj1241>> endobj
1229451 0 obj <<1242456 0 obj <<
1230/Length 1032 1243/Length 1032
1231/Filter /FlateDecode1244/Filter /FlateDecode
1232>>1245>>
@@ -1236,76 +1249,76 @@
1236÷z>IÈÈIÈ?Wš×Í^ÖíIho•‰Jcb -Ä$ÉJ7«�FØéöÖ“üuâ÷«k‚YM!>Z”`9EV1249÷z>IÈÈIÈ?Wš×Í^ÖíIho•‰Jcb -Ä$ÉJ7«�FØéöÖ“üuâ÷«k‚YM!>Z”`9EV
1237�ÝÕèI¶ÞCmÚí~á1250�ÝÕèI¶ÞCmÚí~á
1238h·ØÓÙüž×ÒÑËì©ù«ê6Fj�.\5d{}2èÔ�þvÒúVYwjû:Ð3fÓƒÑðÀ¤ŸQè­kXåv€jJ>¢æÌø U¡šµû¬ßÐ1251h·ØÓÙüž×ÒÑËì©ù«ê6Fj�.\5d{}2èÔ�þvÒúVYwjû:Ð3fÓƒÑðÀ¤ŸQè­kXåv€jJ>¢æÌø U¡šµû¬ßÐ
1239ðþ ÝâԞƻ°#¦¯-†pÐØ¢îl·±ßf›ÄD¸o`0©õ´h³üëCʇCß…R\>I’1252ðþ ÝâԞƻ°#¦¯-†pÐØ¢îl·±ßf›ÄD¸o`0©õ´h³üëCʇCß…R\>I’
1240>^}½måαi÷ãö1253>^}½måαi÷ãö
1241†«=u±¯êñ1254†«=u±¯êñ
1242þëòêôlrž1255þëòêôlrž
1243endstream1256endstream
1244endobj1257endobj
1245450 0 obj <<1258455 0 obj <<
1246/Type /Page1259/Type /Page
1247/Contents 451 0 R1260/Contents 456 0 R
1248/Resources 449 0 R1261/Resources 454 0 R
1249/MediaBox [0 0 595.276 841.89]1262/MediaBox [0 0 595.276 841.89]
1250/Parent 455 0 R1263/Parent 460 0 R
1251/Annots [ 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R ]1264/Annots [ 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R ]
1252>> endobj1265>> endobj
1253442 0 obj <<1266447 0 obj <<
1254/Type /Annot1267/Type /Annot
1255/Border[0 0 0]/H/I/C[0 1 1]1268/Border[0 0 0]/H/I/C[0 1 1]
1256/Rect [124.194 486.154 244.005 499.17]1269/Rect [124.194 486.154 244.005 499.17]
1257/Subtype/Link/A<</Type/Action/S/URI/URI(http://python.org/)>>1270/Subtype/Link/A<</Type/Action/S/URI/URI(http://python.org/)>>
1258>> endobj1271>> endobj
1259443 0 obj <<1272448 0 obj <<
1260/Type /Annot1273/Type /Annot
1261/Border[0 0 0]/H/I/C[0 1 1]1274/Border[0 0 0]/H/I/C[0 1 1]
1262/Rect [176.732 461.479 505.996 474.495]1275/Rect [176.732 461.479 505.996 474.495]
1263/Subtype/Link/A<</Type/Action/S/URI/URI(http://peak.telecommunity.com/DevCenter/setuptools)>>1276/Subtype/Link/A<</Type/Action/S/URI/URI(http://peak.telecommunity.com/DevCenter/setuptools)>>
1264>> endobj1277>> endobj
1265444 0 obj <<1278449 0 obj <<
1266/Type /Annot1279/Type /Annot
1267/Border[0 0 0]/H/I/C[0 1 1]1280/Border[0 0 0]/H/I/C[0 1 1]
1268/Rect [124.914 436.804 264.361 449.82]1281/Rect [124.914 436.804 264.361 449.82]
1269/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.pygtk.org/)>>1282/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.pygtk.org/)>>
1270>> endobj1283>> endobj
1271445 0 obj <<1284450 0 obj <<
1272/Type /Annot1285/Type /Annot
1273/Border[0 0 0]/H/I/C[0 1 1]1286/Border[0 0 0]/H/I/C[0 1 1]
1274/Rect [110.94 412.86 283.114 425.145]1287/Rect [110.94 412.86 283.114 425.145]
1275/Subtype/Link/A<</Type/Action/S/URI/URI(http://codespeak.net/lxml/)>>1288/Subtype/Link/A<</Type/Action/S/URI/URI(http://codespeak.net/lxml/)>>
1276>> endobj1289>> endobj
1277446 0 obj <<1290451 0 obj <<
1278/Type /Annot1291/Type /Annot
1279/Border[0 0 0]/H/I/C[0 1 1]1292/Border[0 0 0]/H/I/C[0 1 1]
1280/Rect [117.213 387.455 433.387 400.471]1293/Rect [117.213 387.455 433.387 400.471]
1281/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.thaiopensource.com/relaxng/trang.html)>>1294/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.thaiopensource.com/relaxng/trang.html)>>
1282>> endobj1295>> endobj
1283447 0 obj <<1296452 0 obj <<
1284/Type /Annot1297/Type /Annot
1285/Border[0 0 0]/H/I/C[0 1 1]1298/Border[0 0 0]/H/I/C[0 1 1]
1286/Rect [125.601 363.511 251.958 375.796]1299/Rect [125.601 363.511 251.958 375.796]
1287/Subtype/Link/A<</Type/Action/S/URI/URI(http://xmlsoft.org/)>>1300/Subtype/Link/A<</Type/Action/S/URI/URI(http://xmlsoft.org/)>>
1288>> endobj1301>> endobj
1289448 0 obj <<1302453 0 obj <<
1290/Type /Annot1303/Type /Annot
1291/Border[0 0 0]/H/I/C[0 1 1]1304/Border[0 0 0]/H/I/C[0 1 1]
1292/Rect [200.754 338.836 393.062 351.121]1305/Rect [200.754 338.836 393.062 351.121]
1293/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.latex-project.org/)>>1306/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.latex-project.org/)>>
1294>> endobj1307>> endobj
1295452 0 obj <<1308457 0 obj <<
1296/D [450 0 R /XYZ 55.693 817.952 null]1309/D [455 0 R /XYZ 55.693 817.952 null]
1297>> endobj1310>> endobj
12982 0 obj <<13112 0 obj <<
1299/D [450 0 R /XYZ 56.693 785.197 null]1312/D [455 0 R /XYZ 56.693 785.197 null]
1300>> endobj1313>> endobj
13016 0 obj <<13146 0 obj <<
1302/D [450 0 R /XYZ 56.693 593.867 null]1315/D [455 0 R /XYZ 56.693 593.867 null]
1303>> endobj1316>> endobj
130410 0 obj <<131710 0 obj <<
1305/D [450 0 R /XYZ 56.693 227.965 null]1318/D [455 0 R /XYZ 56.693 227.965 null]
1306>> endobj1319>> endobj
130714 0 obj <<132014 0 obj <<
1308/D [450 0 R /XYZ 56.693 121.727 null]1321/D [455 0 R /XYZ 56.693 121.727 null]
1309>> endobj1322>> endobj
1310449 0 obj <<1323454 0 obj <<
1311/Font << /F37 376 0 R /F28 335 0 R /F36 453 0 R /F47 454 0 R >>1324/Font << /F37 380 0 R /F28 339 0 R /F36 458 0 R /F47 459 0 R >>
1312/ProcSet [ /PDF /Text ]1325/ProcSet [ /PDF /Text ]
1313>> endobj1326>> endobj
1314458 0 obj <<1327463 0 obj <<
1315/Length 933 1328/Length 933
1316/Filter /FlateDecode1329/Filter /FlateDecode
1317>>1330>>
@@ -1318,24 +1331,24 @@
1318½›¨×c²í†¾î§ì0u�Dv#ã<õf�Wâ‡*e×®6{iÄÆøñÛâs+å˜2ÿc°ØÚÏœ7ªªþk5ŠsÓ¼Q¡w1331½›¨×c²í†¾î§ì0u�Dv#ã<õf�Wâ‡*e×®6{iÄÆøñÛâs+å˜2ÿc°ØÚÏœ7ªªþk5ŠsÓ¼Q¡w
1319�ÿÔŽõÇ)õ´…9o]ÿ\ÃÒ©†Ý ‡NWÜLþ1332�ÿÔŽõÇ)õ´…9o]ÿ\ÃÒ©†Ý ‡NWÜLþ
1320¼ap†ëïúÃM·¼ø±¼ûxßu¹1333¼ap†ëïúÃM·¼ø±¼ûxßu¹
1321endstream1334endstream
1322endobj1335endobj
1323457 0 obj <<1336462 0 obj <<
1324/Type /Page1337/Type /Page
1325/Contents 458 0 R1338/Contents 463 0 R
1326/Resources 456 0 R1339/Resources 461 0 R
1327/MediaBox [0 0 595.276 841.89]1340/MediaBox [0 0 595.276 841.89]
1328/Parent 455 0 R1341/Parent 460 0 R
1329>> endobj1342>> endobj
1330459 0 obj <<1343464 0 obj <<
1331/D [457 0 R /XYZ 55.693 817.952 null]1344/D [462 0 R /XYZ 55.693 817.952 null]
1332>> endobj1345>> endobj
133318 0 obj <<134618 0 obj <<
1334/D [457 0 R /XYZ 56.693 653.568 null]1347/D [462 0 R /XYZ 56.693 653.568 null]
1335>> endobj1348>> endobj
1336456 0 obj <<1349461 0 obj <<
1337/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F37 376 0 R >>1350/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F37 380 0 R >>
1338/ProcSet [ /PDF /Text ]1351/ProcSet [ /PDF /Text ]
1339>> endobj1352>> endobj
1340464 0 obj <<1353469 0 obj <<
1341/Length 1736 1354/Length 1736
1342/Filter /FlateDecode1355/Filter /FlateDecode
1343>>1356>>
@@ -1353,88 +1366,88 @@
1353púløÇdWjÄpûš$ŸŸ–³rY³ä©Žðxª@1366púløÇdWjÄpûš$ŸŸ–³rY³ä©Žðxª@
1354sÄ7ÎOµ¿ìå®r1367sÄ7ÎOµ¿ìå®r
1355ºâ�OEšýç÷ÄXLƒ1368ºâ�OEšýç÷ÄXLƒ
1356'ÇaŽ¾æÓÿ¿mÜ&*áÿ·¹¿Õå˜Àb'z—1369'ÇaŽ¾æÓÿ¿mÜ&*áÿ·¹¿Õå˜Àb'z—
1357£“ÏcƒNf2ÊpB‘o[·Üüü™ÈOU°uôT°Âùº~¸çË°HA{œC¥_1áx±zô/ì’ü 1370£“ÏcƒNf2ÊpB‘o[·Üüü™ÈOU°uôT°Âùº~¸çË°HA{œC¥_1áx±zô/ì’ü
1358endstream1371endstream
1359endobj1372endobj
1360463 0 obj <<1373468 0 obj <<
1361/Type /Page1374/Type /Page
1362/Contents 464 0 R1375/Contents 469 0 R
1363/Resources 462 0 R1376/Resources 467 0 R
1364/MediaBox [0 0 595.276 841.89]1377/MediaBox [0 0 595.276 841.89]
1365/Parent 455 0 R1378/Parent 460 0 R
1366/Annots [ 460 0 R 461 0 R ]1379/Annots [ 465 0 R 466 0 R ]
1367>> endobj1380>> endobj
1368460 0 obj <<1381465 0 obj <<
1369/Type /Annot1382/Type /Annot
1370/Border[0 0 0]/H/I/C[0 1 1]1383/Border[0 0 0]/H/I/C[0 1 1]
1371/Rect [132.725 450.877 259.081 463.893]1384/Rect [132.725 450.877 259.081 463.893]
1372/Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/)>>1385/Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/)>>
1373>> endobj1386>> endobj
1374461 0 obj <<1387466 0 obj <<
1375/Type /Annot1388/Type /Annot
1376/Border[0 0 0]/H/I/C[0 1 1]1389/Border[0 0 0]/H/I/C[0 1 1]
1377/Rect [284.186 450.877 399.915 463.893]1390/Rect [284.186 450.877 399.915 463.893]
1378/Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/compact-tutorial-20030326.html)>>1391/Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/compact-tutorial-20030326.html)>>
1379>> endobj1392>> endobj
1380465 0 obj <<1393470 0 obj <<
1381/D [463 0 R /XYZ 55.693 817.952 null]1394/D [468 0 R /XYZ 55.693 817.952 null]
1382>> endobj1395>> endobj
138322 0 obj <<139622 0 obj <<
1384/D [463 0 R /XYZ 56.693 785.197 null]1397/D [468 0 R /XYZ 56.693 785.197 null]
1385>> endobj1398>> endobj
138626 0 obj <<139926 0 obj <<
1387/D [463 0 R /XYZ 56.693 518.154 null]1400/D [468 0 R /XYZ 56.693 518.154 null]
1388>> endobj1401>> endobj
138930 0 obj <<140230 0 obj <<
1390/D [463 0 R /XYZ 56.693 361.081 null]1403/D [468 0 R /XYZ 56.693 361.081 null]
1391>> endobj
1392466 0 obj <<
1393/D [463 0 R /XYZ 56.693 243.305 null]
1394>> endobj
1395467 0 obj <<
1396/D [463 0 R /XYZ 56.693 246.382 null]
1397>> endobj
1398469 0 obj <<
1399/D [463 0 R /XYZ 56.693 232.832 null]
1400>> endobj
1401470 0 obj <<
1402/D [463 0 R /XYZ 56.693 219.283 null]
1403>> endobj1404>> endobj
1404471 0 obj <<1405471 0 obj <<
1405/D [463 0 R /XYZ 56.693 205.734 null]1406/D [468 0 R /XYZ 56.693 243.305 null]
1406>> endobj1407>> endobj
1407473 0 obj <<1408472 0 obj <<
1408/D [463 0 R /XYZ 56.693 192.185 null]1409/D [468 0 R /XYZ 56.693 246.382 null]
1409>> endobj1410>> endobj
1410474 0 obj <<1411474 0 obj <<
1411/D [463 0 R /XYZ 56.693 178.636 null]1412/D [468 0 R /XYZ 56.693 232.832 null]
1412>> endobj1413>> endobj
1413475 0 obj <<1414475 0 obj <<
1414/D [463 0 R /XYZ 56.693 165.086 null]1415/D [468 0 R /XYZ 56.693 219.283 null]
1415>> endobj1416>> endobj
1416476 0 obj <<1417476 0 obj <<
1417/D [463 0 R /XYZ 56.693 151.537 null]1418/D [468 0 R /XYZ 56.693 205.734 null]
1418>> endobj
1419477 0 obj <<
1420/D [463 0 R /XYZ 56.693 137.988 null]
1421>> endobj1419>> endobj
1422478 0 obj <<1420478 0 obj <<
1423/D [463 0 R /XYZ 56.693 124.439 null]1421/D [468 0 R /XYZ 56.693 192.185 null]
1424>> endobj1422>> endobj
1425479 0 obj <<1423479 0 obj <<
1426/D [463 0 R /XYZ 56.693 110.89 null]1424/D [468 0 R /XYZ 56.693 178.636 null]
1427>> endobj1425>> endobj
1428480 0 obj <<1426480 0 obj <<
1429/D [463 0 R /XYZ 56.693 97.34 null]1427/D [468 0 R /XYZ 56.693 165.086 null]
1430>> endobj1428>> endobj
1431481 0 obj <<1429481 0 obj <<
1432/D [463 0 R /XYZ 56.693 83.791 null]1430/D [468 0 R /XYZ 56.693 151.537 null]
1433>> endobj1431>> endobj
1434482 0 obj <<1432482 0 obj <<
1435/D [463 0 R /XYZ 56.693 70.242 null]1433/D [468 0 R /XYZ 56.693 137.988 null]
1436>> endobj1434>> endobj
1437462 0 obj <<1435483 0 obj <<
1438/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R >>1436/D [468 0 R /XYZ 56.693 124.439 null]
1439/ProcSet [ /PDF /Text ]1437>> endobj
1438484 0 obj <<
1439/D [468 0 R /XYZ 56.693 110.89 null]
1440>> endobj1440>> endobj
1441485 0 obj <<1441485 0 obj <<
1442/D [468 0 R /XYZ 56.693 97.34 null]
1443>> endobj
1444486 0 obj <<
1445/D [468 0 R /XYZ 56.693 83.791 null]
1446>> endobj
1447487 0 obj <<
1448/D [468 0 R /XYZ 56.693 70.242 null]
1449>> endobj
1450467 0 obj <<
1451/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R >>
1452/ProcSet [ /PDF /Text ]
1453>> endobj
1454490 0 obj <<
1442/Length 2232 1455/Length 2232
1443/Filter /FlateDecode1456/Filter /FlateDecode
1444>>1457>>
@@ -1447,69 +1460,69 @@
1447Î, ;ÉH@îw¬àHØž ‘ƒ‚‡; RÒ”Œ§`Ä~æоApâð¿¡à7÷fßÔoó¦x´ŽƒdÔ1ÀNÇ’ŽÜ‚1œ�a¤ 1460Î, ;ÉH@îw¬àHØž ‘ƒ‚‡; RÒ”Œ§`Ä~æоApâð¿¡à7÷fßÔoó¦x´ŽƒdÔ1ÀNÇ’ŽÜ‚1œ�a¤
1448{öLáõ“O…X~º3]Gøî>h#¤ê=´u:k#äâ1461{öLáõ“O…X~º3]Gøî>h#¤ê=´u:k#äâ
1449Ç@Јêè,jð¾³èù¿Q‡«î1462Ç@Јêè,jð¾³èù¿Q‡«î
1450£ŠÚE}.qâ”1463£ŠÚE}.qâ”
1451~Íp�<B‚O[ó]\—‰°|ø¡Ò=Ÿ›QæÏ�1464~Íp�<B‚O[ó]\—‰°|ø¡Ò=Ÿ›QæÏ�
1452á#ƒHÆ—v 1465á#ƒHÆ—v
1453y·nŽUímiZÕÞÓÂI[ôé×½‰îø%•ZO^û†§£QˆÃ·ñáïa²zÀÜBÕeÃ3'Â6¶DÙD4SìD4Q”Î^zÿoÄÏ¥óÀ·˜… 1466y·nŽUímiZÕÞÓÂI[ôé×½‰îø%•ZO^û†§£QˆÃ·ñáïa²zÀÜBÕeÃ3'Â6¶DÙD4SìD4Q”Î^zÿoÄÏ¥óÀ·˜… 
14541467
1455f6©FcO�({ÒHLD†3þß_¬ûóèÿ”lù4þŠÅüyQÌÿ-]ëêæÉŸ‚¨�81468f6©FcO�({ÒHLD†3þß_¬ûóèÿ”lù4þŠÅüyQÌÿ-]ëêæÉŸ‚¨�8
1456endstream1469endstream
1457endobj1470endobj
1458484 0 obj <<
1459/Type /Page
1460/Contents 485 0 R
1461/Resources 483 0 R
1462/MediaBox [0 0 595.276 841.89]
1463/Parent 455 0 R
1464>> endobj
1465486 0 obj <<
1466/D [484 0 R /XYZ 55.693 817.952 null]
1467>> endobj
1468487 0 obj <<
1469/D [484 0 R /XYZ 56.693 787.787 null]
1470>> endobj
1471488 0 obj <<
1472/D [484 0 R /XYZ 56.693 587.222 null]
1473>> endobj
1474489 0 obj <<1471489 0 obj <<
1475/D [484 0 R /XYZ 56.693 590.299 null]1472/Type /Page
1476>> endobj1473/Contents 490 0 R
1477490 0 obj <<1474/Resources 488 0 R
1478/D [484 0 R /XYZ 56.693 576.749 null]1475/MediaBox [0 0 595.276 841.89]
1476/Parent 460 0 R
1479>> endobj1477>> endobj
1480491 0 obj <<1478491 0 obj <<
1481/D [484 0 R /XYZ 56.693 563.2 null]1479/D [489 0 R /XYZ 55.693 817.952 null]
1482>> endobj1480>> endobj
1483492 0 obj <<1481492 0 obj <<
1484/D [484 0 R /XYZ 56.693 549.651 null]1482/D [489 0 R /XYZ 56.693 787.787 null]
1485>> endobj1483>> endobj
1486493 0 obj <<1484493 0 obj <<
1487/D [484 0 R /XYZ 56.693 536.102 null]1485/D [489 0 R /XYZ 56.693 587.222 null]
1488>> endobj1486>> endobj
1489494 0 obj <<1487494 0 obj <<
1490/D [484 0 R /XYZ 56.693 522.553 null]1488/D [489 0 R /XYZ 56.693 590.299 null]
1491>> endobj1489>> endobj
1492495 0 obj <<1490495 0 obj <<
1493/D [484 0 R /XYZ 56.693 509.003 null]1491/D [489 0 R /XYZ 56.693 576.749 null]
1494>> endobj1492>> endobj
1495496 0 obj <<1493496 0 obj <<
1496/D [484 0 R /XYZ 56.693 495.454 null]1494/D [489 0 R /XYZ 56.693 563.2 null]
1497>> endobj1495>> endobj
1498497 0 obj <<1496497 0 obj <<
1499/D [484 0 R /XYZ 56.693 481.905 null]1497/D [489 0 R /XYZ 56.693 549.651 null]
1500>> endobj1498>> endobj
1501498 0 obj <<1499498 0 obj <<
1502/D [484 0 R /XYZ 56.693 468.356 null]1500/D [489 0 R /XYZ 56.693 536.102 null]
1503>> endobj1501>> endobj
1504499 0 obj <<1502499 0 obj <<
1505/D [484 0 R /XYZ 56.693 454.807 null]1503/D [489 0 R /XYZ 56.693 522.553 null]
1506>> endobj1504>> endobj
1507500 0 obj <<1505500 0 obj <<
1508/D [484 0 R /XYZ 56.693 441.257 null]1506/D [489 0 R /XYZ 56.693 509.003 null]
1509>> endobj1507>> endobj
1510501 0 obj <<1508501 0 obj <<
1511/D [484 0 R /XYZ 56.693 427.708 null]1509/D [489 0 R /XYZ 56.693 495.454 null]
1512>> endobj1510>> endobj
1513502 0 obj <<1511502 0 obj <<
1514/D [484 0 R /XYZ 56.693 341.514 null]1512/D [489 0 R /XYZ 56.693 481.905 null]
1515>> endobj1513>> endobj
1516483 0 obj <<1514503 0 obj <<
1517/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R >>1515/D [489 0 R /XYZ 56.693 468.356 null]
1518/ProcSet [ /PDF /Text ]1516>> endobj
1517504 0 obj <<
1518/D [489 0 R /XYZ 56.693 454.807 null]
1519>> endobj1519>> endobj
1520505 0 obj <<1520505 0 obj <<
1521/D [489 0 R /XYZ 56.693 441.257 null]
1522>> endobj
1523506 0 obj <<
1524/D [489 0 R /XYZ 56.693 427.708 null]
1525>> endobj
1526507 0 obj <<
1527/D [489 0 R /XYZ 56.693 341.514 null]
1528>> endobj
1529488 0 obj <<
1530/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R >>
1531/ProcSet [ /PDF /Text ]
1532>> endobj
1533510 0 obj <<
1521/Length 1705 1534/Length 1705
1522/Filter /FlateDecode1535/Filter /FlateDecode
1523>>1536>>
@@ -1524,45 +1537,45 @@
15242Ô:‡¶ÎmxO%µíθ15372Ô:‡¶ÎmxO%µíθ
1525¬�°4þ0Eï¿H�âddý`,eQûU�v&²a{“½+šu‚1m$ï—í.º?�Éž N¾'1538¬�°4þ0Eï¿H�âddý`,eQûU�v&²a{“½+šu‚1m$ï—í.º?�Éž N¾'
1526~ô;»vÔ+”$±1539~ô;»vÔ+”$±
1527NÑ{0Eã>1540NÑ{0Eã>
1528^Bêÿz1Zh ½þ1541^Bêÿz1Zh ½þ
1529ª;Û1542ª;Û
1530endstream1543endstream
1531endobj1544endobj
1532504 0 obj <<1545509 0 obj <<
1533/Type /Page1546/Type /Page
1534/Contents 505 0 R1547/Contents 510 0 R
1535/Resources 503 0 R1548/Resources 508 0 R
1536/MediaBox [0 0 595.276 841.89]1549/MediaBox [0 0 595.276 841.89]
1537/Parent 455 0 R1550/Parent 460 0 R
1538>> endobj1551>> endobj
1539506 0 obj <<1552511 0 obj <<
1540/D [504 0 R /XYZ 55.693 817.952 null]1553/D [509 0 R /XYZ 55.693 817.952 null]
1541>> endobj1554>> endobj
154234 0 obj <<155534 0 obj <<
1543/D [504 0 R /XYZ 56.693 331.901 null]1556/D [509 0 R /XYZ 56.693 331.901 null]
1544>> endobj1557>> endobj
154538 0 obj <<155838 0 obj <<
1546/D [504 0 R /XYZ 56.693 214.871 null]1559/D [509 0 R /XYZ 56.693 214.871 null]
1547>> endobj
1548507 0 obj <<
1549/D [504 0 R /XYZ 56.693 121.363 null]
1550>> endobj
1551508 0 obj <<
1552/D [504 0 R /XYZ 56.693 124.439 null]
1553>> endobj
1554509 0 obj <<
1555/D [504 0 R /XYZ 56.693 110.89 null]
1556>> endobj
1557510 0 obj <<
1558/D [504 0 R /XYZ 56.693 97.34 null]
1559>> endobj
1560511 0 obj <<
1561/D [504 0 R /XYZ 56.693 83.791 null]
1562>> endobj1560>> endobj
1563512 0 obj <<1561512 0 obj <<
1564/D [504 0 R /XYZ 56.693 70.242 null]1562/D [509 0 R /XYZ 56.693 121.363 null]
1565>> endobj1563>> endobj
1566503 0 obj <<1564513 0 obj <<
1567/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R /F50 468 0 R /F51 472 0 R >>1565/D [509 0 R /XYZ 56.693 124.439 null]
1568/ProcSet [ /PDF /Text ]1566>> endobj
1567514 0 obj <<
1568/D [509 0 R /XYZ 56.693 110.89 null]
1569>> endobj
1570515 0 obj <<
1571/D [509 0 R /XYZ 56.693 97.34 null]
1569>> endobj1572>> endobj
1570516 0 obj <<1573516 0 obj <<
1574/D [509 0 R /XYZ 56.693 83.791 null]
1575>> endobj
1576517 0 obj <<
1577/D [509 0 R /XYZ 56.693 70.242 null]
1578>> endobj
1579508 0 obj <<
1580/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R /F50 473 0 R /F51 477 0 R >>
1581/ProcSet [ /PDF /Text ]
1582>> endobj
1583521 0 obj <<
1571/Length 1953 1584/Length 1953
1572/Filter /FlateDecode1585/Filter /FlateDecode
1573>>1586>>
@@ -1578,114 +1591,114 @@
15783¤�¬3$ŽS15913¤�¬3$ŽS
1579.ñëø…ku-Ÿ‡Û‡31592.ñëø…ku-Ÿ‡Û‡3
1580FÕìÓº�ã79.J.“ÍɃÖÀóT«Ê¢²�¼¥è%xã1593FÕìÓº�ã79.J.“ÍɃÖÀóT«Ê¢²�¼¥è%xã
1581tP;¬?1594tP;¬?
1582ÐÀ?á@à(h’\"^tXGÐ1595ÐÀ?á@à(h’\"^tXGÐ
1583³¥©á°d–ž—`[«E¾Ë,v´Õì¦6v1596³¥©á°d–ž—`[«E¾Ë,v´Õì¦6v
1584ÝKz�TCì”C/ø¢5‘}B‚ºÅ¨eWY9t4ì¹1597ÝKz�TCì”C/ø¢5‘}B‚ºÅ¨eWY9t4ì¹
1585ô>¾LãU‘”ÂÅ�Ò»Sâ�¶;€J·18_»ÛDÛ�íNãÀǶøÎ5…˜ÿíMaº1598ô>¾LãU‘”ÂÅ�Ò»Sâ�¶;€J·18_»ÛDÛ�íNãÀǶøÎ5…˜ÿíMaº
1586endstream1599endstream
1587endobj1600endobj
1588515 0 obj <<
1589/Type /Page
1590/Contents 516 0 R
1591/Resources 514 0 R
1592/MediaBox [0 0 595.276 841.89]
1593/Parent 455 0 R
1594>> endobj
1595517 0 obj <<
1596/D [515 0 R /XYZ 55.693 817.952 null]
1597>> endobj
1598518 0 obj <<
1599/D [515 0 R /XYZ 56.693 787.787 null]
1600>> endobj
1601519 0 obj <<
1602/D [515 0 R /XYZ 56.693 774.238 null]
1603>> endobj
1604520 0 obj <<1601520 0 obj <<
1605/D [515 0 R /XYZ 56.693 760.689 null]1602/Type /Page
1606>> endobj1603/Contents 521 0 R
1607521 0 obj <<1604/Resources 519 0 R
1608/D [515 0 R /XYZ 56.693 747.14 null]1605/MediaBox [0 0 595.276 841.89]
1606/Parent 460 0 R
1609>> endobj1607>> endobj
1610522 0 obj <<1608522 0 obj <<
1611/D [515 0 R /XYZ 56.693 733.59 null]1609/D [520 0 R /XYZ 55.693 817.952 null]
1612>> endobj1610>> endobj
1613523 0 obj <<1611523 0 obj <<
1614/D [515 0 R /XYZ 56.693 720.041 null]1612/D [520 0 R /XYZ 56.693 787.787 null]
1615>> endobj1613>> endobj
1616524 0 obj <<1614524 0 obj <<
1617/D [515 0 R /XYZ 56.693 706.492 null]1615/D [520 0 R /XYZ 56.693 774.238 null]
1618>> endobj1616>> endobj
1619525 0 obj <<1617525 0 obj <<
1620/D [515 0 R /XYZ 56.693 692.943 null]1618/D [520 0 R /XYZ 56.693 760.689 null]
1621>> endobj1619>> endobj
1622526 0 obj <<1620526 0 obj <<
1623/D [515 0 R /XYZ 56.693 679.394 null]1621/D [520 0 R /XYZ 56.693 747.14 null]
1624>> endobj1622>> endobj
1625527 0 obj <<1623527 0 obj <<
1626/D [515 0 R /XYZ 56.693 665.844 null]1624/D [520 0 R /XYZ 56.693 733.59 null]
1627>> endobj
162842 0 obj <<
1629/D [515 0 R /XYZ 56.693 553.184 null]
1630>> endobj1625>> endobj
1631528 0 obj <<1626528 0 obj <<
1632/D [515 0 R /XYZ 56.693 438.145 null]1627/D [520 0 R /XYZ 56.693 720.041 null]
1633>> endobj1628>> endobj
1634529 0 obj <<1629529 0 obj <<
1635/D [515 0 R /XYZ 56.693 441.222 null]1630/D [520 0 R /XYZ 56.693 706.492 null]
1636>> endobj1631>> endobj
1637530 0 obj <<1632530 0 obj <<
1638/D [515 0 R /XYZ 56.693 427.673 null]1633/D [520 0 R /XYZ 56.693 692.943 null]
1639>> endobj1634>> endobj
1640531 0 obj <<1635531 0 obj <<
1641/D [515 0 R /XYZ 56.693 414.123 null]1636/D [520 0 R /XYZ 56.693 679.394 null]
1642>> endobj1637>> endobj
1643532 0 obj <<1638532 0 obj <<
1644/D [515 0 R /XYZ 56.693 400.574 null]1639/D [520 0 R /XYZ 56.693 665.844 null]
1640>> endobj
164142 0 obj <<
1642/D [520 0 R /XYZ 56.693 553.184 null]
1645>> endobj1643>> endobj
1646533 0 obj <<1644533 0 obj <<
1647/D [515 0 R /XYZ 56.693 387.025 null]1645/D [520 0 R /XYZ 56.693 438.145 null]
1648>> endobj1646>> endobj
1649534 0 obj <<1647534 0 obj <<
1650/D [515 0 R /XYZ 56.693 373.476 null]1648/D [520 0 R /XYZ 56.693 441.222 null]
1651>> endobj1649>> endobj
1652535 0 obj <<1650535 0 obj <<
1653/D [515 0 R /XYZ 56.693 359.927 null]1651/D [520 0 R /XYZ 56.693 427.673 null]
1654>> endobj1652>> endobj
1655536 0 obj <<1653536 0 obj <<
1656/D [515 0 R /XYZ 56.693 346.377 null]1654/D [520 0 R /XYZ 56.693 414.123 null]
1657>> endobj1655>> endobj
1658537 0 obj <<1656537 0 obj <<
1659/D [515 0 R /XYZ 56.693 332.828 null]1657/D [520 0 R /XYZ 56.693 400.574 null]
1660>> endobj1658>> endobj
1661538 0 obj <<1659538 0 obj <<
1662/D [515 0 R /XYZ 56.693 319.279 null]1660/D [520 0 R /XYZ 56.693 387.025 null]
1663>> endobj1661>> endobj
1664539 0 obj <<1662539 0 obj <<
1665/D [515 0 R /XYZ 56.693 305.73 null]1663/D [520 0 R /XYZ 56.693 373.476 null]
1666>> endobj1664>> endobj
1667540 0 obj <<1665540 0 obj <<
1668/D [515 0 R /XYZ 56.693 249.128 null]1666/D [520 0 R /XYZ 56.693 359.927 null]
1669>> endobj1667>> endobj
1670541 0 obj <<1668541 0 obj <<
1671/D [515 0 R /XYZ 56.693 252.204 null]1669/D [520 0 R /XYZ 56.693 346.377 null]
1672>> endobj1670>> endobj
1673542 0 obj <<1671542 0 obj <<
1674/D [515 0 R /XYZ 56.693 238.655 null]1672/D [520 0 R /XYZ 56.693 332.828 null]
1675>> endobj1673>> endobj
1676543 0 obj <<1674543 0 obj <<
1677/D [515 0 R /XYZ 56.693 225.106 null]1675/D [520 0 R /XYZ 56.693 319.279 null]
1678>> endobj1676>> endobj
1679544 0 obj <<1677544 0 obj <<
1680/D [515 0 R /XYZ 56.693 211.557 null]1678/D [520 0 R /XYZ 56.693 305.73 null]
1681>> endobj1679>> endobj
1682545 0 obj <<1680545 0 obj <<
1683/D [515 0 R /XYZ 56.693 198.008 null]1681/D [520 0 R /XYZ 56.693 249.128 null]
1684>> endobj1682>> endobj
1685546 0 obj <<1683546 0 obj <<
1686/D [515 0 R /XYZ 56.693 184.458 null]1684/D [520 0 R /XYZ 56.693 252.204 null]
1685>> endobj
1686547 0 obj <<
1687/D [520 0 R /XYZ 56.693 238.655 null]
1688>> endobj
1689548 0 obj <<
1690/D [520 0 R /XYZ 56.693 225.106 null]
1691>> endobj
1692549 0 obj <<
1693/D [520 0 R /XYZ 56.693 211.557 null]
1694>> endobj
1695550 0 obj <<
1696/D [520 0 R /XYZ 56.693 198.008 null]
1697>> endobj
1698551 0 obj <<
1699/D [520 0 R /XYZ 56.693 184.458 null]
1687>> endobj1700>> endobj
168846 0 obj <<170146 0 obj <<
1689/D [515 0 R /XYZ 56.693 126.802 null]1702/D [520 0 R /XYZ 56.693 126.802 null]
1690>> endobj1703>> endobj
1691514 0 obj <<1704519 0 obj <<
1692/Font << /F28 335 0 R /F39 421 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F37 376 0 R >>1705/Font << /F28 339 0 R /F39 425 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F37 380 0 R >>
1693/ProcSet [ /PDF /Text ]1706/ProcSet [ /PDF /Text ]
1694>> endobj1707>> endobj
1695549 0 obj <<1708554 0 obj <<
1696/Length 2647 1709/Length 2647
1697/Filter /FlateDecode1710/Filter /FlateDecode
1698>>1711>>
@@ -1702,122 +1715,122 @@
1702�Oþfê–ÿµþd½ß\�ŽÉ]j R1715�Oþfê–ÿµþd½ß\�ŽÉ]j R
1703Q­q7g]d¨�Œ£j±Û4ãj@d¬NçNL¡Yž‚r?òŸþës M1716Q­q7g]d¨�Œ£j±Û4ãj@d¬NçNL¡Yž‚r?òŸþës M
1704endstream1717endstream
1705endobj1718endobj
1706548 0 obj <<1719553 0 obj <<
1707/Type /Page1720/Type /Page
1708/Contents 549 0 R1721/Contents 554 0 R
1709/Resources 547 0 R1722/Resources 552 0 R
1710/MediaBox [0 0 595.276 841.89]1723/MediaBox [0 0 595.276 841.89]
1711/Parent 580 0 R1724/Parent 585 0 R
1712/Annots [ 513 0 R ]1725/Annots [ 518 0 R ]
1713>> endobj1726>> endobj
1714513 0 obj <<1727518 0 obj <<
1715/Type /Annot1728/Type /Annot
1716/Subtype /Link1729/Subtype /Link
1717/Border[0 0 0]/H/I/C[1 0 0]1730/Border[0 0 0]/H/I/C[1 0 0]
1718/Rect [151.966 242.548 167.595 255.564]1731/Rect [151.966 242.548 167.595 255.564]
1719/A << /S /GoTo /D (figure.2.1) >>1732/A << /S /GoTo /D (figure.2.1) >>
1720>> endobj1733>> endobj
1721550 0 obj <<
1722/D [548 0 R /XYZ 55.693 817.952 null]
1723>> endobj
1724551 0 obj <<
1725/D [548 0 R /XYZ 56.693 779.219 null]
1726>> endobj
1727552 0 obj <<
1728/D [548 0 R /XYZ 56.693 789.062 null]
1729>> endobj
1730553 0 obj <<
1731/D [548 0 R /XYZ 56.693 775.513 null]
1732>> endobj
1733554 0 obj <<
1734/D [548 0 R /XYZ 56.693 761.964 null]
1735>> endobj
1736555 0 obj <<1734555 0 obj <<
1737/D [548 0 R /XYZ 56.693 748.415 null]1735/D [553 0 R /XYZ 55.693 817.952 null]
1738>> endobj1736>> endobj
1739556 0 obj <<1737556 0 obj <<
1740/D [548 0 R /XYZ 56.693 734.866 null]1738/D [553 0 R /XYZ 56.693 779.219 null]
1741>> endobj1739>> endobj
1742557 0 obj <<1740557 0 obj <<
1743/D [548 0 R /XYZ 56.693 721.317 null]1741/D [553 0 R /XYZ 56.693 789.062 null]
1744>> endobj1742>> endobj
1745558 0 obj <<1743558 0 obj <<
1746/D [548 0 R /XYZ 56.693 707.767 null]1744/D [553 0 R /XYZ 56.693 775.513 null]
1747>> endobj1745>> endobj
1748559 0 obj <<1746559 0 obj <<
1749/D [548 0 R /XYZ 56.693 694.218 null]1747/D [553 0 R /XYZ 56.693 761.964 null]
1750>> endobj1748>> endobj
1751560 0 obj <<1749560 0 obj <<
1752/D [548 0 R /XYZ 56.693 680.669 null]1750/D [553 0 R /XYZ 56.693 748.415 null]
1753>> endobj1751>> endobj
1754561 0 obj <<1752561 0 obj <<
1755/D [548 0 R /XYZ 56.693 667.12 null]1753/D [553 0 R /XYZ 56.693 734.866 null]
1756>> endobj1754>> endobj
1757562 0 obj <<1755562 0 obj <<
1758/D [548 0 R /XYZ 56.693 653.571 null]1756/D [553 0 R /XYZ 56.693 721.317 null]
1759>> endobj1757>> endobj
1760563 0 obj <<1758563 0 obj <<
1761/D [548 0 R /XYZ 56.693 640.021 null]1759/D [553 0 R /XYZ 56.693 707.767 null]
1762>> endobj1760>> endobj
1763564 0 obj <<1761564 0 obj <<
1764/D [548 0 R /XYZ 56.693 626.472 null]1762/D [553 0 R /XYZ 56.693 694.218 null]
1765>> endobj1763>> endobj
1766565 0 obj <<1764565 0 obj <<
1767/D [548 0 R /XYZ 56.693 612.923 null]1765/D [553 0 R /XYZ 56.693 680.669 null]
1768>> endobj1766>> endobj
1769566 0 obj <<1767566 0 obj <<
1770/D [548 0 R /XYZ 56.693 599.374 null]1768/D [553 0 R /XYZ 56.693 667.12 null]
1771>> endobj1769>> endobj
1772567 0 obj <<1770567 0 obj <<
1773/D [548 0 R /XYZ 56.693 585.825 null]1771/D [553 0 R /XYZ 56.693 653.571 null]
1774>> endobj1772>> endobj
1775568 0 obj <<1773568 0 obj <<
1776/D [548 0 R /XYZ 56.693 572.276 null]1774/D [553 0 R /XYZ 56.693 640.021 null]
1777>> endobj1775>> endobj
1778569 0 obj <<1776569 0 obj <<
1779/D [548 0 R /XYZ 56.693 558.726 null]1777/D [553 0 R /XYZ 56.693 626.472 null]
1780>> endobj1778>> endobj
1781570 0 obj <<1779570 0 obj <<
1782/D [548 0 R /XYZ 56.693 545.177 null]1780/D [553 0 R /XYZ 56.693 612.923 null]
1783>> endobj1781>> endobj
1784571 0 obj <<1782571 0 obj <<
1785/D [548 0 R /XYZ 56.693 531.628 null]1783/D [553 0 R /XYZ 56.693 599.374 null]
1786>> endobj1784>> endobj
1787572 0 obj <<1785572 0 obj <<
1788/D [548 0 R /XYZ 56.693 518.079 null]1786/D [553 0 R /XYZ 56.693 585.825 null]
1789>> endobj1787>> endobj
1790573 0 obj <<1788573 0 obj <<
1791/D [548 0 R /XYZ 56.693 504.53 null]1789/D [553 0 R /XYZ 56.693 572.276 null]
1792>> endobj1790>> endobj
1793574 0 obj <<1791574 0 obj <<
1794/D [548 0 R /XYZ 56.693 490.98 null]1792/D [553 0 R /XYZ 56.693 558.726 null]
1795>> endobj1793>> endobj
1796575 0 obj <<1794575 0 obj <<
1797/D [548 0 R /XYZ 56.693 477.431 null]1795/D [553 0 R /XYZ 56.693 545.177 null]
1798>> endobj1796>> endobj
1799576 0 obj <<1797576 0 obj <<
1800/D [548 0 R /XYZ 56.693 463.882 null]1798/D [553 0 R /XYZ 56.693 531.628 null]
1801>> endobj1799>> endobj
1802577 0 obj <<1800577 0 obj <<
1803/D [548 0 R /XYZ 56.693 450.333 null]1801/D [553 0 R /XYZ 56.693 518.079 null]
1804>> endobj1802>> endobj
1805578 0 obj <<1803578 0 obj <<
1806/D [548 0 R /XYZ 56.693 436.784 null]1804/D [553 0 R /XYZ 56.693 504.53 null]
1807>> endobj1805>> endobj
1808579 0 obj <<1806579 0 obj <<
1809/D [548 0 R /XYZ 111.951 402.057 null]1807/D [553 0 R /XYZ 56.693 490.98 null]
1808>> endobj
1809580 0 obj <<
1810/D [553 0 R /XYZ 56.693 477.431 null]
1811>> endobj
1812581 0 obj <<
1813/D [553 0 R /XYZ 56.693 463.882 null]
1814>> endobj
1815582 0 obj <<
1816/D [553 0 R /XYZ 56.693 450.333 null]
1817>> endobj
1818583 0 obj <<
1819/D [553 0 R /XYZ 56.693 436.784 null]
1820>> endobj
1821584 0 obj <<
1822/D [553 0 R /XYZ 111.951 402.057 null]
1810>> endobj1823>> endobj
181150 0 obj <<182450 0 obj <<
1812/D [548 0 R /XYZ 56.693 341.79 null]1825/D [553 0 R /XYZ 56.693 341.79 null]
1813>> endobj1826>> endobj
181454 0 obj <<182754 0 obj <<
1815/D [548 0 R /XYZ 56.693 212.212 null]1828/D [553 0 R /XYZ 56.693 212.212 null]
1816>> endobj1829>> endobj
1817547 0 obj <<1830552 0 obj <<
1818/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R /F37 376 0 R /F36 453 0 R >>1831/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R /F37 380 0 R /F36 458 0 R >>
1819/ProcSet [ /PDF /Text ]1832/ProcSet [ /PDF /Text ]
1820>> endobj1833>> endobj
1821584 0 obj <<1834589 0 obj <<
1822/Length 1852 1835/Length 1852
1823/Filter /FlateDecode1836/Filter /FlateDecode
1824>>1837>>
@@ -1828,35 +1841,35 @@
1828Ðó\ ð1–ùN+ò…ALMÖÕ¼…Wà›n”â4Þ¢%Ṳ̂„÷z¾<óÅ:B<~1841Ðó\ ð1–ùN+ò…ALMÖÕ¼…Wà›n”â4Þ¢%Ṳ̂„÷z¾<óÅ:B<~
1842_^vðrÜv3ã]nc`À+ÈfÕÕØ^É›êLÙ­û6ƒåAzµ jìYz\ÿõsi˜ì^Kz%–9óÇüŸQaÄiǶçÒÎ=iÿÍîâ?Á
1829D1843D
1830endstream1844endstream
1831endobj1845endobj
1832583 0 obj <<1846588 0 obj <<
1833/Type /Page1847/Type /Page
1834/Contents 584 0 R1848/Contents 589 0 R
1835/Resources 582 0 R1849/Resources 587 0 R
1836/MediaBox [0 0 595.276 841.89]1850/MediaBox [0 0 595.276 841.89]
1837/Parent 580 0 R1851/Parent 585 0 R
1838/Annots [ 581 0 R ]1852/Annots [ 586 0 R ]
1839>> endobj1853>> endobj
1840581 0 obj <<1854586 0 obj <<
1841/Type /Annot1855/Type /Annot
1842/Subtype /Link1856/Subtype /Link
1843/Border[0 0 0]/H/I/C[1 0 0]1857/Border[0 0 0]/H/I/C[1 0 0]
1844/Rect [324.164 514.395 339.793 527.411]1858/Rect [324.164 514.395 339.793 527.411]
1845/A << /S /GoTo /D (figure.2.1) >>1859/A << /S /GoTo /D (figure.2.1) >>
1846>> endobj1860>> endobj
1847585 0 obj <<1861590 0 obj <<
1848/D [583 0 R /XYZ 55.693 817.952 null]1862/D [588 0 R /XYZ 55.693 817.952 null]
1849>> endobj1863>> endobj
185058 0 obj <<186458 0 obj <<
1851/D [583 0 R /XYZ 56.693 708.223 null]1865/D [588 0 R /XYZ 56.693 708.223 null]
1852>> endobj1866>> endobj
185362 0 obj <<186762 0 obj <<
1854/D [583 0 R /XYZ 56.693 483.935 null]1868/D [588 0 R /XYZ 56.693 483.935 null]
1855>> endobj1869>> endobj
1856582 0 obj <<1870587 0 obj <<
1857/Font << /F28 335 0 R /F39 421 0 R /F36 453 0 R /F47 454 0 R /F37 376 0 R >>1871/Font << /F28 339 0 R /F39 425 0 R /F36 458 0 R /F47 459 0 R /F37 380 0 R >>
1858/ProcSet [ /PDF /Text ]1872/ProcSet [ /PDF /Text ]
1859>> endobj1873>> endobj
1860589 0 obj <<1874594 0 obj <<
1861/Length 1001 1875/Length 1001
1862/Filter /FlateDecode1876/Filter /FlateDecode
1863>>1877>>
@@ -1867,38 +1880,38 @@
1867n�»9›ß­ÊÑ8ð­W—.H¼œŒa5ÄÕ)[ïe]Ê®9ÿ ™­‚‹¨š`ô¡ÜËæ2xƒ¾ßÍéü>X¯FËA;9VW{½“Ù8èw@ok5q’/«kN2Ëø…ÚzÎ|­1880n�»9›ß­ÊÑ8ð­W—.H¼œŒa5ÄÕ)[ïe]Ê®9ÿ ™­‚‹¨š`ô¡ÜËæ2xƒ¾ßÍéü>X¯FËA;9VW{½“Ù8èw@ok5q’/«kN2Ëø…ÚzÎ|­
1868®˜GV›:‡íÆ©¾ÉGë.Tœ•âŒëOŽÐ<ÃÒ²žðAÖ1881®˜GV›:‡íÆ©¾ÉGë.Tœ•âŒëOŽÐ<ÃÒ²žðAÖ
1869=Á®.ŠúÅÚYÿºOÔÒþIØ7¢ü_Ý}lŒ/Vo'»üð¨ª]ý^ïžZ[h÷‡æÍ+׊ÊU‡¨ª®¤CÁ®4KÝ[fZA··ø1882=Á®.ŠúÅÚYÿºOÔÒþIØ7¢ü_Ý}lŒ/Vo'»üð¨ª]ý^ïžZ[h÷‡æÍ+׊ÊU‡¨ª®¤CÁ®4KÝ[fZA··ø
1870T�àÍ¢9<ßhD1883T�àÍ¢9<ßhD
1871YÝñ(‚!S\uÿhkG$ŠÂ1884YÝñ(‚!S\uÿhkG$ŠÂ
1872ºZl]«hÖùp'Î1885ºZl]«hÖùp'Î
1873õT½÷^vÖÙø^¼ùÍdDŽ÷¢<ãö䜓bÕ1ö_!‹F.¿lfÿsYÜ-1886õT½÷^vÖÙø^¼ùÍdDŽ÷¢<ãö䜓bÕ1ö_!‹F.¿lfÿsYÜ-
1874endstream1887endstream
1875endobj1888endobj
1876588 0 obj <<1889593 0 obj <<
1877/Type /Page1890/Type /Page
1878/Contents 589 0 R1891/Contents 594 0 R
1879/Resources 587 0 R1892/Resources 592 0 R
1880/MediaBox [0 0 595.276 841.89]1893/MediaBox [0 0 595.276 841.89]
1881/Parent 580 0 R1894/Parent 585 0 R
1882/Annots [ 586 0 R ]1895/Annots [ 591 0 R ]
1883>> endobj1896>> endobj
1884586 0 obj <<1897591 0 obj <<
1885/Type /Annot1898/Type /Annot
1886/Subtype /Link1899/Subtype /Link
1887/Border[0 0 0]/H/I/C[1 0 0]1900/Border[0 0 0]/H/I/C[1 0 0]
1888/Rect [300.417 379.372 316.046 392.388]1901/Rect [300.417 379.372 316.046 392.388]
1889/A << /S /GoTo /D (figure.2.1) >>1902/A << /S /GoTo /D (figure.2.1) >>
1890>> endobj1903>> endobj
1891590 0 obj <<1904595 0 obj <<
1892/D [588 0 R /XYZ 55.693 817.952 null]1905/D [593 0 R /XYZ 55.693 817.952 null]
1893>> endobj1906>> endobj
189466 0 obj <<190766 0 obj <<
1895/D [588 0 R /XYZ 56.693 785.197 null]1908/D [593 0 R /XYZ 56.693 785.197 null]
1896>> endobj1909>> endobj
189770 0 obj <<191070 0 obj <<
1898/D [588 0 R /XYZ 56.693 548.093 null]1911/D [593 0 R /XYZ 56.693 548.093 null]
1899>> endobj1912>> endobj
190074 0 obj <<191374 0 obj <<
1901/D [588 0 R /XYZ 56.693 446.701 null]1914/D [593 0 R /XYZ 56.693 446.701 null]
1902>> endobj1915>> endobj
1903587 0 obj <<1916592 0 obj <<
1904/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>1917/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
1905/ProcSet [ /PDF /Text ]1918/ProcSet [ /PDF /Text ]
1906>> endobj1919>> endobj
1907593 0 obj <<1920598 0 obj <<
1908/Length 1355 1921/Length 1355
1909/Filter /FlateDecode1922/Filter /FlateDecode
1910>>1923>>
@@ -1911,24 +1924,24 @@
1911F1924F
1912§r­å=Äu8@òU¦:!è7˜“ê£Weo!4ú®›ÉŸ)uSu Â9ä°ÔðjzÈÒÁ^êz„ûm÷ý®G‚ÉÐ¥h&ú”sÜkd§µiCìv¼ÓâŸÚ 1Éo¯Á‚�BLu®Ê“1ŸžËRÇ(Ü^x<ë1925§r­å=Äu8@òU¦:!è7˜“ê£Weo!4ú®›ÉŸ)uSu Â9ä°ÔðjzÈÒÁ^êz„ûm÷ý®G‚ÉÐ¥h&ú”sÜkd§µiCìv¼ÓâŸÚ 1Éo¯Á‚�BLu®Ê“1ŸžËRÇ(Ü^x<ë
19139=L±Ç³A´—»ÇM—|bÛ̞أóJݪu׎µÌïNÆt|Ê�g½å'1ï(£;ë™*—û0ÄAgV�+u2^èTŒw=l®»>#Y¹ü·n1¼19269=L±Ç³A´—»ÇM—|bÛ̞أóJݪu׎µÌïNÆt|Ê�g½å'1ï(£;ë™*—û0ÄAgV�+u2^èTŒw=l®»>#Y¹ü·n1¼
1914ݱ~ ¼ó¿1927ݱ~ ¼ó¿
1915o:ä£Y?â‡.ÙKôg_c¦ì91928o:ä£Y?â‡.ÙKôg_c¦ì9
1916šò­Ç�Ì–¨™„Ž´B(xìz8•ÝIu_1929šò­Ç�Ì–¨™„Ž´B(xìz8•ÝIu_
1917²lÀ‰ç¶1930²lÀ‰ç¶
1918͘:„1931͘:„
1919Úžïµ}¢%°úæ•+Y-[8(Ûºûr„±Vaã»!¥B�Ðõv”«˜sÏ‘yÒ*|´LyðÄówÞ1932Úžïµ}¢%°úæ•+Y-[8(Ûºûr„±Vaã»!¥B�Ðõv”«˜sÏ‘yÒ*|´LyðÄówÞ
1920­hää†Ì͈÷H¬’0¿6¹þ²¶ÄH1933­hää†Ì͈÷H¬’0¿6¹þ²¶ÄH
19210ÆžëºÏÞ†219340ÆžëºÏÞ†2
1922!„�3ŸD®S ªLÞY øF4£6ö0n"Ã{+Bî;hRs›åZăvßóÐ�Äpá<|6/B3ÜÏ1935!„�3ŸD®S ªLÞY øF4£6ö0n"Ã{+Bî;hRs›åZăvßóÐ�Äpá<|6/B3ÜÏ
1923Ã:5Ûš§V’@�5Ï®Á—1936Ã:5Ûš§V’@�5Ï®Á—
1924Z<ëÇžªÖ�/df1937Z<ëÇžªÖ�/df
1925Ä&9 1938Ä&9
1926hùÿÆ>í®Ãô#þ£ìƒ×‹NÆWE©��@>~õÆÿ2^/£¥.ìßTZĺzüw`¿_m7¼"auª «óÞì}påÅ=l«»Áîçà!’&àŒý“f´”_­Ž½F9¨‘ øþ·õ¤:2¥}ŸsX1939hùÿÆ>í®Ãô#þ£ìƒ×‹NÆWE©��@>~õÆÿ2^/£¥.ìßTZĺzüw`¿_m7¼"auª «óÞì}påÅ=l«»Áîçà!’&àŒý“f´”_­Ž½F9¨‘ øþ·õ¤:2¥}ŸsX
#a:q=ûÿ¦¦Û×Æ×_Ä­ÊÝ�Ãþlã¡:*ov„Ûÿ×ÔŸòå`K¼˜ý…k”
1927endstream1940endstream
1928endobj1941endobj
1929592 0 obj <<1942597 0 obj <<
1930/Type /Page1943/Type /Page
1931/Contents 593 0 R1944/Contents 598 0 R
1932/Resources 591 0 R1945/Resources 596 0 R
1933/MediaBox [0 0 595.276 841.89]1946/MediaBox [0 0 595.276 841.89]
1934/Parent 580 0 R1947/Parent 585 0 R
1935>> endobj1948>> endobj
1936594 0 obj <<1949599 0 obj <<
1937/D [592 0 R /XYZ 55.693 817.952 null]1950/D [597 0 R /XYZ 55.693 817.952 null]
1938>> endobj1951>> endobj
193978 0 obj <<195278 0 obj <<
1940/D [592 0 R /XYZ 56.693 690.705 null]1953/D [597 0 R /XYZ 56.693 690.705 null]
1941>> endobj1954>> endobj
1942591 0 obj <<1955596 0 obj <<
1943/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F37 376 0 R /F55 595 0 R /F50 468 0 R >>1956/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F37 380 0 R /F55 600 0 R /F50 473 0 R >>
1944/ProcSet [ /PDF /Text ]1957/ProcSet [ /PDF /Text ]
1945>> endobj1958>> endobj
1946602 0 obj <<1959607 0 obj <<
1947/Length 2097 1960/Length 2097
1948/Filter /FlateDecode1961/Filter /FlateDecode
1949>>1962>>
@@ -1946,45 +1959,45 @@
1946¯Œsæ@„VÝâþY2öÚƬL»H¦  œa–K,øo �÷ßâ@Œã%IOs1959¯Œsæ@„VÝâþY2öÚƬL»H¦  œa–K,øo �÷ßâ@Œã%IOs
1947¾õO:'Ó(]­¨i_¥ôb…/Ì×�ÏÄ€\„:¶Þ²1960¾õO:'Ó(]­¨i_¥ôb…/Ì×�ÏÄ€\„:¶Þ²
1948¬…‚‰1961¬…‚‰
19491962
1950…eì8Îæa7~t°?Ú‚ß?^ý\Ågõ1963…eì8Îæa7~t°?Ú‚ß?^ý\Ågõ
1951endstream1964endstream
1952endobj1965endobj
1966606 0 obj <<
1967/Type /Page
1968/Contents 607 0 R
1969/Resources 605 0 R
1970/MediaBox [0 0 595.276 841.89]
1971/Parent 585 0 R
1972/Annots [ 601 0 R 602 0 R ]
1973>> endobj
1953601 0 obj <<1974601 0 obj <<
1954/Type /Page
1955/Contents 602 0 R
1956/Resources 600 0 R
1957/MediaBox [0 0 595.276 841.89]
1958/Parent 580 0 R
1959/Annots [ 596 0 R 597 0 R ]
1960>> endobj
1961596 0 obj <<
1962/Type /Annot1975/Type /Annot
1963/Subtype /Link1976/Subtype /Link
1964/Border[0 0 0]/H/I/C[1 0 0]1977/Border[0 0 0]/H/I/C[1 0 0]
1965/Rect [160.149 497.929 189.414 510.945]1978/Rect [160.149 497.929 189.414 510.945]
1966/A << /S /GoTo /D (subsection.3.5.15) >>1979/A << /S /GoTo /D (subsection.3.5.15) >>
1967>> endobj1980>> endobj
1968597 0 obj <<1981602 0 obj <<
1969/Type /Annot1982/Type /Annot
1970/Subtype /Link1983/Subtype /Link
1971/Border[0 0 0]/H/I/C[1 0 0]1984/Border[0 0 0]/H/I/C[1 0 0]
1972/Rect [282.05 404.141 297.679 417.157]1985/Rect [282.05 404.141 297.679 417.157]
1973/A << /S /GoTo /D (section.2.2) >>1986/A << /S /GoTo /D (section.2.2) >>
1974>> endobj1987>> endobj
1975603 0 obj <<1988608 0 obj <<
1976/D [601 0 R /XYZ 55.693 817.952 null]1989/D [606 0 R /XYZ 55.693 817.952 null]
1977>> endobj1990>> endobj
197882 0 obj <<199182 0 obj <<
1979/D [601 0 R /XYZ 56.693 664.441 null]1992/D [606 0 R /XYZ 56.693 664.441 null]
1980>> endobj1993>> endobj
198186 0 obj <<199486 0 obj <<
1982/D [601 0 R /XYZ 56.693 453.52 null]1995/D [606 0 R /XYZ 56.693 453.52 null]
1983>> endobj1996>> endobj
198490 0 obj <<199790 0 obj <<
1985/D [601 0 R /XYZ 56.693 174.922 null]1998/D [606 0 R /XYZ 56.693 174.922 null]
1986>> endobj1999>> endobj
1987600 0 obj <<2000605 0 obj <<
1988/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R >>2001/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R >>
1989/ProcSet [ /PDF /Text ]2002/ProcSet [ /PDF /Text ]
1990>> endobj2003>> endobj
1991606 0 obj <<2004611 0 obj <<
1992/Length 1490 2005/Length 1490
1993/Filter /FlateDecode2006/Filter /FlateDecode
1994>>2007>>
@@ -1998,54 +2011,54 @@
19982011
1999»"’‚¼´2012»"’‚¼´
2000W*²SÑgQUßÛ-Õ€ÌR@�´ˆöF2013W*²SÑgQUßÛ-Õ€ÌR@�´ˆöF
20012014
2002oÔt·”±öc‘ÛúP5Áû‹µ�øZˆ\-ÜÕ4tk’Ñ5t2015oÔt·”±öc‘ÛúP5Áû‹µ�øZˆ\-ÜÕ4tk’Ñ5t
2003ýR58ô»ñ½f*WL�ƒoLÝg__½ût7X��6–º1N˲*ŠêÉã÷Ãî@÷eX4ÿK2016ýR58ô»ñ½f*WL�ƒoLÝg__½ût7X��6–º1N˲*ŠêÉã÷Ãî@÷eX4ÿK
2004žƒ2017žƒ
2005½èAç—î�p6l1ÿþØ¡DL…³›@> ¤ˆÞca*=P`.Y@Žt�KNÚB>ü¿� ÷CÈý·íº%ÞÓ©}2018½èAç—î�p6l1ÿþØ¡DL…³›@> ¤ˆÞca*=P`.Y@Žt�KNÚB>ü¿� ÷CÈý·íº%ÞÓ©}
20065úèDá_KHö^Køi“,?êØðš‚ŒÂá20195úèDá_KHö^Køi“,?êØðš‚ŒÂá
2007<2020<
2008¸ô´Î=‰gãÿ%ýÙ€Úo2021¸ô´Î=‰gãÿ%ýÙ€Úo
#î:vÑ_Çñ‰Ðe»q,ÿà:êy‘daõ{Þ­­#Šô9—�Ä€ÛìGùrqzÞµÃeïœ÷ï_{W@‡Ž†^w±ßj¨x
2009=]ÁÛøô2022=]ÁÛøô
2010ZCR—�‡SÒŠ>à¡XûòÅú7õºÊÕ⓪KÈèSJJ½Rhо2023ZCR—�‡SÒŠ>à¡XûòÅú7õºÊÕ⓪KÈèSJJ½Rhо
2011Oy%KXœüßW@ê÷¯Us€öŽDrvRãÕìâWTaI2024Oy%KXœüßW@ê÷¯Us€öŽDrvRãÕìâWTaI
2012endstream2025endstream
2013endobj2026endobj
2014605 0 obj <<2027610 0 obj <<
2015/Type /Page2028/Type /Page
2016/Contents 606 0 R2029/Contents 611 0 R
2017/Resources 604 0 R2030/Resources 609 0 R
2018/MediaBox [0 0 595.276 841.89]2031/MediaBox [0 0 595.276 841.89]
2019/Parent 580 0 R2032/Parent 585 0 R
2020/Annots [ 598 0 R 599 0 R ]2033/Annots [ 603 0 R 604 0 R ]
2021>> endobj2034>> endobj
2022598 0 obj <<2035603 0 obj <<
2023/Type /Annot2036/Type /Annot
2024/Subtype /Link2037/Subtype /Link
2025/Border[0 0 0]/H/I/C[1 0 0]2038/Border[0 0 0]/H/I/C[1 0 0]
2026/Rect [436.274 737.519 460.084 750.535]2039/Rect [436.274 737.519 460.084 750.535]
2027/A << /S /GoTo /D (subsection.3.5.1) >>2040/A << /S /GoTo /D (subsection.3.5.1) >>
2028>> endobj2041>> endobj
2029599 0 obj <<2042604 0 obj <<
2030/Type /Annot2043/Type /Annot
2031/Subtype /Link2044/Subtype /Link
2032/Border[0 0 0]/H/I/C[1 0 0]2045/Border[0 0 0]/H/I/C[1 0 0]
2033/Rect [59.329 723.97 83.14 736.986]2046/Rect [59.329 723.97 83.14 736.986]
2034/A << /S /GoTo /D (subsection.3.6.2) >>2047/A << /S /GoTo /D (subsection.3.6.2) >>
2035>> endobj2048>> endobj
2036607 0 obj <<2049612 0 obj <<
2037/D [605 0 R /XYZ 55.693 817.952 null]2050/D [610 0 R /XYZ 55.693 817.952 null]
2038>> endobj2051>> endobj
203994 0 obj <<205294 0 obj <<
2040/D [605 0 R /XYZ 56.693 785.197 null]2053/D [610 0 R /XYZ 56.693 785.197 null]
2041>> endobj2054>> endobj
204298 0 obj <<205598 0 obj <<
2043/D [605 0 R /XYZ 56.693 629.363 null]2056/D [610 0 R /XYZ 56.693 629.363 null]
2044>> endobj2057>> endobj
2045102 0 obj <<2058102 0 obj <<
2046/D [605 0 R /XYZ 56.693 517.166 null]2059/D [610 0 R /XYZ 56.693 517.166 null]
2047>> endobj2060>> endobj
2048106 0 obj <<2061106 0 obj <<
2049/D [605 0 R /XYZ 56.693 400.787 null]2062/D [610 0 R /XYZ 56.693 400.787 null]
2050>> endobj2063>> endobj
2051110 0 obj <<2064110 0 obj <<
2052/D [605 0 R /XYZ 56.693 259.88 null]2065/D [610 0 R /XYZ 56.693 259.88 null]
2053>> endobj2066>> endobj
2054114 0 obj <<2067114 0 obj <<
2055/D [605 0 R /XYZ 56.693 150.252 null]2068/D [610 0 R /XYZ 56.693 150.252 null]
2056>> endobj2069>> endobj
2057604 0 obj <<2070609 0 obj <<
2058/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>2071/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
2059/ProcSet [ /PDF /Text ]2072/ProcSet [ /PDF /Text ]
2060>> endobj2073>> endobj
2061610 0 obj <<2074615 0 obj <<
2062/Length 2192 2075/Length 2192
2063/Filter /FlateDecode2076/Filter /FlateDecode
2064>>2077>>
@@ -2066,75 +2079,75 @@
2066æ&‰:Ì©ôm“ö}\—ü°ç�Ýåˆ×ÜJêÝè±}ÎÞ?“íe™ñôeW)çÿò�½yge5·Ôdû¾s—,ÕW쾑 ¼çÿÿÝ5Ù2079æ&‰:Ì©ôm“ö}\—ü°ç�Ýåˆ×ÜJêÝè±}ÎÞ?“íe™ñôeW)çÿò�½yge5·Ôdû¾s—,ÕW쾑 ¼çÿÿÝ5Ù
2067endstream2080endstream
2068endobj2081endobj
2069609 0 obj <<2082614 0 obj <<
2070/Type /Page2083/Type /Page
2071/Contents 610 0 R2084/Contents 615 0 R
2072/Resources 608 0 R2085/Resources 613 0 R
2073/MediaBox [0 0 595.276 841.89]2086/MediaBox [0 0 595.276 841.89]
2074/Parent 627 0 R2087/Parent 632 0 R
2075>> endobj2088>> endobj
2076611 0 obj <<2089616 0 obj <<
2077/D [609 0 R /XYZ 55.693 817.952 null]2090/D [614 0 R /XYZ 55.693 817.952 null]
2078>> endobj2091>> endobj
2079118 0 obj <<2092118 0 obj <<
2080/D [609 0 R /XYZ 56.693 551.956 null]2093/D [614 0 R /XYZ 56.693 551.956 null]
2081>> endobj2094>> endobj
2082122 0 obj <<2095122 0 obj <<
2083/D [609 0 R /XYZ 56.693 392.073 null]2096/D [614 0 R /XYZ 56.693 392.073 null]
2084>> endobj
2085612 0 obj <<
2086/D [609 0 R /XYZ 56.693 361.392 null]
2087>> endobj
2088613 0 obj <<
2089/D [609 0 R /XYZ 56.693 364.158 null]
2090>> endobj
2091614 0 obj <<
2092/D [609 0 R /XYZ 56.693 350.609 null]
2093>> endobj
2094615 0 obj <<
2095/D [609 0 R /XYZ 56.693 318.33 null]
2096>> endobj
2097616 0 obj <<
2098/D [609 0 R /XYZ 56.693 321.398 null]
2099>> endobj2097>> endobj
2100617 0 obj <<2098617 0 obj <<
2101/D [609 0 R /XYZ 56.693 289.119 null]2099/D [614 0 R /XYZ 56.693 361.392 null]
2102>> endobj2100>> endobj
2103618 0 obj <<2101618 0 obj <<
2104/D [609 0 R /XYZ 56.693 292.188 null]2102/D [614 0 R /XYZ 56.693 364.158 null]
2105>> endobj
2106126 0 obj <<
2107/D [609 0 R /XYZ 56.693 231.158 null]
2108>> endobj2103>> endobj
2109619 0 obj <<2104619 0 obj <<
2110/D [609 0 R /XYZ 56.693 199.192 null]2105/D [614 0 R /XYZ 56.693 350.609 null]
2111>> endobj2106>> endobj
2112620 0 obj <<2107620 0 obj <<
2113/D [609 0 R /XYZ 56.693 201.958 null]2108/D [614 0 R /XYZ 56.693 318.33 null]
2114>> endobj2109>> endobj
2115621 0 obj <<2110621 0 obj <<
2116/D [609 0 R /XYZ 56.693 188.409 null]2111/D [614 0 R /XYZ 56.693 321.398 null]
2117>> endobj2112>> endobj
2118622 0 obj <<2113622 0 obj <<
2119/D [609 0 R /XYZ 56.693 174.859 null]2114/D [614 0 R /XYZ 56.693 289.119 null]
2120>> endobj2115>> endobj
2121623 0 obj <<2116623 0 obj <<
2122/D [609 0 R /XYZ 56.693 142.58 null]2117/D [614 0 R /XYZ 56.693 292.188 null]
2118>> endobj
2119126 0 obj <<
2120/D [614 0 R /XYZ 56.693 231.158 null]
2123>> endobj2121>> endobj
2124624 0 obj <<2122624 0 obj <<
2125/D [609 0 R /XYZ 56.693 145.649 null]2123/D [614 0 R /XYZ 56.693 199.192 null]
2126>> endobj2124>> endobj
2127625 0 obj <<2125625 0 obj <<
2128/D [609 0 R /XYZ 56.693 113.37 null]2126/D [614 0 R /XYZ 56.693 201.958 null]
2129>> endobj2127>> endobj
2130626 0 obj <<2128626 0 obj <<
2131/D [609 0 R /XYZ 56.693 116.438 null]2129/D [614 0 R /XYZ 56.693 188.409 null]
2132>> endobj2130>> endobj
2133608 0 obj <<2131627 0 obj <<
2134/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>2132/D [614 0 R /XYZ 56.693 174.859 null]
2135/ProcSet [ /PDF /Text ]2133>> endobj
2134628 0 obj <<
2135/D [614 0 R /XYZ 56.693 142.58 null]
2136>> endobj
2137629 0 obj <<
2138/D [614 0 R /XYZ 56.693 145.649 null]
2136>> endobj2139>> endobj
2137630 0 obj <<2140630 0 obj <<
2141/D [614 0 R /XYZ 56.693 113.37 null]
2142>> endobj
2143631 0 obj <<
2144/D [614 0 R /XYZ 56.693 116.438 null]
2145>> endobj
2146613 0 obj <<
2147/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
2148/ProcSet [ /PDF /Text ]
2149>> endobj
2150635 0 obj <<
2138/Length 2345 2151/Length 2345
2139/Filter /FlateDecode2152/Filter /FlateDecode
2140>>2153>>
@@ -2149,123 +2162,123 @@
2149“v�£U{ét­Úû姽ÜÏ^µ?4n»®-¯¤{±—îƒBï,0,¡ê†¼PJ»žO{„ü�>PÑgp­öAý $ý×r:÷æ:UÿÄDÈÿñ±6à2162“v�£U{ét­Úû姽ÜÏ^µ?4n»®-¯¤{±—îƒBï,0,¡ê†¼PJ»žO{„ü�>PÑgp­öAý $ý×r:÷æ:UÿÄDÈÿñ±6à
2150endstream2163endstream
2151endobj2164endobj
2152629 0 obj <<
2153/Type /Page
2154/Contents 630 0 R
2155/Resources 628 0 R
2156/MediaBox [0 0 595.276 841.89]
2157/Parent 627 0 R
2158>> endobj
2159631 0 obj <<
2160/D [629 0 R /XYZ 55.693 817.952 null]
2161>> endobj
2162130 0 obj <<
2163/D [629 0 R /XYZ 56.693 785.197 null]
2164>> endobj
2165632 0 obj <<
2166/D [629 0 R /XYZ 56.693 754.078 null]
2167>> endobj
2168633 0 obj <<
2169/D [629 0 R /XYZ 56.693 756.843 null]
2170>> endobj
2171634 0 obj <<2165634 0 obj <<
2172/D [629 0 R /XYZ 56.693 743.294 null]2166/Type /Page
2173>> endobj2167/Contents 635 0 R
2174635 0 obj <<2168/Resources 633 0 R
2175/D [629 0 R /XYZ 56.693 729.745 null]2169/MediaBox [0 0 595.276 841.89]
2170/Parent 632 0 R
2176>> endobj2171>> endobj
2177636 0 obj <<2172636 0 obj <<
2178/D [629 0 R /XYZ 56.693 692.264 null]2173/D [634 0 R /XYZ 55.693 817.952 null]
2174>> endobj
2175130 0 obj <<
2176/D [634 0 R /XYZ 56.693 785.197 null]
2179>> endobj2177>> endobj
2180637 0 obj <<2178637 0 obj <<
2181/D [629 0 R /XYZ 56.693 695.333 null]2179/D [634 0 R /XYZ 56.693 754.078 null]
2182>> endobj2180>> endobj
2183638 0 obj <<2181638 0 obj <<
2184/D [629 0 R /XYZ 56.693 657.852 null]2182/D [634 0 R /XYZ 56.693 756.843 null]
2185>> endobj2183>> endobj
2186639 0 obj <<2184639 0 obj <<
2187/D [629 0 R /XYZ 56.693 660.921 null]2185/D [634 0 R /XYZ 56.693 743.294 null]
2188>> endobj
2189134 0 obj <<
2190/D [629 0 R /XYZ 56.693 574.769 null]
2191>> endobj2186>> endobj
2192640 0 obj <<2187640 0 obj <<
2193/D [629 0 R /XYZ 56.693 537.238 null]2188/D [634 0 R /XYZ 56.693 729.745 null]
2194>> endobj2189>> endobj
2195641 0 obj <<2190641 0 obj <<
2196/D [629 0 R /XYZ 56.693 540.099 null]2191/D [634 0 R /XYZ 56.693 692.264 null]
2197>> endobj2192>> endobj
2198642 0 obj <<2193642 0 obj <<
2199/D [629 0 R /XYZ 56.693 526.55 null]2194/D [634 0 R /XYZ 56.693 695.333 null]
2200>> endobj2195>> endobj
2201643 0 obj <<2196643 0 obj <<
2202/D [629 0 R /XYZ 56.693 513.001 null]2197/D [634 0 R /XYZ 56.693 657.852 null]
2203>> endobj2198>> endobj
2204644 0 obj <<2199644 0 obj <<
2205/D [629 0 R /XYZ 56.693 499.452 null]2200/D [634 0 R /XYZ 56.693 660.921 null]
2201>> endobj
2202134 0 obj <<
2203/D [634 0 R /XYZ 56.693 574.769 null]
2206>> endobj2204>> endobj
2207645 0 obj <<2205645 0 obj <<
2208/D [629 0 R /XYZ 56.693 461.971 null]2206/D [634 0 R /XYZ 56.693 537.238 null]
2209>> endobj2207>> endobj
2210646 0 obj <<2208646 0 obj <<
2211/D [629 0 R /XYZ 56.693 465.04 null]2209/D [634 0 R /XYZ 56.693 540.099 null]
2212>> endobj2210>> endobj
2213647 0 obj <<2211647 0 obj <<
2214/D [629 0 R /XYZ 56.693 451.49 null]2212/D [634 0 R /XYZ 56.693 526.55 null]
2215>> endobj2213>> endobj
2216648 0 obj <<2214648 0 obj <<
2217/D [629 0 R /XYZ 56.693 437.941 null]2215/D [634 0 R /XYZ 56.693 513.001 null]
2218>> endobj2216>> endobj
2219649 0 obj <<2217649 0 obj <<
2220/D [629 0 R /XYZ 56.693 400.46 null]2218/D [634 0 R /XYZ 56.693 499.452 null]
2221>> endobj2219>> endobj
2222650 0 obj <<2220650 0 obj <<
2223/D [629 0 R /XYZ 56.693 403.529 null]2221/D [634 0 R /XYZ 56.693 461.971 null]
2224>> endobj2222>> endobj
2225651 0 obj <<2223651 0 obj <<
2226/D [629 0 R /XYZ 56.693 389.98 null]2224/D [634 0 R /XYZ 56.693 465.04 null]
2227>> endobj2225>> endobj
2228652 0 obj <<2226652 0 obj <<
2229/D [629 0 R /XYZ 56.693 376.431 null]2227/D [634 0 R /XYZ 56.693 451.49 null]
2230>> endobj
2231138 0 obj <<
2232/D [629 0 R /XYZ 56.693 288.572 null]
2233>> endobj2228>> endobj
2234653 0 obj <<2229653 0 obj <<
2235/D [629 0 R /XYZ 56.693 252.748 null]2230/D [634 0 R /XYZ 56.693 437.941 null]
2236>> endobj2231>> endobj
2237654 0 obj <<2232654 0 obj <<
2238/D [629 0 R /XYZ 56.693 255.609 null]2233/D [634 0 R /XYZ 56.693 400.46 null]
2239>> endobj2234>> endobj
2240655 0 obj <<2235655 0 obj <<
2241/D [629 0 R /XYZ 56.693 242.06 null]2236/D [634 0 R /XYZ 56.693 403.529 null]
2242>> endobj2237>> endobj
2243656 0 obj <<2238656 0 obj <<
2244/D [629 0 R /XYZ 56.693 228.511 null]2239/D [634 0 R /XYZ 56.693 389.98 null]
2245>> endobj2240>> endobj
2246657 0 obj <<2241657 0 obj <<
2247/D [629 0 R /XYZ 56.693 214.961 null]2242/D [634 0 R /XYZ 56.693 376.431 null]
2243>> endobj
2244138 0 obj <<
2245/D [634 0 R /XYZ 56.693 288.572 null]
2248>> endobj2246>> endobj
2249658 0 obj <<2247658 0 obj <<
2250/D [629 0 R /XYZ 56.693 201.412 null]2248/D [634 0 R /XYZ 56.693 252.748 null]
2251>> endobj2249>> endobj
2252659 0 obj <<2250659 0 obj <<
2253/D [629 0 R /XYZ 56.693 163.932 null]2251/D [634 0 R /XYZ 56.693 255.609 null]
2254>> endobj2252>> endobj
2255660 0 obj <<2253660 0 obj <<
2256/D [629 0 R /XYZ 56.693 167 null]2254/D [634 0 R /XYZ 56.693 242.06 null]
2257>> endobj2255>> endobj
2258661 0 obj <<2256661 0 obj <<
2259/D [629 0 R /XYZ 56.693 129.52 null]2257/D [634 0 R /XYZ 56.693 228.511 null]
2260>> endobj2258>> endobj
2261662 0 obj <<2259662 0 obj <<
2262/D [629 0 R /XYZ 56.693 132.588 null]2260/D [634 0 R /XYZ 56.693 214.961 null]
2263>> endobj2261>> endobj
2264628 0 obj <<2262663 0 obj <<
2265/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>2263/D [634 0 R /XYZ 56.693 201.412 null]
2266/ProcSet [ /PDF /Text ]2264>> endobj
2265664 0 obj <<
2266/D [634 0 R /XYZ 56.693 163.932 null]
2267>> endobj2267>> endobj
2268665 0 obj <<2268665 0 obj <<
2269/D [634 0 R /XYZ 56.693 167 null]
2270>> endobj
2271666 0 obj <<
2272/D [634 0 R /XYZ 56.693 129.52 null]
2273>> endobj
2274667 0 obj <<
2275/D [634 0 R /XYZ 56.693 132.588 null]
2276>> endobj
2277633 0 obj <<
2278/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2279/ProcSet [ /PDF /Text ]
2280>> endobj
2281670 0 obj <<
2269/Length 1966 2282/Length 1966
2270/Filter /FlateDecode2283/Filter /FlateDecode
2271>>2284>>
@@ -2281,81 +2294,81 @@
2281®€`ªdˆpûú…ÀE%Ü QXaÆ1aeÖÁÝA‰@-•Ym;§•Ú»9üBü/tsäçìæ�˜Xw`2294®€`ªdˆpûú…ÀE%Ü QXaÆ1aeÖÁÝA‰@-•Ym;§•Ú»9üBü/tsäçìæ�˜Xw`
2282€ÕtO@è·….öj8PýŽ†2”��ì—P‰0òâýýÂ2295€ÕtO@è·….öj8PýŽ†2”��ì—P‰0òâýýÂ
2283à¢n�(¬0M¾)d˜§ŒÑ]) $¶Eˆz*xëÍÓõnNñ*�]=ó*Ÿ¡uC°i*„("�!`8¡_¸¨T` $NoÜÀUÊê?EO¡FåvœŒl½^Úë’lJþAÝ�˃²8¬6Š+ÏƳðÔ*‚—FéÁôO$¥«™ûyžæEµ2296à¢n�(¬0M¾)d˜§ŒÑ]) $¶Eˆz*xëÍÓõnNñ*�]=ó*Ÿ¡uC°i*„("�!`8¡_¸¨T` $NoÜÀUÊê?EO¡FåvœŒl½^Úë’lJþAÝ�˃²8¬6Š+ÏƳðÔ*‚—FéÁôO$¥«™ûyžæEµ
2284¶�Y¡MÓGȪ:e(øç¾e6ÚÚŽ! KW–š¸B—2ÿ¬k”æ—ÙÊÕÔ™2U,CȽ8VÓ¼þV¸[î°£;m;F0*téŽV±Á<‡t²1Ù6™�žû�î1]¬³©>ü©A½hë•xVL]Jç¾”f¨õ&ÁFÿ3 ã�2297¶�Y¡MÓGȪ:e(øç¾e6ÚÚŽ! KW–š¸B—2ÿ¬k”æ—ÙÊÕÔ™2U,CȽ8VÓ¼þV¸[î°£;m;F0*téŽV±Á<‡t²1Ù6™�žû�î1]¬³©>ü©A½hë•xVL]Jç¾”f¨õ&ÁFÿ3 ã�
2285endstream2298endstream
2286endobj2299endobj
2287664 0 obj <<
2288/Type /Page
2289/Contents 665 0 R
2290/Resources 663 0 R
2291/MediaBox [0 0 595.276 841.89]
2292/Parent 627 0 R
2293>> endobj
2294666 0 obj <<
2295/D [664 0 R /XYZ 55.693 817.952 null]
2296>> endobj
2297142 0 obj <<
2298/D [664 0 R /XYZ 56.693 785.197 null]
2299>> endobj
2300667 0 obj <<
2301/D [664 0 R /XYZ 56.693 754.092 null]
2302>> endobj
2303668 0 obj <<
2304/D [664 0 R /XYZ 56.693 756.858 null]
2305>> endobj
2306669 0 obj <<2300669 0 obj <<
2307/D [664 0 R /XYZ 56.693 743.309 null]2301/Type /Page
2308>> endobj2302/Contents 670 0 R
2309670 0 obj <<2303/Resources 668 0 R
2310/D [664 0 R /XYZ 56.693 729.76 null]2304/MediaBox [0 0 595.276 841.89]
2305/Parent 632 0 R
2311>> endobj2306>> endobj
2312671 0 obj <<2307671 0 obj <<
2313/D [664 0 R /XYZ 56.693 692.298 null]2308/D [669 0 R /XYZ 55.693 817.952 null]
2309>> endobj
2310142 0 obj <<
2311/D [669 0 R /XYZ 56.693 785.197 null]
2314>> endobj2312>> endobj
2315672 0 obj <<2313672 0 obj <<
2316/D [664 0 R /XYZ 56.693 695.367 null]2314/D [669 0 R /XYZ 56.693 754.092 null]
2317>> endobj2315>> endobj
2318673 0 obj <<2316673 0 obj <<
2319/D [664 0 R /XYZ 56.693 657.906 null]2317/D [669 0 R /XYZ 56.693 756.858 null]
2320>> endobj2318>> endobj
2321674 0 obj <<2319674 0 obj <<
2322/D [664 0 R /XYZ 56.693 660.974 null]2320/D [669 0 R /XYZ 56.693 743.309 null]
2323>> endobj2321>> endobj
2324675 0 obj <<2322675 0 obj <<
2325/D [664 0 R /XYZ 56.693 373.575 null]2323/D [669 0 R /XYZ 56.693 729.76 null]
2326>> endobj2324>> endobj
2327676 0 obj <<2325676 0 obj <<
2328/D [664 0 R /XYZ 56.693 376.333 null]2326/D [669 0 R /XYZ 56.693 692.298 null]
2329>> endobj
2330146 0 obj <<
2331/D [664 0 R /XYZ 56.693 256.713 null]
2332>> endobj2327>> endobj
2333677 0 obj <<2328677 0 obj <<
2334/D [664 0 R /XYZ 56.693 221 null]2329/D [669 0 R /XYZ 56.693 695.367 null]
2335>> endobj2330>> endobj
2336678 0 obj <<2331678 0 obj <<
2337/D [664 0 R /XYZ 56.693 223.765 null]2332/D [669 0 R /XYZ 56.693 657.906 null]
2338>> endobj2333>> endobj
2339679 0 obj <<2334679 0 obj <<
2340/D [664 0 R /XYZ 56.693 210.216 null]2335/D [669 0 R /XYZ 56.693 660.974 null]
2341>> endobj2336>> endobj
2342680 0 obj <<2337680 0 obj <<
2343/D [664 0 R /XYZ 56.693 196.667 null]2338/D [669 0 R /XYZ 56.693 373.575 null]
2344>> endobj2339>> endobj
2345681 0 obj <<2340681 0 obj <<
2346/D [664 0 R /XYZ 56.693 159.206 null]2341/D [669 0 R /XYZ 56.693 376.333 null]
2342>> endobj
2343146 0 obj <<
2344/D [669 0 R /XYZ 56.693 256.713 null]
2347>> endobj2345>> endobj
2348682 0 obj <<2346682 0 obj <<
2349/D [664 0 R /XYZ 56.693 162.274 null]2347/D [669 0 R /XYZ 56.693 221 null]
2350>> endobj2348>> endobj
2351683 0 obj <<2349683 0 obj <<
2352/D [664 0 R /XYZ 56.693 124.813 null]2350/D [669 0 R /XYZ 56.693 223.765 null]
2353>> endobj2351>> endobj
2354684 0 obj <<2352684 0 obj <<
2355/D [664 0 R /XYZ 56.693 127.881 null]2353/D [669 0 R /XYZ 56.693 210.216 null]
2356>> endobj2354>> endobj
2357663 0 obj <<2355685 0 obj <<
2358/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>2356/D [669 0 R /XYZ 56.693 196.667 null]
2359/ProcSet [ /PDF /Text ]2357>> endobj
2358686 0 obj <<
2359/D [669 0 R /XYZ 56.693 159.206 null]
2360>> endobj
2361687 0 obj <<
2362/D [669 0 R /XYZ 56.693 162.274 null]
2360>> endobj2363>> endobj
2361688 0 obj <<2364688 0 obj <<
2365/D [669 0 R /XYZ 56.693 124.813 null]
2366>> endobj
2367689 0 obj <<
2368/D [669 0 R /XYZ 56.693 127.881 null]
2369>> endobj
2370668 0 obj <<
2371/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2372/ProcSet [ /PDF /Text ]
2373>> endobj
2374693 0 obj <<
2362/Length 2306 2375/Length 2306
2363/Filter /FlateDecode2376/Filter /FlateDecode
2364>>2377>>
@@ -2375,128 +2388,128 @@
2375›�aOÊõã)לrB™Ã” €ÀSïÌûË„4BºL@XQyîH*’³š�!—YÿÞóZ`B’\Œ‘\2388›�aOÊõã)לrB™Ã” €ÀSïÌûË„4BºL@XQyîH*’³š�!—YÿÞóZ`B’\Œ‘\
2376™ŽD8áz4DwÆŒ!¼<š=H·®Ê°Ö2389™ŽD8áz4DwÆŒ!¼<š=H·®Ê°Ö
#%¡”ýµ},áúP¡ôI9fÐ
2377Ò•!ƒ-Ä¢Ž?ÌøO²8&ôÒéÐCXQzýX*ÒyMI¢8Š\eˆa(rÓirV”䢨(È”ÈoFÆctK×2390Ò•!ƒ-Ä¢Ž?ÌøO²8&ôÒéÐCXQzýX*ÒyMI¢8Š\eˆa(rÓirV”䢨(È”ÈoFÆctK×
2378ª)Z~32TºîMf\[(©ôãŠ×Œûw<¸ÌxŒ2391ª)Z~32TºîMf\[(©ôãŠ×Œûw<¸ÌxŒ
2379ýNuµ©ýîŸm۬딀ßDNdB[ êÛ�ÀQß&2392ýNuµ©ýîŸm۬딀ßDNdB[ êÛ�ÀQß&
2380@H+Šj}GR1\ëf¾x÷´nn¢ ÍuÔëŠk…Ø]¿W‰Ýp±)vÃͱ›3Bµ@‹ÝJÒ(vû±Kõtퟯ?Î?•íp‹Ï‚3{E9"üÐœ‘©ÍHÇ“j6ã�¦´sAÖ.ƒãÃÝr_*ý4ŒZ~fW´XøàMÕò2393@H+Šj}GR1\ëf¾x÷´nn¢ ÍuÔëŠk…Ø]¿W‰Ýp±)vÃͱ›3Bµ@‹ÝJÒ(vû±Kõtퟯ?Î?•íp‹Ï‚3{E9"üÐœ‘©ÍHÇ“j6ã�¦´sAÖ.ƒãÃÝr_*ý4ŒZ~fW´XøàMÕò
23816Ý/!•\†‹‹íÍívãÏaÅŸ¥0O£0O§³Bug¼P”ýÓ†Ö^4´23946Ý/!•\†‹‹íÍívãÏaÅŸ¥0O£0O§³Bug¼P”ýÓ†Ö^4´
2382OÃO”×}ó ã[ön›¿¯tôÚÁ¬ÝªÔ§ƒi¾õ.ŠÑ³'õ½TßïÙíOZóJ2395OÃO”×}ó ã[ön›¿¯tôÚÁ¬ÝªÔ§ƒi¾õ.ŠÑ³'õ½TßïÙíOZóJ
23832396
2384endstream2397endstream
2385endobj2398endobj
2386687 0 obj <<2399692 0 obj <<
2387/Type /Page2400/Type /Page
2388/Contents 688 0 R2401/Contents 693 0 R
2389/Resources 686 0 R2402/Resources 691 0 R
2390/MediaBox [0 0 595.276 841.89]2403/MediaBox [0 0 595.276 841.89]
2391/Parent 627 0 R2404/Parent 632 0 R
2392/Annots [ 685 0 R ]2405/Annots [ 690 0 R ]
2393>> endobj2406>> endobj
2394685 0 obj <<2407690 0 obj <<
2395/Type /Annot2408/Type /Annot
2396/Subtype /Link2409/Subtype /Link
2397/Border[0 0 0]/H/I/C[1 0 0]2410/Border[0 0 0]/H/I/C[1 0 0]
2398/Rect [115.99 582.156 139.801 591.773]2411/Rect [115.99 582.156 139.801 591.773]
2399/A << /S /GoTo /D (subsection.3.6.2) >>2412/A << /S /GoTo /D (subsection.3.6.2) >>
2400>> endobj2413>> endobj
2401689 0 obj <<2414694 0 obj <<
2402/D [687 0 R /XYZ 55.693 817.952 null]2415/D [692 0 R /XYZ 55.693 817.952 null]
2403>> endobj2416>> endobj
2404150 0 obj <<2417150 0 obj <<
2405/D [687 0 R /XYZ 56.693 785.197 null]2418/D [692 0 R /XYZ 56.693 785.197 null]
2406>> endobj
2407690 0 obj <<
2408/D [687 0 R /XYZ 56.693 755.644 null]
2409>> endobj
2410691 0 obj <<
2411/D [687 0 R /XYZ 56.693 758.506 null]
2412>> endobj
2413692 0 obj <<
2414/D [687 0 R /XYZ 56.693 744.956 null]
2415>> endobj
2416693 0 obj <<
2417/D [687 0 R /XYZ 56.693 731.407 null]
2418>> endobj
2419694 0 obj <<
2420/D [687 0 R /XYZ 56.693 717.858 null]
2421>> endobj2419>> endobj
2422695 0 obj <<2420695 0 obj <<
2423/D [687 0 R /XYZ 56.693 682.574 null]2421/D [692 0 R /XYZ 56.693 755.644 null]
2424>> endobj2422>> endobj
2425696 0 obj <<2423696 0 obj <<
2426/D [687 0 R /XYZ 56.693 685.642 null]2424/D [692 0 R /XYZ 56.693 758.506 null]
2427>> endobj2425>> endobj
2428697 0 obj <<2426697 0 obj <<
2429/D [687 0 R /XYZ 56.693 650.358 null]2427/D [692 0 R /XYZ 56.693 744.956 null]
2430>> endobj2428>> endobj
2431698 0 obj <<2429698 0 obj <<
2432/D [687 0 R /XYZ 56.693 653.426 null]2430/D [692 0 R /XYZ 56.693 731.407 null]
2433>> endobj2431>> endobj
2434699 0 obj <<2432699 0 obj <<
2435/D [687 0 R /XYZ 56.693 639.877 null]2433/D [692 0 R /XYZ 56.693 717.858 null]
2436>> endobj
2437154 0 obj <<
2438/D [687 0 R /XYZ 56.693 542.387 null]
2439>> endobj2434>> endobj
2440700 0 obj <<2435700 0 obj <<
2441/D [687 0 R /XYZ 56.693 508.321 null]2436/D [692 0 R /XYZ 56.693 682.574 null]
2442>> endobj2437>> endobj
2443701 0 obj <<2438701 0 obj <<
2444/D [687 0 R /XYZ 56.693 511.086 null]2439/D [692 0 R /XYZ 56.693 685.642 null]
2445>> endobj2440>> endobj
2446702 0 obj <<2441702 0 obj <<
2447/D [687 0 R /XYZ 56.693 497.537 null]2442/D [692 0 R /XYZ 56.693 650.358 null]
2448>> endobj2443>> endobj
2449703 0 obj <<2444703 0 obj <<
2450/D [687 0 R /XYZ 56.693 483.988 null]2445/D [692 0 R /XYZ 56.693 653.426 null]
2451>> endobj2446>> endobj
2452704 0 obj <<2447704 0 obj <<
2453/D [687 0 R /XYZ 56.693 470.439 null]2448/D [692 0 R /XYZ 56.693 639.877 null]
2449>> endobj
2450154 0 obj <<
2451/D [692 0 R /XYZ 56.693 542.387 null]
2454>> endobj2452>> endobj
2455705 0 obj <<2453705 0 obj <<
2456/D [687 0 R /XYZ 56.693 435.155 null]2454/D [692 0 R /XYZ 56.693 508.321 null]
2457>> endobj2455>> endobj
2458706 0 obj <<2456706 0 obj <<
2459/D [687 0 R /XYZ 56.693 438.223 null]2457/D [692 0 R /XYZ 56.693 511.086 null]
2460>> endobj2458>> endobj
2461707 0 obj <<2459707 0 obj <<
2462/D [687 0 R /XYZ 56.693 402.939 null]2460/D [692 0 R /XYZ 56.693 497.537 null]
2463>> endobj2461>> endobj
2464708 0 obj <<2462708 0 obj <<
2465/D [687 0 R /XYZ 56.693 406.007 null]2463/D [692 0 R /XYZ 56.693 483.988 null]
2466>> endobj2464>> endobj
2467709 0 obj <<2465709 0 obj <<
2468/D [687 0 R /XYZ 56.693 392.458 null]2466/D [692 0 R /XYZ 56.693 470.439 null]
2469>> endobj
2470158 0 obj <<
2471/D [687 0 R /XYZ 56.693 294.968 null]
2472>> endobj2467>> endobj
2473710 0 obj <<2468710 0 obj <<
2474/D [687 0 R /XYZ 56.693 260.902 null]2469/D [692 0 R /XYZ 56.693 435.155 null]
2475>> endobj2470>> endobj
2476711 0 obj <<2471711 0 obj <<
2477/D [687 0 R /XYZ 56.693 263.667 null]2472/D [692 0 R /XYZ 56.693 438.223 null]
2478>> endobj2473>> endobj
2479712 0 obj <<2474712 0 obj <<
2480/D [687 0 R /XYZ 56.693 250.118 null]2475/D [692 0 R /XYZ 56.693 402.939 null]
2481>> endobj2476>> endobj
2482713 0 obj <<2477713 0 obj <<
2483/D [687 0 R /XYZ 56.693 236.569 null]2478/D [692 0 R /XYZ 56.693 406.007 null]
2484>> endobj2479>> endobj
2485714 0 obj <<2480714 0 obj <<
2486/D [687 0 R /XYZ 56.693 223.02 null]2481/D [692 0 R /XYZ 56.693 392.458 null]
2482>> endobj
2483158 0 obj <<
2484/D [692 0 R /XYZ 56.693 294.968 null]
2487>> endobj2485>> endobj
2488715 0 obj <<2486715 0 obj <<
2489/D [687 0 R /XYZ 56.693 187.736 null]2487/D [692 0 R /XYZ 56.693 260.902 null]
2490>> endobj2488>> endobj
2491716 0 obj <<2489716 0 obj <<
2492/D [687 0 R /XYZ 56.693 190.804 null]2490/D [692 0 R /XYZ 56.693 263.667 null]
2493>> endobj2491>> endobj
2494717 0 obj <<2492717 0 obj <<
2495/D [687 0 R /XYZ 56.693 155.52 null]2493/D [692 0 R /XYZ 56.693 250.118 null]
2496>> endobj2494>> endobj
2497718 0 obj <<2495718 0 obj <<
2498/D [687 0 R /XYZ 56.693 158.588 null]2496/D [692 0 R /XYZ 56.693 236.569 null]
2499>> endobj2497>> endobj
2500719 0 obj <<2498719 0 obj <<
2501/D [687 0 R /XYZ 56.693 145.039 null]2499/D [692 0 R /XYZ 56.693 223.02 null]
2502>> endobj2500>> endobj
2503686 0 obj <<2501720 0 obj <<
2504/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>2502/D [692 0 R /XYZ 56.693 187.736 null]
2505/ProcSet [ /PDF /Text ]2503>> endobj
2504721 0 obj <<
2505/D [692 0 R /XYZ 56.693 190.804 null]
2506>> endobj
2507722 0 obj <<
2508/D [692 0 R /XYZ 56.693 155.52 null]
2506>> endobj2509>> endobj
2507723 0 obj <<2510723 0 obj <<
2511/D [692 0 R /XYZ 56.693 158.588 null]
2512>> endobj
2513724 0 obj <<
2514/D [692 0 R /XYZ 56.693 145.039 null]
2515>> endobj
2516691 0 obj <<
2517/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2518/ProcSet [ /PDF /Text ]
2519>> endobj
2520728 0 obj <<
2508/Length 2753 2521/Length 2753
2509/Filter /FlateDecode2522/Filter /FlateDecode
2510>>2523>>
@@ -2514,101 +2527,101 @@
2514¹ÕFFKD€&ÔÄ2527¹ÕFFKD€&ÔÄ
2515J%˜Ãø"¸dQîo–¯ÝN\Ø”‰æ±ûl’Gרª‚Ìo…ûºœ4òýv»Nm2528J%˜Ãø"¸dQîo–¯ÝN\Ø”‰æ±ûl’Gרª‚Ìo…ûºœ4òýv»Nm
2516þ37ƒ²ú‡(óÖ2529þ37ƒ²ú‡(óÖ
2517]'µÊÊís’i,÷>a°1 Û•ü;ÍÍÛcr¾lsÚ¦Û‘w1ªü˜þ)uq»ø¦u“†PšÊÆcÓ»÷ïÎG½3=K¯’Vjä�¿È{�¡;1 Õäêügû2530]'µÊÊís’i,÷>a°1 Û•ü;ÍÍÛcr¾lsÚ¦Û‘w1ªü˜þ)uq»ø¦u“†PšÊÆcÓ»÷ïÎG½3=K¯’Vjä�¿È{�¡;1 Õäêügû
2518öó·ïÞ¾û~ƒ&Þ¨qˆ:'�Aþãט=2531öó·ïÞ¾û~ƒ&Þ¨qˆ:'�Aþãט=
2519endstream2532endstream
2520endobj2533endobj
2521722 0 obj <<2534727 0 obj <<
2522/Type /Page2535/Type /Page
2523/Contents 723 0 R2536/Contents 728 0 R
2524/Resources 721 0 R2537/Resources 726 0 R
2525/MediaBox [0 0 595.276 841.89]2538/MediaBox [0 0 595.276 841.89]
2526/Parent 627 0 R2539/Parent 632 0 R
2527/Annots [ 720 0 R ]2540/Annots [ 725 0 R ]
2528>> endobj2541>> endobj
2529720 0 obj <<2542725 0 obj <<
2530/Type /Annot2543/Type /Annot
2531/Subtype /Link2544/Subtype /Link
2532/Border[0 0 0]/H/I/C[1 0 0]2545/Border[0 0 0]/H/I/C[1 0 0]
2533/Rect [134.525 297.963 158.336 310.248]2546/Rect [134.525 297.963 158.336 310.248]
2534/A << /S /GoTo /D (subsection.3.5.1) >>2547/A << /S /GoTo /D (subsection.3.5.1) >>
2535>> endobj2548>> endobj
2536724 0 obj <<2549729 0 obj <<
2537/D [722 0 R /XYZ 55.693 817.952 null]2550/D [727 0 R /XYZ 55.693 817.952 null]
2538>> endobj2551>> endobj
2539162 0 obj <<2552162 0 obj <<
2540/D [722 0 R /XYZ 56.693 785.197 null]2553/D [727 0 R /XYZ 56.693 785.197 null]
2541>> endobj
2542725 0 obj <<
2543/D [722 0 R /XYZ 56.693 756.472 null]
2544>> endobj
2545726 0 obj <<
2546/D [722 0 R /XYZ 56.693 759.333 null]
2547>> endobj
2548727 0 obj <<
2549/D [722 0 R /XYZ 56.693 745.784 null]
2550>> endobj
2551728 0 obj <<
2552/D [722 0 R /XYZ 56.693 732.234 null]
2553>> endobj
2554729 0 obj <<
2555/D [722 0 R /XYZ 56.693 718.685 null]
2556>> endobj2554>> endobj
2557730 0 obj <<2555730 0 obj <<
2558/D [722 0 R /XYZ 56.693 705.136 null]2556/D [727 0 R /XYZ 56.693 756.472 null]
2559>> endobj2557>> endobj
2560731 0 obj <<2558731 0 obj <<
2561/D [722 0 R /XYZ 56.693 670.945 null]2559/D [727 0 R /XYZ 56.693 759.333 null]
2562>> endobj2560>> endobj
2563732 0 obj <<2561732 0 obj <<
2564/D [722 0 R /XYZ 56.693 674.013 null]2562/D [727 0 R /XYZ 56.693 745.784 null]
2565>> endobj2563>> endobj
2566733 0 obj <<2564733 0 obj <<
2567/D [722 0 R /XYZ 56.693 639.822 null]2565/D [727 0 R /XYZ 56.693 732.234 null]
2568>> endobj2566>> endobj
2569734 0 obj <<2567734 0 obj <<
2570/D [722 0 R /XYZ 56.693 642.891 null]2568/D [727 0 R /XYZ 56.693 718.685 null]
2571>> endobj2569>> endobj
2572735 0 obj <<2570735 0 obj <<
2573/D [722 0 R /XYZ 56.693 629.341 null]2571/D [727 0 R /XYZ 56.693 705.136 null]
2574>> endobj2572>> endobj
2575736 0 obj <<2573736 0 obj <<
2576/D [722 0 R /XYZ 56.693 615.792 null]2574/D [727 0 R /XYZ 56.693 670.945 null]
2577>> endobj2575>> endobj
2578737 0 obj <<2576737 0 obj <<
2579/D [722 0 R /XYZ 56.693 602.243 null]2577/D [727 0 R /XYZ 56.693 674.013 null]
2580>> endobj2578>> endobj
2581738 0 obj <<2579738 0 obj <<
2582/D [722 0 R /XYZ 56.693 588.694 null]2580/D [727 0 R /XYZ 56.693 639.822 null]
2583>> endobj
2584166 0 obj <<
2585/D [722 0 R /XYZ 56.693 232.514 null]
2586>> endobj2581>> endobj
2587739 0 obj <<2582739 0 obj <<
2588/D [722 0 R /XYZ 56.693 199.275 null]2583/D [727 0 R /XYZ 56.693 642.891 null]
2589>> endobj2584>> endobj
2590740 0 obj <<2585740 0 obj <<
2591/D [722 0 R /XYZ 56.693 202.041 null]2586/D [727 0 R /XYZ 56.693 629.341 null]
2592>> endobj2587>> endobj
2593741 0 obj <<2588741 0 obj <<
2594/D [722 0 R /XYZ 56.693 188.492 null]2589/D [727 0 R /XYZ 56.693 615.792 null]
2595>> endobj2590>> endobj
2596742 0 obj <<2591742 0 obj <<
2597/D [722 0 R /XYZ 56.693 174.943 null]2592/D [727 0 R /XYZ 56.693 602.243 null]
2598>> endobj2593>> endobj
2599743 0 obj <<2594743 0 obj <<
2600/D [722 0 R /XYZ 56.693 140.751 null]2595/D [727 0 R /XYZ 56.693 588.694 null]
2596>> endobj
2597166 0 obj <<
2598/D [727 0 R /XYZ 56.693 232.514 null]
2601>> endobj2599>> endobj
2602744 0 obj <<2600744 0 obj <<
2603/D [722 0 R /XYZ 56.693 143.82 null]2601/D [727 0 R /XYZ 56.693 199.275 null]
2604>> endobj2602>> endobj
2605745 0 obj <<2603745 0 obj <<
2606/D [722 0 R /XYZ 56.693 109.629 null]2604/D [727 0 R /XYZ 56.693 202.041 null]
2607>> endobj2605>> endobj
2608746 0 obj <<2606746 0 obj <<
2609/D [722 0 R /XYZ 56.693 112.697 null]2607/D [727 0 R /XYZ 56.693 188.492 null]
2610>> endobj2608>> endobj
2611721 0 obj <<2609747 0 obj <<
2612/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F36 453 0 R >>2610/D [727 0 R /XYZ 56.693 174.943 null]
2611>> endobj
2612748 0 obj <<
2613/D [727 0 R /XYZ 56.693 140.751 null]
2614>> endobj
2615749 0 obj <<
2616/D [727 0 R /XYZ 56.693 143.82 null]
2617>> endobj
2618750 0 obj <<
2619/D [727 0 R /XYZ 56.693 109.629 null]
2620>> endobj
2621751 0 obj <<
2622/D [727 0 R /XYZ 56.693 112.697 null]
2623>> endobj
2624726 0 obj <<
2625/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F36 458 0 R >>
2613/ProcSet [ /PDF /Text ]2626/ProcSet [ /PDF /Text ]
2614>> endobj2627>> endobj
2615753 0 obj <<2628758 0 obj <<
2616/Length 2291 2629/Length 2291
2617/Filter /FlateDecode2630/Filter /FlateDecode
2618>>2631>>
@@ -2624,122 +2637,122 @@
2624gìÃs‹ Ç“‹!-ø]g£¥s6ð´FWû|Æó>ðÒú2637gìÃs‹ Ç“‹!-ø]g£¥s6ð´FWû|Æó>ðÒú
2625h×üB9Ä_g2638h×üB9Ä_g
2626o¹ÞlWÞŸX¨’RˉÆÐJ)hM©ÆJ2639o¹ÞlWÞŸX¨’RˉÆÐJ)hM©ÆJ
2627¥ÜyÄ$„¸i�ÛH©68'2640¥ÜyÄ$„¸i�ÛH©68'
2628J]Íç/¯®ç‹§Wϼþn2641J]Íç/¯®ç‹§Wϼþn
2629µR‘52642µR‘5
2630S«|BDýâu¿{2643S«|BDýâu¿{
2631endstream2644endstream
2632endobj2645endobj
2646757 0 obj <<
2647/Type /Page
2648/Contents 758 0 R
2649/Resources 756 0 R
2650/MediaBox [0 0 595.276 841.89]
2651/Parent 632 0 R
2652/Annots [ 752 0 R 753 0 R 754 0 R 755 0 R ]
2653>> endobj
2633752 0 obj <<2654752 0 obj <<
2634/Type /Page
2635/Contents 753 0 R
2636/Resources 751 0 R
2637/MediaBox [0 0 595.276 841.89]
2638/Parent 627 0 R
2639/Annots [ 747 0 R 748 0 R 749 0 R 750 0 R ]
2640>> endobj
2641747 0 obj <<
2642/Type /Annot2655/Type /Annot
2643/Subtype /Link2656/Subtype /Link
2644/Border[0 0 0]/H/I/C[1 0 0]2657/Border[0 0 0]/H/I/C[1 0 0]
2645/Rect [99.507 560.05 128.772 570.164]2658/Rect [99.507 560.05 128.772 570.164]
2646/A << /S /GoTo /D (subsection.3.5.13) >>2659/A << /S /GoTo /D (subsection.3.5.13) >>
2647>> endobj2660>> endobj
2648748 0 obj <<2661753 0 obj <<
2649/Type /Annot2662/Type /Annot
2650/Subtype /Link2663/Subtype /Link
2651/Border[0 0 0]/H/I/C[1 0 0]2664/Border[0 0 0]/H/I/C[1 0 0]
2652/Rect [268.116 494.424 291.927 507.44]2665/Rect [268.116 494.424 291.927 507.44]
2653/A << /S /GoTo /D (subsection.3.5.1) >>2666/A << /S /GoTo /D (subsection.3.5.1) >>
2654>> endobj2667>> endobj
2655749 0 obj <<2668754 0 obj <<
2656/Type /Annot2669/Type /Annot
2657/Subtype /Link2670/Subtype /Link
2658/Border[0 0 0]/H/I/C[1 0 0]2671/Border[0 0 0]/H/I/C[1 0 0]
2659/Rect [161.561 212.302 190.826 225.318]2672/Rect [161.561 212.302 190.826 225.318]
2660/A << /S /GoTo /D (subsection.3.5.15) >>2673/A << /S /GoTo /D (subsection.3.5.15) >>
2661>> endobj2674>> endobj
2662750 0 obj <<2675755 0 obj <<
2663/Type /Annot2676/Type /Annot
2664/Subtype /Link2677/Subtype /Link
2665/Border[0 0 0]/H/I/C[1 0 0]2678/Border[0 0 0]/H/I/C[1 0 0]
2666/Rect [268.116 136.029 291.927 149.045]2679/Rect [268.116 136.029 291.927 149.045]
2667/A << /S /GoTo /D (subsection.3.5.1) >>2680/A << /S /GoTo /D (subsection.3.5.1) >>
2668>> endobj2681>> endobj
2669754 0 obj <<2682759 0 obj <<
2670/D [752 0 R /XYZ 55.693 817.952 null]2683/D [757 0 R /XYZ 55.693 817.952 null]
2671>> endobj2684>> endobj
2672170 0 obj <<2685170 0 obj <<
2673/D [752 0 R /XYZ 56.693 785.197 null]2686/D [757 0 R /XYZ 56.693 785.197 null]
2674>> endobj
2675755 0 obj <<
2676/D [752 0 R /XYZ 56.693 753.752 null]
2677>> endobj
2678756 0 obj <<
2679/D [752 0 R /XYZ 56.693 756.517 null]
2680>> endobj
2681757 0 obj <<
2682/D [752 0 R /XYZ 56.693 742.968 null]
2683>> endobj
2684758 0 obj <<
2685/D [752 0 R /XYZ 56.693 729.419 null]
2686>> endobj
2687759 0 obj <<
2688/D [752 0 R /XYZ 56.693 715.87 null]
2689>> endobj2687>> endobj
2690760 0 obj <<2688760 0 obj <<
2691/D [752 0 R /XYZ 56.693 677.958 null]2689/D [757 0 R /XYZ 56.693 753.752 null]
2692>> endobj2690>> endobj
2693761 0 obj <<2691761 0 obj <<
2694/D [752 0 R /XYZ 56.693 681.027 null]2692/D [757 0 R /XYZ 56.693 756.517 null]
2695>> endobj2693>> endobj
2696762 0 obj <<2694762 0 obj <<
2697/D [752 0 R /XYZ 56.693 667.478 null]2695/D [757 0 R /XYZ 56.693 742.968 null]
2698>> endobj2696>> endobj
2699763 0 obj <<2697763 0 obj <<
2700/D [752 0 R /XYZ 56.693 629.566 null]2698/D [757 0 R /XYZ 56.693 729.419 null]
2701>> endobj2699>> endobj
2702764 0 obj <<2700764 0 obj <<
2703/D [752 0 R /XYZ 56.693 632.635 null]2701/D [757 0 R /XYZ 56.693 715.87 null]
2704>> endobj2702>> endobj
2705765 0 obj <<2703765 0 obj <<
2706/D [752 0 R /XYZ 56.693 619.085 null]2704/D [757 0 R /XYZ 56.693 677.958 null]
2707>> endobj
2708174 0 obj <<
2709/D [752 0 R /XYZ 56.693 433.118 null]
2710>> endobj2705>> endobj
2711766 0 obj <<2706766 0 obj <<
2712/D [752 0 R /XYZ 56.693 395.356 null]2707/D [757 0 R /XYZ 56.693 681.027 null]
2713>> endobj2708>> endobj
2714767 0 obj <<2709767 0 obj <<
2715/D [752 0 R /XYZ 56.693 398.122 null]2710/D [757 0 R /XYZ 56.693 667.478 null]
2716>> endobj2711>> endobj
2717768 0 obj <<2712768 0 obj <<
2718/D [752 0 R /XYZ 56.693 384.573 null]2713/D [757 0 R /XYZ 56.693 629.566 null]
2719>> endobj2714>> endobj
2720769 0 obj <<2715769 0 obj <<
2721/D [752 0 R /XYZ 56.693 371.024 null]2716/D [757 0 R /XYZ 56.693 632.635 null]
2722>> endobj2717>> endobj
2723770 0 obj <<2718770 0 obj <<
2724/D [752 0 R /XYZ 56.693 357.475 null]2719/D [757 0 R /XYZ 56.693 619.085 null]
2720>> endobj
2721174 0 obj <<
2722/D [757 0 R /XYZ 56.693 433.118 null]
2725>> endobj2723>> endobj
2726771 0 obj <<2724771 0 obj <<
2727/D [752 0 R /XYZ 56.693 319.563 null]2725/D [757 0 R /XYZ 56.693 395.356 null]
2728>> endobj2726>> endobj
2729772 0 obj <<2727772 0 obj <<
2730/D [752 0 R /XYZ 56.693 322.632 null]2728/D [757 0 R /XYZ 56.693 398.122 null]
2731>> endobj2729>> endobj
2732773 0 obj <<2730773 0 obj <<
2733/D [752 0 R /XYZ 56.693 309.082 null]2731/D [757 0 R /XYZ 56.693 384.573 null]
2734>> endobj2732>> endobj
2735774 0 obj <<2733774 0 obj <<
2736/D [752 0 R /XYZ 56.693 271.171 null]2734/D [757 0 R /XYZ 56.693 371.024 null]
2737>> endobj2735>> endobj
2738775 0 obj <<2736775 0 obj <<
2739/D [752 0 R /XYZ 56.693 274.239 null]2737/D [757 0 R /XYZ 56.693 357.475 null]
2740>> endobj2738>> endobj
2741776 0 obj <<2739776 0 obj <<
2742/D [752 0 R /XYZ 56.693 260.69 null]2740/D [757 0 R /XYZ 56.693 319.563 null]
2743>> endobj2741>> endobj
2744751 0 obj <<2742777 0 obj <<
2745/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F36 453 0 R >>2743/D [757 0 R /XYZ 56.693 322.632 null]
2746/ProcSet [ /PDF /Text ]2744>> endobj
2745778 0 obj <<
2746/D [757 0 R /XYZ 56.693 309.082 null]
2747>> endobj2747>> endobj
2748779 0 obj <<2748779 0 obj <<
2749/D [757 0 R /XYZ 56.693 271.171 null]
2750>> endobj
2751780 0 obj <<
2752/D [757 0 R /XYZ 56.693 274.239 null]
2753>> endobj
2754781 0 obj <<
2755/D [757 0 R /XYZ 56.693 260.69 null]
2756>> endobj
2757756 0 obj <<
2758/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F36 458 0 R >>
2759/ProcSet [ /PDF /Text ]
2760>> endobj
2761784 0 obj <<
2749/Length 2141 2762/Length 2141
2750/Filter /FlateDecode2763/Filter /FlateDecode
2751>>2764>>
@@ -2757,129 +2770,129 @@
2757öáNJ¨æK×ÌÕ¤ôÉØûTša¾dšã0Ow@H*E”2ŽŠ@¦”a0¥;£¿ïeÒV?�˜cxµÆR¾öµ|o)d’B¦b¾ýñÖ`Lói2770öáNJ¨æK×ÌÕ¤ôÉØûTša¾dšã0Ow@H*E”2ŽŠ@¦”a0¥;£¿ïeÒV?�˜cxµÆR¾öµ|o)d’B¦b¾ýñÖ`Lói
2758!¢hV/“Šdoå+„@ý2771!¢hV/“Šdoå+„@ý
2759Â?@®4ŠÜ4Bš\D5¹(*™ŒË5.A³1ö$(ƒ²ï¯ø¤û°˜M;[oÙÖÉ43?©#2åóí—u¡mCH(��–"Šzñr©H槃þG"¨u–Ža62772Â?@®4ŠÜ4Bš\D5¹(*™ŒË5.A³1ö$(ƒ²ï¯ø¤û°˜M;[oÙÖÉ43?©#2åóí—u¡mCH(��–"Šzñr©H槃þG"¨u–Ža6
2760�$CäÂg"TŽ¡ò2¢?--2773�$CäÂg"TŽ¡ò2¢?--
2761R”�•�q[2774R”�•�q[
2762€òÒÒXh1Ž#HŠyH(2775€òÒÒXh1Ž#HŠyH(
2763�þ…÷íc¨=ŸIÃðD| 2776�þ…÷íc¨=ŸIÃðD|
2764ôÂ/2777ôÂ/
2765âQ7ÿë2778âQ7ÿë
2766œ%.¿â‘zªå͆2779œ%.¿â‘zªå͆
2767�£‡/×ååM<b\Ö?q›–oo®®àlI:¸Úø\þ¾2780�£‡/×ååM<b\Ö?q›–oo®®àlI:¸Úø\þ¾
2768endstream2781endstream
2769endobj2782endobj
2770778 0 obj <<
2771/Type /Page
2772/Contents 779 0 R
2773/Resources 777 0 R
2774/MediaBox [0 0 595.276 841.89]
2775/Parent 813 0 R
2776>> endobj
2777780 0 obj <<
2778/D [778 0 R /XYZ 55.693 817.952 null]
2779>> endobj
2780178 0 obj <<
2781/D [778 0 R /XYZ 56.693 785.197 null]
2782>> endobj
2783781 0 obj <<
2784/D [778 0 R /XYZ 56.693 756.482 null]
2785>> endobj
2786782 0 obj <<
2787/D [778 0 R /XYZ 56.693 759.247 null]
2788>> endobj
2789783 0 obj <<2783783 0 obj <<
2790/D [778 0 R /XYZ 56.693 745.698 null]2784/Type /Page
2791>> endobj2785/Contents 784 0 R
2792784 0 obj <<2786/Resources 782 0 R
2793/D [778 0 R /XYZ 56.693 732.149 null]2787/MediaBox [0 0 595.276 841.89]
2788/Parent 818 0 R
2794>> endobj2789>> endobj
2795785 0 obj <<2790785 0 obj <<
2796/D [778 0 R /XYZ 56.693 697.844 null]2791/D [783 0 R /XYZ 55.693 817.952 null]
2792>> endobj
2793178 0 obj <<
2794/D [783 0 R /XYZ 56.693 785.197 null]
2797>> endobj2795>> endobj
2798786 0 obj <<2796786 0 obj <<
2799/D [778 0 R /XYZ 56.693 700.913 null]2797/D [783 0 R /XYZ 56.693 756.482 null]
2800>> endobj2798>> endobj
2801787 0 obj <<2799787 0 obj <<
2802/D [778 0 R /XYZ 56.693 666.609 null]2800/D [783 0 R /XYZ 56.693 759.247 null]
2803>> endobj2801>> endobj
2804788 0 obj <<2802788 0 obj <<
2805/D [778 0 R /XYZ 56.693 669.677 null]2803/D [783 0 R /XYZ 56.693 745.698 null]
2806>> endobj
2807182 0 obj <<
2808/D [778 0 R /XYZ 56.693 587.485 null]
2809>> endobj2804>> endobj
2810789 0 obj <<2805789 0 obj <<
2811/D [778 0 R /XYZ 56.693 554.16 null]2806/D [783 0 R /XYZ 56.693 732.149 null]
2812>> endobj2807>> endobj
2813790 0 obj <<2808790 0 obj <<
2814/D [778 0 R /XYZ 56.693 556.925 null]2809/D [783 0 R /XYZ 56.693 697.844 null]
2815>> endobj2810>> endobj
2816791 0 obj <<2811791 0 obj <<
2817/D [778 0 R /XYZ 56.693 543.376 null]2812/D [783 0 R /XYZ 56.693 700.913 null]
2818>> endobj2813>> endobj
2819792 0 obj <<2814792 0 obj <<
2820/D [778 0 R /XYZ 56.693 529.827 null]2815/D [783 0 R /XYZ 56.693 666.609 null]
2821>> endobj2816>> endobj
2822793 0 obj <<2817793 0 obj <<
2823/D [778 0 R /XYZ 56.693 516.278 null]2818/D [783 0 R /XYZ 56.693 669.677 null]
2819>> endobj
2820182 0 obj <<
2821/D [783 0 R /XYZ 56.693 587.485 null]
2824>> endobj2822>> endobj
2825794 0 obj <<2823794 0 obj <<
2826/D [778 0 R /XYZ 56.693 481.974 null]2824/D [783 0 R /XYZ 56.693 554.16 null]
2827>> endobj2825>> endobj
2828795 0 obj <<2826795 0 obj <<
2829/D [778 0 R /XYZ 56.693 485.042 null]2827/D [783 0 R /XYZ 56.693 556.925 null]
2830>> endobj2828>> endobj
2831796 0 obj <<2829796 0 obj <<
2832/D [778 0 R /XYZ 56.693 450.738 null]2830/D [783 0 R /XYZ 56.693 543.376 null]
2833>> endobj2831>> endobj
2834797 0 obj <<2832797 0 obj <<
2835/D [778 0 R /XYZ 56.693 453.806 null]2833/D [783 0 R /XYZ 56.693 529.827 null]
2836>> endobj
2837186 0 obj <<
2838/D [778 0 R /XYZ 56.693 389.86 null]
2839>> endobj2834>> endobj
2840798 0 obj <<2835798 0 obj <<
2841/D [778 0 R /XYZ 56.693 356.44 null]2836/D [783 0 R /XYZ 56.693 516.278 null]
2842>> endobj2837>> endobj
2843799 0 obj <<2838799 0 obj <<
2844/D [778 0 R /XYZ 56.693 359.301 null]2839/D [783 0 R /XYZ 56.693 481.974 null]
2845>> endobj2840>> endobj
2846800 0 obj <<2841800 0 obj <<
2847/D [778 0 R /XYZ 56.693 345.752 null]2842/D [783 0 R /XYZ 56.693 485.042 null]
2848>> endobj2843>> endobj
2849801 0 obj <<2844801 0 obj <<
2850/D [778 0 R /XYZ 56.693 332.202 null]2845/D [783 0 R /XYZ 56.693 450.738 null]
2851>> endobj2846>> endobj
2852802 0 obj <<2847802 0 obj <<
2853/D [778 0 R /XYZ 56.693 318.653 null]2848/D [783 0 R /XYZ 56.693 453.806 null]
2849>> endobj
2850186 0 obj <<
2851/D [783 0 R /XYZ 56.693 389.86 null]
2854>> endobj2852>> endobj
2855803 0 obj <<2853803 0 obj <<
2856/D [778 0 R /XYZ 56.693 284.349 null]2854/D [783 0 R /XYZ 56.693 356.44 null]
2857>> endobj2855>> endobj
2858804 0 obj <<2856804 0 obj <<
2859/D [778 0 R /XYZ 56.693 287.417 null]2857/D [783 0 R /XYZ 56.693 359.301 null]
2860>> endobj2858>> endobj
2861805 0 obj <<2859805 0 obj <<
2862/D [778 0 R /XYZ 56.693 253.113 null]2860/D [783 0 R /XYZ 56.693 345.752 null]
2863>> endobj2861>> endobj
2864806 0 obj <<2862806 0 obj <<
2865/D [778 0 R /XYZ 56.693 256.182 null]2863/D [783 0 R /XYZ 56.693 332.202 null]
2866>> endobj
2867190 0 obj <<
2868/D [778 0 R /XYZ 56.693 192.235 null]
2869>> endobj2864>> endobj
2870807 0 obj <<2865807 0 obj <<
2871/D [778 0 R /XYZ 56.693 158.911 null]2866/D [783 0 R /XYZ 56.693 318.653 null]
2872>> endobj2867>> endobj
2873808 0 obj <<2868808 0 obj <<
2874/D [778 0 R /XYZ 56.693 161.676 null]2869/D [783 0 R /XYZ 56.693 284.349 null]
2875>> endobj2870>> endobj
2876809 0 obj <<2871809 0 obj <<
2877/D [778 0 R /XYZ 56.693 127.372 null]2872/D [783 0 R /XYZ 56.693 287.417 null]
2878>> endobj2873>> endobj
2879810 0 obj <<2874810 0 obj <<
2880/D [778 0 R /XYZ 56.693 130.44 null]2875/D [783 0 R /XYZ 56.693 253.113 null]
2881>> endobj2876>> endobj
2882811 0 obj <<2877811 0 obj <<
2883/D [778 0 R /XYZ 56.693 96.136 null]2878/D [783 0 R /XYZ 56.693 256.182 null]
2879>> endobj
2880190 0 obj <<
2881/D [783 0 R /XYZ 56.693 192.235 null]
2884>> endobj2882>> endobj
2885812 0 obj <<2883812 0 obj <<
2886/D [778 0 R /XYZ 56.693 99.205 null]2884/D [783 0 R /XYZ 56.693 158.911 null]
2887>> endobj2885>> endobj
2888777 0 obj <<2886813 0 obj <<
2889/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>2887/D [783 0 R /XYZ 56.693 161.676 null]
2890/ProcSet [ /PDF /Text ]2888>> endobj
2889814 0 obj <<
2890/D [783 0 R /XYZ 56.693 127.372 null]
2891>> endobj
2892815 0 obj <<
2893/D [783 0 R /XYZ 56.693 130.44 null]
2891>> endobj2894>> endobj
2892816 0 obj <<2895816 0 obj <<
2896/D [783 0 R /XYZ 56.693 96.136 null]
2897>> endobj
2898817 0 obj <<
2899/D [783 0 R /XYZ 56.693 99.205 null]
2900>> endobj
2901782 0 obj <<
2902/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2903/ProcSet [ /PDF /Text ]
2904>> endobj
2905821 0 obj <<
2893/Length 1811 2906/Length 1811
2894/Filter /FlateDecode2907/Filter /FlateDecode
2895>>2908>>
@@ -2892,54 +2905,54 @@
2892j�eØ?8ÀP¦�82905j�eØ?8ÀP¦�8
2893!ý#Ça ‡Ç+šm:1/árwwˆSJ2906!ý#Ça ‡Ç+šm:1/árwwˆSJ
2894§)1u“@5dÌ‹ÌT¬æ‰ Ã,xlRfÞc½bPÔ>«þ ƒ’Hå¸!ãû×UÕO•Ôe‘š·]Å…$9ò5çȇ:2907§)1u“@5dÌ‹ÌT¬æ‰ Ã,xlRfÞc½bPÔ>«þ ƒ’Hå¸!ãû×UÕO•Ôe‘š·]Å…$9ò5çȇ:
2895B|(©ÏbnHàr‰ùPpû\Ë¢¡2908B|(©ÏbnHàr‰ùPpû\Ë¢¡
2896æ3á“QYÍ£</‘ÕGH8˜Õc¬0Y=*:”p,BÁF!àé2v# 42909æ3á“QYÍ£</‘ÕGH8˜Õc¬0Y=*:”p,BÁF!àé2v# 4
2897C÷ÄW9Ú|(wôKɃü]ÁóB½yö^êÍ'‚‘!8YÆž0àÄû¯F=ꘉQ8ò`ÛˆsXÂá3Šz£N2910C÷ÄW9Ú|(wôKɃü]ÁóB½yö^êÍ'‚‘!8YÆž0àÄû¯F=ꘉQ8ò`ÛˆsXÂá3Šz£N
2898Åñ×@OÃ�õn�€wo�€µ�FÞö«Mã™›¾­ÊWdÆVd‡s•ü•¯�bºØmÔÛuþ+6¼N€XDIY+þ©[dúÐ+\cºÇC-Ã(ËrÕ+¦Üþ.ñ‹Kcg_ÉRÔ8×2911Åñ×@OÃ�õn�€wo�€µ�FÞö«Mã™›¾­ÊWdÆVd‡s•ü•¯�bºØmÔÛuþ+6¼N€XDIY+þ©[dúÐ+\cºÇC-Ã(ËrÕ+¦Üþ.ñ‹Kcg_ÉRÔ8×
2899d52912d5
2900ä�¤¬TÖóíð¨x‹Tû”¹vRõ…•(2913ä�¤¬TÖóíð¨x‹Tû”¹vRõ…•(
2901û”·2914û”·
2902m›–*åíïæªÓ‹ÌUgDck¹³®¼Z¼Ä‹vèÁGë?TKI,2915m›–*åíïæªÓ‹ÌUgDck¹³®¼Z¼Ä‹vèÁGë?TKI,
2903endstream2916endstream
2904endobj2917endobj
2905815 0 obj <<2918820 0 obj <<
2906/Type /Page2919/Type /Page
2907/Contents 816 0 R2920/Contents 821 0 R
2908/Resources 814 0 R2921/Resources 819 0 R
2909/MediaBox [0 0 595.276 841.89]2922/MediaBox [0 0 595.276 841.89]
2910/Parent 813 0 R2923/Parent 818 0 R
2911>> endobj2924>> endobj
2912817 0 obj <<2925822 0 obj <<
2913/D [815 0 R /XYZ 55.693 817.952 null]2926/D [820 0 R /XYZ 55.693 817.952 null]
2914>> endobj2927>> endobj
2915194 0 obj <<2928194 0 obj <<
2916/D [815 0 R /XYZ 56.693 785.197 null]2929/D [820 0 R /XYZ 56.693 785.197 null]
2917>> endobj2930>> endobj
2918198 0 obj <<2931198 0 obj <<
2919/D [815 0 R /XYZ 56.693 649.483 null]2932/D [820 0 R /XYZ 56.693 649.483 null]
2920>> endobj2933>> endobj
2921202 0 obj <<2934202 0 obj <<
2922/D [815 0 R /XYZ 56.693 459.056 null]2935/D [820 0 R /XYZ 56.693 459.056 null]
2923>> endobj2936>> endobj
2924206 0 obj <<2937206 0 obj <<
2925/D [815 0 R /XYZ 56.693 290.034 null]2938/D [820 0 R /XYZ 56.693 290.034 null]
2926>> endobj2939>> endobj
2927818 0 obj <<2940823 0 obj <<
2928/D [815 0 R /XYZ 56.693 255.433 null]2941/D [820 0 R /XYZ 56.693 255.433 null]
2929>> endobj2942>> endobj
2930819 0 obj <<2943824 0 obj <<
2931/D [815 0 R /XYZ 56.693 258.199 null]2944/D [820 0 R /XYZ 56.693 258.199 null]
2932>> endobj2945>> endobj
2933820 0 obj <<2946825 0 obj <<
2934/D [815 0 R /XYZ 56.693 244.649 null]2947/D [820 0 R /XYZ 56.693 244.649 null]
2935>> endobj2948>> endobj
2936210 0 obj <<2949210 0 obj <<
2937/D [815 0 R /XYZ 56.693 174.665 null]2950/D [820 0 R /XYZ 56.693 174.665 null]
2938>> endobj
2939821 0 obj <<
2940/D [815 0 R /XYZ 56.693 138.779 null]
2941>> endobj
2942822 0 obj <<
2943/D [815 0 R /XYZ 56.693 141.544 null]
2944>> endobj
2945823 0 obj <<
2946/D [815 0 R /XYZ 56.693 127.995 null]
2947>> endobj
2948814 0 obj <<
2949/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>
2950/ProcSet [ /PDF /Text ]
2951>> endobj2951>> endobj
2952826 0 obj <<2952826 0 obj <<
2953/D [820 0 R /XYZ 56.693 138.779 null]
2954>> endobj
2955827 0 obj <<
2956/D [820 0 R /XYZ 56.693 141.544 null]
2957>> endobj
2958828 0 obj <<
2959/D [820 0 R /XYZ 56.693 127.995 null]
2960>> endobj
2961819 0 obj <<
2962/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
2963/ProcSet [ /PDF /Text ]
2964>> endobj
2965831 0 obj <<
2953/Length 2133 2966/Length 2133
2954/Filter /FlateDecode2967/Filter /FlateDecode
2955>>2968>>
@@ -2957,93 +2970,93 @@
2957©±¹à|û�¹QMLGª*(ض!�'KV�9]Üî²caX™˜¼Ò ð¨¼rB¿ÛEhQ­ùHS2970©±¹à|û�¹QMLGª*(ض!�'KV�9]Üî²caX™˜¼Ò ð¨¼rB¿ÛEhQ­ùHS
2958'OŠ1"ͼ’*R¿ÝVûwh®bU¸VþÒw߃Ãí¶ò÷³P.\QñÔ+òdÊßY+r˜¦‘É|ª2971'OŠ1"ͼ’*R¿ÝVûwh®bU¸VþÒw߃Ãí¶ò÷³P.\QñÔ+òdÊßY+r˜¦‘É|ª
2959a¥“/5_2972a¥“/5_
2960Ucç¤7Iê@¿çÉç>›|N_þ†ØmSw‰2973Ucç¤7Iê@¿çÉç>›|N_þ†ØmSw‰
2961òË¡ÌFpç/Ï‚™‰~úÕˆsa±Tˆ`�&�°úØ쇗,À©É�àòéþ¸g°‹zû%Ì\æÅä�z=;F2974òË¡ÌFpç/Ï‚™‰~úÕˆsa±Tˆ`�&�°úØ쇗,À©É�àòéþ¸g°‹zû%Ì\æÅä�z=;F
2962ïÙq¦°Æ„³!�|û2975ïÙq¦°Æ„³!�|û
2963�qœSýöësH³mÆ’*Á2976�qœSýöësH³mÆ’*Á
2964D&Ðã1:2977D&Ðã1:
2965¾Áƾó^>]|ý7».¯æ�Žcž�cQ‚!½�zî2978¾Áƾó^>]|ý7».¯æ�Žcž�cQ‚!½�zî
2966€Ðï7ZT2979€Ðï7ZT
29676ÎÃ 1eH29806ÎÃ 1eH
2968¼ö2]çCøø�‡ÔÚ2981¼ö2]çCøø�‡ÔÚ
2969A%ƒl¯øš,B¹pEŇ2982A%ƒl¯øš,B¹pEŇ
2970×øKLJ0 zÃ…úó{VóY¾ª2983×øKLJ0 zÃ…úó{VóY¾ª
2971ƒJíÝÖ+Õ’M¶¾âN2984ƒJíÝÖ+Õ’M¶¾âN
2972‡xÈŇ¹g͇[ÏÞ￶lðìÅÖŽñ/ËÄ%±fDÑZC©Ìe:­·ìѽļõÖ1E�ÿ7‡¼ì/JO¬2985‡xÈŇ¹g͇[ÏÞ￶lðìÅÖŽñ/ËÄ%±fDÑZC©Ìe:­·ìѽļõÖ1E�ÿ7‡¼ì/JO¬
2973endstream2986endstream
2974endobj2987endobj
2975825 0 obj <<
2976/Type /Page
2977/Contents 826 0 R
2978/Resources 824 0 R
2979/MediaBox [0 0 595.276 841.89]
2980/Parent 813 0 R
2981>> endobj
2982827 0 obj <<
2983/D [825 0 R /XYZ 55.693 817.952 null]
2984>> endobj
2985214 0 obj <<
2986/D [825 0 R /XYZ 56.693 785.197 null]
2987>> endobj
2988828 0 obj <<
2989/D [825 0 R /XYZ 56.693 758.219 null]
2990>> endobj
2991829 0 obj <<
2992/D [825 0 R /XYZ 56.693 760.985 null]
2993>> endobj
2994830 0 obj <<2988830 0 obj <<
2995/D [825 0 R /XYZ 56.693 747.436 null]2989/Type /Page
2996>> endobj2990/Contents 831 0 R
2997218 0 obj <<2991/Resources 829 0 R
2998/D [825 0 R /XYZ 56.693 662.784 null]2992/MediaBox [0 0 595.276 841.89]
2999>> endobj2993/Parent 818 0 R
3000831 0 obj <<
3001/D [825 0 R /XYZ 56.693 628.199 null]
3002>> endobj2994>> endobj
3003832 0 obj <<2995832 0 obj <<
3004/D [825 0 R /XYZ 56.693 631.06 null]2996/D [830 0 R /XYZ 55.693 817.952 null]
2997>> endobj
2998214 0 obj <<
2999/D [830 0 R /XYZ 56.693 785.197 null]
3005>> endobj3000>> endobj
3006833 0 obj <<3001833 0 obj <<
3007/D [825 0 R /XYZ 56.693 617.511 null]3002/D [830 0 R /XYZ 56.693 758.219 null]
3008>> endobj
3009222 0 obj <<
3010/D [825 0 R /XYZ 56.693 529.957 null]
3011>> endobj3003>> endobj
3012834 0 obj <<3004834 0 obj <<
3013/D [825 0 R /XYZ 56.693 498.275 null]3005/D [830 0 R /XYZ 56.693 760.985 null]
3014>> endobj3006>> endobj
3015835 0 obj <<3007835 0 obj <<
3016/D [825 0 R /XYZ 56.693 501.136 null]3008/D [830 0 R /XYZ 56.693 747.436 null]
3009>> endobj
3010218 0 obj <<
3011/D [830 0 R /XYZ 56.693 662.784 null]
3017>> endobj3012>> endobj
3018836 0 obj <<3013836 0 obj <<
3019/D [825 0 R /XYZ 56.693 487.587 null]3014/D [830 0 R /XYZ 56.693 628.199 null]
3020>> endobj
3021226 0 obj <<
3022/D [825 0 R /XYZ 56.693 400.033 null]
3023>> endobj3015>> endobj
3024837 0 obj <<3016837 0 obj <<
3025/D [825 0 R /XYZ 56.693 368.446 null]3017/D [830 0 R /XYZ 56.693 631.06 null]
3026>> endobj3018>> endobj
3027838 0 obj <<3019838 0 obj <<
3028/D [825 0 R /XYZ 56.693 371.211 null]3020/D [830 0 R /XYZ 56.693 617.511 null]
3021>> endobj
3022222 0 obj <<
3023/D [830 0 R /XYZ 56.693 529.957 null]
3029>> endobj3024>> endobj
3030839 0 obj <<3025839 0 obj <<
3031/D [825 0 R /XYZ 56.693 357.662 null]3026/D [830 0 R /XYZ 56.693 498.275 null]
3032>> endobj
3033230 0 obj <<
3034/D [825 0 R /XYZ 56.693 283.657 null]
3035>> endobj3027>> endobj
3036840 0 obj <<3028840 0 obj <<
3037/D [825 0 R /XYZ 56.693 252.07 null]3029/D [830 0 R /XYZ 56.693 501.136 null]
3038>> endobj3030>> endobj
3039841 0 obj <<3031841 0 obj <<
3040/D [825 0 R /XYZ 56.693 254.836 null]3032/D [830 0 R /XYZ 56.693 487.587 null]
3033>> endobj
3034226 0 obj <<
3035/D [830 0 R /XYZ 56.693 400.033 null]
3041>> endobj3036>> endobj
3042842 0 obj <<3037842 0 obj <<
3043/D [825 0 R /XYZ 56.693 241.287 null]3038/D [830 0 R /XYZ 56.693 368.446 null]
3044>> endobj
3045234 0 obj <<
3046/D [825 0 R /XYZ 56.693 167.282 null]
3047>> endobj3039>> endobj
3048843 0 obj <<3040843 0 obj <<
3049/D [825 0 R /XYZ 56.693 135.599 null]3041/D [830 0 R /XYZ 56.693 371.211 null]
3050>> endobj3042>> endobj
3051844 0 obj <<3043844 0 obj <<
3052/D [825 0 R /XYZ 56.693 138.46 null]3044/D [830 0 R /XYZ 56.693 357.662 null]
3045>> endobj
3046230 0 obj <<
3047/D [830 0 R /XYZ 56.693 283.657 null]
3053>> endobj3048>> endobj
3054845 0 obj <<3049845 0 obj <<
3055/D [825 0 R /XYZ 56.693 124.911 null]3050/D [830 0 R /XYZ 56.693 252.07 null]
3056>> endobj3051>> endobj
3057824 0 obj <<3052846 0 obj <<
3058/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>3053/D [830 0 R /XYZ 56.693 254.836 null]
3059/ProcSet [ /PDF /Text ]3054>> endobj
3055847 0 obj <<
3056/D [830 0 R /XYZ 56.693 241.287 null]
3057>> endobj
3058234 0 obj <<
3059/D [830 0 R /XYZ 56.693 167.282 null]
3060>> endobj3060>> endobj
3061848 0 obj <<3061848 0 obj <<
3062/D [830 0 R /XYZ 56.693 135.599 null]
3063>> endobj
3064849 0 obj <<
3065/D [830 0 R /XYZ 56.693 138.46 null]
3066>> endobj
3067850 0 obj <<
3068/D [830 0 R /XYZ 56.693 124.911 null]
3069>> endobj
3070829 0 obj <<
3071/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3072/ProcSet [ /PDF /Text ]
3073>> endobj
3074853 0 obj <<
3062/Length 2334 3075/Length 2334
3063/Filter /FlateDecode3076/Filter /FlateDecode
3064>>3077>>
@@ -3057,81 +3070,81 @@
3057Ž�p;†¬hj¢+Æ<ƒ&c{ø®Ußµnñ]ÇûšŽ7Zèôø~êÑßu¸úAYbG‹ïЄQàîÝÚ<qŠ¢ôxÔáš3070Ž�p;†¬hj¢+Æ<ƒ&c{ø®Ußµnñ]ÇûšŽ7Zèôø~êÑßu¸úAYbG‹ïЄQàîÝÚ<qŠ¢ôxÔáš
3058}á¢ÉÑ¥óÿxÐu{mÔª3071}á¢ÉÑ¥óÿxÐu{mÔª
3059Û¿6ªî­QÓ�êàÊæÀjO3072Û¿6ªî­QÓ�êàÊæÀjO
3060tø>¢©Çî4 ‹|@ER£é) ã3073tø>¢©Çî4 ‹|@ER£é) ã
3061\Æõ¶`m> ã•<3074\Æõ¶`m> ã•<
3062! �<~#Ðá„ž-1Cà·3075! �<~#Ðá„ž-1Cà·
3063mØÛgÔÅóÀÍ;wíó�8®×g�\ÙIåÙÀl´w³9ð²9P;¥là¡›²ÑRcÊFÇŒTbʪ>e£ù)‘dÎX�73076mØÛgÔÅóÀÍ;wíó�8®×g�\ÙIåÙÀl´w³9ð²9P;¥là¡›²ÑRcÊFÇŒTbʪ>e£ù)‘dÎX�7
3064Çê&ئºÜ¯5>…¤~ˆiÿÒq3077Çê&ئºÜ¯5>…¤~ˆiÿÒq
3065Ïg¬ŒÛ9çÿñlw0ßί>[,Ãöó*ê%êè{zªþÏ91×¥¯Ðšó¹„€s¿§œžÚÖÈ™Àt\Tÿ×JûÁN…íªÚ}vÖ{úœ×ý•5–pêþžÏ3078Ïg¬ŒÛ9çÿñlw0ßί>[,Ãöó*ê%êè{zªþÏ91×¥¯Ðšó¹„€s¿§œžÚÖÈ™Àt\Tÿ×JûÁN…íªÚ}vÖ{úœ×ý•5–pêþžÏ
3066endstream3079endstream
3067endobj3080endobj
3068847 0 obj <<
3069/Type /Page
3070/Contents 848 0 R
3071/Resources 846 0 R
3072/MediaBox [0 0 595.276 841.89]
3073/Parent 813 0 R
3074>> endobj
3075849 0 obj <<
3076/D [847 0 R /XYZ 55.693 817.952 null]
3077>> endobj
3078238 0 obj <<
3079/D [847 0 R /XYZ 56.693 785.197 null]
3080>> endobj
3081850 0 obj <<
3082/D [847 0 R /XYZ 56.693 755.655 null]
3083>> endobj
3084851 0 obj <<
3085/D [847 0 R /XYZ 56.693 758.516 null]
3086>> endobj
3087852 0 obj <<3081852 0 obj <<
3088/D [847 0 R /XYZ 56.693 744.967 null]3082/Type /Page
3089>> endobj3083/Contents 853 0 R
3090242 0 obj <<3084/Resources 851 0 R
3091/D [847 0 R /XYZ 56.693 653.594 null]3085/MediaBox [0 0 595.276 841.89]
3092>> endobj3086/Parent 818 0 R
3093853 0 obj <<
3094/D [847 0 R /XYZ 56.693 618.046 null]
3095>> endobj3087>> endobj
3096854 0 obj <<3088854 0 obj <<
3097/D [847 0 R /XYZ 56.693 620.907 null]3089/D [852 0 R /XYZ 55.693 817.952 null]
3090>> endobj
3091238 0 obj <<
3092/D [852 0 R /XYZ 56.693 785.197 null]
3098>> endobj3093>> endobj
3099855 0 obj <<3094855 0 obj <<
3100/D [847 0 R /XYZ 56.693 607.358 null]3095/D [852 0 R /XYZ 56.693 755.655 null]
3101>> endobj
3102246 0 obj <<
3103/D [847 0 R /XYZ 56.693 503.942 null]
3104>> endobj3096>> endobj
3105856 0 obj <<3097856 0 obj <<
3106/D [847 0 R /XYZ 56.693 466.888 null]3098/D [852 0 R /XYZ 56.693 758.516 null]
3107>> endobj3099>> endobj
3108857 0 obj <<3100857 0 obj <<
3109/D [847 0 R /XYZ 56.693 469.749 null]3101/D [852 0 R /XYZ 56.693 744.967 null]
3102>> endobj
3103242 0 obj <<
3104/D [852 0 R /XYZ 56.693 653.594 null]
3110>> endobj3105>> endobj
3111858 0 obj <<3106858 0 obj <<
3112/D [847 0 R /XYZ 56.693 456.2 null]3107/D [852 0 R /XYZ 56.693 618.046 null]
3113>> endobj
3114250 0 obj <<
3115/D [847 0 R /XYZ 56.693 336.333 null]
3116>> endobj3108>> endobj
3117859 0 obj <<3109859 0 obj <<
3118/D [847 0 R /XYZ 56.693 302.277 null]3110/D [852 0 R /XYZ 56.693 620.907 null]
3119>> endobj3111>> endobj
3120860 0 obj <<3112860 0 obj <<
3121/D [847 0 R /XYZ 56.693 305.042 null]3113/D [852 0 R /XYZ 56.693 607.358 null]
3114>> endobj
3115246 0 obj <<
3116/D [852 0 R /XYZ 56.693 503.942 null]
3122>> endobj3117>> endobj
3123861 0 obj <<3118861 0 obj <<
3124/D [847 0 R /XYZ 56.693 291.493 null]3119/D [852 0 R /XYZ 56.693 466.888 null]
3125>> endobj
3126254 0 obj <<
3127/D [847 0 R /XYZ 56.693 198.724 null]
3128>> endobj3120>> endobj
3129862 0 obj <<3121862 0 obj <<
3130/D [847 0 R /XYZ 56.693 164.668 null]3122/D [852 0 R /XYZ 56.693 469.749 null]
3131>> endobj3123>> endobj
3132863 0 obj <<3124863 0 obj <<
3133/D [847 0 R /XYZ 56.693 167.434 null]3125/D [852 0 R /XYZ 56.693 456.2 null]
3126>> endobj
3127250 0 obj <<
3128/D [852 0 R /XYZ 56.693 336.333 null]
3134>> endobj3129>> endobj
3135864 0 obj <<3130864 0 obj <<
3136/D [847 0 R /XYZ 56.693 153.885 null]3131/D [852 0 R /XYZ 56.693 302.277 null]
3137>> endobj3132>> endobj
3138846 0 obj <<3133865 0 obj <<
3139/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>3134/D [852 0 R /XYZ 56.693 305.042 null]
3140/ProcSet [ /PDF /Text ]3135>> endobj
3136866 0 obj <<
3137/D [852 0 R /XYZ 56.693 291.493 null]
3138>> endobj
3139254 0 obj <<
3140/D [852 0 R /XYZ 56.693 198.724 null]
3141>> endobj3141>> endobj
3142867 0 obj <<3142867 0 obj <<
3143/D [852 0 R /XYZ 56.693 164.668 null]
3144>> endobj
3145868 0 obj <<
3146/D [852 0 R /XYZ 56.693 167.434 null]
3147>> endobj
3148869 0 obj <<
3149/D [852 0 R /XYZ 56.693 153.885 null]
3150>> endobj
3151851 0 obj <<
3152/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3153/ProcSet [ /PDF /Text ]
3154>> endobj
3155872 0 obj <<
3143/Length 1509 3156/Length 1509
3144/Filter /FlateDecode3157/Filter /FlateDecode
3145>>3158>>
@@ -3147,57 +3160,57 @@
3147–ŠjÆð�Tàs:†ïÎ@8YÁc¬<.>˜Î9Žï.Çx¾áK÷k»„ï|šº«3160–ŠjÆð�Tàs:†ïÎ@8YÁc¬<.>˜Î9Žï.Çx¾áK÷k»„ï|šº«
3148ß3161ß
3149œäîßqw9Æ€¿Ü@ÈHp’3ˆà˜_G3162œäîßqw9Æ€¿Ü@ÈHp’3ˆà˜_G
3150BÊÆܧËc„ûua(Î'8Ia.Ó}‚û®{·ç"|ýð3163BÊÆܧËc„ûua(Î'8Ia.Ó}‚û®{·ç"|ýð
3151ùËîÁ–M3164ùËîÁ–M
3152šÿu`3165šÿu`
3153ŸÉO{=ÈØćÚ{ï»RÝÀWHT”‡íšÍ®!½?"Ú'äÐÿ*ÿØè3166ŸÉO{=ÈØćÚ{ï»RÝÀWHT”‡íšÍ®!½?"Ú'äÐÿ*ÿØè
3154endstream3167endstream
3155endobj3168endobj
3156866 0 obj <<
3157/Type /Page
3158/Contents 867 0 R
3159/Resources 865 0 R
3160/MediaBox [0 0 595.276 841.89]
3161/Parent 813 0 R
3162>> endobj
3163868 0 obj <<
3164/D [866 0 R /XYZ 55.693 817.952 null]
3165>> endobj
3166258 0 obj <<
3167/D [866 0 R /XYZ 56.693 785.197 null]
3168>> endobj
3169869 0 obj <<
3170/D [866 0 R /XYZ 56.693 757.502 null]
3171>> endobj
3172870 0 obj <<
3173/D [866 0 R /XYZ 56.693 760.267 null]
3174>> endobj
3175871 0 obj <<3169871 0 obj <<
3176/D [866 0 R /XYZ 56.693 746.718 null]3170/Type /Page
3177>> endobj3171/Contents 872 0 R
3178262 0 obj <<3172/Resources 870 0 R
3179/D [866 0 R /XYZ 56.693 603.881 null]3173/MediaBox [0 0 595.276 841.89]
3180>> endobj3174/Parent 818 0 R
3181872 0 obj <<
3182/D [866 0 R /XYZ 56.693 571.576 null]
3183>> endobj3175>> endobj
3184873 0 obj <<3176873 0 obj <<
3185/D [866 0 R /XYZ 56.693 574.342 null]3177/D [871 0 R /XYZ 55.693 817.952 null]
3178>> endobj
3179258 0 obj <<
3180/D [871 0 R /XYZ 56.693 785.197 null]
3186>> endobj3181>> endobj
3187874 0 obj <<3182874 0 obj <<
3188/D [866 0 R /XYZ 56.693 560.793 null]3183/D [871 0 R /XYZ 56.693 757.502 null]
3189>> endobj
3190266 0 obj <<
3191/D [866 0 R /XYZ 56.693 485.701 null]
3192>> endobj3184>> endobj
3193875 0 obj <<3185875 0 obj <<
3194/D [866 0 R /XYZ 56.693 453.397 null]3186/D [871 0 R /XYZ 56.693 760.267 null]
3195>> endobj3187>> endobj
3196876 0 obj <<3188876 0 obj <<
3197/D [866 0 R /XYZ 56.693 456.162 null]3189/D [871 0 R /XYZ 56.693 746.718 null]
3190>> endobj
3191262 0 obj <<
3192/D [871 0 R /XYZ 56.693 603.881 null]
3198>> endobj3193>> endobj
3199877 0 obj <<3194877 0 obj <<
3200/D [866 0 R /XYZ 56.693 442.613 null]3195/D [871 0 R /XYZ 56.693 571.576 null]
3201>> endobj3196>> endobj
3202865 0 obj <<3197878 0 obj <<
3203/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>3198/D [871 0 R /XYZ 56.693 574.342 null]
3204/ProcSet [ /PDF /Text ]3199>> endobj
3200879 0 obj <<
3201/D [871 0 R /XYZ 56.693 560.793 null]
3202>> endobj
3203266 0 obj <<
3204/D [871 0 R /XYZ 56.693 485.701 null]
3205>> endobj3205>> endobj
3206880 0 obj <<3206880 0 obj <<
3207/D [871 0 R /XYZ 56.693 453.397 null]
3208>> endobj
3209881 0 obj <<
3210/D [871 0 R /XYZ 56.693 456.162 null]
3211>> endobj
3212882 0 obj <<
3213/D [871 0 R /XYZ 56.693 442.613 null]
3214>> endobj
3215870 0 obj <<
3216/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3217/ProcSet [ /PDF /Text ]
3218>> endobj
3219885 0 obj <<
3207/Length 114 3220/Length 114
3208/Filter /FlateDecode3221/Filter /FlateDecode
3209>>3222>>
@@ -3206,21 +3219,21 @@
3206áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ06ÐŒ3219áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ06ÐŒ
3207ñÒw3¶DVilf¦b@9{8„¸iê™hëiêššhøx:„º€´s@-E§]C¸²f3220ñÒw3¶DVilf¦b@9{8„¸iê™hëiêššhøx:„º€´s@-E§]C¸²f
3208´3221´
3209endstream3222endstream
3210endobj3223endobj
3211879 0 obj <<3224884 0 obj <<
3212/Type /Page3225/Type /Page
3213/Contents 880 0 R3226/Contents 885 0 R
3214/Resources 878 0 R3227/Resources 883 0 R
3215/MediaBox [0 0 595.276 841.89]3228/MediaBox [0 0 595.276 841.89]
3216/Parent 813 0 R3229/Parent 818 0 R
3217>> endobj3230>> endobj
3218881 0 obj <<3231886 0 obj <<
3219/D [879 0 R /XYZ 55.693 817.952 null]3232/D [884 0 R /XYZ 55.693 817.952 null]
3220>> endobj3233>> endobj
3221878 0 obj <<3234883 0 obj <<
3222/Font << /F28 335 0 R /F39 421 0 R >>3235/Font << /F28 339 0 R /F39 425 0 R >>
3223/ProcSet [ /PDF /Text ]3236/ProcSet [ /PDF /Text ]
3224>> endobj3237>> endobj
3225885 0 obj <<3238890 0 obj <<
3226/Length 1250 3239/Length 1250
3227/Filter /FlateDecode3240/Filter /FlateDecode
3228>>3241>>
@@ -3230,43 +3243,43 @@
3230Pc0Þ SÜ•c*š&`�3243Pc0Þ SÜ•c*š&`�
3231Ø‹¢v)q«ö</ ljÚI[ЈÆþAt_—mciÐ~|u3244Ø‹¢v)q«ö</ ljÚI[ЈÆþAt_—mciÐ~|u
3245´�[õqà‘kB;ò¹°ƒxÊà!ß È9;1î÷ ²P‰H”ÆÓÄà!ÒÈÿÁAy§÷zSŸHHÉâ¸a“ ND~¯+ÝÖoõ_L²€]Sx
3232`“»o×s©”â„rµAY�~;©Ñ½Us¨øzX) G´\ù¹0'!”3ÑE»Ê@s-Ã0ð×}{¯ÜÎhÔÝè.ç8¯3246`“»o×s©”â„rµAY�~;©Ñ½Us¨øzX) G´\ù¹0'!”3ÑE»Ê@s-Ã0ð×}{¯ÜÎhÔÝè.ç8¯
3233*m˜Ÿ3247*m˜Ÿ
3234!¸N/f܉8—3248!¸N/f܉8—
3235èÓ>äâº�¨.å,x"FÂ3249èÓ>äâº�¨.å,x"FÂ
3236Ša3250Ša
3237pólÃÇ1±3§éØ}3251pólÃÇ1±3§éØ}
3238Å…ÚqS­ŒÍÔûØÜ^[ÄrÔ„dŸ0©ßƉ‹ñSO%–¿Â!¯€açr3252Å…ÚqS­ŒÍÔûØÜ^[ÄrÔ„dŸ0©ßƉ‹ñSO%–¿Â!¯€açr
3239×�¨ÍDw[ÛšÎè–¢ö~3253×�¨ÍDw[ÛšÎè–¢ö~
3240éÖ˜»W•;”üJ3¯Z1§Ú´ùŒ60¥Ú@ÊD}m÷-ºÙð²œUr»3oG°ÙÄ.)¸±kQ¾ãVÇCšŽÐœŽ°ÐKX¼ÓëŸ)©eêÞ4wŠ3254éÖ˜»W•;”üJ3¯Z1§Ú´ùŒ60¥Ú@ÊD}m÷-ºÙð²œUr»3oG°ÙÄ.)¸±kQ¾ãVÇCšŽÐœŽ°ÐKX¼ÓëŸ)©eêÞ4wŠ
3241d+á¾w …±k>0DØXç¹>ºi)6¼­3255d+á¾w …±k>0DØXç¹>ºi)6¼­
32423256
3243’â�3257’â�
3244•v·pÛ)ÛƒY׃㘧!ÏnKiƒë›î‚å/Œõàíé‚úŠïEs‹óF„3¡Ôs?P­zë]Iþ~¸ñž�3258•v·pÛ)ÛƒY׃㘧!ÏnKiƒë›î‚å/Œõàíé‚úŠïEs‹óF„3¡Ôs?P­zë]Iþ~¸ñž�
3245Å%”þ–¨ßÉŒýýXìÄž7ÿ‹ƒÐWBto[˜v©‡ñYiË�Ad¯¨b‡ÂÇCë,·Q·¸”3259Å%”þ–¨ßÉŒýýXìÄž7ÿ‹ƒÐWBto[˜v©‡ñYiË�Ad¯¨b‡ÂÇCë,·Q·¸”
3246îY%œ"Ö3260îY%œ"Ö
3247ÜŒŸ/ ï^v¿�míXÕ¸-º+ÞÖ�2¨Ÿlf»Ö]/¯ê5æ¿N[%$¸\sxÃߤ´A±Íg¨So¦üåÁ‰¶]Ó7MÈ&*¿®oþâzÂ3261ÜŒŸ/ ï^v¿�míXÕ¸-º+ÞÖ�2¨Ÿlf»Ö]/¯ê5æ¿N[%$¸\sxÃߤ´A±Íg¨So¦üåÁ‰¶]Ó7MÈ&*¿®oþâzÂ
3248endstream3262endstream
3249endobj3263endobj
3250884 0 obj <<3264889 0 obj <<
3251/Type /Page3265/Type /Page
3252/Contents 885 0 R3266/Contents 890 0 R
3253/Resources 883 0 R3267/Resources 888 0 R
3254/MediaBox [0 0 595.276 841.89]3268/MediaBox [0 0 595.276 841.89]
3255/Parent 887 0 R3269/Parent 892 0 R
3256/Annots [ 882 0 R ]3270/Annots [ 887 0 R ]
3257>> endobj3271>> endobj
3258882 0 obj <<3272887 0 obj <<
3259/Type /Annot3273/Type /Annot
3260/Border[0 0 0]/H/I/C[0 1 1]3274/Border[0 0 0]/H/I/C[0 1 1]
3261/Rect [235.247 127.347 258.152 140.363]3275/Rect [235.247 127.347 258.152 140.363]
3262/Subtype/Link/A<</Type/Action/S/URI/URI(http://en.wikipedia.org/wiki/X11_color_names)>>3276/Subtype/Link/A<</Type/Action/S/URI/URI(http://en.wikipedia.org/wiki/X11_color_names)>>
3263>> endobj3277>> endobj
3264886 0 obj <<3278891 0 obj <<
3265/D [884 0 R /XYZ 55.693 817.952 null]3279/D [889 0 R /XYZ 55.693 817.952 null]
3266>> endobj3280>> endobj
3267270 0 obj <<3281270 0 obj <<
3268/D [884 0 R /XYZ 56.693 785.197 null]3282/D [889 0 R /XYZ 56.693 785.197 null]
3269>> endobj3283>> endobj
3270274 0 obj <<3284274 0 obj <<
3271/D [884 0 R /XYZ 56.693 600.014 null]3285/D [889 0 R /XYZ 56.693 600.014 null]
3272>> endobj3286>> endobj
3273278 0 obj <<3287278 0 obj <<
3274/D [884 0 R /XYZ 56.693 445.478 null]3288/D [889 0 R /XYZ 56.693 445.478 null]
3275>> endobj3289>> endobj
3276282 0 obj <<3290282 0 obj <<
3277/D [884 0 R /XYZ 56.693 349.124 null]3291/D [889 0 R /XYZ 56.693 349.124 null]
3278>> endobj3292>> endobj
3279286 0 obj <<3293286 0 obj <<
3280/D [884 0 R /XYZ 56.693 111.731 null]3294/D [889 0 R /XYZ 56.693 111.731 null]
3281>> endobj3295>> endobj
3282883 0 obj <<3296888 0 obj <<
3283/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>3297/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
3284/ProcSet [ /PDF /Text ]3298/ProcSet [ /PDF /Text ]
3285>> endobj3299>> endobj
3286890 0 obj <<3300895 0 obj <<
3287/Length 1958 3301/Length 1958
3288/Filter /FlateDecode3302/Filter /FlateDecode
3289>>3303>>
@@ -3283,24 +3296,24 @@
3283âHëÃç:¼õøŸ¡.¦eÂ#÷zöb›gãé2ï‡[ <Ãã“¿®�Ž~¿:ûo´hh3296âHëÃç:¼õøŸ¡.¦eÂ#÷zöb›gãé2ï‡[ <Ãã“¿®�Ž~¿:ûo´hh
3284endstream3297endstream
3285endobj3298endobj
3286889 0 obj <<3299894 0 obj <<
3287/Type /Page3300/Type /Page
3288/Contents 890 0 R3301/Contents 895 0 R
3289/Resources 888 0 R3302/Resources 893 0 R
3290/MediaBox [0 0 595.276 841.89]3303/MediaBox [0 0 595.276 841.89]
3291/Parent 887 0 R3304/Parent 892 0 R
3292>> endobj3305>> endobj
3293891 0 obj <<3306896 0 obj <<
3294/D [889 0 R /XYZ 55.693 817.952 null]3307/D [894 0 R /XYZ 55.693 817.952 null]
3295>> endobj3308>> endobj
3296290 0 obj <<3309290 0 obj <<
3297/D [889 0 R /XYZ 56.693 153.579 null]3310/D [894 0 R /XYZ 56.693 153.579 null]
3298>> endobj3311>> endobj
3299888 0 obj <<3312893 0 obj <<
3300/Font << /F28 335 0 R /F39 421 0 R /F36 453 0 R /F47 454 0 R /F37 376 0 R >>3313/Font << /F28 339 0 R /F39 425 0 R /F36 458 0 R /F47 459 0 R /F37 380 0 R >>
3301/ProcSet [ /PDF /Text ]3314/ProcSet [ /PDF /Text ]
3302>> endobj3315>> endobj
3303896 0 obj <<3316901 0 obj <<
3304/Length 1921 3317/Length 1921
3305/Filter /FlateDecode3318/Filter /FlateDecode
3306>>3319>>
@@ -3313,41 +3326,41 @@
3313öJ+3326öJ+
3314_9Êž¢èÖÊ°›~à8ÖGo†ùóÍ�÷Él�¹ƒñé›ì§ÙõÙýƒëÿ2ÙÍG3327_9Êž¢èÖÊ°›~à8ÖGo†ùóÍ�÷Él�¹ƒñé›ì§ÙõÙýƒëÿ2ÙÍG
3315endstream3328endstream
3316endobj3329endobj
3317895 0 obj <<3330900 0 obj <<
3318/Type /Page3331/Type /Page
3319/Contents 896 0 R3332/Contents 901 0 R
3320/Resources 894 0 R3333/Resources 899 0 R
3321/MediaBox [0 0 595.276 841.89]3334/MediaBox [0 0 595.276 841.89]
3322/Parent 887 0 R3335/Parent 892 0 R
3323/Annots [ 892 0 R ]3336/Annots [ 897 0 R ]
3324>> endobj3337>> endobj
3325892 0 obj <<3338897 0 obj <<
3326/Type /Annot3339/Type /Annot
3327/Subtype /Link3340/Subtype /Link
3328/Border[0 0 0]/H/I/C[1 0 0]3341/Border[0 0 0]/H/I/C[1 0 0]
3329/Rect [490.996 52.62 514.807 65.636]3342/Rect [490.996 52.62 514.807 65.636]
3330/A << /S /GoTo /D (subsection.4.2.1) >>3343/A << /S /GoTo /D (subsection.4.2.1) >>
3331>> endobj3344>> endobj
3332897 0 obj <<3345902 0 obj <<
3333/D [895 0 R /XYZ 55.693 817.952 null]3346/D [900 0 R /XYZ 55.693 817.952 null]
3334>> endobj3347>> endobj
3335294 0 obj <<3348294 0 obj <<
3336/D [895 0 R /XYZ 56.693 560.625 null]3349/D [900 0 R /XYZ 56.693 560.625 null]
3337>> endobj3350>> endobj
3338298 0 obj <<3351298 0 obj <<
3339/D [895 0 R /XYZ 56.693 398.89 null]3352/D [900 0 R /XYZ 56.693 398.89 null]
3340>> endobj3353>> endobj
3341302 0 obj <<3354302 0 obj <<
3342/D [895 0 R /XYZ 56.693 249.141 null]3355/D [900 0 R /XYZ 56.693 249.141 null]
3343>> endobj3356>> endobj
3344306 0 obj <<3357306 0 obj <<
3345/D [895 0 R /XYZ 56.693 153.589 null]3358/D [900 0 R /XYZ 56.693 153.589 null]
3346>> endobj3359>> endobj
3347894 0 obj <<3360899 0 obj <<
3348/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R >>3361/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R >>
3349/ProcSet [ /PDF /Text ]3362/ProcSet [ /PDF /Text ]
3350>> endobj3363>> endobj
3351900 0 obj <<3364905 0 obj <<
3352/Length 1156 3365/Length 1156
3353/Filter /FlateDecode3366/Filter /FlateDecode
3354>>3367>>
@@ -3358,106 +3371,133 @@
3358ÄIP´<L¦v¯/ó3371ÄIP´<L¦v¯/ó
3359*Õuõ,ùU�–¤fª­é]>ákùzÓiSë~¯L;ŸêZM.Ž,ÀGíÑ^\—G©Wƒõ8ð¦/ЛÆÀ"%(y»ê`§•"tés”I�9÷-mû{}—dË̉4bI&漃L\ÌpœÂ]²Ù3372*Õuõ,ùU�–¤fª­é]>ákùzÓiSë~¯L;ŸêZM.Ž,ÀGíÑ^\—G©Wƒõ8ð¦/ЛÆÀ"%(y»ê`§•"tés”I�9÷-mû{}—dË̉4bI&漃L\ÌpœÂ]²Ù
3360R0ùë@YJ{ €y–Î'°Äp¡Å3373R0ùë@YJ{ €y–Î'°Äp¡Å
3361KÝ@U{}É3374KÝ@U{}É
3362pÞQÅŸÆÁ”ÉÐXrúbêš$ÿVšÞÇS˧†&"3375pÞQÅŸÆÁ”ÉÐXrúbêš$ÿVšÞÇS˧†&"
3363‹Xœ¦ëdš¶Ÿ3376‹Xœ¦ëdš¶Ÿ
3364§aHÊai»añÔ¢ðÞ“ž|¡)V{~3úY¯'5=7Æö°xŠ8myðÔá8=¢3<ñ�̾pɶýÆ;qàÎ]=3377§aHÊai»añÔ¢ðÞ“ž|¡)V{~3úY¯'5=7Æö°xŠ8myðÔá8=¢3<ñ�̾pɶýÆ;qàÎ]=
3365[�?ªáiêIþUµ{5íaZHáŸcû&e\³XÅH/œ4ú¬@iʧ³3378[�?ªáiêIþUµ{5íaZHáŸcû&e\³XÅH/œ4ú¬@iʧ³
3366°|ƒ'Ž“EÃVãòýnóϹÄ1ÿL3–¤IP6›Ï_yPÁ\”ÅE3379°|ƒ'Ž“EÃVãòýnóϹÄ1ÿL3–¤IP6›Ï_yPÁ\”ÅE
3367¼8Ã&E¿Úb�ëà¯ÍŸÇß”ð 3 R©`q"ƒÆ8�sÚ™å¬HÁr¦s†Ó9ç>»ÃÜ©æÏÃɇvL¶¢Cûšìª•Âøx6ªþ>0ñJ_jÿcì¼™R3380¼8Ã&E¿Úb�ëà¯ÍŸÇß”ð 3 R©`q"ƒÆ8�sÚ™å¬HÁr¦s†Ó9ç>»ÃÜ©æÏÃɇvL¶¢Cûšìª•Âøx6ªþ>0ñJ_jÿcì¼™R
3368Xôêu®ÎWÈÝ¿3381Xôêu®ÎWÈÝ¿
3369õ˜3382õ˜
3370endstream3383endstream
3371endobj3384endobj
3372899 0 obj <<3385904 0 obj <<
3373/Type /Page3386/Type /Page
3374/Contents 900 0 R3387/Contents 905 0 R
3375/Resources 898 0 R3388/Resources 903 0 R
3376/MediaBox [0 0 595.276 841.89]3389/MediaBox [0 0 595.276 841.89]
3377/Parent 887 0 R3390/Parent 892 0 R
3378/Annots [ 893 0 R ]3391/Annots [ 898 0 R ]
3379>> endobj3392>> endobj
3380893 0 obj <<3393898 0 obj <<
3381/Type /Annot3394/Type /Annot
3382/Subtype /Link3395/Subtype /Link
3383/Border[0 0 0]/H/I/C[1 0 0]3396/Border[0 0 0]/H/I/C[1 0 0]
3384/Rect [176.788 717.146 183.263 731.737]3397/Rect [176.788 717.146 183.263 731.737]
3385/A << /S /GoTo /D (Hfootnote.1) >>3398/A << /S /GoTo /D (Hfootnote.1) >>
3386>> endobj3399>> endobj
3387901 0 obj <<3400906 0 obj <<
3388/D [899 0 R /XYZ 55.693 817.952 null]3401/D [904 0 R /XYZ 55.693 817.952 null]
3389>> endobj3402>> endobj
3390310 0 obj <<3403310 0 obj <<
3391/D [899 0 R /XYZ 56.693 785.197 null]3404/D [904 0 R /XYZ 56.693 785.197 null]
3392>> endobj3405>> endobj
3393314 0 obj <<3406314 0 obj <<
3394/D [899 0 R /XYZ 56.693 660.867 null]
3395>> endobj
3396902 0 obj <<
3397/D [899 0 R /XYZ 72.832 67.652 null]
3398>> endobj
3399898 0 obj <<
3400/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R >>
3401/ProcSet [ /PDF /Text ]
3402>> endobj
3403906 0 obj <<
3404/Length 1230
3405/Filter /FlateDecode
3406>>
3407stream
3408xÚ…ËŽÛ6ðî¯ÐQj†"EIî-M›´
3409äa 6AAK´ET]QŠ×ß!‡Ô®7ÞÍE
3410΋ó3407΋ó
3411Ñä˜ÐäÝŠ†ó—ÝêÕ[^&Œ’¢`"Ù3408Ñä˜ÐäÝŠ†ó—ÝêÕ[^&Œ’¢`"Ù
3412Q�bË“b›“ŠeÉ®IîÒ7­<Mj\o˜ ©XÝý‰R9)«2sR4ÙˆœˆÀÿ—¶µê:9(3[”šŒéì"™å„ç3409Q�bË“b›“ŠeÉ®IîÒ7­<Mj\o˜ ©XÝý‰R9)«2sR4ÙˆœˆÀÿ—¶µê:9(3[”šŒéì"™å„ç
3413’#y…’‚dëMF)M?�æfcÕ„2¬J2J¶t_ã”Ð,G¡…uÃ3žjëÎ<•xµ­åýejÍÐõ¨Orž[]·ˆVƒÜwÊâe¶j3410’#y…’‚dëMF)M?�æfcÕ„2¬J2J¶t_ã”Ð,G¡…uÃ3žjëÎ<•xµ­åýejÍÐõ¨Orž[]·ˆVƒÜwÊâe¶j
3414àd�µ—ÿª  —]‡`oý…RVËI›á‰ÄÔ�o²›£fspn9?2ND¾E?Ì)ÊS‘jg(ͽsˆyDÎS÷3411àd�µ—ÿª  —]‡`oý…RVËI›á‰ÄÔ�o²›£fspn9?2ND¾E?Ì)ÊS‘jg(ͽsˆyDÎS÷
3415ê(�ßDmú^A®Óƒ"ëM^òt×ê¨>œ§u–ÊqÒõÜɱ» 3412ê(�ßDmú^A®Óƒ"ëM^òt×ê¨>œ§u–ÊqÒõÜɱ» 
34163413
3417ÂçŸU©Â'bL3414ÂçŸU©Â'bL
3418EÛ6¼kn¹CìÒ/ñæ~ëbàOˆžê3415EÛ6¼kn¹CìÒ/ñæ~ëbàOˆžê
3419×U:¡bÔý©3£3416×U:¡bÔý©3£
3420ŽxmôÁ™qÖ3417ŽxmôÁ™qÖ
3421AqŒêc�fPãÑw;ÉQö3418AqŒêc�fPãÑw;ÉQö
3422êÙ’Å슰¼@³wmà³—a’÷תíRjî¦íÏNÃÒNñ|õ6/ŸÔ++ ËxÌ¢¤€B?誮Wx»?É©EpPç¼{Ï´€WÉPå’¥kƒ°Ùž5‹È?~-uýV^¹þ¤(£cCÇ0¡í�ƒ´�–Šu|
3423áÐqÃ8 ðÜ«¥,|S©†¼èÒ­Û0ã'¤ƒø’KœÎÊg}3419áÐqÃ8 ðÜ«¥,|S©†¼èÒ­Û0ã'¤ƒø’KœÎÊg}
3424YxÁ©
3425}Ô*™:sLö‡‚mè‘@3420}Ô*™:sLö‡‚mè‘@
3426¡¼Ðo»Õ«3421¡¼Ðo»Õ«
3427äh’%eE„ /3422äh’%eE„ /
3428B)Oê~u÷•&3423B)Oê~u÷•&
3429Р¨ ßVÉÙsö '¬äuɧՇeê?z´Ê`Ú— J�Š†±ºÔÞóQd¤|!ŠÎè‡&ý.ó7#3424Р¨ ßVÉÙsö '¬äuɧՇeê?z´Ê`Ú— J�Š†±ºÔÞóQd¤|!ŠÎè‡&ý.ó7#
3430ãzîBô&¶äagdd+„ßQ’ªÈ TÂ;WDz<–¸Õ6‚lC×¼v�2±¤›è $^a‡
3431gyTˆŒÆáäÛÍ|Ó�º–èUÝʦª¶=b~3425gyTˆŒÆáäÛÍ|Ó�º–èUÝʦª¶=b~
34329Ž¦Á&µÇšÓÃ7(ð•(­ê;D`ç7k³ô� ‘0ˆƒœ3Þ>34269Ž¦Á&µÇšÓÃ7(ð•(­ê;D`ç7k³ô� ‘0ˆƒœ3Þ>
3433À¡f¬î53427À¡f¬î5
3434u`*¸_'¬ÈSk|·æ,/!_Å…[Æ"ho®‰hù4jõ-ð<t÷#ý�Þ»ñ挅3428u`*¸_'¬ÈSk|·æ,/!_Å…[Æ"ho®‰hù4jõ-ð<t÷#ý�Þ»ñ挅
3435¾F",“!ˆ–ß3429¾F",“!ˆ–ß
3436˜oà÷N!¦À0wolŸœœ¡Mpú¶ƒó`f·ì
3437èíȹ/._ºÐIø@`ÆcòóñÝ*¹ó¢Ÿ×[+£3430èíȹ/._ºÐIø@`ÆcòóñÝ*¹ó¢Ÿ×[+£
3438š>¯¬ÉF­ˆj�—7à6üUè¹ÇûßïÑx?*·{ÕÐø�«î|Ëôws†(Žë2OrbËZu|Dàô‹ÿFÎÚ“»˜áä‚W$>ë Ï~öå3431š>¯¬ÉF­ˆj�—7à6üUè¹ÇûßïÑx?*·{ÕÐø�«î|Ëôws†(Žë2OrbËZu|Dàô‹ÿFÎÚ“»˜áä‚W$>ë Ï~öå
3439�’VûÅ
3440°�žWá‘—�÷7àªÉ_�jP£œTк/ýªeoŸbø3432°�žWá‘—�÷7àªÉ_�jP£œTк/ýªeoŸbø
3441Àu è˜A3433Àu è˜A
3434ž»R2K‹sßb·þZsö5Q�x¢]Å6Ý›i2="±`bÍAγ
3442sFìÄ!òF•‹3435sFìÄ!òF•‹
3443Àë« pVuªF/ÝãCjøöá¡Úœt䮨b™=u¦îôio¤ï™0Ìf»üÊ,ƒï3436Àë« pVuªF/ÝãCjøöá¡Úœt䮨b™=u¦îôio¤ï™0Ìf»üÊ,ƒï
3444c3437c
3445´^3438´^
3446þ-âÊÔ-ÿ~<3439þ-âÊÔ-ÿ~<
3447pìôO©F‡_(½ùz¿$3440pìôO©F‡_(½ùz¿$
3448¦$¶aYI£�‹+&Ø+ÿË(p3441¦$¶aYI£�‹+&Ø+ÿË(p
3449endstream3442/D [904 0 R /XYZ 56.693 660.867 null]
3450endobj3443>> endobj
3451905 0 obj <<3444907 0 obj <<
3452/Type /Page3445/D [904 0 R /XYZ 72.832 67.652 null]
3453/Contents 906 0 R
3454/Resources 904 0 R
3455/MediaBox [0 0 595.276 841.89]
3456/Parent 887 0 R
3457/Annots [ 903 0 R ]
3458>> endobj3446>> endobj
3459903 0 obj <<3447903 0 obj <<
3448/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R >>
3449/ProcSet [ /PDF /Text ]
3450>> endobj
3451911 0 obj <<
3452/Length 1526
3453/Filter /FlateDecode
3454>>
3455stream
3456xÚ­WY�ã6
3460~ϯð£4Z[ò•¾M§{]`»`3457~ϯð£4Z[ò•¾M§{]`»`
3461Ì3458Ì
3459ÅVb¡¶•ú˜ÌüûR¢¤
3462“ÉݾÄ%R$õñHlƒ(x?‹ì÷—ÕìÍ;–4"YFÓ`µ ÒŒdKdË„4VUpÞÖ|7Š~¾ i¦ó‡Õo(•�¼Èc-‹4!©=ÿI¥hÞ 53460“ÉݾÄ%R$õñHlƒ(x?‹ì÷—ÕìÍ;–4"YFÓ`µ ÒŒdKdË„4VUpÞÖ|7Š~¾ i¦ó‡Õo(•�¼Èc-‹4!©=ÿI¥hÞ 5
3463(5*Õ3461(5*Õ
3464^2NK2j%3J’%SÏqEáÝnªƒQ†A3462^2NK2j%3J’%SÏqEáÝnªƒQ†A
3465‘e´t·±ˆDq‚Bþè‚Å,”ƒþ&!ÇåP«Þî|~3463‘e´t·±ˆDq‚Bþè‚Å,”ƒþ&!ÇåP«Þî|~
3466kÕYvÙË݈'÷µ,kd‹Ž¯1àbDoÉQáÑ–ÿ-¬‚–73464kÕYvÙË݈'÷µ,kd‹Ž¯1àbDoÉQáÑ–ÿ-¬‚–7
3467’­ªä·(¢%¥êÎ$ÆÚ3465’­ªä·(¢%¥êÎ$ÆÚ
3466<òfršÕF»¥ýˆI“%ú¡vN>JC©
3468�ã3467�ã
3469rŽ¶“P߇†ê3468rŽ¶“P߇†ê
3470{ïF©Ú–wV®‘� óE’³pUK§Þ~wó8äý(Ë©á}óŒLp|35Hïkxø¸^áb¢wäPÛ{Õ%w\ˆõósütS»v8‚˜/DO4Höó"œ:‹ñ´kT/»-.+¹Ñfl¬5�Uì¢z¬Qu½»Â¹ W;ÞóVžâÍ.M24{UÛsÃs7ò§SÕƒ‡š^Éág­Á§“û¾y—ägx¥‰—ÔÆ+ÉèÙêZ�«§3469{ïF©Ú–wV®‘� óE’³pUK§Þ~wó8äý(Ë©á}óŒLp|35Hïkxø¸^áb¢wäPÛ{Õ%w\ˆõósütS»v8‚˜/DO4Höó"œ:‹ñ´kT/»-.+¹Ñfl¬5�Uì¢z¬Qu½»Â¹ W;ÞóVžâÍ.M24{UÛsÃs7ò§SÕƒ‡š^Éág­Á§“û¾y—ägx¥‰—ÔÆ+ÉèÙêZ�«§
3471k$;±ÿ˸÷J3470k$;±ÿ˸÷J
3471
3472«ô¯tj&Û«R"sù©Ôé]I¡ó3BéÚ… m?’ßòˆÕ3472«ô¯tj&Û«R"sù©Ôé]I¡ó3BéÚ… m?’ßòˆÕ
3473¼3473¼
3474i›qCW ð»3474i›qCW ð»
3475&©DE®º´@ë”’8ÊÑF3475&©DE®º´@ë”’8ÊÑF
3476â5—#Œæ¯úd_áŠSß3ÚùœFƒîP£öÀ‰¿ã�µíÄ#À‚z»šý3‹A.3476â5—#Œæ¯úd_áŠSß3ÚùœFƒîP£öÀ‰¿ã�µíÄ#À‚z»šý3‹A.
3477â /Hš¦Ë—¤(hP¶³û‡(¨`@Mزöæd0BsTÜÍþðUÿèÒ"†jŸUYÁðN�½×£HI~%ŠÚèC’¾xù‹…r=56z#[rè1Y¦©é‹4'EC¨ReÌ·ß<<.¥MJ–®±Ýè[iêß›fè°8.¡‰m'¾ÈtÖÃÆÎä›z”•8•hEYóʪ
3477ZälL3478ZälL
3478Ò'ª3479Ò'ª
3480³t°®i=P}­5`qgUÛ S‡èb‡GdB%¶rÚøáb–­„²§2f
3481Í’pP&_�³çÏRÇ™n j°› ¾:ÝDÓÇ^ŠG{æ�ßGú¹ÖN[
3479oxƒ›ÐN¤ \¦/à‹Ãyã5l¸7ÒVÞ3482oxƒ›ÐN¤ \¦/à‹Ãyã5l¸7ÒVÞ
34803483
3481™×I(Ú_“xðݨI·;M;fàeÀK"Hü�lé·ÁçËûYpoD¿Î—šFc5}�§Ð(+1?lŠ5.nÁm˜+äÔâúÏÏh<�_„î¾¢«Ì4p’?à€yÄ<ü öÅ~ž'áOZÌ7V­ÁD¾¦õ_Â^š`2�� ¦�g\h”˜ -Gü¶“Á+P‚Ò´^ MôŒ¸°3484™×I(Ú_“xðݨI·;M;fàeÀK"Hü�lé·ÁçËûYpoD¿Î—šFc5}�§Ð(+1?lŠ5.nÁm˜+äÔâúÏÏh<�_„î¾¢«Ì4p’?à€yÄ<ü öÅ~ž'áOZÌ7V­ÁD¾¦õ_Â^š`2�� ¦�g\h”˜ -Gü¶“Á+P‚Ò´^ MôŒ¸°
3482“Š,‡GÐ󀆓YnE'z>3485“Š,‡GÐ󀆓YnE'z>
3486«umoúUòVuæ‰aÀ† l÷‚ÌAži,[ŸäÌäØ%´Öjo0Q€øE»²e¸Vã¨Zd"`üfáÌÁ“{ÙUj�Ð;wÖ©ôvÀYƒ&à
3483¢%z©/ï,Qr{nm/*ÕNºS˜…ƒ™s&E_ÊFîÖŠ›”±Õlü,ã+ß7J(}>3487¢%z©/ï,Qr{nm/*ÕNºS˜…ƒ™s&E_ÊFîÖŠ›”±Õlü,ã+ß7J(}>
3484nDkØK^ÖÇ3488nDkØK^ÖÇ
3485–�öL‘¨¤�IyyeÐN"ÓYl¹¤Ç“ö´¼Š…Ëè+C7;ºÏ¤4§Tøêr˜ãü3489–�öL‘¨¤�IyyeÐN"ÓYl¹¤Ç“ö´¼Š…Ëè+C7;ºÏ¤4§Tøêr˜ãü
3486˜qåFp}Àχ@ï¥AP~×3490˜qåFp}Àχ@ï¥AP~×
3487—¹­BZí8ŠÖ‰yæè€|+m6hQcÚ%œAÐ$ “Ñ£¦‡‘|Ëe7Œv�Ÿ¡¬EËõ)]†7È3491—¹­BZí8ŠÖ‰yæè€|+m6hQcÚ%œAÐ$ “Ñ£¦‡‘|Ëe7Œv�Ÿ¡¬EËõ)]†7È
3488�æc}ôx¡ÁÖiD6ï:eéµ9ú½ÕòÊê1ÿ%({k¦¬C'î<eAf‹ÇÑÐ"Œo·nfáVXvжeõgäÈøÁqù\Ÿ3492�æc}ôx¡ÁÖiD6ï:eéµ9ú½ÕòÊê1ÿ%({k¦¬C'î<eAf‹ÇÑÐ"Œo·nfáVXvжeõgäÈøÁqù\Ÿ
3489�ïõƒ£87¿¼¹óL{îîöÃÛO7žÛ[¢»±~ðìLJÃ<ny’òpm3493�ïõƒ£87¿¼¹óL{îîöÃÛO7žÛ[¢»±~ðìLJÃ<ny’òpm
3490�|3494�|
3491¿:iјÐ(ÿ_gp=›º?HhôvÂaÿ|ùIÅ•3495¿:iјÐ(ÿ_gp=›º?HhôvÂaÿ|ùIÅ•
3492ìÜë—Uìõœ{yFÆ—<›êÁÁ„P˜<!w ³(céɘ}ÿ3496ìÜë—Uìõœ{yFÆ—<›êÁÁ„P˜<!w ³(céɘ}ÿ
34933497
3498endstream
3499endobj
3500910 0 obj <<
3501/Type /Page
3502/Contents 911 0 R
3503/Resources 909 0 R
3504/MediaBox [0 0 595.276 841.89]
3505/Parent 892 0 R
3506/Annots [ 908 0 R ]
3507>> endobj
3508908 0 obj <<
3494/Type /Annot3509/Type /Annot
3495/Border[0 0 0]/H/I/C[0 1 1]3510/Border[0 0 0]/H/I/C[0 1 1]
3496/Rect [153.951 283.44 418.104 296.456]3511/Rect [153.951 287.528 418.104 300.544]
3497/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.w3.org/TR/xpath)>>3512/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.w3.org/TR/xpath)>>
3498>> endobj3513>> endobj
3499907 0 obj <<3514912 0 obj <<
3500/D [905 0 R /XYZ 55.693 817.952 null]3515/D [910 0 R /XYZ 55.693 817.952 null]
3501>> endobj3516>> endobj
3502318 0 obj <<3517318 0 obj <<
3503/D [905 0 R /XYZ 56.693 785.197 null]3518/D [910 0 R /XYZ 56.693 785.197 null]
3504>> endobj3519>> endobj
3505322 0 obj <<3520322 0 obj <<
3506/D [905 0 R /XYZ 56.693 600.014 null]3521/D [910 0 R /XYZ 56.693 600.014 null]
3507>> endobj3522>> endobj
3508326 0 obj <<3523326 0 obj <<
3509/D [905 0 R /XYZ 56.693 356.1 null]3524/D [910 0 R /XYZ 56.693 360.188 null]
3510>> endobj3525>> endobj
3511904 0 obj <<3526330 0 obj <<
3512/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>3527/D [910 0 R /XYZ 56.693 230.18 null]
3513/ProcSet [ /PDF /Text ]3528>> endobj
3514>> endobj3529909 0 obj <<
3515909 0 obj3530/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
3531/ProcSet [ /PDF /Text ]
3532>> endobj
3533915 0 obj <<
3534/Length 533
3535/Filter /FlateDecode
3536>>
3537stream
3538xÚ�TMs›0½ûWp´(BB`
3516ÓŒÓ�qëNLOM2FS@3539ÓŒÓ�qëNLOM2FS@
3517Ðdúï+±’kH&îô´šÝÕÛ÷ö pp3540Ðdúï+±’kH&îô´šÝÕÛ÷ö pp
3541pð~ñ.[ÜÜ“uaÄ1�‚¬X‚Nƒ5ŽçI�
3518ƒïKš¬~dŸnî)¿ì$)G‰3542ƒïKš¬~dŸnî)¿ì$)G‰
3519ÐØt÷áök¶yX…„á%C«�%xùùãþn³ÝÞ~Ùì¾í¡”­¢õr·Ûî-æ;&>š!éå�ÐO )F)[ìPL.Ï5D1b1ñÄDUéç3543ÐØt÷áök¶yX…„á%C«�%xùùãþn³ÝÞ~Ùì¾í¡”­¢õr·Ûî-æ;&>š!éå�ÐO )F)[ìPL.Ï5D1b1ñÄDUéç
35203544
3521}^ÊÚ�E¥„«âAº¶Væêc"��xÄ3545}^ÊÚ�E¥„«âAº¶Væêc"��xÄ
3522?«ªš¶©S£;«Ê·©bèpUÿÏ E33546?«ªš¶©S£;«Ê·©bèpUÿÏ E3
35233áNDHb‘3¾©›"N£¹ne¥áJ)?+“âa-%35473áNDHb‘3¾©›"N£¹ne¥áJ)?+“âa-%
3524'ŠmÂ*¶rìÝF*ƒÓA!t ºƒbè&©þ5$Ól%ïT;@–i³…¶tçlE-­b«ŒÚe˜Èbúz)Æ­ç%l·°TæîZ•ôî»xT¢ÖÍ?x@RDRê<`΃îšô¥„Ä Ê3548'ŠmÂ*¶rìÝF*ƒÓA!t ºƒbè&©þ5$Ól%ïT;@–i³…¶tçlE-­b«ŒÚe˜Èbúz)Æ­ç%l·°TæîZ•ôî»xT¢ÖÍ?x@RDRê<`΃îšô¥„Ä Ê
3525ü¡ðäLÞOþ«ë嬸$´�+3549ü¡ðäLÞOþ«ë嬸$´�+
3526çºn+9Èê7à�;°�z>tò–Mâ(Û¡3550çºn+9Èê7à�;°�z>tò–Mâ(Û¡
3527Wõó6Us¬ÂƒévPºé½Ü;á62Ùq-Áœ“ãÊ%¨68î›h.3551Wõó6Us¬ÂƒévPºé½Ü;á62Ùq-Áœ“ãÊ%¨68î›h.
3528úžÞ¶�¡ˆQoC-~z~gFgÌùIvÝ_aá §dy�Eú—EÛ©f˜þˆJYµno²ïÅI¾úSÜd‹?‘ïh´3552úžÞ¶�¡ˆQoC-~z~gFgÌùIvÝ_aá §dy�Eú—EÛ©f˜þˆJYµno²ïÅI¾úSÜd‹?‘ïh´
3553endstream
3554endobj
3555914 0 obj <<
3556/Type /Page
3557/Contents 915 0 R
3558/Resources 913 0 R
3559/MediaBox [0 0 595.276 841.89]
3560/Parent 892 0 R
3561>> endobj
3562916 0 obj <<
3563/D [914 0 R /XYZ 55.693 817.952 null]
3564>> endobj
3565913 0 obj <<
3566/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R >>
3567/ProcSet [ /PDF /Text ]
3568>> endobj
3569918 0 obj
3529[444 463 407 500 389 278 500 500 278 278 444 278 778 556 444 500 463 389 389 333 556 500 722 500 500]3570[444 463 407 500 389 278 500 500 278 278 444 278 778 556 444 500 463 389 389 333 556 500 722 500 500]
3530endobj3571endobj
3531910 0 obj3572919 0 obj
3532[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]3573[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
3533endobj3574endobj
3534911 0 obj3575920 0 obj
3535[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]3576[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
3536endobj3577endobj
3537912 0 obj3578921 0 obj
3538[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600]3579[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600]
3539endobj3580endobj
3540913 0 obj3581922 0 obj
3541[500]3582[500]
3542endobj3583endobj
3543914 0 obj3584923 0 obj
3544[250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667]3585[250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667]
3545endobj3586endobj
3546915 0 obj3587924 0 obj
3547[611 611 167 333 611 333 333 333 0 333 606 0 667 500 333 333 0 0 0 0 0 0 0 0 0 0 0 0 333 227 250 278 402 500 500 889 833 278 333 333 444 606 250 333 250 296 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 667 722 833 611 556 833 833 389 389 778 611 1000 833 833 611 833 722 611 667 778 778 1000 667 667 667 333 606 333 606 500 278 500 611 444 611 500 389 556 611 333 333 611 333 889 611 556 611 611 389 444 333 611 556 833 500 556]3588[611 611 167 333 611 333 333 333 0 333 606 0 667 500 333 333 0 0 0 0 0 0 0 0 0 0 0 0 333 227 250 278 402 500 500 889 833 278 333 333 444 606 250 333 250 296 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 667 722 833 611 556 833 833 389 389 778 611 1000 833 833 611 833 722 611 667 778 778 1000 667 667 667 333 606 333 606 500 278 500 611 444 611 500 389 556 611 333 333 611 333 889 611 556 611 611 389 444 333 611 556 833 500 556]
3548endobj3589endobj
3549916 0 obj3590925 0 obj
3550[605 608 167 380 611 291 313 333 0 333 606 0 667 500 333 287 0 0 0 0 0 0 0 0 0 0 0 0 333 208 250 278 371 500 500 840 778 278 333 333 389 606 250 333 250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667 667 333 606 333 606 500 278 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 601 560 395 424 326 603 565 834 516 556 500 333 606 333 606 0 0 0 278 500 500 1000 500 500 333 1144 525 331 998 0 0 0 0 0 0 500 500]3591[605 608 167 380 611 291 313 333 0 333 606 0 667 500 333 287 0 0 0 0 0 0 0 0 0 0 0 0 333 208 250 278 371 500 500 840 778 278 333 333 389 606 250 333 250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667 667 333 606 333 606 500 278 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 601 560 395 424 326 603 565 834 516 556 500 333 606 333 606 0 0 0 278 500 500 1000 500 500 333 1144 525 331 998 0 0 0 0 0 0 500 500]
3551endobj3592endobj
3552917 0 obj <<3593926 0 obj <<
3553/Length1 14033594/Length1 1403
3554/Length2 60293595/Length2 6029
3555/Length3 03596/Length3 0
@@ -3493,7 +3533,7 @@
3493ªZtžÍ°3Pسáî3533ªZtžÍ°3Pسáî
3494—÷K”¹éc*Ûuµ!{‘T½í#¿ÕwÝb¼zAðû•B¯ºôÄ/ýð¾�¢­x9œ•Ó;¡õð¦|yäûƒ4»ÜÅ���GX=#Ø[l™�g\3534—÷K”¹éc*Ûuµ!{‘T½í#¿ÕwÝb¼zAðû•B¯ºôÄ/ýð¾�¢­x9œ•Ó;¡õð¦|yäûƒ4»ÜÅ���GX=#Ø[l™�g\
3495_†ü©YeE~ëãh{ÛŸ[M¿L½Ã3�%àפ›ÐR£;s!LnPÖSOæýöÓ.K”~Á‰—¢ÃxÒZû•áU[^Ûl<ÇöðÔWº¥6SÃgú‘ÊìÍîá�hW÷2gmâ&y<ù3535_†ü©YeE~ëãh{ÛŸ[M¿L½Ã3�%àפ›ÐR£;s!LnPÖSOæýöÓ.K”~Á‰—¢ÃxÒZû•áU[^Ûl<ÇöðÔWº¥6SÃgú‘ÊìÍîá�hW÷2gmâ&y<ù
3496(çëg"i™ðÞ¡h´áÙÖ¦à}žOB®çËó¯+Øî7xeª@“EÏùÞÌ× J3536(çëg"i™ðÞ¡h´áÙÖ¦à}žOB®çËó¯+Øî7xeª@“EÏùÞÌ× J
3497qÑPÕ¶”~Ëü¸m¥ÿŠþä°Æ~;ß©ï�HGï‹ïI‡E¾3537qÑPÕ¶”~Ëü¸m¥ÿŠþä°Æ~;ß©ï�HGï‹ïI‡E¾
3498´ö˜C�RÓ÷‘UALØöåú�Ê>ÿ:ÔDx’BF›IÉC%ü2`ò±Hj’Þx^x¢Yv5û6…�¬Kß´õY¨îÕ·‰¤{¼º¾?Z!ÍÇN�ÔJsÎË•ssc” {;2»â·SÍïdÕŸž¿=ÜáWE3538´ö˜C�RÓ÷‘UALØöåú�Ê>ÿ:ÔDx’BF›IÉC%ü2`ò±Hj’Þx^x¢Yv5û6…�¬Kß´õY¨îÕ·‰¤{¼º¾?Z!ÍÇN�ÔJsÎË•ssc” {;2»â·SÍïdÕŸž¿=ÜáWE
3499i¬¨Æ¤ åÊ]¾‹ÉZ%±£ëu„®)rÓüÅç’à:U»þëªzÌéój��€í„œ7Ž™:‹8¼ô3â-nåN¸|­™Âý¾·UNÑ“Âg€\hÔ—¾`¹›¥Ïå;H£r0æÇq/ÿ–µÚåh®,êÃÖÓ‡Zž²=îœâw¦^¿ú�ñ�G“ô9XpŽ¼GˆŽ+fÁçvŽP‡h5ùbþÚ-hÍkÀ­íí ~jÉ—aË‚¹±i«fAâðgÑœyKŽ"'krT�éU­GO(¢¾ÞνÅʨ±·�PÿꥪæÞ·ˆGK �¦I:$g°Ì¬€¯W ÈxÜÒ’eÎ`µ Y%âÉW×î›DS8žÑpûHžG�1¥R&¯Þé›v#S³Ï÷¦YžSÍSĘ3539i¬¨Æ¤ åÊ]¾‹ÉZ%±£ëu„®)rÓüÅç’à:U»þëªzÌéój��€í„œ7Ž™:‹8¼ô3â-nåN¸|­™Âý¾·UNÑ“Âg€\hÔ—¾`¹›¥Ïå;H£r0æÇq/ÿ–µÚåh®,êÃÖÓ‡Zž²=îœâw¦^¿ú�ñ�G“ô9XpŽ¼GˆŽ+fÁçvŽP‡h5ùbþÚ-hÍkÀ­íí ~jÉ—aË‚¹±i«fAâðgÑœyKŽ"'krT�éU­GO(¢¾ÞνÅʨ±·�PÿꥪæÞ·ˆGK �¦I:$g°Ì¬€¯W ÈxÜÒ’eÎ`µ Y%âÉW×î›DS8žÑpûHžG�1¥R&¯Þé›v#S³Ï÷¦YžSÍSĘ
3500G&ð¹Žû¼œ5ëÓ3540G&ð¹Žû¼œ5ëÓ
3501Ùâ¬_+,/w1ëÖÔr†^+/­�Ôì_ìˆ=}¾b‹ß+Õ”Ÿ6�_˜Ø:ôÜQ8U9dS™«'�8v²d×`—'=bò7e¨³ ñ‘ToØ F?±l¦iG«Š:—Vµt?ÏV›§ž^ü.‡¥}|œ>V¯6L+V½i<b�Êû,+ìqidú– éuò5áG\oA·¦É\êÜë|¼ÎAõ?ų‹ 3541Ùâ¬_+,/w1ëÖÔr†^+/­�Ôì_ìˆ=}¾b‹ß+Õ”Ÿ6�_˜Ø:ôÜQ8U9dS™«'�8v²d×`—'=bò7e¨³ ñ‘ToØ F?±l¦iG«Š:—Vµt?ÏV›§ž^ü.‡¥}|œ>V¯6L+V½i<b�Êû,+ìqidú– éuò5áG\oA·¦É\êÜë|¼ÎAõ?ų‹
3502endstream3542endstream
3503endobj3543endobj
3504918 0 obj <<3544927 0 obj <<
3505/Type /FontDescriptor3545/Type /FontDescriptor
3506/FontName /GFAWRG+CMSY103546/FontName /GFAWRG+CMSY10
3507/Flags 43547/Flags 4
@@ -3505,9 +3545,9 @@
3505/StemV 403545/StemV 40
3506/XHeight 4313546/XHeight 431
3507/CharSet (/bullet)3547/CharSet (/bullet)
3508/FontFile 917 0 R3548/FontFile 926 0 R
3509>> endobj3549>> endobj
3510919 0 obj <<3550928 0 obj <<
3511/Length1 16063551/Length1 1606
3512/Length2 81263552/Length2 8126
3513/Length3 03553/Length3 0
@@ -3559,7 +3599,7 @@
3559ðÕÍGÖÍ¢Ðí­ÖÅ'7Icñ”P‰"jó3ªe%/ÿÒ3599ðÕÍGÖÍ¢Ðí­ÖÅ'7Icñ”P‰"jó3ªe%/ÿÒ
35603600
3561°÷iæ3¿c`ÁáK¥©qGÙÊÄ3601°÷iæ3¿c`ÁáK¥©qGÙÊÄ
3562üu4 =Φ`,¯òUôõ,«3602üu4 =Φ`,¯òUôõ,«
3563OjW¢³WQŽv§\é<ÃN·h¦¶?ZnÔŠðKösq¤$3603OjW¢³WQŽv§\é<ÃN·h¦¶?ZnÔŠðKösq¤$
3564`¦UOòýûÞ^ñL±”óÌ´T%£šõÔ{±ÉuŸó€Y±‡à{KQËCøNüœ*–Ç3604`¦UOòýûÞ^ñL±”óÌ´T%£šõÔ{±ÉuŸó€Y±‡à{KQËCøNüœ*–Ç
35658pû�d7¬Áº]=¤Y{ø* †íää}dL—#>(B ã(ù¬ý¿èHóë36058pû�d7¬Áº]=¤Y{ø* †íää}dL—#>(B ã(ù¬ý¿èHóë
3566endstream3606endstream
3567endobj3607endobj
3568920 0 obj <<3608929 0 obj <<
3569/Type /FontDescriptor3609/Type /FontDescriptor
3570/FontName /NZTLTG+NimbusMonL-Bold3610/FontName /NZTLTG+NimbusMonL-Bold
3571/Flags 43611/Flags 4
@@ -3571,9 +3611,9 @@
3571/StemV 1013611/StemV 101
3572/XHeight 4393612/XHeight 439
3573/CharSet (/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y)3613/CharSet (/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y)
3574/FontFile 919 0 R3614/FontFile 928 0 R
3575>> endobj3615>> endobj
3576921 0 obj <<3616930 0 obj <<
3577/Length1 16123617/Length1 1612
3578/Length2 171983618/Length2 17198
3579/Length3 03619/Length3 0
@@ -3649,7 +3689,7 @@
3649ŸD%³¨£%Cp+¦¥‡j«æ¤o;ií¦3689ŸD%³¨£%Cp+¦¥‡j«æ¤o;ií¦
3650$­øVëÕ-xKu°è©^°µ“ï—ã´ñÖÕáâoèà]Ðftç-¡¯Qƒ­Z5œ[ÝŽ3690$­øVëÕ-xKu°è©^°µ“ï—ã´ñÖÕáâoèà]Ðftç-¡¯Qƒ­Z5œ[ÝŽ
3651XŒNì^?ŒSw–óÂ$,'ìЫ߄ó†ÀöÂõÞ±WýG3691XŒNì^?ŒSw–óÂ$,'ìЫ߄ó†ÀöÂõÞ±WýG
3652¼£„P®<œM@ÎíQÉü`Øʾxjõ¤[Å7‹‰Â‡§½3692¼£„P®<œM@ÎíQÉü`Øʾxjõ¤[Å7‹‰Â‡§½
3653_‹S¢\ª U4¢‘×fà=4µØsÏåtÒȱïZ ®�]'þ`å4€[ï�êœÛg¢H³Úv„‡Ãd�"˜‘¦‰7¯‹¼Êµ3693_‹S¢\ª U4¢‘×fà=4µØsÏåtÒȱïZ ®�]'þ`å4€[ï�êœÛg¢H³Úv„‡Ãd�"˜‘¦‰7¯‹¼Êµ
3654bçéÌj'úƵr@'¿L?ò`Ÿo6=i”L¤ÙDéVßä�̬výW�ÑW­£²Fú’ûÎ9#™e¬'Ö‚­¶ÀëØ?ɪ+¾þ•©.ð,i¤3694bçéÌj'úƵr@'¿L?ò`Ÿo6=i”L¤ÙDéVßä�̬výW�ÑW­£²Fú’ûÎ9#™e¬'Ö‚­¶ÀëØ?ɪ+¾þ•©.ð,i¤
3655BÙS«jÿªle>kÇfSÝDÿGêIžfí“!–?ɉXÑß߃ÞáÒ—¶UïÁп‚ªêÚ›V¤ï¸]Ç€?|xNØ\4„¢q½�æ«Y=a¯3695BÙS«jÿªle>kÇfSÝDÿGêIžfí“!–?ɉXÑß߃ÞáÒ—¶UïÁп‚ªêÚ›V¤ï¸]Ç€?|xNØ\4„¢q½�æ«Y=a¯
3656Ò°AqjÂîÅŠ—¬—ñ÷ÐÈw$ká�¡6úFÑ{Ç—9EúgbÁ6‡q~b8e3696Ò°AqjÂîÅŠ—¬—ñ÷ÐÈw$ká�¡6úFÑ{Ç—9EúgbÁ6‡q~b8e
3657‘Fö‰'Àû·½ŸU`½úÍ Õ‘AÜ3697‘Fö‰'Àû·½ŸU`½úÍ Õ‘AÜ
3658ŽÙ£6ô•Ù‹vmTUÌ€Ï?XdáⳌj3698ŽÙ£6ô•Ù‹vmTUÌ€Ï?XdáⳌj
3659«àÏöw<4}«ò7ŽíW)þÙj/Ön¼ sô:º_1EØæ?–ÅO¥èbDé­Ý3699«àÏöw<4}«ò7ŽíW)þÙj/Ön¼ sô:º_1EØæ?–ÅO¥èbDé­Ý
3660aóyëû¡±–*uG¿­kÏ­§ôëúq-3~ŸËúåR@ß¼g‡§�«À~"ÐÂDiiÖ×,Tú¯aWD×h]fl~?*ø‘F*|l‘,þ*x±ÔÖD¿ÆÔm‡w^ã)Êq£óòw<}\{�$åœtY'×úêÿ9eÔ"x�5¬÷3700aóyëû¡±–*uG¿­kÏ­§ôëúq-3~ŸËúåR@ß¼g‡§�«À~"ÐÂDiiÖ×,Tú¯aWD×h]fl~?*ø‘F*|l‘,þ*x±ÔÖD¿ÆÔm‡w^ã)Êq£óòw<}\{�$åœtY'×úêÿ9eÔ"x�5¬÷
3661îÛUdfí!O©ær‹³„º6R6ã�ûr˜¾xF…<Ž°“û"Æ/—‹Æ¶Ì��¸h³A›gþÑà{„2½שÍm…œÉÄ’° Ô¯•Á5þ”ªÞ˜·aˆkrŸöjøBª³Cc7»ÚVdˆKŠÑЧû‚ÞSxÄ×ñ}–$�¯�äñ£5K×Û¯»ï>K›”§;dñ^1N”égòfÇÜe¯ÌïÇ“¹`c™¯;ÖùÕécÆȩÓKWó¶ýˆƒH‚‚`|}pÉö3701îÛUdfí!O©ær‹³„º6R6ã�ûr˜¾xF…<Ž°“û"Æ/—‹Æ¶Ì��¸h³A›gþÑà{„2½שÍm…œÉÄ’° Ô¯•Á5þ”ªÞ˜·aˆkrŸöjøBª³Cc7»ÚVdˆKŠÑЧû‚ÞSxÄ×ñ}–$�¯�äñ£5K×Û¯»ï>K›”§;dñ^1N”égòfÇÜe¯ÌïÇ“¹`c™¯;ÖùÕécÆȩÓKWó¶ýˆƒH‚‚`|}pÉö
3662å`t}¦¨WÍÇ-XEÎR�K$ö3702å`t}¦¨WÍÇ-XEÎR�K$ö
3663›Y};à_ÚMÇU±§H Û²xI=ý4[ÕïB6øÈL¿p3703›Y};à_ÚMÇU±§H Û²xI=ý4[ÕïB6øÈL¿p
3664/lU˜dÔÁÖkõxE’ÝÏ~=ç‡>h½‰§»s3704/lU˜dÔÁÖkõxE’ÝÏ~=ç‡>h½‰§»s
3665endstream3705endstream
3666endobj3706endobj
3667922 0 obj <<3707931 0 obj <<
3668/Type /FontDescriptor3708/Type /FontDescriptor
3669/FontName /HRTLHX+NimbusMonL-Regu3709/FontName /HRTLHX+NimbusMonL-Regu
3670/Flags 43710/Flags 4
@@ -3661,9 +3701,9 @@
3661/StemV 413701/StemV 41
3662/XHeight 4263702/XHeight 426
3663/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/Y/a/ampersand/asterisk/at/b/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/plus/quotedbl/r/s/semicolon/slash/t/three/tilde/two/u/underscore/v/w/x/y/z/zero)3703/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/Y/a/ampersand/asterisk/at/b/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/plus/quotedbl/r/s/semicolon/slash/t/three/tilde/two/u/underscore/v/w/x/y/z/zero)
3664/FontFile 921 0 R3704/FontFile 930 0 R
3665>> endobj3705>> endobj
3666923 0 obj <<3706932 0 obj <<
3667/Length1 16303707/Length1 1630
3668/Length2 111183708/Length2 11118
3669/Length3 03709/Length3 0
@@ -3719,7 +3759,7 @@
3719¹Ft¨ÝT¯Àp*ìïqB¢ü#Èo³´Æ¹Ò…R:Óõ1˜÷šÜþõdVqÁÿ@e¸‚3759¹Ft¨ÝT¯Àp*ìïqB¢ü#Èo³´Æ¹Ò…R:Óõ1˜÷šÜþõdVqÁÿ@e¸‚
3720endstream3760endstream
3721endobj3761endobj
3722924 0 obj <<3762933 0 obj <<
3723/Type /FontDescriptor3763/Type /FontDescriptor
3724/FontName /NZQXJO+NimbusMonL-ReguObli3764/FontName /NZQXJO+NimbusMonL-ReguObli
3725/Flags 43765/Flags 4
@@ -3731,9 +3771,9 @@
3731/StemV 433771/StemV 43
3732/XHeight 4263772/XHeight 426
3733/CharSet (/A/C/D/F/I/L/M/N/O/S/T/a/b/bracketleft/bracketright/c/comma/d/e/f/g/greater/h/hyphen/i/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/quoteright/r/s/slash/t/two/u/underscore/v/w/x/y/z/zero)3773/CharSet (/A/C/D/F/I/L/M/N/O/S/T/a/b/bracketleft/bracketright/c/comma/d/e/f/g/greater/h/hyphen/i/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/quoteright/r/s/slash/t/two/u/underscore/v/w/x/y/z/zero)
3734/FontFile 923 0 R3774/FontFile 932 0 R
3735>> endobj3775>> endobj
3736925 0 obj <<3776934 0 obj <<
3737/Length1 16143777/Length1 1614
3738/Length2 193123778/Length2 19312
3739/Length3 03779/Length3 0
@@ -3813,7 +3853,7 @@
38130µ^”–¸Áò(Ï°–38530µ^”–¸Áò(Ï°–
3814endstream3854endstream
3815endobj3855endobj
3816926 0 obj <<3856935 0 obj <<
3817/Type /FontDescriptor3857/Type /FontDescriptor
3818/FontName /YFCLPA+URWPalladioL-Bold3858/FontName /YFCLPA+URWPalladioL-Bold
3819/Flags 43859/Flags 4
@@ -3825,9 +3865,9 @@
3825/StemV 1233865/StemV 123
3826/XHeight 4713866/XHeight 471
3827/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/X/a/b/c/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/plus/r/s/seven/six/slash/t/three/two/u/v/w/x/y/zero)3867/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/X/a/b/c/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/plus/r/s/seven/six/slash/t/three/two/u/v/w/x/y/zero)
3828/FontFile 925 0 R3868/FontFile 934 0 R
3829>> endobj3869>> endobj
3830927 0 obj <<3870936 0 obj <<
3831/Length1 16163871/Length1 1616
3832/Length2 226593872/Length2 22659
3833/Length3 03873/Length3 0
@@ -3908,7 +3948,7 @@
3908�è…7¥! L+zÅáœùæ…d¾pWq”õY´áÞne`bÁ©»Âß—‹®¹ ñÁ{Äß®å›5éŸ3948�è…7¥! L+zÅáœùæ…d¾pWq”õY´áÞne`bÁ©»Âß—‹®¹ ñÁ{Äß®å›5éŸ
3909“/+&¸sv1¤¯çg­ÃúTÒ˜3949“/+&¸sv1¤¯çg­ÃúTÒ˜
3910Ú�UæƒBaêwWŠõQõZb^ÞÅ[÷ú3950Ú�UæƒBaêwWŠõQõZb^ÞÅ[÷ú
3911<IÉ‹TÛåÚ3951<IÉ‹TÛåÚ
3912Á‰…á�͹í>£¿ð+GßÙ’±ž.ö¾\à:RÑ ¯(%ì®zkŒëǘ¿£ßk³¬çëFË|ñÒj€^É6ìnBnÒ·±ÎbNIØ�lõ_Lg 3952Á‰…á�͹í>£¿ð+GßÙ’±ž.ö¾\à:RÑ ¯(%ì®zkŒëǘ¿£ßk³¬çëFË|ñÒj€^É6ìnBnÒ·±ÎbNIØ�lõ_Lg 
3913endstream3953endstream
3914endobj3954endobj
3915928 0 obj <<3955937 0 obj <<
3916/Type /FontDescriptor3956/Type /FontDescriptor
3917/FontName /RQREYX+URWPalladioL-Roma3957/FontName /RQREYX+URWPalladioL-Roma
3918/Flags 43958/Flags 4
@@ -3920,9 +3960,9 @@
3920/StemV 843960/StemV 84
3921/XHeight 4693961/XHeight 469
3922/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/a/asterisk/b/c/colon/comma/d/e/eight/equal/f/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedblleft/quotedblright/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)3962/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/a/asterisk/b/c/colon/comma/d/e/eight/equal/f/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedblleft/quotedblright/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
3923/FontFile 927 0 R3963/FontFile 936 0 R
3924>> endobj3964>> endobj
3925929 0 obj <<3965938 0 obj <<
3926/Length1 16303966/Length1 1630
3927/Length2 138273967/Length2 13827
3928/Length3 03968/Length3 0
@@ -3993,7 +4033,7 @@
3993'Â)‰~G�-ÜÌÕ½ÕX:IM¸¨¯_|qì¹È–çð¬ee[Ùø´hé4033'Â)‰~G�-ÜÌÕ½ÕX:IM¸¨¯_|qì¹È–çð¬ee[Ùø´hé
3994k=Øÿ,*°ÏÂ9ÔÍ”Mt°­ÝêÓá™zÓW»ÛñÄá³Ù‹¡Ø|žp‡’õwàÂ(4034k=Øÿ,*°ÏÂ9ÔÍ”Mt°­ÝêÓá™zÓW»ÛñÄá³Ù‹¡Ø|žp‡’õwàÂ(
3995ÚiœŠ²q­!ÎO]ò¬gJnÊûsÜ}4035ÚiœŠ²q­!ÎO]ò¬gJnÊûsÜ}
3996endstream4036endstream
3997endobj4037endobj
3998930 0 obj <<4038939 0 obj <<
3999/Type /FontDescriptor4039/Type /FontDescriptor
4000/FontName /AKWMVX+URWPalladioL-Roma-Slant_1674040/FontName /AKWMVX+URWPalladioL-Roma-Slant_167
4001/Flags 44041/Flags 4
@@ -4005,9 +4045,9 @@
4005/StemV 844045/StemV 84
4006/XHeight 4694046/XHeight 469
4007/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/Y/five/four/one/period/six/three/two)4047/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/Y/five/four/one/period/six/three/two)
4008/FontFile 929 0 R4048/FontFile 938 0 R
4009>> endobj4049>> endobj
4010931 0 obj <<4050940 0 obj <<
4011/Length1 16204051/Length1 1620
4012/Length2 89684052/Length2 8968
4013/Length3 04053/Length3 0
@@ -4051,7 +4091,7 @@
4051Šz¿©ûîìÿÊä$!qf"ñU)§µ4¢»÷1(¿æã�`¹‘áÿ…_zp4091Šz¿©ûîìÿÊä$!qf"ñU)§µ4¢»÷1(¿æã�`¹‘áÿ…_zp
4052endstream4092endstream
4053endobj4093endobj
4054932 0 obj <<4094941 0 obj <<
4055/Type /FontDescriptor4095/Type /FontDescriptor
4056/FontName /ILEWFP+URWPalladioL-Ital4096/FontName /ILEWFP+URWPalladioL-Ital
4057/Flags 44097/Flags 4
@@ -4063,138 +4103,144 @@
4063/StemV 784103/StemV 78
4064/XHeight 4824104/XHeight 482
4065/CharSet (/a/b/c/d/e/f/h/i/l/m/n/o/p/r/s/t/u/y)4105/CharSet (/a/b/c/d/e/f/h/i/l/m/n/o/p/r/s/t/u/y)
4066/FontFile 931 0 R4106/FontFile 940 0 R
4067>> endobj4107>> endobj
4068908 0 obj <<4108917 0 obj <<
4069/Type /Encoding4109/Type /Encoding
4070/Differences [2/fi/fl 34/quotedbl/numbersign/dollar 38/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 64/at/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U/V/W/X/Y 91/bracketleft 93/bracketright 95/underscore 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright 147/quotedblleft/quotedblright 152/tilde]4110/Differences [2/fi/fl 34/quotedbl/numbersign/dollar 38/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 64/at/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U/V/W/X/Y 91/bracketleft 93/bracketright 95/underscore 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright 147/quotedblleft/quotedblright 152/tilde]
4071>> endobj4111>> endobj
4072453 0 obj <<4112458 0 obj <<
4073/Type /Font4113/Type /Font
4074/Subtype /Type14114/Subtype /Type1
4075/BaseFont /GFAWRG+CMSY104115/BaseFont /GFAWRG+CMSY10
4076/FontDescriptor 918 0 R4116/FontDescriptor 927 0 R
4077/FirstChar 154117/FirstChar 15
4078/LastChar 154118/LastChar 15
4079/Widths 913 0 R4119/Widths 922 0 R
4080>> endobj4120>> endobj
4081472 0 obj <<4121477 0 obj <<
4082/Type /Font4122/Type /Font
4083/Subtype /Type14123/Subtype /Type1
4084/BaseFont /NZTLTG+NimbusMonL-Bold4124/BaseFont /NZTLTG+NimbusMonL-Bold
4085/FontDescriptor 920 0 R4125/FontDescriptor 929 0 R
4086/FirstChar 974126/FirstChar 97
4087/LastChar 1214127/LastChar 121
4088/Widths 910 0 R4128/Widths 919 0 R
4089/Encoding 908 0 R4129/Encoding 917 0 R
4090>> endobj4130>> endobj
4091454 0 obj <<4131459 0 obj <<
4092/Type /Font4132/Type /Font
4093/Subtype /Type14133/Subtype /Type1
4094/BaseFont /HRTLHX+NimbusMonL-Regu4134/BaseFont /HRTLHX+NimbusMonL-Regu
4095/FontDescriptor 922 0 R4135/FontDescriptor 931 0 R
4096/FirstChar 344136/FirstChar 34
4097/LastChar 1524137/LastChar 152
4098/Widths 912 0 R4138/Widths 921 0 R
4099/Encoding 908 0 R4139/Encoding 917 0 R
4100>> endobj4140>> endobj
4101468 0 obj <<4141473 0 obj <<
4102/Type /Font4142/Type /Font
4103/Subtype /Type14143/Subtype /Type1
4104/BaseFont /NZQXJO+NimbusMonL-ReguObli4144/BaseFont /NZQXJO+NimbusMonL-ReguObli
4105/FontDescriptor 924 0 R4145/FontDescriptor 933 0 R
4106/FirstChar 354146/FirstChar 35
4107/LastChar 1224147/LastChar 122
4108/Widths 911 0 R4148/Widths 920 0 R
4109/Encoding 908 0 R4149/Encoding 917 0 R
4110>> endobj4150>> endobj
4111376 0 obj <<4151380 0 obj <<
4112/Type /Font4152/Type /Font
4113/Subtype /Type14153/Subtype /Type1
4114/BaseFont /YFCLPA+URWPalladioL-Bold4154/BaseFont /YFCLPA+URWPalladioL-Bold
4115/FontDescriptor 926 0 R4155/FontDescriptor 935 0 R
4116/FirstChar 24156/FirstChar 2
4117/LastChar 1214157/LastChar 121
4118/Widths 915 0 R4158/Widths 924 0 R
4119/Encoding 908 0 R4159/Encoding 917 0 R
4120>> endobj4160>> endobj
4121335 0 obj <<4161339 0 obj <<
4122/Type /Font4162/Type /Font
4123/Subtype /Type14163/Subtype /Type1
4124/BaseFont /RQREYX+URWPalladioL-Roma4164/BaseFont /RQREYX+URWPalladioL-Roma
4125/FontDescriptor 928 0 R4165/FontDescriptor 937 0 R
4126/FirstChar 24166/FirstChar 2
4127/LastChar 1484167/LastChar 148
4128/Widths 916 0 R4168/Widths 925 0 R
4129/Encoding 908 0 R4169/Encoding 917 0 R
4130>> endobj4170>> endobj
4131595 0 obj <<4171600 0 obj <<
4132/Type /Font4172/Type /Font
4133/Subtype /Type14173/Subtype /Type1
4134/BaseFont /ILEWFP+URWPalladioL-Ital4174/BaseFont /ILEWFP+URWPalladioL-Ital
4135/FontDescriptor 932 0 R4175/FontDescriptor 941 0 R
4136/FirstChar 974176/FirstChar 97
4137/LastChar 1214177/LastChar 121
4138/Widths 909 0 R4178/Widths 918 0 R
4139/Encoding 908 0 R4179/Encoding 917 0 R
4140>> endobj4180>> endobj
4141421 0 obj <<4181425 0 obj <<
4142/Type /Font4182/Type /Font
4143/Subtype /Type14183/Subtype /Type1
4144/BaseFont /AKWMVX+URWPalladioL-Roma-Slant_1674184/BaseFont /AKWMVX+URWPalladioL-Roma-Slant_167
4145/FontDescriptor 930 0 R4185/FontDescriptor 939 0 R
4146/FirstChar 464186/FirstChar 46
4147/LastChar 894187/LastChar 89
4148/Widths 914 0 R4188/Widths 923 0 R
4149/Encoding 908 0 R4189/Encoding 917 0 R
4150>> endobj4190>> endobj
4151336 0 obj <<4191340 0 obj <<
4152/Type /Pages4192/Type /Pages
4153/Count 64193/Count 6
4154/Parent 933 0 R4194/Parent 942 0 R
4155/Kids [330 0 R 338 0 R 373 0 R 418 0 R 435 0 R 439 0 R]4195/Kids [334 0 R 342 0 R 377 0 R 422 0 R 440 0 R 444 0 R]
4156>> endobj4196>> endobj
4157455 0 obj <<4197460 0 obj <<
4158/Type /Pages4198/Type /Pages
4159/Count 64199/Count 6
4160/Parent 933 0 R4200/Parent 942 0 R
4161/Kids [450 0 R 457 0 R 463 0 R 484 0 R 504 0 R 515 0 R]4201/Kids [455 0 R 462 0 R 468 0 R 489 0 R 509 0 R 520 0 R]
4162>> endobj4202>> endobj
4163580 0 obj <<4203585 0 obj <<
4164/Type /Pages4204/Type /Pages
4165/Count 64205/Count 6
4166/Parent 933 0 R4206/Parent 942 0 R
4167/Kids [548 0 R 583 0 R 588 0 R 592 0 R 601 0 R 605 0 R]4207/Kids [553 0 R 588 0 R 593 0 R 597 0 R 606 0 R 610 0 R]
4168>> endobj4208>> endobj
4169627 0 obj <<4209632 0 obj <<
4170/Type /Pages4210/Type /Pages
4171/Count 64211/Count 6
4172/Parent 933 0 R4212/Parent 942 0 R
4173/Kids [609 0 R 629 0 R 664 0 R 687 0 R 722 0 R 752 0 R]4213/Kids [614 0 R 634 0 R 669 0 R 692 0 R 727 0 R 757 0 R]
4174>> endobj4214>> endobj
4175813 0 obj <<4215818 0 obj <<
4176/Type /Pages4216/Type /Pages
4177/Count 64217/Count 6
4178/Parent 933 0 R4218/Parent 942 0 R
4179/Kids [778 0 R 815 0 R 825 0 R 847 0 R 866 0 R 879 0 R]4219/Kids [783 0 R 820 0 R 830 0 R 852 0 R 871 0 R 884 0 R]
4180>> endobj4220>> endobj
4181887 0 obj <<4221892 0 obj <<
4182/Type /Pages4222/Type /Pages
4183/Count 54223/Count 6
4184/Parent 933 0 R4224/Parent 942 0 R
4185/Kids [884 0 R 889 0 R 895 0 R 899 0 R 905 0 R]4225/Kids [889 0 R 894 0 R 900 0 R 904 0 R 910 0 R 914 0 R]
4186>> endobj4226>> endobj
4187933 0 obj <<4227942 0 obj <<
4188/Type /Pages4228/Type /Pages
4189/Count 354229/Count 36
4190/Kids [336 0 R 455 0 R 580 0 R 627 0 R 813 0 R 887 0 R]4230/Kids [340 0 R 460 0 R 585 0 R 632 0 R 818 0 R 892 0 R]
4191>> endobj4231>> endobj
4192934 0 obj <<4232943 0 obj <<
4193/Type /Outlines4233/Type /Outlines
4194/First 3 0 R4234/First 3 0 R
4195/Last 319 0 R4235/Last 319 0 R
4196/Count 54236/Count 5
4197>> endobj4237>> endobj
4238331 0 obj <<
4239/Title 332 0 R
4240/A 329 0 R
4241/Parent 319 0 R
4242/Prev 323 0 R
4243>> endobj
4198327 0 obj <<4244327 0 obj <<
4199/Title 328 0 R4245/Title 328 0 R
4200/A 325 0 R4246/A 325 0 R
@@ -4204,6 +4250,7 @@
4204/Title 324 0 R4250/Title 324 0 R
4205/A 321 0 R4251/A 321 0 R
4206/Parent 319 0 R4252/Parent 319 0 R
4253/Next 331 0 R
4207/First 327 0 R4254/First 327 0 R
4208/Last 327 0 R4255/Last 327 0 R
4209/Count -14256/Count -1
@@ -4211,11 +4258,11 @@
4211319 0 obj <<4258319 0 obj <<
4212/Title 320 0 R4259/Title 320 0 R
4213/A 317 0 R4260/A 317 0 R
4214/Parent 934 0 R4261/Parent 943 0 R
4215/Prev 271 0 R4262/Prev 271 0 R
4216/First 323 0 R4263/First 323 0 R
4217/Last 323 0 R4264/Last 331 0 R
4218/Count -14265/Count -2
4219>> endobj4266>> endobj
4220315 0 obj <<4267315 0 obj <<
4221/Title 316 0 R4268/Title 316 0 R
@@ -4297,7 +4344,7 @@
4297271 0 obj <<4344271 0 obj <<
4298/Title 272 0 R4345/Title 272 0 R
4299/A 269 0 R4346/A 269 0 R
4300/Parent 934 0 R4347/Parent 943 0 R
4301/Prev 67 0 R4348/Prev 67 0 R
4302/Next 319 0 R4349/Next 319 0 R
4303/First 275 0 R4350/First 275 0 R
@@ -4659,7 +4706,7 @@
465967 0 obj <<470667 0 obj <<
4660/Title 68 0 R4707/Title 68 0 R
4661/A 65 0 R4708/A 65 0 R
4662/Parent 934 0 R4709/Parent 943 0 R
4663/Prev 23 0 R4710/Prev 23 0 R
4664/Next 271 0 R4711/Next 271 0 R
4665/First 71 0 R4712/First 71 0 R
@@ -4738,7 +4785,7 @@
473823 0 obj <<478523 0 obj <<
4739/Title 24 0 R4786/Title 24 0 R
4740/A 21 0 R4787/A 21 0 R
4741/Parent 934 0 R4788/Parent 943 0 R
4742/Prev 3 0 R4789/Prev 3 0 R
4743/Next 67 0 R4790/Next 67 0 R
4744/First 27 0 R4791/First 27 0 R
@@ -4774,1425 +4821,1434 @@
47743 0 obj <<48213 0 obj <<
4775/Title 4 0 R4822/Title 4 0 R
4776/A 1 0 R4823/A 1 0 R
4777/Parent 934 0 R4824/Parent 943 0 R
4778/Next 23 0 R4825/Next 23 0 R
4779/First 7 0 R4826/First 7 0 R
4780/Last 19 0 R4827/Last 19 0 R
4781/Count -44828/Count -4
4782>> endobj4829>> endobj
4783935 0 obj <<4830944 0 obj <<
4784/Names [(Doc-Start) 334 0 R (Hfootnote.1) 902 0 R (chapter*.1) 377 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]4831/Names [(Doc-Start) 338 0 R (Hfootnote.1) 907 0 R (chapter*.1) 381 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]
4785/Limits [(Doc-Start) (chapter.3)]4832/Limits [(Doc-Start) (chapter.3)]
4786>> endobj4833>> endobj
4787936 0 obj <<4834945 0 obj <<
4788/Names [(chapter.4) 270 0 R (chapter.5) 318 0 R (figure.2.1) 579 0 R (lstlisting.2.-1) 466 0 R (lstlisting.2.-2) 488 0 R (lstlisting.2.-3) 507 0 R]4835/Names [(chapter.4) 270 0 R (chapter.5) 318 0 R (figure.2.1) 584 0 R (lstlisting.2.-1) 471 0 R (lstlisting.2.-2) 493 0 R (lstlisting.2.-3) 512 0 R]
4789/Limits [(chapter.4) (lstlisting.2.-3)]4836/Limits [(chapter.4) (lstlisting.2.-3)]
4790>> endobj4837>> endobj
4791937 0 obj <<4838946 0 obj <<
4792/Names [(lstlisting.2.-4) 528 0 R (lstlisting.2.-5) 540 0 R (lstlisting.2.-6) 551 0 R (lstlisting.3.-10) 619 0 R (lstlisting.3.-11) 623 0 R (lstlisting.3.-12) 625 0 R]4839/Names [(lstlisting.2.-4) 533 0 R (lstlisting.2.-5) 545 0 R (lstlisting.2.-6) 556 0 R (lstlisting.3.-10) 624 0 R (lstlisting.3.-11) 628 0 R (lstlisting.3.-12) 630 0 R]
4793/Limits [(lstlisting.2.-4) (lstlisting.3.-12)]4840/Limits [(lstlisting.2.-4) (lstlisting.3.-12)]
4794>> endobj4841>> endobj
4795938 0 obj <<4842947 0 obj <<
4796/Names [(lstlisting.3.-13) 632 0 R (lstlisting.3.-14) 636 0 R (lstlisting.3.-15) 638 0 R (lstlisting.3.-16) 640 0 R (lstlisting.3.-17) 645 0 R (lstlisting.3.-18) 649 0 R]4843/Names [(lstlisting.3.-13) 637 0 R (lstlisting.3.-14) 641 0 R (lstlisting.3.-15) 643 0 R (lstlisting.3.-16) 645 0 R (lstlisting.3.-17) 650 0 R (lstlisting.3.-18) 654 0 R]
4797/Limits [(lstlisting.3.-13) (lstlisting.3.-18)]4844/Limits [(lstlisting.3.-13) (lstlisting.3.-18)]
4798>> endobj4845>> endobj
4799939 0 obj <<4846948 0 obj <<
4800/Names [(lstlisting.3.-19) 653 0 R (lstlisting.3.-20) 659 0 R (lstlisting.3.-21) 661 0 R (lstlisting.3.-22) 667 0 R (lstlisting.3.-23) 671 0 R (lstlisting.3.-24) 673 0 R]4847/Names [(lstlisting.3.-19) 658 0 R (lstlisting.3.-20) 664 0 R (lstlisting.3.-21) 666 0 R (lstlisting.3.-22) 672 0 R (lstlisting.3.-23) 676 0 R (lstlisting.3.-24) 678 0 R]
4801/Limits [(lstlisting.3.-19) (lstlisting.3.-24)]4848/Limits [(lstlisting.3.-19) (lstlisting.3.-24)]
4802>> endobj4849>> endobj
4803940 0 obj <<4850949 0 obj <<
4804/Names [(lstlisting.3.-25) 675 0 R (lstlisting.3.-26) 677 0 R (lstlisting.3.-27) 681 0 R (lstlisting.3.-28) 683 0 R (lstlisting.3.-29) 690 0 R (lstlisting.3.-30) 695 0 R]4851/Names [(lstlisting.3.-25) 680 0 R (lstlisting.3.-26) 682 0 R (lstlisting.3.-27) 686 0 R (lstlisting.3.-28) 688 0 R (lstlisting.3.-29) 695 0 R (lstlisting.3.-30) 700 0 R]
4805/Limits [(lstlisting.3.-25) (lstlisting.3.-30)]4852/Limits [(lstlisting.3.-25) (lstlisting.3.-30)]
4806>> endobj4853>> endobj
4807941 0 obj <<4854950 0 obj <<
4808/Names [(lstlisting.3.-31) 697 0 R (lstlisting.3.-32) 700 0 R (lstlisting.3.-33) 705 0 R (lstlisting.3.-34) 707 0 R (lstlisting.3.-35) 710 0 R (lstlisting.3.-36) 715 0 R]4855/Names [(lstlisting.3.-31) 702 0 R (lstlisting.3.-32) 705 0 R (lstlisting.3.-33) 710 0 R (lstlisting.3.-34) 712 0 R (lstlisting.3.-35) 715 0 R (lstlisting.3.-36) 720 0 R]
4809/Limits [(lstlisting.3.-31) (lstlisting.3.-36)]4856/Limits [(lstlisting.3.-31) (lstlisting.3.-36)]
4810>> endobj4857>> endobj
4811942 0 obj <<4858951 0 obj <<
4812/Names [(lstlisting.3.-37) 717 0 R (lstlisting.3.-38) 725 0 R (lstlisting.3.-39) 731 0 R (lstlisting.3.-40) 733 0 R (lstlisting.3.-41) 739 0 R (lstlisting.3.-42) 743 0 R]4859/Names [(lstlisting.3.-37) 722 0 R (lstlisting.3.-38) 730 0 R (lstlisting.3.-39) 736 0 R (lstlisting.3.-40) 738 0 R (lstlisting.3.-41) 744 0 R (lstlisting.3.-42) 748 0 R]
4813/Limits [(lstlisting.3.-37) (lstlisting.3.-42)]4860/Limits [(lstlisting.3.-37) (lstlisting.3.-42)]
4814>> endobj4861>> endobj
4815943 0 obj <<4862952 0 obj <<
4816/Names [(lstlisting.3.-43) 745 0 R (lstlisting.3.-44) 755 0 R (lstlisting.3.-45) 760 0 R (lstlisting.3.-46) 763 0 R (lstlisting.3.-47) 766 0 R (lstlisting.3.-48) 771 0 R]4863/Names [(lstlisting.3.-43) 750 0 R (lstlisting.3.-44) 760 0 R (lstlisting.3.-45) 765 0 R (lstlisting.3.-46) 768 0 R (lstlisting.3.-47) 771 0 R (lstlisting.3.-48) 776 0 R]
4817/Limits [(lstlisting.3.-43) (lstlisting.3.-48)]4864/Limits [(lstlisting.3.-43) (lstlisting.3.-48)]
4818>> endobj4865>> endobj
4819944 0 obj <<4866953 0 obj <<
4820/Names [(lstlisting.3.-49) 774 0 R (lstlisting.3.-50) 781 0 R (lstlisting.3.-51) 785 0 R (lstlisting.3.-52) 787 0 R (lstlisting.3.-53) 789 0 R (lstlisting.3.-54) 794 0 R]4867/Names [(lstlisting.3.-49) 779 0 R (lstlisting.3.-50) 786 0 R (lstlisting.3.-51) 790 0 R (lstlisting.3.-52) 792 0 R (lstlisting.3.-53) 794 0 R (lstlisting.3.-54) 799 0 R]
4821/Limits [(lstlisting.3.-49) (lstlisting.3.-54)]4868/Limits [(lstlisting.3.-49) (lstlisting.3.-54)]
4822>> endobj4869>> endobj
4823945 0 obj <<4870954 0 obj <<
4824/Names [(lstlisting.3.-55) 796 0 R (lstlisting.3.-56) 798 0 R (lstlisting.3.-57) 803 0 R (lstlisting.3.-58) 805 0 R (lstlisting.3.-59) 807 0 R (lstlisting.3.-60) 809 0 R]4871/Names [(lstlisting.3.-55) 801 0 R (lstlisting.3.-56) 803 0 R (lstlisting.3.-57) 808 0 R (lstlisting.3.-58) 810 0 R (lstlisting.3.-59) 812 0 R (lstlisting.3.-60) 814 0 R]
4825/Limits [(lstlisting.3.-55) (lstlisting.3.-60)]4872/Limits [(lstlisting.3.-55) (lstlisting.3.-60)]
4826>> endobj4873>> endobj
4827946 0 obj <<4874955 0 obj <<
4828/Names [(lstlisting.3.-61) 811 0 R (lstlisting.3.-62) 818 0 R (lstlisting.3.-63) 821 0 R (lstlisting.3.-64) 828 0 R (lstlisting.3.-65) 831 0 R (lstlisting.3.-66) 834 0 R]4875/Names [(lstlisting.3.-61) 816 0 R (lstlisting.3.-62) 823 0 R (lstlisting.3.-63) 826 0 R (lstlisting.3.-64) 833 0 R (lstlisting.3.-65) 836 0 R (lstlisting.3.-66) 839 0 R]
4829/Limits [(lstlisting.3.-61) (lstlisting.3.-66)]4876/Limits [(lstlisting.3.-61) (lstlisting.3.-66)]
4830>> endobj4877>> endobj
4831947 0 obj <<4878956 0 obj <<
4832/Names [(lstlisting.3.-67) 837 0 R (lstlisting.3.-68) 840 0 R (lstlisting.3.-69) 843 0 R (lstlisting.3.-7) 612 0 R (lstlisting.3.-70) 850 0 R (lstlisting.3.-71) 853 0 R]4879/Names [(lstlisting.3.-67) 842 0 R (lstlisting.3.-68) 845 0 R (lstlisting.3.-69) 848 0 R (lstlisting.3.-7) 617 0 R (lstlisting.3.-70) 855 0 R (lstlisting.3.-71) 858 0 R]
4833/Limits [(lstlisting.3.-67) (lstlisting.3.-71)]4880/Limits [(lstlisting.3.-67) (lstlisting.3.-71)]
4834>> endobj4881>> endobj
4835948 0 obj <<4882957 0 obj <<
4836/Names [(lstlisting.3.-72) 856 0 R (lstlisting.3.-73) 859 0 R (lstlisting.3.-74) 862 0 R (lstlisting.3.-75) 869 0 R (lstlisting.3.-76) 872 0 R (lstlisting.3.-77) 875 0 R]4883/Names [(lstlisting.3.-72) 861 0 R (lstlisting.3.-73) 864 0 R (lstlisting.3.-74) 867 0 R (lstlisting.3.-75) 874 0 R (lstlisting.3.-76) 877 0 R (lstlisting.3.-77) 880 0 R]
4837/Limits [(lstlisting.3.-72) (lstlisting.3.-77)]4884/Limits [(lstlisting.3.-72) (lstlisting.3.-77)]
4838>> endobj4885>> endobj
4839949 0 obj <<4886958 0 obj <<
4840/Names [(lstlisting.3.-8) 615 0 R (lstlisting.3.-9) 617 0 R (lstnumber.-1.1) 467 0 R (lstnumber.-1.10) 478 0 R (lstnumber.-1.11) 479 0 R (lstnumber.-1.12) 480 0 R]4887/Names [(lstlisting.3.-8) 620 0 R (lstlisting.3.-9) 622 0 R (lstnumber.-1.1) 472 0 R (lstnumber.-1.10) 483 0 R (lstnumber.-1.11) 484 0 R (lstnumber.-1.12) 485 0 R]
4841/Limits [(lstlisting.3.-8) (lstnumber.-1.12)]4888/Limits [(lstlisting.3.-8) (lstnumber.-1.12)]
4842>> endobj4889>> endobj
4843950 0 obj <<4890959 0 obj <<
4844/Names [(lstnumber.-1.13) 481 0 R (lstnumber.-1.14) 482 0 R (lstnumber.-1.15) 487 0 R (lstnumber.-1.2) 469 0 R (lstnumber.-1.3) 470 0 R (lstnumber.-1.4) 471 0 R]4891/Names [(lstnumber.-1.13) 486 0 R (lstnumber.-1.14) 487 0 R (lstnumber.-1.15) 492 0 R (lstnumber.-1.2) 474 0 R (lstnumber.-1.3) 475 0 R (lstnumber.-1.4) 476 0 R]
4845/Limits [(lstnumber.-1.13) (lstnumber.-1.4)]4892/Limits [(lstnumber.-1.13) (lstnumber.-1.4)]
4846>> endobj4893>> endobj
4847951 0 obj <<4894960 0 obj <<
4848/Names [(lstnumber.-1.5) 473 0 R (lstnumber.-1.6) 474 0 R (lstnumber.-1.7) 475 0 R (lstnumber.-1.8) 476 0 R (lstnumber.-1.9) 477 0 R (lstnumber.-10.1) 620 0 R]4895/Names [(lstnumber.-1.5) 478 0 R (lstnumber.-1.6) 479 0 R (lstnumber.-1.7) 480 0 R (lstnumber.-1.8) 481 0 R (lstnumber.-1.9) 482 0 R (lstnumber.-10.1) 625 0 R]
4849/Limits [(lstnumber.-1.5) (lstnumber.-10.1)]4896/Limits [(lstnumber.-1.5) (lstnumber.-10.1)]
4850>> endobj4897>> endobj
4851952 0 obj <<4898961 0 obj <<
4852/Names [(lstnumber.-10.2) 621 0 R (lstnumber.-10.3) 622 0 R (lstnumber.-11.1) 624 0 R (lstnumber.-12.1) 626 0 R (lstnumber.-13.1) 633 0 R (lstnumber.-13.2) 634 0 R]4899/Names [(lstnumber.-10.2) 626 0 R (lstnumber.-10.3) 627 0 R (lstnumber.-11.1) 629 0 R (lstnumber.-12.1) 631 0 R (lstnumber.-13.1) 638 0 R (lstnumber.-13.2) 639 0 R]
4853/Limits [(lstnumber.-10.2) (lstnumber.-13.2)]4900/Limits [(lstnumber.-10.2) (lstnumber.-13.2)]
4854>> endobj4901>> endobj
4855953 0 obj <<4902962 0 obj <<
4856/Names [(lstnumber.-13.3) 635 0 R (lstnumber.-14.1) 637 0 R (lstnumber.-15.1) 639 0 R (lstnumber.-16.1) 641 0 R (lstnumber.-16.2) 642 0 R (lstnumber.-16.3) 643 0 R]4903/Names [(lstnumber.-13.3) 640 0 R (lstnumber.-14.1) 642 0 R (lstnumber.-15.1) 644 0 R (lstnumber.-16.1) 646 0 R (lstnumber.-16.2) 647 0 R (lstnumber.-16.3) 648 0 R]
4857/Limits [(lstnumber.-13.3) (lstnumber.-16.3)]4904/Limits [(lstnumber.-13.3) (lstnumber.-16.3)]
4858>> endobj4905>> endobj
4859954 0 obj <<
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches