tiff-4.0.9-150000.45.22.1<>,yLcp9|\k"%$>]s`6! Ċp05!}cQ\p38A"jG@؍٣зe-#k!N: @27+>UK9?AqM܀~9}[ecW%:;Ϲk= Rgw`D2gC/NR* y4X;j&  ,34K[m | .Ew_Nr {|s8;FhX%X9q>>_?_d   Z 6\bhd  `  \ 9 :=ASEE0H,H@ Ht I (I8I/9J/:M/F* G* H-I0X0Y0\1 ]4^?b@icAdAeAfAlAuAvD(wWTxZPy]LWz^^^^_Ctiff4.0.9150000.45.22.1Tools for Converting from and to the Tagged Image File FormatThis package contains the library and support programs for the TIFF image format.cs390zp32eSUSE Linux Enterprise 15SUSE LLC HPNDhttps://www.suse.com/Productivity/Graphics/Convertorshttp://www.simplesystems.org/libtiff/linuxs390xJJ:9Y:-hXII89YJYp9`9zt @ r. W62 f(0N3Q 58]`@OK$ Z9 c O 4  H 5}0%(9! ayu V6(tX .  =9y`|1F:1=O@1f"8 oE^7 W^ q}  J'$A8#ZR 7s- s >) ~3CI%F b, | / Q4 J uA큤A큤A큤A큤ccccccccccccccccccc7)ZO@Z= ZcU\IW(W.W(W(W.W.cW.U\I7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)ZW.W.W.cY! U\IW)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W.W.W(W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.X0int32 conversion (when refBlackWhite[0] == 2147483648.f) Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1907 + libtiff/tif_dirinfo.c, tif_dirread.c: add _TIFFCheckFieldIsValidForCodec(), and use it in TIFFReadDirectory() so as to ignore fields whose tag is a codec-specified tag but this codec is not enabled. This avoids TIFFGetField() to behave differently depending on whether the codec is enabled or not, and thus can avoid stack based buffer overflows in a number of TIFF utilities such as tiffsplit, tiffcmp, thumbnail, etc. Patch derived from 0063-Handle-properly-CODEC-specific-tags.patch (http://bugzilla.maptools.org/show_bug.cgi?id=2580) by Raphaël Hertzog. Fixes: http://bugzilla.maptools.org/show_bug.cgi?id=2580 http://bugzilla.maptools.org/show_bug.cgi?id=2693 http://bugzilla.maptools.org/show_bug.cgi?id=2625 (CVE-2016-10095, bsc#1017690) http://bugzilla.maptools.org/show_bug.cgi?id=2564 (CVE-2015-7554, bsc#960341) http://bugzilla.maptools.org/show_bug.cgi?id=2561 (CVE-2016-5318, bsc#983436) http://bugzilla.maptools.org/show_bug.cgi?id=2499 (CVE-2014-8128, bsc#969783) http://bugzilla.maptools.org/show_bug.cgi?id=2441 http://bugzilla.maptools.org/show_bug.cgi?id=2433 + libtiff/tif_swab.c: if DISABLE_CHECK_TIFFSWABMACROS is defined, do not do the #ifdef TIFFSwabXXX checks. Make it easier for GDAL to rename the symbols of its internal libtiff copy. + libtiff/tif_dirread.c: fix regression of libtiff 4.0.8 in ChopUpSingleUncompressedStrip() regarding update of newly single-strip uncompressed files whose bytecount is 0. Before the change of 2016-12-03, the condition bytecount==0 used to trigger an early exit/disabling of strip chop. Re-introduce that in update mode. Otherwise this cause later incorrect setting for the value of StripByCounts/StripOffsets. (https://trac.osgeo.org/gdal/ticket/6924) + libtiff/tif_dirread.c: TIFFFetchStripThing(): limit the number of items read in StripOffsets/StripByteCounts tags to the number of strips to avoid excessive memory allocation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2215 + libtiff/tif_getimage.c: avoid many (harmless) unsigned int overflows. + libtiff/tif_fax3.c: avoid unsigned int overflow in Fax3Encode2DRow(). Could potentially be a bug with huge rows. + libtiff/tif_jpeg.c: avoid (harmless) unsigned int overflow on tiled images. + libtiff/tif_dirread.c: avoid unsigned int overflow in EstimateStripByteCounts() and BYTECOUNTLOOKSBAD when file is too short. + libtiff/tif_predict.c: decorate legitimate functions where unsigned int overflow occur with TIFF_NOSANITIZE_UNSIGNED_INT_OVERFLOW + libtiff/tif_dirread.c: avoid unsigned int overflow in EstimateStripByteCounts() + libtiff/tiffiop.h: add TIFF_NOSANITIZE_UNSIGNED_INT_OVERFLOW macro to disable CLang warnings raised by - fsanitize=undefined,unsigned-integer-overflow + libtiff/tif_jpeg.c: add anti-denial of service measure to avoid excessive CPU consumption on progressive JPEGs with a huge number of scans. See http://www.libjpeg-turbo.org/pmwiki/uploads/About/TwoIssueswiththeJPEGStandard.pdf Note: only affects libtiff since 2014-12-29 where support of non-baseline JPEG was added. + libtiff/tif_jpeg.c: error out at decoding time if anticipated libjpeg memory allocation is above 100 MB. libjpeg in case of multiple scans, which is allowed even in baseline JPEG, if components are spread over several scans and not interleavedin a single one, needs to allocate memory (or backing store) for the whole strip/tile. See http://www.libjpeg-turbo.org/pmwiki/uploads/About/TwoIssueswiththeJPEGStandard.pdf This limitation may be overriden by setting the LIBTIFF_ALLOW_LARGE_LIBJPEG_MEM_ALLOC environment variable, or recompiling libtiff with a custom value of TIFF_LIBJPEG_LARGEST_MEM_ALLOC macro. + libtiff/tif_jbig.c: fix memory leak in error code path of JBIGDecode() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2706 (CVE-2017-9936, bsc#1046073) + libtiff/tif_dirread.c: in TIFFReadDirEntryFloat(), check that a double value can fit in a float before casting. + libtiff/tiffiop.h, libtiff/tif_jpeg.c, libtiff/tif_jpeg_12.c, libtiff/tif_read.c: make TIFFReadScanline() works in CHUNKY_STRIP_READ_SUPPORT mode with JPEG stream with multiple scans. Also make configurable through a LIBTIFF_JPEG_MAX_ALLOWED_SCAN_NUMBER environment variable the maximum number of scans allowed. Defaults to 100. + libtiff/tif_read.c: TIFFFillTile(): add limitation to the number of bytes read in case td_stripbytecount[strip] is bigger than reasonable, so as to avoid excessive memory allocation (similarly to what was done for TIFFFileStrip() on 2017-05-10) + libtiff/tif_getimage.c: use _TIFFReadEncodedStripAndAllocBuffer(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2708 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2433 + libtiff/tif_read.c, tiffiop.h: add a _TIFFReadEncodedStripAndAllocBuffer() function, variant of TIFFReadEncodedStrip() that allocates the decoded buffer only after a first successful TIFFFillStrip(). This avoids excessive memory allocation on corrupted files. + libtiff/tif_dirwrite.c: in TIFFWriteDirectoryTagCheckedXXXX() functions associated with LONG8/SLONG8 data type, replace assertion that the file is BigTIFF, by a non-fatal error. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2712 + libtiff/tif_read.c: TIFFStartTile(): set tif_rawcc to tif_rawdataloaded when it is set. Similarly to TIFFStartStrip(). This issue was revealed by the change of 2017-06-30 in TIFFFileTile(), limiting the number of bytes read. But it could probably have been hit too in CHUNKY_STRIP_READ_SUPPORT mode previously. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2454 + libtiff/tif_error.c, tif_warning.c: correctly use va_list when both an old-style and new-style warning/error handlers are installed. Patch by Paavo Helde (sent on the mailing list) + libtiff/tif_getimage.c: use _TIFFReadTileAndAllocBuffer(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2470 + libtiff/tif_read.c, tiffiop.h: add a _TIFFReadEncodedTileAndAllocBuffer() and _TIFFReadTileAndAllocBuffer() variants of TIFFReadEncodedTile() and TIFFReadTile() that allocates the decoded buffer only after a first successful TIFFFillTile(). This avoids excessive memory allocation on corrupted files. + libtiff/tif_pixarlog.c: avoid excessive memory allocation on decoding when RowsPerStrip tag is not defined (and thus td_rowsperstrip == UINT_MAX) Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2554 + libtiff/tif_lzw.c: fix 4.0.8 regression in the decoding of old-style LZW compressed files. + libtiff/tif_lzw.c: fix potential out-of-buffer read on 1-byte LZW strips. Crashing issue only on memory mapped files, where the strip offset is the last byte of the file, and the file size is a multiple of one page size on the CPU architecture (typically 4096) + libtiff/tif_dir.c: avoid potential null pointer dereference in _TIFFVGetField() on corrupted TIFFTAG_NUMBEROFINKS tag instance. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2713 + tools/tiff2pdf.c: prevent heap buffer overflow write in "Raw" mode on PlanarConfig=Contig input images. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2715 + libtiff/tif_read.c: TIFFFillStrip() / TIFFFillTile(). Complementary fix for http://bugzilla.maptools.org/show_bug.cgi?id=2708 in the isMapped() case, so as to avoid excessive memory allocation when we need a temporary buffer but the file is truncated. + libtiff/tif_read.c: in TIFFFetchStripThing(), only grow the arrays that hold StripOffsets/StripByteCounts, when they are smaller than the expected number of striles, up to 1 million striles, and error out beyond. Can be tweaked by setting the environment variable LIBTIFF_STRILE_ARRAY_MAX_RESIZE_COUNT. This partially goes against a change added on 2002-12-17 to accept those arrays of wrong sizes, but is needed to avoid denial of services. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2350 + libtiff/tif_read.c: add protection against excessive memory allocation attempts in TIFFReadDirEntryArray() on short files. Effective for mmap'ed case. And non-mmap'ed case, but restricted to 64bit builds. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2675 (CVE-2017-12944, bsc#1054594) + libtiff/tif_luv.c: LogLuvInitState(): avoid excessive memory allocation when RowsPerStrip tag is missing. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2683 + libtiff/tif_getimage.c: gtTileContig() and gtTileSeparate(): properly break from loops on error when stoponerr is set, instead of going on iterating on row based loop. + libtiff/tif_getimage.c: fix fromskew computation when to-be-skipped pixel number is not a multiple of the horizontal subsampling, and also in some other cases. Impact putcontig8bitYCbCr44tile, putcontig8bitYCbCr42tile, putcontig8bitYCbCr41tile, putcontig8bitYCbCr21tile and putcontig8bitYCbCr12tile Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2637 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2691 + libtiff/tif_luv.c: further reduce memory requirements for temporary buffer when RowsPerStrip >= image_length in LogLuvInitState() and LogL16InitState(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2700 + libtiff/tif_dirwrite.c: replace assertion related to not finding the SubIFD tag by runtime check (in TIFFWriteDirectorySec()) Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2727 + libtiff/tif_dirwrite.c: replace assertion to tag value not fitting on uint32 when selecting the value of SubIFD tag by runtime check (in TIFFWriteDirectoryTagSubifd()). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2728 + libtiff/tif_jpeg.c: accept reading the last strip of a JPEG compressed file if the codestream height is larger than the truncated height of the strip. Emit a warning in this situation since this is non compliant. + libtiff/tiffiop.h, tif_aux.c: redirect SeekOK() macro to a _TIFFSeekoK() function that checks if the offset is not bigger than INT64_MAX, so as to avoid a -1 error return code of TIFFSeekFile() to match a required seek to UINT64_MAX/-1. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2726 + libtiff/tif_dirread.c: add NULL check to avoid likely false positive null-pointer dereference warning by CLang Static Analyzer. + libtiff/libtiff.def: add TIFFReadRGBAStripExt and TIFFReadRGBATileExt Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2735 + libtiff/tif_jpeg.c: add compatibility with libjpeg-turbo 1.5.2 that honours max_memory_to_use > 0. Cf https://github.com/libjpeg-turbo/libjpeg-turbo/issues/162 + libtiff/tif_getimage.c: avoid floating point division by zero in initCIELabConversion() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3733 * Changes in the tools: + tools/tiff2pdf.c: prevent heap buffer overflow write in "Raw" mode on PlanarConfig=Contig input images. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2715 + tools/tiffset.c: fix setting a single value for the ExtraSamples tag (and other tags with variable number of values). So 'tiffset -s ExtraSamples 1 X'. This only worked when setting 2 or more values, but not just one. + tools/fax2tiff.c (_FAX_Client_Data): Pass FAX_Client_Data as the client data. This client data is not used at all at the moment, but it makes the most sense. Issue that the value of client_data.fd was passed where a pointer is expected. + tools/tiff2pdf.c (t2p_sample_realize_palette): Fix possible arithmetic overflow in bounds checking code and eliminate comparison between signed and unsigned type. + tools/tiff2bw.c (main): Free memory allocated in the tiff2bw program. This is in response to the report associated with CVE-2017-16232, bsc#1069213 but does not solve the extremely high memory usage with the associated POC file.- Upgrade to upstream release 4.0.8 * libtiff/tif_getimage.c, libtiff/tif_open.c + add parenthesis to fix cppcheck clarifyCalculation warnings * libtiff/tif_predict.c, libtiff/tif_print.c + fix printf unsigned vs signed formatting (cppcheck invalidPrintfArgType_uint warnings) * libtiff/tif_read.c, libtiff/tiffiop.h + fix uint32 overflow in TIFFReadEncodedStrip() that caused an integer division by zero. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2596 * libtiff/tif_pixarlog.c, libtiff/tif_luv.c + fix heap-based buffer overflow on generation of PixarLog / LUV compressed files, with ColorMap, TransferFunction attached and nasty plays with bitspersample. The fix for LUV has not been tested, but suffers from the same kind of issue of PixarLog. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2604 * libtiff/tif_strip.c + revert the change in TIFFNumberOfStrips() done for http://bugzilla.maptools.org/show_bug.cgi?id=2587 / CVE-2016-9273 since the above change is a better fix that makes it unnecessary. * libtiff/tif_dirread.c + modify ChopUpSingleUncompressedStrip() to instanciate compute ntrips as TIFFhowmany_32(td->td_imagelength, rowsperstrip), instead of a logic based on the total size of data. Which is faulty is the total size of data is not sufficient to fill the whole image, and thus results in reading outside of the StripByCounts/StripOffsets arrays when using TIFFReadScanline(). Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2608. * libtiff/tif_ojpeg.c + make OJPEGDecode() early exit in case of failure in OJPEGPreDecode(). This will avoid a divide by zero, and potential other issues. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2611 * libtiff/tif_write.c + fix misleading indentation as warned by GCC. * libtiff/tif_fax3.h + revert change done on 2016-01-09 that made Param member of TIFFFaxTabEnt structure a uint16 to reduce size of the binary. It happens that the Hylafax software uses the tables that follow this typedef (TIFFFaxMainTable, TIFFFaxWhiteTable, TIFFFaxBlackTable), although they are not in a public libtiff header. Raised by Lee Howard. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2636 * libtiff/tiffio.h, libtiff/tif_getimage.c + add TIFFReadRGBAStripExt() and TIFFReadRGBATileExt() variants of the functions without ext, with an extra argument to control the stop_on_error behaviour. * libtiff/tif_getimage.c + fix potential memory leaks in error code path of TIFFRGBAImageBegin(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2627 * libtiff/tif_jpeg.c + increase libjpeg max memory usable to 10 MB instead of libjpeg 1MB default. This helps when creating files with "big" tile, without using libjpeg temporary files. Related to https://trac.osgeo.org/gdal/ticket/6757 * libtiff/tif_jpeg.c + avoid integer division by zero in JPEGSetupEncode() when horizontal or vertical sampling is set to 0. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2653, bsc#1033127, CVE-2017-7595 * libtiff/tif_dirwrite.c + in TIFFWriteDirectoryTagCheckedRational, replace assertion by runtime check to error out if passed value is strictly negative. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2535, bsc#1038438, CVE-2016-10371 * libtiff/tif_dirread.c + avoid division by floating point 0 in TIFFReadDirEntryCheckedRational() and TIFFReadDirEntryCheckedSrational(), and return 0 in that case (instead of infinity as before presumably) Apparently some sanitizers do not like those divisions by zero. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2644, bsc#1033118, CVE-2017-7598 * libtiff/tif_dir.c, tif_dirread.c, tif_dirwrite.c + implement various clampings of double to other data types to avoid undefined behaviour if the output range isn't big enough to hold the input value. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2643 http://bugzilla.maptools.org/show_bug.cgi?id=2642 http://bugzilla.maptools.org/show_bug.cgi?id=2646 http://bugzilla.maptools.org/show_bug.cgi?id=2647, bsc#1033126, CVE-2017-7596, bsc#1033120, CVE-2017-7597, bsc#1033113, CVE-2017-7599, bsc#1033112, CVE-2017-7600, * libtiff/tif_jpeg.c + validate BitsPerSample in JPEGSetupEncode() to avoid undefined behaviour caused by invalid shift exponent. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2648, bsc#1033111, CVE-2017-7601 * libtiff/tif_read.c + avoid potential undefined behaviour on signed integer addition in TIFFReadRawStrip1() in isMapped() case. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2650, bsc#1033109, CVE-2017-7602 * libtiff/tif_getimage.c + add explicit uint32 cast in putagreytile to avoid UndefinedBehaviorSanitizer warning. Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2658, bsc#1033131, CVE-2017-7592 * libtiff/tif_read.c + TIFFReadBufferSetup(): use _TIFFcalloc() to zero initialize tif_rawdata. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2651, bsc#1033129, CVE-2017-7593 * libtiff/tiffio.h, tif_unix.c, tif_win32.c, tif_vms.c + add _TIFFcalloc() * libtiff/tif_luv.c, tif_lzw.c, tif_packbits.c + return 0 in Encode functions instead of -1 when TIFFFlushData1() fails. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2130 * libtiff/tif_ojpeg.c + fix leak in OJPEGReadHeaderInfoSecTablesQTable, OJPEGReadHeaderInfoSecTablesDcTable and OJPEGReadHeaderInfoSecTablesAcTable when read fails. Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2659, bsc#1033128, CVE-2017-7594 * libtiff/tif_jpeg.c + only run JPEGFixupTagsSubsampling() if the YCbCrSubsampling tag is not explicitly present. This helps a bit to reduce the I/O amount when the tag is present (especially on cloud hosted files). * libtiff/tif_lzw.c + in LZWPostEncode(), increase, if necessary, the code bit-width after flushing the remaining code and before emitting the EOI code. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=1982 * libtiff/tif_pixarlog.c + fix memory leak in error code path of PixarLogSetupDecode(). Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2665 * libtiff/tif_fax3.c, tif_predict.c, tif_getimage.c + fix GCC 7 -Wimplicit-fallthrough warnings. * libtiff/tif_dirread.c + fix memory leak in non DEFER_STRILE_LOAD mode (ie default) when there is both a StripOffsets and TileOffsets tag, or a StripByteCounts and TileByteCounts Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2689, bsc#1042805, CVE-2017-9403) * libtiff/tif_ojpeg.c + fix potential memory leak in OJPEGReadHeaderInfoSecTablesQTable, OJPEGReadHeaderInfoSecTablesDcTable and OJPEGReadHeaderInfoSecTablesAcTable Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2670 * libtiff/tif_fax3.c + avoid crash in Fax3Close() on empty file. Patch by Alan Coopersmith + complement by myself. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2673 * libtiff/tif_read.c + TIFFFillStrip(): add limitation to the number of bytes read in case td_stripbytecount[strip] is bigger than reasonable, so as to avoid excessive memory allocation. * libtiff/tif_zip.c, tif_pixarlog.c, tif_predict.c + fix memory leak when the underlying codec (ZIP, PixarLog) succeeds its setupdecode() method, but PredictorSetup fails. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + TIFFFillStrip() and TIFFFillTile(): avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds and non-mapped cases. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + TIFFFillStripPartial() / TIFFSeek(), avoid potential integer overflows with read_ahead in CHUNKY_STRIP_READ_SUPPORT mode. Should especially occur on 32 bit platforms. * libtiff/tif_read.c + TIFFFillStripPartial() + avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + update tif_rawcc in CHUNKY_STRIP_READ_SUPPORT mode with tif_rawdataloaded when calling TIFFStartStrip() or TIFFFillStripPartial(). This avoids reading beyond tif_rawdata when bytecount > tif_rawdatasize. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1545. Credit to OSS-Fuzz * libtiff/tif_color.c + avoid potential int32 overflow in TIFFYCbCrToRGBInit() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1533 Credit to OSS-Fuzz * libtiff/tif_pixarlog.c, tif_luv.c + avoid potential int32 overflows in multiply_ms() and add_ms(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1558 Credit to OSS-Fuzz * libtiff/tif_packbits.c + fix out-of-buffer read in PackBitsDecode() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1563 Credit to OSS-Fuzz * libtiff/tif_luv.c + LogL16InitState(): avoid excessive memory allocation when RowsPerStrip tag is missing. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_lzw.c + update dec_bitsleft at beginning of LZWDecode(), and update tif_rawcc at end of LZWDecode(). This is needed to properly work with the latest chnges in tif_read.c in CHUNKY_STRIP_READ_SUPPORT mode. * libtiff/tif_pixarlog.c + PixarLogDecode(): resync tif_rawcp with next_in and tif_rawcc with avail_in at beginning and end of function, similarly to what is done in LZWDecode(). Likely needed so that it works properly with latest chnges in tif_read.c in CHUNKY_STRIP_READ_SUPPORT mode. But untested... * libtiff/tif_getimage.c + initYCbCrConversion(): add basic validation of luma and refBlackWhite coefficients (just check they are not NaN for now), to avoid potential float to int overflows. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1663 Credit to OSS Fuzz * libtiff/tif_read.c + _TIFFVSetField(): fix outside range cast of double to float. Credit to Google Autofuzz project * libtiff/tif_getimage.c + initYCbCrConversion(): check luma[1] is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzz * libtiff/tif_read.c + _TIFFVSetField(): fix outside range cast of double to float. Credit to Google Autofuzz project * libtiff/tif_getimage.c + initYCbCrConversion(): check luma[1] is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzz * libtiff/tif_getimage.c + initYCbCrConversion(): stricter validation for refBlackWhite coefficients values. To avoid invalid float->int32 conversion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1718 Credit to OSS Fuzz * tools/fax2tiff.c (main) + Applied patch by Joerg Ahrens to fix passing client data for Win32 builds using tif_win32.c (USE_WIN32_FILEIO defined) for file I/O. Patch was provided via email on November 20, 2016. * tools/tiffcp.c + avoid uint32 underflow in cpDecodedStrips that can cause various issues, such as buffer overflows in the library. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2598 * tools/tiffcrop.c + fix readContigStripsIntoBuffer() in -i (ignore) mode so that the output buffer is correctly incremented to avoid write outside bounds. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2620 * tools/tiffcrop.c + add 3 extra bytes at end of strip buffer in readSeparateStripsIntoBuffer() to avoid read outside of heap allocated buffer. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2621 * tools/tiffcrop.c + fix integer division by zero when BitsPerSample is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2619 * tools/tiffinfo.c + fix null pointer dereference in -r mode when the image has no StripByteCount tag. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2594 * tools/tiffcp.c + avoid potential division by zero is BitsPerSamples tag is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2597 * tools/tif_dir.c + when TIFFGetField(, TIFFTAG_NUMBEROFINKS, ) is called, limit the return number of inks to SamplesPerPixel, so that code that parses ink names doesn't go past the end of the buffer. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2599 * tools/tiffcp.c + avoid potential division by zero is BitsPerSamples tag is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2607 * tools/tiffcp.c + fix uint32 underflow/overflow that can cause heap-based buffer overflow. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2610 * tools/tiffcp.c + replace assert( (bps % 8) == 0 ) by a non assert check. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2605 * tools/tiff2ps.c + fix 2 heap-based buffer overflows (in PSDataBW and PSDataColorContig). Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2633 and http://bugzilla.maptools.org/show_bug.cgi?id=2634. * tools/tiff2pdf.c + prevent heap-based buffer overflow in -j mode on a paletted image. Note: this fix errors out before the overflow happens. There could probably be a better fix. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2635 * tools/tiff2pdf.c + fix wrong usage of memcpy() that can trigger unspecified behaviour. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2638 * tools/tiff2pdf.c + avoid potential invalid memory read in t2p_writeproc. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2639 * tools/tiff2pdf.c + avoid potential heap-based overflow in t2p_readwrite_pdf_image_tile(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2640 * tools/tiffcrop.c + remove extraneous TIFFClose() in error code path, that caused double free. Related to http://bugzilla.maptools.org/show_bug.cgi?id=2535 * tools/tiffcp.c + error out cleanly in cpContig2SeparateByRow and cpSeparate2ContigByRow if BitsPerSample != 8 to avoid heap based overflow. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2656 and http://bugzilla.maptools.org/show_bug.cgi?id=2657 * tools/raw2tiff.c + avoid integer division by zero. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2631 * tools/tiff2ps.c + call TIFFClose() in error code paths. * tools/fax2tiff.c + emit appropriate message if the input file is empty. Patch by Alan Coopersmith. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2672 * tools/tiff2bw.c + close TIFF handle in error code path. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2677 * Other issues fixed: + bsc#1042804, CVE-2017-9404 * CVE-2016-10092, CVE-2016-10093, CVE-2016-10094 [bsc#1017693] - Removed patches: * tiff-4.0.7-CVE-2015-7554.patch * tiff-4.0.7-CVE-2017-5225.patch * tiff-4.0.7-TIFFTAG_FAXRECVPARAMS.patch * tiff-CVE-2016-10266.patch * tiff-CVE-2016-10267.patch * tiff-CVE-2016-10268.patch * tiff-CVE-2016-10269.patch * tiff-CVE-2016-10270.patch * tiff-CVE-2016-10271.patch * tiff-CVE-2016-10272.patch + Fixed upstream- Added patches: * tiff-CVE-2016-10266.patch + Upstream fix for CVE-2016-10266, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031263) * tiff-CVE-2016-10267.patch + Upstream fix for CVE-2016-10267, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031262) * tiff-CVE-2016-10268.patch + Upstream fix for CVE-2016-10268, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031255) * tiff-CVE-2016-10269.patch + Upstream fix for CVE-2016-10269, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031254) * tiff-CVE-2016-10270.patch + Upstream fix for CVE-2016-10270, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031250) * tiff-CVE-2016-10271.patch + Upstream fix for CVE-2016-10271, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read and buffer overflow) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031249) * tiff-CVE-2016-10272.patch + Upstream fix for CVE-2016-10272, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer overflow) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031247)- Added patch: * tiff-4.0.7-TIFFTAG_FAXRECVPARAMS.patch - Fix a regression introduced in 4.0.7 (bsc#1022103) - http://bugzilla.maptools.org/show_bug.cgi?id=2636- Added patch: * tiff-4.0.7-CVE-2017-5225.patch - Upstream fix for CVE-2017-5225, bsc#1019611: heap buffer overflow in tools/tiffcp via a crafted BitsPerSample value- Drop --with-pic, this is only for static libs (which are not built) - Update descriptions- Update homepage- Upgrade to upstream release 4.0.7 * libtiff/tif_aux.c + Fix crash in TIFFVGetFieldDefaulted() when requesting Predictor tag and that the zip/lzw codec is not configured. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2591 * libtiff/tif_compress.c + Make TIFFNoDecode() return 0 to indicate an error and make upper level read routines treat it accordingly. (linked to the test case of http://bugzilla.maptools.org/show_bug.cgi?id=2517) * libtiff/tif_dir.c + Discard values of SMinSampleValue and SMaxSampleValue when they have been read and the value of SamplesPerPixel is changed afterwards (like when reading a OJPEG compressed image with a missing SamplesPerPixel tag, and whose photometric is RGB or YCbCr, forcing SamplesPerPixel being 3). Otherwise when rewriting the directory (for example with tiffset, we will expect 3 values whereas the array had been allocated with just one), thus causing a out of bound read access. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2500 (CVE-2014-8127, bsc#914890, duplicate: CVE-2016-3658, bsc#974840) * libtiff/tif_dirread.c + In TIFFFetchNormalTag(), do not dereference NULL pointer when values of tags with TIFF_SETGET_C16_ASCII/TIFF_SETGET_C32_ASCII access are 0-byte arrays. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2593 (regression introduced by previous fix done on 2016-11-11 for CVE-2016-9297, bsc#1010161). Assigned as CVE-2016-9448, bsc#1011103 + In TIFFFetchNormalTag(), make sure that values of tags with TIFF_SETGET_C16_ASCII/TIFF_SETGET_C32_ASCII access are null terminated, to avoid potential read outside buffer in _TIFFPrintField(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2590 (CVE-2016-9297, bsc#1010161) + Initialize doubledata at line 3693 to NULL to please MSVC 2013 + Prevent reading ColorMap or TransferFunction if BitsPerPixel > 24, so as to avoid huge memory allocation and file read attempts + Reject images with OJPEG compression that have no TileOffsets/StripOffsets tag, when OJPEG compression is disabled. Prevent null pointer dereference in TIFFReadRawStrip1() and other functions that expect td_stripbytecount to be non NULL. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2585 + When compiled with DEFER_STRILE_LOAD, fix regression, when reading a one-strip file without a StripByteCounts tag. + Workaround false positive warning of Clang Static Analyzer about null pointer dereference in TIFFCheckDirOffset(). * libtiff/tif_dirwrite.c + Avoid null pointer dereference on td_stripoffset when writing directory, if FIELD_STRIPOFFSETS was artificially set for a hack case in OJPEG case. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2500 (CVE-2014-8127, bsc#914890, duplicate: CVE-2016-3658, bsc#974840) + Fix truncation to 32 bit of file offsets in TIFFLinkDirectory() and TIFFWriteDirectorySec() when aligning directory offsets on an even offset (affects BigTIFF). * libtiff/tif_dumpmode.c + DumpModeEncode() should return 0 in case of failure so that the above mentionned functions detect the error. * libtiff/tif_fax3.c + remove dead assignment in Fax3PutEOLgdal(). * libtiff/tif_fax3.h + make Param member of TIFFFaxTabEnt structure a uint16 to reduce size of the binary. * libtiff/tif_getimage.c + Fix out-of-bound reads in TIFFRGBAImage interface in case of unsupported values of SamplesPerPixel/ExtraSamples for LogLUV/CIELab. Add explicit call to TIFFRGBAImageOK() in TIFFRGBAImageBegin(). Fix CVE-2015-8665 and CVE-2015-8683. + Fix some benign warnings which appear in 64-bit compilation under Microsoft Visual Studio of the form "Arithmetic overflow: 32-bit value is shifted, then cast to 64-bit value. Results might not be an expected value." + TIFFRGBAImageOK: Reject attempts to read floating point images. * libtiff/tif_luv.c + Fix potential out-of-bound writes in decode functions in non debug builds by replacing assert()s by regular if checks (http://bugzilla.maptools.org/show_bug.cgi?id=2522). Fix potential out-of-bound reads in case of short input data. + Validate that for COMPRESSION_SGILOG and PHOTOMETRIC_LOGL, there is only one sample per pixel. Avoid potential invalid memory write on corrupted/unexpected images when using the TIFFRGBAImageBegin() interface * libtiff/tif_next.c + Fix potential out-of-bound write in NeXTDecode() (http://bugzilla.maptools.org/show_bug.cgi?id=2508) * libtiff/tif_pixarlog.c + Avoid zlib error messages to pass a NULL string to %s formatter, which is undefined behaviour in sprintf(). + Fix out-of-bounds write vulnerabilities in heap allocated buffers. Reported as MSVR 35094. + Fix potential buffer write overrun in PixarLogDecode() on corrupted/unexpected images (CVE-2016-5875, bsc#987351) + Fix write buffer overflow in PixarLogEncode if more input samples are provided than expected by PixarLogSetupEncode. Idea based on libtiff-CVE-2016-3990.patch from libtiff-4.0.3-25.el7_2.src.rpm, but with different and simpler check. (http://bugzilla.maptools.org/show_bug.cgi?id=2544, bsc#975069) * libtiff/tif_predict.c + PredictorSetup: Enforce bits-per-sample requirements of floating point predictor (3). Fixes CVE-2016-3622 "Divide By Zero in the tiff2rgba tool." (bsc#974449) * libtiff/tif_predict.h, libtiff/tif_predict.c + Replace assertions by runtime checks to avoid assertions in debug mode, or buffer overflows in release mode. Can happen when dealing with unusual tile size like YCbCr with subsampling. Reported as MSVR 35105. * libtiff/tif_read.c + Fix out-of-bounds read on memory-mapped files in TIFFReadRawStrip1() and TIFFReadRawTile1() when stripoffset is beyond tmsize_t max value (bsc#990460, CVE-2016-6223) + Make TIFFReadEncodedStrip() and TIFFReadEncodedTile() directly use user provided buffer when no compression (and other conditions) to save a memcpy(). * libtiff/tif_strip.c + Make TIFFNumberOfStrips() return the td->td_nstrips value when it is non-zero, instead of recomputing it. This is needed in TIFF_STRIPCHOP mode where td_nstrips is modified. Fixes a read outsize of array in tiffsplit (or other utilities using TIFFNumberOfStrips()). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2587 (CVE-2016-9273, bsc#1010163) * libtiff/tif_write.c + Fix issue in error code path of TIFFFlushData1() that didn't reset the tif_rawcc and tif_rawcp members. I'm not completely sure if that could happen in practice outside of the odd behaviour of t2p_seekproc() of tiff2pdf). The report points that a better fix could be to check the return value of TIFFFlushData1() in places where it isn't done currently, but it seems this patch is enough. Reported as MSVR 35095. + Make TIFFWriteEncodedStrip() and TIFFWriteEncodedTile() directly use user provided buffer when no compression to save a memcpy(). + TIFFWriteEncodedStrip() and TIFFWriteEncodedTile() should return -1 in case of failure of tif_encodestrip() as documented * tools/fax2tiff.D c + Fix segfault when specifying -r without argument. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2572 * tools/Makefile.am + The libtiff tools bmp2tiff, gif2tiff, ras2tiff, sgi2tiff, sgisv, and ycbcr are completely removed from the distribution. The libtiff tools rgb2ycbcr and thumbnail are only built in the build tree for testing. Old files are put in new 'archive' subdirectory of the source repository, but not in distribution archives. These changes are made in order to lessen the maintenance burden. * tools/rgb2ycbcr.c + Validate values of -v and -h parameters to avoid potential divide by zero. Fixes CVE-2016-3623, bsc#974618 (http://bugzilla.maptools.org/show_bug.cgi?id=2569) * tools/tiff2bw.c + Fix weight computation that could result of color value overflow (no security implication). Fix http://bugzilla.maptools.org/show_bug.cgi?id=2550. * tools/tiff2pdf.c + Avoid undefined behaviour related to overlapping of source and destination buffer in memcpy() call in t2p_sample_rgbaa_to_rgb() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2577 + Fix out-of-bounds write vulnerabilities in heap allocate buffer in t2p_process_jpeg_strip(). Reported as MSVR 35098. + Fix potential integer overflows on 32 bit builds in t2p_read_tiff_size() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2576 + Fix read -largely- outsize of buffer in t2p_readwrite_pdf_image_tile(), causing crash, when reading a JPEG compressed image with TIFFTAG_JPEGTABLES length being one. Reported as MSVR 35101. CVE-2016-9453, bsc#1011107 + Fix write buffer overflow of 2 bytes on JPEG compressed images. Reported as TALOS-CAN-0187, CVE-2016-5652, bsc#1007280. Also prevents writing 2 extra uninitialized bytes to the file stream. * tools/tiff2rgba.c + Fix integer overflow in size of allocated buffer, when -b mode is enabled, that could result in out-of-bounds write. Based initially on patch tiff-CVE-2016-3945.patch from libtiff-4.0.3-25.el7_2.src.rpm, with correction for invalid tests that rejected valid files. (http://bugzilla.maptools.org/show_bug.cgi?id=2545, bsc#974614) * tools/tiffcp.c + Fix out-of-bounds write on tiled images with odd tile width vs image width. Reported as MSVR 35103. (bsc#1011841, CVE-2016-9538) + Fix read of undefined variable in case of missing required tags. Found on test case of MSVR 35100. * tools/tiffcrop.c + Avoid access outside of stack allocated array on a tiled separate TIFF with more than 8 samples per pixel. (CVE-2016-5321, CVE-2016-5323, http://bugzilla.maptools.org/show_bug.cgi?id=2558, http://bugzilla.maptools.org/show_bug.cgi?id=2559, bsc#984813, bsc#984815) + Fix memory leak in (recent) error code path. Fixes Coverity 1394415. + Fix multiple uint32 overflows in writeBufferToSeparateStrips(), writeBufferToContigTiles() and writeBufferToSeparateTiles() that could cause heap buffer overflows. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2592 + Fix out-of-bound read of up to 3 bytes in readContigTilesIntoBuffer(). Reported as MSVR 35092. + Fix out-of-bounds write in loadImage(). From patch libtiff-CVE-2016-3991.patch from libtiff-4.0.3-25.el7_2.src.rpm (http://bugzilla.maptools.org/show_bug.cgi?id=2543, bsc#975070) + Fix read of undefined buffer in readContigStripsIntoBuffer() due to uint16 overflow. Reported as MSVR 35100. (bsc#1011841, CVE-2016-9538) + Fix various out-of-bounds write vulnerabilities in heap or stack allocated buffers. Reported as MSVR 35093, MSVR 35096 and MSVR 35097. + readContigTilesIntoBuffer: Fix signed/unsigned comparison warning. * tools/tiffdump.c + Fix a few misaligned 64-bit reads warned by -fsanitize + ReadDirectory: Remove uint32 cast to_TIFFmalloc() argument which resulted in Coverity report. Added more mutiplication overflow checks * tools/tiffinfo.c + Fix out-of-bound read on some tiled images. (http://bugzilla.maptools.org/show_bug.cgi?id=2517) + TIFFReadContigTileData: Fix signed/unsigned comparison warning. + TIFFReadSeparateTileData: Fix signed/unsigned comparison warning. - Removed patches: * tiff-4.0.4-uninitialized_mem_NeXTDecode.patch * tiff-4.0.6-CVE-2015-8782.patch * tiff-4.0.6-CVE-2016-3186.patch * tiff-4.0.6-CVE-2016-3623.patch * tiff-4.0.6-CVE-2016-3945.patch * tiff-4.0.6-CVE-2016-3990.patch * tiff-4.0.6-CVE-2016-3991.patch * tiff-4.0.6-libtiff-tif_getimage.c-TIFFRGBAImageOK-Reject-attemp.patch * tiff-4.0.6-libtiff-tif_luv.c-validate-that-for-COMPRESSION_SGIL.patch * tiff-4.0.6-libtiff-tif_pixarlog.c-fix-potential-buffer-write-ov.patch * tiff-4.0.6-libtiff-tif_read.c-make-TIFFReadEncodedStrip-and.patch * tiff-4.0.6-tools-tiffcrop.c-fix-various-out-of-bounds-write-vul.patch - Fixed in the upsteam release - Changed patch: * tiff-4.0.6-CVE-2015-7554.patch -> tiff-4.0.7-CVE-2015-7554.patch - Rediffed to the changed context- Added patches: * tiff-4.0.6-tools-tiffcrop.c-fix-various-out-of-bounds-write-vul.patch - Upstream fixes for MSVR 35093, MSVR 35094, MSVR 35095, MSVR 35096, MSVR 35097, MSVR 35098. * tiff-4.0.6-libtiff-tif_getimage.c-TIFFRGBAImageOK-Reject-attemp.patch - Enforce bits-per-sample requirements of floating point predictor. Fixes CVE-2016-3622 [bsc#974449]- Added patches: * tiff-4.0.6-CVE-2016-3623.patch * tiff-4.0.6-CVE-2016-3945.patch * tiff-4.0.6-CVE-2016-3990.patch * tiff-4.0.6-CVE-2016-3991.patch - Upstream commits to fix CVE-2016-3623 [bsc#974618], CVE-2016-3945 [bsc#974614], CVE-2016-3990 [bsc#975069], CVE-2016-3991 [bsc#975070]- Added patches: * tiff-4.0.6-libtiff-tif_luv.c-validate-that-for-COMPRESSION_SGIL.patch * tiff-4.0.6-libtiff-tif_pixarlog.c-fix-potential-buffer-write-ov.patch * tiff-4.0.6-libtiff-tif_read.c-make-TIFFReadEncodedStrip-and.patch - Upstream commits to fix CVE-2016-5314 [bsc#984831], CVE-2016-5316 [bsc#984837], CVE-2016-5317 [bsc#984842], CVE-2016-5320 [bsc#984808] and CVE-2016-5875 [bsc#987351]- Added patch: * tiff-4.0.6-CVE-2016-3186.patch - fix CVE-2016-3186: buffer overflow in gif2tiff [bsc#973340]- Added patch: * tiff-4.0.6-CVE-2015-8782.patch - fix CVE-2015-8781, CVE-2015-8782, CVE-2015-8783: Out-of-bounds writes for invalid images (upstream bug #2522) [bsc#964225]- Added patch: * tiff-4.0.6-CVE-2015-7554.patch - fix CVE-2015-7554: Out-of-bounds Write in the thumbnail and tiffcmp tools (upsteam bug #2499) [bsc#960341]- Added patch: * tiff-4.0.4-uninitialized_mem_NeXTDecode.patch - fix uninitialized memory in NeXTDecode (upstream bug #2508) [bsc#942690]- Update to version 4.0.6 * Supports CMake 2.8.9 and later. * Add missing file which wasn't being distributed, causing unit tests to fail. * Make shared/static library building configurable. * CMake reads all version information directly from configure.ac to avoid duplication of values. * CMake builds are now included in 'distcheck' target. * Autotools 'make distcheck' now tests the CMake-based build if CMake is available. * Fixes to avoid undefined behaviour of signed types (C standard compliance). * Fixes to avoid possible isses when casting to unsigned char. * Fixes to avoid undefined behaviour with shifts. * Fix generation of output with 16 bit or 32 bit integer, when byte swapping is needed, in horizontal predictor (#2521). * Fix decoding when there is a single pixel to decode (unlikely case...) and byte swapping is involved. * Add add explicit masking with 0xff before casting to uchar in floating-point horizontal differencing and accumulation routines. * Eliminate requirement for and use of 64-bit constant values. * tiffgt : Silence glut API deprecation warnings on MacOS X. * fax2ps : Detect failure to write to temporary file. - Changes from version 4.0.5 * Support for configure/build using CMake. * Support for large (> 2GB) files under Microsoft Windows. * Configuration and building using CMake is now supported under Microsoft Windows and on Unix-type systems. * Test for and use fseeko() if it is available. This allows supporting large files on Unix-type systems with a 32-bit 'long' type and a 64-bit 'off_t' type. * tiffiop.h: Macros added to use 64-bit equivalents for all standard I/O and POSIX APIs used by libtiff and its tools which are limited to 2GB in Windows builds. Note that these 64-bit equivalents were introduced by the CRT provided with Visual Studio 2005 and if the necessary CRT is not installed on the target computer, the program will not run. The wrapper macros will not be activated unless the definition _MSC_VER is at least 1400 or __MSVCRT_VERSION__ is at least 0x800. * tif_unix.c: Updated to support large files under Microsoft Windows. This makes tif_unix.c a completely viable candidate for use under Windows (in spite of its name) if the CRT is modern enough. Please note that tif_win32.c already supported large files, but only 'tiffinfo' and 'tiffdump' made any provision to support large files under Windows. * _tiffReadProc() and _tiffWriteProc() are modified to chunk I/O to a maximum size of 2GB for extremely large I/O requests. This surmounts limitations in the Microsoft Windows read() and write() APIs (which are limited to the range of a 32-bit 'int'), and may avoid poor behavior with extremely large I/O requests on other systems. * Updated to use I/O wrapper macros from tiffiop.h in order to support large files under Microsoft Windows.- use spec-cleaner- update to 4.0.4 D tiff-4.0.3-double-free.patch D tiff-handle-TIFFTAG_CONSECUTIVEBADFAXLINES.patch D tiff-4.0.3-CVE-2013-1961.patch D erouault.2862.patch D bfriesen.2805.patch D tiff-4.0.3-CVE-2013-4232.patch D tiff-4.0.3-CVE-2013-4244.patch D erouault.2861.patch D erouault.2857.patch D erouault.2856.patch D erouault.2859.patch D tiff-4.0.3-CVE-2012-4564.patch D tiff-4.0.3-tiff2pdf-colors.patch D erouault.2876.patch D erouault.2860.patch D tiff-dither-malloc-check.patch D tiff-4.0.3-CVE-2013-1960.patch D erouault.2858.patch D tiff-handle-TIFFTAG_PREDICTOR.patch D tiff-4.0.3-CVE-2013-4231.patch D tiff-4.0.3-CVE-2013-4243.patch D erouault.2863.patch D tiff-4.0.3-test-jpeg-turbo.patch- security update: CVE-2014-9655, CVE-2014-8127, CVE-2014-8128, CVE-2014-8129, CVE-2014-8130, CVE-2015-1547 bnc#914890, bnc#916925, bnc#916927 + erouault.2856.patch + erouault.2857.patch + erouault.2858.patch + erouault.2859.patch + erouault.2860.patch + erouault.2861.patch + erouault.2862.patch + erouault.2863.patch + erouault.2876.patch + bfriesen.2805.patch + tiff-handle-TIFFTAG_CONSECUTIVEBADFAXLINES.patch + tiff-handle-TIFFTAG_PREDICTOR.patch + tiff-dither-malloc-check.patch- build with PIEs390zp32 1669725915  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~4.0.9-150000.45.22.14.0.9-150000.45.22.1fax2psfax2tiffpal2rgbppm2tiffraw2tifftiff2bwtiff2pdftiff2pstiff2rgbatiffcmptiffcptiffcroptiffdithertiffdumptiffinfotiffmediantiffsettiffsplittiffCOPYRIGHTChangeLogREADMERELEASE-DATETODOVERSIONhtmlCMakeLists.txtTIFFTechNote2.htmladdingtags.htmlbugs.htmlbuild.htmlcontrib.htmldocument.htmlimagesimages.htmlCMakeLists.txtback.gifbali.jpgcat.gifcover.jpgcramps.gifdave.gifinfo.gifjello.jpgjim.gifnote.gifoxford.gifquad.jpgring.gifsmallliz.jpgstrike.gifwarning.gifindex.htmlinternals.htmlintro.htmllibtiff.htmlmanCMakeLists.txtHtmlDoc.cmakeTIFFClose.3tiff.htmlTIFFDataWidth.3tiff.htmlTIFFError.3tiff.htmlTIFFFieldDataType.3tiff.htmlTIFFFieldName.3tiff.htmlTIFFFieldPassCount.3tiff.htmlTIFFFieldReadCount.3tiff.htmlTIFFFieldTag.3tiff.htmlTIFFFieldWriteCount.3tiff.htmlTIFFFlush.3tiff.htmlTIFFGetField.3tiff.htmlTIFFOpen.3tiff.htmlTIFFPrintDirectory.3tiff.htmlTIFFRGBAImage.3tiff.htmlTIFFReadDirectory.3tiff.htmlTIFFReadEncodedStrip.3tiff.htmlTIFFReadEncodedTile.3tiff.htmlTIFFReadRGBAImage.3tiff.htmlTIFFReadRGBAStrip.3tiff.htmlTIFFReadRGBATile.3tiff.htmlTIFFReadRawStrip.3tiff.htmlTIFFReadRawTile.3tiff.htmlTIFFReadScanline.3tiff.htmlTIFFReadTile.3tiff.htmlTIFFSetDirectory.3tiff.htmlTIFFSetField.3tiff.htmlTIFFWarning.3tiff.htmlTIFFWriteDirectory.3tiff.htmlTIFFWriteEncodedStrip.3tiff.htmlTIFFWriteEncodedTile.3tiff.htmlTIFFWriteRawStrip.3tiff.htmlTIFFWriteRawTile.3tiff.htmlTIFFWriteScanline.3tiff.htmlTIFFWriteTile.3tiff.htmlTIFFbuffer.3tiff.htmlTIFFcodec.3tiff.htmlTIFFcolor.3tiff.htmlTIFFmemory.3tiff.htmlTIFFquery.3tiff.htmlTIFFsize.3tiff.htmlTIFFstrip.3tiff.htmlTIFFswab.3tiff.htmlTIFFtile.3tiff.htmlfax2ps.1.htmlfax2tiff.1.htmlindex.htmllibtiff.3tiff.htmlpal2rgb.1.htmlppm2tiff.1.htmlraw2tiff.1.htmltiff2bw.1.htmltiff2pdf.1.htmltiff2ps.1.htmltiff2rgba.1.htmltiffcmp.1.htmltiffcp.1.htmltiffcrop.1.htmltiffdither.1.htmltiffdump.1.htmltiffgt.1.htmltiffinfo.1.htmltiffmedian.1.htmltiffset.1.htmltiffsplit.1.htmlmisc.htmlsupport.htmltools.htmlv3.4beta007.htmlv3.4beta016.htmlv3.4beta018.htmlv3.4beta024.htmlv3.4beta028.htmlv3.4beta029.htmlv3.4beta031.htmlv3.4beta032.htmlv3.4beta033.htmlv3.4beta034.htmlv3.4beta035.htmlv3.4beta036.htmlv3.5.1.htmlv3.5.2.htmlv3.5.3.htmlv3.5.4.htmlv3.5.5.htmlv3.5.6-beta.htmlv3.5.7.htmlv3.6.0.htmlv3.6.1.htmlv3.7.0.htmlv3.7.0alpha.htmlv3.7.0beta.htmlv3.7.0beta2.htmlv3.7.1.htmlv3.7.2.htmlv3.7.3.htmlv3.7.4.htmlv3.8.0.htmlv3.8.1.htmlv3.8.2.htmlv3.9.0beta.htmlv3.9.1.htmlv3.9.2.htmlv4.0.0.htmlv4.0.1.htmlv4.0.2.htmlv4.0.3.htmlv4.0.4.htmlv4.0.4beta.htmlv4.0.5.htmlv4.0.6.htmlv4.0.7.htmlv4.0.8.htmlv4.0.9.htmlfax2ps.1.gzfax2tiff.1.gzpal2rgb.1.gzppm2tiff.1.gzraw2tiff.1.gztiff2bw.1.gztiff2pdf.1.gztiff2ps.1.gztiff2rgba.1.gztiffcmp.1.gztiffcp.1.gztiffcrop.1.gztiffdither.1.gztiffdump.1.gztiffgt.1.gztiffinfo.1.gztiffmedian.1.gztiffset.1.gztiffsplit.1.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/tiff//usr/share/doc/packages/tiff/html//usr/share/doc/packages/tiff/html/images//usr/share/doc/packages/tiff/html/man//usr/share/man/man1/-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.suse.de/SUSE:Maintenance:26987/SUSE_SLE-15_Update/62d0bccd7ad72934a20a3edfaca139a0-tiff.SUSE_SLE-15_Updatedrpmxz5s390x-suse-linux  !"#$%&&&'''''''''''''''''''ELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=d8209d82436d079094e6361aef75c4b507c0d661, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=f5bb2e7c51b541198670f659af7819f142692411, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=7b68b460e4e44e744e0d2d102a4c5cc1d5782911, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=0deb6ff472e098836f9e5e355ec5123d4d2f82af, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=dcf3264dd78b42323ccb681bec6a4dbb27c37bb6, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=c6caa60d6eb163751173b6b367fbf8eb694d6f65, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=ad4b1220dfd8ba7c5a5ac0b1fce78383fae6d85a, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=4fa4de15b4af2ea95dca14670656a4f09f6b50bc, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=96a8d29f9e15c545215ed3602bd6476331180dc0, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=ca66c853ff6b8f3652459a14df241db1703b1a3f, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=43a2a2bd18a6a79625b8bacb7c925ce941a884bd, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=d73e131885c8ab13d699eb8186e98817de4495e0, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=adb4a669c9f5b248debc6e6b84db8ccd0bf7bc03, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b75941ccf8e4769a2fc8bc57d240c98e90fbb1fb, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b2abc810bdf3f87c0802343ee3f8543f5f280cc0, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=7b0c987943bb3a1c0ea3c0b41398d537faffaffa, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=dd18b65e9732dab3fb023ac29da3be4c42c84ff7, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=536cd6cbc50d30d407bc623a494e54c4a9fbdddb, for GNU/Linux 3.2.0, strippeddirectoryASCII textUTF-8 Unicode textHTML document, ASCII textGIF image data, version 87a, 20 x 20JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 158x107, frames 3GIF image data, version 89a, 113 x 146JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 147x147, frames 3GIF image data, version 89a, 159 x 203GIF image data, version 89a, 107 x 148GIF image data, version 89a, 32 x 32JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "CREATOR: XV Version 3.09 Rev: 8/13/94 Quality = 75, Smoothing = 0", baseline, precision 8, 256x192, frames 3GIF image data, version 89a, 139 x 170GIF image data, version 87a, 32 x 32GIF image data, version 89a, 296 x 120JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 192x144, frames 3GIF image data, version 89a, 124 x 124JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 128x128, frames 3GIF image data, version 89a, 128 x 100GIF image data, version 89a, 40 x 40HTML document, UTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) $*.27>BGKOSRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRUB¤%&Fqutf-88d9e682bfd9d72bf6c5d6a308fe346a4d32c5f93a94c2cfce19d8c94154d2f83? 7zXZ !t/=]"k%Hk+%Yv[#GU\N ^XxrOQ ͷ{61/!#57BG4툱i|I2N?= E[Ոh_sNf ?#g]Xc-,Ғ Y1я )X{z@>*? }vߚglsv\N5rpQ*rˢl4 MMZ K[:.  ٬/{g6d`*?64Ї_%ʠҟCF2p`umSgН63(7; {团>R!w ?7;J7ԻlcϮ™`[xءEol[:7e }`""n.2_S+"Hf{4 "AhnYcM# 7ׂX=JU\+eJ,l5Y`mCۈ[_U| v[,T z O.;-jPe MR /f#?Ztx6ݼ BH8::e{4M&C717\&{L=-t`:V..T}"5~'7j;P뀋AGK`|Ő?2hz Z[:& %׬Bk0O@.p'hKyNwR͌-+" y\ , $ƒi#=oe6Pk0͏hnQo@D@mBTCM9B6u =U3'3f )QNjQno-®P:d$}s6N5}MxBf#ʉMa{T @A!jbt\c@A&..Ku%aaQroq폰@?< 'R [Rese"7HC( R2"hc^`w.ΑVtg.LT7Dz.r8s}D mo7{q0afx35 29R( 2L?M-^'Ulr q׌,E,j߫7e mRF;; ;."[裯V?}!vuo|]=|B,veOIPW~ ے| 5cP9jh1{PG+GLBm/6(>t_HZc4؈ !Wy`4O;Qv:Iny#iq`e b8`"f\ C!5XmO2GW$hQMw_~*;)'@o4ۛ '%R0 )Rg߽ ^@]PsmWVmD,ryq.n))QJH= tYf )5}50=vo/׊'fǤ/PU-KhN äPwSR@"+->A|z} [$ވHV%vN=K5}HڋafH~uٰ ?Q,NRb?lNBZa*X(}Gc?2I Aْ #OM8̞D$MRBN|ǑHc?~2saWHnxχj97 tSPAV0@]cBʃA  gkm(z~ EK._[*0ń:;>N?|tXtj6Ҝ\p;tc;1:q +7HJJnAQ|IdUtFRBTj7`N!k'j!VV {yy%LX4Skά JJc<45`. v~C~6]k_䯚מN0$T5o싢CUA[ӒSO<$lu pD҉p,5TDJð7ZT̴9wfC&81)A%yjvMj1a o-ɫYg puNG!лe^ZtZR{Q Ev_aG]3AY僰vw c##]9ʲEzA=h2 HXqF>ei]=\UF|,lAR']IU%w3p 8N?{ RoM>lĊ QۄOeM ġ * [=l3N1?1dzb5czdxW8*$q+ AScR}K{s2+Dtl]cRGqݝZ*;%-V.lOCNU+(&uN5h]Xce;*Lj+|JK6ȑ,2JELL \_\c~9ZXRI} E@*MpU>Y,ٲ/۴OB4;0"D{ o(_Yg>ڮ H?e{s/Er+>6HÏwǠ~.'σ!") D[ Y\f&#I:W+וFA{6VJ\w vGBn~xx0ʹ8Ѻ:ݵٶ(`cb%W<)CNeUѸm\Gg'R,^)s"~X]tڑ!ڐ$T -`Vhgmd\dBXQmZ=A,7]^t<"o^5;#KeUzb}§\qpxZbKŕvnbHl˒ӞASK`lݻo ёUw#:ʅ;n:N&Z,iy>C@ÁU_'=6)&?dGEՑ'? /Yh̫&{\7i>*s(Pq=Qhs83AIْ}zVI8h&Vck;MWb<ѡEIQ:#a pg"s@)¾6Z"$x'lIޅZ܉)/@SS2=5cGp  VyB #]J2\NVB5a[A#Fx[\Y&}/Oe2bgO1:#B[[oc:m\C"sG'̄1o# aҍG/\Y47?@?3A]YOWtKEQ?Ud-Oy6mO-ލ S:YmVijeYOe#ֿPpC,]*(ǁQFP +㎻#@yLŃ'LРR/lr**_Pk?̰N;hp,&ҙCiu*\ qbI[*nö JZ׃3P] Y>ڲ6kz3쇞 6گ&3ݐV[׵̌"עj{GdeT$Z=qfg͚Kf8w0.WBfm"!pѽd^u0_,%9zfeBS8P-v|Jpc-~~P1B7pgT?<ߎ `ۜǬszt_LR3[rAr6[J@~C;p*l ŀ,ԃ[TIkzٓ ':p+eҨʄgc2T0l12Q }zJm4q NjkOZz/9=btԏ}WwGB֙w)+YZGF^gw|9]m Xde!xl hPSw-_m_]xDNDԚ`b$C*%>k/H7aށڮ/Z5Z"-Du5["x\ g”ĠA[|nCY&7a mrS_^]UF#UI辦9h"*qF5TGm/qm>!/ޚVU8GȦ@y~5FcxJ dv)?H1iXF}tk?I< Z)#*hz I01.IyVsg߁G !X~S3 % 6ܐA= :o&)KN*ɫTj̧AyL`}Ll̹( bibFwe;5m> غه)L>|"<%Nj5W^乿ؘ &=q"&0>W}&A dm7u/ Ob4o|ʿbN ?i y]eL@ᙁ2y>ye%L/5Ǹ.*Uy=$Z!"ޙv@lBE8әKΪD)Ui?F tQ$'j"c0&қyIJx嵓R{}3ዤeH:1L8Ya_Ól;]v*6}~+s>="\q? @OCg] p:T]`ݻYw+pWBZ {߮\)EO%Fjr:c1JA;1H `"%mjٛH'HG?hJՎZC-SMj*!9>ޓTD9ZN &8P鳜-ckŁ- f/GZK wZQjw$k~Z{MrۯͲyτstSctN4;Gm9wy .X - 6?LvQlC~+BhYN? l:SA'\*BA}A)ҙ }Supc:]GfKdhe8w} ,}Z;ENޤiOo9#}\κ5~\e>u9U= e'$TMYݖ^r!6ă?e6uCGƓ~3Ɔ=RK='zs{ǸC|dZ4is*Hrq;{JO\;˝'!6-#S mjx>,UӍt`5@S2)3)E}-pa%aUr}P xNq =bu+JoP/WO:۱oeLN*AUZpSn*w5=1RFMA*8aF| 1j:mʱ #V=kGczn!3%ƐvQoต#)Es@\6ƉΖoϕIhK#rDTl<3@E l#h 2!`ڗuf3 K?'zZh+ ]SWTOY(T26`Bh1X"e-XbƉV%cͷ > [MJn)bYtXxϓZmea?@Cg2>[(^[/N2 vw@a8d[-ZnowN_𻢢>R2g>5_5`m5ڿ]<[k5+HQfL(T ]Du්=SsXO;ڿ= -2w% 0n`9OwCwמ` d0ms.3C}_kO(ER/ksRiYc GQO,YS$UǐW+CWG3_ ;tn.sî"tVe&㨚 ƛl>6@'+L{Mr Y9t56nj Ѷ6*M|H4B;J)yvz"2"1ؗ2t ū-hx0xZ[ҌP[9l6 ĻԐ)nbP| pY ]u10cݖt2xYWH;Dw"bq$(%1햱AB[2DK%(E |O"t A[ƥW:òX t+ $x}ff[ C;B}k\:/\`m*FJV@!pR O>0U΅c<\,QcŕMGS+ҏ [)Jd;ȝ <udUTaĚ߂D0-i9??_p&Ce2hP.OSk;My$4n}1EX~BJD0iN $%wiebl\wI4xPP cr͓Kp|h9T6瞧%{t)+/pa5zkΉAsS;gAx1_íM @Jl:ps;(=gk>7v%v!ܤz g ʌ psp/Չ(%K4S,iVnPzF[ ҢG9sBr: /`wѳ_r ڡ nh&9 -L UD'S m4X7p(ahvz_kJi[% nۄuzL(4.#r X=Mw B~RIj-H[ZuJ 9u!լ/]65&IjZ49ojq./%z oh _?^~}wcߎ[HF8hФywAQBQ0Q{ zhM|GyU[\L j@Ctvr7; ͹E *tM5uG0"\U"nկ7MDSGB+'`9%]ݵxkT VpizF>+G:Ʋp>fYP'in2n>Ԝ_D׬wRO[Sb~X|Bb^b,bJ"0xuJTinfC$&ARޫXaltjWo2'7`Ft:/A~UH?F{&43kK0HOgQ1cІE#OF}X1,,9pAsVWuT881쎻}Y5q V)-Vњm_is|t F"h\|0 hRL^PN#)ĸ$5S gJRy̘/n;㥲hR~mu35!Kb~_ )SS^  /Yȿ!̍ 1PCZEL'|o*օQF'gBt{lIf1' 9B|8-5Ru R5SE"HhgѦ2>MU3Ȑ oqP(8Ԏ#C7 o9}}cFcx#'^$`x$ͻaL_O .ΉVK,Q\X8+?Ez X*2uPWlQJ7-G鄘i]d#UhX] lhh9yJIͻg%yrƿy 0ē [Ҥ^vّ-ڕ^FM uۂC-nn"K?Ptw=#r--;QGbK 4q]UZu4S}~fv$~fD#+BѸ56Ҟz&R_HQ v):OC:!QgA`Nz Bw޷MG_Rʛ_E m^׵tCj°"!âQ=6\IIZ9?7dGglDTүN9H@*9><1J' dDŽ ؎^ F ,z! Q|[BwZAP 'S= v0odW,Jmg=)7}I^=50{-vy֕^cgڬSҟp.+Wvtb; ^&?Nb?iF9+j,O=y2;9ߓ*o*;E^/1 \-z' `}b#Ʋˁ7!*2h#Eљ2JF`X^Moi]h2NQrEy8ޠmd~퟽ Bk6׿+X|x> NJow0@hx@9iz垥!\{Lz?ngϣb4p"J&͏(0  &eTaO ά\O:[r\ѠO*BګшC1-2݈M3/+ ׫=2Tm0fzSl9ItaqnӝJ-F~P0ൃ7 p3Wޏ!Y iלK8ذ<%vf=o)R=LK`%ed D@v"gIr,'5#0lf̉SĢ>BMƧ4.&heG3"ӊ^p$ BQ5ه D_x픽Cbmu{-Q#s8R#A逷vLٛW4׋}/k)E/ 4[Ki]}S`Hf= 63*{eEJǦUtx|bO׃xG;]\eFs@"ɒ:ԚmR¶vqFjK险L$ӚVmhsyiyr-{VCz#0;/Z`6*N;s̑6=jm&gQR0ށh&ttт 旅oVXDXNjsed Pͽ[H|^ǒxW,\5t?OzuAO;sf11It~G@Z㈩,9=O>%q0f_?˓!kyH=jAb"a7!(kd2[ ~V zi Q`fG^ ÌP jjnTɦikڻ?%136<Kie醾>mS Ǟq9_u+A%N=n3~QD&nTt|t*BV0-0+F:fU&l>bsyT8 y.urKyq\nN&կ" wxf!^Lgv>y0ΟIykrj5̲gTp969VwC/l6KNc?yx/X*]7rh=XJi|W%+ m~:RE̯LEp^1t +rͳ'"e&V47ke.dkye :,"¥w|hR[C|TSv~% |'{[Z,41s'_!a #?v"}yki)|,. }w8B0=V͇DH9J/.N}g՛ e)5N.BWr]hr[iaBTEHe޸b?*‡e#V.nXyi.4c#dnجSY8@ ,qV!6 iHW[JÙ!l`=хˤz//Uڝz[x&׹\#4ho tC%Nszi<%U8?]$Ǘ&<u 8v&[[:w0*w3a ]Jl #D0f')Z2wx#4͗GJ, R3ۀs]mTvai7H/`]kZBV[gku"Jy~-b pD-1ԘתZ^yϝ Cy 7'q H) =UG HH^YVOG͜atLe+]PxR"lf[Q"z7Ԯpo_jNK(s涔P]<tmR6^Uy=A]C" M_Z zj':pXye͊|}{8=l3,.[n\ĵʙߜTeqp3CO{w]V&UnziS0"a&mtY+t|ҙՉcx[(C\q5#5P9.m]:8BdK4sVⲋY]$hucP7nB8;2d]|ʎ\*"Iv_ Fs_Nuق:Z[3Gt(U[?d5g-}Ci٦aMpCeZI`q^2s΍Le h60hHH45is-^UՆWhvXgͶى_7!apEUJM}$\R"G3pFĖLdY$ ?𙩴R忉!PkPvxH>ZoلXCtjݻٍؒBhXp׶0p+5wwّ9Zp_8y\ʦ8<UؖSђtA'%Y4a.Γs!Z:(Kxfx~8y( Eū`E/Kjs~ ΉJF-cu9T^J,S^6 uR>zO/6toZLD]=;%p I8`P94^^+ecUU)l!`otmL(>8őI7Õ?:z?_'FS o\8!*sO# `GI9yHЏmYM^04NNx./܃ ch DW%ᖛHq?Y"DqIvLl?Ε^M"&v%KV\'+PyKp3Up:IY_sɓej &}b$2hd@,q]9Ɯ5Z'f}mوlouzG( MR= P1;Y9 "zS(Y(l%5A:+?h^PӊBɶdQt1f-rp,g &Xs$!BGeC0N SޓB>;^!}Q@;f J?UT q}foru`2ǟlL?뤘;y>1"-œpPC rz*z-3Q7Af$v16Dlke3 KgGۊ> 6ױ}] :#lax`d#zC9 W}f9&+Io ay9jyq+]NjI6+2F NHXCOėďƈ#+,'că ` m/^  vANy@bʚ^ލi'0k)n Fxb.`C5SF񬫆Rt^ϕ6&@&|VPKe8,8 ȵa¿}Y聈C%rUV?jкr&tȌ[ Z9H{Q Vy>v"`=˴yHe*Wj˳SAS#_f87o8|aRLЛJC,N9$P: ]3l蹃^4 חLI@|h@$z> nWUc& ݐ*B_ U_J%$"ϣ#@dˣ_O^ b%0FJed&T)*V̈́1 acSM%H)9DjtD7f8>s Ǻ/'T`5O3KNi\9[vk(Oe5?O%7SmP$kKHYXAx['>~_Xc?-<^u/{(sM=̒9~x_,U{H͛* zP[ZGwb<\j'SQrs/o #N7ٵ 6Lo63 <$0 }p6 f}o[qrHDiYM{,Roק{z0o2& 8"&M.~&UEpf rI2! xBq= hFކ<k =lȑU-wQ|32 Iv$3gqasS3iueiz!R80U}<2j3÷e,T1FP[@˹T&go\f\KBYC1a_V kh@ R%RZ%G`H7mf]qצe~C2:I+ WX6F StٰQ`ʼngm5w8Z сm o_v~ըJspHvd Y޷.quȲ*@`Dq[FPR`_p:Uaâ<*֌i͸aT=}էH%S" UNG}ZA5 .$+Snu,Z(d`DfjXYa{71xڟ1-jK"4Zt0`_B_#WrmU~"6N1QPVCybk}v b*@rgWx/uJxg*Ʌ`w\b l{Wg`.a7V&;lE/@ ge@XR}݄T5iLg=z:{_D? /]8v+Ňk3J^XّLhrҐ3+ыhtK"l%iF=i\  ~m=laO_qo%jn_%rdۿ<= ;1H4PV{%^)}St<+Wx7M'9Q(-9~Æd\PBԋB검Ff&Wb-ፓz MXn{v# 572̄+:IDEL^ vn<(Cy`zcjѪ5k QI.*IHu㿤0;VMaAһbeFDdD+NffOz$Px 49l feUZ87͇Uxi˅qW'֞墫6 }'g^cI){J)/`a # 4Il^!jD>mo&bG2@;.aXMj? %X49DB$}|D˜{*XԱ(0ZfNߡMp8/Cf7_1Z7A;X3@ !pʹo=;o_/0dZ\NMYJO沞 }9/Q̾I]Pw2׬<O0}#UC_ W2\}ZT>m(rj_g!IʁAk=OW;8DjIyA'U0AOewe4.d!-Ld@.+WHbC[ek'C^ 01֟1Tw.d9Pb~eV%wrrikE`a M6փ\oouCb3~jXP@N˚rrIi [RkKaL聹}:p$ $s$|LC(ޏcܐ?Z2$w/ ;ՌƘV-8[ ~ C+tOe0Ȯ%-Zd~SYeYgvu7*G> =˅zs`^߉O;#*䇙DgA5zQ[FUGC_A6wS yuaD'1._lVJ{$ TT ,ofZ+x=kiD!F 4\&J+5`C3RZq@RM_&d[f^$k j׏ӱ"waPnK=xYGڀHip y rzVEVlMeu+t\bBمH CjXbRp"j/ћh`^ [wMC>5ac1˥`*>3%o$j#'5,fcnOJBjJ5[ iS'wJKzTFX(L.U[9᭑!+^@ 1wwHsY(gBYjBƑz;ezD̬.実_avQk^˭dQPãJ}N]HP`KW&ܨ*.2?qr&jGϵ?  t66_Cvx Ć@R_aK\]Ys格_]x ^; $?Dx~'9$P٧Q8~~7x_j|M[/Hr>V\:g% S&X(̊>!4F#E6,Rv9)X'7SLbhg|x>"KB3t(ZAq.~r(KU{Iw#j&`b弳yyjSbS[Kp[,dO"nf9B,4^^AE9AHY+J&^je߀9d$apEVip:Ha={bS홤ʅiՀ x 81tnN-ۍ_~x}x'f)Dsމꨮ/:5$a+,6+ _GO]嫆@ÿJF*}I d&|+93%E#@e"2UeȦ.Soń!(D(G<v&TGD6^Zi4+ «W,R]m? vzZoP8UO l@zaݏM1RfZʰӒ|߂8݈!m&H8W_.F,'zW<سg9\qלI_*1#N}*Ju{ĺj_b y_[l;:LzF}J?C!H8 N+."MJ&fKVN+9>#BHs9Ji/U/)Cnc5!z3ʔxnM]=aevLJaِx* ];Zz.:Y$QB=][Vk+ߺ8Z%]Pvnvd 7e<:jgǿ#6!hCFc̦"Rl_J x\:o-xh5jxEŪHpj;,ҿb"Sr=ucQi,0뉠7Ug8%_)lfX?۬žѵ̷nwv~#]~l0̈́&[d* Ch]Mk u5ND;6؁,1c2eL^@DZh1ыfTq 4zq[Fl+| u1d7[,Zg|hgӪ#Fb֪I$n On.`eƩ5mzy76u~L'egIfT1k)ixJu0 ךk&Н–}F}b6ׂ U庈01a馺nQ݈ptkzWJu&ip Ìա  [3yPi*6Iai/?8PTWUFOk+~8iy>}L| BT|h Ek,`xY8b +Oi:E5FkDG3DvNe\w 5Q" L+c93!=-> ˍ25%6p/V?12r(9qC}AkqVxB"2t>^'p&}QNgOV0-ɘQb0LmSF38= O)$vǗ@e<2y34A+ΌE&m'af.iHgG aܡe{x ww"dJX7QCt׈=dy88%V{)e ŭ-H߹D.V0p1mHQ o{"dѥ-avO֣ЛApa;)gXLa2ePBGE'4h*mqgwu-FW[k[nɁUP:(ӾY6eAƿy}< Cy˔Hd W:3- gpɒ߻Tޱe {+mn6QV<>~{Ǻ5Gr9.vTT& ؐ_0¿9\'f_2ܴ7'"# ^*6ڮ۾a7T ezlYnNa5u+D^i@;eF8*UΗ|R-FWLRB–KAС?a{7(inAIKm:+BS|2pH =IƭR)-j.r zu VD#wǚd2Kt32yi |ŗ3 _Y<\={P7UC8ŗnn'CsD42H`Yjtީ޺VPt@k76] (_0$i}^Ygԍt ԉ`"4" {>l~x<мH₫Ыl 7/LaZ`Mxs;Sa%s@"-U 5]~ůX!)qWӓ,=ZE}-L$Ȉ9JK 8c[sW?K=L:u 1j}~ɤ.!@9ݵxg49?eASR4ԕG-KsCGf+Ys^fv̅6>S:FMV^e%>IKC롙vJG,r׮#(X0evAK5ҦlJfx'$ˉ|]VgK3I"Д䞙U[M;uA׉@ l㜑|[Dz+z>f;QS6 FhDsHUN,+?!zgM؛'4egY<֯tм)Ț{ڄ)(Ȁ1)@?gc0sy:v;dKG«_g1oKX}xu | Q6+dN8|ӍOVoJ x.0xO![gc#"+4ŒܐB#z,V~5U&K\p8\eOk۽dzUUbrG$g ~ Z8WWgR}Cٝ'ޙ^vt'Y^6y `(T4[>Wf4`&V9FV\DڕxzMjdYkݞp?APu#;}7thSR:ʃ#IIs5Z@Ӥ9[ O2̂Fgkd,@73s 9UNMzy_oh  154U ;( v1B-E&o 7ڼVKz=p&/upo3#ۚ_z{Ȗ[وDy.ϛR1:ϊQU\Ea^픟A耙0O&{K9 IzTլ?9jpT6Q  +̰ʣRyY%`=ʹa_EMBCF-uD6S|aR 1_b[rSpB: Y>j\r>S*%OiAј.OHL2K&>R*rЌ^c#//B_ 4uqD ij}Nrenɂ nDŽ]洹i9ܷfDaMχ;G&ab.-U+LERfӋH 8>][NO<`vE Y8E'6uV~R\4x.A"ZÑX7{8?t pSq - :#+ rsuI6}~KxP0X? vofuwD&vVAx 4j{WҠ RH޷_lf]]mh^ @W(+^aXHXg|jZGrp7`HكBVC&V͖<#m(l¥+. W];k$Djϧ\&c-S7H%PR y$x[D#(-y{vѺtާB$:qLm-zi"؅*EN|A=W{_ 9T>n|XlmKWRH=>7i :ނ^c ]NmB?*<n2Lsy_gTpc˄f^*GHcr:r#" bKVWZ5FfKFJW]+ 8qev.@zЁJ}RfڤZV_݅qqBAxym`pE=]Z*֖gx'r#QXp :ikJi`)H/3'SymSګbsx%ZxV G ohFUXM,V4 :aellywǮsֽiZX#eլbF?sMTdн5EDEr"p6[#Lz5rt|EXxTTΚlQV~F; HD GQ٦_8nRZW*Բ'D!jзixlX=R1 ɣv:*~`!já4Sچk9t97Y$u!t6d'@?$.o)c0=+ @ ^&S7mYBl*{ Ҝmj8mtBA&wLN{N5 $I0D9N;4 -g"#ZrON˾&5pX TL0rN=Æ=ޕi[oVvbړCy}<5N+E=jB@C>v`5y%vfP; #@4w{ݾ4!5~ pY3P-x.zg0WC[dɥq bsmiAΌrLLs}]kRFZ0(+ToVc^V]!$#T`y"+dv˕k>&e'ߕ)wTq$ι*f A =u_۠.L vkeGD*m:y|bJ鼁Y <%ߜVr|5-Yr(>XA` Z˱Nإ?pJAdCu$U*UeJR*6誔|1~ޞzK,ߣ%aukñ0ȇU)Y!yqvOTsǟ$3u* Xw2& LVHiA0CvCw.<ǵ1ܩ^I H"A׭-Q1L´@?mL0.cǁbS.H+ ~vE0M瘂c& v7:pN&a9* ۂy9amNC\>5;e4L¤ΪF83)0z7n&~feVb%&ߵC\]>Di<7yqqf"@ץzAU.H `Ք,TWKl!9)3C0Cd5{܋=iwj^AҨ,&^Kߣhqy0'cIG>)U))Bk⬿6wzoesCq6<)ɒ#wPvlrvRF-4SR6۸|8ya$Ei'ޥ،#'=1!L=-@' ҄:OH} i = Vnv޽tVb ӑT,XG9Dq%X2(DM7J:\ PO1߻Uvawfs;b ;iz_;a7#3QWr h%3䲟X?0Z!7N׾Če 9>g| bu$+9'7n"[t6QxȺ O kE-Ԋx^kȃSqO{Nݍ+tm3Ĥ.0awo v+)2Ȋ ]5Jto,Pydɇr/GHBxDOP_tt! %!qX JрטWͧ Rꂺ}iy^V"Ԯd)yUv$0qB.qijǟ]9){C_m Os9YxHo}/k!-U%\ŸK0Ncn8~x7GEGuI@_tw sln4H}i炄&XYɌIWYUv.4 _׷C*:{tpFXtGkgiVӨSR|Mg'tȚ<8NNC2^"U[/ȽmJ/s|ʛ8pˡ* i?cO΂y^S.T)zC:R ]duKii|^U^'1AB7-87}Hui#wJ|fEsaiä/NwuOt.ː&٘49Uӓqf&ݎ)~siule8ؙU*lSz4O%U9)l)?RFkC%n`βΈ!B5 6NCg(r)JRc7Y(C>'zПw}j!ec^ >,',~,^fEɓla<捫H :" w|Rݓ8ezy/[Mщ #?EW)MU.y7Ļc<RDDWYai {dd=i  E++1ؖT{9`n%3AfUTOЏp{HŠ:_0<'ۊdqr%h8 FUktP@p+y6'ZuUC+鎆C㋿g\W-X^B^ocu{Mu`ym? 5LJoܸ=FHq2Q܉&u5g-MMϰ\GX% v~H6M 42g07iR+(ߎdC"\`N,ھA($S3@MkV%KܷpjװUb (Hs~}.Ka\YU3܌օ4.C8ʡZ$4m9"՞Ds P:L+yY7dtx8ދ6d"w@z/8ut?t7 fnLAA6&}~ x,KzSM&W; !w fdNnيǯL"mbo;L5c״[A511tՕ I xGmEDݛzVɛ]gҢUX.$k܈ƾ'zQpeb `q$ Gc]̙斒JQOX OfBS%+a qͽE+6,ñýӔ`f~#xb! yc$rMj 3MμyI.Ur]aRɏ(&Ws%"WMvMԸ?TLUj܌1ӅAFw>,^!gA8aȖG$>/MGi¤.a(D)3'gv?4ƪ|XE}\JǕ_*>SƪBۈ0;bc% KЃD7`]B%US*cڐxiXiԲ3UF-ȟjEʀj3,ܯ3 E6:4!%1酁v)P6zbߏ7R»dJuxiʴG+KZ#"Kν_[Ir)ɪDsby ?;LcIzń}Dl}k) 5BF76Ӌ/{e|4]D'9,,X3nOƀʓ24 D !z㬯JBlwd7adYᣠg6۞hAG: ,dzh+ջ \RH+" xZ 5i*|יtJ}GA="-dƱ^.|wzXђ%B'--)V?f An&qvF'L}aJaշ=8=%3VT(1پ Z0;g)T x;ZH&ٖ!y"Ty)VBm#`qEROl.);.gإQ;]_gA ks~A a|u}|Qt]uca)V؁4e"vDJOF9VlJmVL;~uГ(:a{`lmdjvu 1?lezy); X w Iz!%3Xy t;G++f2D/ʘ68͍0[UnVWA}@l4*rG@=2ƵZHN ('<2/o0"2QL+ zJ}rgV=Πքf)K%> lkD/N\ KΉki^Ā!>#D{;oig1R̊C9#a׬NXhJz*X鷑 &?w&ZMS(}{=c!mm}K+ U0$Y T \IwJˌ^qb6%oFAP9FlY# eEפ{ZCJ(r^œ?.W@f]){_@&@י<0\!#l?h;k~\ƞ10_d"Gx~~F1 KDL[u5@{0v=_1!{/U?fb }?S_QūXzZlx D(ϧć bw00Thhff2x `ؽwL-~ii[":j^3%{I:rk!br'~l>0'Bӎ}0Pk@43;?2Ǡ'Dx/J_%;]G$V"ǽN8euL|^N7,\Z y8R1^2}0hƖU Z=~d/bӈpke\hzRepq\zvVun'?nUfΐ빰Ӎ}At&.)EXqJ˻T;f+(co#߽P(5PͦމBPmkƘ,%3rX{dH@#˞i m T9~~aMֵn8C@*Akk߸8Wg`GCFFO8iy%^g"JS+AQ|Kk@! i~.gb|ܠvǎ Q9t)8b{Ņռd/,{^ʤ)D5^]x̋]HoNP4_'Iwic&,>쓖A'D*Ss*2挙axC4Xkd=斞/N_0hy 駦ш>X@Y,tAЂm`qw Gw>}ԽwQ3Fz#v,݈2/y ]5 J@{ RY[vl*ؤT~ J5a ^{v(#7O5/ EuOp>rȧ16uU_c%> R"4EeqJ3Nsq̲Ms BFxP5MTl8Z$S+ A)IOs)؛RfXvF%PHL&e.q$v&-N]>{:9ɐLHB9gHDyr\ gIŎqN!fŝ iIEh}x6 jr?BI 'sr˜<(lX BZ2'!yEm]`&1䂝q\ְVUT#N)VPx LR4옏ci]M}ԒVRifqN`|> g!]zisE`W)G8&jH23~lEsIfҢdN aJXr+ wþ-O8.+7w&Q'iT ˼L]z-0-%ϸFZlͭB\ܻcюRe͕`o %kPΞCJJTiDIBr1J؀y^Fp4!=6-]_Υ>*[;9&89Hӭtm +P}/Wu>~lxMOi9iŭ0PrzܩR `j5y6/#L~_,@q>*!ro+Ӎ\s'"з}p*OPp=y\P=) ]N]R\(HѨT\ZxS0|]g8)%@b\E{ D[\ٿ. i'8A@hzHQoACI"jlߺdA3D,x-8xgp4hLCa Ш*`{vq(4WmFF1F:ͦC~&KΖ:?a1Sْ-cd«$1k nZs9${ n RUa9BR!_پic7|wʧdjԙ>7贙.pJFq\LgL2Qނ=1yx^?Wryq)chav^ȏ')4jƢ(_ Pn&nD+@u,o>Ŋ^?3le躳r!LHg27\\ kֲ k&u ] *!uj'q?B؍tV$,*Uu-}4^Idiſ)ކA0nuj%iZD]6{5ߐW 4$H]*%جp/ibDϕ YB ec 9@F_'r/5h<0АssV̝фڽ#ñTEH4!";jahar.iչfq36]Y!(⪕1 a<*(%J8@i S2O}.e'ز.I֍Hϡhs 4mcGGY}6Z-H`lҠW=B9\=s,%ӕ=!Ej:vGJdXyUdĻQ'4S 6 /<1+bD=q ,+!B"s:$PܴƭUdBg@ 4,AEF8HC&>5Bz_vRc=UotFla[^OiwFBdRp[Y<˧xir;U,4#QYAq5%Id"2MV*x#"SIw(ih9f,XJ` L2W,?L:\٠v,ku>1ΠѝEXץJ~'^1WDǩo1FC:da9WMή %i.?5IgEWPEE>ac? YCT7ɧAwd&7uTL,`&)*KWJMWp+f>!'8\bҤ.xm0BdMܧ]ALyDw6J<%Bzhqwȧ;2h=F7w:*ܟ@A<De{Z]ܳ+< dx0@\oTMkM1`On9r) Pv>[csg*:wϺ}*4f 3͂D EyrM&{7#gCM'M+b(g=xS©nͰ OKj&L[|W˶ ڼ&bYj aw$.{Ps;דG%wR; з߶ my*PDwm*{.$XRݰʈw3of)5 ڔdr/BTcmɶC.h5;;Pd<^}.m]?>>~8"_٪usaԚi99]UVIxnuwgpH-9M,vQ\_Nŗ ;MOVTk{?fvca~Lŭ9:nɰk|1h!`_u=*n G4k:_vjGrj[#d5` 68pg ֺD'Uh 7l7 .t>{=x]l%tԶ'`=OP v|Ҋ m tJɊ63oe􋬖:^_S/:+2ONop+ʓr41tN}C"DVBR^΅.} cZ q W$< T~OI΀-t0hlE4\vF| .4Kq;C& riqB8.q$pIf?%VWE{A\z#TR*CB.r;d"xsF[ǟ\"69q:I6n3PYM#_ ʐ'WX*Lf mLd (8SzyO+l~tȶI ؕMFՎݨ (Gqu)s:#֋9ikijnI;7lS(VfFo[ϳKC'%ݓOdaRCq6VnFQ~}eCp|AB)jݷԛknVSZD)I|VlS:!Y]3Z (׆%8vτX+z K`6[pz)cnRAǼb:ĮLO8.2$He.VT Wv_=2Ǖ2IhdAXC P{=]Ii8L)tvA )'đAѕQ " I/rN0JepMm88P1{3I[XZm3b~x y52=VmmY[5OE`gV9uNKc`E}'HA䁌d&#*!Xn#z)?0.P= ŏz6m'Oi  .!u;.K3e_0&,K=v-'\uEZ!Rm˾Y$uTjyw r2~sN{܊0C)Xf wƷ4}gH{p. ۻ{  ZqP^gJZ zlk.7;&`%|\z3Ď:TK1 i@ .$kDK-9}M1V}1?9J9m`V|s>-/ ,Bazkx1e'zQ P Y람78hNECexrgZY:VڭN~t @*鼛KijC. Rea8քU$ٸ?G0HH5ᵠdttO,6TĨفD>yb~]QȒ#HIddOY|E&bZs5)VaT"LAy|8TSs@8μsmMEJ1n{ͥgl.c@_.xMtcpzkdY>/^tyezܰbqXS{IY.k|kXB/W28sC)ne7ˆuӏZFFF,Fc/3+5*ϋiP79.<D{oyx.y޾Q1xIM:;1ٗR8*O|uf;3QNycRkgs&v?mڠ%&. VJU~gN.Iy?e%ݷ.Yě6J-x|>Gk!$‘y\XfgV1x2KgsR'E aRd(g3O#9V.F/i=t_5ө[`.3x,lwI[dSrI:- [P`I-jUJ|ZW$NDŽNJʽR }w hP [%t_0 d)8aFco=P Ňķ[VdzG,"_X&pS txEwxA4} RjçsuN qR-@`{oX3苛BBY6kCM?JLϻN/λTPGOǧQ-݇M^]'M(Cd;s}%,CƎwuSr7?m:sA[i99'lƶy[DAMӷq PQ֐z.BGIm Yx9!Ff"}>YI^1 JbG1odTtK취nj[V#&jX.O_6PA!\6sメoRb*ƈYziMS܁uRCFp Aܻ! Ijoaۄ0)t\&M;(7u eg+d&Z 紨u޾謷$++)'99μ<#+DٖJ3&,ХDߑU٤(%^A{P.DoqރJ< Z-F{>vJl·%%0A;L>V;MFRI8uQdQJYRk ZV.o؏TУo=lUTJs?&QO dvu݈-\>kPLpɋ_ ̺xN4lS\o9J!'R&]r8!*=Nڂؤ@ Wd_=k_HoyiDb|F#/XqA(%xuϘw2;)2mԱuQUט T yˎrRQݨ{Cw,&k?B]ݣYȆ ~M2BnU\9EMt S-ijn7oȳfXF Bl&&RtBMSϬ7ބPb/eIFHeq|^%Og71 )ڬ vZֶ5wy'fW Vj 6IJ H7P*P`X  Ez]Q}X),?hUbA9+GU Sxefm i2p(n{mM~`uxOj|K=m3H@r- i@龦#9{%޶>V6 땽x "6vrPRnsRIbkvhq0+q!4p*Qܧ_*u/ pH OqKkv>URձ˸9QuߢXAmbs:_?{ qկ 9mN߲2+<3&9i:]鱠;Ӟݔ WQI-a7^yq{(_MM'5B}H F&DVMBh DP$D:`,'ⶓ̊54C(.S~>c$h|_E׉0ic®K5c+Si_Wy`Yp2ݦr&3/οM6X`QZm H* sF\rN{,1ϩVVƥ-a,Hbu[/`$ҹT?>3aĜ0+aRF_iFt#|I> L93n"o;|Z9ot`OzKFLWUztc ;?-Pr:gSoM2)lnYR%\&l<XaSQ:#ʽΔ)\=EX,8G=8n. PA$]hw~KCݹZq̢^)D(쎕|6P(37qo(qyxR*,t9m-y_‹yܤN 2$G?KLlz_$`VK=$a~; aݲø3ګT:3SYC'i?Qh=J?U[C6E)gׄvpG~ iM,6Fa7#sS.g/3,W+hMHqB;BXxXpf;>)ya`Hr I.X,ذ| Jlhf߲,q"h6Y8r{2!m-*eUN%R<y2prU{r)}P W+W@1N6ȽFߴAG/*teCo!=`xR=<{K#` K<21ϳL]wO/6Co"vٟ)'@i>4~f[/ {,#'yzOr^kLfqy֗\9TPja.{>LSͥQܷtXnHlM-ܗKTkuX!XZH[Y/3kY ٟ8_<:u[aQKASRgfP$ں^bB@.}]r8W_|ss[eC\exmIc $ c~p^{Y/W Tey@c 7);V#~V'PgR&o̶꒨PH5RklʜKa Qβsb_qܝ'xgGÔZYbEFح+:93l[p& Gk,ŏD1Z:S]x&`o-deQ5=ippS-p+)]rR8TFRCyN%1?&|)_`YHo=V8 VW:Qe:C2o ^;?'%^򇖬E:zYF<zgJwG|wVIAK8%.:3}\+9HE!@Z_uy}?:) 5"]2P6b!jM]swXgqG$ιJ?!/z CFh3K;pUV:A`"EL;`ޖ3N7kǽW_i ݤѷ9CVq| JϦۯsJDQ_=Vk[oJ՗"{1zٞ}[QQdQԷ *B6Ru?i~\!==@BL*q&ٳ=:H5iw$<%P |CbHݺһr )"=Q3f6+]T&VȨl(2'6ܡ͒C}-?嵑 jY2Z\UAY2C˺xG{P\ Vq\:߽筞' ºcqxEJe_$t;6 i@I@6.q;$>B N"50ȚuHt*wY5-ӓ/S9/}pօӗ+՟~zFQDU=kMi/08aep?",mT/ ~ hr5'1Aue~Y= _H%K֟MO!YQ-:}MUѱ (0xa*TK8wiN#ز$6-loJ"HN2g\5 ]q>$&I\T+9@# Z'uh_052QAq-Jgxny=p3wz%fJ,ժ}J*ZɭK ?z%'쎒c]:v{t)n|ĺZG4<mNm@7d:l|L3(c:@ /$͍Y/V_BR1PtSUǼ.2ٲudEpVmamܠ)]|8סoYRoI7| VO`~pr_HO93y>HW5Ks{/`|H sg7j.^d6 M@]k:ɽ_DǾZpl" ўUtez_!@`v{S̅sM7&!ylK ԗ<|qFv?TѐzKb~GuES(㼍,(*p9P|4OuJ7fP-MUl4lTx6=!4=9kr0IXѢ,>#R,F!إvʸ 6- 7Y` G#79`K*#,TAAI6{L,6F`|qRqçt c7{ğK4GU&>ڬԭ)#څeb份VW舂⛷,hqRJ؈_ kk Q ` By8`CI}ܰg>#ƆD0Vb 1u^r{v6ɏUʄ?QG: &p>Wd$BεmѠпh<^-L?D0]m);c0Յmcͫq_,w|X &fPvx`ؚ;rHު[rYJ#*=MSCx75 KcAR(f>q0i&Rd }ڈ5h~wrW&;I)FI'ym<{\y#g'w6Z_B~NHk> nW3lV-'3bbKu?-0O@TM2 +d ܒӍ򉺗j8тÎ+w[ Vܞ@"n~q8or{sg!aZA; 9a܂  QV3OVFo )}`-Laϯ1h[ Z_dn ?bȾag9 *,@3d9gG@4+BT'~qy&^聁c@4ΙlV;аM^/mj AEѭ.G]=kXpOsצL)Bx#GH#zI{DeIq똝#pn >Wfh)hV*e#?Q6oR,czYnH,Bp0%gɇWEi,DtbўS +a>?gogi5D} _+\A°B).R%[" @CC|;)ݭ}gQ팔+~ :ڣIWv_AeĦDDUѥ^dpOIxV.0Dh]/] WȺ3XU- Νc EǧUjgabQ fJB$cWε}IO ٲHOSEbEk*CKs6!$ Ҋ2|0pg$xfhv=fӭWjo{L̲_ e c'N#cHqڗfEAxcbc:U3/ yq&_JgXs;B3V)!w(gV^hϚ)av8J`zQz5ˡ 1ED ԣ81f^v@ٗd`}3`">"cMfRVr>޴5E66cZ\#b+}Ruz!Mɮh>Cb3i#ZI@xkkDZv|Eơ .O)f@Իoz:U 38(ΚӲ+ޏ̪5A`/14Q$E?pTr̴qd/`)R@ ,Yn7C\п̦x\Dfx0ħ詔|KߣKhyM~5u:h>{./SLbQ&e2 x&t"ҎigL0"97u ֮{@:(K hIUQ[Ľpc?>O;<|ng;x6`gqޢֲ Ѵd gRNvQU\_! ,k4-$Ռ('XQU7ٸkyfҐB߄"\Đ g;pT^sԴ_(4n0( I#>B^xpM;ݥ' cSo>#@@~rNih6b@u␎nd?>~`dS[kdub*b9ܨbj\ 6n2ltڣ2Ys Lh MQG ʅbg&T05DRr~Yvګ`uȌdm]؎Vm2+z !bmős 1QnOWJmSuúE_T5/PK=}*NEr*e+OA{~226 XRx FRNp:&#EbfX%x.d=̭3e#3k >SeJ5pM)eT6h pZkh "CM'g i3>fYw$ E=l{jzO1rAE0 'u[(o  [cj<$c80G2QȞe$PBLؐCTd^J'p~dDY$7 /s9m4M7EJb8}8Ӆ=qk7VdYЇ#\coFE]sW?qNΠ *$ j66$w`yRSaWld7 M1ZYf@ Ah|n=W8A6 ݆k<6uƹtb|6ZcV,|wM0 nJS+n37j kyݎ.|s*_"cGn/ ӶrTRY+唊[0q"}usjhUkKV 5p3ı7-Ր-qيz`z{65MN/ J=IK|u_pJyu'M5uJ/ f3ͶTtA[|5Lb~6?#<Z9OMCJq ejk*9nz+3$ʁ!$Բ^9>CκcAW1Ih^$U (.hn׬FVz;f@@)E=m'J>Y5R(n2'|AiC{ŚWˎ(J}AoV-Bk]6mm^jbK7G CȒeO\I0 tt qD>(:*+҈g<)R'. U9nUC Y^a A$D3}X59MzY<~Q=qQjbR;PcZ_2q8im#d>Ȕ!Mbk};p5BO[c`Y]Bf\MJ]h!0%4")Qesπ9 >cp$$h9|-𝛒R_pr EM"F%u1s?ZdBYV`yFpxumk0]Ud,SNf]z5' +x n ZOkC`2H"ZeϔQ[͸Z/:pD iY‘Yu1`I Oxd;v8嗺eu7M$ w8, 9%h?DVť4]رn0Nf{sj㮌k |m!tyB;_`\Yl%,6KTpPZKx.1nޡ:dԛ6PnעQޚNGvm8d47IxҤ5'G^9ĐQ<"dFVZhN@w\4t~ s u?aΌ^#[xILvJ*cNJA5f0Uɩ>= -֟ ػʓLN0a{kTa+#Wv\`b&*&CJ%ro/~e5d D+QڅB}zԙ鍰v(hwL̚ch 7/A:J@`Bd[P*@I2g_ׅu%5 &EְJ#giN:1!=(^XlokV\8j x"4M__N6%<'_+Ch l`0 +hNTL$jP0YP>VtWa<7鯏2K_н تK-% ^_q!΅e;Z[*߻q#jaHbNY]bx z`dw+'*i%sQWg<( ^H&5mbҟD(UcʹVϚ?'r>LfK79a}t?n&Uݗ Qm,fs8Q@ `} S"MT*du\O|5DjYYYJA4d|F@3 `iGcw9_^\&*k<!j $Ǿ6;8h:XAX}o-{>詸e?A3:jJO?] MxQ UȩiMzkG7*Gk8WipĖۺP1RSZ#>aX ;0c q\DY~kq*u6Sȏ[J5wkQu4A!HE TBW$9R jb؃zP"7%ңIL =dJZ "apZͅޡ0(7Cn;)}NơoG!^P&yf#^fa㮜qx ={X]Uc36a:֋jۅXEfY6Om/y8+ Dp=f*d%86`:K^e 3B|EO%̯6޿{KhA$ BԣI4*f(k EK{[zI3syk/?5|;GԋIld9 W_kXC=쁐XgGsEikY Sh, հ"9⤾bRy 2b7$ߏS ]Џ3jF]i/\cl= 嗼0ae}zei-Vc-7&J$;Xxł\yb#,{_^6R6%dc*,w~[Z[8I[xW:iTۜ6d;v]+cw:F U(s^"s˫)GW(5͚LfYf (8o3xX%QV轺IN*a\<&YTݭ\A~4<4-?I@GUtpX<E=\k8Ĭk$v'i'~T9f}Lc%\H:tn1Msߡ Xvz<&h`wkRo!وDz)Zs*vk)?v4 'nM*\B|ժ4Jѷh hʧUʁm`?2q|ygݝ?IĪ8i fkaL=3Z;K_\G6NYJOտ _V<-Aa@]د׍1$뽿 7W4&̰gyEqI}Yw5' QJLP~UR/ 0S2akKT4.B#'ţ^?O 3j;qb'^)/5WJP!'{1J |^4lDp}|bj$MV(vu$%(m:s1'`Wg`R-AgE7coOaGSoe)8y>˻hVHdf5i"ga5FA 1Wr8 Rk8E'A]Oʋ" Jv!Aټ:թkEEx4+Ӛ+.[]|uM$w ө+K^sm  KۗX&6iK**KNՕ&d +g:֬#(IYC>jNl8$(Rm\bumTՖyFx tԔAً$=T]eqo:ǛX13X|mM^#HA;arB*dģ]Vj?S'u?[o̳A.TiOƕ3u$mFé;夙,WJy WtSe[4ŽcӾC1#< ʾgS8j0>Η:ǞFUWB"v6AOM!g0Z9M aT5|w1P%Q[tv 6jjdq%Z9[訒>g"xӰ3en{^ TYv>ua]y&|rDS3*ğG&D=4N;& Y@=vX^dԱ)C4bBdnjύǬ؅dGPB$-K}#͒A3*Q4F[Iσg :J5[ ?iMk)22?EV1j-CnzJ=+ _L֞4;m㛋͍>i$~h_䦐tWU`wBr(QS=uydb;myAHSn<S[Y@:%,X`Q,`$A&H%ə@uq%re2Dq+ Eԁ5D5$&Y*x2qI:9ڂ\;0;C yH>MSe": (J!h?nSQ0#E-ENS 56n(tAd>V{Ii<]<0!t]~C'$[zXy+7p8@V"ox5o}2JԠkŝ  p}t{CaC|S6 #魯!,(781a9D>~M@ġHE?ѝ6?d69W ^K#l9 -BQw࿠UJJYU$]<tђ4KzG Uh9C~iB렄E'±](' i{H/ t$DkYrϡvDAˡ1dى zPh*(mWv)FWB 'zX R3 _Lz4Lã7*VRM,Iv7N}UX'R=iқ8cj*DW :iR+6qm3&"oDocAcAw_Y{R::}4`"r(ٽ͔[|Lv,=;9 8ހ "5>!o$)ϑA?K3Oi9? 뤁`%-%hrP[>7Vj0P /ǪFڰkVX!.c}j؅jzӎ7Ak&^?m Ek?@thG;/ާa+<ra2JLC&oݿF8YE :a$ "I)v/*#5Rͻ$s%߾DD>{7;-K-NS֠jT..K=UD(,p?:)8~6|rCscG59ϧEZody B;hFڐ N}f O!i?!58keLcwn^٤7:]4KUL| 8 P=,%[t<4qw w`6M9_r%=΁_7kڸӛbm4YF>&Bگ8 JH*)cM>~b:lLTlk$CBM2~D>$ZRAtE:$VJwkCba_D[g i[-2+M@7ٸ7].mh|F&!0U,ܝe  x4 L e~&Ǿx(fuPyGm˾]贑FqUKW~s4*Z ݔ_Of/`^ 24fIm+oIhSUkfЉOæ/@+Ʃp W0cA#[it^_2ۮCO/innt!z6"bЂ&m&w"ۇFq4/$]-U I5<)9gkenZ[8™EِcѯClOhJ,_hNھJ㶷H:F%&p-K3ooRUc$`AFߦ2R|gڄwZ k/ќ]2˞b]S__J\)'=QXYNtkr^g\34;ڕ;~`|05`6VKFnL_AHOѱ ǝY3 ]Ne:H 9()RX'eF$['nl.ZD8/*j#,-[j `LqK/ Y'8 Ζ/esRԈt+ALgRktxs?!?ŵ Z8^2O}v[\T.(AhIWGoRN)!64R=?塟fz~ev? v(*$oPp7 t}g`< 3H"w*Uݏ t8Ai҅I6*veS@`7&w;Z1޻{$"ee6I#kwosS u`Sk^sG+y1PJ4Ƶ$+xT(ՋGeKhTQaawڭ&U"5K)vZ^֐/*٦#= M\%DSQ\I87Y44NE $=G+aC) J 8zW\@|-$c-+ c8 A  xW #:3EY2qWc-aƘ7$w3iYƤ {O ,pgf4xJ KR'2g|ob:Z$l.gK\MnC+lm /:6% P9Rh%P4|AKqa!6<{_vZdkqpe NװПHs5R2I[3#Y4 [̗^ƝK/C#„l2[!6zAEpxQl'Le\5E163EK&>ymp&EG&p@txբEinUG $R=ֵgϚ&-Szw mTAL d-Cv[t?RP( U  ֲhUK㱎Υҋ W):/M'\d`ќrŤ:8eU%7AP ,¡Wm4mǍc x:b5R` ~'ZZ2G8}2׹`kƟ}M9Ȓ5b,kb;J#azJTfLV(E{*|ۂn+{ژSdi^mm( ^.VV*z`7QaPb,8!Jw++ FUj$o YOXhV1}+Ըg9lRyG + R!tTII>{qѡ},Q8N:Mθ,xd̢֕,&jB=U'ZYt;uk1AdSTuo,yzJ. Jf7lm9>3Y?q zPDFPu+IdqLX+RY SI K'ŠMDz}Q2/ya稦8+B@ 64 ]PLʯ;kKٚ sn{,n*AL@Âey,>$%byMQ{5z2i+Ԣܞ$ǧa0{-\&60S8;,;]#( M0`eǭ#2 J Y4'< vSèa /♉VpW / !#2I$pG/S94H} i<-zsy s^/Co Cn)E\(:Wty3 yC"], -F;%u)ZL4Sm)سYN/<}R.FSNS2|Q@PRp!CܮxÇPΤ 7'j5ظƥkTlY5$pC*(NpGbnF5n8;6S |&!BDu!%9 -G;K$&v!˚Nh,d҆E4k*4ITi8 N{}[vvgм;&0[ܝۆ' A,mA VDt }Cy'NY־7%8h3~Nq^ϞȮaftLpSR/(v % qb|4?H>9hf\i[)S'd-7,N镢= ߄9_wVugT8/7UWc|{{|/а + s2%ܠ~@B$24uZ J b "gNH;%ύ2ѮZSIiqo3DϋÍ|uiL'!H攫]%b郻u-Ȧ)%I@CzzDyqDm^ *q-,r c]t?'PϦF hbp<,e 9pWY$wo'~yNbWp@Q^sR #^HdYc4.Efw jqp59^)f(moM 4yZN/H~fL]4YJk^Y:b?苄鳋Tgeu6b˙.'"!w`)TZlu*8~,IDsooR\=\!0%p7v;&n<|VZypvgw/4)OXg%4]MEp!]=oaY.q_[m+/^_ ?lX "b;eSVlѻHTj7WX.w5`Ktz-ZۤU#W:K~ "=<;~եQMro_?eT'0C{eJ9|XfirL30UML x([8N 2V/iN(LXCf|L:lLE$ iGc?ݷ0Њ3QO,6J_ljFI|ckR‚YW襝8 Kcim_F]b=5.>=B<4qX7I+u~ޢyr_"OBC=Hn}QdZǮZ ^WQl@adsɋm1\Xڏm>g4Y"LygǗ}bg<ȵx@wjX7~`hJkF@jHPI Zj\"U &Pxh 2ROUfli.o6hcfnB$"g3l5js|E4n69wS>G!NBU>M!m Q >#̊"=iQv̟ȲY*;Ndn(-#{6(1Pd-Wl)[?N~wsrT6F@ ], ]Q)[ҡusZC+|ضMҹhB6R b^QgO!yIM3dMyϩLx_F^ +t}: _-E5d7}`^#aާDzj_X.*d1Eo(\_֭$=2~/-FڝU^lSPxT"I x )]Q|" ycgM^By-䘑8hĔOe^ۛ-о]4n,Y.Cq{h;DqCJt(ѽ\J]v4>x۩e@Sx,b{+:ri{h1IȿRFRA"*@yWwy߫G=Ũ*Morݖ sjCar!0~ o,=OQXbT<Ţ0gTX(1Id4֜]wɸ55#fпf*q޶ ~8P8t}*= #o>"ikKbD$[y=?0 Dٺa k-H۟!h/KͥmiS3F~(R\;Tq (E&fmAk/P6PgAiN_L!FZPWΒ{P`⋎&Φ㽩$/bG)Af/!&}xA~,Hm8@Jz:0N 5 hmoO_@ \,FBlD= :}g "RR):t C\r3/\z;K !,׏֛=T[;+F4]|\t¥]]r6/XЦcɁtޘ.8U' SV܄6zzPvpE'T2+2;MvaznIUb r3L)ԉWsoGcN] 8BN#bTL& /~^W~ou.Z/-6ԥ(y]X}&,(=x舄l}Rװp Lg0zOmM,<._&^ XwZa0_m"80l$jUwk0߅_C5#[-dWar?s-73!p۰:%xhDun.GUѳp>f;gזG c ΡhjI}sz֎*bejv]7nh ?2 ' +(qp Ssl<jħZiG= Y,d&\9]S_ 3T-J=="A@-IP:nCOyTˡ;gt,rFtXʈ_Qh,P%cUht󒝊|7^r;]/ڬf:PurT#Ķ_}\lIICPl唝i.W5L)PKGyJEGO*SV;O2f/bbCߧ0.~]>pMS/]׻,;V(ySvA4Aa- \ʛtA+̱a#V .gDG EOz mFy?߄^'b'6/+A7&qL[@Efh3BRSݰLA8>2oC}Нɘ,TOK6M[\?ՃAUiMb:kffoi 66\u )piΧM{VlD@[s4o KkOf~W8޷iuZ-O'-R'HI!-@L!A/0|XZ# IQڶ'|v?)T1pJ@%@u$DՎbENT .cNi֕j|5SkTV%[[@?œnḚ3̥KMW֙@@p[3K05ާaȄERN(c. ‘\ ^*tsLk'`TE%Hޫ-)r1ZX/ Ѯɗ6[jzS?iS'8`fuYn-R]vį,*u6 *q'ϣ' cH;g-gwF}ndG%wwֳq*%Cxh WQWbj?) ~N;$,~ؾƽ1:ݣW,9H1@2ʢ&6 I To[gRg󹒙 {' y^\&.?Rۇmr]0;9 \ƓcfNj ٜN# x"%3ii.M_c؍4yB_Gw [=XR v$dS '{^[*\&IL>?nnu\|R7"*aҙS yDW?ADtHkkv9 /3=ygB'y]>[frMQIE͹x{/!*zv?B- ^z.U) (E%gbE9l1Xo ?ba/6mO>Cz!0`N[i!q0O;*/\lЀ]YpNJ@u13h%8.{V !2̮&fPL1!v'l; bX,x>sH`*8uN0k!Ef0g+(OYH4 ,cm|\k=\#M_ -KT 9֗vNߙf2vн-9sT&yw`uO^ 6r =k}tRkwi9lwMr b~&Ľ*R+_ ý2`ariI >O֌$c`"O)[҃)wӯ1u=! ZhrҠtD>L2YZ'Auqih%FϬգkf.+q7j$S/"ːnRw_7Q& ʂxKj =%qU[%[ˮ”5u bE=۩@?W^cOPJ\oʧ2(ub ͛=r-a#.Gð"PAhRWG遥yxS]\nmd X9XtGu/4TVS &14̂k=~5x1 ^a0lA's q!rXHA`JyRJ`MTb&p'-5ifkoNܜ9n(aLHOz1f0LqEBu( \57?^/w]ei^@Si>q6BwPoȆojL8Osfjc=أ>ZElX@g&bjf~gOCU L'l=H=-k ,')X6/HrC-0 bSͨ7lqY7r+sPK}E[zm]ܐi/u ,Gh|zW=.jn@AѪX9iX`gӜ@8"'ˑȐD~a1KԷU޼w-JP!o165(u= 9 ]acB&Qj/Ɵ6AF\T߂!?UAjޯ~hQrvzʹ4)~Fޣ{JEe~'+Hl5H_h;ܗ+o%rĢ/-_(rj/Ðv'v)q[ }!qᤧ7R?.|@efNؼ@a} ^u' i(·94/eJU[HQ@-򕺌E8d4j0(8"'CW]dw ڡCgXA:KjvoT pcjO'TϱTX w@=_ 1w`Ez&;ʝ'kOCbBZ+a0<7@]X*bs>KOZFY R8!ߠ5Zoe)W_b!}h lpJ!۶4Ϸ,RMݽ>ـ ĹSCVGjJxZ<ӣH0A{V'FI[ Ji,d`RB|L았Ȣx g4\NZ@[u`'"jצ0N4־;+cQvf;kKoM ;L7!KMRqqHB   Ŷu爰Ʀ;4*8rrmDѳ"csm6+}Xq^j!s6pyuHT3UB̋z@o` a/>Z:H[̏u C:b/[%S$H 7 F}e,z~YO?H䊴t'dXHkly)'z/@a:PD+3>У Ai>S>|kSt!2ZuB 2ޟY#,~dc%XL(O 9GcIm1f[ V{1*;e0IsHVJHK#k]߽ OCY oܣ*$Жc.;hN4&hXL35%A ƝG,mxTUoO\G;,y[ʗFUM*.ʛC*5q]_zV{.8T)]/-SZ ^VdI#VXBG5lXs TZ].Zќ\W/ݞ*mz {+MA|0z7O 49$[?7p2&xs.+}=c"g;h!zqPϣ@uF.Cbx%&j4AA&d]G+N#]L8@=fOOǏ>-~47KQ#?σѢߩ]E97Ο+xGVF|#@̘S)꼖LN%VZ9"XUd(# `!߂ f +ӱoW^[@W3cQY]I)OoMh=}HGKYZ[2Dĩ `Z {*W_SK;/R!>hEUq\8>ˏ^vl>zwt߂.B2b`;uYg$bߤ0 48'/&{o^eUjqOF<vKF|!~ x)cZ}4p5cOMnA"(| ӗ9NJa]wݛ3R ,g1\DwЄ'>n}9>._߼s]> 3?8{)fP9^e?T)K F裣sF\Hk8)2vPiI]8;S [3 jIҿvE { ZKKf}HDx +{jp%PWf“_iP[?V0_1}zlLcv,RM_K6S]/]!9ndEgX*.H  E- [E~Ahu߀,:luM׭IIҷ(I۱{v@хD[IriDfHqm\WMZ~.D k;>eeJq^ "'Aˈ7}dK0N,@oޛU.֜AT{GyXW{ wtuRF7 sۇ_C˿n˸%y}Ec7䃯-|4cj ^*j)1&i*0fE7Hۯ}_`V-_F&W*8 8+`.vgkxU<<9лgrqVC5dnA5P )j9Et Ș'Ƭ=d}֞=;u MY4rg{%V%E$TtԘSB7a#z־ }\AJüjSW^!VEJA+!'%B je+(}\eLz(W(ZF%@2Y/|f. "W9%)ahh6~5 ~-,*O~aӪNGO\ϯL㟯L~<8 &gfe#kcQυ(+ A3ңCBtOL&&?%ؠN,.ۮj' X)*$CfQ~ٚom/!R1N  A0.><{0bzg1[ H2 U@di:V lsq1slSW w`X2x P* t,3H?vC#I:2 Eq-RZJ=Xnz؍Ǩvcd0eP|NK*?.mr'sZzPsz~Oֽo+521)5!3Q=+rg eFoŰq,khb1x-Sm3eDHr[ikzDBjƉgAQ&0y;fOt˱gS: hB&#S; 0 Lc^>L*w&߹Аn!ЗwSu\ Rmcʆ޾{m#4뽰 |hGwz~;M<|DTftuFA仭?N;+:Ld8BMpۜڭa*Ʃs|dY?:y/ 8u)X"Bh %v:O 9LKsJT܏~RяO#BUet`mǤy!'FB1] ; |Q; QADG`o[aa>&D a07hP8^LK%7Z!R&Q-gh/Ծ@:h۾ qp<3^͔l 4?=+aPp9f:\艢;X,RKfuk"  (,eMj!N$|_ ?t@!ff"I֜`@ڢijǿPW(JqS o'-zgRz=ǨNJwNA ߲Cވ n|6>tE+v}MppG\=/ _f߷~bԸ6ZՕaWQndꦸ6Q fq  ޕ8L? Oz$W)=@NqVE+b$2}Ma8lȾE8M!Fo͐L4wT<'ʵ$Cx`QJr.ɧ hjiC|2vx~fuPj /]?5bg ux---OAoѼюx5,萖T'1"'iЅA~T+5'*WҢJ~KɁ~nqFim\ LrL,!;繳8$_ly,}99ʚDOS3TAJ}p5fC({yeѢycɆ1T d~% GXPY~ id0E6 19%wQ ]sҩ|#LO]~e$d;mTpXmwJ< v8kTV |_ڛNO촐[w1ăj /O?9#1:>I>J*Ā"_DD{@ qz&N*D:8M6™1|C ?CwQ%NGFՔ `Ŋ/!]K:߈!f !ax:X qLx~6kUIUq}MnZwGNkz6h~(U$TH[f6rL"<7 m[/ũUj~˥orE$qUsؽZCk*F}vC曃"CS?sOKF_zٹD]DxJ& l V !Ct_ tv@9WJ:7DҁVPt SK_zBuzpWDn-bǶu;<Xp6 LH}wC`EJ D{XE 셀!яEwhBD>Y؏zh@;(fJNﶣVbۍ (4&WokJ( a?_:Y }y݀c>Ȯ=(#w@#Ԩk/M4pǻB x{Tt3$7&H!BߞT BAشf?G݄1 ?l\ޗ8 cu@I&I6^~WŽj͊drL>(O !7,\GY^Ҷ Ҷ=kע!0{фm?@wYgx?Ki9tp>L6(8D 4_ "^&IL|䁸pYL,yF3d#TXpy(n; M `]ǯsFYAi5[^VquټscC6vn0ygey^W49iIý0%:7~^ssd!wm6R})}isnF)]/l)>k;Wh`nk|3e0S$& U{ H8<"FAYd.z•gaV RgPwdAjq%Ewr(Z9]Whz[㏔XUQHQ2+kXdCN*j/yGm$Ni0 DA͛O*tǜ铀&0>k!ηSY{iBl݀MҨO;*'~. TUqV;-j>8H o.]5HjVEـ1_hˇ^tU [ 7}ζ-66q١'7>JtQ~G8f2OL*+U+,ݺvձ2ܶK϶ʹk;\[D1 {:@g{5chhS(JYG'ː3|) 1-bdûoXd5_<3QnVZ )[k(Iש*rш͎zyt66/@Z';p}*yȒ.zijd#H=8b ӟ's68L*DŽ{ze_Ԝ,NVa^$ hlFRg?qwĻh5֜KqA:pFG^9 |J~W謁FF/RI$d}^۽7 lޠBYź 㮛ΛnrLBdqSs|8qNX`qLm]"GUs 33j&t :p 3Џ@ B]FďF[88Br㪟ZsDԪ]!40=VqIIT^ڪn]KӸ>Ign1DQ=.ӗ_bi:3 FTE!.{)[KN/~^$k. oLѣ?A7wNW| ,c׌w7_›QUE3J4I+ `v?I';1_#gs`[5̌޲'Jf9]% kI'gVl+͘HU2O˾E˂a4x xHZ4Y3i].:jK֗+f[91DU6Pf" 069U ||Pd61DL Qx/&JI>I2SܒKh﨑\^\լRJIG +dAi۟(K]xdb`ɀ}>ş F(.uGmi}b#M7~/=gLE`2tBuIF_^mަm .XʄUSbDVb|57ɬ [Ce X]ݼDQ~z-ia_Z6RtR]"EdiAuQͰ:sa@CVMҝ&C12h(같n -S*[rnHŎ7 1vU).ZЗnF~ 2mg[XK U|нc{;Έ'oGCkA"EH[~VF6٧KJg:3o*!\[]9cicM↢+kS d D㕀DMm*vDwzps,iB<{]u 'ѻ: u'xY-hDІ5`d.fd_TPȳ1>L5K3Zb[ć'Y[AQOn^s`xD#kj*ze<'N 1enWKx _yu b n7(ƌa¶`慼+i ,EȢԫY ^_,jOZ?&|;CPZsi\~׆HE9 'WeKA22MU-DTHT=t@@ 8"A-$~MygBL|;7<9c j|ALe*uApck,}ÚiэՈ+Nm [Jw 5& vB܃o҄CHW.+xs7+aJrK)Ǡ=ҪW4cʙv)o9ҮLp>#ůUng^nhIT'vA;s@GuGZ&ax$}UƇP3$KLpKh~ܭT:%؁ nPRwxg9dp@ֺD#"UMt'OF6{~ w #'G0T%€s4EERޚ/?FjT!+fh#"9:.7HkztbmFQ) `Hc^XTVxg!?"'3^7vibFjSj{`8uUڏؐ#9в:z`k߀Djwt[gC؇@4t{rHԾl'^tݜGDT&vNCI=H0I9;ޘHBzN,o*?QzwYJ#h:p06ء98,4Y%v5} OFVDzd!U1ƑI— KZRɔZ)=|n%1Óͱo> `x0O¹ϫGi[ۑ3hMrXO@vd s&A4~vv8z 矐IIA_ mWk.sg{|<YІRkzc_'Ȫ<{rkW]:' Y<H$)#n)+Y0Eǖ@9>W>@ju;.B|fV>|H۸P[;<"H|'V)Uuf UW^+r].rWMQ hI_$o*xW9.föN~'ܒ<װ :C&ˋnrT U,ǞfiFO/gY@r6lFJ&@ƍ~@H1oU,}0TI*F,wy4䰮1|d#ŜH7[ %65]ߋ|Dbd,>H9quID1yc@d_ӛq04` k^.ݮE) į$%gI;m+'mx&SR(c׳kz|bP6ЖǒpS%ܒ0֠ $i Q] W&ټ6o/S +\N9`b%G\iM(*.2g)>TnQg =@ p"{t U4"c1aLv0N+'Έ)ˆ.&q$o=HQ$ԯӁG{QQP'F|uy?{=P%CxHЉ..؀~2=mPKtgɔ(zX^?KumrHx͛4ݱ`}gh7g>FXI](X8 B& J]MfS ]sj܆{ ‘GF!iX&1r|Ut2,k3m)`hg'刑E[yv p<鎥DPxG3me@? e]䵩msDzCq\Э! @jSsGsaJG{)LDw D~J_e}(\ N9=4a!=EP׬Fui"RTʌ7kdЭ9>Kv툁?ZjklEpƓas!N* *u!b6ƍUldvƿ؍(3CXL"%l381-:h, z0x[ndZu!syX@v4)R*p0b$.deD8M<tj$3 ~6S!i]7hT60d~c,lڈC/.8Got h,r/2+vK(yڧ]f7 $%F]> b,^R'C졃Á:0р:isT.zW3)մeE5*qpZ!s]uO[^+Q9vB)&zbw/Q\u_NRjRƫkpخP=O yNi/_yϺ`[tG.m ̂;tK#EΦMI:}d|ʤJY;<%*Qi-M$P R=#Iv].Z)f9:QWѣmw.raO[q;o-iA !*e؊{jg[KuEy=yIGg{RzigObxæjqÛ+J+['RT{od!=Cy1E@ij__ QOϏV Y9UfRZ=).b]oWj,i~NP$}99CQ_lK K>#xGe9  l D [@šzi.(V{IB~}^vxN.;{Bt8ݓʯdcc*"8&x9G)z3 =Vzk*LB/49N8c 8-|4I85j J0@C@\eҏz;8EM=#єoKKR۟ EV@p,⮷ҡu-=F (qHqa$ >*'|f5y5d$Y@7'`k)cs5Ov;LJ'lM;K_xǝb h,!!' ߥx]MG躤W0F$=#X v<~eem ?~'@gi ˆ23腼 0YuHtln#NP@D_J\܈+wេ 5qlH9Zmz=QF. bXt -7R5na56IЌ\㇏Y9+ˆڪ aKX?+85wyԃfVTݥ£L!.t˔ȹ5OȚ9ׄ ]Vh( ;c[-n>Sqګ Eʑ.xf(XY|kA\#O"O,}K',,mKtIuh| 3a16OM2`@"=7Td?,Z̋'D4[MNnUcE1TU`FGm$!hBR_b? HE)0B2'fHS_9&È%|"0U9AvG6 ogS:~gB,L@)ܿheJ]zola3idx=]X^.pe&#M *013X#*r5)8,zyA&p<"'.t`|԰HOӷg]ěxG)N&+QBoD<.':ԯkIo1Fg9i;!q[ QC~دXGKƣ ~RFYwo-HUs\9ZU~\g S=>VPX'WF@螵=BL{.ROR NC/#jC[gz qwݶ"[(LB[;@b>eJm᎑4Ek ]5 C\|'|԰ *usޒe0qJ80(5`N~qyPʞ6Txװm~BGXJMћB'qqt'3^l~A'_' i׫n!qtV2dB 茔9@H'`c ?R2m$5> 0֟^\+Zl]*˦㩯t+ކ!51_lJ.6c paJ-iA30Y%>WA?g;]sv61ULHD(Ltи`hi:Y2盞x9H<c^(5*YO@aQc3h |XmɼjF:t }={PC= |0^:ԭzLqC.zKu ^dIFegDev0tV4e6NU0;k $aR/3LFt+ g_}k,"%""=͈_Q>f\{{MW;eM:{K6eMsw*jsY>~q[ AkY"5qߊ۬~vQۇ(Dm!5(5|(1=|ET+6%(z܃b2P1D!ҌwUj<6M4p ŢƃoE4Bz<$9R0O)$B)'+x` c˽=ӜrL գו(8wp¾T!F/qLò,ꡈ']J>.gzhΗ [)_ț̃tUCWeI9"٦1Ɍg(<,vE?֏8W6ٙC<%\^ު%\%A" n 8#4 ZcdP?[ԂJ0@ yYރˀ#""KRW:37ZK )J)-_ etXSWeVWJ%+f5E J(i1ܡleEp-:MK 4e(9|K9ur49/Z]AWd#'x%9gBlJ&e (/fuΖ"~o;I%ni 20 /41]~Q6M)2nF _ٰ0^#i~:v1=\wFfcKH8)5' ]+Xtñ-j/a]fױA#elYj5T R.Doh8EnF r6AYf4b[%'uuc B=5tq;b`8?y/uw{cD~2>Xk,:ye/c5?4r%긝U =2mp(7ݘ,8AJTz`K9Xv~7p Miv&33vF.ϓҥϜʲlDuϩL#=z53@ wH $,oS`pEv-Ҭ6wq?^OM BЖh( azzKF1Vuq1e^.+r`B^ۤqc[cTSM6FP.dΈ@\\70SuIMMFŠ NJ NrPsg7$5*O>mو H˷M+Nptxź%}Y@iCǾI2nT@QoXB5<[G)^nOBuAC`tE$l8 `;6 1<-,$W Pӑ\#zkʓZ$jV[}쬩o=CZ1kcCb2cAUYtX-hbQf%wӛ ɳp\^`s X_g{Ub١\'K}X/pH$ftJ(3Ft/|=ht*fHdvp ytE8P1Z]e9蜦otWNkp .4 m\ (7x>$cO&+>YN&_[-c}j}x:n.m Jy8^. to#_m3ЈS٤ Qf$S ~2xf[{|6?#̦D%c10?Ά276MyCVt7Q'IydxzH3#H0ɓ>mv RY~(o} Mk;_eC€&#T`Y-lRxN4oJ6gэAzbQVɻ[PKI i 4&IC|b|97t6/͎]flTE kU>₆qwļa?̖21?4͜@Y[\Ǽ4C+{{=ZZBOp؎Wi\I^ee58n#˵` PKVT]j"6~'owe@ {b̀{˳z[~fQ&+qGdaxd|Oxצm&+}FOrmh4sDw{! fZ >9dnZhXXZEc@v(a֔' 5o`c.**ѩgaTi̴zǣ!Ƅ5hbLLC{̀Es4qU^TF|"3!l4lQPqz?:3`f(sI+% Z 8?ƻrB!Uู >G*q0SV,Q6UDEjVi  ٲvM* ~p# +>L0!y6DNb(4x# ~egħrvW B|~&8T6c,^=X9f[wE(~,DQokgQT).䌐" { 8T~q@ $aFmdΥ&XTLw`L/mXB'E rӸF"^: XacU9>JKiԜPzI ߁/:Nh!24yǞaJkJf\M_z567>ם5gR+]Rp`wY7 ųPW sl k ?Ź' =6+a!ZrBv:tPnD,#aNWF̏6Fv*<+y{ ne$p p^+)v$o'Wo{?

w㤦~4Ucf1rfqM/@7O02mW~ː.Ex5 hZe ei篷MTy78c^M̫TuG{EL-~*Ց#Qw?y>jGWewvW=ZglFYp *_6N`I9ib *±6Dݨ2/ɫ')X/ci `$'%6zKUjuMM|2XDGvuuÛD\b~Pm}7NԟLUkhQiDb7ؒdzGV X<߾xײѴd͑T0g;|ayߤ'02% u8GLgQd"XfNVͥzm[u0EqsE<7F}\ػ +RJ;%]"USne"/gAAyLbM۴,xIO^%YC~i *V~zg+l9߫$D%)VZI7:ode ] w8(6Μ=vb܍.6Jk&Xͫ-I}Tǿt=tL@hAXTSisofm}8BˉV)} B~-X T['+dXeRHܞy)od`}QJ)u@#X$Ql%PYӦqasЬ=z1qEPsG;HkZ'&C3jڙd[*v$SgP?[p\clK7Xš~Ɉil5՟o%Sg>\Gũن@}FU=*xx?JS8LeEݏTA!mԞi oS-zSsb{GF488 A\^j۲Fu^=m@*Cer4/EU[ !YA 凭ΥfOҚg-C0q "Q\xu,9MokTm`U x-N۸̪q;1ӾigۉW5Xy|jj9+Ʊ)#@ 2M1P\S'Q Jb86/֧!˿5}/`nwKX̬'nX_s;JcyfI݄LxkG$;-ȥ,#vwHf)0ƴސY 7zzY.i8$%͐[iK G ֕M~Yy(lv!g'eKEp$ GPr=^@ &y,h֊榹*_vWm$s~ ?b~$AWAZשgvIT3b2-Gj%Fk:l8)E`}lH[R I \]; js(!kuwYο6:v3%?y*AiOX؛u:lvӌGl!.r!YaOXBdz~uV3r|'"m8J X2~gO5YDqvѰGrK*"sz0- VF9' Zm|0ֺE{APP3 cE*˸d_ޠ.? Mݑ,PIOU8C!=W2)bj>X)0 %[nޚz4M՘ +/ .3WrwN%=^aj5{ЦvZ9TG9ǩ~hƊh>TIށD_8$`bP¡[  u8bJ-aykҞԧ Ú6Y4 tQo&RҍD ?r-iɰAgy"LIFE]"lp$tKOI`:e% XQIPCHA8>KZ_ڰ)'X Y wu&~iV2BMŇfM* 5W^X#칵 ]9 郆}!:ѣӽc)ǛKnMZDB lJ'+6 iYĵ>Qq.lEӍy7 %Q ]Z5a-\K0wÛɶ|M@7B6_U?;YƈzQ-+ UR%=ley# }*[WuNΝI7A"djYB2epi+dǜ M#` ? ֣sE ~;hl/WP O2^et{M[=l%Pch04Df+?`!LS{PJ["Y4ほ8w *euŻ*`>YSsĤtjUQ6 hK ƥ8( 2ɛ,Et|H FlA`+?ԑ׷\Pk1UhSL`k>S42SUj/@5mmi# ^Q32 {EHe T|;Aix Щ 1˰}u!6ʂB\rP@KދansmH`v=m>9bRrZ`ܩaghEmܸ/S|h7`9/r8Ȟ߯Wc2Uގ_Z~1 Bh9Jm~WIM$Qp׈"6ϓ޽GNO㛔vxe88y .p ;/PM,L#53R.0.uFjd` wM|!jqKwÆU>M^mD= b 3|u"▪!fRG-!_⧈6~N6 VkI Qw@m2*S;Fİ En&ӣ_2 Zq㑈]ŽIZ? $"Mlͥ{qZS72/khMvyMd7 vn{IB.nXEk}:Tڀ1⨏ӷce16]d6qzi}fwxoz!06X-7 qn[ҾZs4(yĿ?ХrʹIh=vs_}J)VVcSuBCrN˒WR(P5~^ڡf[$w e>5=ej}1vNh|&R(Bdޟ3{Pp}E1LR ݔ͝$7bgo IsY`H^)Y qw>'i{[*'D KɨUmPKv.d5xi7% + qXξS/amm4ۜ/hbƮx0{k ;sP&A`ڎ,Ze"e s'P[}]VZ!}Nb@,qDϚP:u+/%6-P> ʵ<_NK ]< Jwyna$KYF*籌1DjU@".=t8eٞ\ o*g bHvm'hc:(]`.DCnH#BJjŰ(`Z2mLh lrţJdFcs%x(xQe].Ń "ӾFƲ;| ;X~ |L2쿣nr]lə2_uKd;՛LIJ'>FǤHZO*D.{IJhL*` @ ٙ9q?LrI Ƨ)4(+=bai[5IJ=CID2 J ekuUի C0V} ɮdT2.@[_WBG Ie%~zTZTK (Z Ulo UJŢ" ] e~QhnRUA3FV[*{sK& )U%!LuW+~"Zև2dh7/ʃZ&7$\C vDqb8-~S|nk&! kl䜄CMjPԑsۥKX2'g!eGO3+h8>8]R1Ee\MDhjmR}ٌ04.}]kqb9&| F&$f5=@>E%Nlm3 yoT:;ld\|,rK=ЗX"=IO+/ӵg7s!o'q)dv 4n_N3iGs1#c7}[anG>cڞA\.ƅ3% ĥùå%uc=m)G }$ۦk61\ <+Mrdɻgw7'8>ښ;( Vm2Gڌ  d}S\mV셁h|zvZh[nyĕ44wY٠n&Aux 0iub)彺S^*v7$)`8iG#7ԍ;A5Z{yIe}ѾӝP:SpPSE^pduj$yXa& 2kǯ`\,Xb# @HN=-H̍շkI EYtlb+Sr%toJG'/F`됐/X⠔xy%#ޒźS@ߵj ?V "%܁>wl-IAQty}dc άlT\ijkM~z HEe8Edu,f9s@ PԮeǡV+;Rr|ȶ\4p_pwV#ŮP̾~+ &XaEV+сJe"9G% sXJm!9gfreT e5o{'$2JQ톌$q5ړ;1v{F?&FrHNM:IDrԤ|vfmUxk'XmW挗~47|և{r ;i҅M:~pWM]\ц< h=c1<Z-۸VvMl޳XʾςK Tq~(|]v8-.?!BAiΈp#=ۢV1yx"+o@,&΁>v`PAY$c]9r Zɧ(!̤A{<5?#ϗjM/#y΀NQ9xfkfu2bRC0X)97"Ε|%*x%f j顙/Α#J|E-UugIS9?fqAQ'/)aȗV}4AJ$lTz,r9]j1HT$wvew G5SlWWMϖO]>bIB}M{73oCOPxzZB &w0:.yu9.:kIy`)2vTnJrH/O0 +ue H{_CM=X:x6':>G9vҜߕ5Zq_q(kx-X_8 }Oϲ 2g4j94ZguFTޤ" KRo?^(Ahq0LH/݇j+8Z qkiww2 [>o,C7I։[sD+\ _jя@2dcԃeWv-#$=>ܡw#$ϨA!NJ+2겼dT!Aq{Cv{,2\{{6䘙zDػ乴i̱2@W| YL2 \7?vΟ'=r}ooQзTP*E_{jhʽY{zc~4d:q0. {Grm|TRA/$vn~TePacQ@𱳉{*CR=:QKbIֶG L[ӘGj"g5 "T!Z!)"VosdYqBLPB"~_IqrqIպ]7k "QHg"ϔւo ~qa#fnyt  툄rSF5>DEPAOie4Ku#G䡼QX2ϥL;l(D!<| |lUVvl*TXNvceJ18?{*tklѼoގٕU2ƅ%;`mIy<IuK \s^ڸ#`! O2ߘq=xR3b%)B[v- 0̄ RG~KqCr mH=ʗSG2bZ<6[Z *j6ywy%Ɉ  v!ڣjjbA/=D@hA,8()kQ:FdZ( qg>c,77jOlDևx9³U3Zit&2}Ǥޖg}pW\^gHfs[)*W 8Y- ;yX7Ց᷒,z#e==z  Ჸ)( 'j8`Ć~d23VA7Czy Bwu#iL*`լ/Bw { zaǞsXЕ>nHNDIp|ЦgAdN~G s"A/ZjkL"*/PGCmD̵ gGcNp@ R@\ jR)SX`w\GL~.㩑6 Z:IDft`|EP`W HvgQ:96V2-iF&ǔK챽8Rjxu@28$(/PR'=IEw%Pk[lhd}I/5YfM!\lْxm?3@#_$Tc=X9֥Nt0= ]ga",蠟p͌c9*] à"3(Oqlr#2.ޗN9(˙K5[,rيAēqB~qȐaop)"dNY:3pYYHjBF I_Nv-Gn^Dcp)S2[/s]fm}͔w~bOdX;}YuROs1qCCH[L=#LXE.^G{Q0儒6 /Wj"7)&走62ID Dև|q*?LpX ON$4'8#'IlunzIs;R*{A DAPqW[Sע)/i]nE\Rf;%m\5t1u`%v8_J:ǹH<ˍ>*}wS&hgX!m 묲ĭmOr>'vk|;h:0KA! LSw2:P22AܴwΜOkf5o_@0*?t$٧t,ƿÐBlwM9U6wѨd8601o2!~{bl`G٪NǯCg}~5]FTX":m0 ö \(Ikȷ3Wc]u=K:y83{=52.fge3OU_rPe@/}Z&wVQ^X=fk[ fw7VmR}1U Ҡ W=JGQ5^q)5ۖooAVp^x}䫉NKש!_ޝumLhJgI W{>%P~!00 Y>O;bVFX vڜ*R\;Bf\pf nΰG#|ZTa.BPY|KfWQǵ,{ m`H!!bݭsd.I8.j[&Giwмi]ga?еϳ1NpOF2ډ}%=C:Pq$t|cPcѶ,GC-6>Wzm?(6Lfhpkaxo?kO9$+r S'Fe4HBfEh'õLQ*ʰZvG{'Z^jP I 8V>GM9~jU>.dWm̞aXeC>`}Fv,Ym]4}3M1-p>N! jzO&E2ܔzRUnW**x_$%.GC5cV8IHC)A1 S|٬[veb棕M֕}I ()!Uh'8GYC.mc`aS̗w^Px)] _»2Ůu4@;c>5\έh)~3Sy璀/^4>l.OZgZT%Mi<CZd"J9L1UhQZ Ld246c9 JԘErc5g4).F 2R#yж70jF*ftƾeN"8|ri%`S !fȗq (q(Wsߔ"Q24nCd0T#HwĜ3a\/K@m[0CT*ZF@鑊O,؁lZ=ĩ;NGnk! \ςu?kf#Ԫєj+=Ⱥo%;)-tIPn@EqEvA4fZ(R 8g@ތI_lJdzHPǛRd[`Rv 4!-m_у&K\*0J]CvʜP˽ C76wdFlcS8Y3xonӜg4F:7g/VQCbʈV6VʹDBf\[ݥ)9{}9ڡfYbB@S[4K/RK&;!Ac oܤD\6+GCfU 5jL.{x?[W5uv2ߞw$R>{]AhB&A/d*_SD:L$S@5=m- uT- _ⵗ*&0OHqgݨ?:ɗP#B:sMpw ~6[|S=RR$ 7)җhy)*Q%މ \ Y ^d7rnJvYֆGRz"Yi` [FWy9@|)L<`]T)3 1">ٳ6LY1THltTXJIД::͋YYV%YB>ɚlP?_Ai˄sToK@A\wN $gWI.z:nFPW)^(f"0@*%1˷DWJe0&J2@ڸ ;S&fl50ևyaUKc t "b 9Ԏfe5=|^Zi59a`hgO SqYI.qv\T /8mU):x8V?nP6{ {68 F [N'<yKpE8i~]AG4: `K \g@|T`8#8;ssJf WD6{"K!O#ɜ࿲9͡|P^|Iv}G|(m%?)/r5V}|GF H, [!}%wHd;@)YP1 -Mn<2TL, wمY!"!J~ ;k(_ ?`\_7t/"=+-)0{FBS$hTm$ A sȆ/Z{P~=Ds3sۥ蛎Z<-xj862Ĉ-: X[N2OL&p|wx.Mjlt~_$ݠqg8\M=O>]l56!.i7=A, q2k[W$-!(V6 cH ѥVsB#N7R/h&IDR=;AE7YN#濛IR%@WIT1ó#Y7ʖUnG $dEY3fVnՓp#47yb"n ;f[E*/I;}$ނyM UCY[WjOg]--0LdJ "XSR3쪱/AHN/,fh-&,ݻJo6A -KyW}_I\URzwX:+Q-f#rMx%`ٮ >xH\n[ LsIS}˗ce}{;>hL!㖖ly^,kċy!ɋ:X[U¬k:55*=۟_Ep_Q|rX*]{]-V;.P`|^W:5/&61dÏpu"g',3_B]e` g5)Yq,R8MWX۟Kb)^|*3hT?j^QedLQW[׾f; j[*':]-Qm7%˛1so cWgI@:껠}׏ Ô*Q@+!V;(6qpmSnj^#Up'sIHDt!!u$1ܝq㪊,ߏkBw|s%y8Oae\6xZJ*U ]J0ٓ6)9RfPO0"@VDU4G)< hh[6kΫXeJ**@w}"N}mLOHo;ik*Jh0C,*f8`ftfh7r@\cEB4)?K.5͌h.V $n㛛F$s hBRJo h-3*[6V]">?>7ͧoAg-rKbR%MfNBLgEĕfէ "Sq;5;Zͺ7)5;@[$ƚwk4P~`P m"  [q}QP5;#S޹qo__"` @Fk3gֺl=xO7)NuYV8ΝeþίD5_񶴙 0VAnYT=RlGqF=vGxhF ٢xVuR؄S9's{r{k ;pArc⠮jFOf;>T^ZQ%zJ0 "U4rKljGp028au[O1Ҍ[0p 9;P>/R ;=!%]sD$3y%%j=Ьhh37[uuNUtJ'(ę#1%mǺCNh앏=RA(!a4p)j|_CC[/Imz)9}4HY0ugZbNƼ9ьge*s]뵆Hx tugE@)<ꨋ*BVS>=26Tzg 7^㢨{WޟY.&03XL5>2KzűR<Ā[v$ Ww͝{s='Beศvrը}yvH)-= oМ.~RRJ9Oo`蹥.J`QmWLf”F+}faAGڍ; Ղ;CR4Qt^ڮIZ^)|,iC+adkZT#sɀT'Cvtr8!{q:to8g0)ַ=!?WRUGy5).%(@\ϓ%~ǦqdwևEIE4lV/C@%,[vMվ,9zl߼)y!Q8n]:brof9@m|^/ZQGu,wG}x:pՀ1kKM ֛̀%ˣao>nG rxA698P5HJCыeDk(~j=|EB{KU+! qj40A+^O^ A"FjKgl`rEhEP !xC*"buv׵~v%v2?1PeʶP^|Y7> % m+Dj/EZgCULY%5 >UvPck uJOL a85OD6?QQg4E c+D!hۍL1Uو8"Vt҂ULIigIhml8F*pf?jWRUZHPn+uq%8;T߲8*:wQ[IJU%ǿZ_L]4VϜǡ#=Ԣ<8 ~+BPOɕ!?q[?foɖJֲDӄĹ1vf͔$|pdOұN6["@$Fl|+p;lm~ 2P퓮|o]͑̐N|R%zYd\,.ߖUBEV̽ʈ̸{s!¹tećyVvŲVJջ. +僗%Je {&޳qC 3ѧ6.$~ /f 㓻X 1R 0UM`vtH&QŸHvey3134-!08c8/(bovfߓ 2,$,̤yMxMEMN`.l};>yCM I5 aօJ$D6a-,/| ՗QHי1|1ҽo79tϢvpيV'/Rķcہrܡ@s[it:b¦S(~Z-3NK,Mc8iPZ|>_`f?cem#.^¨p_! ߌ-o wuQmV2j/_ k"X5/ >Sit~"K| x@; zaBQhqoαIMء,eETC. p%n3B@\Tg҄pp"+Y KcE/L "B%%?U>hg"+8p|>"`IMڒ4*R{ܳ_b}#{P)] օyFW2v*]]LXY$u?G\"1i ҒpY\˲zO+6+i',@5y܁7bs]mFgN *^Q·%:k{kf.{~@B3":ȿT霷 |S+~,R1(mhzV93ވDl'0'KIyUd=d|w~Rg!\):3*ex)"W'!9TOK+^L3 ۘMzpZzi<.0z49\|7;J82@jd#*+/}Ӟ%Vb9vշRF 2<* #@ѳ\S :L0gڔE835ZLrX uJk=J :l'6 +C'-VȬ8 n67P'%ـ@^_;;N"*h`$yz@=2W'$6k-1*=uO5 `/+7F:|r{ۭ 64|/g &Gשb75N oO Rk8Mlbm*eWC ZZeףq25ta5ӥLmr>k-_Po8No &˜Dqh{?K6p™nbeeR!a~5 pWU3fnf|RE3Cw=A 2uuwBɈaAOJn';P3JMgR= a?,L[+:{qdϛo܌ }R_Iu6.磅PfF@h7%4E&zHl8(Y>+ޒ *sbk_6KߋBɅIpY73o-| !&!B׊xnFEX<3J䬆I|jCX.&|x 1Q\W ~׶DFA;(2wI:];=eSh,mE Pz܍a1/G>%]fj0tԘdIB_NJG[?h;fR[J)y X/}&?veeӲ(!& )Xr5g͓d7icKR񫔕;@,7zm3AVuܜk6}Q nj85eP?׶79CUzgӻv+V >׼'_\h1Kp[HlB?tzQL2)ьR}/Ouе,&Y,7ƼJkT#Cē,}}Bfv((1p{z ?sdJvҗ:^#$1D0BfK1)M R1DtRVPjz]?V~Y\_.Dbn5hZlZuw6i zrɘ608ytt) qTts(O3gQh d2?ʑBo<>0Zp3O}\*Y+&ۅ}4ӵc CK'̰)) Q=X@H :b(׿-CdyBػ}MdLUxT֑rXtѲRAa3;O5-1n7(-0üfnk.Wbw@mƆe݌SsN"Cu/0dS7wOY:q߳Py-TZeiq찂ywۛ1Ůl!}`eV#hH hZFAxg[Hb;NGxr3rNaWW0(A x My߯td6T&Fn2q//]tζ\6Q4 o YVP U+sOĦLI8}Ho]FvX$[U#brG,^Ps <P6 }!FF*zx~K6X=pt:"<86;E|"vzkQ^R*G+P?9Gm|24 n30|l'&ܿR͐7P=^y ,1iEmQlбF{ գ@x,ur/BG  !..֕'Ryqmp:p|順(o:ED`sRޯeo6Yɿ%83(]~V[j dpT,Z`zlיŔ3ח]ݯJjl2=V4g쑀ދeW³(љV,lL?mP&<v)9xfJJdt+r*4wꉳ0_vpZiv߄?C\QgoB[) %E ؼgepW  )+b5>ﬦ\Y]`:H=>gp~[7PC$b ʝ.XOO4M~~p,RJ^G"pBwݥ=צܦSؚ[yy;OM7isM?b4 :!L'(&گ4(,YjHRt~*Nr_b ܗC=,H?/΅9ōeQ뭫+LL{?3HÃmCe($-+vI u+L&kza͙[f/5UA^F {ٝVPzËGA-:P5ԢRpΫ)Ӡ%kAzaVT"g=;ZKBDl)nGGJ1p)Y8/Tpmdy!/m>Ǜ/K9Jcv;oOu΀{faH ]_Bca=Dr|<԰F#/e&j/gLr|M_+&1"@8Tn0ہ:CaVt(u߰?ګ $FSl-*=~Vlꔇn`m 7IJH_" 77C@ &"7IBݴzJ##=9L,-Sr7wr6os7.De%#}^ؕ+#S0t`ғFQ&ĮuTt:;fN9{G.g:+>@ϲإ ;`5mۍy2(Vl{i&L T!l!)?)fZ"cr,V~Y Qr[tqɻڇGqvM||" f 2pylp)X!OFll75R$P~yz6UWp! 5ohU<FbЛlfkS_RHFFЃ&,mg%Otw ,,wiP&W6CPMn+V')WSXن<>Bg>f-R=23SuҀG,ꩴrvHyiŚU~`!ȉ֭oA~G-fo0NlcN( D#3܁ǹv3`נ2w$ 鿁zB}k˪ &3!F>I4> eeuz;|!@DW w T;é{ r 0_NIgϣúzHaapvgj . dcr>ݺ2II,P^=Fzr3"7t*_;Xv^$f#0h@x]_qY,O_+J\"|}GybUo h" Z%#3 ?jA1?{a(KԀir,r_\ﰿ遄=KҔǯ[EnʄDV~AKƤ6nP?~j"U5uAA ܰ4R lR]l\~cYX95(n<t0ŠS1t,׸XWrTL/c#]yA4jtPفOB-9< %i~^l!1"dž.$ބgf;Yd#k˂G@[]NX;znWw:ddj2%R;ҝ-n`JEϴ21p}ΰفYMN?l:ۡ$*$i <^ =9o70 EeHz$5 JWbLTSxtjAA,|H0{nw5;3A RW1 e?JT%qȜ6XXo'/ju+֤1\sk,QbqYQkIчPi]!corn-: _ P8ф1$GNeJYO2 شdסGP/V(MϢuږb1|3<5TLT|[Edgh[>H\\q?[C@ RV;>]MzFR Qy[A#BuwJbSJ2IjXx4 B)d8o 5f/rEކ*Fý=-vdƬ6 k%k cAkIZ3W4k>˧S0,D)@''-K*96x?%䈉K޶&$iYqL}ŋ3,10Y =-eN김Si)Ƥ6hȦv총?wP%|ܨ?IJ~Bճp0,i#|ɱ]7L9r&$+h;~l$#a{7(NNaeo9D\`4Iᶈhdm˱k}┽ A<* ZLh)|f OJ$Q!147]vtv[|'@>*!(˜a0s 6UGc fLۄlx*:1Ȭv΋?/0UzkK~1Xe w ^f1k+dL`/LHY^%ҎEAUFer kBՉ_!֑r1GECK#bXRݧ(rj>.hltvAK _!BdvSU?}+Z@Jx gU_Ez*^jT\h} \U7 bZl l<ɕ>LLoR3UzV Mಛ/-s倃/T 靟Z t/a~'|ю=x۷k)[hD[h-8m7dpVhh\']2 (?բzcI0Nٝ$3J{p>@p.vkR< r\k '6 T{xFj=m+ܦ)%oJi ;' f+˭8d6>*^Be25˚ ż) >;@V\V,GҕxITO74@BOGȘ[7h/\fe!eK3hy@/ixnL]ф75 /,B`.4Gf!L\sN/)ߊP>σ9*YM2vH3|jZ^xF*-ElҨ^yhpkL5hr&#)Z#WXŐh 7VP/@=& s=Lp 1(b=U0GgCJ`0Q%;8o>Ie+ڽ2Y1tvYyVޟMvO\ cT19q23OCR5#$YYUi{i|1X 8;ZL ԲEZQoꢸ)f+1O6,Qnc;mU,܄)syP'{$x{luӣh \K6X[0 `l˷H5]h/-)i8---vyD}ќX cFbY.lta,`5tAQV' (= pFI{Lv[N]jā61?ǖM__ Fd}ߕ;'}&5כ"BizitΒ̈\J_%-fc6i՝ m24>O5쏎D>jtM2b=]D~AfE=vŗl>AÿtC۵j9mIC\UxյMؕae[FUmא0HsJ\4 )|Ljg /!mFlw#F̲ >ɸJ|uCGMd4rN#<xhjE^*z\ܼH'_G9n,juz8 nDQFc;-ɇ6Ź4pA2$@@X&&:ѽ&rwt/֣؎: bqjpi!sʦ*#cnxejOa {igѓ)$:S6uTqLږ:6,ޓXMe !S)߂IױWWU)6i{nӛtYHRe[u%Xu|~!\fѪDjs24c4KgdtGwLh9쐳}옵q[!'[՘'h)͟[Ydd+vSeYd!9=vȇVĶ$ƻl؀1qT=} +j?-[c ~u)#׶FB {vGu+VO!\E|J+Jo)[>VD3 Ix -K&L^p[N%qmiv{9a{t]Rߣ6~.nt_~"R\]yÕ&mQC[6A=]LT2W;~1.s/ st9H0l>߉9$&5=AH\V6΃LvO; K=FQNK%'<{޾n#35b).ދO1g~rxxE yoܡ&5c/Tt̊&nStXWӌ=r~}*bcrKH Yd*L! chJ׬Aa:`>dFI$W撊V~\myF\F2$js[wR*E 8Lxȧڕ9ï*~]%|̷D'<5u,=!CG 2IO|Ŀ8 n4pE#` h*r>Rp7hBEhE5vh,!PԲѥij! PhsGɬ5Qnrѐ WA.Ș^(?o&(\E4I]h߃̩R$'KH_|0 AOԠm'"/F9jU>>.KQ dCI,5+ p xmuwT2RP&[ɵSw˂c"ƚTvĸk"1A 0[tb]ylka1pa]#"1!{:-n1Ŧ~!3+ ?ڙ:MF PI?En Y'Djm9fqK+cYaA+~QH0'J޳󰴐,BpyvU ȗt'E}l!o: ރ,FZ0~"r E#iZn3夈 V$%r8|o4-!NWѬiF'ϑOD6 J9MmSxq`)*8~b_Bm-H{l5r`fƝ3MiО'#6 ~z+x &{d{.E :9=a X^[HQdjcN-|+3:o#k3EATe>a§̮oK ;$gdC!P n}>A/%Vf^'<;nOZmAor-j f!KuAhK ]myӃ.3x+T4O?R糮 9 :ӺEe0 y0 ԃe)d\Ĕ`j8kC<vyvD!+:M9, 7ί7-p3Tw .]3kȱ+XqN cnKgEN}skq2e|.gf'\ %d5S6}zi@~{/'巵E]ǹlmuxȟ7^Nq4wT;Qf3S gHivXF,I8m)L#듍I?eܪ'Bbyo\GIx#(vh=)hH (cXb!I$zh)lX|Jfӕ|[-. Â{gq vWX,sP5]aj &"RTjcMCm$f@_8WPb~ԗ\:;YbJ)rW& }GosMD s{/rxގh{K%yP) ÏIҝCKL;w~<"0ɕ Ő4<5+_[ϟG`I^./!e^%J2ṃZ^ "f0 |} @'&H׳Pv_Xza 6G!͊x=EDZ?S,ʮ.8PObzoՋ:JH/'.gOL}^z{G7r<jH 8\N|;htllLjV.)mWr!v\>ipzuNYo_+yZ8]'L0j"ۖJxwtqD1s#Gq]7$SKUp k`0ΐdB9.O};*}/6v^jB"6dHrP4K6˭3\WhYH5{o+Ut:;:t@R笗hO[eδ YW|{'v-M7猱V -]NdW(/sn5TXNkv+Rݙ[-HwX;p1yTJ>Pfs.7ťJ&S/PnntjhZ;#4t%7`xC>H@L.~~L}DQ6Y z*7hz"n^GO[Os1F"cs$П% /B@/LlvƠxNԯ9`Y.%cy{nhiUa RǏU8A[`vjLJ}{ MkLu$C|h܍p Xd\w|!W4o $Җll;bSd$'UJ[oEFCY̤jb.՚^rCEp%;\;HTѡ:/y:F" 6=mqȳ+@寧P8̵kp6pҊ[,3{:tA4?eGњO@Y,{ڶao1rs0O h8 >c/ `4pdeOm6ĺE ][n2j!'.&]1dCJ6,)H%`x'1C$m^H>ܯ 3!st]X R3vMm"}HWDkő b ^?*lQ>k<~Njex`H_4Nk7-T*9~QQq:yIA3LnD/Ï3 ΁u.a (G͋W뱷-%g-U+hUW}~{ xM/">إİxTESΡmQ}͟?)Y׍!|E JAʱ&|!0Y̼*365V:Jг׹F| :5ez[;- Qv%Yb_և/c@0olك2Tt?¤cI6ʈ#rCH>ϯtyO$"UPۚ؅EHV:AMH/r~y$O-'VQ1nyQg]<(Rk)̞Y0&Tٟɧڹ2 P7ó$#i4{nwo\{fKTЀZ=Bڄ|ߘ;X>%Q)4!I mwŋVX׻`# lZvA.=Hqڝǂ@/?`Mp(^7J25t>0W( DǏ,qut% vO  3zaiO3 E{G9Y.6)_+eڛGI7L & &f7"֑3WwW4s˶]ukҿ{S =5^+`lζ/tpeU䪚%4,Z+ !eXTa/z G/>5d1ϐ~Q B;m!dZ܎n,1~ 4`~.c 7-uXBsH UJ/[Jpa1{W ;/bM eO{d:@JfA%^ɩ}Y Dt~0dCm} pM5SDV P1h\`j۽`1%(r^&ꀭELIhqrN_|xjwiw| rqYs?EpC]P.Bk+qmjfW<*[,Gt՟ܶ2&,2١?^5\CI>^Xt.[%*G÷j{lA.HTLjk$"8o̵'/ijQIH6574߈r9ʺĬQ5^jq~{ z<>B [nuxBN&/Ƣ s42Uͅ5}BnDBF؅]Ɖ'OSAo+_fw e:SPCPs0k0ꢲ]8CjOv{-8 m$+ iQwLx6{{+8V:FGt۴N)p%B?>biN~( ,w6jz }5H22W^Y*3k.loįH]V'PޟFH}.Ɂ(1xoJ ֊-HtڱE^Fj+8a i"i'_*?ӆJ'Mqqޫ)ZBI|fG/ܷ_O2 'h^c'nt:ej't`[uiˡ Ng֛5~V:[Zzv?6B&Plב|[% UzeFbĐ-ٗ(X^{H̆[c ,JYr> JЏG*f1])R-5PEfzx"}K23C3`ɩWZMFM̠LҎia1 ΢q7d2#&r5'<'hҩ"R @O\ ?m|YgZR OiWST QOӝ[xdjޥITjfNV%""7.:Tu Qk>"U6&M48׭QWBA_ KJSrs$I1|/qxևyJtxBr.֣΂8;!!6qdjg4@ dDEB:Qp&(I+@N1V}؈yry,Fѓ+ 9ثRǣ4Wlɏ[Ui!Fbt@AGΟM+X:Q3v? "1Hɤ֏qP 5peU)~ȑ_F-;-oUK,x v&<'5;U;т'C a։"4mA7+lt?ez;e_/柹X2,D*9(>bq,*|LS;T0K@p2?Bivx-ҡ~3S%p *l9%4M]6:!0xx'zYDNla2oT"-7!]}RDP(_tVkeyP;7,8eUĜ5k#icBQD$4hHӈm͌y0&i*P@̱} !VD|OMkMG  u`C&v_FTeu $7Ilj~&!>m xݚ.Ov9\r>z9IjA[W-EA븫"K5m՜hL#)A"z-ƻ'^pCLI"_3D } ;ݬ(a}o#9x7zU'ԳЗr e@T}s^a/˭9 0 \Lub F;Ҧn{9&b9=/Q^%O{ E狏ɯTvPCKHW;N6Ǎk(㠰v Y3ND%E^RQ|"GĂw?%6Mܽ3uzz%}Fd-m9r@u)sA6ΣL$[, (ecgWY8;#a Ő>9ʙB.%`d_=3XkyGa,F+'^rFis%'mӓ¸T[)ƞ?"q 0BM4]M# #lgj.n3ENb5ekа'qN5JF))Bû ^X4՗},'}y1qrӲlL 9NF?kk>9y3ac^uTitӨuB*"ge %y!m?Q[M8;}2Yc V@Xw%G_H.ZԘY=cC,@c"[qN)Z)zG{oxmpFNwZW#꼽YF*9 5;5$]3Ŏlţ=3`YI8o3qcn{BK~Ӛ ?f58L!v) T?Y/N{#O(}VA|KK giJHv=fidMp2m%Kr`ݶn@lQ8d/(~T[8J`闥iӽKXhF1ckLYwdі KrD#h0f$7 `SY*tNIN23, 2fHSQAvޅqZ{dl|'E35`;$vq xK!Y99<`MwWʴ;mұ 9 7u ]u6 xڠ*h\v(V%(ƥ`ku#k6q&5]@BJ|xzbt;Djҩ#Nv\#qg0ڢ{V22C;bTȱ`g1yLduPd.+.áa7-ߴ]fc.!1$Ր𠋏g@DtvteYejކΰpC`*D~m [" ,kbzl#۵|g7lܧu=챗M!=JKlls6qKS9X*M"+$H(ue"lVkn$s}bZ@#)lu,g{ KA&1ikL˯e+,bֹlOdӽAWJa%z RM"zL#Y"\~ۼ~ O3l+7%}w"#ؚA*q2QA6%<٧vK eym8ab!o f 7:5"an!̖;24b|AsƞIBMPlfcF:d+m,4J;Dtm3)Ak^J_X%-DϧhU&~P*%18FłKBN.8֖W|M'>½X}3Z 4+$OefP,7mQRoM>a7fSکpuidr 9a-].ۜ9@BX6}Ufx\۫ŰkxB>|9x c>}F£EXt$W%kYM,kGc |qV8ŵ@SMU"uk׼E ["?Gi5]1BqeMh|ƒogP*j{I#BtJzZ; Nf/ w"̀8jT5=n<{XsrE b7eOw٪M@YTKzLN"#1ЭN@А. iQ=;U&j0zױw+R=DM%yExVݤN<& +<2pn7Af1˙+5Vp LbT,iR(@^6S0G.:L+Y(ݟ`=o{4qgEaBV'ǺJҹ9fpCH(b!@3j?]^'̬Ͳq_GYAN!DQ\FSjuopF/);Kwi^c??[fu'fM+5N|詮R\,w 0Ş`kv\z1Z0MUogxP? _jMvAS|Xև4-|g`0Qx&$} !Kٰ GZ(!E#"2W~7w%}!(?'v@[&pkv89uct'Z#5.ө g@J&VqC(=u87JߚTͩc|( 3丿r&K rR O+)&ua&. ԙ`q53%q B&[puE-:v 1"f2b&B1>/Ǣgs8HHbp?E@%lfث֞k, aj*WZ URSg(ʚEINPfW?D.CDHHA L첲#yaE]A8>g72Γ0/e1xYtYZ p{& Y|ۺЀr0<;YA?)P2]Ddj7J=IPLx@eSׅ}Sj"%ý&=ɶ{DvVu3f${}R(V7 `/@z/U@RD"^a* YZ