tiff-4.0.9-150000.45.22.1<>,VPczp9|bQ#Xz5SƷmF-۠Ԁ>١>K;Xʠ"E-̈]>_?_d   Z 6\blh  d  ` 9 :=AWEE4H0HD Hp I (I8I/9Jx/:M/F)G)H,I/X0Y0\0]3^?sb@=c@dA]eAbfAelAguA|vDx(wX(x[$y^ Zz_____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.czibs-arm-5+SUSE Linux Enterprise 15SUSE LLC HPNDhttps://www.suse.com/Productivity/Graphics/Convertorshttp://www.simplesystems.org/libtiff/linuxaarch64 (      x  P        8zt @ 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큤cncncncncncncncncncncncncncncncncncncu7)ZO@Z= ZcmU\IW(W.W(W(W.W.cmW.U\I7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)ZW.W.W.cmY! 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 PIEibs-arm-5 1669725818  !"#$%&'()*+,-./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_Updatedrpmxz5aarch64-suse-linux  !"#$%&&&'''''''''''''''''''ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=cc8a9f06c7e26388a36484db0e38ef0e2740d3df, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=0cc4642920b9810e9689c46e6bf52bec96419215, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=ce351e5bd0500b15262937164480ac1db91c885f, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=2cd94510ede08b1b85222c3601171dfae4437a42, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=700d1dedae4664799544853f121bbf4860b64ef3, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=de1f9833dd9b457ab585bf2a49be4c6b22f3176f, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=747ede170ca5e14d1a2705ed49909f06b94998da, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=47cf3dd059a00401c852282a8969778ca1d1b619, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=915d3c9e7f377f01a82d4eb1c5de8d22b88621c9, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=a13daa8f15e72439227a2760045ac7b259dbf7c6, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=6bdbe219f091462ba01f143a5437f8898db0c57e, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=06c171bf04e65aaa47256efd40eb316f4c770dd0, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=93cff426324763a8b78ade55ebf08cc0e6a1b9cc, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=7610b0d3bd827d42fd5a0232225e84492e391432, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=e2db25827ab44e6c506a8a8ae3c1ad71d67fb427, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=9f917fabe7c38e10a658f113d24946b6db873bc6, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=f1c3905172b261826d2e3429341fbd2087e28cba, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=bd194cdeefc34695949dd9e9a127cd48724fe6f9, for GNU/Linux 3.7.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)  %*/49>CHMRURRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRL.:ݽTT9l ӓAe NnVCG F-$kEKmnU 0?x޾śEH> d}\Ds*Ʉ0B l'F(r<v,,ESv]t F06Gm K׸^vXG՟(ܹJI#3 yὯ^E]CSHt-7 H伄S;yeKt9~+e5k_a eM+:U#ZQ=Ʒ}) x1ɥ3O])>R> Hi#T orߘ R<ImN[P#B+AuԧI@zTc|9xcVUIt8VpʆaP@|Hnөx!3V4a3=J=[rۚ̔9]e+e_^dh#G5TO<ȯgl_6eA"p  =/ߑYLi0i$, P^y;y)m⧄ 1&l9'G&=jWj:fZr#a@Ȟn9@ܖ-q]78 S2 2^CPH税.dEP:|pߚ[cR?5 =NAJ9"QwoeH kun8],tXVoSSe j9\cisv Qyܹlm1DF٭Xߍ!8tAq˺:Ih!^n|KKHK ~5^Emq颢uHv64tom55nԁaL,nH`w5Kw RS[VJK$xjPt]iM#c2.ƹ˺Y,5%6r!xh&Ո='Mv @;> o;;!X t(ŀ=~h(hvibI%Bŋ {1c[:@jI6)zىa2(C1tF~Щ-WAö79DΕ[}{D H?PB}fqRaKӧbp&h4YNL!} _wԳ_@  DضNnN݀͛sGҐQ_n7tANeJQ> Y@F\*fOC 㗈1{?p)1rSMDdd9!` 2bDZ)/~dgqZ/'}z~ 11P g&d ;Z\x ޸MYԑ@L1 0 2Vs/Hz6y`2j/κ4*7xOC%<τºmM < Ssdz,NCbbW}~ n/6D_֪jE`ׄdj4vG8+SիP`;s/EloɌAӈWʠ~Mā[rUCKǿat J++*;Axe@?'=ʞe˻w-ߡoQSӜ>nw/?׀ aTm3oE8?wc49\Tb!Ca-sЍj*\K*+].JW&J:z8K@X Y7|3R @;KD뛻rqW.eR4)O)έ[xjyi-@0M~3ήk2ء2Pl=tq[ rpGGW|=KXNtiTq~#Vxo]B`T庽⬴V^ߜlu"#dxd_~/]z2U#u8^?rϯbpG'<634 92R_+=PTv[{fm,(. ܆IRS9, X:kda,>:4CV=:>0D#eHnsa ;.FDSndw27H/Jbij ?p< ʵX>8㲜!W턴Bc ~ԩ0a%Xf8q̒6(_.~SDO %7~*Cu+!v@"O\e8^T_yꨘp>eW'-]b9^@;4-<oĭ"xJP^{v8!6'_)3;:ژdER-= v5˶or2\Ʉ(R()|8wcP(L_#39Nz ,-zݓ.]rg5B2IJ8Nw n׶4T$gUr@r1/I)bǽv -368ٍ3R cXyk IOq 2w">{P9ԂY`aϰ披O.4)a^ޛ Ѷ.VQfz&0$<+P⤸M@ͼMPJ!ӏ*Q8wvb!Cdo^y_ 9ovr.ܶuH؍b7D=dGD钝U-Hi_$@B\wZdZY$sap5zOFAGo | eÂ<saK{0Ƙ~Lv;*s̾27*ZNDiS7Oؼ!b<94%,9}O&zb;IsJsؗDZxAI{Ee^g7wDpVmFM%PsFƄPԨK"HbAz&m9_@aa_+2LIY|Wg$5*$z/Zф %U{֮K FHR1=Io^^~?'&N]:zJA)$е~LS:l$/5#bJ IxXz<m 'R'Ool~lq3t/.N]^óVwv[+?::H}>g)x+AeG'pSǪjwZ2wfF85tQuj|S}=}1n=!#@gkE5ChD|S)O8xhh;/˛v^ci-QsF^(Gsu5)0sj0y?M`b#,E"MJFFe`lP*fe> taXWGu̵ݕ#V!L3U{O īE" ں pvQށ&n+)Rp^ EnWJe 6Ick͢c j-I=B]v;!$VH|ILdSg[~&72 }e^] .#(Hmh2şĒ(5&W3Ru=(w(c7v^N0{,GN*S"k]60pm F.ضcuZ%pdBYj 7_0\#6ݣ* ᎝b{~'6 ;p< {;0w׶x XF@Ja >Lm !VWoݺAfS:Ԟվv[(,fzPۈnlpdjgbb8ꤥ7_?V,p ]^KUH~UpcNxuf#f9ӠėN[9ʻ]iûGCzMפdZaUYc0 sٖE?r81đL.y߿.B$Tb m'rq`H15%^|SX2EK7mnِU_rxrH5;,s=o uT^kNSq[! :,1X7 `3M}M/ns ![j:u/gAxF^ًyƟ+}):!ZS|&=fE[V~MHz,o&<rTCjR2)psA-c Ui1:OMo%Zޘ$I xsQ 0đTĎY} `h迈Q<(ؘznc;GPACa\b­׌?DZe{ 'yAۓBƌGr0WiW(.o!.,hԔK˛.ŌYF+H8@6))IXp$d~ e)ă4e:_O#A+B F 7Kng79YݣW># ;'|Ysݲ+2&۩h~vo5 H m ĄNraդ^է<DZoD+39^aItENc V9~di}a'atAzq;A^t,N\Abh"Cuw/~Lj|x:^7 [{Ɵo~*̹RG]:~z>5aqI`hr89 +86bH(~A17C8HhCV<ߠi?bic;vL9T@`'j54ˤKR2 I ({+TOI~'_{sB6,|#E˰ +QIFyw]sahsRM$f>v^zk'\;_m%(7|:NJo3x;=EU0 |r/vcTT>s&L3N@Yy\x=~geFb醟t^[s'XD#&1d5/ž>3 pEW: 1-j4\D~7CcBm]!#i־8ʱ" >[4@D]lЅnT rI2)9?{RՐAqP0p3pM=!YůeR{KP+K[2*28ė!`" K:sll荰6r3ܐnX~P"n`7+H1a7_$W38Bk`R /YԲٶXd!Jg{,T%d5Й3K@X^e$hkB5l|@܀\AIopa*7YrEK*:I |C 0j̖]}V$iۚ!1#|:gG7j<|z{z(Ĺ~-HՁ9Vڬ'm(SσĤ2w--wזhu\gkdؔ)kh\{BJ՟c?܂M0D1ID.2!2x9ko'}pxT |cM5 'wl]ZKۭ^sn|ZA ^XhCc:MW_4t }z8ϗjeϫ| -7Ye~ea8KUQ^;Rjd5 G77+ըn$h(fS2d<%L€cEQ'.-Jq`z^̹ xo߯%H;)QBW*:+.HVdzIudM>Jke,,,V7(d SY1P ""@!jjx V$ \tB,R3R\&NE]HwTgd_<(#hk#i] ω$33u[ct;j#`FFiH}pD+1$5w¾ۦj:J/ש; ضR]B!_Q(VN [ыidלgKtYʼ1v=2WsFFmEI!趧h>Rvz+@Jpc7}8gK;nG`f:*+oHЯ#(&^A<<~:rh6$dW9ûĀYL+#osxӸCUG]'ڍKY1V;ւEikGowsyQQeؘ??6b,:`P\wZm[<ۤA-NG:Yr0|.3Ŷ-c|;BoMR5GpF'Qy`*ǧyM-xĒZJPo,dAt\{Y-aaؚE"q3_Qb_xbVr b*݆2]S.7 MXMHuqg"5$H(m?ӄ9>|Sa|CCN,zD 1AaaX${qÐ*rZ2*w[aƋSWՃXfe9k}s3Y̌kfeA9V}씐Ll0$x^(f[JOCOVg0%}uSwf\;Nxp1rLf eyc`N,/>'@6?cgk=伏mv{ohLRHؐϜ>ڹ[Rژ"F$M-OڥSu0%s>/818O#/v~F-{ m0H Ü NzĝdƓksaKw櫮R).lQ()7V[&Bo L[)Eҁ"C ĂDDhm_85+t=_ZߔQ{&*pgBe3V ܖ3#rӻ.9J:n"#/ gƑ?si ajz'فECG4-eVY^]i.4ǴgAUF%`/Ѧ9!}f:l8; z Z_Si/j)NחZkntz@CB뻧>L\:08av$wrjy=ܤCBVenhh2m1r 'N~22rԞɟ*?e[tu x IH<}gKīȸ6?FbrO"d|(!b*cn$#abH;be{wUWZ< -@|J!+{ f_$j| @DY/;=*}k/;3frYwB-cM$$k?#p KI%UFCI;(V(3rnf`Z#[-joAؓB]@I&!><&V#͖tʩ]N$ :mV]LKxOb 8to|+-օ4-`R1VP9^U)Tњ(“%)ط@%W 0xcŅ[zlZVuH w`sXn=6JJ{c`]qkSPDE%A):ԈƳ+m$'ҍzUz_A<=JT|@P.ACI;>"]LqΝ S|xFQƨ ڀ1ϕp&~MUHz<WP2{YxZc&i2CUZ+6Ђa䟆D>ɎVM7H~tQJ]b!J_i݉^"}{hսzEta=B.:!WP2֗WT,?cm% @,J'RE-}<t{7*Y x:a4Rsp4 L6ʼF{$Tswɰ_C.E:Lc)Y㕵Q@cfLFtFi>(3xT@`xrJ|nͶryV(rQrF@*F,ϔtJЫSTs+(@i_e'Q4Mج7tN\Ƨ(Rg #$BJ,^lLv!a`?MQa΁Oi}R_~!s&O3AyUIY )*ʵSU uoYΑb%Z]m0]cȾ"&V(+{Lqlո`}}H|ںujlj1wD+oIؑءӏe|h.*E:vM9ۭuۆ{(WX^7"XhL}J3.,WM+nwDzdkY20GVx6#8* vޅmᖃYs#Ctj "7g5!~*lfqO$"Ye֜Jz1/-+rByi=k?ރ@(7HR;\b5zyYZ! vq )DT kiC9,\V%O{ESOT}dsH-?VqmN$65r]?-Qloٙyd2ez\1Ap%ٮ;-#4fvR3 JE'+է粫9ffݦwa瘝pju~J}{ǷF5k@sNگ@SZ#.v@. /\{Z.6>R (*ɭcu9s|#oQ!~\YpJm浐+Y u?> GAɽ%!D^a4Bh?(Ǿ]+5u4f֊)c?nv$Fa`0D2Os0`񒎞(̎oECh=?$ʁ2$B:3ylA2"{V֥DkC@AIKQ%TM<V:;#۞R Bߒy'cswO@i$ny/>/xͦ{I\NE 8S,"Pw$\65zm3Mvebgd_gZ\cOQEHio@<S%4Q|,0x-y}qmӕքè8r9`pJpE(As +J {zZfPC,%uyn3<73kz\0%{,v h3՝dSdȐ='cY* |/V&kاwT H54AvnO|+)Nz㴔h0)84V7ɱ6K͹ƃl8*̠n{v#"χ'ʗvؖM38pT;er B*`8z2 ,LfH;rbSJ|@E*QH)U 8r3'dF&U%\-5`^9yh6g`L#9ԛDh?2jPU~iŽr2 BJ{Xf: OU8+qC~㎂HO.7[_?At/5!(~zp3=7z]Jg:b OdB ES%I 82iOr4-3BV`@Wk#[L:?l9r+1>ߝQq%tz}%W!G V@,{ry&3I$ n(1~/䗁q%4Jlc$|Cδ:y0* ji h@AF*/k밮%-׎Գ7*۩7,CHmukIƗZd)KGx K,'W&YHIS7SLl\\d  :U[t%D'jCo䈤nQnN1+e,%,RjEkuͶv| XX0y--|ℱj+}>W ga<0I?͙:8]%o'K:GLܸ`ֻ.ժkqYֲ~!ԧQqɛSA(2N]*dGdNbR)Fx/[t|(N8rJ$Dյp_W?qmτ02Rݔ歑L~ose`88tW4jGYlQC y'u +]".lj$ֺبB a45])Kܬ[p]@x1*"cӶc~}'y|:/M'V<9 x%Ď}]sFjO n||:);Q=HOh<݈([IFɢԿlT26`B08~H~&#(2kY$4%P9R]j6F~NBrU׍EoE [џ.` : em ^NX3q=ŞF-nG:4tyz>УhϞ㚹xycL?s94}3˽f HIB`DNEɴzdnh=ڳj#jS(xS3oq%yD_,d (pgMwMK UUGj);^RO4Ӽ#WcR!X7LjQ %2d$yu Bԑ%,z$LoH>,\ )) ..(0!Vh?jNpBe9E 9^~&y^>@}4ljzm][g`Z~Lxc=oܑ]*hC2$@ P5CJDEBɇ`*nr`{$ LP7rqQYXNZY',p4lfbr #m9|Dn69%V~:"T).u}h,ˡ0[{Z #:;{R(t$me<tSi=MMI4kn:Y)B9ꏶUjS3M'{PfRءf62 0?͔ʽLldȨ TeZBćHBQVSŷƌqLC%h]WvJ @9Y@斾&MY1h>aRiㄵP70 #׹!GXQFWs|忲m~盪h+~_j0nƚ'܈͜+<; Wh"򃋭SyA5˸h5~7'QU-~`,%iˤU|>H&#\XIЮ/N'߰"FӂeU'jp&"s@Ö益ЋPQqAfi\n4_F?G-d 0V/Ϥ$`G;Fff_z=;DL&VlTwaN(D4TVi+I]`Mb޻*NZT/:hU uK$ի)k8.4U$ĚnH5 mw#pG](% ?);u?`zfˉ{׷Ԛ*&5"!##Odv*z.rD݇Cbr]^xO'FhuGN$ģz}츚O_>L4>TB ܗnA38u~tGJ <^8C|)6iH;xp1MrUVG4Dř'ב;c(zSJ ¿c R&jAZ.4'#{"[2%#*&ϭE}Ck+OG5 `2QNk4̀T N]b)gLx\ZMQmM5|eWU=]cXN-ϲf8?wvv)'Sɽd+@lCS z\CTv(]PpC㫞󑯗IZR<(Z#/$m9WS|DDSMAEV=9Rs+qNT, 1Ю+耩{lQ}7`e YFOVu=9 d?FV68_Jd#S* "Oc#NY7\)Lٹlӹftv(JD읚^PW·Vz`sWΘQC/fEɹWt7$v΅ez炵ȳʝe;%ԅB Qv9j]]-F8 HIۣ6G {g;XC_.8@:m)w1fK<^L[ea5b:Qj]:Jq7 udmJRc %Ai`s10XKB|7Mz}/8s^i ޳O_V'ӱJ\|<!Rh7*gQ0C-~ r"!$A5J٨kS B`XġAX78(bvV*%Q<<ȴ.5EWj ϹG`ĥ#S4CMZŢD(M^>pTƩw΢1'SYKdxjru nhGĂqUu#yPbɔq1L-"~@C%)[ KSJ@SF~I-NGµ$ c0, /&E׀eQQU,7?ߒa%Nqt#'R$.>1j izLڍ7$tqޘCSy_ Qw r/եΣìCa,MwZ mF@(r̎x4Df:ҀSc9|{oD-(¦uc/Æt1#/^ ljo+tT XwON1}": 7iu| ֵ>bD5.؈5QB~]8ʤmIk@ W +#γ yMiC[>8ZwW"4dW*/j.AH觾ĭ§~JM jx9<̌u2]cw_Z`laNr!>_0skd#|]/ۥxmJ DD/GI.`~ 56fVDH(yR⊔#t ?e,ZcUuNy_f /'ly^jC-}Yv|3"QLs{Ƙ"#m:"]"^adv}w=?G7r,yZ,!@ON U R󚓑hC2=Zy`.IkCFdRihݙZ**b݅S.`tS`_%eLXyYҗrdcc^.V=K-JqcEM˟`Ӎۗ}KoJ@~Njo:NTRCsVl"4qSm8%@hȘ­Rf|'XTLș_kNc91Dſk{p"'5ώ|bqU9M%Ŭn[8Bv gTҕ9m/AaoB3OЦr}&*G -I<~e^X`2Hm*nsD82DM#IV-rv?ĵsUpGaZ84822]Pƌa)00*Xa؍{T'INPn7b܍mbs<>j%6.{ 8xt![v| zzxL Km # Ak6v<1mBk*eO2Weǘ!V+x"r9ndF'˜xKI?t( ^hN7mc}WMz/!&JwW$v,8(RjtBY0s&;ek:]A'[ J.^`ru; Z*sr<>#T:dY<gdΰssl5 PNCN&\'!`W7x U i&hˌ]m赬`]n8E[1բO i+D;SV9o a6U :ՙRԷ^EY]Y *gE9Ҁ ܆zL=۾WeqoZgYs0M6m9>8~Q=2-ݭ;M )hV Nbk2?9k {Ƿ(qy"σ`) }6H+wU&VOh`侫'YЏ8Ǩ(,F2+GXu  \nFkur9"_1ThqDo)Ue,M'C?F6SD:9ھ3s>[W!FC|IKՑjYcka5ڡs*] =?,?M%y L3a/h0|ط^T6]2_zH6k~D^3\O"ze], $n?=ÿΠ{v? [RAlt* ݤvb@}`ㅔ 4_ɿR@F{&)DR?vuńEjTUD- btDO rì/ ǰtT ?0:pk%V$Bi(+(Af-@v@3NGm+``3@Lc̡OGYq Rb ͌a%,/B eR(=ϯ6#^d"qȓU-fz1`'7z*dt-ڪ }P=U-2yR :3)~4Uol޳PF:?ZՕ^: ^n{ڶ$dCk}QϒF.9.&v} NɌQK.XESmf*a, @{cqZWj. pKg;nQh J<8cT6)@FP6z:Ӌ&VD϶u_ܑ8~˹XvtH 5*waRsx|1?e; ~_"%ߦHmLNQKoczUϻ;Zh &1<@;~l8>>%_E,> AfE2ZlP{/>NjnȢIsss9En8{5?KD{D6חÅJ|$l& WuZE^0nGeGMD(;.+\3~Ų/vr-wt#^CK@vQCTkv'K{60ba[p2HmCmX(V%Z:$SœU0_DmQ; ||1.eJ~5_ Pw՘Y݇*!wxK'?+Kp7ͽCSӻ^CuD-NY/Zi1ulE9aZRyJ1Z)X>uZ^= rrqfP-xʅ}J-=t[B?15DCju1l?tlzTyٖ&rQ;а;d+ʁALa|?ETɭ{!6Tڬ9oڮo|?bo:V]9  ̟ zgܫQF}$Os)ǝU~9𳳉S m~k 8+$xZ>x%Sp`%U*jmV?ύR۔QlL_Vh3Aj%߱`rtRS>k+xZ\nw~Мzh8o.z^-Qt^5fi,GӖDdLIYW֐yL}E]*ZK&%y 8mw5 DM#q[ଂ@EVYd^6ƭ>2^F1V$[i ːpvq}iJ~i`5(?.G6A#wAe:) II-Rz+Fu/{K0rEW6oAY@ s *^?i$i0(O p vk/&N}: -9q{ٚr̜VdJ=wM`s3Z31Xl2ǷԸ-_8$KmOGX;P""@vL&ưpm6mm v2l{05J@ҥO^DjRU(4E9Fo/a[NvG֕'c{8ܬ:*~&: 7}[JZsMdlL>Bһ4xe~x*B9w)5%T8PZ @fm a4!w YPV#+p˜DڇmBtm mw@YyHa5< T$0&c>=J|Ml؀_٣Q*1^FᶼliV^fSÜZAYHKAn|Ƈ635:]٥۴lTɡ ;|\ԇ$1AGȗ\S2a]Qgs/{͖s˚_1s~5O 5? ye3+gc۳Bm;!MrkBd!m^g LQW?vVSGINPKg%-Sx8 \Nc&D; !$8~|5u$FƧ*zSqeS&5lYϏ L|(׃8L$ оR #7[y dqE[o;(# R3b.čҽz=՚yu٦'µ@ƠӌA J+^ΐ5萑͢v2Xgs!30{KHBRS3pDVF<R ӡd2̯[S1U=[{KPDȾOՊt_P\ ʕ'n&yz1W#9 㴲@wk=gչ1f[4k@Lg1nݢ䓒^a=ܧ, ste#҆!u(e}&+GꐂX?H6>Qn~6#VCk!uN"U*xS#$7 ldS^~sqR|'\a2"&?\##]j2ԥ 9oƚ!l܂ S'һEHۍ@%oxxaQo:yϱz$/u66j k܎F ]Rpí%rJFwyиqaU# _ ocQ^H⥚XT>p!+* -' Cc"Q~kS-m,(4tfd4t`NeT6̓ yCEc|pdI˟k~X6ł+#yF- ӂ™|C !NYZ)i`J%ن81?~3el{"S~-3@?qU$[ũ(@Vl{ÊI&gK腘iz0qY|^>"ULfGUtwgpNm&HkX@8\13s^ @#Ӗ&M"A>;~QH^MwUІ*4%6 >~/t[I>mM@`w1+Z3k #t"o9e],AWl /k{]5oGCS2 PE7+1dϔj,Q)yd[0Q|f׿#26Y>lPm+99}o\vRlN8,=<UDI!JsP4`FTGgT'|[?kP'g>_Y>ZX4 Lw՜j_0*wx ^ya'Lڠn0+`x :ѯC!I-ɤ ;]+u %f[zN֩7m9S0o|o--VVWeJSs@=4tdܟ(R{l۟{ :{YWP'^;`XZpҠ☈Y}c&'˴8yff)yuR~|-^5.3Z-;)/,6+In8/|I\!iY04^xQtV VjP]5 f0Yo UȆ^BESi:x!eN8S+?3սo"LlJC':7lw )ZIYOc?Pa2W`z- 1R[~0 ȺU܊}S#3\38MVA2TF:\4zŇaac9rMfIZvJw~'CDMd"_gwC-Z1..xaя6}tb} -@|&V4g괋LrlB%iN H\J]y<}zѾS D3'6 9Hf ! "[^r`BoGaוa˚9A i= ֞¢ЁOAA*jiїEʯs'K@MA}n渁ۣ(i(ΉqX.S ?XT  (| '[8sq xc~q\.P%Ғcf8tȼH5K\+ yk|s9Ai v`& ԖuHQLWM-~hs1MOsBN2?&ь}dș5K1:J7sVy.ܲrpK#?]$C~Zig]qA~XӢ=/ =P~4*Ug Bm҈׬ntsAmJ [dNgUJ/Iٹ#U: gh% 8s֕wvSw ]:8fWg P-ҭA6)=H4 1Ɣ`6gI jcf &k8"nnd͎k|d?KRWT*^vhU ,LUvaSgmxRb ]mdRWm)%ݏڇnζ!Yiک |CQ"Df} ~m[patƤ}ޜ}mK֩B&ܢW8R,u7ΑnMPwb|)sd|sO'WhyUXA(IଵElu E[0lXGر'}uX0ܥtP;Hbtv!,312w|Gɻ $ord:*0y#s&ڏ0Wk"xC {pq" ڐ[5V[Kߥd^afHmTDSua#߂oPAwwN[Ͷ~T]z7v9/NJIig n6reFm}D7Dx>9Qp`g*ɘ!QV/2-PܙDVs1s홶)][rTo E/~ES!>Y%WaUvr7B'sDo'WM0 !5Rڲ-1Eo4շi1.JT}zޖ {K\p n|3>f3F)Us){A0UʋUZQ [&=EfW2|)H\j+K1!+,$Ζ1h lL;ٿRx p$`Vx5k$; =_Aͦ~<=P>r\_ō`* 0"ფ`܎}yߵdKLdIqx1,b5HS)_; spZ[ %a'Qg=MM1@K_-fh22{4ݽHߢ/M=s8v4'1&N zD-^8ZEu%)vz3d=[|ɲ[šF)Ozwk\<8>-Gc,ս{eTQDZ*;/F4 ۶Ί8!YH2:~Z_F*3b)a]*J5mzdȽ' Q=tkV"4Hc<-a K5dgx'dW iҼyv~A.|gzbr0>{bz/c9R2^2:e5 7j$[kԳ%Jx@v 3Α`(Y ԩ;Ks#_eˊd$TlelH/'#h%Ǯ`xqK>6SnN&(U%;o)Z(`8wR܋#(q<>nsIٹ̍p-91 rwpD"[ԍU"Pq".Ѯ#-N0h,Cb_ܼWG)MOʇP!xM%j ƒhomk|GDWb>jU(9lIJ-Ab ^4Lbށ"}󏅾N1w.Z{$EK&͙[yc0Dma,vG/9Jz-Ҕ9:--$mH2W?_JJ܄ɡL2z @5츻cyU뮞@^2a\DgW;&ge(1_ݟJ0-C݇Ēo6:}K>f)X?l_)x@W97J`- u]8Hb'RE#fCj#Cw&5#$҆*b5-mPwkD&WCA@(9I:.I OMxW7!0p}Lb_ kYȟ=) j PCSS ',qw6Vkcf9n ]vrrV3FkCf0D i_e"f,0чp:be42do[e 0G1sL̸9`fr2£'O[ws;\D$jx fgQ7[2IV#4mQ]2T+x̳BrYͽ>sh-)Rqu߁m_=QͿa|Nz8A'陧Sx=tۡIi$V~C~2חc(Izo; Z]ĘѺ)~&_Śy SF'\MWa,P|XX ?ђ1f돗Eɼ1Uhy@1p,̴'dzRHDa/E@%oPP5?651ɩ~W @̅m0Xkw[`*?;*>"H죓֙>Rzɮ>pִO2@dh(Ã4fp4UQQsO7;6~:Ym{9z&;h} 5!-;\H ?H`Tæ%f*Uks2A`%iakajB^eUBÌV;*]qĹY!.:ގrT(A[\6'%|I[%7ly ?4Wۈ" (E|(ɘ+AʸHmKMXY[] q[25I*TUn)C;Oe؈eRNP殪1MNVYG\tX>ÉG0=ɨȧA.>xݬ«GBZ\_IdJ꺞5]s0gxFEOZF!;BJ_i{ оWb2]vbH ar,t2:p{ &eXzM1H-1,͎a As^|^ wQ\'ba)9$i D}7Gz~oJ^QY~ ԉ/횆>Sj׈2~>Jwֵse U봡`šB~qe6 YHNlcwL|#~pΤCh#Kw(gvyT7d1W ){GUR=1I*vz#I5a#^V /vB?X%-- EB}E(c:m%:" K Wd)b{6Ml[^QϸBxͿhl8Yx2]*IvFI|_ԂMGhf}o;o4л'aZbTDlgnUa.+CF?zSBʽqubX)0ٻt\b +@DB.[rٍKF]5NA-s6!HUI7d”ue;!K܌~W1f(^ΰucvd/(b?G;2S.OO?~Y춛'S~ *u47̈Ļ^;56xZHde`{[G[KN,9x(Jࣺ/s^t }rU}80E*.Oe@6QCjXp\ ):}: E)QW<-C.jhO.ʃqlZdIX87N(O]δS̴3sw•)x[7T[eWB^D?7#jD30DR_(#A:c.r/],E!_+i|z%=mo$\*!)\RⰇ\{pݼF2-^ݾY8'P" aCqG!k*Bi/l^ρApƄ:H'ISζ*="S~:6RӰC m:NâCH^p ѩ!Ze+oՎW nz T\I }BJm ̑a]D:0-qY usH yݙ"=ݾ~C cWa:)n(9_H܅~0(!0xR_wwAk#H <4P2Bf.8-0K>nlPF$Irs5HskB[)qܻjms$x~)jT*tMI$J >z]__&Q6MNbB5w␔E~ЌK*\'([zXRrN#O/,}#Rpa661r&xmo {m…$oU4o._D4lvѰإJ"ցk[P :D>J m/?$J)nd2b<}a 28YTBJu6T yDlj9v@a#*&m@N2390ʲ峨[M$.QJ ӻ͡) Z/E UGC ˔u`kQ[L 2Uyx5M D"TLR ;jZ 7R4<[`*wBj,5$\^`P$|'s9ڑ<0DғO-eC[P UB4վ;yO2AԔ(Z,*տxkH23 :hY^Gt,Gɑ,l9Ү#{9KS*r׸T 0 (/>1;\n\KբIᎴ)UQK#vgL" C/ˮà=ݼ黑l 3kCۿ6 1Y#n ƥ專1z mo Y2 ;TcִSQ k,(bhvP'0Gr6p&ď=X5@=ry3 r Ӹh$)[@,~!Ř(DӉ/Z%Qa S̢AbD4%kU#kABx mI3jqM,݈k=|CG7:y"BMzȿCn8PzsP2; 'p! ]k!vgɘC+u-2Sd9B6*:729c>{&*S7$bİDhbT(/_~.{2Pwü(m84UO,0WNPm >ڢzГm~$;W<"S ܁{eP6q" *gH Y(iOnÉǚWOC.;f삺Ɲ?.S\bЂ+ j~~GvӇ2[k^bFVhXy w4( iD^Z|oゅr(k|u`\|S`)Yx`)8%N!7j+aQS8VyKMU&_ab}c6Y>a'ɯV-uDM)zHwhWD7*:tgndKP'ܗr4nʋ]Cg?هek^S3P ҀNfg~(+6ǔZ\#/Ϋ (F?Qk JnU8R6qrK<ɗ䆄%g)LȚ걙o>˄-u.vc|(Т9m{H^ "jwSϖ&Յ*DQ{GYR"c>Ɉ@2N, CN1Ǒq.̳(iF1pF` 3N>ܕH76j3tac=0W Ax$@zx^[Ў˅8 qwzl#RMX8!8SiֳsǶoCӋ}o')#d·qm\G4/q "DnIWPeE^$/wJ`U@ֆR~ٍE/x3%qou֞˜n4T_N)@ux x%1̶'5T.֟iɀ&h i,G̲OxgG{S z蠣+d ֶSZEpkc8gz$!y3]V!PԂA_H|`I"*\3=gGFm"5MH;i6ؽ;s |ᨀUiIR:;%J$nk*Pg 0~CS$7gqjXLS8fZH0-Qȷer~$-B8Y}+Uf6U9`]9; =hO0-R4>3qUoQ:f'SreC_ >o1>zVCF | udF:>\Բ6&"1ǿ̒Ocg_+>ݸ W,t:9H^n,-j"-uj45:$KƢ@w7zwah96sւz`LCrFRgphXanhy|wYyq(,n8Q|Nx÷vMy)ĺgܞLHK. *x͠ ;ʰVXeD${fx=|X'yɾ7܋4`)4ԋ=񃪠XX8T4NЌ]rnOBύVvm;0sETC=l4s>2Z5 O! vP'+'jܴ'I+wS'&ͳ={EY5DXV!F*2O@&C؟(Q~̦)^Exݪ)qe x&a] JƅjsDfKiC`r )Gל|74Pe?k<5޸3gBu=O3rI$xcoU3ү5g<}4Yb8D9&Jsq=ɶ#ĥycҤDNT4*v3:d qM[o`t'$]neЩ S>IGcc=Jg`zwG**sPP;f FxЩSi;Gjk.9,y!Tր#&]'#*rߢv(;;@lwXK2(2 cBEH7 5<óy?.>E_yߊTO__zp#< }8ˢDvsq`@3"\x(K<ިH݅?paALfo+{Y ap-t@7r:N<Cs.N93pQ ːxdom a U q}tw2$6J?K).=r3@$gc $-S'?}J*}J5ABPM0'kۘUEL}U; @F_{ 1q;cV \Y;&y֨Z9o (!V7اןʥ-1w|ҡi@i%!9JJsq=Ǻ嚃,죨]A^+iJݯ'^υo͉`l *G75[%Ya'6GWWB=Ru| iO-B~^L$> u}"+@#k&2 '(F5:4r를 +TfM5S[cL1~}.@PHIjWw hѩ$."\{L~{v%u~^Z*B}!Xƣ+*.]$"\mO9S8zs0hFeB |wn3 rq#Gaǧņm*Ĵ祌XC+ tHʣn, ]F {S&:g̿@2l7;鄮0޵cɴG>A|u"Coƒ3VT ~I*//dMW4p&#_{Ң0c𚱆P_ JϤ%̙M;1< !7I ή=AlVz[h'e/w'>CA?x C#uvgUԶH[83Mfd DJkb5cKz5nmTDzX8(Ⱐ'rhֿ&Qxq:~*#jЏAhޓN_T~8|c u՜,#Kl[n#Ke'|ʔDB眂*k1i%F|:m4 3{,5Tx6)o;#eo=._ z( V_ <=#Qp*{ECsdwO7rQ(0śe[92fI5NuQf2C[^SĤ5f5v {&O?(d 0i1SEu0N`!Aڎ)4=Pp1uZ)J\EFv/C48Q%=%̢6+zo*2߭YIkOɯ)\: Q?65@ڦE#&.@$@ FiH^͎:uDx439JOa z`=v|!c^Ti}%O^w[+pg;x݄ ˊv19aq$}gdܟrم.Sk}z;bO3-/'*wmqK􍐿BG]4cn,J=7kiKSk9gvhRuQ&.iͯ\C?5{mt3s9vDJQAf)LR-pd3qYĸDiQMI+!`PK幉iEǘF؎q&.<k+٩Q0QV۵ǥiнmkz&.qeZOtk^/hd+yd#ϺEC]77ґUlX GR7\k7/ ˋqپwXBF?u=Ve: 4.Nz*yF,`iwOH(2LBhh=|Smb(o6B*W*U ^1J̊<y$9 &elQӷ;.!~֩]ձٔ3v~T @6Ns_ߺr'0a zu =cw%9n8b (BYx WvkT+t3̫z/;ٌ,g.Hoz3HҢM w /btS;KIYTĤprkQ{ȞX⧎Z/3!!THttL/>KNuz)dwkR"JEIc kE़E Zئu}813VPݾ:'F*s, ɵLt N!x (9A= ΈM&GG9#@ɪeK-mmr . jO1IvJx i5Y͠]T.O 6V7Nݲy? V[%2'.dEOI8 NqD$#;䎍ѲpP:]#oܜPg!CO(@iv޻}>@3q̥~OFvz3A6#tq}hݒ ȣn|ѡ&yM{8ʆkZݭ}t _p'`]EtP&=Ȕ$hbt$4s-ޮR~5hhX2 $9k&DScVy ԂlVP;{@Q lPMxj qDT]P) ~?Ŋ \Y[ ո4%zےV Bᒔɓb9r2Dޅ/eRn[B]{,b:t$n2A$"`:4 X:bP&ki{m:5}P]l1|'rLŏrorgV5h&r7(u ~-qyYXp`0j&XZ<L{KA*+YF5oGG0FK`_ADy;",9''G8V =gW>5RspAKꂍJX ecnmkM(ge=ZZ.4 4lO(;sJfK@eϾ 7hgF"๞=8ADe*׉x QƷ``o))ЃwI$;mQ؀#lծ/R\a-?81iw7H$RkZ.wT`eoCuM9YrګTTc"&-=8:kJ.#w187^^1V-cnDlO{N]15JyٍWYgfP)N!'T#.Qа6/(I!m-y)>m%M>Hߵfq1H".>`vCg]pۃۏ -i12 ћl[}oK-S/\zpCEP1]vAz'q$>d_I#OQ Xa[m{uS<y:#W3t#`W&~;Ǟyb<'Ļ\氖8K ɋ/&3NX4JdJ/W]|p"Ux7V< A!Cع M\pj?;l4£Bj$A?=fyq-< t\gdc6A h4*(P*v`IW/U rASg16'-d}5SBX /qN*L,a_uww|hR%BvѨk_(n-Yel玐{R#0ZX]#H $0608х}@[Kfd!Xh8Tj`Rj\FM&"Mt8@&?˂q@SL) Ӯj]KO9˜Hی>v+V}`R3 A&uo(-fErEJ_xg쟬E[@I6 m 1I]&3;-0!e,2DŻLV c"a7=;EvO8{'`st'= UqElJO3!ᤔ!Ob~aEIދ_wW2X [x5f"v,)PЛ,*X%|?Bswa0RIyQ1pTDl4C@% `?9OԂ1i0^r(mw8#Kw\'6k=ntĿk=x"e#[)\Y<|dB*^ߒ@ؐ@ࣉ.!:?[xt`AAC =GBgɗ[{,}Xa5fu Or;k m=-`r︬1H^.o^šPmӜ;LV te}ӗ VǬ  RA05K;^ Y9+~:p$$Sh@2SՠzaU^rL1x;朠u~i:Еx%ldX]z'UW>XcIx 4aZ y\Ym\C)#ִB<*WᏙE` Ѓ[<5P}}YJ-q2ae,c[$7x)wZ)k_=njW^Rv+i7Xe  ǝk!M@I(ڎ64K3]DõIԼ۬{Eͽ B[$*cp(AG2feWy|kL@TQ1J PFWۼҪRWw ]M=]c`T)(?" >dgkǤ_*W![ڐD|@m$ ,6=DNrJҴ.9ⳖeDj)rѾk6(xz]+66G^5&$h)ѲP%~F5Jwȕ­X"}qu@^Q`/ZXҢńMP2Mըy~t `VG8𪆚9Mc&N٧;6D3>F;%WvX:vQr?v0Tff;l7x>B>̄0h1 j 1_"hW=H^u!)Lϋ,0*'iph|Bslsȇ;*` yaK^JϿc>#hxdѝt('h !b:$'@hnρqru.,i 6NI ?4S ww\1{Z1De"yqk& ~ W 7B$C\^Lh cK*x UnKdkk:"0JOҁaèBnj~s;H_[ECDJm5ъ~1>&TĔ$vp~ g>y'LUua t9Nf"fڣ,Xa**`AL(]b~ו sVg`/Ɓoll`읁kwf}2' ͍*'=Zo,fEwd8OPgo~pWo4 }Օx֡ӝ)Mƺއ5IŻ\zt OQ Cr$ɅbD{CĮh= HTz\MYNPxwt&/J7M4H"_;:ԑApOz)b3YڈO?J%y$#w{ t{S 3ooj=p\S#]{&lRXgǣӑ ÈXS|Ϣ _3P"0RZg}tfH[g^Q4`eݬYAh3GhU^#俍v}hD(JaKTZv!>,o$R.q6$h(>,`m+)g '©Gk)gS]?ڵJ;mꃜ5qm)Fyӵ1 qFj)$T d岋/vݢ`ڥG%}?eeB%JcelVīQ-L .ŕ% qic[ȡ'+޳[Nm'2=I%|LJ#{ːPE}lKbMN鏡ɓ''uEv"^˟_~"i"Vgcxyt=/*`o_ TyOI*4:wd8>u!,i?&y~$y!j;&W!0Rn/8K٧b~4|@e\2q6KqOO$vMJ) L|4뾈) R-˨f~B].ɖ;/:p7m#(v*Hl=[־-K1 C:xkƼ&J][d;s9O?`%Ҧdv!&y| > V&Y٫`^ž:mh$Ps7&9lѡeWjΦWks+owjի.$ᚙ޿\8dY|\xik=6, YpQg?OCL\3݅я=o=~Ek B.Hֈd{k:~`*YsD~yi4!ɱ~ 1KQN+8;H?5[:Wk-jt]BkU"> Q#d c 7st)w._u0#)\$2 ) ZA+dkHv0}#-0]ڌMn+4ȃIu>8qhGIz[[]ky>h™{WkTK\&͖o5bJ%qaQEO޳y PIƾِ-3^C_qu^V,r֊ @pDȻ=ݱqϹ(9,wU楊,5sdX;|zjW8Yׂ)PgV~C23x;Pn2}6'ax䓱} d rkj]֘P"XЙLOaNc!#6Jy`%ij 1Œ;OndRlPM)ݪ1{YI aFϖ4FG; 3,P#$p"Ky}wTG/T`oyRB$tL[wtT`@D(kےaeK)pHu.){6y$& @,yUg}E[n!a:O[[ie:\%hh]#zx"='f2ByH - هxw_q^T0Y :sz{"t`9BlU #c&? ;I>mcZ"#Hߌ֥Ťܛ⥿|(Y|l7x~b#˙L!wkRw64Mg1AXt?7ڞA8j13)KE+;M&$pYr.dո\EP:6oBe }jE>mJw?d ܤ/wLM\T_mZM0)2&֬R0ܹa|.⣙┫P~'#<. c#ooй`%LӚ/<0jԗk.%jtm(޵כbL/dԯ=13v<ʓO5%wU&:f% v^rP֜Gm3ZS0XPM!Y-/i% >2ft]}uv5b_Nd ‘Z / v}1W3X(q3'%P {GMMjކU>e"O%o)JQLQY,Gk#lU]8[Wq }GoZW6 *7+#w*Dv"iԬ{Јube9J$Xd*)y}p#D_x$ej9*vpyrx,SknF_M4c if|fs(/nCYmSͽoZNC\؞0%sSRF(&\uٴ9ᠢ@W:$qaOy@5pZª'baY>έ\"ȯ(O~:lQu((1O(rl(g|R\} M; i߬7cIsH.LrÛڃ %iKx'd9'.Fb&&g\CuAQ Y|:g=<5¤lhn QӛhڋYi1i~nji$DUd˲Lȑ! 9 MNfV',F{4L%)@1ѱW,Y14UHӭ':ĥcB!jX0ʼnuf!ҽx6i~Jxy\mPШji! #`ꜹ[8aIKNy$ᮈ.GF5@g?G؃ w[kM,nd<@L#QTHث!zŢ~xw˲. Wb8X#ES yS"v9K%XUYziFA!5FJ~T= ľAqF5nF7ybê :$/C'jDSd{hz(B :|a tre;)P揓oǧ,v&nq{P] 0"˵Gj,q/j'QI[[7+nE_qЫ9kӧTxCmrmN]kY!w|V! hT2d]i8qQ ʥr:nWnCՈ˿p]$ҷ[UԿ-.~J-p_PEۄO٢]_sO[]2N/kL`5#q9Kw@Ӊ ٠|SSص 2_[OliHӳEAhV:1FJٟe"sI^So {=DR) s RK:`o sq?j+FvR3 E74'| \Y:6qNgoԸ_vhý 5XSaBxO\GG=D!D?[q ,=kJvrD'.e bJ6?PW[grE`.ceD^+lzmn$k. Dƚ榁2ڮ0ݷW DS&9_iX~3 o>`XzX IW%ا~dVBg`vM3"],(=l^t qj"Էn^ f~{I#Gҝ* 'r9 'ߍgzIThǧB͏F{kCYF~۰vhlYe}"=Q0![TD)~@sۨH$YWvD;DST*؊k_>!FS򈎛;up$oVsw&gLk!;ʧ˺ezphWXSU۫47*3W\Hz;buQjM%1ȍbJWM|_ZZ=ހBnͫS ے*'uk# t@eRyw0JH&y2 )cndOx`c 3(2jȔRKqZG ? " Q+_nԃnyʲk>!̘zցo"#q ]d/^$<3m]3B=-WEx9RsJA!N=?~#6C`SDkʉM+ͭ# ͼ=ʓ2g?P҅`V#ZY$ԗJdKs0^}za} PmOU.I\Q0̥J㏻ц/YG0sHOIVޑ' 5|U (J &7 *OQ<Rkd \ќ:<;7j䃢|ꔣx"R.,ʰXițŮr}*>"l3\H3̶knU?VU}%ꦄar!?$A'i_~Ǧ}=kS뒷pI3^m!R78md)WL{}֬+<KQ^{-~GWukoB,z=dmƅ L)5t3:g5xj,/Mʬr2 5R$ h*@qy測eKRݓ#]F'Ƈ4Ӡ8桓0hݐzX_!KTOj!Ibzw֟ Ț·c"pQ&0їL#kH]`r\ceTSl(J4yX-$es-WF:Mq@Y#l.$ HbU;B<1W|/6_;A.\t/zchO[U/:U l|EF<Wu͂uz umR\WBm%=nJd-XkUxdhDQEO/3 M((?4'):RFLp6H5[B9A]^k@.A?G? ^>&5M4$:|x W!QЂ+d"(AZLfaVA֦]gJhrFflW7X=L"+:X?Q넉y/0~QqDݹIJ_x 2C{#'[F'XNta[)x&e~2&77{=9+1U25n5="Kdfhh(i; [W@i.[DW9{p#*H#w_3$f^- xWΪ ^}cuq1!⛓u@sjKk 9\@+bU`쀪:fxEYrԕ<߼p{f4P7~ZKP:>!|1f'Ȫ l_OI5 K=˜O >8âiX wLp^I)K\;}2,7cw /mˀE6fqn3\e:ϖ@d"A}3 eLQA.1fk, NQ-z}ztŬ/'AY:|juߖ@NlbPT\m\p*)b'Uv\uՄҦ 6-Q%A_Xw0[FWe yAIIGFGn2u{FyIY?N74)E/˜޵r#)5Q_cR/^g^Aiq؇1 0-1SrҔ[ɻnQ1G@ -_W#rm&SDgaŷoLeF Å=Kq\cVKE½-NFȹΝ'%\Hǘ}GrE QdK?{o ?צ}98+YH s4 !oiFw{%rk,7ɲꄔYg]jkZf"} r0ϮBgFC.c{:\+~^KG(m**&?'J38oUN\1G*GGT$Ik%^<H@cz!H<ŝ%5|ݸgr%XxoTlScf  ~pq+|aRN<#i( !Eǵ_2Z.1#HeR%.m Dœ ,4FXFGfϲQ-A wq=[WI|Z1^/QjrjǢ _m+eF?nQ:Ej7|hzy.bz2ã;M"jO㮩QX٤Y86TnVmY ˳gUN/T`#rS`*Ab"D+証&/9 BUFiƺ"}#,6ӳ1Fq^My/4-KAƟ)@/7HQl<6!H}VD1R$Ѱwyp™ U5?X(>k 9#%zϻD&,fh3RR7,}4wnQZG~T*Á?wک~~-x$ = Mux)@gZْnf45u\6sQEP5B\7#wӹbIֿaH$ǿYQVm vؑ-,TU)޺c,ܟMd''0WOݭP;_!_h&vM#72\:TI9y4;l$g<4~[Ȥx@5 Ga\AtHu~H6%(yjD[T'B?`9Sבj"V"_bI+Q+V36.4tB/%ZWֹ?T>8q 5vla p/4hv=*yBZ9,Q_[#h2C 8 x*(e *[hqAm#[Ɠp1$6EjP֊B,;WEBze7˷ +L]J^z{tDsIZe78>WYOs3̊S}u.vȚYs➿]t>~M0h-nj[juD`ٕL>oJF53롺n 7;d c;X#FPؗ aYjL6HxlO@VtGk%]czO!p;|F,C`;.C2'z˲ 1Y2/^}-M^'Ѳa<}܈d|eʰ׭z۸NC`@5l;TKj׻/ pVES K^Ic$$jfП@R> $-$v!B^3vu[<`Y:zL0pHH>Xu9]u8 H]}kQz|>tr3}hadD/A7t&*|LD9y[<,dfɬFO-7%2{XZF ™> s-6 tҰql2ۍz#LCP0dƧU 2sO/t[+֗Yvٯc9EY} WG'ߔ!W&- {lYS,2 q#FJyj%91'1MxZT20 yJ"ce/q`{r4]*""h᜙ m:♬ŧ6@"HÑ %]+7fWn6n5^O9II ,MWib=j8S!Iߤ*"odh#]qu  q{uvv8Aw3}s@(Y囹ᄘVKG_9 YZ