From bc9258adfa082958cd2980d00cfc2be5a91b33d6 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Mon, 21 Mar 2011 13:21:27 +0000 Subject: [PATCH] Those files should not be here git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3293 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- www/scst_pg.html | 2208 --------------------- www/scst_pg.pdf | 4966 ---------------------------------------------- 2 files changed, 7174 deletions(-) delete mode 100644 www/scst_pg.html delete mode 100644 www/scst_pg.pdf diff --git a/www/scst_pg.html b/www/scst_pg.html deleted file mode 100644 index 1cb2b2791..000000000 --- a/www/scst_pg.html +++ /dev/null @@ -1,2208 +0,0 @@ - - - - - Generic SCSI Target Middle Level for Linux - - -

Generic SCSI Target Middle Level for Linux

- -

Vladislav Bolkhovitin

Version 0.9.5 2006/12/01, actual for SCST 0.9.5 and later -
-This document describes SCSI target mid-level for Linux (SCST), its -architecture and drivers from the driver writer's point of view. -
-

1. Introduction

- -

SCST is a SCSI target mid-level subsystem for Linux. It is designed to -provide unified, consistent interface between SCSI target drivers and -Linux kernel and simplify target drivers development as much as -possible. It has the following features:

-

-

-

-

Interoperability between SCST and local SCSI initiators (like sd, st) is -the additional issue that SCST is going to address (it is not -implemented yet). It is necessary, because local SCSI initiators can -change the state of the device, for example RESERVE the device, or some -of its parameters and that would be done behind SCST, which could lead -to various problems. Thus, RESERVE/RELEASE commands, locally generated -UNIT ATTENTIONs, etc. should be intercepted and processed as if local -SCSI initiators act as remote SCSI initiators connected to SCST. This -feature requires some the kernel modification. Since in the current -version it is not implemented, SCST and the target drivers are able to -work with any unpatched 2.4 kernel version.

-

Interface between SCST and the target drivers is based on work, done by -University of New Hampshire Interoperability Labs (UNH IOL).

-

All described below data structures and function could be found in -scst.h. The SCST's Internet page is -http://scst.sourceforge.net.

- -

2. Terms and Definitions

- -

SCSI initiator device

-

A SCSI device that originates service and task management requests to be -processed by a SCSI target device and receives device service and task -management responses from SCSI target devices.

-

Think of the 'SCSI LLDD' as a BE (Back End) driver.

-

SCSI target device

-

A SCSI device that receives device service and task management requests -for processing and sends device service and task management responses -to SCSI initiator devices or drivers.

-

Think of the 'Target Driver' as an FE (Front End) driver.

-

The FE driver interfaces to the initiators (via the -storage-fabric-cloud) and also to the upper edge of the SCST. Whereas -the BE driver interfaces to the targets, i.e. disk-enclosures/JBODs/tapes etc. -and also to the bottom edge of the SCST.

-

SCST session

-

SCST session is the object that describes relationship between a remote -initiator and SCST via a target driver. All the commands from the remote -initiator is passed to SCST in the session. For example, for connection -oriented protocols, like iSCSI, SCST session could be mapped to the TCP -connection (as well as iSCSI session). SCST session is the close -equivalent of I_T nexus object.

-

Local SCSI initiator

-

A SCSI initiator that is located on the same host as SCST subsystem. -Examples are sg and st drivers.

-

Remote SCSI initiator

-

A SCSI initiator that is located on the remote host for SCST subsystem -and makes client connections to SCST via SCSI target drivers.

-

SCSI target driver

-

A Linux hardware or logical driver that acts as a SCSI target for remote -SCSI initiators, i.e. accepts remote connections, passes incoming SCSI -requests to SCST and sends SCSI responses from SCST back to their -originators.

-

Device handler driver

-

Also known as "device type specific driver" or "dev handler", is plugin -for SCST, which helps SCST to analyze incoming requests and determine -parameters, specific to various types of devices as well as perform some -processing. See appropriate section for details.

- -

3. SCST Architecture

- -

-SCST accepts commands and passes them to SCSI mid-level at the same -way as SCSI high-level drivers (sg, sd, st) do. Figure 1 shows -interaction between SCST, its drivers and Linux SCSI subsystem.

-

-

- - -
Interaction between SCST, its drivers and Linux SCSI subsystem. -
-

- -

4. Target driver registration

- -

To work with SCST a target driver must register its template in SCST by -calling scst_register_target_template(). The template lets SCST know the -target driver's entry points. It is defined as the following:

- -

4.1 Structure scst_tgt_template -

- -

-

-struct scst_tgt_template 
-{
-        int sg_tablesize;
-        const char name[15];
-
-        unsigned unchecked_isa_dma:1;
-        unsigned use_clustering:1;
-
-        unsigned xmit_response_atomic:1; 
-        unsigned rdy_to_xfer_atomic:1;
-        unsigned report_aen_atomic:1;
-
-        int (* detect) (struct scst_tgt_template *tgt_template);
-        int (* release)(struct scst_tgt *tgt);
-
-        int (* xmit_response)(struct scst_cmd *cmd);
-        int (* rdy_to_xfer)(struct scst_cmd *cmd);
-        
-        void (*on_free_cmd) (struct scst_cmd *cmd);
-
-        void (* task_mgmt_fn_done)(struct scst_mgmt_cmd *mgmt_cmd);
-        void (* report_aen)(int mgmt_fn, const uint8_t *lun, int lun_len);
-        
-        int (*proc_info) (char *buffer, char **start, off_t offset,
-                int length, int *eof, struct scst_tgt *tgt, int inout);
-}
-
-

-

Where:

-

-

-

-

Functions xmit_response(), rdy_to_xfer() are expected to be -non-blocking, i.e. return immediately and don't wait for actual data -transfer to finish. Blocking in such command could negatively impact on -overall system performance. If blocking is necessary, it is worth to -consider creating dedicated thread(s) in target driver, to which the -commands would be passed and which would perform blocking operations -instead of SCST. If the function allowed to sleep or not is defined by -"atomic" attribute of the cmd that can be get via -scst_cmd_atomic(), which is true, if sleeping is not allowed. In -this case, if the function requires sleeping, it can return -SCST_TGT_RES_NEED_THREAD_CTX in order to be recalled in the thread -context, where sleeping is allowed.

-

Functions task_mgmt_fn_done() and report_aen() are recommended -to be non-blocking as well. Blocking there will stop all management -processing for all target drivers in the system (there is only one -management thread in the system).

-

Functions xmit_response(), rdy_to_xfer() and report_aen() -can return the following error codes:

-

-

-

- -

More about xmit_response()

- -

-As already written above, function xmit_response() should transmit -the response data and the status from the cmd parameter. Either it -should transmit the data or the status is defined by bits of the value, -returned by scst_cmd_get_tgt_resp_flags(). They are:

-

-

-

-

If SCST_TSC_FLAG_DATA is set, the data contained in the buffer, -returned by scst_cmd_get_buffer() (pay attention to -scst_cmd_get_use_sg() for scatter/gather) with length, returned by -scst_cmd_get_resp_data_len(). It is recommended to use -scst_get_buf_*()scst_put_buf()/ family of function instead of -direct access to the data buffers, because they hide all HIGHMEM and -SG/plain buffer issues.

-

If SCST_TSC_FLAG_STATUS is set the status could be received by the -appropriate scst_cmd_get_*_status() functions (see below).

-

The sense, if any, is contained in the buffer, returned by -scst_cmd_get_sense_buffer(), with length, returned by -scst_cmd_get_sense_buffer_len(). SCST always works in -autosense mode. If a low-level SCSI driver/device doesn't support -autosense mode, SCST will issue REQUEST SENSE command, if necessary. -Thus, if CHECK CONDITION established, target driver will always see -sense in the sense buffer and isn't required to request the sense -manually.

-

It is possible, that SCST_TSC_FLAG_DATA is set, but -SCST_TSC_FLAG_STATUS is not set. In this case the driver should -only transmit the data, but not finish the command and transmit the -status. Function xmit_response() will be called again either to -transmit the status or data once more.

-

After the response is completely sent, the target should call -scst_tgt_cmd_done() function in order to allow SCST to free the -command.

-

Function xmit_response() returns one of the SCST_TGT_RES_* -constants, described above. Pay attention to "atomic" attribute of the -cmd, which can be get via scst_cmd_atomic(): it is true if the -function called in the atomic (non-sleeping) context.

- -

4.2 Target driver registration functions -

- -

scst_register_target_template()

- -

Function scst_register_target_template() is defined as the following:

-

-

-int scst_register_target_template(
-        struct scst_tgt_template *vtt)
-
-

-

Where:

-

-

-

-

Returns 0 on success or appropriate error code otherwise.

- -

scst_register()

- -

Function scst_register() is defined as the following:

-

-

-struct scst_tgt *scst_register(
-        struct scst_tgt_template *vtt)
-
-

-

Where:

-

-

-

-

Returns target structure based on template vtt or NULL in case of error.

- -

5. Target driver unregistration

- -

In order to unregister itself target driver should at first call -scst_unregister() for all its adapters and then call -scst_unregister_target_template() for its template.

- -

5.1 scst_unregister() -

- -

Function scst_unregister() is defined as the following:

-

-

-void scst_unregister(
-        struct scst_tgt *tgt)
-
-

-

Where:

-

-

-

- -

5.2 scst_unregister_target_template() -

- -

Function scst_unregister_target_template() is defined as the following:

-

-

-void scst_unregister_target_template(
-        struct scst_tgt_template *vtt)
-
-

-

Where:

-

-

-

- -

6. SCST session registration

- -

When target driver determines that it needs to create new SCST session -(for example, by receiving new TCP connection), it should call -scst_register_session(), that is defined as the following:

-

-

-struct scst_session *scst_register_session(
-        struct scst_tgt *tgt,
-        int atomic,
-        const char *initiator_name,
-        void *data,
-        void (*result_fn) (
-                struct scst_session *sess,
-                void *data, 
-                int result));
-
-

-

Where:

-

-

-

-

A session creation and initialization is a complex task, which requires -sleeping state, so it can't be fully done in interrupt context. -Therefore the "bottom half" of it, if scst_register_session() is -called from atomic context, will be done in SCST thread context. In this -case scst_register_session() will return not completely initialized -session, but the target driver can supply commands to this session via -scst_rx_cmd(). Those commands processing will be delayed inside -SCST until the session initialization is finished, then their processing -will be restarted. The target driver will be notified about finish of -the session initialization by function result_fn(). On success the -target driver could do nothing, but if the initialization fails, the -target driver must ensure that no more new commands being sent or will -be sent to SCST after result_fn() returns. All already sent to SCST -commands for failed session will be returned in xmit_response() -with BUSY status. In case of failure the driver shall call -scst_unregister_session() inside result_fn(), it will NOT be -called automatically. Thus, scst_register_session() can be called -even on IRQ context.

-

Session registration is illustrated on Figure 2 and Figure 3.

-

-

- - -
Session registration when atomic parameter is false -
-

-

-

- - -
Session registration when atomic parameter is true -
-

- -

7. SCST session unregistration

- -

SCST session unregistration basically is the same, except that instead of -atomic parameter there is wait one.

-

-

-void scst_unregister_session(
-        struct scst_session *sess, 
-        int wait,
-        void (* unreg_done_fn)(
-                struct scst_session *sess))
-
-

-

Where:

-

-

-

-

All outstanding commands will be finished regularly. After -scst_unregister_session() returned no new commands must be sent to -SCST via scst_rx_cmd(). Also, the caller must ensure that no -scst_rx_cmd() or scst_rx_mgmt_fn_*() is called in parallel -with scst_unregister_session().

-

Function scst_unregister_session() can be called before -result_fn() of scst_register_session() called, i.e. during the -session registration/initialization.

- -

8. The commands processing and interaction between SCST and its drivers

- -

The commands processing by SCST started when target driver calls -scst_rx_cmd(). This function returns SCST's command. Then the target -driver finishes the command's initialization, if necessary, for -example, storing necessary target driver specific data there, and calls -scst_cmd_init_done() telling SCST that it can start the processing. -Then SCST translates the command's LUN to local device, determines the -command's data direction and required data buffer size by calling -appropriate device handler's parse() function. Then:

-

-

-

-

When the command is finished by SCSI mid-level, device handler's -dev_done() is called to notify it about the command's -completion. Then in order to send the response the target's -xmit_response() is called. When the response, including data, if -any, is transmitted, the target will call scst_tgt_cmd_done() -telling SCST that it can free the command and its data buffer.

-

Then during the command's deallocation device handler's and the target's -on_free_cmd() will be called in this order, if set.

-

This sequence is illustrated on Figure 4. To simplify the picture, sign -"..." means SCST's waiting state for the corresponding command to -complete. During this state SCST and its drivers continue processing of -other commands, if there are any. One way arrow, for example to -xmit_response(), means that after this function returns, nothing -valuable for the current command will be done and SCST goes sleeping or -to the next command processing until corresponding event happens.

-

-

- - -
The commands processing flow -
-

-

Additionally, before calling scst_cmd_init_done() the target driver can -set the following the command's flags or parameters:

-

-

-

- -

8.1 The commands processing functions -

- -

scst_rx_cmd()

- -

Function scst_rx_cmd() creates and sends new command to SCST. Returns -the command on success or NULL otherwise. It is defined as the -following:

-

-

-struct scst_cmd *scst_rx_cmd(
-        struct scst_session *sess, 
-        const uint8_t *lun, 
-        int lun_len,
-        const uint8_t *cdb, 
-        int cdb_len, 
-        int atomic)
-
-

-

Where:

-

-

-

- -

scst_cmd_init_done()

- -

Function scst_cmd_init_done() notifies SCST that the driver finished -its part of the command initialization, and the command is ready for -execution. It is defined as the following:

-

-

-void scst_cmd_init_done(
-        struct scst_cmd *cmd, 
-        int pref_context)
-
-

-

Where:

-

-

-

- -

scst_rx_data()

- -

Function scst_rx_data() notifies SCST that the driver received all -the necessary data and the command is ready for further processing. It -is defined as the following:

-

-

-void scst_rx_data(
-        struct scst_cmd *cmd, 
-        int status,
-        int pref_context)
-
-

-

Where:

-

-

-

-

Parameter status can have one of the following values:

-

-

-

- -

scst_tgt_cmd_done()

- -

Function scst_tgt_cmd_done() notifies SCST that the driver sent the -data and/or response. It must not been called if there are an error and -xmit_response() returned something other, than -SCST_TGT_RES_SUCCESS. It is defined as the following:

-

-

-void scst_tgt_cmd_done(
-        struct scst_cmd *cmd)
-
-

-

Where: -

-

- -

8.2 The commands processing context -

- -

Execution context often is a major problem in the kernel drivers -development, because many contexts, like IRQ one, greatly limit -available functionality, therefore require additional complex code in -order to pass processing to more simple context. SCST does its best to -undertake most of the context handling.

-

On the initialization time SCST creates for internal command processing -as many threads as there are processors in the system or specified by -user via scst_threads module parameter. Similarly, as many tasklets -created as there are processors in the system.

-

Each command can be processed in one of four contexts:

-

-

    -
  1. Directly, i.e. in the caller's context, without limitations
  2. -
  3. Directly atomically, i.e. with sleeping forbidden
  4. -
  5. In the SCST's internal per processor or per session thread
  6. -
  7. In the SCST's per processor tasklet
  8. -
-

-

The target driver sets this context as pref_context parameter for -scst_cmd_init_done() and scst_rx_data(). Additionally, target's -template's xmit_response_atomic and rdy_to_xfer_atomic flags -have direct influence on the context. If one of them is false, the -corresponding function will never be called in the atomic context and, -if necessary, the command will be rescheduled to one of the SCST's -threads.

-

SCST in some circumstances can change preferred context to less -restrictive one, for example, for large data buffer allocation, if -there is not enough GFP_ATOMIC memory.

- -

Preferred context constants

- -

There are the following preferred context constants:

-

-

-

- -

9. Task management functions

- -

There are the following task management functions supported:

-

-

-

- -

9.1 scst_rx_mgmt_fn_tag() -

- -

Function scst_rx_mgmt_fn_tag() tells SCST to perform the specified -task management function, based on the command's tag. Can be used only -for SCST_ABORT_TASK.

-

It is defined as the following:

-

-

-int scst_rx_mgmt_fn_tag(
-        struct scst_session *sess, 
-        int fn, 
-        uint32_t tag,
-        int atomic, 
-        void *tgt_specific)
-
-

-

Where:

-

-

-

-

Returns 0 if the command was successfully created and scheduled for -execution, error code otherwise. On success, the completion status of -the command will be reported asynchronously via task_mgmt_fn_done() -driver's callback.

- -

9.2 scst_rx_mgmt_fn_lun() -

- -

Function scst_rx_mgmt_fn_lun() tells SCST to perform the specified -task management function, based on the LUN. Currently it can be used for -any function, except SCST_ABORT_TASK.

-

It is defined as the following:

-

-

-int scst_rx_mgmt_fn_lun(
-        struct scst_session *sess, 
-        int fn,
-        const uint8_t *lun, 
-        int lun_len,
-        int atomic, 
-        void *tgt_specific);
-
-

-

Where:

-

-

-

-

Returns 0 if the command was successfully created and scheduled for -execution, error code otherwise. On success, the completion status of -the command will be reported asynchronously via task_mgmt_fn_done() -driver's callback.

- -

10. Device specific drivers (device handlers)

- -

Device specific drivers are plugins for SCST, which help SCST to analyze -incoming requests and determine parameters, specific to various types -of devices. Device handlers are intended for the following:

-

-

-

-

Device handlers performs very lightweight processing and therefore -should not considerably affect performance or CPU load. They are -considered to be part of SCST, so they could directly access any fields -in SCST's structures as well as use the corresponding functions.

-

Without appropriate device handler SCST hides devices of this type from -remote initiators and returns HARDWARE ERROR sense data to any -requests to them.

- -

10.1 Device specific driver registration -

- -

scst_register_dev_driver()

- -

To work with SCST a device specific driver must register itself in SCST by -calling scst_register_dev_driver(). It is defined as the following:

-

-

-int scst_register_dev_driver(
-        struct scst_dev_type *dev_type)
-
-

-

Where:

-

-

-

-

The function returns 0 on success or appropriate error code otherwise.

- -

Structure scst_dev_type

- -

Structure scst_dev_type is defined as the following:

-

-

-struct scst_dev_type
-{
-        char name[15];
-        int type;
- 
-        unsigned parse_atomic:1;
-        unsigned exec_atomic:1;
-        unsigned dev_done_atomic:1;
-        
-        int (*init) (struct scst_dev_type *dev_type);
-        void (*release) (struct scst_dev_type *dev_type);
- 
-        int (*attach) (struct scst_device *dev);
-        void (*detach) (struct scst_device *dev);
- 
-        int (*attach_tgt) (struct scst_tgt_device *tgt_dev);
-        void (*detach_tgt) (struct scst_tgt_device *tgt_dev);
- 
-        int (*parse) (struct scst_cmd *cmd);
-        int (*exec) (struct scst_cmd *cmd, 
-                void (*scst_cmd_done)(struct scsi_cmnd *cmd, int next_state));
-        int (*dev_done) (struct scst_cmd *cmd);
-        int (*task_mgmt_fn) (struct scst_mgmt_cmd *mgmt_cmd, 
-                struct scst_tgt_dev *tgt_dev, struct scst_cmd *cmd_to_abort);
-        int (*on_free_cmd) (struct scst_cmd *cmd);
-        
-        int (*proc_info) (char *buffer, char **start, off_t offset,
-                int length, int *eof, struct scst_dev_type *dev_type,
-                int inout)
- 
-        struct module *module;
-}
-
-

-

Where:

-

-

-

-

Structure scst_info_cdb is defined as the following:

-

-

-struct scst_info_cdb
-{
-        enum scst_cdb_flags flags;
-        scst_data_direction direction;
-        unsigned int transfer_len;
-        unsigned short cdb_len;
-        const char *op_name;
-}
-
-

-

Where:

-

-

-

-

Field cmd->data_direction, set by parse(), can have one of the -following values:

-

-

-

- -

10.2 Device specific driver unregistration -

- -

Device specific driver is unregistered by calling -scst_unregister_dev_driver(). It is defined as the following:

-

-

-void scst_unregister_dev_driver(
-        struct scst_dev_type *dev_type)
-
-

-

Where:

-

-

-

- -

11. SCST commands' states

- -

-There are the following states, which a SCST command passes through -during execution and which could be returned by device handler's -parse() and dev_done() (but not all states are allowed to be -returned):

-

-

-

- -

12. SCST's structures manipulation functions

- -

Target drivers must not directly access any fields in SCST's structures, -they must use only described below functions.

- -

12.1 SCST target driver manipulation functions -

- -

scst_tgt_get_tgt_specific() and scst_tgt_set_tgt_specific()

- -

-Function scst_tgt_get_tgt_specific() returns pointer to the target -driver specific data, set by scst_tgt_set_tgt_specific(). It is -defined as the following:

-

-

-void *scst_tgt_get_tgt_specific(
-        struct scst_tgt *tgt)
-
-

-

Function scst_tgt_set_tgt_specific() stores the target driver -specific data that could be retrieved later by -byscst_tgt_get_tgt_specific(). It is defined as the following:

-

-

-void scst_tgt_set_tgt_specific(
-        struct scst_tgt *tgt,
-        void *val)
-
-

-

Where:

-

-

-

- -

12.2 SCST session manipulation functions -

- -

scst_sess_get_tgt_specific() and scst_sess_set_tgt_specific()

- -

Function scst_sess_get_tgt_specific() returns pointer to the target -driver specific data, set by scst_sess_set_tgt_specific(). It is -defined as the following:

-

-

-void *scst_sess_get_tgt_specific(
-        struct scst_session *sess)
-
-

-

Function scst_sess_set_tgt_specific() stores the target driver -specific data that could be retrieved later by -byscst_sess_get_tgt_specific(). It is defined as the following:

-

-

-void scst_sess_set_tgt_specific(
-        struct scst_session *sess,
-        void *val)
-
-

-

Where:

-

-

-

- -

12.3 SCST command manipulation functions -

- -

scst_cmd_atomic()

- -

Function scst_cmd_atomic() returns true if the command is -being executed in the atomic context or false otherwise. It is defined -as the following:

-

-

-int scst_cmd_atomic(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_session()

- -

Function scst_cmd_get_session() returns the command's session. It -is defined as the following:

-

-

-struct scst_session *scst_cmd_get_session(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_resp_data_len()

- -

Function scst_cmd_get_resp_data_len() returns the command's -response data length. It is defined as the following:

-

-

-unsigned int scst_cmd_get_resp_data_len(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_tgt_resp_flags()

- -

Function scst_cmd_get_tgt_resp_flags() returns the command's -response data response flags (SCST_TSC_FLAG_* constants). It is defined -as the following:

-

-

-int scst_cmd_get_tgt_resp_flags(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_buffer()

- -

Function scst_cmd_get_buffer() returns the command's data buffer. -It is defined as the following:

-

-

-void *scst_cmd_get_buffer(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

-

It is recommended to use scst_get_buf_*()scst_put_buf()/ family of -function instead of direct access to the data buffers, because they hide -all HIGHMEM and SG/plain buffer issues.

- -

scst_cmd_get_bufflen()

- -

Function scst_cmd_get_bufflen() returns the command's data buffer -length. It is defined as the following:

-

-

-unsigned int scst_cmd_get_bufflen(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

-

It is recommended to use scst_get_buf_*()scst_put_buf()/ family of -function instead of direct access to the data buffers, because they hide -all HIGHMEM and SG/plain buffer issues.

- -

scst_cmd_get_use_sg()

- -

Function scst_cmd_get_use_sg() returns the command's use_sg -value. Its meaning is the same as for scsi_cmnd. The function is -defined as the following:

-

-

-unsigned short scst_cmd_get_use_sg(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

-

It is recommended to use scst_get_buf_*()scst_put_buf()/ family of -function instead of direct access to the data buffers, because they hide -all HIGHMEM and SG/plain buffer issues.

- -

scst_cmd_get_data_direction()

- -

Function scst_cmd_get_data_direction() returns the command's data -direction (SCST_DATA_* constants). It is defined as the following:

-

-

-scst_data_direction scst_cmd_get_data_direction(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_status()

- -

Functions scst_cmd_get_status() returns the status byte from -host device. It is defined as the following:

-

-

-uint8_t scst_cmd_get_status(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_masked_status()

- -

Functions scst_cmd_get_masked_status() returns the status byte set -from host device by status_byte(). It is defined as the following:

-

-

-uint8_t scst_cmd_get_masked_status(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_msg_status()

- -

Functions scst_cmd_get_msg_status() returns the status from host -adapter itself. It is defined as the following:

-

-

-uint8_t scst_cmd_get_msg_status(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_host_status()

- -

Functions scst_cmd_get_host_status() returns the status set by -low-level driver to indicate its status. It is defined as the following:

-

-

-uint16_t scst_cmd_get_host_status(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_driver_status()

- -

Functions scst_cmd_get_driver_status() returns the status set by -SCSI mid-level. It is defined as the following:

-

-

-uint16_t scst_cmd_get_driver_status(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_sense_buffer()

- -

Functions scst_cmd_get_sense_buffer() returns pointer to the sense -buffer. It is defined as the following:

-

-

-uint8_t *scst_cmd_get_sense_buffer(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_sense_buffer_len()

- -

Functions scst_cmd_get_sense_buffer_len() returns the sense buffer -length. It is defined as the following:

-

-

-int scst_cmd_get_sense_buffer_len(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_tag() and scst_cmd_set_tag()

- -

Function scst_cmd_get_tag() returns the command's tag, set by -scst_cmd_set_tag(). It is defined as the following:

-

-

-uint32_t scst_cmd_get_tag(
-        struct scst_cmd *cmd)
-
-

-

Function scst_cmd_set_tag() sets command's tag that could be -retrieved later by scst_cmd_get_tag(). It is defined as the -following:

-

-

-void scst_cmd_set_tag(
-        struct scst_cmd *cmd,
-        uint32_t tag)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_tgt_specific() and scst_cmd_get_tgt_specific_lock()

- -

Functions scst_cmd_get_tgt_specific() and -scst_cmd_get_tgt_specific_lock() return pointer to the target -driver specific data, set by scst_cmd_set_tgt_specific() or -scst_cmd_set_tgt_specific_lock(). Both function are basically the -same, but the later one additionally takes lock, which helps to prevent -some races. See scst_find_cmd() below for details.

-

They are defined as the following:

-

-

-void *scst_cmd_get_tgt_specific(
-        struct scst_cmd *cmd)
-
-

-

-

-void *scst_cmd_get_tgt_specific_lock(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_set_tgt_specific() and scst_cmd_set_tgt_specific_lock()

- -

Functions scst_cmd_set_tgt_specific() and -scst_cmd_set_tgt_specific_lock() store the target driver specific -data, that could be retrieved later by scst_cmd_get_tgt_specific() -or scst_cmd_get_tgt_specific_lock(). Both function are basically -the same, but the later one additionally takes lock, which helps to -prevent some races. See scst_find_cmd() below for details.

-

They are defined as the following:

-

-

-void *scst_cmd_set_tgt_specific(
-        struct scst_cmd *cmd,
-        void *val)
-
-

-

-

-void *scst_cmd_set_tgt_specific_lock(
-        struct scst_cmd *cmd,
-        void *val)
-
-

-

Where:

-

-

-

- -

scst_cmd_get_data_buff_alloced() and scst_cmd_set_data_buff_alloced()

- -

Function scst_cmd_get_data_buff_alloced() returns the state of the -SCST_CMD_DATA_BUF_ALLOCED flag. It is defined as the following:

-

-

-int scst_cmd_get_data_buff_alloced(
-        struct scst_cmd *cmd)
-
-

-

Function scst_cmd_set_data_buff_alloced() tells SCST that the data -buffer is alloced by target driver or device handler by setting the -SCST_CMD_DATA_BUF_ALLOCED flag on. Could be useful, for instance, -for iSCSI unsolicited data. It is defined as the following:

-

-

-void scst_cmd_set_data_buff_alloced(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_cmd_set_expected(), scst_cmd_is_expected_set(),scst_cmd_get_expected_data_direction() and scst_cmd_get_expected_transfer_len()

- -

Function scst_cmd_set_expected() tells SCST expected data transfer -direction and its length, as supplied by remote initiator. It is defined -as the following:

-

-

-void scst_cmd_set_expected(
-        struct scst_cmd *cmd,
-        scst_data_direction expected_data_direction,
-        unsigned int expected_transfer_len)
-
-

-

Function scst_cmd_is_expected_set() returns true, if the expected -values were set by target driver and false otherwise. It is defined as -the following:

-

-

-int scst_cmd_is_expected_set(
-        struct scst_cmd *cmd)
-
-

-

Function scst_cmd_get_expected_data_direction() returns expected -data direction set by target driver, if any. If this value was not set, -the return value is undefined. It is defined as the following:

-

-

-scst_data_direction scst_cmd_get_expected_data_direction(
-        struct scst_cmd *cmd)
-
-

-

Function scst_cmd_get_expected_transfer_len() returns expected -transfer length set by target driver, if any. If this value was not set, -the return value is undefined. It is defined as the following:

-

-

-unsigned int scst_cmd_get_expected_transfer_len(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

scst_get_buf_first(), scst_get_buf_next(),scst_put_buf() and scst_get_buf_count()

- -

These functions are designed to simplify and unify access to the -commands data (SG vector or plain data buffer) in all possible -conditions, including HIGHMEM environment, and should be used instead of -direct access.

-

Function scst_get_buf_first() starts access to the data. It is defined -as the following:

-

-

-int scst_get_buf_first(
-        struct scst_cmd *cmd, 
-        uint8_t **buf)
-
-

-

Where:

-

-

-

-

Returns the length of the chunk of data for success, 0 for the end of -data, negative error code otherwise.

-

Function scst_get_buf_next() continues access to the data. It is defined -as the following:

-

-

-int scst_get_buf_next(
-        struct scst_cmd *cmd, 
-        uint8_t **buf)
-
-

-

Where:

-

-

-

-

Returns the length of the chunk of data for success, 0 for the end of -data, negative error code otherwise.

-

Function scst_put_buf() tells SCST that the user of the chunk of -data, returned by scst_get_buf_first() or scst_get_buf_next(), -finished accessing the data. This function must be called for all chunks -of data, returned by scst_get_buf_first() or -scst_get_buf_next(). It is defined as the following:

-

-

-void scst_put_buf(
-        struct scst_cmd *cmd, 
-        uint8_t *buf)
-
-

-

Where:

-

-

-

-

Function scst_get_buf_count() returns the approximate higher -rounded count of data chunks that scst_get_buf_[first|next]() will -return. It is defined as the following:

-

-

-int scst_get_buf_count(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

- -

12.4 SCST task management commands manipulation functions -

- -

scst_mgmt_cmd_get_tgt_specific()

- -

Function scst_mgmt_cmd_get_tgt_specific() returns pointer to the -target driver specific data, set on call of scst_rx_mgmt_fn_tag() -or scst_rx_mgmt_fn_lun(). It is defined as the following:

-

-

-void *scst_mgmt_cmd_get_tgt_specific(
-        struct scst_mgmt_cmd *mcmd)
-
-

-

Where:

-

-

-

- -

scst_mgmt_cmd_get_status()

- -

Functions scst_mgmt_cmd_get_status() returns task management -command's completion status. It is defined as the following:

-

-

-void *scst_mgmt_cmd_get_status(
-        struct scst_mgmt_cmd *mcmd)
-
-

-

Where:

-

-

-

-

The following status values are possible:

-

-

-

- -

13. Miscellaneous functions

- -

13.1 scst_find_cmd_by_tag() -

- -

Function scst_find_cmd_by_tag() is designed to find SCST's command -based on the supplied tag comparing it with one that previously set by -scst_cmd_set_tag(). This value should be set by the target driver -on the command's initialization time.

-

It is defined as the following:

-

-

-struct scst_cmd *scst_find_cmd_by_tag(
-        struct scst_session *sess, 
-        uint32_t tag)
-
-

-

Where:

-

-

-

-

Returns found command or NULL otherwise.

- -

13.2 scst_find_cmd() -

- -

Function scst_find_cmd() is designed to find SCST's command. For example, -it can be used to find the command by internal serial number that was -supplied by a remote target's response.

-

It is defined as the following:

-

-

-struct scst_cmd *scst_find_cmd(
-        struct scst_session *sess, 
-        void *data, 
-        int (*cmp_fn)(struct scst_cmd *cmd, void *data))
-
-

-

Where:

-

-

-

-

Returns found command or NULL otherwise.

-

IMPORTANT

-

SCST is designed in a such way that any command is always processed only -by one thread at any time, so no locking is necessary. But there is one -exception from that rule, it is scst_find_cmd() function. Since it -calls the callback over all commands of the session in the internal -lists, despite of the command's current state, there is a race -possibility accessing to target specific data pointer between -scst_cmd_set_tgt_specific() caller and cmp_fn(), which usually -calls scst_cmd_get_tgt_specific() from the different context. The -only place, where it is safe to call scst_cmd_set_tgt_specific() -without the race probability, is between scst_rx_cmd() and -scst_cmd_init_done(). Thus, if you call -scst_cmd_set_tgt_specific() only there, there is nothing to worry, -always use the functions without "lock" suffix. Otherwise, be careful -and, if necessary, use "lock" functions. In addition, cmp_fn() is -allowed to use only target specific data and forbidden to call any -SCST's functions.

- -

13.3 scst_get_cdb_info() -

- -

Function scst_get_cdb_info() provides various CDB info. It is -defined as the following:

-

-

-int scst_get_cdb_info(
-        const uint8_t *cdb_p, 
-        int dev_type, 
-        struct scst_info_cdb *info_p)
-
-

-

Where:

-

-

-

-

Returns 0 on success, -1 otherwise.

- -

13.4 scst_to_dma_dir() -

- -

Function scst_to_dma_dir() translates SCST's data direction to -DMA one. It is defined as the following:

-

-

-int scst_to_dma_dir(
-        int scst_dir)
-
-

-

Where:

-

-

-

-

Returns the corresponding PCI_DMA_* constant.

- -

13.5 scst_is_cmd_local() -

- -

Function scst_is_cmd_local() checks if the command is handled -by SCST (i.e. locally, as, e.g., REPORT LUNS command). Intended to be -used in device handler's exec(), when the device handler wants to -perform all the commands, except ones that should be done by SCST -itself.

-

It is defined as the following:

-

-

-int scst_is_cmd_local(
-        struct scst_cmd *cmd)
-
-

-

Where:

-

-

-

-

Returns 1, if the command's CDB is locally handled by SCST or 0 -otherwise

- -

13.6 scst_register_virtual_device() and scst_unregister_virtual_device() -

- -

These functions provide a way for device handlers to register a virtual -(emulated) device, which will be visible only by remote initiators. For -example, FILEIO device handler uses files on file system to makes from -them virtual remotely available SCSI disks.

-

Function scst_register_virtual_device() registers a virtual device. -During the registration the device handlers functions init() and -attach() will be called, if defined. The function is defined as the -following:

-

-

-int scst_register_virtual_device(
-        struct scst_dev_type *dev_handler)
-
-

-

Where:

-

-

-

-

Returns assigned to the device ID on success, or negative value otherwise.

-

Function scst_unregister_virtual_device() unregisters a virtual -device. During the unregistration the device handlers functions -detach() and release() will be called, if defined. The -function is defined as the following:

-

-

-void scst_unregister_virtual_device(
-        int id)
-
-

-

Where:

-

-

-

- -

13.7 scst_add_threads() and scst_del_threads() -

- -

These functions allows to add or delete some SCST threads. For example, -if exec() function in your device handler works synchronously, i.e. -wait for job's completion, in order to prevent performance loss you -can add for SCST as many threads as there are devices serviced by your -device handler.

-

Function scst_add_threads() starts requested number of threads. It -is defined as the following:

-

-

-int scst_add_threads(
-        int num)
-
-

-

Where:

-

-

-

-

Returns 0 on success, error code otherwise.

-

Function scst_del_threads() stops requested number of threads. It -is defined as the following:

-

-

-void scst_del_threads(
-        int num)
-
-

-

Where:

-

-

-

- -

13.8 scst_proc_get_tgt_root() -

- -

Function scst_proc_get_tgt_root() returns target driver's root -entry in SCST's /proc hierarchy. The driver can create own -files/directories here, which should be deleted in the driver's -release(). It is defined as the following:

-

-

-struct proc_dir_entry *scst_proc_get_tgt_root(
-        struct scst_tgt_template *vtt)
-
-

-

Where:

-

-

-

-

Returns proc_dir_entry on success, NULL otherwise.

- -

13.9 scst_proc_get_dev_type_root() -

- -

Function scst_proc_get_dev_type_root() returns device handler's -root entry in SCST's /proc hierarchy. The driver can create own -files/directories here, which should be deleted in the driver's -detach() or release(). It is defined as the following:

-

-

-struct proc_dir_entry *scst_proc_get_dev_type_root(
-        struct scst_dev_type *dtt)
-
-

-

Where:

-

-

-

-

Returns proc_dir_entry on success, NULL otherwise.

- - - diff --git a/www/scst_pg.pdf b/www/scst_pg.pdf deleted file mode 100644 index 80e19cd44..000000000 --- a/www/scst_pg.pdf +++ /dev/null @@ -1,4966 +0,0 @@ -%PDF-1.4 -% -5 0 obj -<< /S /GoTo /D (section.1) >> -endobj -8 0 obj -(Introduction) -endobj -9 0 obj -<< /S /GoTo /D (section.2) >> -endobj -12 0 obj -(Terms and Definitions) -endobj -13 0 obj -<< /S /GoTo /D (section.3) >> -endobj -16 0 obj -(SCST Architecture) -endobj -17 0 obj -<< /S /GoTo /D (section.4) >> -endobj -20 0 obj -(Target driver registration) -endobj -21 0 obj -<< /S /GoTo /D (subsection.4.1) >> -endobj -24 0 obj -(Structure scst\137tgt\137template) -endobj -25 0 obj -<< /S /GoTo /D (subsubsection.4.1.1) >> -endobj -28 0 obj -(More about xmit\137response\(\)) -endobj -29 0 obj -<< /S /GoTo /D (subsection.4.2) >> -endobj -32 0 obj -(Target driver registration functions) -endobj -33 0 obj -<< /S /GoTo /D (subsubsection.4.2.1) >> -endobj -36 0 obj -(scst\137register\137target\137template\(\)) -endobj -37 0 obj -<< /S /GoTo /D (subsubsection.4.2.2) >> -endobj -40 0 obj -(scst\137register\(\)) -endobj -41 0 obj -<< /S /GoTo /D (section.5) >> -endobj -44 0 obj -(Target driver unregistration) -endobj -45 0 obj -<< /S /GoTo /D (subsection.5.1) >> -endobj -48 0 obj -(scst\137unregister\(\)) -endobj -49 0 obj -<< /S /GoTo /D (subsection.5.2) >> -endobj -52 0 obj -(scst\137unregister\137target\137template\(\)) -endobj -53 0 obj -<< /S /GoTo /D (section.6) >> -endobj -56 0 obj -(SCST session registration) -endobj -57 0 obj -<< /S /GoTo /D (section.7) >> -endobj -60 0 obj -(SCST session unregistration) -endobj -61 0 obj -<< /S /GoTo /D (section.8) >> -endobj -64 0 obj -(The commands processing and interaction between SCST and its drivers) -endobj -65 0 obj -<< /S /GoTo /D (subsection.8.1) >> -endobj -68 0 obj -(The commands processing functions) -endobj -69 0 obj -<< /S /GoTo /D (subsubsection.8.1.1) >> -endobj -72 0 obj -(scst\137rx\137cmd\(\)) -endobj -73 0 obj -<< /S /GoTo /D (subsubsection.8.1.2) >> -endobj -76 0 obj -(scst\137cmd\137init\137done\(\)) -endobj -77 0 obj -<< /S /GoTo /D (subsubsection.8.1.3) >> -endobj -80 0 obj -(scst\137rx\137data\(\)) -endobj -81 0 obj -<< /S /GoTo /D (subsubsection.8.1.4) >> -endobj -84 0 obj -(scst\137tgt\137cmd\137done\(\)) -endobj -85 0 obj -<< /S /GoTo /D (subsection.8.2) >> -endobj -88 0 obj -(The commands processing context) -endobj -89 0 obj -<< /S /GoTo /D (subsubsection.8.2.1) >> -endobj -92 0 obj -(Preferred context constants) -endobj -93 0 obj -<< /S /GoTo /D (section.9) >> -endobj -96 0 obj -(Task management functions) -endobj -97 0 obj -<< /S /GoTo /D (subsection.9.1) >> -endobj -100 0 obj -(scst\137rx\137mgmt\137fn\137tag\(\)) -endobj -101 0 obj -<< /S /GoTo /D (subsection.9.2) >> -endobj -104 0 obj -(scst\137rx\137mgmt\137fn\137lun\(\)) -endobj -105 0 obj -<< /S /GoTo /D (section.10) >> -endobj -108 0 obj -(Device specific drivers \(device handlers\)) -endobj -109 0 obj -<< /S /GoTo /D (subsection.10.1) >> -endobj -112 0 obj -(Device specific driver registration) -endobj -113 0 obj -<< /S /GoTo /D (subsubsection.10.1.1) >> -endobj -116 0 obj -(scst\137register\137dev\137driver\(\)) -endobj -117 0 obj -<< /S /GoTo /D (subsubsection.10.1.2) >> -endobj -120 0 obj -(Structure scst\137dev\137type) -endobj -121 0 obj -<< /S /GoTo /D (subsection.10.2) >> -endobj -124 0 obj -(Device specific driver unregistration) -endobj -125 0 obj -<< /S /GoTo /D (section.11) >> -endobj -128 0 obj -(SCST commands' states) -endobj -129 0 obj -<< /S /GoTo /D (section.12) >> -endobj -132 0 obj -(SCST's structures manipulation functions) -endobj -133 0 obj -<< /S /GoTo /D (subsection.12.1) >> -endobj -136 0 obj -(SCST target driver manipulation functions) -endobj -137 0 obj -<< /S /GoTo /D (subsubsection.12.1.1) >> -endobj -140 0 obj -(scst\137tgt\137get\137tgt\137specific\(\) and scst\137tgt\137set\137tgt\137specific\(\)) -endobj -141 0 obj -<< /S /GoTo /D (subsection.12.2) >> -endobj -144 0 obj -(SCST session manipulation functions) -endobj -145 0 obj -<< /S /GoTo /D (subsubsection.12.2.1) >> -endobj -148 0 obj -(scst\137sess\137get\137tgt\137specific\(\) and scst\137sess\137set\137tgt\137specific\(\)) -endobj -149 0 obj -<< /S /GoTo /D (subsection.12.3) >> -endobj -152 0 obj -(SCST command manipulation functions) -endobj -153 0 obj -<< /S /GoTo /D (subsubsection.12.3.1) >> -endobj -156 0 obj -(scst\137cmd\137atomic\(\)) -endobj -157 0 obj -<< /S /GoTo /D (subsubsection.12.3.2) >> -endobj -160 0 obj -(scst\137cmd\137get\137session\(\)) -endobj -161 0 obj -<< /S /GoTo /D (subsubsection.12.3.3) >> -endobj -164 0 obj -(scst\137cmd\137get\137resp\137data\137len\(\)) -endobj -165 0 obj -<< /S /GoTo /D (subsubsection.12.3.4) >> -endobj -168 0 obj -(scst\137cmd\137get\137tgt\137resp\137flags\(\)) -endobj -169 0 obj -<< /S /GoTo /D (subsubsection.12.3.5) >> -endobj -172 0 obj -(scst\137cmd\137get\137buffer\(\)) -endobj -173 0 obj -<< /S /GoTo /D (subsubsection.12.3.6) >> -endobj -176 0 obj -(scst\137cmd\137get\137bufflen\(\)) -endobj -177 0 obj -<< /S /GoTo /D (subsubsection.12.3.7) >> -endobj -180 0 obj -(scst\137cmd\137get\137use\137sg\(\)) -endobj -181 0 obj -<< /S /GoTo /D (subsubsection.12.3.8) >> -endobj -184 0 obj -(scst\137cmd\137get\137data\137direction\(\)) -endobj -185 0 obj -<< /S /GoTo /D (subsubsection.12.3.9) >> -endobj -188 0 obj -(scst\137cmd\137get\137status\(\)) -endobj -189 0 obj -<< /S /GoTo /D (subsubsection.12.3.10) >> -endobj -192 0 obj -(scst\137cmd\137get\137masked\137status\(\)) -endobj -193 0 obj -<< /S /GoTo /D (subsubsection.12.3.11) >> -endobj -196 0 obj -(scst\137cmd\137get\137msg\137status\(\)) -endobj -197 0 obj -<< /S /GoTo /D (subsubsection.12.3.12) >> -endobj -200 0 obj -(scst\137cmd\137get\137host\137status\(\)) -endobj -201 0 obj -<< /S /GoTo /D (subsubsection.12.3.13) >> -endobj -204 0 obj -(scst\137cmd\137get\137driver\137status\(\)) -endobj -205 0 obj -<< /S /GoTo /D (subsubsection.12.3.14) >> -endobj -208 0 obj -(scst\137cmd\137get\137sense\137buffer\(\)) -endobj -209 0 obj -<< /S /GoTo /D (subsubsection.12.3.15) >> -endobj -212 0 obj -(scst\137cmd\137get\137sense\137buffer\137len\(\)) -endobj -213 0 obj -<< /S /GoTo /D (subsubsection.12.3.16) >> -endobj -216 0 obj -(scst\137cmd\137get\137tag\(\) and scst\137cmd\137set\137tag\(\)) -endobj -217 0 obj -<< /S /GoTo /D (subsubsection.12.3.17) >> -endobj -220 0 obj -(scst\137cmd\137get\137tgt\137specific\(\) and scst\137cmd\137get\137tgt\137specific\137lock\(\)) -endobj -221 0 obj -<< /S /GoTo /D (subsubsection.12.3.18) >> -endobj -224 0 obj -(scst\137cmd\137set\137tgt\137specific\(\) and scst\137cmd\137set\137tgt\137specific\137lock\(\)) -endobj -225 0 obj -<< /S /GoTo /D (subsubsection.12.3.19) >> -endobj -228 0 obj -(scst\137cmd\137get\137data\137buff\137alloced\(\) and scst\137cmd\137set\137data\137buff\137alloced\(\)) -endobj -229 0 obj -<< /S /GoTo /D (subsubsection.12.3.20) >> -endobj -232 0 obj -(scst\137cmd\137set\137expected\(\), scst\137cmd\137is\137expected\137set\(\), scst\137cmd\137get\137expected\137data\137direction\(\) and scst\137cmd\137get\137expected\137transfer\137len\(\)) -endobj -233 0 obj -<< /S /GoTo /D (subsubsection.12.3.21) >> -endobj -236 0 obj -(scst\137get\137buf\137first\(\), scst\137get\137buf\137next\(\), scst\137put\137buf\(\) and scst\137get\137buf\137count\(\)) -endobj -237 0 obj -<< /S /GoTo /D (subsection.12.4) >> -endobj -240 0 obj -(SCST task management commands manipulation functions) -endobj -241 0 obj -<< /S /GoTo /D (subsubsection.12.4.1) >> -endobj -244 0 obj -(scst\137mgmt\137cmd\137get\137tgt\137specific\(\)) -endobj -245 0 obj -<< /S /GoTo /D (subsubsection.12.4.2) >> -endobj -248 0 obj -(scst\137mgmt\137cmd\137get\137status\(\)) -endobj -249 0 obj -<< /S /GoTo /D (section.13) >> -endobj -252 0 obj -(Miscellaneous functions) -endobj -253 0 obj -<< /S /GoTo /D (subsection.13.1) >> -endobj -256 0 obj -(scst\137find\137cmd\137by\137tag\(\)) -endobj -257 0 obj -<< /S /GoTo /D (subsection.13.2) >> -endobj -260 0 obj -(scst\137find\137cmd\(\)) -endobj -261 0 obj -<< /S /GoTo /D (subsection.13.3) >> -endobj -264 0 obj -(scst\137get\137cdb\137info\(\)) -endobj -265 0 obj -<< /S /GoTo /D (subsection.13.4) >> -endobj -268 0 obj -(scst\137to\137dma\137dir\(\)) -endobj -269 0 obj -<< /S /GoTo /D (subsection.13.5) >> -endobj -272 0 obj -(scst\137is\137cmd\137local\(\)) -endobj -273 0 obj -<< /S /GoTo /D (subsection.13.6) >> -endobj -276 0 obj -(scst\137register\137virtual\137device\(\) and scst\137unregister\137virtual\137device\(\)) -endobj -277 0 obj -<< /S /GoTo /D (subsection.13.7) >> -endobj -280 0 obj -(scst\137add\137threads\(\) and scst\137del\137threads\(\)) -endobj -281 0 obj -<< /S /GoTo /D (subsection.13.8) >> -endobj -284 0 obj -(scst\137proc\137get\137tgt\137root\(\)) -endobj -285 0 obj -<< /S /GoTo /D (subsection.13.9) >> -endobj -288 0 obj -(scst\137proc\137get\137dev\137type\137root\(\)) -endobj -289 0 obj -<< /S /GoTo /D [290 0 R /Fit ] >> -endobj -315 0 obj << -/Length 1595 -/Filter /FlateDecode ->> -stream -xYKs6WVjxؤm&f589($dsKR~(z[V$Ŕ@÷5M|5] -*a(d2'%* U\Yd^|?t&JkWwEO\s0<7x1[ )D"e `~ FYM 0õYNF+bb8M\ee{xSTS7㐫YY|w:uTwϨ."LBD}߅7?z/hQGS¢MQ;ttuZcVYa—q9[}}'}K?T!V»!tw'1t6AP,N Wƭ1pQ5 -*#zaMXd@J|括 ӂd!h!6Ɖ'ΰonC`D 2gڋ+n$+"Tf&&VEm@/=!<+ .m -Oq3ν\)&hM @\DzvU?KU?KHDXE#Mr| &ܚ侙:EQIrM@sYzфȝR¤^t[/@5?9?krI6;n-DkBexRuE@l=L-D,dh{ˌcp%$D+]uhy'NRɗ6I %$-[N,З4#X̲-5;KaON -͗$xF! -0W8&S7Ak>bT۔LgeL5AƄUP|V3>ҟ(! jx*KpKA_\ wv -m_Nd7谖6)qb=O®DPXpgնmO5+)kֻ -컬TDsY|h8bPN eXNmW<,}|>VDhمޙu||6,xw| @5BO'.pф#jR* h -B@z/AY,q$Y}h/dzZdel**?ƕdk^E}>dB ב+kA>\/2ƀ<`ݿ]-^a:+r=7PO9ʈTSv½ {޼i/m ?i(ؕۍxr+RRe_;A -endstream -endobj -290 0 obj << -/Type /Page -/Contents 315 0 R -/Resources 314 0 R -/MediaBox [0 0 612 792] -/Parent 324 0 R -/Annots [ 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R ] ->> endobj -291 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 548.29 151.106 557.201] -/Subtype /Link -/A << /S /GoTo /D (section.1) >> ->> endobj -292 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 519.551 199.13 528.462] -/Subtype /Link -/A << /S /GoTo /D (section.2) >> ->> endobj -293 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 490.813 184.024 499.724] -/Subtype /Link -/A << /S /GoTo /D (section.3) >> ->> endobj -294 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 460.137 216.155 470.985] -/Subtype /Link -/A << /S /GoTo /D (section.4) >> ->> endobj -295 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 441.36 229.443 452.208] -/Subtype /Link -/A << /S /GoTo /D (subsection.4.1) >> ->> endobj -296 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 422.031 276.307 433.986] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.4.1.1) >> ->> endobj -297 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 403.808 264.418 414.656] -/Subtype /Link -/A << /S /GoTo /D (subsection.4.2) >> ->> endobj -298 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 384.478 273.849 396.433] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.4.2.1) >> ->> endobj -299 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 365.702 202.444 377.657] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.4.2.2) >> ->> endobj -300 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 337.517 228.885 348.365] -/Subtype /Link -/A << /S /GoTo /D (section.5) >> ->> endobj -301 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 318.187 181.633 330.142] -/Subtype /Link -/A << /S /GoTo /D (subsection.5.1) >> ->> endobj -302 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 299.411 253.038 311.366] -/Subtype /Link -/A << /S /GoTo /D (subsection.5.2) >> ->> endobj -303 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 271.225 216.512 282.074] -/Subtype /Link -/A << /S /GoTo /D (section.6) >> ->> endobj -304 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 242.486 229.241 253.335] -/Subtype /Link -/A << /S /GoTo /D (section.7) >> ->> endobj -305 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 213.748 453.574 224.596] -/Subtype /Link -/A << /S /GoTo /D (section.8) >> ->> endobj -306 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 194.971 268.292 205.82] -/Subtype /Link -/A << /S /GoTo /D (subsection.8.1) >> ->> endobj -307 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 175.642 201.243 187.597] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.8.1.1) >> ->> endobj -308 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 156.865 231.093 168.821] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.8.1.2) >> ->> endobj -309 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 138.089 202.35 150.044] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.8.1.3) >> ->> endobj -310 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 119.313 228.879 131.268] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.8.1.4) >> ->> endobj -311 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 101.09 260.765 111.939] -/Subtype /Link -/A << /S /GoTo /D (subsection.8.2) >> ->> endobj -312 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 84.251 262.619 93.162] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.8.2.1) >> ->> endobj -316 0 obj << -/D [290 0 R /XYZ 72 744.045 null] ->> endobj -317 0 obj << -/D [290 0 R /XYZ 72 710.559 null] ->> endobj -322 0 obj << -/D [290 0 R /XYZ 72 568.16 null] ->> endobj -314 0 obj << -/Font << /F16 318 0 R /F8 319 0 R /F17 320 0 R /F19 321 0 R /F20 323 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -359 0 obj << -/Length 2381 -/Filter /FlateDecode ->> -stream -xM"7+f8 Kk;ov>`nh/o -U*-M {`=*e!UUūs'W2PrW-w~#}řtu%_w_=}-1AWcHƥ7?7‚P2wҷ SjT|O1Mֿ+Lc>}>Sr[?M~KN~ocfIoN@>f>* -DQ& -&Jb4fx/ivzw۹Ig_^KRśEK2H졒TJZ0ia$Cv%+dL 33A \`Ќ;1[ -jy4UOѧwb.mLNmLFQ2 0 ͠i-y15MGPEș2]Dg{똵Y눜o p 2%!/7cYIq1"j -ښTtJ&q,8Bc%TR;3'= -||q*& ouw8A+0h*u[rһr}MG| sU鵕ԒQ(/@ Hf*@b9veӶAm5d˹'p:CmoՖqiP 9e`eL#U1 ?ҲZ8EJ Y\B5/q -%\Y߃J- d\DDQ/MH }T}a4" k1u,cX>C-fH%(Es Rbid67m8JL9by$ĚP̸3w4L,d{^LIy!{ߋ1gSk̡m[\ - -?קI,֏Nҕ`Zd˜^OqޙnvEO$+5l&x4+i45J)l<-dT%(N,cj!6 -hN - U$tbC+(qG l:d;t6u萹]R)+BYE>wRGTJQu>/E]0i/dE*d/%J#4)g6 f 02ELer'L KWJ oU)5\F:=e*߄)RMEJHCHsFC{r^_DruW4[U n]ysԯcw6å1༟ˣ${L -x4$M|f!sܣG}S- qko\mY%6YH@QBH4FHR>RR6R3aJ,.R[ǧp1$(m5+jb?zxt'YrBQ٨%d%٪%dw{?܈4y)G6n ǽ:zu\clXGHWiy%zL-SKFB.Sl2l2*~0A0gKE߄JLzv@nfĽ~$)g 'tg60yn'@PT]pt7ɕ+`Ծ2&+GSRr,lt"ule"DŽ"fC_9\@f8&ڍhF&kF;KzӭI9(lT2Ule2&I 8Kt@pT5 O ̈́f]?p)wF`6 f TOmTRDJ0d JG'Ww,̼U>Yt6aJGrVSh3dk3j3d?>$~S .1-?qyف15X -VwYDD.jx[c1)w@;M[4H˔S|I!qTF!q|ѐR L!ɑqODڬ& ) fFeWEB#pK&-0[}8~ -݆hT Q(@ -endstream -endobj -358 0 obj << -/Type /Page -/Contents 359 0 R -/Resources 357 0 R -/MediaBox [0 0 612 792] -/Parent 324 0 R -/Annots [ 313 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R 335 0 R 336 0 R 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R ] ->> endobj -313 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 697.663 227.634 708.511] -/Subtype /Link -/A << /S /GoTo /D (section.9) >> ->> endobj -325 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 678.334 205.871 690.289] -/Subtype /Link -/A << /S /GoTo /D (subsection.9.1) >> ->> endobj -326 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 659.557 205.871 671.512] -/Subtype /Link -/A << /S /GoTo /D (subsection.9.2) >> ->> endobj -327 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 630.818 289.929 642.774] -/Subtype /Link -/A << /S /GoTo /D (section.10) >> ->> endobj -328 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 612.596 256.503 623.444] -/Subtype /Link -/A << /S /GoTo /D (subsection.10.1) >> ->> endobj -329 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 593.266 250.354 605.221] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.10.1.1) >> ->> endobj -330 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 575.043 253.685 585.892] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.10.1.2) >> ->> endobj -331 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 556.267 267.572 567.115] -/Subtype /Link -/A << /S /GoTo /D (subsection.10.2) >> ->> endobj -332 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 529.465 209.239 538.376] -/Subtype /Link -/A << /S /GoTo /D (section.11) >> ->> endobj -333 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 498.789 297.983 509.638] -/Subtype /Link -/A << /S /GoTo /D (section.12) >> ->> endobj -334 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 480.013 298.346 490.861] -/Subtype /Link -/A << /S /GoTo /D (subsection.12.1) >> ->> endobj -335 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 460.683 381.031 472.639] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.1.1) >> ->> endobj -336 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 442.461 272.969 453.309] -/Subtype /Link -/A << /S /GoTo /D (subsection.12.2) >> ->> endobj -337 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 423.131 388.004 435.086] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.2.1) >> ->> endobj -338 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 404.908 285.533 415.757] -/Subtype /Link -/A << /S /GoTo /D (subsection.12.3) >> ->> endobj -339 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 385.579 221.418 397.534] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.1) >> ->> endobj -340 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 366.802 238.454 378.758] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.2) >> ->> endobj -341 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 348.026 266.023 359.981] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.3) >> ->> endobj -342 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 329.25 266.078 341.205] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.4) >> ->> endobj -343 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 310.474 234.164 322.429] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.5) >> ->> endobj -344 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 291.698 238.288 303.653] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.6) >> ->> endobj -345 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 272.921 235.343 284.877] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.7) >> ->> endobj -346 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 254.145 270.13 266.1] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.8) >> ->> endobj -347 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 235.369 235.078 247.324] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.9) >> ->> endobj -348 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 216.593 270.821 228.548] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.10) >> ->> endobj -349 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 197.817 255.877 209.772] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.11) >> ->> endobj -350 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 179.04 256.984 190.996] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.12) >> ->> endobj -351 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 160.264 264.18 172.219] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.13) >> ->> endobj -352 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 141.488 260.001 153.443] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.14) >> ->> endobj -353 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 122.712 276.317 134.667] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.15) >> ->> endobj -354 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 103.936 324.487 115.891] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.16) >> ->> endobj -355 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 85.159 414.173 97.115] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.17) >> ->> endobj -360 0 obj << -/D [358 0 R /XYZ 72 744.045 null] ->> endobj -357 0 obj << -/Font << /F20 323 0 R /F8 319 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -379 0 obj << -/Length 3081 -/Filter /FlateDecode ->> -stream -x\KsFWTU8co:Ԧ*y2*>3 @ -6G$ fu]}s#]+#)ԭD:ڭpVWŗo8]94׫w7A$Tջ|㚑ˍurl5ˍpr徾ݷ_)R B/D4684ᛋFrEfp"6bs"""ZyQ~76SwPJӾA9q֍{?l6Hk$Lhv`Z,] -L+vstt&ng09@Z3E~_n]''(ccB:'-Z~;gzU)K\ʟ-!Th7([ J -s&/۹DH! $}nKiǩ62:bj>L 0u ,-!FPdPJ6Ɯe$I0gdj5@mEsh ZNX%/mYgQZoà.&Rg!HҁfYKq^dC!g]3 $4J)! -e]Mq"J%鵳D1nUԟTSE˳~ ˹"-.+ ,;54*xob^n"+ &kt/M;̹lj֩MRks R',*`F<Y~LhN11iavB1DG-ɳ R3.A$2cIĒI0^v;)!QT(ƐXq}]h zFr^}`m+BS~PeX…+7t`5.VzIu,s(-*HܦX CIi.Xff;JϏ) K\1|BʋJ-s~NBMDu -Lccp5RM!*"N8: 0#K H~iptl Cӡy6dCȶ˺C{,8px00vs&.qf]nboOww乒8)'*"G&x%怳fx8 84&ypt>,Tƙ1Ē1 aDC\\pٲ:!,wYw/~w)ywDIN'nGkS`WK3sDω2<VDM fI'}}6/z3"W!zp߹Uǩ]|Vq祯:YxL"LQ{-nn  IײY5j[] -\PcƸyk-fWM30ظECXh<9 `$Z6Dw2?f_l 1~8E1$¤i,?2xJavwMW$hǏl(/K)0+Nka:b3iYm4vIޥYAIB]MaL8"xdʼn` sI0#N0g*qJWG' 1fT6nߣŦ[2Ř&(IY/|Zϵ*o>mz3~on|'m s=*o"Msrf~2wއg[:j?:8APhrgJ`m2x<: W~v`!<} -К8àokpTrշQY.60`TqGUU4qR>z`:/. ܈gfp30>x4RewC= ۿj{|1 -@.%x@bвoQ 34Nw78vw!G\!h>azx 3l{4> endobj -356 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 697.11 412.07 709.065] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.18) >> ->> endobj -361 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 678.334 443.995 690.289] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.19) >> ->> endobj -362 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 659.557 540.996 671.512] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.20) >> ->> endobj -381 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 645.928 320.015 657.884] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.20) >> ->> endobj -363 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 627.152 484.36 639.107] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.3.21) >> ->> endobj -364 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 608.93 369.219 619.778] -/Subtype /Link -/A << /S /GoTo /D (subsection.12.4) >> ->> endobj -365 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 589.6 285.367 601.555] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.4.1) >> ->> endobj -366 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [108.862 570.824 263.848 582.779] -/Subtype /Link -/A << /S /GoTo /D (subsubsection.12.4.2) >> ->> endobj -367 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.004 544.575 206.416 553.486] -/Subtype /Link -/A << /S /GoTo /D (section.13) >> ->> endobj -368 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 523.309 208.333 535.264] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.1) >> ->> endobj -369 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 504.532 176.807 516.488] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.2) >> ->> endobj -370 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 485.756 190.633 497.711] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.3) >> ->> endobj -371 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 466.98 185.403 478.935] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.4) >> ->> endobj -372 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 448.204 190.688 460.159] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.5) >> ->> endobj -373 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 429.428 390.241 441.383] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.6) >> ->> endobj -374 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 410.651 288.865 422.606] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.7) >> ->> endobj -375 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 391.875 212.263 403.83] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.8) >> ->> endobj -376 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [85.948 373.099 237.436 385.054] -/Subtype /Link -/A << /S /GoTo /D (subsection.13.9) >> ->> endobj -380 0 obj << -/D [378 0 R /XYZ 72 744.045 null] ->> endobj -6 0 obj << -/D [378 0 R /XYZ 72 359.082 null] ->> endobj -377 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -386 0 obj << -/Length 2524 -/Filter /FlateDecode ->> -stream -xڵYKs8WjD-rjkGxZ^f@IJDj@ʊk )+!' ݐ7YOɧ/|&dL^6)vMJ:(K'GZDI -_WoY$#\/'rYEjŎһv: ԟUW5u;kt.JB38EG?EQz c -G(4,v uۼS o͝ZmsŸ@mR!7^hӴ2wJ"*avM'*(n;"ҞX4Utc+u…f~&AV @(:4E9y+aqeGڱ6<̮O=L-sSGQ,b:F.+)I#V-n^|bxdn||=ZTt~әfţ)j[|kɶ)^iodZ< JA8v,nyP45ZO3!VӋFw`b*_,S/.bl>>@O?R+<W2^[њ/`T!1r'Ѳ7oxkp[w?֐'WFLɜ/wKnGB"Q -d -Ẳ3Bpp?A,]Bp=aFZE&gB?>I`d# aaЊ wUْ@N>)E%Sݠ1r2~sYxorAg@F @{n8~zS"MĔҀ\%(3r$O 2IRZ70՟ӞM觞`Jt^I&^?W%M`8YprlyTnΦ n7iE -!Tz'2qW*I]Xl7N6yh$)3ҹb&HM(:]= HPbQ{@. ^=R%o okDlXR2Xlf`>+=KwSS"o/ ?.9A˚"E}tC e@PZ'>|K.Utʼn)UnT>T/AQ.Q6}PTtTB~S91jM ':VVF9A OqT,9J@^2*9 VXWu$FX%3I: J]q!`RG}$!y'p hN#7 ֨[M0JDҽVyGX ̛oCFK7Vz/78/[;_98XjV S~s hl0$ #i' [e t+xA{PfM٣Wgn8I1 Dx$$@ ]ydscl"LN6\=R$E""ak` |DN*α'P84RšcXoR6>!H}>U$daYPeb Ρ؟:nd$HٿĶ5ԭ1 -KQǔ9Ahۍ&T#(`l=gXp3ǝ=KLI ,:lErG#&A> endobj -383 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [76.234 245.375 219.446 256.5] -/Subtype/Link/A<> ->> endobj -387 0 obj << -/D [385 0 R /XYZ 72 744.045 null] ->> endobj -10 0 obj << -/D [385 0 R /XYZ 72 231.358 null] ->> endobj -384 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F22 388 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -392 0 obj << -/Length 2023 -/Filter /FlateDecode ->> -stream -xڭXK60r I,=%nA>b$2fW\QN(^'MDə7O*mfNj?/bFx%LGYx.jgin9|_/^.]'Ѭe#Vٛ@E^Wu* 7Uճ|C/UH!)D// -yjk{TWvOW\e1=oz$L e+wmUϬf! -z.<̲Z)#Altweeoa[+C6ev`ˣ]:pܘ]yjQ f-y-s -+[eULhhZ[&/;GpO&t8±u  VF7-g^=K/rhd޵໲Z U {2@Gf9g|LuL$pЂ2ϯ2ZGuKl:S=0u[Ͳޣ?%M+?k{:@qϨ4yp:S}n,)u g080d8uhɆb Sp*sf-ZtD$Oj |*wڀ4 |&xi,d;vpAEZԅXST'E ~}._\UB!Kz&r\jD e bқq좂.@BJiՑmY!ǒmw:P6!`W^܂5+EsJH~)8aSٷQ+&> T+rc(xaC'XK~ -=t+\Lw&lMY?p3p6zV аKr4iM9:2_m¶G&2|$˗GD0%`;v'ΩX ,Cҵ׎&,f+:TzK[wIV[ 8K -,<\(F>0&R>a݁3ygA,/HJmtIK#%fڜD 5q mX2}Yƪ $  -]z1r\Oco"8̵:y7}_eLdo->_ogL -endstream -endobj -391 0 obj << -/Type /Page -/Contents 392 0 R -/Resources 390 0 R -/MediaBox [0 0 612 792] -/Parent 324 0 R ->> endobj -393 0 obj << -/D [391 0 R /XYZ 72 744.045 null] ->> endobj -14 0 obj << -/D [391 0 R /XYZ 72 340.819 null] ->> endobj -18 0 obj << -/D [391 0 R /XYZ 72 257.391 null] ->> endobj -22 0 obj << -/D [391 0 R /XYZ 72 162.514 null] ->> endobj -390 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -396 0 obj << -/Length 316 -/Filter /FlateDecode ->> -stream -xmPn0+hKclj{ - "7!7Ԁ}}̮;áo 9(2(ghx| )S9nt' -=Uh68ftHqC+FhiqZ;*K}aRl*0zyyìd\w$aI%VW5:g9`8˵UFg^щFnAQLu޵'gP)x$T/$+h]zpGG>C;M!8" M*޻'*<^p h{v;~ -endstream -endobj -395 0 obj << -/Type /Page -/Contents 396 0 R -/Resources 394 0 R -/MediaBox [0 0 612 792] -/Parent 324 0 R ->> endobj -389 0 obj << -/Type /XObject -/Subtype /Image -/Width 481 -/Height 620 -/BitsPerComponent 8 -/ColorSpace /DeviceRGB -/Length 62790 -/Filter /FlateDecode -/DecodeParms << /Colors 3 /Columns 481 /BitsPerComponent 8 /Predictor 10 >> ->> -stream -xb(Eha]0F(E2zQ4/2zQ4/2zQ4/L 0'v J'YnҏRPb㏖)RyBJԮ}5M(ѿ=]?Q8ß(߇3@o ?-8{;b?,Y)!Tol%ȴ6Wd2 MV渃7qpDe\ƾC{^.s9MhVQnE896bۉmȓZfnb;CjɿWճ]grJT߽>x`/ MF_|H7k -LgB Ͽ'e|!~Y[>/pC絧۫> 0@ԯ[|2D6`@-Lm>?f9 ڬ.cLW*  Yϝ#a]=ΧfhI)fYu?zAj9A%1ovؔzJ -OqÏ+x`.OXVsQw}ʹSv׌tRdess< \ra zU == mr\DjH#~,,ѽ[4ZFQ4F@?*@e(Eh <_0hEhG78$,@ 2uEh"#`YF3䌾w(Eh4, w(Eh@ D 9eut ~9eMO"p9`(z> h Oxk @2ˏ/fNFGB #ǏgfC|Q}wف]QIѻOXL3yKN^ΜyssЖk7 OF>޷Χb)7772 e_.]DSI(<=鉀6;<'55Ǐ?x =F K{Q滾 }EE;w~[6!Ж$$'?րCfffMLM$)vtw'X@`DhO_>6Rw@CZV]|=ȨȻҴ4e҂ wq qWn\nLt y&(8neŋkO_} CXй 3n޹I~4АObF D2zt(̟3 ~G:|F2zɢvm~*h`n@⶝O @(SMhMGhR-iFhj!`;|̱Ӻ2*VѤ9ZFT ɿ:)@-)z&2h՘ϰF GhX=ZFjhMk4ZFS ѳGr^+V Tz&2hOgw'x4@ܻ2*VѤ9ZFBm4ZFlhM#Gh9ZFS7<U @#,S' e4F+$)a#-逰$E`y'Ze*kׯ? "2΃;4-'Lh]\B뗩[FH3ʗ MO_y CSxПLYF_n}}/\py2Э{.]DkWO/.-J뺙gZY[h>$!kk`AFv_mW^ѮndyA7珩XFOF@CIx4onߵԄlZ[k B ~А OI!Iζ>G:e!Q"&OHJNJVPT LLJ$C{br֝[5,Dٗ_HE_<&C/KgZsޛo3x|,W`:9sLph ~"3(P!kȌ5;zٱD4)01}@3&0۸wmdGzF4~zLqy*JLђ"S~< _? ~w?U+g'AJd`eS`ܑ:̕p)&Ū!X)@e4qptd?>}ٳ!Zج9=ϝ?78ѿxY1ڛh통^# CЧo@;\> 1HBDʀ__!)M׷_4ZF"ܼܣǎh~oں~p&<X6AV}L:io߽r^ }ӔGO ݎNsKsGw7ɋ൹l `ŹW/E uqsuiFFF_?y&)5 @IUi W_0:f8VNX@gB )D@WRwa\,;48*߿|Zͱ_A╋tI!7`s.P `ҕK93f̠$zoZ,=,_e h֝["SgL)@㇁ - "?-VUUݰiÊ+&el`ſpB wu@8k*F2 PTљJW^T߽5MzmL￿|<ťŏ<E2{c׎,!oyey@@)޾kɓ'e"V.;qP0/?OPPhmK[ Pxx/_ 2x -V B>vW?3N{X(G}.DCz{ɩ^S/rnݾ5Tt3hǒҒo 1t6`~AP@nc~~ <KSgOt(((8z}ڕa֮4$l׃z||@ƍ7&3pkk~X[_}uJ0^z}Ae?ڻc)m;BL%!QF6/(*ܛ@?nڶi0{xNHJti$NU5U֮EKJ!ˆ$,{g̞9@: uM6`s*`Jh?1 NoB'O _N/6g7wΏ~u9LqB_~ִv /7ofdf<|(<%v6K!C [h~wՀ;np"HKYsfQ+ > ɕ61H11 75C>@YkKpu僽-y tX߄>`mкZ]xଇYç6m/{P 郀!չdْ?&đ}ڱkGAQ;k%|flb{nO_>cieoD@FDdĿ /Ӈ@^pH0PRܽ-,ݟwMЂ5UjC'@mœ'01)% s Ph77A[ f48G-c{.!)ν;n`|mzfzVV6H@@6.;h%9cƌܤ$n=j;<~` d\H::9 - ͭR(9~ɋ'<<rjŁ +𔕕CBb,]r5 ~~~rМ$ - w<<ۅYFִSO;8˚<Rqi];gZX8u"0Pp8x`^A%~:cHާ\~uxkN7͟l /44l [wl?CRFpuZHȕtp(YJ ve',"g*o^' 2ze%e%32ZTtн xfN9X@zjId=xR"HS0L@c df8y43@+\;`` LT{...Faa4\Fɹ檫O9}ђEfff :PlsݱsGZz2B7o,QF;win5le4hWirֱ@헯^:@(u@rpN2~,{{hӴ= :e-pZ[-^4H"՜s||}XFg_~|\N `rXo>~|D1P%򕃐u)@@A` -,9v=TD%_>HH,ZF3sL``3 24qCcsk.;wMo M ׮?X7 FSg̞1H'zI^~ĉY:%YYo\xLt0րiqMwJO`rc$@CLC)sΪڪ?I"~h!H 2 vHe]^^sB -d˶-d (|cwgOçG{<пZ;ZݺkU1@1!;EK  )!=3 N66́|29)KhtuVϯ3g ~!}ߴ~ǃAnx#k C 6͵7ocz6Py {Yzf~9- 2%/޼3oyڵШ<޽fO޷ @H<8`EFȣ3pRdAb:fڕu ujX5c>ðr}s#<<# 1Q|Џ!R,%I555ɉ>;b L"218HK)`Ȝ>s:7?ɕ?8ʬ I |s -AMLGߡcv Vtt3P3~i*T$3XX/Zj9u<\$IHjBTpjrdl58"q8{;vܣe4OKήp:3&'K_Kۉ~n^>F^} -L`O\9]N۵Jt{n7!⑉.9B2T&.JD_(0}s{r㾃Y(767T<|OSNkrűc*!;sOl|?PxWy^%jw_ 9*y&]_mG?x:[x o T=Ֆ|̨bcrf++fttuXVv-"TTJXH&L΅T '_S)Q[5>&ekpNrx%#0#,,SwFMxI +Φ꟯#f"G#_|!-+Eo WkUi"_ȫx*)T|*jfwπzogizffwL{ۀd`C7m"E -:Ƣ`Q|tg0q8"_Uz|S^c0AX]M` L=]A |}=Z =لCO0&]2aJe-*;"x0F/ه,0ip= *KJͰO U![ACR62$<0΢u'%}aK&>|VlWM3I%|<5&<p^|'991V.L\U˥ZK%i񷨀 P.Lbwp!)Nlϭi/Q#1$\Sć FC[nb_#Zr@LNM>)A:mۡ򅗗WM]h|hMv _~;v'!M{c555GBv弅&L AM=/!- ^y=*&#aQ0329H6Ю?kࠧϞ6"PGw/߿y (t޺s߂ x:xV K@e4aK[;ZW -uR~}嬜o6mJHۼu3P~/)+9v=Su={TP9ΝhƇ~ K[0oѶb -TH+ˏ92Br O&3 C._]t$ Fh|=7%-e$3vi$|FD#$nW^rRH7GGGf@FG,2;6>}0 D?h?h-+sr-D' ~:0ӈ7oj˵zzy;ot?2 ]]qN~ε#e3+Л=}=SMA  ^j!`p͘=>}p5  Fh]0w GzeRJңGhڈ7ˊ7B–?,04h9D4ZF ȲCe: -[B٩b#'yRߺڦL7n+۲m篟G#k`@(N<,' om\OF3ݏ8yϣ08z(M+ CVڌ.p@CwӨb(kjWG?tqZD۷32 ?Һ 8,0 .YHd 7oxxztv< X D^^4J=@c']0wNO<G /3x֍GOѨ |qtnpp!be߽}i@`S}rя?}5uFٮݻK7lӇ8~fNFdK|јl Fh(KzFKGNcN^Ύ;lx⤔'C s8gY!p^y-5=uɐyј Fhh/6.3#g;20C^z)19۷ojDCB;;:;F<0,[;~۷>sztpc0#-<_:Hh=H7ucK#>* s%$&nHA,ҧfHE_?KJј Fz ,Y.^PNa;0[|כ*\Hiqq>~m>S~ϟ;Pk)9縹t~ Fz 4͇7u=3=~Dj OLNp=a9╋SO@-ߟ'&|UIٳg<}f8HB4B?|XR6??ӵi&Jˮ= - - 6o<.&#(8甏E}mm׮_!h~squכo - -Ξ?KCx ]۳r( @`Ą~˨zFJ{9cǏϝ?w3@ 2￿SgL&;Jqmۻ+#+c,O}6<;ph.ϖm[jjk( ؟? /,*HK+ nmEEdc(ŋ9#Qh~a>yAl>5Κ7+22͑r/]A2ɭA!'Oz*М56+7nXY]IfAcb>|@3OG4.XwY޽rsw#@*,.هIg g/edߺuԾd+ʳ 'M4z(ҰD4RhSgN'ŏVƯ=_-30dzݺub;=~I)AǎkhZ?@2r^qiGZc鳦CzDj䩓 K -\2i;UuUK-!)=?l߱=-#mUGO  ,_޽WQ]Ȼ/\l?_s%uv)7w[~#*vພxZT\h@k66G`jzyʴ)#fq\`Sz=0FvYZ^J|7) ߌ@(e9H:ڹg0?3|C1 -+!CID۷oO4a)`XY}Bѿjnm/̨s70/))!F}ee||b|IQ(qrvVEeeFnUՅŅJJcbU ,́AEU -)p/"Z)QFK!a!`~㧎FpEXcL/.@(eA?Stazf̃ׯ_޾/_oͫssuw0A}v媕N: -6hACmNre, ˃ٴ(^- ^8d|#֫:@ }8!n'vûpViIyUҜynfvdo" pv_0L^V'1q=''چrwnlCQ#wѐQҡ+h3^W}[sop`w#`ͻ@ŴKFm -DH,"zʹXT.)ĸ,:=}V[`;Egϲ,ΟH&+ĸ <EB#t -OZMȼ/b^e՟u[I( -bbaX/ =НG$dڅ"J(*(fL4 ; ­Wuldy\3{^1^׸ᚆN]@N#`4R+Kl<zbCԶȆa}pslbb'h4L -W#jGɰpBғ n[%Gx4cF -g{2l>7ᡒC,xlS729{.#iKu$FSH8˕?`@<VV]*5fn2`ʡ.KIrWP -2T~gRU*ԅ.#JH\&dxd(*P{R|1_Qțx6eY?o]Gi0NzD6_<:vSWkUZO"a'dQT!ns;.>-fSIj0T27tkG *(ֺ+*.Bޥ69ܒ``/W)m:u@j51lZ4C9}?RvѢEy<"|:1u>Ac0|.)+x"{l߹M#k@h6 aHXVt˸(2[>t8#?Ɯ!$S<aGB0(7(`Kx$[nTV9jg mH_aiGqSpDi {AYbVF}`yܴ~zR?<P$|m;MՎ"#`䙓ee߾p5kݿousxBm2 (-::ڀvS?|#"G'/@V^}_YU"HϦ{fK}}}O>1\ԣ( Ce4@QTFC?@trjF+0**9\SS H"H4eyk7N6?l|X~߾w{#;K9UFe;;={DX7xzyh,!ɃԔֶe+yfU >'Ŀ~æ Ņ.^I~sԉDHUFEhJ{XFGDFرf~\ (YǎøG7`Ϧ2 3.L<ᡣe4 hȠ1k9pHKKQ@`FPگ߿&L .!.D= ,,rrT1PSK#dde5^~E/Щ8B$Z 2 /fo_oJCZklijll&++f?yK ? ts@`@qqqAQPIiIYEU: X{4>ä)STLTZFrg͝5TΖ2ZFe4P[7`I=lG  *hXF?yhcҶ!e.\zV6V$!&H`W 2gΞ t퀇A8DQyMe4P>,{W3oi]Foݱ`-353,p#=XWVW -1tdsk3##hMvb-e @-^x1E]=q#we -Бtm}퐈`؍92 F2zu=;ZFS`%C*h-LLQ׳e4u,[FpD9GShMuזUtt}4 _;yݧw˵GShM],n޽cѣCht mi?珖C%2XFs}e4yW @v4A4ZF64ZFµc 2 /W^Y~hhlh:6.^8:gHUFc9*1E]ώEk(Dhh+@]-9*1E]ώE{X(Dhh흗׵F:PFCFr5Jx5Րl '] 9.M d2 -iѽ 2 ;g Eђ$Ch [Q}{)X2|8Wr=G96̭Lf[Xj p @qSOyy.Z#R MU(C[>xE(^fAt})mSi73%(:?G?F@ Բh"-́lȩ_~|IL2J+J_{dE+1k,O!!@Zxxyq@WWW c֜YgΟ2䁂D:~kGh -k 3jag>kT֋"k!4hPOCǩ'GO^EY|qFm mD 9FC G?׸}i270H1cF_\O@GhM 23` ɟ@dhq 2 Y 2B dJH@) P1\ 7 hD^/-i2ZFJe)zvkkjFʢ$4ZFC&2Ͽ?vnQ*h-LLQ׳e4u|P$w!\e4@QTFGDEĠ2z2ߧϝ1{Ưz"W @щɉ- 2z2mln$Dh?ZFgGh#`BL0"\e4@a-LLQ׳e4;c"\e4@_F{]o޿=?pXу Ѵpm]CX% m~z&V2z}1pp?Xc>ZFS• K/3$QFX]薶]v[Ӄ=hc>ZFS*2Ϙ&bZ ,= +gJڥ?ZF2`w9#3FFhk @~:{ǣe2z!*dP Hd|9$|D ;D%[QN9oCJAl[7`z*?F^FC͛Zzd~Ⱦ> ;wܦV8ݸs(U[_ D]]|6cZ}c=;oѼ@7M>:sf ?N7C{ M -_| P D䙓C@5@7p4ZFU4ZF6D2hαǀޅ+[nهUTYfAZ6or999988xxy LӓO;)*.Ƀ'ϡk@z~Qwoں (4/22\\BvrvyXΞΙg;(Bne4@Cу Ѣ>ud| s7PSW@; =v4{}%eUkWYXZ:~h=`p}31%12*h&P*́555J}=uL<"(UFh=Th=h`! ,(UTT m֎֔goihk}x^FFF&9|||ՐFwAQ!\ZVZTޔgnaW-UAhh hiiYXfs` tƊ+VZaMItc-2/otph=h/`>5o<`ٽb -x -l - UTBhuusg;89XZY Y`9}#̚3 Xv8| X+( Ya5PY\\<222<"|] :3DE$E72 /!G|-уѮ~1[ {¢,,@6X(Pjmwo20wt - -GN"Nn_s N;WKOƣedr@clsaTne4@Qp@"f1ZF>D2hsnn.n.ҝ8}BDTwmM~4};'b?:[u}5`>+-% l] !a! ų#sEgN!h午2^xlcg7sҔIh~ӻ{v-*s-`agI(Ҝ:8jhowSނ.a^m찇w#F#gx3e|  O˕($rfe؝:p֟(OiO\N Z7@:;REeU -%F QOew2mbMQZF;:;Ye2z!?I?ȖpYȚ -+p6Ԅ`DXW@n4)RpDi o_3e2z!ZуAJ`gB 3 J)ݠkVmlz1ZF>4Bh}knk;o -2 7W aeoR_#Em US<-{KtBKHƸdU{r[iE1(-Q_} YЎ@'hdhLAZ"@BxhJK^hCZ1~o Dl;,&-dQ";w4h;l@YϏ/TK_4.vE{j_oKM $ Da8 9t/ckK-XnrA T@HJD!k&iSw.MϜ39g6Fl6u\몪}"ok)5;ZT: ϲHJpumU!f f _sB GHœqhMu8QQFT>"*zG2w2i#L7G~̶*(/QN7)Bv_5wI>3e^Ӻhن|O%7W1coV4iaa` $6aG0UcșFmv/,"VQ`9*+𻆱Pf*gV*˿KGTAQb}o_S`< zNl2ظ2`,|O>їrM4:gctp#cp*hhlhE \e4@Cу ѣ2z2z2zQp4ZFU4ZF64ZF"J2 F衊FFQD UFh=Th=h=(Ah-*--G%W @ePEe`Ce(*hhlhE \e4@Cу ѣ2z2z2zQp4ZFU4ZF64ZF"J2 F衊FFQD UF -Nau& -Qp>Zj b>#yҡ[j< 0GDE01$+ }|lic($( aUg`Օ_Y6"ͩpT(gxrHaMGgF4T47ޜ -_mi ט[m%(osMtWQ IYvdyȈHӊ,PJK2 - K, FIEEE̿f5k7h>{7 M XcH74194+qrغ]hwp, #Q +2L.n|[><E~jzJK(}$Xl{|ytJ4חxNN`Q$|XNwCV3N z"D0v.9F}>[6"D#Ve+̖D1' hix^ِ:kuy*3T#Y8TPk x*hT~ nu7ζ(f< }]˪NUa*$c jjkãq(1T' OB턂泊@ IHtB:T{MJa=ʡ(Q"~5?k3iէj<6M|ǢB -Ez"1ӐI&s;_n}ua)A+Z2LtL.a7p( #by -\kzZB)3MHƸ%w|)?gω,4 A1mS^xayo~ 2e9,Dm,On^T0 #ݟ"A0ΎqZܟ֪ - ' 0 $YNJB*088LOA5@tְK?'UC^g[ -c*}Nt߲BMI,=AnӼ 9r3فXqQrغX12Δ89 <_.ŗ3*//"sYrL"Sҭ\}zԆbK<4olN R a(z@=VP+s6wPEY AM<+k,klf~#}.~|:Ճt`=NHw}T{}+9*s0~N0GGC¹eYRX -%P0AOJȉr_hJ%Wrx {o{Ka@ĦYؑ5e=4+=z@T(h499Cx!f)3AhB B}X8}<3Dh\m4[wlՎ& x( ]4r`=BB?xpD2RX445-i2пqн{f͝ dP[nNӓFxo<{?lπ;ih!\e4@Qga--LQ׳2΃;vh=2 SFwax2zu=;ZF٣e4yᆵ2z21E]ώѴsv@`hMFa-h-LLQ׳e4Ї/Fwp4ZFC&2vhhm$W @)mlGhZFe__:=蒭;@n8{=P]z!3MhZ߾ (z1$!._ M ݧwo?2nݽ@ƃ W2FXi]22 ӎƓGýy0z䁌GݼdeM-M@A`Z5ԁ fff д" HBL`;ܴeafn2CGYѴCѻ IEhx43Fa_FAAQa6TjZq dKg c@? _d-~~@PhZwo7$!& eC( 1o< -t9q鍖ѴC?|hR2 c&- 22. ,.îFf\ZІ#Ȳ!2Fh:ctᆵ {w_g2(-i2 FލC&2v- 7e4@Q?珖C%2v- 7e4@1ZFgGh9{&/ܰ4ZFC&2v- 7e4@ѣe)zvG%#ܰ4ZFC&2F_O뀻dh!\e4@ѣe)zv1?!{Ca[DaBC2 e4э .Σe44ZF64\~'EFGstdUuMuTlׄĄ`=@_tvg̜GEGBAPqXOcem5:AFtc-:g*Uo ,tp?Xc>,h`d`:؄flH))+L_ [BB@WOWPHc<u""^<*APDLL (paXTTU|aph8h=Ne珁V8:9P[LIT3->su#}X?`^=yT]C=7? ^F^?x=;ۊ+ -pȡwn:w -"KgFT";DWn\%@MLM"ذyM_~xO UUUTTeAyE90CaeOo:\\\d?of{7}_` ,>}'Ϝ[n033APpp=}tSՑ<ya`fdS%!eegfR4HH\F=ptqwEDEZ_`z, uDFFOyeM'ť|* a ^<}rێm>>>aF -H LѳG5w߹.࿠zʅwޝtۗ@Y`5K/A?|_~*#9^~ -}d \e4@Q)ӧ:Fؾr-dyH#`;^۳wϠ]0H͐E[MMMYEYvVvUMPN8^xRr,DPG$ -%x=(ZFhHDҿj[7Tك9}|?v qꕍ[6%m۶X@Ce4ᆵ 괣iظFZkȷn|(0]ƭm4h|-7e4@QgAC@oMs!Zh1V<m&*g*AVCsճ:J ,>6Z@SAƚ!Tľ脤`);Fhvmزaݦu>z?Zrٙg - /޾Xn?}8oἛwoBz@@ .]㷏|pho>'Pdͻ4^vճ^ W DΞڵw׼PNtƭlXk\ w&*h8 ExL膀oߴug+7 >z™訅 K7:e#՛WAL/ހǵDEEe'YYXYC-sîHzT{}ȋÃ=dDFE<Ж/I=}셳Ȋ*ʀc8WRZX:GFGrpr002XZ=~יJ!!e4W @åu?}a֚Gcbc>|0:M .&iӦwGEF{͇7t.!h#% ,?{ MXp_?---Z3}tGN< }eTLPxbx ԫϟWo_98G\z(u {㖍@^622ڴmo[ l8<}:EFAB@WlBSp6dSFC,{XL?yd8 -_?Hbz=tC^ G'%'͞={5R.##`cû*ʦf(׷@犜|NBR?ZFC|T[_ T`bjbkk#mbbfl2xmai,-$\\\%.Ĵ -4kȀChҜb*2lJ~oݹzBO,\ZV^o_x/gekik޸{ųLLXF?@z7݈OWPѺ|22X -:z:=Pd-'ϝTR߸uWOe(5gd`d>P͓WO -ttu%Ł&`*B%˖ BW @9c瞝>?}< - ˇ/"hƯ>~uI'N!dހܸ6^{9?::@Κ*.?| `n߿ T`\e?BB -nܹ;AA’B` -(vZ[{[qq H@G:TTcb ۔U<S^=@MM Xpֽ[@W @T;c}餧/@G 4#3f͘0yH82K\zuSKS`@`sk{w_Df4ߟߺssqs98=yD]a,dΰX;l<}|r` Yi뉓'?uN߼l>X@S'_yn=@sf@)`]tm"7nӣgX_O_>腠#ǏYfm@){82g`azKXWOX܏>"* -e4.=vEqM|! $ټusqich8 `޶m-痘xϿzjжq!C.Q - %(x @dc5>~uX(…pDv40v! H ItbJC5 {))-ZΦ)#8K.egegfL1Rv@ʦwHCVZa! ?jhjpvP)WSR^|9TZTw` zϾ=*<G9}zwfKSO{!voZ?iAؙ*W @T+}[oy&+ M`G A[L@A?WhD:Ȁ?Rًg/^@4/B8: `Ո5p N^y%<<k`b#5 !0+p RXF|xcU ):^YQ__\\h"Hk4/XS֔#ZX5b |xa -n>V LT4@:Nd-U J2 u經03^qb|y}r-RAD &~Ql31&/vvo: ж] n >L,WXV a/7ǑI&<ThV ! ces~q^\gӷ)EQZTnz}jm BqdusҊvfͺT񮽭/zEhv^<{nv~ jJEL2R\努qbd~tӇ-.UNXV}F&-•A*Koj &#BjUR aBbňEvC -cUeUHs4nZBվPiDFu"G}WE"7 /gn&5|F @×*VLEbM*X20llnr_t~?`|V00Ɲ9"&NFHB""(KAzA 7 2wD s3=B2GkƓkvt-YZyrAUڷ~d_9^dsA0~dtyW)˒Xږ,VsӉ(;D$ ]L ` ,'U.|'n ( -\߾m3T`>6$Oġ!0i֨* ' "7&O -H7hKE$t~ %bɍd"ntQӳZ 0XQgZjzwD&`wusq˳}LIj*40nuZఘOtcaKGH&ZsjJW0ClPwjsor]A -0 |jY$+>@paw 0 iz:$9C'CC)kO׹"~)nP11mڴȨ9{ϯPh"UFh ^vfΞ?.!/0!z -ٳg_rq\E?UFh5kTULk_r-5=֝[C0H 円._gQ4Dh-Qhæ 55l,)J'A -?56&8qw RQ49UFhLteu%%z!#߾ 3qv߽zꔴ 7ܽw-e9FѐCh-ĩ[khѼ&O2mwrAy ldh~i*#hԀQ4"\e4@Ѥ!H)PSWCvkt jsZݝk`JZ Z lwm=]퇎޸V_4Ș0yVe/߼<{, S͉'}|dL9 h1լ\(/G(<W @e4I4PKEeŎ=;~z;Hœ.[4-RYZ[t0:{jђE/3>ﯽnپX@/_~]l1/vFm޶S}Nݱ{칳,F(2z@ص~Ll篟)9 T_di"N;;zg6Kcw_:XVBR|Ccyl%'8@ p bUTQpK hHtrE2 Fh´j5DhӇO}y/AC۳g?}O~zf 𱎷߾|ۯ!p(W @e4Ըؚ޼u"gM d2[8/"2"8$؀} IgrJ!d9VͭCh!\e4@TY.č:} DD>6cbm𮞮 }:0)=7"=KW.Q4W @e4_4eqY4uҴӈ![z% k7ݺ{ ">@I!,/ii7n 34F2 Fhj ]GGGfv'0X|23'[bʃ~X'&'&&vv[̓a P;w񜦖擧Opeh?}6)%KQ4r2 FhjOӒ>}|4"c ^H{۶.Z/*:+Wo\C@~yHr`zj¤ `#8;+jK <<=+:E# -*h2ӯ޼JIKy d۷o%zמ]vn ->p g5HJ .E:uԀ;cX2XL?~ -P0<]<dC@|-7?7;71@qw91h=o6fE>W @CO?+˿|N&%']v >嫖O9GL8QDuG @C e;f#`t`~b_.{wm ѦE=?WYv&hEp4ZFhDj Z,AhכoFQ42 F(ϯTwh=F8UFh=eu{5xM-GGh-G4"/߳u2j>eg2F(2zD/!?pB3s3=}*ۯoHE#*hh@h ^}SY]9qDC},^o8*hшe4. -t2ƨ8udQ42 F(k.ro_EC *hO )_yqvI|;ߟ>vկ/E2zD#2?anMOظyo_!yyT?n hd"\e4@#G@GUVWu-[ȋ4lR b? xPQD;2zD#x}3fO wp߻ @hO2>[l1-߷ݞ>k:1G(:UFh=vsw=osz ",mlmh\XXK:F"\e4@#79,WdD9aʴ)?3З_?4y㖍Wo_s:R S[wl%:F"\e4@#vxZeFxd8.w$ BI][_KRA0y@6g @e4Q$~=<)ȽQ Oh>4GTUU={,f(?hh- `#,ojiZaӗOCJN6yo޿AV4㷏ll$#ݽ@1Qo/S cARūZ3- lՕe -n4DpYsfa57/,Q:$*e4n^k[tɧoA, -fÚ+7L9m݆uj_F积5kcs# 7ĺe4dQ -N=/Hh#0@-]~ێ?q4ZF@eּYbbI) 茻:9;!1"dMܽ| L@ g϶l xaaiewF;~9yRQUqi7:ڨ8D;uenܹ1a:ׁ՛WUUEDD,Zi; -xCð/ I ii\bee%oNN\'дԤRbbb7nzJP_DLD]S趣'2 Fh|gΟ< ĔD`16>VPP.~?zHWW @edCJ3`~ T`jf -@n*(4QM@KC4 wh߿mޓ~n~.@'i -T@^pz"e989GOA:>V/`\B )-,llN< dQC ' {w 2 Fhv5 ^`w WL=P[daFnSA$ﳲe={$!)[zQ@.BkTo:z+^囗Č ȑcGJJKE {%gO:I2؀x}gg'o` )q mvhp嫗j |`'ȸ~-h&`ז[pM_7`9SY==&5BH?|`bjL;vxD6AAEb2 Ŏ,;1 篞?[(I -v3~xxE|20$pꌩ I {߽:u} kH2+׮̘5c֜Y@g,]Noe4@hfϟ,H2 &2%ef7w7<eݻ}U!*11gϟE2Th`ˏ/wdzP3d;q -̉@Y++wn \` qnnXЖ})*133/Y -ZFcwOw篟c]D2o`p{ӷO@CKW+#;C@@5o2,*Za -utt#Kv xxq d4yyL@-||[Ld 2&5=tl.]qm<gN{w]aa᪚EK  -Y0g0@U;Hp1qH?5h-o2CϏ_>^q-0',Z(x`?$M@D>|l{B>+*&|kHz6,OutQ7O@ ]a5tcee-*-H€dxe4f2 Fh4,|/ҙgsB`P {u uii'ϟTgݼw1 f^,NNN!^?π2{/+>}IS&2e 2єt04ZFD؛ ֖O_?A@iAJ.Pxꕯ?\wt\=qF33wn#,Y12jGts̽p^7h,e4f2 Fhv?y\D4Ld-m q`1q1qj[[WDаPP// dZjGp]}ԉHzB^M0XFhe4@x_,cA_3ʲgMwstߟgueW[6 䖔I2?iq/8 e Y{GId9h-~œO>A8gj|45 _>MxY~HX 93z';wO2ѣe4Vg`-h& -A.0"yj@`L(D"xaq!`xΟ?? /=-27ø>;o<'#؏9fhAFhJ6M}…Ĥݻw0c֌-G2ZZFh=e￿lr-\ -Yw ee4&-)q(hш32z0up4ZFhDjH;Ghhaã2zD#2ƣSRN e' `x hMÆG @e4hoTD4B2_jJp4$ I)@.*׃^V{X)>N>ZFQFА,{ԩ'Ol*K+ˢ)S c"#ؾCD-]N84eRk{+hv ]{wQe -uShMÆG @CcT2ZFFF#漎:{*19qPe2 2 ^=03ӏ<6Ww;vdM$є8lx4ZFS?q /<{lPjA-׷?3hMÆG @e4zRr^ǠE:sLZFڠe4%e4@]Fˏ/ =,dp4ZFS?qf|~P]VBp4ZFS?q hhM Ghj9k @e4zѐ@ TAe4.-`e4@a\FgWn\arZ?Zy7r@AȓJAᢙkw.LM8ydl|e4%e4@a\F}u}Ͽ?޸zQ :{,םw "t)俠1.^ (S h懯N=@#k5P+Ȃ_pgfe?|{Ad7-ps4=M-M paã2=h\ ".n.}99b%;'y#!,I5׬[,ǁgNSz%dHMm vȖn K dAsrC]}]\R\cK#\A^Iދ7/`M{baaj<|0kV222m;уj}aXh`,;j}]\Ai^ '&&LB_?hhh3 TC;o*h~@2∎ - ihh5nn&#+#3+ ؠV.v/o?y& -D7dCGNu1115e :vXdB=o6x:lRKF&%ՅCtyEWq=c37n -v( -2m - TC䁫2=hkkH,C X>>>`w통 - -ΟRR߼m3*W^,Fo_9b2jGjŀΞf.Omjj(*&sN`M lC}W62 k@'A+6\>&\e4@]F}u(``Icߤ"C#Cu--? ы.哜kjm^ \\\pr -CLBRpk| Ж]{wE4H@F 2l 9C-ø,ܿu2Xɫw "JJwYy=PNѐ9Î b`7&>X*p@taHQTlck()k@({ FEDF`-t?2 2 Fh0.!>x{OINIOUX"%-(A}u]5ddXF55=C@.P-VY7ȦRR/^ &Mhio-..- Xyf`,Lii s[1G!G'$% ,0ZFSQFhMe:;:>fA^<1z` ^+d86"}dp4ZFS?qYsg4zhMÆG @e4zуbV2lr02 Fh0.u٧/jTAe4.-`e4@a\F}Gn+`,DE6́;EV~IF9S)&.fPe2 2 Fh0.;sYsgZdrbF}K?V] wdߴӚZ2s2Vў{LLM~5{lb `fffee쬞~J6v65[ß dA;?GhJ6ښ~*,+  2&MّD@*k :c*+Uk%e$=DR68GhJ6f-v(h~@2ֆvtK[ˀwU>,aMl'k;9;B@_~|߿{<%<:^*xv#l+]{w7p.2@7Ehh˖-^=}=lpnj׻c\.lmo 21h |xo:Df/WQ0 -F(?u @d_}r߿(Eh,-,_/ZDf7-Tt(Eh,V[ ,|xe4@QTF]0HhQ4<[f%hZ - Onavp 60 -A4N3 ?ETpؗAӤuCѹ @ y[w"ۙ~t0 ghg'$Nwm%u3$ F9z - nfCü^zra5| xcdcocqSpL0H_2* 0 -A8WBԙ E:x+ gc ĀN41B -*S -LD:1@G0Nt*'hṕMQYq(>چLҷs@M+>U5q_.1;rF?h=0O=$*. -IiɈCؚzk{-d>ZK[+95ܥs?\Q]ahbQ ,PX|sppo߿gWкe+O;4BB "b'I}}}Ȧl`6].$$a45&&)i))_y ӑ@NOJ98:-XSP @ٴ4 {V3mO_> - `ҔIzTPPȽx2h-0σGq!.!, -!W/??()9 (%+'/sڳ REܙsfB:"""@wѫ֬1n| "4^ZZZE -)999\yyy xe=r( P P%@7? tP,ZF;8e &칳}@^@K/ZFeь@W020#6@ZJ ^$MXb)dCFFؚ-s @eF6fR;1)())iYi_<>9%`@O^ Q~`uW7r -r6ڻ1$sI)IVu׽|RvtàV*h + CcCm"9Ĕj -  -|^FBLV_y(t31eЊBKL]YUi,đaLLvm>Fd2zp":4ZFa 2TR^rxVh?Ե]2&NPRHJMZldH̒ZFiϜNR qRQIPpɘep !ʼn)='Mo]e'O=Bc*АIЂ"=3لUkWA6ZFND2 F衍YyrO4 .3caaboom!..'Ξ=~xDtDdl{H+j**yyXh>z2 ODјO?ۏoѡx @Zpe Dt.hyI϶ݞ,&!>u7n,5p.܄/?\zhBZzI-=dw +666{o)<(ݐM8le4@C P`//:&?x RJ،4 "[SS_𘂨ihHW_;{4 i}ؠ2H3 333x=qIe4dv\|PXh @9}vQ4ĔUUh"Ya-PM]S2/ Aqa-'s @ePEا7-ݵ{<{CZT11@nkG돟xMM!mSgM*HNNsUZVѶv@vlR,- (pʅCGSF#og6oj,9C@OzJOOO\BSsp+ e珈w(5O2 F!sksF0c700<}/P?y Zfhdgjn -rprlپh“O">q^8sna+^yqybhnB@9 @#H 4A?`yQQQy7[{)Ӧ; -2 b߸ e Ƽ<2 4c[Z ;+@eQQf*D3a+ e48Rh-0Mݮ)XXX [H j; -Cpqqc6? -':8ssQ g u2z2 [ {@6- dChx ob3 M HV4@Ӏ!mR1 -f@lll0u C-.)j,0xǮ6m=}=+qk߈Et.oE-@0g!fa$$F%=H/AՐ(y7tloc.Wkbea=2&832h ZFqt14K)$J|˦n5PaEo!&Y}F U~r0>KF4O,ﲣ^(Fbc~Clz"=Xc6])êfWj,C#leyGyn1i-+4C`2š5Cqw6랊W]x9>^ 8p-w\#[ÈGkII6?)5"o(+X,wI՛gSR9sy_~S=G{g{_PZV}1M~V(K -015AZP2 -#ad _N^O(8 UUWɧXNɽja[Qϡq@RG99T;rzT+u [t?þ}zV8  -667ۈ  XVQ\W_Lޖ˰E --ͻ׷T1QFBݼg̓~1n5 D|u}UPjxqysPmPBÃLS2zͤ5# -.wL:y'!Q u2Mʸ8}[áD{ɍ8uזMM>Ozgz{7d +۲~Ja1fىsF.f8_,ZhBV󁿊L^` 9uEǷ0WO ' ǁCBҎ-g;=H,6-XSœ^d: +%6K4d /%$ y:E ȟ@+$G=F *ýRerW8.̶[4R+AU"7 A5TW@͒@SfVWdFu,I)$wOkfr}sg "A g!nX &/q y8 ěOy8x.p(4g,d<èh#>p|ǥ7lހwpD2* vSG Q!!1htxZF<{ra)y`FFe4hM M=W @T(޾ })iy`HNbjA^y<8dꍫ@ƀ;f(8hx4McM͍T1 -d?y<5-5)%)9%r(!!FӀ谂p$sT4h茀o`)Y9HBqDO=/4Bt4 r0x@!&_pqq R hjiP4RRSh/^wFLQ>fl+_82 PFmμ9aok)Ӧ0 zOe`c-EsZ_X ƆA+pρ=C=Ǜo%C QF:A7.ekg{/BtXwo70|JF ~ Њ;< t)d;B LEGx->mY>H -7e4@Q#@BtUˁwcFe:΃;e(B 7e4@Qkvn1:lţe)=2ZFl2 PFGS{d- 7e4@QƳb2z-6]G 7e4@ѣe)=2ZF ɀdh!\e4@ѣe)=2ZF,f{spD2lŃ<珖C%h=;:MFa-:e4\?ZF"#eHhhMFa-:룁4y-JL2z`qOa-:eOX ܾk[ׁ d }9}i2-pDe0(/X\\ޠ$!> dl޶vppx -AJ *g*ãvn߿miiy ;8$شuP(+/2v} #! tz`p EKzFNNZ_:d|(,gΙ dI x)PrayEU=ZFZ\zؽp - M:a\g?K6 CDdpe<0c<> b/A3$7ܰD3 +\f1!F: 7e4@GC&h=?ZFnXhN;ޣ{.9*1EGF 2pZFu5y2z-6Gh k @g*C&h=?ZFnXh-G!S{dwqu]AFa-h-LL2z??237:`yh!\e4@QL}x޶s%2)#t8@Y9YaG+'7G[[;00X:88ܼsSS[s=>`cg|7(*+:~W [d^~(~yI)ɇOxheh X/EAO_]Y"\e4@Qd: x~o߾["̄9PHO<ėBBBEa;9.**zƵC\oi.Ҵ6{ g,dFhx2$j H[@!Qh)a ͇7"Q5аD=,{ 415_'NZя?f -`@211]v嚕,O*$ - 9b?8c;9::wGGGתua1Q ~`@2C` }tk @tѨea: ,w%;Њ+JJ jdْn -&`iBzLt#)K+J\\߿p2N9ghddŒ.Ȟ 2Z]C=2:ienf}cƓOets[0(*gdd=i6hMFZFu --/4bee573Q@YY[yx+zuBg;r'`s˧T4<1"..,Owڵu}}>1)qmݽ.:Xx돯bb@ kh]]];{;!y**'O<|GY57?+;/?ѓN:  kځܾwWu>hg3 ѐ*MunG1q!r: xE!CvT4ȈVQQ[<܀\5 ׂ**>r==`1@ @nEE%G #0I\kG IEqDѴ@ /Fh:#J1~>X\BгW~&ll`lJhl ۯo΀˷/@7E * GVg'=?, z5Fe4@?Td@6rcmde "Ȇ`@Bօf52sdyd \e4@|-hc;2zh2pZFusŵh1ZFD2pZFuƣFǣFh:#n sȋ"ڐ2nwb - xd8  _TH44ZFp4:g8ThMgD2X>~R^ ^^zq˶-?w<}ɽsAz@rյee@]^?{-PAEUPG-Zt1Ԥ?ᓇ^>JWWoߵ -m)z<}D ehM*UFh=ThMgD2X>xR\B\@P@][@l" /,,,$,+ׯhjiY100̙??l]dT$PbM@.;;;Pڭk@$=7<RLBջWgΟJqpr64[Y[AL!)389;)($x-4P0%5ݧweC *hh3] 4s@60N%o_ LYne@`??mX r -xbx\7Ɲ@O202l޶(h"sskWŁmdN=rÛ U؄XQDL9h bu]ًgBA_C*hh3]**)jiixhˡc?m jn5`)l``pM`F, j}c=iiiMMMS3S_?g/ElO=}hY9Yeee!<<<***ff@ʬm544<5(ۏo?|tzAhNm`?ZFtF+!s}ᄐ<{YXoݻgE7\ddN?*V:z:O_?3޶ⵋjj.RTV|% -HHLK[nD]|P|xx܃@ʊ&KR2 s gyhc;a; W/ܸ}pgMMMJKK߿lB\*[| ZsW8XǏ_?$$bbX:řRCh`S?xMTSWd拊ܳczWx{g;fhˁn?ydE Abb1ZFѮ篟(,"7{} -`o޽f|Ȟ`.Ava @;@#ѓMSO8 ):|GQI'PǷzڎΎ I @/߼禶pػa0 ="3FХB݊A(tFA']tQ^ 1ηq8߾M ,36 ԢӢѳ㯹wңF:+.aa]!3SQXocZD p=Wj)}HG>s09S6%z􁪩\BܓCNqjQˇ۰۷)J+ke>Z%>iCQF3'.hc;>C~S$;Vcw@mfHr\%-&mxd#[ -G݇w{>:gH*UFu:5*P_ [h2hMw4?B|32 SFC,\\޽G2hMw4ZFBaYsf%&W kIa#HC$.n`A4t'ݔ.:2|&y8 evLfx|x\[~D4Zcz׵03~(G/cyBV) DS$zvK"ޛ2 aU;s:$UٙX՟<}… RRR}G{0]}ء+W -4PQY:t ȩbede ~LH2; -t?~덩obߛoyxx*xyy1C. @K@a_t'TTT/qA>C4L$K/2fϛ3eeeq qx@@.}kT=z!W 3M17hD+ڂZ ڵH84iҤfsKYzÊP{(oCC`" C E1űBp2E6ơ̒g8Ipc8jA1ợ<ll*"qYTC?4Pű}\7W& ” c޾u[ C("YQO.bLfkvehHl]ɺ04űS$!`eKgR -K..N Ί }~3\GA-m1$V=!*?b1Si,.BYB,B0|+&Ա5yokS.'(#'3l~ EXjy|O;e[lad|]]a.l=S0=@4,iFu]Aw42(W @ePEe4 h("\e4@CtFC(p4ZFU4ZF 2"UFh=ThMg42(W @ePEe4 h("\e4@CtFC(p4ZFU4ZF 2"UFh=ThMg42(W @ePEe4 h("\e4@CtFC(p4ZFU4ZF 2"UFh=ThMg42(W @ePEe4 h("\e4@CtFC(p4ZFU4ZF 2"UFh=ThMg42(W @ePEe4 h("\e4@CtFC(p4ZFU4ZF 2"UF`\V(}B",zQH`Vƛ=hqbBJ~̸ Kx-44Opje,5*(=5<FE8pκ9[KB+G m$ß!TJܑĤtʯ^;g){?ŗpJQr:~(!eяܝn@1}oYOZVM?: 1,kb҄a0s r{Ve:d+(t/y/PEն"i{eiUU4;|et`9V&H4\ ֜f*Tl]p+pV˵ 6.SqDTPǯ&&z -T wq9AAA`Y/``/)/& XPdlܲ5PYXDXRrcxWo^+srrSsS=xZx8US2 PcIY b+++W%$$%IlT~=# B\BS=0܀&&'Sŷ&a,[E%=էg{;ˋQD!UFV(t* ޵uueq[{E)xaQk/%CrMNf'3'_\] .aSo&!eͅePr3pڒ4)%:Y͋9xiWgٖGyޠg)B"?ڊOR4@Ѱ i*ϸveSi=,L/& b$j$^bY7ȴaNDp`|;5gJغ´AVoUP#x -4G^Yǔj0)@4؅Nˋ\P:|es"b -5JVP};xyBdHٗ.D>Kcn_ -qZVCx5;{dz y.׸سaβ=>K qLȪj\Өh{ĸY. Q-JzTF[sA*},[54pc#*bÏxRAFV؈? CcmIŧKXT>dORE?J,CcOu ]Q୰ęۮ! -CR),%Z=}_쿾^m022lx]ct]LwHakLhk Jh&&IS&9᎖?Fh2-^9ښ*2uɣe4hMg4ZFB}G hH|ˏ/thc;-3 pD~ tu?y+oFe4hW_ pD~߿ -CZkԠEe4~ ZwPDqDXk9[d}4K -w2efVN"뛟5q -\3?2 /m1v=qc֧N}(4 -}`sQQQ%e% u ummjt0%&% QLϞ?f6+++UbccKJI#d0@lhMvb-2?ԏuA?QO^<~9h!WC XjPuP@JA[w>k! 2 (*##o޹*ֲwލ7!: r|O@2z뎭6Ofjf1h]HG Ttā7 2ZF=h`·LQw|ÂW-f>éaw~e4䀭A*Ne`@-^x1EGFh#`y;2 F2z-K%C*2/eP)=2ZFoʴ)jjj.GIW @5wֳk?珖C%hM,oZ7z9 yW @a\wAGS{d?uAUFE'beP)=2ZF3fϠ^pDљJ=== Fh:{d`oln]{GIb-vFAGS{dNޡa-2ϯ&bZ-JL2h, -2 (hG/߿x2z-7}tѻChhS@FB2zm# B4c-SY&"2b;2 (+k"&ϟ?f"Ì<<mL2 /߾fe]Y8h]Yi KcsmJ|lmoebbZb90f!:l ë+X:zWyW @ݕ?X3O`!8age 4ӷO֬Zf GGy zXYY#XX90lhGkFSXhhW_~%h1@]\LӭM!J9?"xB4 GqDoߵ}yshނy,Nf@# x@Qє 2 /= W.|HEhe4 =F("ADBZܐ2Hv*Y_ȭ 5 bD1r?l%(Y;Ez*w*0+JV\Rkpր(n3A)$TD"ՋDK3q DUmxfbEI*)d״&G9Ziarw)Upl+N=5Q?ч-G(Ŏ:,U[nهBlD8}8>eƔO<lll\¢篞h?Pٯ?~!סAP3\d Pat]э2zAYSR@6TϜ?,j54!e[R<5+Y -=zyfEm;pę@p™㧏|^YEKe}|"?Ǻ X4΃;? PzF72 FQ4)895Ԧrq>OVQWyϭ յՐWCSʲor_pH[~k߮Ȑ&5u5TEEEUMء}"%e%NeHރ>6D2 (*}}G G(@sbbE筻etvu~]^Q)pUTT23;ڽ}=<=,[2m4?K7.i]q2! q@FVVV3&/Xh w}e4%э TZb/2Q4 wzdoؼAFV>4/}vV6V`-**ZW_󛊚ƭ ,sE/]tY)))iiGvM*y&P X2<]kmc_ځv(}֣GIэ JTŒQ4FU|• 9hCc3Μp•#~9PYjV( l+}@A66?~ R(|^KGwB ]8gbj午2ܺT4PVVǼlۯo@[<І.UFE Qq(E@6齇s? dx6{.Yiɋ'o_J￿4+'+=#=)%w_/_~M5 ޣ{UO?Ϝ;hWum⥋ ʥ--=Y@Sڏ^lGFGd#\e4@QTFUBBb1>Eh!`XlN+D( ,"Ł2c1†ٓ3F?6{6KJnܹ1@ h r܏Q4Fm \e4@QwPH5+G[ӣh4,1?{OyHb- -e4z -R~D &j(|1@ztKg8p6VX`T1zdAAc'}>pR& A\Bȏ:!~f`SXixIwqx8Ԧ>Uu}HP"Lm)5 2[gNq8l&/\u3^*2ѻ4RBھ,DERPj***E) \``j6$]|I5 ؾnwo;Ck;( XMYЊTVD " * B$ - - 1 *"YӝB>ǽafgtzlP9:>!w:fRP)\^_ã 5R/g,R" ?>=':@_MS>`3N=SH1vB9 `7[P1,'R@I(.+vV~\RlsO&e4= vJ(OFq〡Ƣ2z&&2흙X{L-[[d6 -V|Xu,4VR,G̑Ro'W;{;RHљ߮+L@Ju87Li2ydWY)MN4` 4Y)'5عa+Bց ;$5+v=q\bd}g}ټp%NiS9H7lē|7O6%Pm&9ЏXI|*U1S0Pɇե&>B _U^;̫_^x3FGe(Eh"22 FQ4F(x2zQ4*hEhGh-G(Eh2 FQ4F(x2zQ4*hEhGh-G(Eh2 FQ4F(x Dˇ\BG(`~  DWuuQ4F(EDWSS_QFkm ,\d(Eh"z"`ٻsN2  9KlQ0 -F}r ApW.Q4F(lX>_ -endstream -endobj -397 0 obj << -/D [395 0 R /XYZ 72 744.045 null] ->> endobj -398 0 obj << -/D [395 0 R /XYZ 183.791 80.598 null] ->> endobj -394 0 obj << -/Font << /F20 323 0 R /F8 319 0 R >> -/XObject << /Im1 389 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -401 0 obj << -/Length 2301 -/Filter /FlateDecode ->> -stream -xڽYo8_G;YHiw}>v*ѶP[r4 ~3Rl%6="̘/v ͗_ #Fqto~/ -L:.N{X|n$"ezq%q/ůKV$U˻U/fg:JeєH.mCZ,ۮɺVdYqlh!G{J -&^cø1trWbe |o϶ؔm)OEĴLgOvMYFGa2N|=ݦp2xt6t̞d>QVlA$}ym!,o$<=lֺ3O:p_ɵ???[ѷi~wpk_ň}]mCf= 9f[mzܦ0}fŝ}2+f9X/%e8 ́8+NMoj[O/5g߂1"gmeMvtak`Ox (ziϻQ,SNx; dK;" -5: K;8Bnwnw"#q7AfNdtYiQ3FI+-Oؙۖ -rZ2;L-s@agHD}nJ,u@cYEO1KKj;/*RrKK(Ҷ -5!48f_#nd8e|b?`{;E\WxiůficS9XPfU3UvPP%Q_wf FKPJ-ێsय/JiW>2dOg _KȂ >~*fBL%, 8G"^bdOkm6#Tk&e&BuʴB]T,_޾#Ô -Y~ rn?~+aaGoŵ|M3FL` @V^\ :VZz4F׶3]4B $p8l܌8? F8S0_G]s&ɥưPoѧKKCd:c;fp1[^c;  !KskXx7#/S+2#CmTC};Ƶ| eTwpkJ2"$LEb[1#,oC!*He@Ŷ$U ku`>˓+uUP¦-$X⻝c⹯6COv(ZkO P?! -u`/:SAM:9(IsP)jC_ 5n HccdP+Ã^ -t$ڨP!Bl2WH Bȑ[#=PKkU0i͏v9z1,CT< Y48AـB{Vnj-mY(&}/4;,vXGP01ū HࠌXA* p&h7os  ~ԝ78,\Pg_1tnzA覂\jx31q>* -rwL\Zp|)9smJ01WpAy[Yh%Z{?(>/ -fHOmnП]paڞvHJq'.=c,)HD9;Qu dgxHvF=D.ٙs5}ANrU7{ zh13 g@c'~_QGž utSsZQٶ=ufPv{}L"CETyxC Hǿ3ClCn0ڜ2!(33S-| 8+MXƯ{Gauݐ]&T= ZBk%&J~''@ތ=~K0A:ޏ>H_zۼ>}z1PL䋳1E޿ 4Yբis8EFvdG*.Qy\]-=nJQ|@9[Jhө-':5LzFFN>Z-Gu)=mvYyh/?_V_~˕ -endstream -endobj -400 0 obj << -/Type /Page -/Contents 401 0 R -/Resources 399 0 R -/MediaBox [0 0 612 792] -/Parent 404 0 R ->> endobj -402 0 obj << -/D [400 0 R /XYZ 72 744.045 null] ->> endobj -399 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F11 403 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -407 0 obj << -/Length 4467 -/Filter /FlateDecode ->> -stream -x[rȱ+:1!*cWlk $h='+ h R7nݰzdV2o_o#7F'Jf{x%$vvŏ:ltfo~;l\2mnx':6t|ucn\}](]SrdT4\oFDm]YWW;;Yg*Nm?;GhmĤ(ea&_@%)+Z&V -/䚋 vw%'?A -P82$q44,e^8OXO:k8UhfYi=h}AGK:nÑ۶;_.Zc5'=5JsvDlQ -xsu$ʖKwcnm?®8p4Sv˻Йw9>S -#͍&֩g҅%MSW7Fu+{_"I6/w\ևC^C~/?~*_(*}[yW.?Mۢ`AvG ɇqYNոW(je j5S2Ry2J4T 4S6[fjD)M2SˆA=2 f<$Xf(ϱVH)(T: !(&Ǣ;6Uܥq2 -uEd!w;0lZ~ `c7)?K=1SQԭ@83%M,[(A$3L= h;6"] =Ȣ6'鼰.& RM,!T{QyѼ3Ro7܊p -0[AlyWM؞_ߙW\+劷ҹ2_R+i - 1Iq+2)4S L5s)]DЦjJoy930زl8|]hꄊr{nl&Cy)nR8fIn}Qb kQ/8;Z]+-wj"-G^~D55E\XUgD3vz>]c-2ka/VPVjpcpOA`cz mS]i!@4Usj޵ -:83kvQDa=LfM3?M7+{i`_µj-b8555Si{ $cU[<\'eI#w߁N3`0ƃRS\Q]z:tH 𷙞SP2#AZpB *}.T2 p9eۅ נ4k1j: -M@+e3;3kxFE:Ok0ޣW5+PʬNWY1l ˪CXtlLq,Qd6Aa}J| ;y"I3נ@(DVh< 6K|}n@w eI N/Q8p2J@Gۍ@.o4LS%IM͒ЫPN)/zRgd f:sq4%.=1nJK7b>a2*QP˿\iKj1`& PLxM@WM|K-dlK̪ (KR(E)7NPnTn). Ͷ`ϙGcG-P?|%2 CS$\ :PDB:3t 8iɉ -jV@fG,`){0*[W3F1( n5,!^kv/Zl0'Ҝ ^-ƻFaİo4e#)F˄ܥ}@  _)p -u/P>zg_ؓ.z*|D,%=(vm?XVW|+ٓ Eso.~7IShkjz{$wS?_"1f~313h72.Z!\ ]뾭0f*IMH/Ư(ufLџ UhZK;;puBLŒ pczz0>$,G"-~#/MJk3;UMrM*4fp:S,%~ Nn`0 h@8ѥGN&=w)`lI`z(HLI=q8!\za/9d4 oI+Za'RFJb jdH~NNpwd31 7SSbpGQ>i? LTE̱>MӔC+ap|*e&WnBV癁{j@"*T[*FΜc%tWqs&1%J2| 'Q1o9xZO;~|a@sݏYQƲ•a7.cJ07${I^!|ӽȩ*! -cNA/~ -_*=S¡p.-y2 -8GBp I梓Peu" I*7% C0MWAL镦9a0EgMQGm'i`>|ׯ5knYP5a\؄=,eF@/gAg0_s}Z Ur }Bt9 HBTJ̈~xɇUJbv tUxk -S?}qf? -"i''CƣqW,/6 00)-ȗ9˴b#Q6QHJ⬲ڏMF '6NRXOA^߁S 6#bAsF޳)奔6a!rT6RڞC ]ٴ䧼 i"]c3ҘӛlS A#4$馣?U}Od&lC.v-%MHR5Σ8y t~|FQc}:Ѡ@>`GdG./\iȺ=uKim E'/3ƽr>HbIl]a#P<HIVU*=pvPHE~BRRv(zmeuDq!ӇCD{kc -`ׇgw/6 -endstream -endobj -406 0 obj << -/Type /Page -/Contents 407 0 R -/Resources 405 0 R -/MediaBox [0 0 612 792] -/Parent 404 0 R ->> endobj -408 0 obj << -/D [406 0 R /XYZ 72 744.045 null] ->> endobj -409 0 obj << -/D [406 0 R /XYZ 72 361.292 null] ->> endobj -410 0 obj << -/D [406 0 R /XYZ 72 330.126 null] ->> endobj -411 0 obj << -/D [406 0 R /XYZ 72 310.651 null] ->> endobj -405 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -414 0 obj << -/Length 4161 -/Filter /FlateDecode ->> -stream -xڵ\K6WrYMȏl<ڭJr%jF8!);)ql$@ y3t&ODP7o;,J/f"/ykN'8vƐJ5]L~Jrum^95ʻVLӼ e~fӪ.zUl~kYjA(svh~_fεP!ëQfzo-ܼgb\PJ`aNPPʙzf T)%K~݌ZNJiWCr\J5pj72`L9@dזnRPG= 0#{2Ҽ!(h-rl&lfZ6[;j|r­n~e^e0`3,k V}< ՜ia(hL.IMٰmep -T9 1\#eip5+-LMWu䧨էunEu^ǻeT"vʪ17jraԙ spYOCJ5r -PlحA?ϋ"\~VO/lь؂Yըj^p\;mFeo|Do~.P=E`6<) @b@WNG1ZD\>a?%ّJntheQ>Gn&9 ^l)-VlCrYp#xY4=G~ @Eɾuܕ[ cPo(Bǚo=8Љ1rcj4qJf͗V07Xb[QEqS%Z5_ά=xeFJ(>"QEX7DMW3BaE Ց$XɀAUV @[.82In%y>S,%ST/ԵpJݗDhXZ&&)[h׾[Akߣ"OPifS1KiCFQ9p`TL b7ǢCfdW9"N''Jk՗3DJ+b:0T'ᑪ/l#^rUW Ħ!:BsQ\˥5D,W6_kRk2V`ktԏ>a\t=3-dPŠ;h -˲DPWߍ|6%H $gw_|5>i G 8b]1^F}ګ -#+̴CM&NgzD@p ";d*Dcx -+'z&LW -Pݵ}P/J\PT @1P ky -P^zFui@CfV]u\ FkI cTߝ΀H0+hy>x`Ctj,o$JC|%7cf;N -#{ -#<~DV`;*X|Z8;> 'Qi hIRkI @#'u1I N" -V8 hAɶ), ZoW}.N˅M`_~<ŒyX]!>`3αD W ]2dmQ.0R`V1Opf xBo`=uG8{ˑ=wVP$Ue-LbN>x7aq IQ%X5@ڨ& I -!G]7,:W* -8peC!οCyƁ pYs)X.x`{$Cb0R" V=Qsɉi@@j2RMcvZݝ!cIܛ9rR.C}r':T3U+>)<=Ng> LBO.r!*aV - Hd,G{!xN@ib.+>Vjė3~K!DQ'O$gN`˦hqƃ;Ex|q⟱* -[8a0rPI|?~-`rTm8b6luAp~n CL -L͒6c $5ŬzWmUfh,V uhgXT6Eow)!lyӼZE6޾{ُ6~͛k,hCF&vy(qTDĀ#8;9odY\2 Gr -ЛIJ>țJGjJnDĨ!-s^{yȠv++`|6=0{x(rcӪTدpbJw# >LƇbtaR`FTX Tp{058QiE< L|H<5/MT,llbI 2x 3[7#vaS92TQ85 -RTQ05  -T$`).(G8UI@'>hHR\$`|BXW6x - O ֺ,%NE#ۉvf@:uLhgUZJ -CIyRj^JAW`1o Q#\\X>9f{6yd tDܫ*_PY[>wU`H 8nvE)㗼[,@}%Ǘu Wס|(HgmaE˫?pg!e|\b̀j :Ʋ!شE_>Κ^7nf+@*lmGVzHB{Ѯ_мտ)?}?'Xwid;us>:%2|typS7&4T›a~3HQǕV=BMʦr 7a`!b4FJi c]`ԹjbĄĒ ?` -q$('k'M -L!zb6f \7h.ؽE뿜`=uhUx6@lT׿FevhQTo +)py~3VRP+\ [q}Bm{KL󦈰c:=TX:gCQyr "VL\ֈK&vM)mK)cI?<zbݓ:GGUܭ8_ (b8i/ R9xhewi0 ;=NK߉. ^xb 3#L6(-6dH,PE2Go@:95`ʂCeҠS9R|mUmTKs8Y: *Y`0lo綀X)@XFAGn #KT[h[f>xs|5rPo!*ES {b)HHNKppK_! -q}QjAݛ/14>1g*Zq c9ȞHMY -r_|"%L k~2,m.T,,Dv=ցzU1ԫ{Ϣ9y*4}mb{]a !ؽwρ1> endobj -415 0 obj << -/D [413 0 R /XYZ 72 744.045 null] ->> endobj -26 0 obj << -/D [413 0 R /XYZ 72 584.653 null] ->> endobj -30 0 obj << -/D [413 0 R /XYZ 72 140.116 null] ->> endobj -34 0 obj << -/D [413 0 R /XYZ 72 112.8 null] ->> endobj -412 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -418 0 obj << -/Length 1144 -/Filter /FlateDecode ->> -stream -xXKoFW*;u (VEI`mEc9[ =qPF~ZdHFsd} #JgC8uGܒ.ޮN&!)6C2NfSYܔ2Vd_ -&>j9ϺzzwqiRYʄA3d'*y;Ji#FC}]UP+.hzՕwmѕ -JAr.!ڮ9(͸}!?6)AR?o˦|325.2ݒG(2~%zߡBpKH"/sY]B̺:n˴c/Clt%&ʴ9<{- -3ЎGƜOu>3vƲOrcgW}f|}45v)LR -endstream -endobj -417 0 obj << -/Type /Page -/Contents 418 0 R -/Resources 416 0 R -/MediaBox [0 0 612 792] -/Parent 404 0 R ->> endobj -419 0 obj << -/D [417 0 R /XYZ 72 744.045 null] ->> endobj -38 0 obj << -/D [417 0 R /XYZ 72 599.194 null] ->> endobj -42 0 obj << -/D [417 0 R /XYZ 72 430.446 null] ->> endobj -46 0 obj << -/D [417 0 R /XYZ 72 348.868 null] ->> endobj -50 0 obj << -/D [417 0 R /XYZ 72 203.698 null] ->> endobj -416 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -424 0 obj << -/Length 2772 -/Filter /FlateDecode ->> -stream -xڭZoFBȗAᾗOmp9(8"ET&]>Β")J#0ٙݝ߼N7d?/8& baUd.ַO~0}](wxwwW/߈dWa+.Wҩe:/ eo򺩲G~7`c .I.oxIeR:L)7p\nV67,V12%ɪP{S/]*}ۼue2/X6%ͬ+5I:P^Q=d[FSv{/f*Ǽ90dFt?ÝH\Ex#AlHti# pS[^ &`}a@iZ)q0'fʹJJ%łN%[$R #Q;H tp5lo W4< lnyZ}52y1~e@Qv .>‘a(Μc1lnb9^./"E֔z YG."ǼțVU.XHɚlL4x畯}a?Y86q eN ^SlJWdؒQG@ '^V D(g:# sZ9mg}Ep?Gń4 S4z -3#ؽqv$,9.#-ԧEcAK;`2'0{[b0=l&bWeVX?+ - 7D &~.{vIfCd|{~;bMke ,xVyV8ZlK ءU]Hdz FNrO7U5u@w}œ:xF -j=mFhhl6w bȪ8X?g4r5j={ϯG4\i&ne Y<}S:?4_O̶kN@sU"bf!1~=4 9c32BZ8GRt҄iȻSmKB^N\cZ ůC°ęT)HPg%6 Cb>B@4. |!4lҰ# ;Y^(zXv#֍>Iy}WvLzf.bNag& jlG8Fc"7t*Qx _UeՕ6qwQ絏 cXsan{YtaDqe%'4YV:<8S?ۼqm.Vk`qY]F)MdfPmfMY 8_ڻY1Avu ׸68]l<#e955mT}&>ҏۭt0x -\1>q)V&q nL&z,*1 - -."Nb ;*&6h L.SzC8VT ha3`CEdrz.:O^1H GȼZސ?_DV7*ߴUJQ6K i|la^>]^1L,h"12ad -CtroK z$:XCC'84sGR,=pGd|:!߆|%a8Rޗ)]irZMuP]:DjCs,nh.:#>j6Dup%WG6CcmX -3I&b/bZ_5-Q6F/NӖ -o -Ki?Krs0ŀ6C!"Z'4Yt&IqGԑBy9o OxłÌgxr)8ALJ!4=.Bp^*#@:`pT#[ N ;J Cjzvo 80MCal:D`n<'X+=ov:nãN}x-% ^D^8kOќzeE2눛(3Fuhe*SPP)Xgws54NÊZ(LȷR ${^Ј^@RLdP1E"DBMj! ;ȁ$ s+Ûԧ|.4^LJ΋ H/r57 -j1 M!>8z*_ϝ 1i ybFW.lĐ#3CfJ8S@')u|"*u VXm+B' 4_rs(6(\$' ??i0si<`cjFIhg?t5FqF&P^AS$W;gK_ W'J^@ɹ`\Ux - (眥d*rHMBr*Qcj=d:D2z+R˷_8ԩA -&-~]"Yz/.'2iL"o7j)"FHݜd?sz -endstream -endobj -423 0 obj << -/Type /Page -/Contents 424 0 R -/Resources 422 0 R -/MediaBox [0 0 612 792] -/Parent 404 0 R ->> endobj -425 0 obj << -/D [423 0 R /XYZ 72 744.045 null] ->> endobj -54 0 obj << -/D [423 0 R /XYZ 72 710.559 null] ->> endobj -422 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -428 0 obj << -/Length 292 -/Filter /FlateDecode ->> -stream -xmOo0 >Ciq:joCUv/)K,?9= O&CE)Fۆ7/9 q26#lJ6(A)rkn,xXD[}?UCT6r3J@uTq>WcEJHI.@F+=FSVW_r1Mn\GKeC -R{5WYBJЏ_rL3FXg?l]W N'~ -endstream -endobj -427 0 obj << -/Type /Page -/Contents 428 0 R -/Resources 426 0 R -/MediaBox [0 0 612 792] -/Parent 404 0 R ->> endobj -420 0 obj << -/Type /XObject -/Subtype /Image -/Width 480 -/Height 323 -/BitsPerComponent 8 -/ColorSpace /DeviceRGB -/Length 28228 -/Filter /FlateDecode -/DecodeParms << /Colors 3 /Columns 480 /BitsPerComponent 8 /Predictor 10 >> ->> -stream -xb(EhAa]0F(E+zQ4)zQ4)zQ4)!V@? -p獢Q4F@ /^ذy[h<8s w(EhQ P*m=0`_~|pGQ4F@ >+;FpQDy'=h!hEhAhEhAhEhAhEhAhEhAhEhAhEhAhEhAhEhAhEhAhEhAhEhA0wF+0/ Adw4zzt**ԟCQ-AauP~A?Z75QaM#p لc%/J.6 W*p5ȟ -e?J.hx:wA*yd0]6y$`{J. g,2]zբ<^,LGٰqe.h.τ+Jab*PptЊ"r{ݲPAL%2Cs - CkI,g][oGS@kJWdGdr%aP<7?-a5AK[ M!R'N@F(VCۚ  ݊"/&g\~AN-C4Hx-`5OoO -80; 0Ks`9xM] !Hffh*I"ttL0i$4C]F:&x1 2^y3Bni@(wl36!@x0 -~d.`@#ȑ QfP#HG@a\3f@R1UB2f@K.&0yN - c$!"4/ocg wh F hd0Z@ _|D"j0[/|nt>Xuntz~93i)EBroN<@yeY$&Mcu1wX(>t6|:SMyKuz4Z!['&D؛U[9U1L& ,'-uYVXp`eI e Vڝ~ -K,PtC',mF!f"nEhJ?nYaQ/|މ1Ѳ]6/ -\}˖z\( -,R[MHY HX@qs99e Ijeʊ0XE{}{~`\ra z -;x+XW)+IXW㯳 /sR=j{&DP{ Б%!80PuCQ!e}JhF \ S p>patRƂyrAf_>p]! -.z.<ҷU՜He/Wcf<!]ԣhQᓇNNN{%uУhQD+PҢzQ4) GYQ4F(E"Hן__}%F=@+~V12F(Em?{t п 𳰲2e -,=hQ4D&/MӧS@!%,hQ4HE٫g ^@NQ4FП>|,C @(Eh ӧY@h=F(R#@<M1\6341XL: X@=}m9 |FWnQ4N;y|EV.۾ku#ǏKݻ̹3Wo_۸~K/w`dϿ?(D ,|dsܿr嫖Ce/|{oZuVi@YXCP* p@S6s~hQDS,\),"/~|[Z^|]H;wQ1QA!A1Hu@ijs?|4(^ZV"gO5M_{y! |1FF(En>daccs Q 艣aaa L([xALt |\bu2hlio/YXNMO7o!KFGGSqՋ'O1k9 F Q4F@BҵK>\SW3exd@Zǫ֮ff XEttt~)gϛ A?$눨j? F Q4F@4 }5BƦ/[ۛwnfII^D~RRgde46?{ ݄uM$@(Ehh OvyA]'@w'mܲĘRC -h +W\qѓG!&Wm!zQ44f d,[,:6d 4t% cA!AVh]ہoqAI F Q4F@4hYWÇRU__׏.KYEْeKcC:1sfb; @ó\i >@Q42vK4Dpڵ@ƱEl?A.ӂn:#c#{{{Ǘ#_m`/)%9 -h`T}ܜ[@P` //$$t)Q4GBꍫ$'ؽoGDF]69%RBno~9FSSS O9 ojiсHoشRR/[ nU|A:h[3G Azz<0)d ~ DSRr?luB_VN)~Y@{xy ߿Ө> -,,,BF(@D4@ .QDO<8Z@QD<z Уhhf7Z@N4Z@QD* o߿}!WƍЃУBwM&gLQďA0\=Z@N4Z@" -0 ;o¤ L8sz={4m4TO_φr[wn?rId -7yd.:}?{<}tipӨ `z,[:cjcs;zhE~~Q.]4EL^AP<%-%19q-@?kiis **hɄ&%%i|A:hEtB(A7!3Be.=sLIJe { 4ѰаWm/*Xvׯ_F9%%%aF-__@*,ϯAV:ӷOTt÷_(\{K~ <`Da>Z@" -ސ1 -Gǣ'BԌ reK h^P`^@GFEZ뷯@]p\@F-__@hE玝<=}ՕՕT1--#mނydLI^=]?"nУB, R@]0?{gΟyS hȆo7ݝE%E@c 셳Ӽ?y!4j F hd.\;0ցsggdq\T/T2Cژ[w gbᎁO=wBLs!C&@9  h)|LI/^"{by'zXuW#)ma6v6{{K+K`wuqփKJ E%E@| 4 i4@RL:X&Q@󧸤x̙x2޻sqE$Pyy^tB^jk27Hdi@ ^dK/EDIHl=vtYY>.Ł@5{݀ځIJNڵkrO^<ٴyә3gbbsrr QV@lmo΄0}EHhȔiS!"dcͻ7Q? #"G j tFk@eBc - -"@3 .e;wB dEV^++Sh ݽ@@+׬3iʤ`^yhmɉ߿qq@k?Ay~ٲe>/Cd+~`ͭH那 }eFtiB?193SS! ߿̘5?Xv7m .`{4[3/Ĵ?M//2;`EibG -Z@ #  -0 h`x 5-uE@]]^I ) -&VZZXRIʁ*ꗯZcs/._yMIYًg@ACCo^8|?7@`)!|`zjXrCS0~[nTL34V:Ak5utu@/!ʖ/[:ˏ/ccuBw^{|rf|A| @U@'Μ61 h''H - -H 0ȒX~-ǼyKW/[&ƚb`YEOG\Ҽ}1 T9kάd6 r Txbkk`_麮n| =߽޵w33&н D&gO]>߹OqlQL3|ᓇ - ݠPX0KJJw7u ?t44{ 4vtzRB΀v MD3r_@?={ Zt #4lٳ%jxӗOѮE=ZpPMVN}1`w  ؽo7}M`2U@+Eo}|}OIKY@ϝ)/\T\@Z*,4 Z`q= DHmm`S#0L@RRUU߾*e4hb?ݿPq`݃( me wȢhp!iTA( v!uA @zʴ)E@ƽ""#; dgf۰044|rtL=r7%=?5!{%Q|rPokr NLSUSdܹ{GBRbvGW7`? W. ^>zjxD3AmGǠ%vډɌA!41r@9lE*`䉾sᄑS?+^O^}lFP [hAbRʀt#`{`ѳG^z@z@w<=},L*g*sC'e@+kj5襱^K V=lĉ+?<ڸOJ @s''Y9YhҊR nnO!Cy [idwސ;~YƎ"y'(@@@`SPDT}tN -?:aHDҕW4 h`٣뷯߼{sguB.^{ tO!C J`_Q4] iD޻;0(XhА'pLsML͒Shׯ_uuu)7gЀ %&0Ɓe?At?4@Z?a8=8&v(~iL\̧oD-g ->u $4⥋)m@[1aKѹџ޼줨ЁF 葃}ظؗ/_y=ǏGDE\ym4Q4 @p Dr -d !2h=r0333}/G7lFE 7XZY|~BW@-%("'9?rB$ 4J_> F[7!Qv h mkH#:$$dCnڠE$orŀg `̘9%yA4Z@ÇRR2ˀ@$4 6fsQRj-g4ߦ&ȭo2T@hMs4Z@"R?_zeo0!* DR @ -R_ W.УF"$\dْ2rDR @8 _~|ֽ[o~:޺c+%5hM]|`@sKKo L7:i/o/I1tI4@ u_~|9x~`H  G h*[!{5dRŋItU___AAh£<$m\gdldooZ_9@&~衅F ӕ3H茽g?}tP5V;rHZF>T5ǐC$$hhИtRrR3ۆ+X:{>rȡ?mhME ƞA@gDEG-X`m n F hz q˗//,*tm(1m g ݚvxBjyX>nYWgNrhM'93 F'KkP?^ӧO'&Oxdx4Z@S l aHODCGა%CK/!&p ep˿}F%w4h"f&'4k,"h3'䁥~mC-Nr-G4`(hhMRXJlll3g$~@U@߸}CO_X@ - -h]hM<-noC{9rd?7o$t""vP,eeeKqǟ~2/ lwCNoBCpZT@0RD7Ƃ ǘ!~c/&/H -h"/8 '/xߢ/ V@rfj/@mظد?U ~/@ƣg^} )$^)AE"/x=^#4.\j@wB#B,Dqf Vev6fV|mOQA2{㤡싷E鎇!3 aW?P. C"J\ﭟi,˂$DZ"]7O7SG#E>'OqKCi$EDY.<|=H(P5DUd'hnDB8 ~qwqDlG⊉n\SFwPtGw c-ߗ..}&v?|euH$ u/1,C[T䴚&IKX~9렁oڼ)&.h=Z@# 4\%c1wܴ4`ǂo8;Մ ?}pW$ƘPABޅ@P`/ i?Xlg'aߙͮӠ~|Gݑ^[|zXj7 zx9OI$V@E:U13wsy^ 07scU f-Zrߺv[xu۠ Vy݈eA*I4h#X[<W7M𪮦@@|U3JoS? ʹKt+T0H5rA@ }:b+vEcc2 L"SM's;8Htp}\P[#p3!gۗrt5:|ct[\~{߉{,P\O~Pb@`ᢚN9 &m&i.qFuǯQ - dG"60r-Sz/+  -:/ʼ ^ӎhJ.H%iFV=Zs?,pNY3Iup9Bc\8K}`|= 1M0SR!; t ˪@[.-nܸ6B2D|YTG4Z@ Ѓ Tu%&'x퓟ߕW.YE -F 3dX`:w%+k4Iu@4h=8ZZZã ,Ϝ?3Z@hM'4Z@N4Z@SF h!-F F hhM;@4h=8hM9-ih-'篟Zç>}T F h:zp)vttk șMEk7ME4Z@ Ѓ Tm`h]1 lٲdI]@4h=8N G h#-F F hjr ȉ=?lڰA4Z@ Ѓ4Pރ{_y$N_q3MwpӗO>hM'4Z@N4Z@SGО^Q60q IŐg\ 4D=nNh44w#C#k̆:h11$2oĉ쒲7oZZY.]tkFF@Mk@7;9;  F h:zp"@rs,Z0z g͝E|HUN6X"C -3'&]yyk76MLLjxظXS3S'gfg$$/Z╋ - f4@tBDR@ݳw ;M-M$~.--G'ǧO'O ,oܾk. (hggw{_{ڥ뷮WT545DFE F h:zp)}|>b4QZJr}Ǐ,XX@t(U][ l8'/l޶(hemuv{x>=uXo+h-'-/ -hHe 7`? *`}Dmgowi c޼yuïNhhK+|xcnn>c֌)i)|S@?? 0^VNg4Z@ ЃTW[g|"7ᣇ=2߳qƫׯǗ^Cؾ|o׀ځ"ڲ}ˎ;|vMifm hM'4Z@N4Z@S_ݽĔv:tsoh8?BqBah-'-~0"D4Z@ ЃTAfW\\!ѳh-'-ݻw3##c[G` t@tBDR@ ?O_>UTTd@vx׿_`!dC@6dw"QW1¥\ QLHJu  ;g DឫBz\QΟH7R$1Z,&dd!Wʀ8`O",4:?IJQ9Pm3~{m:9sdPB\W==&iSM mG}vI%a[KtBDt.![[S {wbbvRSW326:u-32̛|r?O@2a|Ą.`[ۯo:6ot!PDVNv@ΓF7V[ *.)fA~-$@tBD/In7ѿVZ‚Y@q(:}Hh^xARR/3s{v_zXLرXFeN:=ydɳ'o߿]UUYlgbjrAE\33{vXYn3w###P(޿{G@tBD4>6@l޸sg!) +TaqaGgOcEyl\짯n߻H|}B|p{r`!!!@nhXeyDhM'4Z@ND*//okkC8%20 - -mwٳΒ3046M"`dt>W|ç:&$t{`ۚuk\ vܸ2d46_vQCbV hM'4Z@ND‹JKgiia3L hHbQ55@Ky)Ϝ9GѣG|]d_}}} ~~<<ܽoO޿ Ν;޾r F h:zp"KI=d&4Pͼf̚QPqKW/efզ&N}ظ ~z]*@)#+K_TFV䩓zZIII[8/.>SC+hM'4Z@ND4:}*tfff~p-Az:m4=h+u7n -)MMMoZdpwvtt\ -Hl޶YK[%=@W^12@tBDt+!v;z R@? tEU;;< yًꙻgwϢ,7m ޾k;611ٶkd336@-@@nPHА+h-'g /nA{n@ہa#-;؂r=sN'G'-h` BS4@tBD/KۇeZ@ɩOLN1kccb?ܘ[T\U\R|Ὄ J7>>opohM'4Z@N4Z@S_-rRRSn~Y@hM'4Z@N4Z@S_/RE-h-'-/J -'%% -Ы׭MOO43B@4h=8hMEZ@N9@nk{k >>~{ F h:zp*O>}ߠC3~" (W F h:zp){zex5P F h:zp)7nXPXG`\zєIE@4h=8 hqFF6>ZxALtuO#-F _@C,504p*.^1,h-'- F h:zpZ>-ih-'- F h:zp,<}2 -e˖TGxA "?A´66Ե%#\Lc]㌿=6Ų^A ![`L^2Xg (R}EV -{ Z\Dzxl(ƙZ}`hX=" z-f3K%S;X)rf_`pF(=03g-@2((|]65a Ç ^HOE0#MLbS}@XgV(Rȏyfvn۶s4YGp4WqvY},e]*d鷁Bu:,܊vuS#,`ԝ97]y_,,(. ML/ gŜJ²,Al@YvB ;t$ S̩#~Em.Ȏƃ=],-Xؤn, OŽVgNeT^q@4ax{&VHU%Mu"6&`lM@xp`%>B| ?X9AB؛ٽj[uջ潩:t6}h1*`op.X#OĴ3spUU.q@C3Ƕ/,2Ef"zjFBAQSpAOk?DAQ\_ӻ-xaeAUOB5@F2% XBQt)z0G5=eT (<#QP0)!+emt5R=O )#QJ (eeYñ'}뾒P*} k,LC_gC8|[nR==JIgT` |R+aٗ+eǓlЉl>,NX, nH: @.1#9raw d6BY.BB>O1 -N( 2FH.D tנ Kt' i)4BBY}Em h`մaes=y?@bPcI—o_$jmx:ǃ[e8A [u+Zu2 -p$!+pN/@6dO@a[h;_#M/ Zu2D(A&HN<"\@Cp{W/iTģh -h`ҵKæ̉3':{:'L0o@ BB !a!4:v&TD[@Czs~eƃ#aff!>p l_yu5{]i=0Z@F h**! !@lߵ}^H$w=,숯!La&TDU@C^v]PHАJ^z0^>}TRJXFWWUYFaItBD[@Xbxh{Gz! %@z/BÆ04dhM ۏo]A{60B4Z@ Ѓ `dfgb*97ԣ5/_ c۱C 4Z@F h*,!77TV :ȑ#CG}_\ẖ"Y@K̏_?cl&TD^@WVM=<=7D? m>.@8 hV nģh h`؈ -i_ 9o --'zyyo޿!fNP!o߻{5bz룈 @ -hS`xr4Z@N44F)tpr.B FFY4Z@F h*-! - Zf吋Pss7\>h \\\F hhME4 -舨˗& 9x_8SRRghMX-!V[Y[]~e C xwaG'DHk@4h=8 )u5K+kcc ctz FǠF K׃'0M!& *KOM64h"$40.;7{7h-**)b.$yZޤ XY]J /N4 2 -hV[M=b HggEAQ@ĘPSW3Z@S=^[ Y,w <>Df E}) 4-e?AN /rs7o<3@ | i/ ;? j! h`D<J~T#C 翟^27 -A嘑h h]ޞڵkU),!5Ypp0<**鎆!g|&Ѫ"#X:k "NR@gfg"+Vlr?R7 0Je,$^g tϹ}?}4B~}=G'o 7EWO=u/?_O @jj4AC4''ˆY( H iӦeff/C E NEUhco CR@^J>>>cT\@_|!5=?p@8 h`c`q@'a=Hy ] %OoJ/8؂ՐlhGK4@ +~ueV6V`SSW3U -h9ZZ4e0vן_N=E::cjiYF - :,o4As<܀2Bi@e0\痦v@ 04m -d7zp݀!D/嫖B V D_~V Ȥ$Ȧ$:D:_?+k*:s@{dT۰,zX@7JE4$ -h gl\쌙3h; CυE 2'-@B Q0o޼DA>ntPc]nǰy i;a4dD$!@[flZXZPejhZLl6.l*)+qssQ6DpO  aaa<M[7 xtycA6ѿnbjruu4B^r,0i=8=AmPx8?~eC=%"""&.F˔@x/B{™-AQ -`S bb֬_30FI٨@ -h`ۋm7]+*NG(=hooOb/XʆƆ?X4!6>vxpBI)ca4A׌Q4MۃMUUWW$1ӧظsfSQ T@=VqУhV@]US_C2߿ --H*hEϿ?S][]Xty -d?@+W-H*hE4ZUQUHY@_}j]vF$4:=F>4h u uJJJk֭LiOCw#ϟ?==bbbYC{***F/޼_$Uk7`yF Q4t`. ?@ eUegΞh*!9Z4={pF"i -@ih=(4[Q|oONME[,#OoOj`yty#--`[Z)= %ia@eȝ]9$ -h  1h٢1t^q݂ ?y T6zCʐ@4Z@S}v1ChaaG×DF+CBC r}~>u q1$ -hxҵKpt[woAJ1!hƉcv d`r!"@r֭EnbC;-n@@Yoο ;\]]> ))>?`9g]RhQ QwP@#jii}{ PzhYAFv}F`@4Z@cG@w~󺥭-h׮_?~DO<v޸?c׎ׯo޾j5u5U*ʀ?ݧw=޹w'hJgy @gpVZZ:;7[nijiTv>+W|e4U~;}~19SOwҔI@w Ӏ;a?B \nm{g;4 ةcw]|)P;SnNH_ g;C(IB- `lb`Qdeg=z/(,(HHLx /"*rQl 4 XFEGߴT@~A+}CBCN=Xϙ7 P͛#"r - -Neee!o?EN:8=3 .ı/3f"×_0O=JUkWt͞QTR(Oeue>ӧO皀~y&aC` LR;/^uyΝ;VV杛h]=<=Ja7Z@"lT |,; l?}xӷO[͜/h< )!GCFuiiirrr?$$ ,%#>[SSg[]B XbNmooZ@k6!FWㆆH\\rӗON6!M_5"HN21+3 bӧ74]-G(… }n]qd |; ;X@ X],!%,{=0d EgN26lހ~* K!x"L,}ճGyzy>y9{fJ2Xc|j: k!t7/?O??H:}:@[._o߻ w` t~V!z돯x -視z""!8 @gq`AhCJJIڸi#! M6`@+s!e׀3ϤgC:}JTTᓇhCGqrq2$ dagN_~|ٶsȭ>`MϞ?sppz elظ4^l)ĨO2 2ܵȅ#߄cǏ3m߿A. /Zhμ9͜=lسw<#ev6o4?xdo $v! Gbv(@@ -h`ʎX@ q -tsSRS`@UUjԍ*~fLGۨuo[E~,܁\BB!A\nT2^6 e4_o_ΈnTE!`$B` V\,!Y‘р1hY@;߿ur; O>A )W^A1(2n;ẢIpndT$d.tAt'C__z /^qS๋琯gW?:{NݵgO_v w`}D*:lܼqmش  {vڻk˶-7 h^۾k \ {Cw`_l\h=Pβ633x5d'ffvvV&S'[Y[Q /o(CG=ovV6tAŋ22=g%$'lظ?xURrU &O X 3g,,)6:0/g 9HaT9C^x(EC͙;ChexH+5!s666]^a;N> lGC -_==W@g@ =dTVр?H,W^!6 -FCaץ}? l8ꍫ&;{ g\~tb'Ϟ -B_v-F(E<,._.%%,6c!ੳ'VC94@УhAMO8-h`N 㧎([QY1ez!Z@h=F( zAQ4FX]6.>RN:oo?\t ="2bnFKSRS { [@evpK Q4F} ZnzQIї_ ?OH053ݱk:h cɲ%zz@OL*{9gDuУhQD6;7޼ -,E`k7ݺ{_D#@?}?F7KH - F Q4F`GiFklK[81ꁊCL*zQ4)zQ4)zQ4HzQ4臀E93x@УhQD?Z|_]QUY2F(ErD@$EhAh,Q4F( F Q4F( F Q4F( F Q4F(OKx9@+ `Q4Ft˩Siic -@ed988TTÏEhQD6n^SRVb``سer gyEh" - ː):}z͋7 œF(EhP!`|A`x14@$:z(EhQ@ ,ON̰@Eh"z>yX:+((<{ F Q4F(ȑQ:33ȕDl}3hQ4D9<"X:~˸?~]=F(E_~=y˧>E(@U@ 实. \\wmrQ4F(" A\" *e1DcffӚښ7o$0Q4F(R"v RFO6,3+͛7Q4FuťD7cED*?~uɪ*H1mck74eMÛhS1d ֎44 ˰ %I} *(ȍTBRVNmH7 a ?C>0wsX.^~ ,N҈ւXOMu\I/ -6/-݋]fܹ]\Z#ؽܺ@:_~H4#x/BgBd7b9JqB,q,UŢ eGYXłSQBɲ*”8 t-BzH!co5}' (V,lzdMD&xf!7XM2g:qrN[d - rA] w`QZVViff @xd8b (‚V`뎭h==Ļ{ sAV^fVCT(xLݛCȖ75c5ATT9j*O>Zq=!ZZX IKOCS AH -=lRRR ##ǗHtLt9JF:&!!3HxDSXxcd71Лh9 #3C2HH4D[G[@PWc`CpE:&fLg@2H@h.BTiI S$?XH2$IDZKH!!B }HHHEDyfW0 ;sνyUH_N5];CmVrKӺu=xP 9lku}cL'j'yL8]Ge2Y˝M*AErHD"an+:\ m;W |>\si]EM~j(3!XDN^& EBav65wlLۗm2] !D rB$s ;#ujzhh(΀XMgPH"LE4I4L\ Mq0XM\u\|jpA]Px6Wh5O 4h^j:-osI,DЀL>ͪ`;BxMRpVfj\qmr]qk5lwq, oe,ͷXzk]b&K2+,eJ"P.; e,#d<>VQ4F( F Q4F( F Q4F( F Q4F( F Q4F( F Q4F( F Q4F( > -endstream -endobj -429 0 obj << -/D [427 0 R /XYZ 72 744.045 null] ->> endobj -430 0 obj << -/D [427 0 R /XYZ 214.105 232.151 null] ->> endobj -426 0 obj << -/Font << /F20 323 0 R /F8 319 0 R >> -/XObject << /Im2 420 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -433 0 obj << -/Length 291 -/Filter /FlateDecode ->> -stream -xmn0~=Ck;v*7\)mq-> endobj -421 0 obj << -/Type /XObject -/Subtype /Image -/Width 554 -/Height 299 -/BitsPerComponent 8 -/ColorSpace /DeviceRGB -/Length 39324 -/Filter /FlateDecode -/DecodeParms << /Colors 3 /Columns 554 /BitsPerComponent 8 /Predictor 10 >> ->> -stream -xb??F(Eh"!`@ Q4F(E#h3F(Eh@V?hQ4h3F(Eh@ -Dp獢Q4F(~Ƀm;ڻ z+ׯ?7F(E@ufΞɀ -s2҄~? r!!${dQ4F&[{ؽcY' o}]>qĺ̇z׏W_篟߿7P -X|ջW~eQ4F[~n޼ ~fϞ 72RR22+W,(*2\q熆[PX߯GkQ4F(\ oAd'4X"8]LIW.c2Y_v. EaT3m 0m%0CAlh# 4 AE!pOphu?Z$ċ~rww{ĨglV˗t*cQF9ΰ (O|Xҵ(JB(E+< c&l6OߦAy Yd`3H36NNx^fWLb,QėSH>0Hى0-n-(4z<.HH>BۡE6|XldH>JϹ7ڍfc%^j*( m_76*.JD+%6|>Lc#6hZSel0Ig)A^rF Dxh;b~L&\X3J~/V5?]:]NBg$KPQ62?@ZlݵH?' oZÑ0bZ>`Y0[\@ ^ 6h 6H4d!MHHPAҠ"$>y s<住swj?oi4d2S TI `:KAX+@PHN*^ 8&ϓs}sm4~f"r[Nqt0 ƕg`e&Jp*%k>uqm#ҖwW<`V(-BE`RQ}_ -m~Ξ=;C*(2U\ĵBDԩ;UqlFnjj@]j*t4%3KcŦ;J{V(Yk](QKxCagƦ6̸$ Hc̀"M1/34Ɲ" #y4%s'˼6Ƹd,7р1†m$b#6F,fp4fr!D`[5lY\ ]j~YNIJo4S -> G#q9,id8@6bG.fVʌ ,O*Hbi$I -=᫇} -LDFG^ -jBD8ªwt]z09 Kl`AK[ XW!O;x-hpF(Eh - n޹9yVcvڈA4gQ4F9@ U?F(Eh"Lo1 pV?Z 661o>!c\oQ4FшB~}""c:7F(EhAпzLJ |o%@CGF(EhAvC9z ,=Q4F("~J)~~_~%x6@|EhQDlٲ|ћoIBD`m3F(E#aE:{TA_80K픠ڂm+Ar%%%bW 2F(EXo۹;,<,4,4 0(nú[6WGO42|W - [4?|||v h歛AsmIq DL@ثO&$EhD[*?9s̴||.^x9Hst,{'g}?uҵKյ3瀎SeUUˁʎ?{_~98ؽN;tO/_|E` 4iʤ>z*h][gO ֺ𮏯kQ4F|III7 G.Ax񭗷׏''N D>b@7x{{s---mϞ=d A8hEh{ a+K_8钲 W^Aj:@ A6??uq_|ś -S "(@V?hQ4W7~a``qssANC4={}v^Ȁ!Q^hEhЪ cd`D -(WO/w;(8(,4 R{?ݝEFEh gJ ؑ"a9T _h3F(E!W?|111OT0ǎKLL(ޞ}2}VZ^uVH李>s\s?gQ4;B~ϣ.]9]:C?_?s?~N^Դ?kk->>nsIS&A8qbww7(X/tAP|A0mڴZT?4` 4-oQRJL@vicX@?YݳOyeOXɉхףh_ F@ۏo9_?3(CO+'ƇGu{!$'=z8p:ёQ-,-||b||ݼF FQ4X ~N*,*y ΟKOھ{; _fV݇wI;; u!!RFrsw7X . -wëM[7c -X?uIJ G=ʍ+uquٲm P?K~htm 4تȪVP ux:hp29),9S 7M;d2'ȹW@LX`&g)M V@H4?n;DTm, >y6t``=}\Hsqk=;2`9?ͻ7@I`y=| V.kl^t^aq!12ݝshZ|+lmgϛ n%`IX?u0z-7/ RGKJK Fͻ7[[8sL `DU} rF0{z%`Jjʛo DlpLl7S4Z[3qϟ߸yCUMبD~f̚q R -tt667[~߿;:;MKgٹK. 44GWWw¤ :ݭbCSK!cn+*.ڱkĊe=$? r*.![@`=mR`? "E1@M.Ăg͙eemtXLl w6n8Z c^/k?c`oز؝F <I >^Q` rr;@ H=S2Ih3 T0OX.{ rsH1iҤO?e2kϮS'^6f'Mu~NθqKgo '篟@d.\%$&tV\Ϛ5k Z ϲe "^~ ٲ} *փFd / p?'0@7o*`{1K -Ah Fl X Ch3 Tdm嚕^=fgN W?fL{ATt/! -)=# Zy=s̉&~S|7H -,SRS>~s?^`%oe+%jXx7}bbYOR*|o{=ȋ/;yE033!ӴV]1:Fϯ߿['Nxu Ulέ[;W Z@(,hU?=}=[ZFr#ʷB'}p7'/X;fz*#3XKڗW XݜysJVVNփ'X>z(Ou3bEHS/Мol۹ R XamiY)Z`.*526[WTZ4ZDfğꁵ8$` _py`P߹sgz|g 4{scǏ=y?xa۫w.^xyHiq '(_r;=az(Zc׎R$+~MCWoWSkgO!? -8yEː}Av`=ǻMl;`!3Pomm>|A{ݾw ΀ŒeK%dXMd-~ὡᾃ<s<:m:'ˏ.^@`#V.Yس#&هO-EvhPU?p'AΨ.f??!C>oj=;lm==)!)X1@*Z;h2D/|r >}1.m!ϙ?b|-4 f2k.ѣ@/| X k#Ǐ 頭~ cn gN[>@T@5PZOk=` ~ 2yǎBs}VX1ت̹А ”.@hǝ , ~_3xE#U?Q1QCG##:b/KcCBc JHL " @'[Yini2m -ܰf`(>1'#\'~ F{?h1bbBBB<<<V - JHJ Fc 8p ~ëׯ<<=ݿGJR%%%-[lxB@Q4ѳG ᄀh{w U˴'G[^A{$1 9Q4hđo'OoLt@[J)t("&;; K)1g_>gdf޳v)oߦBNp_!ʷGOefe|EC Amzx]$G:~3Ѱ@F@k͟??ekh~ճos@E -[Ϟ?#{l'6.y9ZϘ=cIYx @ث`M[7 u"?xK?''++FzTAӣuf֧/||||2&I~h_77<|1D Ls3a۶oKJI -t#?|A B'( ޠxhT?-m-3gͤ/vݼy395c,"\JrM`h:zr?؀hG8ڽ00C. ϐnhT?Vm?xB 9甔 E,c666Ύ~艆zp?^-9<"ܹs$I~҃;oH/=V`ႊAm"`=P~ξtRrjoMRO1u,# W7W5u{ 2r0ukGAACo翟>%pp8x䩓%' @V?пx :tG9A!Ax R7V?DCyΝ)n ް:cea IhK/B 2rh HV?DC6%LK;a ;w襤|hT@>^@G2r翟?+=.~}#F%@6U!W?.΃'"hZh(V?]/̿pmE;guD4ZD(lmoRRVRUSቈvp:y@3݇/nݻu=`K4kɃ3ADBC3 (kvt? -q㖍]oޤ@җLV?#V?C 4 [.@lkX̃4pV?CV?C )ӧ>d)&֋]JJI= >jh#G4Z@BBC/_f`v?~[zɆMu׉ ""\wV?#V?C tAt&_?O?`ߴEZZ⥋D@~.$~V?#V?C  ٸy`v-Н} - >}`sŁ]◤hPM] P`! ~F ~BЅ+׬V?C©S%z{zO|a kAp &r! $~iDKjd>}tfJ7ڏ6\IgozL4m|2 u -kW9`; vEjPX|(`_A -a D. -$Ii\Lg"Ed2s̙so3al6 $Ըi^G _VT_3vTTPH-* (!Nh;Ŝ21]-ڒ-3ԋd8 -|Ҿk;O>/F@!69ӏװF.Ѩ`+ piliRR`^, 6`$3n`Tv:hixFO'0@,|[}q<>tϿ_RVj+&mSPQY˰s+D-Vv岓e#eg@q\{*l`%٬$ H:T/"!]<$'(zB,f -'pz^ _[Sy jB'ɵ$KZ愉)[FvEO5F_iB(^w%QUb?),~(q -,IOFn 8iq(7~g$b?esՑ`}N&2|P.EIn #ͭl`O?ۤ'GUͪbft8JyVm'a E"&- -R@R 1@=d:%$$̜e(Tk0@3J#&hYZz[Y1*\ :UwNcjD'$C:ggαH"~!79FZ0)]Xnk.|UoMq@2aE:wgk6tơ…2 8DE6EP?+AO*ƘR{$7;ŒAO1|WЃL ghcQyxu,#(ġ21"VǸ.ӝE~gK} _\n^f% Xv_;QT- z2b2ѝ)how[ 0fc2_g6K;FOOPE.`i>O]k*_ s*\$?ޔ<3EjDjLpL*^> 3$2sz<>7+yʯζѥpˣKFt҃{BnŠZzq֭[[Pq@z@]x=롅@߽ww %'8r`І-@V?h3h3А~'޸scT??`kd;6h FhZhZhHT?zjFVƳWϐgY9iGWǼ, *@4Z -4Z -4$CQLZ 5gh!FFP|HL,?~9h~ghghvhW?4Z@BB~h!FFJ3Dh!FF7{?GuATsr=t0 ~gh!zV?oy9F;!z=D:sw_pB, a 5BAĀ5cǎ!9@V?h3ݪE??{9 -hS|xPd)k&n޽v>1ջW_~8B _,Z[! O/HdX<T٩|vdt ^~gh!T?3{'g/gAZȧA3%#c6gޜԴgA*1T]c[6nPP3vP10x/ -֋ #oݻ5t2BPU -= FqX 6xө ~O:p@||𵒐uWo_mܼq%%(UU]|򜜜m;A޼{>{ ~jV^UX?}t |JzV͛7 ~|{r[N:Q\ZwEK}maaSN~93;sǮ11ؘaVhiiDJظq#rʝw?y|1sƟvƽ! nji4eH~h!FV8}":6\xMKkˬN;V^!++3m &L2qڌiʪ6޷X[7˻[6645]9ىɉQOVNcXVY]iemV[ tqIKzfΞYP`` ')%T.[',<,'?gҤI_}=wvM]{ -V] [UV#h-`bXi=0aTU?vmS~Hٞ=q_?OJNjnk>|0ꉓ'ks+ `aPl^~vY~__gw'A~Vm-3`RPLnkoo񝍭ͮd`l[l\le{zDMpCU'eP ԲW<սe5sIWBNa$ƳR̊zYL=2~wm- Q' mhAD=XT*]^ZV모]]PV~P4k>̙3ߜ3 gf',J m095٠hCuu=LSQr r" c -7U/Z767M -xyuYE{yz!$;ߊ(֭-ǰu@Oߦ>`ٜ_p^pTCDS,!bo[d#%7RP,|PJ -T|:eYH$H=H恧g1$:|+l̇xo50l&%ګO䃶bA bsh?0]05u5&o]o`޾JK._*%%5iʤo@%ȳbc:۔W]]\ZjҒ+%(nnl>k:llntswŞޞ@cbml7nޘ,(A捎aa0uP՗_F/(ߺc+05itG'fg纆:Ⱦ]=ܜА5׼=ov߄3s3!y6oֆGTL̉S&S0I@caQ30_4_JZj9g&P]۳rM -l1ы.]h!E<| ϯY;\jySKӌY3.YX][ *uS Q*>$< =`ŅK-ƲhO>0UNiYK - weғN}kgw

.Wϫ"<_]g\~;=NEjv}LߧƱiW獵xrPt;AMC2}s?ٛ}2;~|ݼbfVJ``HMw-ךeD 0~G y쬝yٌ͘&#ۮ%y+{g@pmDZh @zi- Ę DVbR JBiRT1jg^EHHf㝙{9d8oڢbEĩՀG"s)Eڐ&r*=,~bPhZ!>CusG0 -|ArJ67i8^ǂ1|] a2ܛnտI@V/- JްgیW'! /_gEyI ߥf~W;h]$-@B7! -V %: Eb}`ap!:EXt̸;<0'/a 0bI1iZi<6H+4DD29x=olj:眡ގHm EDr h4Ujnd`x]tͻHʶI D=$Q:I=~~|!xL;˟gۅ<ܖY 3:,)O2kK-4a p!ʀ 7QO$3 \bșo@5)S& -~#h1q=ت3n߿ˀcr^'3Rp]a!ъ|p</T lIAϽs4Z@Ԫ~n;GqAu?%6NGlIX M ͽ}4Z@õ>}z꽇v5]4Z -4`LA^?u@hP[nA6C3}իWwvwcl*RH 蜑EEEȽp? r΅5tP盶nڱg|F~'5Ϝ@ε$ ;g< -(`A B)oLMz(Ƥ5:xRd#f~VI4&9r.fkh6Ѓ;b%Yt~Qw]潙:H$1ϔ[ET^?(0 t*߁n>L؎ +Kz#N2%ubg UI ȣ_H]#r)jƋ<*p31'@h7Q 2{i$#gp< u?hc -پ-&x.XվjB]`L6tC#ô\-x2 NGk益SeYx<&dh!(~w&fdf$&'Bvug ޮ&=3"(8($,(XY]}v`ZijiZfeWOuQiQn~.0N9 7%5@嫖,MDCwh¤ "`1}tC#C`oʙvĸ~J - <3}0W?" !<'/򽢪X[e`|edx;  Ir::**퓦L;.P Uh>dhlƲ"6&v0LbhCQj_f͗/_N?s?? - -8xM`Gu媕}}}\vV#zQL\ 0IAv@Nn -,vTO_ǯO;=;@t=t/ >  vRoo߿~8uśwޅ;5h>|q#bEUFVƆl 31)>VTT4ydG`iԴT`5RobP -!Rć~~ -& ́W `ǎ5)&NdW[ ;` ޽{s}1e ~6nX\\ e`ic\| ]]]==D{? bWl9(sddeBBCV^wyHkHm6`{xRSd#*GH~f^" - G711RRR()% tDعz0ZA Ia m($( AZE(:$h rIp>O_,<Q*a-5@%RCJSXL(;B\yv{~K0+A9\Z^ -~b`-.)fX`|EEG]z 1}Pc[g0GgfeĤn:<<)ę5}&(͙4eav02 {g @ 8eE(taͧd_u1Q\rkw%~>WS|Sn8ٮ:zy2-cRc> 4*{<*R]^iv 2{$MnOҫgs>h݉DGQGmjb_iPJsFhQAW{Grhbl;LBT җ ȏ0qb -_[g"w+@OJk.aAEA[ۊ}~vC[ GO+A/ -h /j׌$(owJߏ"rfKfDoJYe5ɔ'-D&ߏ=$UZwe+OOE7Cعeʛ:?%=Xgg4Z@Ԫ~F}08`D_33hdCRB|  FhZhT?h' tl`@{`/M&-#s-h!F9,gF>nش T2>2 -40Gf=0.޻@y@o?yݠ#s Ipx==='~O:/E@d|篟O^.ɶ6`) ttw`V?N@ݽ.mm 7)% 5f`\W746p& y5&s@4Z -Dx?k, wߺT Xf^= -=vts̽uօݼD@N9{]?y(xމ{FW 8"x珁~ -h%˗L>@sg  A[hCV?C e3Q l p5;!hGy}æsS RH0ƒ~$"C{W?m`Pt!? sh!FFsޭ``rB爣pwowO`< FhZhZhW? f͙U[_;8]H0xO>,C4Z@BBpٲeօup% @V?h3h3А~-Y4tGFFGNhCV?C V?C V?v`~vm9 0ՎP@դj'vjb.hu| U+?ɋ3>97=A]e3y qUN[TxlItH~v<h<,bƣhL)3Y Tvu LA~ bƣt_o+0 ԰k2Uiɻle5r&8<^ǘ=24BƶLyMx)Ǣ-kW C玱ӌ@ wa/DJMbWePQZ[2ƓYp+ ]ZKi( ~$W{1Dr^|XÂ^\ -]Aqъcц-CBs%`C2=4{h(O)I)\\>6Di4a!{O`%JQk Vl@a6D"3¤`+laO&g 6h HRlX3 Фg*'į=H[Qфdd -1Yd.vC`pH& E:J%AZ_U$$J.NڟM~y?&G.vvl7D$ BgFKXB \8@f::7ϙ|hjS'x(q[-i/[b-5_x vN1kI̿'nDF`3&ot-zj7Z!ov0-|zۭ+F%C5 -ѯ6nFi[h@q鰯x4)\F`cTqTgqpDT45EڍGJH4Od/Fwn%>Ͻ1=u[Lr9g8{.VFd]|]0: #\ڇٯ3˟}Z y,iIaN1Yh:vUC4`tI&TГ!>F9u@4Xs2m~|[߬RħcډѮ$ݟ駞`fwl5\?H;(!wYem $֦kA0֢h R)R$t$t!TiZ*(r!. -Z,\˝Uix0gsܙ!y=TV:>(Ȗv;~_^v揙H-J2 -K,=(QVY}#q4QEņdM?OCχ/ɉl6+]3H$RQ7lL&#_k RK -xk%GG|NbL@lF"F;O, ->H,_d c+:[+kS\ R H3u}`!64J,$#ƙ735z5ծ;I.)<ϥ9ynTgcsX;G I#lh{FL%.S2\ -˿vZ}Zm)Pe0M -1SbRF۸n-,?ss˖1t iZU>#H?K$",:Ѩz !6N4vOx<@HV }!G+uIW{ ِyCOBExFWB:\Eg]L\nRa0|ֳg!1@v^܃²'J!kZm -ߟg<>'.r[Qp=ňl82J'Ф< ׷)"C}%CzCˎ[8BuYV &<L&&Tn[r Sʹ-&\ j72!O,F7~ -An WXF=!g+L F+{hq٫ 0abu]7M`]F;RrG -z۶c|n;#e1ҞZxV9ow`  xtDFW )Я|820>3T==~|K=@3`“ u Mf}>xh3h3~VY9 T~~ 5KQDsξ}h5GDBC)*-Z|`v$&经||}zGww_b=< T?Rˏ/NBBBΝb?Z<4Z -4$`Zz}DdĽvf 64lݒo^JII111X pf!6chZhHT?|:/ ֽ[C;z(h;xxx|BNU"jr\_V?#V?C ΀k7Qمn=thEii)CCc73h3h3P~3' w'rΞ;0}QYYY[GDVWDF(~໯<:3s(.*޻?݉===ehQk[+dem3b |Ϸ_0Bh - - -wppPPT 8Ps΍G<`'NH;A}r)Ӧ|@a~YǷ222Z 5k KN U?[.ܕg" -)Ӧ W?:ڣMЪ~Z^\\<$zرATYtՅ5V?#QR@NsW?GNPz(VsN`X]ͩ׮.-/9û~~~V?#QR@vëw;M~ -*.Zr`v-d [<|pɟ&_3bg" -c9$4^ܸ}c4i\SPT0ȏT?rG"`A +={3xADW?E%EGVNhh '0?{<_~d2ݝzzʏ`@8A=I8F(~@~.^8FCYvUSKӗ_8Б[oۀVDmC}h30*(* gbdU@f޻;8'& .LOI%3gh!*V?tZU@zy(SJj ghCV?C QX@'KHH:;.hU?Nϝ{wo@Wutwtuw 󀙈@~KBai*'^8p 99yH:*h(V?V? - O`7bTXp;Czgh…\9}M-M@:w*)% X [~|Kp@!BT~ܸ2:C4W^=O豣 q'i@a~Yݧw; ADW??`_FϿ~_l`qҲvH~htphV?CQEtCC8YlϏ?~g @|#BPAQZ@dfӆ/? GNڸecUMՏݲIR@öe>>>>|OBϐ@g %pnS"Yɳ'Ϝ?sy;{_|×3Z !4Z M;vPVQW"%e% tҡрLL$O!M|)I@ Ϲɀ ]Bϐ@htC%.E{|laM:`%|$8, @ث篟wtaM2ᣇ̣HCPA 5{ )1=;011V?# V?C3Taq!r$~1Ti*|3$*A4<`wݧwNmhlgأg `*<&' =|FfƓOjX |I' "pXrĐ^? GA[ZjP뗉 FV?CV?C&`񒑕ɡjjjy]<ii>$I h8W?=;7GF!y 6bѿ Ngh$}/ D^^0 ɞ~~/C{w,6PKv8qb-x#i SxdfSvHhbZhBvnC^G_@ o$-=yV?#V?C#ϯ1L -t-;.|,kO/A<@ùv={demLdObV?D%ŋ2 -z{{kj(16?.(.8~8́v}l@~(T)/J('^ .\X^^N-' RĘ6ssCدo?o< EtC+׬ ]n5y&S˵tƭ֎܃i vLa$$"mfn3}@ -n^5(4.mmJv$ddݺ{ky9 -@ث?|?2*]`||B)q AEWQ}yAIJ3[wl&˃'g"ѳGݽ Hu,0U[_xQ팬 `7`Zq_x @8O~Ysk3%`H.50順W?ψ(`Ŋ~]w6{'@?H<ՅW?Da굫E4Bpp~v5=2膀Uqժ5몁/6E7/,= hh^V?H48HU1o?Saӆw n$U?4Z y4ZgV-\@@֬]_7`>|J|@ϐG(hV?p-\Ͽ?A AO? ~W?DhE# > -WY] B5? #- - -o?% ϯ}z,C*BM[$و!W=A$ϯ @/ ٘,B^)F" 6 8֔A@CF ` ~~je+\* &~Ο?_[_[YS7HwV.PUV|?1Tg|M8A>?~(r` UA -Px9Hw܍ PAdOه - -,(,+9vP$7?":\!533τ'&%&&*ݖ-;q@&e_ydP>1}O Xw'IL_d7HGŁ:(Gk7efe ~<Ĝ2J _h[׀ZzZ`2jnm>"rЅlYyٓO0wbU?FpEs(`ąZ9ٷ+i?`޹XܳX=[8ۯodA1Z4GN@Y/ggssP )(*8zK+ˁ `"W-|e朙ϝ -ܷpB;{G9~Ȩ-۷BU_ixYМߐT\&»\ȉ C_>S =P~ Nw[GUJj -O %wܸuؼ8yuTLԝ{w0Pwm+ Q%{J/§XF/v2ZFaVSTK$VdV`d8TI2 =眹g`M}C[Úq~?gkv?̢ \49)|^6RW\7Uf;҄=O,E. \,)MI,8[~6P?`2}`jhEEC<'@h@DBJśw! ˩l -xx| W `@A|^*S=q^\CHt_h4j)`ե奓SE8HWn6ds{rAEl+1˭߶S߉ jkk/=Lj檅Ly6kkaq}ҿR {=ay9ǰ#Q<'t:A&5z`AŢӻi?( Pj֐&L6V;al6ϊ767CvnWHD>Z* -f5&uKntKs\)ugTq6=ffÆ#Vf/&nwmi.IfӑH"Z9ssĐ8PB "s=)z].߾v;|I? W[\-{+}Sqڞ.jM҂aFy mHE؍XX>}3.C- _^;:OΉ7WoP{oy!)9j>rN -ht -e>8<B+AJ{ +mJeG`a1t'\OqFu,Q{VEQdˋ΂L$7~==*vfـԜunŽ:B1`Cbmr4U=3RWGD W -kZ.y>S6l%z|=}}/fWޭl6ā/=-hL"}MiHEVZ imf7YKd}M9Wݕ8<j@EISv;@9C p8;`d#܁`Ch0kXL8&V_)QƥRsb6D?^e%ugFߐ_`jӅQPڅ -R*D TPBB1&N8N&qBCJk{O܏s=Z= g Q"x6@%GDҷs6R%X4;95n%~)&VV=t|Yas"~@/$Э׫u -D2ÖmUqUF}m -(~Ψ8!jN=s6-&cocɯI0ӉʘB7rQ%~C?sAݑ%b -Sq,t 2^O#-YEQdh-9F$MoфhkNr:ta^Xb^S7I,|R,~kUU 7"RlU]! -SPVh5ގ]뮤{D2B5.&쉟eP BϑhZ|iS~` Z0'< $$ !O]%X3  k -<`$nvg:tCٙٝޙavioiƶcO# - -p"%zNjc)=˼+R]&+|Mی]Q?Wh߶Ci6A<E@Gƍçu=BCɺ94M zg6W -U!^fC!Zm,F֛u)k|gގnC%(M6```afahHdHrX G F D$ &W8Jݻ}߽߽(pU{qS)k5Ν琨}:GX%?sH8OIpzki%YV}"?> -$ռ}. Z -B$g&WE~J1l~Q28}f,$msE:{DV*"D~΃TkU[uq,8 Bm #JjC;ff.?rz @͑hDv٢RR%*$ϝdan{h2%?1^7t;ZD 薬!v M) ׌P H ùoI3IҔ#?2j~ݝt4u2KC\t*ʬ_~%{g0g''Rڛ H -rr#D1[T\ B!yw~AJM8 XB˱ìnnus#4@4|?@"ovȀLmaU .*" (Xo?EӷO,::35`éZa-;hG7~p!xt1xv 6:16MŒKBp@l}_ Y -?BbYJ]ـ@W.gRh `SZ^{a'GD}p.x血‚@C/5u5ɩɉɉ!!wn'2x W?^PH eG̀0,[2s OS(EģgNBfj<  f¢Bx`" o [oϽ4r,XۯoGNr=<:ڀUםw H~13qͻ7թ(0@P x(ϠO: -F-"ä>޼ruwC9?x tK׻ ]u uvZZڞ=|OJ@ -[?? -edQD^o]n P01)rߟ<B0a҄IS'AC6ڶsRI~V+F(Eh rJhX3!5JBbM$*N FQ4F(n_vo?}=m4HR@֗;:@ y9n]O hzQ4F@m-@Ǐ:))%iϾ=A ==_{ 6mZm}-}yן_|::7F(ECA-([qͻ7+* ߾;7/Xu%}KJߺyb`U7@<{Ad/EhQ4Pm5>tvq^aؽ7n -x"\p)޿vLtiN= Z]0F(Eh`伮4D>U;U9 FQ4F(EhEhQDD@V?hQ4us?~HP~F(EhQ FQ4F(EAg~~|  ϯuתFEhQD$"i FO=EhQ4 F|EhQ4 FQ4F(EA+ܬ -@Н^!3F(E ǯ=gb  G~e._߀jQ4F G˦-=H¹͇7@S - I:onQ4FDb˖-cTۏo^8;ZQ4F(ƒ 'g_4 |@rt(Eh"<Xl޶IZZkT?hƹQ4F(Exd0хףhQ4Gg}c=CXh!r4@UܣhQ4Fg/y%'raxiyiZzkWGwQ4F(BCaמ]]}'~@~~ tv{UrIIgtBhQ4F./" Q8 ƒo@^*** -C U(EhᄀuωS'}F4 -@EP:tV&?߆MDPvkjǾjXpeblLEffʯ3BD_!jYjZt_%эqg|%l2]t!c;bZwNsWײ)6B}ӭo_/_~۠L$泊`80G1#+*;ENbt o%Ej[$Er:`#C߱ bh,O/b|0WS6U)'b|0phgtG QqDȧb|"a3R'`擭!9K'Ũ]>(g"pOmFQywI( -$`f N.M`H  X(5!CBCM -v:㾏sν rQHGAB:MQ3Ӊi SGtYBp|L&b~),,uA| -Kf)_f͂Y?}c ]LAW/6Q)P+ϝe}ٔpgCS2$h\[yBsI9VA2Cklm*-B5[cFV}%3 6,XD&ܤVIF[)@* Spv^D E#mP[шlB5H^X -aƛ;| -@'hK8 -6Idi#|$9bY -ao~@(=} bQߺ%]XQ8 XynX-c$RfU[!'K|H:_62FJ؄RIbS>/׋4{3aa1ZEEUrnjmIᵧv4uMF'm׬eU›JJ\'%g{`gs̲˾bzTjd$E&ap27A6I%Z 0X(!_+:XĈp٘+dُ VC.d/ ޓZv$K?w -9h/@Q4F(@(Eh@4ZQ4F(@(Eh@4ZQ4F(@(Eh@4ZQ4F(@(Eh@4ZQ4F(@(Eh@4ZQ4F(@(Eh@4ZQ4F(@ GQ4F(E4E ֡ -endstream -endobj -434 0 obj << -/D [432 0 R /XYZ 72 744.045 null] ->> endobj -435 0 obj << -/D [432 0 R /XYZ 213.15 244.151 null] ->> endobj -431 0 obj << -/Font << /F20 323 0 R /F8 319 0 R >> -/XObject << /Im3 421 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -439 0 obj << -/Length 2629 -/Filter /FlateDecode ->> -stream -xڭZK6ϯEI9x+)W0#VIBRqHJr"@7X7pG2L4_|E DYr;ˍ?|v&s7iME>M[-~wydW内~MU"U*h>S2Q*Wq.twLɹ+h&$UCP@hyZ}ӲھP>aTVMklon܏E {ȵ9JFQ*Mrv|".9ͳn$T6/!q,ؗM 4$̛S)[ -iFp#œ\1Rt7o{Kr\YCpr^t~niR?r/_.L)ׁYAYK"|sjp n7Ƴ3#Hvb[= Ya !%mXn[%jn>"a,<\ -\ Kg2uƝI̚ew>ނVwMr?„|^բ CuW֟&/A<~~0ߵeC[-զzW}cFI 1RUe ;x,6E`B%E]~:ϡ fZolöp26|rom6p3RD iv (ErTF98.9JcG;P2M=6[j,ѣ/:]qO2kqO9rk$yLׂbjbn/`tbr@e-9n!DH~ B$EZ0=pӬGFmwu$'7Puq HTHpJw^Vmӫ`c p>iu)D|P+i|]viJ?AׁI|qYoͮN1)%~G:*\ h9f -dfck ^[c'"13^r2g]{4)B]!"B}mUJ"Ⱥ?}7E9' %Dg#A6q5dь^do!64-8WV$0ݪ0pGHiv2sp_sxJ,uxf;Lay~ ܊Dj=}a35v`~L4ʙȔ_Jv"kB"3PAa,&DS \i -F0͒LNʜ$P:Œ'u0""l0׋C,0Oxj6Xljm/*=~%O_pC`2HJ>+R5Pj .EN+)LO0u&acaRBtQS $~{jiSPTTMѪ92q Ā#7!J8@`q5軤KT\}`uge$grɉF}Z%nS1&T$F#>PS[KIvj9!%B5 |Jdȧ"J;Ppb4sTUpoƸ)e`")IUbXc -{}VGrk-cO+Y6gl3j]4I&^Gc/ҍWB)\&65] -rSՖ-eUe*tdgɒʡC#Εʒmq 9t } {%jX_`Ѷ _B#@ P`Q2O}DzDp4UOTdsrrRD?SR՟pJ[xiuASo/<.urE=#I#BHx e*8eο-}VgPAߐ`AMQqŕ⍈<13P@@K rX95juJSAwxFSߜ> oNsV $:Тh =h]= ~L -HjzL#$I^CGJJW *H3-c$){E!U?P?{ǍqG_j]WZR N.41؎=&$3u} TTͪh A LA X~)^5 &+:unKQֶ#zL+Hӆ.H`L&A܂EۺQK\d`@F"ݛ5 -S)tqzs06Ͻn?:f t 24=3Z S~[u$h ;=TG./@FH'Gj Ƅ)1XطOv~BH29N?) 9;rR(/B_:u??5~ A tU5j޴ж݅\DT#*p3k{WUyqcɃ.)-Bݵ~D9 F|äB(ĚBh!-yo^cpĽxbթO)܁75E?3 -endstream -endobj -438 0 obj << -/Type /Page -/Contents 439 0 R -/Resources 437 0 R -/MediaBox [0 0 612 792] -/Parent 436 0 R ->> endobj -440 0 obj << -/D [438 0 R /XYZ 72 744.045 null] ->> endobj -58 0 obj << -/D [438 0 R /XYZ 72 710.559 null] ->> endobj -62 0 obj << -/D [438 0 R /XYZ 72 304.012 null] ->> endobj -437 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -444 0 obj << -/Length 3122 -/Filter /FlateDecode ->> -stream -xڭZKsFWr1a@nNlo9wesHR.J-x!=A<ų]u!,DǑ??Hgi;?_]|+YeVՆa(fv>O2-*Uuwzj~_Wh5MQLlQ.0׺:_EUZzJ\=u]|fՏ/ߦCkFJp-fahE|+`RkřBCEZX$cLRw-1@ |3e7ph͹j-#*߆3E[mU$ʚyyy4*y([:l)2aY=lZ [+K1[ [7}LF(S^xs5sHtf$69u5u0֋S.lb -AjU,8-pjq'1Xe;lveNB$ߺ4f6l{>5`޷{sұ@XDc ױozF*/ucIV[eR8) r.Wqsb>"7.҂.Z`LG>"eUˉ6M}fkD,"q##YPvH|B0(Mz;v9DLlFfCE>omx }Z EV3/jTa}*!-o]=iq6t2{tV2%bJ ʁ@̟teܺ0~i>s;b'bEefNێI&B';aRiƃRHҝ 1[O.o +/-쏪]PFyW2,ه1/dIE# -CN DKzjcPy`{>Gٸ~OiiϜǻb¸h K+xchZyP @ygͧ?&v&OPϦ Zf1bڧcU:XtS2o(9RnN92I/܄'Xwc !_{<t:_+;2ܲ:4ȊO^jn:%X _РٮAft -S}QE`|Fo=ʪ2L1]y:li}p7UsLRMF{qdcy:pH9YIae&b|]@! vΊA6-gb^w$. WAK撡 ES2]~Ɋ@l4F4"̲3}srrrWW;p:wߟ?J?҄=re:tB2M' :yYlmX7iin{^fl,z]aA?-PȎO8D5H(K1:HY$rQxH*x,8DqRnGYpZ u !,틑!X[rfmSQCevd'qXQoz=;8;*Bj2Dw\V_S9GWʂ4gQ*J3ʊ4 ς -H#}޼> )5zHEJgt:qM).!L9P -6նX[1)dg"2YoC8eSۺWWjO8;}Ag} 2/3znT*E&GRY1IGCoe΃T#G@=Ph02s}G 1R`sD>JCԅ~xDO#dԪJzV{ -}e$z:펰+Wr`^WFjPzy0֕!&RQV$sJPztUk׊ ao*A0# s$T{/ /GES+tyEhuaW -i`"TkwTY -+({'9W ߅W߽d>'"1D{ aw/Ph`*J*S8&|%|_苔PviẤ3*#N܈%Iq@򬼗Q!:񨎘6(r8J6B4:50_f"u -6$ؖA5㇂t&߅/hL(M\H6> endobj -445 0 obj << -/D [443 0 R /XYZ 72 744.045 null] ->> endobj -66 0 obj << -/D [443 0 R /XYZ 72 303.994 null] ->> endobj -70 0 obj << -/D [443 0 R /XYZ 72 276.124 null] ->> endobj -442 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F19 321 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -448 0 obj << -/Length 313 -/Filter /FlateDecode ->> -stream -xmr0E{bKQ / -D<;9. 3 G?(hѽA8k" 6*9Nʴ߰ѣKP"ϐAI`4]3_uHMvUIvz!XYcBtzؗSwA䬓; s =i ^54yY-z4)QY~4s-]ꋹ9Wh> endobj -441 0 obj << -/Type /XObject -/Subtype /Image -/Width 557 -/Height 360 -/BitsPerComponent 8 -/ColorSpace /DeviceRGB -/Length 42742 -/Filter /FlateDecode -/DecodeParms << /Colors 3 /Columns 557 /BitsPerComponent 8 /Predictor 10 >> ->> -stream -xb??F(Eh"#`@ Q4F(E#h=4F(Eh @ChQ4Р "2EhQDk@_M[6%$°ɵVVW~׿_Q4F(EC4XL䤶r~~W^AG@@d Z0EhQ4(A4XR]] >|doؼ! ś M W-1{ƥv1kͫ\Eh!hPC?UKEUz%t-.../["ffM6}GWOǣQ4F( {=$;:;zzzoݹ:V^T$'N8%EhhC]=]@dܾHvvwvuUffݰvEhhCgO - -޷[GG艣CEh"#DP}c=///d iܿ$'LDp.-j;%Ͽ??~͋oiZEh"!k=y`~Ƿ$ -Dp.P}-*e&1Xu101sy5557?z廗j xckQ4 C˷/_46Ѹ@dI\~YZ^ʀ8x8RKGKIE?|?N?F+Q4F( Ca&T -XYjXXJ+J{;42bQ4Ў; +*jhj6J QF<<""@h٢tSGhQD-@tB;t/\ћo #rJhQ4h(]Z:ZĤJ+K˪6o{sQ4F( Fz=_=_0Eh"z"Q4F( FQ4F(EhEhQ4 FQ4F(EhEhQ4 H׆̌ސ9l+Ȱb:B+FrȌd+V C@/hyn/޼Ͽ?!N72zБa tV B'Qh thBNl t܊Q.  46nX\Z\X\Ύ׀]Ϗ_=PPĭ;T+Hb:+FrV B'Qb t66u u M O^<vcv_=O/O}JXUT:-07-ee - OtZ1DIZ14FfDY1X!HʺzjxY^qVkc;+d@GIdX1DIo9idFIp+|]{wYZYk#O߿⩊{=4h@ff{r!2eQ4F( `ӇJFFF/o/`%k C㋝''W/jQ4F(Eo` RUS,ZȆ/j@Fk[~h%4F(El|bgo dcz=Lz -rtr$f(EhQ_?_ -@a^}<EhQD9,% @X>|u oQ4F("A/` 8aQ4F(Š`Á׀ha0AG䀡|}c=//w0{Ew(q9Y@=@_ 49 ֦_?qGzjːKx U s@Cg9TVOwECcDEEx3yr*Yqyn^nBbχuGz -5(Cn0pDҼ[q̗:!GQil ,VGWczbA83yUNSKۦ!3GS.Yq ڀ -HPh Qh=] ,:VX}],}hIchD2{t]̞G,\ "Dֳ{,]JA~6ڐ1KB.ԲRkjj!tXiw3N}:xa%D?2Ͱ'eܓzsϊzzː|1oߵǏ,: 53IԮjt/Y-B[ 9qlPw4+,$v-?Ⱦ//4M;ˊ*,CH YA O>5o\^Uv+ġX8+LQq&Ę-hBi$D0dq9LI\SAk حqӘLba oꈅЛMKQ%/"-DbL$DG%ɴ6B`~RK?GLںMJ]Hp\s=Ytg3ӎy|K3`C@SV,%Y0]'5p]>n,=^O^A:OH4B]qMÅotSr`5a *EO i+)j )b|=BIa!Y,! J=0 M?;^4vm7!'P1p:>TF!SdjOe'ZRI7-J&+elpdQSy:Mkl gCL `0•Mlkذ[//M -.Qg2Hxw=X8Pڦ[<& mDkH3!u DmJOx=/GZPB1<` V0VB)HR{4!P}b-&`S% HK?YYzdiaXvIߙfyh}_rg? ?qE<I,b3į=eEHp&DթG[!\pQ odR1Z-|s%v_!y2`jtbFVw!dsl70Z& TC@?/Vy:TBbѸk?{?+3z -wP*8OCRCNQ(3 s_ǵLX~P.-}cIW3T֏NJ̋Caf[I -8HO&t!]H~BB"taJJR]) -J憩HӂF 33;+T]5]XKXAGyW)Wjkr7J[%֛h.,~-;UFD~J]v8t;O\>gݵ'O|H&Yڢ i~ -\x ;N rt(Di|n2#p$LƄ>Q^VVm=)= ˩~ `^#z}VSd$Urho'G}΋"ڢ^34oО8FhQȊU j^|(R+?Rܴeҍ4~zϲ/2[VvY‹`Yh87z?_wM C@Y I8q!  $3x$ E=P6[&nHDi6l;ٝvB;4';m! /|N8%?U֠d\MS&*Ѝ#YI"zO=w"iqF/mY؎-_/P7ܾ|tgI.X{fjڠ8Aש_>1)yOL 9|uaG-WiwjP(|N+h%D6/ F*ױpH#zS=MO,윮#1@2#퇶4~~Sah3H.9ɽd$]^ ip8|VQs> mvW &hOgoТ^ 86rCqn!iAGDG:|z!~}@`0_*/QÛ?>?TVQ 4h#AGYh"ںskzv:QYQie=:}CNaNa"C~We޼y@)uu֎VH=6669SMʪʷOA Yi ,Տ#;YyyyC>zhH{a6E.]efԴF5u5Gg%.eeu%Z 6RVVܷbffv~ zBj""&Y Ť3XA0G'a>}Ot=4}TCVʥgn@潛r>3m4%%/ɩ - ->8 X121"AzԪ:_LA5 @CE r+h{v,4Z /` C%}:!3:ڠ02lپe8l@ԠIJ$?1?N^ D@6dm -wd@@C4N C ?Y!|:><d8~@-gh@bj *.-V/{FA:uҔI^ر{GM]'MiSsfܳ |-m-{*_h=D[4 #Љ g`a8G z/޼`fgfbVPyHWA#a a⺺@>E98kI ;9-Y ??ۏoA˾aAhN³3 F!ڢa4ϭ´.U=F_)i)@O`!HsO -1/o߿} 7#@% C_~]q*${?6?GF`}Ǥ+0III`ɀy? F!ڢa?5ysPC'.w An{-$&$YZYU5 WB{qꌩ]@A`kɋ'ܫ֮I X!`%@^XK <'H5 /`E!N h`#1:p: !8$ѳG@A nQ1Q@tss2 I -kZ:p!fahAF!4'᪇FQUWxڻed>{(#' B. ~@PTV3o@!" r4  ¼7B94h=$qqOn۹MIY@rx=tyQf y,d(?E%E?@aP/`E0oB' 4Z9 y‰3'>uHLwWNz@#dG(`r|Beu%PEDl÷w -rлOţ4yoxs:i0zIٌ@WhCp<`nSK}EťP1zm3{QRQzRXi᪇:6^^th=4 {#ěIChNWm>]~5|+hQܚU߽w7"]z Xg\qm+>V9[^y^yWTVPTk̒ !)<Z@hАF0oB' 4Z!k=hzM9@.~x UP zנ z>hp潑AFUݓOJUuP zrb#'ρizhH73LuM5^z9;xyyl)=G!FHN h4)sB1}Zf%*łzhH7'43d`ɉg C VE^Z*zS,V3 xB^^HBV\nXaUCROgVP1"ȳ?Z?"ȳ7X1D䇉 AVN2g##0"Ȗ[m\ )+>TT&￿/߾ă -৫׏/޼H22@= -@5M@nܾ!#x+IX{tOZFHB'Q?1<$"<+R&h t-v0$?L,+sA:'?̼0# -`\jhhٷg Y4;H|!%lPXN"ÊA褑p+FTSPT/̇܌7fC>{Jp /4˷//߽y&Px×RYEd&x& -P # -@6D~ĊO> AVCt^q=./aN &`d ÊC#C7X1D ӊS&&$B!z&?0#ي!\@u)dh&' Gkyyy , -B^;@D/߼|ӗ(hxoE4BJAAA F=7/~+='t+hxoE4BJAAFHӹzh9ɍЛI# -s@{s(7F!O F롁PD#$7BoB'(4BŸ@C͡FHnNQh? .ޛC894 :\4Z 7"!qzs:iDt.hxoE4Br t҈B#$\ph=4hAAFHӹzh9ɍЛI# -s@{s(7F!O F롁PD#$7BoB'(4BŸ@C͡FHnNQh? .ޛC894 :\4Z 7"!qzs:iDt.hxoE4Br t҈B#$\ph=4hAAFHӹzh9ɍЛI# -s@{s(7F!O F롁PD#$7BoB'(4BŸ@C͡FHnNQh? .ޛC894 :\4Z 7"!qzs:iDt.hxoE4Br t҈B#$\p_~] yyy d)U 2A ;TN" -^ - -D_DO -4ob:F;VP$`gd#" r=i Va #?O{}Rɱ2ޒbd [Cy{w}ʜw1kOU۵f1JLU%c%C(l1# 3RDGI2Bz$tIdmͶ O ;\r<9m.PV?@ۧM[76458:9200] t%bH RSW_=@z@]XAz:8T+Ȱb:+Fr d[ZafnVX_VQï?KfU@CmsyxxN -Z>|T$UTUS_'R@@eJw"녠|HuaZAzNK=V+! ZA'Q &`d -dob:;x%VPmmmN,!յ2 ^$`O:Cw;wtw<~N<~Z^^HE VoX 4$R2IT" ȳb@"<+NJA$ I~XAp?U$,0r[oV]@ѧoo5Peu%֍ۏoE.C1X5xȅ;iE3IħĕZ/'`uede|(EuDr=vwo@A"穀>ߝ_/_TVTZYk.HЛFAτdoسcxa_5 5@  ~:xhjk IԲ矟!`@567' ADZ=ܞxc0H!u&MQcFC$,zM7xs(a_: 6&ѐ$H@X7^aϾ=*@P]WWVVֽR 1^~^h22lڶiC?EƖ[Z={Mi4JC*77HpW &x((@a n:&0Xq b!p0\'J2$J20KӷC/ dP5#:gGBZcU^`͇7nr~N|SDl=4b5@ "(/LA1)q5+z=&w O22l۾mؤڑPB⃪/;B~"`&@YI3V L/^䴳e DT=am\ zw/߿O^<Y1CоNqF}E%E\?}DF<"XPS^GO)fGy2B~!`74 jhkׯa* PP3!`t"%M#V/߼| ) Z0<Sn8';a Ґvq{xy?uW!^U*D^NO$@ m;Mzprr[lll -@ddUeT#(($)h>е@7c #ЧF'L!wˠ -{n`d!8|hrr\\]KijV ڭkQD mݶOOLJ+B` -{B@t'еZڬEk*';I ҐqG$^U :TVTPX`bjzjZ>-!B -G^/<8ZCCS8~C.(A'طa.^hCJ_>T C@ܳjmmErsRa22o`.G:lOa:\`` +"sx&1%H4]X 'H y#%7B~ 2ayJ4Fх}W][pɐ=/?TUWBp)] - ~A@Aвc}u$bL3OO2B=.y3@1+RSGz^&5oZڽac0#OM~R@HvbxLnI!ZZE.Ŵ,<('5D(Ȭ^VH>ꀑZ 2EUq$^@4H[+о6J6Ɯ(&o՝@uWev~]ue[5A(n`m8i~ #3@i ƶbx;{{wχC30p_ƨĜ $6O:s$c -셝EG~GS"Y8Is{);/;^{]2\)wi,ZSt]ɶ1@`LH\3C}HjQsw,T-lJؗ \T^(`xr,̞-:X4?[(|?S&M449pC? ⾺pNjUJei^hC#ہ(R@HSi"a_k uKdX鯀t($ V!1A6(w{ƻC$}}>QΥ%(_z6m:3+zemAFB ! -""Ǯ=\.wΝsug6{sMׂWO&,NAF%bV.uCmEPܒWVk՞_Nɉ\USѭWFXf=j~3viqJ7]L6#Va-E"ÎaIJRҘ0Zj=G_YŃB!}\'3,n:e([ф-= woз%R@S) Tm}NG[W3F27bܔ_.J9_Lp4zMOce~-_; ebX& 9M(/>=;u:,-kFςBI+ԚL],|~6 ˝ew{3Ys -_O}&U`P̘\>'SA^b -CuZ#ǃfmnx;b~}>&SFJQ5j;Sd*h/pCke@Z* -詛ƍpWkjP-6v8NUUbzY-W< F]4m  d j+3CcRln0P`8ClE\Wcϳ7fL8R V_'>0"Km"?z֡[g6<aCKKCxGU)NW^WhLPW`,lE BP"~x`c -EAa$߽{P|,kN`#-(IRl׆$С\x^yb!F:Ig{ C ")Nv;xO{xk#y;hdPHv)O ;m֌K3(kRH*}ŭƄ.ex yG|Q/&]K%C "BH|@: )^#urI0`S'\P<8V*wA8Γm ]iФ|;Iwf~2e)Mg;ք -T3 RSw%EU%(ʖ -!=xXIG*OF KBa a7dfg潷9'6*kה|l:^wӃ@@gM@E{[nKE 2J[$V(0@PI-z藉 ^OCF n0h0$aQN78DXN#.1r 1Q %t ^ǡHkGA>-Nw]RF䲰l5cT?FeS5EֈfAգb`Q$\^m!afS9لr;^w& s Ԉ9L=NcⳠCbqhgX%ג0)v'K_A^RB"5 (]t1A!LTӜ7~ۉaIaP$/csxwγ=gczo'}zl(ad@J\טTtgd*wc(!+ vMB-`VJD71[啭5 ֗%BԽyh\= ׹P>d3D= s%f8Cڙ%>:I>$8.Y._ŔzNRP84!5, FSVx&[p%eN4rغnӞKCi42rP(ܸ֙ErήA -~R] ] ct.72g5dtaNw:|^- LTYwTEw -r& -;5D4E18(@^N8͏oM(f=$F$Ďm@pyePy4A}1PY4%D=lƑөAB3ӷ/WPvgK1 YX~:mOI Th -u%)q@.6{O$oF}K݃$b0eC@,ekTV^-Cl8]硋r=D;TY\߽F篟1WS"*[uބ `" s$=EO%H;- -"".O!mhg_Pvv!]`.ZhHC5#p@dCC넫*W*.uM]ODdEa~P~` ȩ W@?tF,h+"qjh 뤔$ z+F2Bf[DLxKkjwP Y_~|X;ZsWax5dA<kRR@uA9d%t'#m -C4Jڐ&?J$ Ԧ-ĥ}xGof pCX{OTDX wӷO@ݼv_@~杛ݿq00}0^\|[\V ,jlBSz :A#>,ѳGklnwƬO0iP/*5gVpHpqi񥫗&O dtvCTzhp\oŤĀEmiEh=@s("zū{ӷo=.{4D>eh=48` liZq)2{FhClڳς JJ^<;e W.>{БCnйzXܸ}hio),.V`QD$P X20100vhnCD=xx4!?_?gޜO/X퇷!a!SOSΝ{v޾w{t~hm=Z10dZbCDκQD<qУYYV?ٙ -xI?B=`'_|t^ˍ"RѠY̒`fgfbVPy h-QDtحks=a?6s{_ YCFIhC@L 'ZݒaSh=D[4ꡟ~/- ~}l؄\ˇH+A}~?msj٠;G!C=Fs̰h-iw0/IlkEW -XiM0 2!8oC4Zzh8N-=)ne1d!̓zh-4"xjF!֓zh-:jћC4Nzh<0·+ hC F!A O C>M>´it7}h=AC< F!|_/߼| ٗ@}rVߟPA|<H,D z?zh^n*UI)I99Wo\4th= -;*!p=DÕGrȏC?l=Yr‹Z7޿zj]4Z0񉖣C4l!=o_xH4ޡzC0Sy@74ZAаh!|5E-|0"?HG~H A SD)L6haSh_x TZpS׀㗏?|ׯݼ͋_A/(u7ow$$S,Z &-ʍ@x( BaS90iBsk#o珁R}z{xFh^ؽo7 Y@ (7/7.>ܬlC".!LӸ~ z F D :{޾\Wu@݀[=Z@̚ F!,Rj| zߟt<.Ï?;~}}frSkӡ^y6l0eʔrPso^o߿ʾ|ɯ?> 0++Ϝ?4@Ty鶎f>s(1 bYawnh=?1k}Ǟ=#}tս\=}t瞝[wl}݌3?4lXӔ<}t⤉ڳOFViS|r)`ur 9{ <}!0(4֝[sΝ2mK>y -T6}t9;vVNn!V`|5|>Vz24z= ~z~RumuO9s&o -ZGs=sfD޾*~:# v5=yd9h=DŸpG!!#`~ :4/P' D")O<@i}p/y( U_ܹg{5'+oںi]@t]vkv,Ydμ9z{g̚y ݺ{ke-0n޽y6+wpߑGF!h=ACD4ZaG -o77`K CGѯ߿. w`eTCSx9|5%^@X= ?}aӆua_{;`hђEg/R{ym~He [5(z` 3 ![wlGpyȆ*b2ii:"dp`u; RQ>GOؤ0ZPJHL FͩdWB؎IZ0?Q篞Ӻu.>} ML&LqiCSzRvuu]umh|}׭Mo\ j0q%&t dtS^{!|7n+3T[_^jE6o OQV=ytqM[wlcXoo>y P '.Z9{5@`7RQ=}/a5@e@"ytKTM;䇙t𐫇 j2F@;&?z CUx&AxXl Ҹƥ( ܷoD@{o^?~셳'NrWAp:#.u'k/tΜ=s˶-߼*?b -`*gV[} 8վd`l23^{?&Og`lKW/많`4dƬڰiPA}c=wgΟ:cW굫AGQ"5~K+H\iؤ0ɆT5TAHpAی uۧ/?Ib`1k=[A-u(9H"#ŋ00}L4 -؆gCYQA= t&p6/r~N`97WR'qu^d .rf`x+ -Ow0ت윱[yULW794!p%_xf`0܆(r8la#I /s 1B -Tx'g: -!jrԳTH!L޹SE|Ĉ[6+u2nQTJk_NeYnACoE޹( q@zD"XXo`>U۪W_(eu *l !dL3q.EIW ͥsw^ۦe;z,^b"ry[:Do,aWUhP,'Tma(KokeK~&8v!R`PGThCf2x F0چ^9U~ ,oڧ ."I_>j su8@F))򽻏wzǡGB<`0ѭkRȸ4B_H3i]tV_YqhƟ#-t2e䩓z_>luߴ(,:{:\8РPK#@ym@`A@ڵw0ڦMz'C1l!sNvnK߄> ;0=<{lڌipV$@Ğ;c]ee`т{PP) - !غ(2t@DŽw%x :ZhBn1Cne/߼9qĮ ڄIv? 4?9PK߼C^ Fv={6ifv&V2Ϝv`?w\ X-YA- `m۹mæ @?|gOV 2 ?Vm15<|bru:zȀ{;Ғ K)SM-B0&]ґ4HaapeXx12ݱ% 9 5{h=aw絛 ~ جw Z@~bY|A\Z<(oˎ- - b;1.{%vFRzjЦw,/^8|wӖM?ǵ•dLE]TItj?|0CϞ3. '$=uTCmB `feFuMuVE%EĴ; SХGsMMOvOyb1` ?j׾>&cRul+c[`*U |ȂgNBR 0ቖ` zn444@S9kW_ly聂7!ڍ7#/?{oh" - 4 d?d'NЇ'U`= y糒@Vod/Zk)P QZB&BV.B L`j mx=Μ{fp!мmVMpsaY)Kg@P.ݗԅ0K-s48봙:ief45EυuFMp4HdP,~QTY~Ci}>OFh>OC0*6m%z.,_>4mVe`\q/NJf4(d:YPČb]'8ȧ^ 7RWNį{xi[W5Sy.H&ZV0{pLeR>(&-btMzda`߷z+b'$KW!bWu`ݱ$LutTLBu~Z -aiSoi+ez> lV8 W1ҋ -A})BJO"FaNdjCJPpۀSxM@!uF62u$MhaYÿR=tҦICuK>eJeH Il-ps}$JwŲ7]٥mc0ZQ@ $T%cއ0p2pn7c?bOk7}):?|U`sgV X{y쟶Փ0hHE)h\^XCP%-ħJEBaMv㝵 lL9ؽC#rFbH  r 4*'/[h-< e[>V^xT3-73 dCr5lOzΞǶ-*)+QQQ).)+T6v6/ӣbيi`XCx}z7aȸΕWu`jFN$0 v['T|01d@ {COIK0&]KJb閐 4u[/?Cv}=>kSǡ>Ch &%񠩔`?s !P*pCd/g* _iEG% -jH:T;uhc[&Pqq ֌8UU= L;<7d -X+dGIhx N0<~XtF0""5޿;ۧ?`3y(~_?C,6_~!& ` +jЊTTt@$Ƕwo޺2sTC5o<`3?R%gn`]!UXdczc[ -DN䱭p }Y0dRoq -|y#3.yG?i?`7ÏV1!·N!I)P -#ɢYۺ{ Y/1$P*p # -RNT` -(L[G1Cc0( :nw@7oL6X: UkV޷Qlo޾"`9̜P/0՟c[!VjXTRyCâ La=J,bc ׈Gx=DDd=@#n6zXnx6-=/o޽4=^~?"? WVW7o?51Тݛ M o?h}`esh7O>1qD`;^ݩ %%nSGW 6sڃxn=DDj`Gx}c -slGIS#dX0ﱄ\\ LzBG 5 @zEFn*BYdhm?lU޾.t4pf2  #6> XG_~ӛn -۲}Ksk3|@? ǐ 눹ĭ9gj@`z l nߚ:uO&O ?XԸO>V&0}YsgCM޾{w1Ȋ2x=P |8d).^ ..`x=G 0;@`.&~\98tCꁂ宽 -X%չ tw0Phq[ ZJJ* JKUWIY !`'Zҙ?@>%` HvxA7q q\GUTk @a杛k֯V$ - >?}=ݿX0D÷GD=|wPB?0A:E!ħj !:4]%bQK=|!YHxmO"0$2JJȲy79rp9oUp\4Y `LdHQ{1MCn - wy@?p`=8gE> lrUTZL{.z%Pt&{} >J -CȪ&Mt}8uiLKub^Fߺ3@\4zUl-#{ z*pzߟv7$U"ݛ?w4<AU/âcʁ(Ѐ ̓zhCxBUYN XN=?v7{ܽyf捐.P mA^CBFu_)?}ǯ_~d￿#Noާ/hn>hI=4*4hZdr=⥋O9 Zv{!P]wnL>oiOA>"YtrD;؉aYh/H5mPpȲ(\;-h=4!T 5u5.]z9N - -tCϜgΞ x0Dw9xz6z"oM>z!`Vhw]iΣА @:vؼrrr={4a'O 9pEaCЀ @0krsk3\XVLߚ lE@ ~n4ks=?h`#3 @ x G~wCWs˶-k֭] ?@?vz3Z&ȗo^O_CCX!Ya:$&#SMVB['ÏUƵ ѹjjibccW@g /YG#/o nA}Ⱥ\?IJ~5Ҳ*ʲr4́M?^}5Z a:S")tk2 ._=hv]<~<;-=!*>ڹ4Ehg 3 к ֡g{I)I@ L`Mcs$|#=֐FX!Y붱"nMF&YטCv]iY D՘T,,z>q]FW |̎=2@å㧏\E%ENې *iLfY: gC6(IF D/Z*h͔~_]]2*i@@A`}g<|^2phMoڶ E$D}x7?h=Dyb,4޵@i3 o]ȰeFjMY𬇨2It.ɪ*(* Xu]rԞ{22 ̝=M".:yS<~0c֌$`HM0h!~ rQSiEh#5^F&ĬYhCԚ$f:}|}k7=EQω#QAA(8c`UἌ -X օK jټm3d@e=&֋=CRCs U(ö J4< a=5&@s!@ v9KG,~ Rصo״ӀK̟^\QP@tW%AΜ5s@M -׀ſt]z4FRPw ?}[?8;1LV7/6< g=DDLbODM0;o"*C -r' R_>o\2*`w%˖lݱ7mx"A9/zXff o޾y4/"Ysgspr&>{ N>T򘚚Bn:T jFԁ;/_=TPƛwohLp Prp/@ -UȝI.JLȐ &zHcaed;8uTľo߾Wtۀzׯlx{|zDw=lllE%E -&>1ATTȈGT l VVr) DlgUc&*YˎOpp]9aH DO^>7ۙgPu\X^u@o޽ 4՛W;<D6>p hi݇w!N+0@[% *,*w_a% D /Xn5,ZhŸdR~ҴӖ\"n6DzX{pȞ1{F\|9}4;;;e`V9ޚ8e"/?@:@> r7-\܊ 0~蓊A!bmmtʢJ,E=4b&0oM1[o"ȅ7lnm歛!zh9ׁjO^<ٹgիN3Hlݾ.E.~x-H=rJd)`^ i!`z᝸8((u)` V]ljް`r),F_}@!`}œ>9xXY:zXw{`/s`y+hϿ?A`h6PϾ=/_,޻omvݍ,] F!CH*h=DIV~٪eàkFشu$3Qyf#Р\ hPRn K!:kjkg㎦6! 7eΆ=”ҁCd`iE)| e[;"8%Gy D"hUb;`mL,[jG"@;vTCzhxE˷/K(@Q )3ZQzDQ}5G'GN/C%BFDx~2rp7$p l|263-hiyh=4 /!h"`ˬ -kQ:׬_4z Opi}@n %0ZQzD9w=",VECot@<цyDЅ%G~_?JND!߿«6@u4Ɗ -bF2%e%.( ="ՌL? ?2ePw-+@c{\4S&=& (0Cu}?gtvm+(}aU_7 ̯#'$4E%A R(I!F -GJdv6f y8qx@u_jVa:_I,`$9Kǿ -{8 Z݃DhU%V5hc)QI:&/#-@?x2 7/S }MPCDj txR<gD$YAE'!.' -!Ti@NJ]30I T3@C8hEhhXz'MpC# @4ZD nazhb F!h4"L4Zp4Z,h=&QFFZ p70h=4h@ @ó"`%b;=GܠEJ$p$~}$VvA4 !`\޷P)K;=32b'zQL!ޕ It;hS@ zD@^DJd$F!rA~#ٝbRɃiT1AC4 &80\@ zn/tF&xIbi B?zh5G%.( AhG4Z Fhą%7M F!c("Cp$Ƀh=4dEģzC 4y#]x4ZQz&~@АkF!J\8ZQzh2v"h=D G!JBo<@z׿_FֳOJ2BI`CCFgahC~ueueFfF683"& 翟+WLJN$ $1ZQz4:;n$C4B!TumZQq%H>p0#"@m}naq!$F! -CFgǍz Fn=D3FJghtvx Fn=4b|$4@ICs" W@ЈF%3Z?̉T3\@PS$p Dg4ȳ" D9L'Q׊A$2 77L+0 &U@E1xE ~߿W^~|sCSCYEYEUV*ï ر{G~a>.@PP/VWACs.PIiɳ'$Z1Dv0 m -tBPDyӊ~~G'KmmmB 9^ -ʀh9$@!&>TTrqq10 ۗ=М .^[Q{'Ȱb:TNĊA7lЍzx]Wr׿?;촴ZXPWXc`3exPP4_?xz,P P%D yV#%-~K=2$Z1D4u0 5=%0AN'zHDD@5 sx[ede$PhIt,mSJ T)h9m;W?y> z_@,,,׭+ 0 lAУgxxALhNQ>Vo߿=00}x'*& -7Rde4Ar#%H ! vJ3 @a￿[ZYrrq!z , 3Q>h4 ҊRxuaz"&!<́5  Z[~ .zݧw%e%mr!t[MQc4  [A!#`+Mh=D0&Bh8GT-5ɋ' V AF%d7Gя4@(p޼{# $)̞h=D]/煄9?  Z;} M X}@\<ǰQc4 F+h=D0 -:ABZ?UoX}@d=y禖C Fρi2YuDZ;J 0p|m)CS 1рZ~k @ˇo_·;oTLԃ0ѳGw޽w9cj}zD@&t!8 0pA (L@+^8+-- $24EXRĄ9 +ŅZAByyy_{EJr~QK{KGWGwo7%hʴ)c{{q)pqu" xc{zkwEI~JJJQQaȈ\ -||} XÀ:i `O<7BvX|RQIϗtBF 1 :`U*vUY]u@a**pZ/?y;7n ]u£G@doWϣcssSNT?x43;+$~@D@7 #T `8[3TBvdLNXV d9 3րN:xAΕ*@ώ1*MQD]|<>-!4B,!! -4@d)JHPb@x` %`r IM?Čk#NrkLh0CtA`'6#00}x| ` jM@@Bˏ/@d*dh()[woZsf@>}`7fg)Jr`А m? uH3yCo>" xeNTi55$@8O4(sNR7kzSNy&WP ,l'NYT 78h 1` D@kdOP$l,@n___CSS#^DNaHt@k߾k; $𠭇;:?@C|ޯ?*?CVݛ;#?"(D@ yrnXA a`>}b뷯O>q}{wƆMm󶎶@t]zȸ}vk{ 0w:0@Y`/^_!o޺wɟ~*чV[=sW^z ╋ 2w)ɣ,y5) ,juI@Pի g`jܸy#D=^|0ڻ㗏k֭3okN -H|i3.RE+lٖ9ciIC1: BP Sly3NcyԇY0ycP-Ĉ!%( -AŠ"i ` -];25ँpC!C)r 6Ln 7 gtC_Wk*T2L͇}\Ԋz3j* -k5OG -ƣSr0 "&S}#=/Wʢ!/MlV%aԯ3Sp&l[C"|͗rֲ[-CFq޶-uCf zqLƅ[dv .\7rHJZ.~>ϻ:4Pd*)+2eDP);m,u.Up]}ti:^5jXDnʘ\-A&U5g:My4^c\27N;Z"m)- n6N -K>\ b t{ݐHn=*쿌GIVYp -\"C{LԽv ^K8 9Y1(8Z2km8QwAO =(] OMdZ~ㆁP`T:9Α]t:l7( waga<'n~r}3mV?&:D|e.$95`S;$xgY֤{V`@i*hF䔔u\LǢ2-@ڳcQRjȕ 8|gZ?, JQRkBĈ7Wh/T^pwn)PmIhb">"2!QCqC9꺷R~_ZƒS4%K"#uڧa rMu2 -]w& -ЮA^; D8U)M-Ըڲ-wewC\doBxWM\4lZ%bNE+K x -$gF9VD.<4D̦<\A9rڠBt aHhV#BF=,sLF@NU(t0}z Cd C] -)ڇeNTh𐮇FCXr_ hІ rP6zh:<4 `@ m"i - CP*_ _?XA^^0;QxP#ɻn`A8/w B :8!<+hp~hBbBn^.m5PqIJIYa,0x y 1 %4t$Щ@=xW ǯAdg xtbE޷{8AzLߖ### - -#3+( |m㶍@.^^zȵCc_@+ӀŅC\1z`m]y a\;9X)Q_ꍫ$-2zhQ4芀E+ͭyyXª`QX,}_XXY*퓒ij! 2\H=tynCFDGE^{Rle!.!~֍FzRKHH@;◂> 0xBe5 @ChQDWV߽r;;{'2 ` d$$[XUy-ZtqȅC@Ƽydde}~[АĄ&Z? 9 lll2r2,4ZQ4F]f٫g,,,P[hF:śer@5nؽo!H_翟@d߿*ptvTSWvzRRYwlsK g=W`YAjdA,K+K`-9fzhQ40u>ͅu~髧JJ**lpsf>|pM...6W X[U@:OCc KM9MIIًgC2 FQ4F(+Biji**-wtmR7P*6!(Y_/!.!~`X5IJ߼{ XUn߹dny?}v٠gO66c]/rC%ogkg w$YhEh""C‚QQXA&{ e̝?>u?hOGrj2bn^Vu+׭(ﷷ0!=C BLCsLOSBv{\|yt?Z>̚ FϗEh"z#-#y w2~8Orço~?{ Q ,?yPy -@@ z @~ pȶ"h@mQ4F ϗ Ȇ!z0y DĜ/88/dht'|A d 3(hQ4F(E4Dޣxxxm\ |(Eh" -))+ad`| j pCz͟U(Eh"2yፄC Ckmk֭+EhQD6WϿ|_7{=Ve``Xad߀{fQ4FPAGnhӎ.GeuO NQ4F(Š K vx@]4 utw}ib`%> endobj -450 0 obj << -/D [447 0 R /XYZ 260.186 213.651 null] ->> endobj -446 0 obj << -/Font << /F20 323 0 R /F8 319 0 R >> -/XObject << /Im4 441 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -453 0 obj << -/Length 1720 -/Filter /FlateDecode ->> -stream -xXn6Snr13|n>" $ $Lj$q#Z<9.G?^NG' J"G#E0̓aƓ8t03c]]ju[{[cxUfJxm(m^̟R;wyz9u{6tuqo7y%41LZVf"͖j'opN Xܭ f[k;Jj_vkAe-vV{&WVIyF ~jb1dD2 --qaxejdune{͞ș wW*zЏqr[_燚9q%sif-; c1D 1U0Ȓ"pp֨AGA!Y[9U]+Rn\ q~!0`C !iM~aE`̡DSºFxm0b݅7cfb|YpeIE7E(W:- z -aw; b='$"ae:=;#u|# Hlc `_qV,B sKJv<0tx$J0g ̚0Zeʯn%PsF4i-2ai찱h<(b;qYgcF"i%ށ-t0` ꇫKx@$8wD6KFymf"~wh ǐg- g-0AlWVZ G]c mɶYZ:P7npC:t?R5'W -dT -endstream -endobj -452 0 obj << -/Type /Page -/Contents 453 0 R -/Resources 451 0 R -/MediaBox [0 0 612 792] -/Parent 436 0 R ->> endobj -454 0 obj << -/D [452 0 R /XYZ 72 744.045 null] ->> endobj -74 0 obj << -/D [452 0 R /XYZ 72 553.52 null] ->> endobj -78 0 obj << -/D [452 0 R /XYZ 72 336.744 null] ->> endobj -451 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -457 0 obj << -/Length 3103 -/Filter /FlateDecode ->> -stream -xڵZrܸ}W̛Ԋ&n.meYK[Ib$fgH-ɱ|}Nɡ.LA On(Z,?O~X$r(TQXnN~=Za:KݨB)~׋˓OzuY2^\xF,ůAnJu7*ZzR]S!m۲!xo:ˮ+v؎^}˷WiſkZDS*7eh4a'hF&p4vSQqR9D^Pj^CqNw~d~7b;G~71,-H&-!Rz\ψMeE(bSޞԫ}A&bT*C/C 14A wz#<07˖qD - ;;jFϛǣg4Ĝ<}+HNӧFA% -+aFʾjd,4JP#t5BJ_5GCP拡{ .z5CN~ghԤFv&v>YsgO8:WFC -]DJ|b=h;7ͫێzPY6,}M8T0YЫ5-U nw/ܽ. ]3џN\״K^y21ЭM| V #?ؖ}w^x.ytIEBVd{utL(ٙ YeͿ'OTڒ$7qQg\&O¶^1nի=# G]A[~_Gps6q֒NY4Ͳ YqGwRJ&난IL|WcS^MӘ E헶nPߝworM~p&?S0Ӝ\$̠ErE "äܟ~FxTlwbswyoB0,%|z7SԬ - W2,%Tcm;ol7$`OUT2w=5:&j5|It;SxXը/# }nUo=k9/XP2" 'n5AxyC -/ce_vezSeA][{N uYzB1U7aЫ[S k3 nFENyK_zGی8B#,on趕䑞[jn+Qk#/n - RtO;7~K/G4"q3n2.17@dU34~Tc$//Xg1^\Aucc̐0$R0'GA|A8UL)mR|=Pob:k"4i8THGY/W&ܛԖ Vʂ]ށ U-'v/+ 0^(qőI(W7H|rhNr"pg6 IS|&lr}yIF9X^*CXX63~ 'Iw BnM~琞pdeEgL*g20b@f.VPck߁o6r =ެuk% -d> T /x(嫯4vANIt*qFev͐NY2$yk)s(骧zdw0Gw_*rkY6r(]t?nX"8j5F g1nxZ~>rbNCD)/u-%͚ t?-LX0Bczc}^ԗ&]٪x?g07+8 ]G2 M$?xCvtӏo}unj6pT8 -endstream -endobj -456 0 obj << -/Type /Page -/Contents 457 0 R -/Resources 455 0 R -/MediaBox [0 0 612 792] -/Parent 436 0 R ->> endobj -458 0 obj << -/D [456 0 R /XYZ 72 744.045 null] ->> endobj -82 0 obj << -/D [456 0 R /XYZ 72 568.622 null] ->> endobj -86 0 obj << -/D [456 0 R /XYZ 72 396.24 null] ->> endobj -459 0 obj << -/D [456 0 R /XYZ 72 247.05 null] ->> endobj -460 0 obj << -/D [456 0 R /XYZ 72 226.549 null] ->> endobj -461 0 obj << -/D [456 0 R /XYZ 72 206.049 null] ->> endobj -462 0 obj << -/D [456 0 R /XYZ 72 185.549 null] ->> endobj -455 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F22 388 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -465 0 obj << -/Length 3185 -/Filter /FlateDecode ->> -stream -x[]w4}"o5ye;aLYI{>Xj֝ز}$݈x_>#+GVsQՈ3C0҅jt7N|#|!tЌk3G?=8 oeD95~(]P/LObNu}O>wq+ дT O80dԞhŴv$@v[ͣMM-zWkh" BĖն‹JxǻTجV UI( - Ag"4Z ˊ"uG.+Ռ4TvBȂ -m+T+0afNPq^H&^vz>`XapnsϮo.=]׌bf?\͗ۊSs7nX\L0}$?r×(,MӪ':mϡ7O08 ZC({V%^023 ->FM]񧊿Աl*WT0.{z}mFCsa6aK,Z7Oɼ82vCfU_ݶho>DO\ƫ/iDq/wLҞHf9`j(^FC&2 G -bJ-9 _ᄍ1$H!H!XHfaJt¤UMݫ$I*q"HaoZ tcv2i8e.7nr wz ST۔Эcu,Qw, ߩc͑cݑF:h_crqtm 2>dPuϸtBZxa -a׺ly<0Z98St!Jd|[$<j[MEPքY-\if;t$U7O -*-P 6owcR+05 -OmIl Mx8kU0љyo83ƷlK4c-Z"T!+k&yu+`'yS&5:Ǐ1}+wOe3K|hw- b1@!&Cܨ;F6$5C C0b݃Y`bsf]\mc*D3)E)8I!P;4gqKJut!%$`WDLA=ĉS(|@H@@n8e.}bd)h/]ȷ}"]V[y)C -ٍ6.}_0ǪÙn1qq9ipAͤE* -Ry븮)O"TPyCt^_hF O}C7'BT!2vU3BneДrsQAC#kaD4dfL%BwLT0-.U`ra?H0<|ʼ*z>mSZ8]3v!b5eM_Z͸9[r˷=D9/BRZ/50_"W^)ٛ.S~ ۔ kf -1_C hJ7a?.9b:vd=Ra29AJPt<cl=ϊ!ϐ 7b?Cw6<Ê` ʿn V$-8j SDڌ9UxK|H25CGoQU]dB#kCb,}]>zWJ'6b֨D#E#@* `};K'fAa~0U̓4{pCrd\2EnWAzVka?Uϑ0"y`$*^}X[@(9Z_\i:Jl5}e|SNHgiz!27I큣3,*Ʃ)Wg\gqamũ)B6xBAe,^xYjܖDMM[@e]f4lO7PHNąuWH浂Q;B+i,d{&<JkqI(Y!o3,~s2%_0?[f;.wb7E:|jCG˛gѹ*ZU8KxS9y^%B+͜T/{m`$t91]3Lޛ}& mQy>RzPʀANhV ڠ N3辏[dp?E+N+H>OsGByRa^{CKFscC! )u9OL0DžɑF#cY7gFW:p[" -$JucIIqѓ&>iw_eݼ7+jѡSe>:;'6kɲh I]?^< >QA33g?E÷{Iٔ\/:43b Y77I35  -endstream -endobj -464 0 obj << -/Type /Page -/Contents 465 0 R -/Resources 463 0 R -/MediaBox [0 0 612 792] -/Parent 467 0 R ->> endobj -466 0 obj << -/D [464 0 R /XYZ 72 744.045 null] ->> endobj -90 0 obj << -/D [464 0 R /XYZ 72 710.559 null] ->> endobj -94 0 obj << -/D [464 0 R /XYZ 72 458.408 null] ->> endobj -98 0 obj << -/D [464 0 R /XYZ 72 147.864 null] ->> endobj -463 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -470 0 obj << -/Length 1750 -/Filter /FlateDecode ->> -stream -xXˎ6WhW9>%2]%AhZ4hEI0Pd#Ė}Eʶl'M%S$>h4hſ O(Q*)DM1:DݵL4⯋gF'dJMѻؐXOFFYi4Zˬviˑqd<[X\bU֣.RiBE -vkNݔ `|g[=HE d`NGh3txLmlSm|12,ʽSk#{T@$k̛v/g.D$5nsc؉`Ж)Je⒁AC83be==k4^Aqx4Y^%>EPU]Sp;|?)k2gFaҏm*TMPoOdX*X.IϡbH-*FYcgA6mȞ -`*aNAy.H?Ґ G"0K1" OBA1 -[!~Lk.8$EtH# Yb퀘⚝)=LDf]?.9ǖ|:oyBӣYWN 偗daEsd2b%̭l0wݪ;]/oR|wE"+8xh{xw|xAonMϟѸKZEn'wca?8=ֺ(9Pw pWA ',dG*T_>2A S.Iu? H<(Z끶F,}zI(= (x7XG-;S3\|]}H(pE!q:yZOPڤV):9)QgT{G -MIY!$ =ф=̣nSmn6nĿeUviU-G TWXn:pjG\N?_*lF|,,mH uC.opUg[M}# ym3T$`Zc0!$BWX$ Ӵ[=ꋗoގL@KpDx:=˻> endobj -471 0 obj << -/D [469 0 R /XYZ 72 744.045 null] ->> endobj -102 0 obj << -/D [469 0 R /XYZ 72 405.012 null] ->> endobj -468 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -474 0 obj << -/Length 2587 -/Filter /FlateDecode ->> -stream -xڭYY6~_H[Luj;-?$)-a$Pc g<@F_70Xa?$|@ - -fr{a/A(L4k8o|7W߫0D8=Mܬf2EB}NW=fUSϑڴH0(\ VmjU(_^OMP' V4*t,ZEihhaLkAdҞQh6TBi$a(,>Uԏ)UHĉ,a - -'(;OyvE^gbiy(ʒ1ȍu(CоC7uU-c-"gol{{ { ;d-|%#g:W4%z`!g_%;,Fh+Rg"U`T쭯NZ;::¨:UANZB w<+1:!9xa7o^qaS6rw˨}׉RTbE)mBT&Q '+3ǘ`Z@cO4uV։te,kD9B9}Nz&RȤɫKZw!䢱KJs oz7of[̖}XVۉCuYMwi `eP3ӡ}ytM|0ͦp (Ɓzk)DJ 4Y=a%(EtXw"%vƖE(G_x}q!am]YN֝vQ]w\F Rќ/J˺.Yp؎S.Sj]8=->ʿ֏Wʐ $%ANH- I<Ŋ6| !hs(F>en&x;@ @`P%]  ci$=PJ$ qB%'Dix -+VRp,t tHrSq!GA8-cʶXoH>cЩ,}y#]VH;ecF<ΐ!]Gߏ.&XI@KXuiwhfU 'ه:(uy0OjO%]Ȍ/:FYLg|W`S?,b"OH't}wk}_`UXz.Ie+6 ZG;"]cxxrv ?t!R/1(YPR|ԃD{;b)7B21\۾6wW\k>M2K%ruڀT@V -zrd\A2H9( FmPߞ{u|`6U 07W ;)cL)Asq1e$*ll_aBY+XgP -=ˣgN, ^aMa @ys,09yO˗tb~K` ؒv+&"ke7fd;}@[ A@XR-Ź -$q @PD:2vtg*խ^Vr<|C$~98Q?~~/t_]_# tJ:>-}vS0Z,BCXK=߬us(51'OP*/|m5&"Y?hPTzI1gpЩH$NƗ22!S}gZɶgc)]5\(R3w>lsy ؃ۖݢkmy;)k}wQg  iR@X$3"Qo:֐k%J8Ɯ0D(/3J!ܒ?4<ыVCyY>HqP33Àƌ>'ʤ p]Y&ws[ϳw X%S@sN:vO>WlC}jJs IMps?.p/xMX fA7_[CwT r?lN] ?SC -endstream -endobj -473 0 obj << -/Type /Page -/Contents 474 0 R -/Resources 472 0 R -/MediaBox [0 0 612 792] -/Parent 467 0 R ->> endobj -475 0 obj << -/D [473 0 R /XYZ 72 744.045 null] ->> endobj -106 0 obj << -/D [473 0 R /XYZ 72 621.244 null] ->> endobj -110 0 obj << -/D [473 0 R /XYZ 72 264.844 null] ->> endobj -114 0 obj << -/D [473 0 R /XYZ 72 236.975 null] ->> endobj -472 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F19 321 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -478 0 obj << -/Length 1364 -/Filter /FlateDecode ->> -stream -xڵXK6ϯLzoy8WV`( b AJ忧% 0NNՏOnwa'R/1ya#20X Ͻw}[E »˼>hZoTL29“*->`ӎP v2Wǻwʑr.$,nJ -;GO,[r -[]nVw#Ԉd( 1FaBFЁkxDDvOR,J)H29U))[iKt&Z &,  -p@B IA r+e$A2(d`)L3HerTy~zE^՚JKQ޿(G4$p`,r`lT#X}v8fPX"'Hr81.;!erPf"Se4 4DT8mmvLFʼnE̊nP_U~mV3:F fhS@Zђ6f؇FjWIdًD$]Va^SY2R CGxRd -A~AEzpm`TɅ爽ynz~aFv D]꫎^h;Wd:iQG RLctޛXWqp8rZ*2 SvZ;z3߫^N#l| ͅle|| Xѡ}{Ii_ϝvQQdtجX|#xFw{,O> ];v8o-4 ImY|n9׷0`:4t -폷vkӊXiG-$nu,*tfl)r$'kr nEu]5v P t8S&3Eg\2^ A4 -TtvSCg0rd}#bRp¥Q!E~Zյj\"L?kޖ.{s&M5Hk9%L)FwI:k-є*^# -PХUM.?KD#=/C9L -OJ%Lj$|8IB}8-y+$d&װB( -Ϙ1 -)at\HD~oK0A=ķ հڽt,`}QͫډpBjKW&6 ۺt!pe_T5MGUu]}^\2Uz׻R)f[q!n& -endstream -endobj -477 0 obj << -/Type /Page -/Contents 478 0 R -/Resources 476 0 R -/MediaBox [0 0 612 792] -/Parent 467 0 R ->> endobj -479 0 obj << -/D [477 0 R /XYZ 72 744.045 null] ->> endobj -118 0 obj << -/D [477 0 R /XYZ 72 710.559 null] ->> endobj -476 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -482 0 obj << -/Length 4775 -/Filter /FlateDecode ->> -stream -xڽ\IsɕW |1hT0jiaG}"hH̟R -T̅ʪ2߾~&꟯8~لOX*կ`8an%<8Qw5_pM|0ғ)gy5}w5򶾚I''i};6N.W4фi0_/Vy~?~u+*&- G^{:/͔Y)@F2 -8o6z[x6p׻>@HU)''z3Ȇ"( 0esO5Q;u ^qڌ^A@Lţժ^fMrDM'ތj3_| m=m2U˜Ɍ0ZW k/JL$FF ^qſwk:= -;ȽF^))徒O13+'ZhTPQXPQX?PyeŹxD>o@{W|XxAF]m$$<Ӓ8pII^iph -¡a)$# ΐVtI&nHFH2ѠadqG2n(fG+y_^@N#;&eRL t$^!eY7#dl2hss&cDJ!Jn&(@tʈ>Tt HmG@ -WY0(ˈ0w1Nζ (#4 -2+`@T4#$D'ջrN  z)(]2tTI~L*KչR-+13VWRdXflZ۬Oc$t(U5-Lf -BV'PqB0NNFe!Rxg?R N䫦-, Yx]iId Bq+*ݡOmS^8[#62&^a)iө>."veEPB$|6>\nS ZXe) F"Aq+x6}BYbJT4Ϊ`a.p[+ ٺ~ 5>*>*<>BD*"ZO?Zr/>1,Ň8('i2H7JӁZ8lv͉R ma^b8C -DgBR7B]n=e!6EZGr}"}:WҢ_ -;Io+']G>xS/(ܗU\,E+o7M(dGKޤfz(d.ﺾ=o^A - E}7?48i Lفfrh F8[ -Szx /*m(2\8`s%cRG|5̀\W@tq2,$N07ok.? E$X`Mg.,.uEZƆ@A2<+`?D g(#2d?0}<א\/:00M ۠<=j*qZoֳۭ ~u -'Li R.N| ~x>9 cMIT9/[ (ygqtR^9RKEw%**n@Tac2wdKQ97ʞ)#`_q ߿xW5ٖF}i9w 6 -%No.Car0ER6xd+w՗yk0ܝĕQA_"2L Jս´t3#5_( _{ui^AQ;܇z_\) *aG9l:[1.SQ̖qj`p ;7Od$? ZH؁|^ebSwd4Ea[σP6j[Ǜx@ 8C $}X _[A I512d.K[gR20rۇ t)R𴌶`ONb_"r$O#դ}o~Q "8ކ\j?} i9wNo8.N~88qs`1H (DU?v#,ɸ~ΜR -:R֦D6:y*'/d` f: Rk3>e:UJ,' y # '#䎁Z&ף]lցh߉2RI'8)GR)KIea:gd-3Wޛrq\uM+KqL -c5o,4Gbs|*N<`4f=S 4 ֛Ʉ5bbX8ӧԗw6r'oOBT4a)y.rpF <1`Rm 3it1SRqd?_C _c7VI| =D6)v4YQ0iXX>ΖNa+v , -drRуo'l6dl(lc&ܥ4:tըMsQL&_SY~.c@?c.GЌjL 8mesR|NA.IQӝ_+RDY6KzB[E -K̨GRq< 7dcb.[vL(ihXd@Dw*H6FRgwFeFgR0ܤe˂|3/J)ƾbhOw] . SŽƍ]TqB8(@ T0&8](Zԟoӷu$r&B7eJ}ۻ/Oлb?-녆yk^VM[ɘz||ZՏXؚ 5Opc M 3K:zˢ=rHy~}S9~Hf^|j!O[uJiJv%!9)1ȘPay휸}7xp@'yӫ\ǫ8ıbӐTta.>:w avwwv$C}80<{X/kM؀iЃEactnS`;'On3&M9jRm'ݢC كYt4(@Aj҈]ۯRT*\hh7!Z{oL~iN9[hʴ]˱u'R'KzNUj >}o?^ߔr08)g/!R(gC~o2[xhwRTPӒR6ATk; -v/"P3P.ITc@[އV. lL(֩eA`+GQ0RMHŵx -,'QI_3jޔjkLä{VOW)eF",wQͷs:qbeJiӻPsN7?PӶ> ŋ4aӬz\ʼn>j_+&<.UUtc"]8aA$,ɦL -Kq= 3IH_! -ʊP'7dSV1Ns͞4OۨUֻ1k]ٺA`mr.8@1N&5?Sw%lYIwsKh^""kHW ^KE3 a%^ jMG65ֱ>iUghZhi^V0`SJT.#桱4/[1NeGQ[#}bxhhiCZHHq6XJ!q=g: ipBE4C+*OGHue{kW7Aa7JcT|NejlrcrԖt-)U6]2:|kJ9ٶ)M^LjSƭN2:mʚئQX4(GY*R_!C/Z 09uB8[|=V.0G? -endstream -endobj -481 0 obj << -/Type /Page -/Contents 482 0 R -/Resources 480 0 R -/MediaBox [0 0 612 792] -/Parent 467 0 R ->> endobj -483 0 obj << -/D [481 0 R /XYZ 72 744.045 null] ->> endobj -480 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F11 403 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -486 0 obj << -/Length 2852 -/Filter /FlateDecode ->> -stream -xڽZ[s6~[)OWS8tskeN(StI*iggAq np ήg(<el̖۳Mg+aa ṙ]x,bSCTjsBS2_h#MO岘/I{ O򗔊\596-VTZm׫p!5IyYl&Y?b0h!'PDƂPY0zN,PnRZ;\mfl2:eiJ2;; ܵTR2a&slNcd3ʞ~ڮ-]bDs:DL)@3Hb%ەۈs+'Rq$#˜p€,r -Yd ec -+3fBP QxI%ɨ^RCG1€Y X2 -CQpJgDqT -@IKw$i9@"-`)0'Կ!2MgW1Dh5S -g'øTVfhWc -NfS`cF޾~y:ĀUZ3"З?={vqyyRUeZ%M -^KS&͟ƕrY-X -fTRծzT/FA舾eWU)~ߕM_fau W+3g0'QfTP @{eޫ̧cyeW!9B|y -HNZ)4 -/\%03Ȥ][ ; Iu꠭ء)bjۛ&fEц>DOxy W!䛷e<% -w2&P4 Nps4C4zQ)zᠿyrMuݸZP8;wYj8#vVPk -9/<}͊"O -sC}Ci29`ִ2Ɲr;n޾iS T -a^-Fr'jf:mYmMs%h'LTL٬$u_ɕDYvl3/-"#Zۉ_uSLAàԇD}wd'"JN LFcy/ڱAk`҃2Q\l&|s,<8{qj*D-rG2s.{2=žm_H>RrqSGG)mmj .# -*54MFj*x/̺v*KDn|`, ;Y -Qz|[=#'b6C1 V7҂E/Kɛnb-Ej:;fN -dg59xNzIǘAgG>ߔKft½۴v- =sKu ׍wVeS _b,F )G{>twۦV\$` :-Jf,_R# -l7UT}ZX]kժE_7E©y| b/Wnk)8&ʖ,E+ -XSx+\(D!N-u"\TIg!0n:#G,4P'@gOROF+k8ƌ!| -)qMI㉌YR~1ڄK $$L&58z -H6^|{T؄G[wݦp?k1:,[#c_`m)2wi51΃0~eq㒨 -2}u8!0US*J!r1b)_AYhSrގ.޺lj> endobj -487 0 obj << -/D [485 0 R /XYZ 72 744.045 null] ->> endobj -488 0 obj << -/D [485 0 R /XYZ 72 471.615 null] ->> endobj -489 0 obj << -/D [485 0 R /XYZ 72 440.373 null] ->> endobj -490 0 obj << -/D [485 0 R /XYZ 72 420.822 null] ->> endobj -484 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -493 0 obj << -/Length 2543 -/Filter /FlateDecode ->> -stream -xZ]s۸}[ ->t&۝l[gxvvw2DۚʒKRN{/>$e%/& 8iv/'=ap όDPMO~f3(9D:}OgR[.'89#Ns]݄:$ReW췜12['o?\|,g+WU=jϯm&,+|Vs&/:7HiûSfZoww"e1eO њ~!ղnBA}WW[ -6h`ή9HJq; -1 -PS#X_r&ߌίϛhA4@Bjݠ: KqۼBXVEb{=ObO|Xg\l`1gdɲ)H1v< {GDcAU89(z,auW1VI= m}'תC|yso 1Go:S0tjQX%|U"õ/ -X=Ă:ɴP0XUE-'n(tDN,P|$;An:?E=7 LGbD Xz+"&8<zxH7sO5RxSqd!(b -5QgILmS\oT kO`鵇IY(wI:QNn س0P8R:,E3* =4 >5Qe -4Pqv!U!\FAZ^쎭y3'TX/"=*^g[D02aW˞D~1PYAi-xgk:bvQNpC`Q7n}6OJOUmBf_(e!U1. ق˳7=ʭ!% rn!6D¬"Y3i8"QyW9 Y9ai_/v^f YK~.ɦ~,cin5@gp?,h\z& -7Uݓ:FgRa9&u\U ,Bmwl{VA>aoBO|#RT" -`u -|Pҿ*}s}f0şbᒚ3q}ä*y6n)7D}iu}z?h#";Jz5'j;oK ۫zbWpvT)$ "7PNWnLrMǻYXź)~hvi5'ˀCm.F4d4HE ɳTvy_3N?ѢU-;_^nυAr7_@ӥxl9zx|n9ַ -ײu, (d+pJE>.)ZNNc)xIG,Pu&d=~&?iE}' sgC`_*iQ~W&WoWDt{lw5Jc?3y(߰ Yb8WN=@۾@Tw|ޏt6U8ޗߛͱYx(Ln^b ^L0x 8[x?s>|%A0jc߭5ݻ~9ړ4CcCtLXF$wB8)bD_nհf5$1eAC‚ue(+MUx$*MsN&(߷ͨ۹.Ôyى7IބuOj̯xٰ)|{G= 4aVH'17mƥ " (,=-c8\|= -endstream -endobj -492 0 obj << -/Type /Page -/Contents 493 0 R -/Resources 491 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -494 0 obj << -/D [492 0 R /XYZ 72 744.045 null] ->> endobj -122 0 obj << -/D [492 0 R /XYZ 72 499.584 null] ->> endobj -126 0 obj << -/D [492 0 R /XYZ 72 336.53 null] ->> endobj -491 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F11 403 0 R /F19 321 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -498 0 obj << -/Length 2393 -/Filter /FlateDecode ->> -stream -xZ[s6~[ -ҷntiݵvۙQ$֌,uEi~ %dBf|8|@|p?ow%ɁӜ)ǫ~9ڿp|z]nuի V.͡f0~ -Fcr4V^i}] oOv^wO_&߾z+5Diz+֊> T Dד=2cq\SS['g8 .~[q뚘3=T%̹ȷ;d0*όnN4y&ukݼnGZưmۇ"=֏yzYi3_/VUua4~X *ofMHa ac!-n)k~V S1iۜ8rMr Vw2v~LnsN3-̡?LۤohةDPJd_V bUw*t&=*_*$-ϋYN=|Z.h Q :JY˂9R]hJ5_':3uE׎'.) 6c)talJX2`v.!n&H D?;@m;ۤ♘):;q8<({7Mɐ!ҍ3.(pYDfɕPॗPK2k?Y@7]Ot0y@) DrjX1NM%'P.r֕"Ʋ8?@H`8?4,XhB AetP!ɱ8&do1Z6*+>ҕE 0EQ_b9aA1SF%}nEi,eF0hѱC"]YSd'H#(oq%4)'ϝ~4|&hC((z#6" (ݹyߒjJwhTR4/"շ&weE@ÿ:q-eC,"*O?0{#[+\M[aQH, -V-E|6MQPM>p%/|V/|Ÿpy'e6DXXI%Cᚐ)(THDJ{H=/OTJm; -l)5uUۯzKUtj$o6[?-C -f(Ҝw$@HK7ɜ FtKt(@Q%i*N9d -m4\sGNBBυncTE2_QGQy C):WI5JqͶ -jDgwJU>nԾLtKBK~2,2Uk/*K\g/{9{G{t݅)ir"Ms+id9{e=Ͼ0F1+SÜe:]b&W ey'<,=dߠp.Ө) QqUUbu) c1Ƈ*êOPWK)j;S† -o?"6wyA -u>ʁI]ňj<΍I yjs̀Rk -W2 YJ -endstream -endobj -497 0 obj << -/Type /Page -/Contents 498 0 R -/Resources 496 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -499 0 obj << -/D [497 0 R /XYZ 72 744.045 null] ->> endobj -130 0 obj << -/D [497 0 R /XYZ 72 550.192 null] ->> endobj -134 0 obj << -/D [497 0 R /XYZ 72 470.469 null] ->> endobj -138 0 obj << -/D [497 0 R /XYZ 72 440.663 null] ->> endobj -142 0 obj << -/D [497 0 R /XYZ 72 154.298 null] ->> endobj -146 0 obj << -/D [497 0 R /XYZ 72 126.429 null] ->> endobj -496 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F19 321 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -502 0 obj << -/Length 1199 -/Filter /FlateDecode ->> -stream -xXKsF W-T\c;uu(SItIN}Q$H(A-^PxDfH 9(->~&h oP[tcjqu*jtLD5P"fY܈iC¯yae76}VյY`57 ћ^ӣt*8U^&oۦhۻm`P?I)$(6r GAG{ -soң6fQ#D1^8s>zae%R`fPK(‡k)\aPUahª3Ui1QrluUͱ FF-ZYZ#OXD0 mҤ/Y X|\2u8sf26Y̫v6 "aQm]A2ٰ LPgIf+;Ӆq`8'k־)DBW΢-(9lB6&1cRh4WT - }1%&4!DC%Iy.}ˬ ǡ`cSmSiaK1ũO430:c}I+}QC[!~B4HfPwd6a:bJCT"0KSNtY!uqp@?KJ$KT{ʥp]/ixXv=aj-\)VJ , -9c9R@H@;a1`g4d "c@S_3Q6pH͔WYr[OF3QFˡѬvrJBX]ޤ57)h8o81^cif110x)@Zv$3š;w%U_SN8χumqo6*6lTuxnmS I+PW?MuH)/Eo\=&"vbLON35Q)p/!c4ɉًi@ K2nhƁ9U+Ǩ!#q8Ȕ/mLɖq$<|3%+I4@˟æceFA5 -[г^p^qwq?+#@JHڥH^s<  -endstream -endobj -501 0 obj << -/Type /Page -/Contents 502 0 R -/Resources 500 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -503 0 obj << -/D [501 0 R /XYZ 72 744.045 null] ->> endobj -150 0 obj << -/D [501 0 R /XYZ 72 493.649 null] ->> endobj -154 0 obj << -/D [501 0 R /XYZ 72 465.78 null] ->> endobj -158 0 obj << -/D [501 0 R /XYZ 72 294.765 null] ->> endobj -500 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -506 0 obj << -/Length 1585 -/Filter /FlateDecode ->> -stream -xYnG+[/%%ۈ`M)hT/APӯޫzCZ*Z]_yV22A]5VWQ"+-//~^\^qZ94p琄JU 'Շ?Nn^ jaeY?ncE~?l|wL7˱?j.l A*K0XCrA,g{ ~[ ?`L^3na^0 FJqzwCDkC0qXΡ-aBZ3q I2 [T̨tVwD2b;>*hKrc"G֣TnQE#DuQ/?RE;`ʅG\X|䪏Hld0D\FeIUM4a*S WT3"@ UM(E%@AU'v@QiL TOUdz(]Lun'G5Vi{QTs[q0^ݣlO~J f;{f;vOӓ#erYO!k_@]\tX2_^f -Rz'eUҥͲ7_'- woqv+,iȗ-"@9N]XQ4E\IS@sLHlÙy' !z)uzF&`Q.xļ%,U`5qgo $Q-7]Ϻ@D"\zrHYs)LPYsT~Yx,yk]8\Q9 ʴ SI}ZYPm lvJ"yPkU;d{bU P<=DVH"9IB8{Pc &ip8E}ٶ/D尲EޭėN:ќ8=j.5K:Yq7: $, ~+u6hbL\F/:l#-ba0z0La`X~7 2S퉐M)R/S2EBb(Lh~)*LQzM(7Dx+P'^e^ӝ`mѿ:BK((N]e;uXP6=B{vl8VӇ -v*+ܭU(};#7v*_pff:[5OURSL"$X2cr?HiYPaӞ0 =THPQ[d@aK JO!_tOߧY+k{t!:|D[.ݏ~ǫi:HrzH2) Fq4mҫp!Ȫ~l~9!xiRL_wIJb/y{29ۛˇh! HYΊiM% -,9sS 2УΪhrVh9#w9+igeA1@ks2LuN䠇ae@Cv@OP*Ί$,Jґ>`rGOE%Qfy˒b[g2%;_/ !cE -endstream -endobj -505 0 obj << -/Type /Page -/Contents 506 0 R -/Resources 504 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -507 0 obj << -/D [505 0 R /XYZ 72 744.045 null] ->> endobj -162 0 obj << -/D [505 0 R /XYZ 72 710.559 null] ->> endobj -166 0 obj << -/D [505 0 R /XYZ 72 548.518 null] ->> endobj -170 0 obj << -/D [505 0 R /XYZ 72 379.601 null] ->> endobj -174 0 obj << -/D [505 0 R /XYZ 72 182.174 null] ->> endobj -504 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -510 0 obj << -/Length 1511 -/Filter /FlateDecode ->> -stream -xY[o6~[`bxu[ Ї!b˱[,E>Rjʲb†yhE$sxnah Ó,<ВA`|J ( ׳6 v !I`t{HB -fs8F&oW4Feϫ.EIqN|[}1o9@*4dxbLhMa`Q$ 4"qkPeH@X.ઝAx!iM͋)U_eXmݯ*svM!VB-݇ - =w|˲b-z[nZ-)~BAPHo``zK6Ob}Bt,d q5NW\ei m~Znw=qگ0(OK!qNm}yP_JVM:95EsȢ&ιܮ[KK^`Μ{aELE?( -\mwU3DCNCץYH9׺+NvC\eu{-*_x m1c4ufiu 94H x 6c @ i`g 9!1` Ц@1@'6{]i o:ч0v5gvpaaOxhqa'`JN3F8y'\'!fH#P;G!ߎ( (>8Ⱥ:fGR 㰃@b=jw^+* >S.5T[:XEQA!j^&zVە55W#.nI]>eᙔ,֔wVqB?)7/w[Ŗ䬢%f۝dg0a0a"}9T8S7h}w RAiS8SD>)Ġb0c 脇o? Jiֺ$=9:NѰl?:d7{Ym˪yo')]Ee.J~E39 -endstream -endobj -509 0 obj << -/Type /Page -/Contents 510 0 R -/Resources 508 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -511 0 obj << -/D [509 0 R /XYZ 72 744.045 null] ->> endobj -178 0 obj << -/D [509 0 R /XYZ 72 641.798 null] ->> endobj -182 0 obj << -/D [509 0 R /XYZ 72 428.028 null] ->> endobj -186 0 obj << -/D [509 0 R /XYZ 72 257.18 null] ->> endobj -508 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F14 382 0 R /F22 388 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -514 0 obj << -/Length 1311 -/Filter /FlateDecode ->> -stream -xKo8X>[lm{hDYKNo3~0E(?9Oce-Gl3{8._wћ+3ϼ&ܶ6qd}ʅdyȯ_O~Džrf;k2ܫ|9]UŴ֫vv5ze͕)v+kӐvb7Ӣ|\y^&csPYh9g֛}GrX)LXLio5̖#F2gLQc$!+I2Ӹ~.yydR*H-fl\s`*0I!YWc 8#)0 #̌L:G`JR$5xŢ'G0҈bhShbɴ6HؔVԬ͛v~KhFw!_]߼|f4BsˌByMi1:D -(00mA]+|Vx{ZCvXju6罼.{Kflժq7 77<ò1!;P[(&ڻ߱u"} })QI@B3Bs$ZNjԻ!Eq~]W+roSnZ7T>[/#ϤY&Za"dʠah -貾;8.Ju{u#B c Y0nS:q>n(uQe,z2nM# Odh)D%S1 1#&[4{~?{E޴CHitS5ub::;#==@1.kBE Hr)D)hGH,RvDDWԂ_X%PRqmb ìB #[)l@SC#Hb%g('+9khby*jnIvJ@RXDpK8ds mц t(#5E;d Y kWi(鮩20$*1cU{h*`R=7+$g0GaFfA3u$m} -,fYX (9~+ H!-Y/=3a9i 9Qn1űCj,.LQ mӈ:WŢCc Ж3e}A%avUZʵ`ب}CxY͟Fu,Y8f)4D%M'RcE^ZrALAr@:=0t -endstream -endobj -513 0 obj << -/Type /Page -/Contents 514 0 R -/Resources 512 0 R -/MediaBox [0 0 612 792] -/Parent 495 0 R ->> endobj -515 0 obj << -/D [513 0 R /XYZ 72 744.045 null] ->> endobj -190 0 obj << -/D [513 0 R /XYZ 72 710.559 null] ->> endobj -194 0 obj << -/D [513 0 R /XYZ 72 552.463 null] ->> endobj -198 0 obj << -/D [513 0 R /XYZ 72 387.491 null] ->> endobj -202 0 obj << -/D [513 0 R /XYZ 72 222.519 null] ->> endobj -512 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -518 0 obj << -/Length 1373 -/Filter /FlateDecode ->> -stream -xYM6WVr8ʱES4" ک?Q]S?6fOa!f x,dρUpT8BP?>| -)8[s:/~t7xdDd ɦĨ~zTjflWUϓv>̖捇>>G޽~x!5VlN{d-)-Jכ/wP NJFDDkNDʙڔ yjIxkZLr -X}'SuXWǰ,K -yQ*]>J#+T(8$#Hf*2-0.TX ecHA>Ԧ4L+%WY@| -zx0Գzx⑲{x22XUE3_F%rᲩVf<m)ͅ+Ən =Fq J1 JV˭ 7&vZ;wZUo:8Y"0(wNe]F3B>rROJвiki*JM)wC*2*e!P+t(hC YPzA2t(ݭdHIՉZ>wa]=A z 癲`BҞT=y@A^w@Ϩ,{T"lVyIcSVaଝ~(x?7V1JR .U%jG:n#p]>]W骆T -! WjVU̳s3y/z/l{N >;d•a'/xT(뾰S@]ZOxٓSާqg/;WB[)[J ȡK8ρF1L1 z##]LT^lXhdžgvWԕX}tWO5^:]<DP䙥V3P?&k ޙ,H%yz߯z؞Po ! eL4!m^޳SM㾎IV`+Vg[Jj[R\+G> ( -;tWpuADX "*!)> endobj -519 0 obj << -/D [517 0 R /XYZ 72 744.045 null] ->> endobj -206 0 obj << -/D [517 0 R /XYZ 72 710.559 null] ->> endobj -210 0 obj << -/D [517 0 R /XYZ 72 559.663 null] ->> endobj -214 0 obj << -/D [517 0 R /XYZ 72 401.89 null] ->> endobj -516 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -523 0 obj << -/Length 2488 -/Filter /FlateDecode ->> -stream -x[[o~[b5;3g˦b>. Ym!Jr~g8Eh}EQ̹dn$G§#o GӇ20z}۫?h9":FW #Jiq9T}rLTyy^;Ub/+nm}/?~;!C@/y5u۫dž1E)_ZOכ$竝PǍ^J$'}2 -h67:Lf=N\P`IV0 hПڠP-'F8ۘ'wwi%&쇽шHTDy5򤥐N%M;QƕDtI؝89%Q&qіPH-uX,Kw{YlL$cmV%ܳڈVXPr;r3¢hQ"`VA$.%/z qaO(ՒĴAe:@2q EE{_tI]dAȜ!eQ]U P" ˀR^B{b#YNLg"QBы ;Q20F3[W\hӾw9ԡԫf?k>pfXNGWjfII7iv&jhk_ҝ# }΄֟Fi\A[Q"p.B]Pϖ#q1nݨRTalna Uhԉ 'L3AGGw1RAF p-Q p.&(X{]z1Pmrں"FqBvo2ASI7fdU77|:Y,6_S^T*]u0.l6g;&R^盖)cOܧ,}u\r*S GL#HJ -T!&z-ȼ |p%:tKlthgqDe}챯B!ˠ7rϯH!G9 ~)7M n\Tz3/򎏣{;WmMi,_7M7o6EPAzGcZ;H rVlk=5 };OU im0ijICb5"fTV,,icksXN?P3ɛzU!н펆"^,揑q|D[Ъ9nloWj|x蟂&Y5GNx (@%(@e -h[CVeVI} F*ʓ4JhSD7 Mʩ'`(SBV8myc`QrC O"F`{.~z$vB2 -(0>p(@ubUG>5t&3]h0z qˀF$^Y -]%@RsCkCGDqye ̢ -=%Ï1܅ F(ܝ.kB> -(-GoG " -TG'œ7K6=\җW<|JRÉV'|tKY՛&EkOLV6"4b?#~0E, -aeۍu6:sřڠsM}1plм(;3\D&"eEU(x(K@*i?# ˀ^!hBQYjZ3Ө-̣oR/R0Fg#*\D4y T4%L1dmZ7ăiJFiSӲӪ6&"^E#|P[35x,V9 xyasIO!N3_%Iw47ێcJژ_v>ڷ!F:_]J=1P*Y¤R5Wn޷KIʭ$ ư|vyszʿuFPnRg91i(OvT]=Oo.ϛ\So=@8@rPOm׿}D//BNlvsޡͼ>S扝aؙ`Kooo9trԔ~6# -endstream -endobj -522 0 obj << -/Type /Page -/Contents 523 0 R -/Resources 521 0 R -/MediaBox [0 0 612 792] -/Parent 520 0 R ->> endobj -524 0 obj << -/D [522 0 R /XYZ 72 744.045 null] ->> endobj -218 0 obj << -/D [522 0 R /XYZ 72 710.559 null] ->> endobj -222 0 obj << -/D [522 0 R /XYZ 72 466.286 null] ->> endobj -226 0 obj << -/D [522 0 R /XYZ 72 167.11 null] ->> endobj -521 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -527 0 obj << -/Length 2087 -/Filter /FlateDecode ->> -stream -xZKFϯmň#7,d 5&fEN~ Gj{؃G|tWUUU$H\QfeZ-@BX}2 ~7ٻ_zuHf nA(*#͍7n܈iweߕzomÈ^fW7AHS "q5ټ{?„Q73DA@k -Ey'Y6P cT )U-[`M\q/JZP Pi BeP -!)VJjHahE8Fe˦@eDQ?'p*Ip9B!b©Y,W$G'ZCcy`[n6 p~ZU.Nr89`3b2\3sHnm#9b6M*?W2\ZԫM_;ڑQ- |{gb?q5MDNС6*wpnraќ>7T cϊ󰷏U-!ᛌ3x -MP#9,Yp{҂a$Fl3ҋꋥyS*Gb:]Z0fFJ@?}N,SVv')J#m8hrAIYZhÇU3A((%B?S9ʦۋ-\ Œ! V[0 ϠI@*wcSN'2޺a?]Kj Ce -T Bj+}wXr@atY'X= XTA"8QXi IȰ;Hʈtz]yNT53 -IFknwYglU@(|"ot7gL)sE' ¬\C\!ȳt5LhȄ'N,IRmwF+,W- 㔎xNXl9A`Ļj^u~r 1fBx@8!u]wimc\U[-7>"6>b߾;~HnG/'sUݎDtv <Ү%$oұ{LNZ1F:\B5CHRM+T+vaۻdZG#&r>Ϥ}q\Ɵ;(+q݌poĊFN #Z/6M$-}rEt3gG5۳Os\gM_-r" .9щ\ }*(DY??B4% ~QI?4L$Ru:*w EeU†ۼq1]᦯M ?}{ -Gr AQʺ#.zG5X GD㗊!u$KB7QξA=uDmIN:YwP^F}YV -Du1Y/}9uTg$L7|1=\Ykw>};wϐ9$Nt ZxtLUO1-0TϬ '"ùFt@r> endobj -528 0 obj << -/D [526 0 R /XYZ 72 744.045 null] ->> endobj -230 0 obj << -/D [526 0 R /XYZ 72 559.884 null] ->> endobj -525 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -531 0 obj << -/Length 1903 -/Filter /FlateDecode ->> -stream -xYI6ϯЭr0f/9 -Ў&cc4L#ɲ=r0EG{$"?Hh8F h%0FGMĥ,WGIe4[98\Det&Smx|j2eU]nL\śyoybVM>=[\h58'8즷i3Ĺ-!J&SBEU9^Z L!HٗkIfv9$ "JQ~ wPq@%LxvU -IAGam0eUÏ\zA(16z(3H' -SV\TID$TIݳ<< 3 Z;s! C(8&5J.Dl}/ -3 -;68HЧ;qL WS ]kuR&/z+ᝬN-r 4O^ oRGuRzԻ#c2֣ar N]5@N/J -.+v-qmozHEC3a9GWg$p%][۝ Ep -ӄ-U[GA7zw&h7{yr/|KR mwz -|H+7sA#H -2}(ߏ较> p= p~eJC<0>fob| +;$| |k]ܯb{폰G> #" -tH9%0#WDp$8Bv17n {:2k3{R[ yۼJw:VMӻqq2tϿ hz"@sTf q!# e`JU)B10!3f+#$RTuMO#2.ڐ5B {| HY%=DxI1d/lݣ -endstream -endobj -530 0 obj << -/Type /Page -/Contents 531 0 R -/Resources 529 0 R -/MediaBox [0 0 612 792] -/Parent 520 0 R ->> endobj -532 0 obj << -/D [530 0 R /XYZ 72 744.045 null] ->> endobj -234 0 obj << -/D [530 0 R /XYZ 72 710.559 null] ->> endobj -529 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -535 0 obj << -/Length 1908 -/Filter /FlateDecode ->> -stream -xY˒4WxCv0LSC1 3܉v$M 4_ϑl! -V~Iѽ\d߯4aቑ4Y %jHmq-]4qiٲ! *-_R&djL|2ei>aiolod*Hͼ.jaëk۳(%T`B&WӮT -"mlz2U\ռ?~qo_ X))~@s~:_//q!f|ȫk&{ݘ$NʶnzJ9ͽ<= Dp5bH'SnmR;VZ|^g(s c)śt L$Ru+ω:3Y[s[*_盉`iݼk!C~_f͛#D?O\q -f֣;Pp]~ǔ=ʃ:HτtDWV:9D +(\#[)$;$&Ķ $|H31+l,i>/)7lz_OZ~BC4y~O#܁3lPDm z5ð^֍ $/ ~ׂxU*gnڮVQꋶ۬{]Q`6[g;dmFkQ\xK)r1XϛW]~ -QФíO,r:*@!kXU*`Jsi; -1Ai9|(V0Q%1 I,%RxRver-n8jiKn҇!U#l-Ĵ,;_ÞTqu_9u2W.J{fE+GUA ɗT,= -endstream -endobj -534 0 obj << -/Type /Page -/Contents 535 0 R -/Resources 533 0 R -/MediaBox [0 0 612 792] -/Parent 520 0 R ->> endobj -536 0 obj << -/D [534 0 R /XYZ 72 744.045 null] ->> endobj -238 0 obj << -/D [534 0 R /XYZ 72 620.332 null] ->> endobj -242 0 obj << -/D [534 0 R /XYZ 72 592.463 null] ->> endobj -246 0 obj << -/D [534 0 R /XYZ 72 431.262 null] ->> endobj -250 0 obj << -/D [534 0 R /XYZ 72 196.95 null] ->> endobj -254 0 obj << -/D [534 0 R /XYZ 72 163.43 null] ->> endobj -533 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -539 0 obj << -/Length 2541 -/Filter /FlateDecode ->> -stream -xZY6~_!%r0>mY$ȵ^$hm[YH`VڲI,/HXd_}B_&,1<1A]^}&k6D:a:|x9P/ R~-]j|sSTk컽tePEQh"R$KPJs6o[d7NA -;~9HB=Mno3G$qRN~Lİ8pN(,aAi||(V nlʴ{Cnjw% ˺oOiPA%F@%Xcܦřʁ[l?]Tm 7}&<wu@W Op͗ 9MU )ʶ2XJJӢzvV: EW .Xt {iI?MCk.SoJ3 e~+Y rd&S;/r_(,1&oD@νaceYl7;)i.3 |n7Z26OLބ!6̾ =Dk{Lp5E2*j`hmǀu88b(l8 -f AAa^`!01{c}!r\]9ڜfׁAR` -sVB:1YFd|bdey9'[a DhK`)H6Z-œbZ—<<x0d y&P:!4W*>a9CMĘYƱ Cƥ* 56־;8EĉX3!H>,e@E6'* (l_~jNv ֝|r>#4HYh~M 7ǪXn.UxfcJ" Ž&~|Q R,Fqo>wF8XFNw#W -=4y-bC@:|9$PFH0c'*_Mi۬2Eg,;{eƣ/2xOb-bϛY DJCؐxYb*Rt!)*+'=]~@`c]6wE [79,aLl%)C#KoØ =6܄ޑ׈jQTGU|*kK`f<O4R]!74~sE,s,[QֳJlX@q X@]<:驋tf*sް# -B|>Uw6#"|,:(Y"Ͳ=XcE4ؠN:D&'@ÓYC񀃟u^cgDڴy]љDOtIԸɗSf݊{b{ V0G+Ê|Xht}EUy0H8~ u ɂJ#`B_r`1"CBY }CȌ9L%%4_џ2@(I?#.#Ɖyt.@ָP,y)[Q)+T\YC(8<}lfVc(| 6rHG$0S4F& _ζM:j:^HU䛾 ̟*> endobj -540 0 obj << -/D [538 0 R /XYZ 72 744.045 null] ->> endobj -258 0 obj << -/D [538 0 R /XYZ 72 556.273 null] ->> endobj -537 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -543 0 obj << -/Length 1741 -/Filter /FlateDecode ->> -stream -xXKs6WV*!x`nyLӦ:=$BA6' %JL6) ]oAFsI#iiIiݜ}L9|6D&sn"x.˳?^NΞs$MxM^$Th2>Lؤ2~hb;b_]oX/׫ryٹٓ(!Th -Kh9K#HzX -"iqYY9 o&{GgDiJNx@&BR ]J$)D);U5j(I FD3֚OTQc(=cg9A{ZY%IdZrr%ZezTcE$ AN$rJdh)DtZ?~P(:b=&+YvxV侴_~ARa~L= [k_K._]=o8oh ii}4P -L!S>0T3R~-` - LÇ'{-V۹mo6D!Ֆ-Cȑ^j+KMNIdId%$i:lOie3CfJe ;z=AwTg v W:R=3I*()g=KRn|uyQmPk{B( 3wԃRUEAtUJ Њ&)l]u-gkkYo\;z/mKٸ*(mbՔ"zTGp `^], -xJ=6lY31/wyi)j"z\"W@Lj\\(Ǭ hÇ Xdof]KՀV}5/zu[<YI4Jb7|pQO)txd T'h+ OܔQUUl0{KMf,L^l=WEd \p06ߪS4$joj96Dy1 䱽+AQR&s4}о ~v\ -`M:>r8P@CZz(M {a*28 -ܚO(3O'KbYNVmC.A 9QG0'R $cl E1V]I _B)/M[xQqn!*t*D}Qv23FQҙ̻Z,H0JuX%gem9:{tDgûJ>h(%1D%RCx"aP}.?BsC?mXx+]LbKipd#1a _~qsw}ǽ9Aq*0ny?22 Ek`)%-"osjY0b%HLdmgE-XB\4 -_,>lgYOx;*z\N V]Xpkt:?P?i:Oź0b@YVV[f7UC78veCG:r$AV].HsQ_⚗Sr$u=W7=!Dթ! s p~@LٹOChj\Ӝ= h$j1rZ8Aщ,*3R -endstream -endobj -542 0 obj << -/Type /Page -/Contents 543 0 R -/Resources 541 0 R -/MediaBox [0 0 612 792] -/Parent 545 0 R ->> endobj -544 0 obj << -/D [542 0 R /XYZ 72 744.045 null] ->> endobj -262 0 obj << -/D [542 0 R /XYZ 72 710.559 null] ->> endobj -266 0 obj << -/D [542 0 R /XYZ 72 467.426 null] ->> endobj -270 0 obj << -/D [542 0 R /XYZ 72 284.48 null] ->> endobj -541 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -548 0 obj << -/Length 2052 -/Filter /FlateDecode ->> -stream -xڽXKs6W)5o0)W吤\CAn|ɲ39@qtя^P#ii'vqOQLDbGk e෌>^_/Y%$QLE׷ u7&_ -]o*_U2 7|uU۶+fBQHCb# n_$$R2ܽo'B -xR&Wvk[G)FF:N@^%0̑h¶ys$6|FJ͜CѴ]Z>̘$%p:)16=1QP8r=pJ]&xEx'^ 5bIM< W;Aԟ6_o?az <( Sf/֍ow`eXꠘ)^dn zWmyҫ]M;(KOz9>$TcOeت'Q8ែM۰Hۺr A ߊ=F{ u9f,a˫{*Lpd t֝~{LEn/ ɶQg~Gozo͹EI'ԇ.ԉ -?~ʏ~i ZyN6~4I_ -ς#3A;? XP|$G9"uB ?rpj ƌB,2|\D Od^>F;߄7a7$\}蚢iRgOv64t󹉎M Y=0b/~A"szd9Mm횃c8^>nM2yG+nUaLïпo+v) .EGwiLՒ Ȟr˰]odȜnzS ڿ Ljֻis-N_W.oA1ذS 3}pfo^{p#!DJI -io - &U"$F1,Joz+&N~36=,ӹ8]S`P"3zv1˾ _[wZeu[cY_! =!RT_ToSGM-1΀0̜%b09g -Qj(!iH3 @b>xAOfِs3"Ǡx! X"DW8jӶq\@Lr 0[=%NEh"4b LFlQc ,NER>LfEI{$ -oDexa3AgrQ. \v%3VU?*E.Lc{'}\BlwCr8D )NGG(rɛ"N2Hs69܎.NJ(3gbh"P0=:UL3wldTWuB%:UHPYv4-SqmwMfzE {lI0 wcP)[i"$-Ƹ;{5V gV N>Kp=%j {(eއᠿ񽔡ၟq_b3<qPۗN -X TwC6v .m>[?OVơ _X -و.\Zkmomr+nS7ϊ+{$o>\em'hniu5*CGx8׋&4\5fV XjgY_x氂F*ۧD#*&z[ ubOFI M-6|lh $5MŸ]rεRC4Tv2\]waA|UgռbH|Wu`"hGQ˺yXtkl5C<֤DX;;QƄ}|Z%gd,[i^e}y jle%)N=h'j 5g,_rmL8 -ƿA^_{ -endstream -endobj -547 0 obj << -/Type /Page -/Contents 548 0 R -/Resources 546 0 R -/MediaBox [0 0 612 792] -/Parent 545 0 R ->> endobj -549 0 obj << -/D [547 0 R /XYZ 72 744.045 null] ->> endobj -274 0 obj << -/D [547 0 R /XYZ 72 710.559 null] ->> endobj -278 0 obj << -/D [547 0 R /XYZ 72 324.828 null] ->> endobj -546 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F19 321 0 R /F22 388 0 R /F14 382 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -552 0 obj << -/Length 1388 -/Filter /FlateDecode ->> -stream -xXKoFW~آ.ڨ! \[dR%)}ʴF P#mJgusqJ+nwH cJ%[%֙ h|gl9]m0Z[:e~c0~߶]޿] -(u5&r#v<ءP8uѫqtWn6X7&YDZ+Fݡ]Υ\Cfֶ~ @u2=O}zsg5؛w{; WLJC4tۥmɟ-S zV8zMGjPiLѠ LZ4RyO0\ &g1SL{,.WmUѡ,m߿ _C> endobj -553 0 obj << -/D [551 0 R /XYZ 72 744.045 null] ->> endobj -282 0 obj << -/D [551 0 R /XYZ 72 613.612 null] ->> endobj -286 0 obj << -/D [551 0 R /XYZ 72 397.571 null] ->> endobj -550 0 obj << -/Font << /F20 323 0 R /F8 319 0 R /F22 388 0 R /F14 382 0 R /F19 321 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -554 0 obj -[777.8] -endobj -555 0 obj -[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] -endobj -556 0 obj -[500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8] -endobj -557 0 obj -[670.8 638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 575 1041.7 1169.4 894.4 319.4 350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 511.1 575] -endobj -558 0 obj -[625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 812.5 875 562.5 1018.5 1143.5 875 312.5 342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 593.7] -endobj -559 0 obj -[277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 319.4 777.8 472.2 472.2 666.7 666.7 666.7 638.9 722.2 597.2 569.4 666.7 708.3 277.8 472.2 694.4 541.7 875 708.3 736.1 638.9 736.1 645.8 555.6 680.6 687.5 666.7 944.5 666.7 666.7 611.1 288.9 500 288.9 500 277.8 277.8 480.6 516.7 444.4 516.7 444.4 305.6 500 516.7 238.9 266.7 488.9 238.9 794.4 516.7 500 516.7 516.7 341.7 383.3 361.1 516.7 461.1 683.3 461.1] -endobj -560 0 obj -[583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4] -endobj -561 0 obj -[600.8 678 561 534.9 626.9 663.1 258.8 442.9 650.6 508.8 819.8 663.1 692.8 599.6 692.8 606.4 522.4 640.6 643.8 624.5 885.7 624.5 624.5 574.7 272.9 470.2 272.9 470.2 261.2 261.2 450.9 483.9 417.9 483.9 417.9 287.3 470.2 483.9 222.6 248.8 457.7 222.6 745.1 483.9 470.2 483.9 483.9 320.3 360.5 339.6 483.9 431.6 640.6 431.6] -endobj -562 0 obj << -/Length1 1866 -/Length2 13429 -/Length3 0 -/Length 14448 -/Filter /FlateDecode ->> -stream -xڭc|߶VkmF+m'mAcVc&}n}>ɋ;c+!#VP25813qDd5Ldd"@'s[Q' 7 4=~X"vfNJ8B@s#T -lkdtrYYp(.@czx&&hjn'I[ǿw2M*Ȥ;h g Raw3:X[O kk td$ ̍lL/;̝&VmPeABC틲$6 mTS1u j/(OGL0pp0pMLscr@ocJZ 0uB B,  8  `0!&3b0H!!!@@@^TȋyQC /E?q+H4掖B@dd4q3:M&FP;B?cb)$q?*aVU &?  uvK ` +H hWh/5/5/wYuP{bژeQ%6ȽݟmP1;+ͱzo?*olτם0ZW密A/? ?@~ȷ_ >8 7(/1fPy!?U:[}O - ۺyұd -d_Ff:[4&栗34_^5 Hi )+. l+W=ׁxTڞzV{G"W<Ljv/ tc -Lze\:27l i O e7d7"aR -{_kU\͵^dyWt};XA@ߐ|6ݏݴk㟰0"dđoÅw%J ]#aZML! YA/.F۽fS0o0o5`xf֫{rϒKyy7P~BWr9`9Iu",1~h`,᱀db)bz HЍi(!3NpWĮ|f`&8(7|Ly!urGt"xWzeìcWFRp -0>rU썬95w"rCz`|l;M*)rFԸ1N9.I#EG?'hNvaO#|DEnWV׾`:|wgewo -?_BW#cZ }63w|džxFC;hT[{EK>\zNw$t&oQiP&WB!8 *m%2Xqr ^B\ -5F2q -o@ h iSS^\^YoVLI>OuweShN-.cg/Ҡ(ߔR@zm~QjBDc1GBB;XqזGw2:QG:v?{`Zk˜Rib |FEjx7KOw8PTa>WOΉF*.^%>t`9dX'-N:b})qg[zba Ef'_QHa6+pd-v$=׾ї#qOZ JꑝA?b de9q`=_2o - ^^bX\LpL;ryن+ljF].9^ϓ_շt?Z!4mQ"xsO[1}cF/09tӈ>w5*stx8O_w)e볞j~3GR*)޻ 6%H.:e%6:ƌसRڍQ:<K?%&+c -'%EHlsPFCSfiW12eo$h01 z];zl+O6DBCbj I]pCyV0k֕6ݜ5H.g=&Q):,7<0We0y$sqx :͹!= :xc %FOrseyy! NdZC\9>gevQx|بgSOO;[W;ICݧfH13V=+#פ8^2O!.FkD\hu=ؽt$ﰿMUݳx&~;N1dŅsBr+Cu*GSECq)~1禔/!,k{W솚{)v-oY -)l)(B=v&&*%T+Ҭ͈6)e&dSrQ%1.;cY{q[+}(+^.f9ElRO~$@P\fSσ>RNVcƽ:&͙.kH- !U8n^_4X\:!U{Qm*O}:%vsujDO5[|i* -Qܯ -ܷhvt$EA۸Wt)r6Ch}]=OHȇ}vyK*C& -Ӱr\7۸`A:t)Cz t00BtW[ U{ Q^=IXl*~9`ePQX,U&e;IC =rgzBIk^Ws@h?m TY27( Rݲw/泚C'9?Sh -ᆪ,ÐF@5s9[ru؄eXziIrUgV)cz72d^Bl;~]eYxoy=ޛxF *js.SKĐY.tZK`Ѥ]W#Sm&)&D19NYW٣KZ[v$E; 뺠)dR~or&σqhZ, `X=ox> -GI }#f*cf`%3fڜyi<8 =]~cD-.tn`yn3&;+9-RδXA #C⁆Oz+&iVߚ,Om itYd6u0^ktIsﻶ>S{ -6`,h0Yu!o fs41!J†L!CN*0oqn*;Y$MׄHEiBV {惨G'DJinקqF)7 қ_zUP 3fXVXW=r3GJMJ23E,g%HO034L_ZE[=_4S+SaQFmq3qlVgC -m F˚qPTdcGC,l<[_avgcl3? exWR:jqgZ0Ei& ->\Rn}\"DGz:Fȸ7OP[NwEY뭈L1IY,PgRA72LGރ%u1,9!h#۷^SW̝3w6t&#z:\hE_ Hd;H`:eeo(zz"KpT\Tk[h/{qh"9+g|4>m1(XA?c?J?ۇ:#P[80NZ|@E1lGq,rcd+2(2ڹvM R1s{jDMyJyYB!,Kh1f}%4b]R\"0>Udˢm.NZiTهnrT[ZVaL^-NVo1ޫWI 7BPF6p5_w4:'*@>LUH2x=a 4O^z3ns(DFI K >M008Y2J2vMZIe,K:ث:cߊ{Qk7<')#QԠ_Цr7/=᭽ӑ l|딬Yl~%JAs 8ǻ7**1SzQ{^"!5qntp "\ -nIh}+_S&r0`0^ٛ!ՙҖœi:~qzG4J -JL{5 } j)r2b@n)`gQ2N\dˣלK!ilAltrFOayJOI[9_[f| tJ2̣%%?+U훷?xaeXeWB_ˏPYC/|*z@vX?'{"ydTrsZ8}TC8/[#VŸU9bڙ7R˩^R#"Zv}UP;1˫w886oukd限%kgmhcyC@n74 e"J @wև!؛|bW« -Y Gl? K:fa /KJ N j0:AB w 8I"2]SOr*wxa0#dw+2g!&Vz6zh_!Zbx2`9%)DM!?Ec{٥"af|rb0<+]? "uv~pק.Ɓ)ޗIz:b,4 -S('`):pxBiZ6 Z(,}iokO;yxRuS:0+]mC' 1 Un}%dNEwߜbw72Rاy55-N+{Rth5Gg]2Y D=|d$XH~A*1.:t,C̾xxz`#b@x%ZX{Yb 6C,tD4HͨS.b] z9tgP)jYxUr<+dÖ#CI$*=̟1{ke*>n3j|+϶cXmZxJMM<< 'ZckvW묶~,OZ`(xNqF:,o󼄇[0>TgIڡov\6ME Ü<4q'vAUx@Ep׀$T');#5W00q;ޏ#:6~.ビV_NZEX/a[~|R&@VIW//c@hde[]0g%=v4w[9JDI?*+*W_ԗBDATI4;'"eG :fg5K^ڌi7R;R?V -Cv#%tN)x ը~7aVa\&z6>Boj#4i6mwaz xaWQ\Y"Oa5}݄ѫ3V{D)T3#|1sE?qrI]^ne; VYNF9Jxh7, .)9=t4MR^K܃#wRoD:{-3} -8pyѦem7kFNB_ R9 - I}> ۰RML((kk$VtM&+yQ^3w#7{U"Qs?%cjd'Ҏ:2K#֧Xߵh ~HEw<'ժ2nӘDu V"TWg&\AiGH#k@( 0q%,?䴿*cۮtEӕ=Quu}mjH\*)ر|0W" nvݪ۟ht4sZTa@(F7ي"^o߸yҌ~dYl2)`7}h\Xڗg؟[|Hg25$ |X2;)Exf[nNV\32$LgE]ְ'1,/'HK9*Έ>g=!:4-b!.mC] ^R\zNb>6*7˺ {$.6p$L4~xbOfR .b1-Ijd~􎸤pa^aC)cB5lkYH%;JS=TzQ>Tj$+8mnV'gEJvSR|BӣaXLGYJsy՗nu 8ua'*h}~ڷ -D|dV|*lW\UKԦڄD|(\bm_Ix~ LV#;9omwrV̯3j`ӄ[c|y+S)P{P<~)닫NׂY|U]+la|2I4!jFDL֪c` 7' -t6_+"<2Br뒥]q@#LΤ _[+(QW#*KAHŴ]-'sO\joȥI~Yo- [H'o +#M utnӯS<)DPb-QLg`$^ٶZ2iqyG7q=0j@)hNdFWOz;]A=`@:rL\;mFʝs1'ϚvfC"=l4;*WHowU#nu_9'T:7pXPsxrV"Л"7ZKM\' gv64 TGFp\h>TP ӺĪP}S0 +?k~oNKm[tQVow $ՠ Jb853(jrsĕOϳ3.SgGןZo$:Uc7U?n$Ha V?I0Q0%ӳ*D}XU GEbn#yQ0FH_M6G7j\MkRby6QT RuGe/{.4y!jk)E#>45dЇ5gusX)SM@w +q8=2xoa9Y'MװUWt'~g^7"yd`ۗV{$#}p'֎w!Ĉ+^3U[.ƕ)ɤ%KڟB+ +,$ƥkbʺx/٫T];NP gTlX ->Apy5𑧢QmNem{ U7)~^14=,(AF6ݔAM6Jp#? .5#[F $LBG|Ej'n(b)mr*]c;}Srه/Z.8j.~{>T8(lΔK>IϫaCԷ^QQM}}ޓi #v|Slg]@~ן#G{'8ɸ貆7$8W8<VǺ\;96Fqm<. 4IA]G\N~UbPJ{)'~ɥu;nNM#JlSPJpX`^H3 1Ze48˕ B!|QЯME$)Cl7'<*5o[)0haq4ܣ"/O$E5]V 8_Ҏ'&^}#GlϾI ->6Л}7~:N$E] V'7AuFeA_GyB u0Rf'˺(ncPb]Yj<\o񳝢">(lwh+iY¾Jl@s@g/?DCN%b'5{~력t[U'V )jǓswN>Jl"W @v!FrUl\_L)+ j}W(.} vxIZ5bxЈPDD81²U1AplGԎ߹ql{{oՠxxoc9*x7]AMIr|soq7@~G%ˍ\ =.3uUP8ӫΝ?o?b 5Lg崧 ~O5DeľƜ3LJV[Ar^ -t6/3z[#N^J/=n)ȟ"%0!QΨHVT1'Oh\b*^^> pkc5AvхB!l([PƇc),R ΅J^Vr }/M -:xq~_3±kMTM ̈ v^ -I5+u왊d}unVX|%["7\AQ:i[ik@ BKZhҢGqy_ƥ@l6 /'' ,b0gz&^4nu1df Zbk} ^%Em9|h8خ].ƹȭXO]}kw'vl$ j0y!SWIuމr20~Fv=f8n0'Q"$݈i@N֔;Xu:vK;́OI!G|tGϾ8qv1W"q*]T%{ ?7+鱽6N|ėyKj<.p2vMT2+yXQ(!]>,@:ե-P[% Qk,%Z6"z{lP9I,$f`-,hY&E@&WCK.-WoJ&D[E1_-93dIIvPrZTLVgfʿz63L>Tp^MB9d=.gK'/'Hy'H^9 DMNjx5002)`V^htn@ -};Q|]3’rG;֠}Ufx'  zJNev+[{A(DBN6*]kHm5׎AJQyO1[Y>FR^\OhXun΁gYhzẆݡ獐ON?r3phavI -6[ -e"ЌU;юUOѣ;]9}0&GcO5 }]+9lmVkh: -tb9Nkz҄`@vk^ذ|~*N̦\IFbRW y;gGd5Tr[,~AEKbʰܧv27lu3a.? "V[HhTScCF5oU >&ST;'3+i-px쎵jB0ئ]>^-;ХBپOlJ-*"#DkډD0)Pv![y[S1>p2O*yJZ5 - 'oU&tIT\QޗB~uB=mWn !. ȗ2/lx4zme -[Y0kmY{i3Z/w !ք!;v#ǻL.5eH4.y:zKJ "ځW@pXl8lˆ;f->Έ{x8GAu ><AIIY3v^y)%xBUw^4CB,[:C{/jv͘3ΫLDL֚w :wxy|& cՓ׳?GG'LHԒ(pJ틏(:MVHі1Q,F2%*!@u4!З ) -P< C:"`><=zmE=!΄ѮX2U[EEѯi]>P;P|;@}ZRzb׿qia,#3{6m@/-ի;kMP.t|p m`7yq0m -9aJ=GGnL j4GiWl CU>q KgOs' XHըkSҋ8]buq& ' ))ide8\WmJ>% 6Bha,K"U|p$tW,vO|2ᰒf оY_'*RKv#"׈YĽG&/ -e8[4&C[ -˫%&/eh]D-٧-afS ?z# -endstream -endobj -563 0 obj << -/Type /FontDescriptor -/FontName /GXVHSI+CMBX10 -/Flags 4 -/FontBBox [-301 -250 1164 946] -/Ascent 694 -/CapHeight 686 -/Descent -194 -/ItalicAngle 0 -/StemV 114 -/XHeight 444 -/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/a/asterisk/b/bracketleft/bracketright/c/comma/d/e/eight/endash/f/ff/ffl/fi/five/fl/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/quoteright/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero) -/FontFile 562 0 R ->> endobj -564 0 obj << -/Length1 1435 -/Length2 7681 -/Length3 0 -/Length 8511 -/Filter /FlateDecode ->> -stream -xڭeXKֵqww:Cݭ!@CN"hC@>gfN2wmWU=/4%m V 9;( V2r\hn K{H$=\ 00/=@fo$W@ fom Pxr! _$ ryl8Ѐ@ -dg"Eg[@_6. yܡLPD3`ET@A<`5K[:ك}qrT!6 7MKQ[K:ہA-ٻl4=_l-A6+j8 dY}5,=t|]iW Pw}\\\@h"5z!nnhЛ%>?`l|99!Ԓ@- pJ/pJ&A?$TMLHMNz꜖ 7 8! 8A t<no^4+tbBu9@ ?:oB'q3G:C+ ; mbrlO   䁶w@@5E /S@ݡwtz<^0G?jiB،R?ۿz'%gvn, W%Z{A}a[{|@hK YQAS5,Rv)j-ÿ‚+Ɣ]Yc!Q{"w{9!wꚒ=eEnpBs~>wu>>^aX6XIFgyLWk_^\.X7:- -l5o4 hN֕s;OR'sx =׾F)oCL=Ts YR//,7ݩ* `u/{ Ӝ<ٱV5Wm1~/lb%udcH鞕x#"e[sScl{qh4w۾g.I*Kq9ٶ@ōsmMQ~>%(ߢ.\^_)&mR72a, &753Џgږ-J63NJaETV+<9MՒХt&yW2 " -Q 7`m1wKr lCqȻG^r?؞-, v  4$\߃"MD: -Kjf;0yx W b'E:(edo7 YgS>מt0ײxY9䦰.Ta4lZ[(,h F q}T_KO6 %:ؒN݌ oT4Ai54 t{QᜇVlaXg\R /+ AYeÐId_N5YhnPaxT237P`BN-pNۯ5>]g C0jsR'KE02]vIS#F@vd5Lw`r7 2vժZTg@&3}|X`ia /x-ݷϥ2 2&s}k؉ ׋98̯Q]j#W!qXo> Cw?24Y{hzhM>SͭkC|ۯZc=޻8w}ƖI>Mi2]/߉/آibW>M?LB -YzC{YkOfS\c`b|f_t*d.ke<`Jj-!WE|D5e)_,\m9?l $lY\p"&o? -{wCf^W KGt>oo4{}{y-eR8$xp< V@ ڵ(ҜC7.[uwmᴾݫ.5!GX}(R -hF0HjPܾB耕7Vy5+GN qu;jse]U) e$hwhQyWV%ЂPwb}ltIjvcY%>a,9g4Rp)ή/yTk*kc[ -Ƒb.WԨ6soxYR&ꆧm"[)wНTkM5w'œ2OՖMq?"djbڋ35zu 7"{$QJ7R) -DM"Et -kY*ɆvE<RRyJNS )F:{ic?10mBOEOH9)JKPɍ`ԦpG6 -*2׼H}b儹uբsJ0OC`3g!h j֒ye -tbqH*V:Ԣ'MdW+V+Rt΋/!)KaNf˃̐Yl[{͒q~z\iV#uA q:y7t xD}dz;HUN+rUҷV:|~/X$jS,7bQˇۍ(ߊɊyle1/4ѱ|.? hlCo3×!5^D KrgE]9|0!U(۝!1ſaC2=jBiGjӌt0%v<'[rja9Q~up@P9tGb?S WKqM0 @Ԩi?!>酖AC +Lx! 2cL> -7XkO?5H -_wiI5ܾ:A/&R.KXs&pF= ?AwؘQ.5PjÛbbH>? . -Jy2:PHdN5-0j -OmNʻ Ͱʩ6,؊_󽡟z@ PnV[C^o\]H@EOS\0vE w5iL$J(8pCiS D861BN^x9 -2L -ͯǣqvqԣ=; "%!7=hQ"aFqih }D{=zÓ* -v( UZN'%|y3j/9Xi/Von糅NՔ O omDmjk4v2ڜCٛ.ԉ|@ ޲J7"}knMȇ/Z&YlUT?`u-j1Vƻ%®/#1P]HX ~1Rx66@|++?ɒ=B#& f粀ZS,VXQlF^(5$eGO;*J'Vu{WR?6:J1'$%C((%lMurP-` ؿ2|QZB wh]w;`z 1zV!ͷ$ɖ*L3k[Ka _1a燵KHv]b^I~嶶!^\c{v2?9P<ںYһ~)yV zG?󦿲 Qe^K` -xAuVbb#n%K]ٙ7{__GUi,yND' _ɢi&~%rqdqqWhej\)$cPnXG -?|/S6~N[7E!PXdٖdӇYIKk8rrE\O -G\j'Q{D.;^t{.]SyOnLҟN7Ylhh8,iwf]6>(lհm^;#1#75Om>βeU/̤Y|P2BG)w޶!'%4ݫa9+II5vMÊ l`LMA jk'!Y5ḃ 2%?ܝ0&Rf^?e|S;6O^YS]gđ1,T2`HrŦ'>`96(NM\5{KԜg(1[0NV4f?Q&}s8KLG [Y _}~ O\b3>EN%pG@5ߣ P ᙿK-g R oGuh,û7p`%l2 UWO]UUv\?,p[fd ~,l_L>Z)4}TXSJ8adЦrɝb` COP>Qm3Qig?-%1Zݷ< -Gj҈>@LƳZ=z&R䖼}̧S_y*Q^;=ǖ*7 /DR-dpu(|1C/9)D1%ӈID5W'K3)lAj}W$ a_i܊#ꭏ*|苂2}f*K|&GE,ئ\N<"LDl65Y0Ȇf7VQ߱W(ql'鰋Ek ?-H")?IHSHE;j*vB+ئ!7${&q[16Eg֔ʕFz:uM_:m?6X@h#G7Dd|G(>m /`6n(*?+Nv8rՄL)K٘'pEm3רV!hH^JGD’"{X&%xZ+KiZA_޼yi2Rp'ud) {3'@6iK}ab&}̜AQ;GDMSRۿbm=?礓'hK%B׷[eۖﱞ7MX3+n픰LPG˰4A 8,7PQ0cA+P3AvMF'|(z,9;xPFhaLZ@*UmRe2'MJ& CH uJk}[Z!8^V*i*:1KAo(tZ4¯qﳓc$mi0"#5i=B(KFRY$C!Ӻ ғaE\C绣uQDŶu 7JEz}CmUBx[x-,C۲4ֿ+U4&G~§@9> .$V@vF\8":qx㸚3W7X15;;q#"zy?J `3I Fɚ\$aSlG^5z'(%zr^3G,]o_M=hZ<Xت;wd^ Hŷ?(4=nZvn MrVkӕsţmƒKcZ͹O=˗oȓTpg$QYIu$?ռ]h63@2l7V{[FoxO޺5 ܝ1>x}?5UE: ʇy l.ŰK=)~i.S!YZKKNݪ 4(#)KgtsZMÌ oP$ew?|fSMP e:/JlS}okg[fPIDOϡ|B^ۅ vFzeia1fF,t,1B}*5`{}4Eh#CԆ"t/LӣzH ;$ =Ӷ1 %Ӄ0kn,jgoÿw -?ĠD{V.zIꭳTS,9jPS{ZLn,fϐ6ƦNѤɯ/ =cO93-D%<PmX -endstream -endobj -565 0 obj << -/Type /FontDescriptor -/FontName /XREVCI+CMBX12 -/Flags 4 -/FontBBox [-53 -251 1139 750] -/Ascent 694 -/CapHeight 686 -/Descent -194 -/ItalicAngle 0 -/StemV 109 -/XHeight 444 -/CharSet (/A/C/D/I/M/S/T/a/b/c/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/quoteright/r/s/seven/six/t/three/two/u/v/w/x/y/zero) -/FontFile 564 0 R ->> endobj -566 0 obj << -/Length1 754 -/Length2 1036 -/Length3 0 -/Length 1557 -/Filter /FlateDecode ->> -stream -xڭiTSGQA-.j I d+ļ 'JIU5,;1&HP=DBPR T -uC OB* k! -#x8_}1KLDzas8\JHϻ~`JA{A( 4j\b]NRG - ZzkLQfQ/Fx|3*1oZ(?>*B=T kݲIyW3ep2X]׉r8m2MڳߡTh2&7ښ3sviW>\<67Mߵė9AO\g- o6{}Nd4ZT։T8{i1ޛܩ= -%kFƕ\y/KeEwcegԛ7wPݮ4-8s)a&BEǤw])5KMe`*'y'nMzT"M#…giM>[Xq7R~ӥv,LIޤr+o n(qdn1okJ@Y崹g?\*blt28pųhtD -M;PX^cM-<NSea]S5%uͶ7lboeZuu9K^1} -l>~ȺYCZ҇ugjm/DEwGkj'z/88٧x*^y@S3Z?EyIfs,fOY/!;65q1::WOX ceؖ.buY[9!^x߻ڣ]eWl['d*ه1*݁2Ǫn?BOl5o!G/9w8##K˥[l%VFҐ<44~3I0:L{rF9v44GO2x瑁ǟLHok:*j`@СL<+_%+9:m,eT ++Yۘv񛎩)/ϵsՙ }ߊJ#ySC]9''n FM5`"]K_~i]uulTvۆ>n= -endstream -endobj -567 0 obj << -/Type /FontDescriptor -/FontName /QIELJB+CMMI10 -/Flags 4 -/FontBBox [-32 -250 1048 750] -/Ascent 694 -/CapHeight 683 -/Descent -194 -/ItalicAngle -14 -/StemV 72 -/XHeight 431 -/CharSet (/greater) -/FontFile 566 0 R ->> endobj -568 0 obj << -/Length1 1936 -/Length2 14872 -/Length3 0 -/Length 15919 -/Filter /FlateDecode ->> -stream -xڭcx[&՘mNlvc7m۶{9sj}sߚy1 -_ "V_h8R Zzz8RRA;xq0s0‘m\LM@;S=+ 򣆁@J ෰ɰvN@CZ8@hljGG5fCGu9?D(%!`4X Y,M-\'h6YP࿵I M-WAԀ^h(k``0ҳ2">&/ tj - -dL]mSO/LA1^}26420\>NV@C0G -c&#k;?c7N/N?FK :ѿKL: KZ$҇C_">?-rC_Т>(-JC_Т>-jObX]@ڛ HK!ǃ,2kh‡lS7C_02Aӿ':U7O?V0~gߏL\mLVCGf?FV?kV?f2G?_1hhw cm`PmquFedPs8f?[)!?nqGGz&(,8q>ZvpGG qr>]]u+KW<V4p}}\FW<4[^6 -0Kj*Ν*0nm_jQ0"iKQTty@g!7.rkb},zҺ)&+M#A_Ey(}C|ic; -&ZPeքp9Ms*+)FIR>EluY$# #M2Λd9!;RYRٌK?5m -ݍ&] [#_g=.ʓ勗>y,;:(m(W-MuOR/3R`러! 6 s||]&X1egQ!)T@!I #aA99QVqɜq=[*jԴejc&Bf+Y]4qVcpXa6#"\. TrD\$m0̖{ ..C[^DUM a۴z r~98(5`<&.P[ VAwG8} Fj}1nruDSW&~3]d4Ф2?$oQo> -#e4 !-7J:.KӲ$eQ%QЕ/אr }*:>;qc;^[LyoakgI.7dI4Qq:}cw!% rMӹ=8'ފQ  (-RxDSH)U!iO.')187/^zvK8kZTnd2[<9Ne8?86P13JVDՂTE#_ux+zYBYvTV6*!a|>}gυz3/U/\`~Y6du'kc ~G(aDuHŤږxbx)ZzxC8Ҝ387o"h cε =^ tV\'l_9~> bRN?tC*3r'R6;uBje8g kYS_N ö7YUɅ AS^ΌƆ Y⢧ L@1Nl1zmŦm&u^6KHxXLV8c| - %,x'q ,HmNZt'>*) țgf夫p`5r#EgVYGQo$Q-}V㟓Qϵo~wq4Fը*E*m XB:YaQ6@tAXqC8H?xIO*͍>l}"氤6O]%yaIp+-Ұ*N5Ғx9#{&%"$~U!>^DG]dKll߹NM4 kHuwgm"n5iȟ¨͔R^!!^9˫fOI8KX(\A?nY j>*>7kNZA%iV' -NAMCwr_1R8'_BK1bZjи {C2u C!Q/9SUj&&r%Cjp9#iSȑbXjM_5QꜣQw O\?0oܪΓ*6&N_,|# :Feͪp9x8 ,WE:LJU39]f|pVc(w`ƑUƭS>ϟʰY!3[}߱60bK{og߼ĿRjuM5[AuLJ^]|萲&A1He%Eֳ;KGiԚ2TGc5NivL\M^ V/|״Yđš類!mC=7C/DdÝ2 -iXJz0Ny_FZ,7-ZN^8EQ4kG5J 7s۸Pz4 uzsWo)a)p`7.xLAMYv(Xf),8'"pl M jJȉȐs|$?35 c`ptU;4ensb2GLu*eetAxPMD8M'5ꈩIZhᐰɃC*9F8S-A>؍ -n:SNӛ]P5Aju JW%su[`S.nEǍǛ5˦qߊNVG @ť1Č1,{1&+nճ^;b -/|[N7g T4|R{/=XvPkڣ֨+H|@PbſPmeP8Nu7ޢ*s,8E8b:-oOn.29bZ ߊ[NЇfC^ϗq 5 @yk# c?ޔ m'n9'͋l3#aNpzz_k2BN5vb -ICcƀZj[?”;ġ -HZ}$Agm9?f".>0#ڇr7AZA-`h>v2܃9l!z7{I=5R ߋ"gA"NfkLIAǖ~]4'KMS7p5֮lU/u_C+Q&:!ؠv*BLd*BMCMe֝]oDJō݃k,`|$ˬE9cJؙpb5S!C]CaS vSN}O%5`1\ucɅ\ˬZ8Z\!CdoI+FMOVCu$;Nd~\? e&mmil'?;Tad*[6UD``]^=jxpjsykHxwu¬% V#($FRSji:{aQ7.MN[; E4tB Fl*ȇRYCczKJڒPYiQ\WNuU7UƯA_\cn_}7e7@%}YMұ #Qc |xԻ[DN*\9>?Dķȥgiy@H H۶EhFoiUЧz?V6~"Y,+&Q`/gx,TM>ܱ*gt݋4wU M\BZ!P8mP "%JX~?qxO_9(.P@;t("I?0W$ݺp.Uqo --l^w軥0-g,J Ϫ WZ7om܍+ȤS"c1>=kYxM)YhQD&ÅnJf@!L:( BQeR'HJ)[5q([Mg?ꈽm(';H]qTTOϴLXmqNj\g_WEYS\%3~0"M9$eD755!Ԁ4ac:1vq6y]^T‪(_w!hu~R" -{bX[ PHiaW0|RV/JC.!i[lnBD%8s0#̓1$Lw.?'ڋ¥rUU dׄ7%7˭;F=VRS -uv{Ǖi /sT܊bRdP%3-/f4o`6\[qMBC˝VHd!4%C)-bJ#'(KcLVgg:3[CzE"6F:d^.ge[z8Uq)]Akׅy&77e<:/Ui"ٕ̙7ZrAD-WݒL?$k)̷ʤ< -oC¾dW>ՙMM&qD~r2JTɞx349I'/4n~k^hʓEdᷢMjH h8pM)z_ڕ"9?'9*j@}b||f4漠Լ:xin(!VͅSCݚ:QtoD*v/(S:#zBjǠFޤM -4#$_GEfXcH4V3Ż?a 2V5n$ D'bXeHl_d6 *;1 خȼHH! d *:L[[J=R3kE?Xtlf|B5>Yx.9s)Dq2:s /СU%dd3<AEf&+gįݹ`lPpyn{yы>.3Û L7{f.W&jԝ$NSYgjk&j־%rV<+_ r ϏO1 *cO}ooOgā0?s4O"9D;`єJ zY?IM{rLn]> -q&](3SVЭ]l)Tk|Ge BTJ JQzRyF}x4X&ŧPFyCNDI[^17:sLGlACNK} E FtT=et}QnFObձQM#~ph=#gKAjV5F:ƿFQ뫞U -3#LG -ѐL}\\vA;6-"bHp/ٳXg%JuA5qM=Ȣ -1RyNbpfsZ]0u_kLe^]VRFI&~yd8-u2YqO jei@4غ@O*o6myg݆ cfū/p1 /rQ_wn?P^$‹-ikgoыdb%_kDZ/K:SZcWfF-h=ҫB{s\҅, 6~i ?WxY_L~&C3ʠ~b OkwI"_1-2urM\hFKxu2]I+nZDQwGk^n@[a^^6e:nO>H5~ӟ_%[dV`z_,AXIX&h\6ަ -:Ioq~<`9Ӯ}{D>G Oy*g*գۘZS7}3 syv7!mE\줸_L'k -ڻ'hN$ ~/`,69Χ\[!"#T@AZσۧ -EqqSE͒6}]!pJ%BĿkbIu"T^r3Wxyp[U&՘/Ԝ`JӬ{=bi0FXU hItC_9(=Oý=_XtGh:eCv}8U.ԍ()VHcY;/=@ݥȦutvWrָx?kR(Da!e -x8q9Lūb]b^ -֣!Nz~Ji=%؉/Ct ޿ɂ -c cl5^tSQ 3opKDm>1c:T8*2a+tkߕJ%G((%#*._YC/kj-RCF@4~1n%n hn3EݍJ(8Oig\\ؼAugf1̧z^Ee8!s5꩟0ÚRM>%:{ ->𚪷IeE'1O4*,pn4ä8nϠ֦zu^lݞKA|Fk,;ki(!'zvCxW$99O{#AewˆM0 mg'6rbI47ocupeL3m%r]ܩ.N+hP5LC2fz⟤F&?2fËĝy睚+D)7MTD| 3$a5EgaA9ٯf@"uLA{;s  %x*dɒ^~IT(Hu-OtM1XW67f'![_YM@wBCjgyqD߀K>1-p(~޺ڴ SG]eD;#SNIZ/׾ۥz*2~ 'qZ!mXҭHsD_rc|yæk@$]|WtSQ;,_Ũ|F\= z'N(26J6 |c -u$XOn# -Mj9Wd&up% /QR[\=Vw+c%=o }$)u73Q.%"b Te4'fHYOn0Zrn"sܝexot ̝ZIJfT1U# |\=|K?Fgz(8, T~psKΪ߱Hwi%k$`fEu(xȲV2wx`EW^hN}hQ{s1c XE9MלS9R$.\ ~$XE!$'$T"ETcq9&C1L j5 :fG*^çKv= IƄ 2:XW(c=4o!LXpğk dk%}dn{<53@s/Sî/Ddѵ%HE_=gtLk-.FWS|xr\#XM]{iWJ(/AEH/[pR$ }~IzH[$x_cHҚ_A'4+7UlAFUb?}rhJztRpGְOygYA{we@.UZ&1Q?ID'09+W})q#I②n,1W.NGE xSE f[YL@QP[ߨhj Yz?r4ꎳ Z1x -mwUiz0s0G} ɭ{Qwa:|;6RZq/xpܜHFO>U3>Mf -rGTy/*Yׇݏ"_{҉,|koWLҾ:KuS(zDl,D}gᗄD+LHyuѱr))V۔^Ib(8[CtۯґlRPg4b˶b1ֶ<ߝR\(qPک~DIm|[:kP|&ĂBPfoEշ"B:؞m ENq>gߨ&#uEh#'ngǯwPqf6~C[edKj58mXǡὍD_y1]Oo|Anw ':i,@NщɘF]Cb?~ %Oh۞}C( 1~,)D{zͅA*^:ՒK^b [jEd)lf,d{Z| ӻ<7jnt߹8 o",zX]qik/%4sW WtHoJѰ&f *MGDT6N0ޟ`QA;UF>2mPMs@TtJ=f0Jx2` U?*Rݪŏ)կz2kb9YzDr߭%v•F^G >8P69:5#ڨ{3~F]{fÎUa8|iy4(fCv} - ROUs 7Q,DtYGSBeDWW\р^ԅu(g7!MƇ\tpfj(eBlO;}bt^i;{FKeG;$H~X:[-9z -`An!yM6.pGfSlh[ĬVI-&Al8Vkr?>SHݤr5lKsxv%W2ޔЂ]VrE~:zu—!AhE%YQb:܏l?Gz2q/щOIbwPt|p@6o w\c:j^PۿfMK+>EB/LuEf݇0kuaJ|GQ־~MOm?ɷylfFMt!.M6|7Two%AIv*Rّil#xodqzL!$k)[7gLnğó|X|˩4Wp4,܉7pk Ok5?14}A Lq-? n -Qh+puUq<^yØ?8O ]r[XO574K/PQa::$8woi@ ߓ &fmBY-mBjixOdGD}hfM2z)sviεĴaoXHy Ј|+ϟJ{q#PߕBJyЧ6;^ ~yS3I] =ǏVX@djIJÂ.*%qaĉ!+ꭓx -9m{L<wa-D j䫭[op],Z@az&YC_[- *oS;^th>-49}1g"C7{6$DΈQe*v18B_uN݇+| Bcx"+:, wN92}''5wVlŚ#jlc J tv&^u40(p b9±^bn`r]3ZVf@2POz -jU t;F.gkAx{r#x=K?m^Pun ~߶ {#t$}֪3 J"RZ#zZLMrb }Y98ZLÃ(MsK\8ya -DM.PǗOPU=ɰA1+78d5%!B"͎ #譇߶"%8?]#u@ -~QX]q~ g:( EIp Im!&hFkM-$]Ĥ|/!ގIm(#4"Ls -Q|//C?٪Ir%l&xtL7<HG^"}86UwPAyKTUZx/ ;x7]:r[Z:0.DPl5l+H4bvԌMI/g"|Bhl>ϲ<10- ;9xg.S;# P-erA=DtDF[UX3#<5mMT"RHXi'y)HROZ]{嶰3n/1tK1Y<M; 9wukQ!>vGZl1j'tS~ֈVS/]gҥ=U9p5!. Fp]c  ~k\ѰU#iyJ ]7Ѽ3gZ Fbj;tQW3~,&0Xee[Ֆ9+ r); {#{ Y ,ԮThɏ']O;/7`U xr5좧J厁w -(syVE7TNۓ{Mb\B)46)hP1ZD>5H.F^'NjlYEn<V^DsAS0q4wn6UL # +kp_gʗR: /G-NzJ''ꐔcMӝyH4 3:])J#Bu]'=bt&|hWбGQO[d -ڃQ?I$zYȈc?nޔaF5#[t^e$ۧw9:qgΎ͡.[_OJN=(YZAR8E@&)'X{;5K.FgE9qϏBG"!I3=g]o"EQ U/ {ktK#q}./$pX C98Q -3ZgI¶>lSKFT+uVz o!x.(K4@P3{Mn -uFwCx RqWݚ>T9KTƅs"B=s~A( E -ꢨOlg O k>>!/iK1QpOYk̖YK2Gl4~f.Y - bBOK" iѮ^1O1| :Ah5_RX0 ޷}Zd6peWEi&aFUA{9̝qzy~zɅ]i3E{d+<\dF该[K]9yjKr{wn -XQ3T&uҍZ M(,,Pafw1n~G8dBz=sg$= M8>M]O)g/Ɖ_2I}I//ܩp5ޑXP@ql^NL(>Mb_PC9_\ֳy9OЁL'S|=?p!ٶg,ܮ}B4pip6t$:z/|:6 a5 x:ѵiЊ%㛯+WtL; JgM -ض̔qL×eJSֿKJ-kډ(X';tA˨;V~ZjPO*jW4Ҟ*L=@1N;L=#p*L[G vd߄y -hp$b2:V{!X#Sr<{FvP&&: 0HIӂ p;tQ[XPA|)kkv_=H*<D#ߖQu [ -%/p$]pa}M _)dR/h\ݦ(&-iL#ҵ@l*<)D43wN85_Yf*5f1 :QǧW=†;Zs w'rx) +^)ê^NmҊZ -7}gQ5_.9zƭU!\ ^CZBKPa-ڶܹ/ 1~Sw:hn>"H;>X/bNc2=B'ͼ*»fR"+<ʵ?t'`+%'YQW3N lok-=PhN}]ӥڵl]'4nOɌuqԢ4^gF(Xgpu ,4#$Ü)9a;i>,D -6 -zl¥{_`b~lXdpBP X:ڥ cF%pE8׿Et4D/SMg?o6aqE0\782>Q oI -8IKJ1|t^K˺Li`!xƑtFsyXeM"ymDTqr~pA)jzssY B76&^d7Kxy5ǹiFDy[(:L/o+Λ PC?ie# Qh4ʬ0B$sRgZ -y~gt|IjD59Lfĝ56$Qm\µ4=L?q7{gwK!B)ꆳ4! Jd*5f L|I#7@\n4 *y#M)F~P mYtM;F>$%(Np͸>u<]i7,Ͻ ̮ L[P؂ӏgĶ__C}Zؘ5ލaZ|gR'ŝ mɨ 'mVMO7i7Q%%{!&zr'ݍ aDs~ZMk`& {I/Ld&g{6Fr@`{~:0[Z@DCmc zksb=Ь1u'u=c򷈮ҭGڸl:ŕ]?E[j{| > endobj -570 0 obj << -/Length1 1230 -/Length2 4127 -/Length3 0 -/Length 4866 -/Filter /FlateDecode ->> -stream -xڭy<LJAYUnk[Т1lƐ-E ED5Kveʾk&kR~S}}^?uusfN8G.KI-KK4 kp" -ՆLI hx2X} (W" uH ( H ,q+hрůIF:Ia0 H  -;yF<)QɳŢ`)ԿzѦp̯?y8[཈H`sB^Be;k@Q  HBy|Nf("p=HӿMPZN4D+_?e3SC@a!mEPXH+p :!}1T -#Rq UPZBIQ!j,(w s)P?$GYa00iitaye!p9rSRPbCH>s?H$衵;+?Qx8E#?aJ+9,ek/e@K QD8R谘xCH9!lqR~P󪩉T2Ҕ;SnE_@3 >Hx|P qKz5P@#FRgZX<:Cl[a -3wgd}yFG\>:9ůs{ΝUC[kTg[>fj[}5_lN QPMA[-8.6}Xw'7q^߲>ؿ{зCW49TIJn:G|Au@拿&chf,Ni[-j;xnk ֎.W9mU&o]ߵ -Ь{͜"~VE_ґn㘭*"!8{u97ߛ9WȽ=ȵO:=ua,Q=jiʳ((|^_7Z븫nsb`xSa=&yàF}wO[B?j=qNsSti%Կ|Pt+lQ̹wDZxصNvٓnVH̯Tf b~n'M[yKomcX{AD$3H¨ע`xt"{ c)0}"?A-TqA^ohmϾ,TQDũހ7u:Yl`˄®7#/ -S'uˊaDwWEu={3¨ʻlPKULrEDFN折+>9Ǵk?#JD]ِ3xJR3!X:tx=`keϼ0C9KOJ2mt)VK>H=9¡<|Z@!ydt~Ӏ#e&"v;܅, Qӄ<\~3,V4]ʎfq)ߙՐ6.\a,mw2ߊIݱi"T*N1WoKptϵE}M.a qxHY1B%*j ̲K Z ה4*O<?TCobҋ4ƭzP}uks4aA^&}3x{jWgF3$ǷO뮟 <F:rWBӍ>"Qs›l&ר/W3w|.ۤW/w\7` e)Ӡn g#o%,dFu>XDd,',MUTi1phк{%gRɖ-IB/G밅<09 ,D(+lEL/T:BgԨzaT`ʕU`ϯ O 1Ql*(17LtԼC؇kz;(вo>spV^]TpEo6T8%\^c"tzpiqt_T^s =Ry kdlLүTwa|`ٛ~QUlMt j -Ob)2*NNU8(kF_wW=ٕX>.%I4KFO}bmq埻i9Zy7>"6NL"4-T>]#QiN)5~pSwγva!-3dV`H"u=p`C= /@se Rg/`!SB߶2~2uk+>$,"KOLmJ4>E% -g-<1j >9l.ocrZQalKk5V%b|KS 6#$=űv#Y>f.%sחЎ)oQ^-H ʾukJTBi?p]mUaQhgrYWceUbC`As; [7/|w\2MMLqS3L`4Xy|xC*]*[ru+yטqIm#% `NvpÊ)]V&B-N\A+2Iq.\ɠKhsciRV?x]Pa/?repo,%iy1+.ݢ>ϸ5/!  -0:l**Nנ Uز_OkjLF$}GX/ȿ~> -X4"aL2EVώsy3G4Xh9|M*ft!S9 R=G BOMj/z#hZm鋊72%98YWjnMcfC*R.Q/(ʴ -{545ʼe 5c~q@CJ;cZmZw]_/SBe5ʷ_W5ڶy7ŞҡLG.4ǵ,,GR8n}s|BSU%)[Ek?wh/T>p Zx;aﲨiAM.9JKj1{qMg8f{w 6j;U)!$GRttnM/ͮmq_#1ꙨÀSފ~SeONLB;Y}Эx'lQ/p̴?H8G-܎t/5^`^H,85^ϵyWro VeQBU=Ko zu鴠 EKSOl%dmg3:S'57g@&?wf -endstream -endobj -571 0 obj << -/Type /FontDescriptor -/FontName /KUHNIY+CMSS10 -/Flags 4 -/FontBBox [-61 -250 999 759] -/Ascent 694 -/CapHeight 694 -/Descent -194 -/ItalicAngle 0 -/StemV 78 -/XHeight 444 -/CharSet (/C/I/L/S/T/a/b/c/comma/d/e/f/g/h/hyphen/i/l/m/n/o/p/parenleft/parenright/period/quoteright/r/s/t/u/v/w/x) -/FontFile 570 0 R ->> endobj -572 0 obj << -/Length1 1045 -/Length2 3253 -/Length3 0 -/Length 3908 -/Filter /FlateDecode ->> -stream -xڭy\|s%+VcȮXc2QhfQVᖕ5`QTצH/F6vD._z%˞ar.ݑQRznwzR6?&skMq^qo3j) }Qs$ts|?6#:8e UOtݞR+~ĝQv1#rџpІ:4&:E~kp=\0vouL}2\[%b`+ZsB[%OI~¾=镕 - b C-{R-X$wG~*PM~Nؙ1pœ:),s<$(nl 9몾-6!$ľ&I_%U0+|eq ^4_gnRpXaWϐCacGͬx7͐fK.}B0ڛʴaWу஋{XX~8 ~4\% ffRTw/Hː6>]bץSMz3/||#"T9έ*WyrM^iu37)4Ƿ;^R)s~Z|ZMsp!xEː:o,|TDz=^=nԽVmba$o8KlRF%>m*G%?Phx \ߛ.اE"׍۷DU{cLIEY 7@AN__m w2wqn jӕҕ.u`u>ҳ$0ϏVDzkkZیf66r-}НxÍ{]yH(ZB{G2s9{{9ylae7|R \ywBvL[W/̾^dX|=9w y\J>7 Ҏ\Jlx0'IOnNGtj٪:v[=ƍF \}}P ˋ}‘8a 7 p#޴ ^i{w17It%<9 -ߧeʐJs}^nxU5MX14ģFZg&6+9aې5G;Ř#OiBoƭe%F&tNm6.Wтr#Γ!xZI3 Sș g)ǒ hT*2~U8gÛQT+ut -OiT߂x:|+xC}ըLr)+y#[~0'|6o8b+*sܑpl9R~hA^~!T7%ƒ`ɋ͛%żWzIa!*jyç!=K@{bvk/Ly}Ӝg:(,&DV15sY`=UU{zF O"),)tEqzka.s^z MlSQK7J }QT!% %O8z^aִHσ{-3fHnly2rSuqW>nU+/ S,ѶN  R=Ѽ)(6pmI&^; ]u^YrsʙU'\([u'_;WX7=%+oyfs2'M/x&KlN!d> %fUN~CQ|YhnlFPnć{!zS>W̺_04N8z.PW_mm[ceQgYYr#ZbVC]vx9>Qԝj'y[lebG4XĎ+) &n}m9,7v)$D\ѧVG7/rfo>J] `2c|'?~k#4Y,؝Ӵ=ۛ5()kH ]:KJp5CTzTACU.4S/4<ӒRQ}b Ո9Z#_"Eҁڀ ջݷqgF`YITĽ; /"ToϘ;3!' -,ge1XUd<5#Y/ս"Q8Uie=f9 SʜO<͛ըS˷?7ZֽE/@ ϬɤI A^R?J[)Dq!f(V7j's |Itڀ~@N?Ϩ`ZuT&X0E.%C?Qm;qH1h^3 > endobj -574 0 obj << -/Length1 767 -/Length2 646 -/Length3 0 -/Length 1171 -/Filter /FlateDecode ->> -stream -xSU uLOJu+53Rp 44P03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8&UZT tБ -@'T*qJB7ܭ4'/1d<80s3s**s JKR|SRЕB盚Y.Y옗khg`l -,vˬHM ,IPHK)N楠;|`xjC,WRY`P "P*ʬP6300*B+2׼̼t#S3ĢJ.` -L 2RR+R+./jQMBZ~(Z @S ֩%`!L99WTY*Zm244S077EQ\ZTWN<2aZuZ~uKmm+\_XŪڗ7D쨛Rl:/P1dɫϾ(l=Uhd_OܗEkv-X1tލ`i_y. 1dz:un~Q?3/S}] -$e~s]F1ʻ/Q?m򻳷|<ċݺ/q'}I+6EgxT.GgtvՏGU|~]Rޅ_k9:{pG d}dN<6-uBoH=cMvHzqaRK~,K̞}˛myo~v -_s>.#ҭߦ{/əkܗ8r3{>{YK{ 89\2Xy#frv^s@49%KfiUJS2Tq8T>Q^|lE~r86!+_M^g%;i>d5"CМw{KJ|tab[r=[{`=5kMZI珛ڿμfs!(YAMKm^|QpݾpYaa5Z/g锖Ҡ/"Q4 -endstream -endobj -575 0 obj << -/Type /FontDescriptor -/FontName /PLHDPU+CMSY10 -/Flags 4 -/FontBBox [-29 -960 1116 775] -/Ascent 750 -/CapHeight 683 -/Descent -194 -/ItalicAngle -14 -/StemV 85 -/XHeight 431 -/CharSet (/bar/bullet) -/FontFile 574 0 R ->> endobj -576 0 obj << -/Length1 1501 -/Length2 7936 -/Length3 0 -/Length 8810 -/Filter /FlateDecode ->> -stream -xڭweT5.-NS(nAw+P8šW{Lg޿J~dg;{(I A3`mPa5-A]:dt@'І`` X\08b l?'#`&3Fm185n@]\ҰtJ`gW(P!.5:^e%Zp rZfͿ9 -SW?c<o1L_nX _j&b qp ,!K ?ba99\PX -I cpZa;L2wBN7/ B, -73Y_1;a_ _8;M i]Aс 60&0_Pmc;C`,~0Q~!@׃Fv.7Xoda\vr]-!@_?I -7a6'7lÚ~X;Z* d>ܰNсC- F-V]2 }vA=.V7' ۏqq#u-@o5'hczkde|L2 ][ƻ̰dxPٸfmu!=n -_Cܒ2<-|; /}]iv.\kmNT*ymPINunسy ;\@P! KVᅗic:,1 -u;ۃ %6G&omQ<*ThDf#Δ *n .vej̶ngGQ5&awsjlSu<'w0.r穒ٚ@0tƊf|'Jթ0ֈi3m σl5)rg8F*/1x$;IF{ŸN'RtZ4˨ -Eğ#,VaBKq}}hI9aQ:f>ۑfn=#.njt65 gxt\YPh;FD*YyWhSUxm^|(n.d9 ®eGTQr}UOOnj9u)+a,T_gLu (ۘ)kgb{t6&Źؓ[ -! r2ld(3< +̰цN.I _87پ־ -E`xVq%S"B8"5ZAfߺAt#nPFvmξY>|$=_$h0{{eZ3,- 0NMwwu=Kc;FNrnhd;wECP2ᘾbg(v Ѫ(li_EfFݥt8xsAY[|?{+ВHC&Z4f)'yv]= $c9g}ӮZN0 -9xRccۯZUu3jS7Fk[" - sXO GSb(Rjop"XvEf{g|1 4#8PK n, BdLȧ6na"^q&_l5a(>U/L+W%Æ=u_k3͗RJZPj'T'jDۅpIk< `O8&iD'G6ۇo0.[I uNX]{`v;:,8mII;9Z_) zՔ'D[۴8{>0s-/qLޜUQ $ 7\W Xm=j0pUb8D~)5#,cj2zi@Dn9,tg/Ɔ؋rZpԫzߠǖ]8b|u4 -nkxMo#B6 _X0pr,30XVßMf I/fp6=ê6*d2>0*^ -~xZ3'Lb=h::ͷh쾌3q1J&sN! |a}!%pl:^dF= MO.YVEXuOOAtwg |ZvZ֑Ű@6n7e)2%1yzFkskMeXԱ[n* ^&幔-Lh7׼NM)4c" Gd[x$q72Оj'XbVծ D%m\\hcζO`ПׇԨ̙2KhM@So^W9 -Pu""*)\e)dyM,T&!㤔YRY!E8$Ʀzv8ВBAttw"Q.;e{GԸ(ז4zr4՗ A=~=defCXz>LJĩU Eߘ1&}rطţjH/"50LrЇh^f526cЎ91eϢKؘ,WF$ڴ>btRSޟ@{!풁)݊ -q^zp ]mΫ氷@Fc oy ̗3UhzetR,,TvT_+Y4wazAɲ#^$X8eG.A/_؍K<Ξm+2gw}?)Kzz~vɸ܉E8S20Tr0vwBaKu6mD*pjj'܊KJָŴ)?Wbc-: r(^|Mo;B]'gO$k,LН}:e{xg2lcpʁlC[C"+]F]C%#?'.=7*DDR뒽2iĊ7i+\w +yh#!./>tcv)ta፲|WXG\lZg|Hs .DjGxÊ(JD" G$ƪlO-Ic;UvxSM~xlu+%Դ ZаT ~/:͠Wq4R/\gTǛ y;5 3X⦼͆)UT,@zڅE6Nr9?>&Eoj*ʗC/% 9Rz],?ީ-soXK$N1#4)vO -=%ʗka£:Rqf{Pc0umjyAqu!F{9V3$7eX1|NG6jQ#AϸaPG%ܡ1'iӇNmҤw;J1򺯧\|3:vݴ+fì%}y:2Dt%$CG* '4L CC'KǢ4CaXW˦WO,8'ǭ̓hQJZ~WDN)_\F>nL~[W{b"uhlhF7AHBK 񬘄 ɣB 2z_.֩⫅$=2rv/)%ش3˖]Y[o̮1Lҭ‘*eǟ&͝wXsEr2qkGG FϪR\uhHRy??P[}8`N7AKAR!=4E켙B:9 O,NrSV1x\ϥ:g!ZZ3Xgpy +gʛ)!bk_p8LY09j:lIQ`υFΡstP'jh3{h, ^TF @bb̤VmAxIbax@\r + 2ShH]zQpgs##c;չ>|l^FǴ.ɋmkI4(ga mi~v dvR)bFʪ[qXe,}#"m,,Cٕԝ?įd"=MLy.n,lO7}Pl69Ti@-L̪f18uƣ0qu}B=cJk44p^5;5ߣ"ѣL*FTT*=N̥XKy -u*W1-##-y95~.I;K-D_ ?qa&o}T#Ӧ&~ ZJr'۳!Ą9a؛ DT[Lr uJ69|O*U#N&6#^4z|Po3%ȢF5!u)yݐ;MA$ou>f"b -/r"?ygt/Ϯ5S/$}uEUIX/)z& LKC($Os$>\ -Ron|pjqqę/KԘPM%.E<-{ý9SCvII1sW+C5^, -lNwq pgTQTK:~wFf7wDOJ!rIrWDs`IL8«QT*ZCy2bK^&M# a;rw\X#|%Z)ӎZm[8rP<`aIgZFRY  TK+o/9~͓ok:QYаd~e{PEj}i9GTg?puy3ʭ2rKy/>,D~b,T _J\}A++]1wW4C!y?o9 -0^Ow<\~CeX|dȓcȜ 䮱Tܿ~e5~*grN8|8SW+ i@Dx3ŊN}QIyدk*cJKJ8d}rJo?Ӱkg_ -œaR$!9X!>!g$9gs^ vmȱ']_~f ,R\>{qqO*]SӲ\M`}F ݉yhRopk %{z{f` ,X*.=FN !n9A_:mHlW $e#)|Qo(c2["GLVuRV멃V{F,pnpT4DThz"u>"EhḎuk]cQ:d1PXFɲ^xzqaMƠ|G T/w#yF,ExBf -CԶIv~$o:b~]9Y2)gKJBɷ+L$DE2CJsoJdvY}џ Zj{ôW}K> endobj -323 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /GXVHSI+CMBX10 -/FontDescriptor 563 0 R -/FirstChar 11 -/LastChar 123 -/Widths 557 0 R ->> endobj -321 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /XREVCI+CMBX12 -/FontDescriptor 565 0 R -/FirstChar 12 -/LastChar 121 -/Widths 558 0 R ->> endobj -403 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /QIELJB+CMMI10 -/FontDescriptor 567 0 R -/FirstChar 62 -/LastChar 62 -/Widths 554 0 R ->> endobj -319 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /TBKYSS+CMR10 -/FontDescriptor 569 0 R -/FirstChar 11 -/LastChar 122 -/Widths 560 0 R ->> endobj -320 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /KUHNIY+CMSS10 -/FontDescriptor 571 0 R -/FirstChar 39 -/LastChar 120 -/Widths 559 0 R ->> endobj -318 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /ZGDDJV+CMSS17 -/FontDescriptor 573 0 R -/FirstChar 67 -/LastChar 120 -/Widths 561 0 R ->> endobj -382 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /PLHDPU+CMSY10 -/FontDescriptor 575 0 R -/FirstChar 15 -/LastChar 106 -/Widths 556 0 R ->> endobj -388 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /LOOCIJ+CMTT10 -/FontDescriptor 577 0 R -/FirstChar 40 -/LastChar 125 -/Widths 555 0 R ->> endobj -324 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [290 0 R 358 0 R 378 0 R 385 0 R 391 0 R 395 0 R] ->> endobj -404 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [400 0 R 406 0 R 413 0 R 417 0 R 423 0 R 427 0 R] ->> endobj -436 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [432 0 R 438 0 R 443 0 R 447 0 R 452 0 R 456 0 R] ->> endobj -467 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [464 0 R 469 0 R 473 0 R 477 0 R 481 0 R 485 0 R] ->> endobj -495 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [492 0 R 497 0 R 501 0 R 505 0 R 509 0 R 513 0 R] ->> endobj -520 0 obj << -/Type /Pages -/Count 6 -/Parent 578 0 R -/Kids [517 0 R 522 0 R 526 0 R 530 0 R 534 0 R 538 0 R] ->> endobj -545 0 obj << -/Type /Pages -/Count 3 -/Parent 579 0 R -/Kids [542 0 R 547 0 R 551 0 R] ->> endobj -578 0 obj << -/Type /Pages -/Count 36 -/Parent 580 0 R -/Kids [324 0 R 404 0 R 436 0 R 467 0 R 495 0 R 520 0 R] ->> endobj -579 0 obj << -/Type /Pages -/Count 3 -/Parent 580 0 R -/Kids [545 0 R] ->> endobj -580 0 obj << -/Type /Pages -/Count 39 -/Kids [578 0 R 579 0 R] ->> endobj -581 0 obj << -/Type /Outlines -/First 7 0 R -/Last 251 0 R -/Count 13 ->> endobj -287 0 obj << -/Title 288 0 R -/A 285 0 R -/Parent 251 0 R -/Prev 283 0 R ->> endobj -283 0 obj << -/Title 284 0 R -/A 281 0 R -/Parent 251 0 R -/Prev 279 0 R -/Next 287 0 R ->> endobj -279 0 obj << -/Title 280 0 R -/A 277 0 R -/Parent 251 0 R -/Prev 275 0 R -/Next 283 0 R ->> endobj -275 0 obj << -/Title 276 0 R -/A 273 0 R -/Parent 251 0 R -/Prev 271 0 R -/Next 279 0 R ->> endobj -271 0 obj << -/Title 272 0 R -/A 269 0 R -/Parent 251 0 R -/Prev 267 0 R -/Next 275 0 R ->> endobj -267 0 obj << -/Title 268 0 R -/A 265 0 R -/Parent 251 0 R -/Prev 263 0 R -/Next 271 0 R ->> endobj -263 0 obj << -/Title 264 0 R -/A 261 0 R -/Parent 251 0 R -/Prev 259 0 R -/Next 267 0 R ->> endobj -259 0 obj << -/Title 260 0 R -/A 257 0 R -/Parent 251 0 R -/Prev 255 0 R -/Next 263 0 R ->> endobj -255 0 obj << -/Title 256 0 R -/A 253 0 R -/Parent 251 0 R -/Next 259 0 R ->> endobj -251 0 obj << -/Title 252 0 R -/A 249 0 R -/Parent 581 0 R -/Prev 131 0 R -/First 255 0 R -/Last 287 0 R -/Count -9 ->> endobj -247 0 obj << -/Title 248 0 R -/A 245 0 R -/Parent 239 0 R -/Prev 243 0 R ->> endobj -243 0 obj << -/Title 244 0 R -/A 241 0 R -/Parent 239 0 R -/Next 247 0 R ->> endobj -239 0 obj << -/Title 240 0 R -/A 237 0 R -/Parent 131 0 R -/Prev 151 0 R -/First 243 0 R -/Last 247 0 R -/Count -2 ->> endobj -235 0 obj << -/Title 236 0 R -/A 233 0 R -/Parent 151 0 R -/Prev 231 0 R ->> endobj -231 0 obj << -/Title 232 0 R -/A 229 0 R -/Parent 151 0 R -/Prev 227 0 R -/Next 235 0 R ->> endobj -227 0 obj << -/Title 228 0 R -/A 225 0 R -/Parent 151 0 R -/Prev 223 0 R -/Next 231 0 R ->> endobj -223 0 obj << -/Title 224 0 R -/A 221 0 R -/Parent 151 0 R -/Prev 219 0 R -/Next 227 0 R ->> endobj -219 0 obj << -/Title 220 0 R -/A 217 0 R -/Parent 151 0 R -/Prev 215 0 R -/Next 223 0 R ->> endobj -215 0 obj << -/Title 216 0 R -/A 213 0 R -/Parent 151 0 R -/Prev 211 0 R -/Next 219 0 R ->> endobj -211 0 obj << -/Title 212 0 R -/A 209 0 R -/Parent 151 0 R -/Prev 207 0 R -/Next 215 0 R ->> endobj -207 0 obj << -/Title 208 0 R -/A 205 0 R -/Parent 151 0 R -/Prev 203 0 R -/Next 211 0 R ->> endobj -203 0 obj << -/Title 204 0 R -/A 201 0 R -/Parent 151 0 R -/Prev 199 0 R -/Next 207 0 R ->> endobj -199 0 obj << -/Title 200 0 R -/A 197 0 R -/Parent 151 0 R -/Prev 195 0 R -/Next 203 0 R ->> endobj -195 0 obj << -/Title 196 0 R -/A 193 0 R -/Parent 151 0 R -/Prev 191 0 R -/Next 199 0 R ->> endobj -191 0 obj << -/Title 192 0 R -/A 189 0 R -/Parent 151 0 R -/Prev 187 0 R -/Next 195 0 R ->> endobj -187 0 obj << -/Title 188 0 R -/A 185 0 R -/Parent 151 0 R -/Prev 183 0 R -/Next 191 0 R ->> endobj -183 0 obj << -/Title 184 0 R -/A 181 0 R -/Parent 151 0 R -/Prev 179 0 R -/Next 187 0 R ->> endobj -179 0 obj << -/Title 180 0 R -/A 177 0 R -/Parent 151 0 R -/Prev 175 0 R -/Next 183 0 R ->> endobj -175 0 obj << -/Title 176 0 R -/A 173 0 R -/Parent 151 0 R -/Prev 171 0 R -/Next 179 0 R ->> endobj -171 0 obj << -/Title 172 0 R -/A 169 0 R -/Parent 151 0 R -/Prev 167 0 R -/Next 175 0 R ->> endobj -167 0 obj << -/Title 168 0 R -/A 165 0 R -/Parent 151 0 R -/Prev 163 0 R -/Next 171 0 R ->> endobj -163 0 obj << -/Title 164 0 R -/A 161 0 R -/Parent 151 0 R -/Prev 159 0 R -/Next 167 0 R ->> endobj -159 0 obj << -/Title 160 0 R -/A 157 0 R -/Parent 151 0 R -/Prev 155 0 R -/Next 163 0 R ->> endobj -155 0 obj << -/Title 156 0 R -/A 153 0 R -/Parent 151 0 R -/Next 159 0 R ->> endobj -151 0 obj << -/Title 152 0 R -/A 149 0 R -/Parent 131 0 R -/Prev 143 0 R -/Next 239 0 R -/First 155 0 R -/Last 235 0 R -/Count -21 ->> endobj -147 0 obj << -/Title 148 0 R -/A 145 0 R -/Parent 143 0 R ->> endobj -143 0 obj << -/Title 144 0 R -/A 141 0 R -/Parent 131 0 R -/Prev 135 0 R -/Next 151 0 R -/First 147 0 R -/Last 147 0 R -/Count -1 ->> endobj -139 0 obj << -/Title 140 0 R -/A 137 0 R -/Parent 135 0 R ->> endobj -135 0 obj << -/Title 136 0 R -/A 133 0 R -/Parent 131 0 R -/Next 143 0 R -/First 139 0 R -/Last 139 0 R -/Count -1 ->> endobj -131 0 obj << -/Title 132 0 R -/A 129 0 R -/Parent 581 0 R -/Prev 127 0 R -/Next 251 0 R -/First 135 0 R -/Last 239 0 R -/Count -4 ->> endobj -127 0 obj << -/Title 128 0 R -/A 125 0 R -/Parent 581 0 R -/Prev 107 0 R -/Next 131 0 R ->> endobj -123 0 obj << -/Title 124 0 R -/A 121 0 R -/Parent 107 0 R -/Prev 111 0 R ->> endobj -119 0 obj << -/Title 120 0 R -/A 117 0 R -/Parent 111 0 R -/Prev 115 0 R ->> endobj -115 0 obj << -/Title 116 0 R -/A 113 0 R -/Parent 111 0 R -/Next 119 0 R ->> endobj -111 0 obj << -/Title 112 0 R -/A 109 0 R -/Parent 107 0 R -/Next 123 0 R -/First 115 0 R -/Last 119 0 R -/Count -2 ->> endobj -107 0 obj << -/Title 108 0 R -/A 105 0 R -/Parent 581 0 R -/Prev 95 0 R -/Next 127 0 R -/First 111 0 R -/Last 123 0 R -/Count -2 ->> endobj -103 0 obj << -/Title 104 0 R -/A 101 0 R -/Parent 95 0 R -/Prev 99 0 R ->> endobj -99 0 obj << -/Title 100 0 R -/A 97 0 R -/Parent 95 0 R -/Next 103 0 R ->> endobj -95 0 obj << -/Title 96 0 R -/A 93 0 R -/Parent 581 0 R -/Prev 63 0 R -/Next 107 0 R -/First 99 0 R -/Last 103 0 R -/Count -2 ->> endobj -91 0 obj << -/Title 92 0 R -/A 89 0 R -/Parent 87 0 R ->> endobj -87 0 obj << -/Title 88 0 R -/A 85 0 R -/Parent 63 0 R -/Prev 67 0 R -/First 91 0 R -/Last 91 0 R -/Count -1 ->> endobj -83 0 obj << -/Title 84 0 R -/A 81 0 R -/Parent 67 0 R -/Prev 79 0 R ->> endobj -79 0 obj << -/Title 80 0 R -/A 77 0 R -/Parent 67 0 R -/Prev 75 0 R -/Next 83 0 R ->> endobj -75 0 obj << -/Title 76 0 R -/A 73 0 R -/Parent 67 0 R -/Prev 71 0 R -/Next 79 0 R ->> endobj -71 0 obj << -/Title 72 0 R -/A 69 0 R -/Parent 67 0 R -/Next 75 0 R ->> endobj -67 0 obj << -/Title 68 0 R -/A 65 0 R -/Parent 63 0 R -/Next 87 0 R -/First 71 0 R -/Last 83 0 R -/Count -4 ->> endobj -63 0 obj << -/Title 64 0 R -/A 61 0 R -/Parent 581 0 R -/Prev 59 0 R -/Next 95 0 R -/First 67 0 R -/Last 87 0 R -/Count -2 ->> endobj -59 0 obj << -/Title 60 0 R -/A 57 0 R -/Parent 581 0 R -/Prev 55 0 R -/Next 63 0 R ->> endobj -55 0 obj << -/Title 56 0 R -/A 53 0 R -/Parent 581 0 R -/Prev 43 0 R -/Next 59 0 R ->> endobj -51 0 obj << -/Title 52 0 R -/A 49 0 R -/Parent 43 0 R -/Prev 47 0 R ->> endobj -47 0 obj << -/Title 48 0 R -/A 45 0 R -/Parent 43 0 R -/Next 51 0 R ->> endobj -43 0 obj << -/Title 44 0 R -/A 41 0 R -/Parent 581 0 R -/Prev 19 0 R -/Next 55 0 R -/First 47 0 R -/Last 51 0 R -/Count -2 ->> endobj -39 0 obj << -/Title 40 0 R -/A 37 0 R -/Parent 31 0 R -/Prev 35 0 R ->> endobj -35 0 obj << -/Title 36 0 R -/A 33 0 R -/Parent 31 0 R -/Next 39 0 R ->> endobj -31 0 obj << -/Title 32 0 R -/A 29 0 R -/Parent 19 0 R -/Prev 23 0 R -/First 35 0 R -/Last 39 0 R -/Count -2 ->> endobj -27 0 obj << -/Title 28 0 R -/A 25 0 R -/Parent 23 0 R ->> endobj -23 0 obj << -/Title 24 0 R -/A 21 0 R -/Parent 19 0 R -/Next 31 0 R -/First 27 0 R -/Last 27 0 R -/Count -1 ->> endobj -19 0 obj << -/Title 20 0 R -/A 17 0 R -/Parent 581 0 R -/Prev 15 0 R -/Next 43 0 R -/First 23 0 R -/Last 31 0 R -/Count -2 ->> endobj -15 0 obj << -/Title 16 0 R -/A 13 0 R -/Parent 581 0 R -/Prev 11 0 R -/Next 19 0 R ->> endobj -11 0 obj << -/Title 12 0 R -/A 9 0 R -/Parent 581 0 R -/Prev 7 0 R -/Next 15 0 R ->> endobj -7 0 obj << -/Title 8 0 R -/A 5 0 R -/Parent 581 0 R -/Next 11 0 R ->> endobj -582 0 obj << -/Names [(Doc-Start) 317 0 R (Item.1) 409 0 R (Item.10) 490 0 R (Item.2) 410 0 R (Item.3) 411 0 R (Item.4) 459 0 R] -/Limits [(Doc-Start) (Item.4)] ->> endobj -583 0 obj << -/Names [(Item.5) 460 0 R (Item.6) 461 0 R (Item.7) 462 0 R (Item.8) 488 0 R (Item.9) 489 0 R (figure.1) 398 0 R] -/Limits [(Item.5) (figure.1)] ->> endobj -584 0 obj << -/Names [(figure.2) 430 0 R (figure.3) 435 0 R (figure.4) 450 0 R (page.1) 316 0 R (page.10) 419 0 R (page.11) 425 0 R] -/Limits [(figure.2) (page.11)] ->> endobj -585 0 obj << -/Names [(page.12) 429 0 R (page.13) 434 0 R (page.14) 440 0 R (page.15) 445 0 R (page.16) 449 0 R (page.17) 454 0 R] -/Limits [(page.12) (page.17)] ->> endobj -586 0 obj << -/Names [(page.18) 458 0 R (page.19) 466 0 R (page.2) 360 0 R (page.20) 471 0 R (page.21) 475 0 R (page.22) 479 0 R] -/Limits [(page.18) (page.22)] ->> endobj -587 0 obj << -/Names [(page.23) 483 0 R (page.24) 487 0 R (page.25) 494 0 R (page.26) 499 0 R (page.27) 503 0 R (page.28) 507 0 R] -/Limits [(page.23) (page.28)] ->> endobj -588 0 obj << -/Names [(page.29) 511 0 R (page.3) 380 0 R (page.30) 515 0 R (page.31) 519 0 R (page.32) 524 0 R (page.33) 528 0 R] -/Limits [(page.29) (page.33)] ->> endobj -589 0 obj << -/Names [(page.34) 532 0 R (page.35) 536 0 R (page.36) 540 0 R (page.37) 544 0 R (page.38) 549 0 R (page.39) 553 0 R] -/Limits [(page.34) (page.39)] ->> endobj -590 0 obj << -/Names [(page.4) 387 0 R (page.5) 393 0 R (page.6) 397 0 R (page.7) 402 0 R (page.8) 408 0 R (page.9) 415 0 R] -/Limits [(page.4) (page.9)] ->> endobj -591 0 obj << -/Names [(section*.1) 322 0 R (section.1) 6 0 R (section.10) 106 0 R (section.11) 126 0 R (section.12) 130 0 R (section.13) 250 0 R] -/Limits [(section*.1) (section.13)] ->> endobj -592 0 obj << -/Names [(section.2) 10 0 R (section.3) 14 0 R (section.4) 18 0 R (section.5) 42 0 R (section.6) 54 0 R (section.7) 58 0 R] -/Limits [(section.2) (section.7)] ->> endobj -593 0 obj << -/Names [(section.8) 62 0 R (section.9) 94 0 R (subsection.10.1) 110 0 R (subsection.10.2) 122 0 R (subsection.12.1) 134 0 R (subsection.12.2) 142 0 R] -/Limits [(section.8) (subsection.12.2)] ->> endobj -594 0 obj << -/Names [(subsection.12.3) 150 0 R (subsection.12.4) 238 0 R (subsection.13.1) 254 0 R (subsection.13.2) 258 0 R (subsection.13.3) 262 0 R (subsection.13.4) 266 0 R] -/Limits [(subsection.12.3) (subsection.13.4)] ->> endobj -595 0 obj << -/Names [(subsection.13.5) 270 0 R (subsection.13.6) 274 0 R (subsection.13.7) 278 0 R (subsection.13.8) 282 0 R (subsection.13.9) 286 0 R (subsection.4.1) 22 0 R] -/Limits [(subsection.13.5) (subsection.4.1)] ->> endobj -596 0 obj << -/Names [(subsection.4.2) 30 0 R (subsection.5.1) 46 0 R (subsection.5.2) 50 0 R (subsection.8.1) 66 0 R (subsection.8.2) 86 0 R (subsection.9.1) 98 0 R] -/Limits [(subsection.4.2) (subsection.9.1)] ->> endobj -597 0 obj << -/Names [(subsection.9.2) 102 0 R (subsubsection.10.1.1) 114 0 R (subsubsection.10.1.2) 118 0 R (subsubsection.12.1.1) 138 0 R (subsubsection.12.2.1) 146 0 R (subsubsection.12.3.1) 154 0 R] -/Limits [(subsection.9.2) (subsubsection.12.3.1)] ->> endobj -598 0 obj << -/Names [(subsubsection.12.3.10) 190 0 R (subsubsection.12.3.11) 194 0 R (subsubsection.12.3.12) 198 0 R (subsubsection.12.3.13) 202 0 R (subsubsection.12.3.14) 206 0 R (subsubsection.12.3.15) 210 0 R] -/Limits [(subsubsection.12.3.10) (subsubsection.12.3.15)] ->> endobj -599 0 obj << -/Names [(subsubsection.12.3.16) 214 0 R (subsubsection.12.3.17) 218 0 R (subsubsection.12.3.18) 222 0 R (subsubsection.12.3.19) 226 0 R (subsubsection.12.3.2) 158 0 R (subsubsection.12.3.20) 230 0 R] -/Limits [(subsubsection.12.3.16) (subsubsection.12.3.20)] ->> endobj -600 0 obj << -/Names [(subsubsection.12.3.21) 234 0 R (subsubsection.12.3.3) 162 0 R (subsubsection.12.3.4) 166 0 R (subsubsection.12.3.5) 170 0 R (subsubsection.12.3.6) 174 0 R (subsubsection.12.3.7) 178 0 R] -/Limits [(subsubsection.12.3.21) (subsubsection.12.3.7)] ->> endobj -601 0 obj << -/Names [(subsubsection.12.3.8) 182 0 R (subsubsection.12.3.9) 186 0 R (subsubsection.12.4.1) 242 0 R (subsubsection.12.4.2) 246 0 R (subsubsection.4.1.1) 26 0 R (subsubsection.4.2.1) 34 0 R] -/Limits [(subsubsection.12.3.8) (subsubsection.4.2.1)] ->> endobj -602 0 obj << -/Names [(subsubsection.4.2.2) 38 0 R (subsubsection.8.1.1) 70 0 R (subsubsection.8.1.2) 74 0 R (subsubsection.8.1.3) 78 0 R (subsubsection.8.1.4) 82 0 R (subsubsection.8.2.1) 90 0 R] -/Limits [(subsubsection.4.2.2) (subsubsection.8.2.1)] ->> endobj -603 0 obj << -/Kids [582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R] -/Limits [(Doc-Start) (page.28)] ->> endobj -604 0 obj << -/Kids [588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R] -/Limits [(page.29) (subsection.12.2)] ->> endobj -605 0 obj << -/Kids [594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R] -/Limits [(subsection.12.3) (subsubsection.12.3.20)] ->> endobj -606 0 obj << -/Kids [600 0 R 601 0 R 602 0 R] -/Limits [(subsubsection.12.3.21) (subsubsection.8.2.1)] ->> endobj -607 0 obj << -/Kids [603 0 R 604 0 R 605 0 R 606 0 R] -/Limits [(Doc-Start) (subsubsection.8.2.1)] ->> endobj -608 0 obj << -/Dests 607 0 R ->> endobj -609 0 obj << -/Type /Catalog -/Pages 580 0 R -/Outlines 581 0 R -/Names 608 0 R -/PageMode/UseOutlines -/OpenAction 289 0 R ->> endobj -610 0 obj << -/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.3)/Keywords() -/CreationDate (D:20090915153306+04'00') -/ModDate (D:20090915153306+04'00') -/Trapped /False -/PTEX.Fullbanner (This is pdfTeX using libpoppler, Version 3.141592-1.40.3-2.2 (Web2C 7.5.6) kpathsea version 3.5.6) ->> endobj -xref -0 611 -0000000001 65535 f -0000000002 00000 f -0000000003 00000 f -0000000004 00000 f -0000000000 00000 f -0000000015 00000 n -0000028512 00000 n -0000372064 00000 n -0000000060 00000 n -0000000090 00000 n -0000031643 00000 n -0000371978 00000 n -0000000135 00000 n -0000000175 00000 n -0000034095 00000 n -0000371890 00000 n -0000000221 00000 n -0000000257 00000 n -0000034151 00000 n -0000371765 00000 n -0000000303 00000 n -0000000348 00000 n -0000034207 00000 n -0000371654 00000 n -0000000399 00000 n -0000000451 00000 n -0000110229 00000 n -0000371593 00000 n -0000000507 00000 n -0000000557 00000 n -0000110285 00000 n -0000371482 00000 n -0000000608 00000 n -0000000663 00000 n -0000110341 00000 n -0000371408 00000 n -0000000719 00000 n -0000000780 00000 n -0000111899 00000 n -0000371334 00000 n -0000000836 00000 n -0000000875 00000 n -0000111955 00000 n -0000371209 00000 n -0000000921 00000 n -0000000968 00000 n -0000112011 00000 n -0000371135 00000 n -0000001019 00000 n -0000001060 00000 n -0000112067 00000 n -0000371061 00000 n -0000001111 00000 n -0000001174 00000 n -0000115268 00000 n -0000370973 00000 n -0000001220 00000 n -0000001264 00000 n -0000187822 00000 n -0000370885 00000 n -0000001310 00000 n -0000001356 00000 n -0000187878 00000 n -0000370760 00000 n -0000001402 00000 n -0000001489 00000 n -0000191429 00000 n -0000370649 00000 n -0000001540 00000 n -0000001592 00000 n -0000191485 00000 n -0000370575 00000 n -0000001648 00000 n -0000001688 00000 n -0000237370 00000 n -0000370488 00000 n -0000001744 00000 n -0000001794 00000 n -0000237425 00000 n -0000370401 00000 n -0000001850 00000 n -0000001891 00000 n -0000240944 00000 n -0000370327 00000 n -0000001947 00000 n -0000001996 00000 n -0000241000 00000 n -0000370216 00000 n -0000002047 00000 n -0000002097 00000 n -0000244840 00000 n -0000370155 00000 n -0000002153 00000 n -0000002199 00000 n -0000244896 00000 n -0000370028 00000 n -0000002245 00000 n -0000002289 00000 n -0000244952 00000 n -0000369952 00000 n -0000002340 00000 n -0000002395 00000 n -0000247118 00000 n -0000369875 00000 n -0000002447 00000 n -0000002502 00000 n -0000250135 00000 n -0000369744 00000 n -0000002550 00000 n -0000002613 00000 n -0000250192 00000 n -0000369626 00000 n -0000002666 00000 n -0000002721 00000 n -0000250249 00000 n -0000369547 00000 n -0000002779 00000 n -0000002836 00000 n -0000252043 00000 n -0000369468 00000 n -0000002894 00000 n -0000002943 00000 n -0000263521 00000 n -0000369389 00000 n -0000002996 00000 n -0000003053 00000 n -0000263578 00000 n -0000369296 00000 n -0000003101 00000 n -0000003142 00000 n -0000266413 00000 n -0000369164 00000 n -0000003190 00000 n -0000003250 00000 n -0000266470 00000 n -0000369046 00000 n -0000003303 00000 n -0000003364 00000 n -0000266527 00000 n -0000368981 00000 n -0000003422 00000 n -0000003529 00000 n -0000266584 00000 n -0000368849 00000 n -0000003582 00000 n -0000003637 00000 n -0000266641 00000 n -0000368784 00000 n -0000003695 00000 n -0000003804 00000 n -0000268270 00000 n -0000368651 00000 n -0000003857 00000 n -0000003912 00000 n -0000268327 00000 n -0000368572 00000 n -0000003970 00000 n -0000004015 00000 n -0000268383 00000 n -0000368479 00000 n -0000004073 00000 n -0000004126 00000 n -0000270398 00000 n -0000368386 00000 n -0000004184 00000 n -0000004249 00000 n -0000270455 00000 n -0000368293 00000 n -0000004307 00000 n -0000004373 00000 n -0000270512 00000 n -0000368200 00000 n -0000004431 00000 n -0000004483 00000 n -0000270569 00000 n -0000368107 00000 n -0000004541 00000 n -0000004594 00000 n -0000272497 00000 n -0000368014 00000 n -0000004652 00000 n -0000004707 00000 n -0000272554 00000 n -0000367921 00000 n -0000004765 00000 n -0000004828 00000 n -0000272611 00000 n -0000367828 00000 n -0000004886 00000 n -0000004938 00000 n -0000274338 00000 n -0000367735 00000 n -0000004997 00000 n -0000005059 00000 n -0000274395 00000 n -0000367642 00000 n -0000005118 00000 n -0000005177 00000 n -0000274452 00000 n -0000367549 00000 n -0000005236 00000 n -0000005296 00000 n -0000274509 00000 n -0000367456 00000 n -0000005355 00000 n -0000005417 00000 n -0000276299 00000 n -0000367363 00000 n -0000005476 00000 n -0000005537 00000 n -0000276356 00000 n -0000367270 00000 n -0000005596 00000 n -0000005664 00000 n -0000276413 00000 n -0000367177 00000 n -0000005723 00000 n -0000005806 00000 n -0000279317 00000 n -0000367084 00000 n -0000005865 00000 n -0000005980 00000 n -0000279374 00000 n -0000366991 00000 n -0000006039 00000 n -0000006154 00000 n -0000279431 00000 n -0000366898 00000 n -0000006213 00000 n -0000006336 00000 n -0000281934 00000 n -0000366805 00000 n -0000006395 00000 n -0000006606 00000 n -0000284254 00000 n -0000366726 00000 n -0000006665 00000 n -0000006808 00000 n -0000286579 00000 n -0000366608 00000 n -0000006861 00000 n -0000006933 00000 n -0000286636 00000 n -0000366529 00000 n -0000006991 00000 n -0000007060 00000 n -0000286693 00000 n -0000366450 00000 n -0000007118 00000 n -0000007178 00000 n -0000286750 00000 n -0000366332 00000 n -0000007226 00000 n -0000007269 00000 n -0000286806 00000 n -0000366253 00000 n -0000007322 00000 n -0000007378 00000 n -0000289776 00000 n -0000366160 00000 n -0000007431 00000 n -0000007474 00000 n -0000291947 00000 n -0000366067 00000 n -0000007527 00000 n -0000007577 00000 n -0000292004 00000 n -0000365974 00000 n -0000007630 00000 n -0000007678 00000 n -0000292061 00000 n -0000365881 00000 n -0000007731 00000 n -0000007781 00000 n -0000294542 00000 n -0000365788 00000 n -0000007834 00000 n -0000007943 00000 n -0000294599 00000 n -0000365695 00000 n -0000007996 00000 n -0000008073 00000 n -0000296417 00000 n -0000365602 00000 n -0000008126 00000 n -0000008184 00000 n -0000296474 00000 n -0000365523 00000 n -0000008237 00000 n -0000008303 00000 n -0000010031 00000 n -0000010331 00000 n -0000010481 00000 n -0000010631 00000 n -0000010782 00000 n -0000010933 00000 n -0000011088 00000 n -0000011250 00000 n -0000011406 00000 n -0000011568 00000 n -0000011730 00000 n -0000011881 00000 n -0000012037 00000 n -0000012193 00000 n -0000012344 00000 n -0000012495 00000 n -0000012646 00000 n -0000012801 00000 n -0000012963 00000 n -0000013125 00000 n -0000013286 00000 n -0000013448 00000 n -0000013603 00000 n -0000016898 00000 n -0000013933 00000 n -0000008355 00000 n -0000013763 00000 n -0000013820 00000 n -0000363955 00000 n -0000363668 00000 n -0000363811 00000 n -0000363381 00000 n -0000013877 00000 n -0000363237 00000 n -0000364387 00000 n -0000017049 00000 n -0000017205 00000 n -0000017361 00000 n -0000017513 00000 n -0000017670 00000 n -0000017833 00000 n -0000017996 00000 n -0000018153 00000 n -0000018305 00000 n -0000018457 00000 n -0000018614 00000 n -0000018777 00000 n -0000018934 00000 n -0000019097 00000 n -0000019254 00000 n -0000019417 00000 n -0000019580 00000 n -0000019743 00000 n -0000019905 00000 n -0000020068 00000 n -0000020231 00000 n -0000020394 00000 n -0000020554 00000 n -0000020717 00000 n -0000020881 00000 n -0000021045 00000 n -0000021208 00000 n -0000021371 00000 n -0000021535 00000 n -0000021699 00000 n -0000021863 00000 n -0000025596 00000 n -0000022082 00000 n -0000016518 00000 n -0000014056 00000 n -0000022025 00000 n -0000025758 00000 n -0000025922 00000 n -0000026249 00000 n -0000026412 00000 n -0000026568 00000 n -0000026729 00000 n -0000026892 00000 n -0000027044 00000 n -0000027201 00000 n -0000027358 00000 n -0000027515 00000 n -0000027671 00000 n -0000027828 00000 n -0000027985 00000 n -0000028142 00000 n -0000028298 00000 n -0000028567 00000 n -0000025328 00000 n -0000022166 00000 n -0000028455 00000 n -0000026086 00000 n -0000364099 00000 n -0000031414 00000 n -0000031699 00000 n -0000031282 00000 n -0000028677 00000 n -0000031586 00000 n -0000364243 00000 n -0000034882 00000 n -0000034263 00000 n -0000033926 00000 n -0000031822 00000 n -0000034038 00000 n -0000098039 00000 n -0000034770 00000 n -0000034373 00000 n -0000097921 00000 n -0000097978 00000 n -0000100710 00000 n -0000100541 00000 n -0000098159 00000 n -0000100653 00000 n -0000363525 00000 n -0000364504 00000 n -0000105721 00000 n -0000105381 00000 n -0000100833 00000 n -0000105493 00000 n -0000105550 00000 n -0000105607 00000 n -0000105664 00000 n -0000110395 00000 n -0000110060 00000 n -0000105818 00000 n -0000110172 00000 n -0000112123 00000 n -0000111730 00000 n -0000110505 00000 n -0000111842 00000 n -0000115932 00000 n -0000145132 00000 n -0000115324 00000 n -0000115099 00000 n -0000112246 00000 n -0000115211 00000 n -0000144528 00000 n -0000115820 00000 n -0000115447 00000 n -0000144409 00000 n -0000144466 00000 n -0000184823 00000 n -0000145020 00000 n -0000144648 00000 n -0000184705 00000 n -0000184762 00000 n -0000364621 00000 n -0000187934 00000 n -0000187653 00000 n -0000184943 00000 n -0000187765 00000 n -0000192170 00000 n -0000191541 00000 n -0000191260 00000 n -0000188057 00000 n -0000191372 00000 n -0000235280 00000 n -0000192058 00000 n -0000191664 00000 n -0000235161 00000 n -0000235218 00000 n -0000237481 00000 n -0000237201 00000 n -0000235400 00000 n -0000237313 00000 n -0000241282 00000 n -0000240775 00000 n -0000237591 00000 n -0000240887 00000 n -0000241055 00000 n -0000241111 00000 n -0000241168 00000 n -0000241225 00000 n -0000245008 00000 n -0000244671 00000 n -0000241405 00000 n -0000244783 00000 n -0000364738 00000 n -0000247175 00000 n -0000246949 00000 n -0000245118 00000 n -0000247061 00000 n -0000250306 00000 n -0000249966 00000 n -0000247298 00000 n -0000250078 00000 n -0000252100 00000 n -0000251874 00000 n -0000250429 00000 n -0000251986 00000 n -0000257235 00000 n -0000257066 00000 n -0000252210 00000 n -0000257178 00000 n -0000260618 00000 n -0000260278 00000 n -0000257345 00000 n -0000260390 00000 n -0000260447 00000 n -0000260504 00000 n -0000260561 00000 n -0000263634 00000 n -0000263352 00000 n -0000260728 00000 n -0000263464 00000 n -0000364855 00000 n -0000266698 00000 n -0000266244 00000 n -0000263770 00000 n -0000266356 00000 n -0000268440 00000 n -0000268101 00000 n -0000266821 00000 n -0000268213 00000 n -0000270626 00000 n -0000270229 00000 n -0000268563 00000 n -0000270341 00000 n -0000272667 00000 n -0000272328 00000 n -0000270736 00000 n -0000272440 00000 n -0000274566 00000 n -0000274169 00000 n -0000272777 00000 n -0000274281 00000 n -0000276469 00000 n -0000276130 00000 n -0000274676 00000 n -0000276242 00000 n -0000364972 00000 n -0000279487 00000 n -0000279148 00000 n -0000276579 00000 n -0000279260 00000 n -0000281991 00000 n -0000281765 00000 n -0000279597 00000 n -0000281877 00000 n -0000284311 00000 n -0000284085 00000 n -0000282101 00000 n -0000284197 00000 n -0000286862 00000 n -0000286410 00000 n -0000284421 00000 n -0000286522 00000 n -0000289833 00000 n -0000289607 00000 n -0000286985 00000 n -0000289719 00000 n -0000292117 00000 n -0000291778 00000 n -0000289956 00000 n -0000291890 00000 n -0000365089 00000 n -0000294656 00000 n -0000294373 00000 n -0000292240 00000 n -0000294485 00000 n -0000296531 00000 n -0000296248 00000 n -0000294779 00000 n -0000296360 00000 n -0000296654 00000 n -0000296679 00000 n -0000297042 00000 n -0000297577 00000 n -0000298220 00000 n -0000298857 00000 n -0000299334 00000 n -0000299957 00000 n -0000300296 00000 n -0000314865 00000 n -0000315337 00000 n -0000323968 00000 n -0000324339 00000 n -0000326015 00000 n -0000326243 00000 n -0000342283 00000 n -0000342763 00000 n -0000347749 00000 n -0000348070 00000 n -0000352098 00000 n -0000352359 00000 n -0000353648 00000 n -0000353879 00000 n -0000362809 00000 n -0000365182 00000 n -0000365300 00000 n -0000365377 00000 n -0000365447 00000 n -0000372136 00000 n -0000372305 00000 n -0000372471 00000 n -0000372644 00000 n -0000372814 00000 n -0000372983 00000 n -0000373153 00000 n -0000373322 00000 n -0000373492 00000 n -0000373654 00000 n -0000373845 00000 n -0000374025 00000 n -0000374239 00000 n -0000374473 00000 n -0000374704 00000 n -0000374924 00000 n -0000375186 00000 n -0000375468 00000 n -0000375749 00000 n -0000376025 00000 n -0000376294 00000 n -0000376554 00000 n -0000376665 00000 n -0000376782 00000 n -0000376913 00000 n -0000377024 00000 n -0000377131 00000 n -0000377169 00000 n -0000377297 00000 n -trailer -<< /Size 611 -/Root 609 0 R -/Info 610 0 R -/ID [ ] >> -startxref -377628 -%%EOF