Outstanding Pulses

With QNX4 you could sin proxy to see how many outstanding proxy there was.
Very usefull to figure out if a program isn’t able to process them fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario

Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy there was.
Very usefull to figure out if a program isn’t able to process them fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario

Thanks Barry!

“Operating System for Tech Supp” <os@qnx.com> wrote in message
news:9em0vv$5pa$1@nntp.qnx.com

Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy there
was.
Very usefull to figure out if a program isn’t able to process them fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario

Couldn’t you just do a MsgReceive with a TimerTimeout after you processed
one pulse to see if there is already the next one… and then abort if there
is?
Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9em53g$jhc$1@inn.qnx.com

Thanks Barry!

“Operating System for Tech Supp” <> os@qnx.com> > wrote in message
news:9em0vv$5pa$> 1@nntp.qnx.com> …
Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy there
was.
Very usefull to figure out if a program isn’t able to process them
fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario

    \

“Markus Loffler” <loffler@ces.clemson.edu> wrote in message
news:9em7np$l07$1@inn.qnx.com

Couldn’t you just do a MsgReceive with a TimerTimeout after you processed
one pulse to see if there is already the next one… and then abort if
there
is?

If proxy are outstanding MsgReceive will return, but we don’t
want to throw it away, so the code will have to process it anyway.
Hence this solution is not usable in our case.

The idea is to monitor a system as a whole to see if it’s
no falling behind. On QNX4 sin proxy was one of the
think I use to do to monitor operation of a system, just
like running sac or sysmon :wink:

Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9em53g$jhc$> 1@inn.qnx.com> …

Thanks Barry!

“Operating System for Tech Supp” <> os@qnx.com> > wrote in message
news:9em0vv$5pa$> 1@nntp.qnx.com> …
Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy
there
was.
Very usefull to figure out if a program isn’t able to process them
fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario



    \

“Markus Loffler” <loffler@ces.clemson.edu> wrote in message
news:9em7np$l07$1@inn.qnx.com

Couldn’t you just do a MsgReceive with a TimerTimeout after you processed
one pulse to see if there is already the next one… and then abort if
there
is?

To add to my other post: MsgReceive could be unblock by messages,
if the pulse are low priority and high volume of messages is send, not a
single pulse could be received. And you wouldn’t be able to tell
unless you’d use a mix of MsgReceive and MsgReceivePulse but
that becomes ugly :wink:

Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9em53g$jhc$> 1@inn.qnx.com> …

Thanks Barry!

“Operating System for Tech Supp” <> os@qnx.com> > wrote in message
news:9em0vv$5pa$> 1@nntp.qnx.com> …
Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy
there
was.
Very usefull to figure out if a program isn’t able to process them
fast
enough.

Is there any way of finding the number of outstanding pulse in NTO.

  • Mario



    \

Other possibility: Have a sequence counter (if necessary in shmem) of the
pulse sender and the pulse receiver.
I don’t know if this is applicable in your application though, you probably
have thought about it already.
Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9emad2$mnp$1@inn.qnx.com

“Markus Loffler” <> loffler@ces.clemson.edu> > wrote in message
news:9em7np$l07$> 1@inn.qnx.com> …
Couldn’t you just do a MsgReceive with a TimerTimeout after you
processed
one pulse to see if there is already the next one… and then abort if
there
is?

To add to my other post: MsgReceive could be unblock by messages,
if the pulse are low priority and high volume of messages is send, not a
single pulse could be received. And you wouldn’t be able to tell
unless you’d use a mix of MsgReceive and MsgReceivePulse but
that becomes ugly > :wink:

Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9em53g$jhc$> 1@inn.qnx.com> …

Thanks Barry!

“Operating System for Tech Supp” <> os@qnx.com> > wrote in message
news:9em0vv$5pa$> 1@nntp.qnx.com> …
Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy
there
was.
Very usefull to figure out if a program isn’t able to process them
fast
enough.

Is there any way of finding the number of outstanding pulse in
NTO.

  • Mario





    \

“Markus Loffler” <loffler@ces.clemson.edu> wrote in message
news:9emd24$o3j$1@inn.qnx.com

Other possibility: Have a sequence counter (if necessary in shmem) of the
pulse sender and the pulse receiver.
I don’t know if this is applicable in your application though, you
probably
have thought about it already.

Actually I haven’t :wink: That would work, but only for our own software.

I’m a bit disapointer to learn I will have to wait for an “instrumental”
version
of the kernel. I don’t want to measure when and how pulses where sent.
I just want to know how many there are waiting in the queue, this
information
is already there somewhere. The idea of switching kernel operation mode
or using a different kernel to get this information doesn’t sound perticaly
appealing…

Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9emad2$mnp$> 1@inn.qnx.com> …

“Markus Loffler” <> loffler@ces.clemson.edu> > wrote in message
news:9em7np$l07$> 1@inn.qnx.com> …
Couldn’t you just do a MsgReceive with a TimerTimeout after you
processed
one pulse to see if there is already the next one… and then abort if
there
is?

To add to my other post: MsgReceive could be unblock by messages,
if the pulse are low priority and high volume of messages is send, not a
single pulse could be received. And you wouldn’t be able to tell
unless you’d use a mix of MsgReceive and MsgReceivePulse but
that becomes ugly > :wink:

Markus

“Mario Charest” <mcharest@antispam_zinformatic.com> wrote in message
news:9em53g$jhc$> 1@inn.qnx.com> …

Thanks Barry!

“Operating System for Tech Supp” <> os@qnx.com> > wrote in message
news:9em0vv$5pa$> 1@nntp.qnx.com> …
Hi Mario,

I talked to a developer and he said that unfortunately there is
no way of determining the number of outstanding pulses in NTO.
We are currently working on an instrumented kernel that will
aid in debugging which will be available in a future release.

Regards,

Barry


Mario Charest <mcharest@antispam_zinformatic.com> wrote:


With QNX4 you could sin proxy to see how many outstanding proxy
there
was.
Very usefull to figure out if a program isn’t able to process
them
fast
enough.

Is there any way of finding the number of outstanding pulse in
NTO.

  • Mario







    \

Mario Charest <mcharest@zinformatic.com> wrote:

“Markus Loffler” <> loffler@ces.clemson.edu> > wrote in message
news:9emd24$o3j$> 1@inn.qnx.com> …
Other possibility: Have a sequence counter (if necessary in shmem) of the
pulse sender and the pulse receiver.
I don’t know if this is applicable in your application though, you
probably
have thought about it already.

Actually I haven’t > :wink: > That would work, but only for our own software.

I’m a bit disapointer to learn I will have to wait for an “instrumental”
version
of the kernel. I don’t want to measure when and how pulses where sent.
I just want to know how many there are waiting in the queue, this
information
is already there somewhere. The idea of switching kernel operation mode
or using a different kernel to get this information doesn’t sound perticaly
appealing…

Mario,

This support will be forthcoming and will most likely be
through the /proc filesystem interface. I’d encourage you
(and others) to send your requests of “things I’d like to
be able to look at” to ossupport@qnx.com or to thomasf@qnx.com
I’m anticipating doing some work on this area in the next
few months.

Thomas

Thomas (toe-mah) Fletcher QNX Software Systems
thomasf@qnx.com Neutrino Development Group
(613)-591-0931 http://www.qnx.com/~thomasf

<thomasf@qnx.com> wrote in message news:9eu5a3$4er$1@nntp.qnx.com

Mario Charest <> mcharest@zinformatic.com> > wrote:

“Markus Loffler” <> loffler@ces.clemson.edu> > wrote in message
news:9emd24$o3j$> 1@inn.qnx.com> …
Other possibility: Have a sequence counter (if necessary in shmem) of
the
pulse sender and the pulse receiver.
I don’t know if this is applicable in your application though, you
probably
have thought about it already.

Actually I haven’t > :wink: > That would work, but only for our own software.

I’m a bit disapointer to learn I will have to wait for an “instrumental”
version
of the kernel. I don’t want to measure when and how pulses where sent.
I just want to know how many there are waiting in the queue, this
information
is already there somewhere. The idea of switching kernel operation mode
or using a different kernel to get this information doesn’t sound
perticaly
appealing…

Mario,

This support will be forthcoming and will most likely be
through the /proc filesystem interface. I’d encourage you
(and others) to send your requests of “things I’d like to
be able to look at” to > ossupport@qnx.com > or to > thomasf@qnx.com
I’m anticipating doing some work on this area in the next
few months.

You don’t need to invent wheels there Thomas. Look at /proc/ under
SVR4/Solaris. Whatever you see there might be of interest for someone…

Personally I miss ‘sin files’ very much.

  • Igor

Personally I miss ‘sin files’ very much.

  • Igor

How about lsof? It does a pretty good job of showing devices and socket
connections. You can nab it from www.qnxstart.com.

chris

cdm@qnx.com > “The faster I go, the behinder I get.”

Chris McKillop – Lewis Carroll –
Software Engineer, QSSL
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

“Igor Kovalenko” <kovalenko@home.com> wrote in message
news:9ev2ia$69c$1@inn.qnx.com

thomasf@qnx.com> > wrote in message news:9eu5a3$4er$> 1@nntp.qnx.com> …
Mario Charest <> mcharest@zinformatic.com> > wrote:
[snip]
This support will be forthcoming and will most likely be
through the /proc filesystem interface. I’d encourage you
(and others) to send your requests of “things I’d like to
be able to look at” to > ossupport@qnx.com > or to > thomasf@qnx.com
I’m anticipating doing some work on this area in the next
few months.

You don’t need to invent wheels there Thomas. Look at /proc/ under
SVR4/Solaris. Whatever you see there might be of interest for someone…

Personally I miss ‘sin files’ very much.

Me too, and also ‘sin fd’.

Pavol Kycina

Igor Kovalenko <kovalenko@home.com> wrote:

thomasf@qnx.com> > wrote in message news:9eu5a3$4er$> 1@nntp.qnx.com> …

This support will be forthcoming and will most likely be
through the /proc filesystem interface. I’d encourage you
(and others) to send your requests of “things I’d like to
be able to look at” to > ossupport@qnx.com > or to > thomasf@qnx.com
I’m anticipating doing some work on this area in the next
few months.

You don’t need to invent wheels there Thomas. Look at /proc/ under
SVR4/Solaris. Whatever you see there might be of interest for someone…

Personally I miss ‘sin files’ very much.

Absolutely agreed, I feel no need to re-invent the wheel.
Really what I’m after is to poll the QNX developers for
QNX specific data (ie pulses queued) that would help and assist
them with their development. We will hopefully have at
least the same level of information as was provided by sin
in QNX4. In the grand scheme of things knowing which items
are more important than others will likely drive the focus.

Thomas

Thomas (toe-mah) Fletcher QNX Software Systems
thomasf@qnx.com Neutrino Development Group
(613)-591-0931 http://www.qnx.com/~thomasf

“Chris McKillop” <cdm@qnx.com> wrote in message
news:9evh3h$rqs$1@nntp.qnx.com

Personally I miss ‘sin files’ very much.

  • Igor


    How about lsof? It does a pretty good job of showing devices and socket
    connections. You can nab it from > www.qnxstart.com> .

I find it never almost never shows file name aside stuff under /dev
and tcp ip connection. It’s also way too slow, take 12 seconds
to run on a 1.1Gig. I’ve tried various option but none of them seems
to help.

chris

cdm@qnx.com > “The faster I go, the behinder I get.”
Chris McKillop – Lewis Carroll –
Software Engineer, QSSL

Mario Charest <mcharest@zinformatic.com> wrote:

“Chris McKillop” <> cdm@qnx.com> > wrote in message
news:9evh3h$rqs$> 1@nntp.qnx.com> …

Personally I miss ‘sin files’ very much.

  • Igor


    How about lsof? It does a pretty good job of showing devices and socket
    connections. You can nab it from > www.qnxstart.com> .

I find it never almost never shows file name aside stuff under /dev
and tcp ip connection. It’s also way too slow, take 12 seconds
to run on a 1.1Gig. I’ve tried various option but none of them seems
to help.

Yes. But it is better then “sin fd” that only tell you “this fd belongs to
pid 6”, no? :slight_smile:

The reason it is slow, is because no /proc/fs right now. I have to
scan down the mount point list to find out which file it is. For regular
files, there is really “no way” to know, execpt I scan down the file
system (more slower :slight_smile:. I figure most people are interested in
those special files, no ?

But still 12 seconds is too slow. How many process are you running
on that 1.1G? It won’t take 1 secode on my PIII 500 :slight_smile: (about 50
process though)

-xtang

“Xiaodan Tang” <xtang@qnx.com> wrote in message
news:9f0c3f$ep5$3@nntp.qnx.com

Mario Charest <> mcharest@zinformatic.com> > wrote:

“Chris McKillop” <> cdm@qnx.com> > wrote in message
news:9evh3h$rqs$> 1@nntp.qnx.com> …

Personally I miss ‘sin files’ very much.

  • Igor


    How about lsof? It does a pretty good job of showing devices and
    socket
    connections. You can nab it from > www.qnxstart.com> .

I find it never almost never shows file name aside stuff under /dev
and tcp ip connection. It’s also way too slow, take 12 seconds
to run on a 1.1Gig. I’ve tried various option but none of them seems
to help.

Yes. But it is better then “sin fd” that only tell you “this fd belongs to
pid 6”, no? > :slight_smile:

:wink:

The reason it is slow, is because no /proc/fs right now. I have to
scan down the mount point list to find out which file it is. For regular
files, there is really “no way” to know, execpt I scan down the file
system (more slower > :slight_smile:> . I figure most people are interested in
those special files, no ?

In my case I want to learn about a system, hence the info I’m looking
for is what program open what files. I can do that under QNX4 but
not with QNX6/lsof

But still 12 seconds is too slow. How many process are you running
on that 1.1G? It won’t take 1 secode on my PIII 500 > :slight_smile: > (about 50
process though)

Find attached the output of sin and lsof.

-xtang

begin 666 sin.dat
M<’)O8VYT;R @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#$@(" @
M(# @(" @(# @(" @(# @(" @(# @-#0P-#8U-C0Y"G-L;V=G97(@(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" T,#DX(" @(#A+(" @.#!+(" @(#1+
M(" U,39+(" @(" @(" @,0IP8VDM8FEO<R @(" @(" @(" @(" @(" @(" @
M(" @(" @(" @-# Y.2 @(#,R2R @(#4R2R @,3(X32 @,3(X32 @(" @(" @
M,C89&5V8RUC;VX@(" @(" @(" @(" @(" @(" @(" @(" @(" @(#0Q,# @
M(" T,$L@(" X-$L@(" @-$L@(#4Q-DL@(" @(" V-CDY"G!I<&4@(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" T,3 Q(" @,3)+(" Q,CA+(" @
M,C1+(#$P-#5+(" @(#(Q-34W,PID979B+65I9&4@(" @(" @(" @(" @(" @
M(" @(" @(" @(" @-#$P,B @(#(T2R @,3$T32 @(#,V2R @-C$R2R @(" V
M,S(V,3 9G,M<&MG(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @-3,R
M-34@(" Y-DL@(#8X-$L@(#$Q-DL@,3,P.4L@(" @,3@Q,3$Q"G1I;FET(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(#4S,C4W(" @(#A+(" @,S9+
M(" @(#1+(" U,39+(" @(" @(" @,@IM<75E=64@(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" V,30U," @(" X2R @(#4V2R @(" T2R @-3$V2R @
M(" @(" @(#$9&5V8RUP='D@(" @(" @(" @(" @(" @(" @(" @(" @(" Q
M,#(T,3(@(" R-$L@(#(T,$L@(" @-$L@(#4Q-DL@(" @(#$V,38T"F1E=F,M
M<V5R.#(U," @(" @(" @(" @(" @(" @(" @(" @,3,U,3@Q(" @,C1+(" @
M-C1+(" @(#1+(" U,39+(" @(" @(" @,0ID979C+7!A<B @(" @(" @(" @
M(" @(" @(" @(" @(" @(#$S-3$X-" @(#(T2R @(#0X2R @(#$R2R @-C4V
M2R @(" @(" @(#,9&5V8BUF9&,@(" @(" @(" @(" @(" @(" @(" @(" @
M(" Q-S(P-#8@(" R,$L@(#,R.$L@(" S-DL@(#8P-$L@(" @(" @,C,T"F1U
M;7!E<B @(" @(" @(" @(" @(" @(" @(" @(" @(" @,3DR-3(S(" @,3)+
M(" Q,#!+(" @,C!+(" U,39+(" @(" @(#$X.0II;RUN970@(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(#(Q-S$P,R @(#0X2R Q,3DW2R @,3@T2R @
M,3(Y32 @(" Y,3,S-S0
:6YE=&0@(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(" R-#4W-S<@(" Q-DL@(" V,$L@(" Q,DL@(#4R-$L@(" @(" @(#(Q
M"BAU;F%V86EL86)L92D@(" @(" @(" @(" @(" @(" @(" @,C0U-S<X(" @
M(" P(" @(" P(" @(" P(" @(" P(" @(" @(" @,@IN;6)D(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(#(W-#0U,R @,S,R2R @,S0P2R @(#$V
M2R @-3$V2R @(" @(" V,S4
<VUB9" @(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" R.#(V-#8@(#<T-$L@(#,V.$L@(" Q,DL@(#4R,$L@(" @(" @
M(" V"G-Y<VQO9V0@(" @(" @(" @(" @(" @(" @(" @(" @(" @,C@V-S,Y
M(" @,39+(" @.#!+(" @,C1+(" Y,3)+(" @(" @(" Q, IG
RL@(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(#(X-C<T-" @(#8P2R @,C0T2R @
M(" T2R @-3$V2R @(" @(" @(# 8RLK9FEL=" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" R.3 X-#(@(" R-$L@(#@X.$L@(" @-$L@(#4Q-DL@(" @
M(" @(" P"F-C,2 @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @,CDT
M.30Q(#$V,3-+(" Q-3)+(" @(#1+(" U,39+(" @(" @(" @, IC8S%P;'5S
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(Y.3 S." R,#4P2R @,38P
M2R @(" T2R @-3$V2R @(" @(" @(# 8W!P(" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" S,#,Q,S(@(" X.$L@(" X,$L@(" @-$L@(#4Q-DL@
M(" @(" @(" P"F-O;&QE8W0R(" @(" @(" @(" @(" @(" @(" @(" @(" @
M,S S,3,U(" @-3)+(" @-#A+(" @(#1+(" U,39+(" @(" @(" @, IC8S$@
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#,P,S$S-B Q-C$S2R @
M,34R2R @(" T2R @-3$V2R @(" @(" @(# 8V,@(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(" S,#,Q,SD@(" R.$L@,3$V.4L@(" @-$L@(#4Q
M-DL@(" @(" @(" Q"F=C8R @(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(" @,S S,30R(" @-C!+(" @,C!+(" @(#1+(" U,39+(" @(" @(" @, IQ
M8V,@(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#,P,S$T,R @(#(X
M2R @,S P2R @(" T2R @-3$V2R @(" @(" @(# ;6%K92 @(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(" S,#,Q-#0@(#$Q,DL@(" R.$L@(" @-$L@
M(#4Q-DL@(" @(" @(" P"FQD(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(" @,S S,30U(" R,C1+(" @,C!+(" @(#1+(" U,39+(" @(" @(" @
M, IP;W)T;6%P(" @(" @(" @(" @(" @(" @(" @(" @(" @(#0Q,S<R,R @
M(" X2R @(#@P2R @(#(P2R @-C0X2R @(" @(" @(# **'5N879A:6QA8FQE
M
2 @(" @(" @(" @(" @(" @(" @(" T,S0Q.3D@(" @(# @(" @(# @(" @
M(# @(" @(# @(" @(" @(" R"DYF<V0@(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" @-#4X-S<R(" @-#1+(" R,CA+(" @(#A+(" U,39+(" @(" @
M(#0W.0I0:&]T;VX@(" @(" @(" @(" @(" @(" @(" @(" @(" @(#0Y-38T
M.2 @(#8T2R @,C<R2R @(" X2R @-3$V2R @(" @-38P-C0
<&AF;VYT1D$@
M(" @(" @(" @(" @(" @(" @(" @(" @(" U,S(U,3<@(#(X-$L@,3,P-4L@
M(" Q,DL@(#4Q-DL@(" @-S R,3<V"F9O;G1S;&5U=&@@(" @(" @(" @(" @
M(" @(" @(" @(" @-30P-S V(" @,39+(" Q-#!+(" @(#A+(" U,39+(" @
M(" @(" S,0II;RUG<F%P:&EC<R @(" @(" @(" @(" @(" @(" @(" @(#4W
M,S0X,B @,38X2R @,S<V2R @(" X2R @-3$V2R @(" Q.3$V-C 9&5V:2UH
M:7)U;B @(" @(" @(" @(" @(" @(" @(" @(" U.#DX-C@@(" V,$L@(#$Q
M,DL@(" R,$L@(#DQ,DL@(" @(#$V-C8T"G!W;2 @(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @-CDR,C0Y(" @.#!+(" R,C!+(" @(#A+(" V-#1+
M(" @(" Q,#4W,@IS:&5L9B @(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(#<S-S,Q-B @(#0X2R Q,CDW2R @(#(X2R @-C0X2R @(" @,C W-S<8FMG
M9&UG<B @(" @(" @(" @(" @(" @(" @(" @(" @(" W-S0Q.#D@(#$X-$L@
M,30S,TL@(" @.$L@(#4Q-DL@(" @(" @(#8P"G=M<W=I=&-H(" @(" @(" @
M(" @(" @(" @(" @(" @(" @-S<T,3DP(" @(#A+(#$S-C5+(" @(#A+(" U
M,39+(" @(" @,S P, IS879E<B @(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(#<W-#$Y,2 @(#$V2R Q,S8U2R @(" X2R @-3$V2R @(" @(#<W.30

M6’!H;W1O;B @(" @(" @(" @(" @(" @(" @(" @(" @(" W.#(S.#8@(#DV
M-$L@,3 S-TL@(#$S,DL@(#4Q-DL@(" @(" @,3 Q"F=T=VT@(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(" @-S@V-#@P(" @-C1+(#$P-S=+(" @,3)+
M(" U,39+(" @(" @(#DQ,0HH=6YA=F%I;&%B;&4I(" @(" @(" @(" @(" @
M(" @(" @,C<T.#0V-2 @(" @," @(" @," @(" @," @(" @," @(" @(#0U
M-S8
’5N879A:6QA8FQE
2 @(" @(" @(" @(" @(" @(" @(#(W-#@T-C<@
M(" @(# @(" @(# @(" @(# @(" @(# @(" @(" Q.#$T"BAU;F%V86EL86)L
M92D@(" @(" @(" @(" @(" @(" @(" R-S0X-#8X(" @(" P(" @(" P(" @
M(" P(" @(" P(" @(" @,C<V,0I0:&]T;VX@(" @(" @(" @(" @(" @(" @
M(" @(" @(" @-#<S,#DW,R @(#8T2R Q,#0Y2R @(" X2R @-3$V2R @(" @
M(#DQ,S<
<’=M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#0X,C4Q
M.#4@(" X,$L@(#4W,DL@(" @.$L@(#4Q-DL@(" @(" Q-#8X"G-H96QF(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" T.#<T,S,X(" @-#A+(#$R-#E+
M(" @,CA+(" V-#A+(" @(" @-#,X-0IB:V=D;6=R(" @(" @(" @(" @(" @
M(" @(" @(" @(" @-#DQ,3(P-" @,3@T2R @-#4R2R @(" X2R @-3$V2R @
M(" @(" @,3$=VUS=VET8V@@(" @(" @(" @(" @(" @(" @(" @(" @(#0Y
M,3$R,#4@(" @.$L@(#,X-$L@(" @.$L@(#4Q-DL@(" @(" @-#(Y"G-A=F5R
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" T.3$Q,C V(" @,39+(" S
M.#1+(" @(#A+(" U,39+(" @(" @,3 V,0IP=&5R;2 @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @-#DU-C(U-2 @(#0P2R @,C0T2R @(" X2R @-3$V
M2R @(" @(#0Q-C <V@@(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(#0Y-38R-38@(#$S-DL@(#$U-DL@(" @.$L@(#4Q-DL@(" @(" @(#DW"G!T
M97)M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" U,C V,3(S(" @-#!+
M(" R-#1+(" @(#A+(" U,39+(" @(" @,S P.0IS:" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(" @-3(P-C$R-" @,3,V2R @,34V2R @(" X2R @
M-3$V2R @(" @(" @.#$**'5N879A:6QA8FQE
2 @(" @(" @(" @(" @(" @
M(" @(#8W-#8R-S$@(" @(# @(" @(# @(" @(# @(" @(# @(" @(" @,30P
M"BAU;F%V86EL86)L92D@(" @(" @(" @(" @(" @(" @(" V.3DQ.3<X(" @
M(" P(" @(" P(" @(" P(" @(" P(" @(" @(" Q. I0:&]T;VX@(" @(" @
M(" @(" @(" @(" @(" @(" @(" Q,S<Q-S8W,2 @(#8T2R @-3 P2R @(" X
M2R @-3$V2R @(" @,3DX-30**'5N879A:6QA8FQE
2 @(" @(" @(" @(" @
M(" @(" @,34R-S0P-C(@(" @(# @(" @(# @(" @(# @(" @(# @(" @(" T
M-S0Y"G!H<F5L87D@(" @(" @(" @(" @(" @(" @(" @(" @(#<R.3 X.#4U
M(" @-3)+(" R,39+(" @,C!+(" W.#!+(" @(" @,C$Y-PI0:&]T;VX@(" @
M(" @(" @(" @(" @(" @(" @(" @(" W,CDQ,CDU,B @(#8T2R @(#@T2R @
M(#$V2R @-3(T2R @(" @(#(X,SD*<’=M(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" @-S,P,#,P-C<@(" X,$L@,3 S,TL@(" @.$L@(#4Q-DL@(" @
M(" @.#(V"G-H96QF(" @(" @(" @(" @(" @(" @(" @(" @(" @(#<S,#0X
M,3(T(" @-#A+(#$R,S-+(" @,CA+(" V-#A+(" @(" @,34S-@IB:V=D;6=R
M(" @(" @(" @(" @(" @(" @(" @(" @(" W,S X-#DX.2 @,3@T2R @-#4R
M2R @(" X2R @-3$V2R @(" @(" @(#@=VUS=VET8V@@(" @(" @(" @(" @
M(" @(" @(" @(" @-S,P.#0Y.3 @(" @.$L@(#,X-$L@(" @.$L@(#4Q-DL@
M(" @(" @,C4Y"G-A=F5R(" @(" @(" @(" @(" @(" @(" @(" @(" @(#<S
M,#@T.3DQ(" @,39+(" S.#1+(" @(#A+(" U,39+(" @(" @(#,X. IP=&5R
M;2 @(" @(" @(" @(" @(" @(" @(" @(" @(" W,S$S.#(S,R @(#0P2R Q
M-#@U2R @(" X2R @-3$V2R @(" @(#$Q-S8
<V@@(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @-S,Q,S@R,S0@(#$S-DL@(" X.$L@(" @.$L@(#4Q
M-DL@(" @(" @(#,W"BAU;F%V86EL86)L92D@(" @(" @(" @(" @(" @(" @
M(#<V,C(R-3(X(" @(" P(" @(" P(" @(" P(" @(" P(" @(" @.30Y. I0
M:&]T;VX@(" @(" @(" @(" @(" @(" @(" @(" @(" W-C8X-30P,B @(#8T
M2R @,38X2R @(" X2R @-3$V2R @(" @(#4W.3(<’=M(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(" @-S8W-S4U,3@@(" X,$L@(#4U-DL@(" @.$L@
M(#4Q-DL@(" @(" Q,3 X"G-H96QF(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(#<V.#(P-3<Y(" @-#A+(#$R-C5+(" @,CA+(" V-#A+(" @(" @,S V
M,PIB:V=D;6=R(" @(" @(" @(" @(" @(" @(" @(" @(" W-C@U-S0T.2 @
M,3@T2R @-#4R2R @(" X2R @-3$V2R @(" @(" @,3D
=VUS=VET8V@@(" @
M(" @(" @(" @(" @(" @(" @(" @-S8X-3<T-3,@(" @.$L@(#,X-$L@(" @
M.$L@(#4Q-DL@(" @(" @,C T"G-A=F5R(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(#<V.#4W-#4T(" @,39+(" S.#1+(" @(#A+(" U,39+(" @(" @
M(#4Y,0IP=&5R;2 @(" @(" @(" @(" @(" @(" @(" @(" @(" W-CDP,C0Y
M,2 @(#0P2R @,C<V2R @(" X2R @-3$V2R @(" @(#(P,38*<V@@(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @-S8Y,#(T.3(@(#$S-DL@(#$U-DL@
M(" @.$L@(#4Q-DL@(" @(" @(#,V"FAE;’!V:65W97(@(" @(" @(" @(" @
M(" @(" @(" @(#<X,C P.3(P(" @.#A+(#$T,#E+(" @,C!+(" U,39+(" @
M(" @(#4Y.0IV<V5R=F5R+F9I;&4@(" @(" @(" @(" @(" @(" @(" W.#(P
M,#DU,2 @-3<V2R @.#0T2R @(#$R2R @-3$V2R @(" @(" U,#4**‘5N879A
M:6QA8FQE2 @(" @(" @(" @(" @(" @(" @-SDW,C U-C$@(" @(# @(" @
M(# @(" @(# @(" @(# @(" @(" @,C,Q"F9T<" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(#$S-#0Y-C,P.2 @(#0X2R @,3(P2R @(#$R2R @-3$V
M2R @(" @(" @(#,**'5N879A:6QA8FQE
2 @(" @(" @(" @(" @(" @(" @
M,38S.#4V-30W(" @(" P(" @(" P(" @(" P(" @(" P(" @(" @(" U,@HH
M=6YA=F%I;&%B;&4I(" @(" @(" @(" @(" @(" @(" Q-C@V-S,S,C,@(" @
M(# @(" @(# @(" @(# @(" @(# @(" @(" @(#$Q"BAU;F%V86EL86)L92D@
M(" @(" @(" @(" @(" @(" @(#$V.3 T-C W," @(" @," @(" @," @(" @
M," @(" @," @(" @(" @-#$'5N879A:6QA8FQE*2 @(" @(" @(" @(" @
M(" @(" @,38Y,#DU,C,V(" @(" P(" @(" P(" @(" P(" @(" P(" @(" @
M(" Q-0HH=6YA=F%I;&%B;&4I(" @(" @(" @(" @(" @(" @(" Q-CDS,S(X
M,#4@(" @(# @(" @(# @(" @(# @(" @(# @(" @(" @(" X"BAU;F%V86EL
M86)L92D@(" @(" @(" @(" @(" @(" @(#$V.3,S,C@P-R @(" @," @(" @
M," @(" @," @(" @," @(" @(" @(#4
’5N879A:6QA8FQE2 @(" @(" @
M(" @(" @(" @(" @,3<P-S4P,#8S(" @(" P(" @(" P(" @(" P(" @(" P
M(" @(" @(" @-PHH=6YA=F%I;&%B;&4I(" @(" @(" @(" @(" @(" @(" Q
M-S W-3 P-C0@(" @(# @(" @(# @(" @(# @(" @(# @(" @(" @,30T"BAU
M;F%V86EL86)L92D@(" @(" @(" @(" @(" @(" @(#$W,#<U,# W,R @(" @
M," @(" @," @(" @," @(" @," @(" @(" @(#D**'5N879A:6QA8FQE
2 @
M(" @(" @(" @(" @(" @(" @,3<W,S0P-3,X(" @(" P(" @(" P(" @(" P
M(" @(" P(" @(" @(#$S,PHH=6YA=F%I;&%B;&4I(" @(" @(" @(" @(" @
M(" @(" Q-S<S-# U-# @(" @(# @(" @(# @(" @(# @(" @(# @(" @(" @
M,S<X"BAU;F%V86EL86)L92D@(" @(" @(" @(" @(" @(" @(#$W-S4V-3@R
M,R @(" @," @(" @," @(" @," @(" @," @(" @(#0R-3 **‘5N879A:6QA
M8FQE2 @(" @(" @(" @(" @(" @(" @,3<W-38U.#(T(" @(" P(" @(" P
M(" @(" P(" @(" P(" @(" @,C,V,@I0:&]T;VX@(" @(" @(" @(" @(" @
M(" @(" @(" @(" Q-S<U-CDY,C(@(" V-$L@(#(Q-DL@(" @.$L@(#4Q-DL@
M(" @(" W,S0U"G!W;2 @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#$W
M-S8V,# S-R @(#@P2R @,C4R2R @(" X2R @-3$V2R @(" @(#$T-C(
<VAE
M;&8@(" @(" @(" @(" @(" @(" @(" @(" @(" @,3<W-S U,#DT(" @-#A+
M(#$R-#E+(" @,CA+(" V-#A+(" @(" @,C8W.0IB:V=D;6=R(" @(" @(" @
M(" @(" @(" @(" @(" @(" Q-S<W-#$Y-C$@(#$X-$L@(#0U,DL@(" @.$L@
M(#4Q-DL@(" @(" @(#(R"G=M<W=I=&-H(" @(" @(" @(" @(" @(" @(" @
M(" @(#$W-S<T,3DV,B @(" X2R @,S@T2R @(" X2R @-3$V2R @(" @(" T
M,#0*<V%V97(@(" @(" @(" @(" @(" @(" @(" @(" @(" @,3<W-S0Q.38S
M(" @,39+(" S.#1+(" @(#A+(" U,39+(" @(" @(#<T.0IP=&5R;2 @(" @
M(" @(" @(" @(" @(" @(" @(" @(" Q-S@R,3,P,38@(" T,$L@(#(T-$L@
M(" @.$L@(#4Q-DL@(" @(" Q-S S"G-H(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" @(#$W.#(Q,S Q-R @,3,V2R @,34V2R @(" X2R @-3$V2R @
M(" @(" @-3$<'1E<FT@(" @(" @(" @(" @(" @(" @(" @(" @(" @,3<X
M,S4V,C,R(" @-#!+(" T-S)+(" @,C1+(#$Q-C%+(" @(" @-C T-@IS:" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" Q-S@S-C S.#4@(#$S-DL@
M(" W,DL@(" @.$L@(#4Q-DL@(" @(" @(" T"G-H(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(#$W.#,V,#,X-B @,3,V2R @(#@X2R @(" X2R @
M-3$V2R @(" @(" Q-C4
<&AR96QA>2 @(" @(" @(" @(" @(" @(" @(" @
M(" @,3<X-C(V-C<U(" @-3)+(" R.#!+(" @,C!+(" W.#!+(" @(" Q.#@Y
M, I0:&]T;VX@(" @(" @(" @(" @(" @(" @(" @(" @(" Q-S@V,S W-S(@
M(" V-$L@(#$S,DL@(" Q-DL@(#4R-$L@(" @(" S.#DY"G!W;2 @(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(#$W.#<R,#@X." @(#@P2R Q,S,W2R @
M(" X2R @-3$V2R @(" @(" U-3@<VAE;&8@(" @(" @(" @(" @(" @(" @
M(" @(" @(" @,3<X-S8U.30W(" @-#A+(#$R-#E+(" @,CA+(" V-#A+(" @
M(" @,3DW,PIB:V=D;6=R(" @(" @(" @(" @(" @(" @(" @(" @(" Q-S@X
M,#(X,3,@(#$X-$L@(#0U,DL@(" @.$L@(#4Q-DL@(" @(" @(#(P"G=M<W=I
M=&-H(" @(" @(" @(" @(" @(" @(" @(" @(#$W.#@P,C@Q-" @(" X2R @
M,S@T2R @(" X2R @-3$V2R @(" @(" Q-C <V%V97(@(" @(" @(" @(" @
M(" @(" @(" @(" @(" @,3<X.# R.#(S(" @,39+(" S.#1+(" @(#A+(" U
M,39+(" @(" @(#,W,0IP=&5R;2 @(" @(" @(" @(" @(" @(" @(" @(" @
M(" Q-S@X-#<X-C$@(" T,$L@(#(Y-DL@(" @.$L@(#4Q-DL@(" @(" Q,30W
M"G-H(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#$W.#@U,3DU." @
M,3,V2R @,34V2R @(" X2R @-3$V2R @(" @(" @,C8
<VUB9" @(" @(" @
M(" @(" @(" @(" @(" @(" @(" @,3<X.#DW,#,Y(" W-#1+(#(P,3-+(" @
M-C1+(" U,39+(" @(" @-#,P-0IS;6)D(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" Q-S@Y,S,Y,#0@(#<T-$L@,3 V.4L@(" R-$L@(#4Q-DL@(" @
M(" Q.3,X"G!H<F5L87D@(" @(" @(" @(" @(" @(" @(" @(" @(#$X,3 R
M,C@X," @(#4R2R @-#$R2R @(#(P2R @-S@P2R @(" @(#8Y-34
4&AO=&]N
M(" @(" @(" @(" @(" @(" @(" @(" @(" @,3@Q,#(V.3<W(" @-C1+(" Q
M,S)+(" @,39+(" U,C1+(" @(" @-3$R.0IP=VT@(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" Q.#$Q,3<P.3,@(" X,$L@(#4S,DL@(" @.$L@(#4Q
M-DL@(" @(" @.#0Y"G-H96QF(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(#$X,3$V,C$U," @(#0X2R Q,C8U2R @(#(X2R @-C0X2R @(" @(#$W,S,*
M8FMG9&UG<B @(" @(" @(" @(" @(" @(" @(" @(" @,3@Q,3DY,#$V(" Q
M.#1+(" T-3)+(" @(#A+(" U,39+(" @(" @(" Q-@IW;7-W:71C:" @(" @
M(" @(" @(" @(" @(" @(" @(" Q.#$Q.3DP,3<@(" @.$L@(#,X-$L@(" @
M.$L@(#4Q-DL@(" @(" @,C(R"G-A=F5R(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(#$X,3$Y.3 Q." @(#$V2R @,S@T2R @(" X2R @-3$V2R @(" @
M(" X,#,<'1E<FT@(" @(" @(" @(" @(" @(" @(" @(" @(" @,3@Q-C,W
M,C4V(" @-#!+(" R-#1+(" @(#A+(" U,39+(" @(" @(#8T-0IS:" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" Q.#$V-#$S-S$@(#$S-DL@(" X
M-$L@(" Q-DL@(#4R-$L@(" @(" @(" T"F1E=F8M<F%M(" @(" @(" @(" @
M(" @(" @(" @(" @(#$Y-CDY,S$Y." @(#DR2R @,34V2R @(#(P2R @-S@P
M2R @(" @(" S-SD
<‘1E<FT@(" @(" @(" @(" @(" @(" @(" @(" @(" @
M,C(U,38Y-3<P(" @-#!+(" V-S9+(" @(#A+(" U,39+(" @(" @,3(X-@IS
M:" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" R,C4Q-S,V-C@@(#$S
M-DL@(#$U-DL@(" @.$L@(#4Q-DL@(" @(" @(#$X"G-H(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(#(R-S(P,3$X," @,3,V2R @(#@T2R @(#$V
M2R @-3(T2R @(" @(" @-#0*=G-E<G9E<B @(" @(" @(" @(" @(" @(" @
M(" @(" @,C(W-C V-S$R(#$S,3-+(" V-C1+(" @,3)+(" U,39+(" @(" @
M(#$Y-@IV;WEA9V5R(" @(" @(" @(" @(" @(" @(" @(" @(" R,C<V,#8W
M-#8@(#(R-$L@(#8R-$L@(" Q,DL@(#4Q-DL@(" @(" @(#,Y"G!T97)M(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(#(R.3<T-#<P-R @(#0P2R @.3@X
M2R @(" X2R @-3$V2R @(" @(#,S.3@<V@@(" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" @,C(Y-S0X.# V(" Q,S9+(" @.39+(" @(#A+(" U,39+
M(" @(" @(" @-0IS:" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" R
M,CDW-3<P,# @(#$S-DL@(" Y-DL@(" Q,DL@(#4Q-DL@(" @(" @(#8W"G!T
M97)M(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(S,C@X-C,T-B @(#0P
M2R @-#8X2R @(" X2R @-3$V2R @(" @(#(T.30
<V@@(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(" @,C,R.#DP-#0S(" Q,S9+(" Q-#!+(" @(#A+
M(" U,39+(" @(" @(" @- IS:" @(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(" R,S(X.3 T-#0@(#$S-DL@(#$U-DL@(" @.$L@(#4Q-DL@(" @(" @
M(" V"G!T97)M(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(S,S4T-3@Q
M," @(#0P2R @-C<V2R @(" X2R @-3$V2R @(" @(" R,S <V@@(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @,C,S-30Y.3(W(" Q,S9+(" @.#A+
M(" @(#A+(" U,39+(" @(" @(" Q, IP=&5R;2 @(" @(" @(" @(" @(" @
M(" @(" @(" @(" R,S0P.3 U-CD@(" T,$L@(#0V.$L@(" @.$L@(#4Q-DL@
M(" @(" V.#,W"G-H(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(S
M-# Y,#8P," @,3,V2R @(#<R2R @(" X2R @-3$V2R @(" @(" @(#,
<V@@
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @,C,T,#DP-C$P(" Q,S9+
M(" @.#A+(" @(#A+(" U,39+(" @(" @(" Q,0IP:’)E;&%Y(" @(" @(" @
M(" @(" @(" @(" @(" @(" R,S0V,C,P-3<@(" U,DL@(#,S,DL@(" R,$L@
M(#<X,$L@(" @(" Q-C$W"E!H;W1O;B @(" @(" @(" @(" @(" @(" @(" @
M(" @(#(S-#8R-S(P-" @(#8T2R @(#@X2R @(" X2R @-3$V2R @(" @(" T
M-C$<’=M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @,C,T-S$W,S(V
M(" @.#!+(" U-39+(" @(#A+(" U,39+(" @(" @(" W, IS:&5L9B @(" @
M(" @(" @(" @(" @(" @(" @(" @(" R,S0W-C(S.#4@(" T.$L@,3(S,TL@
M(" R.$L@(#8T.$L@(" @(" @,S R"F)K9V1M9W(@(" @(" @(" @(" @(" @
M(" @(" @(" @(#(S-#<Y.3(U," @,3@T2R @-#4R2R @(" X2R @-3$V2R @
M(" @(" @,3$
=VUS=VET8V@@(" @(" @(" @(" @(" @(" @(" @(" @,C,T
M-SDY,C4Q(" @(#A+(" S.#1+(" @(#A+(" U,39+(" @(" @(" Q.0IS879E
M<B @(" @(" @(" @(" @(" @(" @(" @(" @(" R,S0W.3DR-3(@(" Q-DL@
M(#,X-$L@(" @.$L@(#4Q-DL@(" @(" @(#8R"G!T97)M(" @(" @(" @(" @
M(" @(" @(" @(" @(" @(#(S-#@T-#,P," @(#0P2R @,C0T2R @(" X2R @
M-3$V2R @(" @(#$X.3D*<V@@(" @(" @(" @(" @(" @(" @(" @(" @(" @
M(" @,C,T.#0T,S Q(" Q,S9+(" Q-39+(" @(#A+(" U,39+(" @(" @(" @
M.0IF=’ @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" R,S4V-3DT,3,@
M(" T.$L@(" X-$L@(" Q,DL@(#4Q-DL@(" @(" @(#(R"BAU;F%V86EL86)L
M92D@(" @(" @(" @(" @(" @(" @(#(T-3DS,C$X,B @(" @," @(" @," @
M(" @," @(" @," @(" @(" @,3@<VUB9" @(" @(" @(" @(" @(" @(" @
M(" @(" @(" @,C0V,3$V-3 S(" W-#1+(" U-C!+(" @,C!+(" U,39+(" @
M(" @(" T. IP:’)E;&%Y(" @(" @(" @(" @(" @(" @(" @(" @(" R-#8S
M-#DY-S@@(" U,DL@(#(X,$L@(" R,$L@(#<X,$L@(" @(" S-30R"E!H;W1O
M;B @(" @(" @(" @(" @(" @(" @(" @(" @(#(T-C,U-# W-R @(#8T2R @
M,3 P2R @(#$V2R @-3(T2R @(" @(" W-3$
<’=M(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" @,C0V-#0T,C T(" @.#!+(" R-3)+(" @(#A+(" U
M,39+(" @(" @(#$Q,@IS:&5L9B @(" @(" @(" @(" @(" @(" @(" @(" @
M(" R-#8T.#DR-C$@(" T.$L@,3(S,TL@(" R.$L@(#8T.$L@(" @(" @,S,V
M"F)K9V1M9W(@(" @(" @(" @(" @(" @(" @(" @(" @(#(T-C4R-C$R-R @
M,3@T2R @-#4R2R @(" X2R @-3$V2R @(" @(" @(#D*=VUS=VET8V@@(" @
M(" @(" @(" @(" @(" @(" @(" @,C0V-3(V,3(X(" @(#A+(" S.#1+(" @
M(#A+(" U,39+(" @(" @(" T, IS879E<B @(" @(" @(" @(" @(" @(" @
M(" @(" @(" R-#8U,C8Q,CD@(" Q-DL@(#,X-$L@(" @.$L@(#4Q-DL@(" @
M(" @(#<U"G!T97)M(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(T-C4W
M,3$V-B @(#0P2R @,CDV2R @(" X2R @-3$V2R @(" @(" R,CD*<V@@(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(" @,C0V-3<Q,3<Y(" Q,S9+(" @
M.#A+(" @(#A+(" U,39+(" @(" @(" R,@IS;6)D(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(" R-3 T,C$S,C4@(#<T-$L@,38S-TL@(" R-$L@(#4Q
M-DL@(" @(" R.# Q"G!H<F5L87D@(" @(" @(" @(" @(" @(" @(" @(" @
M(#(U,#0R,3,R." @(#4R2R @,SDV2R @(#(P2R @-S@P2R @(" @,3$P,3(*
M4&AO=&]N(" @(" @(" @(" @(" @(" @(" @(" @(" @,C4P-#(U-#(W(" @
M-C1+(" R,C!+(" @(#A+(" U,39+(" @(" @,38T.0IP=VT@(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(" R-3 U,#<S-3 @(" X,$L@(#4S,DL@(" @
M.$L@(#4Q-DL@(" @(" @,S,X"G-H96QF(" @(" @(" @(" @(" @(" @(" @
M(" @(" @(#(U,#4U,C0P-R @(#0X2R Q,C8U2R @(#(T2R @-C0X2R @(" @
M(" X-388FMG9&UG<B @(" @(" @(" @(" @(" @(" @(" @(" @,C4P-3@Y
M,C<S(" Q.#1+(" T-3)+(" @(#A+(" U,39+(" @(" @(" Q- IW;7-W:71C
M:" @(" @(" @(" @(" @(" @(" @(" @(" R-3 U.#DS,3,@(" @.$L@(#,X
M-$L@(" @.$L@(#4Q-DL@(" @(" @(#8S"G-A=F5R(" @(" @(" @(" @(" @
M(" @(" @(" @(" @(#(U,#4X.3,Q-2 @(#$V2R @,S@T2R @(" X2R @-3$V
M2R @(" @(" Q-C$
<‘1E<FT@(" @(" @(" @(" @(" @(" @(" @(" @(" @
M,C4P-C,T,S(T(" @-#!+(#$Q-3=+(" @(#A+(" U,39+(" @(" @(#<X-PIS
M:" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(" R-3 V,S@T,C$@(#$S
M-DL@(#$U-DL@(" @.$L@(#4Q-DL@(" @(" @(#(P"G!T97)M(" @(" @(" @
M(" @(" @(" @(" @(" @(" @(#(U,#8U,#@P,R @(#0P2R @-S@X2R @(" X
M2R @-3$V2R @(" @(#$Q-#8*<V@@(" @(" @(" @(" @(" @(" @(" @(" @
M(" @(" @,C4P-C4T.3 P(" Q,S9+(" Q-39+(" @(#A+(" U,39+(" @(" @
M(" @.0IP=&5R;2 @(" @(" @(" @(" @(" @(" @(" @(" @(" R-3 V.34X
M-C$@(" T,$L@(#0V.$L@(" @.$L@(#4Q-DL@(" @(" @-S@S"G-H(" @(" @
M(" @(" @(" @(" @(" @(" @(" @(" @(#(U,#8Y.3DU." @,3,V2R @,30P
M2R @(" X2R @-3$V2R @(" @(" @(#(<V@@(" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" @,C4Q,3<P.3DY(" Q,S9+(" Q-#!+(" @(#A+(" U,39+
M(" @(" @(" @-0IP=&5R;2 @(" @(" @(" @(" @(" @(" @(" @(" @(" R
M-3$R,#<X-C4@(" T,$L@(#@R,$L@(" @.$L@(#4Q-DL@(" @(" @,3@W"G-H
M(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(U,3(Q,3DV,B @,3,V
M2R @,30P2R @(" X2R @-3$V2R @(" @(" @(#,
:&5L<‘9I97=E<B @(" @
M(" @(" @(" @(" @(" @(" @,C4R,C0P,#8P(" @.#A+(#$T-S=+(" @,CA+
M(" U,39+(" @(" @(#@X- IV<V5R=F5R+F9I;&4@(" @(" @(" @(" @(" @
M(" @(" R-3(R-# P-C$@(#4W-DL@(#8X.$L@(" Q,DL@(#4Q-DL@(" @(" @
M,3 V"G-H(" @(" @(" @(" @(" @(" @(" @(" @(" @(" @(#(U-#4U-#(Y
M.2 @,3,V2R @,34V2R @(" X2R @-3$V2R @(" @(" @,3$<&AC86QC(" @
M(" @(" @(" @(" @(" @(" @(" @(" @,C4V.3@S,C,P(" @,C1+(" S,S9+
M(" @(#A+(" U,39+(" @(" @(" Q- IS:6X@(" @(" @(" @(" @(" @(" @
M(" @(" @(" @(" R-3DQ,3<Q,S4@(" W-DL@(#$P,$L@(" @.$L@(#4Q-DL@
M(" @(" @(" Y"D-/34U!3D0@(" @(" @("!0240@55-%4B @($9$(" @5%E0
M12!$159)0T4@(" @("!325I%(" @(" @($Y/1$4@3D%-10IT+W-L;V=G97(@
M(" @(" T,#DX(’)O;W0@(" @,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @
M(" @(" @(" R("]D978O;G5L; IT+W-L;V=G97(@(" @(" T,#DX(’)O;W0@
M(" @,74@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O
M;G5L; IT+W-L;V=G97(@(" @(" T,#DX(’)O;W0@(" @,G4@("!#2%(@(" @
M,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; HO<&-I+6)I;W,@
M(" @(" T,#DY(’)O;W0@(" @,‘4@("!#2%(@(" @,2PQ(" @(" @(" @(" @
M(" @(" @(" Q("]D978O=&5X= HO<&-I+6)I;W,@(" @(" T,#DY(’)O;W0@
M(" @,74@("!#2%(@(" @,2PQ(" @(" @(" @(" @(" @(" @(" Q("]D978O
M=&5X= HO<&-I+6)I;W,@(" @(" T,#DY(’)O;W0@(" @,G4@("!#2%(@(" @
M,2PQ(" @(" @(" @(" @(" @(" @(" Q("]D978O=&5X= ID979C+6-O;B @
M(" @(" T,3 P(’)O;W0@(" @,‘4@("!#2%(@(" @,2PQ(" @(" @(" @(" @
M(" @(" @(" Q("]D978O=&5X= ID979C+6-O;B @(" @(" T,3 P(’)O;W0@
M(" @,74@("!#2%(@(" @,2PQ(" @(" @(" @(" @(" @(" @(" Q("]D978O
M=&5X= ID979C+6-O;B @(" @(" T,3 P(’)O;W0@(" @,G4@("!#2%(@(" @
M,2PQ(" @(" @(" @(" @(" @(" @(" Q("]D978O=&5X= HX-B]O+W!I<&4@
M(" @(" T,3 Q(’)O;W0@(" @,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @
M(" @(" @(" R("]D978O;G5L; HX-B]O+W!I<&4@(" @(" T,3 Q(’)O;W0@
M(" @,74@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O
M;G5L; HX-B]O+W!I<&4@(" @(" T,3 Q(’)O;W0@(" @,G4@("!#2%(@(" @
M,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; ID979B+65I9&4@
M(" @(" T,3 R(’)O;W0@(" @,‘4@("!#2%(@(" @,RPP(" @(" @(" @(" @
M,C<V.# Q.#$V("]D978O8V]N,0ID979B+65I9&4@(" @(" T,3 R(’)O;W0@
M(" @,74@("!#2%(@(" @,RPP(" @(" @(" @(" @,C<V.# Q.#$V("]D978O
M8V]N,0ID979B+65I9&4@(" @(" T,3 R(’)O;W0@(" @,G4@("!#2%(@(" @
M,RPP(" @(" @(" @(" @,C<V.# Q.#$V("]D978O8V]N,0ID979B+65I9&4@
M(" @(" T,3 R(’)O;W0@(" @,W4@("!#2%(@(" @,“PQ(” @(" @(" @(" @
M,C<V.#$T-S,V("]D978O<&-I"B]O+V9S+7!K9R @(" @-3,R-34@<F]O=" @
M(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N
M=6QL"B]O+V9S+7!K9R @(" @-3,R-34@<F]O=" @(" Q=2 @($-(4B @(" Q
M+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"B]O+V9S+7!K9R @
M(" @-3,R-34@<F]O=" @(" R=2 @($-(4B @(" Q+# @(" @(" @(" @(" @
M(" @(" @(#(@+V1E=B]N=6QL"F)I;B]T:6YI=" @(" @-3,R-3<@<F]O=" @
M(" P=2 @-3 P," @(" P+# @(" @(" @(" P(" @(" @(" @(#$@+V1E=B]P
M:&]T;VX
+V\O;7%U975E(" @(" V,30U,"!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+V\O;7%U975E
M(" @(" V,30U,"!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V\O;7%U975E(" @(" V,30U,"!R;V]T
M(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V
M+V-O;C$9&5V8RUP='D@(" @(#$P,C0Q,B!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$9&5V8RUP='D@
M(" @(#$P,C0Q,B!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$9&5V8RUP='D@(" @(#$P,C0Q,B!R;V]T
M(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V
M+V-O;C$8RUS97(X,C4P(" @(#$S-3$X,2!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$8RUS97(X,C4P
M(" @(#$S-3$X,2!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$8RUS97(X,C4P(" @(#$S-3$X,2!R;V]T
M(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V
M+V-O;C$9&5V8RUP87(@(" @(#$S-3$X-"!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$9&5V8RUP87(@
M(" @(#$S-3$X-"!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$9&5V8RUP87(@(" @(#$S-3$X-"!R;V]T
M(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V
M+V-O;C$
+V1E=F(M9F1C(" @(#$W,C T-B!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V1E=F(M9F1C
M(" @(#$W,C T-B!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V1E=F(M9F1C(" @(#$W,C T-B!R;V]T
M(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V
M+V-O;C$
+V\O9’5M<&5R(" @(#$Y,C4R,R!R;V]T(" @(#!U(" @0TA2(" @
M(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
+V\O9’5M<&5R
M(" @(#$Y,C4R,R!R;V]T(" @(#%U(" @0TA2(" @(#$L," @(" @(" @(" @
M(" @(" @(" @,B O9&5V+VYU;&P
+V\O9’5M<&5R(" @(#$Y,C4R,R!R;V]T
M(" @(#)U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P
+V\O:6\M;F5T(" @(#(Q-S$P,R!R;V]T(" @(#!U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V\O:6\M;F5T
M(" @(#(Q-S$P,R!R;V]T(" @(#%U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V\O:6\M;F5T(" @(#(Q-S$P,R!R;V]T
M(" @(#)U(" @4D5’(" @(#(L,B @(" @(" @(# @(" @(" Q.38V-B!.+T$*
M+V\O:6\M;F5T(" @(#(Q-S$P,R!R;V]T(" @(#-U(" @0TA2(" @(# L,2 @
M(" @(" @(" @(#(W-C@Q-#<S-B O9&5V+W!C:0IB:6XO:6YE=&0@(" @,C0U
M-S<W(’)O;W0@(" @," @(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @
M=&-P(“HZ=&EM92 H3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@
M(" @,74@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O
M;G5L; IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@(" @,G4@("!#2%(@(" @
M,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; IB:6XO:6YE=&0@
M(" @,C0U-S<W(’)O;W0@(" @-" @(&EN970@(" @(" @(" @(" @(" @(" @
M(" @(" @=61P("HZ
B 8FEN+VEN971D(" @(#(T-3<W-R!R;V]T(" @(#4@
M("!I;F5T(" @(" @(" @(" @(" @(" @(" @(" @('5D<" J.G1I;64@“F)I
M;B]I;F5T9” @(" R-#4W-S<@<F]O=" @(" V(" @:6YE=" @(" @(" @(" @
M(" @(" @(" @(" @("!T8W @CIF=’ @$Q)4U1%3BD
8FEN+VEN971D(” @
M(#(T-3<W-R!R;V]T(" @(#<@("!I;F5T(" @(" @(" @(" @(" @(" @(" @
M(" @(‘1C<" J.G1E;&YE=" H3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W
M(’)O;W0@(" @." @(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P
M("HZ<VAE;&P@
$Q)4U1%3BD8FEN+VEN971D(" @(#(T-3<W-R!R;V]T(" @
M(#D@("!I;F5T(" @(" @(" @(" @(" @(" @(" @(" @('1C<" J.G!I9&EN
M(“A,25-414XI"F)I;B]I;F5T9” @(" R-#4W-S<@<F]O=" @(#$P(" @:6YE
M=" @(" @(" @(" @(" @(" @(" @(" @("!T8W @CIP:61I;FUE;2 H3$E3
M5$5.0IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@(" Q,2 @(&EN970@(" @
M(" @(" @(" @(" @(" @(" @(" @=&-P("HZ<&ED:6YA<F<@
$Q)4U1%3BD

M8FEN+VEN971D(" @(#(T-3<W-R!R;V]T(" @,3(@("!I;F5T(" @(" @(" @
M(" @(" @(" @(" @(" @('1C<" J.G!I9&EN96YV(“A,25-414XI"F)I;B]I
M;F5T9” @(" R-#4W-S<@<F]O=" @(#$S(" @:6YE=" @(" @(" @(" @(" @
M(" @(" @(" @("!T8W @CIP:61I;G-I9R H3$E35$5.0IB:6XO:6YE=&0@
M(" @,C0U-S<W(’)O;W0@(" Q-" @(&EN970@(" @(" @(" @(" @(" @(" @
M(" @(" @=&-P(“HZ96-H;R H3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W
M(’)O;W0@(" Q-2 @(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P
M(“HZ9&ES8V%R9” H3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@
M(" Q-B @(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P(“HZ9&%Y
M=&EM92 H3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@(" Q-R @
M(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P(“HZ8VAA<F=E;B H
M3$E35$5.0IB:6XO:6YE=&0@(" @,C0U-S<W(’)O;W0@(" Q." @(&EN970@
M(" @(" @(" @(" @(" @(" @(" @(" @=&-P("HZ<&AR96QA>2 H3$E35$5.
M
0HO8FEN+VYM8F0@(” @,C<T-#4S(’)O;W0@(" @,‘4@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; HO8FEN+VYM8F0@(" @
M,C<T-#4S(’)O;W0@(" @,74@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @
M(" @(" R("]D978O;G5L; HO8FEN+VYM8F0@(" @,C<T-#4S(’)O;W0@(" @
M,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; HO8FEN+VYM8F0@(" @,C<T-#4S(’)O;W0@(" @,W4@("!214<@(" @,BPR
M(" @(" @,3$T-2 @(" R.3<T,S<R($XO00HO8FEN+VYM8F0@(" @,C<T-#4S
M(’)O;W0@(" @-‘4@("!214<@(" @,BPR(" @(" @(" R," @(" R.3DX-C4X
M($XO00HO8FEN+VYM8F0@(" @,C<T-#4S(’)O;W0@(" @-2 @(&EN970@(" @
M(" @(" @(" @(" @(" @(" @(" @=61P(“HZ;F5T8FEO<RUN<R +V)I;B]N
M;6)D(" @(#(W-#0U,R!R;V]T(" @(#8@("!I;F5T(" @(" @(" @(" @(" @
M(" @(" @(" @(‘5D<" J.FYE=&)I;W,M9&=M( HO8FEN+VYM8F0@(" @,C<T
M-#4S(’)O;W0@(" @-R @(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @
M=61P(’-E<G9E=7(M,C,N971I+6=A;6EN9RYC;VTZ;F5T8FEO<RUN<R +V)I
M;B]N;6)D(" @(#(W-#0U,R!R;V]T(" @(#@@("!I;F5T(" @(" @(" @(" @
M(" @(" @(" @(" @(‘5D<"!S97)V975R+3(S+F5T:2UG86UI;F<N8V]M.FYE
M=&)I;W,M9&=M( HO8FEN+W-M8F0@(" @,C@R-C0V(’)O;W0@(" @,‘4@("!#
M2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; HO8FEN
M+W-M8F0@(" @,C@R-C0V(’)O;W0@(" @,74@("!#2%(@(" @,2PP(" @(" @
M(" @(" @(" @(" @(" R("]D978O;G5L; HO8FEN+W-M8F0@(" @,C@R-C0V
M(’)O;W0@(" @,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R
M("]D978O;G5L; HO8FEN+W-M8F0@(" @,C@R-C0V(’)O;W0@(" @,W4@("!2
M14<@(" @,BPR(" @(" V-#$T,B @(" R.3<T,S<P($XO00HO8FEN+W-M8F0@
M(" @,C@R-C0V(’)O;W0@(" @-‘4@("!214<@(" @,BPR(" @(" @(" R," @
M(" R.3DX-C4Y($XO00HO8FEN+W-M8F0@(" @,C@R-C0V(’)O;W0@(" @-2 @
M(&EN970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P("HZ;F5T8FEO<RUS
M<VX@
$Q)4U1%3BD
;B]S>7-L;V=D(” @(#(X-C<S.2!R;V]T(" @(#!U(" @
M0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
;B]S
M>7-L;V=D(” @(#(X-C<S.2!R;V]T(" @(#%U(" @0TA2(" @(#$L," @(" @
M(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
;B]S>7-L;V=D(" @(#(X-C<S
M.2!R;V]T(" @(#)U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @
M,B O9&5V+VYU;&P
;B]S>7-L;V=D(” @(#(X-C<S.2!R;V]T(" @(#,@("!I
M;F5T(" @(" @(" @(" @(" @(" @(" @(" @('5D<" J.G-Y<VQO9R ;B]S
M>7-L;V=D(" @(#(X-C<S.2!R;V]T(" @(#5U(" @4D5’(" @(#(L,B @(" @
M(" @(# @(" @(#@W,S0X-2!.+T$
<B]B:6XO9RLK(" @(#(X-C<T-"!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P
<B]B:6XO9RLK(" @(#(X-C<T-"!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$
<B]B:6XO9RLK
M(" @(#(X-C<T-"!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
;B]CRMF:6QT(" @(#(Y,#@T,B!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P
;B]CRMF:6QT(" @(#(Y,#@T,B!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$
;B]CRMF:6QT
M(" @(#(Y,#@T,B!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+CDU+C(O8V,Q(" @(#(Y-#DT,2!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*+CDU+C(O8V,Q(" @(#(Y-#DT,2!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+CDU+C(O8V,Q
M(" @(#(Y-#DT,2!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
,B]C8S%P;‘5S(" @(#(Y.3 S."!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*,B]C8S%P;‘5S(" @(#(Y.3 S."!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$,B]C8S%P;'5S
M(" @(#(Y.3 S."!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+CDU+C(O8W!P(" @(#,P,S$S,B!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*+CDU+C(O8W!P(" @(#,P,S$S,B!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+CDU+C(O8W!P
M(" @(#,P,S$S,B!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V-O;&QE8W0R(" @(#,P,S$S-2!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*+V-O;&QE8W0R(" @(#,P,S$S-2!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+V-O;&QE8W0R
M(" @(#,P,S$S-2!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+CDU+C(O8V,Q(" @(#,P,S$S-B!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*+CDU+C(O8V,Q(" @(#,P,S$S-B!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+CDU+C(O8V,Q
M(" @(#,P,S$S-B!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
<W(O8FEN+V-C(" @(#,P,S$S.2!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*<W(O8FEN+V-C(" @(#,P,S$S.2!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$<W(O8FEN+V-C
M(" @(#,P,S$S.2!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
<B]B:6XO9V-C(" @(#,P,S$T,B!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*<B]B:6XO9V-C(" @(#,P,S$T,B!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$<B]B:6XO9V-C
M(" @(#,P,S$T,B!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
<B]B:6XO<6-C(" @(#,P,S$T,R!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*<B]B:6XO<6-C(" @(#,P,S$T,R!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$<B]B:6XO<6-C
M(" @(#,P,S$T,R!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
+V)I;B]M86ME(" @(#,P,S$T-"!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*+V)I;B]M86ME(" @(#,P,S$T-"!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$+V)I;B]M86ME
M(" @(#,P,S$T-"!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
<W(O8FEN+VQD(" @(#,P,S$T-2!R;V]T
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P*<W(O8FEN+VQD(" @(#,P,S$T-2!R;V]T(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$<W(O8FEN+VQD
M(" @(#,P,S$T-2!R;V]T(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
;B]P;W)T;6%P(" @(#0Q,S<R,R!R;V]T
M(" @(#!U(" @0TA2(" @(#$L,2 @(" @(" @(" @(" @(" @(" @," O9&5V
M+VQO9PIN+W!O<G1M87 @(" @-#$S-S(S(’)O;W0@(" @,2 @(&EN970@(" @
M(" @(" @(" @(" @(" @(" @(" @=61P(“HZ<W5N<G!C( IN+W!O<G1M87 @
M(” @-#$S-S(S(’)O;W0@(" @,B @(&EN970@(" @(" @(" @(" @(" @(" @
M(" @(" @=&-P(“HZ<W5N<G!C(“A,25-414XI"C@V+V\O3F9S9” @(” T-3@W
M-S(@<F]O=" @(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @
M(#(@+V1E=B]N=6QL"C@V+V\O3F9S9" @(" T-3@W-S(@<F]O=" @(" Q=2 @
M($-(4B @(" S+# @(" @(" @(" @(" R-S8X,#$X,38@+V1E=B]C;VXQ"C@V
M+V\O3F9S9" @(" T-3@W-S(@<F]O=" @(" R=2 @($-(4B @(" S+# @(" @
M(" @(" @(" R-S8X,#$X,38@+V1E=B]C;VXQ"C@V+V\O3F9S9" @(" T-3@W
M-S(@<F]O=" @(" S(" @:6YE=" @(" @(" @(" @(" @(" @(" @(" @("!U
M9’ @CIN9G-D( II;B]0:&]T;VX@(" @-#DU-C0Y(’)O;W0@(" @,‘4@("!#
M2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; II;B]0
M:&]T;VX@(" @-#DU-C0Y(’)O;W0@(" @,74@("!#2%(@(" @,RPP(" @(" @
M(" @(" @,C<V.# Q.#$V("]D978O8V]N,0II;B]0:&]T;VX@(" @-#DU-C0Y
M(’)O;W0@(" @,G4@("!#2%(@(" @,RPP(" @(" @(" @(" @,C<V.# Q.#$V
M("]D978O8V]N,0HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @,‘4@("!2
M14<@(" @,BPT(" @(#$S,#DY-B @(" @,3DV,#<P($XO00HO<&AF;VYT1D$@
M(" @-3,R-3$W(’)O;W0@(" @,74@("!214<@(" @,BPT(" @(" X.3,Y," @
M(" @,3DV,#<Q($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @,G4@
M("!214<@(" @,BPT(" @(" W-3<X-" @(" @,3DV,C(V($XO00HO<&AF;VYT
M1D$@(" @-3,R-3$W(’)O;W0@(" @,W4@("!214<@(" @,BPT(" @(" W-#(Y
M,B @(" @,3DV,#0R($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @
M-‘4@("!214<@(" @,BPT(" @(" Q,CDP-2 @(" @,3DV,3<X($XO00HO<&AF
M;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @-74@("!214<@(" @,BPT(" @(" W
M,3(P," @(" @,3DV,C(X($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@
M(" @-G4@("!214<@(" @,BPT(" @(" U.#<T." @(" @,3DV,C,Q($XO00HO
M<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @-W4@("!214<@(" @,BPT(" @
M(" W-SDR-" @(" @,3DV,C(W($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O
M;W0@(" @.‘4@("!214<@(" @,BPT(" @(" U-C$U-B @(" @,3DV,C,P($XO
M00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" @.74@("!214<@(" @,BPT
M(" @(" V.3 Y,B @(" @,3DV,C$V($XO00HO<&AF;VYT1D$@(" @-3,R-3$W
M(’)O;W0@(" Q,‘4@("!214<@(" @,BPT(" @(" Y,3,T-" @(" @,3DV,C$X
M($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" Q,74@("!214<@(" @
M,BPT(" @(" W-#0R," @(" @,3DV,C$T($XO00HO<&AF;VYT1D$@(" @-3,R
M-3$W(’)O;W0@(" Q,G4@("!214<@(" @,BPT(" @(" X,C0U,B @(" @,3DV
M,C(Y($XO00HO<&AF;VYT1D$@(" @-3,R-3$W(’)O;W0@(" Q,W4@("!214<@
M(" @,BPT(" @(" W-S8W-B @(" @,3DV,C$W($XO00IO;G1S;&5U=&@@(" @
M-30P-S V(’)O;W0@(" @,‘4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @
M(" @(" Q("]D978O<&AO=&]N"F]N=’-L975T:" @(" U-# W,#8@<F]O=" @
M(" Q=2 @,# P," @(" P+#$@(" @(" @(" P(" R-S8R-#@R,# @+V1E=B]P
M:&9O;G0
+6=R87!H:6-S(" @(#4W,S0X,B!R;V]T(" @(#!U(" U,# P(" @
M(# L," @(" @(" @(# @(" @(" @(" @,2 O9&5V+W!H;W1O;@HM9W)A<&AI
M8W,@(" @-3<S-#@R(’)O;W0@(" @,74@(# P,# @(" @,“PQ(” @(" @(" @
M," @,C<V,C0X,C P("]D978O<&AF;VYT"BUG<F%P:&EC<R @(" U-S,T.#(@
M<F]O=" @(" R=2 @($-(4B @(" S+# @(" @(" @(" @(" R-S8X,#$X,38@
M+V1E=B]C;VXQ"BUG<F%P:&EC<R @(" U-S,T.#(@<F]O=" @(" S=2 @($-(
M4B @(" P+#$@(" @(" @(" @(" R-S8X,30W,S8@+V1E=B]P8VD979I+6AI
M<G5N(" @(#4X.3@V."!R;V]T(" @(#!U(" @0TA2(" @(#$L-" @(" @(" @
M(" @(#(W-C<Y-3 Q-B O9&5V+VMB9 IE=FDM:&ER=6X@(" @-3@Y.#8X(’)O
M;W0@(" @,74@("!214<@(" @,BPR(" @(" @(" Q,R @(" @(#$Y-C,T($XO
M00IE=FDM:&ER=6X@(" @-3@Y.#8X(’)O;W0@(" @,G4@("!#2%(@(" @,RPP
M(" @(" @(" @(" @,C<V.# Q.#$V("]D978O8V]N,0IE=FDM:&ER=6X@(" @
M-3@Y.#8X(’)O;W0@(" @,W4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @
M(" @(" Q("]D978O<&AO=&]N"FXO8FEN+W!W;2 @(" V.3(R-#D@;6-H82 @
M(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N
M=6QL"FXO8FEN+W!W;2 @(" V.3(R-#D@;6-H82 @(" Q=2 @($-(4B @(" S
M+# @(" @(" @(" @(" R-S8X,#$X,38@+V1E=B]C;VXQ"FXO8FEN+W!W;2 @
M(" V.3(R-#D@;6-H82 @(" R=2 @($-(4B @(" S+# @(" @(" @(" @(" R
M-S8X,#$X,38@+V1E=B]C;VXQ"FXO8FEN+W!W;2 @(" V.3(R-#D@;6-H82 @
M(" S=2 @-3 P," @(" P+# @(" @(" @(" P(" @(" @(" @(#$@+V1E=B]P
M:&]T;VX
;B]B:6XO<’=M(" @(#8Y,C(T.2!M8VAA(" @(#1U(" P,# P(" @
M(# L,2 @(" @(" @(# @(#(W-C(T.#(P," O9&5V+W!H9F]N= IB:6XO<VAE
M;&8@(" @-S,W,S$V(&UC:&$@(" @,‘4@("!#2%(@(" @,“PQ(” @(" @(" @
M(" @,C<V-C0X-3 T("]D978O:6\M;F5T+V5N, IB:6XO<VAE;&8@(" @-S,W
M,S$V(&UC:&$@(" @,74@("!#2%(@(" @,RPP(" @(" @(" @(" @,C<V.# Q
M.#$V("]D978O8V]N,0IB:6XO<VAE;&8@(" @-S,W,S$V(&UC:&$@(" @,G4@
M("!#2%(@(" @,RPP(" @(" @(" @(" @,C<V.# Q.#$V("]D978O8V]N,0IB
M:6XO<VAE;&8@(" @-S,W,S$V(&UC:&$@(" @,W4@(#4P,# @(" @,“PP(” @
M(" @(" @," @(" @(" @(" Q("]D978O<&AO=&]N"F)I;B]S:&5L9B @(" W
M,S<S,38@;6-H82 @(" T=2 @,# P," @(" P+#$@(" @(" @(" P(" R-S8R
M-#@R,# @+V1E=B]P:&9O;G08FEN+W-H96QF(" @(#<S-S,Q-B!M8VAA(" @
M(#5U(" @4D5’(" @(#(L-" @(" @,S,S,CD@(" @(#(V,3DS."!.+T$8FEN
M+W-H96QF(" @(#<S-S,Q-B!M8VAA(" @(#=U(" P,# P(" @(#(L," @(" @
M,S8X-C0@(" @(" @(" @,2!.+T$
;B]B:V=D;6=R(" @(#<W-#$X.2!M8VAA
M(" @(#!U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V
M+VYU;&P
;B]B:V=D;6=R(" @(#<W-#$X.2!M8VAA(" @(#%U(" @0TA2(" @
M(#,L," @(" @(" @(" @(#(W-C@P,3@Q-B O9&5V+V-O;C$;B]B:V=D;6=R
M(" @(#<W-#$X.2!M8VAA(" @(#)U(" @0TA2(" @(#,L," @(" @(" @(" @
M(#(W-C@P,3@Q-B O9&5V+V-O;C$
;B]B:V=D;6=R(" @(#<W-#$X.2!M8VAA
M(" @(#-U(" U,# P(" @(# L," @(" @(" @(# @(" @(" @(" @,2 O9&5V
M+W!H;W1O;@IN+V)K9V1M9W(@(" @-S<T,3@Y(&UC:&$@(" @-‘4@(# P,# @
M(" @,“PQ(” @(" @(" @," @,C<V,C0X,C P("]D978O<&AF;VYT"FXO8FMG
M9&UG<B @(" W-S0Q.#D@;6-H82 @(" U=2 @(%)%1R @(" R+#0@(" @,3DP
M-30T(" @(" R-C$X,#,@3B]!“B]W;7-W:71C:” @(" W-S0Q.3 @;6-H82 @
M(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N
M=6QL"B]W;7-W:71C:" @(" W-S0Q.3 @;6-H82 @(" Q=2 @($-(4B @(" S
M+# @(" @(" @(" @(" R-S8X,#$X,38@+V1E=B]C;VXQ"B]W;7-W:71C:" @
M(" W-S0Q.3 @;6-H82 @(" R=2 @($-(4B @(" S+# @(" @(" @(" @(" R
M-S8X,#$X,38@+V1E=B]C;VXQ"B]W;7-W:71C:" @(" W-S0Q.3 @;6-H82 @
M(" S=2 @-3 P," @(" P+# @(" @(" @(" P(" @(" @(" @(#$@+V1E=B]P
M:&]T;VX*+W=M<W=I=&-H(" @(#<W-#$Y,"!M8VAA(" @(#1U(" P,# P(" @
M(# L,2 @(" @(" @(# @(#(W-C(T.#(P," O9&5V+W!H9F]N= HO=VUS=VET
M8V@@(" @-S<T,3DP(&UC:&$@(" @-74@("!214<@(" @,BPT(" @(" Q,#8Y
M,B @(" @,C8Q.#,X($XO00IB:6XO<V%V97(@(" @-S<T,3DQ(&UC:&$@(" @
M,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; IB:6XO<V%V97(@(" @-S<T,3DQ(&UC:&$@(" @,74@("!#2%(@(" @,RPP
M(" @(" @(" @(" @,C<V.# Q.#$V("]D978O8V]N,0IB:6XO<V%V97(@(" @
M-S<T,3DQ(&UC:&$@(" @,G4@("!#2%(@(" @,RPP(" @(" @(" @(" @,C<V
M.# Q.#$V("]D978O8V]N,0IB:6XO<V%V97(@(" @-S<T,3DQ(&UC:&$@(" @
M,W4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @(" @(" Q("]D978O<&AO
M=&]N"F)I;B]S879E<B @(" W-S0Q.3$@;6-H82 @(" T=2 @,# P," @(" P
M+#$@(" @(" @(" P(" R-S8R-#@R,# @+V1E=B]P:&9O;G08FEN+W-A=F5R
M(" @(#<W-#$Y,2!M8VAA(" @(#5U(" @4D5’(" @(#(L-" @(" @,38Y-#0@
M(" @(#(V,3@S,B!.+T$
+B]8<&AO=&]N(" @(#<X,C,X-B!M8VAA(" @(# @
M("!I;F5T(" @(" @(" @(" @(" @(" @(" @(" @(‘1C<" J.GAS97)V97(@
M*$Q)4U1%3BD*+B]8<&AO=&]N(" @(#<X,C,X-B!M8VAA(" @(#%U(" U,# P
M(" @(# L," @(" @(" @(# @(" @(" @(" @,2 O9&5V+W!H;W1O;@HN+UAP
M:&]T;VX@(" @-S@R,S@V(&UC:&$@(" @,G4@("!#2%(@(" @,RPP(" @(" @
M(" @(" @,C<V.# Q.#$V("]D978O8V]N,0HN+UAP:&]T;VX@(" @-S@R,S@V
M(&UC:&$@(" @,W4@(# P,# @(" @,“PQ(” @(" @(" @," @,C<V,C0X,C P
M("]D978O<&AF;VYT"BXO6’!H;W1O;B @(" W.#(S.#8@;6-H82 @(" T=2 @
M-3 P," @(" P+#$@(" @(" T,#DV(#0P,C4Y.3<X,#@@3B]!"BXO6’!H;W1O
M;B @(" W.#(S.#8@;6-H82 @(" U(" @:6YE=" @(" @(" @(" @(" @(" @
M(" @(" @("!T8W @;&]C86QH;W-T+FQO8V%L9&]M86EN.GAS97)V97(M/FQO
M8V%L:&]S=“YL;V-A;&1O;6%I;CHQ,#(U(“A%4U1!0DQ)4TA%1"D9W1W;2 @
M(" @(" @(#<X-C0X,"!M8VAA(" @(#!U(" @0TA2(" @(#$L," @(" @(" @
M(" @(" @(" @(" @,B O9&5V+VYU;&P
9W1W;2 @(” @(” @(#<X-C0X,"!M
M8VAA(" @(#%U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O
M9&5V+VYU;&P9W1W;2 @(" @(" @(#<X-C0X,"!M8VAA(" @(#)U(" @0TA2
M(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
9W1W;2 @
M(" @(" @(#<X-C0X,"!M8VAA(" @(#-U(" U,# P(" @(# L," @(" @(" @
M(# @(" @(" @(" @,2 O9&5V+W!H;W1O;@IG=’=M(" @(" @(" @-S@V-#@P
M(&UC:&$@(" @-‘4@(# P,# @(" @,“PQ(” @(" @(" @," @,C<V,C0X,C P
M("]D978O<&AF;VYT"F=T=VT@(" @(" @(" W.#8T.# @;6-H82 @(" U(" @
M:6YE=" @(" @(" @(" @(" @(" @(" @(" @("!T8W @;&]C86QH;W-T+FQO
M8V%L9&]M86EN.C$P,C4M/FQO8V%L:&]S=“YL;V-A;&1O;6%I;CIX<V5R=F5R
M(“A%4U1!0DQ)4TA%1"D*:6XO4&AO=&]N(” @-#<S,#DW,R!R;V]T(” @(#!U
M(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P*
M:6XO4&AO=&]N(" @-#<S,#DW,R!R;V]T(" @(#%U(" @0TA2(" @(#$L," @
M(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P*:6XO4&AO=&]N(" @-#<S
M,#DW,R!R;V]T(" @(#)U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @
M(" @,B O9&5V+VYU;&P*;B]B:6XO<’=M(" @-#@R-3$X-2!R;V]T(" @(#!U
M(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P*
M;B]B:6XO<’=M(" @-#@R-3$X-2!R;V]T(" @(#%U(" @0TA2(" @(#$L," @
M(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P*;B]B:6XO<’=M(" @-#@R
M-3$X-2!R;V]T(" @(#)U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @
M(" @,B O9&5V+VYU;&P*;B]B:6XO<’=M(" @-#@R-3$X-2!R;V]T(" @(#-U
M(" U,# P(" @(# L," @(" @(" @(# @(" @(" @(" @,2 O9&5V+W!H;W1O
M;@IN+V)I;B]P=VT@(" T.#(U,3@U(’)O;W0@(" @-‘4@(# P,# @(" @,“PQ
M(” @(" @(" @," @,C<V,C0X,C P("]D978O<&AF;VYT"F)I;B]S:&5L9B @
M(#0X-S0S,S@@<F]O=" @(" P=2 @($-(4B @(" P+#$@(" @(" @(" @(" R
M-S8V-#@U,#0@+V1E=B]I;RUN970O96XP"F)I;B]S:&5L9B @(#0X-S0S,S@@
M<F]O=" @(" Q=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@
M+V1E=B]N=6QL"F)I;B]S:&5L9B @(#0X-S0S,S@@<F]O=" @(" R=2 @($-(
M4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"F)I;B]S
M:&5L9B @(#0X-S0S,S@@<F]O=" @(" S=2 @-3 P," @(" P+# @(" @(" @
M(" P(" @(" @(" @(#$@+V1E=B]P:&]T;VX8FEN+W-H96QF(" @-#@W-#,S
M."!R;V]T(" @(#1U(" P,# P(" @(# L,2 @(" @(" @(# @(#(W-C(T.#(P
M," O9&5V+W!H9F]N= IB:6XO<VAE;&8@(" T.#<T,S,X(’)O;W0@(" @-74@
M("!214<@(" @,BPT(" @(" S,S,R.2 @(" @,C8Q.3,X($XO00IB:6XO<VAE
M;&8@(" T.#<T,S,X(’)O;W0@(" @-W4@(# P,# @(" @,BPP(" @(" S-C@V
M-" @(" @(" @(" Q($XO00IN+V)K9V1M9W(@(" T.3$Q,C T(’)O;W0@(" @
M,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; IN+V)K9V1M9W(@(" T.3$Q,C T(’)O;W0@(" @,74@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; IN+V)K9V1M9W(@(" T
M.3$Q,C T(’)O;W0@(" @,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @
M(" @(" R("]D978O;G5L; IN+V)K9V1M9W(@(" T.3$Q,C T(’)O;W0@(" @
M,W4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @(" @(" Q("]D978O<&AO
M=&]N"FXO8FMG9&UG<B @(#0Y,3$R,#0@<F]O=" @(" T=2 @,# P," @(" P
M+#$@(" @(" @(" P(" R-S8R-#@R,# @+V1E=B]P:&9O;G0
;B]B:V=D;6=R
M(" @-#DQ,3(P-"!R;V]T(" @(#5U(" @4D5’(" @(#(L-" @(" Q.3 U-#0@
M(" @(#(V,3@P,R!.+T$+W=M<W=I=&-H(" @-#DQ,3(P-2!R;V]T(" @(#!U
M(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P

M+W=M<W=I=&-H(" @-#DQ,3(P-2!R;V]T(" @(#%U(" @0TA2(" @(#$L," @
M(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P*+W=M<W=I=&-H(" @-#DQ
M,3(P-2!R;V]T(" @(#)U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @
M(" @,B O9&5V+VYU;&P*+W=M<W=I=&-H(" @-#DQ,3(P-2!R;V]T(" @(#-U
M(" U,# P(" @(# L," @(" @(" @(# @(" @(" @(" @,2 O9&5V+W!H;W1O
M;@HO=VUS=VET8V@@(" T.3$Q,C U(’)O;W0@(" @-‘4@(# P,# @(" @,“PQ
M(” @(" @(" @," @,C<V,C0X,C P("]D978O<&AF;VYT"B]W;7-W:71C:" @
M(#0Y,3$R,#4@<F]O=" @(" U=2 @(%)%1R @(" R+#0@(" @(#$P-CDR(" @
M(" R-C$X,S@@3B]!“F)I;B]S879E<B @(#0Y,3$R,#8@<F]O=” @(" P=2 @
M($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"F)I
M;B]S879E<B @(#0Y,3$R,#8@<F]O=" @(" Q=2 @($-(4B @(" Q+# @(" @
M(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"F)I;B]S879E<B @(#0Y,3$R
M,#8@<F]O=" @(" R=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @
M(#(@+V1E=B]N=6QL"F)I;B]S879E<B @(#0Y,3$R,#8@<F]O=" @(" S=2 @
M-3 P," @(" P+# @(" @(" @(" P(" @(" @(" @(#$@+V1E=B]P:&]T;VX*
M8FEN+W-A=F5R(" @-#DQ,3(P-B!R;V]T(" @(#1U(" P,# P(" @(# L,2 @
M(" @(" @(# @(#(W-C(T.#(P," O9&5V+W!H9F]N= IB:6XO<V%V97(@(" T
M.3$Q,C V(’)O;W0@(" @-74@("!214<@(" @,BPT(" @(" Q-CDT-" @(" @
M,C8Q.#,R($XO00IB:6XO<‘1E<FT@(" T.34V,C4U(’)O;W0@(" @,‘4@("!#
M2%(@(" @,“PQ(” @(" @(" @(" @,C<V-C0X-3 T("]D978O:6\M;F5T+V5N
M, IB:6XO<‘1E<FT@(" T.34V,C4U(’)O;W0@(" @,74@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; IB:6XO<‘1E<FT@(" T
M.34V,C4U(’)O;W0@(" @,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @
M(" @(" R("]D978O;G5L; IB:6XO<‘1E<FT@(" T.34V,C4U(’)O;W0@(" @
M,W4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @(" @(" Q("]D978O<&AO
M=&]N"F)I;B]P=&5R;2 @(#0Y-38R-34@<F]O=" @(" T=2 @,# P," @(" P
M+#$@(" @(" @(" P(" R-S8R-#@R,# @+V1E=B]P:&9O;G08FEN+W!T97)M
M(" @-#DU-C(U-2!R;V]T(" @(#9U(" @0TA2(" V+#4R," @(" @(" @(" @
M(" @(#(P-38X." O9&5V+W!T>7 X"F)I;B]P=&5R;2 @(#0Y-38R-34@<F]O
M=" @(" W=2 @,# P," @(" R+# @(" @(#,V.#8T(" @(" @(" @(#$@3B]!
M"F)I;B]P=&5R;2 @(#0Y-38R-34@<F]O=" @(" X=2 @($-(4B @(" V+#@@
M(" @(" @(" @(" R-S8W-C U-C@@+V1E=B]T=‘EP. IB:6XO<V@@(" @(" T
M.34V,C4V(’)O;W0@(" @,'4@("!#2%(@(" @-BPX(" @(" @(" @(" @,C<V
M-S8P-38X("]D978O='1Y<#@8FEN+W-H(" @(" @-#DU-C(U-B!R;V]T(" @
M(#%U(" @0TA2(" @(#8L." @(" @(" @(" @(#(W-C<V,#4V." O9&5V+W1T
M>7 X"F)I;B]S:" @(" @(#0Y-38R-38@<F]O=" @(" R=2 @($-(4B @(" V
M+#@@(" @(" @(" @(" R-S8W-C U-C@@+V1E=B]T=‘EP. IB:6XO<V@@(" @
M(" T.34V,C4V(’)O;W0@(" Q,'4@("!#2%(@(" @-BPX(" @(" @(" @(" @
M,C<V-S8P-38X("]D978O='1Y<#@8FEN+W!T97)M(" @-3(P-C$R,R!R;V]T
M(" @(#!U(" @0TA2(" @(# L,2 @(" @(" @(" @(#(W-C8T.#4P-" O9&5V
M+VEO+6YE="]E;C 8FEN+W!T97)M(" @-3(P-C$R,R!R;V]T(" @(#%U(" @
M0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
8FEN
M+W!T97)M(" @-3(P-C$R,R!R;V]T(" @(#)U(" @0TA2(" @(#$L," @(" @
M(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
8FEN+W!T97)M(" @-3(P-C$R
M,R!R;V]T(" @(#-U(" U,# P(" @(# L," @(" @(" @(# @(" @(" @(" @
M,2 O9&5V+W!H;W1O;@IB:6XO<‘1E<FT@(" U,C V,3(S(’)O;W0@(" @-'4@
M(# P,# @(" @,“PQ(” @(" @(" @," @,C<V,C0X,C P("]D978O<&AF;VYT
M"F)I;B]P=&5R;2 @(#4R,#8Q,C,@<F]O=" @(" V=2 @($-(4B @-BPU,38@
M(" @(" @(" @(" R-S8W,#@W,S8@+V1E=B]P='EP- IB:6XO<‘1E<FT@(" U
M,C V,3(S(’)O;W0@(" @-W4@(# P,# @(" @,BPP(" @(" S-C@V-" @(" @
M(" @(" Q($XO00IB:6XO<‘1E<FT@(" U,C V,3(S(’)O;W0@(" @.'4@("!#
M2%(@(" @-BPT(" @(" @(" @(" @,C<V-S(W.38P("]D978O='1Y<#0
8FEN
M+W-H(" @(" @-3(P-C$R-"!R;V]T(" @(#!U(" @0TA2(" @(#8L-" @(" @
M(" @(" @(#(W-C<R-SDV," O9&5V+W1T>7 T"F)I;B]S:" @(" @(#4R,#8Q
M,C0@<F]O=" @(" Q=2 @($-(4B @(" V+#0@(" @(" @(" @(" R-S8W,C<Y
M-C @+V1E=B]T=‘EP- IB:6XO<V@@(" @(" U,C V,3(T(’)O;W0@(" @,G4@
M("!#2%(@(" @-BPT(" @(" @(" @(" @,C<V-S(W.38P("]D978O='1Y<#0

M8FEN+W-H(" @(" @-3(P-C$R-"!R;V]T(" @,3!U(" @0TA2(" @(#8L-" @
M(" @(" @(" @(#(W-C<R-SDV," O9&5V+W1T>7 T"FEN+U!H;W1O;B @,3,W
M,3<V-S$@<F]O=" @(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @
M(" @(#(@+V1E=B]N=6QL"FEN+U!H;W1O;B @,3,W,3<V-S$@<F]O=" @(" Q
M=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL
M"FEN+U!H;W1O;B @,3,W,3<V-S$@<F]O=" @(" R=2 @($-(4B @(" Q+# @
M(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"F\O<&AR96QA>2 @-S(Y
M,#@X-34@<F]O=" @(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @
M(" @(#(@+V1E=B]N=6QL"F\O<&AR96QA>2 @-S(Y,#@X-34@<F]O=" @(" Q
M=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL
M"F\O<&AR96QA>2 @-S(Y,#@X-34@<F]O=" @(" R=2 @($-(4B @(" Q+# @
M(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"F\O<&AR96QA>2 @-S(Y
M,#@X-34@<F]O=" @(" S=2 @-3 P," @(" P+# @(" @(" @(" P(" @(" @
M(" @(#$@+V1E=B]P:&]T;VX*;R]P:’)E;&%Y(" W,CDP.#@U-2!R;V]T(" @
M(#1U(" P,# P(" @(# L,2 @(" @(" @(# @(#(W-C(T.#(P," O9&5V+W!H
M9F]N= IO+W!H<F5L87D@(#<R.3 X.#4U(’)O;W0@(" Q," @(&EN970@(" @
M(" @(" @(" @(" @(" @(" @(" @=&-P(’-E<G9E=7(M,C,N971I+6=A;6EN
M9RYC;VTZ<&AR96QA>2T^;F]D93(P+F5T:2UG86UI;F<N8V]M.C$Q,#8@$53
M5$%“3$E32$5$0IO+W!H<F5L87D@(#<R.3 X.#4U(’)O;W0@(" Q,2 @(&EN
M970@(" @(" @(" @(" @(" @(" @(" @(" @=&-P(’-E<G9E=7(M,C,N971I
M+6=A;6EN9RYC;VTZ<&AR96QA>2T^;F]D93(P+F5T:2UG86UI;F<N8V]M.C$Q
M,#8@
$535$%“3$E32$5$0II;B]0:&]T;VX@(#<R.3$R.34R(’)O;W0@(" @
M,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; II;B]0:&]T;VX@(#<R.3$R.34R(’)O;W0@(" @,74@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; II;B]0:&]T;VX@(#<R
M.3$R.34R(’)O;W0@(" @,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @
M(" @(" R("]D978O;G5L; IN+V)I;B]P=VT@(#<S,# S,#8W(’)O;W0@(" @
M,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; IN+V)I;B]P=VT@(#<S,# S,#8W(’)O;W0@(" @,74@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L; IN+V)I;B]P=VT@(#<S
M,# S,#8W(’)O;W0@(" @,G4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @
M(" @(" R("]D978O;G5L; IN+V)I;B]P=VT@(#<S,# S,#8W(’)O;W0@(" @
M,W4@(#4P,# @(" @,“PP(” @(" @(" @," @(" @(" @(" Q("]D978O<&AO
M=&]N"FXO8FEN+W!W;2 @-S,P,#,P-C<@<F]O=" @(" T=2 @,# P," @(" P
M+#$@(" @(" @(" P(" R-S8R-#@R,# @+V1E=B]P:&9O;G0
8FEN+W-H96QF
M(” W,S T.#$R-”!R;V]T(" @(#!U(" @0TA2(" @(# L,2 @(" @(" @(" @
M(#(W-C8T.#4P-" O9&5V+VEO+6YE="]E;C 8FEN+W-H96QF(" W,S T.#$R
M-"!R;V]T(" @(#%U(" @0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @
M,B O9&5V+VYU;&P
8FEN+W-H96QF(" W,S T.#$R-"!R;V]T(" @(#)U(" @
M0TA2(" @(#$L," @(" @(" @(" @(" @(" @(" @,B O9&5V+VYU;&P
8FEN
M+W-H96QF(" W,S T.#$R-"!R;V]T(" @(#-U(" U,# P(" @(# L," @(" @
M(" @(# @(" @(" @(" @,2 O9&5V+W!H;W1O;@IB:6XO<VAE;&8@(#<S,#0X
M,3(T(’)O;W0@(" @-‘4@(# P,# @(" @,“PQ(” @(" @(" @," @,C<V,C0X
M,C P("]D978O<&AF;VYT"F)I;B]S:&5L9B @-S,P-#@Q,C0@<F]O=" @(" U
M=2 @(%)%1R @(" R+#0@(" @(#,S,S(Y(" @(" R-C$Y,S@@3B]!“F)I;B]S
M:&5L9B @-S,P-#@Q,C0@<F]O=” @(" W=2 @,# P," @(" R+# @(" @(#,V
M.#8T(" @(" @(" @(#$@3B]!“FXO8FMG9&UG<B @-S,P.#0Y.#D@<F]O=” @
M(" P=2 @($-(4B @(" Q+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N
M=6QL"FXO8FMG9&UG<B @-S,P.#0Y.#D@<F]O=" @(" Q=2 @($-(4B @(" Q
M+# @(" @(" @(" @(" @(" @(" @(#(@+V1E=B]N=6QL"FXO8FMG9&UG<B @
M-S,P.#0Y.#D@<F]O=" @(" R=2 @($-(4B @(" Q+# @(" @(" @(" @(" @
M(" @(" @(#(@+V1E=B]N=6QL"FXO8FMG9&UG<B @-S,P.#0Y.#D@<F]O=" @
M(" S=2 @-3 P," @(" P+# @(" @(" @(" P(" @(" @(" @(#$@+V1E=B]P
M:&]T;VX*;B]B:V=D;6=R(" W,S X-#DX.2!R;V]T(" @(#1U(" P,# P(" @
M(# L,2 @(" @(" @(# @(#(W-C(T.#(P," O9&5V+W!H9F]N= IN+V)K9V1M
M9W(@(#<S,#@T.3@Y(’)O;W0@(" @-74@("!214<@(" @,BPT(" @(#$Y,#4T
M-" @(" @,C8Q.# S($XO00HO=VUS=VET8V@@(#<S,#@T.3DP(’)O;W0@(" @
M,‘4@("!#2%(@(" @,2PP(" @(" @(" @(" @(" @(" @(" R("]D978O;G5L
M; HO=VUS=VET8V@@(#<S,#@T.3DP(’)O;W0@(" @,74@("!#2%(@(" @,2PP
M(" @(" @(" @(" @(" @(" @(" R("]D978O;