Вы находитесь на странице: 1из 374

##################>###

#################U###########W###########R###S###T###

#7
###################[1####bjbjU#U################### #####7|##7|##[####################################################################l########
########################################################
######/######/######/######/##,####0#####
########2###0######0######0######0######0######1######1######1######m####
##o######o######o######o######o######o##$### ##
###@###################################1######################1######1######
1######1############/4######################0##############0###########/4#
#####/4######/4######1#############0##############0######m##############/4####
##################################################1######m######/4##2###/4######a
7##"#####d#######################################################################
####m######0######0##

#####?#
##N"##/######q3#######v###########m########0#########s#####7######/4######
7######m######/4#######################################################An
Introduction to MQSeries Messaging and Queuing

What is MQSeries?A middleware product that implements a messaging and queuing


framework. Middleware - an intermediate software component that bridges dissimilar
computing environments. Messaging - programs communicate by sending data in messages
rather than by calling each other directly. Queuing - messages are put on queues in
storage, eliminating the need for programs to be logically connected. A messaging
and queuing framework is inherently ASYNCHRONOUS!

A Brief History of MQSeries1992 - Systems Strategies (SSI) develops ezBridge, a


messaging and queuing product for VMS, Tandem, and Unix. 1992 - IBM announces
Networking Blueprint defining three standard APIs for program to program
communication:

CPI-CRPCMQI

1992-3 - State Street Bank (Boston) evaluates IBM messaging product (code name
Victory) for IBM CICS/ESA and SSIs ezBridge on VMS and Tandem.
State
Street Bank would like to announce the wedding ofIBM and Systems Strategies!1993 IBM buys intellectual property rights for ezBridge from SSI

The Brides Wedding Preparation(what SSI had to do)Implement IBM Channel Protocol
over TCP/IP and LU6. 2 (more about channels later). Implement the MQI interface
functons (MQCONN, MQOPEN, MQPUT, MQGET, MQCOMMIT, MQCLOSE, MQDISC). Implement MQI
Error Semantics (failure conditions should look the same on all systems)Objectives:

Applications written in C using ezBridge on VMS and Tandem had to exchange messages
with applications written in (COBOL?) Using MQI under CICS/ESA. System
intercommunication using channel protocol over TCP/IP and LU6. 2 (that is, A VMS
system had to look to IBM machine just like another IBM system!).

MQSeries Platform RolloutInitially, IBMs version of MQSeries ran only on mainframe


(CICS/ESA, IMS/ESA, and eventually VSE). The SSI version (which was called
MQSeries Version 1) was initially released on VMS, Tandem, AS/400, and Unix (SCO,
UnixWare). In 1994/1995 IBM releases the first three distributed platforms running
its native MQSeries implementation: AIX, OS/2, and AS/400. The AIX version
becomes the reference port. Over time, IBM gradually replaced the SSI version with
ports of its reference system. Today - MQSeries runs on over 35 platforms.
Question: What about MSMQ?Answer: Great if you only want to run on NT platforms
(Level 8 Systems built a software adapter to bridge MSMQ and MQSeries).

#Message Flow Between Applications

MQSeries Objects (the basics)Queue ManagerA queue manager is that part of an


MQSeries product that provides the messaging and queuing services to application
programs, through the Message Queue Interface (MQI) program calls. It controls
access to queues and serves as transaction (syncpoint) coordinator for all queue
operations. Queue manager names must be unique!QueuesMQSeries defines four types of
queues. A queue instance is fully qualified by its queue manager and queue name.
Local Queue - an actual queue for which storage is allocated.
Remote Queue
- a definition of a queue on a different queue manager (acts somewhat like a
pointer)
Alias Queue - another name for a local or remote queue. Typically used
to switch queue destinations without modifying program codeModel Queue - a template
whose properties are copied when creating a new dynamic local queue ( create queue
xxx like queue yyy). Some properties of local queues:

Maximum Message SizeMaximum Queue DepthHigh/Low FactorsEnable/Disable Put or Get


Persistent/Not Persistent

Some (more) properties of local queues:

Local queues can generate events (messages) under certain conditions (like queue
full). These event messages can be used to trigger the execution of a program.

These events are called trigger messages.


called an Initiation Queue. Process

The queue on which they are put is

Process defines an application to an MQSeries queue manager. A process definition


object is used for defining applications to be started by a trigger monitor.

A trigger monitor is a program that listens on an initiation queue and executes


commands named in Process definitions.

Triggers and Process definitions are useful when you dont want to deploy longrunning programs. Suppose the message rate is very low (several minutes between
requests). Perhaps it is better to instantiate the program for each message, and
then let it exit. Note: this is the way CICS transaction programs run!(Did I mention
that the folks who designed MQSeries also designed CICS? Both CICS and MQSeries
were developed at Hursley Laboratory in the United Kingdom).

ChannelsA channel provides a communication path between Queue Managers. There are
two types of channels - Message Channels and MQI channels (also called Client
channels). Message channels - provide a communication path between two queue
managers on the same, or different, platforms. A message channel can transmit
messages in one direction only. If two-way communication is required between two
queue managers, two message channels are required.
[WHY IS A CHANNEL ONE WAY??]
There are six types of message channels:

Sender - initiates connection to ReceiverServer - Accepts request to start from


requester, then becomes SenderReceiver - Passive; waits for initiation sequence
form SenderRequester - Active at start, then becomes ReceiverCluster-sender (used
amongst Cluster Queue Managers)Cluster-receiver (ditto)

The Sender side of the session is the transaction coordinator. Message channels
implement a protocol that includes a commitment protocol. Channels recover from
failure by agreement: they must agree on the last committed unit of work [would
this be harder if channels were bi-directional??]

MQI channels - connect an MQSeries client to a queue manager on a server machine


(where a queue manager is defined). Used for transfer of MQI calls and responses
only and is bi-directional.

How Messages Move Across Channels#Sender-Receiver Channel#Requester-Server Channel


Transmission Queue is a local queue. Remote Queues name a transmission queue, and
a remote Queue Manager (QM2) and q local queue on QM2 App opens queue that is
defined as a remote queue App puts to queue Queue manager places message on
transmission queue Message Channel Agent reads message and sends to remote MCA.
Remote MCA gives message to Queue Manager QM1 QM1 puts message to target queue.
Messages

A message any arbitrary data that one program wants to send to another. This data
is called the application data. A message needs to include other information, such
as its destination and possibly a return address. This type of data is called the
message descriptor

There are four types of messages:

A request message is used by one program to ask another program for something
(usually data). A request message needs a reply. A reply message is used in response
to a request message. A one-way message, as you would expect, doesnt need a reply,
though it can carry data. A report message is used when something unexpected occurs.
For example, if the data in a reply message is not usable, the receiving program
might issue a report message.

Most useful report messages are generated by the Queue Manager.


Delivery confirmation.

For example,

Messages can have a time-to-live, called Expiry. A message that has not been
delivered before its expiration is removed (not given to an app)

What to do with undeliverable messages? Each queue manager can have a dead-letter
queue.

Messages, continued

Messages can be individually designated persistent or non-persistent (persistent


messages are logged to enable recovery)

Message Correlator - select which message to get from queueMessage Priority retrieve messages in different order of put

Segmented Messages - allows ending of VERY LARGE messages (> 100 MB)A message can
contain a reply to address (the name of a Queue Manager and Queue). This tells
the receiving application where any response should be sent.

Messages are added and removed from queues in Units of WorkThe smallest Unit of
Work is one message. Units of work are atomic.

When an app reads a message from a queue, a message appears to have been removed,
but in fact, it is still in storage until the app commits the unit of work.

MQSeries Transaction SupportUnit of recovery - a piece of work that changes data


from one point of consistency to another. Syncpoint - A point of consistency (also
called a or commit point). It is a moment at which all the recoverable data that
an application program accesses is consistent. #Applications are responsible for
delimiting the beginning and end of a transaction. How can messaging be
coordinated with a data base update?MQSeries is XA compliant and can operate with
other XA compliant systems as either a transaction manager (coordinator) or
resource manager (particpant). Some examples: Sybase, DB2, Oracle.

MQSeries Logging and RecoveryAll operations that affect the state of the Queue
Manager and its objects are logged to a log file. What is state?Object definitions
(queue manager, queues, processes, channels, etc)Queue content (messages)What about
message channel state?Message channel states are logged separately by each channel.
Two forms of LoggingCircular log records are written sequentially across several
files, then wrap back to the first file. Linear - log records are written
sequentially across files. New files are allocated as current files fill. No
automatic reuse of file space!Problem: Length (in time) of longest running
transaction vs amount of writes to log determines size of log needed. Observations:
Circular logging is easy to manage, but is fatal if log is damaged (hard to backup
circular logs!). Linear logging is hard to maintain but provides for archiving of
previous logs (still a problem if current log is damaged). MQI The MQSeries
Programming InterfaceMQCONN
Connect to queue managerMQDISC
Disconnect from
queue managerMQOPEN
Open objectMQCLOSE Close objectMQPUT Put message
MQPUT1
Put one messageMQGET Get messageMQBEGIN
Begin unit of work
MQCMIT
CommitMQBACK
Back outMQINQ
Inquire about object attributes
MQSET
Set object attributesLanguage Support:CC++CobolJAVA (native and JMS)
PL/ISystem 390 AssemblerTAL (Tandem)Visual BasicFor More Information:
http://www4. ibm. com/software/ts/mqseries/

Benefits of MQSeriesInteroperabilty

across dissimilar networksbetween different computing environmentsAsynchrony


Eliminates the time dependency between applications (both apps must be alive AND
have a session in synchronous models). Fewer Network Sessions
Only Queue Mangers
need to communicate using network sessions. Administered ObjectsImproves
manageability of BIG systems -Can monitor the state of a queue to determine if apps
are doing what they should:

Does any process have queue open for reading or writing?Has a high water mark been
reached?How many messages have been added and removed in a measured interval?

Message Persistence == Assured DeliveryQueues in stable storage retain messages


even if applications fail. Even memory-only queues persist if at least the Queue
Manager stays up. Transaction Support

Queue operations are just like reads and writes in a database transaction!Can we
combine queue operations AND database operations atomically? (YES!)

###################################################################################
###################################################################################
###4###5###6###G###J###L###V###############a###h##############################. ###1###5#########################!###'#####################S###U######
##
##
##
##
##
##
##
##
########,##?##F##############
#########
#j####U##aJ###CJ##aJ####5#6#CJ##OJ##QJ##\#]#aJ####6#CJ##OJ##QJ##]#aJ####CJ##O
J##QJ##aJ####5#CJ##OJ##QJ##\#aJ####CJ##OJ##QJ##aJ####5#CJ(#OJ##QJ##\#aJ(###aJ##
#

OJ##QJ##aJ####5#CJ0#OJ##QJ##\#aJ0#<################5###H###I###J#############
########_###`###a#######################. ###/###0###1######################
#############################################################################
############################################################################
#############################################################################
############################################################################

###$#
########`##a$######0]0#########$#a$#######[1##############################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
############################################################1###################
##################### ###!###############

###
###########R###S###U###u######################################################
#############################################################################
############################################################################
#############################################################################
######################$#a$#######^##############0^#`0####$#
&##F-#######0`0a$#######u########################A ##B
##C
##
##
##
##
##
##
##
##?
##@
##
##
##
##
##
############################################################################
#############################################################################
#############################################################################
##############################################################################
###############$##0]0a$#####

###$#
&##F2######a$####
&##F0##########$#a$###
##
##
##############

##

##

##

##

##

##

##

##!##"#####>##?################
############################################################################
#############################################################################
#############################################################################
############################################################################
################################# #&+D######!######0]0##########
########
######################A###B###g###h###o###p###################################
#############################################################################
#############################################################################
#############################################################################
##############################)#####p#@######P# ##!################&#

####p#@######P# ################^######$#a$#############
##################B###g###h###n###p##################"#######/############
###########W###^############$###
%###L###M###N###O###P#######################O###_###a###d###l###n###o######
###################D###T###t###|
###########################e###f###n###q##########
########CJ##aJ####6#CJ##OJ##QJ##]#aJ####
CJ##OJ##QJ##aJ####CJ##OJ##QJ##aJ####5#CJ #OJ##QJ##\#aJ
###5#CJ##OJ##QJ##\#aJ####5#CJ(#OJ##QJ##\#aJ(#I###!###"#########

##############################
###$#########################################################################
############################################################################
############################################################$#
&##F##)###h#8###

x#H######X #############a$#####)###h#8###

x#H######X ##############h#^h#####)#####p#@######P# ##!


################&#

####p#@######P# #################^#`##$###
%###M###N###O###P##########################################################
#################u############u############S#################################"###
$#(##

##h#8###

x#H########################^##`##a$######$#
&##F##&#

##h#8###

x#H##################a$####&#

##h#8###

x#H######################)###h#8###

x#H######X ##################$#)###h#8###

x#H######X #############a$######$#+####h#8###

x#H######X ###################^##`##a$##
###a###b###c###d###l###m###n###o############################################
#############################################################################
#############################################################################
########################################################################&#

####p#@######P# ##################$#
&##F########p#@######P# #############a$#####)#####p#@######P# ##!
################&#

##h#8###

x#H######################################e###o###p###q#################*
###+###I###J###s###t##########################################################
#############################################################################
############################################################################
################################################# ####&#

####p#@######P# ######################)#####p#@######P# ##!


#################)#####p#@######P# ##!
###############^################&#########*###+###I###s###t###z#########
######"###+###U###c###############################################
######################################0###1###_###`################
#####
#
#####5# OJ##QJ##\###CJ##aJ####C
J##OJ##QJ##aJ(###5#CJ##OJ##QJ##\#aJ(####j##5#CJ(#OJ##QJ##U##\#aJ(##aJ(####j#
##5#CJ(#OJ##QJ##U##\#aJ(##5#CJ(#OJ##QJ##\#aJ(###CJ##aJ####OJ##QJ####5#CJ##OJ##
QJ##\#aJ####CJ##OJ##QJ##aJ##8t#########"###U########################3###4
############################################################################
###############################################t########################t######
#################)#####p#@######P# ##!##############!###$#
&##F##(##

###p#@######P# ##!##############^#a$####&#

####p#@######P# ###################$#######p#@######P#
###################^##`##a$#####$#
&##F########p#@######P# #############a$##
4##################################################################
#############################################################################
#######q#####################################################)#
####p#@######P# ##!##################$#)#####p#@######P# ##!
#############a$#####)#####p#@######P# ##!#############!###$#&#

###p#@######P# ##!#############0###^0`##a$##!###$#
&##F##(##

###p#@######P# ##!##############^#a$##
################y############1###`###################################
#############################################################################
#############################################################################
####################################$#
&##F##&#

###p#@######P# ##!############a$########
&##F6#)#####p#@######P# ##!############## #
&##F6#####)#####p#@######P# ##!##################$#)#####p#@######P#
##!
#############a$################################################ ##
## ## ## ## ## ## ## ## ###!##!!##}!##~!##!##!##!##!##!##!##!##!
##!##!##!
###"##&"##8"##9"##l"##m"##n"##o"##p"##"##"##"##"##"##"##"######3###4######
##########$###$##=$##U$##W$##X$##$##$##$###%###%##.
%###############5#
CJ(#OJ##QJ##\#aJ(###5#CJ##OJ##QJ##\#aJ####CJ##aJ####OJ##QJ####5#OJ##QJ##\###C
J##aJ####5#CJ##OJ##QJ##\#aJ####CJ##OJ##QJ##aJ##J##########################
######A###B###|###}#########
############################################################################
#############################################################################
#########################################!###$#&#

###p#@######P# ##!##################^##`##a$######$#
&##F"#&#

###p#@######P# ##!############a$### ######$#


&##F##&#

###p#@######P# ##!############a$#####)#####p#@######P# ##!


############### ## ## ## ## ## ## ## ## ## ##~!##!##!##!##!##!
############################################################################
#############################################################################
############################### ###$#%#####p#@######P# ##!
#################^##`##a$##"###$#
&##F"#*###

##h#p#@######P# ##!#############h#^h#a$#####)#####p#@######P# ##!


#############!###$#&#

###p#@######P# ##!##################^##`##a$###!##!##!##!##!##!
##m"##n"##o"##p"##"##"##"##"##"##"##4#####################################
############################################################################
#############################################################################
#############!###$#&#

###p#@######P# ##!#############h####^h#`##a$######$#
&##F8#&#

###p#@######P# ##!############a$#####)#####p#@######P# ##!


##################$#)#####p#@######P# ##!
#############a$###4###5################$###$##<$##=$##W$##X$##Y$##$##########
############################################################################
############################################################v##################
#########
&##F8#&#

###p#@######P# ##!############!###$#&#

###p#@######P# ##!#############h####^h#`##a$#####)#####p#@######P#
##!##################$#
&##F8#&#

###p#@######P# ##!############a$#####$#&#

###p#@######P# ##!############a$##$##$##$###%###%###%##|%##}
%##)&##*&##+&##,&##. &##/&##0&##&##&##Y'##Z'##~'###############################
#############################################################################
############################################################################
#################################################### ######p#@######P#
##!###^## ######p#@######P# ##!### #
&##F'##

###p#@######P# ##!####1$#############)#####p#@######P# ##!


###############. %##/%##0%##{%##|%##}%##%##)&##,&##&##0&##&##&##Z'##g'##'##'##(##(##(##(##[)##a)##)##)##)##)##b*##p*##U+##
~+##+##,##,##,##4-##H-##x-##-##-##-##-##-##-####g. ##h. ##~. ##. ##. ##P/##Q/##/##/##/##
0##
0###0##0##0##0##0##W1##X1##Y1##Z1##[1#################
############################################

CJ##OJ##QJ####aJ####5#CJ(#OJ##QJ##\#aJ(###5#CJ(#\#aJ(###5#\####j##OJ##QJ##U
###OJ##QJ####5#CJ##OJ##QJ##\#aJ####CJ##OJ##QJ##aJ##B~'##'##'##'###(###(###(###
(##]
(##^(##w(##x(##(##(#########################################################
#############################################################################
############################################################# #
&##F%##

###p#@######P# ##!## ######p#@######P# ##!###^### #


&##F%######p#@######P# ##!## #
&##F$######p#@######P# ##!#h###h#^h## ######p#@######P# ##!##
##$######p#@######P# ##!#a$##
(##(##(##(##(##Z)##[)##)##)##)##`*##a*##b*##p*##q*##*##*##T+############
############################################################################
#############################################################################
######################################################### ##
####p#@######P# ##!###^### #
&##F&######p#@######P# ##!### #
&##F&######p#@######P# ##!## ######p#@######P# ##!## ##
####p#@######P# ##!##8#^8###T+##U+##~+##+##+##+##+##+##

,
##&,##;,##Y,##j,##},##,##,##,##,##,##,##,##,##,#########################
############################################################################
#############################################################################
############################################################################
################## #
&##F)##

###p#@######P# ##!### #
&##F(##

###p#@######P# ##!#####
&##F(#1$## ######p#@######P# ##!###,##,###-###-###-##0-##1-##2-##3-##4##w-##-##-##-##-##-##-##-####g. #########################################################################
############################################################################
#############################################################################
###################"######$#######h####^h#`##a$#

###$#
&##F3######a$######
### #
&##F)##

###0#]0^#####$#a$## ######p#@######P# ##!

###p#@######P# ##!###g. ##h. ##


. ##. ##. ##. ##. ##O/##P/##Q/##/##/##/##/##/###0##b0##0##0##0##0###1##W1#
############################################################################
#############################################################################
############################################################################
############################################################

###$#
&##F5######a$######$#######h####^h#`##a$#####$#
&##F4#
####8###8#^8#a$#######^#######W1##X1##Z1##[1############################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
############################################################## ##
####p#@######P# ##!##########$############^##`##a$###!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"##F#$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"##F#$#%##8$###########################!
############################################################################
#################################################################. #. #. #(#)#(#)#
(#)#. #. #)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
############h#############h#############h#############h#############h###
##########h#############h#############h##############h#######" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
############h#############h#############h#############h#############h###
##########h#############h#############h##############h#######" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$#############################
0##P###/ =!
##"####$#%##!

###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
#######################################################################
#############################################################. #. #. #(#)#(#)#
(#)#)#)#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
############################################################################
#################################################################. #. #. #(#)#(#)#
(#)#)#)#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!

##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
########################################################################
#################################
############################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
############################################################################
#################################################################. #. #. #(#)#(#)#
(#)#. #. #)#(#)#####################################
0##P###/ =!
##"####$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
###################################################################
#########################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
#"###$#%##8$###########################!
########################################################################
#############################################################" " " " " " " "
(#)#(#)#(#)#####################################
0##P###/ =!
##"####$#
%##8$###################################################################
##############################################################D#d#################
####M+-#####################################0####
#########
#####

####A###################b######. 1D#7QbMl

#q######D#####%##n#i##. 1D#7QbMl

PNG
#
###IHDR############k#####sRGB#####IDATx^57
%X5N`#o$\Cz##*#vT#P#*W;X#5+#z#X#Pe

F=b1fFA&<##

#O03#F~C###! ####C"#JJ #! ####B'#T####B@##q##S#6L###!


###S###B@###! #E@Le\H3! ####B@LEk@###! #####1qm##
###B@###1##!
#
####B`\#T4##B@###! #T####B@##q##S#6L###! ###S###B@###! #E@Le\H3!
####B@LEk@###! #####1qm##
###B@###1##! ####B`\#~ooj'#
#
###B##|
#
w}#[o#|_?h. j)####S##B@#T!_#g}G#~x
8# E@L#"5##B@##@//oog+d* %t;OO#?g##JL#x##S6B@##B
(wS#2O??#?########|F##ywn###Wh##?#<k$

#oY

m~68#}k##1#<'6"9R>g8## #gp^#J#B@###!DeQ#q
##`*#>~p,#QA2Cx`#9bGxq/N[R%1

#[@#!
54L#K*?=##B`#J!A9# ###L7oK#
#AF#v#6##FBR{#A:B####`#I~K_####5A_4###_#4@
#RHP#E4###%k##M##Si
##!####b#&###<A,<4w#H#a8###4#v' _##(N#Ke8#BKh#AW
###X#e#X"\ j1
39##(5##B##GDS+x)#xx,<##HsM#v7 K&`##R
H##_AyG#|Mtlu#Ew
2}~#

#(5##Bq#Tr#/L#"
x#4M#0 #p##
#E14C7

;7`3
l####HX+"2#|A_2}bi- #>#zB@#?% `
q4`#x
!
4X4D#AD-V#0#R#H&FLsGbC$Q%6#S_#e-TpS/! #E
%+=#@C#P#Cdy?D+0-_(`M=#6f#H|
Xe##]~#u(\B@L#\j,###{aAN##n-be##k#>#&p;#$
##
bt#-0#_#X#d##dB@#
. W####B##ZJqY%##i
4#8^}[0:"#9#>JC#f&&.

####Tc#TB#x:#W#5uYp4n#mDP##P# IF#ZLemjvB@##!p+e#t?
3vWU@LeUj^B@#LQREg

#-r"L#zUeY<#1##G`(?\$
B@#\D#+~rm#Tf'####
"
'##E@T0#X#nURZ8W#]#a##Yd#}#+4;dA>ym'#8A`R?
'
J##h5[
B@> !e##C{. h(J
#PC{=+C ##c##rZ##!
0##+Rnu9(. gx6]p##E#zWh#}x?###6e!#1 G5L!
t##@c#+*4|###M#t6#S)M####8
:##Q#TI#qN^bm####x7r#a#r##G1#D{L#D##
[#h*EHrB#P'#F
,
##B~#n#:##`i#fx`D@,
=,
#?
g+@
L^G#G##9###;a/; 3Wt*S# #s(#@0#'X[UqJh#'X
##t>#W#[mY3S _
#Of|m__
TUF#4#Vb##;hG1^|
4W(g-W8S%#Nb##N8IYNJSdb[c##TZ*B@#4G`#r@SH ##S1B
z
"Ey@2#&a#;#pvDx05\K|Un#tZ# #!#))#A%+

#eG=@+@%Va`#!##pC%#%H84H#B38~F7

Xd@###M_xM%4 W##F`J'|]pkA-##PW#r#"|
`#1#s#LV*<_c3#&9c9d'8o#m{#YPlzr
8R~5u!0## @. Kd
###,##
eq&$]P%`#[#0`Q#a86##&
}92^#+##nYR=#
b*##E*
#!W#Qs

!dj_}#9##OgR Wd#k/ JDT%[#Nm" #^


##B##J _?

g8{##AM##S#R@##}#ql+&+kw!#h# N!p;#b*@
##!#02GIuWipB#AZBF#Tn#_C##!0"G9. R_))##S!Y
A#+#T6###{SR. 9H2#{)WFY##1#-#! #Gpgl12##_9H
E@L^5#x:#3rc#[]`\%<R#xb*##G
# p#S)#N#Txu!J#T%3##1##
%D##B#T>{PDQi#\"+N#T#[#\j##3#N#####T@o#z`O};####Fy!##D@>#"##O#L##_>#KR,^WLvw=8Q_T#t3U1yl%M
#L'_e*Ni#TmIG#Sl#D@L

#!#-S14y-<s#_r. Ga{1#?#S
F##B#[W. #n xrJ
##@S###S#
A####@Vt#tSl r#L#6Kf#nc"#T&2T##OD|%|g#d1b#4e#dE|
eT&2T###"*Oe;U

M^9&%y*#))+i<#OEA#"2#X##?Sw2{<(e##'iaW@DYx8JJ##+SL
%#OI##B##WJ#!+f*V+T#JSe#R:n##S####B`#2b|%0##W\d\ul
+T5###@X0h#2)GRsJ#_##2Q#x##LE0#2#+wq#6#S(+w
T5###@ 4+##?-+=Vs1#-iK1J###'##2#+`a#Q8YJ;W
#p
#V#B@#!pK#0#T#[#[a#+kJq#FtO
%#E##B#p)#^yta#q#;=JSGyAUJ#T%S###/#
S
5X#dF#tHIqW#@6#SS
S#
@k b|e##(TFpl#T!#! #G`
##:w W:[D>k8! #
>>##r`PHJ
#q|*{N/W%BT@L#CI##B#L#

##lH#_##9^
#_b*>J##6#THVw4RQ0]+2#9JzMC$UL#,#9#w1#s]StB#st
]]Lev"r~#SO#CO)6T7yo#y$#se#pD))*y#%##B!
#xF2q##$D{6[pXUP&XE^`J #%#@9#8W$t####V_h\]#TB`#!
#b##K^

5}/Ryw#S#P##F``#&#WB=\d9KB+w
1bQ###\#Wb9J
|#%J-CL

7##B###+!))p1# #l'r#b*W#S{! #"`#3%dN


#'#[W##)#JLZ
#!p##3&##!##R<+#~9#R3! #+#F##A 8J]|E#+r)Dj
#X#W^%II9#h
+###qS#4#_9#'x#I}###N##L^
P
+ vsjLi]T<Gm###W#P
{P
####(Wvfrl#Sq. #5##B`P##
#Ec. r#p#OKf#M#J###"p/_AJ#SyKKNi###"B#,##B@#

##H #c`D#4#:####\#####G#u)JL'#K###+a|0p#O#D(cUd
+SlE####

*4*y#EWcA\f#K##N#g0~0$^A Y #wq0#f
#F#h##!,#k#
%
W AG(ehB^##SY####/#`b##{D#zq#b]###_F{15Y##!p#
<x##_#j)0eQ#KS#J#! #FG#Ad #WHGls#xL#!dBHTb
04#d6r

#!

)Ga D
j
dv#Sy Y#G#p{J`g W#%)jQg#j1n+P#

#!0###&##

#Y'ph*@@##41#. B@##+#I#R3QJT]R\## #nI^9-~?l;i/Y+#PJ#@1##Jj###L^n#.


dZ@@#?b*~R##O>w7|#;U[vH^iQ~}U #|#
2bzq1!###%X####8
{#__| #$CF+)GNHs##YceB#T
@S#!0###W_}##?#N

4#TM^!Glr)#y##jW#Y*{:JWZC#+#q7x_C#?
g<#}#1 q#B Tp###(#z-4Cw
~6@&Z~#C#Wh`#ZGWhco`,N~Q7YJK#>{##B(#MTu
#b=#OG\#c=g#Ob#:t#YC##!g
4#>#<)T},9. &##}o#RrxH=#a&B{t`9G 7 X8orp

,##}9(3zA=##$I:Vi#y;u`b2!1K#7b
VQ>;*#s(#"###`$8c=q#?@l##9#x#2Gr`#KFh#. #|<#vl#|
##Pj@#:##]p#. "###_R#bIP#rc#OmJMA034]E##ELe"cIU!
p#=a##
tf##}#d9to#c1#c0`DZMK#:Q#8#B~#<H-*8#y##Qc#N/#/#
#g#c1MZ8w2JI4ic'_1"r
iT# #rT 4##?!g:H;Y###X#tb#3#5#u@8H##Z`###e!
a38###UI#AmU*XF#;G'+`m#+QB#$`8q

s1KPp#':Op$&h>
@ap#OF
# i f (&#'|B#
Je d;r #l. Rf^URl#)j/1Uy=##F:aj<QA ##d
##bLh#. <<+##RC pp5#t0#tL
{F2J5s##Fi_(q#G9#0RR##Si
##s0_c# C##|#>)f#OYQZ \*5#`b
c4bp

CB8ck#VOwUqn#qt
d-)fuJP TM3B`###?

F~ c0K 9 #$n}-

+VB(cI0R#LP~#F=*RyA{H#mP

##*|(Vq_#S/{#f9G+@c'1>8k#!##{wm ##
#m#QvcL####gnDX#ru#T<n#9S6#0_GnX#m$J####+0"#_TQ(-T. (#Uv#S#P##m#^#_
N=l1
s#HrQb#CB@###B'#
c8K#SL#UL1#'Pj&##@#G~b*vw(%"b*####B ##"#i#pOQT1#!
#@

#WSRvGO#~#r#Umzs[=
#nF5_{#Pg0. j<P#(y5#BQAbnc(##TB`#!p###
(#UFP*I8##c{Vn=8
q= S)#])cb@#( #B##s-4#
#?
#t#H

a uc[>BF;# 5
#MQQ*
nB##:`#=O##/#x###}hrwp#VGYz
#!MV!#m@PL =#k/M+#qPO

j 9 :Z

[
##(#M#8])f#T8#*bt#\ H#O)G;*|#"####|{##
K0V9#\<"il##^@P(#B#bD!{y6djie
DZ
v#Ztf*#C
\YU65#G#d###G/58+#=x##N#;f@k-#g8#

;kc#_AaP#f8_|#2GN=5##
\#SO>#n#xZ###S######a##N##Y###h##R#L,h

$#)Q#

D\*}#O1X/I[)
%##v#G+#T#B`P#Rza^;i#RGDwVgh@#9#e#A<}#)W#>G##1#-#!
>#FA=z#^#Fx#4Th#D#+=
V -,SS4Sfq{p%R$##`##ZZ
#Dv#$OY/(D!#I#,c#9%8,c*5};#iU2],^#!
tTn#_C#~#0#d#i<<ST(#rA#R
0!s
. sd^IoI#o?l#kY#i
o#b*}p(Bf#@&Xp

###1^C#g
#G_0#X#/x@##_a#9#Awf"ISWXMZN
p #[I###"`Z(#A
%n##MaA##pX4jC*!of2q<SD|0(#`#UI#r!Tz#`q##(T9
#(sHN=#c(
B@#D`ydg#Iw)Dj ##A`=SX))STyEN!R#! #_!
0NJa###0[/rTFt##B`8##<#nT%T7&
#@##VJII_#Q#T#7##B~##KI#jU*
%*b##SY#####XKS#iM$## I##,`4#j7<#
i bn(&#B@#

J))#w,`{<+$Jw5#####0#d#rO`:~gSv
{6<###. #=d3:F))Fb*1&*#k###guh#8#D#1A

!5##}# kpT

h#T#S#
A####Xc#l;U#? c#S##F##>##v{Q#vb*@
##!#RRb#=X`'Z5###1!U#h=M$\Kp=#/#=####9
(%QkILQd##7#Bb#hsHJ

ia|TfqW#<#{=###]?OUfqW#<#2v%O{T=ZNR>J###w poJ
g|tB0H))w,##SY#x,#d<(% aT!@! #n@
?(%#`!
y#O#kda7#_|##o;##?h[oe=#8p#y1O >#
%cn#m)nb*Z
axOgy##

i
6!#:

AH#r#S(#L:!4#w'|L#NO?##p)p#S9*M## 9 x$
FRJ'f#<!#[B#hU\@0/_!S## " +o&> #####1

5_w

f831p#-@+|h}#'-:#b,4p*Y#_YTO###)8## #gpFBv#/M=

yxD85b*Oz\/=#po#Ss7M/u3I C>MAd###c-6@HG(
t##i#}]_J07#d#FB###t#1#[_<N~
}##+#]#]##
#_(%fF{##Z#bn8#=X#<n#6@^B>qybg##q
=K#:EN~#?=q###K(##?##@#

05Rp##RI#[Jy#:22qg7##7@)~VF;#DSj. G#Sy/Ot|
#s<F#<={y,##pp

$-#FY@8@#p0d####&>#t/#!4#bc %#*v<1#dQFp&\^^#@>)\V&W<oc#e:WJ6qN##p#x,b##i
#>CZ##RB#t##P#zYR# [+i#
'!
71L1~##5L. L##kt;)qOR#];5##G)#T##5s

D#&#GxS- (`)
*<(#4c#F## #[=_##4WpH5'2#R#G}<[j]5d}=. #t9mKV^Si#l!
#QZ`L1M|mS2#_9##M##

##m"a2^#w#n
#!#_##|##"@##J dl#4#|<. 64H#i#c*!dM#8RRVC<iwpOB
#
#r

w1_#r##k#B#6l1#69#h0,#w,i_!D#
v :<!A#pF5,_#_###SbEgt+\"xE=##|##z5*W#|#L%v#I
##10#1#[aR-##a#|#c!##qC2}3&!
##]M##x>#]q@OE#C(s#8#P=#'P6:##L#?
PC#o##"#9#_N+-e<{<h##;M)#qFG
%Z##Be=#{#2g##Iwy###ScZA3#g'#|
#$0#de"Bbf[_5O/44{
#UqO*W-N#n
Q
#
8#
#
j y l8Nw#_'taGL*#+!
#. K#"r#yoJ#`G#{I+Nmv/]p#b##g]Q#?jk?SAZ
=/Uc##1##JP#J#hw#a#: YW#p\?SA**
L%TLiz5v)_kw
G#4u(##3#MzJNAv#UF##M9Q
J#+#a. |#k#'(&bS@
/#dq#q#7|s##'\e
a"#M=##b*+Y/s#I[5###^t###&,v@U#v;_)
s##-#((D *9##(Oe1##%+_#`##xH/_"t[#|
xS>zzd_#VZYjW@t*Uy*D~L
%yrRjD@>#'P#4[ sr`#n`##)Fj###W
>_#h#dyH0
#9JZvR##[mL#F?9bev,tBJ#
####M{#r#O#T>E
#K7 +x^F>#v#<#\u+#(oi|w #tl=;#~nm#-#%e>Li_'}*v:W^%w#s#PO%TRLTZR2|
*#s2##]#'ffW#
7 <y#63

V<'lD

_gq_00#}*9W*W#'m~1r#}#RRNASv#{=z#},_!
7$A#. b#8#ia*aD#dZd}G(5|:]u#d#JW#[@Oj
Uz#T1A####UJ^#}/1?g=xsl$CLJ)NR##+',dW\#h
HxI#t##16#~#m#]Lw2 "Y#$ytu\
##GNzWUM_(-/dO#9
`zMj`+. # JQC}@##T##D))A#OY#S`# y,[#0
3
3
3
w0##E*,(QAz# Vg77x6Y#B/#<J2#
#r# pO%b. #b##S=#+J
_1nA#Rdi`wAN. ##^H5#@ehIp#*m9c9}Y#

:Y]5Vf;#[p(Sc#J#G#\X'
)H^#{##P##h## JeW#
(#,#cA)P#L(@t |#^NJ
A2)##}#sW##W<`:4`W],%
bb#h#j6@URv'{. #'#`#rv

#?H'y'#2y#YS/0##;*m#3#z#lz#R##LA(X#B#9
>#p#S%sipfWXd$ma#\Kp#;aG1D4]#4#bXiM#%##'e
_#p#
<e*v#;)%##1#?VZ#Qw. #e7@sj6t###f<:lne x
fg$'#q6#SXSm
##S)#U91SWJG#TvD\WWu#t#XGL% v##1j?
NJrXL#:j#_;#_>#W])6 d#Tb$)##Si#RN[i#,g#|/##baWwYL1GH)S(b*M#" r'rSq2qv
6{,xL+ACJ
4d's#Wg )cL
RR##T#Qc##S
i
$+~PnyBe%_O^e###zSR#a:#E>+Yc##S
J1(K[#rCBLo>

o+w-?B#QJ#O`S
5J=#b*##J`lpU
C1#vw=$3*hx= #@@(t#8x#'=#g
##R#I(]#%K##S\WW:WU_#Wq#II OT#B#G@L6#e?
#W>#]A70uGbb*C(S% b*~C##f]vSxI&)7{2Qb*

_iQh#1
Q;# #

w#o JkmW#?J+!JzA##S#F. @,Ll#S2>ps##6


%p<##S@LR##S<_`Xz#{#b. T#F#[W##oOB#F#R#e;/OC@L6{
#
xu1:#3#'G#d*Vg1hw%+9J#SvJ8
Y}`1,|
&#xK"+@3x=p1#,yUR\_#\#0jY^###+8S3!"
rzT
Trp[##
}z^mY#v%}(yR#M##8`##OLc
U#0@rJV8. #
#]
DxEc%(z#V3#
\Y"Rs1#b*bb|I:# ]/

p#|*p1~C

D^\#%p#

#F##b*QH^Sy?x?#!$BSS##`*~WvW*+@VSR#+=eT. al#TnO=S1
>#bR?tB~Tj8J
#_###S)#f(#W^[#
'[#>#S(#_#vT#\_yW(b*DF@L62#+WhpB-b*WSRH\#+!
vP>2+#f[+=. \1p`YJ#W#UJs#@
n# ##S d#5###1lp>eo#
o8g3>#%#J|ew`)####:w#;s |z#Q##H-###<oQ
jPLC&7#sb#Gco#1##XT#QE|Q|C;L#TV;
n#{y1Gb=n1am(#U nu!##P4j`P
#O1#F{##
Op: k</U#m#g#,r{2#f~8pg##|e(2#GI|
h~B<L#Gb=N39CE~it
+3]h5x
njT#"#tKJ
-#

I^#
##zg##r88_=%y% G+[,s
fA3['M#]V%-]##maFq87Rq#
S#A}##<6U}#OU#uJFeitXC@L[#6%n"%d#@
-q#?_ -wt(#RqZC)W#Y#!rnpLu/GI@Vx9##xk!#?
{##GY%%K" 2YG+}####<{XgJWJ" [N`*dTwN8[~,#T#8|
#
\}JJ:bs#Y)~\E>~

~#,L++7^S

-2VM^

2\|32uh|X:$#FQ0_#N#/FU
XwZm_u"s#8W0
p1s#+OplmgH:s###Ka*_iM##EG@@Le#+0#_##9%
+####wi&rO#?##
-#yZ#1->o0Q3_!+C9=~#@rFa#0L+=#h#f#}Fp@g0#6BJgeP#uHZI#:J`#o<~j9)#?!/
%)i#vvj#'#f#f#['Z*#KT#fFeS#GlWz#jdG)5W9q*#
A###iF##'/#
@9vW{H>v#9#A'
,
tcW<g8u*s,
#,
#

a#_YrOGLX-Gp#W/l#1#9#"6#L`#s==I#

#S1s]
cxJ1SI6(0dOztY_$1#9Wf#TFm 7#$lTG#X|
+Rbl>G#!Us'#ai###r#-`Bl#1#lg072x8a<`EN
j"`5`=kL?
#-},##F#S#
]
#: #`J4{(#X+m0P7X%;. \'2g#]
]J= #I:#1
%i#R8_%%DS~Ty+D\B##n. }-#4
>cz` q##t|e#Fv#pFZRft+W-Q##\NTY|c#,###^>ya\CJI#cxcn|
#. $e/9/MJLe50TAbK###+i*b=7IU
#N M}pXub*Z68`F#z*#K[##y0Af@48\W\cyJ#|
#ELe;f`#LpYtF|%\#%+#8J###BLe#CSc`Pi_##MeW0R6g1b*#;[qm#qS#5j2(+nVZ##Sy2qWR3#C#W#~1 #I{#m=C%#OgM/
!
#8+<8yo#fuO>SNv##c)'D#Gi2#. 2zh-####L,d#O*?
+h0Fgi]Z#+#4/G#]n#D" RJ-#

?8
dOtZ9D%:VZ]6[8UM
Vi0fy#]nK^nkLJLe;
E#~r#J~
x5'G`#L###qk#bW /?oGV
t##'d#n`q#UrSA#cdX}~(#[<<#y\
/?oG#!7K#S#
#W&X#Gfq#iUM##=Q#\il;#vi##LTk8N~m |#?#g. AK]#
y%KI #~X# Q~#B8wEU'm#y:Vf##Y
n^oT#/x
w }WL#?yUJg## G-w#}|

g
#zJ#M5##>#w#}wpO>#ko6+))(##r*#i!
b(S'

#J#2 #>@#

_}#Ay?yLpx#a##8. /BC#6#

9O?#5##~#P#25p#[*### #W#b95If_##MlQl#I#!

p)#Hr)t5##xFVt#!}Tl\7*#+? k\G
'#Tv1!
#0%S###%u=&n#xI<AMoW6#$# #50#;8#

2l #7p#/###'s#}2X*#i$4vB4###4eH3##

-T#}|3p,\
L#G>PJ?#E
,m6u#z#c##t#Q 8#~#2#J
(J ( nS|
##"h#W#zA##0[3[##ho9#fD##!##(#. #:K-/$;FD_E#z###J%9Z#wirI
%#{JI ##rr#Zv#l\Z;,DB<<i#?
v3yLq_N~FX#M#F#k~#'1#[###]#Cp^#>82}KQ#X#"fG~g
g
g

jQt

U##+%%#*
#i0 #4kb4##=
Ww22Xd`D#epTz####
A Ss q99## #@H
# 8||
#Gg#k#d#!};H-J##
|*##{N^%a0c#c(-#hER#

n1#. 3qM
#h#`(RQF'T
Lmm###>7c'6bH#. #Cl23/#1#`-x#9*m#A{#n2##
sb8#
#QAO###}P,#S#_###aB}K*#i1#)\"+$c>wpO7O#
)
}|ck)g
)<#gf#Q
. #q':%/6 ;[###qd#

Q D#L#hBA#
pp(C#%KpPXp"Eq#"0(I*C#fS#GY}C=JQ
O6G-ql[r$#i#>S3
%pK=s2O##wlm'>/sP}I&6#GaRo#B# 2g
o
C4#0q#o
o#
'#t#g#M##f q4c
;q#Wn lj
T^#*
###3#bdy##&##>#o#Qv##w$8#kdZp#d# 2To#r##1
UR
##?\;#+####Nhn(T@L5>~#Wy

'###
5S1q=G(#P\"#(>E `
+w1i%:(#cxm#^*'J>@{Eq#LisQ#rA#|vJ#(
gCL>##b*#1YaXiaYsRRH#)_1#g*##?
#Z##ScM#tN2 cJ#crpF|%SID6b+SL#)w)#S]#D`#|zpD@v#w6v{pyNf

-F1#(o<y05#H##Sz###~g4#F(##W5RpHwfk " r/O#}g#


[v#n/#\PW+QDS<Cm##_=""8#"#n[Y#7FX###5a+vg#Y
(~el#Xj0RRQ/0h#LTX#vku00t@{%
_i9/l`f]#'eqmlg

# c#/Hep
P#X
|+##{y*m# 0%S!9#M aIXIxO2Vx#2/i#F!
C#8(#Pg#Ff#\)Q#S(2H))~ EY`ew>

#d|s#M#l|L#(#t#3#3B08M##t#>`#of#tP#<k A#
o14#X&#\nMW
#+lQ#yfJJ#l][+$++jmQ#!
GPx 7#/#
H&##^##@_. < ?#@Dxu9`
\[p+g/##)##'j#|0Y#KOMt`-R/cvL#U%pz*#4<?n*)=#i
%4_O,3;#IeZ:sW#&z*~kU#A2#/@/##4#4i## ###;!
`. C[#cg#1&#c=#AOJtz#i?
{A{#-;OS2##0#DLGDO;%#
#
#)]5#+r>y#!#@cH@3AwC. =CPcm;`*[

W#Loy#(dLIAQ> #R#tC`>r#MJ/=wc=#la=r
(#c3#Jc[&#qR:]~#RJJ#`E#)E##_j#_##i##~#q0b#l##y##S##oJzL^([sQ#D{##n
[Q0#j#

#7) #

e
#|#`'$].
V~#p#+fR1M#Z##*#*n9=V2)) &909R=i#W\c82##2#zg
4l#"SaJa{AP###a#/Z#w 4#Y,17#QC4K##y##?
V[*#(d#2#e*#

#~#Je##l## {-(Oj$`_@ ###MHek=#ukF#lj#3


H#8@`*##uv#0

#OV#R. T#NP##w[jCJ#z*)8#8'l#U
%#9K###9k,#^yRw=#5Z6MT#UF#T##w

zD#X)S1#

RR(#V(o#SaXb#<5)Dj0##+Gx=2
{JJ*u]#7v'?'a(k# }kg73~vS)%v5#?|gsjB2#b*!{Nw FS
YLIq#\<F|e. {In#tz ##]
DAv(R9e[()B'#b*=`%RG#oQX#u### r
FQ`g2 ##<##b=/T#c#D@LeLjg|o##X#IS0
OK\[#K6#_Y
?
%#T. u`SRR
?(
? "##[?BnYK# #b*]
#{1^Ta##. q&#[#u\t###S#FM4T
Fq{SR##{T#M#B

M#tG@L;w#Rn,kWJJO_WU3T&6U# XJIis$;#QzXJ3D@L#9cp))3*#w#
s/,#B
,##+3. [t#S#*%+#{<
rm##Wt`"GO|E#
(#$##w{#GB#+#icR2#CFgG@Lev#o'%(+{QGLQR`#

kuVL3

Q W8;d]q4%3?
#<(=Rv#<%Q|%0%C#
#WR
+m5@b*##))#TWJI#S 8#%yUW#
%h#L#l-#U+Q{w ;G## `;dJ#S#S|?0h#_

d#B##R-|Cb*A==##X=#?
9<#_pr@#T#4J7{JGx)S~in#0

R## . y:fA#G!M####1#
q#GTm
`2e(ak(##]LI#(
,er 3#n#3&# ##b*#{KJJ{R%+R/F|
t (#0J#8J##S2wDEd2+##HK#"\#x
##A####/p#f#ES

Li##o Q##AzKJWrQZ#H~#FZL#%C8#h
=")[+bhP#9Zx&\`z0Lfx\N,. #(9M+sm. #:uJeF_T#9
%+Q0\)K#####
I3##S#7{O5]

Q O #
%B8##x)
4#
# ]#>kS C@Le
%1#G9og]##kEVr#W#vg##x#Mq;#[r
ka4F#4##SR=_#<#V-YQb\
RR#B8bK))+__14$OrN\
#\
}qO#+
%F##r#LI)##i#WmhP:####W*]#x)%##e7C
#! #
G3Qf{=e+f6@2v#t'sq' +<A#?>ji##lF!?Y##b*!
0^#r;G}`=IV!r_JB48##5##+T
9 f[ #ESJjJ#Td KM
yXUWXd#Yz,%#
|q##J&2E#A-#Wb##b#I?8C=4TSnmpz*iX
om#_QOc7W#X6%+#%
+@VGo])p5$p1#Tz#p
e5dX 7RZpW5D4`

,#us#deWYX^#Z8<`k#TZ#:Z#%##?dx)
L +

[#"Rqoe#5
wgS=D#KcF?LA>K1#y"r#}#dH6#u
##1#ozz#. _)#N

ehJ_9##n-J96DAgW~>iA~#8+e+##"##1pHs|~#r/_)##m#

#
b#R&MIq 3((4. #
)?
Y#b[##9##b*@BbHgbJ~x#vZgmt7yQ 8%
%". Q2rZ)7#=#Z9*9WbA#9ts<S#

#2#)+k{)mvKS
#]?U^)P`. #gp#kc)] _yE#)+FbI ,W-8g#Y1r<nT'8iJn)\'xtMp#r3)k r2<Wtzc^6^!#e#i#9@#g
#4o6. 9
p8rkw!R#8##Sq##W#
#FYa###5Ek#~Z4v(6mv;bq[#3
/2nEB#=8h #D@L##

r$<vIO#pNfE!M## cMsx#Mr# ##zfJI5#Y+

kg*&2/dDg<:_##G6@
#D
##We#dS#x8W#_U/2}C@KN
&y#2
#>=(4G#v))#Y9~m##)GIw#Yq#y#eK`

p#F#;8Ul#w{f=))6

? \ JMSR8###G#M##Si9qhWH8{|*=###
%##Qb])NL*SR v#B0ku!^
#;#M^Gm;8Q#9#gw8R##d[{RXa+#"?
####T<(U#2)+b#e=%~s#,ISRq#E#C@bbLI#M`A
#J#Gr#QWAY)]R#D3$%E
RR#~#

+#=7#Orm mV7#qVF#4#vG![LA/##qn|(3f

d:#ri#2(##RQZ1#b*WHs#^*##r#=@#GAY+
%0%*#. {#pF;##q#aT#

}Y##dOe+%O&O%7r!UR#W+e#kf{v+8=##m+`SKk*=P#^=rZ+?
|?M
\0#e`J#%)#MAJI)Xx(#Tn6wT7?
#W<##s#_MgwSoJx#'M=))##F ##H(6t#Wf-c" 2]Wx;%
+yPFpd#MEacq#~K^[#"e#q#{I
!#J#u #>%E@#!
#A,Y#?bWd{<2TW\u#jwOE}p#T2POr=(W
#BT#hXQy#_&u#_;\)N

J
OB## 2#{&t=GLIQVjMIIiJ`#
J W@So5
` { 2z&FJ
#
uSJU#
#
# n])Wq,wk(#48C#G#bt#

m#AJI#SR##W`##Wv])5N@{N-#! 2MA##,#(LZ
OIq)v
;7W=q'3'Wr
@5####R!G}al=#~Z=#]#pZ#OfSY1#[D#or#%P6. phE|4##YP*#kk p@
%DOE#^DX*\mS^ L_#Y=[;~_x7v8;7! |oJ
i>wE #(%KC#VC
%_Tfn;ISW2rjY2WJSRSR(`'vb*8#
J^?
`;#WNg}o#(Q4OZ)%8FY]
8#F##1,rM#v2k#5U(R#pP
k~JWJUQ_:QURp###S 7#fII)'@l}#>,(

R#dLI##'~jl!WJz0#b*#3_. }#L#'k##*7##-%8oL #"


##W#fpfo}]dqn
=,RJaA1_$JcD@LeA$[83:#YI)%h;+J):
' An;XAUs%6RR#8#di[9 ' #
x#*E^-#iE_##p#Z{#(*)P2 n
9#B!#o#`TQZ#Jw)8A;S2@w Bv5#p#2)-T&/#te
*#_##,iIU&#![#/P2 TWN\C#H*=#jPQ s6%+%J|<#b*/#

#z#G!&COW&;N^(#iJ#5/BlFCJ0#?j<#b*8`e0##))#Q8

U
3(##U##J`#RR<o])#

Y#7+$xq
# ^$# ####[# ####R8dv#W.
##s/88
(#T##
oO>y_ZF@L5#

d(qO`Q|

#=-slaA#*)4e7S3. q#r;WdC##c`U}BF#
#o @
f
%i#c8zp\|Nf

&!"%4sI##(##
>##hzx#P

##0#?###?##:W#v-k##_4#,xTW&##S
#{NW8+A#Q#?
MImT#l7N. #l|%kf VTOF%##;I'[$+<#P#!
2#######_t$5#SAo#{. ~K{86S#By%|e r#bk2?r.
%1)6##; ~##r2ODL#Z#Q\+#bZ{&MI)[-
%
#JSRE1 #\a##>9_^$Lg#
+JID4#U`iQ))P#0%#Qw?#r#tam^LLa#;#B#~!
=>JM]#Fl54yE))(r{J-;%R. #(Ty#m#$#

'## #8~x#2sO_(##SY#m@R#?V#v2#I_,yeKSnLIxv g$+*bKLHV####


NeZl##HC##=1#{u^##SY #L#

3Z0mVq#q%RLS;N#[#9|#|go$#d#Xx##ep#P(#
Z2Pm#Y#?#zroJ
L#JQWT

j#^N #%+B#O

###O*#q#S#. 4,1#Xloo

#SV*#t86

;SZM3z1####(dH#WI)Gp####m)kBlt}#[##_~##P#
#a
EmWer,&gM#F#"(#b#NWR
5 }SXeeyt4p#Zp#*y3t##s##;[T0
{W. =wA e##(#~#iGNptg#d{

3##xG,#YHj##EZ#,F`#h#

b@nK#3WW# #y7%
%\C)#Q)T2B`UhJ#nzV#))=g#9#(#do- ri;{WI!M9U8m9
sn#YIF1####(#J zVw
r'w
#
ww
#+#;T2WJH. 8y5lQ?+
%sx&n|UJT###S#
k!P#g"#D #t1R####[vslwKP8x`#_Z
##S#k*3P#qfQ#

##O-#+d0##r{j8U:6p#J^9H&B@Le"cc
]#n^|#L'yWR#{N
x#. #lv@AXW^o
v>+vj>5hJSx%@C&Y)`##M##ultD#{
r*g#
(<Rb'j4y"2#\#1T
RF2#JWWbw 7JIZ#;
'#U>k}#z#T1|
q9fK|%c'WKI"+Q))eo#3#S#X)#(R>^#f+###N#g
%~##d####=:ha#tG\T7 1 ##b*ZVJIW1WZdMMiJe\)0#Jv6#OIq
{l

qaed#3A#P#_Fh&$#Ah@#BJR###d#|
doCoF)##bTS?#:nD #eOw2ssPfpO:t#=*v4MI9^(
##n\##%e*O#V
#C"/Do!##oM!
#zhRd04^_};R#x##S
#Jo~>8?U

#O#~6.
6#IJd#<9w#>#S
_

##zmm##t#@#,]###It`#'"OK#h7n##(r##B#JO'#ndQ
#
?*s#
#Wv
up m. P
W#8~cW_b-$M)gs#AA@7*#=A

`o2!eIIT#`\or&(f#1. p#5y##<;G+e#>PD
\TzqrAO/Q/r4#Va@g##
##4e&2@W_)##:GFh. 4ic1IwYm>s2ASb(WRQ>S#
R##F#g_8J?P#,K#g@HFJ84xm>. #$#Sd#5##LI$
+Z+$Q,Yy9( *I^
Y=~JJ3f/l}*

0###I)#A,###r#3,#n##n#{<C/F>

O'uN^#|e#
x6sH##M 1##j|Eh9
cW'3#nQta7I##`#w3##R#I#i##j0,-=;
~eN#IE##S2W#P@#>Op#8##(#]sp0U{. fe6+{
%iW^Yz=Js##
<p#nC?[{3W'## #

#tGe##y'###m,-# nXLN
+Q#E1Ke<$#|^# f"T#J#P#}|*6YS?#q#A
l
8/ #scKIq#
a<h ~#qx#lYY#^U#1e<~LAKr?(=4,.
Qj~R[
5'5?,~)@~U=T#tC*v-V=#S

$#fr)YJJoW

]h($%%-R<p~Sr{J(%Hkh8
%#l"#@xJ###QR]+##;3N&z'n#~*))
\{vj-}x

4Q#Dv
#C#XGL#0)}<5WF#i#Xp
+\/{v9J##5IQ])RO#~H8#c r#Z8W#pm(#LU,#gI=. eT9
#JSR#9);5

\T6u##1#Q#^yO6Qls#:WRJfD#5)
#G##Iz@{jS5##S
p###[
# #+:i>P
#E/c#r/#b*m))~m*3#v#_y?#MSRNh
8
W<S8{<
8 ]js#M:$_D#an))~8HVX2+=#P7+##7$A;/
{YlRR<#z#npOI~|N,_Y2#tK|. W{y<{|
vx:^Z#W##=6_U#YfI#T5k8GT*#?+#_w9m

_7ss#d#
&+Ow 7J#)#>5#b*/<%%=-#c+M2^5Nm#
0

uB#

1%\)[+2U/[ #*))##+U#'[#W#`(U #'#*


6(3GH))2dK#@l#97#^%#_(#4`J*xP##0
40#!]_##W#tC@L#G#5(

!yf(#xG#gw2 #]&t]O]|o6c{N##D@L~NI#_#

yp#7#Y9V/`i# S!j ###+C#@####gULb#%#_!p#QYV'# r#{xt+!. #GY^|2##Y


HqU%%#R
|##b*#gYiW"s#_H^m_####W,Iv. r5y6@RR. !OF@Lk!#=b+v#Qn#q"!vl$J|#Y4O0(S#Fy##b*#N)###`R#R|e
Z3<##["{#


W]U<##1nA)}3##+#
#_1#4#e { Z9F#&+#\)zq#. ####T<(
O#i{. M#_##@!y$zNfd#2r:#WT##
%#N##S9X;#'f;C@#
#(##%. #8|
%6y# $G#<##1xp{f##EV#`9vl#eHl[Gg@#bn#
###q#Qd#[b;+#yCF`q#'NLJ^y3H;##D@L#?t#w{=akA
#i#L2T%F&3-A
S^E y2mmgv /iB##1#vJ#p#|#
%lx0l0#OW0#(B##1*#[=}3U3#|##O^^#4?
U[##4&. ##e\# #####S#V #G#9%Ts#CiK+#_i^8Y;#(~kJ##S)Y#n#db}###nbW0q/#jra-W2mv. 8"
`##\)@#####T# %Mr_K^p#9+&dSii+
\Q@#b*^Z=}3to7NL0``Pq-+L
z_v#{&XRq-#Tr#h#

Z
%<#CZ6+e# 2Q^FGL-@##b*'0=ZZGH#
"|-W*?Z##!
#@;#T^bvEJ;m%9E <yCV<m]d,! #C@Le-##bx#L1`%p<Y####w!
W7(OKI# [GA#W:],#o#]-#_##w{=G+(_*_
\*#DyN>"+(!p##b*?n[#_6hx##&r#*_ o. ##t##B

3#npLig
seQRW:#<#G#b%S#T"\(%
rE#|b=h#_#m#
v2cEQ5@7KT-#x(S##Fa D6F|%%#+#+ ~c-R/0Z+MqL
%R#\iyE
Ab[ #seAA-

#|9#. /!S4CAL##L:(#\7##}7jpT#
%x,Z#J6txR{#x#SiQ9s#(84S-~*E@##0#B #J #
## =VZbZoQrwpJC!
#
@#Vf*"\Va###
#
##[p#Y#r##^#L###L#1s]J
#=#/#Q?#1##JxH##h'>((
QRZ$De%9#sq
%4#X(Kn#3[{Z[PpL;I#O^i#yFI-#0pG@#`\#4)&#W0#U#J#Jh=9#b#CuTJJ#3##s3##b#$
((Jbs:J^1RRjS #(%eU5nQ#g#r####O^yBY[#ZN|LQ?##D#G!Mi?
## +##zJIY
t#J#####M 6k#p###x
##C
s!0SQJ\#k. mISBt#G
1###

#*####&`*JIee<a|`4#~Z#b5)M hk##4#d/;b(i#(s
P
W##jAJn#LTDBQfGP/L#

+ i (6+WJ#@4#LT]8##40##8J>

S# #J##
W#f##T#t8##x r <(#

4h#TC`&6k`#f##T#*_QJ8kL|Le. nv?G#sDMY#%
X9+%(%%vmH##LT##)s(#]^|#}#,25J#&f*#_#[JK##bY#G;
hY#

RJRSD`zb|%vqNfJq#3a#*W 2b+#XKz#,T`<W#^JI#%=_
L#^o#(6%(2B"#. #u9W##W=##d#`p#D]Gw#9#p]BNj
La
#hJ_9+6?`Zp#RTur4pkF###L##{|!
,#H[#T#2}#r###C{}(%##E4e#5Bv
/4#,T
TR##9Wj2gw(#nKVp2+FPZ/`G#G##
g"8S1#+NWvw
b##q#yPj#pq##@#L###Y)8JjW-_#M!G#_\

#
##<#
#(%e

U!mD)L+ ViJR0
'7#8
#RWQ>6#4 #W2#<d|iJWs~;-#|E#`A.
%<yE))#M'#Od*WNw2WrW###G!Mq. ##Mq#1GIG##t#f##

RJ#\hA0#)NIVq#'M#G!M#Ys#\lr

~'#D#A(5CL++S
2%%%###G##
\'#G#=wu##'Pj&###S3n\q#9(hQ4,_d. en)_Ql#93y))@/\##MJ#O&HQPslT'-8Y#[W6# {g
1(h##j##v#8##6######SsGTQ|B8A#_
/G ]##5##QxJv'{
###W#x4So#+=NSm=q#~#8!Y0WJ#(QHJ###p#RH@7##Tj8
lSC\)Nfcn

%8n EG~V|^(Z B3#c*#{#VFV6ktAhJ#BpB@###!


#g1####Rg7m#848j{1(#!###"#RJ)~^(X##
Z7PJJk
%_###!*#3##;#LI)###Y[{(eHr=4 /! #@L#>
#JJC=(UlYiJhJEE###!0##2#sx2]JvRG#mQ(RS##E{U3!
#J#,T
`Y#/p-eJ ?/e#W*XGB###!#S(#t#%g#|
Y##Y*J######B`U#a*B#{9#[5|)GQJw#K###!A`#bRN_#R#?
RE+((F7##)%s###B@#!#SqsS#%
%\)~=[we#_#@j~AB@###xhP;T}k`##z-#XO
Q/! #*#LT`RR#9X#e#gB}#bz#G#M
##! #G`#H!))# sWfk#9a|e'. ;,#t#G##! ##L%0%4,#YPHqK#
%##|e
#0r'?su###B#TRQ#i(#4\+r<vY##! #
#X
HS}`###|#pt,#_#G):
#! #"L%0%#Rg. [I-v _8^WQ*Uw!
0>#O4p:#V`*[WJ#*REi+[#n,yE))Nl6#
\ o\i
#E( LeYL##uRYt,f
URjFG_FxM#:XE>W(}#8'|?
k#{w`N#8E#d|#dE|#. 5#0+S>8bbOk#M(54>
%xtNJK#Q=9C##07x?]~O?#A###W#b7q#b#tJnY
EQHSBk##_|## $|###[#q#_x_L+|#

"G#~aoYK##zCT4$#UR4%6%8D*I#j# My T#Y##"`!
i###ew#h##;M`M #

k#4(t##T{}WwG#s]$#hkL%###x"|GX

~-#3p#iw##<y
+O~`*S=%##_9TV####
N=X!ZBZ
#B#cF#(#>Wm1#2SR#W;:&#6>#k)
%(##e#EYS#9#k7|W#Sq=Lb#4Q#^[#{U^# 0S##b|
C{*Y8))7v[r#tLd##)`#5,x#T]</,wF}l?#
8z##Zy

Gb#pW-Hs%03BRR<. +`##d^#l ##|;!


M#H_#9(f{o###g,o|oc|F#6b!#M9
##G#}'c*Wp##

\#@GLdNq,$h
y v#W

YE##0#DvwNv##f#Naj zX##Q~#r##w|#d*#

:Mm#oF;
9#
#yx #cx#*_}##?n 2#J##a##s[##V##|
*5}/e#HS])#bpO,K#l###ppIv9f<#
sJJgcEE #G
E
ib
a
p/t#

li#nhS2Mt0X#,@e@SIS#I#*#REc=k
84j/j?UU@`#BWf|gUc#'+sR#62
v#1Q#4]?k^%yWHSQ0{(eLE{#j453w#]M^ I()_J#b58*Bl
%[6`Pe\W4#@O1AS#4sV#P#'#0#L8*y#4!M?-%
++3"0#_I9J=MiG))3. Xb*t'373GxP8

6]rl \?zYA##W#)9c"pNF##0kZc#iu
%WQjFgb]W_q'3

####nf'+#v9J

w#Aj5#[v2#f
kJ#,TR#?
##*))NjRR#=5=#r@9WXhd#s#`F##gQ e5#N#Vf*\P?
QJdJJedx9#i

~q #ES0#gD##F1_z##I{#Xd|%

#GW5

*_#2z##
^$#W# w`^`0v~iN=F+=h##Q]SW+d##U#

/#

###f*#|w)#T(##])V)#V,#+F# MI,mAwiJnKG

#VJ}M_#TE}#7} r:,#0D#C-GI#tX#t@N& R. e##

##k+#s#K5#Ea# S#2#kwOQ##,yAl#g#Q'
/#U
#>^#xWoftm[##((###~;s|
x##
&#j@&#C#)X8#a#rYnQ#<
^U#5j#gc2761A@cJ#<#65OKIIa\)V#b
#2###>#xMX\#W#4
J#Q#]#
#D_~$(-]28/#a ## $%Ak~[%/#^r\p#8H&JI#Lf+
+@URSR8M#N#\#8
g@#|E '##2

k#W#zG,`0d$"e*#jC##Yw#!H27{ "9#
%c38
#
1n#
#
9i
##8#~1`Y#g'i]Qnb5Tb
Bb4E:A####

5jPGJ

v##I$o&rA#^####V6D 08aTf'(HS|Wb9
L
y#*
##
`2RZTIq@. (vISNe# \"#<x#

l#mi###XklY##C_Qvn83####7>#+o|@/8##!Y#_#yyML%6
#*_iJ#xvd@#rvw#?]`-[fSa#Dt |,
##########(E%GIaLW#r\&Cn}+{))Y6#sT
##hJ:J}G\)
# 9 k8JW2[###

###6#ksi[/3-q#c#kl#%}#iXp+
+
+
URb0i#W7##pO6{)
%%HW=oG13_##iiFQ-
OX#v4WA|c
#"`~$#p##W@##n##t
B
`*d#Z
#_#K0#suAqXLymg)#/_#P&?#Q
ER\%%Mp #5\#QYv@#g#JI#O#*Y%7t#yb=hG Ynggw#h7
Va
%_PO#1tb-#L|\## fZ=##jkgA#?h*q
yQ^]#J'K#HpN~P#,T2RWL. _sq~P##LvwAoT#^1#|#b
3/#TwTP##m#
P

X##d#$#S#z?#0##sdmP#?#+!mX!kF^#)3y,##}*
%URa9|#hJp3A#A$f

l*KX 4%o,

#X%rEw#q7#3RE.

&[SSr#l KnbT#3#J4#d#T<#I B

M#9Hq8}*P#S>##e#DE! S#WCVyr#

J8 #
8

t#

B##S<Y-S6QN))#0##c+q3hJi \#ZH

. P/##R Y]!pc
CSNm#ef#2u r)#jp##`*L1zPW)K^ OI!M9]Ce))bSsqTgW`mVtj

#+%$y6+RL6tm#*FS}S4?#3lJ=YW

|Tfw
T#miO'[?RA

#Y[,/\-@;RX2Y#~^##Q0##q#A'm>Sf#e`[*p##B#n#6N^3K#Ga^qi_V$_@6_##%QZcmG t(JLGmEL%##Ul#&e]h)M,l
f4'Gu\BR#s`/#n#(g0(`##\N(s
bTZ,yV##))#eW[#( POK0sJ$Ptc##{#DL[f>#qs5-_0W

##J
lU##Yt#8J&KUk~c;(p##T ###qx###0{
H))W#SS#Z{.
hyd+,#s#1NA4PmT#70#tP
#JIyW`Q&I])Y_\#S@?
#z{ex#SRBRQM#Y;O;[J8GmB9#d'
6B#hQ*B\)###^C;u9#L%
W#zL#rKJt7a(%#I#LI#tV Dq##

-U/d(%%#eT#MkB<+JIEO#W

#RR#z#z#d*Q#I^ #L?
#@v=#(V#gua"&S##:3QK
l#"%###O###p#=id
r}len

b#
q<URl#SRQp

\Q#<CdB>,>dLJ
1_,t
#em!2@S*BM1emAwC>#[%#EE
u=B'Rlu\lyIH#_$/P2#g*)pO=#(#b#
Bpf+3KT[. u4#TV#M9U*)###T

w [e`#C)%%#G Y?

#ei#KEO#
#
lZ###{N#W]##g*drZ

i9H'[W###\=Bk
#g*#22$n#]###=t). )y/#
M7E`#R

};([iirc#UYR %+SlX/=P#9
ko>|OPr+@~Q@Qt*C ApO#K{jS
56Ro@#+gO##`P#
g0#slpO~p###?R
#
l##FdleSR#iq1?Yfx~#j*8[#$<#J\#)eK#
#eARRy/<k{## ))&W

#E#g#{##>t!

:##L~W<a 'h@VJ)Djp##=p]]j_L
%+#>hJW3/gy1+%cA@l^E
(QFHI#G!M ~
#g*Ww##t88IO2#v1k#r###)C6dvpz2x1q=r#,T###9k8
A
A
:M^qA

#}U%#@u"###938G+e#<F#S1
JjJ6>!JAJ=~*GT' 0~'#Sr#r}<\f
<r#m1#+!~R\ q#<`X'g#e%#f
c>+Ez#KB##k2###


#
#
X)lX/#GUO@@b+B'Rl#u

A`Yb|%e'px=\xPNf"#d#Jjs #))E'*#pRR. ^5#G`qzDlOHjw


+
\$a@#YnWp6J=W?Sr#@#ARB*#x#S1##AM+5em)Sy. #RRyv _V%|
#<
# GU`0
- FJDQW#
#
I^#Gig'K~`'#c,tt(q9?s%#{Y#$
+PS;w##Tj#
#D8$
#
1v (!#D#
##j#
T
Js#p{1*A =s#+/+
? |
#S{#1BG#et#T`W[~*?/-##G Q##Dm#9*#E2 h
LVL6Ro87
#s%#*)?J"yv{!M=#wV
V#pIX##12n`mZ#jrb#3
#P
Q#xa<Jn`Ped25;?
h^@ A#BwpOn#))PC@##b*p++G9_"#

"_wTK!@#Z@l#Y=!ki#IIC##S92t`0#2Q#Q*AJ4!wiKI
i#r
m##S9_#+|M###k#=jG##C`pO,GT'pJ#jp8n###

##9-o#W9#"+. cQ###Zd@(#uw#jpOB@###S`X$+e####. j*#~F


i6B##1#0y#x{y #^#p8:P##ScW-W,I6#
Af##J#dE
\#@,G#Z-=Q|/8w ~=t~b*#9#t#fB`##)#9# h#r#b*"8=". -(SGQ#Bv))}8*|
1##5. #&xx\&c]
=DBlG#gk#;

#Q}=#xPJ^
~#
#m #>+^#XGY=!+G##%d##T-##

:
%
+SD##
_Nj*SlX/=Py##Sib`#;S#G#qK>A## #XTptmh#)Dj#J8###

#9(G{INCtV#X##Z@3i#]bP{Tp6dyH%#T. uql0I2T5?=#nw 7
\OST<Tp4B@L#%6d>)N#. c(S#s3QX/RR
V,J?#&m
#(F2=~c#=#gb#d?D#z####H##clJChM4RR# (S6D#KP#:u

G@L%#s`#B))##Ng"rc5B))#b*M=# <$V))#K96#X<%
$QA=(##t@@L#. #Lk(%l{FH
M##Si
Wx`#+JInIpO#nt
I

#2v#B)#b*M <6#y#l#>hc=*8;#G
#,Hu####T<(k##GRJJ# ##
pk##SRpD@+#m#@#QB#

#qg:)s##r:v2v (!##S#A#}S#sRR0#z#)X"#+!

=)S`#-])#=J#@. e##T#1#ON^##. SOKz

J#P#

e#6
+%li>'3QJs#K))Nld#TFN[l0h+%:YLG#g3v(!
##(#T'gm#X=|#r{ RO;#qDe#"!B##1##r42!
b])MI9x`7W#I:###TB`MH`_(%Fm9
hT##)M####1#v9{0H))]
=#'d o#
*6_p6)#N9jwO#n5##b*S\#AJI9k##R P(OJ#civJ4#lg
#)#k2i#spO(O#B ^B E@Le0~0H#
#[#I
?
#RR3"
2u#(sn-RWJhC^## u+ s! 2i;Nv
_\#{&JI1##:
#
2$ut#TFP~&(%#b9
yNYOJW-J=##S#F###

RJJE@~TYP#8Q#KvvIOQ"##S~Wr4#R##GY( ##S^#N
^QJJErF#Rp6)H#n#R"u##SYf"yE))L,##Z#E)Nuz_QB#J6
`RRu+E li#F))NQ#<;+JI#d##s('#!#J *%Z>#1Y|
e+JI#d #m=8B^QAlqBvrQ`]#,f-?y##|
g[##9#R&*1ECx{i(g#j##fD@LeF5#

bJ~54Cq#x>#(#v#(lpO!p<#Tgs_#Jw#b ###*_p#J1#q#dS=Tc!
5#4#d;JwX

"R5~,@s##G_f@#T#h#S#:=r\. i+#8~v
G_###TbyW7L#
I{vmt#?S#$A#<##1##]S g{B,T#|PC{B,%!
B##1##!0(##{f~zd#T*bj/#v##S###"@WJH#$@#
KI'iE##^TiZ#T5#_###Sp #t\%+!YA@L#5#h@+e#[#k#{b4!
@#T#j#<,rj}io#O#+s
##b#TSG!0"#*86s<Rp#]:=
#1'Y[s]###(FS. xVRR<(#G@L#CI##7##5##?%#5
r`W
5##Sy5##HiJ##r^#i!
*]SA91JI_f #. ! r . 5###!
#Brp(#=#n7yE))P#!##1kG#`. ##RROSq#>2226#P2K##
R$######n#8#Xpv8##2#)X"####S
#S9#)_9o)<#!4\
O])6HK+HI}R#7$##FX##x@)w<-Jn!N#C?v,_;u
q##S##Y#mg1_y#G@&fNN9RRu)j# 2##'X+Z@Xi#v+B))d!
PJ1t(##&<
<
<
R##8O##R ,AB ##1hD%O#"`
8RxYx#+
R=6B. #TB^
###NZ{#,8 ps###1#B##\)##@V#KN3g#7$#>#Y#N#(Q))bnm#F#<##1Z^
^#Y
fo)H#)#Y))+. |iq#T#7##]#Ub### aY9KB3##k
#5"g###BSQp#f^+&
. 5\#MkX!#~;#a?'#')\mhI#
%dyH###1_ddiA#*#'c,mVeVJ=8 ###C# )G!M
q+#]. ###" r/N:J#[2%^#S6z8G_
#8?S#K#

I1#bJ
#J9
)iQ| ~dkK#!#U%#WQ,#=5#%*#_p##gJhJ%. ##D@Le@V
A
TQbw8SR*1#J#]#L#Ty#B

c;pOXr5%vKNi##X##" 2&P[`b#e;mwJhwO1(#,#bYT0#@(!
##{K$#K+J##,``B q8Jp###{p#X##158,W#" (;Oer\)
2@####{bh:M#@j'#M#G0##'=eQ

j##2LI)@``Q|Hp##2j&#b#A WQ

8(8JI=9
gi)### #`
A
#F;kEsaGT#B`##T1#y _ISR`%w WET#B`1#T#3dI ;###`!
##sSg#X
. #tY!#,I;;kRR#gpOz\#_;[/B`F#gFM##D0nZ#GX###=P|
#=_#hJKt%{#m7
; G(L#. R##!,~|##p<0#i<`,3ZQ|
@#pH%! #v##S@qR+#g
+8_I J-#PGk-#p#A=JIi%]##f#48J
d##TV#`u+%#4u##B##(e#p6c&l#>s##irI#x##b*sYZl1GK^aY
#=#={#II!M)D##x8#<|#DNEX`Pe###e#9reK###" 2#Q#!
#T###,K])Q8#Q#4u##B`##T0j#SVJ]#JOV5##QS[##A##S#0S#o#_)`*
K{B##!! D-#|lpX0iepOllp<#B`U#TVly=|t#lv+(8w c#!
qv#gR##!P?|'#d*a{7#,`'3ZG)),3i"#@k#TZ#|c*| #9[JIY
`#

f|#StB{qTxjKY! #nF@Lf#L=. S1h j#L#*ss9po8#

##B^#T
#
&6K0(c*)GI\Z#9
FTY'j&###,iN:f*\GmS#r+YmpOH#
0B@# V5'#S#@>+e#_
t#{z;##3##Sycgg*WFs@1 |
,Q#hUB@#@@L#Oy#1W

##5Rf###B`a#T#6n#0A:#@{B@#

@b#yq#(#Q##S#TN!R#T2Ae#E2K## #[<9#4+E;
I##B ##1hD$/<Q9h<z\,#j#e*W#,#=`J###O@@L
*
Vn5#L#9~#W=. ###B##b*
}*
FLe`##E#\#X##15gVM#|
e##<(B@#" # u`*WfL^QJ#V##6##R1#9W8#QqjB`e#TVnd*#(
^/#@##T( {\###" r+#~#S#0#4+E;'####he##u#!
ye##Up#A#J#W#vre###9e g# l#0#;#v$F###!pH

#qJ#%fJ###c# 2}fnm2#GQg+C
#!PJ9v
%=ZB@##[##S#G

L##@~5I
#!EC#fwQ`#@nF%Z####S#D+8)_Qg###!##b*+Xq9

#V{#6+E)V##B##b*#@#F`#
Ta]2#GQG####B E@LE7##m#q8
B)###B``#T#6W;D[>#!WF5##### 2um#i8#]3##B##1
5#+#KS#XG!#2#,k &v#_2#B@#]k##n+8V###B#
7UK!
##Appc##*}5/! ###S
T#k# YY. ~P! #?<3#

#QgE'M####T3#2###) %-##A@L#=< {z#!


##(#_`P=#;ME####S##*#|%\5##! ##PG+d2#FN^QJdI
#!0##b*3XI:n##-yE))ZB@##F#(#X@}02pO'Kk#! #|*O*`#Ye#i#B@#f~#'( Z
#! #j#P#=##`=Y]
#!4#b*KWLE##J##BN###}##+JIid,##B@### #,#Q+JIYvhbB@##
?
3XI:!p#

:(S#z##! ###O%#D##`=U #!##T#bhM#`=Z. B@##q#Pg#[HN#d`4pO'#h#!


###1#7Tj##WTQ2f##:#cK
K
##K
###tW#! ##hJk%_###! ##(G@#
###B@###!##1#K###B@###!PJ9v)####B@#F@L5/####B@## Rz
#! ######Si##! #####cB@###! #@k#TZ#,B@###! #@9#b*###B@###!
###D#fq####IENDB`!##D#d######################{

#####################################0####
#########
#####

####A###################b##B!####O!cu@os{##!######]####%##n##!##O!
cu@os{PNG
#

###IHDR############9####sRGB#### IDATx^#
# ###-AK##
AK#%%%%w=
s @##
q8;;;_B# #?| ###@###wYrRC#####~#@Nh####
P#rR#". ###@#9@###@##I### #'z
###@#2ebdqx####Q
h3u6@ ###T%TMf###J#99jR. #@##U 'Uq##
##@NZ###@U#IUd###@#,## P#rR#7A###8*#5K ###T
%TMf###J#99jR. #@##U
'Uq##
##@NZ###@U#KE#]f#d{eB^{#n5W(>_WNV*^!
Y@~#\1*_]=3u#H!######C##@##g&);# #b#b(q###@#j_|
[#<s[#\O##
1k##6|

/Ix##U_$##?m
i <UBI!P#+I O>}V(#u#?
~=rR"ez*w!!nt#2(####-CGV#t

$g#[Z8rZ$SNys#(N@XH2#%#tuN1x#u49~I[x)##6!
\
#\
\
t::#Df1$r2#r#j#Xl:3]#J#h#:_z @Dj_K#M#`'PUN|
#D}KT. #P=O#!2# >:{5yE##H7Fl#x. lZk#E_Hv8#L#tl-?
7#e#. #7]#g#A|#R~]+q-# ###lN#9
###### 'GE###@`s#U@####@#99B-R##@###@N6#### p###j2@####ry####
###@NP!}S


TR
#
][V$
#x
[&yF#99[oS^u~#McuE;abISZ8}#(

J#Q^Yxga##HWJ5 B`##FO#E#x;V#N[W6#^+
m$2P

#dww'#xx)Rm#go#Fv:#o{?Y%S#@N#_##Y=;tw5#eEO:!
uBq+<vkR#B{n)#&R#wII#l:###@N6##C
^]#1~#%x![K
4#ZE#CW'%##IM}RY)u#k#*:#kI-)

<~_#XD##)_:dx7v [$#@`#jM#r{{SrkC#Q]VN?qA;e#
%&#orey
grP)D1HNNC6!
##_#R#N;-0~YZ`d$7#v*f#8#YQaw#(h
kG#'#5XTNw:CN=>G'fc3Ylu^O
Wa*tj *[S)uW4#
#B#MJ`7EO&^{G-l`f m)T#I#l4Q#crb1|||||
I#7f#_##Yt~f#
E#1p3#70}[#'#X6G#

e Q}$uY5OO
#]|Lv'=Mlk

#]rQk*s/:52'1?##p

d#1H
. Ya]_6Dsjl$#}wZ}nEtkLg##a'gGb#T~;#v#?r'
=#Og_GdukrW#A>{'`]#(E#~iPLvy&V,m6l:_3{m#z#
vs#j>A#adoU}-'1s5<y

%kl-6kb#$V#L|
|
|
_qDG+7#O#maF
]G#Et#{ft\a##5#\G!
iG###2f##/vhJ##&HPEu^]Bx##r
%##/4kim##S#4W:bB #rO#A}|kz#{dLs# G
l2#"SbLe##?
1nS#e#1$#gF#>vB##XL>xzf#NwXz##
e#~#6V# e
wU6-OR/##|oLjwv]1 q@Z#:sb#se[(
7F#5)imt#O#_1#8{g-x#'iJ
+R9eE#<-"iGfdJ#T}#(#K##~gf
&Jt
SV#^{R[ e## P#rR

% ####rr####@N## #3#@N\###@1#I18##
pf#kC###(F#9)#G###L#99sSv#@### 'P####
'g}###,"#/NN7&y\aRv#f
x;#V#f@6#9N:6#A#4`#Y(i"j##Rp`_+b)?}## !
@###w^m2#T6sF##,#@### '##@###(@#9)###### 4#f%### pt#I5
F+
#+#### #### ###@##yK#9#g#x o#~?
8dN{;2Mi#duw
b )##j}#gj #tgI#?
D8cG#M#99t#p/^W^E4DS1bPF?@

_%PS#jHS##v
9*:EbS6I6 _-99
m#'4JUo3M

#d=>}zSw
CB #n^6o ##i',`ORN|,}l/l[4r#|
3g/. GZ|g;$#YDy-w#F7F$G]l4#_
###R2#F'$6)#V6#3Hl[#[,\"7#:#7
"i
:eDz[];wW=###d#<h[{#=#H$#1###5Lq<hdsSk##
'Kv###NkhC#
#[61_J#>Q$#)P

YF#G D#i0@

R@K. ##o\##Pju *d#AR#O[I?4jBoBNb<#yK}2S-UR~d#9?


33-H/#CGK#:rtD#0. #xG#e's$~nDugA#|
;(hf#4Mn{D=#a#x##~T[
g/;jGH#/<*UC#yZD#4?OoE,/9= 'x"N##/PXD#G<#xL#j"#?yDF7##5t7j##?y1b82\6GN`l#ez[$#dGhq[K|KR[%!#
wH7XMk#]K##pgt{#^%[d#;b$#r##:
,yA#`###c~
~|Fx652ENO#~t. =L##Rom{
n#A#~<##)5z#IBX

-#9YL##*/Fy#[C#]/Q3W#?73b"PAWt##29V#mPtIiGJpI
3PU?'g,n~#N;o7;
%%
7"###Kgi8^"EQO{gT
"##X5^/#&e1#:3M6=#
#5#I/l
Y,
<iI#rKA#KI'ru. L>\Ui6t+d$u{+{V,F}yY
,RdBQ|>|p_~O
8my#:M(3T Fx2g65*gIymfTgjG@##(G s\x #r#t##
p<##A`##@cuCGN&7#@`#m ~!###4D#9i2####~ ']:?
3##a&5DCN S_?,*$#@-<#f#y_U0Qqv
I#km####Pd\@Gw,553?-rRRN2eYZ#8s2hSS#g#I
%#_:p#BN
N
4*'#k|

N
#

N
*3XG###Sjk'mT1#@###8#ANvp";$B<:Xv#_>d>;RB###@#@Nh

### P#rR#". ###@#9@###@##I###J#R$AN3*##F;!Prq;qg#wRW1

3#n4@$<. $B#9;##$)K'IWm*4[#V,G 5,##,*#


1O<##c#@`###a8agl##Pdh###%##&U#9c##d#j3f`FF#h@*0

\#rR99B###HE3@NN\####XcHozb\#DN>
[m ~U|
"eC pl#kO##\A`j##q255#uo ;?
#gi#/<h>7Ob. #$Uys^S!%v!
;)I#z###M
" 3 /s6G
7xd#ox&K{^~mxG4##EiGi/&#H#e\dr
#+Y #' ^
##X##i##Pd!-{ES[/Q##w :nua?|
#7[L#&l$#O>}#y)SLzfKPWbIx]HBVb!7;
_+i)?}#rb3K#(|5S=F##o
e8$Oe F'%

:/#J-{7#Nr KxqrL%##6$}/=YG

#*D]#h#y6GrJI?#Z&#B #yuEo@
BN|EDW/bq)#FWY|#I"R. r##
&|D2+'#l # x =lbuLj#4jah?LzfK[!%v!
;)I#>)yGBMGO
K |F1# #Q#

P. #K5j0Zag6WMn$g}&7###SjP#Y#,#\!?5'4>H;@###`(-%WN#n#G#
XRg<#]a~N^;chHZ#@7PAr##"#?5##

`SV##X9 ~{z'# #
WN#~R#=Ej#H{>'#5o#Z
#A###XBr#i5T##H3X#rI0#i!##+'zEC##vh#`=#!#h
K,##)##/#u\A#e#y6:#B###8#mAEv#+^:^Io<|
t3G3^^#,uH##?
Z]r##s1*<T#@A#{oSj#ll##LT#OGN#[##[E
Y[g&#=d####f#6#rO9_##( csHS\(DIgG[[##3jPI?
GQ283r2-Y#`;2#<#aM|}

A###

#r#u##vB@OL
i#@=OU{ '{5b##*#$h9t%=#{##jNHW% J#Ko9#5r9rRQ# ;#
%
#=h$OhLK. O*Z#c##_#I

Sd,#Ex#y#d8||I####bk=]#2Zme}!y#JmF##hT/5

'_l m&n/#(#W#4'#$$>

xR"#c#hokB$F##$. #hP#1@/=~m1(W@##\{+dG3 *r-


r/L}g:c,#ooo-#XQtxi!T:##H#1#ok
S#5hujB
0x#k$E^xQ#-rR3T"#;N9V|
#{D1#=Nc6##*. F#TZY#j#1E6"4453#$#anz#_#+#
#Y|MT|#&a#}8+kJH]Il#U##<GJ6#_#9OSm^)[1
##oO#W43#M##H!#\#R33B#>]L##@#99C-#
IV
t^<

K#x99WSZe;#9'#:g^u~V#4#4U}~gF'gn###@1#NQJ #n#<##?
Hj?3# ##^G#VJs#l;ks)I^#'{)##Z!
%NtG&V#=bH7t{~\F6\y/}1Rq '##B##m#}#O
#@f~f~i9II0## #fqq}-IK zY X$N#h>M{#
####z|/),mH#&KB\##^'</xM#/<TZa_2:9rl###G#faVL"f4
%#\i#8vzOkW+=#N\a^4Ot2-q!j?
3rR2qo#M#r#<#=Y=3 C####4W%####@`#=#1C###h#r\### #=#@NXk

##@9#IsUB@###H#9c#3# ## 'U #A#####dF####4W


%####@`#=#1C###h#r\### #=#@NXk

##@9#IsUB@###H#9c#3# ## 'U #A#####dF#####+. #U$


<(JG\#W3+e## p

#rd1jR@####rq#=# #c#@NQ####+!
#####rrz####6&l\#d###@##c### 1#d
{#@## ##)## #
'#W#C###8###H) ###lL#9 1#####
'GJ###@`c#V#8v## #
d. }?_N/#9@###n#0 "P#@##-#@NZ#b## ##n@!
###L#9iv##n# '*### 2##r|

~#W####IENDB`!##D#d######################

#####################################0####
#########
#####

####A###################b##A!####n# v6,'pn*##!###########%##n##!##n#
v6,'pn*PNG
#
###IHDR##############3####sRGB#### IDATx^#8Eo###@@#!@####!@####!
@#j\G>ut$-d
#7
H@##t#o:Wz#$ #
C@i#H@###N#####$ #
LL@i#$ # H@i#H@###N#####$
#
LL@i#$ # H@i#H@###l^?8-#$ #hQ#"
H@##H^DCSUJ###&&L

Tw##$X#$ #

H`b#J@u'# H@#Ju@###&&L

Tw##$X#$ #

H`b#J@u'# H@#Ju@###&&L

Tw##$X#$ #

H`b#J@u'# H@#Ju@###&&L

Tw##$ZrUg]#^#>81r#Co#a'*#%e##!#m#dfg##sT6#mN H@#!
lL#$ #PZRRS##f#(-)*#*# H`+##-?|/9#05#X!
_{J
_Jj#s%?^a^L
GZO~=zf*t#?~{#B
###7s
{Cf#+##. :p+C#\W## #w#/^#WR<y$'S&H
#
\D\P\})#]cXbu#eUEAZP#j9]i#
_)#^AB#mG##/VRJ##PB=N'@m#
^qtM#. #cb\>}n##AZc#gXI#R}(#Fa</fpuo2R
b#. v#)##>(T_#[}#2v #=#&5y<#MdL#`8###
s
j,\D2
ie,7g
#!7+YL#d[# *
|U|b#m>3 <qc#$ #(-6"

H@#G!#

#$ #(-6"
H@#G!#

#$ #(-6"

H@#G!#

#$ #(-6"
H@#G!#

#$ #(DmY5#U#J#d,##e,AK`w#\ClwEx,|#5#@z_ SiYMxB#S
Jq#LI#qQ#|: $ '#$#
#&
# `e#sc6o8
##|)_j[9l<###|
10#O<{~0?u' >#~9*@O{-+|/"#$##>##O<d;=#_|
#?~p

<#J0O%!#L#Y
%#s1ed,K#sc#####Sv#{#kI#7O#{y79##g1#6H4 q
u(#]H|B#a?w##'s#q0N18#)#]m###%a#&# #c 8$. #)
#c#^f)TtR`sa#/^tkl6v##[*'1RTo #%KO$
#\B&#E[#l2O
=Wi. l\~{b& b7l V;tF##PDnh#L[$$,
1"yd0"#OX)#s#oiJ/0N'MR<61O(##3#f$q~)$ 'f#nu::. u[#
rZ. KfLxc4~#\I|*y8#ke|fk(U!
##(#mwLM}e'7}tLD##hr#"{&7##*PM##iI
#UC\^#qPc;w6#r##0)B#o#X. KYi9M#]i#yc4I,d+. H#
r\K!]!g##b

p#yHyg\"[#Mv2h#fyT%~2@q-3@####='3 %$3L#Y###n##3l#2
+R#qXva,<HUxL}`;SI#p =

n*Qd#xI6#PZ9\3\c##1#s{hO3)#h#'sh#$
o#oZD_kI+F
s##OR!#!#Bi#iD#oV8(y`#I#Wnc/A|
{#;Rgr86#DiYcqm4#4e. aOZ&#fZPd
hH*#vHo#AN)LdAS|]:[y###$#<<>pp$Ak3p_B%!
#=<S3
f DS+|/u61j+
j#DK#\#l2e]*#WlOZB7o<$T#(pt#M~0o#ns~&&#e#bv#dhNo
O#i#w'3H
F2RK#PY'#oImBuZ2#DN #
:7#z#+#LVWic 3`wLFs~3{mwEs3zOtJKgKRP]&R1
7FmEpP#`rim8 x
,vV*d1U6>J^~aO\+bn###k:7#mrY}nJKr0,#Q#8#Si9J/. ?#Y=+0
6#6J]*Q"mG3C>+{-]f`
s\qm>}x##DH`1#ev####Y>"##~<+-co##vJ@iiZ- H@##
1K@##)#e#k$ # r?,# H`###$p?#J##$###j E. |
##rT/^J^n#tS#X;n#W@7i0_. ### DJDm>UXm,8
#
+wV##Ts(M#X`Xe. #$pX#JaK@##2#YJ@##8,#Eo% #
E@i~% #
#r 7 ##"EVs#x]bym p#u s
l2#c
###
k#e&##PZ#X2{'#
/
U
Cz# !f7<~'
#v>n#<

p#sR#:6WZ##&P#={{#:<z

7 t#9+8A/_
!C<<{

oz#BD1I#n#<xoW6

}v#'##54]Z9uCS=#lZp# 1#

#c#M|0e0L###19#dCI&8*J N

X'WraS[
. L4:E0M#M#|6#####~#=L#nM&KIz`@t. #87=*b

$F#bQZVYgMT5###J#$$}#6Zvt#C#r#K?cHF
JV8#LzKv=Y#JWL9,

##u#+a($4lT+IGiP<{F(D/#26m )X-;(Ta*S0z'tU"j

fK#W#j
/#M##i#a##e
>z

<D>AY#d#iq@hy##tS##tRf#(SG#g#~d##vC

+JwTZ:
9\!NTay#dM#fkK ##<+~#cT9ZF)2#

IWViv1* q}Nda4#ajn)9f1m=g#T#j#}]#?
e##cP
*de+ 8]*92#l{ op#&V#aYk8#-eF |#2>V
#0t_VG#*#+<#fi#6S#
#
&4. 9i9"-#H#e#9ATz`\,#
#
()
"i]gy#pMK:oK

R^$T$$$#u

e@5#9X
ak
A H@ii#`#Y#uni##YZYN. v##b#A
kA
ec@ud~WKrZU
ve&,i3f#r%rQe#Y #i#8!##ncq
}_;c
>X-vA ?j#U7ERU#QIA&Z
_pcbyvi*#;E3SiySud#\Yfr($ aS+g%e
f,5O(LJD7
!m>3##d<\+Wk@#cg1#) Qdc!v3,

2)ro[YIi0y-gf####(-. 7zN#J@i9jo H@##PZfCc H@#G%##$


#(-#$ #PZ6SLgLM#vGkHJP+2r0L!
xw}e

A##//#|N5X #j<e
wb<A#N?#tMDSi^Z#Urze.
k#x9\##Ai9#e{2#]krdC#Wzi#o +z<(#oFg6#\TgeYb#$PMb#a#Z
u#PT*\i##$ #
#PZjIi'#
H@##JPI@##@-#v##$PI@i##$ #
#PZjIi'#
$PGC,>#9#

"#Z{eJ1m($c#,Se8#7#c7
z9m#eeV#QIa#Xpciyp_l#P} 65#6#[#$pO#ee#ag7# #
l@OlTr"0###(1##!# @WiJfyw{K@###8##g^z#
-)-{#_~}m#'>r##h#0>V04I#~cWO>=[?|
*
e#p^
|&*
*
V#QIa#Xpc#,

]|rJ
?%9L'##7gF#1 T%;<q9;#?###>
i/#I@#m#z6'
H#Y}o 2#PO>A#,y;##_##v>~X*##d#s#MJq5`[##h&#
q#'!`_I%#Z#
#4,b5+a#!,LFKrX)BJ@#s#
# |#
bWA
#D#i
K:1##b=]a
8#ob/
jd^$c#NLr#'-t#hg L1ruS#0FQ2mCwwX R##_fM#{%P#Fu)=?!v%7#K

E#+
4
Y ##<!LRo9&
aT>N6(#'{BW]#mxdP#T#QIa#Xpc# JK=4#,
+e}#\(#X*TYgt#:(###(#
#,
2

2 #n#l0"2E3c]@K@###Zpa <(|vKW#sAX##u#J?
##/^p7Z#[vb-##<\#\\N##88#T. 7%b-h0#>Z#}
#
H`#~mRGY]^a,si]#
#$#
?#J#M#6{#HD"~#am#&cX%

)#A!Hfk|5#I@##(#|##L36 $#

60q#

K&#0Y
Y
#

DlL#C#4C&d#>8Izt"### 't?E&Z$<TP_GI"7#ki0([7(S#K`qa AkKp##][#Ck

#,

2 8H@# `Tnn?#ZV]#:&N###V0#6JKs!. #poW2#Mx[>Y

\0d`A6#UE`^#Q#~o#m>k9xU4##'LT#.
#/gwx##]WU<x
x
>x
Z*--##&#
#
A
N#6f%6#GvRZUwM#$N#UJzY
#Y##>en:'1A#l8d:>#9#&VWZYM##jd#||
J2AuV#T'#d#jQL#a'<|)s7##yqV##bl>a#
RU
j#2y#R5<J#/5a##@*|ul. #x8,Yc#EZ#,##
f#G2i#2#>|0# i@fzvT6

#E

##F#m)r#])@

MO'#}ObW%|*5ik'J7z

;pI9KgS#57eT{ -Dk;
6 o4&#/;#pL P#

Ecp=U4s-~(*=\Tm#Y
XiVJ#cg: # I*;fh#d`?
Wv##5#Ctk(;#_C#NCDD*T#Oe25G#hie{w##Q'` #Fgd

t#K l~&#&?
[#Z}\#dem%bz!lD#4Gq^(#t#oy

#M
MNT/&@#7T###\Cj0#fL]#|%|#sT6Z#^#;#$0#syS^&8#JK5*% #
#*0]#?Lx#>t@keF#m]##w#_CW|[##N%0a#E 2#u1f?D
,1G_yh#LQ#|k/5-% #
@H##`Tq M^#OY$ # ##"qV

##$#y
#p;&f##
(Mo##=b##. KhN}#*-o##

d(#Z(##2>V:
JD#y@i P# e0

K#o 7 #lw@iW'm#pZm
#~\P

]z4i:3U#+5G#hT#f-#*eKLM@##sT6##*}
H@##PZgG H@##'##}
H@##PZgG H@##'##}
H@##PZgG H@##'##}
H@##PZgG
H@##'##}
H@##PZgG H@##'##}
H@##PZgG H@##'##}
H@##PZgG H@##'##}
H@##PZgG H@##'##}
H@##PZgG
H@##'##
,}5dtB#_qm#0]ZV$I@##@%6iq@#f##$PK@i
%#$ #
T#PZ*Ai&#
H@##ZRI@##@%##f##$PK@i%#$ # T#PZ*Ai&#
H@##ZRI@##@%##f##$PK@i%#$ # T#PZ*Ai&#
H@##ZRI@##@
%##f##$PK@i%#$ #
T#PZ*Ai&#
H@##F}6#$ #
H`##>/. -d% #
H`^##W###H@i9`e H@##PZw H@##$#>'NOK####IENDB`
2##D#d#####################
$g######################################>####
#########
#####

####A###########"#################b##{1####
7"H0ywI#W1##########%##n#O1##
7"H0ywIPNG
#
###
IHDR###g###)#####Yj#####sRGB####0IDATx^8G#J#J##(#J`J##(#J`J`J#3
8vH#Y:Wd[z#$ # H`#$##$ # C@i;#$ #
%Kt##$
#m@###$0^s. )I@#### H@##\#zL'#
H@##k#$ # H@#s 52#$ #
H@i##$ # %h##=z4#$ a
#5#$ 0@w r##$##fWP#
H@##^k#$ #
tE@9TF###&<*'# H@#]#kve##$
56I@##@W#]Ce$ # z
Hk#z
r#z

#$##fWP#
H@##^k#$ #
tE@9TF###&<*'# H@#]#kve##$
56I@##@W#]Ce. G_}
[V^e\,r]$ #:sAetf"o~#jT;#~~#%T%M/!Xf
9###M#?|0W##[dy2MF

#%=%qFV^Z)nW]%w#B[t#&-#k %)#p/^x#xO'D

O'p####%M`##I #m##T^&s, HR
Z%##dDg#*I<gIO2#8HSd#bp
xJ`|#{\#p#?~D
#fh$* #g}=cT##D#'+!%/)

Вам также может понравиться