parallel-netcdf-openmpi3-devel-1.7.0-bp153.1.15 >  A `Cܣ!M@eeeuMfaBFg{zކ>*l󇬃{odžg_]_D^!; fo.@^@9MWGq~߻#ޥ$z>^sH%)0DP^TnJACy]wz}$Pod:-pB]ҺF൬9AV<=^s_ˎʼa$@+8p;?d!' 2 jx| 06@X d p   <p(8 9 : F9GPHhIXY\]^bc*defluvzP`djCparallel-netcdf-openmpi3-devel1.7.0bp153.1.15Development files for parallel-netcdf-openmpi3-openmpi3NetCDF 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 openmpi3 version of PnetCDF.`Cbobs-arm-1 SUSE Linux Enterprise 15 SP3openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxaarch64+kvFk`C]`C[`C]`C]`C^`C[5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700a15e9b9122a0f4342362f89cde95f2657169333802f39d5cb8f1a6f08412aeecclibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi3-1.7.0-bp153.1.15.src.rpmparallel-netcdf-openmpi3-develparallel-netcdf-openmpi3-devel(aarch-64)    libpnetcdf1-openmpi3openmpi3-develparallel-netcdf-devel-datarpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.7.03.0.4-14.6.0-14.0-15.2-14.14.1]Y]]w@Ws@W~UWUnU@UK@P:Stefan Brüns Stefan Brüns Christophe Giboudeaux jengelh@inai.detoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comscorot@free.fr- Add convenience provides to allow e.g. netcdf-openmpi2 to pull in libpnetcdf-openmpi2. - Also build openmpi3 flavor.- Build MPI pacakges as multibuild flavors, add openmpi2 - Adapt to openmpi -> openmpi1 rename on Tumbleweed- Use -ffat-lto-objects when building static libraries.- Trim descriptions.- Update to 1.7.0 o New features * Nonblocking requests now can be posted while the program is in the define mode. This feature enables applications to add new variables and post the nonblocking write requests without separating the codes by ncmpi_enddef(). Note ncmpi_wait_all and ncmpi_wait must still be called in the data mode. * When using immutable write buffer in put APIs on a Little Endian machine, the in-place byte swap operation performed internally in PnetCDF can cause a fatal error (by trying to change the contents of an immutable memory space). The solution of copying user's write request to a temporary buffer and perform byte swap there conflicts with PnetCDF's design principle of avoiding internal memory allocation as much as possible. Since the size of immutable buffer in most cases is small, PnetCDF now compromise the two by making a copy of write requests that is less than 4KB. Users are warned that using immutable write buffer larger than 4KB will still cause the fatal error in the PnetCDF default configuration. The way to completely disable in-place byte swap is to build PnetCDF with --disable-in-place-swap option at the configure time. In this case, the internal memory allocation in PnetCDF will increase. o Syntax changes * In ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel(), the API's third argument, array of requests IDs, is changed to INOUT. Upon successful completion or cancellation of individual nonblocking requests, the corresponding request IDs are set to NC_REQ_NULL. o New run-time environment variables * PNETCDF_VERBOSE_DEBUG_MODE environment variable can be used to print the location in the source code where the error code is originated, no matter the error is intended or not. This run-time environment variable only takes effect when PnetCDF is configure with debug mode, i.e. - -enable-debug is used at the configure command line. Set this variable to 1 to enable. Set it to 0 or keep it unset disables this mode. Default is 0, i.e. disabled. Users are warned that enabling this mode may result in a lot of debugging messages printed in stderr. o New example programs * examples/C/nonblocking_write_in_def.c shows an example of posting nonblocking write requests in the define mode. * examples/C/req_all.c shows an example of using NC_REQ_ALL to flush all pending nonblocking requests without providing the requests IDs. o New test program * test/cdf_format/dim_cdf12.c tests defining maximal dimension size for CDF-1 and CDF-2 file formats * test/testcases/test_erange.c tests if the error code NC_ERANGE can be correctly returned for two cases 1) get a NC_UBYTE value of 255 from a netCDF file to a memory buffer of type signed char and 2) put a value of -1 of signed char to a NC_UBYTE variable in a netCDF file * test/testcases/check_type.c tests if the error codes can be correctly returned when conflicted in-memory and extenal data types are used. * test/testcases/put_parameter.f tests the use of immutable write buffer (e.g. a buffer declared as PARAMETER). Note the buffer size must be smaller than 4KB. * test/nonblocking/i_varn_indef.c tests posting nonblocking requests in define mode. * test/nonblocking/req_all.c tests the use of NC_REQ_ALL for flushing all pending nonblocking requests without providing the requests IDs. * test/last_large_var.c tests the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. * test/testcases/buftype_free.c and test/testcases/buftype_freef.f test the bug in r2160. * testcases/add_var.c checks the starting file offsets of newly added variables from re-entering the define mode. * testcases/attrf.f checks NF_ERANGE is returned instead of coredump. This is particularly for NAG Fortran compiler that may report "Arithmetics exception". * testcases/check_striping.c checks if the file striping unit and factor returned from MPI-IO hints are consistent among processes. * test/nonblocking/column_wise.c checks if PnetCDF detects interleaved fileviews from multiple nonblocking requests and correctly breaks and reconstructs the fileviews so the combined fileview is monotonic non-decreasing in file offsets. o New optimization * Filling variables at ncmpi_enddef() is now done by aggregating all write requests into one MPI collective write call. In v 1.6.1, this is done by filling one variable at a time. o New utility program * ncoffsets reports the file offset information, including the starting and ending file offsets, of variables stored in a netCDF file. ncoffsets is compiled with gcc if gcc is presented on the build system. Additional command-line options are: (-v) reports only for a selected list of variables in interest, (-s) prints the variable sizes, (-g) outputs the file space gap size from the end of previous variable, (-x) reports whether there is a gap between any two adjacent fixed-size variables. See the man page for descriptions of all command-line options and examples. o Semantics updates * All nonblocking APIs now take a NULL pointer for the request ID argument, meaning users do not wish to keep track of the request ID. If NULL request IDs are used, NC_REQ_ALL should be used when calling ncmpi_wait_all/ncmpi_wait to commit all the pending nonblocking requests. This feature relinquishes users from the responsibility of tracking the IDs of pending requests. * Using NC_REQ_ALL as the 2nd argument "num" in ncmpi_wait_all/ncmpi_wait APIs will flush all the pending nonblocking requests. In this case, the 3rd and 4th arguments "array_of_requests" and "array_of_statuses" will be ignored and thus these two arguments can be NULLs. * Using NC_REQ_ALL in ncmpi_cancel() will cancel all the pending nonblocking requests. * Using NC_GET_REQ_ALL or NC_PUT_REQ_ALL in ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel() for all the pending get-only or put-only requests, respectively. o Other updates: * Conform with netCDF on the maximal dimension size for CDF-2 file format to be (2^32 - 4) * NC_ERANGE checks have been removed from nc_test for text APIs and variables that are defined as NC_CHAR type * Add README.K-Computer build recipe for using Fujitsu MPI compilers on the K computer at RIKEN in Japan * Add README.INTEL build recipe for using Intel MPI compilers 4.x * Build dependency rule is added for files configure and configure.in * PnetCDF checks MPICC/MPICXX/MPIF77/MPIF90 instead of CC/CXX/F77/F90/FC. If MPICC/MPICXX/MPIF77/MPIF90 are set, PnetCDF will ignore CC/CXX/F77/F90/FC. If CC/CXX/F77/F90/FC is set instead of MPICC/MPICXX/MPIF77/MPIF90, PnetCDF will now copy them to MPICC/MPICXX/MPIF77/MPIF90. * Enforce netCDF convention on error code priority: NC_ECHAR trumps NC_EINVALCOORDS, NC_EEDGE, and NC_ESTRIDE. * Return error code NC_EGLOBAL instead of NC_ENOTVAR for APIs where using NC_GLOBAL as the variable ID argument is prohibited. * All Fortran 77 test and example programs (files with .f and .F extensions) have been revised to conform with 77 standard, and was tested using pgf77. * Now provides a pkg-config file (http://www.freedesktop.org/wiki/Software/pkg-config/), making it slightly easier to set the correct pnetcdf include and library paths. o Bug fixes * Fix the bus error of invalid address alignment when build with Fujitsu compiler. See r2171 and r2180. * Fix the bug for the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. See r2166. * Fix the nonblocking flexible APIs that fail to save (duplicate) the user MPI derived data type that later is needed to unpack read data to the user buffer (a call to MPI_Unpack). See r2160. * Fix Fortran 77 constants nf_fill_uint and nf_fill_int64 (thanks Jim Edwards) that pgf77-based MPI compiler does not like "_8" modifier. See r2045 and r2051. The same issue for NAG Fortran compiler is also resolved. See r2089 and r2093. * In the example program examples/tutorial/pnetcdf-write-nb.c, the write buffers used in two iput API calls should be different. See r2095. * Fix the error reporting mechanism for NC_ERANGE, for when an arithmetic overflow happens. Overflow checking is now performed before I/O.- Fix license- Fix building on non-x86_64 64-bit platforms- Update subpackage groups - Make subpackage summaries and descriptions more consistent - Provide rpm macros for version identification - Spec file cleanups- Update to version 1.6.1 o New features * PnetCDF now supports fill mode. ncmpi_set_fill() can be used to set the fill mode for the entire data set. Note the differences from netCDF: 1. The default mode in PnetCDF is NC_NOFILL. 2. Setting fill mode for the entire file or individual variables must be done in define mode. 3. For non-record variables, they are filled at the time ncmpi_enddef() is called. 4. For record variables, users must explicitly call ncmpi_fill_var_rec() to fill one record at a time before writing to the record of that variable. o New APIs * ncmpi_def_var_fill() sets fill mode for an individual variable. This API must be called in define mode. * ncmpi_inq_var_fill() inquires fill mode of a variable. * ncmpi_fill_var_rec() is a collective API that fills a record of a record variable. This API must be called at data mode. * ncmpi_inq_default_format() for inquiring the default file format for new file creation. Note the default format can be changed by ncmpi_set_default_format(). * The above new API are also available in Fortran and C++ versions. o New error code * NC_ENOTRECVAR when attempting operation only for record variables * NC_ENOTFILL when attempting to fill a variable when its fill mode is off * NC_EMULTIDEFINE_FILL_MODE when inconsistent dataset fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_MODE when inconsistent variable fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_VALUE when inconsistent variable fill value is detected * Fortran versions of the above error codes are also added. o New example programs * C/fill_mode.c shows the use of ncmpi_set_fill(), ncmpi_def_var_fill(), ncmpi_inq_var_fill() and ncmpi_fill_var_rec() F77/fill_mode.f is the Fortran version. F90/fill_mode.f90 is the Fortran 90 version. CXX/fill_mode.cpp is the C++ version. * C/ghost_cell.c shows how to use varm API for writing from a user buffer as a 2D array with ghost cells on both ends of every dimension. o New test programs * nc_test/tst_nofill.c borrowed from netCDF * testcases/ivarn.c tests bug fix r2023 when the request IDs stored in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. o Other updates: * Change the chunk size used for moving variable data when the file header extent expands. The default is now 1MB. If the file's striping unit size is known (from MPI-IO hint striping_unit) then the chunk size is set to the striping unit size. o Bug fixes * Add missing F90 function overloading for f90mpi_put_var_all, f90mpi_get_var_all, f90mpi_put_vard_all, and f90mpi_get_vard_all, when the user buffer is a scalar. * Fix when the request IDs passed in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. See r2023. * Fix C++ compile error for converting NULL to string. See r2039. - Update to version 1.6.0 o Format conformation updates: * Conform with netCDF4 on CDF-1 and CDF-2 formats. The only difference now between the two formats are the OFFSET item in the format spec (32 vs. 64 bit integers.) All names (variable, dimension, attribute) now allow extended characters (eg. special2 and MUTF8). o New APIs * Nonblocking buffered varn API family. For C, ncmpi_bput_varn_() For F77, nfmpi_bput_varn_() For F90, nf90mpi_bput_varn() For C++, NcmpiVar::bputVarn() * Nonblocking varn API family. For C, ncmpi_iput_varn_() and ncmpi_iget_varn_() For F77, nfmpi_iput_varn_() and nfmpi_iget_varn_() For F90, nf90mpi_iput_varn() and nf90mpi_iget_varn() For C++, NcmpiVar::iputVarn() and NcmpiVar::igetVarn() * Blocking vard API family takes an argument of MPI derived data type that describes the file access layout, as opposed to vara and vars APIs that use start[] and count[]. For C, ncmpi_put_vard() and ncmpi_get_vard() For F77, nfmpi_put_vard() and nfmpi_get_vard() For F90, nf90mpi_put_vard() and nf90mpi_get_vard() For C++, NcmpiVar::putVard() and NcmpiVar::getVard() * Collective var1 API family For C, ncmpi_put_var1_all() ncmpi_get_var1_all() ncmpi_put_var1__all() ncmpi_get_var1__all() For F77, nfmpi_put_var1_all() nfmpi_get_var1_all() nfmpi_put_var1__all() nfmpi_get_var1__all() For F90, nf90mpi_put_var_all() nf90mpi_get_var_all() For C++, NcmpiVar::putVar_all() NcmpiVar::getVar_all() * ncmpi_inq_buffer_size() returns the size of buffer previously attached for use of bput APIs. With ncmpi_inq_buffer_usage() one can calculate the space remaining for additional bput requests. For F77, nfmpi_inq_buffer_size() For F90, nf90mpi_inq_buffer_size() For C++, NcmpiFile::Inq_buffer_size() * ncmpi_inq_recsize() returns the size of record block, i.e. the sum of single records of all record variables. For F77, nfmpi_inq_recsize() For F90, nf90mpi_inq_recsize() For C++, NcmpiGroup::getRecSize() * ncmpi_inq_num_rec_vars() and ncmpi_inq_num_fix_vars() report the number of record and fixed-size variables, respectively. For F77, nfmpi_inq_num_rec_vars() and nfmpi_inq_num_fix_vars() For F90, nf90mpi_inq_num_rec_vars() and nf90mpi_inq_num_fix_vars() For C++, NcmpiGroup::getRecVarCount() and NcmpiGroup::getFixVarCount() o New PnetCDF hint * pnetcdf_subfiling -- it can be set in an MPI info object or in the environment variable PNETCDF_HINTS to enable/disable subfiling. The value is either "enable" or "disable". o PnetCDF hint priority * The alignment hints set in the environment variable "PNETCDF_HINTS" have the highest priority, which overwrite the alignment hints set in ncmpi__enddef(), which overwrite the alignment hints set in the MPI_Info object used in the call of ncmpi_create() and ncmpi_open(). o New error code * NC_ESTRICTCDF2 for attempting CDF-5 operation on CDF-2 file. For example, define a variable of type NC_INT64 in a CDF-2 file. * NC_ETYPESIZE when filetype size is bigger than the variable size * NC_ETYPE_MISMATCH when the element type of filetype mismatches the variable type * NC_ETYPESIZE_MISMATCH when filetype size mismatches buffer type size * NC_ENULLSTART when argument start is a NULL pointer * NC_ENULLCOUNT when argument count is a NULL pointer * NC_EINVAL_CMODE when invalid file create mode is set, (e.g. cannot have both NC_64BIT_OFFSET & NC_64BIT_DATA. In PnetCDF 1.5.0 and earlier versions, if both flags were set, then NC_64BIT_DATA triumphs NC_64BIT_OFFSET.) o New example programs * C/bput_varn_uint.c and F77/bput_varn_int8.f show the use of nonblocking bput_varn APIs * C/i_varn_int64.c and F77/i_varn_real.f show the use of nonblocking iput_varn and iget_varn APIs * C/vard_int.c F77/vard_int.f F90/vard_int.f90 CXX/vard_int.cpp show the use of vard API to write/read record and fixed-size variables. * C/transpose.c shows the use of ncmpi_put_vara_int_all to write a 3D array that is dimensional-transposed from the one stored in memory. Six transposed 3D arrays are saved whose dimensions are organized as ZYX, ZXY, YZX, YXZ, XZY, and XYZ. The C++, Fortran 77, and Fortran 90 versions are also provided. o New test program * nonblocking/wait_after_indep.c tests if ncmpi_end_indep_data() returns properly when nonblocking APIs are called in independent data mode and the wait call is made after exiting the independent mode. * nonblocking/flexible_bput.c tests flexible bput APIs that use noncontiguous buffer type, noncontiguous imap and require type conversion * testcases/flexible2.c tests flexible APIs that perform type conversion * testcases/flexible_varm.c tests flexible varm APIs * testcases/varn_contig.c tests the case when the fileview is actually a contiguous chunk. PnetCDF should be able to merge all. * nonblocking/bput_varn_uint.c tests nonblocking bput_varn APIs * nonblocking/i_varn_int64.c tests nonblocking iput_varn and iget_varn APIs * test/testcases/test_vard.c test/testcases/test_vardf.f test/testcases/test_vardf90.f90 test the new vard APIs. * test/testcases/inq_recsize.c tests if one can correctly inquire the size of record block from in a netCDF file. A similar program in F90, named inq_recsizef.f90, is also added. * In test/nc_test, the test programs below are borrowed from netCDF test programs: t_nc.c tst_misc.c tst_norm.c tst_small.c tst_names.c tst_atts3.c tst_atts.c * test/testcases/one_record.c tests the special case defined in CDF-1 and CDF-2 specification that "A special case: Where there is exactly one record variable, we drop the requirement that each record be four-byte aligned, so in this case there is no record padding." * test/testcases/modes.c tests if correct error codes are returned when various file create/open modes are used. * Under test/testcases, varn_int.c varn_intf.f varn_real.f90 test varn APIs * test/testcases/inq_num_vars.c test if one can correctly inquire the numbers of record and fixed-size variables defined in a netCDF file. A similar program in F90, named inq_num_varsf.f90, is also added. * test/nonblocking/interleaved.c tests a combination of interleaved file types. This is to test the bug fix in r1758. o New optimization * Prior to this release, PnetCDF wraps each MPI read/write call in put/get APIs with two MPI_File_set_view(). One is before the MPI read/write call to take advantage of MPI's fileview feature for accessing non-contiguous file locations. The other is after the MPI read/write call to make the whole file visible, as the root process may write to file header later in the data mode and it alone cannot make a call to MPI_File_set_view() because the function is collective. In this release, the second MPI_File_set_view() has been removed. The root process's fileview is changed to always keep the whole file header visible. Saving a collective call to MPI_File_set_view() is expected to improve some performance. o Semantics updates * Header consistency mechanism has been updated. See README.consistency for details. * The use of NC_SHARE is also revised. See README.consistency for details. o Other updates: * The subfiling feature is now disabled in ncmpidump and ncmpidiff until a bug fix to allow reading the master file with the number of processes that is smaller than the number of subfiles. * The attribute names reserved for subfiling feature are now changed to use a prefix of "_PnetCDF_SubFiling". The leading "_" underscore is a CDL convention. * The flexible APIs now allow argument buftype to be MPI_DATATYPE_NULL. In this case, argument bufcount is ignored and argument buf's data type must match the data type of variable defined in the file - no data conversion will be done. This extension makes the flexible APIs be able to correspond to the netCDF APIs whose names do not contain a data type, e.g. nc_put_vara(). * Type conversion between NC_BYTE and unsigned char no longer checks for out of range error (NC_ERANGE). CDF file format specification make a special case for this kind of data type conversion. See: "Note on byte data" in the format specification. * Conform with the CDF-2 and CDF-5 formats that names are normalized according to Unicode NFC normalization rules during encoding as UTF-8 for storing in the file header. * A new configure option, --enable-large-file-test, to enable testing I/O on large files and large variables. Note the testing prgrams will run very slowly. o Bug fixes * fix the bug for flexible get_varn API. When buftype is noncontiguous, the bug forgot to "unpacks" the temporary buffer that reads data from file to the user buffer using buftype. * fix the bug in blocking flexible get APIs when buftype is noncontiguous, swap is needed, type conversion is not. The bug sets a NULL pointer to the read buffer and passes it to MPI_File_read functions. See r1815. * fix the bug for the NetCDF special case when there is only one record variable and the record size is not four-byte aligned. In this case, NetCDF spec says the alignment must dropped (no padding). See r1791. * fix the bug in nonblocking APIs when requests are resorted into nonoverlapping groups and the first group of file types are interleaved, it was mistakenly identified as non-interleaved. See r1758. * fix the setting for PNETCDF_RELEASE_DATE in configure.in. Using read command together with IFS does not work as expected in bash 4.3.11. See http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2014-July/001586.html for further detailed discussion. - Update to version 1.5.0 o New features * A new configure option "--disable-in-place-swap" is added. It disables the byte-swap operations running in-place on the user's write buffers. The purpose of providing this option is to deal with the problem when a Fortran program uses a immutable buffer for put APIs, e.g. the buffer is declared as a PARAMETER, and in-place byte swap on this buffer causes segmentation fault. See discussion threads of http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2013-July/001498.html Impacts: 1. It takes effect only on Little Endian machines. 2. It only affects put/iput data APIs, but not attribute APIs. 3. The INTENT of buffer arguments in all Fortran 90 put/iput APIs will be declared as "IN". Without this setting, the default is "INOUT". 4. It has an impact on performance, as an extra internal temporary buffer will be allocated to copy data over from user's put buffer, so byte swap can be run on the temporary buffer. The default setting is to enable in-place byte swap. PnetCDF tries not to allocate additional memory space, due to performance concern. Users are discouraged to use Fortran PARAMETER buffers in put APIs. * A new configure option "--enable-debug" is added. It enables a memory allocation tracing mechanism internal in PnetCDF. In addition, it enables the PnetCDF safe mode. (Note that setting the environment variable PNETCDF_SAFE_MODE at the run time can still overwrite the safe mode.) Default debug mode is disabled. When enabled, a user program can call three new APIs below: ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, and ncmpi_inq_malloc_list to obtain the size in bytes of current memory allocated internally. This feature uses a binary tree to manage all malloc buffers, e.g. tsearch() and tdelete(). * Add three Fortran parameters for PnetCDF library version numbers: PNETCDF_VERSION_MAJOR, PNETCDF_VERSION_MINOR, and PNETCDF_VERSION_SUB. Similarly in C programs, these are defined in pnetcdf.h as constants. o New APIs * C++ APIs are now available. They are developed based on netCDF-4 C++ library. However, users are encouraged to use C APIs, instead C++. * ncmpi_put_att, ncmpi_get_att, nfmpi_put_att, and nfmpi_get_att - these APIs correspond to nc_put_att, nc_get_att, nf_put_att, and nf_get_att. Note they are not the "flexible" APIs. Flexible APIs have an MPI derived datatype argument. * ncmpi__enddef, nfmpi__enddef, and nf90mpi_enddef - these APIs correspond to netCDF nc__enddef, nf__enddef, and nf90_enddef (with additional optional arguments). * ncmpi_inq_file_info - the naming for ncmpi_get_file_info may cause confusion, as "get" has a different meaning on PnetCDF. The correct name should use "inq". However, ncmpi_get_file_info is kept for backward compatibility. * ncmpi_inq_striping, nfmpi_inq_striping, nf90mpi_inq_striping report the file system striping settings of the opened file: striping size and striping count, if the underneath MPI-IO can find their values from the file system in use. * ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, ncmpi_inq_malloc_list report the size in bytes of current memory allocated internally by PnetCDF. Similar APIs for Fortran 77 and 90 are also available. These APIs are enabled only when PnetCDF is configured with option - -enable-debug. When this option is not enabled, calling these APIs will return the error code NC_ENOTENABLED. These APIs are usefully for debugging. * ncmpi_inq_files_opened reports the number of files that are currently opened. Similar API for Fortran 77 and 90 are also available. The API takes 2 arguments: number of files and array of file IDs. If the second argument, array of IDs, is not NULL, then it will filled with the netCDF dataset IDs. This API is useful for debugging. o Syntax changes * For all Fortran put/iput APIs, the INTENT of write buffer arguments is changed to "INOUT" on Little Endian machines, if option "--disable-in-place-swap" is not used at configuration. Otherwise, i.e. on Big Endian machines or PnetCDF is configured with "--disable-in-place-swap" on Little Endian machines, the INTENT is "IN". o New PnetCDF hint * nc_record_align_size - aligns the starting file offset of the record variable section. Note this is for the entire section, not individual records. o New error code * NC_ENOTENABLED indicates the API is available only when the corresponding feature is enabled. For example, nfmpi_inq_malloc_size() returns this error code when "--enable-debug" is not used at configure. * NC_EBAD_FILE corresponds to MPI error code MPI_ERR_BAD_FILE, meaning "Invalid file name (e.g., path name too long)." * NC_ENO_SPACE corresponds to MPI error code MPI_ERR_NO_SPACE, meaning "Not enough space." * NC_EQUOTA corresponds to MPI error code MPI_ERR_QUOTA, meaning "Quota exceeded." * NC_EMULTIDEFINE_FNC_ARGS corresponds to MPI error code MPI_ERR_NOT_SAME, meaning "inconsistent function arguments used in collective API." o New run-time environment variables * none o New example programs * Example programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * Under examples/C, three examples are added: create_open.c, get_vara.c, and global_attributes.c. File examples/README contains their descriptions. * Under examples/CXX, several example programs corresponding to those in examples/C are added. o New programs for I/O benchmarks * none o New test program * Many test programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * add tests for flexible APIs. The tests borrow from nc_test/test_write.c that tests nc_put_var1, nc_put_vara, nc_put_vars, and nc_put_varm. Similarly for get APIs. * testcases/record.c checks if the number of records is updated correctly. It writes to a variable's 2nd record followed by the 1st record. A call to ncmpi_inq_dim() or ncmpi_inq_dimlen() should report 2 records after the writes complete. * testcases/noclobber.c checks if error code NC_EEXIST can be returned correctly when NC_NOCLOBBER modes is used in ncmpi_create and in the meantime the file exists. * Some test programs are developed to run in parallel. The test mechanism for parallel runs is command "make ptest". Two environment variables can be used to set the MPI run command and output file directory: TEST_MPIRUN and TEST_OUTDIR. Their defaults are mpiexec and "." (current directory), respectively. For example, make ptest TEST_MPIRUN="aprun -n NP" TEST_OUTDIR=/scratch Note the keyword "NP" will be replaced by the different numbers of processes used to run the tests. The testing uses up to 8 MPI processes. * A sample PBS script file is provided to test "make ptest" on machines with a batch queue system: pbs.script. This example script can be submitted from the build root directory (where you run "make" command to build PnetCDF library). * For cross compile environment (and batch queue system), the environment variable TEST_SEQRUN can be used to set the MPI run command. For example, the command for testing sequential programs: make check TEST_SEQRUN="aprun -n 1" TEST_OUTDIR=/scratch For non-cross compile environment, there is no need to set the environment variables, as long as one can run the MPI executable without mpirun or mpiexec. o New optimization * none o New utility program * pnetcdf_version prints the version information of the PnetCDF library and command-line arguments used at configure o Other updates: * Revise FLASH-IO benchmark to use nonblocking APIs for both checkpoint and plot writes. The control variable to switch between nonblocking and blocking API is "use_nonblocking_io". Set it to .FALSE. in flash_benchmark_io.F90 to switch to blocking APIs. Using nonblocking APIs is now the default. * To match ncdump, ncmpidump now only supports one input file. * Makefiles are revised for better recursive make and fixed some build target dependency for parallel make. * File creation was revised for handling NC_CLOBBER and NC_NOCLOBBER modes. On systems where Unix calls access() and unlink() are available, they are used to check if a file exits and to delete an existing file. * subfiling is now enabled by default. Users can use --disable-subfiling to disable it * man page of ncmpigen is updated to add the description for option "-v" which lets users to specify the desired output file formats, e.g. CDF-1, CDF-2, or CDF-5. * flex, lex, bison, or yacc are no longer needed for building ncmpigen. o Bug fixes * fix ncmpigen.y on parsing CDL file to get the number of records. The bug failed the command "make b-test", due to getting a wrong number of records (current value for the unlimited dimension). * fix the update for number of records when writing to a record that is not the last record. - Update to version 1.4.1 o Bug fix: * Improve pnetcdf.inc portability for fixed/free-form Fortran programs o Fortran API syntax changes * For nfmpi_put_att and nf90mpi_put_att family, the intent modifier for the put buffer arguments are now declared as INTENT(IN). * For nfmpi_put_var* and nf90mpi_put_var family + On Big Endian machines, the the intent modifier for the put buffer arguments are now declared as INTENT(IN). + On Little Endian machines, the the intent modifier for the put buffer arguments are still declared as INTENT(INOUT). This is because PnetCDF does in-place byte-swap on user's put buffer. If user's buffer is declared as parameter, then segment fault can happen when PnetCDF tries to byte-swap a read-only memory. o Subfiling * Subfiling is a new PnetCDF feature that divides a file transparently into several smaller subfiles, each of which stores subarrays in CDF file formats. The file name supplied by the users serves as a master file that contains all metadata about array partitioning information among the subfiles. Because data partitioning is made transparently from users, data accessing is kept the same through the conventional PnetCDF APIs and the master file. * To enable this feature at configure time, add configure option "--enable-subfiling". - Update to version 1.4.0 o New APIs * Fortran 90 APIs (adopted from netcdf-fortran-4.2). All F90 APIs have prefix name "nf90mpi_". The APIs support function overloading. * get/put_varn_ for reading/writing a list of subrequests (each is specified by starts[i][ndims] and counts[i][ndims] for subrequest i. ndims is the number of dimension of the variable) to a single variable. * multiple put/get requests with explicit buffer type names: ncmpi_mput_var_type(), ncmpi_mput_var1_type(), ncmpi_mput_vara_type(), ncmpi_mput_vars_type(), ncmpi_mput_varm_type(). Similar for get APIs. "type" is one of the followings: text, schar, uchar, short, ushort, int, uint, long, float, double, longlong, or ulonglong. * ncmpi_inq_nreqs() reports the number of pending nonblocking requests * ncmpi_inq_header_size() reports the size of the file header * ncmpi_inq_header_extent() reports the space currently allocated for the file header, (also the file offset of the first variable) * ncmpi_inq_put_size() reports the write amount committed by far * ncmpi_inq_get_size() reports the read amount committed by far * ncmpi_sync_numrecs() a collective API that can be called in independent data mode to synchronize the number of records in memory across all processes, and update to the file if NC_SHARE is set. o Syntax change for Fortran put APIs * intent of buffer argument in all Fortran APIs is changed to inout, as byte-swap might be performed directly on the buffer. This change is for performance consideration. For example, if the buffer is declared as Fortran parameter, then compile will fail. o New PnetCDF hint * nc_header_read_chunk_size: PnetCDF reads the file headers in chunks. This hint indicates the chunk size (in bytes). The default is 256 KB. o New error code * NC_EINTOVERFLOW reports the error of 4-byte integer overflow. This usually happens due to MPI-IO data type constructor APIs' arguments using 4-byte integers. * Error codes to report metadata defined inconsistently across processes. o New run-time environment variables * PNETCDF_SAFE_MODE environment variable can be used to enable/disable the internal checking for data/argument consistency across all processes (by calling collective MPI_Allreduce). Set it to 1 to enable the checking. Default is 0, i.e. disabled. * PNETCDF_HINTS environment variable can be used to pass the I/O hints to PnetCDF library. Hints include both PnetCDF and MPI-IO hints. PNETCDF_HINTS is a string of hints separated by ";" and each hint is in the form of hint=value. E.g. romio_ds_write=disable;nc_header_align_size=1048576 If this environment variable is set, it overrides any values that were set by using calls to MPI_Info_set in the application code. o New example programs * example programs are now categorized into C, F77, and F90 directories * nonblocking_write.f and nonblocking_write.f90 are the Fortran version of nonblocking_write.c * put_varn_float.c for using the new APIs ncmpi_put_varn_float_all() put_varn_real.f and put_varn_real.f90 are the Fortran versions * put_varn_int.c, put_varn_int.f, and put_varn_int.f90, for using the new APIs ncmpi_put_varn_int_all() and nfmpi_put_varn_int_all() * hints.c, hints.f, and hints.f90 for using PnetCDF hints * flexible_api.c, flexible_api.f, and flexible_api.f90, for using blocking and nonblocking flexible APIs * mput.c for using ncmpi_mput_vara_all() to write a series of arbitrary start[] and count[] * block_cyclic.c, block_cyclic.f, and block_cyclic.f90 are for a * -(block-cyclic) 2D partitioning pattern * column_wise.c, for a *-cyclic 2D partitioning pattern * put_vara.c, put_vara.f, and put_var.f90 for using for nfmpi_put_vara_int_all() o New programs for I/O benchmarks * benchmarks/C/aggregation.c -- evaluate PnetCDF's performance on I/O aggregation across multiple requests with different data access patterns. * benchmarks/C/write_block_read_column.c -- writes variables and reads back using different data partitioning patterns * benchmarks/FLASH-IO -- I/O kernel of FLASH, a reacting hydrodynamics code developed at University of Chicago. This benchmark can be built independently from PnetCDF release. o New test program * test/F90 contains test programs adopted from netcdf-fortran-4.2 * test/nf90_test contains test programs adopted from test/nf_test * testcases/alignment_test.c -- test for header and fixed variable file offset alignments when entering redef mode * testcases/nonblocking.c -- test nonblocking APIs ncmpi_iput_vara_int() and ncmpi_iget_vara_int() * testcases/flexible.c -- test flexible API ncmpi_get_vara_int_all() using an MPI derived data type created by MPI_Type_create_hindex() * test/header/header_consistency.c -- test header inconsistency and see if inconsistent metadata is overwritten by root's o New semantics for attribute APIs in data mode o New synchronization for number of records o New optimization: I/O request aggregation pointer). o Other updates: * configure.in and Makefile.in have been revised to detect MPI compilers and other compile options automatically. * A new configure option "--disable-file-sync" to disable calling file sync. This is to be used when the underlying file system provides data consistency control. * add build recipe for IBM BGQ (e.g. Vesta/Mira/Cetus @ANL) in README.IBM * add build recipe for CRAY-XE6, Hopper @NERSC in README.CRAY * add build recipe for CRAY-XC30, Edison @NERSC in README.CRAY * add build recipe for Endeavour @ NASA in README.SGI * add declaration of flexible APIs for Fortran90 * "make testing" now hides most of the stdout. Use "make verbose_testing" for verbose output. * ncmpidump: add the command-line option "-k" to report the format of netCDF file. * ncvalid is renamed to ncmpivalid, a tool to validate the structure of netCDF files for conforming with CDF formats. * Fortran type NFMPI_OFFSET is removed. It was merely a shortcut to integer(KIND=MPI_OFFSET_KIND). Some Fortran 77 compiler does not recognize keyword KIND. In that case, please set MPIF77 to the MPI Fortran 90 compiler, e.g. ./configure MPIF77=mpif90 * configure now automatically checks Fortran module compile flags * Support additional Fortran netCDF data types: nf_ubyte, nf_ushort, nf_uint, nf_uint64, nf90_ubyte, nf90_ushort, nf90_uint, nf90_uint64. * Error codes and messages conform with netCDF's o Bug fixes * Argument unlimdimid of nfmpi_inq() returns -1 when no unlimited length dimension has been defined (to conform nf_inq()). * Argument varid of nfmpi_inq_varoffset() is fixed to be the C's varid plus one. * For collective APIs, many places have been changed to prevent program from hanging if a subset of the processes got errors. The fix will allow all processes participating the MPI collective calls in the PnetCDF, even if errors are detected on a subset of processes. * set the nonblocking request ID to NULL when the request length is zero * report error when bogus request IDs are passed in ncmpi_wait * when entering redef with different alignment hints, fixed-size variables' file starting offsets will only be changed when it is bigger than the old ones * Fix some Fortran API intent in/out argument declarations * ncmpi_def_var is fixed to detect if CDF-5 data types is used on CDF-1 or CDF-2 files. Error code NC_ESTRICTNC3 will return. - Update to version 1.3.1 (September 24, 2012) This release is primarily a bug-fix release, tidying up a few issues and incorporating some early feedback on our "buffered put" interface (see http://trac.mcs.anl.gov/projects/parallel-netcdf/wiki/BufferedInterface for more information) - add a new API ncmpi_inq_buffer_usage/nfmpi_inq_buffer_usage for inquiring the current usage of the internal buffer allocated by the "buffered"-put APIs. - bug fix to make bput APIs properly return error code NC_EINSUFFBUF. - bug fixes for ncmpidump to avoid residue contents from a previous read when it read beyond EOF. - bug fixes in the the tutorial example codes. - add more in-line comments for the tutorial example codes. - add the error string for error code NC_ENOENT. - Replace parallel-netcdf-1.3.0-destdir.patch with parallel-netcdf-1.6.1-destdir.patch. The patch accomplishes the same thing but is created new for the substantially different makefiles.- fix shared library file nameobs-arm-1 16150600661.7.0-bp153.1.151.7.0-bp153.1.15pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi3/include//usr/lib64/mpi/gcc/openmpi3/lib64//usr/lib64/mpi/gcc/openmpi3/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi3cpioxz5aarch64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file&0xzh\=֧utf-81cc587bcb7951ed83878aafdaf8b0d5fc81432ba84f1838b27592882d9d0fc3c?P7zXZ !t/] crv(vX0ai֪ۗ6!6?FM[Z5IJRч 33ApC c?/d<'P[ 1 -0Ntj`sZIE uF,%< Uf0rmαx%p< labk;S5sOM%AUFۏ roE;Qi ډLzruGv0_M=y_ȵ06m0R7470RHh_>$@jX84,jϫ!eiyֵb$hMZB`F5\%ѻ*GA4#BOl["ԕB WFL$ĄBv$w< @awx5&O2 {V,!2-&Gq% ΡTUKC rx,(vD0wXcM $hV:$2{Bt''.Rxi%b񶳄)'!aiDmB_c;"رw4P %)Ed&:ɫ ֋hJU;~@[Ib!z-Vې.!ל[Jg"l44j04aw.t:u-Rh @kX+Xό8-*{VA\=i$GXN<~ŀ3yF\E!6kY )Q䢼_ )TX'Fs\%kC޻4q9@lU]]S\^LM9-rYFO~ɀ[ g;OU*.B%rka;m3Dvb -4t27'GGdznO9r.שppl)+1!%A{@h I˦s <8)j2IA#]ClІRa~]<0l'L+x>1-W [K<q3A>z;|Winfڐ7,FO+HVQŗ&ufy24kp$k騡y.۔e׸@;j˨uDwgf2.Q#;!)27cM rU<Mt%!w?`w$ձpMT!p3͔W&+{nVAX'J)pǓUyK_AL{Ǚ71+|4İzr<*^KaN,:5QNi G;=10sߟbrp )n|-$uJv "c,>J A9˾7w J (}upT% SsQP@AB c|CE >5ek#}X`>?4op:Jm3k޽C&ZQUp4`Lˆ`&aht\aI[?#l#=_6nHkMJ1%ڜvl)K6Vh\$FI\ل%b" !(@f&VcLҏ'g{?:0n,sXn'?sEq2jPh+EL8T2@T ؟?&ȸbjC Er jqe0KBxXMT8Olr?"hI^EՎ'vaɵmkjc Lt LBQ2{9ҭߊF`۲NoAHÐGې?䨙jtрRAYW8?>w&`SSbyVpp2J͠U>iY\e0e,urPDȐ743iS36[>4{њEvhf#t| ix%tg%Ii}KxAfζ]垎BU4do'd_95#v1i/:1]8Eg5cb?ɆJ AZ!~ X-3s9-I ´?cKHPk'ڏKꃘ^Bx֞cWgB-rΖ4T@: ;H #٦gr]xL,7g_6}v)-a3{{_dj:VyY)yn::vmpr*UhBВQ ˚;S+R5<[/nNXy+38ˌǯ̚&kp@x}ߘM;$ǔ!#wZ1?3Ó_~RU,BgV1*7 !{Y/0,:vy~%O_Tqx?a Lğ3)2ng-u$iӪ}Fkw#Z9b=|2O;JqhABd\dX!q6vys9[֍F\e ͈rIfFoMʣZGd#)W = Л0CJf<ٱ>(f4`3;EK%١ϵxS o鷇Xp(6(`[3[(row¶ u͋HCKO !@ޢ_.P#8|[$n] ƁE{*C&m$Ґ7;IКikM'ڌCtCg-6vPM? sTeV'sswM'~lϘ=2/ƺC7N.+yJbLxA5 UxtL5< [7ē1O$_jt!%+=x*ѷW0C\GiTQFG7 yc<1CuxgD3:E4":hH܋WHzJ,IxSD#5r;WQwo3cof&ȐM4ع@|KccAZgQEAbfw2ý$jBngAgfLSz~%k4 <afN.Dn9A`+؍Gst)3yb5u4(6mDΎz$DD _(-)zSQ*9Od9|k13qM A/pάE4&PߣC\D՘f9c5 o!D+I.#Nl7$.%u~ %˳AM\ 65{0ŐW5//A3jTCC4T!T񅻫ᾡ[ִ?$_Dg,X lX5 = eA QʒW7#j7re7ħKj{P1n8Qf6qݴ6X J)ZLOl2?Z ecT8ءEU N󾠿"DĀn o K%:TDTRq[Bd?Lk |UNW(s9Bz@}!nD8'>pϦ)݄nILFk@DO xk@t:yltݮ"@n@rt@x">>s㔙 +8ӭlN @#BgԝU W.3~2K@)[ċ9 "̉BmKd.]6T*Zum1D&w RDHQ2Ӫ_"nV/Y'nu$ k/[iD?صROQ_$ե#To<'ExhLHWa.WxWd$2CMsko3ef!#[PlgF^OmN|uȼPMwNxf F:>e] UiETmiء/4(CͰ]#*NX5Oqv="'-ЋIL**s̋Wmw(U-׷l9BW ћZ6NuИсg읦㪎25"Dy0Q)ǁ7pS/~v )7 vmͧeS!@ZNѥ+HC j|5]gY&5iD q/G.k{P>R]% [fP#9-Da}I{QABpLjJynNa+* "i9CC<(q]Po"y"hYY#%Mv!/ߞ~ˊ /U%'$;~bJrҦMhx‘RȮѓ2ye@Ki[/P GȸV"4Mbٞb 9[htNӆfv4>VQc\CbgW`L8(MQ:ݝ> O06SbDOsYIw!pB-./95hVWP]hC;>+3=eL 7z9,k R8v?c$51s0$K!Q.N.!!.ă\QYD5/5"?{{w.@J4]#/jI~`BNzxq*#T|k W!霹/G?UwTԸ!OBPv0mmI~QNc BWf5ͻy!ү6]Cm8u;oZK =rSp+Fy e}v4Z[0t 4d!,&3?E5G/`OwMtY10^Ƴ_&\(|۳) m/~m(Vj14l\%B~pSA_60cdpZz}.CMwZ8*P+aȅ+ՃQ'$D'7Ñ+Wq ݽݨc׵:М9ΛsFj6-0'!s\h7(ZW}2/%dJI%QZ9D;fjdΕLw^7&M2`&CCBb4"[+k?`Fk+e@G0A(:󐙫xn˄G+"5W%ϯ("Ze*޹ UmUk\Y#GɎ6\0mnVˬJ:S'P_V{G"&n~&G.b]pT92 A4(\-ƏPdIUY3)]Ofa}F|$\Xjįz]Bڸ۵-Dm1H- }޸ֻݧ+ZYw9|c[l&Rlr||w4cHVEÁmi+deeuAi .Y|-tkRy=Yh p[jO5[rP $ph$eRp! ˔zv_ьǩ+:ЍMOe$dWG[=g$t`+5=m͟hc,z]]-۸sUbѾ7GD) H!=q&ڧB;v[G@G8{`v\ &e xד!{:rBU:%=NnT;3@*eW#4ՃRQLreܿӴ YV~A,1qfсI3#^1W 4ѸIٻp ?+aYc58E_V<+:H 0nAOL(y n]C "4ч-L ?Av/rrי?wIQˋ'/B8KMvߗ_X ;uTdAm|:FS[O# CjfI_f*Cj(x'19.`YTގCpa4& Ԭ a6JɀMЩ޹^ xDtМpqM%1<& 4"K]x,/`R҈zLJE k=j'_0qgʍI2[*clKG?.Ǿo#˧ްThI>̱,,OS(4&-[RR~Cjk,Sfp!SRĎܔ|~xHDL'i "8H>oo.O+dڿlY _;7 C _(xD.e6/0hw {/s߱$UWN 2=HuD. EcĶ:QŻa)gū7둱ifHi<̼YeoF d}[icbse2SakC=\Ec1MeX%;EgSO*HgvyF ՞Q8|ڛ|r:h!b? *i 333/V =6RiAxs}wO(U4~jVm*0 5g`S(Gg &9(e><9,:qҕ]Km/Uo,A as_uQi}. Eyh3+B5o{5eOWPX}̇ +ML{i2.9LMF /ޣ7;t/K-WAp=$lp]=zZ'N8sH/;OŊdsLءi_^ 3K #ŷoW|ްzwuʺCהD~)tV~Шû9JׯaMO]{wEi| Q VOѢGew"!LBJ\'| %'GvRҿXAد3V[3L2^Ԟ4yR|7pnTq4ɤxڑWSnP8N3 jojVvg&%A>zHb1 S5,,<RK!:r'roE E·k QRhasʅ2@%N8UCzMڔݥmⱒl~š<"f:Ыeg6Pm{o=[^ g^G>!u3>m1>7ыDJkܜJ(s;6.ו屹t8!t<,6::S^߿!hU})uz!(Մd o#P=F?}>VMVZ)H5@9lH .&*S6p؀gZ4 dZr[iO%{?CCoG`=D-[ C]Lr/|!_`!Wa<+ 6gGXaD˖3l!v>LecҺ!jqa` 1fe7[NT[:nϕ+̑jTX$ԵBxS"IdyKpKG'EY@I,q<^F1~?ǹS*Qj#6t͸8DO"4ȷЋ* L[0z +r{R¶9Ϻh\jyZ*ʮ96O$zV8lMNp&Bˌ-!6ٽiqxZ{t5d}-,ڨ<(Kgm&IE`P+k2@j扁;>=u@WăbURb.͂ A=flsXa6`|3lt:>T0 2ۤ)\)=AKxQn ؿps@y[#aΊ$s~k ^/ਕ)ޥo62W(kcܤ7;Gp!략⟳xvH0p S}sU,8S[:oG/3 ;Udo=K|3Naq}f ,z0>Ĕ2\.]xvK]DDiAGo+VY:Lf"BpjXAD$x'6;>¾ITX`*:!G;?fY1Ec-M,tkbKg-K>bjrdGJG=5&*X1Iy#Vw*R_IT`'zcLX,}qڰ:ߎFNݡ'ɴUXֿ\Uk*>"#~}R,i}۫g飽qd6=~!ǯ7 {n7Ϡᷳ+Wʇ/oNk~+*G;&XΦLuIWG%ʃ[:O@-IҮ˕x%)0N4e],i Kh%}Hܶm3X9HY\UYE- 4Z#1ܝte['XLZ-`CeL!}!j2A@x_ɔVoEE+Z9>Xde*ex3?uAAiL m cvQ>X%t).*~%ҧ OO C_Ѯ àx$HO%N8wh-'s;n$N- \S=h~ + JH]w%GAtͻ^J~6R=13Uf!+)M$z'ڡ 4zH'[qzHԮ@Hcdy4: 2C#Z'yS8v'5g_{펧~׽(|V 93BVv:uG`W-ڹPB:Isrg]:X1甂,N~bgO0:dsHD4#ƣ)mRb-tݦCjfE0uFA,Y 0_q\Zb4-#*PxyWD;'q/zS@!,u]ZݵqMG 3+*~cH(uqHF.֯ស:Lɧa`3U 0|m4 r>$}=Υg*Ԡںnjg0@zm*ϋFB!ߨ]u%]pY}_4}$eSTw6'|缼Sh8(ԨblJ 럾:nhUkf̨Z^TC*F. H(QS OaR'Z9{7msC)6~eˣ mj>6?BkY\KEOKnZ^nf LH~+'@˔b $v}t"0*-z2-Enq3ox s~5;P3V r>VdQxDf&E͑C';vߨz1StJ<]s05K]8]9hX%w0k)-tq@8ѡ0V:~~WyBCqD @ :Bhe'Ó@xIko˵ޣ}^sU y&tr \!,䞸ituN!.E+EFыyžg= ֚zղD2͗A{FoH H}l<^ mAv8Y#BC ZvPw1tuOEڦ5P 5BǎzeI 3&<$'^[;7[.1f%50狃{Jy>TxŶZ)%i:Ao`>%0عݏb0Dc^ s`^Jff4ttXhr3HpR`v6rAon/vtM"X=RhBp~ "X9\a.i>1e_Q\Bo9pΓ$dNAΩz&T,i9Y q킬UKot'Н8aEɊHB Q/z%^ŻZ17wf]֨DٹVbF4s,?!Sj"`] : j:͟XOTwO'f3IsXÙǯ&+/D? JZ[y13X RR~_GH#_͖HgAQD&fO}9?l|Y!e輧WK!? :wTۆ?SX'Z* A=-%]!`n-X3&zL|2M&"blSyBv(6ρlv*:/`ȟKWwC0$J>uaX1YzO (5\$l-L[+#D52d[y:`̎ŋuXm nh%,/ ᎫjQҶ(Tf-@m> zD7)~WoTU5c@?6doyYQdY3O?oyv;# )v7"! OcfdIGaD+j9h=p .>TI|,~Ɣ)[3G}Jl痥jOTiޠzҠ|{^װ֢ :]Ko_\0PF1?@Zsע)Q%xEhixE; dDlN4Ԃ_r!0Gx>3Q{ۺ1 jJy:SJ~isM'Icc}#gY%=|mݗ]xē

});A_[NqNBj!tT=4C5LUqADn@KHv:NBcv.Zt. {^}Inr3!9ksi?8}fϹ=,$ȥV6SS01\fbKީlVv=ɺT ^zJӾD<{- S  - a LeuX<919^f_r>˚g̈ ZW~/[gXe|)!'W|K"|/=jq.\~'y ^HΡ#Û|7h#5mEx#ڣxⳖlUs% K0|FBTH+Ո˂q}=h1#}Cx'_.7fx{76bfsTc^ȺUG4dN.pfBy"PI2rwㄟ35_Cy)ǏbgTK`o~-;%Ix wE/$sEϒ}άIs. üM8m1)LR >MX{p(D79\I3(U? ]S9Z2LOi|ÅRˤ9=yQ.9,-?jEE\֣$z: Hic@գÔ8_P\*m'&E!I6k믵5j ,BPRK}ˋl+vM \j,/ x3ߺ1wNg-^G2< Ϳ4yr|E J32}&7G|sA]>MWOOжK1"bx! (3"F.6[Ε󆅫/د.~$ɩOxTz?niBRL9嵢fu(u.+s Qxշ?g\hd0:XL[y^ʩܳDgaGWH5471H gH3ht[ VvBcJ,dJ41Txk4:qjcG mc+p=p=u+A]x6/2uT}ɩ0DTKF-hby3*4E9%'S7Z9I͜+Wd΁F-zEݩ9LAu"$ylw>5N"ܖ؞/FE8ţWk{œ_7^IG} 1LމFn7 n߿I'Fq 2@[rgG EOnmfNҘGҰ`m$N7ÿ:;{[tˆ6Y]t-~(d:J>mgfǦ(o`LΥd")VS.7t5ĽT}|S.9Lgc$B7aY5 XY+N<|nZ}@bΛdJc}]xDI͔Nv>lK6XGE _M[7x"ARV!KKN_ : ׎XQʖ4{î'$Ii^gzؗ(.ťm3h#[ܚ{`0ܥ_UX5<+ݐ ږPLlWKb Ҡwb2G)(VbL2H!dn4x_XחGacgTȀzNyYLMeCuݙ}9ق'o4k~#S{wy֐4ڕaSU|@1&Oc O `o]-)&`~R}[gV&Iڙ m۫Jyv)g,ĚL; Y?az(6i&Ř*D2P~$K):yZwx6MxJP&'TlQ(Rp7*-/p` h_'^oyzi4`jU3txWc[oFu՝(Y^fZNmG#XѿG0< _D! 3ݯu#[6YRZ\l^]8⸫A$4*k|SaAm,uBE~5:?ӷ /Ш@$A~ hOULK2O{ٸ\ 52!_ne]ݚFIISo[ŞybI=+VgD ~?]AaFt r>4םt4^PsT,=4.q}ɜEo=w.׃ؗLwzΏݐ"ߍn_fd 3! g 申0Fjp?LPqw8riJQ smy. JaDEޞ0 @bE4σ]9.!EO^ TazJP#.j -|B`ӶvuoibQэGXB3`/4 "̂ZtCf!j풧&֘3)Q1LJ6+Jޔ^+bĐZF>Y{L@UّAd\Yzf9'y˾U1`̏\ X'<#M6倛?LO?i;E2Z ԱDGǜ6KNI'?‹\j W/3K6K݇vJ^QRWZ-KR h3^xʨ결@8|76;LLVk6M[_n%DG%ͯcAl@j?stCUSgW'sWhO{^~yWkl;\H@tA~`> }RG{fJگnڍ.;Z1r}iIGl&wΓvŏRYcZ:qsl tÞ16BS%'G:1J2\9.b ݙڦ}ɍ0.59_G|p'g}×#l5^es/0MNvrr*m G"!O1(JvRڪˋhޘ`4Q;]9S(ev/읂.[I<^Y1*\,LhS,~?o"ÿ,"qn¶Q*',iGL+\`Z?PZ*V\cV(Uav0iFXTR) @_b>g;iLϹ%LH}n }%#Wf6anQqSer2-JDYAfR GrS3dbt:ZF Qh%A%K*@.f~GpO,Z Ѓ3VVt'H4CC~MFe¦hW\9g^'p&q}4I\aU*i=H)o7ք!yQDٌUk= 3o}iE\~*N}fv ,!^g ) Z$ IpSy\hr#Ɔ#jۣSyTї#^1"$52C*N;a-l{iխBWTgЂ9J`o3D-r#S`MG1PTAx|f@iiVl~lYS:S[6G}UlP״Ɵ=PV] |E0\'o$aVQrv) j88IY ;qaoHO[[3@.Ʋ^&`܀h-[i[(H$3Z%sd?Eg?훼DeJCz^W=]-{{p6sT|*EB7) 6?wTH "H>7ʗoӹXB[ȉ|>72n YE#hDּl(;U_zm>(?^~%! ㇗a$%>FN,*i"7CnQPw'UO>8cÂ\M3r x"Н{4H!ӓ*3]Wm|wL^n ̃,&ӛEqNGw9>,n<+ ;iFK>"笜X~딑g}9>rT^4BxQvPH5˔؜M9QÙdPeybZW/3[Ldh;~N`вQ|h*P{dDl^ad_Ydy0f:p8+>~oY4Z?%OߋgQII o5 b~Htgs$KDe _$w $UdFDu;3[i=gL\30Folgӭr5. aAD,ѯH+B| =L5UJ￀ţ,.UH׏VR[T7 ~.`bOc^_Ǵ溹KA]FM/ϯVVF`F0' "^$14_Z8jt9mxY{OoM˯t]%X4AzF*@@^즁)HuM#%de?"}A^á krM 87;to"XC.t|$Iqo'>#ذ)H)6GImjjȰā'( V5SoI\g w׶$$ 9T4 y4"rRIJ8}7΢r,LvZf2,E7{A٩w0˶O6UA\VvױDxuٮ7+zoI2T HR-?9.Y]*J_3dvQ>̗Paءp+i8 u3bamgI ^;,v*ϔ F: S^Ir?mؼ󹃗cpa!!Bًg 땆Ѐ+ѽF7A=TFX/)C&? |UlU zHECiwΠvC}& e+4W_ lTΚ%!vt4d^J,^IҬ ‹*D|ԧ[TcE*~SS/y4,!-5Aj7ZPrmBF>oϖ?`t?ꑈ|*jYuH[kBI)%'b sygO6Y%]L$] RT|ntc5O6R߾ J2e Yfǣ6T¨(,I@Dk޿BDO??JS=wu CJܚRP@-Q~Ԛ>6{i^SkRc7k|xn_E8h 6HXEzϋp]qÏ?hMs)<旓\?0ttJTvhnlv+E!-`W߇U!%k!&9$s!m{m܇1)X2t)}298㪀(8ZҸiq9Zr%w֢fwxg^n^љAyn$#hqT£ N?#t`n_Y$؝$Z37\"Bvr2%O\"FL}10s[K^Ņ2~?jbpT7Jgk3/XUfȒU/x4zanb6AFo]B* p Ŏ`>e1yZm8GqNy#n>-g66'XF,~ec95q#&]jo5-%h2ʣe-N~^sQnvwCr |x(N4%k#j)*R/Z#t`\^cԼd$:q&&8yy@kp}w::1% "tmM ٰ2fe6>Th!r#ŵ)d-6PT!~{)7D>sGC_ʹ,>JѬ^?* 4 v9т!4s``Ndz]zFpl$4(wO3nr$"[[!9mM,nqrt4{lclLvUMUȴm=eHsdJrt-Bam|KיO?{l6"NyD-j۽-H53Ul\$@'&ϒY7oiXVv"*(`놊^TnpKK,{ ʹ|ӗ18\53TJX4)Z w/ ZFY va"5JS*C$7 l1 fogM!}NlDs#p 'McW"`W_~gCwWOcc1. 1ݑ+ǀbcEUVO , 3 2H+  %DlOr礫FK5`56n-EuB~(^d]Advn~HW\=jm_rBr.fެ.3bF_ wޛSdce70uC'];QUP.\`1u&O`KI>xSqŰ.Ng35nq}+E,DRۀx#L"kݮP9a Kb|: ʼnFNWi_#6R}QvpOM?&Ηx\zwV@U?sKO_G~!?a#/LN`ާB& U2Z0 K8r:y~VI0 ](!mZՒQ;V5ߚ`92ݦ 3\ ѳ?xҨ- #MgdmudHvn1?fy]qѩIbʼ _ [DF~#8Bv)=mHv:Nʱł?-`(2رpwESůʌ2bcɄ'pQ}R+)>a&[<$D:\U1_;yerݻ _M=N (t6̤BpFl/./a ģil'7}%ZJ0Nگ}>)QgPe1+46?? 1#`#JfwBצ6لkGȽ* _)ĝ3XcĖDT?_$d dҰ-bX2V$]݌Yui /Y俀cDGN)z|4p@mecaL9frdeR^ؒͽa)ޤn:vcR€8 IxsO}u9H"pm1(U:jiKzS^k.5~">Z6'aXAnp"4bp|?+mO}kRƏn0 P?^c8)"yh8w-lџ_8 {}ah\2v/}t{E1X/.*}RZpmbiT#z8`H۳TWI5+%ϛn0i-{S-;*F%&١8r2Ec73f42mYheg%mYoH֯DX[TD $4qlyOC48`fc]dCNѳD̪BE].9(-b%X A c7Tżӗix%IJ]4 s{F6.UJ /e,oţ g uvW)4 ۩@$q+KEgg/6-_WƗז5?Pj`/~x GcS{w͛L4+!@,pl@48/T ,Rwjyg7 ȷ ;5fFR!j=ńWڠJBrήr5g/Фqkבlz4Zھz'H=9 o#L8Rj޲OSjfiJa+l2e# NhL?.3!Gxn WφX!;7 Q|avN|؃MZR@J P B7gb.ձf[xAUb)tШx @]5*F fsnK+T3:}4Oj=L lv_X hh))ʻ99l;3D剢XS@覩̈UEu d= ;bt?oV]8 hU p"?Y3qn܊8Uk!˽~(jvEWtI~;;Сcխ˂ ,`F-!U 6@xeslpœ$YOzRՙ?M?'vƟwVGgY/AS4蟵w BQoV(?8ߍ*Q.E"Т[FJ;3!O㬍CB8qHR&aFݛHtysE診 I;+yYEzb 26`I+k4?T/M)Hgx>^ .{||0_75zڒ9kFJ4:jyit]ҁb8Em͝o;ZO,I7ƚ&N` DaTm(+cӧh4z"pX&_6X3bBcXU`=6"f8t r{Ke[҉X1sQf5GүkuuDVKrwFwt ?M F4+ wUWaZ6.cDg<* PIL /!ZC+*tצgZgbOU$`lOY]1uU=Ԩ9 Uc,yl=MU:LRi&lxoѪ[4Kպ#Xyr\^&pt_AȶTѐw4 )D v\s5O$5R!)Mq//чɞcp^%n,(* i+o)hݿ@ ӓHwT6U,+`on*Tr:q-J ^O?X#Z{ B#l@ROo~j*U%/U"g^1 CC{ ӉJ/ˮ&hV#Y5Hx=096=$R <80 $1{sr^ƴ[(.Ƨ2LSNF-{㶡Dˮ2v%nʠxsW1\{$v|M/vTCh3a4REeWPBpcԼΜdc5`j8\3۫`e/⃕?7g/f=e<;vh04[@O)50ٓ4n.e bzHIMOo ସ%!KRWj(' 4kfR}/V)\Q>aFE%渥GG! >Mh'R(,O#uC,ـs 댈7j~bDsq.~p)an1D F릩X 5.cs bq9Y:bh*X(u1`[6ڝf%/DEGt-pߌsOV :5HH L@dMՖaխDo7pTRN/bp*<1zz`Um6EXtoAޭ0Id)zluO=LN _2ˉ#g|?e> 7#-T󰚥셫|]e;)U,%%xٳ>[n#2C^] _"[7hx+zL۔y, M]Ń4JԼteZ\OJPǭ\~V0{sҔMLjjG)ZyR[,噙a$$Vӯ'7 #Zzq9cRr-?pbcA[KZu:! aڪa]!uhf$^y5S{\ät\ui3=a닿+P#p|i/YWb~R[xzg a4-:-_~,PҼJ˦#U_ @8=~ۇGc07 0^eJۦ|&0\B/Kbq|÷Po_P5k`~FqGoKX_7dB;$MD>^oTU&\ht䕆` ֞s_+u "G:etГ"s$BT-Q~c7iyǶBfm:Fw_}RrMI~WEH` q4TuUcś r kC]"͎P^?,Hω'TXa!|ܽLx̚+쎱+G'fЋBW@NI ug;@zAC-S, ^c2vFnkꆥ ! ?_!0H7 e.o" H omkӔSB!j.TAu!v9>λ-f= Ĕ "ͧ&+Bt›̞:TùEkGfP7^)8%Ѩg@[D9ҹm߼B= u&u@ZCVB^o9l`Hjw⚧ik(^&"M(TLG'Uk3JM{J4-6!M eBB\,X*Baկ=D)~o75`XCƕ=_d^lZɯ](9Bu0;cOmBcXkëao0Rꢖ!O8QT &q- C/HY]bJJݼ6ZKK4(r&HmvY԰DϷRp(m8Y'}BuKOQZ8JRb}q_,o_1=km!9؀0#\6vwi#3-Wb vhre6of^4H#4?R/y] I,:zb̷ +`[#g{64xQud|؏7^М .r/3]p؁[y%U-O]<\u9Axt9.;rbK[0G$]3#ۢ @ ËmN$$ʦ,M2Uyz9ʼn43z\?@tj&W(rÈal6hUqR)ĸX<ڐteH{,ԁY&_VbOQnG}vM+pBO)k'[MtZ%rU.i@pkՐ6$2;<ӿ6`PUM#FA ZA hi s-ǧ$ 8qk+T9ؐLaV4kWckpAVgRI# r5HJyȿ,8sᏀ^vsQxL9*EQ7RٿuD ~^`ׇ\;V{wmB ,g¶qr8e#<ԵLmrz3 w /T5<Щ%>K]lbۃ®}w>|7Sm; /B7s #(̺qz(3"e#6Ӧl&:Pl嵼e [ oq:o)9W=l ܯ\B9WVQ,3Q!h,',ќZI=FJk%:鷀(@ dE:b]r%pʎy,xi09h,ึi8Ei{5`jc!"("Z6J=c5_5L62A]U&ۻP?+J@b’$t쑰vp㑪*yK>_-=S1E|輇:ԡұXOfYTgy#FБIN¸  ~.|6'_쎌 RBT)gJ{f9Ropl1=9JqAs&mDŽֈȡ }I2 }gu똀)MR8{?*>RP ( Va{: Zv ccC#^}72,.35 ·l_|{}b@HL"'^m&7(܉T{ڎMϛD^fCi1kXY{ZkMNJ5##[tfLY]w=ì`-p[Q8"NLosyc1Oq\ h-e{~^"*!L.`1p0D*巭e? ?9 ÙS=WS 'R~曉cnz6v4cg'D/G7r<р[kwI6*bDt-v+E G#gxQd\j&Ȩx޴ieFXeJ)vWW4.%#B dֺbu¥q T :M+9= DĝKYso9'x\ŽeFkmuofXㄦ~8JUTw# h?+7܊Jb+ĸXt%\9:H!݆ R`=I45< c`lslxhafb=Y h3 ykg-kid0$si3?OʢW R6UCaNkRw',jhRm>G3^3 HdQx6jIRb(n.CFY)<tm &Õ<@H {rFi?' -Yhx+Ydh?oU#k2' J!?2_$ˎܝqJ]쟱л{ǹ&JUAf曆R 2Rf/pQFΝl_x#YX6'<&m'H`g1 ;[a7EysyD.XP>|c;KrPMws4^=_vpP+>pNmKGl[졯TdWCҮQ2V3HMл{n +s*-63L̾ >XP'2<b^˕̓w[M'3%Xe Fq8bDv9z,$l ϋYnq"S"FSI\@-0adi\t^2TZgʤ6ί[ڻ *{c޷P5.-f"K VaIE`rt4~ ~cG}^y Ԗ%<2Y_|P@t/3pz"ESmKv?Û('P8-'w 6~|ڙDg"T+9X/;Ck,iYT(+yO0ӦP472[nڡb]XTyU2d 麰fqD7ʓ[%Bj\g3gd[*֝QoGB~9ٺ ^cJDZT@Bo/[['\XQUCC"g(j) *B t5G]ZZ*8]!='[67]`z{%'c'n{W_u%'>N^]Thtx(C|bZOf@ǚBm 0rɰdOĉ_ÌwԬP<|X6T(ҏD8lz5. -Mb8)[1t$ L#mBi0ZBx" {0z-?d}/ bZZMf=C2+i<X* N1F[<]RHH|CӍ!~H\p%ajE? WڢځwS;B8fOl" BA!3/AcR PQ\A˿(*2K{D=һ!ۥ:3D() i?LّΞI@CPw%i!ZVpS_LEaKPmk|/ǝ\^9^飣غmؠ\Ic#Bjy3dvyrg4~_l|kЮPQK#_#zlzI Y;m3/GLFu^#ʡ/E1.@V@$|͌w"Q:Zo:}`Fal" ΃hڶ!J}v+!>i?sz ͫ!q֚*t",@#Dytf=Ð׎G(8؇`ޕplPJ Sw,V?ٱ~WTWS`s aHu ||zd 9$r p8E捁1ϕ'ѳO]n5HUaSCFC:cJ. V\JttڵɊ'i[v2hL\0+ +;j*ݙ[`,l0Do X64~wU'?&c~!AŐj GebeKRIwnsCjIP;&G[<$Nj)zp,[epϓ'y$Q"I&Hd gqㅒV2v҃z$r%75͂q/ϯw4<~FD y\ׂv^\\o`is60ajl.X~0jXhtG)[M-M!-J&i1;o4$ne6)E^\+>7g0ޯR)jI`lDї!:+CkBh[^2h^Y@YU=;sa xшyDC@ G^@/;{diGI3.4]n@e,lQ`(`)F@>ZZ܁_vƛȇgiocj) dDxrD&Qk[: ؊;WYxopERĺmv S[%J",ex# Վgq*ύh53ztWů0%ϨOKNxmFEIWaVvz7Xu1*'ߔ 4V| /{ E}@DHIA(B[ʇg1X1%WYg)7z$/.?[]Uc5sQhDͯ  ൳RP|q+Öce1dϯ KĠjMLAe}Cyǭ|z4 (4dXm%&y5%D? >[|ÐBy&q&Xk>;HF>,w+#<d꼱{>y%Ni[I;[VWGq%1\`p\ ֆD9B{Hǻ 79l7o 0B|Vbc00hv醶̼coŰKh>5& ҿKM2`FgiYvo16f4̎\mz@ Ѐ;ҭ=M4W}9.+8Ǯ ʜ߇SW=ċDJ`_HfjJaLU$2}"-,!B ͔@AّmR%9w; .5J{4{c:2m@ǣ9ԝufA ,= U%shV(AG&%k!J ^q eѺ%"ALy0΍? ;yBz~25h 3>!N%uCj'\ kjfS&9|*iyAlڝ@h6* BW=hܰVa#%Ep r6E6=uSky Helteۡ2uo>1)~0f:uQ_8XWrMȔI;,:X= u0w⏭Sff߬= ĐPGL&%z4oj"3X''Gk,&*{Vf3#i֑rc`S%9h2D^S9{搳$2lhi:]u3y' 쑈h Sb)G\L`NO#EF|M&5JP`Xy; NaòC2d<$<^VЛ=cdдYh[HMm)IމwVo[g/2W2n@#E"d@&>0㡉 ٵr*'r.Ss n{֒:re:yA \mF35ȃg3H8^R_wj蒶Z]Q#WH ^tڐ!EP)6iWa_:X|)hr"[ ?q‚c0s$JO#U F""Ǒz1`vrL:LS)"^Zv\iJ)?|vUdhg;Sm}M:Ua>g\9fn d*fZC?2#-7Grm(Zi4 vNrDbĂl)-p<Zv ql \U߈ ?Kr.=uL! Ļ5$`wHQ*P c7-w;*,Hxsi%-xLKJm9WѤ py7NStfg3 N* ;DDpOyXߩila.lу ^& Fd-OX`OsY?` qʖ5z_"rtcjxL̓E– I^4̨ =2MCBF YuXhM6éK}#0&ɥ$CVޔb4ۀjAM>F81<(P̖^A% u0X=@b64Dngm iv@'kIbZ>Li^UAek,62J-C(W7PW U\!aYTKB߫~^F4X,ܕa!%[݌F\Ś@Hj6`&= `LZ@`zYSӢgV :ms)jckypN|LCbj[u3mPDJA^X-7_顁y8+dtVCOX.ͅb!}IO[xv 󢙓sӯ'N4&t])}g"8f~"=M&Q@T~a 2ܹwNfp|#ÄI>PSsv>s.铒dmU,ʫۀf~m#ݐrpF B=eЈė_uSv,l,F!8wMNJ3&2;V`0?p3̦& ]aOnkÒC!UFib{% M^j {x1GFZ+h}҈[-o,s ,se ݌~)컷"˖&Eތ]"zKm%!Lo7FX/B2#n\HTup,Z{2[N$.Q×a^(pA !ȺIa]u{yK5~/`Dtݩ cpk"hRIf\Dz+w)l(%Jނl.Qcj|Le߶GaU<O ?{ZÊ0}δszr @cnFaIMj֟u,]KzG0lytk.2Hڡo:3fsvke\XGS511fk{HС{hÍ4gAyh\Ok>3] N!þ`~_A jFROc>2`Z_ vq}Ŋ/NJ\[P3|IU1 Q 7Ygw{nƼ慾a5Jz+ !_u~`o|^\t\b} @ݐ\p& Of*Z$h~1<sIKN 'ʟ(NLVg-0! Z.ֺu?l&]&d1 `aB),9b j!L@g4]Z1 خȫ/86`{dON^4~kIO Ur1V'ӓS@b?Oi(v4S>+`/Y9=T,D,g|ޘ-tƘ"I̔p*#X#qO|崊-7!!$h|H9BS翓NR(r1DB%~{%bT}h%S)|npׅwc`% mh%ő{I'њ.?W,b3iD'5P~5G5Umg{j1pqMmw?AQ$#)SҊ4Nk$F7TH\ΤY `Q@:{^zh ѾF} ٜ!,237lmmI<#gy`76HLIR^.댥,*4:ہ^g O>#~׹4#Ǽ% l1 X_:ɡC3:l2O\œM%H:nkMs~J7F˷7)xI;_N>dA" CH-ۧ ..MTUo LRfsi B4{]vt@1QjF!X&H,u=ïѴ8rScd ;\c#I#|GA5'wJU~1ECϠ˸?o;IJActSBtWBȚN%:mou˗>1=A"iIOÞe\3m-kAb g I(Oa=oRO&?S0)<~DnVeTH>pO_]-U,86s[^K8F\aXz.0n|k8#HX cc%i?+z$PR7T! 1s<*vXzzIFs/C$펕Jo2;Kp(x DxݻJ[mv=eyZ K.J4`mJ28K^IaV:ao ๚٣+6k(wC^7=`X$oT9zNО}Ï-Py5)Ln 7fvMLvMl14s#BHkJ'Lg'VsJa{l ŴP.ZTsXz![|;1bV@WV h k?^G_w},M,X z_ACҞ]Aea3<,gKR̉G#쉕C:GQ}@?sݨ\}pXԆH>EaÜF:8e/9"J_(v#X؊ϚGۘnʡjgX x"'v,x|"@,Eg h{h&̏ؗ-\q9->ZTX&dqL!#+ hS鉅3zvO ΂U ȧ&B nS_L~1M?fgu!ڇy{L`yoKtWR4FߏLT2__7^eBMچUDK"T4$bNjCaCZ2v-糔Y)0#=iRu2Pj C &$f*p#b݁_s"A vgwVGF7}?$3|^w@ou!t6k ]yǝ:yZd;;Πl;K_>00VxW-rH=B&o*޳/< 1C'!R*nȷ݃a_o[~G𝝝Nts8e{K81y^x<-q!h#>ɣ Zi]b0'pH8D"(YwަRܕK9TД=-)av[@pƣ} 3uV&ҠLVaa.qvZ+F Bu6?jSȬ@ȷetp[Q굑%ÈdE 浣'7\r8Ǘ/Ţ TNuQRm<uŀ`wi bOrq[e3a;=Cgnٓǯ4´ iV{bӹ&>cX ;Ztp>ZA3NĽl/Il 1NvqŌs$דE oȫ) Y,Գn3YF$6 ;&[)2*ޡkǏ_\l/B}i#4yfP-EKY#Lޮ2JC eƹ|d>;)a,/ K3ؕ5!{C8Q5mi8@:S,Z"Tcڽe7`y1_7~^~gM@TpD`bIw1"[!هoQbҡ|e#)]tzЗwŭIb͛\mq0ޛ@O?fƄrz =ʎh2/&뷻d4e:55+}5TO>0!%, !Nfx/}ܳ`gL*JA49q:FP9n4 -Lԝ|5habߖ3.߀<5!aYyP6}qM5(#;c . tέRw&LLY1W iDWqny&5u{!yb=!xcΪn+ُ^3ܜlb{`:Zd9+ɐ͆vljE9S߻f8&XbS?q. X>8Ĵa.Gbdbk~STI`=s,+tav/fl>r<) 25l KQeW|zPB-RmEw:Ғ^CV_bUXfwkN.ş]ŊiU^O0f!5C`_p[uUkwGknRGb4ԉTXCbjjpD^ MI)0G aqVdÖݖʑiރ- NLrܩpʏNy7^Go.T6:(4j^}ܲ#(/rYɛUd?E, o _ h~|nFZ`XG dT0L9m`dt߲&) w_HZMݍ8V ߶p\a/P<)XnO_~Ĝ)T4f!CͿŏ|:|=2&rnd@kRr𑫴AD~xFWLP@re? z4W pp>i Luvq%1CfdΓko2Q77OJZQ?Hqnjb\%u[Ilò]ՠo%?5[VM$N~$A.S#_ mShr|_i-k*h@bȹNfO::SGIKw!ͼ0+L򜭦 ;NOBKK\P`{IkCR:l['*-l>v^j Ӽ_K1u*`MbiX֛fi!-6Źlױ5_*e;c#Sy">dY{dm9P &VФw^9PT؊*Q93!Z }}Mh aL%w-H|&7e;NJ<;{7?QD?jʙ[{ö.IEgg ,!ࠕ4cƥi@.\Ed.0k-;IvyyV9ŴcfdRx n  Lcf3u4HzI* : 7jҔm)lcS# eJX8QX@|Ki2SmեK4,ri#6z&6"^G$= N~~qGAy甧U dH+2wϭe>G>j[r}ۢ{[2w5>%:o|&\T:wU:ڙpN`Ao ÏQrǪ02C͑P9[_+GKc0ԝѰf숂d[ >ٞ{f9:Lp7uTf,_nHLDjq5̨C>?Ɓ9?ŕ_#v͞d$k᫧yDx],/l)F$%zh6/$2KBa#rh)`k>ѽ@bB# +s̮+{-1PN@G"1ZOc'-0xps ܉g_vyQHr6x]^,Q}% 7 LX=~G+ 0t;pC33wScqJxVkZ9xsÌ }ք"*R&ɰI!s2Z1h|Pk5i*p{BPE]>͎ mzhؒό/Rqir0p&z|B̾dEܚęq`}"͉1IeU(wӟl/ H:$> p3YFO4  7;;_vo^DYl},Êw\*#V¬%dXC!pU(4Z$T>3? o빒u˽ABxs!Q YKxnzׂ/߰?+gTђgjA ,op2fɺ3~]?r*O6 cz;8e޲~}Î8&";1Ḝ^s.IX@t_^C<sK4ow'ԸݥA[ oIGnՅWΊ?(6Ka9%qGX]$vU7g ' N|A1$}[ ȉur),Cǯ9y[~&$@#PJ PZI z$iT2Q,i=_yTǩB3tI*'kM o)acD]?;|"Z&r=iٹ<kyrQ<%6ŷ;9u[1Es@گj'C砦"O  p$ }i}lzA8[g2mYE35{UvW Gupg;EmsVZ>#`A`E}}JX7{!hd "n|MpT4ؾ_4PJ$k{?I5CTw!`̱t- >%ݧE̫%)9Fus"pr.(|KLiBw,m8e4>&#8C$ L43;nsMFCؿI?^x4P ;⻡+Z鰚5) -yj5thP,,XQYM~oM$"g4ge7?8r  _coCgadT/bc[ykr0RP DշGxLvvw0 Ddͪ|/(Ȥ)%Ԛ8iaBB#ZILV˜ dqqH Nw?5[NSTOTh4(i~@ScW(wIeG?}! ( ^9A_q h Q%`+XAFd{9y֮+[z 򹼂s˺fuDvވ.u. 4eNblֽmʼU А"( O'K_t)_Lj(Q!LgyLy1YBNgQdVZs+6F 7|@ cw=9]fh*Nzx 3Ω(Lcf 1݄+?aFdI+![F' Ep8*U iRw;qT~MJ- v!+22r)пM)r7%(Lg!~^ܹ_S=^.tqG Mtmyۚ0PxKF"J &o`fXX[nE,s\B?z[A{}b3&&Ohq{V:Rg⊪pwݯf,ҜZIQnznN'؟1dJp2S 7,mO?1p]4Ke\U&۵ktzm*ohQ-78jdXaysAaױ Xi8eםy[)"Va(l]\&t;SId)H:+|!q>ݙi; GKJ5Ҍ;8}9 @TBz9"hB>,^\jI[|V~,گ2qM;nC!H(TR{b]9dnNQ)D<zQηe.;ԆǐI/מQgx4J0FֿB{=b8ư|Koi\¬K{cp( 7N{ap2Ǭzu0:48X ;R}sIthp ;E۽Cdvff )K^Y( .,:~g7UeТ iSាC?Y#!ƈ%9 LyMRQߪǥ։@ﳳmrw="|ëʹx)s[qSleb=nRyta_\wp.-?FaQ6[y>s asQ)BX9rt, Q$OJs5NMOS|v-}{0p|9–kןKLP8Jm1lIg(`H}z=Z6,u &+S-,8= ԃON:{"[ \ 5V3}s5Zb H/?%PG.tB_Ξ'8ɞXmK횕3:c7xYI2tNKL}lp,|v+h:849E7ށDey:f:6Z&x%p[t?Q/XwS %ƣ},(H`!_RXcر XI9Ӕ_! !礌i BiDc+SP$% 2U80)H};29 )YP~’c- 5UpraZvaPۣ`tsV>L6,/<&&W,RΤ{Z W?I9dpk7uN$C+aE3ZŰ8Ub,+7"x9;-<53WXR~fܗhdJ;+>3h>ˎ/)*?y_i:63_ϑΝ`BA;р8y8cݏ+ Ga a,/@OKu<̬&tZ2Q/cfJ_V,_+Q^>3*Chu '%֦pN曹c Fn]ilsu\D%0|wqNW:7,EpL뺢'R@]?J֢1RJX3!}d[cY͘)J~횒޲-{HDnd|7c0~{A xR6L#bvbGҜ?j?opg&{#Q{½f&7S h,m v&C٣B$Գx8_SGfacrڢ й+hLqx*6lw{zWLL/|>Udꏸ{偯T.s)3 $p|0sY4)9`UE:"'`<!9}pog5)U_7tU3ܤ+DBtU{ʘCO^{^/1I555+M(E!@[#*˰D|FYl漈@s VЧ3'9EVⷽ)j]D>o,¾ zUy9S7|ع[Wf@r1 9oc̐3l7pO[bqV;}kyIm? ku<6nr]mV!:W*y6:(D H"L'OC3[s7SzyA/^6! l3 < LLn%9aO_q[s"XRi⨷egϱnOAT$:`>%T]N"ISl/8ZK״l)cHHRl ]h>K<)ǗCp>IvQi1J#u>U(m?\]|y\UބU{4$˓s" g"d+H9ܔ@@\LM`%蚪/k֧añ5 ˦paE‹20-@r"mHt ;3l`X-$ԨcZ_"R$ˇJ{= QM(v,e$=gJA 9q?IUly5vBJ@9ZY3a[-aeū=;P!ڝ[ІbN:z&rSC=~NG.ZYܩrXTƨ躭.e4o`Wӽ9Z}U @qV&qxãqh2&(Mtn;oHYo$@k[8?1NMB }GKlgIv^I5 ~2 ɦ4{PGgbL{MgYsat%##P1#DclA8}51'~]SٞA+,4F1g4iY]={zKM Ƌ?ox6O`}CJjDO_v4(0{~J~ `az+(RH kd݈o-DKCa[2 2BNtaDž-z;/SzUqif nEΝʙ}"֕J'jUB"xẇN͈Jhg]_Pb~)c$Y홪׶ܟTڰ@ny!@% WSv ߆st *[LN1p6ZS:OaCˎ2S լ|:CچzAUDDM'VKᇎ\l0*9 h}+o9dh({ 4w1ʶõ(DӤ~b:sɞFZ22QG4*^CoD4=jg}|RSŸ8$ҡhyc¹Gs5lt3װ1HW4}rgSu_cZ`ĝYu0dhсk6%| :K9L]h5ټaȄTW1&>##|SΨ§o:B\L/74aԸex}cj)ɨ N:_8],uW,H u.4߷9a SÄE}lKW*ˆă7~MRZ,c<"2qՆ$Js.Vr 'a^T$Ţ{ eDVAK#EoP9ȍmy-<|i * \r>26 X 2&$󲢈)`?Ka%Wj!jU?}Iϩ&qKv5Fʎeօ:Ж9vMC|xpr=GRog`l@L2 ngbbԽ$4~p?e}74f7Z9Jp-kD1;g1}LS0riy`jc"(8aթQDtIqQQ1w)"/x8D@Y(*0X&vCK ;WO!$MWd3ehV@>bQO_9uWZduQHNքX7Un}RZ6k%*֒zN4c7H*zm%T(Nu$ RlzDzOZ֊тܛ떰"&vPf%˷0?pZ:t^m'5[gy/LHz`ҡ8s%]"Ax3;aEf0p` :.LH @ Ё/N7:.=g)bn51е9CswwƯcύSut=6x lP?vDʚ-mGnːTDQYN>^RkE9`@|ϥ0=֕ܖa#UQ(5s3"놱|7_ՖoAZ p^E$H*`ژi?J Ro Nц<ޔ`zHSV0V#v[` F(t2,!G ;Jz-@OLSWOHrI\^t& pNQ,"?,)< Tń&n_Y+8 :aj!s6__dtq2.ɥ%r#h1VMz>  >:Pr i`:L[uXJcwNzC8@Uh<1ʓ6[R."?g6!u.K0DqC7zf*q!~HWQbtup^Cu4oH(dө>@@_g%,a|wx:EÉ7['&PKӔM2`tsGֲm cvj6f)ʏZ")8 5iIU-rӡ⑌PGhEW-3Z[V(f#akOOqK)˜lxPF#^)mN1m_u;ZJ)%VãܦcY) k#PI۶ B<4*]Ų!Ȉଲ6vTPM<ٸ{')Ԑ̰F'D}vH˜Qmao-d#*OԸ;uڰfK  vY"O% !oaK)i <`T;[YE u4^[߫'^pBJY=I85ѽW,@qd/FH4OhzΰX ܳ& i{5FauUBYr RPM7*/{(Xz:7C+F=P& ^;ă`䎻ƪчpɍ߮8-owg,W̱?ύ`1r!m_1~^H2̂L| #-k(bnP0WTnn'G ^'@WZ3H* &YM&['ŀ,:o* yaϧ\'..qH@w|c'v~xaYJ{@xiSФ]8IHDոrA ޾NWbڿ`ͦҩaдm\W].t!L7"dz), )Xh):mn8_m^Π ЊjӁYEO:O(xjyL.L..AW(c&/>F`p4 qd|mIδ!KP/GhaJA"z8j1˺)e46MsO nNl_nSPjO317d:]-07q͹6M'\Gzcwq'C/G01 @Ɵr<|_ll Z*iiM@cIWUe%~qkCznnzsF)g EيoW,V潱9\::Le70[QY)TB-q{zfA%F%%Df1P-ᣠiU1[0_2 }' ܯ U" o+N"nPƒӦk#ZDXC\I SVOp<"0[[$2SNOƉ>l\IU_xLJ§?dn[[}t %kܱTe'&qhdКA Syٓ}yhzm*z\b ZiaK+m$'{_ 8sO\κ8u+\ ɇH_l n3wqW:;)^g\,M?7 -q Cnvc^RoI,և'k9[ʂyfU^׭ڀu ?ahA$Ċpju{h>CуK{5 9]ݴ_ ۹ɠ鷺ߏ9x7kBZz? l 5$yX?Df^!c+eݽLn$N H=ÚJJ)y\{A!֐T.|aȐW})E *;jX.2KR1;/y:$jiuLvJ&cy\?ˋiW\X-4O 뎨TSt\D[~Bd;/TIeu{H"D.6G{!PΧr&%Ly<1WsYij>[`4V_8`5EPalrX ~$uۂNf^^Q] s?i▬M34 z4W*~} :=] AxQ"m+ΰW'trMD-tO)R鰑L&ajF w" p)r'Bn'#oy UMFCgd>~gyN&9*=8v}}Yp}ˆ) 3~T6g Nbk+duH'ֶKiG?Z@SpY lEO_E[m$d9Df'U)>/{z4Q1L}N70`J.e hjtIJzQ]ʓ+*E(.G̒T :e рDR=i o >L滀aG~1{-)ͪ}4SƆ5z\C+{M٦ʹq6HؑJh+< `KƖm53 Gn5,O8ϐ$VV^g5[7$AFGm3tq qۓ9*nEA]R3X#&[nk,rKSE#B! 0y-r6}w?$vHcx6g$12pjL#WcEMWXv5x"JёS84㣵f߻uv@RH?$ؙ7o]%m%4[}vQG֟FXCM2ٯ?kOpGKFw\t4n;LҾ!9N2PIxn/T3&Z4'@jC X~yKQٍU4]{Tj%oV?i/n wBu - ??A8zG[*)%'"^f'Eǰ ƻ! V(C W@At4  -f؁X cmtd?$x3x٧gGeˌB%?mp2Wql@o0bD?q/QI'Ⱦ!g~LN3ߗ%ْpc;eaNa""B--!dC+HXIpWm 뭮)ٶSt%RB:xOa툳XN9e=O!ޒZ'Ryy]]_gRX5KA;E x~UO]ɅD :2\oՕTʓΟ"Ì! 8?) gYޏϷu/&LhAS.ETDz נVMKB:Si!`+r,fgt%>7<^ZE<};ݦ61L D |y~XZBn0'ᯋۗ&+&n| A[paSa6ڻJ%=к RRͱJ* RoMV+/,I1-v)c8~)Z1лA M@[k)j])'!QTL480FhRWI'86 cg(Yՙ v.I0==yQ/.JǡW1`F@`RAb+/9 |aqBݤX %gSrc&<[ [r!ݗ:#rzNS<:kWv n 02>Z*㏕K3nap/%:ٖ<>׍=rn |UДfS0 UDu&P:QdzP.Ŀ8jÒ's6Aƥ&#^OЁGYm1)20~dkW.g7[tp.*M}sYrQ*Z_*_ygX,8e_Ay $lchQ',i`I'b`]rAABeA1!uȸ8 w۶MU{' )h1[ nډe5@qfI/QԼ=I`˼3J2&5O2:=wH9,WR*34R6yΏn'G8@^.$6];.+FxlBkdȨB "5A]tTH^[`ar4Z,W)`[e}LAɣ޵dyYM@V!"YP;}HEފbGqK_wfD3f끅z?7`wF.4LzMI!pn&}69Z3ӛا><_[oz[Oi6h͒KdwSÊˍIz&.C*nڟ*Hi]o@\M.m~cQŒ WtMH0VQu[Abi4z#a2~L`Ż)N6:_U;$ hKٯK:<CmS0ye(gܾ4dD@#jCCrrM8ĭ.bHIvf*TO=h}Hߕ2j/5emԿ_M0+0UD ׭σ  *PQRvna+HnAn>ƬB?D#m>lmt^i^;W;E@GF!rQlEt\ 6ϻe'/7={m"`4J@S {L!T1PIB+wKAT50JãE~<a{ p٭A'3 [H4։;+$@nTsdz;!uy&LM DC</}Ei=,Y>&~C4 P=5_e\<.!%lhwEuǺEw&EԱ)8N(f!e28v븗T@lo]!w5Js،=*q1f"Gڐq5 Oc`,7z!Wz9V]G; rDK'yzNBT޿B˞!13~<8B(bN p37Oq2$)f1v z6;-N.pwT!xb&R Y{(M~"e}|YJ5C(uU:~a}H9 RU X(|5+mf\_!-ht=tqB[L!o/6(5ΜI)D1o:KO2=_os{dV*GPx鳙恉yؕF>?*FnXWpwce!#N0{6r , S $=h K -0].͞"e95ڕ־.k1WA>ݷ+^,=Zq̒5l6/e", *): P` R<;YPR*MM\7z^8%~GJ;8SF hMt";H?铑oJ[W&|-ky!BcjGsk[%JHyJ/$#ZsGk2븠qZa\`//Xټ{Sy;1~7t̀T$mtڐ;'ݠ;SOoSGBb\Zڜ-m PN][ɏJ? o볅 {0vtC۩:m.d+LPz w(]c_f8=TsB;th OHǭB4 Ü1_@+MG8\-?S*+e~:1]+ջ,T_cu=_U $vZY(~CfUi"~MM v p9nF`/`B5Vq')h`_saۙ(*I5 T }r2H{zJ >O8#/bzzVբYAkfDq ,8id:ǹGnnٛEΪPF<'ْ(r&/f1 nyEuhՈl*}EUb()נ)P!VQ8rFZ(U@D'vD/!g0ߓHʢ6 ًj,]uᇡv|8?[:O2+̓pPG@EQS,/[yA"?sS< Ƞ0srygjv7IWKd:yKj0?UqưN{MLߏMUA; ^'R$PQK/W#t7[xzG#L*Օo5ҽ~*5((HJ@0V_jrL1@(S=Ic=~V]|NsX_ܴϳWVUW>6[w+[P?k6t"&NbRAO e Sf1%Yms+nVOm[); {K[cqO-ԙbdnM/WE.k525ʖo0A`HMa) smafr8N TI @zg*6Ңmzh eۥt +|%@N Jmsi|U@ 5vA:Vz~d0?yخ3>SA|9&SJl",R`Z( S4A'?t< VcNʋ hj,}إ]- Ш'mmn874QNW=}\AWD=Lj8ŻLxN!1zX&^t'!8%`LY\W?%[J@ƨέJRɚO NTNG [mŁ.鸂Md퐿vy8~ݭ A6g5hD2!ɚd)tB52-X-ۭݍoG0#A2,ʱdU5ʼn+օu̓OYGklLmTa7kdm'&K.PSN|Vět|)̞w5W+UtU?C{~R׉.ɣD] _\NWu@M#פ\o1PI]] UKM`Wr,t}ao` ؁)3,H,º2VLwqUNtqC'JϒT/1Vh{2Z[rYS)TCwޒfQmE2`(W,ON0Β<1kY-t14:cOQ o sx==?Es9y5H?Q)٪b ITK 5*mT'}trwD{:}I'[ayeH`i얁S]qz*WI]kG}]d? `,n\\4D80A)˞{/;fG*h4geV)ox`!,-{YC>Ƥ=@SN& 1G?@_0~mb[XbtMz2?0 \{+*Dޒ_%PhSͣߚhV+1Q.HQ w/ZJ7*7sT%_x[+-9]>O_X\鍅9tWt&~ gLU.+*}(sqR1R.b6D[ԻϜfH]07QԥH(_#$V$2.O~10n)p8:vi~Ob&( !H3HJ3ﭛu+lpollO#g=66!Jv 3 u7fۖ.:uYuRTr$,־ucFm&?#" "3cm~,a_0^n:OVhtþ8+xI7;]pv $6Ysu7gЯ)Cmĉj6Z=f"ò}F"V38me\GӅ$SPx\Sk g| 7\2\G3 rnkPѮFv&H4 _ sE.Y(RVcJ{k.Q[eNTyߝYr s$ ua: Mjw`2HYjM+P?Rڰ.NSHF0nhb|X5_CpQ̈ (fHۣᵯ9HEY@U sπ,-X(dzR{ABzU]hj!BYhC= ;IB!0Ƭ )gu Yj8l;wQcxtd]O1.nyx)`:lròP0&ŜMJ7S]L $nj]mlC[Ƀ?LI?P)&a'VbrCf`eP)·~v!x.$Q?1Cvǖ?%ez^Bģjah1m$n{\SsS4e:! `5ݕSGJÏL.@ƭ߃q).~hul 2Dγ#mZaǪHҺHal҃`keJ4 3htQC'zbw'>>V;(IMEՎ\:8acc2K"VW[LeʗϢ/<-0j @F0ֽN.S%r_Kb8l%WAYG@UEy9LV8i$=H@;8P_;^mȩ9OCF2#;&^>LF@GUKi]ŋ9X.5J*1-$WQʀ 3iʓF܍,#MFJ9b0Vh_>[g9ͻY)N륁u>߁5T+hNQUZTN5gT)l-n(6T5Nh`sWߌdOҳn4C/unw0o%LC4* A\:潯/䔊IIdԔ2>ae{0kAKϼk ^v{mS&kB-b t? v1X\Tρ\ٓ_Q &vRaxJ4cRƙ[mgz_޹YĔtOžvn+ch.YDfi0$< 2LJ_5"atiyQak)&cCF|:q_c$#iMe3¼AO2xDi$ YJSVtם 8`b\;+5bcɢTcnt_~' +Ӈ!+wխ-f{H@L^OO `skYw:R0}Ϳkzw^ LWvwϋ@Չ¦ d;oP;[3?j2*r\)vx&*G2m&. . f>Rp؞9{W26@lKP0hXS&6 ռ&D .&DFh,~S0UtKBbm(Q;b5x؏RMn@[$ Lt¨$}1Wɴ_1wv;5檧61z$ Zs$ ڣ ռeUr~*ȴĩ~S7!&Tb/kPfMXoY }+"=M058']bXT^Dcr7给~{/":Ox}sͰ*r]Y0(]<i2e.^Lu-lTE@&6h &vRRrwMwX.cfp f9ci@(^Tby$\z]Li춐~ -)A9W9>npYPQIM'` n^M0kF=ny&Ee:nAUw0a /u@D{|WD)vJ3IՆ~Sk"昝[Ƒa>c|ߥE}MX2NDuiAj8% =(ҊHf X<)V=IgYfϵ=Qg N:b3i鹢Fy$楒 =&̑&#,%n V]j02r(} Dh/3#xIJ!.gcL8a;M= Î$7S8^0~jLs<2+}Q~~CeH+_QDͽL9n\fAhyďI(ڝ5Ej?) \|F g.2)pzO$Àl}kD[8sS"_@OxnZvTmtcCHޔmxގ;%n^plt %QУĮZ_5KEqӭӒ}6f2WFADNekEClp* 8WUA7„:N&X%u:ͅ7I fGmFgDm\z(T^Ӛ nBMba њ74)_^*b@Wf!j0P S*q"ܑTT-S%a"<6׺2+PEƠ`W hŒ6^0ISػ$FE\KyD3* |uw6!TIX E :W7 gCn9b=YOQYWo-Ƭ9V4JՐ4oȎD| ^ju"zQ!)H;e KE1?!)yh?M5{lbۼDiFxU]#>BPmq =' e3L*JH ש pҷ@f\}a dZ^x'zc`+Xek$ˮLo(XOő 9hXZI?)< yjv#5B?+/uX5OPk_&* 'gZ\Bd6J%sfbxkY ϣof򇑸ò|gP=*XLc?B~xzdovPZ&_-ӀZEcй_-'3IP5,RgrE0!w.&5Y)]R }G4f 3G# Ro P܍}[._OS$8%!.&}-Z#BG'ȤIR8 ĉHcW =Sw=:BK:hf[|4\n$%J8%- n/MGWՀ]9u¯#‚Q*̎lUPyE))Gwp,|nmsR`Vs b<ÖA5`[aV}7tQƲdWW)17iжxWt~>HU Ƒ r")zgH=0e[j)D`n-l@rd]ZArT%/lD g6)<{&! 8w~ Q3JpLaݟjPsPMecvl4 t_}g~PZ{0YMbZ8Q=imFŨpXf9UEB,lU QԢQfBgB;+C>zЕM6ш_Ҕpewq4+ bFj5q8WY`SFKNx7y9S'1*}R0 u*N\h BNN0۱ '#{ ͳ>>:s;ImbbAK ScZ\zY%.HFWNƒE-& v}*gۨ> A> bEgap{ZaT&>!~OUUwc'5FUZ]X`8J0D@OSHse |*r|]MҩqBf r /p9}F~_ \3} R{6?rYzl-"qG MC]q ܟss\(tw[ץ g;Sa>Yo{(uL69ikb'tlF=8蓦2!\HQhkDr!{!G'Z,#t:]3 8I^55dYaD$[2y%푤ӊMLsA(c`O]1QqZ0n` .>2un#Uʸ>ilVyҼO˃c_ 2z?#(\w~ 2X 6ghϬ=qlyMFK2_U& -4lZi mdhR-jY,J@3 +.M{Ž-i3T+P.d"=$F.[1Fz^E@V`CZ PV"_z7_cffR[ѽ ^i)nZfN apػѰ>=ЕD@?r:sx2]t^2fGk+rԷ/ ҅RBZٻq+NkPcKB2ㅰͥWs&uˌb1T =w <->;1ߧ.»JGS4'=9b ETл:.'LՒِ#8GYFSڗ#0%yn,y堇v6Z1.Dl :ΓĊsG8@<ߴ0 2n QM\¶ ~ T}SXm_+̈́) zJbv`RcK/MoQ#,Eդ؝BM8"J";&,9j>F>!/}16r9{phq&ՒN-Gŏ}#X"c\ǎ)  :IYFW}:P6TFKpGst\o[c8;Q5 Gq%)ٹS+Y<]K=$O/!3\H(gx|a~@C_߸Ic]@^)u#15W~aLH1`'n+8yꊕx: {'[66ʧAqYm&8-=+*oIURUDl@(F^\8l.BK50fRP{ q-vu>-\y ҢẌ́646#e$z lLPkqux zi A8@D87{w-z֨jHd~bdoJT \Fp>x*Nz^K1:VT:u$VG X+_Cp. zyuxfؤށ,wT~*" L]\3NPE,STŚ%qyyAX0nvShR y=IP UM=н/sζ|T^'j%g7#Y}E/tYv 8-7-߁6pGpBlo3("0,-pD}po*)*ϐz@ɜWxjQꌜhLu/Qnf7_{#SBSe].h/FgM=-Q3`7ay$vD-" qq\,YoMWDEX|EEi{ZP ? ?ZCs] j׳#SdHwIʼW畭ڎ05қ^RHѭb8-PA۸<#B/ԙ*(oЁEFD@ )/(*3h">>ݑدtb200$Cxtt/pY"DS]*J'P `eo3#bO*l1|x`o-1 !}q5_yttcB!BAS[d]Ბ2S1BA:xBZ(wʾ4|@!o8$c>8lAۭc0Nl뷕pOp,R2+{褒.{,VqvI8w1ZV  ́#92d /zopFJqiҾ 'g@!N|Sh2,#PUs\zt#S\lT#GLi/ɣTn@g7q#9Cп%I42d^] < BC&yG:W(a,z fDK'd þeTת 9TՈ_{i4z;؎TSaVv^p '@u-@x!`u^z|†elk^窻:sKJ5吳I\4miH<Sq?tAijBgP/{jǼ薛zG9oo,\[x}jYPh]u8c]p+mX+K)=3WhEס$]z9c/ }[-v\;5#ڥmnC;F?Y2بZR8vN2~U=>O`BstɬˢꟆ=M7'As? d6ptJJ}8N#TaFRqL8]F6W}qU*1z h[9TWk NC( Y6w=|~E :AfIZ2W)fYIC#O0^Y]ZM-l2fɒuߔOՎwD&Qd}'A7.'vH=83f}pehw\'R8F YY7miҏrh?v_ƾ^Pz^|m;>w?jI6X n)JvtFE|!@\bSHqE(fQ祟!R_8ŐXhk_WUG0w>a{V Jt\O5sl2 #IKt٣) 4>7H Ix\3OA_ȊYKkݽ ڽL2p6;ݰzX7`{:3SXhθp6"DG-_L*&}'42fu" (5pQZ'( )H2+ύ0'ڙ.ZE u3WD2~=McO6Z 9Dݍ~0pXY/$kRmA X4EzQgF A7Y1RZ''Ie5"`@^ OW@{*"\{$l령J,x)]E;7jY8gE`ߊmTv;l[әp%Z3Gl]k݂{wK*VD~kZgY/EMxO E擡MsACvj~^otj.cOzϪ5~A|h u"lrD4#)67jWׁݰ _E~o݈GACԗC; (R!\]7`!1\`D[}d(2Us "T` ,D{<9 SY1ʭ. CJSlip`䞎~sʴ ܹ-޿9Yу:L5)F Ы|zC FyhSkVNs2y~v0nmipxrhؽ1HxF:lNen u QKB^oy̹B"#K(_Vn46BtJ}  Ȟ*5eJ5$:E<<:9qLXsĕ;C} Է?`B"%7/t9C4A} ˶?"АI{"b348$ٝnJ@P\ V9EUڽ8T#ME!/UVt_R&1oBnmpA͘΄F r ى lթU)仰5Ϯ_#tkw>=9 J%#nlCNiȶΙ!p`skl( hLx>GAAEs4AI jtUF9L\ q?/lg̜B'&tf88j䑞UfE,Vpc$?XXLW[m O//R3T:AxDXUO$wcX* [|\:zr L֒RH!&cfCe@q9!#+Ad 5spÊHQ4a*JfZ V1VdD[GԹ,Œu[7v|".TD@e+Y(ĭB"%.x!?a빭gxz붥% LKa _NyjH̛5ݴE=^sֹ6 )(~nvm TpU{q' y^s-xîZeVx^Њ\bQ0^|K{h P6.jjy% 60eݮ5jTa 7 [3#0|CL40i yW OW56&Z-Hq} R^[/&@g"FɗA=c(ʉ݅ @nU GÕL*~‶n>codG.>nW3!IΔư_r]_#S eyK0kD˪M'9 ?Ixy?EI T;0ds<^9>3$9yfd!j`L'*˫!%}O9B@6iG&^q@/.QQN5A,]Z'Q?an &hu }8L{T/$ &-U/Y\ԣC 0hyQ4E ؗ~H*5هb͢IQBzN5[^_36^xn_H,i8׹M[\}2,dR}[筐;r^u=V4^ҳ+jG]d`{Z~S51;6+'kNvPĥn'ԀL_i8`.:k4  !T&zl/[ 39\?4S5/S/Xr(,l|ob'.;D̘H@MNwI6A'e0MN;_tᙾbm /7+' iknVZ䡀<8*jF/]Xv!&UftktI}Gi$6j"g#Kȯi{x\ȓ)0]fTT*BbFHLpb/%<6^O)M,M= IC"3{e!BvK{&$)n " y\侈j 9z/Zo{Hvu )~6-!1="<=}TŌqj= Xli~P "w6˳l΄恌 0TP>6Fkשm|+}B9,g0k2Pydk'_\LaV[It;퉇30rҬ-/03i.wX{|R6e*=,o)yUqd718}E\6>c4ԁvwɗ )K$'P֕ۦw:J`~oKΌ} 4WIcoXʫj3^pvsuyyΤ#ǿd6_+xiITͩ4hMM>a/;uzMWR0Ѝ %.kLɘVUVnz$⑹4!|tis٬N%z?7|eDVcQ48n☙.i!/@2si^wd?Ԯ3ڤhzr5v66rz[A Ӓi`掽=S%=w V(i^ ]isS^֜ gH6MNe+(| rkQhG!Kc#:Nf)z? F*+ C38aqm5l %EF@t6%awhyHD#}[ w pˢHWxG-dɢ!®"X)GW ?Ȍ6K\K+ȑ|!oN \?sBt}/", gJDcd[B?a]JD6\%Y TL5it_ 49LeAsl`9j)'E*n])\8-A8j LM@Ca5,-FN#1JX#~.ldmE($5\j xBf@E؀<+2bV6DJV̄I`ZOF_SvQ~VIc$&0`1R:қ$ϤUQ&4QQ27:HAeNT]{s| V]H{+ڻ`(UJRb %`U#}$(D]rEqo3ygL$kwzC{m$kXAVcB1$w iDJ¦PکKpU y!0%o]m`ޔmyJcN^'Jv޶d{{呦|wr[-g+GNt}UU"d\ݎ臗"͕"f[P-ڔps?w"^G3UQq19*(uv#EGEjG DLrB*ЦDJboTLE@ʣ:z|+NJ\0~ A l vV3 8_6y*LlߕGA=asuKgS[Ekyӥa rle]I?˟_.je2xꄵ# tχ)qt H}>T^hBO"IypeIO(YHި"!&l$mE `"C~g|&Qd+hnJ:m]6}{tBZA承>n= >~Z+;\f kUټpky>xʑf T~PV}LLP@K!9o Q\_zi 2`#c;Pɝ,1%4a@{QGLݪsH+(:ږpb*f_SD)hj)ʲ7"Kw/Bإ\Ut2`]48ˡ⫞"i=َCQ޻TU]!q@q$DTEJm$"B(i$@^0X}ڛr pf,#+ElH#* w[e(:Q~yuZ*w"Vq ~=*Gu>WӞ3M uHpA[qhwծt(j!Qspl-/{! ]E>;Sq& j1'cĪ"zfXҝ>k{8 VcՌ $7hJ[EBugg2S.ŎרlM`uh3 "VtXA')ިܫ{λ櫁FDaq=cǬQ qZbqTfS|HT̿h : r'F# APҗC]: #ly'QňḾk1869qͻhHjZ,7*!4L?βۗo4ŠtmiLz#K( 5@ٳ nW n`K Y1 bcŞXo3ڰhF:1rؙpxM(t)9dB%]sxbK?PT16ӏ?qeS:.ݿ2=Tq/l-=LaVXWeZcmdjO B?5)4n PQF0AM+^[K'o6%$roX/*ˣcw%\.1[7Z 04Chy ĈAxڊa9. < O-Mޯ gj Z6$2FI"Y/)'wXS4O ~<+0BmfareUd*Ub زט9MJrη@`PcXӳA%WWkr hWu&-٧oS L6/gi/!pTKE]SPt[@)V ׉ ery9 jF#KZ8J.o00Խ5X nU|Etj@Aʛ,Xqm8fg`?i*yU^[2@یbWe=h{.&tm8sl'^%tR rYPj%mC:.G'7[e#PKz@cFWBw4QvLze{Q} qM4=5 C428wіQm^bXq7eySxA U0;<\^jÑ)u0k5sԂԺWc-9u{~3.ɥ. Zu'*W|Z8ѦU&'2c5q-fğ8qq'o֟FQﻪ0=M@(G{P/XGMLr fT ?UF.IK)MB/L~C-B 8NG/t 6$%}o72FnHm7h]A^嬼wFEƽp z`ŵņ"h63+B Oٔ#?V=tO|Jנ@$-_ $+AaS:^>ߖ<&VL!v} ,r/N{> '?$"E ,}?Vn}q 94&t!gq]oȣQ81ҭu:Ex3j@LH1odL6Oص.NW()\U#%NZ[,\Q9S:OJNeeg;]WGW `1)0{I9)TNN3ⳛS)q4ߥf-ZN,! `L38cfq.^|a[-g4V̮q;VI@A@@ ZKb=l}lm2kz-1D3r^@V1'uQz71]v]܅pTq}߾ k_(Yj:%ƍ4osv$#M(aZs4&=3d׋OPwFn bi>5X3M0`b҃xhnZE Je~uG_B` ү/+&Q(ΎCr/A)aO_Dƿ#|V'jZmW =(QUS7.W$'q̄~+9xN~ $&U dQ3.!s-Vp`Z}N-ҕ?*r޸M |p.,zVu] (ޟ@Gwר DLͮEɳhHd6_X U3$WmdN9.=euZf6 +O3ϑ-[. vq|6·j_24MJ]nL3awgqz@E\vD}c0~i8ؗc2q*QPJD6!Å:bW X,TV^[88R̄:YcE6I?*BYȍw |%AMVK) 8"DL^qa`U$ nMJ3-v&h󾕲ߚڷ_F#2rдiǴ*͈u. W 0z u3EA?t~1f 7:˔ٴ4PfѦPnk{ \=Y["-,. f\'WDHÝ7y_KZ"Л>fV?lH𙭬fVmFɲA!omtŴ^p٘H#ܷI\ %0nR8l;60ܼJ 55)jĒ|Ok x[bv\tQybWqeLRL_QϢ=:DJx `Aot? OGnR^AԚ`hx-pf%l >]N3use@.:i>lRpKNP7/tOܓӔfQ"ux: jwRI_-)Njȇs-J8M|К/Z&ZGL0mg?Gغ0̜T^˛tse~`t(" 1ĭ~?Fɉœ? 0ۏ' ,gDUj_^&RU T{\!8߀'ԘO΋ i *"lNpz}gdίBhhwnqݠţ'|CC"onK [IKKbJM{:/epeoB@ZC`;1NJ?Y93D ta=iN4O3@[ N$Bma[%KO>W!^oU@4ook$Q!pl&;h{Ⴗ%\^xa W:~}_'`G̠t՗X48FRa,'knf܃Rd7ׯX$ҼՏ dNd,ZD4aoH'@v%B^ON[=KSfC9V.Dǿ `|4ypDZg w5eOR~x0~#B}ERt&R< ~EF/+BrplI> MP-$i<|܉l#NIHl1SYjSYru3*G`.Օ"аeD3q'P .N|bVSƷf`ME;jj]=fP_hdf+-| in4@~'@bj#`A\'*'ۂ/53Y4Gƚ&aeoU-e:o 8Ŭ -.5R6Y˸1$CNod.Pk_{x {S뉰G%dGlZ.j`(0Vlj-T!0:X;Ɉh&Gm YW/TAX!?&67~78" VVÇ+b3qpSZ!LGą~S;_j6\EWH(s25KcRl\CTO<$|{d*-oayaVZ}Q"p KpN:"!B܈Ҙ T6W$] hhrI 0˼.jj44 d T~vX,#SA$4b*FSp?f}gc:Ino֠Y2^:A‹cJv#mW@apMȻnjju_*&-Ϟ0vgepZnk`7c=Y(@lo2wH8ݢO\Z<ݎUMҨݸ>ZNTy`wTC* b>p53W x A@73g]d܎&/ϡw %z R >zˤ v]C洘,fq0R$2L&U ֐>o\@Leu !hްJI\kwDڶ$T3X,ƸmtGF1iQ'v^s5RݟEqUU =vglZȍM!sGA6wso X`%7¸kt/nQb~!,*Z "JדօV)JޯQJEG7{n1wl&WUk[|PȗjeQɾz[r&J O?.umՎ-[DetOs;8sKѝ_S1PfE)WEsC+Y]߿'f Yovj?,R}WKsGڭ ?d*de[8 ykB6NĽvJU]: 2Y햶P߽1 x2(Ifcdc"|FJ& #Y(#g8KLٿDH ӲAoPzH Q,!HtC&O"37ګ;'w!q7g.sgo cWNn9A<5S**WeWGx nd-bIGZ L)|pU sa8,">"( 誧Xg C* 8[jdY{eq69J2lW1c U9o >kʪ&0dz.#F|tG#n)%{#C5LddMo쨼aT!>Ə&ܖ:|D, 8DO!hyWYz浠3]{KU;ioa3MF &[T!j""݂y!uUx[L@~3ͣz)gpX^8h$ʗ1 dgv)Qꂋۉϫ' ɥ : B+F›K]*ߎm-xU| }g 8]5,2wZZį}89 εgR~йKKzLp~? IM ?YMx?r{5UwV1\2w GbͶV+,zmj L }rENOnujrI![eqVHSLv(oݔ#v8KOȉkwp*NN"kn#AaRwei0ˆ"h_Z.Ayk-}b%x<ʳ"˽YO-lf,*L>3*2[x@="azш=GE< lxMZ89 }f* ayk^)KB[oDw( {ǖrg\dEkm Abx5%H_;'koHeĚJ !g=O.L w0,:h+>=5#-9bHhՌ&>:9U:<\Ʌ=DM y^p[a];J2Ex[eZ4zʲX*+̈6-I9̹m73g07o!D +!hH~xiE 6*=eC,6]6-:ULB CSb 8@cVXcQq*7(qv1'(_ˏ_4]4{)Hq7unnFu X\ :Q|MZ/qYܝ1\uņCYS?RM_pq, [5xQʋWfZvDtL+%{n/;0}ZS FǵA-uSq$|d]y53bG,\G9}Nb-*K^19X,ye9kx"Ɯ 繱P /v*)[lj\))*xDT=zU>@U7tbC|닎^dȉ6\A%z ](Y';YSxDsa3/ڕac3z" Yh\0Z78SVx(DyzM޶2E[A„W)i?ARcbb8?y(3 {@DžbP^F}0ngQτ~ (fh>Ӫ7IJ&aK0{W%s՘tC2h9v7:ǯ'V0A[TKTc-' fb'qSNa>˘=L*&#혰@ >#np6[Q`~Nt6SAv!sXDijqBځvU#YQK2.Ƥșv̋u sl AlD2>"e8*tx-awKA&3z6ܜq1E F>pHYS7[؟ؗ@h XpWl!%VD R]Cݢh&0wZd>6S۟I,ѽbRKY( `O+c2.uU"`B* +zBHh*0k7h@"!C&"-59iqkR/ wWaRP{49f?S%ŀ_ `Y%M% J=8+-f8m >(qq7\CSQqC;$ȉ ɴ>#ĹnfIHV:?1և3URt AI0_6}ā!ѻ.%YoqeۛG]1nڟQtЇ/F##0mNxWl4sD]x0FDDʷEË R˟&K$vt[E y5uZQl%}Vd "H/hW~ lp5 }c8\*k$lO@@ԂO'p\ʁ{|>cIm}o9C"f4d&P̵b BSVmzC*,DqIkDqU3rsu^^vBW8XLE\LBӯ[rvȭv"]HFEǺP 7r=IR^8H]e'| [&hN:cI ƨ~Ha} ƅA, 5M`H뫤xʯG`5JSN?8PU7}^-1T$9`CjQgg̰pD|QpL 6}ӸQrTRud (L?|=ETqco*kZS$:\j19LxN|hMyDk8b5ݏ=ĆW),Rʵ9tϣ)ꏘF6{Cm9iTAqSaȉ{~9IeA\hVfΙ?_ 0I;;&\!DGI7#<[dܕm8anddË,ꉹb8yҶ.A/Px~% ƹh|v1dP#E=դ9PKr\G |cx1`y(`V$MD9"0 N') B !1J}p@W>P8t4dD);{ I偞,~5D01Vh٥q9P! -ih,tWN([,\`(*' ف8\lM  ^7,0O y$7L}kx~u9->wT%P7%Cq&Jtq/FӃo*A؏yt,uMPFuh]:@Ƣ-da^/P= 13N9dD"BD%H^!/ W01b&ʅw_Kp=Rj({s^g`f> AN5 ~`/Pי}h?h< n[Ou%bdAO&* r'z ,,^lzcẉ7b~}>_W9N:d-gGn6@( ߬)Jx&t'YfRЇ[So X"%qfGqw(o[4Gdtt {s-,FT43 ]S[РJ/~HL<]w&SƴcGcȖ.F_FlGA_vK={ B e\=\+a1J0fHa;9ŝYٶ_ -Sc[]dB+q!VW,oϋf,rdԯ H׉< ax qZ亀E~s!ʂ LSh(Ӵ9n3߳&g:\ Myin'oaOE 8 򁴽Lqڍe]^_óTc>ZL0/UH&^rz?*=:m›|fw\"5=Mdׇw_"Se =#ōcͿvqDbʍΟ䃀kA?v0Ns?/ʺ(`o>aRTmGGGCv~6h9"|-2]UP4!*z;eZBa621': gIkXmn Gdj&E+T٥fTrY_u6M%,<_n\JyL3V>}D+;bN8X]Sf\3qQ^dΈOƢ nGv"҅na!,FT~+$0k]Mm]vVY[*qn=6"U27pЫ1(UOrj)vq̯%WAY%(T UI4 _=D;\3U_;%@)c`?xCױOzηcŖ S}e:[Ž38f ;/HS!mxzaíksyXطρQ aףƆDMHN=dUdn%ڸ-p#JEРMm=O;R:|=~6+msc帬VDBLR|}ڄ0EbntrN7dgk̚d@џB XCɞ@o /Z qhJ(V7z1BU]W5^}p@k1j x6BqVslC9A1 L=xsL# 0|!u| ]P+ppE*Lus.] J?ь ~SV2GJsȵ}$j ^|+Ząʾ~tkw9tRj9enHWS 43GRj־ x ca>1*8C /S"J5Z@F1J#ձ`ZWCڐS*}o#=x4%W˓Q`IǖkŠzAh978,;xq5lIjgYP EXa.њ|Rd"fSq_&<çM*AAi֧ZneǼ2+c¡VnMZ,-W2ʕks0,w"f+[]P9yScTA&BP*-e 1ҎX/?E|ֵB~5c\(s|ι*c;S9m%X[c _N$0qjFx;טdqZ]̒0q B}H'Xʬ*OFytw<ؙ̻JrT^13_UD (s2ۻMI-V~*a~°SJW~#4mȩ/Ă8}̈> ;bq? a /劅^#D"YMI8 ˄ DΧ y-t48I:rUDYm:'NS衢*w]?! ~Q_zb,臟$-"Le2>NY3\ź͸ag6-c#lu7@3"31]>P,*vzjYaFN0hn.#8ʣ?$-J/̼ˁ+j"$>HݴAQEb'QIU]vVEH1-d]E,i1Ŋ)ne.5z2;'ig,QjlJއ9b(eșZ,5“śBg=WŲJ `uU2{w-/LU{78oE',۔$߲1|BȞ5 S*LeC_.%f Ĩe*9%w8 +@)UԆY/Jm,"sf1oInث@>=N+va)4΄ɳ{qЄ A[\k*lX]讪lCNU̜~BUVs4%(G`!!Q&QFynRA4)CKbDTQ;W5*K-HȂ/û?0N%mbxH >&g-Af׫Co"yr*ǰF3$(SR^nc7lq?ncpw.粋lj[~wdWgeJLwٱzw[C7X(XمjlZB SMIC@roea|ٹk(cZukdH: 4[(xV2%Uckt뻐aiR=%z[9\K>6{J EM8RuB]ƨEфˏ; xTPrǣsS0Ym TW4#lcqPz ׬[*=" *'r: VkjNҮ.yUs0T1^6dx^G&ܢ' |$>ފgAB(snrsٓA2:Yt Ilp$jͩy\f`FY?%?~u&~I?=֮8M hSOރ5ֿN ?q b%VqqPtR"M` ߣNp @eosIg{b͉>֍aRHV @Nnv^um6v("Jlߩ18E=J}ډqA(I{Zg[`@!ʧ?X 42>[r'/6 pLpYlDbߺ``Fgi]oħ +jvdN&ٜ0o_T1VZX"e؅z%5W:v;Ee'~_ Mr޺=|8yKߵуV&*_xyBϑDcFC&A@m^(GQ<`+, M.ӞqLl_ 1k߫F嵠; iR.˛0 ů+YA:$cٜF-9ߥZ(Ǭa/Um%Q*=Kt $3dS/[C" ׭'njeQoRh^0Dʌ0r7=pL*ŽԶj欻,4~eqz,kuC1IQQ)R"wot̜oƉuw9 9|븜fWjs#*υNC0\β~ 3[Ly8M.:l}z1ZO]g:Qǽ?CL/: D< 4r')U۟ Ӷ/"tv[[Ch./rkdћGF!Oχu~‘W]MZag=9n PQ8˙ Hq]Hpa )דLk,f c#0c *_18t8Z *yQ e܎;FXy \Ev`2|̐Yq[32l7iFW嘡=Y(Q2@wFt2=I+=&cDb~z/oUpFs?Lq{Lr58Ē/J3HMO+:1?H}= n`ӐQj4IA^Ǔͧ447wB݋oѡ=1s{߅:Kć^Oز ;_Z,L^4nw鉺ҫygJf~"$?}vE t/%Y1=Q6t5'`PKYʌ}eoև^(v@ժ ~:%r/qӌEږQą)iΖX%r9*6Ϭ؏7%>Ln] :@g(TQ::ާz5wR Ew=Q,n )$iA3]v TU FJbauXxE3t)}pӻ@I b+y'ahɌ AJYhq_7C(;5SUٲ[ ~d@-<؜]eZ?('D);#*plZxqvBaP.xe986(\L 1DA(G sեSH?U"u6"m1}W؝aȴ_olաt9SF@)E(cX.8bw59 c}]< 6]g1׻Oڝˡ`U0^gu[NodN9ۆO,U)ݩMŎt`Y]GNGqG6 Y.=d~\'5d^Q{Lj(ܽ|noEҽܨ]gd$/fõnC]S[ҬG(i]!qE jO辌:ͧم>8xeE:z΅Aq/50ɺ#"Pic٪ '{WMb*E^Eh +LŰ DF 8w$<lOO, * _)qaRƍn$xV2k h,"XD46D-@ $pt߿?;]zhWmx^?*^y9|4Q3Ms# mjtlL?'Gel'f܏_ÿkS7V1{&-OsgvO%,w5V Xa2/-_:=lnDP/Tǧ17w ׵]A-"@` ƿAxm BRv*@ԕ\BשܷQ9 ]H +&G|Z4{fLNÍc9墡VC@/~5*|1|U~uYjb`MXaFcB>jn\N]ONIllGe$/aU[?pA'LjqZ{[n6S%2=DRǗZ+)H',H?O{[܊cA 8U7asLw7Qz+KߪiքL3?Z#͖~ѰB}PA#~߲:D+EAM_igzkpo9`NoFodZf MYΓymF0%sOVu[a (uhuϑ&bLgpJ"bd0WjuyBO^偆"F| ڲ˽% ðz^K`5 lnFYt^WyZa>6/yk[*;*^b_Lf Ц,77v_FċmQ8DXvf>Ce.~K! f߇h<*T Zzm.+ϓa=yƑ07²9dYj2t1\#d\ؤw#&Xy%?dNqq 7}~QHTpw=B伐pj<:D-95Ѻң`7.I0ׇ- NSaݒMR{@|[REAA [>+& f9^.:Mፗ-I~hs:UȖS1֒|A3_73%Hp|{2vy?;AHaGA L{'Ge!>L3`vmIҩ}גԎ47Y2ip⽮_dm{KP2#{} I L97[7{ʃ9lgw{iN؛ϴζ hokCf?5iHJ(*p*:ӪcqΦ`/.ځ/rӗY˶VXYU '5?~mmHtz%Ƶ57lSպ%~g|ALe>ܱ&Qأc#~mֈEJ JLhwjMO_RjZ"Nw*}Ö_2B\W51 b\R`0H$ Głĝ𐻙д{6w&o}?\C'r*Lq%PZI%Zm L:v #`W+#QVw);s]N͹;jx**DXyJHrڪʝO.3i O,h};G'`fb.ts[Pwz`JMm p^.lrmqbiKTG]vUBjO}CW;/T_OsCi?]7g%XLVss"L:c7 6'4r; z˰wX \1L -'17$#0W_U;?hAI(Zy94zPg3p`ٹA[b'pR#𡱖ݰ>H?QeR;(;myhOPîNxpl$w Dܽe9y5Q{ZhJ`*)c2 w턼H[&"މdn C.nKs;؋ d\ΠՀ*!@v7A0bBi `?Jǣ;$"^کH~33Ĕj+m*4NYyPCZI}F\lq12>QFdՔ_eINbscHlO$HPrgBvAZJ_f-pE y04&iqZm~A3T ]^8ۈRm@rW F Vc N4DGhFes !C>㝁i:m_9lo=7,=l JAy+ۇR )|Lg4 N,RrH *Ɯri?;x-ap>:&eG{ҽq䥰%jS"jniJw5q s?2"/Ut}IEu嘇d׬5ie|AXvwJ:KdCXGADq`}!1 s0UJL,8jtQ-(u!˗4&&l' ׍h7ޒA /?ljQxp;$k[aj 5ۍEn#Qt#ڍEum>_kl)0?N4XѢx۝%Ѫ3ԕpVy -QpqmڄhEppEz})1ˎlúVv\ggh[>li]͞% q{hxYܒ$xBr :G ]chՑ>,RуᬘUn8We\ r' QG>nSX Va!3=)NEeB! q G:sh б +`aTFֽ͈:u`+P$)9g|}# 1 LRoP }`(#P }Err]'2l$@c A"w:| D<!)N;7c` A? =ʅVFpdcnnF ,tAMKp8&):-贪cޱ+ 3ǠOX1aHzCa1{&кP"zĘ_LYh /@0@**sKN;G"v hBV].1H~nCQK/XQO:[JXc/93䂣-Ǽ# sb|58 SAĻ7,*D"FmFn@MpeݜGoMO9Aei逇Z|݉qO5Ւn$.pɫ&,] f}RX{[)sa7b0߶OvH*F,sv҉14 XnvM_-@ .۱ĸdDLg}NaC$|pxxsKK `(&*dHKHk]DryT+L6ѓ9="D0%K~Ik^ ]4]'Ќd^Ė|qQ1(xif"R# Mei;,pי04΂lpsodݩr#(s2ۃ"sMAZ{~3R\;·.W(9qPFeO|%a6,)*8LZ{JTZHR.Ғf[R{Uto&eYFatMws=Yh!RnnŽ0$OIk΄x[ aXcWk3KwU-Jq>b0R7*I#4n n)!EO"㸕`_ܿ|j4% _.]._*ٕMc8[0FhR$~<ƽ6ui HosJzIiW8_Dy$"?#EEyVaz]hb:G/ơS&OJ3 K%[끸*M.GN pY*>KIrO-|hgxqvL^s֋yn*7S|7ԇ5ze)߻<0fuqקM1UMwqGɞȢVAXvpXfr](,|)dy !L0Dh gDSv( VD8/Mzڮu ҕ,JJ{iGnAG PN<2]poј׍u0oളYGJ)t.HǹD:_weq`:oϡ뫛':UZlg Ffpg6i9}K$P+q]Dw }B˫ Ns$J5(NҰ܋OYՍ/>֕IK8YR*c3<8ҠG,n0t!=zϾOhfHFN9j4ΆẎIK_<cug+kr>ZF u$$QlOcRsLspeE 8<܉-=-uթxf\CG8_Eȗ䫭(W)1,( X`G ņs'}m2HD HsFVb pTKbPDe_$ܼT;IX^]pL< ta`{Ixcd tqXҤٲH; [],mKfS^i۳ N, jVZ4PSO\4*Gƃ]j  [fc3emGtr>GL Mٗ.H]fK|d/)M;{_^= 6_1\F$m}˶Ǝg֚4y0-^~D-udE`JAöpb0>ᤅ[q ޠ4i}S[5MfԕKn]NI$99m{]IU`r_m$L$8;@2ō#h@2$/$n: i-E$(lk]$C5 ra,>rܻNGۏ\ał.$^T `շώWqTLa&%x%P'6:JqS8e>F:EH ( 8wxuև?6Q+br5 ҖS / grtzrZ;?PZ!mg`'қ spm#RgF{"С"?$!XvmK/SHTݴ(xK2v=6'f@Sm_!w&)@v|pZ=|xl Mjo{K6,cI)/U^h)QMcnXib]Ddb^t<ͅe<ص#B3OW}(Ԩ4t1Ḫ8A-юT^iDMF$;r Z^E[oE]53A xX%CD {i6LaH26,,{y}Mx(EE^ Lz1[0F NzTqR! @mZlb %ކguE >=F2쇤͚icX~wIy̵"I% ([ [(C*мqgUb1sӱ.T:a(zB?cieDϧMK!`}kHb5qIN.3/E9g7Y7mԄ/bPc(sޤ}ǾYf$f;@a9 ]9a9g(GG奀3앱V,ϫ7jSՓOU]蹪DXΘeBE;g)gkm(N:)"م=>㴴/dXgc’riYYkmdt|L|nT^1:cQM!^)7³ʢ[nZ{ZQ{, ςC 3HyJ"'NKx9WUTA.i@'\&p< Me1~Ho16!NeIU 4E3P5^ 6 {(nӇ!w͇Eտ}c7(wb״tkո-!957]C:H>,a,.{d7̾& %yH (3᡿z "0>s_[CK0$+Nn_2VCm4 ԅ7U%kP/c׃YдY ?~@ #w&{ߢ'4ʒA>c3Oz]&p [Y]u;:اǺXzU%;$Mf`&Vxg ,w0_EYQ̊d-g(f>VFfK?&U9ʳQ`c{dRJ,i3MoXITwXVøVȏ QrMSweF7ÖlMK?rY)T4, lZ MEIJ<՞YUPwqkji_[(ݒ^]Q(qg!R-t]i!QՌF)[m)SIgL=9{ ~3Kz字`FQ}7Hՙk8ZLL ^>]eIOoq˺&t "9wyIvR, β)᲏qZNB\(U0{l9) aF#jd z_|͋=ϕk6XW}Jl&PJ|׼h̯40d/_Fs)#_7HWB: έ%>]T,)}tjP%''DWZ?^ܕIe2iП\ԶDr^4OF{0U[)w; 9ȕRsQC%&}s.[Y(* /Fm`,&ă$}o. i,2`Al~ۭp $ $kH!ѥ@Ff=<𶦾KeӀ5iu~9IAqՇ tܖP嗙Da A"(dB:,Zl(Az D$iZôkKsn8huDf4& '->W28-+ă֠lT O)Pؼa{<;++p'hӖyʹ |ſn#B"Mzaqg^anv;ִȕ7ׯc\IKWr1^  C ׌\loZiѻؖ/ۀpbRۜCLfGt+>Q#-UlÅ],N,G$:b#!T$xnp:#wQy7 !:m^g-S2Eދl~/k@3GRB S8]Gs8bBʃm2uʋ6 廊,X3 Ҧx;9}>06stwJ b $tT߉׆|4 ?5ɡI>ⴜJh) YuzvA!>J  (@I*ۜ MC ^Rsӷ&KPKa tx& hr^$T05ZF=H 5+q0\d4$3XyngϱsPi6PK}a$IN#BeX{ỳhKq܃8s#:ݮ bi=[sgެicH{/;꫷C}ѝY|8& W"eQ?7g@Jf.&grԪ53}{+,G8ÁPBjb'2C= B "&yϧ#NdJZpӢ^?<ʎOe[{ Xl7)&}K1p3:.,iy#?kUWX~0؆ TXXAr J[VܞCGg17Lq n((3WiG&"+A5pna]hV W~wOh  IQiZ(֑P<< \L\ @ avSA-&a5;RBI9T8p_D0%;doo$~-Iԝm_ ԻI+xϹ5PgG83$@ur͝#18*^͏AW5zp!41㕌QiU\:.xPtcq\إ!xf%ֳjRo ;)քFa84E$~ [2*?>H*r 3'p9yR5npW2Se]f9zf8^EV&1Ψa𧥟3񘄬j\|g8;UlPh+ԊC:l"btDme4'zYJn,4Ɇij%Ml;>1r`@ԝO eC۽w\ 5q>9#8,^ tFs dVn3 ~y([ ֵ\Z% _v?@VZ[N+gR]|-tm!DMg^-⵲WsIFї!hNqbSpe頻\rR`^DS$4Qq+o 4Vù¢Qg/gUV w-vڢW3bpUuFF;xf#F"k'7o:\1X~ ]]xWCX GCnGт)I Bkg@+}x6 d=PhF;Ϧ^̟RC7Cb٢I,DR+䶰&2ׁӑXpz A!-G&읕\F~$j(]1_HPmX:.' P@ƅh&){q002+q-+vN@^!w4mTuFLheM-3]D|K¡<ב3}1eؗʊT7j"A"u–8˦e`wC S4} Pq#z]-H:c-xʸľ]lHUk!BTAO% 'tM;֊qL ޛQZ3Nй:śbQ%Mػ0x5 CčQΈ5/F+#tNP'/^`S/5Pj{aKv+-zi]K*%|NUhV2^[Z*77Q1L3""oCpu- pHS: ;jn16FʥI~KyؘS937Ms Hp& iH3{VYZy.һL6X-, ] ߡMOz byۋٛ0@5 UQ<&2gBE f| j;Y^h6 zo,b~TĨ+J_` 0fs%s"7実^yvnHd3g\*6̓NԜFI@>mjAο}[_;\|_H_,G pkoB}8%4ZoK/TeyiID_аv7,.~|*WhP^F>=qzo~:u(S lY""S Sl(O&fj|_vJؽ2e?}Ƅe7}KRK\YFb6s05f'-jAn{4!~=ycq$ (LPJw { $fX4|bsR*wo `W;)o$)6v|nTljEp/W+av2eoѶ'h[yoH*:Q1LP̀=K41 5g-640gڗjqȭ#HΓ„P))Hq.9gYf61L琺YV8;{r^s  6a&lҬin4>_s,~p%$hnarrS5J ss,gQx8t`+qT&3 G: 63oPMrj˔gDm>cmTwt^w|ioxB8VUL6DɢB݌OUD kNd%1L{ez&![r+U7?E ͮ\Xܫ>&¢{Q^ctD{`a0po;<R64aA̩ULcLWhvAOSZњdcfr9q>=L1-/cJ-cWDWS [S~jBɣeuڜWJ=C+q0 0 jӌ3Q[hP@g+lܸar_1%Lv .ͻ- CIIYCNq>.r$*yw1$7@FX] Rp×qeօn@r]e6GR+an$n) \+e ]/S[Նb,AM0$E1$+EXU>ǷI ىl#m46GѮFgTcF {ڇ?p\Ԃ+ 3e"G wɄ) ugĹ?S7~ [E qg+b+߳4Tϗ B>GzM#=KP[#;.ә&M_q'h08?^͔|I!T }jUYs“z"*L($G\'yp~yׯjP8SOsph8@|b2Neldؖ-V(b^+IzYKi>ݧ :./ݸRrKrC pa3'nn8BVդ<&o yt 013z83X{CARa; cׅEq9-zH`zI3~pKZnd0eR.Ure*q5fOu"8N Aa's] y9r'8Ѯnt1QY#IFMMH%Z=k6iuq~;Y# E\sobܝ&CuB#kG{ۤ$E1~8]>ԗu&ȉ*?ĠD.(=%u? Urimti`=*`㯵`_fd?4 )&?r4B'b%&9yW@%T`<"Ća0SCن}僻Fws^Rr/ڭ=^u_lx\Rf Zq<I4vC,ߨ2$tIC|_Aqp+%Hܟ>UzjK,^Stir R) 9~}99]FI@ `3PT^ްyWUԚaZeS, T 4HO{]/YLҏ/CxxSȽSo 1l$'dȩT;.E93Dp/1ȥ3 'EQFNUhi|J}6}e8s%cf&m辫UjQFƑF3C)m=\soF%WDJBR~li"5ZZt؊]f ]6o(6Cuh+q/U0D34;3z2 :*)Ad#jHA|**@3ePNjDZ5VC@k20Y.B/J K;_#/k:x4~M2`$(ݧE+#ia=TY۷i,p73U8ʻɍ<5P#WR `CMmw~%eP5Y'whQgS%x&F=y%S'-mMbA=<ʄi@ K p̓qϪ孮DO?o0SHnE$BC"Q%,&/-9fs _T7P)㖀aǛi fRYg\ 5)(ZnMGԳF0pyDwll4h ݍMKjy8( W j]`yI5:<3>J-xlcWƍ8OJBr7)m'i4~I# [6:_ޡmʴs9`y3ݒs|+SJݭCZ#]!⽔J,f4-Y+uq's-*HmYy^BHR9],.v!0tA>rK.Ո?Dtj$;f!2:_lf~s 8z5D.KʓxQF2W 3؁Y7PZEҗ9xJ[`4SZ$^eEض97;B4ZهzDT}wsf 7d"(+v/o50i?h"P9uHK*}ȃG)YX%tIkMgfWw3# 77zjbZ(E,qf߼~nb.f)N`}|%'̩xqXk"'Q;bsz3ׅqCƃ֭G5Ψ3{c?: T0Yx:~mi.QJI8ڦwR \Xa1+mύ}AҨ1H'\xH=FxREZace:*~g>aAJ5h‘L+ϊ8KUdFޖ^w"'i|[uBy\}r+2խ8I i0EJ.^j# HUvG^Z ۰> |Ʉ_74fDhห !9Kp5j ~ r}a<iue8#,23^[v/"$L{.|"E#k[Āvf#^He:APei[BpP% <)X̍KuV7D@JJedU#o<6 4l\vQН4t&)`;4(p_{|,]AU CZTn8ueiiڞ{@'$JQzyxCW +#擑C wodE1?~AeMIlb?aհ/8!*w֕Ss۔Hb>Y=jrRIqEA=kNw&+cS5hZU-@hfCc֩ëa#%)*TOBz4x*~\ 7=Ie _wva;:^`'GQ ߉GF~uQ DEzKZǙ榘W,P ŧ&bbAp0L6y!I]B(g3|}V@RU(iuy gAz&۠V^4O_a$FOŸs.ck_2-vu c Gp"dv0iO`EAT]iϝL/|_yLSv;t<64j0g&1oT=H`7DGJ˞u ~3D=^@W~4)M2-ۇίaGnPQWU?Iؿ'Aڢa=bl+Bh+dVT.Hn!AJ Qv[U*yeˍ9Q4!)XU[ ܰ-b x6jp2mMvެgUeBTSIbDG]H*ِ9lJH]YO6>\ݪ˝楄x:Ӟ` !km ߱ ||RKvJיyzIȊ%hIfvZPP ?c&M3s8KA/jᄡSv;MkAf 5/!PJO ?p ݩmqkk,_@962@ U%Ͷ^îa-|ziDfb^ߢB¯Ɓ'7w4*jjВ[ 9*ϭF?v oh$bCIJZkr+dSN>$?D!FWs]R8QV<+VhX?Js0W{v{@v{tU\X:5>}8n5Cxݱ;Kk|X&`džd˵JilM#ϑmS%;Htb0n~(E}jy2`ic'cbkq\ѳ?eQ Q$J"{ &.*㰠 *7HÐ:(`w ]#83ψ@mӵb&P G 9" 1urOQpZ߲Q5HA12Z!U]l.l\òMg6`X\c.TW@5oPTu\,3mr %!GUQwZڜBxcJ|{f祋mOPvs @{FwDq$tGUL&~Dm+n,`g6F[.M G> [!n,ip'ժ qb-o"8 `3‘ "\u+]ѧ JbVou4uYAfCت{OX9jU̺w. w'ۏi׋/r2(ߗ ғ߅IMY}H9)E`uͅlpxw G&F~;Ad~:#nk@<{ >I]2SiD%$flݐv(h^/$GEΗP)ԯ:p[y JTo ;;!n:(75]oR55xFQ,%]{}*囩w[Ɵ2?NTs׃Q# ߩtƊ>z.Ph]Sљ.:%9om&jH4Two ㎺@.-@%^]=W"N'FBnVgTΉ,v]"lD p vғy^C㕦kZl׿=$EaaiEqVISY ǍesY蓝~>@z^vpe>2mjTwxmavĹ R"$~ u[B[1l9'F5w5>TA-YD#_EBz1v`Œ40t7mYht>]?3UKlS2ӲNUd%s6G\bYIW5>^V Xj,N"=d,t_$Ewiw|t#L\ L.Ӊ9R5`7`^*;#G Ӈ_@__fH䌫Q:?yr PD9W,n/!$a[_Dz9:>.nϯl}yolh;GJN_,em#S/Spɧ֪E B{Zw,()A(e>J-jMԖ'4,VĕLh_ fRy("+ hG4=oB0+9g/"Gb:o4#6Ǝ/\N-!'&!aqAV|Q e&x[ʭ` Y l|^gm,Ǵ[=9Q*/[萑ųG ܽ&%<LV+m-+ҍ~]m9>ѲTf@ Hcתxl3a1FQ[KBvI)yɫN"+Ǟ/Go5Rj+iT  T0nP/U0\>X 3ɋտH L#aǠ 6%vXF&`p=V1dtwΚo6%zza[itusG-i}<Ѿ*ɹ+4- bBLt~6VQ ʎp'[?+Lrқ$' HA$42%c':C×ԇt&C՚TS^-+!x/tg+\G4%YLB6҃MPhKxO9EbKo qt:ao 82L{0)HmXz,hLWnRIAi χ2*m:>#_$k|n/ TbJ˄+nw{n|hљ|C< / EF !{ 3; %81߷ߴ-^Wy&@(FA%MR0_G 8bv?gOMV5Et?:!gVг8~(A ?luc,eZN l `7{Lu J9ϭ2#Wp @Ԭ6'|&6WC/̺2gD!G S&N? pq1h9tm'#_l%gZTrیW2\EL3h.^KH*gIba‘S., %; K'Pڼ(ς^QAdh>!g|HHNt\4oTg™s/IIn[ r36Hpu; n`JuNJIdF?ȎYtHǁo)Ew #0.kU]\tkJ /-ƶmΥp=-oHDz= .ut' "B1ŬD\T;0AU)4z s,%LJhqUlI6 R_LԟH.7~c;|W( m>|V82%-x OUEE8Yp6-ᬷ󥍯Pd츖IsxȾgjYUV C#T+T.I&ձSSߚ葡֬9Dl˺ܡ -(J84۷kH$TݚIޮ5Ň# &F^ڐ=xA];5Q ̠-/G_NBW|~/^8 %ZR]>iPBςO<`nq wK)UCNs֑mk?74!gr=r/f BN&\5xuwv{B;RJ$bJqU!uh =˓"i0ԑ.p&:J %fG"/K"2vFw@!cP_4Kӎ' ŹlM  Ea;qRmYD@ !EYV)$}YkP|:ڇGNؓ=}arǓ8eQ䃸q(ʢq=@7@L6bb+݌&l sۘ>`şdfh>R6N[,!VbdXfRm#ك"y#è'(X u揳~"ЏZme0lN9zC,*4Yٗl2ĤHҗKslR,ͥ`SBƒO6fŒJ19pڷ:/Qܒv<& @nf>:2ngKv.Ȩ|QugK쮒NBn ^Z$f3;[eΗ \H}0p,XD$Y56㫴MAi$.zbr_w׵80983F,b>ۚ-,JHcm>6VLȋV۩9(ZPhs Dk't-sRW^VQQ2l5}Ư2pJ,O.LsȌʀ7k˄'Gq>-`efff 0k.O5Z >{BW>!VWc}T烲z|\'H Z'<h:s/xՒ '6ծJ~1)(eٌ}F8 9 awauycZ#ʕ\fv}חQ̆h'>ĉgi6xGr͔:| N[uREj؛AIJr*K=M $8ۊ% mш4ƓO Y>}] d HH1rU!IWK$/bpy?x0Tl;y1z9Ivym-d>egpM;$i`X'*j;!È+{jIp,CcĄIZH„3^FU=зI|H'QGt?cdk5*d \JE'×pTg@OZ4U<|`L^E`QlJ怃޺Pˬ"+Y&1Jy"F)u eķK) вEGktA˘DM2Q&gm!nj2Kw4 ,:0E{w6)]J؍_ac1 8 2beGhխA *\wgtᛚFRReqMsV >%u&2Zq?'W}Iz<@b}trGNR\yVM@5M?~3 eoHRͱzM~ư Rs\&1D Dhv Z&iACFSgI0M@&'e}M8Gr7rD0!GeeG_+Y*GEbяRAl+6q^FEV|E82&*vK}axӧ9`+z]lZWlXCU.ny#ҁ+&VtEg2t4@Ul{R,&-8K%lf&PRp?@Z4iZ]ȿa˫oTC1`M5(=rv>Plg{SCZwMX}U5XUR@*tQ0Bd ϺNٷ1xּNb;T;]nֻׄTW +gyE8(}j. cc2']cl4R|\sCr>lK!Ď,yB+=ESO"$3,$vN=X<4,+%ў? V$/,Wlw[AU$9ew#.Ԧ'+:t7g2݅_YmJioͺbsd.A^/KH*]ʊ"+9UzL'ʕ$&∨PHQQo0 =zt$!Kdo9UoVaߟe)f=D  ΕXҝᱥ~o"_v;PA6/?FV ݬ1e=+>?/__Ò90RW{y o3HX|3ITxܰ-܇h4IuM{uڢcV&[ 1" |6fL.JiϳaᅈsȶY3wlǕy.cz1HIt2$8/sw1Iz:0Ķ{ȎUC {jtnW0kߎC3Js'#Q>W 47;졯 ` GDTNKZ/G]#Ox@=p,. ao`S! Ǣ&%$E ]yYG )gF@+眍AۣY%n#~=>*MJl3Hƻ}{0M|,fkEò,G)Yr栎Vl<:oEK7^# 2л2Tުd Y]F.rr>𨆌Vϕc;Ks3*W +/w>FS;ST\ (p]M{ G_tQF8RfAjg <~`J&3'ƻgd"$*L. LSYLtS=8M@p,5A6y6WgU+/"K"+p~chz\PH x9J-&4_=nB~e(m*2?Zf)~W4C5w Ym@CN)v%s[dXD>*6rM}.P[eqfmj7G~=u F=7^KtlHO 23Q!04J+(\QCPӡ3¤+!".Va`,`;Kv%c (O6wZޠn"zLd}. /?ZPkg!]It j_oOЛi٨J,ڒIe%ܡe+̮Gx>lWc~wr' oi|2YegxqpWͯ~#cg'1xMa3%V9U a`ttlfYxK[;7wEb^0Aj]r'u{ '6Z' rt=pM0fO{‡7?U 0]V"S5:Yd ;qg;k0zq_6ۭb_3m@lԘc1T ''bO "A@xIGGJT͉u- Xu`&= GI#4 oC6a1GНKY\"gH!%GV O(vսBcK#b1UeCC;3;+ߞe]T3zTKjX;`Y[|6ȪťX_ /?f~jмQ^uM*mtZZ>Hq rVDi[ ?;ܧ"A-U˪gKy#ΧY}!])-J|/^Tki԰m aa"$L! 2)١r52݌3(u|D =K $邱[;^N@.} y+!8[Qx`w|>LlO ֒y>EZIƛĠ&(IUa]ߧe/tg$Zz՛|A3:>AaBvQuvҺ]ci7d54.'QSfng]_1ꅖ&u/+loT#F.4*_R,ѼGK{E>!U){+#o'SeKC6ZT9Sk":I7G^BNJZ0ļV|IaiPb=t<~4o`禳9aN=mTvdޘ\Ra`1Cg&W,oM+ T8oS|ޯRIK@t..X;#<NT1yJg (D(%6e3{q2` [6#mX3Hc^-WJM y) b djI۟kS(XjEkKߣׄ'ٌ cuD̅qmMNר٩(? `hs]iV}xb\@_$Q]iZrj+ۜ$8DQ7~] ˷ ƚ͝5}Hx _*2Ã>-S6ܤyJTLACbuPhOw(aZf蘭5)zE&kWǎQje|3(wP_0#qW=/|avFٺSۂoQO8{+78igA>?Yv,_NEuA٩^^NOa >/mJTO)?;:2TQ{ݏM1yOW[k6rop V7B~Vov $}\ %?6=n<@mf\Ll뚃=үHڹX8+lOS^ W5!{ qJwF|swt˪٦LR~/m>.~1-@~("?tbpԵ]CjU?X+3&Ш&L%VCQ$ J?e9Bҽ@vuyt{1wV;U|تźqļǖ(*yXX1~[= *+ļx߆R]qg5_X¯+>1rh:Mjȝ42ؕOD.:4 NRQQod<7:8j6ޒsm~a$qZòMIɨ2=T!qr;Fj]8DÌw\Xa./w}!$1O SnwmEwKeR> xzǑpCG'tC)])dԸ:7H junSjRV'9TӴ9+d7M+ɜ !ܸX KەGv}'/Ĉhgx8J|}Asq>K>HM=x sXptX+-nEN5H>]=1R[\QJC $l8y)cD%+ZuxNOUD">RUWo"ٽ[%، H8%=(-\ԈsBE;3a% %_ГvZ R~~s-GpQg;=wn?_,.=hX =4v'JÞqɂ|UqE/>@ڏ@nz kI0?d0QJ*Xd`F~>ߊp?A12!X]d a-)+O v`c-?&c3'iNVȌ26VFUyhnRRd2ܿ ˘9 & 3 Vqmc+"IM:\/Ot4`iw,24n $e ,bPՑJj+J(l$I/ù@G1jiܘ<-|01.Vz-0іܸ98nt\*f=yPo]U'K`ҦH+NcLb@:;$e𓅊J="Тm!vEҠ3d7kѸc.23"4}zɐu ^dAv6+8{V ͻ&{ʁPT?Y ցvf&awʌԭeˆ=[3mF~*N9K}4+r,J(+I/TxWuBwJV`Aum q{$he I[dj$I ew/-6Sbql +4䞣QF8hJ-ׂ(`9z 3%JVP{"3yz\63hgA3=lhj@.zŖmŇ'k0*R}VZxެ[JC $nh,LOSӦOܒdm'}EqF[hHfƾgA/&G:7X,X, F ȇ*Ut"B\M2cssbV`Ό?BteM*t}x:@;$xf.s/!ޭ!H_#o jQ?rZвT0>GSEA4݂8'ow$8Ms(} @RI!.>^ind[ǿ.>c̈́UP FgpnaҤ%v`2+i yk h2t(!iři*nU [%(QζiW""}<uv<UmrBܖ1˪vk-bU!ڰ1&>\5Uns"H i;C=꾐aAw;Y.p A(VueJ'ttYҟM8q|MiQ{sp%xP]\~Yy'Pb8EXeS8ّΜ ]Fl ϾsߑdLY^wVG~xD J 6#v//KNe!0p.$U:8^M)Mc3}0؉Y MSpI}XݯINW-%TPqI6"- qQj54>FHr)A5 6 pJ.-:tR( ?d,Ce5r:Lp3hTxGsE~j TmD,vrl?;!$b[|_UĤF3Q w5acPurTﰐeT2 _k} "rq{|zJ45$R`k>qe*܆eN%D~!qezֹ5}4QcL(XOJ2"tc(L|,3 oEW8v2??4./ 0{3E.n2ceaa @# z׍\7i%vl]ًWӭQ@jo.k hW|;SΦed M4tO+CլdET@Gwt,n})K`D)?(G>#Q= 7#ہ! m׹R,Svt +XR_y!XrBm1_ڑ{yD@2=Wd1‡dp!S ګ%r3t} ف1ACL8KņHjjEDrR0~R Sv !U&_Q3K}zCrA"JF6칬|%{nycp;{C&oNh$WNE#b5O4<_ "Oc/}0YqLLK:y_,U. WUmbHx^wqv H^r<[ጧ͍́r6uLiu Ⱥ+9;a三\e nW],|aj*<2iJ s ;#(wV2~)b1h%Ĕh}I,8Qkiݧ[﷟ CV04. @~ǀ/vJx:y(as 眺Q:ZAą&spH^j1br t|dKWnbi9BLL/k9FUDF(iKͶLrۏURV 0ӕH$j񰗔3ndA*v'=l1+boz]Z~c琒3dhmD2k?1@M(ڶEmc!I'E^gJc.ѹtk% x5P'|Ϫ.]y|Oh*|!vn ^Bo4 ]sƊֲD02F%Oʑ}'"-`c/&+fSdA3S ͨNe5vp:&ے?)*{rg$AC+6Phi~rg0gKStl7T<" dL~`jn|?p=VO Wr&~~%"csTsei0 k~fh.kl\ !$2fd_Ba\.Mț4"f~oq@B2!71{>Khi0%̪Lx'-HF$ωܓHQA*9BkQmI=E6ԦT)$GRE'8mOE$8fi+t׸b!uGa$P*Bfstƒ rZ-N y?P?EH~zWfoqctfdu459  :2#Fժa*qb7,82ULCF;T8,?N +bCjgA0W48x׵ wX߈p:$?0*fvz8+ޅ'40ʎ Xh:HkUWQQUI$KpI22bS)6Oz0 2C섍" *g55#kd1=ɕ`fcrb;Nwn1Qy.G[c_!A(& ME¸6 z2T:^P$ q˻,YoxƼھء]5 7,՚B>G@eɽn e/@ue?(^4jWW9aɷmq8V{:isn &e%) |Kzn+QBV)s~FWj,Q M4L;8#\ ~q4 {!"6>4!b|qAʻs)LeP$'-@BHgPQDZQmks - l$٦ 4>2,*=%*M#qB/zPJ ,x=7;2GI{駑Ij«p4JGO݊0󔇢}@4^Y]WfԻ_4=[JlEGG?X7:ʋt1`(|l"UBFcD FG`R{g`x#ǭq5vly?Y&dO(fR*7u) XZF{$b\w7+eS`b[w&>9Ba׶O8.~UXݩ+tdo"Xz[`O,E7ܾB `є~MV+c" HgD$ʢ%': ;yP(vABآߡ ]*g)GKyZ(Op&Vhdu@"G!@eθ1𭟑` 8MK<Y%/ZA0* &R;*=krm~zBFm2gVz%'Qm~q۔C! 6Cg,r-ېz%̑R1)z!~Ye#2fȡT)js)GXɑ8,0_M|PY%{ ~-L4:T4ZٲC:f40Ki3FiZX-cX ~6S`WܮpoS\VF$AiAI>!rl6k'i%qU`wz /J&*>_2 -6S?ʰ&Y 2">+1V p%5N54#H`IϏ~b݆m73}I=/Y%ArՄZ~6)=5֡Uh<&~v׳ڇk(0@|-KwxDf΅T %HQB:k'fEnw>L雧}9ad0Mu5%?z-l=}99V?Zb3j "h~pkSҦWj9)*g'cC I0z[8%E}rV)9Ւ>"`ExG☹bjLj*iu{*7p2V2CZ$nb1p+}5mZH8䈭蟋<C*=,|ljyٕx(oh J-׼RSJ >plsKy<8:uep{팗{?古3Pz4N,tzKN[^y Ijd5&Kr;9&#w;[ 48 + };ELIΥZ@v"g^\odKfo%zūq, R~,ųAq߬EM:+x.esirPH?lb+GMIVVR辣㱹'SM#() x %w៶ǂ̡* M>:_5^!;+[/3! #CxIdn\8C&c-vĈ3uT>UEwhՊ,f%*0[+6ʙ@˜tYrv'd:Wfy|mLJIt(|nEB7wy4$ 1ê|YWMV oaӜKӱ36(!a@փʗTͽ83/cpX5~.PH$<'V6B*hFK2=\̼OF(%LG-!HKw%Y1h t HR3&QTfJ vo܁uŕ$Gl?߁O XGJsco1*iDHV cx4$>݇\Pu G}Kt5TfZeJ+k| INDM:kPvW)Ƒ˲.t (}%.RX3$>݌t0ƀD v7<\fϝFeGŕl"{\^<)v3=?YGrlً֒`q<פؐƮ{"D|>Z8{h?VX~(?&ckepK`.>92)T|6 =~Ϻ8z=S☵R;SR>nu~$@]AedtY#` kSV3+ |Vˆ P~ ̓U`y^u(2d1ӕɬ(wY9}6&wY[a;SnW6w4(zrGhb,O4f_G =M2 Qw;F0;tRU,tP_kmd͇%]NQ/5lx(b,۪m"%WVK%|+-CSG4ڼIЂT:xVQ"*#pPVή6I;#%nn\^^̽2qL8VvTꀤqA9?_bH6c8HP SБ~ {Ds$! m-b@ 5ܦKxсLxQu -7Jekf$2P's[UzY?CP [O3=C{J{.*7͌I U#Zl>'"yq[~\~dORb{}򼼾=K~TtHHD6MMw1U"=Gxh boOB޳M12͒$hjڡѣEJ uVӅ8mj~uZ-嗎$-8oɌz7q&!Q$YL-C]^XL\C~]'pTgͣ"vcr5Ncy˼ өNue4ct~o&sWgũz/Vc5h 98XgI? L˚̎N CXP‚F$kr:u&._ L2'IәXB P{X$ ` 6z#P{~x$&#q] fXW1[sPRrh³UZ(ZF `L5yC ˙.M c+T*b0l F/jŋEÜC*nf]MY*25վ3OE9sV eM4 EɱV?ۜڋfzeJ4RIh;q'VqkGJ6߹MPF4;TT~}}br9Ϣ[|}SoDo)1l:v?ruqMh?ʃԇܯbdvcoh=Xh6im^G̈.IsfK4tB2Nۜ0 (>/OV[wj\e MV]Y^8. OlC~弧2lWO$|ȶp'Iԍ [|"2^{QQqTDxBG;@R{V*x{a+CV-t` vձ@Wc|LzҤ,)Ax03y\T=Lj+]P1Ø4Zҋ/m2#Fy7'k c nRlg荱g[Re"1$ ,786)l3 +iK/W(  T94暴|% gPp{dK,rJ:o3ĦV ŢIԨi8:y}l<];!̪E{W$V|9I>?.28An&wF2бgI6"7"^,mI`DQ} fb(: PlP9g &!4Zo8CljsHHxjRl`m5 e[i3DA\EvV}BXpao,ceU!󪡃 %Ѫ^;{nIJxVeLk?6﬒VϰA2i6P\ՑΎzMƙ,J1̓^H4OJ+}q1:/iynxB WxVhtO\Afj F;1bFi`-몓%MY<-3#6i]d%t sw VkNaDسOo!m9:d0LEk덃$5i ڭ?;ݘ|z *4Pp?r Fσ.8(Qf[dsLDkuw# ՊJr{RK*9ֶܭ.4"=b,ΐLMaC?$&KƢlW zyTȓ4ev|ova_ "ri]yuɗ]*؟KˉGwS$ 95/|f^wb_3=TpCד!!XJH^k[IyuėѐvN"J >N1ֲIvFIݫDXC&|b2Mѻ"EAɃE^RZ~򇀙 ]x88|L,\=俌d,d'wU._ _vϮ[;s"Um~a?)$@TnXx@OmG 2*fv#u@+/,6ڴv/dV]duSp[ӕLIH^H3}EWk^)}QA!zsKָK< 5rf^MHţA\hܬa;PPQs\UЪ5Zͮϫ R*3)tAiRH :acLV9 dؤΜR#9"F~])OCif/0ܶcD)V kayφS Um '6p' ]R7 dGJF+t.綫E6`{gdW!S oy;&mk @2)*'q kY)Sbc{6Ɠn5\ 7УG~=KX("&dܮL|=~ r֦i,?u]!]rzQYcцрVavsj16Ì.3Bߜ/ঃqX >47;*ʛ5bɸe,Q {9EI(S<_~U!$|Vhh\N̩ɉ0d0sCņ7Θ)@cVj$aSyWJA4? +p{0|mɶDM_"ptur@o"@Ɣyc fjڮp?ƪcJgx:dP~1(H&~nlb#{=v,gm-:44ch3 4&*p70ˢCp gu3:nY(tQ0OG\Pִ]mۂXw, " z8z &11걎S؛ ǒ9܅]6*e0͝VEyU8tX]bl#Q ^?P/6l !?ˮ2BjYR :1x\֡dy7'B1D?^&|7Nl#gj`f4jsH57xH↱g14PҬn2]&)`DdT? !,N<܇>/b¿XOJol{\IZ1;TmNzzr6w Ee3(E"+tG=mٱl-);;r3'Ė}-dJy@OVdwbYƼ&4dp>&Y6A3}u8y7}1x*\O m}9ρYn`P& ,e3}64) rr2ޕk~3|.ܞAPRx=puMJ(h~$-阵eMƆj$6hH'u^o)\rZ2E1*/h ~bzЭMlGO ch/N%ײ&(Pv{Pf7l,ÃI忯>(ywˬN41E6!A>#è$nL~8KD5k }VBj1F_C,٭]QR~:A'YM5.#[2P ӟ,&cBd~Du|p<o\"/ QʍHL_ 2oKcH#Ð> .4\W2* cSboUiæ_/2iHg/jL EK*Gh:$*3YEI|;% %==BXv8Cpdܘ":%bpfAF*~GG]YX+'qrS<bgF& 읪Z> ?$wLxVTyl0lHX?kQ {BmF3!pٰR|<4БcimmPn7}WOEpe5]0иE"W6C hS?S=̧=uf;@@5!7)Q:5)gd9&`XT g/A5s#:0;iM{;ы>07KNt[YE$Q L$hoDjW"KѢn~bM(-.R8#{T)\}]d[)Q=R ҆P췚~Ⱦ~R^7B35s]6}<^BE33 s?@L ygSzk;ɇ ]L4fea)/ CPt-Gpj}V+رwzƓۄ E|eޢ]cC-\e-MChҐ;9.T<&unLƔ0g+ _:l@\Q+D+#EK] M2Ó)$n);Ӗ9=*ANKYwdO g? ְ OAx#:|5ؐIV ˃PH=I`HixmKR|xaƘ;x|H>9 2A3=2y0u2@q2.PD?d&r㢱tNVwc՚,Iz:u(ѫe3 'xy s~L)9B߫2? 6I:3ORI9rcE,>2@—q7.bhH }։ uC|eg CC} Ŗ &j YZ