parallel-netcdf-mvapich2-devel-1.7.0-bp153.1.15 >  @ `C!M@eee8\kt}/Ω'[):DMcZ~|!Lraij--r;p;?d!' 2 jx| 06@X d p   <p(8 9 : F9GPHhIXY\]^bc*defluvzP`djCparallel-netcdf-mvapich2-devel1.7.0bp153.1.15Development files for parallel-netcdf-mvapich2-mvapich2NetCDF is a set of software libraries and data formats for array-oriented scientific data. Parallel netCDF (PnetCDF) maintains file-format compatibility with NetCDF. This package contains all files needed to create projects that use the mvapich2 version of PnetCDF.`Cobs-arm-9 SUSE Linux Enterprise 15 SP3openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxaarch64+kv!k`C`C`C`C`C`C5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cf0add2a23d5dd0ba1839903df66d38dbb968df62c21b70d6a6c482fc31f3704223055d47e5ef0c4517208ce269b5bccdb401c4a3ed6df862ce4b335167408c67blibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-mvapich2-1.7.0-bp153.1.15.src.rpmparallel-netcdf-mvapich2-develparallel-netcdf-mvapich2-devel(aarch-64)    libpnetcdf1-mvapich2mvapich2-develparallel-netcdf-devel-datarpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.7.03.0.4-14.6.0-14.0-15.2-14.14.1]Y]]w@Ws@W~UWUnU@UK@P:Stefan Brüns Stefan Brüns Christophe Giboudeaux jengelh@inai.detoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comscorot@free.fr- Add convenience provides to allow e.g. netcdf-openmpi2 to pull in libpnetcdf-openmpi2. - Also build openmpi3 flavor.- Build MPI pacakges as multibuild flavors, add openmpi2 - Adapt to openmpi -> openmpi1 rename on Tumbleweed- Use -ffat-lto-objects when building static libraries.- Trim descriptions.- Update to 1.7.0 o New features * Nonblocking requests now can be posted while the program is in the define mode. This feature enables applications to add new variables and post the nonblocking write requests without separating the codes by ncmpi_enddef(). Note ncmpi_wait_all and ncmpi_wait must still be called in the data mode. * When using immutable write buffer in put APIs on a Little Endian machine, the in-place byte swap operation performed internally in PnetCDF can cause a fatal error (by trying to change the contents of an immutable memory space). The solution of copying user's write request to a temporary buffer and perform byte swap there conflicts with PnetCDF's design principle of avoiding internal memory allocation as much as possible. Since the size of immutable buffer in most cases is small, PnetCDF now compromise the two by making a copy of write requests that is less than 4KB. Users are warned that using immutable write buffer larger than 4KB will still cause the fatal error in the PnetCDF default configuration. The way to completely disable in-place byte swap is to build PnetCDF with --disable-in-place-swap option at the configure time. In this case, the internal memory allocation in PnetCDF will increase. o Syntax changes * In ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel(), the API's third argument, array of requests IDs, is changed to INOUT. Upon successful completion or cancellation of individual nonblocking requests, the corresponding request IDs are set to NC_REQ_NULL. o New run-time environment variables * PNETCDF_VERBOSE_DEBUG_MODE environment variable can be used to print the location in the source code where the error code is originated, no matter the error is intended or not. This run-time environment variable only takes effect when PnetCDF is configure with debug mode, i.e. - -enable-debug is used at the configure command line. Set this variable to 1 to enable. Set it to 0 or keep it unset disables this mode. Default is 0, i.e. disabled. Users are warned that enabling this mode may result in a lot of debugging messages printed in stderr. o New example programs * examples/C/nonblocking_write_in_def.c shows an example of posting nonblocking write requests in the define mode. * examples/C/req_all.c shows an example of using NC_REQ_ALL to flush all pending nonblocking requests without providing the requests IDs. o New test program * test/cdf_format/dim_cdf12.c tests defining maximal dimension size for CDF-1 and CDF-2 file formats * test/testcases/test_erange.c tests if the error code NC_ERANGE can be correctly returned for two cases 1) get a NC_UBYTE value of 255 from a netCDF file to a memory buffer of type signed char and 2) put a value of -1 of signed char to a NC_UBYTE variable in a netCDF file * test/testcases/check_type.c tests if the error codes can be correctly returned when conflicted in-memory and extenal data types are used. * test/testcases/put_parameter.f tests the use of immutable write buffer (e.g. a buffer declared as PARAMETER). Note the buffer size must be smaller than 4KB. * test/nonblocking/i_varn_indef.c tests posting nonblocking requests in define mode. * test/nonblocking/req_all.c tests the use of NC_REQ_ALL for flushing all pending nonblocking requests without providing the requests IDs. * test/last_large_var.c tests the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. * test/testcases/buftype_free.c and test/testcases/buftype_freef.f test the bug in r2160. * testcases/add_var.c checks the starting file offsets of newly added variables from re-entering the define mode. * testcases/attrf.f checks NF_ERANGE is returned instead of coredump. This is particularly for NAG Fortran compiler that may report "Arithmetics exception". * testcases/check_striping.c checks if the file striping unit and factor returned from MPI-IO hints are consistent among processes. * test/nonblocking/column_wise.c checks if PnetCDF detects interleaved fileviews from multiple nonblocking requests and correctly breaks and reconstructs the fileviews so the combined fileview is monotonic non-decreasing in file offsets. o New optimization * Filling variables at ncmpi_enddef() is now done by aggregating all write requests into one MPI collective write call. In v 1.6.1, this is done by filling one variable at a time. o New utility program * ncoffsets reports the file offset information, including the starting and ending file offsets, of variables stored in a netCDF file. ncoffsets is compiled with gcc if gcc is presented on the build system. Additional command-line options are: (-v) reports only for a selected list of variables in interest, (-s) prints the variable sizes, (-g) outputs the file space gap size from the end of previous variable, (-x) reports whether there is a gap between any two adjacent fixed-size variables. See the man page for descriptions of all command-line options and examples. o Semantics updates * All nonblocking APIs now take a NULL pointer for the request ID argument, meaning users do not wish to keep track of the request ID. If NULL request IDs are used, NC_REQ_ALL should be used when calling ncmpi_wait_all/ncmpi_wait to commit all the pending nonblocking requests. This feature relinquishes users from the responsibility of tracking the IDs of pending requests. * Using NC_REQ_ALL as the 2nd argument "num" in ncmpi_wait_all/ncmpi_wait APIs will flush all the pending nonblocking requests. In this case, the 3rd and 4th arguments "array_of_requests" and "array_of_statuses" will be ignored and thus these two arguments can be NULLs. * Using NC_REQ_ALL in ncmpi_cancel() will cancel all the pending nonblocking requests. * Using NC_GET_REQ_ALL or NC_PUT_REQ_ALL in ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel() for all the pending get-only or put-only requests, respectively. o Other updates: * Conform with netCDF on the maximal dimension size for CDF-2 file format to be (2^32 - 4) * NC_ERANGE checks have been removed from nc_test for text APIs and variables that are defined as NC_CHAR type * Add README.K-Computer build recipe for using Fujitsu MPI compilers on the K computer at RIKEN in Japan * Add README.INTEL build recipe for using Intel MPI compilers 4.x * Build dependency rule is added for files configure and configure.in * PnetCDF checks MPICC/MPICXX/MPIF77/MPIF90 instead of CC/CXX/F77/F90/FC. If MPICC/MPICXX/MPIF77/MPIF90 are set, PnetCDF will ignore CC/CXX/F77/F90/FC. If CC/CXX/F77/F90/FC is set instead of MPICC/MPICXX/MPIF77/MPIF90, PnetCDF will now copy them to MPICC/MPICXX/MPIF77/MPIF90. * Enforce netCDF convention on error code priority: NC_ECHAR trumps NC_EINVALCOORDS, NC_EEDGE, and NC_ESTRIDE. * Return error code NC_EGLOBAL instead of NC_ENOTVAR for APIs where using NC_GLOBAL as the variable ID argument is prohibited. * All Fortran 77 test and example programs (files with .f and .F extensions) have been revised to conform with 77 standard, and was tested using pgf77. * Now provides a pkg-config file (http://www.freedesktop.org/wiki/Software/pkg-config/), making it slightly easier to set the correct pnetcdf include and library paths. o Bug fixes * Fix the bus error of invalid address alignment when build with Fujitsu compiler. See r2171 and r2180. * Fix the bug for the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. See r2166. * Fix the nonblocking flexible APIs that fail to save (duplicate) the user MPI derived data type that later is needed to unpack read data to the user buffer (a call to MPI_Unpack). See r2160. * Fix Fortran 77 constants nf_fill_uint and nf_fill_int64 (thanks Jim Edwards) that pgf77-based MPI compiler does not like "_8" modifier. See r2045 and r2051. The same issue for NAG Fortran compiler is also resolved. See r2089 and r2093. * In the example program examples/tutorial/pnetcdf-write-nb.c, the write buffers used in two iput API calls should be different. See r2095. * Fix the error reporting mechanism for NC_ERANGE, for when an arithmetic overflow happens. Overflow checking is now performed before I/O.- Fix license- Fix building on non-x86_64 64-bit platforms- Update subpackage groups - Make subpackage summaries and descriptions more consistent - Provide rpm macros for version identification - Spec file cleanups- Update to version 1.6.1 o New features * PnetCDF now supports fill mode. ncmpi_set_fill() can be used to set the fill mode for the entire data set. Note the differences from netCDF: 1. The default mode in PnetCDF is NC_NOFILL. 2. Setting fill mode for the entire file or individual variables must be done in define mode. 3. For non-record variables, they are filled at the time ncmpi_enddef() is called. 4. For record variables, users must explicitly call ncmpi_fill_var_rec() to fill one record at a time before writing to the record of that variable. o New APIs * ncmpi_def_var_fill() sets fill mode for an individual variable. This API must be called in define mode. * ncmpi_inq_var_fill() inquires fill mode of a variable. * ncmpi_fill_var_rec() is a collective API that fills a record of a record variable. This API must be called at data mode. * ncmpi_inq_default_format() for inquiring the default file format for new file creation. Note the default format can be changed by ncmpi_set_default_format(). * The above new API are also available in Fortran and C++ versions. o New error code * NC_ENOTRECVAR when attempting operation only for record variables * NC_ENOTFILL when attempting to fill a variable when its fill mode is off * NC_EMULTIDEFINE_FILL_MODE when inconsistent dataset fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_MODE when inconsistent variable fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_VALUE when inconsistent variable fill value is detected * Fortran versions of the above error codes are also added. o New example programs * C/fill_mode.c shows the use of ncmpi_set_fill(), ncmpi_def_var_fill(), ncmpi_inq_var_fill() and ncmpi_fill_var_rec() F77/fill_mode.f is the Fortran version. F90/fill_mode.f90 is the Fortran 90 version. CXX/fill_mode.cpp is the C++ version. * C/ghost_cell.c shows how to use varm API for writing from a user buffer as a 2D array with ghost cells on both ends of every dimension. o New test programs * nc_test/tst_nofill.c borrowed from netCDF * testcases/ivarn.c tests bug fix r2023 when the request IDs stored in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. o Other updates: * Change the chunk size used for moving variable data when the file header extent expands. The default is now 1MB. If the file's striping unit size is known (from MPI-IO hint striping_unit) then the chunk size is set to the striping unit size. o Bug fixes * Add missing F90 function overloading for f90mpi_put_var_all, f90mpi_get_var_all, f90mpi_put_vard_all, and f90mpi_get_vard_all, when the user buffer is a scalar. * Fix when the request IDs passed in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. See r2023. * Fix C++ compile error for converting NULL to string. See r2039. - Update to version 1.6.0 o Format conformation updates: * Conform with netCDF4 on CDF-1 and CDF-2 formats. The only difference now between the two formats are the OFFSET item in the format spec (32 vs. 64 bit integers.) All names (variable, dimension, attribute) now allow extended characters (eg. special2 and MUTF8). o New APIs * Nonblocking buffered varn API family. For C, ncmpi_bput_varn_() For F77, nfmpi_bput_varn_() For F90, nf90mpi_bput_varn() For C++, NcmpiVar::bputVarn() * Nonblocking varn API family. For C, ncmpi_iput_varn_() and ncmpi_iget_varn_() For F77, nfmpi_iput_varn_() and nfmpi_iget_varn_() For F90, nf90mpi_iput_varn() and nf90mpi_iget_varn() For C++, NcmpiVar::iputVarn() and NcmpiVar::igetVarn() * Blocking vard API family takes an argument of MPI derived data type that describes the file access layout, as opposed to vara and vars APIs that use start[] and count[]. For C, ncmpi_put_vard() and ncmpi_get_vard() For F77, nfmpi_put_vard() and nfmpi_get_vard() For F90, nf90mpi_put_vard() and nf90mpi_get_vard() For C++, NcmpiVar::putVard() and NcmpiVar::getVard() * Collective var1 API family For C, ncmpi_put_var1_all() ncmpi_get_var1_all() ncmpi_put_var1__all() ncmpi_get_var1__all() For F77, nfmpi_put_var1_all() nfmpi_get_var1_all() nfmpi_put_var1__all() nfmpi_get_var1__all() For F90, nf90mpi_put_var_all() nf90mpi_get_var_all() For C++, NcmpiVar::putVar_all() NcmpiVar::getVar_all() * ncmpi_inq_buffer_size() returns the size of buffer previously attached for use of bput APIs. With ncmpi_inq_buffer_usage() one can calculate the space remaining for additional bput requests. For F77, nfmpi_inq_buffer_size() For F90, nf90mpi_inq_buffer_size() For C++, NcmpiFile::Inq_buffer_size() * ncmpi_inq_recsize() returns the size of record block, i.e. the sum of single records of all record variables. For F77, nfmpi_inq_recsize() For F90, nf90mpi_inq_recsize() For C++, NcmpiGroup::getRecSize() * ncmpi_inq_num_rec_vars() and ncmpi_inq_num_fix_vars() report the number of record and fixed-size variables, respectively. For F77, nfmpi_inq_num_rec_vars() and nfmpi_inq_num_fix_vars() For F90, nf90mpi_inq_num_rec_vars() and nf90mpi_inq_num_fix_vars() For C++, NcmpiGroup::getRecVarCount() and NcmpiGroup::getFixVarCount() o New PnetCDF hint * pnetcdf_subfiling -- it can be set in an MPI info object or in the environment variable PNETCDF_HINTS to enable/disable subfiling. The value is either "enable" or "disable". o PnetCDF hint priority * The alignment hints set in the environment variable "PNETCDF_HINTS" have the highest priority, which overwrite the alignment hints set in ncmpi__enddef(), which overwrite the alignment hints set in the MPI_Info object used in the call of ncmpi_create() and ncmpi_open(). o New error code * NC_ESTRICTCDF2 for attempting CDF-5 operation on CDF-2 file. For example, define a variable of type NC_INT64 in a CDF-2 file. * NC_ETYPESIZE when filetype size is bigger than the variable size * NC_ETYPE_MISMATCH when the element type of filetype mismatches the variable type * NC_ETYPESIZE_MISMATCH when filetype size mismatches buffer type size * NC_ENULLSTART when argument start is a NULL pointer * NC_ENULLCOUNT when argument count is a NULL pointer * NC_EINVAL_CMODE when invalid file create mode is set, (e.g. cannot have both NC_64BIT_OFFSET & NC_64BIT_DATA. In PnetCDF 1.5.0 and earlier versions, if both flags were set, then NC_64BIT_DATA triumphs NC_64BIT_OFFSET.) o New example programs * C/bput_varn_uint.c and F77/bput_varn_int8.f show the use of nonblocking bput_varn APIs * C/i_varn_int64.c and F77/i_varn_real.f show the use of nonblocking iput_varn and iget_varn APIs * C/vard_int.c F77/vard_int.f F90/vard_int.f90 CXX/vard_int.cpp show the use of vard API to write/read record and fixed-size variables. * C/transpose.c shows the use of ncmpi_put_vara_int_all to write a 3D array that is dimensional-transposed from the one stored in memory. Six transposed 3D arrays are saved whose dimensions are organized as ZYX, ZXY, YZX, YXZ, XZY, and XYZ. The C++, Fortran 77, and Fortran 90 versions are also provided. o New test program * nonblocking/wait_after_indep.c tests if ncmpi_end_indep_data() returns properly when nonblocking APIs are called in independent data mode and the wait call is made after exiting the independent mode. * nonblocking/flexible_bput.c tests flexible bput APIs that use noncontiguous buffer type, noncontiguous imap and require type conversion * testcases/flexible2.c tests flexible APIs that perform type conversion * testcases/flexible_varm.c tests flexible varm APIs * testcases/varn_contig.c tests the case when the fileview is actually a contiguous chunk. PnetCDF should be able to merge all. * nonblocking/bput_varn_uint.c tests nonblocking bput_varn APIs * nonblocking/i_varn_int64.c tests nonblocking iput_varn and iget_varn APIs * test/testcases/test_vard.c test/testcases/test_vardf.f test/testcases/test_vardf90.f90 test the new vard APIs. * test/testcases/inq_recsize.c tests if one can correctly inquire the size of record block from in a netCDF file. A similar program in F90, named inq_recsizef.f90, is also added. * In test/nc_test, the test programs below are borrowed from netCDF test programs: t_nc.c tst_misc.c tst_norm.c tst_small.c tst_names.c tst_atts3.c tst_atts.c * test/testcases/one_record.c tests the special case defined in CDF-1 and CDF-2 specification that "A special case: Where there is exactly one record variable, we drop the requirement that each record be four-byte aligned, so in this case there is no record padding." * test/testcases/modes.c tests if correct error codes are returned when various file create/open modes are used. * Under test/testcases, varn_int.c varn_intf.f varn_real.f90 test varn APIs * test/testcases/inq_num_vars.c test if one can correctly inquire the numbers of record and fixed-size variables defined in a netCDF file. A similar program in F90, named inq_num_varsf.f90, is also added. * test/nonblocking/interleaved.c tests a combination of interleaved file types. This is to test the bug fix in r1758. o New optimization * Prior to this release, PnetCDF wraps each MPI read/write call in put/get APIs with two MPI_File_set_view(). One is before the MPI read/write call to take advantage of MPI's fileview feature for accessing non-contiguous file locations. The other is after the MPI read/write call to make the whole file visible, as the root process may write to file header later in the data mode and it alone cannot make a call to MPI_File_set_view() because the function is collective. In this release, the second MPI_File_set_view() has been removed. The root process's fileview is changed to always keep the whole file header visible. Saving a collective call to MPI_File_set_view() is expected to improve some performance. o Semantics updates * Header consistency mechanism has been updated. See README.consistency for details. * The use of NC_SHARE is also revised. See README.consistency for details. o Other updates: * The subfiling feature is now disabled in ncmpidump and ncmpidiff until a bug fix to allow reading the master file with the number of processes that is smaller than the number of subfiles. * The attribute names reserved for subfiling feature are now changed to use a prefix of "_PnetCDF_SubFiling". The leading "_" underscore is a CDL convention. * The flexible APIs now allow argument buftype to be MPI_DATATYPE_NULL. In this case, argument bufcount is ignored and argument buf's data type must match the data type of variable defined in the file - no data conversion will be done. This extension makes the flexible APIs be able to correspond to the netCDF APIs whose names do not contain a data type, e.g. nc_put_vara(). * Type conversion between NC_BYTE and unsigned char no longer checks for out of range error (NC_ERANGE). CDF file format specification make a special case for this kind of data type conversion. See: "Note on byte data" in the format specification. * Conform with the CDF-2 and CDF-5 formats that names are normalized according to Unicode NFC normalization rules during encoding as UTF-8 for storing in the file header. * A new configure option, --enable-large-file-test, to enable testing I/O on large files and large variables. Note the testing prgrams will run very slowly. o Bug fixes * fix the bug for flexible get_varn API. When buftype is noncontiguous, the bug forgot to "unpacks" the temporary buffer that reads data from file to the user buffer using buftype. * fix the bug in blocking flexible get APIs when buftype is noncontiguous, swap is needed, type conversion is not. The bug sets a NULL pointer to the read buffer and passes it to MPI_File_read functions. See r1815. * fix the bug for the NetCDF special case when there is only one record variable and the record size is not four-byte aligned. In this case, NetCDF spec says the alignment must dropped (no padding). See r1791. * fix the bug in nonblocking APIs when requests are resorted into nonoverlapping groups and the first group of file types are interleaved, it was mistakenly identified as non-interleaved. See r1758. * fix the setting for PNETCDF_RELEASE_DATE in configure.in. Using read command together with IFS does not work as expected in bash 4.3.11. See http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2014-July/001586.html for further detailed discussion. - Update to version 1.5.0 o New features * A new configure option "--disable-in-place-swap" is added. It disables the byte-swap operations running in-place on the user's write buffers. The purpose of providing this option is to deal with the problem when a Fortran program uses a immutable buffer for put APIs, e.g. the buffer is declared as a PARAMETER, and in-place byte swap on this buffer causes segmentation fault. See discussion threads of http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2013-July/001498.html Impacts: 1. It takes effect only on Little Endian machines. 2. It only affects put/iput data APIs, but not attribute APIs. 3. The INTENT of buffer arguments in all Fortran 90 put/iput APIs will be declared as "IN". Without this setting, the default is "INOUT". 4. It has an impact on performance, as an extra internal temporary buffer will be allocated to copy data over from user's put buffer, so byte swap can be run on the temporary buffer. The default setting is to enable in-place byte swap. PnetCDF tries not to allocate additional memory space, due to performance concern. Users are discouraged to use Fortran PARAMETER buffers in put APIs. * A new configure option "--enable-debug" is added. It enables a memory allocation tracing mechanism internal in PnetCDF. In addition, it enables the PnetCDF safe mode. (Note that setting the environment variable PNETCDF_SAFE_MODE at the run time can still overwrite the safe mode.) Default debug mode is disabled. When enabled, a user program can call three new APIs below: ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, and ncmpi_inq_malloc_list to obtain the size in bytes of current memory allocated internally. This feature uses a binary tree to manage all malloc buffers, e.g. tsearch() and tdelete(). * Add three Fortran parameters for PnetCDF library version numbers: PNETCDF_VERSION_MAJOR, PNETCDF_VERSION_MINOR, and PNETCDF_VERSION_SUB. Similarly in C programs, these are defined in pnetcdf.h as constants. o New APIs * C++ APIs are now available. They are developed based on netCDF-4 C++ library. However, users are encouraged to use C APIs, instead C++. * ncmpi_put_att, ncmpi_get_att, nfmpi_put_att, and nfmpi_get_att - these APIs correspond to nc_put_att, nc_get_att, nf_put_att, and nf_get_att. Note they are not the "flexible" APIs. Flexible APIs have an MPI derived datatype argument. * ncmpi__enddef, nfmpi__enddef, and nf90mpi_enddef - these APIs correspond to netCDF nc__enddef, nf__enddef, and nf90_enddef (with additional optional arguments). * ncmpi_inq_file_info - the naming for ncmpi_get_file_info may cause confusion, as "get" has a different meaning on PnetCDF. The correct name should use "inq". However, ncmpi_get_file_info is kept for backward compatibility. * ncmpi_inq_striping, nfmpi_inq_striping, nf90mpi_inq_striping report the file system striping settings of the opened file: striping size and striping count, if the underneath MPI-IO can find their values from the file system in use. * ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, ncmpi_inq_malloc_list report the size in bytes of current memory allocated internally by PnetCDF. Similar APIs for Fortran 77 and 90 are also available. These APIs are enabled only when PnetCDF is configured with option - -enable-debug. When this option is not enabled, calling these APIs will return the error code NC_ENOTENABLED. These APIs are usefully for debugging. * ncmpi_inq_files_opened reports the number of files that are currently opened. Similar API for Fortran 77 and 90 are also available. The API takes 2 arguments: number of files and array of file IDs. If the second argument, array of IDs, is not NULL, then it will filled with the netCDF dataset IDs. This API is useful for debugging. o Syntax changes * For all Fortran put/iput APIs, the INTENT of write buffer arguments is changed to "INOUT" on Little Endian machines, if option "--disable-in-place-swap" is not used at configuration. Otherwise, i.e. on Big Endian machines or PnetCDF is configured with "--disable-in-place-swap" on Little Endian machines, the INTENT is "IN". o New PnetCDF hint * nc_record_align_size - aligns the starting file offset of the record variable section. Note this is for the entire section, not individual records. o New error code * NC_ENOTENABLED indicates the API is available only when the corresponding feature is enabled. For example, nfmpi_inq_malloc_size() returns this error code when "--enable-debug" is not used at configure. * NC_EBAD_FILE corresponds to MPI error code MPI_ERR_BAD_FILE, meaning "Invalid file name (e.g., path name too long)." * NC_ENO_SPACE corresponds to MPI error code MPI_ERR_NO_SPACE, meaning "Not enough space." * NC_EQUOTA corresponds to MPI error code MPI_ERR_QUOTA, meaning "Quota exceeded." * NC_EMULTIDEFINE_FNC_ARGS corresponds to MPI error code MPI_ERR_NOT_SAME, meaning "inconsistent function arguments used in collective API." o New run-time environment variables * none o New example programs * Example programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * Under examples/C, three examples are added: create_open.c, get_vara.c, and global_attributes.c. File examples/README contains their descriptions. * Under examples/CXX, several example programs corresponding to those in examples/C are added. o New programs for I/O benchmarks * none o New test program * Many test programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * add tests for flexible APIs. The tests borrow from nc_test/test_write.c that tests nc_put_var1, nc_put_vara, nc_put_vars, and nc_put_varm. Similarly for get APIs. * testcases/record.c checks if the number of records is updated correctly. It writes to a variable's 2nd record followed by the 1st record. A call to ncmpi_inq_dim() or ncmpi_inq_dimlen() should report 2 records after the writes complete. * testcases/noclobber.c checks if error code NC_EEXIST can be returned correctly when NC_NOCLOBBER modes is used in ncmpi_create and in the meantime the file exists. * Some test programs are developed to run in parallel. The test mechanism for parallel runs is command "make ptest". Two environment variables can be used to set the MPI run command and output file directory: TEST_MPIRUN and TEST_OUTDIR. Their defaults are mpiexec and "." (current directory), respectively. For example, make ptest TEST_MPIRUN="aprun -n NP" TEST_OUTDIR=/scratch Note the keyword "NP" will be replaced by the different numbers of processes used to run the tests. The testing uses up to 8 MPI processes. * A sample PBS script file is provided to test "make ptest" on machines with a batch queue system: pbs.script. This example script can be submitted from the build root directory (where you run "make" command to build PnetCDF library). * For cross compile environment (and batch queue system), the environment variable TEST_SEQRUN can be used to set the MPI run command. For example, the command for testing sequential programs: make check TEST_SEQRUN="aprun -n 1" TEST_OUTDIR=/scratch For non-cross compile environment, there is no need to set the environment variables, as long as one can run the MPI executable without mpirun or mpiexec. o New optimization * none o New utility program * pnetcdf_version prints the version information of the PnetCDF library and command-line arguments used at configure o Other updates: * Revise FLASH-IO benchmark to use nonblocking APIs for both checkpoint and plot writes. The control variable to switch between nonblocking and blocking API is "use_nonblocking_io". Set it to .FALSE. in flash_benchmark_io.F90 to switch to blocking APIs. Using nonblocking APIs is now the default. * To match ncdump, ncmpidump now only supports one input file. * Makefiles are revised for better recursive make and fixed some build target dependency for parallel make. * File creation was revised for handling NC_CLOBBER and NC_NOCLOBBER modes. On systems where Unix calls access() and unlink() are available, they are used to check if a file exits and to delete an existing file. * subfiling is now enabled by default. Users can use --disable-subfiling to disable it * man page of ncmpigen is updated to add the description for option "-v" which lets users to specify the desired output file formats, e.g. CDF-1, CDF-2, or CDF-5. * flex, lex, bison, or yacc are no longer needed for building ncmpigen. o Bug fixes * fix ncmpigen.y on parsing CDL file to get the number of records. The bug failed the command "make b-test", due to getting a wrong number of records (current value for the unlimited dimension). * fix the update for number of records when writing to a record that is not the last record. - Update to version 1.4.1 o Bug fix: * Improve pnetcdf.inc portability for fixed/free-form Fortran programs o Fortran API syntax changes * For nfmpi_put_att and nf90mpi_put_att family, the intent modifier for the put buffer arguments are now declared as INTENT(IN). * For nfmpi_put_var* and nf90mpi_put_var family + On Big Endian machines, the the intent modifier for the put buffer arguments are now declared as INTENT(IN). + On Little Endian machines, the the intent modifier for the put buffer arguments are still declared as INTENT(INOUT). This is because PnetCDF does in-place byte-swap on user's put buffer. If user's buffer is declared as parameter, then segment fault can happen when PnetCDF tries to byte-swap a read-only memory. o Subfiling * Subfiling is a new PnetCDF feature that divides a file transparently into several smaller subfiles, each of which stores subarrays in CDF file formats. The file name supplied by the users serves as a master file that contains all metadata about array partitioning information among the subfiles. Because data partitioning is made transparently from users, data accessing is kept the same through the conventional PnetCDF APIs and the master file. * To enable this feature at configure time, add configure option "--enable-subfiling". - Update to version 1.4.0 o New APIs * Fortran 90 APIs (adopted from netcdf-fortran-4.2). All F90 APIs have prefix name "nf90mpi_". The APIs support function overloading. * get/put_varn_ for reading/writing a list of subrequests (each is specified by starts[i][ndims] and counts[i][ndims] for subrequest i. ndims is the number of dimension of the variable) to a single variable. * multiple put/get requests with explicit buffer type names: ncmpi_mput_var_type(), ncmpi_mput_var1_type(), ncmpi_mput_vara_type(), ncmpi_mput_vars_type(), ncmpi_mput_varm_type(). Similar for get APIs. "type" is one of the followings: text, schar, uchar, short, ushort, int, uint, long, float, double, longlong, or ulonglong. * ncmpi_inq_nreqs() reports the number of pending nonblocking requests * ncmpi_inq_header_size() reports the size of the file header * ncmpi_inq_header_extent() reports the space currently allocated for the file header, (also the file offset of the first variable) * ncmpi_inq_put_size() reports the write amount committed by far * ncmpi_inq_get_size() reports the read amount committed by far * ncmpi_sync_numrecs() a collective API that can be called in independent data mode to synchronize the number of records in memory across all processes, and update to the file if NC_SHARE is set. o Syntax change for Fortran put APIs * intent of buffer argument in all Fortran APIs is changed to inout, as byte-swap might be performed directly on the buffer. This change is for performance consideration. For example, if the buffer is declared as Fortran parameter, then compile will fail. o New PnetCDF hint * nc_header_read_chunk_size: PnetCDF reads the file headers in chunks. This hint indicates the chunk size (in bytes). The default is 256 KB. o New error code * NC_EINTOVERFLOW reports the error of 4-byte integer overflow. This usually happens due to MPI-IO data type constructor APIs' arguments using 4-byte integers. * Error codes to report metadata defined inconsistently across processes. o New run-time environment variables * PNETCDF_SAFE_MODE environment variable can be used to enable/disable the internal checking for data/argument consistency across all processes (by calling collective MPI_Allreduce). Set it to 1 to enable the checking. Default is 0, i.e. disabled. * PNETCDF_HINTS environment variable can be used to pass the I/O hints to PnetCDF library. Hints include both PnetCDF and MPI-IO hints. PNETCDF_HINTS is a string of hints separated by ";" and each hint is in the form of hint=value. E.g. romio_ds_write=disable;nc_header_align_size=1048576 If this environment variable is set, it overrides any values that were set by using calls to MPI_Info_set in the application code. o New example programs * example programs are now categorized into C, F77, and F90 directories * nonblocking_write.f and nonblocking_write.f90 are the Fortran version of nonblocking_write.c * put_varn_float.c for using the new APIs ncmpi_put_varn_float_all() put_varn_real.f and put_varn_real.f90 are the Fortran versions * put_varn_int.c, put_varn_int.f, and put_varn_int.f90, for using the new APIs ncmpi_put_varn_int_all() and nfmpi_put_varn_int_all() * hints.c, hints.f, and hints.f90 for using PnetCDF hints * flexible_api.c, flexible_api.f, and flexible_api.f90, for using blocking and nonblocking flexible APIs * mput.c for using ncmpi_mput_vara_all() to write a series of arbitrary start[] and count[] * block_cyclic.c, block_cyclic.f, and block_cyclic.f90 are for a * -(block-cyclic) 2D partitioning pattern * column_wise.c, for a *-cyclic 2D partitioning pattern * put_vara.c, put_vara.f, and put_var.f90 for using for nfmpi_put_vara_int_all() o New programs for I/O benchmarks * benchmarks/C/aggregation.c -- evaluate PnetCDF's performance on I/O aggregation across multiple requests with different data access patterns. * benchmarks/C/write_block_read_column.c -- writes variables and reads back using different data partitioning patterns * benchmarks/FLASH-IO -- I/O kernel of FLASH, a reacting hydrodynamics code developed at University of Chicago. This benchmark can be built independently from PnetCDF release. o New test program * test/F90 contains test programs adopted from netcdf-fortran-4.2 * test/nf90_test contains test programs adopted from test/nf_test * testcases/alignment_test.c -- test for header and fixed variable file offset alignments when entering redef mode * testcases/nonblocking.c -- test nonblocking APIs ncmpi_iput_vara_int() and ncmpi_iget_vara_int() * testcases/flexible.c -- test flexible API ncmpi_get_vara_int_all() using an MPI derived data type created by MPI_Type_create_hindex() * test/header/header_consistency.c -- test header inconsistency and see if inconsistent metadata is overwritten by root's o New semantics for attribute APIs in data mode o New synchronization for number of records o New optimization: I/O request aggregation pointer). o Other updates: * configure.in and Makefile.in have been revised to detect MPI compilers and other compile options automatically. * A new configure option "--disable-file-sync" to disable calling file sync. This is to be used when the underlying file system provides data consistency control. * add build recipe for IBM BGQ (e.g. Vesta/Mira/Cetus @ANL) in README.IBM * add build recipe for CRAY-XE6, Hopper @NERSC in README.CRAY * add build recipe for CRAY-XC30, Edison @NERSC in README.CRAY * add build recipe for Endeavour @ NASA in README.SGI * add declaration of flexible APIs for Fortran90 * "make testing" now hides most of the stdout. Use "make verbose_testing" for verbose output. * ncmpidump: add the command-line option "-k" to report the format of netCDF file. * ncvalid is renamed to ncmpivalid, a tool to validate the structure of netCDF files for conforming with CDF formats. * Fortran type NFMPI_OFFSET is removed. It was merely a shortcut to integer(KIND=MPI_OFFSET_KIND). Some Fortran 77 compiler does not recognize keyword KIND. In that case, please set MPIF77 to the MPI Fortran 90 compiler, e.g. ./configure MPIF77=mpif90 * configure now automatically checks Fortran module compile flags * Support additional Fortran netCDF data types: nf_ubyte, nf_ushort, nf_uint, nf_uint64, nf90_ubyte, nf90_ushort, nf90_uint, nf90_uint64. * Error codes and messages conform with netCDF's o Bug fixes * Argument unlimdimid of nfmpi_inq() returns -1 when no unlimited length dimension has been defined (to conform nf_inq()). * Argument varid of nfmpi_inq_varoffset() is fixed to be the C's varid plus one. * For collective APIs, many places have been changed to prevent program from hanging if a subset of the processes got errors. The fix will allow all processes participating the MPI collective calls in the PnetCDF, even if errors are detected on a subset of processes. * set the nonblocking request ID to NULL when the request length is zero * report error when bogus request IDs are passed in ncmpi_wait * when entering redef with different alignment hints, fixed-size variables' file starting offsets will only be changed when it is bigger than the old ones * Fix some Fortran API intent in/out argument declarations * ncmpi_def_var is fixed to detect if CDF-5 data types is used on CDF-1 or CDF-2 files. Error code NC_ESTRICTNC3 will return. - Update to version 1.3.1 (September 24, 2012) This release is primarily a bug-fix release, tidying up a few issues and incorporating some early feedback on our "buffered put" interface (see http://trac.mcs.anl.gov/projects/parallel-netcdf/wiki/BufferedInterface for more information) - add a new API ncmpi_inq_buffer_usage/nfmpi_inq_buffer_usage for inquiring the current usage of the internal buffer allocated by the "buffered"-put APIs. - bug fix to make bput APIs properly return error code NC_EINSUFFBUF. - bug fixes for ncmpidump to avoid residue contents from a previous read when it read beyond EOF. - bug fixes in the the tutorial example codes. - add more in-line comments for the tutorial example codes. - add the error string for error code NC_ENOENT. - Replace parallel-netcdf-1.3.0-destdir.patch with parallel-netcdf-1.6.1-destdir.patch. The patch accomplishes the same thing but is created new for the substantially different makefiles.- fix shared library file nameobs-arm-9 16150596781.7.0-bp153.1.151.7.0-bp153.1.15pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/mvapich2/include//usr/lib64/mpi/gcc/mvapich2/lib64//usr/lib64/mpi/gcc/mvapich2/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:mvapich2cpioxz5aarch64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig filemsh<<:WZutf-875f49825b5167f4e0d6fd5a100649265f08b569178a85bc9c3f051db9db01c93?P7zXZ !t/g] crv(vX0aiO(daBC5yaJ iJ;kٍBYqsq3.L.v Rhfio\N( \@8U I8ش%9hV~L<%ͯx+1𬜡:IMJvxQ"kwDHxt}0ķys]<J$@Kz/RZJÞDAc78Y[Kaxbȶӿ|zb`I!qc2XwA n9 [^)PB2͢!_Hv[U QKmJ8 9gH Թ%*f RXXI=Z):z,Z񰃔ɓ. /z Q+?B$?;sTfZ8 }=Ϙ,a*.+[f|Oj~{ijHYnu,6J5l8Y[j-KYRW3;#sœ %gLªB:Kp4B.ӯsjxY:1u=^=.| (j-6h4cJ0ABvLWJ1cdPSlxhSU, %G$G(I? ]Kt1$|+;NɪأDwz^U-VڵJeDg&Zr3 f$BV e‚o 6z[@7˪9#"V: EN&h*!ĎE3̿Jm5s٤sBR5 $/9n!\4țقqiߤW֠^"+X?'iV0> %6_20- W6'.Q`L,œ[9ZG=¿k>JnV@mH\O(f_{Uk%xvuOԖ -46&Kz2'-:R<",vbA8T06UlJFŰ7<JT?vϭ|er?ɠ$Eb3gсHܣD*զ5 !ZD^􄈴6#K]`xgi_&*4@YA B-wL2N;&FhQ5% p#`a<iP Ƥܾ%KA!Rij?t5;e/3/b:̱'߽c++x):ҠgZU0 &\x6lN#Տ+p6M`8-)ȏB#[|R)|Nn?X&ͅd_*lPxCu^g3BHTuG-bHt{aPHe^i85ZXN#`}&^H:=cyҪwZ?%Sljޢ,<7Zۃb)_{GomC'RDVŹ :drs;lFrrHKqBw>͐ztY-y{ RE<[v+]x=/G= &bO:cW D 2Pn/t Dl/\ab=Ν>r"˽;R<:k5BpOi<`9M:']j6 =_a'רLO {kM'hޫ@ x<hJ7dY=\vCDAxFuwVs%!K>V Sκc%n̰eg,گL\s1y5eNqі ?BH݈E$2nc$ߐo.j Gt=H%28 fTkY/8=bܥGW˜|(ғcs(e v&76Gpoв[)X/aRhbٶ-:kD7=t^v[ DqϽ-2+ ߳=Tk,O2oG6M#^o€Z6ht&[l~Gdޮ ׷s N DmJ^}Vfs^NAG'w[NSWzql)ӡm@%|=ŤUh&+WƖSy=5,,GwzM9O]*9Re㮍B="}s?EJ| \QEy"z2o/սiTѩ"6UE%5<V*12^ğ,^~ޖ3c׎R+䙿ŰSljZQ,/"Z Ow)ňWK";g')yE[.[hfm,ܱw0}\@8p!_Ƌcy@O?S]Gwp:O>+v]3?H \ruux:Kf EdVcff<0߲]fȏǸăaI p@Nf!mVLy% =VYdAZNnd(Tį`.:zU_:,0yr ftq"v-Xq&c| Vמm_0i^2z|Oi}R׊xMeɚ'V]EV-+ulYoVt3Tw5kzP@ͩ" =J4y^ O#h[1]iU`ޅτ_|E184w~$dᖠdnO9b|-{tCaҷÓ3NbXr' P3f`cVb6 >6 9@%CxW'Fm\ 2wh8''.bL(Z͐#>I!39; y~8]峺!|-xMz _*ϡb׬bفA8%][ZPhmqôrs8.}FQn~w9s'G^oI|5_p4oMW)DUDC*;[v 0x"C7\,nͿd,re(6^=XiAy^T>FjcA<tt=v\(q`0RF+@)us(Q#$zcIȭwG[<&:`P?}낦 %Ձpmk%gBtJb7@S)Hary</u}}RW E&m0cWVzAŁzwYŪtk`隉ˊ""Ro=,^˘SVz;枢KN\ʁݲjiNݘNItVj5yn 0hoŜؒ o `Mv[%UmJX پqԭ#F$~^U:OR~l;']ȢLpSwo\LU,14g'`(>K6h QS`"_V߷cet[Gw34 X=s )Jgdz5{g,PAc,u@8r)ֈ8խkl(1/fCkaK0㷽`Te_T{!`vk|1o$-s4<puRצPgs1qfjP>Q QgGsáe@e -XJg(KM6PZQIĒǝF?K dnynbw6nes*G30@ѶyT MpRFBOi|_h ;v&=ygCNAy+kD)n,y+xL0D7i7UN66m&2\hCG8l!VEW`EM _,L:w;g ꉡwlLI>Z,Zؚg~?^,1w*Io _Ok'$*uReꭍjY$8YM{Pɦ9(6_X1-\ns--:FQ8q=WM>xJDܛ&n5دp.JǢ!1>"5]F{p2ێSgH%f%KHFr`-0nfc (:ecƂnKj15J3] b7!on ^;e%bȍbd¨_NzUl9ΞBV[c2%dr,`YAf F;>=:@^e6@J@[t:OM᥆!V S=LsO~I<һF|LM]ɪ.;L#M ue\gwI+nPtOm c5xTZbqDZ5Uzs]PAy^]5Le>5;O<6AGND|D{wY)5Ea~ymG?x0tb+`5l\%mKLIԵB}DqJ\t!sFM,he jJOZ F7 55n]E@cK#˜P;gϴLo oF멉cG呩 Ym8>@KM3;Cb [GUARY<%wb|^G2Btnю/yG*íNOEQ `kkF$hsxm<;I2yb]Ȫ /.4 /L 0d ~W'̐9;=Tn}Ε&\1س|i+3AYJ[[RA:)'ӱQ0vLǤ= ]lOI)>\ 2T[Bw%@k5Xae) އ<cmSa>Ue0 dJ4c #pFB "[úTץwa?'.p#K>G.*F6U tPHrއ{ FbHS^kBz!jQ|IYwd=Q}6Laj9ȸ1J8F>5LSgH̹4^]8oI302SN ^JWrS< Ǵv$ƫ)f]N1$(یmH%nl:ZՐ]l͍#5UjآO{3@iQwvϑ&Wv vg-qb?[bR¤j j^tg`זt$ѝ铔=U/wwh8c ;LbeK>%2Qvw-~BH Hu@̗L~nNnyA6e?'SFv+ Kغ_K' aMAA35#rP?P0Pfg2}0PPU[Lj-ߪ]\#uYPC˸T- )? Q/zZYybumXשG }]r i-* kS;a\pw>k^U"IS i4~: |AwNͥs?hAȲj^`77%G$JfA<;5c>L}e@}TevP!j5s!EQE*UXZs"gq1SƤuKlEU];7Wi|]jtМ3[3cCS1?py%Q.v; {gfp_N@h䥗 {(O_.%Kd\A^yϡ2l,)(%n|1D>E2׼{Rnʺ3CWŸteg}:'|*kӥlj}|){ t?#Dtd6g@c*w#ɝow1R.^}O)/&o봿&;* 92z~cAhݚ5)?x^!N4C zc/q2s##Houfx,8BJv|CVNEG)@J.7iЌ Tx`z<Ƴ?y}%<<:)'\9iq|@eGJag7t65:6_F`[9kYEl{Y(Ml7c4hO6nJ)c`Hrh,ܽ)f-h蚭ۻHE *>53XZuoBS[ [Z5mz隧%0%Fl .WvnC!\+|#oרYH:ĹwǍ si) 0ʭMxO(R)KڻcdhAo1.<EQTn0 3w8.thgh5=!pp|f `\=-\Fx\ublp / 2p:r4xLArW[ !6-G55PUcͼmK? $0'" ^e8R0]8Ep)R&!]7ٻJK/INJ 1pU3dQ^7͕]Hb>ڎ2EMj(|O>[}/tq&pTVBo} $ xh))O/ٟD9i/PIAEP $w+udylõy&:ɡ_ٳFI_~ O:6 |ںYgک;;gD{o\h/AWNf"v],qFS?4- zfBPƆ.;V+8rdK)|m,TFuv,^(+8<*jl`%CO gε1.e \IpkP*·3(,XY67~fa*( 88_(ǾךF6 >T#i%>9M16ِxI٘itE+ߖ_EVJk+Q3|jaql( JPnXmg3+z,>jQ渡܊[呺)-ݦS`%q`n jigˑPPb~Zf҇+9^/cCI]v뵙h]agdaʯb̀QmA0;2}Bb4ΥsE#>;v&Kl߿U%%3 (3@ɸlKUg??AE<#H&.nT376b#d -N"GG*1MNmtq٥vr ƶEOA{vu(Mw% o8Yd◜k-ކ1bTNJn.4S=8 )⊻5(Id^>'-hu:06Uf)BGG=V!tua2L%i`SޜğH6`Q#RaDFM.۳[*Cd &wQS̗ #eV(uӤ܌7۸-vj\F/ޘy$ HqLZx5|A+(+t͘e)*MV*|clQ-/;\;mEWG}0t+^. @ GFjUO87c#@"f-VH+m8QwID3 wޑ$94ˤ<]6^T"U6%gTUcNVV~:%D[Q,␏9[0Dv'2K {p?GRHXt1FmV=Gyb4=]}[gaE7!|p>D^F υ,:(ܷ ʬ-c?0DB 8M wj2=7C8Y\Q%ڿsu"#44({G>]]>=m'ca -#bmc1[kw/r +c_/(Tq[KErdX 3&ޖ҉**(:)LeBl@z<5v᪅ȳUglHj|Z|A. SZ)I ="E%;kt&$ña}rӀ.B,QNXY䭲[amz;'r@԰fR" mq\'# ?27[*v1L9;^Ȓ~OnSBMrA.]zd<}&@Ʀ{ño i+^ 1{0ƶ;R97 P]RJlِE1:qםD|hRq) ȸ| 1 [.JԻ4,d#C3@2aW &m/xu3u.4+Z+y{+a.%Wx}+m80bžpvlYr*> )q5ÔZU)e3[7[g#rreUOz.!9k&Jt𚌷<,y'1&aeFd2+A#:F!S%ѓW\5i&"x>jsA~q=1NNAC*$` H>R,Uv2%u]5vǁCP?Z\gO;D3=a8QM2MuoB0i Gu 0 5WR(ĈGṕ(%$Fhq,؜_3t4 ~%:,|(TE@q'uBob3MxXm@Jn=mڙ*БWM?uNl)X(zpEf$ikMѦI%G\m`S}%}wͿ bd*w:s :9sU}1i/^sw MǤzGtMEtՅal{4e{32/[N3=nhWn[qΥ?ɜ0@'(k"ZMث\;))q9gAwQP/qxmAx{ ;:vRH#q+%7e ķ+.iNj{qVp~'eSYM(Cl BkOiEȷJdžuCb [.4N ڎvq;9/.*cxgo 5ip#C"+.$µ8/ͅxa4IhmSxv&6mGUB|Ui bص/WedE[TaGG6 8Xh[QF%M'}Hi1STks, /v}K~f/lٌ犪26*!6:P*{ =V>4P,K!]&_}%l׃ B>/^ ʾ̊a;3&O4ќ6$J䙞Pݰ޶d0P>K H%m^lb[]ECWMa?K8tbk)R(p2~VhF!%M GT#Oҍ;p#+Ffh&Xr*[j*r07]&k=^,ݙb0A "6bu6Q?tYA1@O|Ś i h𮰻$?i>T(˲$&$w[kheZ3xҵ,c#X/!Q$V>`2u?(|"NW/s F<$ud4Xg!5:#n~954j|f WژE8A\\Y2ClVY:k̇qvd_R%OaN{A!<и ?m\pieX'yu|'kݟ?{O7!ڧpZe&b@(Ȧz \Ƕ>Vg_l`/#DIA~?dUIoȆdMȑ'e.jʏZr-d4srI'98ɕh͊U< Tj04BB wqu L"޸!xm Oy&ov{n> @y`4vY,_ EׄOD]J-E5#THIWEd5} -\~Vh%>pu Pt׾VvKC V`I^7Psz;9%2^ >)C^mpWu1 ]u?\\PVj1Z#I=󞏣\%Ro_Ul :.!H(zG}(襀+H,f?{) 7C̹$?8Fn|m>ppʗ'O0Fx$srߤN\ xxT=>j$0d%iMӃu}h\hlJqL|um,wAt!N"j^XJ4]F'Obx`ҵ7&t*R6%Nh <{|z*TyS2rƒMKkڥs=rwDbgbDwaLkVbLQ,Rܓn,.bi,DIW>n<0<3pG<[|13S/M7µ3NZ {q J{7STSv̄ǵljKC-KH MP.fؾ9X^:_p~w/Au"+v(x4n$[O.IEJC zPtWـ:%-剨_ytWIy[\K#<Ӻ/FwU!]IވVh@$Bt!.Lsyf,efJ{]'uNm5^:cj __HwF ϼ`/9i+AO-[9X'uW]Uӗ>24$x"!MPRyXY@hqm'/^"xZ |@DN`/GQYr@ f3tbjC1.bhI yr/@+}q`e[eQ3u]~rfSw!ȼW 3BE-~P߷[Oy18dU_$$$VPd yQ^}qPW_tP\]Cg6)l)3-ƋnYoD;h(mſ}8)]p6Ӧ"6(ب\7.B-tw_1" EvI?N|wMgbD׹Õ-2@#ݤ'TasD2$~"hpo9{db@ƙp K4x7n}נ\k[gBOኵG@I7}*L|4 f _}7yn@l)>Aǵ9U2OdSP7Z NfOc@;VԋuM"Xs K3sM&z1p'=){|d:w=;*" XM2l֕!&= 2AM[kDe-)a-ܭoU.C]4gM}z05DU S@p1~`E A!Zm?nfV w1I ?*v.mEimXK-ffڄ)<gEpccS)8ߜ75a7h=m>*USbAjBoV#fX% M֞鲿cRR^‹РvA&aE1U6 n9s@H PmKv;åT0.<#Gxxc˼Q6ibQGUbR5J,PuY\ف(qWt+~wD ]sh8E `+Om vLWoA ⚹ V#QU XPw PSb£٦Dzd||R x4K*W C#BuZ𫃒fAZɯ^lW!Hn|TF4F"qy#XlhK/82X,Y5A u e܉ /'0[0+hIx\aG,&ѩ {{''T^ó$ Aމ0iJE0HcF?̯U'$8%wgIJG"Oܹs15߉`@c^FB̞SN( :ځ U}ðzF\jǷC]"7;0dy ^m#LF "T2ׇ=o5ЕȐBm|B<#Ō LuY:<7;,X=,:<Ϡ͏ʫ"po;/XrHK]er*UUIXX)vA~=kfΞ)jBpd|o)׃,$cZdvJR CDk JUNj9wDIF]xe5/O]jq`ؙewq:=b~ )JU? ġڨ0$k>BAu\Myh :.a-VWʎ3Bhif>`JC"VP/XiK;ci uQٚZZ#;+zFx*_ciܾ1pu v~ߴ`6N(@N]gt&o%eO@L\z%B5݇J>-5Yoƨkk`C )W}R'OKA!"]p/ΔA_; A-d!H[/8 ~eXڃ b q~:r!P*XmBUQNRL)HZ`I+OB&: K4c*1u-9@%a5),a,*Ŏ>C.FX LL03ǰ"y˂eXU 9yQ:N!c2Uњj_&J0 itMS6f)8z% &p ac29եs]q_Ls9*(b3DfdMɐ6fb /h:kz,ݘZXtC/4 GǤʱL: s3+ԼEx:mT `O5һ $~@w !Ot"MD^jF [e͏ /nB}!}+L-&xgX&NQASVw̋Z:/qҀ1VjϷ)蘭 /]AtMr{٥d-\҅pTf# !fY7+Uv"#l2.7pyRô"hcc1[kM?Cz.>P~f}@{wӣ&p@dzq<'~*1iBO~2ݽh?{qxϷU:J?\ʈŠGx! O4"v4HdJV 0ow(Vq6Uɢθ uzOqV yڦJyZ;Sc{ێMkFϴ+݃7`XٴD5)EsDw03nUk9?N@xlD6Nە,&8JFԪ9{4N巙'&;lk8n/[0b`[Kn7_IwX :`͸6bUnKI5"7􆃶ďs?¹LQb4?nE=4naidӾDdU.( 튪Lˢ|(n$ޟz7 ׆JJ2Վ?"gAŃGAozv39D(~39s! |/!+_Ї; ܨ!` WpPő *C,{؉%u@G;>9Ɉb5ucCeGԎ;^\j؜]˝;Ir#&mDgLz"+Z/+#c2xJ4ӓe=t6aކ7 9p`IzVOKU ^FAUMտkܜ_X"JZц(B0[[hsQKvE?&0wt稜{=oQH7aTJƘ6t"-`4XؘAQa-%gmTTV {/!qq%J/ucUc\&6$Jq͑(2ZQgD2Xxr0i:ق 3&^@)} pJ4W 9$q3\2;▐p6THMl[DFMe4ٌYס'7y<0.i 7vڗ۠$VZq,eأVQGz֩ݔKMT 5]b98 tkO`G#MseGe.=,4tpIbQtUߖ_h6i$$|i_1Z$md 'taŠABu9_FQGk;fvU4a 'Df^AԨZ?#t4HOYtI?I  $LtEF^װn_(+J#EMJR O|@Z. &tD`W8 #wޭ41f8o4YaP|nS#~OB($k:ݯqbRt x>b?;2D6>1 XFbDr0f>K},^^pX7:*I 5XԘ:s=uYIW%Iom4a^|?!DQ\Zn'7A,sɬl>xHAeN"(9Jם )S 'CA9ԯнtG 7Ho[ϼӲ/6Mr]5&/IjiD/s{eqMZfSD7څ3,3c>ʣӆ59=' .Nx[ gN;]j ubpR5jPo*-k78nc>RAMh멆qpڞclRsZ$V d0SSCiŮF5-SUfo܏-F{Wɲo~P 80!m`$㏿-PQjs9{| +Fg?iHPX)rw{r#A`C JÊ] tԒP^)VMx+ኋ’ Vhf 1! ?rrxD$ -~':h2lvFE8 $ 9b9HD#Pm'?0ܧg.htI%F,$:J-ޟ~ ǐZCGy2?DzN"iPsMʞvyMiʦ!nٹt-1[[dހO/MyRNsHF\yE!=+jU?  J^]! *cDhۋ;݇"r^9+p.7sOպh݄rJfZRu>LZusJE8cUyDKD*@fIt[kgAnqg\ 1˛.8l*t @t"L[?/ lB)\u u*VӋN\L;4?AQ$2N6bE/s& 2s*z%k[ l*U5+ J;_1`UvMNr34-q fѿEOi̦?$1T9_'?:7F|h~Ue^| oМhȺog5=qRDœ/b@q?po-~ÀJ[XF jy!!JRXִ2P5m9& jꗳD΄WCKOH{o="3WHz@4NʖWfU䛜gߌፓ(C/Sd&aIdM$`ixw,{! &d](-h_/ P ۦm0P )34>+Ph1 ZP#۰i[ >OXޏ{F{̿īфE=ݼf(MF8un`Y/FJRފuX)jvT }sx`S@$өCo*{m)DD~7B8~@O?FUC@0bܙIU 67֕`Ա rIv `%'brq̏4ϥմj[Jט1G=Za@;Sdr-.Ɣ|ҝҥrņJa?~CbVpj,%jƑӠ#Of+17Fk8Oe03Y.*:su6,-aM80Q6P]Ob㴠Wthg"~K3wj!UF9<.o FqBîf%\L+`zyeog܇c%s)x,zƿ:@ 393_U aMiRS{ oItLTnG?3{zô5&&4.Ex6Xr뭫>VQh~o}c.]_h@*4 (7oI)_lX̤8*g S*Uo5z& y} %aA@G)tr O]iJ"%~dPƴG^x]3\䁅ƧT~75MtGD;U(4QnS|J`wr?<+qS:tpt@3&pjwA>w@jٙ2I?4+/ !UtEҪ"yBO]yn.)a6_)y)$L ԑձadѺ*LƖPa6BNY O6WA3&UOIfFA-:#,!eY5N6ɧbQӱǵQn- [/iSX~,nJ0;Wp k}$Z R|koXyD~ g F&}D]G) `Re\i jB`?=H]Ѥ}8㿠v'Z>ZDoxBFߎFVT+;-M9d6`ڒPcBsd>v.1gpF5~.CC֖UEҙ1 +L=^}/+1@獵r"o %:Ol.ATHXBG5^ra; _<Е $Ym4 @ _zj;efۺo".jȇq\oN [cfbPLK\Ugu=VT'qp^>:H+d{q+G-k[ 5cv5I S/>zLmOXK4ƺ>oqP+ xTҞMN6[Ҧ?Z Aꑗzr:@䓓wj`s_QӃ e(dj;' 78s;@"N;?X Fs)U_h 2yo`a架C$& pډ/qatĵ%blO;L $ƫܴ0ͦExB.&Wi5n3.|F3$ \ 561y?3GNܤn &<;tP$wjm^- ff4"I]lJ/dZ@?5Yx$R U׽'hM x2 p-Ǻf~80GqQ܊U{6W(݁PM}݉N`tZu^<32^ȸ>{WdA#Bd0lr45ZPO4c09PMoT_ f#dU/_o_~Ҵ>W=\|i6S @ W*+t5c{1kk\8G7ֽz6߲a_r"CO>"$=/ͷZz~V{i'+S_z0*H0ޔ[UG6}7!x`<vHJQn Γ hkqy8U+xAc5,uסu5歴ëz^Ffg}g5f@4Jź_bL:Z<RƎQQ_:)987a=Jz$"/Y}\:W\h?Fk:=`f=q=ƤF=s 8qRӸkPQYUbR5ԇs\4|hzV:)N1E5=SĨMc2U ? ]A:tɴ_vuݭ[wf7S]5^,idNpO뺨vɶ I,[w׈ ݷ͟. ֳc6i <1iWݵ buo0d+uYk»|j0)q k"8Sʘ>嚡n?)OuBi o2߯pcdW|龅eR=_  $;]ԴCx Mj}liNyc֋iɂwR1ye_*]wkQ'WrYS*+8USĂxT)7Tyuviy|>&r( Qnp2Mmfu4ڈy݌ HXH?*8>>oY/^`  +6h ٖn7i_0!>kZE.adGR? @l@=]\.&`[Ɯj}XTٰm؁ 0 `0-W_uxýYo?~{!4aC]kN^g3t:QK퇸-DC9>cjV4r0Kcؽb ¼g 䍥V_;ծgQm,1gp'Od}h #y &&bA=Hͱ=`no)1B=;<$ԍŗDXű2gjDHIWZɖe4H39bl"MVc]ȢiIPv;4SLaYsԗCXJnz,`GčӍܗ߀/+_:=ydxW EY(i`2J۾ʂD,+ufp XyTc2>-+e.δUPgZ|HesaiI&e#X`'`{KicOFO,9JD7z qHnq۴:+uEG1.d$94Q׎J8+BdHxThUi70 W8 Aմ# r2ok>ɘ}jh;2{gF4sޣi_,/!=7ԳI (3 #`q3He/V~3j= =k?;D&F$/ 3 q8}WjBb"C U[.)={X1@{P]oi |G 1{GAdcj7`rsGFZt$mD5lRV '9KB6hqv'S.wSsLN|伒HLQd LLX.t"JD13;[L;keZG ~6REo kE;:E+yM|0cX<3@@TBBXb0]|ǂ֘= "n4| /+jkKؑ!:^J[hQzl}5NPL5A@} dU%KsR̜s2ȶ 0IwM"(Fla J9YbA_;7_N$񑝈"@m ԛo@E7& "ғgd:3]8D+hr"I̬E;롱n?/А/8fy c?oQ4{5K+z8}ntI$\;\d#SQX/-1y=1u A 153=xN0A N>Kri  o(ȳhF2xx1ͱ| 6R; ڈh9Q#pI$=0spO-u|)M\V*Obr0Ӿ#\cч84P2 +J`THn[³;HXw<3ʳYY*>KʢУtӇL*(X#76RV>1G=B>fM1!zwSfXI2u6`ph`0*]ꒄYl׵ф?ADJDuPUV.}*t_2N c8jC%pHV̑'O ֳӱ+X3{ͷ Q42:2ZӁ 7oջhU3_20[g?ޱↂU&u`soݳfgd$cExԙI4.S%F?Nv@br^8A|LvR#) $r_8^~zvĊE>GtE@@R=x_A]}X˨]m#ʽ?d{Y`'b$AZ"q>oco\whX0΅A+b; '6TdC# # ?Ѷ܃z_|6a1I[Pu#2kmOeFl1ݤ3_M KDFN|uA;k~l~׵fwD] 7\j9+K/Z TQ|Uو ec?N:T&7V0G$KE[dLG`0sq w"+k3@Oen.% x遮] a)Uw1T1>O90'bK܉AQA(q1~ ,)^'MQop춅51!S~gtXc".n5yzGGILcfr0< KMQ-qLsv! pX[>s %U\2ߒEGfnWxy/}& !5:o`p].SO4C iQ}W+\6(>ڀ ̀}95mQ Xy[Z$ -Z-M{~ԊAP.[%>_ڴ<]7j&/Rv06(dt$K){ӈ_&UhOة#VD+` hΘqщ/Ǚ<-m4"kܼb'G߳߾[r2jJ;8 AQPS;-!3! ( :lgY54_zb;f u|6r?xAyY "$Cw gWތO2xŎGN]#v;:#{Fo51&dw e]j# }\]_axAlBF ߷W] .< ^GOA2> oZ /}Tk$$.P!?&'dM* r|1Px6ͫn}Mlk+NaK2 '~2ELt}orފD}i"Jқ}߰oW4~-;U>o#Ax C1_I^v-.V|G$s~X_voK< d;ENd?5`CUu%*Ǐa-,uBt?IrW6C2d[X>\Fs=`\YFk,2ĤB'V?x{/jMrw`ɢEn2-]Z*j-`H^- bv8w&cCOTe)j\Q.Yr2n&ٶƫo| >j,R:<,D7ujx쎜R@,о ;ȢqUpk&`ԬȊ9P,}#HE>Bb0jjbdG |ks#4crR#9Tsn6)[vxoJخyȅS)cAh_kacX姛M35!M$wJpxmOd\+=eX4)}ͻCd$WWoD!Jὤ媡w9.mzve\))q;NCV(>9=16n+[@tb[csܕYD>hGhp9~&_N>T U4UAgs5gU"ֺ4P#ɗ.g2$״+RY oXNfϙ@H?Gء "pΒ#|!PѤW:c^M9 P[ƅ$N }"sͪO*hL|Йe߃.}ReS7QO.&;TX+=&^S&a9xKL<@` hN'K'˚k8omuJ51z#huSx5)on{^/9 |V SW+SKƪb?_0V"d?cE->D*įbc=JLmg ^ BuiE+8PFh9E$䋨D0HU6p%~7qZ4/n6d1[Ř~r:j"0 @;?cϦ$8uLp4,L|_ֵ70nx}-Tۗчr,dYI>/9qi@K]`)j842QȰg@thvLq@6aXD5 [Gvy`bw9]s{vp 6ux@ȃI0㱛"p=~f 6'OV`kiāNP)P !qeV -1%Ik~i./|ѫGE'~XғMYh17)JX/kb>3-;94jLK D{RjјB<uc Z '2&/"Y,6Pܒ]\JhǑX=Gt4{je% X(,{b)Yd.*(0R`sEf&UP*41 AsX~)jma kɤPj5^\dFSI7۽v!]<O\bzM1o2nړ(} ;@K5+n&({- {h,evGXl{@7GԻ׮U\!8&acȑhm{!F'|^z֟|_1q$kyBjʄꅁLK0hhkzRAYDyVzu]O Q8GoʁfQw'G23)22ft6:\?nyPIaĕYНCl~7AW皛'X[l'w*z`=3ջ2WG$WnӧbuIl rܺ2u'| RΟ %pn:?-46syH0 qdjլ%Sum̝/e7OŻƒ D ',(D?;܉OgMw-Qўm7 gݼD۲HgQKoNɮ\jD0 0yzwg$ٓp ]^5娫tvHN#HP@]$ թ @ d[erۢ8F#~URc񉢇'FJ?cRBQ 4HKr[L\2V hHvqe_pN *ݑ$p@Yf ,*ec_GGO1"9VKC$hRg+$٬kRzk}Loz,{Uahxκ0_L3FL# [X81a{Lw9DˇPGK#u o/L?)Bb: cp4}0̢ߢLLnΖ G(X4VfϿAsws%2_n"'Cԇ2'WR!՗a}F{,b]]Л ko5뗊H 3*CLNǓWBNƠ5?hfE"' ߲?Pٵ/}'Paz]ZtMƚ"0MDDN3$llblh<3zWSBW_w3Τ :JBp˵oBb*/b9 _x0D2 6 :iI+v.Ėzv[s!W[r8LhN~bG0ླOM [{'"&mmE URJyP7J0U/?lѝB3rQ&^T o0+ ٰ&4gw ($ AXDAVSP\ߊT$0>}=Z0gWZx>p>Pn HX?)+ L{*GJ{G)+וVEKfЬ6Νޓf+@kAiZtHm٩(_ArzJ?TV-YحJ3;pC-1*{8~W72ބ*6I4n R4)Gv_&t}rfga_~` G:ȣB dϥ(͍zE&dR8bEi։82´fu饥o7>38ϓ9 (Z'<PYlEL¾bt[7Q`5<-+l[o_#Kx7E;`)w1GD[I@4Zu)-n]ZA{+iYHŪ, D,~I,fe7!(FYs|gur}!+,?qd _;*"}l{N}K+[b-fԆ.{u @ cԟdi5+m[`e-<7QݾHssVF ftqfwx=ѝkzU.d(Aq>@#BqIz%\dw!:l!\,δ.%X1y-B"R;^b$EQ}at,Q=?cpW5eb䟭N\@" ёkR'nkE$XY31ls1_]s)1HzAoN}{e[vN1pzNja7vH}~G) ӔC4xnꚅe<aV}j\ 0_4 1?=(PdZ[ t=gtZ F\&%7SU>* ~nĦZicI(!NRp$XGռ,A ,US1FVM cթ|l\thsNJn]Ͱ9n u*$p1 KsҡoϞWĦ1vf4: edmoP0Xr_k% \m.n%5r#. - N.!׿m14v\ swtͣ36{ wH ʓ ӍI|PZx_JG} !EQymu6߷>P+fQ5!m5J]R<3._M[A5/Jܘ4c:D: ~G΅;P§ijtu3af>B˨W@Se7Zd.۝抜uu;IvAr<YGX"ېؘQi:02OƞcW1z/ ].1 %,u56nZ㾰0WLmx?WP#9,0O> |8`ZA񿬚{ëʀX{$F9WhqFQ``LaN\8qg˕IRpc!^DvVW2 y2k_G| 5 FOy(Bì(4G&wʯxX53"Tnَ$ )x4fstBf*^\ 4~&,i6` [hr\b2 KaP9Fy%хO V!-2݉q m!B?fdF5pYOԒW?.V⅍Ob'8;[. tz k104! su}'Nb$&i=ۚW|~1zJ"xQN\SOoƁQ$M,NX^:84poaeR_y +M!/c`f;+}Fj=%櫂h!VL=`#R4@f'F,{7A`{:.!\cl.`*bh&=d :l@G;=c!<O>߁T+"=Ly5@B\GLUp2+)"n^+C"Θ? SW=-bꁯ ,2_:£*pҲ$OFp'@iݚkRtU_%E݋Q곌+_׺Q8P .x# wBaOL5yА~3ftt$X[@j[4|%@ڮQ֧!n'ݙχ,1ޭeÐ ?,Odg TN`.v:Õ+BRrK1_tVNjʎgWUA:m8BEٖX$lדo`g,Le}6 Vnʰ**{] ?ŷ )n0p;# ;z7HFaAKbCngދ78G ŏTbt*qAbbsROHuNC9o0iPz{/J炜AjlFNYRiͳ`+!г k"t.Giv`"dK}p]:G[3ӇC?Z f#GbV=`lNHË-xEvKR&AΘk>O#%L]?"gLuW?|j`FBX=UCB!ArP1Pbl '8WеWۛ_7{o&9M8V8fd!Ƥ0:u0qmK==UK[Scs!a7]j8>'IqhwڰFKϷԷ*B)t7\`TYXrmо뷶:n/o2pVO2Mmn74ݙ#n59BkI9oqژt X A3]B38I4Zja\=fb A:.X=!Yz#{6MGgzJ%aC}&IʁÚK%EJv QJ2)@/=:mtchnjՊ $Řdžȝ3dUā[sz$%!fj( 6]E Y Y[]1FXÏ2tZ-дX@+C+wyQ %I980cd ވ.E9Fn0mg&ٶ.RsLrIsN,^Wd6kKF[^F&ل/2Лa7![;EDK :%>H@(Q(3;[㧪9䎡Kφ6 m1Ͳ0xq`w>yRasYH$^|^ _ *BۯnW,yKHn8:g:tb"KRWŶt|y.u3b\%z OWt1Wc)Ǜ!VH%!s+r}+\b{r"uOAtIG"h\laTԾ9C56]SlKRr*Cqf+G&Þa†M)FbӤ?`4)$E/z Lȡuc?V ɜ͌d3@]k>o# 4/ӛbY64#N//=6*VEb~9Er kYEpN,4 vZ#Ü P ATP=_&[ ,)(YvuBU&Q4l6~)f0="IY0Ū3 oNt0NwضTU\;nK@1sQ_+H^U:]?4!#ڲ iug;ieJ67hW$1jgkNagkTO篐O!o-5PF;)2T}[TxӪf02 ؠP"P~*?~ny[pKQ^$쐲k&S3x/ F@?+K4<2AH ~Ri_:ERA$VyR[>~h$ⶲ~[dohEn4,R2hfwj.Xg*Dbp_sO0J<.[6K5K^c1fD)+jcWZ|c>*ǍP[B&8AǻniJ]ys}&cu+[p nh٘/EW@j*cPjƎ ڏf[Mu1^I^/ΘMOzW*P @9h8qfk}W̺z٠!7瑬O N9H9F^j_U}ӯN+4g+)ltFp9` -]+V cޡ8"2h®Eb~/s[:yt͍ƪ6- 6* p)nŰO׸߰%Y5xV:H 蹹MUϵa5+:&p~F) j1E8gЏIߙ]DZ3%F)A``TF P YVUⶹt! P0{SzW~ً'm_ŘO-HZ ׮ۥ9RcGLT|\GA{|IOg2s@KְlI{CehCVg>+5#W>(QqxJcS3mpau^+0+w#/g)B< c⠳ܣm bOssSTt*Nr4<W|ݵDn͌P49b=d.̥2B}33hMH~aiSjD-'toV ^|0̱ʯgG0Q$Ƶ8l߾PD6:7iJÿ}G/3E]Z}a5PG!07?uag¾$8Hw2 ߴ1 4ޡF#9-+f. 5-^OΫu𤅛x.K!Ǐ)_/hCҙxxAA!ɘ+C+5E::9o+/ODشI t9nݦU-G.A vAI?DY>;Hu;݆:)-A DԢ> sHAv@ݙb]{ |+D+s%JbTt,۬c yX.u1ާE~^u \2wHA@R4_+~X oqMz#m7*EUJG#i˶KsrΞ&}Yۙ0sCAܥ.xʟ& ǢCVjJ,J찅HucƝ@Jr8OIY>e>?K|\wٶ %#HG5@Q&z/Z'|(`꺗{Ĉ(u !)07zuky8iSd8 P2hZ-&pt\`aOC:"(U=sfmS,9 S-_zr}U#RT&AS?y?7Gޚa+m]WhPv퓉p0b砾$D#|tŮI=ݩ`ZT.V\}T>6^67>Erp~޼X2"U&әNad bQ2c}’7C5]2)_AMw ؓuwkhNOT fG>7TM4p5 p!N԰8-90k !O㷊^}ˡL!]:3F^|~q VK]iˉ^E[[.*%b;a#c|7H)bili<dM d˿{-.i8>jAE_U@_k]@b0sM;:gxI "Q+ F6:vwi+vbFA吱 a G=3{uxo/jkDj׫Li}c8/ATLf-[};x&A{d4@XB$*jhR_ol񳩯{FÓ-?3!@o?bsޕ^Z4 륤9㞏yZcx+Ғl#&8^| t2t  }~\oqVr"]r-];ccZ^X^o!b2 S%Z{AܨڵL+yGMaVY's~ngj"FǬ6SLMVsIzW~od'SW)Y2B@ [}{K@nO-kB+!4dޖ1s]4̽P+Ȯ=t)-:snt4md=ï / s=+`xO3]>[<$4//qYu^ǟ[G,шc!究^xDߧ!ngtԵo6&W[/J_sb<Dɋowwm@)gG;j,,Y Ws c$`&Ҳ f8U3k]yy<LD1"5ӗ/3pl>FӤ:`rهjiKta+WeBo&DժQ .y! {wyx1$-լ`$Ή"yl1iwSo(E yM}~bR}IR$'n)NX,\yӪۯz>/SFGwQ)|xn9pIEAme(&*,kS4y7[걭hP.|j vSae M'#FN;"_ڭ.uKpʕBx< C9`Y {J8k,u&h$*s*$ܩ3.Jppi a'7 R1,{3pRiLG[+,M8>y'Uw#Cq/S',R?0b-%gi4ܙ(|xYfDllͽ k`hErgΑا.EPD{0];EW6 :$U'UK^Bvt,œw~'k=v&:x"g`]f&EuO؝S$D6͓fюyT~W@'oy1~њ'X!MVTj(*d=[1rcY>@B5VDhuk͠Pv\M–j ZM !ER~l-TI6ʄ@vEx&J쮦ʀv(%"_ԫ[ptGXSX80^|)6ʆu5Cq$QNv \b'znۈ|P­C4N[@ub†8T[Bل%8G8ĩr5Alq<mVWrkGԨZ"'2U@{rV=߶*lXC.?uW@REn?u+>tps!sk@I^/.D = ;2*qkg}%S+{q8:;=Dαw` X62xiXRBKME)DBN6ArK!,InqTp>V3L8=9|7 ڳ:Vif#*wZ8&YٲWLaP@I<@}& ***8k:qpP= ?*]P?9}Dc,.4/KPO&v!].ϴpl!R+]zgZ'n̹P&$äպD8[]e`@\w1<(~l!Oq厭O>\”ƳPU܃zP2sK(ý'M}Ϭ1}c=NoZbc;B;N>4`}pHj|~);6HLplMb#_vdҺ~N+[(ZC6;;Gy&V 'k޲~`괋I6N1U[Uc ~TL.*w0vf^dhy5s.͵qA7QO2-.śe0;"C2bT$SwAgb5x`u8E|`;e5"q)&6D:ތf.6T1yȐ!%|h^]n]Ǐhcy;/6HI#KANs1Ldo6tG~9rޢ[8wZs r ӵUu J'5ek37-vΛaR8mpmU:Xa8:KkwS3kO|Wzж e@ǍU5* :^X}yZ .E)..~w@\-ם k$#ŎffaM`ִŔ+qn{6$HQNo<3Cض9x#@S8IXРYn{lqል69L .ױ*EjÿjH=XKݝ C*m8,?cqPobծ)< g,ɽbMKZmIz}J RzT*Er*/o9u8V]cL㾮w.0.l?KchzLvDPf3N+b 4r=IE;$|\A|ǂ:RF$r#ÉZaFOر%OΨ1wu=!Yˍh PK_@I. :m#0Z H3*b*UžWLc}r)Q $x,o 7Z)YGg|ZPZFoK^*9[fCvwӞ brmc}@ស#aۤoM]z QV$rg~j/8AA1N}{NJ4]%+/}IKE.KIXl:5t+̄\{EypT"읏ۜ*BgqJuAOdO8y>;ĮCSә?vIG;X>S7IJQ"Q ((5oנ<+:y‚N)MOL G >- iAB;"(uɜ[d=wKZRP{Pj_̋@ {\a T %졁 ތ3-;w fY){mxtgjbx#kijV$Wh}GB!c!9 ۰Dl9+TxKX꺝pњ* ̡ȸ;N *f4ќݣ8H1]L^DD\^#ilyX_E1 -q2;(7 hHpJuQ7,a/3#j(I9ueNcϏIm1D2BkqL{mR l(kiLBoY[ƺ )llÌWsK|ZZe!yd[*M{.d]=ہ>pO ՁBA˩ @py_}-M(%UMI%q(Zp#IRQV. `55ޔ&/sD[ȉKZ̻Y!&VFzt~&ī_'Ꝗ) yB+T~mΖ6K*߳c 6p>7plzS4 #4ywSlpɪ n)|gW,R*jnG9# bL=*&Qj߭]&Gl<.x7.{!ĻDdsV!P&cK/r5zjicLTA^DL *j+>ur^N>'yhO  /Yk_|/ fG?pYrVL@!;FډXqW[R"AF/(kE`@x@ݐ. !yTA6/en I)Om8*!gv0?"Fkw][~m')" K1lejcL`oJJ١F}O$r,-(3 /`+/k:Fw~yu!u} ̴ٓ=Z ZɊ`uk2eh=OhJ*҇g` zшΪ| c*]L64J8,c"ƤQO'b<}ep ")tKT.ާG?_bF0Z:]˔![9/eX_?aӅ.(Gd@Qsm?2e AԒ\csBKVHpnd7k /7AdN ]<0=t#r@}v'c}N bCr};{ܡӬYk(|t_(37'*y>`Jh2&ŕ^2]•=^-ӊ(&˔ל `۷"BVyU0@?6Z°n\ZIxf>$( Zxo7oQ {*dW\+û+ho8lj_z$E3O:gbAiXC(Rń$Vgj)C#?T!qRINt9dPaR^X JC]gײR $wTR)/3zx$$HHzo@ 6DZCgnJңw# 6>΄eqӛN\L!Ж:I>m±D{p]@= e=P,Sc#VR?ggMhdP%=5 ]}^kf}¢`0M"ƿYx5c8Zҋ-T?xLpB{PwRkDt+8hH 3>ߺH5}IgϪz-D/:$Ѡ- mJԍr`[)2##Pݑ(3*yMՕlǎrFTG”'?6r!{@:Su1鿇:`S ea$%`GY@ڐfg"oӺh[Og(5sZeuv x^D,=-0I?J-2sOϻ3ݻ ](ӏz3 쑃/a?PXtZY /VT +ef) L6z8w5eZmWw[ ` . PpxGRs ;()+@@ 17&nWTPemDqh!E]& 4 VRӨX(M K. z J~χG7ʷۻ[Qnu%4S ʂ>>G[z{MK$8N[=캦Sw?Mիít2ML(}=[M*S>`e4W7dg C>\r[X!q=CGNǬ ڞ$TF\<׽dFUZS9* b<3.l!&Q"YJ`fD4-]`mU'h&.Ϗp! Ge$J` wvlՇ)jcڶЌƘȻlo,;<%E?Tjǁ B{'Ht4 ~/e?ե' 1K\ES =a ;XeWZ'kGNom$C6ࠅ₿bzkSo O,U h e/XXtT)մ}c;" dJfoMrɤFWq<>A=} %rNy Pbm 50<6ti9+.E%~o:W$9V`yEwF~)oFw(8,Hx9\wc: -_G"S3Ȫ8J2(;s?zS說w5W۪-yn7Ú( fz<̯# +.ԐQL/ Eha羸 />9.쏬WkM_;\Dgi)#NQv68HRչ0Aav7&HG+č ZD1s5OkޑTxjX3nVk4xL]2PV崱Ae )Y%UكƩթY:Qd %M=c]K_@@.J Sد0u5 1JRܾAc =|lFg*1KĞ6%ar3Ϯ{1cX\oAp~>\\fQ"$gvDHr4-+sd{ %S'[=x*1gvق0q#QihWOY3yKUE= MD ; Jwk ܎D?xz2^ VSjG_{sm~!l5@iz1OIr`c[wStX9e$3+(" ͂AR"*-htU &~Ƀ((#}(A ~gk]Pٌ7 Lwr ғgwT/c`S|3y/W lw{N*XK >^ȶP2dJnۡm?óZhURp@&F΢jhR;v?'1ź%x+ ^q%œO|BKf*n 8瑀jkS[r` J@iw_N[Ukz?-zjRR45i#$r΋Vg!Ga8I?J#oMȺU- D\4Z?|3Tsz 7M4c)񠋦=֦H@{!j4N^) q^tzVHxjG2C$r R:u'ޝS0Ԑj%GtpyR\U љ5튏*m`ԉ[Yz- v&3n`PZ^U )7vXt7/ oԐ+|SLqVBs0S pM1@'vFAeF{ 3bm&ngrϻeBSL}^FG{Yh/ُ @膧^z]0 ([*gJ8>{.ܛJT`)]0~L4{Q)t|+H%8#A`cxmu8O*bʚ#})?{N  IenOu`R$aMՎkK}mjD7ΰlr,FP&dC*>/Η4 5KdDx=e#83 { )5 1Sq7˹ 3hptzƈ\7RC 3:u=Qb|=n7# ZXD OJ9[D,m,_:7r@ jwH2K{O$x-"ѝ* @d|:edܭAד"_ ̗0XkӷE*0>Wm.S"jqn R]sz':p]L<*@ߟ{ e7UiYUŢ-V܉bBS` srL݁]Fwf &Y( r;2y3WR)X1`FfAv[ jP|&T'hB^V)f1 A,> C^pZUXq`οii2;"mo~]5i6$> 61 /ߍ,GDp)2pV wk7?oV->"9' ;ˏGs0bxkwTho&:l4 "{\:o-~R~"P7}DISaU64!4 7x3[Q"ҽ*Oo)<_RY&HW^4+/ }{z%$eR%TeKI& x[ =%gCyu{}Nҏy1h`3x{b^v豁BM8|vG㛸'.`޻_[6މ<\<0t_?\߁;i,uؚdt oSM!z]|Jƚb69鰻s;acKAEfH[z2&V4ƥhdJGTb<};'Σ!!b\K~@p)fenpe[9:'،=6[+voM1@2\b R0`sjmx˨.7G>v#/nоѤs\tJ~b+Մ,ʌ_0j}.d ҫ4V03 ҷ3y̎Y7r~䉅8~l|V5(mNjެnW Cyȕ|dW-ZSP27zWA4ƭT+05痊&eƌwܲ`Uc`j^1@mw9G/3 7ۙ]NA~mtd>JVE80;Y*)y9'zƐ%(qX^<ѓe_vi ,ZΘy3HOs2Bsةw1h̉`j$v9(Y^K%-Q4w O2/|A So]Hzaf# .bU!T8åif߳UAζYť]:֜k(3`zg3":4XDC]=c%Mfjm_Շk钹bn/=E!F`qsXD`.AJyXY8ٌ< 4R KZ2h^mװv)OJ0UI =`hϿ^yXtB],Xg)Q(*Kߦ((YP;G^_4_MmIW6i ]8N?ŚAtJ#G5iUJk߶sQ>>} ׋&|\ҝWH +$H\qy9O;` uQIf= pK{ ֪h9W(K1"7%eE0eEJ+H9Na7$ | c,RPE)/Ffwe+`+-7dʓsEz %Eُp27}k+}S9µx 46Ł'oNL!Jpw5U„ YSPձ'B+5 1]㎽F]^/ʼx6C|Қsz{/AO"8s00C͵d'bs>57N*x/tHC;D8ݣ3RHLů!$qo!^?;h F: %rW#XtIN'c<#qNUs\S kAW:#MֱOâxY:B: %_Vsid}` Ȧ%s2ÓΠ_壖e5a"4FDp:rH5lӼ-oEJN 4Aͩba"+zbDr`h8 ~_K/GZ`%N88_Ae?AP@1_u*bNK|Kܧ}v4$۬%wrAȐZ7Hz%. bĜyGTLT5Ĥz+>Ŗ}zuxOLɋR ƻR[xlwFA1 z$TY*le>EdTm.mAF로K9hq,`'=6n<l¥DiW)$0"\Ð1![)CD|qО$rC[k\ yvBmz`>)/.Ђff/Gj |aXXH`B R,Oɝr64o1ZBTιVTƠ2&2X|i0JEWUwFέ5hkcb`vc)u=%Dm2AJϴIv+ɐgpL-cn|sbl#,z+ s$Z?鴜OaA"=YP::l'I w֣CЩ5i؎cKAsv fDm)>8N) RwӘۉċT0zb+q,nhzΖ즧Hr:μMLưIJȩX09/[/Ow=t&V*b|)=(M/ o^0CPu$8BS@u(߮n⯌4XFrXaƖ @#$q&5FUSQv!I)6{-FGǽ!z&5օG@d>oA22 s}87#@P;&ax:oV#bsZCO3? TPYGO.%CY"H]9(I pqAi<'~QHC-wᙛNsiY%R:-Fb*#Oᴲ7h\49̏Hb{{NCf$=ø$oA!`Z~F;j$9;z+Ui9&ʂ o~X\5om܍Jj?fe+AD'VA,mq~ #(ZA4omHNłqT$j ɶEjs8=źT>Ȝ@ڻ߆ +[].l.ۓy~Y?jKYwwpje˻ۍsh̫9W}?w q(1t!nD?rHy C*"\õUs#^K j3% ;tl (O5dm:;ro 9]:basͅ / eb vma%jjzt4tdmRyp:)YD!E6dsvO*(aEfj:{s]R}wf>шR7`(5oJsV8bWvms(~ڕCSnJFR*)۠y _s|lJM<X>ADIq֫>ER- Vx,#|l4Ro5xm+wHR1OLSanדi 9- DkVKeYپLwk(.WJEfڴ`s %!GQEk3Bp-4MS: a!asKMBWei}<=-p- Bˏ -~w{ rV).U#>%͝[)V1*jA iYv#c,ͽ|=o}wZ4V 76XVyBHq0ɱBMjwJU턞_5ұn]|N|'ȃT.bQkk m5c5x@PM0$X4uiD.}Ƃ^m\x]peERb^tx qVUxxo #jK(6F_Zhͧ$ɼh-3 _/Ӳ7j!9NOmнC\6B&!NcjMUrt ) :2!U2uVkG(v:$56לnO> )ꖙ%8txpJ"0-Wl@d`⟫k@6;?du=eL+_H(;RW{ÈsLLc-t>L_/,RfEm >uJW'kDՐ"GHMS<98U0n?%$SL]QbQ_{`Tq:Afo>pPhw,cn2p!\pb_yG[( 1@8,G?{i|ь. T(KQHT;C '"8+U1$u :́\S 189+/!?Dc13|WE^U Vu6q@8)*pia>wS";Ll}⟬zުm_Z"$[0W@յ xrպz=Rl9OrrmwBƣ3j6˾63=}D:pԞ2f CO2r0!C7֌7X/1u4qͩ›pʦwwtcXRd`ZE9{D_ۺVA O=Eհ*m+'P>*38iɀg*Y .F D;`vKϪB:EFi0Hm#dbGf0Hʼsiٌ*WbA\ %b jT5w{⋋h}b,f]\\i-dkpoP7,,˥`+*42yڻ ʜm84^P <\T i'Jq*(ְh1xt wvV @yRO}*[Xiu#qC"{5q>/S-AdnmE`7œ q%VMlt`K` ̖BpV ~"3F;l=چx*/Ǻ4"nc5w7jYWZL>s}t$ws:dO RD `|.|(R7c⷏HLeFК=^@VR8thYɤ׉̙%*8w\F"*@.aQqkmǫ+xu6ޱDRd7'(4R@̞Ŗu&NvlG(,EF{ggOFT[KFw~kk>MWsv*Iۼc]˦Ǵu&K&oP_oo`AqЈ Q$@#_7 Y֯w;s!ȋ:Y'_9({]Rl=`Ubӏ mzˈ:rJ ;:BWLtl|ג(LF!^Ϙ9]myGʢyexi}`!;8"M|:-A d }1lӅMZVD?kGFC늘tM&Whv~\i@P=1FPG=GKcL&*\+{t{M)v|$}-A< ~ZT!ڝϳKs{O a_Oё> ׫F.J`.pi'p-˛᪢_N)h,toX !ػG@ Ӣ_$Kf>$eRu Rv~ܑ ڔWY3Kuuj1:"\92 fKbM^]-R\d)tT4SF{N̬2y,Zm8Tmsv(6:cI-x7'\HKw<{3i3f? GsME33RIS`b?Y(P)Zp`'4? 1y!~+3.vľp Sf7caŗ~Vx$lC)u>#FJNg*dk̬~ۋ(5ǗF_Bl1 :\+ gJw`cex,gN3pH)?ZL~nmߖU-^3$QY'BI:B'e)_k Rfg ݐ#޵GEk2vϲ7+GrSo; [`K9K*h1xPd(2,`Q60q1\tK&p'7YƹI/W[gZԳ^=I:"9C"r7!,t*̇M V1TPBY[pd/1Oy7m"Wqmu[;T_ zA;҅S;/k|E3Wo t9•GyRw:M8Z)=b+[[4| -{r#N\\? țqME}5 J-q'P*7 Yw _r d|vaW7c<#{4ౠI&"+%C)&L(mפϻ=Pj5,)5_7AQ#/сǽZj`I/׺A^YO'5ldǒw;y-581&>qM(!8O]8e7H(S&b 9`2J8@p?_MX&}J .$q+O5JY@pc"O.-`5AD/]mqH/ )6.75ͳmp+'e]"Z[يgk 휃Xm IK[@;Mw3=vzt2 QR"M =]W%salVG#zɘ$A~2J5V6#"ޔwJq+K] 7PR6N5U5J{dUI]Jj9ҮN(i1CoEkt̿jAH${}fOσq\Y-%iuAмJFUB.")G`;[UGw/yWjt=hL&Yj%i1ɧjt#m<3َp"RMVSZhYgЯoAAa*H]h~|:h6Vĥ_S+|sVg=`C{n>!U*,3)`uh 4aswD7UҏE,&슴V:zwV͞nds <.QGM^Xϵ a5韁$ey< eII1'g֩Ǧtmj [od;A 'PɊA}y6?t |= 5O rnZMG,}`!KQkҙC3c/~ދFA<=Pߦ66c{ QK1wlK[ _9 Ӗ0pΧx4{W_N]6rU!ҔxSL* +AH֕#(;X6$?^>k=[yPM1؊m^QiN?Ro=biybx~ F H-ldD\kex0]9n=ýQ⺪+_z@RtDc!H7Cܤlxm mQdj*`0:`Ư7RdBlt<~H Ik .R(~)#491?x ,#vz?3gX. 9*Ox+#ۚLIJ-_ǤGa#w\GnxVLY!c-3$J.`,(ԑY + f.N>u:ӢCV58w)y`@9YrHKńR5\%RaU*D|`K4a?p4p_콠J edPԉ^zormt{mZC10j bCX`͑[ Mzdfab !+0 dq>KɴAW*, )Ԅ߈ȤHJ/KTգąAh]H} [1ATeChlTNU1f,j)TbᯒzCL6d@֢_Rzp(6b;KuI[N8:nŻχIt[L$r){e΅P+wxa7BRq 2t>G l3Du~LfX˗Ȓ[Z ͇8hHt,{<:@'q`xĽ}A֦%Y(#"z: \?8JIy XpDv[ 4edХ)y`O4*.XL#2dyyΝ=x,TK"qs+K)ΰ(HHWcgL 󟓃슙GF<:o6'wS _qi*t<>Qgly7 619>s ];hnvÖӌ }):!bk!$|uYVI4q suڨ šah5q)T?(h)yisʹ7,C*4'w,]bр3õ"g;.vE0mۗIXsNr!#_P }]aktLt4,{\F hQGŝ(;o|ZyM$8mA\}VPiږIQt|hچjV:G_ΛzK_6L@Tm;ḪϛW*W4ᘴk9ΑJtxtg\SF"_4qJf 59Gyς4LX!leK@o}Y3ŒteMnd)ʒ$i5@RQIqe%;WzX2hԬ oY*.:^V[Zζ-ږxvV?`f@lk'tT-϶b{I9+8bGz>吤)Y*t:*qtY.ٲ.>pzP%P] >pj rm G("9yX,iBEawT٤D! l0؃ўÐ3*Q2l5wTL4T7Wz];Y3XYXJ~!fWn[Yn~ŗIkp͛Ҙ$w^8M3Բ`1<%H.jZMɚgM'ImaU5h>T/!`U]${+;ZprAHoVM^)0<2K9H~x k]/UޕYC7wƒcp}PKi̳9D'Gc!D2PdC9 "ۣM>s6Ev\ Yސ^ [UZ 1Ulf ߩits -"d|6]>ya+fmY[NfCՂԝ\h觘IV-Y_kfa)8 ).t`='EC7e'C'x>8k;G QC]_Ky BN9( ΗךI'XGu D[ ͅ)_"-e|NT:lL`B쫶sS(j\phk=Wj$'Dtʉ`RևHEj[3e-BqDanqPѝ. ,2՝(i7^:gp"ir(Ԫ~G -Jp?*;I%|*HPqjI܌ї7J̃9S\%gܨE]&NK+3I-6J "[5QM9D ȭ"X Kjt+c@g[QQP iZP"3-c#~S\ot2.RyR}_'hv7ˤZ4xԑa܎N״!)A?]@.j2^]+pA_Hx [&XDpa^ }s+IP0tOMbA̩3'ЫMN X>gJ7LXJߋzv}8! y;iһx^;Ce+ ` OEݺbTCQH@D*7@w_?]1Xf-^oBsqLVҾ ~^s TOP]m3,SwsΡ 7p 8pل'ֲT6i idutq:/x?[}<{ ~YG6XEY`Jf:I!qax  qǐ}nwidX?FlmLkHgrԇLu Ѻ/\e ~F4!1v&7x;h_lq{.Ӧ .O'΢_[ Qm߀ȬHMK@?T S??Zd9x~iO%#{*BSfFUXS%NP 3nr+{cς>~j7W ofWKQN/yߡ7Ξg' !z'iR&2(;c6jdGc3 =*w1JY?ښV7iI$iܶJ( &Fc~ wl;IGi9al<pa^a Ut\2#"FHs.ڿӧ'm?EU5L[㘘&z@,bEAAM l~e2s'$a֫G<}Stw]RGX'Q#٫%?Z}w&../ѐQ3jqWKꇸ8{A)մ]ebwZq~m%SvL78yq50dCvFz0&&v.Fh#Μ5փZJłKVsJYA1s zx> -q1ŰVtRڊdOs~@hO, ^R! y ΫO&kZM{MM +=?#F8ep{kǞ\wHh|>cU_Sh1?F/DI);T_ϡb6& `"k:e&n9eZXRxYm>@Ad잚r:cVHܦ_!ÞGħ*MggvwN%N>)gtQ]kl<Itz۔x?=Rѹ`hsmƷ(Cc CR,T9^lyjwG GJ!~Lh _x{xN4_WT~#qA-F*D MYsdop#<M"ւըQ{*_YˁQ,ʣ$l(XGO80 " צ4`} h䩊lRaY-SD倲!+lcgL,7kbW&[_-'8w5 v'k)-Z[0Nɾ{"wAQMAKF\BzzXV1wU"Cv8W‡{b'o1%g-4"F]O;úՑ쐛&zaԋڳr[HX MK=؞ % 1jE BVVwmȶNWǩ9}Զ7/\ $٭4+4eюij4o"?G[xq,7仟ex߷PyŬ_T|գ/wzV +>|ix#Q* n%iH=A씧l9jW](,)C?F~|{J9 enW52F,jtMtu$Q;%:6 1Kglkk+`Xxu w7nGOHϓC)&G/$M5Kgq֨+Lo{ >_, ;9(Y OB},5*@KO6ӷ_+.& _RpkU%yA s\t-XV w|$cbwH*dG{qgcjsn]7qIڛ߲GWj8Ӝo~"jt T>J~ʖk*M7u@}5|j@l\>U S򎞏dHSt4'CWHGMf$` -! 9cZDs{$ʀj~&xz] ,K݌Ds %!['[ B1G:pׅpd5sunn^@uHTaE<:[[2!DVr rh#jKL'P g ACA)~*mN#tK){CXFàlt^] ЏnJ r2?5 Lpw2m!;⊆N>nUZk. .Ҵmvyei47 FUg%_柙\ 8x)ޑs5E8  nd$ i sZ1#thq]0n2v7xp xBfAx07P'pe!lty >3AY5!)ң \T%Lp"ɗX29R%g nO0hP)2(Cd(\ufbBĺ ת+aO9rg+ Ss|QcdBE s5X2ak݀r7+;[O`7/Sjhp('Qnؖn R n.&{v%e]u~'Nx7+RdͧVcHm&T80v4NWgl+Vag8Yix"Ht+\e<:eĞJ >z ;e'%hv_lؽDuu]AC$4YN2dE?-Ir!ţP|.*[rroP/J2֦i/%ݥbT ɬ5\yk74֪}:5boH 2][D z.mtk'7CnmzOH/S ;6R B_!่(o{HS%7Yt } 85hh*ƴM?8eSnxj_xv:m&E1HQx^}X:8|Y15k?rWё4 Pc* #c@Re 콸[hg=_]ƱT6_{6t I'ftT""3؀{h,C0b7y JsBȔC.I=*" ԴûYs564F 1YɌ]a3dx*qbM쮞 pQ1tp{ D[ɭ =[+˞|J~H7/`ስE vw='`Oj<OV~2ÑJJo-cPV 7[~Tq2P"b^]7 ,_ר`%zAՉCR850~PaB2T(SFN Ots^ش.Z4kYjm)DU|L0E{6l9Rn"B=:gQ7 'Z c3s g. _)m1e6w~"%l4 xQ~@miU8vfrVlR)*}Q0yE-?2m܈Qϖ%tXP=rwfp(2Rqxm3{/[ék+ٔ;ZZx۰"+DDkeHkUFg(:wFϽ^(Mx a.jCPi4]XW`<Sa?(*'>Pr+?XY . VxWhpwMKPOƝT+@)gR)thf =8s8<.W4 j7OX|YM JD;Q0[Up盬dFI-R4ж헟*<N?6Qp:ZV4/,LuAUP&~<߸))28}ԏ2<)5`JCUޖL~6η܎?UeRJ 6_B甧 e/j&@D{݄c[KF4XZH`{w'&X'~ּi0'udh7nIV bWk*_>!+;vNDH\"T) /Qh~竘K{LJIL*_dL&oDOhsZ.o)-Sڲ\ _X]ҔIwkЕ ([9:ǘ9]Xf9aeU YO(S$j^-Kown\8O]kL1CHUh$,uFIݰ#j߹ 4|#sXaPD=}c0|MG|WPj0I.Ybf2D} k3ךxo#@An#ȜdiT!/s>tI72)ңG .ePKurm®dNa_yM]yqg1aOX蟝b/},pqU_‘Lw.ϡ·ZQ٢ .m>x{m8 *ZgxRUM@A+VLsCՄ|kB>rXQ8%¸.M*0%z% ab_n>`H+2s17tMc&>'kFf-3dݭy G6VyG!ˆc}wP?e]K&u[A.b "oڬAoW6@߷~D<;oP犦{s'r\kKm1\v0wTeXYle߉i (/&v)CtY9#Rg,|_v?!邢e{axC}`~!< @osc29d.ޞc[߹EG̘v%O&vKLt"Ō;Qy%$CٿC0G\=[QĬ&mH&vtZq|)m?̑P36O[;K QኹQ w 2Mv8C[y%;o﹝JxQ6|p⬃ O=W uC*.70ce;:RtMrm^P +Kƨģ{5!=Jq_(CܶPIDp873Y,V -dvj&IӔD>7ɇZMpVn)~AAy7qjP#H%x'pHbhs8q$FάpёB+g F.n2"Dĥ$ RJRJqAL @WO1Q<Z7+Ք8=n#t!IjV(A 7 c3ď6#i[Gߜ4fX6jU~S,4 !pjEN"{ 5_Q] uة^ XA@ ]~nJy4n!.3VΪ!mj<5.̲0v9+.egLPf3-npVcCLPiTs`v+\[.E)f\XZs#;X}?i?îz\Z'nYup;^_kMѮMq!+pSNFWbc:-fܗxМ1[N-% .ُt{TSɟkM^ZM QË9$$~ܐ6.]O/$vY?gmu}`_僻 !dSxSMPYLg Y0~ۍ!kO ƈv:\YEiG/>EP#":%7YB[YN0mjOsֿ{TF>b&^Mëz oEۇ@ש̲Ϣ,4 Z'8ӫs'_Dm/F;4^Ej N9:+ @)dhgnbE_;(=_n-5FN0c9KV62*ty6 )Ti7\1rNLMzJRGMJ!}KG_lKAZ_ř+G{i[U"qX+{o4}OWĐNi߿rEzvu,U EA (sv}6hŵALK(yz"[F+ Fփ4i)'q: @g)2{]8[U﨣q8K׃6Od Vyٶ]\^,5FJjX(jN]N9u5 R2Ȝ O`zhˊ{'J%֑w"~IP?ӫq<}ܓG8htĄ̳0,Q4G*h6lpngm~)c7eCwPިR8"zyTx蔕iIՙK^J_p/ՑͲP&Q7L:Z2(in7jL:θ' žЏQv"a+KϫsWTnTµC̐է.COw@e ;rzEU2;:p#z.wBlN hNs @9G"yvu>]g|.h|^ BԎ(fg_EC)"7=?]?vebPhHhga_CxT{!0uؕ#',S O~b.GV HF-s:熢C8ZmCw 8qGTq퀶)GY:.V\_pBG-.}]x557ڃh:C6-'|TqʍmWz ׊g~Hi訵fŒ43kY;f0U~g' oJF8УcwJ"nlOrfB Y^/6bmF]ut>pW@bZt\^B X!:6l0]W|[%ƚ{ί)a譧0ƭLW];jF}I{*8zp  sb]SieZxQ(m0\Kf\‡AL5ȇ p筛q+^qZ1jYc[d HMhw^=6=1^&@/\[9"W9A'\j@[ P^]H& xQs86\v{f*Eԯrb|G EOآ_6 "ǯ{&fv;pF6jʝ ۺ'%ru W`/a/hM\fs Kg41 Zya4$\alTVK߃]3 VgsQ~6ؤW'vvB%ص-#W xƭyBUtApj (Y)^ݏel*pn5_.6 Z1Ǚ`Q/>]#~ b>[c"s#e=&ZX^дPe蟜A[:j2o"PD7 t>Ǧ')sZ֕%6FSU@>(7eeiU4|e]oAj+~cxh"amsq]^25[ d("1޿0P)2B;H|>g/]5G`* MMEC/%[zr7腎Xޮ=8={=e~[E5! pXUV@ߞd&z 7m[]]"<Ӵ1ea'@ %$+~8~I3D$wK[j0(]熔 J^/lLw"kبuha~hZ/U1UTrM߼G ~1-34=\tvnna4?jp%SAm#yMD4Im mre/Lc CjfB r#w,"&h07]Bۉ\*8;B : ]Y[ Ȱ s:kPR}hQ8 Ovpa=%faڒ)[H?t:d;B-I_koӈ˂&64><$~1Iw;%T0zZ+[eP6`zwy V3$](X>DbZ߮kYO,d/pP8Է:E ("v+%?] n.N+TS$fbO~zTD/C8uL3Fkk$L;.@ V@,PTr%&DjXAd^M⪽,&dJICQЙ'9TB .ulHarun؄ng"{Vӆ Dh]o[5j榀!FN<C?:V2U'L@kYހ\df=tJ8)1V_tҸW} 7D6s J. !n"hkpGHuܣ2je,>I\Ǔ4[3SӞ-*NlV$]fF8np k>c׮Ӭ D5 /$X.&e̜mTY@bXWT: ~a2η( f\EU(CvF K)#. agya%^ٳө̝ہ+xirhP_G_$d#QA1)k7X8F3Lknz+Ḣ q^p-T `WVWnKBF'[sܲs׊`VS.)y_tSq 1,z)O|P!U"ɋ8^!ECXPpI*dJ筄|2>"M0Ep&G;s1)B :FȩL+/~ `8<ߢI &>7 PWS#eBq(aL<jOrhnN+Ezm* 2\ }c-6[ @Y[m2Ԣ5`w rmGvFbQAUyLB) V&A/?]JJ=>u< n0"GUWpėJaH?=cbDT5IٌqK@7|!I“J#VYNfOœAE>eeo'!:4r{q[ k4|3ԚX̨XKovGSlJ/x$^Z=-qiLX0:ޣ,Fy!1%hA_R214)o Q_(I'+`fGw] -d,0K}F[b;ݤXq]&h!$h5e&PCD:Ƽ:vRUN8mƵ)k OmE48_V aOhyH8 ;`hA]4_qL299CwY&PdI[涨Ґ˺8DoPs 8 QxS7 eSbEi(,gEޕ,ֶеbK6̙#[J7[ ۣ49.9[5$39~*XE}7:8,G<ر̘yl0а+ (`1/FM)kb[Eoe)0^۶оQ:OY]֢.ot+0ie{w4dkrw0 `k|ZL%wڦ/) ޘ\ӧ}zкWr L]w1=;m0t^,"s`y E?gڣxVoUCw[(bp>o#xC {\DrΧVJ@/qmRP> 70)89s$AqQZ{?2P6f))A/ÇŃ[17a+~G5B-9)V#b*Er]NjJ?)Ye 5=~^@ӚgMiXdWC/<,CAG%y1<ȿhȫGqV [:BƘ<;:tK;јThlV\y(ַN(:GY a(e?Ê;Oc^K}um[j-9|N:!_MP7"_W<Ic xy㙍*hJR nw{Y9z(_71*`;LGDyעkܵҏF a|Az=x ceIˇ (;:[Y/"^E:1).,]j%)',.2weBrc;Lup(l=~q<7y5&4coG7*-je`0ھHB(4DݹNزD(&̘U&1F3 ةR9)5rQ nc0 /#A 4Mg]?3g1UGW⮍GKG].osXޝ/i6h< * >q0̈jјEd<|Jdga9 ,x~S7fUev_uܶ>5!:1`tNmtCi،1)ݥU6dAy|x޿1| "j"`*/:e h$UWHoM:A}|SFrQuyWgџz-^7X,e;o-YxM1#u B]a*},bYˑT$"Z{wrn5vb~c% ,|Χ3a@TG$Zza|i}kYa5*8PǴ70*&ܰXVʈ9 #~ѿ\wn c!(WXHxJH@+ >ЇQ?VŌP]I!pg\v/>ѧDz(noQݮ)/cdkw@ ;Kr Q}i==Aj(F 6GAwbCA< +ԓ \BdMk*}ƭttk* d6צ {R `@qS(t΢%䣣3bm4T@%UGofEM'Y=LXP¼9͵i3SU)cб"A7uoAJWc;2RnԄ^]!Pӿ9x&?CuiʞUdKKG4d p*crCj÷?F~SZ…&3FW 4JtBc.TgyMrXW{*59Ah?Ԥȅ3׭HlWpl"_p,Ug#mQ1oi# RdV|Vemo]t@]pكwvmF3NǡjyD<\AaII ]}%(x>?>\2B4*y1T~  H7G ЎQfݻi kXf<}ޒ1a݌IEB.yʉۨicNal4`ZXCIG7)n|sNQp]Ք-r0KдXa#0%C.d ^?L#y 罛WF;J3aڷih{/knTzoi&M;dbH_(v.M{H r }n%$ a[:S˿/]iq\8~0: ߧU"5ƖRD3:7b?". NLe: xNSZֺycRGBd-/~d£!X0|KGH8W[b{=@_ju5uAb,q{SZ#Pp3/>{Qj]fN ٘}Q XsikN tmF'OtSLS8kr&qZmiֈDtc-Y=s'¦;cNb`MDnA{KLsh֜WfCJ|AVXa3IhO>"fkh]3gG!vyxL-.?Y=WSD,9Qa[ppysIצCJ)RٸN]ϊhޡB[+k7oTy<):|Wݵ@4 WT]X {IUib]SQGI}yXNR#=/~~JHwHXdo|Mk˷ZӟFvl6s7@RK#Rq,6㓅$qŨH3g/Smcz) %@I{K:Gk OU]).cn BЍ~c=cws$/H'h-‰Ē·z͋Kn&]9ѼY 0ܱI+c:c kT̮ hZYFVptT,4Ҟt?['"H,yCa*82Lq!rО&aR v׬te}|bNO )u)Ǫ~_`$?)4wgZװd0NW4 'WPRZ #9XSYeYu -⢵ =<#~QREL_:9$4P1I]ժ M+qͻ]/+|LTj÷tnv)e,qBϝ^Ȗl%ewB=5+Nj& y22 >sH,G`hxR7+~4v3ۋms ޵1R2/;nj W@^ӕm|7 ڥ+me޵|?+L7+?!@N>gdsr~\ g9k(^"+ VSGB~ ޥu)&="Gn۞Y?@ JYob͊:dwƖpvORտd!JŲT׫ ˱Hѯ';7q G8yͨ[} HFwH\sqKF^v/J 1Cᗴ|yA;g= 8C/j*`qESI7jnDՊHC1nY_|l,C.SHE*Ow\jE!PgrF,Z!fn`TtD0ô_ں܂ȇ7Jcnk5OSJ^XEsnC}ǂN:Ɇ|bqV.¶dtBe.lkf8>A }<>1mzrߜl e:jăgTt#K)L;}{Pp#Vn{)Xn"0~{t7{yZDG+b]UuSO_i}rlS*D&P\ 2> 'Vy̞ _lf_GCJ[oܢӨ.f1]yF"BT} .@j(eU_$"˯WJXV6F9Gф|yi6e7_}"Jܵ(@ @Սm9iΤ=cŵWv^[GJěyP115WhS? Z+IU!=S)Y 2~Vʬ=RCo裐_ }Zye~p?&D=ΌiG؉yBj5?wcL.ƑG56qk&&*Qb\Ծ c(bA9/ pNTNtg;.ZiۗdwylaQ;`rfqQ#~چ"pr=Z^8oC֨ dk~V<2~̜(q wr商%k1ޠfH 79a| 䑚\#l˫Yɚtgahw~:ELfnukY۪MV@&~2|ԘR") U,AB3}tu__h$9ӽUi͓8*O˩• <_F'P\*DruR홷@Z@hB.fKEyB23_\e+"JLH-*[چZo?LL rba=?Cina.Z(潏PBN,]$6+a[}h|UFy%їQ¸E@ig}b2Fay:Y5;9 ֨G QshX&ݑݢ 楕_˃Ii[mwN:,+2~j5[7+`x5HaN&&9.gO{S3mE['͐W=1C=|ƌ AL7u[x'6ՂMW7AE?nܜ<w ȋE*;/2v2)$߬i J1gVaps82Cx*,]jXY旃釳GrVĜ #yC80vvUQN%NFI_j:?Y\bTL5UJߚba’]Vֹ{>#!Ay\F(H͸WDx.[GEZVmEfi&B,rQ$ƽD>ِޥ)ZqcԤjܓ9cew(c˗\{pf‘&{sBC^ vʽ  B_m&D$Z wѩb. ѳ62~6j塥rj݁{d!l5L@n&A4hADwHeIXx<.F@诱\N~҈&&H'()2:xkJX*Q_e#=2iڢqTx])w:'MM~^*:xcn4݂?ob]f \t}ˆiy"؍6H UA |iw3O m8 ns1N0WKr,! 6d:"}N2ڀ(lJ^Qg.V;ٟh_ܤ h?I">Tr‡9e f|Fɸ]2ࢎw(*&MAK)DrgU=om%;q_/XXDž?2\$plAt_3tuKq<0y Ǐ3se啗ڝ^@ /Z|F[(I:1Q vDbAPN_'$}Uy)'#|{H*`̞LQLUs2XesmM,h7~80ߊ~C+𜾮64fk&zӾʟ}Wrzr|IرM\MD}tެa|*J瓥 .IgJujxN}r>DdE2թd8Iϔ aă0xr>?jp֍ H/ VSNW&ug-J n繝h|S½ǿw5l#>8,Cǚf򔽐@-lՋ`&m>EgjI*7\#Xo&J7 +ȫhm=[#nΩ^;DY/k t4$NԸ&t+Tbg@ frd ҏ` >&@i(E$R19~S[]̇#3%9 SLrs%R_a2g5oMK 1^Qr 8ŇY]5=筣6hgHƁSd+YpWuPO W0+Ůl8 -т\&Da.?b>4z3vgkj!xs2oqEyvspCqF$<} 5on{[rNRJd@x Yv%z8wՊ.Д%=pQII(hɯGQeDtuhQʽ9s<`!0RF>DoDЧMQJa=6e@X.iƠ~q+ {oB^3hQu1f^ 8W _Uv+V&AaI%h Ye3? kqF gz] >(B_cD}LUē$ɚm!={l1@%ˈ F oX>9uL~Xۼ@avTI1??a"/I+~yvU}ƳSRU[z}"zFYw$5T)[_O|>vdP=<CV>kH0o49z'Vay.6f^L5I:*5Pd'v:cPr4pг Rh?uod88k>Nޢe{kwɪNakkd3SkG$/`YlArp"(TRuL8dpՅ>mDZdvmVk-dku^$F'׽9 .됛g`J>SDcͱ{9X"M6H8WC3`#ZI }B"O!D8eVH@\w hg n4ZtFvp_%hO1XIZ~HFEfLw@^i"ecc^mNV =o=σ(6Qv<ރa0~XfeD ASnx3*m()gM??VK'Ȃu{cйŗ}wjXEe=1f5p[*z͏ m 4_prcIiZ]"3MvL] lLI-– R ʳY]ȅ=zD&f=:F` Lm""h<~5LFHLn@!x, _8LSSYG_,C],$6e/귬>(sp LЍ!V ]Tqw5:Lq@;؂?g*79etg3eaR02P=D ۯu9U~'#\PAḇƉ8Y/zR(#iH>]b hnObmrQUQe-,47Л3aQF'|CWz!flp!inniׯ8exK4Ŗ֑Bk @K&r0%5S(sK0lOXy`܂WR#Ѷh1a5z.ke Z +o]MqFb.f?ftT94[oSgM} - Q25-{?_:6Hѭx.uY'ZGf__ gh^t+D LZOZբ#Vs#~;S94b8G]>5]&mRGIIj<9)o@aKjEb[Կmd\4 wg-"Kf%/]cOW @؜3.2'|FwXS"e"Ɛ'MmJ,M,ә6ggmP7)37u]Րֲ:*d b$ՈVu#:%ZGD;ܱ9 gs< v>ḯ4kW+whK.ߴ" gbyVG2/&o5v'|:QQsb+ ieqry}AQ*@b@%KDQ;O ֢Ⱦw&(Sݭ>Iw`}9w UUKymQdS{0$AN  )ܙ %J1*5A'@DLTSn9#J:}5n"U :JW5t 88( 茔5$3R}Ⓧݖ8T<㸎B9B/..fA.իW܁<+tvKT7EdUSOdK "BMGrs coFz#6pAUZl4gJLJuxpm>߈[w[z¨v!(cJPt@|2WWYR"p}9nto>I.!׆W}[R?T\EJzEs,m) ϥ\\_ F{窭ET#bO0с[ʡ$؞DwH}WC[׻Ќ$F(6r?0F{+br*] 'y*&Wq6]( ح|BETȅH(3uua]Hy?z(~ T !5=i P[egfB0-y -dB2eeDnId0^)Kt@ n"S@z*H^w&M''+$fUZ ;lL-K G:^HBkTgs_څ Ffng2&!tṠ3A7.gqvվεg [QCO I pQ>IjP `jn ĿCo۱KoEr_6܁l|_ܜH,93;g&v֕xROcVXvH7y HqmPg2ڠ< udž$XV m!Vo4> /uP 67 y' G[S/ˑ Pz׉ 6KVwĭڧ(v~@ԋ޷/UlW\oh#D؂ue+$"OcI`2Τu136ȋ5;%t|tsbbۓCen#}t%c1tpQY*isalQq-n]w\B "ȤLh&"/(2Vcqvq̒bԹRrBФTk1HLvfR ΂7h,Mi˭e7c(^1Rw7[ /텚S#NvuK?A>J~ kε@t8H}?Q$4oYp AUQ۠}a!^8+dL=AAs/p˵mp8=]pζ|WT qƜIul-4L+H g4ATCϢ :b5OIkظzIo3tV\]n,ٽyih%n~%՟˗0Z][wm*nV'%V5.gZxq.~fo O*zAzĔg~ :H/jܼ\vaFvCg)Q5`Mb8nrL|gZ` q7VQUc]UЉc_ЊQQKk=o*R*q`3s}C>|\Q,g% C. <"x1U BړyGUt=cRp;4$4,|4ۅTv]Q|T}g@8:~aMejVʊi,V8]1I̐"q}KC-#4Dj"۶[K.?OO=&iZ %ٞgnZ$v>M/9#$o'UN#z8qvdl NJz_2J3s(Fhb)<",HACjGPkWNyq+X3hgHFo0Ս#`Vu2͋o^;f M?N\ߤM:I p`mHc@-rfT N te;K8tSſR mf?/+|ކ>%%Mi0IN5#)ů({o}M{"Fj9[rTb8/-Ue2>àNո?N!l  t[1r_[@ [za ŭmm})|Q㬒T}>wfN<8?e x…d;pR谉,VmЎ7^A\KI^n*~' %)oQbZl4xݤ 68Qv4Uw>C  ׯD?.gL9I3ΖvÁWUD vΚd1` xK+A>djE aX^<;fAEzWl$+[U%a~֚8cV+iF5{7bly'C [%\Bg&K Keįf|NyEJ= U5=faʳx=X|)-Vr)Gc9#L%͒?ĕ[~z$Ea|iVMha2&Jh>tr.:h=KLϑ<3T.̪0ț"|}uYR|"&}\?& ٫rS#VK@>ah^LCv*7uω3g.dȒ qШjҩ;^Ë%ZHIKHTs5&?c=cT%x  !y}X㨲qɞ;٧Żi_gȩV,-Ue}JT4,)麵(J/T&X_ma]ZQa]Fpre?o gP`G8)benMn]BkbTޡaԠ8+ Yk3{bOۆ~)9 ݞGF@sL#UwH ѧv#>3#WbK9պhOhH'l95lc?ܚ ~оaI”8Oz. (6%Nƅ02Dw@ywD;_]9 >='9(L57FZ7iЖ]{o͵^(>2sT wY6q(i=: Bkg"CI g~E|a)}Z&Pxja6r#&K!z Zu R˗R SjPB24HSM#ZԳ^LJ|yŅ$\5]g-$ϧ~oʚ=ubRm^\'O:() !ycnޥ'\Xra9xOiMAqWi+)BR[٘-SH-47i&eX2%w(sI,z&?Ifŝmbq8dEmhiP d|yz?s}{^S@T1]/ v >ROJ?;Ir\(Z졭/\Zt:(6["c h^UpaX< lbMTZ W(t\S[jNapzk0i"fuqWh3BW9}0ߍ^,+uWabxY'/sw#`n?@Gh hɨ6+ :q4y" +̼ԖŤsֵa`g4նA$-L}k8@v^!QJۧW"Uh0*##Y[ù~bAB4c\ҳhiw]-_gRM(|[ c467p;U+ۤPz 6ίWT^&1 Cp:U^.<:1HS(Ǐ`V4u<.#z۾vly ~ݩ`כ4;y%=9>mU8bn[ZHk ָ {Jp/O\>ErZ´>X\঳Cq`&4^ pwpwr721HT(}LTXmt.U;7>yNp(E6ܟͧi+p3bkuq> PLwFA&D2ө(-Js=hĮ zGgz2X%qjm(/cݘRZ?7MYTE"#2F!bڶt|9xiL̛INPUp#4^Ur/?57&j\ ARV%"F5Zױ7ƭx/%3$εp74>~$v& K6dR{Sӭ63Ekp%Y}"wifUs;K..@e@4'༜?N )=+ìG/w75+"fMMwQ3a)_-##S[u$0i+ =VInd@>8 N?F DgJ!JfZs怒_**zħ-t$պKVq YAӎa`2iP !fl ^I!0% ,0nf=9O}ԥ7P_b< 0#PTv`Yu^uő$ {dDdK*Ug[KFdv#MW%qӧxzEEV]B_ 0ױi5Zg2R%Ÿ:Vr먏OZ+C@\"UDౡc*9{`ي(kP{6yY{C 2P5-+"&Qf| |nKBܮ$4JI$'0lTݪ=?%r&XdP EzEDC?z,XkEk:P(@4BKe[`ěBxP[8䣉2:& 7lQ`]׊3metnAm\Nˆ \X9-nJ\\i- y%my{3#kd, xF1-w( L!Oa`w$0oR BWD8)_NUu$z!ʥCzJ-8043@4r{tU禰PMH oQh67#tMzv6۠?g6OK9_عZ~E=,wƫѣdS3Z}1(G:&9j!>ȣW]r0Xn#&$yk@<.;^Ow;"lVR(qBT,ip\5C 4PJMlbDzwSUwe-9"|D.\x=MD;@\lҊ[A!O "bme!Ai$9$DXV3CC lfM*n._S5ކJ񨁣5@l0':ˡ;{`7x9JYJE'ϕL _x^oBPy 5j[;h.m2UaKfDs-Q!Q)rp/`B)d>;6p}%s^MKto' /'P̋mUjc.e]^PUl,{L)*>Ce$Hŀ8u%ȖȘ=O(nz}S_ _g2bb;LƧ7}`1reT|c4K-bֈ]%H(1~NNq#NyI= 3e-J> :ZŘŶŢLQ%@t)[xDIc ;ѧvUFS*qmdJѠ(ŸhF*,[2'oŸ^cX+$J*ڣsSxL;˭ ]HY1]OrGu#7 8.I^3n%ID}9>b'u@$vhi۽ f|otz8A Gy0ha}TS^s6C"Pqblj . 4aq^ms!K^oX`U#dzښ;D[ f$D^l AEVVӱcxճQ|f=95}4k&O2L}ZU k juqjީ ^Xv0@%\88'cA'j?֝۫LD5:vџk^U(9҄pFݥ{Qfe:ȹ(R,%rM8PkdѦ"9L?nեc6qyt6)XO+2JtYwo,/wKIZZ1%e+oJgCC>g#M:%y//bh h2Lup;2|p *c|D@7$tH%F5&4b~C[6!zŤ 0 'VĠF?iE(esmJߚ$RJ܏g-hR8 OasN^n΋8;J;@Oxi!'l#*Gҍ"et{pO@̳O4uQagE JfoC e꿱18fxVJ$1<.ą^WgcUxTr#=M jS`I/e^!퇨ډcOHyp(Eש! ;CJ&fE2Uv5$dppSl7̨A=ϥh YCs%t8tUf6uBR7B Ep= :bӨh_2S_]SW."`fF̜.Ը]Ul2=k|@JMذX7 W'tsz ?+ĺjy?"@} _2R$+aWz)smnWbg eBNBKm4=,p)cH++i>CMP/=~1%ֿ4 l +#,JErt\uu'\G3sa*璒7C`Sæ @/̤HRr3u0" \7.8|pfAX*}GY5(ڰ ^JH-t]uv_ZF:LbI'"H$Rֻ^ǣس^ӂh=O1~)Ҡ|s:lPA{ByNfqҔAVu{K(D+~ &B9#\C-ZHؾqٹT |\X^4Yh-&' &-Ma]} aݦMC|TIg FQy|1e45=k8I j*tPvu}?P =Y||O_x{Y,_#́Na?+H%d,21 ĠxYUL_>rL S.PZhqt{.ȼEݾ~曟%Ȗk0wƮ%tm.1MB "`Vе w:$H"WlюsU M}lаHKz2>umĚee~jhȦO])<ǺʃtPmhz唡n58 ߋ—we`oV,2"Hj@!g8ݚK/:W0loJYS *EGxmeܚZ7FQv[-.\o1Ҵ|R2 rU>hy܄Pc%ԍR E >MsO8kug& &H?$ɋ p[XP>Ap=fxg렩p飀DsJJ0T:bBhAkQKDip&T`Rzc: @ڗ恔լG#&C̽|9g!M\hօĺopaB>X+"ފxOVXy WkWg/5xʰi"z-0kSVTy>ۼMVoM¡ QkL7eGqw4<芪6Y7]sj;a%W{lalsKO\ҥ/^ |Ӄ!E$a5adǰ{ w")m.I&w u X+8NJ@tvΰW/녑胭vL;LcF`RzuϘ,+ VRh&΅ޡ6Hd3f=mY>HLdݶ9 Z` mt~xImaKDV3O ~a!@[~F[X8Cݬhf8 V><`$a |{3+~ڷǝ)D HNJJ/~(YQRj ԟoj9<;P;;FZz]E{߄VT1۪ez$eϡaz171m8kWˡVi¹A*{X959ŨNs/JR>FAPQO,Vs[˷ل͵Yy_zҺe]pCs~3ک#Pk5%9u2R #}`i9^i8$k6$ ˥˭R$l#%Agޔl`%Ұ3rϹ,G_{C%"Ll0A@j0 lO d>{Ul1qO vl!W#@b&d3ST&| (I6!L`?IшU*Q`îEj] E=mD2It.Z+ľ+ȫ}ȂhCD{^)Ջ^׭^gwN9Jm  /PU;(PϤԺ^1}|Q^NfGmվ_ B☓y۝a6' oB܎ q+i,]Yy/!gF$UKw/zQ^nY=9n61_BJT@? 4/ 8%YhGxDž4̂3nP#iBǤuX|.,rzWjv$g ƽx\}ř\Vyx2^ϲ@ۂgO A-Œ冉G}-^*58'I˔,+@ٓ-$$LiE*hncU4V IPX<=~G G9oy oKвPۗ*.P'P+!#t޾AWDuW?rj+ͩ&@m(Mō;i&꬙ AT}Oyљbf:Xő~4_\Gv°\/U6PD dyFm,),{Ix c[Vb| 8HUmH"%cSRj٫^7aAic/5s7 iDeBaY%"j_~M0 vDzxKy!K)xqڹ*D3|ċZu:2j7<ˈ4˯iY%C APnR+u8U\(iSuT j.l 720Nќ^sٷ^LΦ/cs?n9"̱ۑ%(IOGZ&7|^ jXB_o?¾F9+&Ap˧~Vmn7H-y^ř)-c|4b$?7LAw"9@Ļ),*aG_-ivtvfв4+c;Q8Dau ̼X6ZVKϜ#ضUު&1]~s#FUǐߋXw@٨K`Ne$v>jL]DC J筵5GgޓʜEH_tA1&KсN}ISbz]Kl̵+\ZL~&<#%'a:뮮 =s0zQd)C)e>O ,uT.9yi{^$X'dyĠ86+X;B/Rq-4[Ud粪ʪs$$Q5LT$hy7II^NsFJ(Q~qJ#Pwbՠ(JCzg&RK*b4 dwAב|#OY,1LռwJ0d3ش[2Uֵ#8+l{S[ |6a<[&)*F!GҞWP+eJ;F}v@>̠ ϻ/.'"egB3,nq\#ڧYoXTZ,[B>spoB_QK"dmQJqoN4Wms8A{ (펦|ߑNV> (!̷+BYWR|Fn6 "#r>I{̑C2l{lラZ2Dk%YT X<>iIu{ [&\*PnKbꋻC erWv{a~R_X҂>7*35a~cwԍ:OX T^x8_0g Yl0W.5a\""rgOG6 1"|=P)y䥚~ƾRH{Tv#_;il='yF:'hݪ@XNnJB(-d 8/6C𕑃gjS znY-`A!8S0Cm!0#ЭA7,hS*cxݞu?{}8)alb- Y,9Kݕ~逖?"S." c[ Z WѵjKXna<:?Q+^N 4yӄV|&Y ~ZO=D3+N'U/4%|ј =(^K;@)]̮yvLA#̥Px^m-ץUL@Q}hX;+lݾ? %$T8Xrccp 6+UqxMvm? 1`r:X(.ܲ]%Z%Dc; 0fKnp!J4 >,8 0H{0wt-dǎ~7ʭ 8; \P?{m/f)@$Lkq 0)iG?#87KCc=k9}Jzcyj}D `}L}Kz<_M꼪S\ [Mq[-g &;|GWt,ώ[fD=1*Pz4^Gi$H$%.t)Qt>okd>J ^ pJ2dQ@Fb쾦t_w2ol*V/Wl@G l!QESj \\@Abm)[yޡ!36)$"m%%#EU:}hbdŵi;V?#QdY'Reg̚jɁV-rt8t_ݫ uKWhjv\Oe*ꇘZMDž'ՑA ӥ%lu9YV7٘lU$hIl_xֆYܚ܆[:÷Z{,P/olOo]ԪWOIzQ4-<("JfNvr?IC*\p(,2[/ Bö;?hJBhcoci+8l{JCxD, 5SP{`v LEn"[zvW\;aDHc4.َ@?7]ӛL=)<VA}6,< /V4w=G 9)B Ԡ7pwڙ` a h*ՠ]'ĩ ߸i1A.]ۿ6K}nP3 ~۬#ؓC ߂a[/ ٿ.Vjr};}a&ٿ$̿{y6sy8o ӡҦ"**+FnAi O%,!tDrT,M2O=Jn24`]#p?#զL.E_+b1 F٥%WKMxi޻DcA%π5Ad;nLosОKJa}?Gll&s](YڵMA[MB)IsWJ2 }]apT.,pЯc¤Q v\yGڲ_[qΤkm #hkzrk|f&LO-;@"7E-yкwwiEITP!ªAq& ǔVu.^& ߘKG%Dnd b 5tHG;U9M7LVQOQzG_nPQ ӳ0ɰ?gD,sy ԝUdk cw=G.Lp03W} 5̑B?+/YV]13~|n1gnCFDNÎ>877Q @v6〡6*aT4KzF}soSIُ&9>p$#GA;Wj55I0%Y,~PcXdpr7UR&k*=S~yJ8s=?5=@֗,P)_;hO1Dx,Xᕏ9H*)/dH ) 0(?_)`HԐF6NiE>kom癷6p^e AQKV]S罿I]@ .*KLpA.1Mx.3\!>\b!c碃!Sfh/m&|"sQH B,b)M@2*jBxk>^ADtt0 :/PT^qiI5.@ع:&-$"BAw eTxЁˆ [)$DkK%~pQ4> U@x[}xkL>^\ ׌Cl S8IQ2a`(j@ _[C 1w*ړ=)i+;axk$Vw˜D^Ev#솞1޽1 -=7@ =tԔ-J9qǕW,BLDY4N09iFsj-d jX")CȗN`@x{='_^FhUN| cI̓4}83S jT@sc y;hkJS|x8mϜ WLx@)X#$` ;%Ge+{űώdkt>ȷ:[8 +[ #yI?፝j;qafD.@_c?ꓘ^*  d~ɍD鈓+h r`iG,` hx`qNGwsu8N??yCd  ŗuQ%V nвjG@޸m5dsBr9'{+YXӊ(vr pqldXSQKRtIך_ψQ\_MYX# /6*Z}yϵ5"f]`ips|2JIz/s ߜ655N^ ?x6iEf!fIq o|zNPI+ti^'@;87\.j)A\Wq(X/$]+\ْvu? #+&Dz c ?2g/:Oe+yq`)vf|U.-5ʀȋI 8CKF"d=pԿ i4~2Qdew5rғhJX {wþU5vqoXA) *ӻ>$w)뢂bwoos@?{241V&l3"bx{ŕr?6p*ڰ\>ب X&p?P{*#;S3(L+ȵ]zo*-|tI^&M51 (p.wdAY_ &k:LFux8ˢQZhTހmĀqS[i/2b*~t(EF~4qR٫>ӯ@O݌ WůS] D~`n5t\Z8kj|& ʩHClhfq;(>DOjrwN擙nifvBrLWף.;NNNyjڴΓs ;ۻ٩.؉.19dӶ&3=ރ}.;랭"E,6vL1 U.ᯬWȹ% :K~^NO_xB-!Yc+DA*RbiuwӾZ'r@CY߽,-jvot: zKx}onyg&#AaY,B8+,}37PХ# /|w518c4܊HZF~[,>L״^jq e" 6_ ث9ʐ\+WDdBn;,HIU6 i }oa#d. @]Poʹ]j:%k^yKG9?]F 5O MtlA8R״; ۜD~ zEK+R$2b#䀔}vy]f> z+C_E65?kcސŷ 0T P3%{{Ricr?2(2X+qr'- AW߾}t!&Ba|π !4ZAjx ޑ{*64E;/,Vx遟2eɨc3 8ZzdXZ*ctlc^I6\,`&g̼A$bx>K7DL:.H`uZ|  |n0צf#xpElМ1n@ .\M;5Z q0%-S_s : W#c2ϹaZ%!Qp%܎Nsl9| N})jb\CJi;oKJ;AۆpWc6)HaWۺx;) Zo0-}fb7<!ŔP-0S9NSJ@ܚeXLJU? L674W8j ?3Lq m7/Z ﮗoSKOZm(3*w$uke@ף|tDf/DZ*-Z̼5Ye, D+JGA }6bN-x? u{] NޞyC+Cc\h'\9$Ɲ sm8!mpZo6Nʗܑ$b2Іe 8wl,{{)}\H)=,C)" l@t[ڼ"BwOCm[ZAc*ɟХYM<㳛z^T- X#Fכuxo@bKah_O(*2_`sTjCs"iEO[RaC-wX(^zFb$8zv޹"|`uGwS<83hSL>B AP<²frlV˭nΗKV;\Քv>6mr`/ !/ +,z P uGMHa==)lYo=礙&}.ŰQIb;mo}}ŝ|MR>j\I8k B}o:b DՌCe%WjsMyVX"i[ި3K7m?Chuljs:OÐr (=_4}}ANڬ,\q쉍@T ֆQ`_N9;IەUeHݤoĹc!iџ,*=|o/ LY#ȊV;kD#LGZ9Lv?[ǩ'6`0 D 䤦˛b91AaE .r{8;㊈ _-nuv1fje=Ñ"n1YVn/8évےJ5q"Aj!3O߱eQO-vZc%-Ζ4]7Czra>m2.;c F8"f Lt=L~H2ܳp;Eb6GO]q^~))~',_o}i^v#[Ij/R;nʁm%ԏ5Rn {꥗!0%^.&mEg0Ö ﵺ3I3L,{q"䵩JB3a2e3vLkq SL$R|YVu^^KĕOszy] D'ǃIr 9 MR½eΦ/S9lHZl5vT=ҦnD?̚WFAܯ)F%-A('GqYB{& n?"6V7Jڟ2,E&`FՇ#q:qx3Z w%NexXi22"U,]@:/'cɄzƿ r,Iܾ^U稽BfFLfc5ϪUف/4kݿ?Ǭ&\K709cgz'S7F+HWWVqqqR%s3(o-toCr ^1xx%īk&'I#t8!TԳ*ZF.l0: 6r8t#J_*6̍5$Q9<ĉKs-\(! ʋU{s‡z/n 3xuxSE@Z<&=OR!D6l>K8OG{YWXyg @ 1b" BLhܝJ , #*-kGM%Y큢N= ۈF+թp۴Hv h쬼ioxVaN;驒tIwlbp 2GYShʰt`_]RMNCs?\K;)fRÙ^8vv`&D'I2Q>/m*/LHyD䇋Q]ptP ;My.GlTzEf t2JFQw.olj1q͵ Z.qBgD.gTks˛RUݪu`4Y*C&o+F心@Q}557-gV|čue3-Bb/,2y R3L^ |aC<[<ʲ] l42#BFE4n}mAy-oe.82 ~b*xKlQU>/-'Z'ypRC]kw+KA`SWz|wF]Uh30f;"fP2ʔEśXOWȻAW]h~7mzn֪hQ.ea{(,$A?NI?l$fY}'-[O@jSBiCXb"6׭ q/xH*`IQyTˌtb SvwCT -/i M+ F؄sn8_\iJg}`}o?xej %_gCP>.FMvav}~mN2{?uAJeǻlDNzQiDrO;*uF͊(#f6v+ڼop;;|2 f@~ECvS@ r s @7-U"`"~UKϝ~PLR#G-`]se=+Brhmx2ymea@ #]>.6cw &ǖy˙"^Ύ7f y4שEX#ځ:<~.&K^R!.c;8>ouÅaK5rVc`` U,t5j_ps8dnoy C.I3  Ox @Ϲ4~~ ԇFնvlW499Xxr2NsTm &Bv,\*1.a (AWO`y/ڭ,a ؘ֕$ n8V.m&%@iyySXe%yC#.;|^p5_24_;vl3ͪ^40*m8lj_{.lzo O~ͺJ=VPO>KurU4t:$v֔Ha=xm!в@JP~s9S!,5:/ˢ ~e $O 5x-:kSԕD)OHbȜ:J_U-Bo Ȭj.r#idqs1 %IoY&g󮪚Z)+'&2^ _<(|ʬ Cpq aKcd[Efi%WRFf0?ժ9S8"^k m"k駌E-J7(N%0,)mJar LX UDEuAL9=}z?BU9ƃ<*3s+tm!1gHlvhʣ: nߒ@PnG8mͲg,RjMǔh˨&Bhr!K\w8qH*'y[6Y4<}hB;^usm5o*%%D=Fj4to_W>;?_>aSܲf'B*/s'lMWx|y`c$[8q-_ơRrMH+SdRZK Vx`iێċP.zyʹ;F$V<:]n֤ $GY?"0`d=ϭ{SKO]Q7;aPW,ѺK =H!eR^EٽB+37v'\pdŒZRiqʆrv LP׼0Ơ^׮Q82`÷(5}\C V[w|i)=rE9V1HZΙ~ ;{C~.Ӏ̲~DU2K6;z:Am۬xR¨2bb~}6T3(9s\L|~~-`=*AYT^HWGM*0^&u}OBvHW^vxJn.Z6RY苝55S; DrTRȐZ,)bm+z tIALݗ6SOs|1|⠣KҾt DbCzkh]Պ>Vֻ[KNDN8`cm/P੮z(-05%?=I۵ZϻqNd!-QZ|:bȽ5$'\q[j]j7`aP sR, />2c6j&W`?\F5|(Dz]2!> )X,lG}ʫ>Z07} zqwMhV+{ QePN1X#OJï`cPYD=0"\?4e L^V5x8/Ngz!x=BmRt2O9tȝ^QǸ& Zb"!,@~#K_gR\g[wS$҂X~ȏ1sn5S}-e`J;!Fjɑmކad@$u@@_gܜF[ӷ6,].gu/ J+1X^3F;F㍵VE9FyM-,PV?9BwREI#ĞpEL`0|IgSgUJ.Zs55:*},ZWwexfòDhAseJӁƷh}Fvcz7$ /<$*_!Fms ʼ &6iOm޸vC DzH>li'Mҷi0kAu60_Fֽ(fțo79zau!XɏwiAvdIEa&M ƭR@t_QkT;Ja/|"=CT9v*>h6j F/ߛCrBKe=l@OͬfT?5liΓהބ+SD=jUs4؍ % ˹ƶy $em"zJ.9~{ q֌ 2Փ.L.cZr~@r&/uTm7$ć֛QO-`V_02 -{O[Q&NyC ?2-AJu AwV^q:=V8ӄx:Bq]oGr0/ht}cX G&AP"B$w'f;rD&4[[ ۟`KG'܀9*;DFy4E'*7 Sy4dݝw,s[Úif߮>=:+-4LM%r.dbAMUNCVK 07__rXq͞8uNBh,}* EmbaV[c7cVX%ө\ hViP bVEH>hR.:=N C~0g d)bp,Exs5`i+vBx KnP|h *"Zߚ ÊᎁRgS?⏷Hfܾ-rjkQ(QWJ6>V;PͰP=*+HhT<+0xz| jV)DPQ'5]kp<ޞh8ǘ=i nRUts?/0{شݾZ%&n% !`R(6w*]6~㓕lM.sxsޓnu,C>KnO?KDA㒑/j}_M;`V,$a'zD6U%JԻ4HOGc;r8]`lH-^` =hzFS=X\@!q ӕ" Hq;>:VQc@Tds],C% ? /?1p ώCgWDMmS*"=>D Snӱ| KgWKzdKWBؒD.*cXtɞR gQ-lVEh@ڢdG{aZlB;L $s >Djզ9 m!O ^\CfC]<ۍRo¦4"}1$#YÇD}W}?C,dH¿J-4|Bטsk) zCE?=Eye(@:FC/M %vdv]e`F-Qp a-keX[3),ikpغ&tTo6q2AU *ɯ_=J-GQ/KG♐ry*L!,k×UCvl1mm҅~f Ĵ_dSgVu{^=2.Pt lXr9_^Hw5ik1#+=hzcP/ n5SҸ8!<<'W%ppÞS~p#= ё?I ;;$m8[g=EY7]N!У8,;X" ".x=w2'qB""3g J{!(jt>qJ7Rόϛ8O*Udb  ;fM(EgT 8+'YRM)tkm}O ?d4͸b6Ij̿>szLH_Ž\ȎBK[sw-b]ːl)Zu=m}MLbE0bEϓ:ϔES:;me}[J4H> U4r:jfFJjUVYE5h2.ɸ2|XQ &.[FJ騨,|ܞ, wMͱGŴeĨN74Hh*<w'Pj*ĥς^mՀN@(ݦȱK} |,=. Gl塗#w'gȽw5:h"y)UDG$ 6ψm/"elX7ݯ}r\r]Hb,*h^'_qd0AeuD%aLvZ\럴MY$zwzqӖz"p6IB/ğ8\dP=;&W] xn|nAqYWNot{ %~@D*m~-͆ y!4nZg>(`˓Ih{t4wiBXie`}l{`R #;y?S۴ݐG2r䩍έ^+6 7`3,#mb͐Q3l&[_be9420;Q0wo~8qH#~HXw/Sy(ij`+Ii#<h꨸{R܀-B7≹&jG7#W6Ȍqcw9D&"[N>!;B&͡qՖBZVaQ0E:9řsiÉ]uiD84k@WIM2G8x4ySCq4ՌYƸ7|H? `K~ яrh55Pv";$u1]j{l^ӌRi?5ֽ1L`K_| _NV&NOza]_/ u<@镋CS6{^cGm pդ1CGY`GĂRvkv)n[ 溻 .l< I4K~Rb1[~1Gr#}|q`V\ %GG=HNΘ?]o5ݭ@(swy&XVyDv8>mʿq**I%&4KAҴw[KG[{{ֽ/\5;5e`ߣ@m*2P!huJ?oiS + Ny,6o#^@K6`Q #/CPKi2iã&Gߏ'z!@d򨿁y9yY>\c5/~ yb[~uCW:eS7܄wa_ U9aΎwmh4Lm'5^G$uS*XΨ>d`-]ְ\p%3/nD3" L07m 0h)m˖WRcQ=8/pyCMӁbo^1գ:"0e7(ZRˤ4#"WhN!-%iß/O)7߹[$8Ij[hSA Dg0+^Xh= A }Utȭ{Ƥ>Eo;.{H% <@GM9OHN۝Ornj >)G{/mΉ^Vij 7-ݱD`Qp9tlN 2}MQRL$6M8edB):myGYax8jẨfŝeND@a1XY xyW,,뜄))@[V ?3yq;`H>ԮkU>ծ# Wt CoYCSo<XE%>= \{ؐTG'ejMi(3" K'(aP%*4RlMLY^ZgRĞi;;;GQo6$ TX"MNWm4!z%3 J.*V7ҹ#η|HM=3J#).q x˸ M 7PBOxrUFX'iV hx .W Ccnur+W>jlwΤN37A}9QN.;ۖrNEwWhzi)6dkxݞV&_OR njH6%|{#Lg=hD$ ^d5L{IDz~3l W8ŁjԤYu;[I0VC۱WR} g%WUP{ ;tɓiI Aa?%C2MQQZNKу$ƮN@R}=.u!!fM,1y)|$0g!Bvȉ=yv7FhF!Qfb,͞zc!eɣK JQln;۷[Ώj~\iTDͯ#E*=7\(S^D:lW$z<Mhc04\hY)S%0F71&lfoԅj){),;0ɢq$=?E߲Q1;6#.UhVt~Z*h4rhheZh<{UCN2ۼG2c:-0ϨK[LJ6n46 V`,aQ9b(o ^Aut4)IsϵÒܢGa=cPmbc@wRV-F 9po'RXD;rW:~Qekm[ETg/#6h2(Q.M7VcXteƟuRM'|OQXX!ʙZFrTH+ -C();=Rgj)Y'dD]T5!ptt7zQ 更;b3s;A1p*wP f\-žI8b$?on,C]A>R"$BWmC%!;lzcA陨bnZ;eɐ6"@5$^A涻9dPkyΨ bp V Kʱ_Sv.b8:|fciixuq&EbI"A#:hzci?ڏ(fu#]uH uGIa{' 5<@kQR=pYTb"F D`U!AI9G>Q恿% K*\˞;p9@.kz 'xru=UWS Hf(YǮ2n]9i.UQ=)& DhLJ{MK.OobiU2x2{:QIC.CgC!0%-)xߋ8p, f$F}0@Fݸl{TjYuyjh ;iUbuiJqݖ^W( m4/<潉)~χG*`} (W5K.sLGN!Ҵ GҵO^g7@MoD)$SܥCݿɿ~WGұ ٯ fC[EX3=W`EuˍsޡM3HS,Jr>(,M!ٙsws5B/\R}bTB6tkn%:?BiɍSvx k0jb [2sBGa~fD|56bA."yJ|[<G&TzIAugh9D/ڎbR.Pww[T:ڼ^dqk['(~[۵*$ ^rHny,c }͙)*Jaz;>tY#r/uj.`Uä1S4g GX`8Jbmx}`FqAq2tf}뼦`1]XY:6 #bWE\`|Q o큊qk:2Y T+9$2<& GDUFgc? J4CSKʻ-bӓQq)"R(Osuޭg.eI u'U >vz'6u ꖝ2HوSUz_?HGt S&UsO>Ԕi{/E0lUPjKI2@XߧCttKɒqWt\LZĊTl/3:Àd4fE^hl%Ly$UYy#*ȗ=kJA{` m bg1x9OkG Li<ϔund׽[Jajj@ ޑu ?-0Rx)BhM9ݕ7I蒬c_8@ɴ^ۈI4)VfN^˚ҔRlms ӐM1z]w .SD'f(Qw͝>.OՀSC=f!;.$}_eliذ 5>ns;,$ ,96Phk'wvŠɺ' WTFnըEl(+yt}EPfpQ'p5:tf4>U `_gk\KG$3mБ[Q#>#Pj) {}x~.Nmŝ]Z{\kq?` 1o{0W$cIY n#˞Oӎޯ̰V2L<&Fx)w!u~> T[^J&(RKZ֎`Kb'}nJ;U _EOcF)^j5_$#dQ G")(p&(Ur݂n &qD[<ŕ*G0zA$ՙrV>ަ 2Y2ݙyV*SP8oENaٳKt[44<6e{Rl#6k̖׎ yzzTFvJdQQk!vخƫ[vK_)C1qؐ'X2:1rL6rLR?29?ҳPv" O<_c4e%"%\<)A4wpk}J2+^KnS4Q'eQ@YiSI֗7ȧ5 ՜|"@`;|:L#26q  U0J&hVvzZL $oXOfFW3s3f,AwOISYVRG+&`_shfO ,;p38QXm"Rf!fpB?(UgSĶg⍰`Ym \nkEǸkGiDXKp=4h Cmյ]ӣ_>-Cw6u ("S xɽLnus AhGxWۤ=4p &}t+'.Pޓ$n vXq+c6Wϗ}8UXVՙFflYyv8/v-(Jue }HN첔$XPUÒCMWнvT&/ (f\tjFtNk>^m0zS-`cm?}8{cV}&.qc-ۯ),UEsAamG:)Ν1ts_?~O1[7**&HK}1h\Yfy$aސX2#n cj  r`$_BҦ2"&9z!?EAf([dBj֙dC)[ND~Pg< jBdG"mlO #mqdA44=*= =%K5+2wV S.f `"Di߉sɀBB6ÿa .^Je t7s0I'jz}-_(T=\u8iP}.] oV8ٮ8පޘ9, ޜSo qel6զUǂL]H7(B4c ^Y˳מ0o1`E&+ϕGBw"D\pM|ӌ}c޳@3i@+.or4ӈ# xS ?{gSد/txΫl.к ct6⃽F}ɲ39$PpP,2gNpw`;c#fDt ?v4T 5T-7ke5_R0R+4me&f }^b-x[qP\K b%hi{efچ0ZhE$(x(,R%lw1P :ҝts7Pذt #ZOaBV7nu +-ց[ _tp(]5d7U;h [k`vRڄM{H:s!:'z[}Z3sVHlԣJLѷ̂Cpz-5X+ +O t*T]QF)WV3)F/'\Y<8ŝ3Y=W!pbi?Qyu^@W"]U=̡!څL[*j{.NQ q/jmno!h8U^Xp]{W7Rżi1_V) S^(('(S{SSBY6Ϧ +u:W[$퐲c.O"T8cqowœ6ZFo#h4#CELyPgLPX#vkYմҒ/>L(߀=i0h/vEtHeT:EX`䬖Ɂ2 ]6moǼ󕤎RujIo{uPe|r]B¯u%?́Av p/&nP .sCPٜ|hTf Mj5X#s?k%tx}/N:F $@视ƙL4f1`e}KAþM~\{0Gﰣ#\hH.a@RYa&]Y!Us& V}qlW1N͠Ë{hiVU;Xd*',64Q,J!X~[@&H/ZDޓSmttwpe@fjƀY&'L?T *(:Y]V0 "p!.hj~5E@qBwIhM{|T|4jӹ 4:~6=)k\STzaԷuf?{`d<< R+e@0m?/@,^e4:F%mxnt"ՠ|$>X{ĔPKj3/H3t,׃j dܑE⒔ ݤ}UMeEbyi)?%'eI6H.FSjP*e,$|@qO:%hf o|%meSx;PHmX3`1W>S<7d l"~9Xld -Rצ盬cmK /z[s-s]'E-\~p$貎3D`laB}4(pS_ ԫӚsi3kҫE9c$MH.# ,㉇y ִhECx<)#l ?>6o hqKm.J]%a|d˯P)gҘM!/LR_>W.uSwpTuBSZt:;۲tvk^%v;D,{Yv{?p1$79˙zEnz 5l6?Tñde\)ܘ=~I #,9a5D9e?ٛ^ɽ^A*&L9l!wC~Z$#;HӋħ.6k4o7r;?q/O{6ފK*4XU i21KV4ywI iq)XmJYyJDlVn+5JI3 wk{8SSա'Bc(5OT@[Tǜ◓^^:g S͐ɯVĜoE9 w%$/+0_OH_IcyXxq9 p%s.+/٥_c޴v0U#hؑ*Rd7G/l0zeCVrԯ煮:νណݒ}8CMCd2WXmAθ%zh0 O+mF% ui HS0a5>'4]!WE#6IJ&\\ !eY왩҄r\!AH[űK@kƩSPR!_Y%lqש9ƞRN J,g)m|aohTB([0"17NOzSwJ B0šmޭrPYNodܭ7ٝ4E5ÛBEnJ}.,bX.6mys:$!Ba ~&ړNkBm);& X|'Q.YoÀW;+"PG` ң=Epl Sj):\|>[֋ޮ; z-qs|'\=[D,g4Ng$m|woȢL [y & 2NoۘUhK ηF5vo)_ǓXp >+E>ښš6hmNv%-EIj\G43\W1m@h xCcX?|k@ˈLﻊe6œ\:tB*u!$@_IzW ;ٍV.//#G8VpN>>F/bu-]̴?q@oaӃBs$xr2Lk'nWsDž9e_5E~b#dG"e{-$l@*")IxS\)_LZ&FS4pY JAL!9={HO`G60SZWRtģL$^KZ}~ F̦S=5'\U jXa(EV3E$m9o8P&QwPN'sL|ן_֛BU禝}tJ}&z{W tSxO!;pix ĕ!$$d<\h%*aߜJxGs09Ν>6??<7ߐchlQZ7>@BTPf[+6Gw d%EpfcU2O|`  *t%f 'zx k0Z ϒ +©3'bO XZW6lC̻QI7t3bߠ죶lyȟ 6'.)yH,wjiq?4׺|6Rz"!Ԛ=yiR{y9sh`#m~u 6cJQN w!fLڞ.m6N] >4powd`"UA:`^ZLk}нu1񷦷W1:8o*q-/)L9x |3]Tx+=L:ؤeIѵuO6l7i|]Tł[EQX},6B,]I ^ 3ٻ&AZ7,S,%1 $qB+SتzfxQ|\.ӗT.pz !EgKdߥ1C1iҞ|>\6"&衂LŔ\gdF@nq/1+!@++8wYxԽx1&#ڝ`K{TAcd {$Ȱ&i7!v[kM_֕yYDŽ8{ۍEh5ea/$I8l&g[F(%H|/ɮ{ fl`d"d|DC_#ա.t NOAhl|Wgr~!g%6S|E=5&t"XEBpo Bk<f2xqc"&Vx' |>K Zfs-K|UX=d'0:V^`AFL5 ]1bC<)Q=nR=w?.jzg8ʸs:>9aU".cq@h_,r$+U "b5tC"qy?W6x9Z"xs\s+ ۧ7I&mӨj~7n"{Kŀwj*/ IРIzoAΪ(LlY?ZsiQOר3ZB~wMSS{:GiP:jܵEeE̻ew\{שK7Ȥ]K]1v4{!r#J-4t%eykمZn 5 zE@؉"DZ#GU*LۙcqmvL/zuywv*:KI!I,0$VmCW(VDhަI+]dz:^]RiV6yC zO \'`4 q$X̴F.ݍctԒpu>,dyU#rfGHZ\9)܏g Ly mwkkip]ץ3f!JX+yQ ~dgnVME~O>^CD_tw7i XE 7h|a尡9 &?Fv7!`Z/N5's9w MJ4^T>\ eG{#u cZ՟.RQW ;sJ.Ԧ∺@T&0ё/ӗ;ńSES9Tł)8詯RN_V=b=5faF[ 6mŭ"0-2) y dfBPTdS+-P>F4%=.CB4Z0֍/7=imXji(02[cͫn_'2hOz񂭇wuVuc') B5wv~v(2V妞fb&^6KO;1t̞t5gI&t_/8ɚSi΄ex09z8<#Lne׻K`5ǵBI]UCUb*֑@:^#٩:mguVNh("hj4`!WZ[}K}]bUۀ椧>(;rԩevCk+d̙f w#q HʟGઑ_' 'phHB֊ )31.Њ3y|R>Bh9/w>LS/&1#'/6i~61- f<'u'ԯr#{2Uk7fDH^dHq]~+U6)-I*^xaGSwAy QȭQBfK{g˩o#^Ҽйc9kqUN`?Pf!B e>+Q! ȂsIٌ>Ĭ0K2 vIsާK'| K`ͳ=-I ,}/.͏nΒuRdt0,5o)!`uPAMwU)&D^9H( }ٿ;- B'C8SNg?Z1YD|K8 Fuqn3@ $}IΖqUU-+y1aXuGN&2O[ ˂#%T.|[28P8.mF,β@8czf$wt՝B%N퟊ ZvWҿ\zMC˚vwW~n(:̋*-5Lݝ/$#aʭYaNҔsoiû{xXO0<Px'X7 ܍H1ЊC9"=c7V'(h_knņvZLJ>\xك>(πꞓ+Bbb2&f7IpFeƩґNq|YV7\zl?;Udo)`zRPYCSVf9{֢.60ی5+ ԑ6|('ހh3rl?}4L_]VkÑEǮ?pyYJ:}$<:c}ZJXWNsRBD+{g I9H1$GTuGՋǰr{ЈS[8Վ"94 Fo=wv@HDۯ.rb uo xA!#v:7q0EkG(XU6J]rgQwK|Vv>?(fs~e BM3 [t&`3}mkN.XEɘĉ 5;"qXZ{ r hY:HST {IL-/L*XX6l0 ݫ;:_8p}u;s,"#߰s҅C|–s wܾWR:w!:/%H ƾxrj)Cܗ/C',k~}qM}x%T;@ f 7pw(n1lꈾvawس/?~Sq((~PYM%~_ bĆ9gN'@a;!E77+7ߩ4g|[Sͷ߅(ؚۖ+Sԇs 7}@)pڡ'惢rHff[h{ֱ~unwBzhÔR ؂@}kvXNk$qQ 9D4)4 {$1tC lKFf -\R02zKjLYf a#Ł8FcFG{tk1РzdAK3D6ȭi3iH]~ICsGU%0s};;LvGQnFqVs71/U8PxdjsJeߴc@.8M !x-X}sLr3$:meĎ|⟱s^x:ZX4WL#|2y.dC=ρS.=E ,_݈m6Ƥ[>Go6q!-SEٻc8\J(SŒhFrsKImc{Vv8#% e ̀s?!8Cq_ [P.IF*ڥF=N7S[Z~- <gui`WcƁBOwyB,~\ys؆_*74'XEq5.a *Ȅqer&I}Akێ栽%BkI8myy(['<΃ueLpBjNmw\xOZ/nGT}>Y!Y}11wv!C{7m iv`uuB8y½evL~ykJ qG%)joeMj*fa{~'#iMI#uF $BkYc1q):](e #ʹRLGꐾFC+{xVWFfO $~B%jzŽwP4Hu;\മ_ O|`DT۴Z|vA?;Јʤcl8Q8%H9:oyuF"R`qT-LE.Y@$,F #\J27s{R)K'$"2@eh<)y`P#j!;%b$;$ՠRNia8M3ŕ-;tBk2o5<Su sL&S]p8 w'La7yQ"Z[PXd<'H+ FRBq(:?g7b jS%5t"T(@.zoȢ)7w9 ozx0~k ԔJ8Z4(Wf̡W4f߷ޓ^]>/>^avd^K_l6ͷޫM3pU&07Ma&7ڴ{xçfE^lmQ>Č->MS\~1@yu vay1Irm@ gQ`D䟟j<6 Pb:o8 ]z6}@;!j0>>h{.Q({ ܋`:Aig cO~y&-Uw6vK UgEh] ^a>+c9JJe9IRc2*.KΚ5)tTҼ/RN߄M`Уj)j(BG`$#$w}e=|vBMR3.z·/͏bh\ؘ;yKwKPU$zO);щ >69]׻\\x>wprJf95Zj@T8Wr~a;Ob,BYPx5 Ahlk$4dZ?p07f\gLho_e_5Fgna^z-JWFS<{Tʃ"l >P<֜n$jj}Y5=2P#HqrL`ۿcM jDHȱoT||^[R;''Ph`2oq3OcHnk5Q%#%? nsz f^S{^$O&{?gj"W, + Ry"jV(P } w@crI>F~_Jsܤj]Bmz ƻhCeV1!w617VV(lq^[$VY)pI B_oPݸ1B oaR96:ZLs#Jvx ֔L{X/uꥐv  P*b!*tw~uf{=>~/oP9MxFZ1H;e-3N6׭C1g=WtE@>f2WDn+{WS>Qys *l@L^*/Vw(Dgf\f4?Roo^ݱmP>9~OZk*Z} UQmnS5$r/M;*w.o֘ ezjYgBrrT7eƘ\R8&O5ipudu.uNq Kb;@8`}A -H:bBEcN(ZpO.4jUۗ s,ǐ4!ci]Ḃ#}!? giSrv Qu]`AzHW4U,1 Xo'*FT Aoy'(8 S L2Vhw70m@Ҩv%2DKLme=:Ϋ"Uz^1NcRQ87pUπ#qo6NdYިMCfBW\X%XR4V4kN$Ga!kU% sՙQ&[Ǩ([1;fJX۰/5fߠGZ4ͼlgN_N_*^ě4 AlvN,~2t=G/QѾ VӆX~"=Gh8')sMxXsIvǒs^"5JjEΊ,0Q1 1{J:,f ! nQ$軂5N۵o ]ڛ4 r y4 fQ>{ L#7}T Ձ;)o\F᤯3嬏Xoqm6 ~v>Bw2p7uRAt69a`WOL/~ dJAxĶ3TAur=!0р/2M+zlg(25Y^bN.{/kF<4b.i64<w`!ѫ&U!"IN_*QJ.68ƺaaneDY_$WN3vS,E*} 4˰ec5,wof%u="==s"^&XՆEg-`MT!K/ q6Uz^}]p:t ykF .ő Ijzj$_4 ,&6/;#3N1{mSn. B ](/؂_G:9w0C7Tn7 GvM㹠b;SlpYXS~W#V?sN ia3@2 ½!p $ȰsK[ԟQ>+{4V5%{-1Cs/84SE- B+9 \HѲa>K ؑ=zYLm/^#&r&2[Э55,Q(?u"_2qt5zF_Bꃀ*pTo.sO4QtyBP|J{xfkȤ{D"xt2&Vx c_7 qk1~巺V24)}kqHqoĞxӄ>®<6-~g. 2^oJ*L!CWV344lwAӃ16Sv}~3v~I2*#Q+ʏ oaFR3,9{v TMofDߖ΄Z{mlTY.ZTi8<ϹJ'ms支bXڤ,Xd\)T"t\BnCH_8r]nך''ZȊȄNLuiT-+o$,QuZppJ\FE m$N]F'OHjdA5ȓ)4&p}cvu[ Xz!dTB+sd?y X@]s .wS=+x#N=`,!OO fxmMS{ T2dw^Y wtA=^JIm|DQ/U#k+-YG #_BDΘ!yY[AA `9˾k\^E[m 3Q*QmY:<%we|T)3I+FUB'J1 38;U'%8sT5LM7ByxsZT n5_ J{-@u˴? a փW>q3 fRbgqAޗ&WIHiH# (aNYBUgH*saGp!+m1Y$5H f[=LOZ1IЍs E>etaVdp4\{V'V4$P }:DTi-LV9-_3ajbi짿hkסǛNa:ʃ~\V1Rt sܾ-|^^dLƂJ%:Fg&#)Q49_zmr5O.s~(;˓GGd̵S|qsDGpT+)H-1Tw;j'gGŎ?V#x& ʕ'b\p5ib)wnUl!ի#: esu~Qߞ \ :.zæk_LRnxS,z%3Ǣ X݇Pq(q_M9y6 E/͸6A0DNSl_ڥݜ<^H/]ATzUXX$fT`M/5G Mˎco YZw"mK}u@Lqd_9zLE+Gp tIB̐?U)86L$W%6q0-[n]I?f Uc.v JoE@zOj~:87.v&d6qc o&pv61I'1 Q[UPjT(`IB`|gz"U94N/LQmBfQkZu1(3,3šSr5q.?tzݺ8p[Kˁ+G=KE'7~58U~-HFi^I5|6fAr=VP:8 r}NwX9U1?RaT ^}c,e`쾡,ϙf}HG H6Vqicbʿ*{uܠVAf[)R$Wl(  >.(Ϳ%<6Ut`$NHD%` -|ez<[^*3Vgq)hX&by(=S)U:%ucڲSҺ . VN8+EXPw }UOyjcu6O h#pp?2&}Xn6z?N/@]t׿uTr xP2 UvZ)E4wi0A&eTW4Z Ӣ[5f9jNVNw!؞9~B2% d)79jyIciyQTQ㄰|bS(&ÆDlbНrV;0n46πOC\lXY9NCfjaiE$h)C:Aتym?K5iV!f鴎;;7зfV`f̦s&?t1vT8МҊJtnMZ}&F/=߷#vKy !H4Bp|_>H˔48avRVq"Q!zj`x^ ^ C |*I&[zeq<#q1Tg;/|/KCi{@]Ln5)epB8"~6Av ]n˲bufטFT`x ؎±،~D  9$l; #Paj>;D3~4 vpgݶ*3llhoe6i1j|,20R6oM5^+6v4k㟊) /E;ȕRh_}ddEHk=g,P‰Y榁O2Q5GSu 'ɳ A< G*ɦ*pzEO2nx7m@.7Z$4 x) f2"fExT <g[6M _<\{qc?c #q 11_EoYϏ!"ٝ"$gB滍k{@ ou%cVX@^K@i.-vgӓ3-15vmAi[qK/0[(i8 Tԙb)f]xHc$bF.od C6rs*XybL&?JyXA 8Ŭ[1_ȼAUư ړ6g[<66i0w)>څzJv"F<1oEJS'D0J橞~4M簇`H*vηV>Uh;Ymvk-٧DG4QDdT,]yϧmp 4Rg \}/rt'5ԓtڱA?ݙL\,x5H,399F4[ad~d |=^~P)ҭu yl7)l!ۄ+Jzd^ndqwgu$: Py :K<|~#QXoz''9|Sc#v!]_VXɹ/KG{ 5 %DA?( C'v(4ET@L*9gYxF2z8 Y#ϩt!ڱ&k[b%-f{t _|A-Eݟ=wI4㷢Z$nVă$#4[i"{%9۞Ehpͯr:qf&P%~QIwjR(q&K'(M)C/v0.>?F%=V"FjS[g_;߰O~@ʎ\@j=ChhwTgkoߑ^۽Jۊ#ץS -e9s=!=eA,\NIk˖'9%kn"q{}j 2KwFG\xG!MP1²C sċuN@Qr&D 23z~.@%, uլ»me x5rt8?dx'9쥏kFOA$CVE~'5Pppe3$3kM LCSҞ(ڸm,$hFє +Ԥo{EQ9pYt r*ļdj)䞍JMXR>u~fjæV3KrFqEFJSu At[<3̹Nڥ!Ne! u_7,§,ZтO`xt15$iOe=HF9;F1 @+my/ qS:͠j`•tLs >aėj$ 4\>N]y 0\@Sp`7J$cnӘ!~*ؔ6fܐMF.$/{2rWZrAp[Ӷ#A<'WէtR?*x բ0\](9)ZXo!M.pQ#=J Orm㺚RsX$7i/ʚ UM6eee`/=b SH04xӷLgG80iˮq+~E/F` w]43qb&T/OD,8'Rk>vmBߘΉo9A2vbڽ@E*1 ۓ=@G zoJ;$=FCSLVKۋxpUED%a({Rˏ L^ wDwŜ1!UT렊غ߯G8b:z0jtFYV 7Z'3uX9b=D.) |}.,Lšz_BMѠ v cVDHb 6r_bo}]lZ5?=[(A:ģU'ְŠLTkP -w )Ob }:~yW{#mcR;i H$E^;his>KfT(saG*hA86 b-p.n,йؤTp_ lY*FpZY!nT374Sćnw 5{O90c\;I AvwFlu:* :deRsofxlSHLqxf]%*C#\!ͺG-W۱{G;L^U—P%i ;k%A7ؽ k Ub&ԑ5ЅH{t?_:++뱈ևOPI, /DK V䴪\pz93@-7fje%ZOY9>tU< DfQWGW]YR/¨u^,Zų;TlzYdXk-*"Cvj,dSc2[@S&bԼw",z!nYeG’^ru2:euq.JqC$JPp''_Njru'I OVυu-l|˧Qdr[qt2A %\X"S"g=/SLENrɺJCm#z:ߢb񧾼z[^GuEQ}KTBգȥh )2R."ѯA%U^T>({-Lي5)DL6BėMiΪ9 )x Z= jq` 싸CL\  {˛!G-slG NSf> @ /}_G_[fUny!l.!V,Q$?<͓զ8=W-Z:9jA\vQ/Vk" "M'XP>ȐUWҴcWqUIeDe0Mqj5%Ls^H4C}|痸S |6&VR6o5#b FK. 3,d͜LPJTc[|'Z*?`uŨf1B\$v97id3J ;ڿ~lf̥B7sGᢲ=ASɗqc㭷peiC~Atl;R!mzi/**:p6,^1si,wb%nN JwP4ğ *EH5.[-rTX6 /P,0Ihks){Q 6<jO3?w:yFG];Ry!' JccN2>'E8i1/pEgXݟߑQy2]CA}^sDI_Q]>uz̉:8h ^Br&dž45*b6P+%3'^Hx'@7 dԼy}..7 y}Ov\'#&[(@S$gI!g9;>v򇠮^믴͞~<h5STkyh?ݯ^{~Fe.0.f(Id:;CN ֌n/TFsA.?_YOIF/M۔<2Ng s{jZֿnoUlG[eZ¬#j+#(Lu9`g1kQr=C"vs\>^G'[ǧC}}$,5Y.J.ŷVżX٠DS\_3wCR"VƬ7lTV| sU,ue_בoH+L ce梆p d%b~q~~CuCZJ!哾~H@F5'kVZNxׂbF e;t[~+w\-fWԛ9Z{ .E|>Xm)5)g1*Pmd97Zfāp1z/ W틶~ZkZy. =`tZe ӹ;)*BFOlUD{TƷ Pa' 4\EW'gLk8Q oeBl L4CU N>x܃Sa( H yTQ<T3O|iwuދqy[::I~dSh몢rI&.=$2ڜ,7Ք1Ͷ2¤XM b 0wE ygMcZ ڂ#g<8m`.Wkh!0ȟl~);(XLZ&Ed8Hl.f *%29M~9"QAͿ Zel>D\Y8?Mń9 ֵ8x bhZćtWfY;-SC0$q71}lVc\e蝎EרOzDUWOێ~R*` kc03Նrssy+K*~]7C:?f@}1F~kϛ': cZ}[.}EdHGJj8ҽvҹ nDĵg(d]as~|@S**p+D 6PsԞ HTZ/\i^VIr-y_r  aOܗf b>4_s PN(X>Ň<W5%^33EzS{2J_w%F/)˰` c6B:F o맫 `;%(˃4<Кo ݳ-~@ӧV9Ё{( :h_уxvkP + xAeǚY0diFO+Ph*~rm͠u_a%Q7س֜{Ee E߇#g287&@ttOV-=iBGmGaV)}KUDBN?ry,0>Zn(OHtq:r(b)jh43xL/b6$Z(b?1[s-CZaɸ!N=YaF+>laNywjʇ˙iCJDx>k &܇1+d!xfBG76QOt> Wq׃&>d_`>I$HDN-"%5>z얨V"/M܈bl$|$Rj,Ɂakjh2 u_uJzяL  H)DwqDUͤ;m<ŕ>@w &Zb_p$\2ub—|ty_om'wII~')=W GڎSBۢN-4/Pl`d SQ$M6أLvrm/>T~)w H ޓ(C/^x!i aӤi`#Vf&1* U qKeNL4߃cP_Z*B=* ab3xj fr]_K2_"`O Q|9|@5^eT G"(˜xLJs3CT ZB*a?)Q]xM)MPC<ª$L.GR*Nՠw+6!`V&꿻o]VYx啎;7j䬵el!Ms:1:GMrO,z.>J?UVAzp03qP=׍H7mzT5@mh5WB/s^X g8F_2D^;[= A/CB`Ai~m?pm# ,4'o;ؼΔA\[Ge+rJcF7 tt5^j(γe[u'Mص A2qSXRbDDebfH `CxQVkξ[dt |O,*Yҵ[1@8#-@:/`4-6bʧNrTij!5dlA"}dsti|9]kF y0(Μ[N(Mv̂ |SwE,L6[a"(([UH-Q 䳂Q䄣5L|$J*oٍa[Z` \<&>ISԇp< N־9% ,28"=\n LYyrAC }i#uye+M4v3 %9cS@| ,bqy!n?ٴ׿@|܁"=ۏ( Z8㠻 1Q8Xד]'fW#L$O)9ε/6n`z>c!sDhkDVjN;U8aj#LG; y9!7/0|y2|j͜h1R,I*]LߌL<;3A$&{Bf:鞑HU r}F9<-?p |LErg*˓g":MV@b;re-DzX#MzΎUrȋ*L%L}A+H])bG;c9%;w&(Ε ۲$yR\'35f9+$/6 h_BJ,H$?ԫZIC?r؈]W|01X@^nA %]W,h}>[ V_(i^yldTSa ߣfg.x -9}}(Q]t0z;fWzoS xFAC ]Dg5X 9m}:gXvim̪lUuw8}+OdN~y׺,:t-:ڎZFv$E:+5(81,{ia9B-$`` K#ZML~Z0,\fҕV~R{M4.k> KIHUelZB9^2KƵt֮G^&<4Д ~D7cOYPQk8$l%~L5u)- Tdݝ)Zՙ=cT4[.URu sehTBuZ񘑡q6zs9`"YqK]G Cu,D~P<5BnAtWG+XzH˜\b|gz8ܺ#Nb3-:}鿏#)!e\ùrr:nL#r&5O~)ؘ eh9'H-u J`7$꞊Rqe!!V>֟ l̻⺴9Tn.p݋G:,OuQΧb^7(snN$VE@?'ޣykꌌn(؂J'4]B<44-+wZ>&޻Dɳe?'펗b=RY]uZSF!n.C24J%.K;8h), ?c.hsyڷ!&ȭXw¶ONtؠE^0v_Z8دq[dX@wrDrۭ=lӋK#-0t:L]Wtʛm|.r``ıW s?݋auy\) +4k ߊ)ޙR $\y $]\}@JѧM^#}aنrIڪ;?!HHtJB,2 'w YZ