parallel-netcdf-mvapich2-devel-1.7.0-bp154.1.43 >  A b|\!M@eeed%q=ƘH97`{sݘZi.df=ĝ TƥVәd^a 3ة:7#"qxW* [!g_-O}v*.~ ozBEzF:6xԲRBkDkN 3"a xw2۽J}E`8BG7Nٓ/vJbߗ4芜pB_{f?VH6b5XaE!R91751fa47e803c80e2319e1ea1d898aeadc66e08a2975466df520bbb995c498b9171f2ebf6e08f7675a2bfabbb88d496928a66a7Gb|\!M@eeea%=QzD n] ,64/C1!@t*$cQZFQAʓ1ȍ#/"HE)l'>dwԣ?W3Y,*Qڟ.  #zAWujdJ5P?= as9嗫%){DY0X4)Vxc96Z +B!W "'[|#1(L(U|v u][@8?a7+cit h>p;?d!' 2 jx| ,2<T ` l   8l(8 9 : F5GHH`IxXY\]^b|c%defluvzHX\bCparallel-netcdf-mvapich2-devel1.7.0bp154.1.43Development 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.b|\lamb52 SUSE Linux Enterprise 15 SP4openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxx86_64+kv!kb|\b|\b|\b|\b|\b|\5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cf0add2a23d5dd0ba1839903df66d38dbb968df62c21b70d6a6c482fc31f3704223055d47e5ef0c4517208ce269b5bccdb401c4a3ed6df862ce4b335167408c67blibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-mvapich2-1.7.0-bp154.1.43.src.rpmparallel-netcdf-mvapich2-develparallel-netcdf-mvapich2-devel(x86-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.3]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 namelamb52 16523173411.7.0-bp154.1.431.7.0-bp154.1.43pnetcdfpnetcdf.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-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP4/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:mvapich2cpioxz5x86_64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file/[jUǩ HDutf-8c3741d56c471eac0bbc65a5ccafe2f78f7849ec9c8eb1f9c1dc96a594b5f6c62?P7zXZ !t/e] crv(vX0VKA-ky{O}Rwk+%{=j1x7̽^=MUH(*oPbXQ9\܊sl `G$hd=p4!kp&Z}?u4@^l 'u&w-@vI/̴}LJ`ڦ|G`s &7Ni0c0˖_"LI-PBiAtnQDc ;00ܲ(s b6`1DwlxjGNt ~;+t쑊 W'+gn)HG]dܿ\' E1FC:᳂7:W.}9/܌U:VJ̦;h/L2w=2+LlX:2\GI \7_.Q:Ig>^wj6 Nx'N^Baxt`8KWFsEgXd(ukxڲ0:G}~`iK,xuJy,ޜ[eLdBlOJ]dvž6iІ#ԔNOwފK3hYr!llPLMl.shT lK1&lST lH b"uɎ Yc<㺫2$#Cz|d킔P O[}zMJ*$Fm~ FS J|#eyܜȽ].'d7Y0GsHBد 3C@<sݎKKXGVtr@o}̝n(?&ӫU|?PKcx0ubPB3p>\wnJmT"H >><;חD)~u=8j'nAb%#ΥFrZ\0ZeALkկ1 "EQHSNL~# տ{C =($0qoB[W6 ?v1^"ֈuD1g{4k"+b2ѐy/Qݫh F;PN,T ~*P|{Bzyweo+’SHjk5@̂ b)_f(de W@O@{7ɪ;TG@+t얋$ˋ,Oz qN\c5Nä[ʴ$A$5;󈀟JqTG ~4) U ϙ觑 J 7ܿFXVh҅?`* 8Hf*b>gl9!*}5Uf:u蛵+TCf.ji\ݣ.Xʗ=M@ pn? h3$kܴ[M_f/W9IVoO6y-aQ&Δq{o:Y5üjO-xe6R{r7rHV< {8J 5$r)y/|BZ&=itmPХZ'g Pg=p7<,y{MEP`y"+W\sH_kT#Lw@$l(qpܗRnvGf w4k|Ό4Q6ٜ%ʱQQ1g= Fp~!l䃖)N2dwEl-f--ffZ]'.Ȟo ߳rTڂ0Y2fnX]!ZXj6a2j/z1|FyS&!C9)&HT|zVߐ)ozP AmD؀bt/CԹJv#vk96%a1*m砹YBFh@6v4KLDW}$TMQX8 `M<;udVy M=C}Sך887Jn/f!d-*s%pN  5JPTz3jR1a;up/7%&ѱ7V争B PElkHW56^!-qvmgnqA@FޣQ|Rt]"_ثMQk Eu6L9|E"$P_8vU^~99hgBR[צbl~ƗLVPULr^B`Es[pz?dh[^) %ⲉX)91<?m-?M7YBuDo1p^ÁDQ4Γh!qf ![yFUQA՟dlvn5CwCFmalj7$gPN,4F$J9(H|& V˹烾7'!OKg#MCE AjpKez9myTW{0M#4P4ҏ- -?oʄ$Q\jE)A'Ƙ/+OmJU`Z@j"l}/v :j{V9P\il4q^BC1 #?mRAb[/O$2}cM%>)Ǭft{ )RD'qiJ@mT2ͳt0m}{h0hJlvIEy3w\3843cΏ \Iw31* ؗ_9"S}fnsHRk^j &ea89H(>;Ʈ: `&@$c;M#/ˆf&NLR> C ~deO yZ"ɵ!S]#'Fj F>ȕsnbK<]gK;k=)v/Zέ4Vq}s Qv4 xͻPFa %&Ǔ >-{*>-Om/PBG@gy,{>U€( X2J񾼐xAfI];= lysY$p(6@ٟNAd!'SGL)) Yn >8V>e @Srcw}0YIz%tJy7[J[g{?Z3-%m^/-s|Xb/O)U1ѠaާD>^]~fY.Z.W#>`P ZvX>/;̜9AKE5C .3tĬ ͫRaH73ߢ/—:?ix v۔N$;@ w{|֩z\nY@fe%Tg-&\GH;WNUO2j`d1D)A9uh i)L!V4hn;͉ĚKhH>=Gn? Xf.+`X́ei~Ø kD &cb'JmuPiP&{J !5c?g AD0-6_5^kOCb[l&Jx܆yxP@+ x%*6 H{azy/焌g"=>;R!`G1cFwn` 7}^<$=r2.Vbi9 5pgW1zӞhV\xHV HD6.x'0g%5"sYR&0UéwOC 7O)sWR tg%"wrȩտw \-x=9-q;N0*sʬI2Ш'^kZM#o8e @rkE32RI-4l" f4):]a/3fȉ&ț9"JMyWuag,}"55KT+y&"#`4֣4oŇ.,y$cH6t"_y*h1JH*û-h:c$.DH!~ g *0*,( V9ڒ@<67 vj٭7 ^*-,hc#g1\;z|;8d۱7Pٞ_}o"(`6i!&a][}m ^\vBk FT\X?C!ZMAQk ò {ؙ/5ˋ`/bsJЫ@W|m cwiyDŽ^&h Bo&L8O5gS&%6vOÐ}ѧ"gn]F'O s5u.*=Yp-k7 XQw#J,pѻ N8UmX|%Wi3ڜ3C}8ɪ (l%,Q#r2ޟsCK4*jr,pSό"Tjj>[@nmgfmEn.}Bmj+?,B~dwa*Dڑܡ7 xh^\f`0u)j罧8E]gF cg"`4eiMyW'g!`` p{I9Q@BD_\ڣ'&q""ܗ^T{& %$FCzdQD6 g)ڙd`E[j 2. @gMF~4qr0iCvcmkS ҩ3iSO6a9> A˱H_+x %OA{12 U)Q}xx9ZRƇ[BB͝[+(XHWdbk&x",Ålq8qH"Ε}s_}ĩ{oX4@b3qk:L%bç&>HdmRKVуhc^?!HZ?]J6ֺ_|S#Rد$ifre .& `QFG~]\8Bs, 9._V}M1e pj'lg?URLֱO౦(Id .>y/]I#H/u-~ l(̓R9 `J+މPi2lW}(1ްj]P l sRk5C&'-XKOю{\hRz@ g+?#x׵a!K:ܩ~QպM 1LAaakUJsg@qo|"<{fjɱH^Zs ]d}*u-iGRxEm$)"5CI9ZN=Ѥ\Ԡ݂92ue:3h[Cgo$WML.GRBg@%"O}`w_Ȝ6]Hf؃r2{$"p(y4NQ{..uVf#j]P@\!+g鞱ܭu}O,uDο/,\X>FF6oKR{P2F8Ir;졿FY̵C䡦5 i)LvUUWJ8pz?R22b3opm?J3bvhVSQ~lb-A"د" 4@IZ[CǯG\HWf!#CND+kyאfoGL"_#Xr$G&H7H:Cvyi{j3¦GS X6P"Ռs?{>Wx.K,Unc,E%)]R;kc&Ov!C'rc9N$z;Y't wz2~|&Cj_!M*yTobnO $a>!;OE@DOQc6 ĻpQ(D3&Jc|dIH4cr+k ~|%VqSMΦP#s{_VUSuQu瑵{,xPc`@KZGF"R_1^VinUNE !ќRs^Ts!z@M"<-¦MaYT g-$SXYjhgX *9=iPLݲ XᅋQ0=F혧C;D^%Q1:ץ7)@IP$W3[牗=YbT{=EBRe{C, U L~ӵmdVLrDӠ$4*dٲẈ,PUVe1r}X/zfc ٻT%l1A}( JK n&gR&Dl"k D2KW2[F*B [.keR wȣRPDkdTN"~8Y kȫ>k%;Jk>l]k?S'Sz~׽mZM^d>.#]zW~괛=QBKn|tB&T0}ӵ2$LEWh9̉o 35#gVs {IzmSBJb% ~3CDOͦ (w:k<XF8찕Z Sdg;tNӓ '9*{cvSF,d2]Wehb־U$!9NcCc~ab$ B0giה%ANJpK-vIRdܼ݀ye,<5-06ZA):7͉1')Ix_w~TEqׯN䟊.n#/pju̅qGSC5tnƳ n]"Z[{NI$=O; P. S^[7nvWAZh@\ {)k2  ]`4v D‡8-ToďWKP,kYRiN(*N1/5j}2RKMRh#_KT)R+̲L%,3G7Ϥ!QN×+vĬ6>WEGV87fޔ6w$L[৕qesfBBHxG >:W^!+"CL{۟w阧rp#<%{MJ9|-#3843X/DNJs˟؂.}]2RW|q3u7hQ<nY,"]]( t:5ދtI|h|r4ZtQaM(s` =+[`Zڈˈ$al9m`hL|Q٣/hF('di~Ps<(*Gm8#hW&aF6]RƮF,ZwՃ.N͔^9L UwZ1NZ]wP4._ڔ:UN[|<Z% 0+atNy$kQIaktɍ\5NPfWQAJ3y5em5ND Q8.ih4-a5A&=gSILo5iaC~k_~vػA0pJg]W Z"ҿ;cVTgek+XD}C6bTJylQŃ9=  W2GrSW6G@!pS!V4飵/13 <Δ$Qqz. _-M/|>x*R"2}xesbٺe(+ ?vQ3JePoP6WQj%Wgw^n[3Ba&m~٤Je؍kh>^C\1b"NlH%OKvMϯgU8LjG 'TtܞpGQПrsn*,y.(Ei%#GUnٴLk #{ "$gԐW=@9Ѧ/pְ`-j<0E*3/Hu]޿ _< V>J;ֻ9{hW8D)iud4/9tH@;_3,hSp ǝRh;$#-5DXi;f?Yl9ߊeye&ޣL)=MJ0؁)½m-sJ:k:VD)Ӓ u~EysVʁӛZtq2fUmܢVu g37HPnn=GuEI2 k E|As@Sn-KY~&Ӑ@8qb) yW꼕&Zˈk´u6 7e!~} *{-?wi_ * [o&-u &TݷW_$be:ȋQ}֣e D׮ahBZX>%^vSҹ\NDm|aQu/>,AM?,x>\fhɦOQlYi{#=SofnJ„lȢH}qjO,`[~y-c%3gM~mES!&D|bLP4 C\вE/X;7 Wx`*U׉t Ti΄uu٭]o/:j)ԕOd:!~x.o39Ou,|ҦVB|^z醙ǟ1*4 (#v h 3WuA~Bu=!&qkhIǟ>a֞ߥ.wP%y";^6xiwNAnb#/ ۅIUf]Bz"2Z$.MynP'D!ԞL[Eѵ!A(uJs>ui`!"Pޑ qe_M/x4lR&{`d;ɪ5VLд^mrceT4-.EN LhO;ҵj(˗/\>WUVG; :Qu !n6lܴ' bfc'FaI'xuK p`X>=>+1B.V"_b,S*sZ1Z {w9Mg?'tN>jm=!& ѲyiV}È=af BKhJZ^JxdXwv$:l<dN^Uә+Í>$*r˪N!a}_P#rL>Ft+@.ypct %_5JƹF躧wV#D)\dCV=j+a34QKO⍆:cpLW,Te fj^*I THKg ?PZ&`ˠ S%:&".TC{u[Kk" Ђn)^ 6T4uiFs/5NaG1 jh n>u]KSGα2+iʱQy GoP>ۢǬ礥D-Ywg 9T!O%aa#`{O4)yO2R\-TIm`MP8U=(?>ׇj}@{_B1i B jZ٫۽4ϕbxH@|v&IR2JSǸOK?tOe%X#EКnv.XAT\BPD!tB[JT&ٙbF7_:?BljH͒GyOL0*W`d%KۍE5^UiܞO,Jw{q_*VOqUm۲w l_:UAOlkcgiH1vO/bd7xLBBZC0/2K*/X:xKgWmR qe9h h;!<}5KAPOԇWe04 1KӦu.gaRDI/EZ⊢ zd._L_E@!@9%69 |! Cpw^{mv` q@0_߭ W[uA5_w0j#N[cg~:T`9~HAP<^1}V8QMJ:[$2,L⤷G j[4 Zx+{"0="󄃓/šS::\ǂz2"♼gqԡx14M~q&LIE2N-Ԃq (cK9U a+qǞ.j ֊V#!p〛̞G&CX:)\nf&iMwi5i_jd- !(!KNRR"fIP>c FbX[-JӋD-O hz7)FC>W}ym% TK{Z. 5bDaW[Y7ZDns'vE+<\J*ܘx׹ݨ/<'>/)}UJ(Yc˟ v:S AKiMq1Cx䗩mHQ @A~8w5iKP:\lTCw3#(. (,E0Y^ <;DMe#qn-X)ۖeW@ljƬ^y{4m=HEuP0)*XCPh*vIQM XfGqb,.z6'6<fOY؜<Ǘ 5Gy|1i >2\~wD-r +V|Jia%P h8} XX!j ?^ sŐ{ֺhB:#NyTϕg"}]a+$uG3P5wv z[މ~lad>5[5A)N-i $[胣ii$VhmV^n4b[״C?5w{`B7Os\l}|LpJ5R]KUyϒ;aJ.|fB'b]2vJ'5wͩبT))!q~l"cͰu t D\;Ur56j*XUrEl[jrC*ֹu,s BQXpu ׼>ۑzD+/䉐y@?Zx'@`w.NO7rt<=Ia'?Ex ,l!pg}*"SU5t%Rou}2JR'+7qr"Yod/X\&x<3v9?"pjm(=/U+ {L>GRi'y%qN&Бi*!gm3-AU/y?&X#( (@ * X)'|]lXp?Hkfs HS׳3ht#$Kɸ$X5N$hbZ1R͎z¿~wt? 2uku! NWh(|L:V`#H;sɕ,H\Ȱ-rÎEBi8Ƒp'`'V.bJU=nek8+DC# t{Iu׍17 !bN.`u!O>8,S,9WmoI`*%1%n0D;ʯlO4 '% DX3 meRгۄX$S:ٞZvs'u͛7}f'c̆D+ӨUO3- i!\V<hUɚ Hb3xpS5d;ﮚvZ4m1ArZVm["zB`ܾ{8`w`հ n1Jj r)2k&:Bb326dl2]녭\p.6_$HS[ {7vpپb{EzK&UUlƪAE-^#hqÕX[iXvÜQP|AZeYЍp}؃TE P*Yzp8a c[$An羉0j ѲԪ j:Iא}<49 {rCWeP >(c7-KpVی Xv{džךuhbWl?ʣ7np2)%JW1 /~#p˃[6TAw)Ƴ'e/\Y ?#ZLP WX6s/RhIVVR!~SNj#3 hp8 rfՆbY%yJ$FS"4uXiiK eL|h}/x7W;ͭ#mȮ_[|mJTH%4Mt3(TTS%bB!HW<;@1bW6|ADŽ2k>k]qsJW OA>7X-܁`bܳ#B>C8sPuP@ZΖ|wFB7xECVIyAURx!3bi!1ƻ.&Igm5FtLQ@ӟ1 Z%M;-ggs{vKa %LpQc0؎lut) Vb_,݃-l+?Ɇ?. o(jnoSīq7ZtN1€^&J(Ŝwo & cndqZO+Sk/{͓sBF#;kW6Oy>6 O'z =+gЀ%C:}ʫVY,[JTj,Iv&߂v$ fzǤ*<1Vҩsc79M: K3-@bY$7iG/kdJc1r`'ӓԕx9xXw g>V˼%KvѰL!+Th ϗD Oj}FPͧ`xoBPmrh+P-ZM?$> #|͟b/ɦ2ۮGMdIo#C+0¸0W$nGO)=j%Edbx8ur:qb+ϊ\'5*5eIܶS3, 4H7K9ul$m\I$i~5i"xL~xj*k'S;G|?FLˀcp9!eX?M\[||7' #UEfT:{(\UQᄆ(G}K!±^XDQdGwńtՆ:a~_@֍ |ofPOJbbo( kہzُAInr.zy g d`m˧>j:ʫX3-FS6DaJg6an? Ea+`?ՏLk&*ڎ筆`)0V6/S\X8DVUrg|=hv~\7L'EV{݆hBy{PD iZ!5Buz 9s{ y8On@#"HTP5d1y؃B8U|K=Gk9O3$]>(r# /r Hš>jo 7 e[Gg&C8]\(tfmk{Oj$wtnbxMberu@oM*j0zím>LAE+!_Fo'`Dr3&x)jʰQ3C!SӧuL8#a2H)#p ApwAA|fPB0. mvIS2 (!7V*O5*8KLIK~ }@̚:3\n'rPqK=fEb-djF(mjnV7L&Y./G a61(3mI.׬L7ڪ(WWDWCăLfuxV1<~Gfޥ:G @vUƁ#H8J/᧥ǵɗPf_wK4n87RE Q+$FgoH+b Ās plSϩ AM.bs0 ?$H=Kkx,hfBtS~׆S7[!s!Krh@d͍Uꦈpo}aJ~ʗYYvMw  +.kO{㻑ϻ*|ZGD4kXUխ댟BN#xBU%GfK ?>\cU* h;d: $A {# A3+quTn+..KGJfsː~!ps|53 OF3Yf!AjnL b U/6Su8GvzwW(WDn|Hvk&*Sc,ŕ$ Jֺ(.ū؆{qQw==cNꯤDN:d:Igt}n:V Oi"2mvt`:V\)zZ-ހ*Kؓ/]{fϳشXM{H[b(Ɇ[C ǹܤ+uG*." Fңo|gaaNk L.% 9|SDmY1co$=,r본|[I!km$t{R@LD3 A æ 'Fi;i*`.ܤV!SpHʹZe'l5Щ…^]}`D Qo;3FTl9IS?2epVzs'LKhz0ON *{Bѧ7%qVBhD48@{j[Ҵ9{2BYbLӲpL%Jn0nh$!ꠞYUftvNmA8#dgUKk!u|_P-F:({1"2/OX-DIrpe/KpnL QO;NI)$hxT/ņ3L(1V^ۃm?83YwLq3r%NƅL4 yiZY r2/ yAڔF\``lr qG5+`0ԺSl߫tAwEK.cױy%XprxqGHms{s`;F$ZSZz1kW{,BUШqf=}W`o+]}s^sv1"AXHUTxJ}NR~f469u O~t…Tx!b5[w8`^"S?KG &|C{0A)QNL\CSxGYXna-qEk`RNZGq$Ϝ 2)%"oԚ iyZ2҇K)k^nt7 ;J2F 6w^OlR"Qi:_>1妐ʫ뉷/\8~i,Q( ;IPP)7BYb F5>紖dV uUhh ݖtGyո7H (OEF6 >XUw1o_{RQ]vw>1, }@"(UdYKNyylyb\VBSF{Ԟ/Yx:$/42I Fߡ]Zn nyo^Rn1kB\4Wcea , 1w"w'qf՛ S5֡~me ~ȟʊƦZr_8Š~|SadrS$a<`UĔ{xq0A8(G,鯏4ou>=850J'6k:DD-a8 B]V%UB :+,Ož>$PmjSxȹdfE{ A .]$3a/e$%{AvOL]:f~ 5?*N8Ff pnSӃ-I@'N!.$@e8Q BgI]'3m_hNO*6"'D%\5l>cP/8I{Cաr٨UἿ9|͵0 ظu>¾گ:O<;19)jzw/\,9C_[s-=*Ý3 ĉ ݥRR]MRoSe@`͍܏7 Ӄ.k_X`DДSit~}},{I4_%F$9}!P,I>w`ItDvp1׫EJP9Vs;_aa0a>?q~H]BP(+ףdĒ;ެglSgcfk-‚XP$~DS6HrB+)Ϫ?HWަ y^f~e&6c)teII>x5Aw㢂|f{DJ2g]ky_2bmy_dtTXŊel57˘!9 Qy" +ҭaa *TA BIf%y| m~E}9irޠk8gp?ڝt>*@C8,-\YI)iN_BI-: U ؜D(L4`a u0iT]?cfF"".,@7&}|@ ʲb OS`\ꘗ;&~K3!`Lb*}:؄X$~CV(R|*?D]1Z0ڎAGn*/_/Y+ڗf[: *'p!ҩGOg>ޮ&F kK >P9:Lk+{ri i)xa)5ɟ<qj-b_E$}'DGmIOuճ7]12A2)9K*'QzH̚>IjEFV4^@pOV מ |޼> sߐqƏ$lIu'"^RIR "Pe=v"oKxN'ZhvjDyJ/)zH +֦,/LX+Mŀ|)owx.2'e. 5aAkA]] J¼N|m+M1AM۷̺@Sc_+q{4jCYBN]kB=Nb㱇eŖB ǦlT{aRYuԧ?veS_ӮCB ڍ* zC[Do];4][<%4Z~W ~|n*W~22Zmc*qIK>X@n5{D/lƕm:,n`R?|5|-#=UcjlCBc&SYRhOm\'Dz48;6F3x"[@`b#3H!*yl鏬¯ڀ,G'FRDwH+⇧*:~U'S4FC84aE=+[ci.ƶɵ"ka *^gX!f^{ew_Cp9@Y؅o\Ez{g BN5.z?D;.>GM^F LD:Qw`* -C|ДOș 7MP7^NToEe=2$N9#I7QUQ;mh䉐sU-rߙqw2{4~)OfJRQE']b΍83 (I4lDNjrG-7#Y|]Սa$~~*Vg>7~̠9lEk1vL@Xwũnr;gSM!Z msSqc1N!xcyw&&Iju8fe1>2(RxەسW,Y÷rnwuKy*;>{cɱUnEV:,V}P?V=ā`8TB.߶. sv~Y2"D@*pڍwX- Mߔ]j F6:TGFLEq%oatIƨx aQ] ƈ_I܌-cJ8" ઔ$mL.劍;k_+,3o+tۄ$_X.iqc=G䠷F8%KvϷ"~qaRE;{ٶ7wD1.6?W_Gz/-{2_$cd@/Ӱ[g6)C9j+*< K=rY#/%l&bm5שRx)Z+0OaL#uM$rC(HbUMTwhu#sm_&O۩ƀ[z+nk{l<YARW="g7;Khy\C֥|Ͳ(@ɯL\MJӄGvc>ϩImPfhcQ&81>a@%f5Of4/h)C7P4H}۳7L%z+ c:yeB2eza$}Ssrۖs{8'XIQ&FrIo;SbK]2Zll@V}Scmg;)LƜ_ITVwW2%ƒt{ά1ȉwdz\9khzw >Bĭ f&xaŽM-+m֥3fu(\* B_ .7ք]9ciQԿ:N@4vRA}賎 jYyVюˇpF{tW ι~[Ë'%+Z2Z=N|`þF4g6tL77RV c fE~by%; Ϊ'm%r1L7xxaJqi1a89FUl,A)֖_"F Y!9p:N:=cbщKtk{-Rp C/m,4p~ 8G&o8īR.]NE79/I ĭFb*+Q2:6o;m3U^,3d~R\N:T%V\vu~my[e1֏OS7c:XPDR)u o*(ܹL:QaςIE۰-Ca͸[83/Mfsc\d]3`0뵇p0DZ.RjLXteM#CXP_&FَEGs?f::; *O;pi1"D"eXO~r_afIkx1E|ie3OkD,vM}3&JO* E}y[K&<"{;=B0t]ǐC>ӑNa[|o}lb4ǎ3Gm)"0F)*glI>);]=hZ ;h3$ic%a+#f n\+o>x .yEf Wmh_dV1Ww7vv*^Y O8Jԣ|\*k ,EcWٱCX}9_tXOtiyJw5E%߮Jt0`@8H-q36s\C5uacrMs2B.\K:&B⩕ )L̢?vwٕқdBpL/JY n*/ďq'wY6wi#[d$ Po]Fs29ʞ{ 2#BP<(p_UURsSV%.Tk0,\eLg3Ǧ$M*AGY7Żbe[h.^.ORSyĖGlY#3gpg$GwI:@iՐ b9?wV/u9S%R5]~RRHj]AYcC׀!*On>sex\Fo huGfO9'g&=ъG w9W@>Ktl^?!mU B/t/D|zƄr`&f7PB Ytw=ݔ5Os&nhO=*dC5Xd*Ni (8tY@|,T+j's_gjnʺH\CmQQ.WGjI];1hGG;oIokbL9tZ1㧂%u|^Tk,ѤIuԅOa@EFSgH Ȫi8Zs<)uA$vKkk*qC$D?[2 D[-$ ` (zIԽ@'u?52d[ *ĜA|tM9ٶ3r(r"^ii,.xg&UXnZz) Iv؝po,j3XXk.l` RS7D֚ Z!5H2\0:  hp #! SHcܠCHB4u"U13't$h7:CBBؔ_~B(gwP?ޑΙs\4ZW$v޹+ rl >p<RPxU[Ǜw\Q=rz3ҏ%g~߹;"*ޑVs>Ä x` 䦕f1 t /)$A"o8Xq ,\#@vBǂ k :HغnW})iy8.|dJ84I 8RR*%*UHĵ 1uOxn PEc6#T@L0 ~qB U(Q)# 3%炸?>b Ts$EmZܨEk '/̄=1K%OVϽƠFߐ(IG7MtyW#20v݃]h Ũ^ 3]H!3bO|KW}pO kԇ ~JF\1šCQBo*r?HFęf6ϪqH[^ ԖS0:z VP-\lU&xnĸB O(I#Qf;<~[U ǯ}Do8+y= F;.'পBa)#N2B&+(- wѳ"M]\`Ɏ'mTOˆ+8ͤl 8/&$W0m.AfB| ylhhfX ceT0D[Ӑ9hV$߻٦%pvn ί^KxKZ7mZ5ʣݞܔ/1Ae-c'v@]yΑ6L,?A6kdޔ jb$'p?h{44.f,[%f8HpS^HO55^VY[﷖NoFNqu5m[53؍k̼Yr >9 ql0Q 7O+57NQa-%mS)!>=ҦTq Z0zSֶfEqYPh@߼ܵeM .Y7hg~< Φ€`Hd0:YʹѬ:ƽ'l<"n€F|5NbEFg+=@W8dNCCZѫXa4J/B(d)MU H$0 Kb|n,PRrُ#Ks FKʻ> T?5vvOEXvy(ROl3eOHKzaryRRNh7k` ːhIօM(a3$j[<أ q0a؇$$f򲳤Aߚ$^[tss^65J&>oQvc5DxޑR*]#7Ce6C-kƕQT1;F\5ndAFї[F_OQ>$Ex=oQB~z)䥵ԓy~mcYT{R_#*7vtq9r>+B̻+&Or(W'[53d's>Ba]s,dA,/xVQMմ̰'m+qy'ˌrV-2 %G{Tiƨy|vIK{f6Z)jy`@\bX.wW|q h6fէ&< $3|."Te,*}h&3w5c6Ne/s=T"X~k(nq!bh+wфp%ȑK$-žV"+Ivkp]$5h"بJU8)ʍ)K@;mpOWs3Vq`+VŔ(7 PjfƼnb0zhCoĜD0Kf Y>W4mBFԲ$|n]3ћs;oe}ERtI*5ޙrW"}崥a@n/]c< @7!Cb&7(K/fʁ^b oYzӹ!)DzrFV3& dI7M霝KieH7`ԤJOQR};L9ȏEhX;2*#qBeQ'r"F啃`rkټӘjFzl0tđj Ha.Nz ߊM0GM7%b~kͧ6U _0\μ涡 X*tsg>5L8YYcWR;jqr9'7G{V $*Z}4}hEGIp=l("[Ha.aQW=[݅ B*!S0:ضXM{ R9ؔ]J쒑/{SV1ڰsW9V7vty}<3쐚(d!3 To6RLj%m;V!U_g.[']DElRFi ,3mx(KDp҉C}eOy"TTkԲ$twK$h^|I2q(*h=ا#m># ; jܿXkؕd"%=]RǂUE˫oh2",Tnbtzz/AQn2Pվg*+.&e\A>1Qi2ܑc}b}4Fw`F#'-謿Uyd\m>YITPDH}P\vI9H}ҝv9qfseљ-4l( 7`%wO FwbAEԟ4U'dot l epى϶xyk1;,KK+lo_frQ()$W( 3mDoյxZJ1^%#@U\\_QoP+zP%*h2~ɢp 4f-- mcĝZ{jt 'E Z 򬫘++!-e[ Q6 ~-ޥ?;->D`9)^hC~vf\k.0["M5}YD?"/I$] riw\*=T3S쯯;4W8]ҙ4*_nq|,Nmr[g:bE+Djfk%RGI'VR, w6 altpYo&ĆIJ Wl& H^אEu H:kRc3H.N9ȁ~z9VDHTIKuI]98l- W jCryb꣑7!Il^(!>SjrJ$&V>$FwL *Seէ!)` <0ĒNPN\Z/k>dX] v%017ͽmwt%KF[˦%nq-†3\a v ҈ufբ܀T|ȩsA{-=_T 5 =U=\XJ^ ~Cl< ѕ1yܮxXQn%`;\9)`0ΡϩL ;-]1aOQrႜ!?Vg.9LLuoAYYDfi$XM!rutpA I@zcf'2""e&<3rOk@фB/cM|*(,gV$|`Cay 6OE(t/8(a$^0yz Їgw?*xaCU,]f5ѿ%̧|ک/n2=Iץ2/ujDjնxOn%U8'h'cx}NKq`bZ%e' 8*Y+YKkm^]tb\ d]ݗ/AoeeF??l6YS شyzO<ϪzHHdP7牺 ǘ/^N9 Z\70*wCK* i/Hzp9Wl,fq}bGmV?ؼk\= m4P}A"UB7]f :քI/ #7 9le&R".[A0/P%>~-ݣ,k!Y++m},~Ht-)G?{G!z~RVAuN q)bq%n'^=9Af< FnqJ~RkQ'B(ڞ=?!~_ ɷ1a^ԃ K<5Y^՗{՝͡*[gAxyH3ފ3uߧL7PVQWtM1u?s >~<&5O:t\`BO`J{>ʚd'/$ }fʲ19| ΍+ 7HƞϛIM)m[{f<]Ch-ˍS .u {&Mkchm%*cD=q}X Pn}T2-CovT17%apԃr1CO'}f&S 3MI/~"p4-!W'͸o{ʓDaQ6 w$n ҳ bdJ4. D+퀈qrs' E=1{hh@=QdbL)Y-ߊ!4<u#xJǚЋQ{68SX}݄U쩧JtIX:[Eϻ݂("x{4-R /L<;V61ab?s6cb Fb~Z #VN86˷g_BǕh6_m6'Cݺ|n1FͽNLaԞ=Yy]Fdd&ЛJga\,N J4"wѶ"[؈U<2cd |\߶[%a"{q\'QjY|oi`e>'ݰw-A:yTzju:%n^05f KU/ kW^<1ӡB .:MS}V)=nbn߇%MVQpW#HzpEȤ6f7v# U'"*j5n<F/G"XI̝; ڶU)*Cr .ʆͅD>2Ġ:%Yo=85䤭]7+ɸ;ngDc5V tT:Pdu)͐ \ p0ˆFk;S0#ԛUj/cq0,Rҩ[[^;1X%}A&1̐7kK9Ncײ"qsnnNө 7LP X6X@tcbT}v.2:`c2 'y]QGQ7QT{^{4nh7o*/nˏ[EL$A298rcQo# O%qO@FMv\V A^45O:\!J]KVӄv?+(KԲ`Yi9;SS &}CC7({po\DDtV2ġbbë~Pؠm˸4;)7M`)" ~<W;t8ȟ]ZX EʜUeB~_d4j2Slː F7'd޼bGGd}~1z2#(( T312&#<˦t7YR0+@S9{9}B68wK^14SR>fx;c#n[qRsb+]VQ@sK#K1>s8jj>UehM65^HdlfmpACƒtw!h2G`^~pab489W6sl:oGA >L Kԛލgqzw_ԡNj_A3<ΛENz$ʀ6K#k36EW{ϕbݯ 34>_qFۧ3žT;&xvK1[q10fW2>KI_,\}-lCps+ NXc,RV<ɄE#}==71AcpX> I.(w^ 4B^WJ6{' -"oQ@p, 4R6Iu ,0Y8.Iԡd[,1j)ȵ>GJ`ljWw ԇVl,tN_womc .ԐtJxO9G܄cmNV2kl}~U ӝs t_"gq 's)g5n2tRꃠX"e:$3rH}=l#.?2_ӆ}oncގtPΗK2uZ=<*Vc뷦LFu\6=lM}J)jnkPrkME7ýg V ~gm;IXJ Zg c$E\P}rsKUŁQz!yeG\00:K Ӡ?e72L29">)p[ȫM7ƜȝK_!\q,܆ήxc+F 6tV**F`V q%!z*VUz'qPkXCs'X J>Yj4AeqI#:?+,)xLgPfNMָlMd5Ce5d_@ _*;UMe8uGe,njXBtODX6+[]b٤fi\)ɉlV4a%?fƓF7\0݃v(_IzնA9aG׆' vcQ$}GڮQz5ä8jFXq 0 k 4HhFǑϭӎy)%b@< ?LuY0n߲߿UHƗ޸eLfQ7#Q%Y=}\UMExL{E&f?$ʇXA-"ܢ;,v!f v1<1ifh!?nuX 9ق!IV VDԢTfx9| i8)6}ٿ;*LZÅbJ*iX]a/Kܻ7z>bi#yL)0 dDk93Eeo\5(+cYpțO[,WI0ceZ3,ž8֖p~9NԚK>YT @/B='K\΄\N`1L\jؐi\'6 P~@O6e)k䇔0zRD⟴- U0B[^tWwY!( ,5KLENc#;|ґ T{Kљd-@*w~'7qWfW}fr u{bO/sci?Z`uAuV%Ԅ@P)w&޲?VB&.TJ"`p ;hEs^kuVF*LuvyS|o,ldS@vź8ko12J!6cg6'MXQTX*&) ƳJd[2}:5"v5=d&vE%"aO֚2qfrxQo'Y( EmR>?I A g58V:/ >Ư{|>Tްl@-,-KDn@\N<.--Yie`l$ ILÔ UgW}ujATBޙ⦭p㞒 MoXF\pv&{e_2(x\ъ<*1z0hͩ*<-\ʪHg G Q_DӚiOK?5Mjg(ZRLj~:l cWOs!@B8|{60`s~O֘2[.Q|04$;s 57Hle9&.WAcTT^{3<5R?K5n@ު|J r+ٻچA|C`ܴKl u>Ĵ;Z:'0G =0ڝ`uqQ [f2ȟ܉1RU_ÝIf@U\~\}?"p:Ag}r{4Y 3gٍ7͸nO@;$P}>! To])yEXI0.i،(jx!n.lLβpFꬁ AAU~mI欥ާ4*+CV/?>pRp6}a5{@Q@QbeYl[g[޽ 1\Wбey@ ?` Mt1]#Ɗ]+O ,7xaoC2K=7,j- SEVHuѳeZ&@QS+0'JP6 ƌ|6˧l}u*M`Rr셢.9wr43"ko567l24;#1jN[ ,VLV:SHŀ󹚫_Rּ=n E~mk6 `K=ZQdvOCd Kj#gMbZ(5ēQž]2lHJH= wM9$ | $rk;Gn<%/jƶXIW t-hN[IYiqݠs}^Ar59l"{L\4Y6n Ux%`bM~œwDꓱJ Om08>7eN~WsM\u3Tԩj}I2Qj P%rQc~eBmB񉊎YsRMUvy} [fjsA˲mY@j67Lu#\00kPN08r¾DWf B>'>?hƫG}IZ!_Ap|aHeW, 1BYH  atho&ɪ+V y\xl+U⊲rֻ'qGJ9 IQs#Zd6t b+5U.֪mǨ wwȂy!UjЭ@8O<!|Drj:Ŝa8rPPb~^m?jStɜ_C3\V:<(u,Lq*xG(h!];~Gх ˙z\ڜ&Fuܽo\poZٓdXh'_tC)rHw@{hӷFLva5q΁J% jk1, y碼QiB3 76]-yBڛaVUK$D' &4 Z*~WLj͙Sۗ4}UG|@3]FҮƌDWx`u˞Wb FNTt[~IgnW-\Z @%Q  :)]d]`4T0lJ͒еjRQ>H5|C!93@gR[\0~ğ@40$;"Y-L0QpJl[c=BRws=:3S=6UrŰˍ* LgJ~_>PSE;:^m&"<+G|&M?vY ҈m=խgU NԆv)蓎H mt!.ߞe>>i)-+]''/XF]7h/o̵עY"Y= &;|L^]nU}DƵ4[,mm 65R#*P /pKb+&i!Bjx8ȆChww;Xi8/Çӭ+;R\I.ڂ H+B9W58 aT'~##a=Bòs%ڒ^Z2W!U\/[U @Q+~:H9%FdbtY2DaOq]@#P2*_n'CP:_{kn_$3n'oqţ;ЙK)C<1v?ϩ ~I~YSqo!q !ߛ}_hJzJp@^J f`h.R->w` \>CgE-Y yTY`R.*CVq}ht#9DI*E}6>*@6_:;?]" $Bk-ђݛ2\gJ= _A'V!=U~:bDj.J?v nňrM=py`ِpo~詬|F.zv'KAفC[|][_wɸiS`@(Wx+aD+A7f7JF]*&=fLܡY,0#DqRZf&GJ^zLtQF~'Y{v>d MbnWR[ m3Y%=} {v>>ӓK[@[EiqEM 1XE;lS26ppUf0F9RȦ;- @L[~ ^2Oa`bܱ↸D)0-@N@T.4xu]E%/nucBXlK#e|%I, .}oMf@fǫ4dDkrTt$ce#E*js0˟ИR>4oP'Z*^MC-jot;v2K¿w+pf> Dh S'JINIek`;p񗂈 hF;b ]=BaϬzwF%Fڗ^`>Ơ-DQ i96  -yޮ-]EOnU,ϪYX丩,lK6Zl}1ߨz/ݡ|Fuocrd㚹v1  9B=1=7V8^υje| !Ҵ#۷P˛R֩S;4uĵC9FWU̱`2?thx(!z0?Dza":睻pB^O#g?Kk^l.o)eBPiuV`tѪ(5#J^4q0iY[7+hM=llDhZ_Ո#A]$Lc4}nC ]2ypLVKM}`O*4Ϳ|Hj4J*lTant!9A rQF:y91FiW%P[&`Q/P\aIfV]I;Ezp꾘/cO eV@AyC+jP6mZR"Tl5d;LdG0'ɲ[_dmy1vD(M;|Ta+T9ŲUi mzÏ[v)v2/-}+A:BEzH%t 1NrTAB[T!X{CoeI:G0p|@*O-$A5AKV+19ͣ/8kyqw:/^'siUHz,uUNP[KD.%hlehEKfM돣pMXH'laS$f:F={rz6a]WKI>5w1tfg̀Zz~m֦7 NM0ϰ1(~ P+ӜzQ#=\ϱ,MwuN6g ;(ASf5Y?WFd=_E-E z+N`7|KM%H\E@:ٱ4݊l'p,1G^4EQ1ES/ k9+]א cj}}[X5X" O )8MydLF#Z^Fg 2iQ{2SmoEKQ& 4*0V{˪mYedc]0;#G(Cy:ȭzD `$ʜ!Z/=` {,77f8?7O0QbQ*3Ko15qu<,˔ڠ7Zz߹J׊>T8+nDsJ6(ظwv ?@yz\΂%;ðd9SfPޡP &jѽ%.= ]aL8xwhW^ ^@MN}_wğ6˕ 2\ )[w*fI}]N̺2gdْ(^jjrʷ!ޮ%?}֍plzihD~^r-|SWeF4`㺒<~ ye6ar~Տ!(st_|ܕ`QBbVRCo'{_u$Aӧ0̀}WQ2)~Ap+ݱ['}/pQon#m'>0F ,ե6/qAS _Ii6̳M8fjFnrz ,";x)uv$O < Tū\l)4dzLiy!.3=7 Bo~˜,ZIb%SWn݌6r18Dz .@G/TY&P\+6_TјҗΜ!N:cNĻQ%ȴC~ح ʡT9PxVBȡ15Fjd vUkQTvVFI3)[.$P)S ,0TQ\/09v;b42[b!fvxު\K8HՂ~ l{uu"O-1kɿvyu>kNs6^ԄRb,|)*xߓ'l2y@$\!D.u֔+fMʹw^ۤƐa,4ݕk9MOVSRuLtuB{05jdH19Y:W+C9,B10vCC[Ahܠ\4Αo5Qt u,d{0@W`BIӛX:lhv5<"Tx&`.GHys:Mq'6UOעGSl24 bþ(eM%=z}$*=cCeu'f6g$`q[iOJfQ{^4z{?oD @vZJ3Sk0dhJ6uĈ@jQ. 5n}B3uW~X\! ?Ae)\dy? ;8I[9 ҳ?Y y<W0,vQC5I(l/Uĕc_'@꜂Li)V[ `srU%hKpw)!H!J6 /V.ޓH] {j?/|WHϴIJs/Fpx[e^fj92J`&$5j,2gS>>J_2GD]M#l\&3ccNI\nW-dMlKϟZܸ0"9JhԬQv^rSJw:d yZ4l'+nس@5Ƽ1>Z$'ҝG(PyZHːuś_ p=K7@U$c>N̉5[9Xx#zTS"6\E=%Lt`ДHΰ S텮voJ_k] е4t@{:D& {ua;jH/MYnV!NH1gk]V h0 К7+ ,5Ɛ)V[۱ `#);OڟZ N-b sTsQ9k"ƝAP`{૎Q3 `o{C e_Uw[3:JGN$"X2trqq[ Ͻ; :OW 2\ogŸ/3? uo>=HlUq.*=Ьl I|~X1w;?R^RAr6.PN$/ b+xuJD8E^ՉjXyUBo"iPTBy"mV0BBlE!=ꫮesِus."^EkFbĊ~Rr@Ilr6!!lK3Cp[H}Q㵅I8sV56"-Yu̪3DwdgFMDb)ꏑMfzc(vl |_ .UNUcU[)S #.7h;<¤!щXϥ0s{3{yPL?遢+whŴ7ZXD،2I5aw1 >"6T,T Y:RBRWex/@v@9J =Ckmq0PTA|xQƮohO9 4&$&HeY vC,Yf#;nHo963Fa59KQ(VLi>c*zE@""B3w쩡x[iʠy8lfWV7&6FA#ڜX xKx;A+ Cpw އe,8dž CN&J$@ !ab0F >׏RͱWҪS&?phPIHƐFJykoa>Y8u|74Fgաjy^y4<8E#1 l=aq15Q5|w'^ۃB 6_lYCu={i1jj~v9u=Ir3 I"\GHk_ӿ`d{ "EPͿSR?Bl]ch/&Bxͦ;p^O̬".gA pP)z.7x>oH=hp_>).ԍ <| 46^?e_֗{11O沈nʜ`K@l6X&ܿݺAodvV> džaF x8DǖD[cܰNTm N˙}&s *A;@Mݱg݅`V3<,{p30*ox[_ o YoJq,"p=/ױds9x`\@&.%z"O9acORB&ݎ*)+ea7/=;cKOųBߏ(:i]"wnIgPf0V)w~!EqhbQњJ> ה~MM&Z5fyC|#kЙnX![Y,pvu`a=m~b:*8C*y0ΊŭY ke£ _RVHmL1 P̌WoXzn#~MLR^66@޴{΄asT$Ia|bOB@+F,>iqb%vs|H)*\~hꌀޅ@QlcC&;V%PK}Mso 0h-WmQ=\u<帴-qq{8E̢@<ݣGCJ?~swN=ܠJQgvKe~@s{vbç$ti؂@jܜmV޴ "XĜҜDkpw=&ijבl=$u讳b}.cE*Q,0֋2uqs'wt EX,_! &g&&UTi*jG^]%CkzRSd Xdz6SĔ= KBQYyPGTuUFTku֧kTػTXy#WÑƵ581,x'D¡p,:vŚGU}\_kiY=v %(޹xq^JC 1^u(.4Qvv|':L9FT57jC&ë'9WeE{GgwH2M,JT%=?[JͭFGF(cCHs6iw(>gd-G s#)RJ]Hn0$7ۄNiFZyTzbfngK9,=*^c@*Ȅ9ɭ [86G\'gy.z@DȳYOOBR[kRW_zaeL肐珃#`;=)ULNg P3\36 >Jxѳ pz@MsΒ@cPv-&s6kgWsEJY6N^LӴ#}#YMvs #zx] /fA94~P3Z`O-ؚ4pomzZoUyn{xЅhT"H;2nzYY>7i%lKt[ceN͑G$ʪ$nB)ߖ\gYrcÊPQ5yfmj~BɊd/΁D܇s$Olq#X5H¸y>ٰ 5r|| ‘58RiZYtWuMƯNҳ>T }P+_q tS8_Zn}g^ 6 ׀  ,(B}:+Msa2\eomF 9nvMƛU}ʂ8,!ԵR"{ כjP9F"9^w2`Aq (:?E|5bK2=çkQR ޶ϞlbZHB?ҤD`s>dnGɸ ` `g6VF1B5@!op1RӢҵpŕawG?v4xXs Ga_ "4;^XEbY*Nn O<@޾ޜoJjBe5felja t5jYwIγj-9/fq_fu:fu1|}a#ླvur8N 0O5H~3s_u̶ 4-s2Ib}@49c񋽗4_͹ "~~OV0"eha>oMP"NtT9ɀ"m0`'9e x@ UHW0zOB*QbsJ)M]8EↃ`}x{9s7Ha>"`ǃ:SU|9.C`N mHW(={䚀JпMq:Z3}v&pˆ+( v9"+Q c69Ϳp $9$fFCE7K3m?k-{qWUɴl%޹ 4/ W [y?/'۷;qbph9H3}C / X[e\%tvQr 9qCz4~63{YnU]BBpSȐ,`Uj_twzXOۚk*ǡLhدԼ!d@̋GhR;߻obYoB.P/ ##Lx3/iLZ;DZnpsSPEx٭Oak~^8wtX.DCڊ{\y>3dYI -ί>cW@Мx IhSZ( َni9]c껨 02x (UoB$L.x;"@+LisasBMzU]w}Rh'?|Jn|o֕ppվFZ!o~eEbt]L;&m|`ۍ (r&]ҔVy@C\yZVgC6hq{.iuڰx`{40x8:| \}\͙6F鈩9|V:'׽Ap^⛤N>@e Pc=FpY:ryF*F J {~OGL0f}PwA}*S.ov&-l%M ؊GjRr_ӱ &;}q'i=o*LG-+GXHœ{z77׆Se,Sy~۝Wlɴ@HYD*m du$ԝL}r=(N^(Ց">es$%iOmsUp4N9M$ySi7|R-G.]貒}2ď"™m*īLX4Y閣N}6wuMHT~Yeqc'`OJOJ"w@k ڠ{3(l2<جCXfSlP]< Chc)r5-\ C*6,Z#_\TA &a2Dt/N ׌OT-Qm"]X{KےJn+ *0Vo"0 M+!b - 㽳xplM1)%]󼝦TGM^?M5S,1UnLMs{pZ4uE+%J+_#4]\8vPkܜDΰwGŅBT),o-,ԍ-:1|fZJ?!fz~}uI D85;+?E:<SmuN W}45G,ƃM0cȸ-;½ Ska>0uw1aOWOsJXe\!}eZڥqy zy*xwQҪRU0(m` Y~i{֨hJs&AVgNrrsMeU:TUX/K@Y^)2:W7Ċ^&zoTɝ74c76uNO ~m\ADٯ٤YB]wi/B|N "S6cڴ#_f3[h j%QHH&1k#`SQM\XY: p\SH o;YF{#7!cg.?m,_14ƃ/:>QYBJ"C6>⭘oP]mD49Հ9qǩvst!'O`\bE yIC:|͈dn%n ϮIP)`t{&L7YY0)[PuJ/}^[m?8- \ĥ=r4 8ufx>^yB\p=2Sڽ4Y6hM܋[wV%`T, yAw(==u!q3Kr%x}"($ŏU;MB9t5wX)ۖ'ZjBE 6ZPc`yw:N㓿tieF5}#P'csaYq;H<6z 9%=1[<6 UI,~ VtY$(o;52hT5*5brl=v;}}?Uv* 49ݴt^溂52>6"'_oZB䆀13Yz-r՝ED:V@5;U lp,I0N#[95iNJ=@࿹;5D~LGkuz!<j&NI2}!B>/A*8&  QI ǯR>+ŕxd%f7*7;h`BLe~h]t˺W9SŜhJ EOR߰]B:灚sddN0[]d&}zVs}#QQM"0c˜;eժ' _=I$K|aϐoF1P'2Qek{w6*mԖw"?g'}h$Gco"){J먺ϋ-nB}): ;S$+qV1"epIͦ OUT]Yjgloٳ9YDmq%ruYxkyҽ V^.#{KL<-6]mL4fB-YtNNj l)JC* xOOc۰KÃpukHASh׋%!g^nT4 ~;c#][[&&&P*x }l>4ʹ`ottHD팗Re9Jln+09a?ZA 5 '~i/ l'?u'*v[Kۇ]"0#3Jύũ]"ɲ({yY<wpqK?-En?x HnFlPW~gs;J"18YNI&k/pѫ4^M3ZT>+6_ec)"SY<r:(/= h{ټd nKfSJ؃ Н3aUΌ . x%‘Ze|u"V\}P&)?$eq\ԢM w^ϿK{ɒ·Uo\N1a9 ܆ Q4 <K_xyX nmM$+nsųvAiwU v7|+mv>W]N(? r+F?tLzz 6[J3: !F1m4~ѥ*d^{z䵲zDN Izj-`҅CJU>5i8Ȗy@,}΃Ջ(0Eq5j̱{X.nk(z} vHtC+_,gDJp/}WXM`E\7-ǚgLoKe[}VDy)ٛ3`{$4M).B^݂w "TU$kX,ؗ L,vNQhJ(BL02K5b!?ji#n|Wq hGOn89 #bA#8Zv#_MCQ.spwg-٤&q_M-( E e!1jjCK}@THpīY$О&{qXX'uaoFR([2yZx%HaFBI 7!Bk`Nb)!ȭᣘpf'G9S`v+ Ao>:!Jٰu^̈́L|Gbm uc>~R%szitճyȽWx=1Z*M1U Ob帷*q?R?znٜ _..[09,A L3r9V"TKFyU[I"; 0&lO~c͔A^D_FC~M񆎯u3`x!*p#h>j 7̫bM;\zA% .MО3-HlL*7W@iDg+>:>AAZ!VVaJ96@x*xaė(ԲhZ4rbVJwe IO?cw5ۻ UZԆ[<~@]d\QTڄ! '=R^?6W ݛK"O +XZs ٻJ,j<SBJ:,T}iwQ(y~ Lftm;;h9 LZv*N0+6Yq>ηI&c7ԴpTomSgHf01ћoa>|O/UI9k@"tOF}oGpHM\bv!DfHp> :W5g ,g*\rBҪ)yJNՁZ7p7fR^tp1F_=: fgt25n& І0_1r'E QsI (#N9_O!:5ڪXm 's‹;6b8eE$X&{\KWW1E+= FPXQ,(SMKu"a!J3o59E3@1N19&}QNwflGv5H.X/< 9ۤ:wvM= 0'0sv4{'@@STXkޢmDjhu;۞}"?y{onu&3`}CvemKv3_BY=RVu]N`'c;o8d.֑o^羳m RX}ZCrOV `#h,MjBFZ4*0[! a8ݝns\sLAhcw}ݱѥ;&?RgXm6ZEz_'+ӭbVd ߎj+Ha&غh oCS-)% emзL3_ݫ,Ļ#5Z4w؉L^H.$طGUD oNr۞تB{:/e6نLH8Ϥ3GESăn}M( dtY ![N\m`j=j/γLbˆgtR, :q?Mҝc y5Ꮲ>{[YG%lfPX?ɸ D_kh|6).];GfĪ.f:bX8 a︙R@ Bæ.M BkQ 01s%Cȣ9gMόVRBCY9w/ɬApƪbAyh-%aK5A!e1xo5e s.a]'^ %څMMdyNcrƝ0d2[HJ&ɐ^VKg[,"5aVV p9$i8""?^ȋ7=GMh(i~`CtA޳x҄oi IɃ:oT'9&Al-L6 1(8O#+r 4Ղu !B3ڨ:F=~O[6EJm_̃@mLk>64Vwe-y8t[-?97-X:f8Exqb@;A-`4fF3bV;8j/VrR8Ir|WAp9P6ު죡Q]ІwXMZ"ZsZƮ%Z}wӽ6vPqS5V00- pAK9dqt؜H ogS\aWSp#jS6|Q.1n,%"&0?*ve=ߋ-~fCOѹ ~*#Wv^&=rme`/|]ZZ=Po3My܉qWAlU,R|3zryGӾxiB&~[-~q$ʆ_lb ܐ^X尢tHz" fCR|I>4t͢vzLX9)CfoBh:*1nݲ0=n"ЎC5֦ y 'c~"!ڵ֜ib"7,;ܵP [}=AϼPw(-3͹\KЈ˄"ρC%O7f@jmKJ%oNͽ,ye?v!sVbu{@&,S3 ;;.&ͩ =C{v6*o9#(<W|QNzY, רA֊q1[KGb)&,_9?,8%|Q)iZqfi?Ð +e|'%O3بdbC±=A=xfWNW^Gp–\4ް&~Q3eu"<)j`o? Wr F("=*Jˮɽ}6/dhR4.R<:K%oKܒǩKãQ>6PTTQXh5J`92J  ?g?%_Gyim.m,|6bxx(QWܜ $͙Ă s3fR`/eƺm0`G4n\X,,fĤp ZZ^z. BM?\t-*ʁH4B6Hv&{D16;o"CfjɄWANxdXg?(R+/܅[uh!c}oz/a j'S۰|JW ڗG۰'>hԕpGUEk p|x͚υ~J 7-KڕuP)Er'l;>]T<z1I9>~TFi5S0eh (^ڭRE82EziĨa|rVB&CVYKN^1Ѓ!߿9 Ñm_:$]t[X0P;Q[)1. M:2&  ̟O ZjTB;a;iwǤZ77*j7Pd~E1<6Vvu5;i\vжSRms<>[G<ȞR Nox\?umte,EKӈjF’um;U| ~*.ҕ|rl/ ˉycW^~ e6$`dŔ䖸;D̺*ēr\Nn> l_6r% > %J\=G4A]Ͽ@;IYCjw.)M11r̳/uvLUEIvrU~BjľT75V­caM1-l=)fUs5n*߆ ;IP143P2n:?!FMf'("60w/-Qj1Ư]0Fᰥ n`$o(r<,?fK)5w+ERħ [*HжhE0"_ 67RFU"E#BMͰ[F2@)/XM(=jk%\]>S yܽ}lmcQ2`_ҼȭO~gS2ܸF\ŵϯS5wCa}e^lg{K0[ ]x `ר/հ7<\g|l_x*!:5Hw:ȓk=OMY$+Z:$͠NkC̉LR;3F'ܢd@#i'Mj0T$mW4I_.yiuQp"2Iġ$s8E ˛"5Nbt~cj3^)V&tPR7 0?u7x`Vێّ:PtWA2X<&W7̞ ?֏AL^5`IW;k7% S+T4ؚ >hֳN  6HnO]B8Jƿvͣ(Z$܏MTxLwՐ`Gs(tQ uqUȼ%}vrCȷ06ثu//PjLK!Ie37Y_\]_*K Gߜ]Ro=2}8 7DwcUI_Ku?E{焩FոCx{O YBBfhf-c*,a>[CaH11ۀߤ){eNVeb./xºtw NюsRH:' W 2:B2޺jwL Ȑi0?/ il->K;SgSJG`1R!3dK›!^Â_iĉԜN*2jQ +2FDZ)B|KV=r,$$̌RqMF:tWD*u(ԵXw7]N\YcO(aX$l0ʶ k3i=4֪*$l=Ҍ-JǨ,&Z8oi{vmŃD=|I?>*.y4"/廥 qp: |܏м+.㚜U|: saNք6\mpL•K{R@[uhr>u*S]53km< ó2 ]IrAo.=bKV =;kS>ƱUcz85lq}YF-yFt^#&)!mlm?A3i:8 RV])34escXXJ(KBCi+Zxs~949 똂A O²Fw(pN&ׯk** I`:~$Ʋ)3j qzC[}d~+1kQbLޏ ag&ґI i0L1Baݍ=yEBFLȝuic EoQyuElIP7R;b],*b&l" +۩mnW{.AϓLkA`JѨ˜uٌ0Xb4Q%:Cxf{Eݲ/g8wXch[8^d?4-EfUƉ/ɕ.s7"\0}:`@kP'u]QMF6G)ɐ+5+kKŲ_&:>,Ž* elpnh3s7_]HVr\BuՏ[u RRRElu\\ѡ4WZop\ݬG Z{A]:PY|Y n mG-ؽ_?C" w/ȣ0 vIx,nX>tek1աș1WC$J"/"p]? ĆtyOC9K"12c:Ze6CxQ:w=]DDW<`NՙOfP)j')3^1\nom%4g u4ǽ'+șKX->E Gy]FzH6+/$%@^{of~SSZQry{>}(F*L[3>'1|+ӄw^;`+ʏɂ鴬r58lR#| BPiڔtRuVғU:@0$Qzz~r_։Y'΄I2&z]{ t~C[)ͪ ]c=X}XrF(w콣&^j~2-9i NyIөpWӏcY9`vDDb7e `\u:.SKs|!~ %z)%7q3=b}n:$ (Z!"*ävsmᣓ:bySC1vЬ Jy ?(CeL4iNҼ;kV!%o](}?UIR#R\7:G[o =Խ0ۣ X-6wY/^ c,ΟND(`t!;ypAR] ET̓qzn_sWxq{7/CbG]e-8s;x.޷цdP T%$qEb*=}$7t.!8 &dSp\YLDm{9 V,nmnz{|a sU҅dk&<$^H8EAMԀ:YR7cx^%8}8^92Ї?s+9Wh/xŸ KN'2r} 40pD#5p$)3} )ě"7̛ZREpwSMm,f!+ޮL:G v|5!N$"ѐkJچdD$Fk[}yΊa.~-,K~Bh`]nq)ө i;.,*ED[4,\2z'.STx:h7%Qxc $<4U9˃@$%)k;UA~x6\5-4:4U) rYp%>R7pHU4AlבyA(_i8J=D1?Aс]qK_)tY⃋7L2>Wo `M,@/Wge%}޾]QW?֣u)r{QfIqnOD5ߌ)28K4ǒ,i1jJQ%e$<9_b(;gS? "GɃYrz LPR8}wI~Ļdrt lm߅2 Z!Έ{O٧at)'DsHM-PЄ6UeMNbG\ި4$J?PTU{1[?#W ZkoZς+#$LϞc>9嫤9]6xT_b:ѪŲjho^9^}V}ڇ\L')`=x|Y։1?◱YgQ#͂FS'{Hr^h_VkwǟΘ@Ŭ~DrC5Xd O7଼egB`pDmwM2A\j*v!v(zvKoK]Tj}y?X>b w[NLZ!c oVg AW:aNyI1d#$vt({ATW7+F.!>J @&ihvuY;t/jVI*VJ^׀ķSvTZc]dh;c8Ť>8RmK9W5< LAa_M#  0L0W%ՈՍxރ.aZ- 7,H$ rus̜0(ZO°v߶$KEs~WΏ8@_(@}`GnyYzmpa267@#b_cuW,k>4,{vx.?7|]@wG5iw&@w3 N.f#d -y4F8]7Mo?ߴ/Y"+a镩A8҅UB$ff339au 3!HQx4uJ5*nA`6[cs"+?^?Qhn=H\Z"eh;j=Kp? SKEa\4y/L{Jq~\RL!]kL "~A.M[< &_3.g,:ffv-[Cn 3y]H99i]pankܿo\KX5̣_lv$r}X K<."RԮu舁8̞5s ) a3 F%ua2B}ߢ"a' Sjt|$C'@yB'ߓJjN#nVڎ$/䯡0x4L\jY/[b><M-K; )G s0xlv}ǘF'"nU)enN&dDeWd#yGBlwvy]`f n,MV.v^Iɯ@y0s]t\b wfe}5T(&Tn|m$ q-6 ib?2v{%Mf O9*֪qr3a rITDT%ʔzH $ qHHsʕFS!7! 8m_*Ch@ δÖ|H)L j\s]xY  'HD;ЃK_:;RKXcяq$ p- 0mP2Љ#f>>mߵ~QrctxX_]8?c/ʛ.%Ṯ/9"5q}L=2O`rw: 1{C3UytugXIy\U{.mUS3WȐx}.@VgQ<>A5?0?ʭfaohU3!I3҂Uۋ.jۜȟ%s_뛨Nc ?DaX HAQׂF£j7Ҥ슥WѢd٫qXǢB7<%f^a$fa.E(߲ uFko1>_c} +gVs %@b,K^#{+a`Vnui#| =pYܹ] ݴy?1uHzzV<dsQ:zş Z iNQC(shAqT6;Վk&(q;+OU '1(+kB1y_p`2_F#>fY|G\ܬ8krU#:6?eicEZYrn<T^RAm?Q%*$1zt;BGklÕ,Yq|' 1A1ξ(nvQ<̾]մ}"pE>),9, HS  -ݒl` Y08Z? Wa„מ(W?9|ML=RX ƴxV"JߔƄ-{n]-Wj8 cCdљ 4VRQ;g~DY%(+BOP.%?לXsDnkyD,3JK0.*U9ff)Qa$Oyΰ{O nq#g#v=|?*O8 pg!m"N:ɹy?^JHoO;|oe靅nqs8x12tMRH,zƪǠ$녇7R^TH%(artRbɌEGV䄤) :vٌIWDM _Im ̈ij{Y;Z% 6Xqk )1FY֮NM|ѸW},!WTHhk9e`?5Z2 ǻ/ˇ cW_qtI7"ۡQJdPl¾MM%se [X> |.-d%Ot5:w%%0JgՆ!!s?ى<z˪ d}>Bf 5,(%g()~Ax-tJYzdjpWPq}1bY:*B JJme߀ Zr*GjqH}ty֤X߬71J+hu`6~&9rd4%&ߤW.7\-d!,EW(J}<B˱|e<嬔Q33@xյRP Y$r_b'T8N^c7nLި@͑nX2 b=nIL|sy`WE-{b@[[+Y[)ޭ.JǸcKAsPix8*~{0k"O~4ik\Lp2dʷ[AChuۓY ǭ,cr~Mp-`,𬛜]iIlm7]H`ҽ9%VRY#סft"b->HB V jXm|Җm\mVoׁ^y[F -i8.ש y~ QwwbuiŪ1d "xH !{ŭq"znTIѾ& UaT*jSCbx&Bmtˎ4$W}=RDcG C@޶#_aU<^:C. D(`LūK ?PL;Ĝ- R>Z/$9v$Bnywc CX[V7^fRG`]jaBUy6 fOIqdõcjG 31nJ !xt2`RtN 2 -ZN,(*9&ߴ 42' e SFIՏJ!NjF_5ߥl CJ\̅ɲ'{6ΰۧ00\ " 8j2$q8_^,闚bC5XH1lq2cZŒ4!mfA-i=cq.aIjoqÖc8OWv4:Jy9KA #2䦱`Z&b+LR D;nl%ݮ4IJ4Q~FZeH&_ L\2BKG{SRJWn?+`=5Fax3M߈7|"pX[ԕGDJ!EcbVrV4),Bn|a%R#T+T c%ˎJF?_\O7!$f=;$hq 0td(xp σ]#M}]mA-zJnWlx 9P 5w& -ere}~C!ѝʹ$v=TG+g}X{d#PTSvclBڳaǎ \] C!48BRLUsy참[zϟh*򽁒@* ]y2pJ:KVtK"aFX0nId( o4%yYj}Rt02WPcp.odX2vFn򷡚<xV8/|~(^zX[P:Dىh2@1JFLGq$K{%EK.UO7*BjS9 5!t uLad\쮫߳ fqï۹2Bs"X:GoehvF\ Wt!Yw!OVy2$SkQŷZ8Vza3ֳ >gKdum?N<0KAl?F!# -!y>{e%*9iH[D薒sGV^s$l8Qu(buR5_Lw.aᄀB_|"£Bt8Jk*r$Y V\M kx:x)^)$|>TpL]}ڶIiƞeerl_%0\ [⨴'f!5!(|rĨՄ8t    _i;L ѩ7O``fBΨ6~ц9@U'>v'VTy_pUK-0J.׋߃Y'p|)#wVjSYCb\K/WGUH!{WKa[Bp0UKdȱOYh?xBl>ϡMN*Y3 ']f+jv&PnVu-$޹c9Z]g;0i0T\ňS6]^@ #O@̪o39t OccUuo;z_Eˎ̄Nrr,ӏ LG~ZT reVrʇvJ|M3Wtw/ @rr׃ L|*4z}2+ ϦY/[jy0lגjMO'9.}nLuZ{F2=SkmD64k糔(|C%BTZ+dՐVbJU1Wc+:CJ/bVS\GWz^_(*x"N}AՏt'BᰅF@B$\,&vHD)5u\lqpXLRc{ίY`c:3Ţo1CaPBVM1 "ਬ5RA;ک r% ȩY>=q =EǓLE}1!n)~Gh>Fĺw N'8x#b t=>kR-jb5oh9n> ZT*憶Qxn[t賧}X–űq(j >B}, X{j1ⳳ䚟fgQwu bmNm 9ymUc5ao0 X۶-[Q)mDp%tP Ө!ŶsruOR^_7{q{)LX/TP?83EO*LK8T7cawfƬG>ʵuF8acA|܋d @J*Gm*ֱ+`A$XhW[G'{!6~ƨ3T4LL}x)pOKhYmd4ɀg,%W:w#_=Fo \v7}>L=1[ә|6K"gº몎,RCWi!Tٻ4|cvSI,ZwPZ& &) 2"[JcV*OJݦiGcTڥjdDN$I kP.=-O*phyf!z)9@'+ӖsksyÏВtTkJ8s{[, xDd?/sߕTA`ÖlzOmeiUH'ZSla;Vm_nnQC5 w+l(x^(JQ Nt9+8K~{@,ΏjcEGώy+%SW8E sejb'>V;)e/Jٽ<$KŴӔ'ϡ+huK췿V~9L)8Y]-)%leb'`gv=PCv#[DOc4@_qMyQh?9,k;,~}@1A\VSሧ `wIC'Tza?9wv V !`~>M+er~,'yؽ:pKz1rUBVpd\tE]m4G,N%ZA֋5/LO R7iϝdS[y> 1G30 ;o`7%T/Aɧd*zP`uve$ eNxk<̩{2JNW% tlC9XOЂFȰr-=7 Q1 4Ɓ$6)h9$v1!2V_I7'9f~~.ݠb99Lx"ѕپ~"}h?Ct3ݨsL Mܒz]=U+%j.d(A.\A{O#h; V94d9`{LWՙw8b%s$[ä1Cxt4v~g#MrS~(=گgZi^&x`8?}s+pyjz[/]Vjk 4,905hLEs2פB):>8,"{y^Q["=@Jt=7ZL 0lP9Q7Z H# sտKh?e7ɰ!۷./T:~ 6HtnjO 4^ZTdOifu&Rs߃uoACpf@sWU}<Ϣb_wE:р՟6TkoW'L }/S1/ `Z͝w<|-g(1hb\ՅM`x0Kt_etyVz#&xE=Z>^ZTTÂN:VEWxHkx Izf/`nt$8͆L@|/zkzAؼ 6\2"ڃQD`7=.dw;}r- qplmGRBۣmSȮq7Fb)1>6[!5UI-_Ǹ4߭EK-7#CfC>S@p4WRW+/h!Tifn4+ R dIU:p0`@rٹ")ҸLu:_PtOCwo\GɭR.U62;>#YGwʄ*/$Cǥ/$Ȯxc6fe/| aUGn!ԴGeiJ큰%T0CwfzާPY/冧ab$5ھi_ZSa0~b<)[}\yM:h~/NC}ɲD<7E*lYq*jhIs"9ˠÝ,`[C\@&Um5yۡKMq`¼bI)^{ʹHnLb_JiG/ ے)5- jFV4$X&QI u֝p]30y( |$M7љ5n7iYRK]t?=Un<,5O`g/0%נ!= 5.Y&jA;F*ngL9 CW $"^j_jf+1JB]Eڞ(@3r'Alq>BoRj0|~Rq^9IZ14ixF쳁FYuCэpiLl:J!c/Nʼn]gƿ{ev~n)'9Ѭӣp(ȖWkQ&Ô?xW#$VlY3iuWEtyaiL\j#S j21# }%d343\y'2Du{5GL0!0@KdƾYʹ㺱U"s$Y6 Tba9|A m%cKa-5?dG[G$d`p&$}{tVKO0-zC:pޅoqjٮ0wjW~7Der.(aD]:( W5,9BV1;!K8P|S~R"2 EHqa#sZnFQ+eL,9#kˢQ$P)S̒- 7_rXRõgOz?ItluAukNd9rz^=ϋ=(b|"eOw[' \t5M!ST>J\VRZzC;A\>G A)k .]\rt-GqjԁPX} w3!ƃ"0| ɋ^w/b"݅!F"7qlkSW?ܥ.$žZW.v<Ō& @ c0M9ئxiT"WEXnl8h! knimIc,qCaTC&IǛ®A/#:qJ0k$ߘj۪)4r4WQDL;ਥ-\I.Vc#_p B^{FZūa~D莰_Q4ĩ-+ ` l#:;{vɁͰPa:q,'V:lKvfjj =Y||v*Ħo1kxT'qR}2>5b)E^MR_fV͙V&, i'3C9a]=QafaB2bSg1abs (g@F'H7]'!WGqﭨrOO( +f6=aڡ'藷)~$胲dqe#V"%8R<:#`f/e `V:jU\k %.JZsK[SfU#CF&.~FԲ 6a78w Mk˚,>X"X0/]'E/EXZU tzokomJ"G>7崏 ӛeauE }o&cx)}t*1:Un/ @؟ g6y uɲnE1=:٥},/"dcD+,6(n0|Z#[ݸN"cfٖ@z~㒕 ȵxތ%MT^6!zm iua2/Z/;)ws yf#~6^a3pvRK*nbDP*c3" \ڌ PWnL(acK; 7~;Civ"\MoD+ [ nJXv`XkdyU8CpM ! 0lZD2$6pԝ.-J/WkL6|is7Q7 $BK>&zaҿK+eLO8͉?<{'2b{xa8|bd2ٲ,$z& v2Cks\#zqX -+l% 1uۅ ;97De6ojh] F6PHi٧ܗ< 7HCx5cuMΟW ⟆=.ͭ.dQFnePڐv | D [N<: ~T\I 6+qH[ɳ}߫rtv]G̋Ԉ 6}/ ՗M^$&"7^鵺ijѾȭ{K㛩8tfiO#ɫ_4z$δ)vZWNM;쌝aA*aJEH#(|~V7sjc;@?}e5jz >xq",پp@O\ _yɲOP[/^;pE(2 ^{t/(N383,3W0ç &>XC\̼mҢ°Mk<҄@H,, v-29Z^WQEF~yϱR'7I0Qd 35ޖSH 0Bi҃ZS|L.laMh&a"\6ZՍܞV23m>3DܡK7h$2&KC>M;_ v҅.o+` :jt*{x #za/ZfVWL<2> h`~c 5[Bdx$c( IwqSM|A[Xԡ/XJ!WkMOB7ayCFt8ey+j]C!VV ]<",yjY-<<̲X@%WS Hp7Ue=88c҃R eZM"sqڎi4@b%ð)sz!_[R=2o:x 8*JFHQw0l8qOp1+( 8o#^щ,C4 Y/i ..I! 76^^@6B\BLh"OPlݜ~H o\$dFS^N!n rqa])}co0~g+XU)#58 {Ⱦ&ّ+Yzǖs Xz6kqq'y &N*v78kw ɹY׸@1LX՞*}TGB Fcf4Q6SLQg@{:\{t,Lo(>:7Ҕ ܒ'@N]_e'ԎJVVF0WJk'i8"?wr֭f n>q湊jtՒCNAk)J.!b@L\v~GFQ'B `(F"): Aӯ@݆"qҪu&=)-Ě% -a cb O!^Ƶ|QwN>]Vh[[2zPj(6-4Kd.=mVge(ܮo}\f[R`R({iMfJ)<\艺#YVHhJ%YP(XcJZ]@m&|󜼀T˶tOF So꨺S]Q;].n/LW+g Ùo`ݑ0(W3cߧ(c3敇Zu2}WY0|vw/02Mz$rۦm} 0G9lX1 *cѪJcfّL^ܿwagF@##6LxE8+fB`-QM8gn` ?( v/2?B6OYM%AŖ^"1DJauJ)uFSœF!7'.I"7Ka^p9;X[(zOP:zEoqPSiMXCŋvV07)#`7M2Gd[.?u>J'2f5MW1W'QДL9be Zw`wѦ*m$xI;kˊkB6YV ?=Z>Xvk;c+ZEǎ;Fq)Z`IAz4ba %8M-#qs`Cw&0+UNZ-Ɂ$vYeվLS.">yGpiܣ}6P+W誡:l Svj4Tn&C\Qh!\0 Ld&t:)2m~Lrʸ7ȀN1{ Y? QޟSޓ.kNϢݵ]Vue%"e n*Ava t^CYˁA1'w%y XeTy#cHu(h.ɳ^ښ]`&f!<7KG?lu1ZQw}cf1^4:S~e4>X5Q۽29:qBRy~*4'Tz14)-<{gA/m(ٽ'Ԗگ@XPB4?o'OA$ϟ򊽕_hL~2u=ZVҲč贆쬔mj%Gʄo|:Zmݷ@ :]Ȳ3%uY7I7p_b qflcz$:/1=_ZF"i͂Q@px(iK\Hu/52`ong~7"3=\2-[a 9ƢзiLP?Mk^Qi+}D66hB# Si*.tT @оYe$cȚ2UIM1'f.(@+^ V&h*t 5Y( u&4A12/e=J^(`o^3bEOt 01&Bjlϙ龪CÃ~Uv>bΫ{lO1RzaboĶ4>GW&FN{>ME\;MqQ0AY>?_&^)]4`tKu03>c0%5UXnc-}i;¿2 :/ _;3_Q<ƩJ!${AhW܁ְkQpQH\. 5yӂ ޭ#p HL.H65,՘i\"4z$ %~lU5| jZF:‚Ł 9 s{vBc@aU߄t +D0Ks#?PA;ֻy3[RJ`" ޟrow gHz;s )Hv9=[vP3*a60c]襪YY *4M$/Ru)va^!y 6R3J :Lh{g/+8\/a [U=bCJu&+*Bn;H*Dliw wk|z(qcdICxc4JO?q*Kآԃ-c=cE驒f2:kQkD)9?&b oXB'\m iRGUAߤ|4E/zAT-yh$>ixrQ`mQK/k(EV4{^2lWGZBm|A:$DiV5˕ tBN7r:梴.C;#f" ~˲6{Jq#|L(ݲ]z8wc"WsTuE'ry,eLCtzoP(F~.ӡ]Yq^ CC`⎼c0o 1r z?u|̓b;pɍHyt~1TeD@ ~ȥx0 ::8+[+ZaN) W;sjumQ5HٍGraS-D f|H|c`;I# }m GeZ_eJ l>iWҷL _Ե3 VܮA61 ֝l ;$DO(6+Osn?H+tP יQq-+'+q3ccx'ȿqȇ1Mi R@ [qI"B~;&BhIH o.\Z dS}T6빱.8KcdOLJ{Xc4ķk oo({0 So ,Pjn/ Z->S F4琵[X6mpڣ.OpPi.ǫtz8Ǔ$$K>砺aXċ>>PVSWsCOm ƔscEW Pygo%n]<4ĶgݘI.W;56M;vhs_ĄJтhѴPк]&1+3#05`<Aeґ& Zn6 ߔ@2R*V#;bҬ W$tXWp$K1g4:FmAӜ[۝в3Z3tV1EhNTetZ,Z&2>\'9q_0ciA^r$;dY^$v0u/t$#C_qJ~4XE[ȬggJ"GF ;Y0&E+)TV.6Fqo3 Hx3ĔoIZAA7\@:\˓,;9GN\!RɧZz5.9{2:G? ^SMKd["%Ckz\ss#|q#H emL*=1M_VOCFuRy5HMu@wbqO5ź6"P4[~_p*\ P+yDG|!~'dnhU#m8`Wr  Iqј8=%;\ߢ1P#LM*nш H&c@r6 Ci1YKТ%˫J2*"7'А?0͌p@`В"N s 1,(~e;SXu]x"L Z:M@G,`;ƽ:ee3?xAvY;~Gg^heLkѤ2ן7].΢@ܖ 5Z__gtTqP7::,Lm 7wLH$Ayb.h6E`N5%BQ2|ձnjgMخVwFA#rCLY=R{'ᘉkU5ݜz}"ddav{tk5 E n%] ;+2}%2Kb:P!#4F(tjCNaB`tn3[u7z tΔ,{ A]xтu,7D{ÙFp蜆xв ».W\u^~Q0ş:D4D~ {N^6^6a+ZÄԃG˭u e0W@Hh[e}&l|b6L+EQz Q3g-]V5Ms_G\a1Uw~% \34$_<b$*(X [k4 (K(ZcA@c4amjoeǷHfwVYLh]:\YZ)+3Ӫ}lυ]Cl_‹]Z֍hK;;gZX "uG%hLrH6A=$>0rGRSf1׮X26YgP "}$H!H$#{WgWD(3f/`dsi`pbaG2*V]/]h;ǎrc>d 5}cIx)wE9fyi&q)TeGvx_G$%cc[%-MYX 1^ PR^ OT'D7cGi$[Rۍ:|99!]o`f0'ky3WTFg|%W(` hcN/`Z>. Xcp¾:Ag}5 a4~ԍ?^]@ȌPm]ߔ+FKiP89U᩼?J_Tӗ0Ј~-<%uſ/OϜhݴͰƨ/3v76#++@f Dh#Uon4"J5RG~)|=55A狮R"+{ zi vZ,FC+aw 0jb-.zOpHtO% f.AįcdwR &"DaUK?}fe3Q"įPɗ:0pJ k_-l@J84c7O6C"Ս߆p$M9` o_0LÀaJo(g-)&2w(?~o R,v{Osg>a,R9J;-weAMBPf>a5tuBڴlm|Q =aD9E M0DXӑ !r:_: xX,+2J1}hILK;zQ~=gC~\%tL9Y@l⌐)4\⏿<|3pLuA(8$ԆJLZ'/0y}]5r D,,sYf^:@pUUYͷ? tKD 2cjpG.‘ `%?*hLM8tiv݆R1zO-(yEhd z-Sg'e 1C"?GDhܤes~>y =QnnYvQʥ7ٔ 3b }:%)nIȃK% o|D{zQC k hr{ˉXj=bF?AY{.]O IuQc;3ho~ P39f7x'ţA {#s֣{,0/}O$dvn+\WϵHl3Cj=l]BO [*遯k;Eh tC.J}iMgnH0ZۀIqǑqYlh`zvb@]& [o</G~g\l> )OB9ne`|Y/k*ߟ@ LY$`%$ L'9&fYVUf;li&-'8N1Ӕ|@qQ56 * ~QF0jv !Ss(筽 P°a`xΉxT/Ay`DAgv-U{AvB::İ(S@r1|>d2G/ۜPBVW 1[鯏5^va$l/PYmaNO凈>pDmc44k=+j7f` `L#$G8'kS9]TkgAb9# FP9 CK8GP˪ Lhzd BlY >[l)$7a%%dP+UߦhCHr 9ScswVipp*ל,#ӣJ_BJ # U59s.zjr4*^h:T1y=߳FzoBt{N(_9?g1G=#X]X7Z4޴=KmY1e1ehVGG6d'fUW t憌ݟ=ֲ% BpJ@w[o_l]<0 (Lv`ך:\K̦=ͺ3NyDvZu;I7rw נ$Ŏ5R-)\\J}C@ sthsa8Qk3"i˱T'.\5\O͏f8PSIVm],S.1Z C |Cރ-)=xT[ǔ HLNX$@ <Inz Q;p]3 ]dVr-s=؎"FkiY;Z'. k3)-H\qQJ>mпPL=9@y1@{Ϟp4le)*)JN:JJȐUb^/J\P(G]y?64AėvnXSbY7Ew(]Z^Njayw ,t-eUáÄdUHiU?EK%[ P"7ZK%KqHHe -oaJ|zqҼ8G.y$s(mFl1?8ٜ +6Kl'TB1|N60h2ye[3©)0>hU WޔL\v|fS[d0>){lԶ3{3!֒?RO%D`b<ץ ,zvy ;Z.ddCV1?D4mXXk{] 5pC=ϡ`[ial"L,w{h(u~}H Iy `/va?ef^tLgZV]U %`4 SC gVJxfz, aEL.\%a Kz5M ^pv_Ew<]g>kFwː8YJEr@jP#2ur 1Ӡ}rV2iQ7YUBzGחIj"F^:~@̦! !Be!(#f\Rg#b:t5!1@6N:_V 1'uuEc;S:aD:*ExT6 S&?4?d T.B춌D:gJk0d>f#N+~,:XJ* ,M\,rWegrHi3aA-wXYЈR ;oѪc䶯'< 24C֝~xPPZ%%$d ܎o8oi-{dJ.x (?R>&K8 ލJz"&&j@kmMKkf+TQO7/B>]~'wA`_V5-R0|jh OZS"E*Q 8)H"9R8 âLkط3ZͿ1( A\ٕCe"!ф`7ep!J8 RC;=kBj}tmD! VUbeb>zfS2.&GvJ?TV7agS*ֽƬ"d=Aױ,/7- mJ3Z`3@sx8chF#Y dUWlUh%НcߠsVxPdc"Ԋks" s9Z)ԅmSmE"OU=` I&;U7'10m̫dZfWT]1$Gkm\tsl!`5C߻_ISj.5B@ /%V?f6H0f'~xPu4ptЛ(fz'b-$=fTҼH_'{0eSMUsѦ=9D-[{Q-,K燆 ߦcZ/ã@hOKnV.*)*̘J`=VKY 1) |2@R{BH --1/f6gZeI&OեTx덣bPWWIpGxRO_$j8C8|2K쌙/s{"&\5pmQEjhg^s& owo) {:GldžN`@sȻT,Km^J,OVg4Q|>@3V. n]!>r\U.3?j"Mp(~eM](=H;A%TYSGYǟ>N@Bg]A$qJ. e?'+IY4SÔ݇Bbj<1Cb{aW+ϰWzYNZ%<+w`z4˹z ,7Qv;"Aɀ1j %L3ݭĊ9_+,G@Np ~l/TUJ<^gַ> 7S]z[98>lՓ*g\}^R( IA:G\kly`҇UNˡ6< t[}Z%9M:o|Nt(@"a] 7>5;@wĨ\LsYos OO+b35H(,%J2ǘUro.]/ߤ>rY0y Xʼn ˳?qc0p6h͕&hݵY yvn'<^9A)5y /aC7//V֫pa6%n !%5_5q`ZLyݨ7;6swtȳ Ԧe*^t!TG#/]b@K`P5| APrC-L!zUnK D߻ȁͳY'?\T8](3vp%֌sMiS # גݮBwP˺^_ol5\Lm<0Ϻ0eOoϤnn‹P 4GF#/;&Z,я@ Oxwbr8 Dt$e}-'VCKOVkVFs߷ iqWW%£BEj(µ Hֲ%6h7oMgJldZL( 7'xZKe&{i^;u=R|ȝДfs@-& "ր%/&[׳I'dvL`(>[Ck(^C -0=4-cVP_poF[[l¿ΪoM_4:!F p#XHR04+i!NZ/*<'ǠP1(gqI$$O> _7W& }2 I'jjugJʹC-օOeH5հh0{oV?`yK} Њz:Ok 3>2Ē~C1a6 U%ZaTa;vٷ _vWFtb Z<0JP|#Z@T5Jka_KSχv^q ^)#dk݌Ol4;lfI9S;8\NI|z~暔2Rgr8Doxn>K+)w|\gE)qbo}`lˆ3 2VPi x_.*sl¾0lBP\N+Ko .^ӈ\htИCI+xΡ5st,- ͧ7\"k^yT}O@S^󌾃YXl❲ hg?v|-M~6O xLJyw}#9`1ž=0^o AiF;_i:>.\xE3" Сf|Yd&r<,&JM}&cTy^KݹzI{θ ~8yyϱ6M4I33yy8*_LJ&)^%vi1E]Dk< BONi[dƝ1jI}K *"h1=A34L:>ArC3sKgnQi]@5*|=-.kR`|*?u v |2"մT<ٺIfM;4?5-bGs1= `cq=8?\Gfԋ&6dN̗!_sQW,I@j'Ӥ 7ޘ,]hʸif=vlEu4>" c&c]H֪՞ЃrOfN4 ?s$ϗ$|xU&5߉zu_aM/,nƯYk7.Éj_٣I[ku}+[}C~j`acOZ.7'Kq9mu*\WYlso Ls!H^EE(8LD (Mҁz8%zam=~ S.;7'ZrsÝNi@OoIs1-!aUVU87YVK.dR'DB0SBC͕')9hJ%ni.,Av}\ӲٸbT?u0pc̻Vfz+X(=#Ѿ(h' )l M̫ 'yÉGX^zW%|Ͱ/5Y5?@)ஷyk+M.&qm SU3 p`v?/!/,EB O==0]>}[R18y mUh3 N.z3 ̚:HSt&MBw9K{ K6jCu}5пͳ2?(hq{GWizo+\}z\ 7"7<^#a=u*.DrKh@0.5V/6B}pH|"S ȆpXW{"ŀ _:9MӚ{0ftvOʓ?+$V~F6jvV:nުX9<`G+.oFEھdb!dD B}1dy'NbtNO$ņ_JfH#WZrJ+GfZAvMn)ܘ}+e0.][1@o;ߥ9!Duf."gh$cMʈC.wʹ?~/:ETؗCc8lG*r4;IPx]g?P<χe$@׉bূu~͹0nX%wg{"zϭ>4'= _ZE/Xis6aSZ_^1l"ׂԵ}Kk6PDH^D +#eQ-)}m`tD%X^A 8Ʋg{iupATٿXP! a. ޟ o:M\S[zw2=(Uf؃Gy_2:ɉ.Q6^K`1=φJd HV 8EH-J鈊Z9砃TX<׿;oU}Lv"<hfX7|J>FKlھzD24B #1yC7[X;NCGwg)\)~Yfn@{]z%AΤx̮r"Y&"o=_>=&X%z UvO5?,h$N\0᧮ּ*X&5?7h6)dIc%f9<[mǘ(_/Fg:P@`s\'}vZ,&9tv0B=U,j1;SZfu>Aѐ*ad6ó΄tʐpCvY~sGoAb\GS vnɽg5l `@f-0@t5&,P! 񋲧W\>Bk$~ׇ"&W@(mrO[~U2%(pML,S ^Bru/1,EX5_ͥurm9P]X''hM[bYecg[lzțxNDAE4Z6/ ب&4YLudDf&fp誚 \>']l ;B{W~u p #WPq]Ӝ 9as! + Zy7Z)xH >h%`qi:{eg1nOG1l!±`fͅX$43Z9%Iα$ Ul}aJҷg^O` (7J! %d  wtv= *Zg3QY(smOgzrl>$U͓Hi^to#C=; Li)us%y~Q:>NH}Iws }Q6 ˥WEiqI@ ыFLvNVbqԄ&5G̃餴 %_0vmȩc7aX} .M?FRa+ٮ<zah=VZ2yiA|o:Nju$N^7#bWbƌ`a @%WzʠC~b}8VӤU1sS¡x/է,k g~ $Iu٤ڷ30䈘qůpL|ݔGfKr[!-4c(e]/r901u\^wrR"Me3)tԤcD> uŊT\K- 4b$nh :ZZ1EXDqVL!| h1>Ps BeԢs9Inr)L zGԼdpzu4=U{0W(HQVt;vϚ[iaȼ2Ks4xZO,:..s䶝6)Y.ے#ʨo`Zs`X3{LǀTTiܶH9lkחrSZ%bcg9%;,uEW;֤u3j=\Ne)ǘSajCmFХpdaʿB[\#긾1(1pG*Mlx %= }zctiGQNBFY`*=ouRFǶ8 4vv;%;z7՝rb}-Czt祡 g/{e/1Ʒ4{RϔԖl _cx{GD ^wq YXaA.)1Ϫ蓬B hty)SjRŽ\3bPt\0EA9elu^1Rc8F$Yux:C,+fk;4M)]' ɁI^;]o*1n"T8(9_\[Z&&ȸ>spш&J$ +n5z 9m!^ F,{AZfyzMnX@WA>RLW)$#kۑ)w_*f;9QP"0!GTն8(!Fӆ˓DrILJ駄"|tRy;uʧu!a8t<GGni HxNѪ#ٿձrK-`\KݦiQzjOc;"w*HJ%R$!gKA,-bb/LRz/6)hk*ʫ2Om &l*\m @E,Ht#B8t;owmMKԕo>OC#Ǻ}7I(4j#"sAMjzj5: ,Yg|NɖseEתe܊a&mpjq @Jx4wO|IV#hvn}H|H& 3=` n[\"K!aכ< ގ()ykMH~ī!6I;<_@r[V=nùB"?|o6qg?(ILuBo˜%t;N⥬wfQdnc 6g,HOS !:΢ ˠw^OG(N]XgkG/hȂm7)ٛ!rG8ݏ0fUfҞ@_ AZ:~!Ok_!Tw+{DZу/ M:JzFP?s1%RSԲgIr&Q9*sESqJ笕L4L\6|A*Dy6 ғyg1Qx&;b ~\ +_>kwmnAWR3N-ޙfVHPkw~>1}Kv/8 y2d'wa$x 3,Ϗ'DzkvFFyM[aVsysm^7Gp!?B6mcSf YU:uTxh9MG`0#<\k'y830o܂yGV`{[*i Go"W[n`_L?L8Et?7{`%/_Ii72Kw{zj?%xԢ'톃=,Wa_.4|p$!c RS5гX= QιsTL;;i? YR _g&Qr(͟N֯آ<'4ɬGnf!a(Q!g;e& _ ^1zA]=}dɾv?F5ymk頁T 3}˚[ 3\m9*@2Je=Dkz5KZẤG!As ?+ ZےWi0ΤKЙ_Ffp0ն0 OV^e?(iT8,UFONHBC/,?aN@$IHZ PBdR'R[%4{׮3|Osu-ۼ']Ԗ#,LA"*Tadŵ`aw?|leQb"sمw׍eLq&K#W^ 2jZF3b4AFLv-݃Q8L#<[JNf {ޡ؅+[}>vA_qb:CᓚC7Uͧa&#CEoIa?bf9 Ppjm"换(+PvڌA. N26Xj-mFWܼ:{U )[;)12'IN{0qV%Ȥ9 +pDnN`0Ɣ4FJ_{Y>jm=qgcNtTlIPZY5:xϛLS6/C1q7]g%0z(jsGSMpu% _Z}òI!1Qm.z7;Q=2 ݾ! f|Jav-ܡB.'{>Ao־{;`[SO:g]V~_̶Ri1r)gA@ ~}`'Muepw5mYWId1:pki\bB$Sd ͚KcZD3덧|P/\µhL$yǬzǀE;@|ŚB:qNp<2WY0US`J/Agf>69],nbdMa1P$A3xȇ+M{pjAy mO  ݵW顜>Vb7~~Ie3De,<}&F@Ca dכjXA&9V1q2X͝7h7XA`Y$<;6R GrplLqؕPk'JDv4fDԞeɅ'C1ྤ_x෭c@~8H\nMWx"MʇQ8}fX/- ?(2uÖQ`з1aCʉ Rb|43s}"dBE\t" J4)b9A[_Q.Gnht 2WUoüa!%IME{IgAă0*gLn`'cL͡D%;Sچb13g T U9!#!d7SbPJ IH6c j\nEt%)#f=2^gWO.}e$fn4ncrA0}6RcufwqlB8!̯E[ՊA 4&1mw[ F 0 51)ѯn;,ԁqD=A Dk(^U>9LDzcXR}ڹQV^-&E'6'u+`*3JG|+yfxkTց;kNw_ VL^;tj(Q8x(.?UHBJy`Mo_UΆr#_X{{O>-{Nf“^sP"Pk.8,oŲr=4OIF E V}ZjW1Q3c򂎩/SbJN5@XRnߥbs԰}Ij`>=ㅓ(-uٓh TOVnYk(_LCZUœAÚhkQ@ӿ}=97M/B2$kT$gi* o?{;H$!n}y@'}³,UoG;Wߋ}q@O]1?.=~iEɫ&?Ӟ[<tv{[izݔWԍ6d܄ڧ*6_tcw\ 8e׌kWHxذnEȪTBߕI$ԺGDϦHbkSUSÒۭWPSw'(0f]*\o#c0emfZ_He44Іd#VسsxCFxW=D:!NW?k:GjUز;o~5AWr:7~< f`=r&*pH출@WsADپ:?HhxD%Kxff벽+>_}_T\|/MAyٰ=&%qD\3d2|tKU&~:]d>Grͳ LaVz\I{R;udIlJT:\)9,{qХ2ww\c g(G?c`*\_6uQN緌Lo ͎)'10J2!{¡m/WrVT8Xb,vD+snFZ(r Պs>`@Cogm?țHDQЫҖĵyď?OfQv O¨"8@[j{C^ v=n1ٸ?7|T^VUT+ȟpx$O·%q):>0\E"{@h6jӬ̬MYfGcsv51E:B%:$=E\oZAjJ&S6ޫH-{e7)s#Z!3JHSV-Az/0?CU.f ^)2տ[d5uLM}@>br"αr€TAI;Zg/{V^l\3)H>o3>[h뵏Ky&Š0ۑ-Ro51A(mccHmɱZ=6w uwG2!QH{eǫkAk9 "e09%':rߘ B4+k#@Q w hl1/ 6 HjcF'̎"7 ZLX% "XVSQEZ뿒;2Vxބ]ܗgA>^i> Fs 3h & ҞQi6N( X)L~I?㣺%3HpwE@59UeGCShv5I˗K %i[fu+9'. % qAM ˉ>WG$X,8prIYhFis|"Jbg8_'DšHg~eSm I#3s?.+am~EՃvGt A62צ |GPOt1Vϓ,Z߱sY"_[H)т?D,kfR/_1fŴs HēY#v\|i`Kٵ &I{Dۡ JEb-ސt(N )DswQI. &"rҡ4&_:Pʦݷ2RcFYHkl|퇀ZS KXۂq:jx8t-DA"8BL5?Ꞅ&EgMllI͇< 3ahOA~J ?дTN\oEY>[&$>uN糫УT\NbUOXZrv2uOTf/+ǃX^KiC6 hk˹l !ɍґR7Hy}ʃ &<:>ZF2ߝ~o`zFM#`[gBF60Ϭ؆$-^:!t_XM94П;0gyk(^iVL}iδIJ q4[< b:+C8wDH)ۢuZ%wpz:>"6WfQWڔxk9*qzG:Ke@NShN ^7jPB)5Y0k?8,hJ Q9zi@ZUFS)_9Jd8“Y`*7L@Q]U>˯-q(U^ ' {+ 1TZx9mҢ:mh;%|p\,@ǝeHsSWizwZ9g6< S`sJt3* 6!vݒ{yyz͌!{u˜Nz*P;Br;juU_ak}2o)fFBRnq:OaC։ - UV4sOe1<=sЇRUz?i;iS`SH^XpD+itAeI:6r.L8OQ,Bw;[V sLv?EW@rEk XE!]N$|Q!XpW,vV,ǥG*Qfo蝅&"D\8~X:w䋷&(̾~|ְq(fytD uM2.uCdKꥇziN˨Lg?mLX境;?&* m[Lv}F` uK)1ZLg x<`ӷjy(1Q.5%d=6k0"wyE$&r#fcP='6t).\a w%!`g_: TEz3\fȗ߲S~dIB9ZVeyćoC"\q>HD/\oRrz~pӽc\Vm(Z֬6 Ĝhs|{ZQ}vrbDcf-f3vۨs3T <:l]Հ ڊK␆Z;A2Wyrͺ}cQT$_/ "KMQ8̪`Nj(16˹ncNa(٢_Ӽ5o‡ӿ:Ӛn^#w+asmkKmr]v/֠*Ѐi#pm4*۠ k$Mnݥs>kV@zZsHe it`qW b^HI2e覆Y*xp'˂VA} 2YRH]=bjf !bnJW&%cD{8&PaZ4?X3riH+Oiw\B,rIBtfyDn0Nx5'Ge3?n37 ~ܼ:CYU:0j)Ŝ@߲v%H}=,>#gA(/`tvxINRyMؕGcb}zP @~;bÈ{~]%s j&/PrWaY u:;$^G*&d@gY)O@~ULG#QPO/lbNr{BEN&6sl/zByBZy|2wygRw]mfWV'4uXDԝf#bG;ٱ%*;WIO>JhnɱOH++ Jx>\Nr8lU]•D\|6BK?"b!{9TfjZ<4D]t\JGe؁ -S[hK29CT`>'y}Lķk޵qexk0 K&N/:ӄM\j!`"=j/hxACba!?Y2 ]hȡLuXf!]4/vEwx,XH#̴ʿ4\lإyh+!:"!}kÚ%MjBϩ%C'9 {ZC l,)VBcZ;fJ:izڝ@hxAԾ/eoJE''FU n1i+a_ [,.p@ o,7 @'?mϽ×})#*F޺n< !zZ{̸Z|v>)w"e ?[bLaIѾ0c3"( 5'S+3e% ;waUA]j$[;c  Fjn454n]J/F^ZXijckg1p Be !e̒PɉlτjGNea%Z/t)>lt_ "+ӝz\X4rY9~]B-pa.^GbX Ab:%73Б`Z{58) ^oL/_8Sx_R~#qi7Ɂ]0C/$F(Yn`檎,, tkl̸h[DI9YI?- Z߳⥗f2 )>_RUv"Cg.Ÿ0mD_v1 &@ $?CL^\J%$ȹD <>oExn^!%CF4T Ejwqs\dvˎ52 d~`!-d>cQytHkL F1ph~DTZ>v==qSd/~AK+u; < =odʻ$s_riY4pgױQn,P8*nLrDh"(dм(v I^=wc#o p,ضSl).-(o덃B.ydD? ثB$؞uyiQ ɑe@ttԉ@s^)s\f$l.L7F[.;'E"ӛc 8f*NM& OL8x)Vm> =Ԙ.sBR@0*%7BR^$}66lY`f{tDB0( Ga[~ha*y7:/} VL>i _ -?$r@kW4o  Yv@|a- vܲHPVKKf7BHƽ#byUAf{dѾ0n:5.l=SVanx WǭZAK?c ovEs/:I^K킀"PU -YzN(Bs慌(+$w%|Z.eݠ^Ulд1UpYCui HoYZ~?H`UfuedHlWK׈>& $)Ԁŗ8ZQqοIgsUH:߽\^>m8C.~f9TFF٬;#`ݪ¹]|,gÖMv3~e黶9@[ _"L'j@Xf#xseiop2G}ړy<+~`JJ(8 ??ӿ[[رNMEة҆OA*:&ujWk#s8<]IՋ29#/1RTq NfЅS¦/p?SS5/ijkReC}h2jT_DChN)_P悡)xE",2k X4 5M<(z?yrK6~ 7u6)޹9`?࿛`q;)k \?4th }>K')dX*߀k 7v4 )hn$Θ:]Ru'}&uTDqԌ~&U˩^ٛQƳp*( T' HU9ˋ]?NDFQ0JT+YK{19xu=1fF(]+B {0/4na7ZkXC&5 Uխ"r9xZ_- 1.  Xn'vd%M▨b䭣_g &>l8I>wܰڛ~ds9h\)xJ: GB)+q>ۅ/B7;^q16hQ [FT_cʌ/f;& '$ /!c /Fu̬LC<5ur,hWv<$]qЮ2{[YD$C;%^+a+XqDIv}%yi񨦯zږp#%j)Fؕ>tO'Pīe,/pXr)e_|@F'Cz\rY$w7Ͱ,]@+Z @5 2$9?6Q؜)(XQXk0Dߎ[`J9Ғ9WsP.g2`{<92έpZ^@Abc6wj ajX6Q~|DB8 lnwV7)˞vHH(I,=Z[a2˩p:Ma!'+\+3r>|w#ZďZw)0dU'j?|C_^H{9 \?gjzs*YŅ"V~$i.bC [V4Ĝ}yuW˜>)VȰD{c‡c9=qز!C ݻٵ`J" mM%hֶJo 3Yqz2$3qAM0 YD”>^3>X{4蠌4??n}H N0'§\+Q D P7=/.>Wfߎp Q}3ɂw<%iouB;`޳V+.eV%m$C9I$ ~L;cʦRQ=&T]tRe=W!8XI+-i2M?)v<$ȳU_ 2ߖRj!'X.]=?_z:V# \iv>a!V>dv#֏#AsXoZ6/Ac06*, |~YYsA2%6N^)~Guu|k"[֑Vfom1skr6^3aof޴+4Y.G @/e*C;Hxo졈 (:Hp"hHۀ(R̀f-DO 9;-a-i=ߦ?}ږG *F]l qdz̻ד{3p<7a荔tKmRS'2g9 K+ :ONR+qZ hvr4H%ZuH26)cC+3;^-r| ^'.Cx~\ /`R/N4i &QjJAv 1O1h6?R"rqK)bv`-= WNχH1sbPqa(nt<Jڴ)go0djD%!SlcֆFN+\X0ShלWeJ_F9}4X)&rI{?JLJ ;)Y ΛoFO? 8`j fI tC3Gob{룠0+>AY`e ܎*aR2?$:Ao{#˴ ]JHVN(ۮiMD_$Eum&.W/!pagȹˁY 4}Rh @K܅H`%?A;Lɵ(|sΘ)t:Π'f(~2|ň/3 FKm̤^ҟŎU9)Y\g>9 "Cgч&F:גg\0NHJ}D;s ?Q$5;~hã?c8VrQ|(LSE<7$4+2JpM vv<"ځdz̎44Xǡ`J~*51Xj 8djqŦHձn=9Cyn.L5$D r(tS,qs4jH|5o6 dU0F&m*/s,hNcq`.2!uJ%`4u8W,v97@}?d{|R+!9oш Ln32QRYp.to(B gX݃</(kޭbslFPWoIÏ$a9*Κ]ډ,PF5_evLY bC>OK!^HBAob\քk $dwc':Hk86%zm@}RC涪1}(Ƌ.X(񮰃Cڛ4$FK؁,W uYM}ÁθEӘSM@RleG/sBm}.4Wqn\!+bCUVq4\,\o-c4½r)M{NS z,ʘǒ>tX/XAyş\5{ fgِgY5K}>R 4*I? JC5i״t"Kk %VL|hODž?^!CR=(1S~$|5t ق.X,.ʀ8GDTx!c|a|PEb_4K@:w$Q{I53/S KbLK&(F/O΅OiGy3&lZ!9> !-I y\/JqY[6e谀@2  F]TsuEmLVTBk6v0|NawaYY[zђTlbt[eJ5P[vc?1gU_d ĩ }@(yiϷ,dwZl֋)Vs=Eu\@[Ƣ0IzGw9^> ga"ϗzc(3]Zz:VQГ+ 4%<ߒˮ%,! ݮ&}~Us܀ŋ,O'u9k#IIeŌ1'E1ڒz~NX3/+@gѶo`PX On ~7jgi_p`jJA'52!4fWN\0|#%W mJ 5H ?%wcǷHTRߚm9ܹ9Da8U|"Xe6D^.U bfS>x籅$xClY&mZ&׀Eb n%K-no2u,d ];j u&y'1YФD:tEb<}VRH[XIxbI)LhԓNeȓ+gx8?a絝0^EݐKL1z_-$|.%"V ]hqċx 7fJ.ot;NU (2icY荇87e^ME?vPy`Y":zuB h[^Jz`wI" >pUOVMO`Lߵu34훦b[]H<̊>ܭ"[W'Qf֙io,;ee\O0@%<.1A62aě[eH`S pbJB1ҝvEw:U;Ԁ1֝8 b'l̤v=o(UV)R iV(! ";'MziJ]0JZ0< E0Sk'+ z^M3?+/Cq:cxTPzld8Ibe<*6(]#J0njPF ð]B2zP)4FP^Q'(Aߠ=iq)M)(Uh" oOیNs)c07K/f 4̤L@nLq\w#qϸWEN &Қ0ڭ}WQN~`WZV[MjR]Xq)<7zvuEۃykg$pٞgY@tȭ%EơY>j;qgR(w=uFC9Sݙ!윊Q= Կutɰ7 V3Ul-GHvϲԎl BDnxNZ8n]qlǠܼ#9/^`rQjixKQzI~N/ } KA֓ yo~NZ7?8:А-~\c[6Ltp}Sށ)/׫0{IubIJ] Eul-"g۠K4wS;&J ϨVt+8N%_֨FnV(4:mcMF?T<:=~TpE66<&e_Q*7zQUC=A&Q:*(DYEIIxS%cDt˖B4E`K'H6|o@l(}cKpE5E;,e^/dŽ=GMUO4iSz ~.vqVhJ'gY4{4 '!jYT1&7;`C1ۈL9%M#2mN۾-#E 94LI5lU蓝u qd`t@_&k )F `&dic'WH"\Vˬ-j#5./]ri$F9YjQRQ!iBkܘ_ˬnGzM2~o Ϸ\5RRAdX߭L XL bJoBkgfJܨ*77mh0zaNǛP79isX-sOzeEYrdu_h3Iڍ]<1Hi#+8+֠5$lj:JqUPRS(dgEd|"]zWT.Fʵ P[]33KE|y侖ADĝhAbycEFʻԦh\0RԖtb!xxdm1XL54sgx{Zjx%ZϦTԇ2t'ގf*-jK*qbҺAT$PJ: 8^}[o"MoV +oL"w] SO>][.c=aG yHZ^d|[^ކAԂ\. ɩ׉|ԖOT`VXKfϫ >pzknMRm;s3 ov w'; Jx"2w'p@kUKV qoE;ڸ"nz3rH>Fb1"'kGp`H XJl/5 7xM=&43 oJ&7_g~TR;?{MY45]3{(ںQIt8šo=!_ʫK'9Q:/W:g^\8Q5{jϊ}աU'ʠIEW&_MYr)^ |)!I%I9cȠTB]puqNwZy1"wEBMoMsnC,)q8[%K*7 %:= @" n6ikVڊQ gYH&t vO }Y'$5e:^tӭG!dY'5;dY*gEap+RJL1˝3 `S5Q3kٱO5$(^2GK%i܀x߃a:9c"(%lDgs9ڗKaGإc=*#aBtt!U;zbߢo%+x驘#Tc iKo'Iө)YXyфy|l,G/ZlqEF_=]瓫fJ9v(dZbJx잧jZzÍX/z 8ӱ vf/sG7(ABy^@#5)#E ^7lH OFN22(7?92\Pf1Rذa`rl+TdDN͆R47%`|Qkgh B CLG"aMe%D!&MJ&|Qh5ICFH!\J<72݂VAcvPޘW'f3}Q{AwϺlO. 3aUd@ӷ|ΊlQu>*xJFe'763OAN=2M<ؚІ[3}nd.s;hi*ZӒc`I(y[Ōfv$hoM&7 e]%-QKZK Nףzҭ(7XxV[Ya\4%dRB%@jU -u \+e9@ZM9 A>Y}8[|{*O%{EX;y.)!j ʝVa u-b3{^) Tw# % LjA}!:n1_ʔ+`TAw#i$]ր\֭S8vZjWhO#%dŲdx[r7,&hUp/&dHՇOjcR0kE 2':לoNܛd'{fPUGkyٯ Ŋ{: q8Hjf_ͥmj(}!= 0uDހ|ĒFߔtJ7Yt.SO4d"oġK#o|Zr9ȘA+9$1ǃb(HpZ;O_/Q/iPvIA'4U{1Y+SCr!_gѺmёC~w2Ȳ|t-ŷ3ʅ&YGVpAz %|cZP}KJj6i'$z~LNz0/.f@IU[!h*ϝH~!GMh9sA4X,ζ }_ؙT?.zd4+zl)`5"apmAr4 0t @ :q(=_xȸZCI.8ة]9ݵfWH!CXGx.Q.tŹn,wk׼l3cSyn$$*A"rpOI-RVz_b3̦X߈5AKxT]+ ~Z`l +.qZ8܌> ayF.UtUQA8sJHC)-v7)auDZZ`-@D`دGM[3D& V}w| v̀eJ]T0y^-w^E gm#z6:CX`9U+t4R*)k1MLGtoA k&Hk%% b. mv*y^Q|X4d z55oMpIyK8I;X4rF.>k]ੲ=qttx"`&tp(d?f5h_OTPYOZ*[zf9'3JeBuIsK9;±I 65՟n3W0Bm\ah:';ͅ%YC 7V~r'VڂGy^ͭ-1[Yq!Ħ #giy=ubI ~ %Jalj㞴ԐOn^|y6i_:cFW8ǐHO Il"@,5=5rӅAr<Nhj::ri$ pT>O*emO *0=Nﭾ3 ߠdƙ LUP(zJ& /W DĸVN{޿dŠS[ǀ:!E64B&}jUswQ5kfIZĝϢ`|D1%\2c< CX8XYbm_) 0Т+ ڳNK@s]iXO{%Qԝӧ7 bXW3c[<$æ|^-@vg{3SQQE #J.$Ax; $G|׳_H6W@.HL;3" 1CwO%#Sǿǣ_!wD禫kLLRD/ R!H?Z%j_sDc9)BX]8^>HJq$F8ejA²"2Á=AK=0kPg#C=.oЎT€3!-"B8J$v6ztxĎp2PnwyoZtL4NI6Cvxw\x IlHcxBk>ggB,i 5qX%fO$~ 9i F=6SApe2 Wy/s/E.*1p FdJxqQ} P'YS:".ș#NLNB̜9dk7Zl{%]J)RW}h!qjDS u@HVNu)_5V @@!0QK u(%,tzw΢Eq7 G cHlZN>NZ-|LKgv]&:A4;V%ٹOm~eՒROd{~ MP20SU;!ytJ I߿9&q) j}twzy?U>g`~P Z~iL;Gb*]ƄYWK< .c6ߐddxIo Kzr‚a;''l>4:jn)5(vݩuٓGEJxx>:">W1/UJ"@ozo2'Vh Ȃh#aSW/pu#9D#B_hd9JWCdWmV쒝B}Ӻ<,XZSh3-\F( $#-֙!De9Cnϗ fd!iF}F<|wtN.4T{A9}onUҦ[SAiرe ɓawo^~ ^#áA`?xA,貑y "&yE~οM#rr--09S󾒱v$~\a-}l֙mhI_dEsNK0 :pBo :kV-j,1#oNKfU=Ƀ|"[yAMk3sߌAz)pRX 9! 9y/ᥐ]ߤftM(۔`l9mYПk/PnOz̶7\I0\yաxK7u 61TW@]aM0SB9NL !ZIœI>t1[Xqϳq5ߧɫ#N9*༘ĝ'Ԕ];%];I l@kN2.6 %8aya8°AEk:,=x[sx1YLSkIrqU)6+qX$ (.gP^-7eK'bt*l~$ќI42ӨtK]tΨ::]VL/x [lUEF{<6 [\"4oT{/MF')hY'HD<}=l$7ioPWb EVbTD[]~aego_l XW'gvM8Dnl`&b!xٛL fT]7>e+ !Gcyec7X]*THF5]9oMEڦ⌍ms#uVp,IyyZouJtb([0z<6 jnծM_?)+`kL%\rxnαդms= C hu]R5SCW%~ba+0iэ0.|,?&?tؐ%޻J4]2WL='t4 tsf"Vq`A/C1)h?Ȥ•֜#x6*KFճ_ڠ<e@1qE@QSdeFhwp,=hc["JQ-%'meGBkrL@{fS$e"["*&TS %z ~r(}`Fp'Z `p$V&Y,* Uo8`+]Z> sl#/*hgW2CfLOSGTJc /V< gԣiwச)Eڛ{+e@ t)}f?i`we &0bk ֶR}8I>[1fMnHU147 Ai2GFhBM)}Ñ1wT0rXC$$|5Zҭw10OAO0T~vǪvb?jqsw|6{ڄ/Xg2rҠ ePX+⭁&_Cd{BH6 I 8\j%`Lнm60eȨWs4Eá ʣvJCT6ta[ +yC{P߸D!sP(=m6.ڨ HS`sxi2KuלzWm?sK[>D|.T;m&6hum:nI]4r٣c\ҳhLZ:vЮ /z}w8Efm߯?Ql0`LcEЍ]A %c^HRg".hO2!zX^gFJ#NCE: CgJN K M30{|s }=WCsu@{ 3ȍh[7 Jq-wySy {-YպfnGjQ$3_g(?zuuΡ@aN~L(Yw?e/‚ igilW(?ՇݬtZY ՏR^P7Qr(KY T :!q+r2+ 3Mȅ7^pBGs˲E&`Y>sh3'ێ%EǗCb=h ^*/s%Mt %ꚇ+n4KWy\Ͽ[J0]&kּ݆qz^,)>C [?xcS#%@m5jOf} =52U=wsB=-x4{W;'Pƨ뻼KBdҼ8AVs`tr+4sv%(,5^+Eߘe~"{kY-t@F7J< xliP! ק H,~tR-ߩ[MZ7+XU50e}qƥE`AWo0i+Azm*4!uԑ:og iӮwRے~zPI a&"D_?׈uqz.А0IA[OS*e7X1eaڅLp(=b"%'0A*͒H| 9Rw>[^aa:| EL"UEG0rHrR|-P `=kI :bXUyPK5K45*y׌Y?3  BV :h;:-^E< jϬ`}GdwH[bș"_%>jT@>0$*ۻjq>I6mSP̦^!Q]mO%5̚gw&pq vy*4Lːʺf9:.ix v.0Jl<;,8ˑmoP 8@\l}0JQ.IYJ" .8]6MvngYA؁K=6DcY+ǖCVIh~- 0gܮ>\[‹V %\?(Tj<ɐ 3g Pyw)qLK^m[pz?Ps!fty~<1;^h*xfC@GВщH/V6=aIog >-2@2^V[.#p!yB z}D.P*[5>фDI:Z|ʞ% o9w̴/tEБo"M57s`냐H}ؤvZ"ϫ( ]\Kc-*1 ֣a|(_˽t8{vI$fjoǸC^ɵB.wYݲ+-EOw* ~UCBeU: !]ZVv[`"kD-Dq.`Ce,7wԍ.jJH2b҆(^E{ےi'DOl6ۛYܼsMG9*Ioqow,-]a;G/s 'n@?iv[fzc9L)HiŘ8gX:%\Lq6&Ep4H)5;7tquaq1Z?tv)dnUbaW !Oi-:>C%#aDޖSGJ!qe;(aiz{3 )l4zrX`Z؎쇚6a~:H5ׇDv~>H3ˢc1jɄ c7 Lt$9})@(K:T? ܄)ny wf5glKEшݧ(DɑN st$FR|MJ.pmq:Qh?Wӆ݌Ғ  2@Sa&Pa؅O`*u(uW)=%B=qkPe^xAݜ?=@nfuBDF6(V?2OcdI"//I`+T&تTlP 7,k<7-92{Yj M6P}67=<=`,fP'yoD5#FB8RKI)_8#zZneL ŷBSzJ1~o#H]Jߡc5VÌOrM&J8AxK0qt$s-s#ZU[NVIuNA1J(VO!76톭0X#x`zX$Ͷ:6hgǧ j`?G4]+֚YHf:yD {1HO<\Z7.]df8 6~9|Dvm1K5/&-F? YP8DcN(KF2.ݏ^kU3`8F1/j,]Y\8ZJӹ6b?I*%-fjm~|sey4G/Y3r /\!#$x.vdhois^^dA6 UZX׺M<4[!6a?r{l ee0i[Yb33)p=VBWHO s Iלyİ49 K]DF7}v~jR Ӯ#`δǚ^@~7Qa|LlT\.HGw&b2x!e!5h)b++ ntJy+=H%<$ݚ#7$EEyi7aCF_f9&p("?weܝݏ 'љNvnH>jq!c7Q bbRd ؿ;#Ү"BM^ڶıol1P`eV*j^+!ѱ:VL0%10+ԅ|ެg_S,<1&;?yΚ^-%){0<o9Tg!:F/ EgƑWe'T(  oC-FTRYbsa\YE<9l r;C`s;N[)i~IN"Dr!ͯCj,oVf{2,9VўxJ£X+cOQW"ŵT [U΄aq$6Nw%R6iq7#X&|~i.Q#A;q˓bTX? #o*Xɟ@,= 1 t2k;[Z O#Xf@PUI!ldʆ\X-`oFey 딨]%ƅ `7=Nn Q^2?̆Ŧ{EPxr~kT31We|1E)rk{&)aתz3sG.W1p1J$g)Q@gȶXS߫Ȱ[%'a?%z^gxtچ*'%=To* /`Dߪh5pxa~uU#%֒O`WJޣǛ#$f^)dU qG d6E(*b{̒e %ʔ=W1/d!F1A @wh 8mscBCE%]Z vÍ)9[ ?,Jyb:3BN&Ö:)5Վ=dFp`5YS_ R14)Y nZMmԦ 5s(ڗj S53.<,_ HcJ@Wq++1g)ލxog^b:ڸbK~դM:ϴ *tw),awfF^stG9R\f-N4kO b嶴E_Mi{EG p)YB`V%hd>R[]|09{HL@F#n+]@^or}AuA /"GyeB5gΘRNZ7]LLKdM Nv2 O .J0WIFqUG褀HL^L4M+ Q' 솾MWU ^ZPF -`ދvgH^ZB~dFRҀI'Eː#]3f8Z&d]U:Y`z8`FFh8PSÌa}qGZm{@H07`I|8ݜ$bvs=sԲπ=/Sp7u HDza3k?]B&à 1_g^4K<[Y( q#pfrfLwģOYba_qg-<R(]ݧfIɍˬy[䒮 AjIEbh"r;v|f6ъ.(T?m(F7<|n²ءi iuj $h0786c * ɔ쉕  =+&9XJTa_yȉ_E#6哈g{r;F*mPX^NCI.~:2#;AY~yvS.ɟo!̪g-m {;?kJ;mU ui7 yu9^ ߑS'` AY '. <(M%Δ^N| VWG7%#Ӻ0ѻF^+LJMc]B,dԹZ+=L%qHXՑ$הS^ w7300*{nE͉Zw2+guf z}\$v?Y‘ mx% @ﱩd#3B40^xD%%JHtڣ̓_axLk) 'F}WtsVZ޸}׃6UF <^꽱{Vo1%i*wτ* .yF˛3ur OfT; b=F' םվ,v}uc=/(#"Ik XE.DXPh.^>FClUn$4C0b;,''99CTP>cqF4jz"ӥGHJu]|{T }q*AP6],',8~-ϖ(S는wǴjrq'2ay"&+-dG(=sn[ꐤ(lpL H2 t׆o 8MZ]Y3vu;+wHh^&fV]h S(xGMքszKO6}KW/ɑraT9;%vX&܇p\`4' b5 :4hDAiE4NQj^tLEi8LQⅹG!aZxkR{;Zw9WX<ՓںݖLs[{2RR @BF R^!+I-O]͑.S3~YY'}5fʬz:]gOCV6WH·& *WmN[Xo].W~聣o;wk&^i,@P>`}x,K*U#EEorݫy*>7*fKڕ;pē/3FR:L>ZL봄Y?B#\w/0Ƹ}c=ɑRMLSF ޣ -ӝ9wИɔ?(ŶLܝ6 􋷇;vC=fY_n5I`rǴhM,K{}@[TMAqݺQ &*z \gѨú4Yyڔ\CI"8TtO~l`{x$TaB{b(Zܟͨ2Y̷%YieTWU6o4 #g^ }j#_bV2Q n+m}Q._ ww&,3˶?MfOUaN@9{v$XS҆@}?"2c3p_> i5IvIcl,#(t)i BC7q8M'?V )ޡ(Oš \IO) k(EtrppW$aɎ2ʵz@69 \^ ># $3FL| 7$a;gMJ皫=FTWJ}}Ngo,~f,& Kfœ.K\s٥F=H|mr|)5]GHR l~AWF!R.kt'd͉i0e0zwȂ2ٲBmCX-\>lYw(ь7Xdd*'Qq5V^efKGI"A#xd(X~Ez_>=dw3R0hn*p'p%,N3_d\iYm1mK[;B%]exإPdӴAe QƢM݇0so"oci"6@grG3k%gAo*âKډ #ؿV͵L`$QKK+~" ~z `P_Sܠvŧ?i qFy_,my@Fl%ѳԈaiј:LӒ`#K)+X북߿V::prmP wlOm l\v6]flJCS>6gc+hB)-B]\tН.2 pJ zv.h>m^䁋;2bQ6\NylH(HD*,NZAG4_T7  ևrٌ]8e #('3̔_ \7JnGJjwFQXbMOX2v=D&Qhov5~ǣΌ+Ef[= &!N䭇!#"ZxEMEM2[<cdb*ݢQJqV2GLTg(& bQ>'oC{!'Sψ{`)tv>#-}j yr Wy6j1`ŪԉaFN9uGj•QsAT.;hMtTi֎r~;f]s)]k/C@yi 3W^^4a;lo> 6?M^Os>xQڒOOqg z!S\`^Y{>& ܀Pg2"80 t[( lAChjPqj.Z|xh៾F>ܬ8 .=gME8P^"Jj f}9{tt bV㮹ccs%t;^{8<͹U?֖&BSD~˱kW`'rݽz Jbᚻ7rz8Tux6OzLRVϭPBn 14% KX^ůa?ޥxRtbe}˝l:1"DM㾶*CGGB9rɓi#UpɭfOKX TVl|05]NLH1lí(2 LUJǓfO2Ccg#} |7`Hɰ YQ*3=Ee[~&Eu*+$Sdr{r^Q!ѫ B5v,>dv⃌PHz6֩^HA?+N$xE z).*=XI ?̗, e\yKs=xv]wf l*=mPF\&: N堃=8x2 ':)m2/9d>]XexaOq!e6.; v@/rkuGx=#62(xX+( ѢiUX->XCP h]YȈwDզ dAn wJsA(uVn٫56p1;JTΈ/K;im_2nl)۸G z3O!`|)ԖU#%އ}ϟi- `26}8*%b7-8_VB}KK2ݜmث4eLhmRMup80?_ZOIye@*iu \Ù밷d[f6*qv=c~D5jfn'bǭt&Iqcl1{_wU{X׃ 1\&߹fsONg]ZjKM[pb<3d"1!WۙG~3>ILFwZP+ Ò:9m5FҰ ;@/=kg^^K ?{`KÏb= +E^\@^9~ڌxG\-0FI4;&mnpǴ,QJ8j7IdBSf<0fJbe&(=]uݣڹ-lD]pTSdmxV777\gJ(_K UhIFn߮qt܍Dekϰ~T]rT .Kdz?~ѤM,rI$`Q_lwM*}>A*#k/bޞH ~Z9]C"x3%(\ - - =h*RlQ W} tB&w׈n5|%fgg͟_&>[We5,X&iw=~y]n\k᬴)kS#ҟ8U]?|}Q @"OR*̑ޝh#"&/h:R>U*.˯`B$&=XjNPueI9\b ̻\?"pQ6!`/p{ Ex]k`OOGQZÓ-Z4̊v )gRb̧MGR^7q; F!7n2??N qfK0!N!@]`Ի2Q\Ɯ9iG-L=Ni L[GU,)e4w9ॾ8tKPzim&i$[U&F# tG9|o3tXIi3$uFjR.b٩+U1 4q)+\]XuQ gHѣ"K"U[y0 ގ)znL/@xWk}׽lXUpܮ y!Yo xsz򡎲*uJС;MuL6:BT?F- x~yViV+6vԻ{+C][jh:3MT9-9|n&#:ޢu<ю\rD˪|}X{@Flw 6¾O3~HwWJs&1x?hu6mO~۳ w]'+<߭!Zva=:A+d>ɢVD#/PUT@ {N\+4VrLad fۥïk'tB dt U, s=;hSLKq6J2i6"ZE1@/9ͣ'CP+DX{}A=^;ȳJB38`~HGgfVp[a}Θkɺ\)jVK􈑿 f X=-y x~g>w;b6e$Dx^t90ctshB}4J:^5!կ!6ڢNQab#HYqN\,7Πu)y m9yO?p Pܲ|fX]LUսnÙ^Õhs"qyA0ٸ-@z7}VVLoHECuK|I ʦn8FGXמ60aL8ƃ@x}dϬ-CCt7~ƻ.BݼQteŋe4M W5ulP[RqdY2GDug9ZtKSf ]PEdc}-^NcwAl!6syIRM&t{mӂZ w*}>ĊOL#!}SU3Py ūAI*و(p_+^`mn԰߰Y+Ti20QC JppmE}FGK +o>Q֏PdL]!0HV ǰ~QK7iUŠAt~չ- qN?0deӼHT@W 򥊈_JBBSKJ!AIC6y9IR\cRdu)lw5L|-#z^bRU˩D]DI ʣC⏭ Vp,!ɢ6t;d:(iԐ)B\"-\coWQ5_cAx{^z6!ksxl0D _^2w:Z̖~y_Cʖ5$7S;6p0&% J QIń3h뺣ͮ3ֳKȠpuHy\t(VLD[fԏ8f8tu,<ZyX v;E d$`vZk." 'WM)k]]i2>[c?|ِr-؀pcD4edn~g "QFs'+ 7+E:}W} a:Lx % _i9gԺ~uO[w&|۠J UUh˕HT*Vd3ɵڝ~0P4}A4Vn.pC@PX댳d0t+8ۉ)}hJd2eNAQgoӚbFmY R_ ɅaFHU@Tw"HU t/A2\ uF=Gzd~B^krP`2X-_9B ReCQQa<*b]y3b }nm dz*$M.-pZh;==D|HqlmT\6(Bk{)0_Znc(tlӜȶ?*K}ӕ,nw w^x4`j&`@>^$i'N_ݪ*a{ $Lp9S}a79Z UN[V_lj,ýyIp\0L"$Cssvx OOZ1MSq5dGM$զ.с>. sL*WA‘%//9:!1N(bXr*H -"v#t]\2ſ/>6%`!_ eHIPJy>k:fa6ٜ!;|Ad(')R_ K]?H<7J4 lɶ@: kxXu]M+IZ}Gzc-|uyy2+>969jwSD|Jl`H e_vnnv/}n)!t4S12kDG ~h5^|J٩ <OWX@9zۍmwk{@Y)ěok5+/3&::"{)m&;7i5(-b j?-ǚ shCLH#]:]+)Pu"L`<"ȷ}[&z44L*~$q0zDRm+s~ HVn4o<Ds_(o^c )쉑Haq`pm vew AT9DՕ^.7bS } ޯ%&˸s槭]}KwaBR (ee;:VmS^VWx옃Bשbz05(Do{G9P+ Xn7˭w<)ئ~&5Cm00Pz(GCK1Ύgx[y@ߛ_mRvnqaIKF/AΊ6 Qc cbƀBY e`}DUKEWxjwKV<}9Y/GM勾S¶N3/O& geN H|0)1Jo/ Oq.Q|U** ᫚muf1'䕶g'-$cMc|3K0Ps$̞\$4tzG/҄Rx?YU`MoP&!#ȯfgܪkt@|fT.VO [[wh!_*BeR'($|`ׅgh波K;(.z'_-yD!vC EE^n['3? *o" WcVxa,b*8wjoCڢzٜY'j =s.7n42KItG^% ){7ƱE2bt`H~K?fu˦p<zhd>N9w)CÓTcӢ׬R' 8{y ޾X9D͂{$ssTzPE*PぬHR]ɿ Ѵ 믣&G-m7$b\Ƭ'O(#piҳg6y>?Sfؕ>uXTm3V?xx>eu ҳKU@<;#!*])xn7d)itoes@{V yb(x rJ'& ]e*9~@H`沌e3ME7U@9B#lP,1c"#[}7Ya@$ȃ5y8 ], k^@(KRZ'!B>eȰü[ď>EE;=?f҈&XQ3^J.mϜq^vI|To#c. #HV;J /?OBƳ:LPXݎz @MC~8tcNڍhc fO֟ {L\[qכNg`|ҕ=z RJ+ eC)KC*QL~ (ۧm!rx/u̼iP?Îjŷe ]NZGG]'^RX\Ia5_,H4 ρB'iÛzoRđ}.BגXELwR.jExO s ʼn29o DYT <aXN gYE!hLEtO*SJrj,hOզP[D/7iN0_ صJ@pvjo6XHxs`w\wP*XAg\y5HWbA0R[_F(t ӧ2?)}H㛺!m'iBlh O],Jqk4;&Ms1U oX;YTVHCީ<{!O/v +]늱Պ$ަٶEi]js\ ,U섈Tk# >:OQUAkݨ{ YJpqS?RJt\"O]-9i<n낅c& ;e/Ep]y"MѹV%)F11CuVuhcA: wfhVLPrD"-D]8Iro"[7B{%T7KVZ7-*Z|{]U򍙄|2EFx4a}ۿ+5mA33] 5h[Of(ߠ$) P5 QZIB4<Ў@<{)6u1péB5I:t2*՜掚fX*zwGNq)~) q.l1W`n"Z[5UKΝU11EbJЪV+#tN uP<ƳIZ0ϓ/u;j6X'j8 PM~1 ,[6{hbW:dsodL+j%(ڍbOn^(. R+q\c5U3#ʇBZr5PniLO?P(pjjihX,gi:+s>!i3~s"^]Hz(uʙ)*sN<)L0/ٸEe&Rt+'eB7_V)9YYfK ;1vC0Fʙ>'/WN@s`̙U_U:yLFKxeQRu=+EϮ* -4;1/]NuKp}r62[uc<kbO͙o(rdcU#P-W!elYbbAu9O!xwѤG]C^;{.PvHHt1V~:|pe߷rO.XLJT/-) SHHȹ :3Q澣DV`Ae70{`RZ T('? v\|,P#+?&De42_~ PgeAP8&K9?7>?B(ʲݞ_;ʓه19i$ ^kB^A)Ά3IyBlmr@W3yEs5mfzeXhzz;0exDدk֪ӿN|pK-HD$E{`84(>&NmjZdM}%hGof W}k]RVzֺr$#EB__M#]+@W ; x_4;[fT!!P$6ہTLU dt°{㯌^^ Ga|l ލ\dI%& R02\|d( Cm,9RE܅I6"xa7qS dO| n^"1U^"I(:GnK ORɚ+J|[O)Od)F tWLq:bib~sPdf{e["1@ܸqAh#aDg06n Vȓ Vx#9UPq`'m1Ґ-bz.FK#㍊ 0#'Qp/nYka42V? 2@v@ޟKoB>jSlyG'msϘ 1r*Qg3l+/]A GkH)05> >j==|ݣ"=?&Ȝ t*ra7@Aε_'v(x.Svd+YmlrٚZr^%.H4N =p #iui-QНF4kzr86݀HǺiBx̛d JU ݆+\T+% bo}J鑠WIE\w@qIAY"D2KR'7\{ˊ#W (Q$VQj#V|--w {ۻ>] Ac+FQF8d~P;B-I z}\' .b0"bJ꛾ad"/ 0&GuWD*89xN_5fg@k RHf?T'╃PW_9]Ltfxu -q0ku8#{ OS븑L=e |Cgl}) v|exJ{ #|(z@]!ħbfs{:/[:43>'jo)htѥT-O\4f(u*SGýa8O7G3Z,QAt3;M,.6"_kKi7-qKL5p*JM3(  kd6 ?y~9vhyķlѫhk,5?f`_E+À,6g{}& 'OMI^rK 9d'+@b"dG;+(ї03VٍMVcublM~+̳ۓ8+5E'<_?ʀX'剷E`lvK/&x6uqH6?S5y6DiEܿ-A9,9%Jݐg8/Hd2"uM3;747B ^PDS9FA38&OEQhLt<%{% lSl{1EsJjNQQЊ9>jrr^)v'՜̼)hGW~URNi74  1nOMYjT7<;Ua&y 3ö-|u5Mc@p1SnGfw ?4,2wKyHԱ~wg_lSl'ݚQ6jy!!4-,ans/cZ|1.BtB8CTtlѾ颣WaW[Ol_VMDTs#ؚFj/[՞{3T]DTfr[d'd@W(JtLƺf8sgm#LfjʊE©GpX+’,ϧtEaֽx_K<0_s)^# XEdwm)bϣZB_spzV89ԶGpbۮn5F1C@gyߟz`K-1I@be*.pKD́tm 3ƼSdC0rQP!*&GdUCL YW[, 74qTs;e&G4*O4u(S LbV rGc(쌼|^_݂;;7~?z\JL)s3RũLSmE]4*Pʀgl?=3jU8f{';߉I[lH8 +^UV%d²AKmb/wg (a(TR㡜~`L+C8 .yZ$}~G9j@A R@Ps\ձ6 D_lJ@Ճre.I-}WtpüJVn&RdG*l÷ !BRi1ܫKK]⥍XG2Eӱ̡;mYM[M*bFr6^fu2f!>;Tgqj+8ܯ+g9|wYLJ49ܟdY$|EbLLiFxf