Sie sind auf Seite 1von 361

��#ࡱ#�################>###��

#################<###########>#######����####;###���������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
�������������������������������������������������������������������������#[�
###�#�###############!#####bjbj���################## ###4(##ΐ##ΐ##!
###############################��##########��##########��##################�#####z#
######z###�#######�#######�#######�#######�###############����####�#######�#######�
#######�#######�#######�#######�###0###########################################�###
####�#######�###########################################################$###�###�##
#W###>###*#######################�#######�#######################�#######�#######�#
######�#######*###############�#######�###########################�###?
#######\#######\#######\#######�#######�###############�###########################
####\#######################################################�######################
#\###############\#################################################################
##############\###############����#####c2��#�#########�#######�###j###\############
###�#######U###0###�#######\#######�#######\#######�#######\#######################
########################################################�###############�#######\##
#�###�#######�#######\#######�#######�#######################################�#####
##�#######�#######*#######*#######################################\################
#######################�#######�#######�#######�#######�#######�#######�#######�###
############����####����####����############����####����####����####����####����###
#����####����####����####����####����####����####����####����####����####�#######�
#######�#######�#######�#######�#######�###########################################
####################�#######�#######�#######z###
##�###:#########

###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
########MECHANISM FOR SHARING AND LIMITING THE VISIBILITY OF VARIABLESThe scope of
a variable defines the lexical areas of a program in which the variable may be
referenced. The extent or lifetime refers to the different periods of time for
which avariable remains in existence.global: exist throughout the lifetime of the
entire program and can be referenced any where.static: exist throughout lifetime of
entire program but can only be referenced in the function (or module) in which they
are declared.local: (also called automatic) exist only for the duration of a call
to the routine in which they are declared; a new variable is created each time the
routine is entered (and destroy ed on exit). They may be referenced only in the
routine in which they are declared. Locals may have even smaller scope inside an
inner block within a routine (although they might �exist� for the entirety of the
routine for convenience of the compiler, they can only be referenced within their
block).dy namic: variables that are created during program execution; usually
represented by an address held in a variable of one of the above classes. Extent is
the lifetime of the program (unless explicitly returned to the sy stem); scope is
the scope of the variable used to hold its address.Both global and static variables
have a single instance that persists throughout the life of the program; these two
storage classes differ only in scope. The usual implementation is to group all of
these variables together in the global/static data segment of the executable. These
locations are fixed at the end of the compilation process.Local variables only come
into existence on entry to a routine and persist until its exit. To handle these we
use a runtime stack that holds the values of locals. The area of memory used to
hold all the locals of a routine is called the stack frame. The stack frame for the
routine currently executing will be on top of the stack. The address of the current
stack frame is usually held in a machine register and is called the frame pointer.
The visibility of a feature specifies whether it can be used by other members
(variables, methods, classes). The modifier associated with every member of the
class determines what level of visibility that member has. An access control
modifier can be used to control the visibility data member or a member function. In
java, for example, an access modifier is used as a key word that determines what
level of access or visibility a particular java variable/method or class has.Some
levels of visibility or access level modifiers include:PublicIf a variable or
method is declared public, it means that it can be accessed by any one or any class
(irrespective of which package they are in). A public class has global scope, and
an instance can be created from any where within or outside of a program.For members
there are two additional access modifiers private and protectedProtectedThe
protected modifier is a slight oddity . A protected variable is visible within a
class, and in sub classes, the same package but not elsewhere. The qualification
that it is visible from the same package can give more visibility than y ou might
suspect. Any class in the same directory is considered to be in the default
package, and thus protected classes will be visible. This means that a protected
variable is more visible than a variable defined with no access modifier.##A
variable defined with no access modifier is said to have default visibility .
Default visibility means a variable can be seen within the class, and from
elsewhere within the same package, but not from sub-classes that are not in the
same package.PrivatePrivate members are only visible from within the same class as
they are created in. This means they are NOT visible within sub classes. This
allows a member (variable) to be insulated from being modified by any methods
except those in the current class. This is useful in separating the interface from
the implementation.A member may refer to variables, methods, classes.
The visibility of a feature specifies whether it can be used by other classifiers.
Scope is the mechanism by which it is possible to limit the visibility of
declarations in a program.An access control modifier can be used to control the
visibility of a data member or a member function within a class. The modifier
associated with every member of the class determines what level of visibility that
member has. Levels of visibility /access level modifiers include:Public is one that
is visible to all. A class that is declared as public is visible to all classes
every where. If a class has no modifier (the default is also known as package-
private), it is visible only within its own package (group of related classes). For
members there are two additional access modifiers private and protected. The
private modifier specifies that the member can only be accessed in its own class.
The protected modifier specifies that the member can only be accessed within its
own package and in addition by a subclass of its class in another package.
A member may refer to variables, methods, classes.
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
################################################################e new variable.
Deallocating a dangling pointer's storage means that the storage of the new
variable may be allocated to y et another variable, and actions on the old and new
variables may conflict with each other.Unlike memory leaks, dereferencing a
dangling pointer after the freed storage is reallocated almost alway s creates a
program error that is hard to debug. As a result, programmers are more inclined not
to deallocate a variable if they are not certain it is unreferencable.A related
form of programming error is to access an illegal 'address. Common examples of such
errors include dereferencing null pointers and accessing an out-of-bounds array
element. It is better for such errors to be detected than to have the program
silently corrupt the results. In fact, many security violations exploit programming
errors of this ty pe, where certain program inputs allow unintended access to data,
leading to a "hacker" taking control of the program and machine. One antidote is to
have the compiler insert checks with every access, to make sure it is within
bounds. The compiler�s optimizer can discover and remove those checks that are not
really necessary because the optimizer can deduce that the access must be within
bounds.Introduction to Garbage CollectionData that cannot be referenced is
generally known as garbage. Many high-level programming languages remove the burden
of manual memory management from the programmer by offering automatic garbage
collection, which deallocates unreachable data. Garbage collection dates back to
the initial implementation of Lisp in 1958. Other significant languages that offer
garbage collection include Java, Perl, ML, Modula-3, Prolog, and Smalltalk.Garbage
collection (GC) is a process that identifies memory blocks that will not be used
again and makes their storage available for reuse. A heap block is live in a
program state if it will be accessed later in the program execution, and otherwise
the block is dead. It is not in general possible to prove which blocks are live in
a program state, and thus a garbage collector must identify and reuse only blocks
that it can prove are dead. The engineering challenge is to design a garbage
collector that efficiently preserves live memory blocks and a minimum of dead
blocks.There are two stages to garbage collection: a marking phase and a collecting
phase.Marking phase: The marking phase begins outside the heap with the pointers
that point to active heap elements. The chains of pointers are followed and each
heap element in the chain is marked to indicate that it is active. When this phase
is finished only active heap elements are marked as active.Collecting phase: Ub the
collecting phase the heap is scanned and each element which is not active is
returned to the free-space list. During this phase the marked bits are reset to
prepare for a later garbage collection.Programming without some form of automatic
memory management is dangerous and may lead to run-time ty pe errors. Here is why : A
programmer forced to manage memory manually may inadvertently release a block of
memory for reuse, y et retain the ability to access the block by holding on to a
pointer to the block (a so-called dangling pointer). When this memory block is
reused by the sy stem, the value in it will be accessible by two independent
pointers, perhaps even under two independent ty pes (the ty pe expected by the
logically invalid pointer and that expected by the new pointer). Modify ing the
value via one pointer will unexpectedly cause the value accessible via the other to
be changed as well, leading to insidious bugs that are notoriously difficult to
catch. The program is incorrect, and in some cases, ty pe safety can be lost (The
same problem arises in languages that do not do array bounds checking, a deficiency
exploited by countless security attacks.)Thus a critical run-time service in ty pe-
safe programming language implementations is the safe allocation and deallocation
of memory for compound values such as tuples, array s, lists, e.t.c. Such values are
stored in units called blocks in a region of memory called the heapGarbage
collection also reduces memory leaks that arise when a programmer does not
deallocate dead blocks so they can be used for something else. Memory leaks can
cause a program to abort with an out-of-memory error that could have been avoided
if the dead blocks were reused. It is in fact common for long-running programs to
crash because of slow memory leaks that exhaust available storage. Memory leaks are
notoriously difficult to find and fix, especially in a large and complex program
like an operating sy stem. Garbage collectors can also exhibit memory leaks, but
they are better equipped than human beings to reason about block liveness, and
ty pically do a better job of efficiently reclaiming dead blocks.The basic
principles of garbage collection are:Find data objects in a program that cannot be
accessed in the future Reclaim the resources used by those objects A Basic
Requirement: Ty pe Safety Not all languages are good candidates for automatic garbage
collection. For a garbage collector to work, it must be able to tell whether any
given data element or component of a data element is, or could be used as, a
pointer to a chunk of allocated memory space. A language in which the ty pe of any
data component can be determined is said to be ty pe safe. There are ty pe-safe
languages like ML, for which we can determine ty pes at compile time. There are
other ty pe safe languages, ' like Java, whose ty pes cannot be determined at compile
time, but can be determined at run time. The latter are called dy namically ty ped
languages. If a language is neither statically nor dy namically ty pe safe, then it
is said to be unsafe..Unsafe languages, which unfortunately include some of the
most important languages such as C and C++, are bad candidates for automatic
garbage collection. In unsafe languages, memory addresses can be manipulated
arbitrarily : arbitrary arithmetic operations can be applied to pointers to create
new pointers, and arbitrary integers can be cast as pointers: Thus a program
theoretically could refer to any location in memory at any time. Consequently , no
memory location can be considered to be inaccessible, and no storage can ever be
reclaimed safely .In practice, most C and C++ programs do not generate pointers
arbitrarily , and a theoretically unsound garbage collector that works well
empirically has been developed and used. In a sy stem with manual heap deallocation,
where programmers must explicitly declare when heap blocks may be reused, it is
possible for a sophisticated ty pe checker that models the state of memory to
guarantee that there are no dangling pointers. But any such ty pe sy stem necessarily
limits expressiveness by rejecting some programs that are actually safe. In
contrast, garbage collection guarantees value integrity and ty pe safety without
limiting expressiveness.Performance MetricsGarbage collection is often so expensive
that, although it was invented decades ago and absolutely prevents memory leaks, it
has y et to be adopted by many mainstream programming languages. Many different
approaches have been proposed over the y ears, and there is not one clearly best
garbage-collection algorithm. Before exploring the options, let us first enumerate
the performance metrics that must be considered when designing a garbage collector.
Overall Execution Time. Garbage collection can be very slow. It is important that
it not significantly increase the total run time of an application. Since the
garbage collector necessarily must touch a lot of data, its performance is
determined greatly by how it leverages the memory subsy stem.Space Usage. It is
important that garbage collection avoid fragmentation and make the best use of the
available memory .Pause Time. Simple garbage collectors are notorious for causing
programs- the mutators - to pause suddenly for an extremely long time, as garbage
collection kicks in without warning. Thus, besides minimizing the overall execution
time, it is desirable that the maximum pause time be minimized. As an important
special case, real-time applications require certain computations to be completed
within a time limit. We must either suppress garbage collection
while performing real-time tasks, or restrict maximum pause time. Thus, garbage
collection is seldom used in real-time applications.Program Locality . We cannot
evaluate the speed of a garbage collector solely by its running time. The garbage
collector controls the placement of data and thus influences the data locality of
the mutator program. It can improve a mutator's temporal locality by freeing up
space and reusing it; it can improve the mutator's spatial locality by relocating
data used together in the same cache or pages.Some of these design goals conflict
with one another, and tradeoffs must be made carefully by considering how programs
ty pically behave. Also objects of different characteristics may favor different
treatments, requiring a collector to use different techniques for different kinds
of objects.For example, the number of objects allocated is dominated by small
objects, so allocation of small objects must not incur a large overhead. On the
other hand, consider garbage collectors that relocate reachable objects. Relocation
is expensive when dealing with large objects, but less so with small objects.As
another example, in general, the longer we wait to collect garbage in a trace-based
collector, the larger the fraction of objects that can be collected. The reason is
that objects often "die y oung," so if we wait a while, many of the newly allocated
objects will become unreachable. Such a collector thus costs less on the average,
per unreachable object collected. On the other hand, infrequent collection
increases a program's memory usage, decreases its data locality , and increases the
length of the pauses.In contrast, a reference-counting collector, by introducing a
constant overhead to many of the mutator's operations, can slow down the overall
execution of a program significantly . On the other hand, reference counting does
not create long pauses, and it is memory efficient, because it finds garbage as
soon as it is produced (with the exception of certain cy clic structures).Language
design can also affect the characteristics of memory usage. Some languages
encourage a programming sty le that generates a lot of garbage. For example,
programs in functional or almost functional programming languages create more
objects to avoid mutating existing objects. In Java, all objects, other than base
ty pes like integers and references, are allocated on the heap and not the stack,
even if their lifetimes are confined to that of one function invocation. This
design frees the programmer from worry ing about the lifetimes of variables, at the
expense of generating more garbage. Compiler optimizations have been developed to
analy ze the lifetimes of variables and allocate them on the stack whenever
possible.DisadvantagesTy pically , garbage collection has certain disadvantages:
Garbage collection consumes computing resources in deciding which memory to free,
even though the programmer may have already known this information. The penalty for
the convenience of not annotating object lifetime manually in the source code is
#HYPERLINK "http://en.wikipedia.org/wiki/Computational_overhead" \o "Computational
overhead"#overhead#, which can lead to decreased or uneven performance. Interaction
with memory hierarchy effects can make this overhead intolerable in circumstances
that are hard to predict or to detect in routine testing. The moment when the
garbage is actually collected can be unpredictable, resulting in stalls scattered
throughout a session. Unpredictable stalls can be unacceptable in #HYPERLINK
"http://en.wikipedia.org/wiki/Real-time_computing" \o "Real-time computing"#real-
time environments#, in #HYPERLINK
"http://en.wikipedia.org/wiki/Transaction_processing" \o "Transaction
processing"#transaction processing#, or in interactive programs. Incremental,
concurrent, and real-time garbage collectors address these problems, with vary ing
trade-offs. ####################################-###c###�###�##�
##########�###�###�###�###!
###"###n###o###�###�###########S###T###�###�###�###�###�###�###�###�###�###�###�###
�####### ###U###V###�###�###�###�###;###<###�###�###�###�###
###2###N###����ӻӻӻӻӻӻӻӻӻӻӻӯӻӻ�������������������#######h�#�##hJM�#5#�CJ##OJ##QJ##aJ
####h�#�#CJ##OJ##QJ##aJ#####h�#�##hJM�#CJ##OJ##QJ##aJ#####h�M}#CJ##OJ##QJ##aJ#####h
JM�#CJ##OJ##QJ##aJ#####h58$#CJ##OJ##QJ##aJ#####hJM�##hJM�#CJ##OJ##QJ##aJ#####hJM�##
hJM�#5#�CJ##OJ##QJ##aJ####hf]#5#�CJ##OJ##QJ##aJ###3############-###.###�###�###�
##� ##$###%###�###�###j##k
##C###D###�###�###�###�###�############�############�############�############�####
########�############�############�############�############�############�#########
###�############�############�############�############�############�############�#
###########�############�################$##d�####�##7$#8$#H$#a$#gd�^p#####$##d�###
#�##7$#8$#H$#a$#gdAW�#####$##d�####�##7$#8$#H$#a$#gdB
�#####d�####�##7$#8$#H$#gdJM�#####�@##d�####�##7$#8$#H$#^�@#gdf]###�###�###�######
#g###h###�###�#######

###�###�###H###I###########�############�############�############�############�###
#########�############�############�############�############�############�########
####�############�############�############�###############################$##d�###
#�##7$#8$#H$#a$#gdAW�#####$##d�####�##7$#8$#H$#a$#gd�c#####d�####�##7$#8$#H$#gd�#�
#####d�####�##7$#8$#H$#gd�#�######$#
&##F###d�####�##7$#8$#H$#a$#gdAW�#####d�####�##7$#8$#H$#gdJM�######$#
&##F###d�####�##7$#8$#H$#a$#gdB
�###N###O###�###�###�###f###g###h###�###�###�###�###�###�#######

###*###N###O###�###�###�###�###�###�###�###�###�###�###B###C###�###�###�###�###'###
(###u###v###�###�###########H###I###�###����������ʾ����������s s �������������������
��###h�{###h�{##5#�CJ##OJ##QJ##aJ####h�Y###h�#�#CJ##OJ##QJ##aJ#####h�{###h�#�#CJ##O
J##QJ##aJ#####h�{###h�#�#5#�CJ##OJ##QJ##aJ####h�{##5#�CJ##OJ##QJ##aJ####h�{##CJ##OJ
##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ#####h�[�#CJ##OJ##QJ##aJ#####h�#�##hJM�#CJ##OJ##QJ#
#aJ#####h�#�##h�#�#CJ##OJ##QJ##aJ##-�###�###�###�###
%###&###t###u###�###�###########Z###[###�###�###�###�###D###E###�###�###�###�###�##
#
###/###0###k###l###�###�###########P###Q###�###�#######$###r###s###�###�###�###�###
3 ##4 ##� ##� ##� ##� ##"!###!##n!##o!##�!##�!###"##
"##+"##3"##7"##A"##X"##Y"##�"##�"##�"##�"##����������������������������������
����������������������������������###########################h�Y###h�{##CJ##OJ##QJ#
#aJ#####h�Y###hn###CJ##OJ##QJ##aJ#####hn###CJ##OJ##QJ##aJ#####h�Y###h�#�#CJ##OJ##QJ
##aJ#####h�{##CJ##OJ##QJ##aJ##E####k###l###�###�###�###�"##�"##�"##�"##�$##�$##�&##
�&##G'##H'##s(##t(##�############�############�############�############�##########
##�############�############�############�############�############�############�##
##########�############�############�############�############�###################$
##d�####�##7$#8$#H$#a$#gd�c######d�####�##7$#8$#H$#gd?
*U#####d�####�##7$#8$#H$#gd�#�#####d�####�##7$#8$#H$#gd�{######$##d�####�##7$#8$#H$
#a$#gd�H�#####d�####�##7$#8$#H$#gd�#�#####$##d�####�##7$#8$#H$#a$#gdAW�###�"##�"##�
"##�"##�"##I###J###�###�###�###�###+$##,$##;$##v$##w$##�$##�$##�$##�$##�$##�$##I
%##J%##M%##R%##�%##�%##�%##�%##�%##�
%##B&##C&##�&##�&##�&##�&##�&##�&##�&##������ɽɽɽ�ɽ�蟍~r~r~�~r~�~r~r~r~r~rf##h?
*U#CJ##OJ##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ#####h^4�##h�#�#CJ##OJ##QJ##aJ###"#h^4�##h
�#�#5#�CJ##OJ##QJ##\#�aJ###"#h�#�##h�#�#6#�CJ##OJ##QJ##\#�aJ#####hAW�#CJ##OJ##QJ##a
J#####h@#�#CJ##OJ##QJ##aJ#####h�{###h�{##CJ##OJ##QJ##aJ#####h�{###h�{##5#�CJ##OJ##Q
J##aJ####h�{##CJ##OJ##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ##(�&###'###'###'##!'##.'##5'##
E'##G'##H'##V'##�'##�'##�'##�'###(###(##`(##a(##s(##t(##�(##�(##�(###)###)##Q)##R)#
#S)##�)##�)##�)##�)##4*##5*##�*##�*##�*##�*##�*##�*###+## +##l+##m+##�+##�+###,##
,##X,##Y,##�,##�,###-###-##p-##q-##�-##�-##�-##�-
###.###.###.##,.##0.##���������������������������ɺɺɺɺɺ��ɺɺɺɺ ɺ ɺ ɺ ɺ ɺ ɺ ɺ ɨ��#######"#h^4
�##h�#�#5#�CJ##OJ##QJ##\#�aJ#####h^4�##h�#�#CJ##OJ##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ#
####h?*U#CJ##OJ##QJ##aJ#####h�#�##h?*U#5#�CJ##OJ##QJ##aJ####h�#�##h?
*U#CJ##OJ##QJ##aJ##At(##R)##S)###-###-
##1.##2.##�0##.1##t1##�1##�1##�1##�1##�1##�4##�4##�6##�6##�############�###########
#�############�############�############�############�############�############�###
#########�############�############�############�############�############�########
####�############�############�##########################$##d�####�##7$#8$#H$#a$#gd
�a�#####d�####�##7$#8$#H$#gd�{#####

&##F###d�####�d##�d#[$#\$#gd�#�######d�####�d##�d#[$#\
$#gd�#�#####d�####�##7$#8$#H$#gd�#�#####$##d�####�##7$#8$#H$#a$#gd�c####0.##2.##R.#
#_.##{.##|.##�.##�.###/###/##l/##m/##�/##�/##
0###0##[0##\0##�0##�0##�0##�1##�1##�1##�1##�1##�1##�1##�1###2###2##E2##e2##�2##�2##
�2###3##.3##N3##�3##�3##�3##��������������������� Ĥ ���xixixixixixixi###h�{###h�{##CJ
##OJ##QJ##aJ#####h@#�#CJ##OJ##QJ##aJ#####h@#�##h�{##5#�CJ##OJ##QJ##aJ####h@#�##h@#�
#5#�CJ##OJ##QJ##aJ####h�{###h�#�#CJ##OJ##QJ##aJ###
#h�####h�#�#CJ##OJ##PJ##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ###"#h^4�##h�#�#5#�CJ##OJ##QJ
##\#�aJ#####h^4�##h�#�#CJ##OJ##QJ##aJ#####h�#�#5#�CJ##OJ##QJ##\#�aJ##)�3##�3##!
4##34##e4##�4##�4##�4##+5##,5##}5##~5##�5##�5##^6##_6##�6##�6##�6##�6###7###7##^7##
_7##x7##y 7##z7##�7##�7##�7##�7##A8##B8##V8##o8##�8##�8##�8##�8##)9##*9##K9##L9##`9#
#a9##�9##�9##�������������������������rrrrrrrr���u�##h_Q###h�{##CJ##OJ##QJ##aJ#####
h_Q###h_Q##CJ##OJ##QJ##aJ#####h_Q###h�{##5#�CJ##OJ##QJ##aJ####h�{###h_Q##CJ##OJ##QJ
##aJ#####h^4�##h�#�#CJ##OJ##QJ##aJ#####h�#�#CJ##OJ##QJ##aJ#####h�{##CJ##OJ##QJ##aJ#
####h_Q##CJ##OJ##QJ##aJ#####h�{###h�{##CJ##OJ##QJ##aJ#####h@#�#CJ##OJ##QJ##aJ##.�6#
#y 7##z7##K9##L9##`9##a9##$;##L<##�<###?##�@##�@##�A##�A##�B##�B###E##|
F##}F##�############�############�############�############�############�##########
##�############�############�############�############�############�############�##
##########�############�############�############�############�############�#######
########################

&##F###d�####�##7$#8$#H$#gd�{#######$#
&##F###d�####�##7$#8$#H$#a$#gd�a�#####d�####�##7$#8$#H$#gd�{######$##d�####�##7$#8$
#H$#a$#gd�a�#####d�####�##7$#8$#H$#gd_Q####�9##�9##�9##J:##K:##�:##�:##�:##�:##$;##
;;##p;##q;##�;##�;###<##
<##L<##P<##Q<##X<##�<##�<##�<##�<##J=##K=##�=##�=##�=##�=###>###>##c>##d>##�>##�>##
�>##�>###?##!?##V?##W?##�?##�?##�?##�?##2@##3@##Q@##|
@##}@##�@##�@##�@##�@##;A##<A##�A##�A###B###B##aB##bB##�B##�B##�B##�B##������������
���������������������������������###hRK�#CJ##OJ##QJ##aJ#####h_Q##CJ##OJ##QJ##aJ####
#h_Q###h_Q##5#�CJ##OJ##QJ##aJ####h_Q###h�{##5#�CJ##OJ##QJ##aJ####h_Q###h_Q##CJ##OJ#
#QJ##aJ#####h_Q###h�{##CJ##OJ##QJ##aJ##C�B##IC##JC##�C##�C##�C##�C##2D##3D##�D##�D#
#�D##�D##QE##RE##�E##�E##�E##�E##6F##7F##y F##zF##|
F##}F##�F##�F###G###G##^G##_G##�G##�G##�G##�G##JH##KH##�H##�H##�H##�H##8I##9I##VI##
WI##cI##dI##eI##�J##�J##�J##�J##�J##��������������������������������������������Ǹ�
�����####h�#�####j#####h�#�#U##)#h�####h�#�#B*#CJ##OJ##PJ##QJ##aJ##ph######h?
*U##h�{##5#�CJ##OJ##QJ##^J##aJ####h?*U#5#�CJ##OJ##QJ##^J##aJ####h?
*U##h�#�#5#�CJ##OJ##QJ##^J##aJ####hf]#CJ##OJ##QJ##aJ#####h_Q##CJ##OJ##QJ##aJ#####h
_Q###h�{##CJ##OJ##QJ##aJ##4}F##VI##WI##eI##�I##�K##�M##�M##�M##�############�######
######�############�############�############�############�############�###########
###################################################################################
###################################################################################
###########################################################################$#

&##F###d�####�d##�d#[$#\$#a$#gdRK�######d�####�d##�d#[$#\
$#gd�#�#####d�####�##7$#8$#H$#gd�{######$##d�####�##7$#8$#H$#a$#gd�a�###�J##�J##qL#
#rL##�L##�L##�L##�L##�L##�L##@M##AM##WM##XM##�M##�M##�M##�M##����������������######
###################################################################################
###################################################################################
###################################################################################
##############################
#h�{###h�#�#CJ##OJ##QJ##^J##aJ#####h�#�#B*#CJ##OJ##PJ##QJ##aJ##ph######h�#�##)#h�##
##h�#�#B*#CJ##OJ##PJ##QJ##aJ##ph######j#####h�#�#U####2#1�h#:p#>�##��/ ��=!
��#"��##��#$��#%�###��##��#
��#################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
################################################j###########################�######
#�###�###�###�###�###�###�###6###6###6###6###6###6###6###6###6###v###v###v###v###v#
##v###v###v###v###6###6###6###6###6###6###>###6###6###6###6###6###6###6###6###6###6
###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###�###6###6###
####6###6###6###6###6###6###6###6###�###6###6###6###6###6###6###6###6###6###6###6##
#6###h###H###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6#
##6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6
###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###
6###6###6###6###6###6###�###6###2#######�###�###�###�###########
###0###@###P###`###p###�###�###�###�###�###�###########2###(###�###�###
###0###@###P###`###p###�###�###�###�###�###�###########
###0###@###P###`###p###�###�###�###�###�###�###########
###0###@###P###`###p###�###�###�###�###�###�###########
###0###@###P###`###p###�###�###�###�###�###�###########
###0###@###P###`###p###�###�###�###�###�###�###########
###0###@###P###`###p###�###�###8###X###�###########V###~### ###OJ##PJ##QJ##_H##mH
#nH #sH #tH #####J##`�##J#
####I�#####N#o#r#m#a#l###
####d#####��###CJ##_H##aJ##mH #sH #tH ###`##@####`#
####I�### #H#e#a#d#i#n#g# #2########d�###��##�h##�###@##@&####5##CJ
#OJ##PJ##QJ##aJ#################D#A ��#D#
##########D#e#f#a#u#l#t# #P#a#r#a#g#r#a#p#h# #F#o#n#t#####R#i#��#R#
#######0#
#T#a#b#l#e# #N#o#r#m#a#l######�###4�###
#l#4�#######a�#########(#k ��#(########0###N#o# #L#i#s#t#####
#####H#�o��#H#
####I�#####H#e#a#d#i#n#g# #2# #C#h#a#r#####5#�CJ #OJ##PJ##QJ###<#�@####<#
####I�# ###L#i#s#t# #P#a#r#a#g#r#a#p#h#######^��###PK##########!
#��#��###########[Content_Ty pes].xml���N�0#E�H��-J��@#%�ǎǢ|�ș$#�‫ �ز‬U��L�TB�
#l,�3�;�r�##�Ø��J��B+$�#G]��7O‫٭‬V��##<a�#��(7��I��R�{�pgL�=��r#����8#�5v&��#�uQ�뉑
#
8��C��#��#X=���$ࡱ�?6N�JC#��#���� F #B.ʹ'�.�+���Y�T�#��^e5�5���#�#ð
�_�g #-�;�����Yl�|��‫ݎ‬
6 ^�N�#`�?�#��[###��##PK##########!
#�֧��� ###6#######_rels/.rels���j�0
�ࡱ��}Q �#%v/ ��C/�}#�(h"#�#��O�#
�#����� = �������
# #��C?�h�v=�ࡱ ࡱ�ࡱ
Ʌࡱࡱ
��
%#[xp��۵_
{ �Pѣ<�1#�H�0�##��O�R�Bd��#�JE�4b$ࡱ ��q_�#��#�6L��#R�7`������00O�ࡱ�,�E#n7�Liࡱ
b��/�S���� e �#���###��##PK##########!#ky �#�###�#######theme/theme/themeManager.xml
�M
� #@�}�w��7c�(Eb�ˮ��#C�#AǠҟ����� ՛ �#�e�.���|,�#��H#�,l��#��x#ɴ�#�I�sQ}#Ր����ֵ
7 �#KY,
+�!�,�^�$j=�GW���)�E�+&

#8�###��##PK##########!#0�C)�###�#######theme/theme/theme1.xml�YOo�6#�#�w toc'v##u�
‫�ر‬-M#�n�#i���P�@�I}#��#úa�#�m�a[�#4 �‫�إ‬:l#Я�GR��X^�؊�>$#
6 ���##�����
##!)O�^�r�C$�y @�����# /�y H*�#ࡱ ࡱ
)��ࡱ ࡱ ࡱࡱ��UDb�`}"�q‫�ۋ‬J ‫��ח‬#�X^�)I`n�E�#��p)#�#��li�V
[]�1M<��#��#��� O P��6r�=#���� z gb�I#g��##u��S�e##b��O#���� # R�۫D����qu �g��Z����o~
‫ٺ‬lAp�lx�pT0��#�+[#}#`j#���zA�#�ࡱV�2�F���i�@�q�v �֬ 5\|

��ʜʜN��le�X�#d##s��jcs��#��7���� f ����� W����
+ Ն�7����`#�#��g�#Ș��J�#��j#|��h(�K�#�D-
��#��##dX�#�iJ� ؇(��x$(�
�:e#;�˹!�#I_�T��#S
#1�����?E�#�#?������#?ZBΪm���U/������ # ?
�~���#�xY����' ��y 5#�g&ࡱ/����ɋ�>��G#�M�Ge��D����
# �##3Vq
%'#q�#�#���$�8ZK#�#��)f�w#9:ĵ�##�
x}r�#x#���#�w��#�r�:\TZaG�*�y 8I�j�bR��c|XŻ�#ǿ�I
u3#KG�nD#1�#N##IB#�s�
��R��u��K>V�.E#L+M2�#'�f��i
~�V�
�vl�{#u8��z�#�H�
* ˦��#�#TѼ�9/#��A7�qZ�#�$*c?
�*�##��:�(#W�#☕~#��J��T�e\O*�tH#G��HY��#}KN��P�‫ݾ‬
�##�#�qU#��n��w�#N#��#%��O�#�i�4##=3##��N�#��)#cbJ#u�V�4���(Tn���

7��#_?���m-ٛ �{U���B�#w�<w�#��_����
$ #�#�[Ի��8{����( /�$Ϫ0#hࡱ�F ۴��®{L##�)#7�i�
%�=A##�:s�$�),��Qg20pp��f#\}DU4�p
M{��DB��#%J��â#������+{�l�C��##�]#��#=��5
2F��#hsF+��Y��\Ɉ�n�ì��:3��#�#E�[��6�9���� # `��&45#Z!��*��5k8�`F#mw��-
�##�"#�d>�z��n���ʜ"Z##
��x��J�Z��#p;����##���{#/�#<�#P;��,)''K�Q�k5��#�q���pN��8#�K�Gb#�e�����
S ���
d �\17
�p�a�>��S#R!�#��� 3 �#K4'+�r#�zQ
TT��I��#��I#vt]K�c⫲�K#�v�5+�|��#D�##�����~#��O@%\w���_�nN[�L��9K�����
q �#g�V�h��#n

R!�y +�#�U�n�;�*&�/H�r#��T�� �>�#�#>\#�t��=.Tġ


�#��###S; Z�~#�!����� # P��9gi���� C‫!ڧ‬##�## B�,��;�X=
‫ۻ‬,I�#2#U#W�V�#9$l�k���=#A��j��#�;#ࡱ �{�A�P79�|s*Y���#�;#���[�MC�
‫ۿ‬#�h#f��]o��{oY#=1k�#y V#��V���5E8�Vk+֜���\8���0X4D)�!!�#�?*|f�v�
u��"�x��A�@T_��#�#�#��q��� 6 4)k‫ڬڬ‬u�V�7�#�t#�'��%;����i 9s�9�x����
, �
45-‫ڎ‬x�d���8?
�#ǘ�d�/Y|t##�#�
&LI#L�J`�#&# �-G�t�/###��##PK##########!#
ѐ��#######'###theme/theme/_rels/themeManager.xml.rels��M
�0#��w#ooӺ#�&݈Э�#��56?$Q��
�,#.�a��i����#c2�1h�##:�q��m��@R#N��;d�`��o7�#g�K(M&$R(.1�r#'J��ЊT�8��V�"��AȻ�H�u}�
�#|�$�b#{�##�P����8#�g/##]�QAs ‫م‬#(����#��L#�[����###��##PK##-#########!
#��#��#########################[Content_Ty pes].xmlPK##-#########!
#�֧��� ###6#################0###_rels/.relsPK##-#########!
#ky �#�###�#####################theme/theme/themeManager.xmlPK##-#########!
#0�C)�###�#################�###theme/theme/theme1.xmlPK##-#########!#
ѐ��#######'#############�
##theme/theme/_rels/themeManager.xml.relsPK##########]###�

####<?xml version="1.0" encoding="UTF-8" standalone="y es"?>


<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1"
tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3"
accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink"
folHlink="folHlink"/>####�E#####n####����####N###�###�"##�&##0.##�3##�9##�B##�J##�M
##'###*###+###-
###.###0###1###3###4###6#######�#######t(##�6##}F##�M##(###)###,###/###2###5###�B##
�B##�B##qD##�D##�D##�D##@E##WE##�E###X#���#X#���#X#���###�8######�#################
###########@##�####��####�#���#�#######�######�###############�0######�(#####
�######################
�###############�B#####
�############S##�####�#####�#####�####### ###?########�############� ##� ##�%##�
%##�(##�(##J8##S8##�E########################� ##�
##�E####3#######�###�###�###�###�###�###;###;###Q8##Q8##�E##�E#####################
#######�4}
8<��#�#�#�#�#�#�#�#�###�####O��#�#�#�#�#�#�#�#�###K0],LW.�#�#�#�#�#�#�#�#�###�~#=裶,
�#�#�#�#�#�#�#�#�###FX�e��8��#�#�#�#�#�#�#�#�################################��##��
�#�###�##^��#`���OJ##QJ##o(###��#####�#######################��##���#�###�##^��#`��
�####.######�#######################�p##���#�###p##^�p#`���####.######�############
###########�@##���#�###@##^�@#`���####.######�#######################�###���#�#####
#^�##`���####.######�#######################��##���#�###�##^��#`���####.######�####
###################��##���#�###�##^��#`���####.######�#######################��##��
�#�###�##^��#`���####.######�#######################�P##���#�###P##^�P#`���####.###
##############h############��##���^��#`���OJ##QJ##o(#�h####�H####��#####�##########
h############��##���^��#`���OJ##QJ##^J##o(#�h####�H####o######�##########h#########
###�p##���^�p#`���OJ##QJ##o(#�h####�H####��#####�##########h############�@##���^�@#
`���OJ##QJ##o(#�h####�H####��#####�##########h############�###���^�##`���OJ##QJ##^J
##o(#�h####�H####o######�##########h############��##���^��#`���OJ##QJ##o(#�h####�H#
###��#####�##########h############��##���^��#`���OJ##QJ##o(#�h####�H####��#####�###
#######h############��##���^��#`���OJ##QJ##^J##o(#�h####�H####o######�##########h##
##########�P##���^�P#`���OJ##QJ##o(#�h####�H####��#############################��##
���#�###�##^��#`���CJ##OJ##QJ##o(###��#####�#######################��##���#�###�##^
��#`���CJ##OJ##QJ##o(###o######�#######################�p##���#�###p##^�p#`���CJ##O
J##QJ##o(###��#####�#######################�@##���#�###@##^�@#`���CJ##OJ##QJ##o(###
��#####�#######################�###���#�######^�##`���CJ##OJ##QJ##o(###��#####�####
###################��##���#�###�##^��#`���CJ##OJ##QJ##o(###��#####�################
#######��##���#�###�##^��#`���CJ##OJ##QJ##o(###��#####�#######################��##�
��#�###�##^��#`���CJ##OJ##QJ##o(###��#####�#######################�P##���#�###P##^�
P#`���CJ##OJ##QJ##o(###��#############################��##���^��#`���OJ##PJ##QJ##^J
##o(###"
#####�#######################��##���^��#`���OJ##QJ##^J##o(#�h####�H####o######�####
###################�p##���^�p#`���OJ##QJ##o(#�h####�H####��#####�##################
#####�@##���^�@#`���OJ##QJ##o(#�h####�H####��#####�#######################�###���^�
##`���OJ##QJ##^J##o(#�h####�H####o######�#######################��##���^��#`���OJ##
QJ##o(#�h####�H####��#####�#######################��##���^��#`���OJ##QJ##o(#�h####�
H####��#####�#######################��##���^��#`���OJ##QJ##^J##o(#�h####�H####o####
##�#######################�P##���^�P#`���OJ##QJ##o(#�h####�H####��################h
############��##���^��#`���OJ##QJ##o(#�h####�H####��#############################��
##���^��#`���OJ##PJ##QJ##^J##o(###"
#####�##########h############�p##���^�p#`���OJ##QJ##o(#�h####�H####��#####�########
##h############�@##���^�@#`���OJ##QJ##o(#�h####�H####��#####�##########h###########
#�###���^�##`���OJ##QJ##^J##o(#�h####�H####o######�##########h############��##���^�
�#`���OJ##QJ##o(#�h####�H####��#####�##########h############��##���^��#`���OJ##QJ##
o(#�h####�H####��#####�##########h############��##���^��#`���OJ##QJ##^J##o(#�h####�
H####o######�##########h############�P##���^�P#`���OJ##QJ##o(#�h####�H####��####�##
#############FX�e############�~#=############�4}
############K0],############����������������������##############��########## ###
### ### ### ### ### ### ### #####z#�ࡱ## ### ### ### ###
### ### ### ##### #�}Xe## ### ### ### ### ### ###

#2###########�###########�{##_Q##�{##�Y##gc##�c##n###58$#�e(#�Z/#vࡱ3#785#X#:#�OG#�#
N#�sN#?*U#ࡱf]#�ࡱc##Ej#�^p#�M}#�
�#�!�#�2�##!�#.[�#R#�#�#�#� �#�
�#�a�#�H�#B
�#AW�#@#�#�[�#RK�#�[�#�#�#�H�#4r�#�#�##I�#�z�#JM�#zO�#�
�#�i�##>�#####�E##�E##########�@#�##j###j###########j#######j################�E##�#
###@##��######U#n#k#n#o#w#n#��##############��######��####��####��####��########G#�
#############�*#�Ax#� #######�#######T#i#m#e#s# #N#e#w#
#R#o#m#a#n###5#�################################�####S#y #m#b#o#l###3.�#############
�*#�Cx#�

#######�#######A#r#i#a#l###O#�#####################################F#d#8#0#0#2#8#3#
-#I#d#e#n#t#i#t#y #-#H###7.�#############�##��#@#######�#######C#a#l#i#b#r#i###?
=�###### ######�*#�Cx#� #######�#######C#o#u#r#i#e#r#
#N#e#w###;#�################################�####W#i#n#g#d#i#n#g#s###A#�###########
##�##�$#B########�#######C#a#m#b#r#i#a# #M#a#t#h###"###q#�##��###h#####�#!���)g####
#�###n
##v;###########�~###n
##v;########~#######!
##�################################################################################
###################################################################################
###################################################################################
####################################################################�#�#n#�#��20###
###########�E##�E##################################################################
#######3�Q#�####��##########################HP####
�###$P##�###���ࡱ���� ���
ࡱࡱࡱࡱ ���
ࡱࡱࡱࡱ ���
ࡱࡱࡱࡱ ���
ࡱࡱࡱࡱ ��ࡱJMࡱ #####2#####################!
ࡱࡱࡱࡱ
#################################x###x###########�###############�###��############
######O#w#n#e#r###K#h#a#d#i#j#a#t##################### #############
###
###
###
###
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################��##############
############ş��Oh#��##+'��0###\###########�#######�#######�#######�#######�#######�
#######�### ###�#######�###
#######
###$###
###0#######<#######D#######L#######T#######�###################################Owne
r###################
###Normal.dotm#####
###Khadijat############12##########Microsoft Office
Word###@####P�w=###@####>K�J#�#@#### ~<l��#############n
######v;###########################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
##################################################################��###############
############��՜.##��##+,�D####��՜.##��##+,�8###�###
#######h#######p#######�#######�#######�#######�#######�#######�#######�#######�###
###�###
###�#######�###########Hewlett-
Packard#####~###############�E#####################################################
##
###############Title###################### #######8#######@###########
###_PID_HLINKS#####�###A###�#############z#############################4###h#t#t#p#
:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#T#r#a#n#s#a#c#t#i#o#n#_#p#r#o#c#e
#s#s#i#n#g###################ࡱ#X#############################1###h#t#t#p#:#/#/#e#n#
.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#R#e#a#l#-
#t#i#m#e#_#c#o#m#p#u#t#i#n#g#######################m#############################4#
##h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#C#o#m#p#u#t#a#t#i#o#n#a
#l#_#o#v#e#r#h#e#a#d###############################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
########################################################################## ###
#######
############################################################################## ###!
###"#######$###%###&###'###(###)###*###+###,###-
###.###/###0###1###2###3###4###5###6###7###����9###:###;###<###=###>###?
###@###A###B###C###D###E###F###G###H###I###J###K###L###M###����O###P###Q###R###S###
T###U###����W###X###Y###Z###[###\###]###�������`###�������������������������������
����������������������������������������������������������������������������������
���������������R#o#o#t#
#E#n#t#r#y #################################################��������#####

######�######F############0#�Ll��#b###�#######1#T#a#b#l#e##########################
###############################����####����####################################8###
#*######W#o#r#d#D#o#c#u#m#e#n#t#################################################���
�����########################################4n########S#u#m#m#a#r#y #I#n#f#o#r#m#a#
t#i#o#n###########################(###########����#################################
###N#############D#o#c#u#m#e#n#t#S#u#m#m#a#r#y #I#n#f#o#r#m#a#t#i#o#n###########8###
������������####################################V#############C#o#m#p#O#b#j########
#############################################������������##########################
##############r####################################################################
#######������������################################################################
####################################################������������###################
#################################�������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
����������������������������������������������������������������������������������
�������������������������������������������������##��#

##����# ######�######F ###Microsoft Word 97-2003 Document#


###MSWordDoc#####Word.Document.8#�9�q##############################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
################################&N#r ‫�ٸ‬v�#���:Ż�8�ࡱm�߱� �:#��0#:��/�߱D
#�и*���u����# �
p�?�o>�S>e�����ԋ����ࡱ� � � �#O; �#3�O��O����
o< / ��
s ���
~ ��
n ��}��|
�ͷࡱ �o�� _��#>��0˚�N�#sِ��K���+��+���
��#6�؏�۰ M<���#�n���֙ � ]#/a��K�

�ؒ`�Ğ�#�5��P�#_�Y{�G�#|�#�#|2>���0ǚ#.��#�/���� y ��
��k#6#��E�Lr�6��f�q�K���� # �O]d
- ���"
ߥ�N�xu##'���Ls�X#�K�YuU>f��v���� 9 ��#`"L�ξ�e}!
�ࡱfM#+����;���; ���^ �^7#�#�a�gࡱ�go�G#~|�7ࡱ�V��#�#{��#��#> ‫�� ٳ‬#?�#o>�3?
‫ٳٳ� �_�_�ݯ‬
s�+������} o�o�y ��{�M#��������‫ں‬+
8 �B�##���#�##a�5�u#�a�����} �|Φ˾�1�',r���_�5_�թg��
�&&�\�\��#\�>���##��#�`+��#aT�&��:�^����۵� ��7F�#؅+�a�#{�
#��S�VZ�#=##W���#L����###~ܸ���?�s�#L���3���,&YG�Cψ‫ؿ‬s?Κ#ࡱ� �
gRP����7#�a#��\���
~x#O��#|�O�/i?��>�Ӷ�H�Ӭ�`
[_�e_��#�����_ ��
# �#8#W�gQ`��I��I7�� 韾 a#��e�ּlࡱ0#� ���
O ࡱ�#�N�#�c��� Z�u�R��E�O?
Ә#��#f�t��un�a�#�#��N&#����#�ʿ�y ��y �s��a��&���s@d�ãp((|�&��3�ʻg##����K#�t8��G�36�Q
뿒�S���f�Vl�O,}R��k���� T �#.ZC�#�{G
u #���q;�wz##��y �T#
���qp
n�S#���##�z���qq�=>xa��#��#7�D�#�`�5#\q#��?�÷�5�5�G|�GlϮ�#~�#��
#��&#�+��+#�6�H#n�##�#����� ĉ a",�{0֚�:#��e�#�}��ࡱ�0X�7##�Q#u�y �y ۞.=�?`�5#|
��1��u���ࡱ��
} �m�=c�T�##�_�(]k�r�t�±�V�=�x�#�d �##/;9�^:��ࡱpz#<#&��p��ý,T,��5���:ώ#O
��O��\�!a��mo#��#�Zࡱ�g�ջ �#�w�
(<��#�؇#0#.x#�����#{�|�_0��ࡱ�M
, �֚�� `�A��A#�A#^�##�*##��Z�Z���Ck;�L##���#��?
�#+�#ࡱa��1�����_ �����
A # D�j<�F8��F�F�#6��Oz��5 �nv|���>�G~�=
�‫ؽ‬mJG:ٓ�t���?1�ࡱd��Y��|������� 湵� _c
D o � � ��#q#��#=Ms��ϗ�#�D�
&�m��o�/L��[���#\��‫`וֹ‬#
#!#Y�X��Ck:���t�D�p�z�#�z��F�#3a�5)��a�#�=��# >�/v�S#��a:�߄S�=>�]�j�

�a[{���4#t�AW�#&�i�y ��d�ԳC�՚��1��p��0¸����
# #/������
3�%#�b�5�=M�����|?5#��D|�
�ީu����k_�‫� ��ڛ‬ �
^h�W���;���
T 8-v�/#ǭ��#�#k###���7����
# �� k �~"|�#�X�y nպ
: .8#��jz��i�H��ֺ
��#8�##�<���'#���� # ��
: ��
Z ��
9 Ƹ� �
%}����R���; ��
v Z�##6��u_�u�/�#>�>k�8�##�h��>z������m{�##��#6�vu�ͺ#>�5���k�'��9����
L
�Z'�Ǯ����g+}0[���3>�{�;m�['�L� �
�‫ؘ‬#���ub�B���k#�ࡱ�g####�c�c �(��w�Cc='��f�ξ#l#�?
�#>`�#1<#�#�+b�x##a��Mm���G�<�b]ֽK6���~q?<�5��iZñ�} �#>�+ F�?
kN�#�[k�Ne��i~�z��b�u(#���[�F��ɽPXVL#��#9�N?#٥��2�U�H�
�Չ�N�{�w:��=�ۛc ##٣˽P###� @#� #~� ab##N#� :� a#z� � #L� 3� #� D� \1� � SWL� #� 5#.� � x� ���� {1Z� � #q� � k
� x+
ࡱϵ �G� h�ࡱࡱ ࡱ ����Tq�#K##���i�հn�.�#�>#�xȉ���x��n��� x ��b7#���##
�ȣ�#fN3��¦~�‫�ܠ‬$#����o|Q�|n�h<�7������ # �Y~�#��#����������#%#u��#�l�5q�^)?
���I��#NJ��[I#���_�#� �>F�˺N4#�O�hkEt�7��� k��� �� Cqࡱ
 q?
�N�7Ll�T�#�a�}�p�=Fxc}c��#ϚQ�#��o�#HV�S.6�5֏�z�b�*k,�ɉ�b&��t:��C;�a?
[���_����&ǎ�#<�����]‫�ޙ‬Ks,���VJ#?L0����YwZ7������ I?`x�#��u�d]�/��흲
/ �o}7#t����]�
6^=��‫�'��ﳼ‬.��(#�х�>0qb劗ࡱ�t����~z�w8w

#g�##�a�k�J,/�#�{�N�#�=�"vÞ0��֑,�G"��KY��#S�Bq�-|
������#_�#o��>�ޭI
���#�5#L"o#j�k/#�Xg�r~���#�/6��+k�>��#
�;�(|c�o���Q]#�#���#=��g}d#_6��#6�V?���i���
#餟ࡱ###7� �#��s�`�����i1D 1 ��W�#?
�N��9Yu3Uࡱ �N��d��Oo1#�G�
‫؟‬
���a�:*#y �#V��#���b]TL�#�u�w&�Qx�o(#��k�#1�}7{f�t���@#���j#_aF:`iϫ���

_��#X##�nz����aa8���I�<j�*��_�p=a��zP�_a"�
��?1���#cu챓ƶ1Ï7~:���!#�#m�'e���@gʗ��cb��7#{o�
‫��܄‬b"�#��#_�&��2�<��G;#^����4#��D�b��5���Eϙx.D�
��@��#�M��?\#��b�\���#.I�E����_ I7�%:�G�XI;�(��#������
| / ��
` XO�##

K��##x#_�_bWʷ�dK�Ja"�֯�� 1n�ϳ������ J ��
2 ���a>�湵�o6f��Ls\��#�55������ ; �㪮:
�X��z���ࡱbX4��[��g�Z�(^|�Z���� - �~N~�ࡱ�s�ࡱ <# ‫��ۿ‬+#=�s`ƐC�#�##�&���� u �� L N|
+ࡱi�b�x���#qR|�#����Ue���� ( ���
V ��K |�'-����,*����t !#��lࡱ �.r�#��#&ҧ-?��%;��㧍~#�&{�
�֭�� Ir���g?|�.�.�`9��t�qn��|.�g��>2��x�:~����Xxvȳ���Z#��=L���� 0 �aa"[������8'�0}�
‫��ں‬:#�ab�Q��C�ࡱ�#<O
#

3�R�&��a��b<
Ycv10Z��VO�#�#�##�8�G�+��R��**I}�НM:�>��#^<��.e��ե3:}P�� ‫מ‬mv ٤3]�]���ѭ=�#9�#��OI�,;�v
���Ǝ��_S�s�/�Mg�8:�uM`�#���#L�M�s#7_'&ι,ࡱ #���I���� | #�‫ں‬m�
�ct[#���{#����>w�.}#}���?�#�.#d<:��‫�ތ‬ X ࡱv���uy ��SϤ#��t�M|
##����C�#[��h����x �}#A#{a�s���rI‫ݴ‬W#F�KaJ2էO���C�/�p�#r�f/#��%��'��� t ��#�*�?����?
��9i��4_�����w ���
x湵�|mQ:�#��c^r_��1L�##:� �X~##k���J�G;w&�m��/�
‫ڻ‬M�6���mo��#�{����* :������� ߓ�w�nۗ �g�+&�@
Q I �� ���N]#���##ϝz7#.�(�8(6ϸ,Ɖ���a��s
%8��#k"<a`e��

�t���NN[uaD##��.�V<��=)��o�#n��2ȑ_m�T��/#���7]aJ2��N�GO)]��cP_W���WVZ{��#]e+�N
V�z�N�/a���}��##.����ǝ#0#�cT;���x/����%z��#?
��ƾ�##���>�2����^ ��
7 #����
W ����ơ
m �@v���#Z/j�##�I����
o 0�7��cy .�;p��#�O�#�5i#˼{'9���/
)k��
�z��‫ﳐ‬ɞ�Y�ëN�5#*%�g�N&��#T=#��S9#SW<�ߥ�*[٦G>��K9‫�ݞ‬,�g2湵� w~F � ��UN۩��=����(#6�
�_#��ՙ#ޫT�d��ub�ࡱ�#0�#�hࡱ 6 ‫�ף‬Łi�q�7>��}qM��#�l��]ࡱֲsy �췒� ?|{ � ���`?
������t �#l+��#+�2�җ�I[3��G�3�#m�u������ k �‫ש‬
�G~��~#�#�k��������� ) ���
7 3 f�|�C�|
t�]�k[�O��#�VL4#%�|
i�+�8�⍹�=r{���U���� 1 ��
A y &����
# <�#t�W�7���� Q C�0D��[�#]t���#e�x�#�ؓ���I�k'#�y ��Lg�&
.����d3����� J ��9 �##z�]^{‫��ޅ‬#��ߊѦ ### � H � ] #= � K � � � � c � / � � # K x# � U � 1 � 6 � # � ^ � Y � 1 � # y � = s � #
o����#��##�&L4>���6c!�{s��b��7��M[�*��j�ey �~�#c¼�V�##�#~aV��[����+=��~*e#��?
�In�z<�#�IWࡱ �ͱS6�~]�#k�S�#y ���nc*��``3d��ϗYV���:�lƯN�K#ࡱ�Y�OOv��)
ࡱ.=� ���7��#y �G�#�_w{��q�W�j��o��� # L�ࡱ�ࡱ뷱 W�ࡱ��կ~� &C^�  � � ᛩ� Q� o| 㖴 K�%��}�ް# �^��!
�#�~��-#��R>M��7�l�;j��%��;����#k�r~Ǘ#�+#�'=�_��M�R?�W}�#�#g|�G�8:��99�zq
ࡱ�+�G�.������ 4 ��
# h��J/�x3���c�W�#���5<�!�^1z���Xu�a���� I l��U##�飃>> # ��/6�o��#O##�j?
��e{�s�ȯ6����� M ��
W‫�ڣ‬I ��#�ey <���Y� ��!y
��k[2��,W�W���r煺 u����� *#K 쟾
�o���wࡱ��F)���#Yq ֺ��y ��e� ۷�#>u���G�v6��v�4_蔟廴 s#]|
1#��q�_1�6��K�q�sǺcl#4w��#:��\#{�c�,�}� ࡱ��lM#��}���� �ۘD��^���� # ��] �#_�w�- =湵�
�^�*/��u�‫��;�ھ‬k;L���k#��##^�j�O6�U��#ࡱ c#�j�X��Ӟ�JW ‫ٵ‬##I~�MY����+'�1#��W������ v ~ 0y j�
u��#�VL�mR1El)��cbpX�#��ë�8W� ٣|���<��.٨颣 x0�:6�%7uV�#���?��� _ әࡱ �~<�|
�ŷ��ɧS�ʧ#o4���>�ʳW�ࡱ ���

ࡱhc#o: �u �ag�>�m\a��K��#�{�i�#m|Wz�#�x�l�#[ǥ#�b�)L�Ws�-‫پ‬
9:W�V�[��Պ?�Rv��#�k_�~�#/��nŭէc�_8#m�V��<<�f��zu3�WNnc#rկ4�Uo|�g��h�ϡ�#xWLL~=��#��xV
Z���)nu�#o�''tW�G=�)�>��‫����܋‬tFӑ ӑ m:fR__'##&ࡱ^~ࡱࡱࡱOࡱ#ࡱࡱ1ࡱࡱࡱࡱࡱ
MWcR�VZ�JW�Y^y +���4���� ‫ ��ۗح‬#o�#��Û0FY��#�#�
\ ࡱ :[c&�t�Dv#o�ssࡱ #i�:� �ۛ��#\�Kߊ!
��O�lχ������� k �?ե�<��,�+���*
fK;�##�‫ڟ‬x�t���� ࡱ��e�T�>�i�fࡱ�E�5�'���߬WV�n�����On��e<�W��M�ocz8�0#��#����‫ן‬S#C;
;
NJ Cź � j'���w#��l�#��_�x��W#vL-��U�#�#�##*��
�֖��� ࡱ,kO]#�t�#Z�H#χlѣo#�(�#�
s#1kC�#s##bBm�P#EADFࡱ��S�N�+����S#�#3�4G�#��U
Q &[‫܋‬k�h<h�tV�'Z�.#�6:�l����h>����Ɗg|
?#kEQ�C�Eɲg##�O�ࡱ �#�O4#�� gc�?_�D��Q�
�B=O�}b~���#�t�^��w-�˼/�#O��r6�O{�##�)w#Kv�#�}�7�/
K##>#&66�F.{|� #�;��
‫��ڶ‬m�9&3��� �}"��_��_1�'}�����\ɋQ�����;#����d �3>�##<�Q<�ɍ<#�{�g|�EOzg;��;D�!
�ࡱ��3 � �F�|
�֘ �� 7�]2�Q���j�i�/~&G�:�d��#ࡱ�
#O�^3<qm�#_y �#��NG��� �#Ϳ h��

Q��Ƌ ]� ##�I2�"� k|h<�
%#��h�h|��,��f��|#�1�g��Ǘ.4L��'�#]ɡ��ql��7#�o0#v\D|�a�i�'�s�it#�w�|¡c0[)‫ڹ‬
3 �|��F#t����!x#a��#���ᇢ=b#��#�t�7��h��#3�'���N2��'�|
(3�#�ho##��3mcl
�{��e;����m4�bRn�um��7�‫��ڤ‬t
8 ���(��{Թ�n��ࡱ #�##‫ݦ‬/��ࡱ�d� �E�6 �x�1�ࡱ�N}##>ࡱ
�� ࡱ �l�ìsW�
������� # ��
# ��
# W�6
9��##��:�4�y ᐲ#g��e��>�>~�ŗr#�O�����
# ��
. S.�g��#�rH��I�V{��6�m�#��f��� J �)}����+#

7���t�U=#rt�Sࡱ<h�#ࡱ�#���G=}�hs>/�#t������ k )#tko���<�ࡱ�ċࡱ7�l ݃���Y�ᡜ�}���

#�_
��m�G�qࡱ �4s��x�#>����Yp�"�Տ1�#��1���
# rw4�Q<cNS76�y k�3:�.]�w����_a�{�J��'�ɱ�##��X:�
�YǮv��msc�n�#]�d+J#}�4�Y�y ۳��}^�|��>����##�� ‫ױ‬LV����u�������ql#�=-�#�

�ࡱc�]X6>O��#��`##&#ӷC�����珻 � 0���w��gy ��<&�0��X4�<��|


��=��������1 ��3##��#+'�3o�Y�</���'�#_}x��Ղ�������;L��0:�=�h�Iӽ�^��Ygv[C��#abq�8D[{�
���"i~#�FzWz�{��%�+&������� \ < ��
q ����� ��#‫ﶖ‬
J �sxr�<�����#c�{��G�k�1#d����
5��##h�G��u�n��E�y ����w �b6��d�Lt�s�m��
_��x��8j��@�c��l�2�� ‫ٺ‬Zi�h}4��;�ms\�V|���@�y ����� ��:1ࡱ
: ���X5>�U'ӹ����V4����
6��F�����| ����
L ` ="��Xࡱ�F��Hw��#ࡱ����K;;tѣ�����82���‫ڣ‬ԛ� #� � � � � X?
j,�b�q#��]t�y 5��X�sm��]�\�W\����@ 9ϘX�.�;����!c���ѹ۸:^c
U ��aA#�#]���##9m2���W���W Hw
%��ࡱ�+
0 ��#��g�#j����� ࡱ�S{
� �t�g�/[a�8n�#^s �W�Q|Ů�Г�Qcc9M�F���zsi~�Y���� g ���
~ �]
�#�1�����ࡱ��
Y��sY�@9�fL# �<��<$�+ϔ������7 �#\��<>�p#�hӭO)��ࡱ �gC�Kw�d�\h�$c,
{�1>~���6��湵�
. ��
4wc3&6#����� ��
� U ���d'��l+s���Zࡱࡱy ���
R
�9�O���湵�Y~m_�
# �݈�ӻ1 뱸� ��
z�y 9F
fL�Y#n�W��%��F Ci�/ࡱ7>R��z��mQx�}
+�Q�^��Ĉ1����# ���@ �#lS�#��G{d��U=#��#NJQs#��Щ/���#j�
��+^��_����e ����
c N ���
. ����
# k ��
G 3��##�O������
L ������
X C ����
E ����
H 1 �����l#�#_~_#��4[�
��>_��������+ 3&��Ⴜ�.#�[�G\�_��a�5��Ap"��ң_#.��l�w�Q�x‫ئ‬W#l�_#0nL;��Ԙq��UF#��#��
?�_#z�4��G�9)��?�K��q�#]���� B aw����#]��X��� y �߱� �|;�3��
L Os��<7�=O��i��q#Îw�����
‫�@׵‬#�=�����������
+ v D�Bqn#�Cࡱ���#
'���#ࡱ X�M�r�R~��Ս�A�t�#�r������ / �ыࡱ ��
K ��0 .2p��#��#^�;|b�#�a#�#r�#3 ‫ޖ‬Q���##{����wK?
��M�=]1�G�I�q��N:�'�g�.�#��W�'c�4����ࡱ[9����� ˬ1���# ���OࡱzKL�U1F;v�g�����
Q ���sHo|
�'�<�Ca��\����M:- �'�#�����g \#c�0L����ԭQ��#�#?Ɍ�?
ʧ�/��3��8#��f��#�3�q��o�#��##}�#k��/#��#�j��c���� # #?{��V`c� �ؐ���.63#y ;��#
‫�~�\ڳ‬#��Vࡱ�:#���E��� # gL,�w���g?�|�_]�#����O}j�7#���o~�K��
ࡱ�����[��X�o�;���ƽ,�/���ࡱ �# ���� #c#G���q��� ~ ��_‫� �ࡱۏ‬w��#?�B�t�i?
����~w��O~r��d��#�h��}o��#�p�n#r%�~��,���� # ��ߋ�k�bs��a�{:���7#ࡱ���?
����ࡱ ��
# ʵ ]#��f�#����` �ࡱ�g
���ࡱ �� ���
l 8 ��H
��#c��������� _ ���
# �#NjX#��YN��ils;]
l �!V�d=��{����: ��  ⫨+�{Qe �g����!
R##uc
Z�NB����� u 19K#��xXQ�,#�#�s#o��)#�����
�ު p�Nz�#��n�'�'ɭ�F:F���w}��~~7��'��U���
O 95��ŏ
��A�#ࡱ �ˮ:�S
�1��wL:F��G������
$ �b,#��o�#�x�2��O
|��c#Q߇��m�y �]�z���ࡱ� ��
| � �# ����A#z��#�Rn~�#��y �#��y �C#��}��� # |
�ӟ^����� < )�g<�#��=�y ��}�c˱��#>�y �_�y �S��y �c#���ࡱ��ࡱ^� � mo{���oࡱ���w���� > ��
{%/y �Ƙ���U�ZpO�{� ��{�< �iO[�#��#���&;�#��}�{/x#��K~��e/[�=? ॹ}�+_‫� ټټ‬#��<��O��#��?
�}
p#��#\���f�#/x��o���8I�=�y �%#��- l�G�n���go�q�{,�v=�Z�#��#ࡱӝ��Ї>�`�.\���r#��_�
‫��=�ڧ‬#�#�W����� . #b,v��\{�IkCQw\*‫ڊ‬봱�ࡱ # : ʍ ��� Z<sLO�.��Wη���%���#6��W�v��_N�{�m#?
�ˏrt���coę�G�/�\��#��� W ��, ���
Q H#'���9#�i��#������ # ~ ������#u���
} u�7�m�����
V #c�6�c�d�
'�Ǩ�#�8�B�`�d���?|�#�#;�=},/
9 ��##��‫�ڳ‬u�{��Mozӂ+�A���� = g?��#�^����.
do'��;#eO�#�=�!#Y�+l� 馛 6�y �{�k~�<��ܼ��o^x����#Dl�����G?z�;�u�{j���� / �
��#y Ѿ�q���� _ ##�Ȃq�b�җ�t��� # ^h�f_+#oy �[6o}�[�sǞ##�_�P�#7�j����m
‫�~ڋ‬K_Zp�#�\c��5ǣ#�e�m#:bͱ��1�~��~V�t����� D Aq#�_���˞]�_��W˵�/��e-
w?ࡱ�bl,��2�_t�
‫���&�ؾ‬ - dy �#y K�s�ǚ��[���9<#���t�!vf��F���x�##e��>_�=zf9m>‰mc�F
#��‫����ۅ‬xf
# �1)n|��.^l�u�#�]��x�#�����
Q ���}{�}z�2V.!;c�5���]�zr���#g�?
�1����.wY�v�0p V#�#���
� d#o� � ^� � Ty
F� CzgࡱH� ,� 7� '� l� � � #�� #.8#� � #� %#� � (� � #<� � w� � ]#|� #� � ��� e���� I=� #o#

c� U� =#‫ܒ‬Ga� �߳� ����W� rs� ;� q� � dP� #� t#� #�


� � � 0#� � ���� 7� #� #� ;
‫ٲ‬##[sy � #_� y � � _~� � ���� O� Ug� im� � f� $s� w� ‫ ۓ‬wO��
�֝ x� � � lM� #z.� � � � z� �
‫ۓ‬ �ҽԨ
U�
{��J�W� �֗ c�;�Oc�혉�Ϯ�dp�>%~T~#?�+#�3bD{����g���1��kʷ��F��>��ї�#K����

‫�ئ‬q>5�7#�h#& �
� �
��

��
��
��ş�
�Q/}� xǓ O�#� :�ew� ##� ࡱ�# �3&ࡱ Ή8 ُ��S�������0
#�'>�9�� Y�0#� 5�Y�s‫�ڇٳ‬#�##<w�m�c�ut� �K��g?eϥ<�\�w� =� 3F� ⾭{�� �#��_�
7�p#&� � ##x" ��<�Ğ+=� �
��#�<�IOZ�}#,�}l�c� 7� _qa#ֻ�*��� ��
���t� {� \y �M� u#|� o|�#�cc.쇓�##

�#����

[�
���
� qǂ\�2_N�� MaԮV� t�K� 6�O
^”d 슟� ;���� I�
�#�M� #?q� >�v�+�3�J�?
Z�6#ϭEg �
���
��� � *�
���#� 2�x_#vɃ |�R#U�Y�|� |,�j�)� `� a�XX�|
�F�� o� ᧺#^�#a"]�{� �dF#� 6ּ���bl�ws�C/#�恷 k�� ��

��
��
��� o� Oǀ ^�|�o�n� /:�#c|
##;
�{�A�� � i� � W
����
#q �
�Y &Y v

� % � �
3��
�0 #��

���
b# -�#� # =˃ o G0 I ‫ظ‬/ #^ < #
#��
\��k
z �
L��

?�ӂ
� �
��

k�
+�
�� G O �
#
' % q { r v Η e `
r�Ҿ
���� jl�� �
D = ‫{ޓ‬eg��
o ��͏ �
֏�� 7 &� �pN
a� a#ɉ # �֝�#� E#��
��# Mu�� �=� �
� �
v �~ � ?y _ # K s B 0
{e���
��]���� �' #p {L � '# ^� 8 �lfz Ίu � q�Z�
���
} ��
Gȟ� [ H�# %�] o �4 ? # g �
� տ
q# t W } _ ]
D��i��
��I�� � �˟W#
� g] S#�] �
���
@ ð �0 J u) /#�k =� T x � o ��G � @L #湵�#O�� #�<�r�
��
h ⇏|8 > \# ?

��# ?���
]�� s���


{ � ⛜ # # &q # m �n o�� 7n�l
�� v �#= ; ϟ W � Y O ‫�ד‬A g�# #?<+�K#n��\
��� � r s ^~ U ?
�| {
p D^� �� ��� s a#� �h
� I� # � # 8 �#\� ~�{ - ࡱ��#� �
��
��

b W��
��
^~ wl 9 # V 7p V �S�y 6ɖ > 湵�| o #
e��
6 ##� � �
��
#��
��� ���

���
��
#�� *��
�# � �w�
y x / Jࡱ y # = n o �ީ����
# @ j>�� _ { !

���# ' S y ur� �^#�

�+��
��� ���
��
r�
�� .�
� � �
� � �#��
L �u��
l �j
? < \�m | F �# d Ł ) 6 [ 3m # u X
#&��> V� L���4� �
+ # u
#��

��
����

Y� < � ##
3 b & & W i. q � ࡱ���o���
#��

�Ͽ
� �
1 -�? �* q > u #
��
���0 ## f y ُ���0##)x�: ~
] ;xF��
" �p
� �
9 X #Q 6#�����‫�ل‬ ����
Y ��
;�
ջ ��

A }�
� {�=
} � � �Q
p + j q , #
7.�
��
�# # # }
����
G���
�M��( # �

a��>� C # e b l ] i p
��#�
��;���
�� > nq c { 첏�o }#� ��%}� x 8 ‫غ‬$�� < mt��
�C # k -> �nF��
b� �� �
# �

��r�= b #. / @ N H J # q ?
+&:ng�� #��E�
# �� L� # ��

{��
���� p �OS � \ # n 1�
��[��
|'���
'� /(# { λ � g� �
pj# >�

y �^ �
> } #
� ӻ�\ ߃�湵�'
j �# N
] 0�
��
��

��� � X% �
s �� � a;
l 9g �,< � Y3 � g q � # g ‫<=ޘ‬ # �� Z��#b
�� #�=
ꞓ O* #
‫� ټ‬
‫�ر‬O � �W # Ti N�
�\� � t�
� 4� ��
zp�_ { K �v ' j � #O X, { ߇)## � � �h�m'4 �
�� %�
] ) = ‫;מ‬
1q�� �#��#1 #��
����
��
��
_ .�
����
�����s� 9� �z1 R � #Ν �
��Uk
ù� _�
}� � - 3 #� # d �B
# �1 j6 s

��� �
x�
� ]9 �
Ӎ�
�#m � �O g
> 虢 kz8$
Ѕ Ǖ��Ymv��:ߴ��_c;>{=�� g�
#���^ �> [
%�X Gg�
������� �

P� Y Q : ‫���ٵ‬pW Q #�� k�
��� 8 � �
{B{M ��
8 �#
� � �

O �?
�xI = # # # ! |
���&�
6 �����3� � �
c� ~ � ��
��

D�
K �
��v��
# #- �d �f �
U _ a 5 " o �
��# # ��
##
Ϊ#: }��

?ࡱo м �u l
< J ]
��#�
�#y } �Z M ‫��}ݘ‬ S
#w� #�s "0 � ߒG#]�逯�Y�p f _����
���

: Wt� 7 �^��# � >Ͻ 57�� _��
R6 # x У 1 t +
��=�
�� # # LL k�( �=
������
���w�� t� ~
�-� � �v �� ] e� �
<
| �
�g[ O
e �� S1} � > 7 Ǧ �=a > d � c# ; #
j
‫<�ݓ‬#�� ��e �
�V # ��Ǯ
���} f�
# �#
�#��# # � k�����

,�
( ��
_# ���� k � 5 � #
# r 5 D # # # �x rZ 3
(��v�x� #�� # H 6` # P � ��

}�| ��
�c�

���

#�
ӗ�� � < � > # �p F X : A j . [ < ࡱH # 
|
Q��d gs # nO g�� � L
> �� c a �

=x�6 t
v #��P��� f��
c�s ��U#
0 # # �
� ݃pM##�
��
�X &
���t k K # ��
�ŧ
= } f >
؊#���#0�
���� 5��
9 �I\��X�9 f �^ D . P #Ն ) 5
#��# ' d��CӦ
F��

t�
���
��
��
� #��
# 2 � /O
�ʿ�

��Ɯ#�u� 6
�# | �+X q C < ю B l .l # Q A.
I
��
{�ˑ�
�# �4# ?
� Xࡱ S 2 ‫���ڼ‬e)ŻXl
# ��
�������
uZ :��

{ �
,
g �.
, g < r��
z �-# | ~ r

#��
y :�

J��
# Yt –�
9 : y #{ #�

#��
& m �
9͘�
��
>
�, �
v O���
�# [� V_
_ � # La $ � }#
m7Q # # % o D # F

ǵ�
��
#͋ �

�ȟ� � L $ #s &�
N k= ~ d ԋ
�/
t t<
: ��0&

b�� �
1���


#��^

��
k �
g &
uq ȗ 3 8 l 1 2 # 5 i a y a

cx� ���
w�

ǐ �ʹ
���
W� �
� ����� % �#1 �� D
#
| �#�
�� �w
��
d�
# �
q � �
#;� ##
= �# # Щ 4 ?; g jg # a `
��6�
� � g 9 z � � 1�
HO � � #�
;c ���_:��
}�� � n �
#� ͳ�S G �w y ��
2 V . 5 , = <i , P?
��
�� �
���3�� � .��m/
f �t� = +L � #k .k 9 : M ��
‫��ه‬s ���� �
X�

J��$ N |{ ? C� �2
�h � �#d
N � ~Q }
� 0 ؈#1 ( N
�� {�[� N‫ﹰ‬K#�� ��3 �
� �
w� Y$���� �
r {F� ^��#�# � �� e
} �
y e 7 c # #g # |
��Ӵ
���
����
��

��
Ǜ���
A Y� �# 1 �m , �> L # #��
= ࡱ��
ࡱ�<N # c? y Տs
9 n? \ cu} �#��&� � � j
# N | # w w
%���
��= W� g�
��

D �3 x ��

D z �# ��\�
� ɲ /3
l �
l| 1{�ࡱ P ߣ�=�� P� ]�
�� wc ��
b�

� w~ Q
F �Ø h K> A ‫& އ‬
c #
1F�����
����- · Х�� #�, # & |
e��
���G ��b
� o� �x G� i
# �

]�
�m�]�� ��
# ��
� z� # �� �
J ni <N{� γ �E p
r �w O и ħ 8 # 0 #
�Ѿq>[
���� 8� û���
O �
ƹO
�� G = #y w� > _ ߘ��#
f ‫�}ڮ‬ p �9 s E��+�&���C ԏ�
< Ί�# a . 쭘� g �
�O���� · �
' ��Q#
��� z9̞���
�' � k e ��]E���+ �X �� �
# �> Ĺ
_ p k ‫=]�ڳ‬# �� X:� q
湵�
5 @ o
�#X�� #:�� �� �
�5� y �
ʺ6

��� b K� # ^ V ಯ�� 5 '�� eu�
E��� u] ��

k _�
��

X �5�
�� o
# ? # | 8 /�
 U '
#c�# e# D#d#######

#############�` $
#�� # ## ### # ##############################
�# # #
� 0 #
�# # ######
#####�
####A####�# # #####�# # # ###
�# #
� #"# # # d
ZY�

#�
� . 옑#N#
# ��# #d# # ##M####
�@ = #
��# # Z Y
�d
#�
� . 옑#N#T###########w###
# �# # p�# [ v<#
�# # #
���
d
#�
ə�� p x b � � b /c
?Ŏ ## +# p
#pb@)#é#��
J F�

Q ` 0
��
# N# a� �
� # - ##3
# ` # # e# #k ��q G
@
K ��@�
� � K n#
K �
ϝ# / } u
ߧ�s�� O����

U��
��
#���
��
��

#�
[ �
 ��� ��
# o�  ��
# p � �
w I
~� �#/ �W � � ##
7 � # # 8o w K
8��

���
��
 �� # G ��
ࡱ�# # ѕ�W���
#�
� �
� # # �
W �
^���#G R�N �
 c � o
#u6 ջ � ÷�~
#2 #2 #2# #2 #2
#2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2
#2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2 #2
#2Ѓ��o7��� �^ # d @>#�d @ #d@#
e# �
#� �

#= :a C÷��
ࡱ_ O� =x ܻw>��� N<��
{� ?� �� - GO r
}��
ʪ��� �
# xO��

x�
���

, � r�� q � # S R #‫��>ظ‬#����$� Z O� #⓸
zs� oa� �6
c �
' �_ � }T n
� Ľ # 湵�# Z m
ߗ/_��v j� �
#� j �N �
S ��#
�O m�
b�ʀ
�i�� ���
y
#}�~ 3 ! 8 > J C 8
�� z
�5 g ##�s 6 # ��
G S =z = = 3��
�ٝ�� #��
���# � �
��

6�����->
s
R �/ m�
�^�r�•P ��
'
\� 9�e�= J? |
# o # #B c
h#[���

����s O# # <k l �

��
q,�
# H � +垹&1#B����#�
���
aů��
_�k� �
>� � �
9S U W z 4 2
#2�# =‫�ׇ‬#h��� �
S5 D m�

T� M �� �C

; �) J
l ^ k E ? �
l sE # ` > # =@ C ۶#c��
kǘ*���L ŧ�
��
W%�
� 1
P ֏ # =
‫��;`~د‬
���
���
o Z� |� �
��
I�
9�ъ i�V�W
�6 C � g� N �
>� k �P# s & c .�Q# 2 p | } �#
� �U
9/ � 1 o #
���
s 3�9��S S u�

��: #
# � Uh
� h } 5 6 h

|#�
��
�� �
% m }* zߩs,>�
��
�O��h
�c � �
� vM �Ƨ#y
H � c #^��
\ O�ֹ� ����
=�

]�
> � 9
4 ό : q 2
#2����
#= ��
��
Z� y D ��
E걶 y # S�
^>�� N

��*
�� �Ω � 9 v ࡱ*O ˸�j
Qu b
��� t sS�
#7 ��]
�# # ��
+ ꕺ��h � I۸��+�
ɋmv ~#ʹ�
�� x
��d2 s
1� >
Ȁ
,g��
t� �
��


#� )R ��
~#�

.�
���
l�
A� #
�s ��
? ���
6�#с �#h S #
�U�# C # 3c )< � 0
7| > G#
S 6 1

��g K�" # K
R# � _ �s�# �
���
��
#���� �

� � K i ^ ? 䚹# > 4
i��
& $[��C �
#��C #�# � #�� � Ց � # � # ۱��ˇ
9 #9 ����

oԯ�

�����
tc�
ԍ
#�
v F
��
I ߌ �N $ , < �> �^  Y j # I 9 ߌZ{
#{���!�� �
[�:� ;��
��
�X �
Z ����
| ��c�
�>�� ��O#� W|� {: � u ? � 1 S #U# � s �

S �
#2! { > | 2
ߵ�M��W G #� f ��
d # }#U �
q� # ࡱ�mm�
�k s o�
� �# h 7 Rc
q \ d E@ #bd �} ϕ8 ���

K �j�
n � џ }�3# >��Z- #͚ m 7� _ | c -
�f 9
m�� # c# # �X�

#� # ��
# 6����
|�
w�ʒ �g 6 �
‫~ڮ‬#{ �����
] w OF� y # d
��k �
��
# ��g U�9
�7� R H # 袹?� L n
#M##m

#[�
�� �
� 9
+8 � í#� #�# #� #
� � ##
# # � #�# #
� ##
� #
�# #
� #
� #
�# #
� #
� � ##
# # � #
� � ##
# # � #
�# #
� #
� # # # # # #
#��
# ##� �
#�
����#
ɀ�
]� �
��
#�t
� # # g u
Ȁ
��#��� j c��  F} Q & �����
~w In 4 8 ��r ] ۭ?��Ԙ�
����
�>�� �
������
` �� C��# �
Z� z W �g ># # # # | e#
ࡱKm� �� #?� ! g1 ���s�s : ����� #
/ �
^ �}
# �7 ��
T ] ' ��N� 9��j�
e = # �ϵ O C v v ~ ‫�ۼ‬#� ��
�#% s�
' wF ? >

�= e ѭm #S� ����̫ 1 ��
�_� �
5l�� �
g�����
��
���
� �I �s z E u 3 c m ‫�ڧ‬y h#y )
# l�
�~ 5� b & ?

��m �� {C # � H< ��
� �
��� ��
J
v ����
*
_ ʹ�
�P� � &
#7 l� ^ O' n Ɔ� 3�s�
�1 >' 6�� w �# ? | #
~g}� ��
�� 6��
� ��K��� } m # վ 3�%� # �r� l
) �i o 8 飍 Vc # I
G#;� �� ## #��� S#� � #�ֹo������ �
��+ q�
# � ~\
% �� ���Ĥ# # �� �W�
5 �l � c" �� =� �
9 | �� #~ n # .
| m M #? ?
##~�7 a #�o� f ‫ڵڵ‬bb������� # G : � #]� 3 � Y �Y H ##�� � lv � �

S` +�
g��� w * )�
� �v�ć R��i �J � = > e t "
‫ڬ‬i#{c�� ��l T� �
1� #3 b� �2 � �
# �
3��
���
���

u#� g o6 � 9�$ �< 1 �
O 5) 3 2 Z }��ٜsl"�� 2��&}� # r#~ U
e � 1<E۶�
/�
� �>�� �
}�
���
_� #�=���
�m �H � #�� #V � k ? m‫�ݲ‬X#ct 1 k �� [�
9 )#
%qa�� # Y[ > Cy N�� X # �) �Uy # #:s �
�c����
3�
# � 9 s s s l Z
‫��އ‬#_� ��#�j�� }# Ū �
)�#� #� � � �
y #��b ]�� �
��
��
}�

��
# �
��]�Mo � j C # ] ]? z G
%�
�# {��H� d \ 9� �
��


3 G� > 2 # #‫]�^�ޖ‬ + b�ؓ���g ud�� ] IK� e ���
* y �

�z� � � [�
6; Ҷ
�C| ː� "

# ) � N j { #

�_h� �� �
)�� ����w � �
k�
#���P� �
9��~c �� n �[ } � \ e v �߱� # �dn9} �� { M _#��\ Sb� �
#�
��
?8��P } Q
'6�k < 9 uN�� v l� /�� ;�ƧD
�^�
� αk� U � #x m , �
n > �� �
u> L�k# � � . #�
7 OW � D Z 鯎& R # i ^
#��
�� # Q {O# �� �#
е ' � ‫گ‬k 퓘� #��� <k � d 烈�v#}�� V n� �

[��
ṓ���� ? v I
ࡱn�ࡱ 5 K�
�6I���n ��

z�
��
���� �
} ��

��
�� �
8 Z� �m � = &} ] ? = R ^ 7 W 1 M g
��y �
����
���
� .����7 ���
@ _��� r�
�� # � � �3� ����
{ �#�~Ӗ���� � X� b �(
K � ^5
� 4L v j h # # ' I# h
_Z�� f y � ] ? ���
��
m �
oԩ � < u > 葱#u�� #��
�� v���
F #
{ K #ࡱ �
�Em8 � E} c ‫`ٸ‬+iJ� X�
� 5�
d� iS ^ ?
ࡱw� �‫ؖ‬e� ��
� �� �
����N} 5� ��6�
}� X�����
�#��
�"�W�& � C� 6 � o 2
# �` s � x 7 � � S
#* � _ j / ~ ��g�
  } S
X�� ? g� Z o��{ b �


w c ؇j~ q��
����P�
���
� d ����
R *� � 6� ���{n � u � 2�
C u� � � j N �
u� #
" y m S ~ �##�١
‫ح‬y C���� �
� ��
�c �

�� y X # < $  �
�n‫�ی‬Oy ��
ࡱ ϩ S�
D ����g� 湵�Ą�
%��
� � �
� 1N � � b �#�7 �
�� �1�� �
'� fx � v
+  >ƍ � u � �K > �# 方 # < - X
��
#J � �'�� U� b # : ֶ&K>k#7�� �
����s X # 쓪�O‫�ܓ‬# W� �� [~���� L� �


m�
� �� = > V ' # ~ Q m o t
‫��~}�ݧ‬ � k/ ࡱ v��
���
�� _ ϜqH �ԡ 1u � � �K� ^� m { $ ‫ؠ‬,� {L#�
I+ b ��
� �� �
[�
} �

{� z ɋ �
��
1�o
� } & K g # ^ D ?
c�� m ^� [ # w#� �
= ��� � �
��
} ��
# � )b�� ] 9 / G‫آ‬M�� #
mO � e�Uķ _� �
p� # �
�# � ] ��x ?1
l O J k
��
�ʘ
�� � �� 1  ��
{�� n � a� N+�
�� �

#
} �
sO��� , � `# q G �#  ࡱ�Y � � Lq3 � ^c# O ? �� f }1 a H 6 D # �
q�

���� <�
�� ,���� �
S� F $� �
,�( � l � D s o 9 # q

��� 5 ���
i b 湵�p ω����
)�
�� { > G ܷ�)���m
@� >� �����
��
S �#� � �;
#o g :5 {_ # )� >
�O M
�O ? 쭴� #
� q �%� 9
�~��
;��#

e��  S‫�ث‬#v 깆� � � �
ߵN��
9I c�
��
��
#��ƴƋ�6�}_ � �
U�
r���


_m͘ W
� . b A�
‫ ڶ‬w H
3v##s@b��
���>:
ϰ � 3� [
Q � �
$T Y�
q� �
裡 ^ # L�
C 湵�) ��
3� O � F

#��
��
� #}
� ~ � �
V #��
N��
c��M
�M �
A
Y 1 s O
#Ia��
F c );�#� [

� �

#� �}1� ' �
1Q �
d�
^ ̺ #� ;#�
�v
m �
_  ���[ \
�N )
� .� ʦ U C
# #8o i #؄�� #H c
��ࡱ^ {�
�b 4 9_ ‫^���־‬m� ���
����� � y 5
9 P ?} ^ H #
���
1�
� ��
��
��
�� Õ ��� � q� [
=N �r � an k r �� p� �
VC #$̃ C u�_ 1 q ��
# ࡱ�s n }�
nR��
=��f#- w 9 n
�m [
G ,�I U�w�
#�
���
��#

m �j
�: u Z�
���[� 9
e �W # # ��
~٣�a? o�
g�
DZ
��� z� ���
#` ��y O �c
�H { < 3 i g
‫�ט‬c�k [ ;� � �
N�� { #K ��
����#� % . # > c
{ٟ �v#
��?O }�
]��
� �
��
��
���# #)} � g���
# j? ���
y ��
��
>�6 ? � >sS
j �
�� =S�c� qs r s 2 .#Y g $
‫ۮ‬U#]G���
����� � m�
\ L �

���
# ��
; �u�O ��� /� #j � M + y # # % # M
‫~���ܫ‬j>Y� ��
��Y�� e o�Y oK ~�z�
>�ge O
� g h�
.0# ࡱ��
LLʙ�� g�
Vϱ�
��

�c�
�c #�� �g �
k e�
6 u m

��

���� � w:���
��
C �W�
� # k�
# �
3 �q�� =� 5 5 ] ‫_ڮ‬# ��
g ^ˀ � \ { v
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
lŀ ‫ڮ‬#kj�
��~} j,#2 #2�# 5
ُs j�
�~̩��f�  ~ εu
Ȁ
�� V
�����֗ �# 8� 2#2 #[3���ǜ ‫��_ڮ‬
g ^ˀ � \
Ȁ
l��
m�
��
�R��

� ## #�
# �~
�# Թ�
: ۹�Oe �#
z2 � #�
S" #2p*#K #�


~�
�
��

Ǐ� # + #2 w v#2 w '
#k3���� 裏 N��
k 3�� �
j I;�1
�u #� 2g�



%� ��
/�
#w �
z � �5 �s W�
>(_   ~ ~ 嵶#wU�‫���ݽ‬ˀ
Ȁ
\##kj��

��
���
? > ��
 ��
� g f ࡱ#�
��~ n� #
# U ۹�/m}
y �ʀ L
��
`�m�

m�
c�
� K��
�K
�{ ?_�
��O
��#
# �� �
ԧ6
�� � y
/v �# r
�:�
/ # > #  < P cO ι
��
b @ mm 7� ‫�ץ‬li�
��K ࡱ{��
#�
��
�# �n#�
] kj 8 G4 �
ʀ w
> � : <
�
���
� v��
@# �
[��
��` 6 #ࡱk}j��
��e C^
� / 쌝 h
Ȁ
�# @
P��
a� [�g��
s x �
��
6�

m� #> ࡱ �
v 1 ��
� �D �
# :d ��
@�
# �

#
iK�?�� 0 s �N
G ?3 ~ # #% A
cg�@ d
# d�# j�
��
͖ ��
# �
3��� �

Y_� �

u���͖ � �
@�}�#3
�d�

# #j�% A c g d # _
u v ?
^2#��ʀ
�# @
#��
�� v f�� �

TmJ�
��
- ��
k; ^ x { >
Ȁ
Ȁ
�̀� �����
m w N# # qL ‫ڜ‬ϳ�
D 3v2 #2�##�v��q�{���/y N�~;�^�z��[��i�����g����##8�#��|f�j���ϝ�-

�O ]
4#?[�� � �
-�h # Ώ #
s
Ȁ
���
#n�� v[
� o 76ࡱࡱ �#�� ##� # #j
� / +K
� � cl g
� �� � f@��#� Id @5#
X
�� I
� ; c g
�d�@ # >
� d @�v#
#
� w Ο d �� �� n ʀ
e�
��q�;g#
� # �
�# # # |
#�
��
��
j��;���
��
]��
# �


#�m
� # \ � � # 2 d�
#v �i@�
� ��
R #v �
{ �
d @ m^#7 td @ 4# d N �
` l 3 N
��泽 T� - m�& #�W |
&�����# P
# �
��
#` � �
[� ࡱ g�
## � �6 #�
# ��j
��
/;#� K
� c �# g��� +#͖ d ;X
@ � � c f g@
@l # �I� 5 # ʀI d @ #
� d w #v Ο
>�
��Ke�

�� � ;{ # �
��#�
q g # # # |
#�
��
��
j�� ;���
��
]��
# ��

#�m
� # \ � � # 2 d�
#v �i@�
� ��
R #v �
{ �
d @ m^#7 td @ 4# d N�
` l 3 N
��泽 T� - m�& #�W |
&�����# P
# �
��
#` � �
[� ࡱ g�
## � �6 #�
# ��j
��
/;#� K
� c �# g��� +#͖ d ;X
@ � � c f g@
@l # �I� 5 # ʀI d @ #
� d w #v Ο
>�
��Ke�

�� � ;{ # �
��#�
q g # # # |
#�
��
��
j�� ;���
��
]��
# ��

#�m
� # \ � � # 2 d�
#v �i@�
� ��
R #v �
{ �
d @ m^#7 td @ 4# d N�
` l 3 N
�� 泽 T� - m�& #�W |
&�� ���# P
# ���
#` � �
[� ࡱ g�
## � �6 #�
# ��j
��
/ ;#� K� c �# g ��� +#͖ d ;X
@ � � c f g@
@l # �
I� 5 # ʀI d @ # � d w #v Ο
>��� Ke�

�� � ;{ # �
��#�
q g # # # |
#���
��j�� ;�� � �

# ]���
��
#�m
� �# ��� �
2 �
#o �
2�
; �
#R � ,
# �^ K \ 7 # ,‫~ۻ‬ ��
ak z��

#�# # # Ç# ^ # # πn
�= ~K�}���= ࡱ � p ��ܿ :����K#��
ࡱࡱ: ࡱࡱ ) >�( �˙���
ղ �_ �#
� o >u �, �#
�W #�^ ? : ‫�����ی‬O*K{! O �5 G
�* q>�6� #5 � � ��
�� =I� b��

����
C�
6j L k e ۸`� O=�
6 - i�
?� 1}# '
�� � }��
y 7 s�
��͏Py ����

m� # R5��
�ܵg g *1 B 9# F S=z��

=�
��� ;=��m�# ; 3 # -
R��N' � >� �
S��� r� e/ \ �
6 } O ‫ڄ‬+) [/^��
/�

V�
���
�ʪ� '� ? O 湵�S'> �� �
& y R 4�1 :‫خ‬W� ���V m X 迶
�=����� j\ S � ; O뻵 i,��
lπ�~̗�n�
�j

/���� s� ]�J�� # # ‫ڎ‬w\������u�
� �
n#�
��
�j: u �{

. ����#t��? # < ϭ6
� h | o # V 2m 1 > #
�m #
}�� _��
! ���
O�
?��� �1 �
s W��
Ϝ �# c ~R�u щ c �! $ Oࡱ[��
��z���? X Ժe0 #
‫�ץ‬li{� ��Ļt #�
J��
>�� #t�
���
L i# 5 V E #‫�۾‬l < n
#��
� >�x ) #��
m� [#� �

�� R #^ #�C
# �~��

�w�
��
�#�
R��#�>�

kS��c#
% � J 5 9 h # # [ X z

����
[�

��r 6 ���
W ��

c�u��

E�
n�
X $ < : S# w # ��
{ ۱]# m E� �˕
5�
L �1� �
�� �
c gi e
< �
P # |S �[ # �N
h#{#s��l / "% E쏍 5�땺� ���
� ��l [;�
��#��

��
�b 4 > [ 0 ��
X ‫�ץ‬li{ W��
# s ��
9��у 'h O

R~.� �6 # 퐄#� Z���


� w��
��@ ?
� #� � �
x# �
p\��e��' � U��#F
�A# |= " P> �
s 6 #1 ‫ی‬%�
1 # 3
%#��c c�
O�>
�� ;� �y

# � ��; d # ü
m �
� ��u2 �m# �# 1 n
�K = Y ��
‫&ۻ‬ #� ]C葜�my .� $�
#u \ � ���
f v y 8 �
#
9 X !
��
h # �ި~���n�� ���� _ X#P m ? U �= ‫ڟ‬##u�� �� # / ?ї��G1� $ bQ '
�1k� > і #| 3
lG��
���
��~�� j ] #o � vK�� � xV -�� �
cL ) ^=# # WK� 3; ?
> ϟKb#�5 S
E�����} #�
) �
� o
] m ��
�# �� �

3��
��
I� �

uc��
w�
~�m�)� �� � �W � �9 � 3
e# 0 R 9 l l = �
��
�1�
w ࡱʩ �

f {~��
����

0�

��
���
�m�
� �� c �
�ȩ�
�N
M � R �M# k y w=Nwq

p@ m� t y » ~| - 쌝 u# p
�@ c
m 7/n�
� �

Tm/
-*� v

� �
���
9 �

��nW 3
v �
<
r 9 }5ࡱ s�
y V�� . �I w
‫�ۇ‬o7_Ο

���� #��
��
Tm�
��
-# �

��
I ��
# |X�[ � # 0� җv
�# # ��d � � #P
# @|
[ �
jd� @; c '9 # 2 N q #6 8#
#2�# &
j��- �
<K ‫ۯ‬Ɂ�`�f s쌝
Ȁ
��
1��%


m����

q � # d%�@ �
2R v #�d/
�͖�
`��
MZ
9#�
�;
m �
N
#� �

#b � @i
�ǥ mvy _7

� # d
_ # 쌝
# K l
Ȁ
�#

���� Tm �# - ‫ښ‬ρ�v 3
2& #2 #�� >� ��
Ā��

|n�
� ���
Kj�� ʱ ��
# ў 0� V� o { } o # =?
�����
# �
#�
�͖ �#���

&�
���
)����v# Z �) ��;��� � # X�
] X# �[� �A
# �#P
> ��
j#  # = # ? - l 6

��
��
��
��� ## ; c]� ��

'� #�
c2��
�#
Ћ
1 �
? �y � c�
g� � g�
Ǒ ��
� � �{ n �
@| j # �
K # ~# j # u d3�ࡱv2� 
.f &
#w���
#Η ��
j����
|� [ ��
#�#>| �

[�� " ~
Ȁ

�~π L�

n��
� j
# 箍]‫ݫ‬W�

��

��ʀ���� u 1
�� 6

����


[� 2y 
��
26� b
Y
5 4� [{ �v֝ #�<?i
� P�
e @#d`>#j �

͖ ʐ�7
��[#�;
��ɢi
� 
s �֝ #x�< i
/# � eW@#d� |
#�
��
�v �
,��K�- 簍]~#
f #

́��
��
�W�

�.����
�x �������
{����4�
� #2
� � �2 �K
� �
\� � e# - @ �d
## � #x =f # 7 β # j
m_}�
�# ~ ;<c ' #2 #2��
#���

^�

͖' ��

>ɀ y
v # e
Ȁ
T#nB��

��

��
ǟ� ? #� ��

~|h � �
4� ��
_8b ��
�_�
��
� ��
� �##
e � #� �
2 Խ � �
O #20
ε ! / 5 ? } |
��
��
���} # / d v#@ # [d�@�
O �
�#�
�� {
.m � 5 # ‫ٱ‬ȳ 6 W
Ȁ
���͛�
#N���v K n#
�f�X # ߃Y#�����
��S c>�
K K#  ��

�Y��?
/ � /OË #
��
� �
��

Y��'�
^ � �j
;q�
� �
=��
��n� �
5G � �
>j
;+�
ࡱk� M � 1 y #\ ] Y o
-�
��v
��= U
~�
��
ࡱ��
��

#�� � ��# z�� } �~ n Z l Xz ��NO / = # h c
m��
��� �
#�M�����
S�
� �� G����
�� �S �\m � � S 0 �u �j � : � K � -[ � # { � o � n ߹ } }-
����#e� ��' # [h� 8 5 � ߕg8�����
�� ��� G N } ? # |
��
k'� M���> [� �
U �# /
l � 3# c# �^ �
# e�#�
# 5 v 5 #
?# � j� g{� c# �# � c ' e .8# �
!S� ) ‫�ر‬-y
‫ټ‬ �D
}#- k =g
a��
����'�
��
�W #�� � m �Zu �
; �
V�j�
? � �ԣ��
#
>�� �
�[���� �� �}ʉ 2# # �^�# I I| D O # P # #n s $
��\�
��d� # �
�k�m �# �
S �j S #
{ 5R�('Z����.‫�ؠ‬ ��
�� r y #P��



#ƪ���

#�
J K g j��
s #y # #[ |
=uMe�� ^k��� vm���� s cE ] �
� ' �
^����
9�
��
��
5�
���
K �Ꙁ�
:} ��
3W < M l � 9- Y & k ? � �

#� Ϟ Ň
{ J
vR��i >�
��# : � � � ; � #�� i X � b ≭ �� 0� ��#� � ; � # �K �
>Y ��
ί� #� � o h9 � Ky ���Ϙ � #� k }
���#�
g ����
��# �� /
#W v #‫��ܢ‬S# ' �� y � h���
# ��
]�
��
~���� �
��
Ʈ˸��
�v� 8 W : g # c : # = O
%��*+ c�ae 0 > �] \�
� � f�
��
� �
+
b k? 8 # 0 # S
��
n vu # +S�;� ��� #3 }� 3q �6 ) vc � #�
���
S�
# �
���
# �
ϕ�

O#�� Z����
#�� � m �Y� p � P # �
O | g x ^ ^ 7/
‫ث‬rn�� O��) ] g� *e � �
O d# o� V W �
z ‫?��ޙ‬U ��
��z { � O^� � �
.; | a" Re �ms N�\ j { n u
‫�ټ‬#;Ҕ� /m��: )�y Z S �> �q �� � > ��� t ��#ş �~ �:
� �_�� R s� l [� _ c
�� �3L� k
˼ � ! S s =� i
c � � u = y � ��
�� m�#
�ϵ ;z }~ � �
#�

3� � [ � � �
#
p {  ‫�ڎ‬#
M # ��
� { Vu �
���# c wQ �Y�-# �ſ m �
k� i��de \ #M
‫ښ‬j�� c^��� XN �� :{ � �
ɫ52=�
) ��
ɕ�
��

}�

K���
��
q�
+� n #�
ࡱ < D S d \ O ?
v�� ��
5 t YV L � � + � n �
{ � � =
RP ‫�?׳‬
' ��
�� M� o ^ !
6��[��K # � �
#�

c�
��# � �
� �$R
r � [ # c � u5 �L � ͵� ks g
ࡱ # # g

c�k a
w .� �ܲC\��
� c�
�{� 9 , N�
Ͷ�
���
# \ ~ | 9
��
��G ϶��
#� \�
� �
���
� #
# g ��2� �
y "�v &�

# i# # k �# # E ˚ JW X
��,� T7
�� � �
< �
M �M W
6 6 �
 �r�
< ��� # l�
#M �w * +
8 ^j 7 # y j�֦�� n�]
7‫�����أ ڔ‬s
# ��Ν
s����

#���o a
N { 5 e #
(��N W�{��: v�����
#5 O S �
k 3 C‫ޝ‬-gC ��

r�I�Ҷ�
)��� �
6 m, �v
�# # �#
‫ܧ‬n �/�
�}�� W
‫ݚ‬W���O w��
3��## )����
#| )c �$ � b mࡱu��
<# 1+#N Y {� �


���
��
������ s 6‫ک‬ :x����{�
�9 ja _ ? ܷ�x�#�\ \ #�
� L |#
���c l #
c#{�# V۱ e��
���#� �
_�
#�����
o 5 n��#

�^�
�s
j �
#� #�
7 �\� ��
\ �Ε
/ �
d� o
5 �S
� e9 �� y [ k
Ź w � u kI w s
���
#�
���F g l ��
��
L І O# 1 } 3
뾞}� ��
��
��
=�
��� 8� � �
#�
@ :L��
ն��

_
b��
W �# #�� �<
Y �
� � �
/�7Ū
c � O � b q � N#
8 �K e
j & = # ' n
e��
#� .

g���# H �� �l

3 #|� ���
b �u �
>�
�͇ ��

| ] �8 # # |J �F # ? w�|ɣC1 I q # c} e
>#
2F��
m#��� > . i�

$�

���
L
|�
� �" n # $ ; L ?

�ᶭ�
v#�o� ��X �
) #��q * �
��
&�

��
�m�G�g
�2 � � #k� � �� �R�
ӯ �U�] ��
9 �}
) �8 � P � v m� be
�# 4 7 6 # }^#
TY�抽�'a'{4uH� ��
������a�j� � q
} m 1 �ֶ�TUcZ�L/E S�
��
���
��b �� c?
# g #
� ��
�c�
/��
�����ϴm��
� #� ��
ŏ ���
#�
���
b c�
ԩ� L
���
�) ��< � �= �� # 6b
} �G �
$ �# =
ag 1 v b T S A‫��ܓ‬P T c
/#�
��
����{� �\ � #
b z � �ؓ(��

E �m @#A�
]��# [ < �' c
‫��ذ‬U[
9�ࡱ� �-�#���~ �{
s m #7 � ‫�ڟ‬#š \��
c$c�#j l 꼜 r�
| � ��� �? < }�
]�
��4 { T#� �
[� = -

��
� ��u
��
�� �

S�

u��
Ɲ

���
#Ξ� �
#��� � u�#
� � # zĩ �
^n�y n� b"
�T � Kη y l W
# ? �w� # $r ; #j
‫��ڮ‬P��
���
�� � �
g� ;� �
��L �
= � �
#h�c��� #�# 8 ��
�K <f � # �=
�f�um
��o� j˙� #� # ;� # ;# ��� ϶ ) i#

�����
��

? � ��
}���, W g ]6 � g # {#� �
# )u[ �3
y c 9��3#�#��‫ב‬Ϲ� �� o
DP cy E��
�w
w� ��
�# U
�p ��g # Y � w
�‫�ڮ‬#]��
���X �
�; ;n�s�g �� { #{ �
C Ǯ
�� ͝ Mw�

h| �#
dW \ 3 �n_‫ڮ‬#CW�‫��_ڜ‬
�LJ ��
��s��i = O � <g
� - �# � ޯ . \
��
��C j] #
�U km�|�

#�
-�#��m 0$ Xb� �<��

��
ӿ

f̷�
�h ƀ F : r ( ' #ࡱ�S� �� S s��
[ 9 ‫��ڮ‬P k�ĺ Γ9
Ȁ
��
b @ mm ࡱW�
�� ] 5 ߦ�� ���
" # r2 #2p##j b���]

~ # d @ 5#ǫ
���
d�
1 I ‫�_ڮ‬
��o 9�#6 #
�W # �
�# ? #
8 # ]
^�
����
v �
 b## 2 �

$#2p�

P�
m # ࡱUȀ / i
Ȁ
� À‫ڮ‬#/j�
�g~�
�� �X #
? # �y # # M

����� ۴ F
#�N U
d @#d@#�@ m a‫� [�؟‬
#ࡱ�F��
ɀ <
Ȁ
��� U��
#& v��

Z x ' 2 m � Nj
�� �
#2*# 0
‫��_ڮ‬
#�
�Y @ #ud @d# n� �

##j�
��} � #�~�#
��#

��6m

� Q
P O #�2 #� s ? � #2
�E#
^ � /# : �֨�� ʉ #]
Ȁ
�� 9
��
��� ࡱ�

#� # �
�s '
u# #‫ڮ‬#�
��j�k~ �M# d @ # d
ĀT _ �
� � _ �
D# �
�� #�
#O ��

=� �/
jy # < ��
ࡱ������g
> u k
�; |
6�#��# >
,�
��
��
v # >{ �

|� =
# z� �

t �
w V]� �N
�# x % |

�##� #�
��
��
�# m � ��


=�
1�
�{
����
��
x C��Up�
� 8�#
�� �� �
#Z s
=X� K# ] �
O
# ## 2 # # v #2 #o w
#2�# #
[ h;~��
<�� ; ‫����ݼ‬B.��
Ȁ
Ȁ
��
� � #ߗ�P8o
. ��m� # ��
�;
M r a., d @#d@#d`## �

��
��
s � v { # ��
2�

W��
�� [ #2a #
�# ( #
B^ x { ?
j��Lw� H##�#� # X�
��
#k���

?
# W�
�j
M � | G \ ? !
#�# C
d @#d@# �

�����
3���
m �W� �9
�v #z dJ �
@���
�#h�
d n���
@`#:�
n � # 8�P
~ �
.# 2 #g #2 [ ~ à n
#�
���3�
��T
����
#� c
1 . j
e@#d@#d����K v>
#} �
���c v ۗ�b,#2 <#2�# %
j��
����
~�
f _ γ ~ 5
Ȁ
�#
��

m��
�W��
� � # �
w_ �
��q
�{ $ ��ϟ ]
# �
# _ # #
����?~[ �ߞ
‫ڮ‬5�#a��
#����
Ç #�
����
q # v # ��

j#�L
�#��#� h
����
C#� � �
{ e #~�
�#�
U ]��
#H �
j
n�
m p@ x # �
#d # #

��
��
2� 7 {7 ‫ٺ‬vo��
��ʀ n
Ȁ
���
��
k�� v‫�ێ‬S��
m���
{� � #
]# � # # ]

��
���
��
��
��
H �� ^ # H d @= # �l O ‫�|�ڮ‬
# �^z
U��= ‫���ۍ‬#s
Z ��
#�ŀd @^#� π
‫�ڮ‬#� U ۡ �Hc��
#�O� ~ ��
{ܹ�#{# # # # j�
� Ǟ
7 m�

����
~ W v C ‫��������ۑ‬#{#
w ��
# # # j�

# �m�

��~ g , C s
x�; ^
>����
�� {# # � #�c # j� � m
#s � я� #��
-���
�# �@ �
co� � w
#~d ~ e 2#27 #{e@m
j ~ w 3 2
ࡱm��� ]=�; . ���
u# # �P��
@�#m
� # d @c # d ` �/ } ^

��
� ��
S 2# g #2 �
% #j ~
����
ࡱ��ˀ
Ȁ

�?#�
��
�]���J v# b
d @ # d d@ m 2���##�#}# � ‫� ػ‬ #ࡱ���Ƕ
[ � ‫��_ڮ‬
�ɀ # L
Ȁ
��
����
� 1c / ## 2 �
{ �
��>
#2�

# v V��
W‫)�׳‬# �^? ##�
## ��
��
] @ v# bd @ ʀg#
� e ‫ڮ‬#�
��j��
v~ \ 2 %z# 2 �

#2ǀ
‫���_ڮ‬
Ȁ
���
# P ^�[ m
� ]c ώ K
� @/ #{d��

@#��
�#
P �
d�ɔ
�� #
� �
#v�#�
�l
j �{ # # + ~ ~ q
Ȁ
Ȁ ‫ڮ‬##j�
��� 2 #{e@mࡱm�
~ w 3 #2 ��]=�; .
���
u# # �
��
P �
@�#m
� # �/ }
d @c # d ` ^

��
� ��
S 2# g #2 �
% #j ~
����
ࡱ��ˀ
Ȁ

�?#�
��
�]���J v# b
d @ # d d@ m 2���##�#}#� ‫� ػ‬ #ࡱ���Ƕ
[ � ‫��_ڮ‬
�ɀ # L
Ȁ
��
����
� 1c / ## 2 �
{ ���> �
#2�
# v V��
W‫)�׳‬# �^? ##�
## ��
��
] @ v# bd @ ʀg#
� e ‫ڮ‬#� ��j��
v~ \ 2 %z# 2
#2�
�� T>��

|�~

� ?# ~ x 8# � �]
u� G o 9�9ࡱu#��
_# � �
S c#* # 2 #}#X�

��� # h ? # ~ |# ��� #
��ۭ�P>z��
��# � ��
#�
# #^ �
}�
��
ӧ�
��� ࡱ ~� � �
\�}Y
�� � �
{�

Y � g
[ �
]u j HF ࡱ I � � o�B � ~ # ^ ?: #

‫�����ی‬O*K{��5 * >� q 6� 5��

# ��=�I���
���
b ��
Cj6 L k e ۸ T;6�� ��
13 �} s
i[ >7 �g c + �
mS > !
#m��
��; # ޯ�U�#Kcy �
��
��
�� #> ] ��
�� # s ۳�s� ��
3��>��z z2 � t # �
{ g h3 7���
g /‫��?ڤ‬y HU N 8#�
�� D 7 !
��
�ǧ�
�� ># � ��
��
�q
l h�+
� ?$ x X # # s
5���
�S� C~
��
Ƙ��J� �7 �
c �

���

��


O�
���
# <b�A �X ^ [ . 2 ż 4Е�‫ݸ‬#kj3��>�
�
��
w����
ï�M W |
��
���� ���
Y �
#m # z =# _�N Y Go�
y � �

^7 T 5� �

� C
Dm
.
K �a ‫��خ‬r
; h K � ��
��'� E #~ -s+ r c
C ۶#c��kǘ*���L �ŧ

���

#�
P 1 # ۱ O~;��7~�
Z�
��
�#�
#�
� ��
I �
�Ɨ L

m Ko ��2� �
?��R
^e �
#G } # RN >
��

� ��� > # �ٝ�� ï|���
������o�
˩# | ‫ڎ‬zIC��
�,͙��� ;�N U 5 # [� ��
���
���
U�
ԫ
z�
{ 3 g > # x E #
‫�ש‬Z/� � ��#��ԍɘ�m

; � ɕ2
�C [ 8 ֔�k|J^� :l si��#s �
\�H O G
ࡱs:Ԧ�� #� � �ֶ� )�۷����)#�� ��� �
#n��
v �
� # �o
i ^�� �
$_ �
��KW��
� = � K � E S � " < S K ؎�h�� 6g�ۧ^ i # =
��
��� � O Q ࡱ* b ��m }� �
z�
� �
��
͘ 2~ u #���ԭ
# C/ z' �e }( a  l ] >ܰ#�� m���Q m� �
��


r�� -� �3
� Si ` 7 o } ?

�� K������
t �
��

r�9� # 9 / ‫�?ڠڠ‬ �# 6� Cj 9I ��

>wc,#�
� �
[ �
� �� [ �A O #��
# m CE #�S��#�#
#e � ? S # O
3#�� 2 ^ Xb�� �

6�
� '� �
4���
#�~� o ࡱ� 3 X )䚹 S 4
#��L w�) q# ��
#� # # ��
���
͖ �#

a� , � ��=�U��� �vG �
W ��^r�9 �K+ a �= # # 眦-�F 3O
X r
%z��
��� W/ �� �_, ��F C # ꀩ���#� #, { >�� GI 9 ߌZ#{� � �!�� �
[�
:� ;��� �X
Z O ?c # W r
��
ˏ O� �
o��= 7 ))�� <���


U��#�v � ���v �
�� �]� +�2�
�� �s ��4{ t �O �3 6# | � jo
i w #W
h} z
ࡱ>� �g �Y _�
��
� n[ ��� ��v�
� � � ��
l# �
��6� #� 6 o �b > �
v \ y { ‫��ޓ‬w
K � ��
����ˇ � o튧#�n�- |�K ]f
‫����ۻ‬X�� :�ʼ�}�] ߕ����?'
] �Ӟ��# � �
|I�
��� �
�� ���
# ͯ �#�9 KM ~ / ^ n , f
‫����ۻ‬T�� ; 8�f� ���
r r� 5 # � �
k��f# � �
=y � g � # � � \ �
7 �. ��
#����#U��j
K �!
ա mw g o Ο w , f o #
#y �
� �y # y _��y `
Lj� ķ #� # 9 � ��
� A��2
# �2 �d B � #` # H =
� �# "
g�Қ�


��
����
~�
��
}��
 ; {} v k ��
u ࡱ�> �ɀ N#
Ȁ
������v
## ���
Y� # #

 �
.��
# ˀif
# �
��s

t � � @ # #�
# #} ���
t @ɀ #�
d �c
f΅: # c �O k
k d ? ƴ ࡱ s
Ȁ

��e
: 3s � �
nc���2 V s ϵε��

�� �
#2 w�
# ��
c �t`� #:€f #
] } �1  # 9 #1 d }
/�# w
M����n�<�
���
�� � # ��. ���
�l�
�� @
R �� � w k� N # 7 E N ? t n 9 !
#�
��
��
# n #l 6 �
M��
s�
�{�v
� } 5z � 7 k L r

�� ?
Z 7‫ۉ‬#�
��
���� a �ӭs�� ; � �

�ύ
c �n } _ ۱#��
��| V f >#��
‫�ש‬ ���� #
: C@ n �{' � �|
u A ?
�Y m
k 7��

��
��� #��ӧ��]
T N : ۱ q;Y# }��j9���
Ͽ�

j�
�� Jҗ��
^��
�����

��
� v
K ;: # j # m � � ] �w w # D8 . 3
��
.��3u w �7 # �n 6 ] � # � ѕ��
FvkS ���
[ �
��^�
-} � # � #Ib # v �e' �
k վ d�9 S � < ( # # �<3k)
7
g }� s Mr ? g k.
��
P F <#�/ ) | ! � ׄ�VV��
V \] M�� ‫�ر‬#�Ȉ ��^? ��� 3S 6��U� j��
h ���
_ �� #�

�� �
1y � Ў # a
* s # U ' \ |
[��
�� _ G g���
{� 1�
���
# �� �� Ü .Z �N�g
�w �. z� u W ĵ # ۲�٣�#;# �
���u DY t
��
&��
] {1 w
{'2�� }�
=�� # {= " �
��
���
#�@ � # �9 �# | "}ҟ #{ j �>d�#$ �'Ҟ

^@ #N c �
d v E# 9 ?
c#>�� C�
'��
�� �
�� > w � � 6�
7 m6 �u � � i#�

�� 1�
� v at
# � � �: S� �Ȍ �g �W˶# 3
�# �|

S� D #�#e Osl? %# ήU
�ч $
D #��}g �
| �k 6� # } Y # - s�
��
� #u=�

0� �Y � = - F# g \? !W � % u # D

����
#� 2�
g � W#���
 3� � �>�
a�
: ��
c m G �<� V � � #�
#l � _R E V � �& 6
## �u � & "� ' uc m �# G�
5 ࡱ#�Hۭ�
C# Zo
ù6l#jǏ��}�������#�w�Od}�_t�o$����O��#+��;�+��#�#�U��f�D6��!
ս��_��
� Ӧ # �� � ��
$]2S -e� K t ;G� � o T�o
� O # g � ��� C
lan��}� ; �
K_��[ ࡱ�aw
A ��
�) #�} O bk k �
μ�
#�
:� ���
> � M ]w
, � 1Y ]ࡱ v 곎�##P
7 �˾�
G# ��
>
# uN
B - ࡱV
#�
��){ "�
�# Y U #Or s## ]
� as �#� �
V��\
# Ӟm� rt $ . o m 湵�# _
�[&��# ~G� M

i�� k~

� }W � �
b
S # 5 y }n�
�M

k�
��
�l
��3 �K# �ࡱs
��կ� d
u # v� �
S ‫ڧ‬O ��' t z9 } ș k K
��
� ]�i �
#�
ȥ#
�� �
��
}
# �,
M O ' 꾆^Ɛ����湵�
r
#I�
�}9�
��
��/ �> �
# Qȭ#
U��
| �
��
# � ��y �
u} ���V

y ʹ s�
| � m#
] � :m �
}M t| } 8 '# ?

��
�2��# ��
�� n�
: �� � u #S �
c# mV�# # q o
�{ G
b #�� #��� # x2 Z�. �V 湵�kH#m3o]
M ~�
�n JVZ�

f����� O� �
ࡱ=
%}k��
�� �����
I�m
�� ��
/ ��
ࡱ�#� C� � � �


i�
� �#�
�� #�
# � c �� Y
1s U y [ O / X w f k |5

Y��
�ࡱ� �
S���ࡱ�� � #���
3��
���

;�Ω�
�z�b�� _ � k N �3 � ��k_ � � #n��ࡱ �*Q m�9 #~
� r[
� g # i ~ K
��
����v �rj k \Y . ‫�ڶ‬
9 ��B�(#>� ks#� �
� �}
L �
: # ��
7
y 2} Cg��
T �
�#.� ah
(b �]� . q �| `u #-
#kl����� X" 7 y O ;� ��
x
^�.͑ [ϸ‫ٻ‬dj����
##ϸ����� X ‫*��ڑ‬c[ g i �� lƏ # 捎��>
5 �� � #�! �
#K �O�
�#� - % # d
��
}Ɣ,�
�� ~v # s c6 �� �
] <# ���ֽ
K �‫ ޡ‬# -
D # 5��� Y��� ࡱ��
Y �Ƞ�

r��]��ࡱ� u�͞ K+
� � �O��� _ ��[ # �. � "� �! C '
ࡱ) �
# Ie� # d ٧/� j> % # _ ! #
ߜ��ʸ�#/��#�S##�#�]�9:�Kࡱƕ�l|�����Ȋm�Ӟ��‫�ڏ‬K
#��
� F�7 c A? m��+�
�? r #�] i s h�|��� �
z�
���� � � x ?# #ž � # #c A"7 c#N L~ 3 雯# < P #
�#o�� # u�

~ # � }g }\E� ��� I�
N �
O� 1ˌ � � #��
,�
�^
� �F
K2 1 ‫��י‬
15 C #
��
�� s �
I��~ b�> ^ 5 8#�ߚ �RK/ # N#?
���
c c�=�&7�ࡱ: �} �
��

#�

� � � ��
=c {�
�Ρ� ʙ^��

] # ^ � � 9f
m3 �R jࡱ O� # # � 9 O# # h# # #a
յ�
��# �M [+�#�6 �# R G N = �cʞ
��_ mm #җ * X � �� ‫����ڶ‬#
/� O ��
��
i�
Ƅ�� �
A {�
���

v��^S ��= �o # # S ؏} D
��
��Ǧ� ~ m 奯#m";s r ��[��m # ]^� �
v�# � � �M
{ �M U# N E ࡱ #�s� 湵�/v T #ˤpD�!
>#;�� �
# #Y a >1 z 2Wu���Y # -� 6��n�gh ��#
� � ֮ k؈=�.>E
#� r�
��

�� 2# ( �
G �#
#/ E �#��k� P U‫؟‬ 7 E
��a��� �
��� nW 9� �
#k�K �� n6 l�
> �ࡱ�


6 ��
{ 6��#�g����m s��� / �
�m ^
} � #�
# [� �} $
> /o �{ 3 x m # r
�겣�u�� ����P | C�
g> �% G�g
b ��
Y ��
#�c �C 93 �$ #
k = �֟x��� j Ȝύ���#����
X `l7># T .gu���=��#
‫}�ﰧ‬:~� ��
���
ı�γ� ��
z c j; # sS|L�
잣ࡱL߮ � S ؆_v �o #
l� 1�h‫ی‬
� � �

V
/���
�� �
v �0
��
�� ύ �l w v # l : \ F
ߜ�‫ی‬%<� ��
�a�� ��f = l� ���
]�� _ qQH��# �� #� # �i N  ; @�7 �
# !� k � # #3 � �
c
3 q ]~ � T 垫�
#
�#<ǚ� �
: m5O \ �
n #�
Y � c
ū �< � �
����\ # � ��
��
ࡱl��~� 7 � #e�
�� �
�{ �Ɨ ]
. �.# , > ? W ? ss 9 � 3� # � �
| %

�� # s�
��# # s

vk�
��
�L S !
��
#�
#��
���
�2 � # bG �
�<
b�_�
��
c ��

�/� �
~ �
2 w
5 �

r# �#�: 0�

}
ī< �
C2 z G2 \ . s Y #2 l ��# ϻò#
#kf��
:���
c����
n �
̕ #
s � �# � M J ; # 9
#�
�n �
��

M lg6��
�� # y d @ # �
y d `
w N
#�
�n M l�
s6����Ҷ
}��'��
#�
��



2��
\�
���
��

;�
�� � �
#20 � �c �#
s � � o#
�� l#
� �
#
- ~ # } | _ f z #
#�W #
~��� ; ‫�ڱ‬:� ��# ��
u 2�
; #2p

��!
����
���
$
{ ��
��
̹�
n�� � ��
͟ 9s
� / y # �2 �b
�ࡱ�
l~� ��
i # �] i ν l � Æw �
} # ?T# #2 m
#��
b����
#��

ࡱ�����

N�
�x ȴg
��i � O ' n H }
Ȁ
\##k��
����n,
� �
O #�
t #O p }Ν s �

# :�
# 8 �
o o# ‫ݫ‬g��
} #c #2 #2 >�

#��� @ ֲ��<ʀ
k 2
Ȁ
#�
��
��� { {
Ȁ
Ȁ
\##�
���
v��vs ) #Y2 Υ #2`lgl
� � #2�

�� �
#2> #
> ֳs�
ʀ \À r
Ȁ
#� #
۹#�
Ȁ#
Ȁ
��
`� �
l g0l���

: z �

�#2 �2 2
\ # #2 #2p9
vv # #
#� #
۹�/g=;� Υ
Ȁ
Ȁ������
Ȁ
Ȁ
\##�
���
v��vs ) #Y2 Υ #2`lgl
� � #2�

�� �
#2> #
> ֳs�
ʀ \À r
Ȁ
#� #
۹#�
Ȁ#
Ȁ
��
`� �
l g0l���

: z �

�#2 �2 2
\ # #2 #2p9
vv # #
#� #
۹�/g=;� Υ
Ȁ
Ȁ������
Ȁ
Ȁ
\##�
���
v��vs ) #Y2 Υ #2`lglw


�ɓ�
�����
љ 3 }w' ��
_t��
# �
# 7 ) # #
#�
�c �ܽ{wë�
# #� ��
��
~�
���˗�
^�ɀ�
6�Os �_
� v N
Ȁ
#�
�c# #�
#�# ۡ � �
\C#�
������� v q
��ʀ
S+
��
3 ` ul g lw�
���l��ɀ

�/
=w d 1 S L
�� W
#�
�c# -#�
��
� # ��
‫{ݽ‬ O |v >�
g�#
� # 8#�
#�
NJ�

��
# # L�
# vࡱ�
��
v �
## #_ w Ч# # �
湵�>6 �
�; n�

#�
Z�} z | ~ࡱ ' ^
�� �

W 2) #̀ ��� ۡ��eI]ࡱcq
#
#��
#� �
2 . #2p
#�
��#� # ؎��#C�
�� �
2@ # de@ # d�c ;�

�c�
�b�
�# :
� c b ࡱ # {
�W )
2 #2��
#�
�# �

#�� �
v v~ \# 6 7�k# �
ࡱeɓ #
Ȁ

�� ��{
fq �]� } u" # 2 #�
#2p
#� #
‫۝‬+��
#� ��
2 + #2 # � ]
0 ��Ȁ#
� 3 s ^ D
Ȁ
�����
#+ ʮ�vʀ v v
Ȁ
��
#��m

# ‫�>ׅ‬2 ' #2 #�ʀ��� 2# 2# 2���� ‫ݹ‬p�c #
�\
� ; c;��
�� u O
Ȁ
�2 9
` lglw�� j
Ȁ
Ȁ

�� ��{
fq �]� } u" # 2 #�
#2p
#� #
‫۝‬+�� #� �X [�
2 + #2 # ��
��
�o�
l ��
#�
��

6�� 7 � n o� � n�
�# �6

÷ �}
� 2l
� y w / r ��
o b ? � ͽ
#2~ # >\ '
��l ޯ~��
� '��
{����

#?���
]x #@ Ϯ#���
���
d �

X KS l �K 2
{ #> e # #2p 4 . M &
#�
��
��
#�{

� # l��
< ‫׃‬##|O {�
�ࡱw �#
�� �
L�
' # y #
,#���
ࡱࡱ��uĖĘ?�
���
я�
��> o
ɀ
Ȁ
#��
��
��

���c]
�C # 2 \ � �M

��
#2
# �
1 & ��
# #��
‫���ش‬###v9 }
#‫�ۍ‬Y83��
ʀ���
# \
Ȁ
���
# 0 a�c
�� #� #�O # � #s�8� # ;��
# �
l 7 # } # ' # 2 v j#2 w g
#�` a

Mɓ��
���Ǐ
���
���ѣ��
7# � �ϫ#
# � n
�f ' ` j-W 0 ; K # s
��
#� #��
����
��
1 �;c �M;
� F���w #
y �
� o#��
�y �k�# ]�G \
�ux �
#K # # 5 ۹���O
v ��
# 27' x
#2�� b�
��
���#�
]� > �
�K
# �
* ˂,� o k
Ȁ
��
# X ZC l�� ࡱ|��
��
�����
U� # |d @# # d �
@� �
� H
=>#
` h ��
w� � @ b# #d @ # d ` m
dv 1 G G
,#��
w�
��;�
��
� l�
Y; ��
V] #�g�#
�; d ` . # ݃##��

� ���
#�
] k [
��
��� 5 M , #22 #S#XClG
��Y ��
b�
�<� F ; 5 k�
��
��
e� #| ?N #
{ �C Y߹}#�
� e # # 색� (c?
�u�#:X C l �
��
}��H

Y��� f < n#
v � /�
�� �
] su# 7挕 X��
� new
�� ��
d &X K #l # w|gqb9 >� 9‫��ﭼ‬#��
c��Q

#� {
x��
v�
��o @�
��� B g ࡱ_# u ��
>�s
���
��
u�# � �Ү� #
= �# Z m # �� ߌ��>[#
볟 1$ {
B ��" 7�z�#
�� _�
�c O 呙��
F
{t�
�1 v #&c�
�k�

����� #�� $ �t � m ՜ ��? N��
‫ڒ‬k l� �
Umwe�

>���� } 왴� �
�S��
} A��
h {��� �
R$���
W� �
b# ���

c�*= � �k ub Ś* �δ s# O M q
n �
#�, Y �G| # # ‫;ת‬p�
��
��s�� �z �
�P + # | # .
" k ?
6���
!��Ǵ | !# [ g 迫�����#
$ ��
� +��#� #
9 m�R�
3 �c I��

u�s� �{# �# D # . ~] V X = |
{� )
3 ߕVl!�
�9q #�
# 9� 6 .
En�
��
|�
9��
F Վ 2 ֯g?t.��
cz#�-
#�
� M8�<�1#��#��������
�‫ݡ‬#I�� �

/ 9 8# s #&��
��
�� K < ��L�����Z
Rk �� ‫܉‬ J
b#�� � ]# ۞ P� ֆƌ� :a Վ
� �
? G= # 1(# �
Ȏ� �fN
۱ֶ# | ��
�3� m�j i�(� �
#�/�����B ���

ѱ �g � s# � � A c# } D v
� ֡ qZ��
‫�ذ‬ ҹ�
�� ���= �0�
w f��> { � P�v �q} # � � }q `� # #� �p
|#N �
#_ % ' \ � 朦#g?� �� �
fW ] "
+�
-d ֆ [ #
ࡱ���C�� ��� �} �
��
#ǚǦ��1 �� !�^
G � Sy TƦ.�y �Y �6 # 紎v 1 h
k�� ��
1�
�� �
sӶ�� ]� �L m�
c ����l '7 � �#g �
Q�o �
s ,��� :� c �

3��


q
wc }] Z y > �1 \ #59 #, # ࡱ C � ] 'P # (
�L g l��~N ��Ɔ)��
#�
�Ӷ� U # � ,1 #� # � o ‫��ڧ‬#�#k= n��� # 殶 #a�� ���Sࡱ �=�� � �
v
^ ��
. �
c�
T��#� g s # L M ]
�| k B\�
���� ��
<���ʹ��
N # O y i‫׳‬vW=6 Y � ��L&�� =#�d ' 1 L ��
p ├� �
��S T #@ # \ g m 1
%Gࡱa���R� #�;��� Ǟƒ
�#���
e #j� ; e l # ࡱࡱ� ʰ ‫�)]�ڜ‬ � �n]ࡱ wr >( G? �
uC #���

v _��\�U { ,t _m 1 �
‫\|�מ‬ > |
#��c M��{ ۞�x$g
[ ��# . Y��j���M� ����

NJ��
# ˩" �. �
<C / 4 }m # # F�>� ࡱ OD� � {� �b a] j ?� ࡱ
;�b + 7 cN,� Ɛ��� <�
h �
D� ʑ c
_ D湵�k� ��
�� Ӷ�� �
ࡱ8 �A����

s i E ‫��ࡱܧ‬
# :
��
W R� Wl��� � g
E
# � . j / o� �/
. s ߭q� /ϩ�
��c� ' �

X�
t�
��
��
� � j � ��>�w� �w � � e
L �U [ <> �|
## ` D }
C��
� g4� {#� ‫��ݬ‬ c� #��� f� # M ‫؍‬T #�Eࡱs#�� # |
��
��� � #~� # }# ᣍ ��
q g / #� �
y �
;��tb ��_ � 7m � �� �� P��c�k�
# l� ���� 7< � kǼ � ~�
8= 1 ig l w
L#‫ד‬jlG�� �� ��� c Q� ީ ����,eĘ F �� �e�}x{ ( # �
l[ 7� �� rd � q�͙ �
8 w # 糲 r r
�ob� ��� �
#�� # #o �" � G " ‫!ۉ‬O��#> Z�
k{K]�
��
��
=�
��c

�� >l �

n7� ?# dɀ�
��
��
@� �w # N
f# d @ # tÀ # M Y
Ȁ
���
# 0 q�c
�� =
� #� � #s�8
W # � # ;�

# �
l 7# } #�

'��
#��2� v j#2 #
� w g �

ࡱࡱࡱ#��
���
����
a�
б _ m f
‫ڗ‬չ��
l w�z �� _
Ȁ
��
# 8 #d l��
��
n��
����� # c ߛO?�� l�
���

� U# �� #�
F���#�
�y

# # �
� # #� # A6 | ]
a e { D N=
��
����� 2� ;# .# � �


#/�
�� }# ��

��O�� �
> - �� � w_ � \Sf|g|
w �g W۱��9�� � m 콯�#
?~� ~
n y ���# |
ࡱ�
��
�ұ�;�
���~9� � =ࡱ5
~ ɐ
}# ��s c ��
# �
>I m ‫�����މ‬ S#{�
�����
p #= � �
#�

� A
> x Ŕ = ?
�Y m
k #��
� �
���m�q��Q��

���{
] : P # $��
��#�_ #
��
]�� ~ ‫ۥ‬/�� �
��
#)" ���u
���
��
�� } ; / j# �uࡱ m�
�w �# 8 .D 湵�Oࡱ 3y _�##k�# >��o��, ;o |�# ` �֞D��� #� e
l�
��
��~ h �
�v�:��
[� c 9 # ��
‫چ‬v \# ���J
| q闾�&�
‫ݶ‬m� ��#e c��' # � � }
O �
͑ mY J
2 # ‫?��ݶ‬
k W
hG��N :C� �
��c� c{ _ � �
| KP s ? c | i�l� 2 ߙ#c Ý ��{�
[ >݇ � wƬࡱ� #��� � s k ��
�� R~ = gg
) 8 Ս ࡱ�s'}#G
O ,- ��
#Y��6 ' '
�# E
9 :I�� 9��#| } gN t ΅ �
d ‫�ڑ‬#y }�� {H�ࡱ w�|��
ࡱ ,� ## O |
W}�� �5 m I�N�
���
[ c� � �� } �=
l �>9 n u ��
‫؀‬# #J <#9@ # |##"#?%#K
# �O # /Ҿ
�Z� c��#
# �# A c <c # � ��
# #с !
Y�
ƆI e�O9 ћ�#\ �� H 0� &��,�D � <�
�u|��� �
ӯ��
���
��
#
? v ƙ | �
g M = # F # # |
##��
��� �w��2 s # ` l� �
w�M8�
���
7 �r�u�K �O�#� �
d
Yo ࡱ # [ �]� _ 5 G }V>r ‫�ڱ‬gࡱKe �n��v��
�# 6 �U c fs �v E 9 Q
FJ=�� '� �
y Ά��
" �
}�
�� �d � � �K�
!�
�tӦ�
��
= �[� ��� � ࡱ�;��� �� ��U ] 9iF
) � I KL �v
3 j S Y X O vs n
����*�� ���� � u� |���
��
��
��
c { & e * ؏‫ݹއ‬I� ��ӏ�
T& R D#X koir� �
G�
��

� ��
] �
o g* ] # ߘS>dkl6?
u / D

��
��
�y � ' ��


/���� ȹ
�N �
3 �:�" � v v Q :‫ޞ‬+u#EO[_u
) ��5~ = ��

���� e ‫{=ۦ‬9
# k �ε o
z #��� c
‫�ٯ‬t#/2r�� g� �җ
���
��#�<W
} �� � ��
>sm | : f
‫'���ڵ‬sU� ��
��
s�
�V���
��
�c�� c �� �
��
�y � Q� �#�� ��g = ࡱ$ �
) �$ � �
# ] . l _ w ># r
‫��\�ݕ‬ �� 1 �
~�� # = x�s
� ^ �
n �y �

��
Ҧ
���


k���
> R� �
ѵ�
��
>�}
d�
c��J �k v� �
W j & # Χ | ; } 9 v?
��
ߩ�y ��
��ǔD�
����
����< h 2 r # : ��
‫<}�ٯ‬ #s�W K lh : ‫ۥ‬/}ǜ���&����Y��.��y ��s���ȭei[��W?
z��
l X(� # h # U##� s 8 ‫������־‬? w��# ]! {� "�7
��� ?* C #

�#]� P #e ���
,�# �� & ࡱ��l�� �
{c
m � �R � _� aW �v
� [ f �L e
d � # ) 7. ? } }ܹ G 3 < e
6Ǘsc�����k��R�=��:�c�9�5�;�#`oM���_��$\#�o��s��2�d�d#M
㔥>2� �� # ؊ ���\�� ࡱg�#6^
c�� ξN ㄜ��K#R=Dz � g<��� } �w ��' p� ��
_ ` "^ �O վ� ‫�ש‬
> � ) q / D
t�
�# . zG 音�{d�‫۔‬ſ�V�� lF��_�� �� �

N. �
���g �# ' �E b�� )Ӟ_�
v�t�K�
r FG _ � �7 g 4 v\ # O? #rb
� = �# ‫؛‬#��
O #k 2 Y� c O�
����
��


#ɋG����
s M �ࡱ��� 7 # � ��r�bW j � w; ��
{? 6 # : [ .# y g
b��mࡱ���
/�ࡱ c� � �
� �� �

-
#�� 9��^� }Lf�> 3 9 R K & x <
')g#2�� #� \ZI �ʳ�
; ࡱc �� � O a }Ȧ #�S ࡱ} y Գ� ն
I !# 틮�H �� //|��湵� �
�#��
���
� A W v ^۷�G#cd#HCgb B ��l g�
��~�7� �
����


~���
� �
$ A c:� ## # �#D N# Te � Y q 湵�c ��� ¦� #砋 )6
�%��
��� 83�� �m �
�� 3
0 6 ۴ Mࡱ`�t6���
?��# � �
}� � o Лࡱ �Z � ࡱ ϶�: ᣝ vz 湵� ��
C W��V
r��
]�
�p g \ >
‫�� ڟ‬
KΙ #u �� } \ r
;�- }�g� � ##
�� ���
u)���V v= �#�?�� �
`x�w
� � > � 5�c
# �� �� ' 7
# = �
-1#‫פ�ر‬#���
��
#��
�Ծ ak X é弬 # z
�G2ࡱ� ������
�ࡱ �># � �
#�
�H � �
�u��
g q*� d k� �
=} # ##�� ��
_c �
�a:�
$ �X
N � �
#K�; #] 2 �� � NJ
e S > vq
c��
�� �
���>� o s n �� )l� #�� #� 1�w��
# . ۸ Fy �� Sm��CJ O��
\� 9 룬 #3lh��
]&��=� ‫|�ב�ޓ‬eO`#
# ��s
%��2 2v‫�خ‬
5��f� ͝ �� 7�‫ خ‬c9>d{�� �� s ## ^�
�ˌ�
" \ �� M ) %�Y �Ï\ #s � �#� #
� �
�Z
C{ �

v � D
& y } # 9 q 9
Bl�a xW� � #��k�� �
Ӻg� : � �
<x #%� �?
��
G�b �#p ]# � # �I � 8 y � �~> g3#�<� y
� #5 g ## u Υs
Ȁ
��
# 8 ZV l��

5�
˸�
�����
8SH ��
�9�
[����

`#
c ϙ �
#K ʜ# ρ
6 # b # # Z #
Ȁ
\>#��
6����
W ��

xe�� ϟ��
� d#
# � #[8 \ # # #
#sc��
~�|�
���
ϸ �c �
2X} ���
��
� � �
����
#2 l 7� �
#20 �
7 �

r@ � #� d c ��
#
c@~ #
d�w 2 �
f � w d U # # n
#2��� g vl���
## �

q
k @ # Xd �
@�#tN�@
�e� � � � �
�r
u8�
�# �-#2 #K0`l
w�#� S- d @ �
#2 d # ~v N [
#��-�
Ǚ�
��
� #r 2? R� #2

�+g
# ���k


l @ �
# # d v @q �
#�N @
�X � �
t e �
u8 #2 r# - -S 2
#K0`l�� �
w#��
��v # ~d @ #Nd
� [ #
#��-�
Ǚ�
��
� #r 2? R� #2

�+g
# ���k


l @ �
# # d v @q �
#�N @
�X � �
t e �
u8 #2 r# - -S 2
#K0`l�� �
w#��
��v # ~d @ #Nd
� [ #
#��-�
Ǚ�
��
� #r 2?��� R��
�#2�

Ǜ
��
#�+]�
����~
�o� # # ? : # #_�� # �
# 2 # #2 �


#� ~ ࡱ k�
h@ �
L ^ w x# 䘮
��?��
� >��
'�l�
O 랢#d@#d@#d`>#5
U �ӟ��
LJ��� 9 Ν > [ s ξ
Ȁ
��# Z� ��7

��� {� � w~ )~ }
o # 2# #2 |
#��x #�

o����

���6��

ӧ~

� e #@ #O d @ #Y d @ # d @ #d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#
_
d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#�� 5��
�Ǐ


}�
� O7 ��
j # ‫�ݻۺ‬##n
' �
� k ۩��X#
c ��
# t�
r� @ z# �
�d
d #
y �
��
��
���f �o̝ <
�# y Oː �rR 2
~ � 0 %
Ȁ
Lg��
��� # և��

� y V�� 龿 D�ɓ
�ܹs�� \ "< ࡱI�@ e
#Ή�
����

��
�� f G Q
ȓ�� � 9 ����* �
#�2� b : ��� # k ��y y o :
� � p Ͽ
�Ա� ) ; ï ʀ OT
Ȁ

���
a1��
Xࡱ F�� �
~ ?#9 �
� ɹd����
# m@ �
#�d �
@�


%�

#I�
� #
R ։
#ࡱ e{
2ࡱ � <Y
3
p g ; e \ *

�#3 <�#�~�
��
ω��# v ?����#
�� � �
]
#�X��� �
g .��
� �
ʹ ̕#
ʓ�
�# �
��
3 #��@�#�
� }q�
##� �
]�q
; > f \ ] e # k
ࡱ��‫��ݳ‬e
# ��
��� 1 ) U d |
[�@ d
# d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#
d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@#d@
#d@#d@#d@#d@#d@#N�� l 6� _��
� �z "
# # #
%�# # ##############################################################################
###################################################################################
###################################################################################
##########j###########################�# # ####�# #�## # � ## #
�# #
� �## #
# # # � # ## 6 # ## # 6###6
#
###6###6###6###6###6###6###v###v###v###v###v###v###v###v###v###6###6###6###6###6###
6###>###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6##
#6###6###6###6###6###6###6###6###�# # 6###6#######6###6###6###6###6###6###6###6###� #
##6###6###6###6###6###6###6###6###6###6###6###6###h###H###6###6###6###6###6###6###6
###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###
6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6##
#6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###6###�# # 6###2#####
##�# #�# #� � ## # # # ## #####
## #
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####2###(### �
##�# # # #
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####
###0###@###P###`###p###�# #�# #� ## #� ## #
�# #� # # # # # ##
####
###0###@###P###`###p###�# #�# # #8 # ##X### �# # # ########V###~### ###OJ##PJ##QJ##_H##mH
#nH #sH #tH #####J##`�# # J#
####I�# # ##N#o#r#m#a#l###
####d#####��
# # #C J ##_H##aJ##mH #sH #tH ###`##@####`#
####I�# # #H#e#a#d#i#n#g# #2########d�# #��
#� # ##
� # h# @ # ##@ &####5##CJ
#OJ##PJ##QJ##aJ#################D#A`��
D ##
##########D#e#f#a#u#l#t# #P#a#r#a#g#r#a#p#h# #F#o#n#t#####R#i#��
R ##
#######0#
#T#a#b#l#e# #N#o#r#m#a#l######�# # 4�# # #
#l#4�# # ####a�# # # #####(#k �

( # # # #####0###N#o#
# #L#i#s#t#####
#####H#�
��#H # #
####I�# # ##H#e#a#d#i#n#g# #2# #C#h#a#r#####5#�J �# # # #<#
C#OJ##PJ##QJ###<# @
####I� ####L#i#s#t# #P#a#r#a#g#r#a#p#h#######^�� �# 6 #
# # 6## U @ #
###�8 ]
# 0# #H#y #p#e#r#l#i#n#k###
#>*#B*#ph##�\ # ^@##"#\#
###�8 ]
# 0#
#N#o#r#m#a#l# #(#W#e#b#)########d�# # #�# #�d# [ $ d# \
$###CJ##OJ##PJ##QJ##aJ##PK##########!
#��
��# ## # ## # # ####[Content_Ty pes].xml
� � �#��E
� � NǢ #�
0ǎ J

�$
% � -
H
# @ ��
‫�ز‬U � B�
|L T
ș
#l,�
���3 ;�
# �

��r #+ $ �Ø G �]

JO B ‫٭‬V��
# < #a�
���

7�
��# (�g� L ��
���#
I# ��R {v� p&�Q
� = r 8 뉑 5 #
8��
��
�� CX 6=

��#ࡱ N
��#���
�C � ��
?# ���
$B�

� �.
ʹ �J � e # 5 �F # � ' ð. + �
Y T # ^ 5

� _ g#-�
���

l�� ; Y �‫�^ݎ‬
6|������� �`
N���
#�
# ࡱ ?#��# ࡱ
## [
P K # # ### # #####!
#�֧���###6#######_rels/.rels�� � � j 0
Q���
ࡱ%�}v / #���/" #� #��
� C h} ( # O #

��
�� #�
���
��� � �
= ?�

Ʌ
��� �
# = # C ࡱࡱࡱ ࡱࡱh v
%#[xp�� ۵_ {�ѣ�P #�
<��1 �

#�
�H �0�
�# E
d ���
_��Ob̞ R$��
B�
ࡱ �
�L
�0��
�#�
��
R �q 4 #
J ` ࡱ n# � i6
#7 ࡱ # O� 7 ,
b��
�� �
�� �
/ е�
S� # �e� # # P K # ## # # # # ####!#ky
# �# # � �# # # # # # t h e me/theme/themeManager.xml
# # #
�M
� #@�
����c} wE Y �
bˮ�7
� �
C ��
ҟ�Ǡ
,( ՛��
A ���
�# ���,�
#�K � �#�� 7 �
lɴ#
# Q # } e .#| Ր � #�
H �� ֵ , #x
+�
���
! , j =�
^�W�
��
$ &G ) E +
#8�# #��# P K## # ########!#0 �)�# #�#C # # # # ##
theme/theme/theme1.xml �
O� ��
o # 6 # �
Y toc'v##u
w
‫�ر‬-M#��i n�
��#� } � # Pú��@a
� I[
� # 4�‫إ‬#�lm:
# Яa�R��^�
G# 6 ��
X؊�>$# #����#�
##!)O� ��^ $�r��

@�C�� y � H� * � # / y ࡱࡱࡱࡱ��UDb

) # �} `
"� ‫�ۋ‬J
q ‫��ח‬#�� ^ X I ` )n�
��� ) E


�#i
# � p # l V
[]�M 1 <�
��
��� �# � r #� �
� Ob
# � P �#� �
#���u
6g �
= #� �� �b
#z # �
g I # S۫ ����
e qu �
��
O��
g��Z R
#~ D o
‫ٺ‬lAp�� x l T 0�
p� [ # }# # ` + j���

#�
A � � z� ࡱ�#�V 2 Fi � � ֬ 5\|@ q v
e��ʜ
� �N� l d #c #s� �
sX�
#�# �j� ��#�#7 f |( ��

Ș� �W � � �
+��
���Ն `- 7�� � � g � ��� #� J j # �
����# #d X�
�# J� # ��
؇( i$ (�x
�e :
# ;�˹
� I!

_��#S T #
#1���
E ���? ����
?�� Z # � B�#�
��
Ϊ� �
/ m # U # ?

��
�~���
Y���
�� #�5�ɋ� � &�
x# ��� �
ࡱ'#� y �/ e � # g 3 > V qG M G D # #
%'#q� �
��#��#Z K� �#
�$ f
�8 # 9 : #ĵ �#
�) w #
x}r�x #�� ��
� � #\ wT Z�#a G �� �
:�R
r8 I �| X Ż��
ǿ* y jb c # I
u3#KG�D n # 1�N # # I B#� s
��
��
�� R> V �u E # KL + �M�2
� �.
' # f i
~�
�V
��
l v# u {8��� z # H

�#*���# # W �: �


☕��( ~ \## O * �H J #�
�Y�

�} e K� N
T
G � t H ˦��#�#TѼ�9/#P
‫ݾ‬ ��A7
* �qZ�#�$*c?
��
##� U ## �
��q N � �

#��

n% w ## �� �
# =# 3� �
## �
O� c�
# #� bi �TJ4�# un
�� N # ) ( 4V
7��_ ?�#�-
� m ��
ٛ �{U� � � Bw
w ��
���
��# � �
{<# � Ի# � _h � Ϫ$ # 8# [ 0 ࡱ�F $ �# )
( ۴��®{L##
/ 7�� i
%�A =
# #�s� �:, ��g $ 2) 0 p ��
p#Q \ } D U 4 � f p
M{��B��D % J���#�
�#��

{� â#� �� �=
# � + l C # ] # 5
2F�� �
h s #F +Ɉ�

�� � �Y� ��
3 ��

����
\ � n ì �:4 � 5# #k� Z [!
E �
�6 F 9 #
8 �# m `w� & *
5 `
��
# ##� > �
"��

��ʜd Z z# #n "
��
�����x p J �

; �
��Z # # /
# � < � P�� ���' �
#); ̛���
'{ ��

5
K��
N � # �� # #b 1 ,#� 7 Qk # q p 8 K G
����
p�a# R>� �! ��S K 4 '# + �#
�3Q # r z
TT��
���
� I# v #t# ��
]K�I⫲ ���+� K D ����
c�#�v �
� @� 5 �% �� ���
| �\#N���
� [
w ��#g
K � ~ n O _ n 9L q
R!�� ����# U&
+ y � nH��;��*
# / r ���>T> #\ #�
#� . T ġt =

�� # # S#; Z �
��



#��
� �~ g ��!

i # P ‫!ڧ‬##
9 �# # BC� ��
�, = ; X
‫ۻ‬,I�2 # U#W� �9 $Vl �
���
# �#��A
��k # =ࡱ 7 ��9 ��j � s#{�̠ � �
* ;#� AC
Y � P | # ; [ M
‫ۿ‬#�# h
f�� o��o ]Y # = 1 {k�y ��V��E 8
# �# k + V ֜�5��\8�� X�4VD0)�!
� * |!�f
�# ? v
u��
���
�" Tx ���
_��

�A @ ) k# # # ‫ڬ‬q‫ ڬ‬u� ���V6 7
#�� �
4#�;��
�t� ��
��
�'
s % i 9 459 �
-‫ڎ‬xx��
d?�
, 8
�ǘ�
�# Y | d t /#�

# #
&LI#L�� ` J& # # �� � # -# #
G ��#t P
/ K # # # # ######!#
ѐ��# # ## # ##'###theme/theme/_rels/themeManager.xml.rels �� M
��
# 0�# o oӺ�w ݈Э#�
��&#6 ? $5Q�

�# ,
.��
�� ���ac 2�i h �� �
��# # � R ��
: #�1N�
� #7
d � �q m( �@
g ��
M��
Ȼ
� &� $ R ;(#
��
T
.1� �
' `J �
o } # K r Њ
��
|#� # ${� b �
#����#
� # / P# # ] �A8 s g‫م‬#(� ��
�� �

#�
��
�Q## � �
#L # P[ K # ## - #########!
#
#��
��# ## # ## # # ##################[Content_Ty pes].xmlPK##-#########!
#�֧��� ###6#################0###_rels/.relsPK##-#########!
#ky ��# #� # # # ### # ###############theme/theme/themeManager.xmlPK##-#########!
#0��) C# #� # # # # ## ############ �# # t h eme/theme/theme1.xmlPK##-#########!#
#
ѐ��# # ## # ##'############# �
##theme/theme/_rels/themeManager.xml.relsPK##########]###�
####<?xml version="1.0" encoding="UTF-8" standalone="y es"?>
<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1"
tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3"
accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink"
folHlink="folHlink"/>####U@##
##l####�� #�#�# o# # # #{###�# # �# # ~#. # #�#$ #
�# #�# # 4# C # ; # U H##%###(###*###+###-
@
###/###0###1###3###4#######3###�# #� ## � ##u? -
##YC##UH##&###'###)###,###.###2###5###�# & #�# #� &# # # &' # #T'##_'##b'## �# #�# #�'# # ?' '
(##I(##O(##�# ( #�# #� (# # K () # #Z)##o)## �# #� # #)6 * # #n*##s*##
) �##�# # �# # �
* # #*< + # *# A +##\
*
+##�# +#�# #�+# # # +, # ##,##�# # D - ,##S-##s-## � ## � - -
##t0##�# 0 #�# #�0# # 6 01 # #=1## �# # 4 2 ##<2##U@###X#
1 �
X� ��X �
# ��X �
# �#
# �
X�� # �
�#� X
X �� #
# �
# # #
�X #��X��#�
�X # �
#�X � ��X #
# �
�#�X�� # ��#� �
X ���X#
X
# ��� X #
# � # #� � ##
# # ## # # # # � # # # ## # # # #
##################@##�# # #�� # #�#�
�� # ## # # ## #
# �## # # # # � # #�# # # # ##
# # # # ## # ######## �# # # 0
# �# # ###################
�# # ############�# # # B ##
�# # #########S##�# # #�# # # # �# # # #�# # # # # ## ###?
########�# # #########�# #�## # n # ##q########### �# #�# # �## #�# # u # #
##{
##
#######K###S###;###=###;4##C4##�# 6 #�# #�6# # # 89 # #Z9##i9##W@##########################
##################################�# # ############9###=###�# #�## # � ## #
� # ## : # # ## >###q
###r###�# : #�# # :W @ ####3###3###3###3###3###3###3###3########
###
##�# 6
#�# # 6T @ ##W@################ � # O��

#�
j��#���� # ##� ��#�
#����#
#a � # # # #
m <L # # # #
�# #�
����q
��� =�� c���s # ## � � �# # # # #
# # #e ])

���#�� #��� # # ##��� #�
��#�#
# �
[��� #��# # g 2# #/ #r � # # # 8�‫ڽ‬#� � ��##�� #�
#��# # # ## # ## # # ##o # # #
######################�� #��# �` �
�� ( ^# ## # # # . o# # #### #�# # # # # ########### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ########### #
####�# p #�� � #L `�
�� #
^ p # # L �# #
# h # # # # .######
H �
# # # # # # ###########
#
####�# @ #���# ` ����
^
# @ # # # �# # h# # # # . ###### H #�# # # # # ########### #
####�# #���# ` ����
^
# # # # �# # h# # # # . ###### H #�# # # # # ########### #
####�� #��� #� `
��
� L ^# # # # # �#L # # h # # # . ###### H #�# # # # # ########### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ########### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ########### #
####�# P #�� � #L `�
�� #
^ P # # L �# #
# h # # # # .#################h#######
H
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�# p #�� � #L `�
�� #
^ p # # L �# #
# h # # # # .######
H �
# # # # # # ###h#######
#
####�# @ #���# ` ����
^
# @ # # # �# # h# # # # . ###### H #�# # # # # ###h####### #
####�# #���# ` ����
^
# # # # �# # h# # # # . ###### H #�# # # # # ###h####### #
####�� #��� #� `
��
� L ^# # # # # �#L # # h # # # . ###### H #�# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�# P #�� � #L `�
�� #
^ P # # L �# #
# h # # # # .#################h#######
H
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�# p #�� � #L `�
�� #
^ p # # L �# #
# h # # # # .######
H �
# # # # # # ###h#######
#
####�# @ #���# ` ����
^
# @ # # # �# # h# # # # . ###### H #�# # # # # ###h####### #
####�# #���# ` ����
^
# # # # �# # h# # # # . ###### H #�# # # # # ###h####### #
####�� #��� #� `
��
� L ^# # # # # �#L # # h # # # . ###### H #�# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�� #��# �`��
��# ^# ## # �# # #h# # # . # ##### #�H# # # # # ###h####### #
####�# P #�� � #L `�
�� #
^ P # # L �# #
# h # # # # .#################h############
H �
� � ��
#��`� J # ## ^ # O
QJ##o(#�# h # ##�# # H # #��# # ## � ## # # # # ####h############
# �� �
#� ��� J
` ## # Q ^ J # # ^ J #O #o(##�
###�# H # ##o######�# # # ######h############ ���
#�� � `�# J # ^# Q#J # # o ( �# # #� # �
O## �#
## # h H
##�# # #######h############�# � #��k�# ` �
��J ^ # k# Q J # #Oo (# �
# # ## �# # � �# #h #
## # �# # #H # # # ####h #
############�# ; #���# ` � ��^J # ; # Q J #O # ^ J##o(# �
# # ## �
# # # # o #h##### #�H# # # # # ###h###########
##�# #���# ` ���^
J # # Q J #O # o (#�
# # ## �# # #� � #h # #
## � �� #�� #
# #H # # # ### ##h############ ��
` � # ^
��J� # #OQ J ##o(# �# # # # �#h # # #�# H # ## �# # ## # # # ###h############
# �� � � �
#��`� J # # # Q J^ # ##^ J # O
#o(#�# h # ##�# # H # # o###### �# # # ######h############
# ��
## �
�� # {� �J # ^ # {Q J # # o O
` (##�# # # �# h
##�� # # ## # ###########h############ ���
#�� � �# J # ^# Q#J # # o (
` O##�# # #� # � �# # #
## # � h # # H #
######h############�� #��# �` �
�� J ^# ## Q J # # O^ J ##o(# #�# # # �
# # # # o # # #### h #�# #H# # # ###h### #
#########�# p #���# ` ���^J # p # Q J #O # o (#�
# # ## �
# # #� ##� #h # #�# #H # # # ### ##h############ # # �#�
��
� # ^` ���@
J # # Q JO# # o(# �# # ## �# # #� �# # #
#
h �H # �
# # # # # # # ##h############ �#��#�
# � J`
� # # # ^ #
QJ##^J##o(#�# h # ##�# # H # # o###### �# # # ######h############
# �
���
#�� � � J# # #^ Q #
` J # # o (#O#�
###�# H # ##�� # # ###� # # # # # ####h############ �
�� �

#�� � J # # # ^ Q J## # o (##
` �
O# # ##� #�## # �
# h H
##�# # #######h############�� �
#��
�� ` �
#� J #^ # # Q J # # ^OJ ##o(# #�# # # � # # # o # # #### h# �# # #H# #
###h############�# P #���# ` � ��^
J # P # Q J #O # o (# �
# # ## �
# # #� � #h # # # #H# # #######h##########
## #
##�� #��#�` �
�� J ^# ## Q J # # Oo ( # �# # # �# #� �# # h#
## # �# # # H# # # # ##� � ��##
#h############ �
`� � #
��J� # #OQ J ##^J##o(# �# # # # �#h # # # o ######
H �# # # # # ####h############
# �� #� �# �
# �`
�J # p # Q ^ Jp# O
#o(#�# h # ##�# # H # #��# # ## � ## # # # # ####h############
# ��#�# # � ��J @ # # ^Q @
` �
J # # o (##O# # ## �# h
##�� # # ## #�# # # # #####h############ ��##��� # #� �J # ^ # #Q J # # ^ O
` J ##o(# #�# # # � # # # o # # #### h� H
##########h############�� #��#�` ��
� J ^# ## Q J # # Oo ( # �# # # �
# #� ## #�# # h# �# # # H# # # # ###h### #
#########�� #���#
�` ��� J ^# ## Q J # # Oo ( # �# # # �
# #� ## #�# # h# �
# # # H# # # # ###h############ ##�� �
��
��` ��^�J # # Q J # O # ^ J##o(# �# # ## �# # ##o h # ##### �# # # # # ###h############
#
H # � �
#�
��#�� `� P ^ P
OJ##QJ##o(#�# h # ##�# # H # #��# # # /#r �# # # # # ########[
o �# # # # # #######
g
e�# ]# ##########� �# # q #=# # ####### �� # # # ## ### ######am �
# # # # # #######
< �
�����������������
��#�� #��# # ### # # ####### �
#� # # # # # # # ### ### ### ### ### ### ### ###
##### ### ### ### ### ### ### ### ### ##### ### ### ###
### ### ### ### ### ##### ### ### ### ### ### ### ###
### ##### ### ### ### ### ### ### ### ### ##### ### ###
### ### ### ### ### ###
#1###########�# # ########Hs##�# # p # 0##�# # g c### �" #�$ # � ]( # �# , #�- e a @
#�/ Z# vࡱ# 73 8 5 #�8 #�]G # # O< K# �N # � N ### E j s ���
##r #{ #

��# # 2!�
��# . [
�# # ""
� #R
�#� # �
�#
# #
�_ #
S��
���# [ �
{ ## a� [�
��
@��
#� #4 r �# Kh # H # � I�
o# # ## #�
�#�� ## z �# # �# # #

���#� # # #>
� i# ## # # U @###W@########## �
��
# # # # � # #@ # ## # #6# ###
#�6# # # # ##
� # # # # #6# ########U@
6
##`####@##�� # # ## # #U#n#k#n#o#w#n#��# # # ### ######## �# # # #�

## ## �

## # �# �
# # #�#
� # # # # # ## #
#G#�# # ##########�� � C
# x.# #######�# # ####T#i#m#e#s# #N#e#w#
#R#o#m#a#n###5#�# # #############################�# # # S#y #m#b#o#l###3. �# # # ##########
��
# *x #�
C

#######�# # ####A#r#i#a#l###3#�# # # #################################C#M#R#1#0###7. � #


############�� # #� �# # # # ##C#a#l#i#b#r#i###?=
@ # ### # #### # �# # # # # # ######��# * x #�C
#######�# # ####C#o#u#r#i#e#r#
#N#e#w###;#�# # #############################�# # # W#i#n#g#d#i#n#g#s###A# �# # # ########
##��
# ## B $# # ######�# # # ####C#a#m#b#r#i#a# #M#a#t#h###"###q# �#��# # h# # # # #�
� 7
# � - #
!# Q ^
#�# #� ##�# 6
# ## ######�# # #

t ##�# 6
# ##
###t#######q##�# # #################################################################
###################################################################################
###################################################################################
################################################################################� �#
#n#���#0 # #2# # ##########5@##5@######################################################
##################
3��
# Q# # ##��# # # ### # ###################HP####
�# # $P##�# #�� #����ࡱࡱ
��� ���
ࡱࡱ 8
ࡱࡱ ���
ࡱ ࡱ ࡱࡱ
ࡱࡱ ���
# ࡱࡱ
ࡱࡱ#���
ࡱࡱ #�
ࡱ ࡱ ࡱࡱ
ࡱ ࡱ#ࡱࡱ # 2 # # # #] # ################!
#################################x###x###########�# # ############�# #�� ## # # ### # #####
######O#w#n#e#r###C#o#m#p#t#S#c#D#e#p#t#####################$#############
###
###
###
###
###
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################�� # # ## # #####################ş �
�h#�
�# O �# ## # l # # #0########
+ ' �# # #
# #
##�# # ####�# # # ###
�# # # # ##
�# # # # ##
#�# # # # # #

## # ###�
## # ####�# # #
###########(###
###4###
###@#######L#######T#######\#######d#######�# # ################################Owne
r#######################Normal######
###ComptScDept#########12##########Microsoft Office Word###@####ZNc!###@#####�� T
�@ # ###�# 4 #
p�@ # # # #
���
# # #ͺ� �
# ### # # ####

######�# 6# #########################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
##################################################�� �
# # ## # ######################� ՜ .
##��
# + #,�# # # D

#�# #

� #՜ +.,
� # # #�# # 8 #
#######h#######p#######�# # ####�# # # ###
�# # # # ##
�# # # # ##
#�# # # # # #
� �
## # # # # # �
### # # # ## ## #
###�# #
###�# # ####�# # # #######Hewlett-Packard#####t#######
#######5@#######################################################
###############Title##########4
########## #######8#######@###########
###_PID_HLINKS#####�# # A###� ##f#######v#
#####0#######################5###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#
i#k#i#/#L#i#b#r#a#r#y #_#%#2#8#c#o#m#p#u#t#i#n#g#%#2#9#####################O#######-
#######################?
###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#P#y #t#h#o#n#_#
%#2#8#p#r#o#g#r#a#m#m#i#n#g#_#l#a#n#g#u#a#g#e#%#2#9#####################?
#r#####*#######################(###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#
w#i#k#i#/#J#a#v#a#S#c#r#i#p#t#####################*#####'#######################>##
#h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#I#n#i#t#i#a#l#i#z#a#t#i#
o#n#_#%#2#8#p#r#o#g#r#a#m#m#i#n#g#%#2#9###################?
#i#####$#######################,###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#
w#i#k#i#/#I#m#p#l#e#m#e#n#t#a#t#i#o#n###################%#ࡱ#####!
#######################'###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#
/#D#i#m#e#n#s#i#o#n#####################u#G#############################8###h#t#t#p
#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#V#a#r#i#a#b#l#e#_#
%#2#8#p#r#o#g#r#a#m#m#i#n#g#
%#2#9###################0#l#############################=###h#t#t#p#:#/#/#e#n#.#w#i
#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#J#a#v#a#_#
%#2#8#p#r#o#g#r#a#m#m#i#n#g#_#l#a#n#g#u#a#g#e#%#2#9#####################@#
#############################
%###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#C#%#2#B#
%#2#B#####################V#
#############################"###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#
i#k#i#/#B#C#P#L###################c#y #############################:###h#t#t#p#:#/#/
#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#C#_#
%#2#8#p#r#o#g#r#a#m#m#i#n#g#_#l#a#n#g#u#a#g#e#
%#2#9###################4#_#############################,###h#t#t#p#:#/#/#e#n#.#w#i
#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#S#t#r#o#n#g#l#y #_#t#y #p#e#d###################.#
{#####
#######################(###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#
/#S#u#b#r#o#u#t#i#n#e###################u#G#####

#######################8###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#
/#V#a#r#i#a#b#l#e#_#%#2#8#p#r#o#g#r#a#m#m#i#n#g#
%#2#9###################L#$#############################)###h#t#t#p#:#/#/#e#n#.#w#i
#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#T#y #p#e#_#s#y #s#t#e#m#####################?
#d#############################(###h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#
w#i#k#i#/#I#d#e#n#t#i#f#i#e#r#####################r#############################3##
#h#t#t#p#:#/#/#e#n#.#w#i#k#i#p#e#d#i#a#.#o#r#g#/#w#i#k#i#/#P#r#o#g#r#a#m#m#i#n#g#_#
l#a#n#g#u#a#g#e#s##################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
############################################################################ ###
#######
############################################################################## ###!
###"#######$###%###&###'###(###)###*###+###,###-
###.###/###0###1###2###3###4###5###6###�� #�#�# 98 # # #:###;###<###=###>###?
###@###A###B###C###D###E###F###G###H###I###J###K###L###M###N###O###P###Q###R###S###
T###U###V###W###X###Y###Z###[###\###]###^###_###`###a###b###c###d###e###f###g###h##
#i###j###k###l###m###n###o###p###q###r###s###t###u###v###w###x###y ###z###{###|
###}###~###ࡱ### �# ##�# #� � ## #
## # �# # �# # �## # � # ##
�# # �## # �## #�# ##
�# # �## #�# # ##
� ## �
# ## # #
�# #�# #�## #
� ## #
�# # �# # �## #
� # ##
�# # �## #�## # �# ##�# # �## # �# # #
�# #�# # �## ##
� ###� ## �
# # # #
#�# #�# #�## #� ## #
�# # �# #�## #� # ##
�# # �## #��#�
#�#� # �# # ## �# # �# # �# # ##
� # �# # �## #� # # #
##�# #�# #�## #� ## #�# #�# #�## #� # ##�# # �
## #�## # �# ## �# ���

####� #
�#�# # # # �# ### � # �
# # �
# #
###�# #��#��#� # # �# # #�# #�# #�## # �

��


#�
#�

���

���
## ��
# #������ #�����#�� #
�����������������������������������������������������������������������������������
����#�������� o������ #�����
o����#��� t� # R
#E#n#t#r#y #################################################��#��� #��
#�# #

######�# # ###F############ ���


ͺ �# Ц�
# # ## # # # ##D #a#t#a################################
#########################
###��� #���#���
#��
#�# # # ## # # #########################7### #� #
� # # # 1 # T #a#b#l#e#########
#
########################################################�� #�#�# ## # # ################
#############�# #�# # .# # ##W#o#r#d#D#o#c#u#m#e#n#t###################################
##################�� #�#�# ## # # #################################4l########S#u#m#m#a#r
#y #I#n#f#o#r#m#a#t#i#o#n###########################(###��� #��� #���#�� #�# # # ## # # #####
####################�# # ##########D#o#c#u#m#e#n#t#S#u#m#m#a#r#y #I#n#f#o#r#m#a#t#i#o
#n###########8#######��#��� #��#�# # ## # # # ########################## � # # # # #######C#o#
# #
m#p#O#b#j#####################################################��� #��� #���#��#�# # # ##
###############################r###################################################
########################��� #���#���#�� #�# # # ## # # ####################################
#####������������������������������������������������������������������������������
�����������������������������������������������������������������������������������
�����������������������������������������������������������������������������������
�����������������������������������������������������������������������������������
�����������������������������������������������������������������������������������
�����������������������������������������������������������������������������������
��� �

#������������ # #
##���� # ######�# # ###F ###Microsoft Word 97-2003 Document#
###MSWordDoc#####Word.Document.8#� �# 9 #q# # ##########################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
################################

Das könnte Ihnen auch gefallen