cfitsio-devel-3.440-lp152.3.7 >  A ^/=„rB-ṭ bbiZ:(N;O4٬#@HLZ&Wd8KIi$p0UGtpLI g*M:/zTNQǣ0Z@ *+%UVnvOyIx;nuh&AJH{ˡ>pDK\?KLd  ` >DLh v    ?b(8 9 : BGFGGGHHIH$XH,YH<ZHh[Hl\Ht]H^HbIcIdJ&eJ+fJ.lJ0uJDvJ`wJxJyJzJJJJJKKKHCcfitsio-devel3.440lp152.3.7Headers required when building programs against cfitsio libraryThis package contains headers required when building programs against cfitsio library.^lamb59openSUSE Leap 15.2openSUSEISChttps://bugs.opensuse.orgDevelopment/Libraries/Otherhttp://heasarc.nasa.gov/fitsio/linuxx86_647QIA큤^^^^^^^c7280cfe29e2c2c1a35d6b08a8c39dd802eb824c71917ef905063fae7881bcf20b168ee2a730fa4f8eeb1247b0feadbf03a4019cca9faf859d5be7f2c747d342c08ba223dead2e0b18382f503f78ceb625222d3bb931ab9cd279d80f750803d6d91bc38baab4217f384188cda548a84483660bc265a9d468454e79066cfe065e58f40be1b7ea273c429a3665f7c0a752122293f244b0bbb2834cd5f23d45e2e1libcfitsio.so.6rootrootrootrootrootrootrootrootrootrootrootrootrootrootcfitsio-3.440-lp152.3.7.src.rpmcfitsio-develcfitsio-devel(x86-64)libcfitsio-develpkgconfig(cfitsio)@    /usr/bin/pkg-configlibcfitsio6pkgconfigrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.4403.0.4-14.6.0-14.0-15.2-14.14.1ZԐ@ZZ|;Xf@WoT@S@RQX@Qasterios.dramis@gmail.comasterios.dramis@gmail.comasterios.dramis@gmail.comasterios.dramis@gmail.comasterios.dramis@gmail.comp.drouand@gmail.comasterios.dramis@gmail.comuweigand@de.ibm.comasterios.dramis@gmail.comschwab@suse.de- Update to version 3.440: * This release primarily patches security vulnerabilities. We strongly encourage this upgrade, particularly for those running CFITSIO in web accessible applications. * Enhancement to 'template' and 'colfilter' functionality. It is now possible to delete multiple keywords using wildcard syntax. See "Column and Keyword Filtering Specification" section of manual for details. * histo.c uses double precision internally for all floating point binning; new double-precision subroutines fits_calc_binningd(), fits_rebin_wcsd(), and fits_make_histd(); existing single-precision histogram functions still work but convert values to double-precision internally. * new subroutine fits_copy_cols() / ffccls() to copy multiple columns * Fix in imcompress.c for HCOMPRESS and PLIO compression of unsigned short integers. * Fix to fits_insert_card(ffikey). It had wrongly been capitalizing letters that appeared before an '=' sign on a CONTINUE line. - Rebased cfitsio-zlib.patch to apply cleanly.- Update to version 3.430: * Fixed security vulnerabilities (bsc#1088590, CVE-2018-1000166). * Calls to https driver functions in cfileio.c need to be macro- protected by the HAVE_NET_SERVICES variable (as are the http and ftp driver function calls). Otherwise CMake builds on native Windows will fail since drvrnet.o is left empty. * Bug fix to ffmvec function. Should be resetting a local colptr variable after making a call to ffiblk (which can reallocate Ftpr->tableptr). * Ignore any attempted request to not quantize an image before compressing it if the image has integer datatype pixels. * Improved error message construction throughout CFITSIO. - Package licence file as license, not doc (boo#1082318).- Update to version 3.420: * added https support to the collection of drivers handled in cfileio.c and drvrnet.c. This also handles the case where http transfers are rerouted to https. Note that this enhancement introduces a dependency on the libcurl development package. If this package is absent, CFITSIO will still build but will not have https capability. * made fix to imcomp_init_table function in imcompress.c. It now writes ZSIMPLE keyword only to a compressed image that will be placed in the primary header. * fix made to fits_get_col_display_width for case of a vector column of strings. * in ftp_open_network and in ftp_file_exist, added code to repeatedly attempt to make a ftp connection if the ftp server does not respond to the first request. (some ftp servers don't appear to be 100% reliable). * in drvrnet.c added many calls to 'fclose' to close unneeded files, to avoid exceeding the maximum allowed number of files that can be open at once. * made substantial changes to the ftp_checkfile and http_checkfile routines to streamline the process of checking for the existence of a .gz or .Z compressed version of the file before opening the uncompressed file (when using http or ftp to open the file). * modified the code in ftp_open_network to send "\r\n" as end-of-line characters instead of just "\n". Some ftp servers (in particular, at heasarc.gsfc.nasa.gov) now require both characters, otherwise the network connection simply hangs. * modified the http_open_network routine to handle HTTP 301 or 302 redirects to a FTP url. This is needed to support the new configuration on the heasarc HTTP server which sometimes redirects http URLS to a ftp URL. - Added new build requirement libcurl-devel.- Update to version 3.410: * The change made in version 3.40 to include strings.h caused problems on Windows (and other) platforms, so this change was backed out. The reason for including it was to define the strcasecmp and strcasencmp functions, so as an alternative, new equivalent functions called fits_strcasecmp and fits_strncasecmp have been added to CFITSIO.as a substitute. All the previous calls to the str[n]casecmp functions have been changed to now call fits_str[n]casecmp. In addition, the previously defined ngp_strcasecmp function (in grparser.c) has been removed and the calls to it have been changed to fits_strcasecmp. * The speed.c utility program was changed to correctly call the gettimeofday function with a NULL second arguement. From version 3.400: * fixed a bug when writing long string keywords with the CONTINUE convention which caused the CONTINUE'd strings to only be 16 characters long, instead of using up all the available space in the 80-character header record. * fixed a missing 'defined' keyword in fitsio.h. * replaced all calls to strtok (which is not threadsafe) with a new ffstrtok function which internally calls the threadsafe strtok_r function. One byproduct of this change is that must also be included in several of the C source code files. * modified the ffphbn function in putkey.c to support TFORM specifiers that use lowercase 'p' (instead of uppercase) when referring to a variable-length array column. * modified the lexical parser in eval.y and eval_y.c to support bit array columns (with TFORMn = 'X') with greater than 256 elements. Fix to bitcmp function: The internal 'stream' array is now allocated dynamically rather than statically fixed at size 256. This was failing when users attempted a row filtering of a bitcol that was wider than 256X. In bitlgte, bitand, and bitor functions, replaced static stream[256] array allocation with dynamic allocation. * modified the ffiter function in putcol.c to fix a problem which could cause the iterator function to incorrectly deal with null values. This only affected TLONG type columns in cases where sizeof(long) = 8, as well as for TLONGLONG type columns. * Fix made to uncompress2mem function in zcomprss.c for case where output uncompressed file expands to over the 2^32 (4Gb) limit. It now checks for this case at the start, and implements a 4Gb paging system through the output buffer. The problem was specifically caused by the d_stream.avail_out member being of 4-byte type uInt, and thus unable to handle any memory position values above 4Gb. * fixed a bug in fpackutil.c when using the -i2f (integer to float) option in fpack to compress an integer image that is scaled with non-default values for BSCALE and BZERO. This required an additional call to ffrhdu to reset the internal structures that describe the input FITS file. * modified fits_uncompress_table in imcompress.c to silently ignore the ZTILELEN keyword value if it larger than the number of rows in the table * Tweak strcasecmp/strncasecmp ifdefs to exclude 64-bit MINGW environment, as it does not lack those functions. (eval_l.c, fitsio2.h) * CMakeLists.txt: Set M_LIB to "" for MINGW build environment (in addition to MSVC). * Makefile.in: Add *.dSYM (non-XCode gcc leftovers on Macs) to clean list. Install libs by name rather than using a wildcard. * configure: Fix rpath token usage for XCode vs. non-XCode gcc on Macs. - Rebased cfitsio-zlib.patch to apply cleanly.- Update to version 3.390: * Lots of changes - see changes.txt for details. - Rebased cfitsio-zlib.patch to apply cleanly.- Update to version 3.370 + Added configure options to support reading bzip2 compressed FITS files. This depends on having the bzlib library installed on the local machine. + Replaced the random Gaussian and Poissonian distribution functions with new code written by Craig Markwardt derived from public domain C++ functions + Patched fitsio2.h to support CFITSIO on AArch64 (64-bit ARM) architecture (both big and little endian). + Fixed bug in fpackutil.c that caused fpack to exit prematurely if the FZALGOR directive keyword was present in the HDU header. - Remove obsolete patches; fixed on upstream release + aarch64-support.patch + ppc64le-support.patch- Update to version 3.360: * added 9 Dec: small change to the fileseek function in drvrfile.c to support large files > 2 GB when building CFITSIO with MinGW on Windows * reorganized the CFITSIO code directory structure; added a 'docs' subdirectory for all the documentation, and a 'zlib' directory for the zlib/gzip file compression code. * made major changes to the compression code for FITS binary table to support all types of columns, including variable-length arrays. This code is mainly used via the fpack and funpack programs. * increased the number of FITS files that can be opened as one time to 1000, as defined by NMAXFILES in fitsio2.h. * made small configuration changes to configure.in, configure, fitsio.h, and drvrfile.c to support large files (64-bit file offsets} when using the mingw-w64 compiler (provided by Benjamin Gilbert). * made small change to fits_delete_file to more completely ignore any non-zero input status value. * fixed a logic error in a 'if' test when parsing a keyword name in the ngp_keyword_is_write function in grparser.c (provided by David Binderman). * when specifying the image compression parameters as part of the compressed image file name (using the "[compress]" qualifier after the name of the file), the quantization level value, if specified, was not being recognized by the CFITSIO compression routines. The image would always be compressed with the default quantization level of 4.0, regardless of what was specified. This affected the imcopy program, and potentially other user-generated application programs that used this method to specify the compression parameters. This bug did not affect fpack or funpack. This was fixed in the imcomp_get_compressed_image_par routine in the imcompress.c file. (reported by Sean Peters) * defined a new CFITS_API macro in fitsio.h which is used to export the public symbols when building CFITSIO on Windows systems with CMake. This works in conjunction with the new Windows CMake build procedure that is described in the README.win32 file. This complete revamping of the way CFITSIO is built under Windows now supports building 64-bit versions of the library. Thanks to Daniel Kaneider (Luminance HDR Team) for providing these new CMake build procedures. * modified the way that the low-level file_create routine works when running in the Hera environment to ensure that the FITS file that is created is within the allow user data disk area. * modified fits_get_compression_type so that it does not return an error if the HDU is a normal FITS IMAGE extension, and is not a tile-compressed image. * modified the low-level ffgcl* and ffpcl* routines to ensure that they never try ro read or write more than 2**31 bytes from disk at one time, as might happen with very large images, to avoid integer overflow errors. Fix kindly provided by Fred Gutsche at NanoFocus AG (www.nanofocus.de). * modified Makefile.in so that doing 'make distclean' does not delete new config.sub and config.guess files that were recently added. * adopted a patch from Debian in zcompress.c to "define" the values of GZBUFSIZE and BUFFINCR, instead of exporting the symbols as 'int's. - Renamed libcfitsio-devel to cfitsio-devel and libcfitsio-devel-doc to cfitsio-devel-doc. Added appropriate Provides/Obsoletes entries. - Removed the following patches (fixed upstream): * implicit-pointer-decl.patch * no-return-in-nonvoid-function.patch - Rebased cfitsio-zlib.patch to apply cleanly.- ppc64le-support.patch: Add support for ppc64le.- Update to version 3.350: * fixed problem with the default tile size when compressing images with fpack using the Hcompress algorithm. * fixed returned value ("status" instead of "*status") * in imcompress.c, declared some arrays that are used to store the dimensions of the image from 'int' to 'long', to support very large images (at least on systems where sizeof(long) = 8), * modified the routines that convert a string value to a float or double to prevent them from returning a NaN or Inf value if the string is "NaN" or "Inf" (as can happen with gcc implementation of the strtod function). * removed/replaced the use of the assert() functions when locking or unlocking threads because they did not work correctly if NDEBUG is defined. * made modifications to the way the command-line file filters are parsed to 1) remove the 1024-character limit when specifying a column filter, 2) fixed a potential character buffer-overflow risk in fits_get_token, and 3) improved the parsing logic to remove any possible of confusing 2 slash characters ("//") in the string as the beginning of a comment string. * modified configure and Makefile.in so that when building CFITSIO as a shared library on linux or Mac platforms, it will use the SONAME convention to indicate whether each new release of the CFITSIO library is binary-compatible with the previous version. Application programs that link with the shared library will not need to be recompiled as long as the versions are compatible. In practice, this means that the shared library binary file that is created (on Linux systems) will have a name like 'libcfitsio.so.I.J.K', where I is the SONAME version number, J is the major CFITSIO version number (e.g. 3), and K is the minor CFITSIO version number (e.g., 34). Two link files will also be created such that libcfitsio.so -> libcfitsio.so.I, and libcfitsio.so.I -> libcfitsio.I.J.K Application programs will still run correctly with the new version of CFITSIO as long as the 'I' version number remains the same, but the applications will fail to run if the 'I' number changes, thus alerting the user that the application must be rebuilt. * fixed bug in fits_insert_col when computing the new table row width when inserting a '1Q' variable length array column. * modified the image compression routines so that the output compressed image (stored in a FITS binary table) uses the '1Q' variable length array format (instead of '1P') when the input file is larger than 4 GB. * added support for "compression directive" keywords which indicate how that HDU should be compressed (e.g., which compression algorithm to use, what tiling pattern to use, etc.). The values of these keywords will override the compression parameters that were specified on the command line when running the fpack FITS file compression program. * globally changed the variable and/or subroutine name "dither_offset" to "dither_seed" and "quantize_dither" to "quantize_method" so that the names more accurately reflects their purpose. * added support for a new SUBTRACTIVE_DITHER_2 method when compressing floating point images. The only difference with the previous method is that pixels with a value exactly equal to 0.0 will not be dithered, and instead will be exactly preserved when the image is compressed. * added support for an alias of "RICE_ONE" for "RICE_1" as the value of the ZCMPTYPE keyword, which gives the name of the image compression algorithm. This alias is used if the new SUBTRACTIVE_DITHER_2 option is used, to prevent old versions of funpack from creating a corrupted uncompressed image file. Only newer versions of funpack will recognize this alias and be able to uncompress the image. * made performance improvement to fits_read_compressed_img so that when reading a section of an compressed image that includes only every nth pixel in some dimension, it will only uncompressed a tile if there are actually any pixels of interest in that tile. * fixed several issues with the beta FITS binary table compression code that is used by fpack: added support for zero-length vector columns, made improvements to the output report when using the -T option in fpack, changed the default table compression method to 'Rice' instead of 'Best', and now writes the 'ZTILELEN' keyword to document the number of table rows in each tile. * fixed error in ffbinit in calculating the total length of the binary table extension if the THEAP keyword was used to override the default starting location of the heap. - Removed cfitsio.patch (fixed upstream). - Rebased cfitsio-zlib.patch to apply cleanly. - Added a patch (no-return-in-nonvoid-function.patch) to fix "Program returns random data in a function" rpm post build check error.- aarch64-support.patch: Add support for aarch64libcfitsio-devellamb59 15896483013.440-lp152.3.73.440-lp152.3.73.4403.44 3.350cfitsiodrvrsmem.hfitsio.hfitsio2.hlongnam.hlibcfitsio.socfitsio.pc/usr/include//usr/include/cfitsio//usr/lib64//usr/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.2/standard/50e413094f069e8f8aa9e9dcdd1d839d-cfitsiocpioxz5x86_64-suse-linuxdirectoryC source, ASCII textpkgconfig filePR2b&͒y cfitsio-devel-doc3.440utf-8990b3a49db3c7285cc4707e86d7493d3376d4f72cda70bcfe586ee8045e6befa?7zXZ !t/w] crt:bLL  }%3nLїNY+vx㖽ދ@Xgɕ7 ةo4>oxKߥt"#!꽹;PTH =}0z#f;W+[6)m+v&\Klx-J蜹{LиANREwpa # Ȥ&yav%2Iퟜṗ/$ t8B+^:cȬxciROW3&R2t#, x d'B <,B]^nC"WĴ ?Ep*\^&h#Tgۑ,BfstDLHviN}`Oq튐ӣY9Er$Gwxxv~Z\rCw8g򌣳|)$3(F5Bzxrg B9,NfwI{2\kXW*!8bmhe.vns)"kvi;hGuGP%Y>/6;OFs_j&;0d}LMJE_aғ kKb~ƖH\/ :@0I6W8" (I:~fmo6@H=$k[kׇꨅ`&tPfqOf )\clLf v>|jL$~&`bHq{e8#3GXT#c9mR|Y,yW}B Q8 [ |p.i5Y[PW]c6V;j5[`j䑝U4^gfw.e܆6[6#r@i6P$|͑mƛe byD@_ VYZf {98$X ٿ#׌$ghi䐯QM0w^A MZݽګW}7.ut_NDJ"9`eg`{sA~J0;=p§B]uyN( Ӯx;*Y]Gm>nQ)"-4HN3-fOL@9 \:k)$5r9Q |(h_חFG>'Ą7Lz]δ)`jw1J`q#ANpfMKG-$䢂LSl|Dʲ3 vTQXv,qRZO8@ns&5穚?ݶ%#׶K+8pټS@0#ja 4bwxʴ(^?%9Mq`72::NltکU[P}NG ې\i`7Ԍ v9u ԋ&C+J\JЍɻt_WR9k&c%%u)t}V LjVj5۞<|Px/T̕#nsd%vXGmd/;DK2h6hkmf5ld{ ~d4&߃l3Oٚ}`O8KfKIP-ކ1*);\_NlMO;]o"ݾwX2p BP zWT>kkE.ڈcebMv8[ OYȾ !D\T5 W^]%"͞YR7Sl^C[V]Xɻ@6P ^TS3I͸Gs\%zmde|U C#`3=f yB ȴɚUESN&W-#4'&iUxƲO[9+P)/*``ʜˬa]lxY::rNpk}n0]ZRs\"ڏ->Œe_¢QbEpMz@:O+5y^n~S8_&q$7zcĘ2e T'p%'Jg"7(87=3|zw7|%hANZXO2mWUWc1N|YvPsrI:»ϻ0))Y ؓ RcLN!∴J 0{Zߪ۠R48C+$߰VΤ#Ve9 $/EJ0LMj[D[e)eN~6^?+ M4}u_!~Sjң<`Jx^FS̕C? Ϧ%ޱa6UEvrJmwlvے96I9#ʉ 6}Z\Gk\2 E%3%b _p7;Ot 7)vSLvGvYMĪG}"e]C,Sؒ|M?0 ݆6 | irί _VY.6E-P:5`e<޾#۫OM[?? }0 ځ9n{Ge] Dl ^]hK4Ԉcr_FND05}ɏ 71 Eh"/eШ SpվڎSRR`jF&Yifc#lx1-!e()u|`';cMuR3ғ,H5{^}@1EG4BknCy.ýbJH'یVE/m`,CĨY%iX5#]]_,K~1TFZtsэ@r(*ɯYM?TீB Q܀P^/2K[m&t:WGX91޳CN {H1T j]'mEUߣ:.}& 2`0qBE+0բ{kּ_ܔBaXKwײU!Y]Ǘf%aO@V^b.+k_Pt{()|uz"&Cʍ4Y'-HbMה6~Fl@}ҠM.gg(}!KWB~fJ5k ^FNL.kC g'JʻK!__C/{֦tBI{ ހuli?E*a!՟s@5% YS͟?3p,3Yok-_7z&RIol6FYFK6ilE4 Fvp2LyT̈ AY}PKӈ,rY UIُ+aF~[i\aCŇ!~Ep&^ 9 "5ay?;ߞsiM!wAIy"#FJ ,Z( m ER?ɺy~ݦ WFNaw;<b H=šcrGS SGX| J3Dfw'nCuxi?2Y9o,X°X+jRE l3ؽ3х;XC%7tT/ T ?ݣhlI6Z?yg;~(.,}vI7 ק~MD+-y[$^.˳ze ` [3at1ƚe ;a5Ә>B;N7"l&%J/f!-"s ? 9O!%pGU? >w d(hz4Rr.c# 9Vp/f>.#`E lGJe5C:Fn70~GRs;U)V C鱔w5!_:gnpg-t-6Q鸐B(us%삹?Q:1 uODKͫsO٪IYbD\9H 1FqrX7Ïs*gT1\R4c2Z]jGߗU';Vݦ!v*a8b=Oh^1IfUǗho\5,ɦtHuf2Wض{#UN#V'@@^p9w %Z&BGsڇY(2|ckN}{r+mus50;h0#t 3VA}EHſ>Qrw f+oc70zQS  I>M?mK.;Hx+\1j¾'=o$ ^UwZc3>bvʠ|LްK95ƅf*ַ.ĭI<-L\tRn1q1K@h%ķtԴįUzkp.dP.Q*_R$@}dDAs7VN9p.z w/٪iĒO孢׬c[ڇ*Dvie?|I%(:)~TVQ;ݿ3?[q˸mJ8B^(.s/5L\?&?΀OO=I(m qΠzoR0k5r٣z/f %LHXΜ4g Eزh?E Ԩ7ys@T_46/&ܦ4Z!fv-\ٗj#tɬQ^Rp6m^|*1c C{ֹEA"Q6\7Bf^oLUtG > P%YfeΟi8qCX%R1#[xtIoiϡ$7Oq/x4֫ 3@j,Év\HN/zAKc':;vY3Z#rn5[obY. Y|b.[ܪm, hoC@~9|թl&q$YYiq.ާ6*p@ns^2G{˧ )1G6pK{"9qNoj:XǚgwcHH_)1L;|q j޵qU!ao#Y]Ab&;=lbuٙW)0߳T")kYc>Ѐ؛},Q-gTH刄ߥ͢{[_2S9kU9=4`H XfȀ9?UJuYqh'6|! I!w} P KP ӕao(`lK%8Pk) ;|61oot+[m0݅+=L% ~yt.NR@M=H_Dxd OH0r?ǴLg||k,JڭOH܎d9cSD\06#iDA&p10Q֎p70a6<Խ˽|.ȕ]A큭>DV!KƂ1cB{/ҞE"ꡤێ& ;85I|Q#uZ߸ Y)?ghN1A;1nfƃd"}"-D;:n% Bqx}b0|=^h:yM=rɬb/WgZ-\%WNA6Y68| >&@&6e7AG|H?ӭV3'TԎl֏ Jٞ= Sn-2cU)ө[ko?DtBl}TO_th$@R^,Xv*ɑ{`nWfaݝ=߭u^}sE*5~ˎ#@-&67Xki9fFg\p:9 WB(m> {ZITpkѝQ||0^XT1^(%Jk㊗Y>͒:7R6*/m3 \^`hlSaԶ~8C`5OE`Zfo''37,Ͱ^y#Ox'kw\񘆙1Me46 xabxDr##8_mN:9:0C~; [i&wqO`-DWlTFچ q仠4rsJ: LWZw`ǖjV Va;a˙ɷBf9N{ }e;h5. +>OwBciPP*_|Y9=$ uϷ JGGk(`J@MzP'{OY) eIcwGl蹏qhO\r0x+!#Yҁ;ATo#+e>!}b{+dܩRqN贅24 j{OMowATڗ^&`9@NTiDB%k 6Ss l"Sѻ.^o,QS2q0Apf/2fj2K8?/O _I2q JoT82M3ةպcgQMuGLz&Ş@m~};@_s& * =8VT;EDž8ϻIK p#Z7{Bn L?b^XGpTxQ> HD eHPPeߔش7s5ۇ%:6s4iu5(4'%2?V ]8:?jٵQHUyxs8^uX4)L?č/Fz,Y4?42iwJϴcGٽǤ&٭^U'TBsur2-ZsB|5WG' (<!hs.bʭ_V̒ڍ0C`LRx[)#[lQ`h_@by/se u :pkYtto$͕ UZs*Uv1ݬmzwxO(2CsҿY  fwX`ā0v6=WD #a*)y|OT}/ty^JI7_Ce)q1ud[TyhHRMQQ-@#lzN2 | v`Qz5~ـrܼ-4+EI?úh>ICܘopIX O90C遢NY&W``|!Vψ55\Aoݙ{\ _w"8׳qYs0ajj)4ğrvZ]E׻'31sTL޳b"VkչF搰mbCKetIa{(PCcuDb Vmɏ^h^T鲭Y(2Q+us!v˿haK{hDPK5G[)0Ek0˷,nZO>-Eq:}Gw#sL3&_3wSLLq}'j- V_CA/aE@-F2f8f0)-$Mg2$ZcΡVeiIZfϿXQu@PV4Qŋ!H^ٲй!?t%OL"S'aQWs'UV ItF3imb㯨 j]P'hs2KhY;K׃<R1N*̈́(/.wK=1pcȎP΢G-H"9|c9=2xYQ9zPU&VAX 0mL^J"ko]O[bʆi~^Mf'[z'~e _~ѻ GLp5cld~Y2-'/\EZEB̞ͭT8smgI׬-D9= Ж-=sc6q85&ߎ,DrUCoBǎud!x4Nc-Lo~T W JGԈǂ5@ "̔HW0SF^[TMTr޷ P.as"}Tm MF;w~O۬Cy^(McjgxqFb3N\Iq}@ҰLJMDPt8Lv쟢"`Ro9.ɈJbY* ˆOX#$غ"Zn}:v$l2#leE6M#GG~W&KծzL$,4YfվˌCqB_ Gd!sh/"=u{٘x,2H֥Ɋ~h#x _r#/ +;K }iF EI6">u j-w#h B+\;j@LA>ڬᔻ$#A u8gljv=l,AT P_,GzYnAyM\9}hniX 8AQʯMYqiM 6E uuخ4OI!(22{@Ch}9[ͥDӶ<TN.@u@3.Ad"ZkY Fo7+NKc?JY@@ -u{QG,2'cOeiu|leWNӛ`Mti.mwdI -4pzD3BhcԋE#誠\>%eWPފ"tBPxH:+Q@SYM!;l 6;jB V=ی FvSdU g/YL=7F[p=2r}S Q*GhO:'Ғޢ EO!nUtuYv-K Ͳ0]ع8r(DWoy ۫_/繒h-"np1URͮ'bWQ\=st3^~0mK#0W^ wh/_02u*|q$K݁H( o W^dQ ]>2c.f>SP.mtx`1Kk t߼pH19 z㫧_a8h> ?}.cEaQp54f*4Օ!6?s&hEA&()2΍&=p}q_GIg >˝E3$q9='@xq_,|W'=Aš4vOhоd(7sKfbeO 4|B`x ^VQ79Yw͢|8K.sl;vv %nvQ#a 6Oϻ҈1ɗ4e6]rj}+T߸VL{B!$ѷ}0&,]7xGdj (22Ô $ۓ#14V6|hA=ڿOH2ӡ@g+@6_vUNlS+`NI>"ϧ82{8&I ^ $L۫'2ӈlm9ҵ,HfleYJPĽ\p:/ã9qq Jk/[تGCxp 9UGez*ŐM*~l8WM4yR;E@ف,?O:5(Jl/ꡔ[&*H.ih/[$fe%, .h- Y=řuZZ?mJ9*e/ -y÷Gw2  m{ynɩ"GB+󗡩+t60ca Ww> gbg _;]avϡa_pBUQ9{3mB5yDh@lq+ @F*zX=ɰn6.~ORyƸ,t{ NoV&S}m ?~[uA&e\aILXvLiHtԹYr5~:.'Ŗ"dz@n7P9},[@`b唞rwaZd9Mͪh^2 tYDy.o"5m$/4Ő'n6j>~6MKJIlUR% @LŤțM#auw,'RҬiVu\4U|8r%zUv&uh ;u/tyn[xvfO-O}LK6UғtpPH}J xj@v:hKL׬k-e r/ V}cb+XR8kK_I0`&x agl95*TX"=RqW=/a<_K9q~4OZQmnǡZ TgR8rq?ƟQ]nsBQJ3K-AH#k]Ujge(;hH"5P!6]thI4x.E I="YZTsqi7R9[yg!6Vb\r09- b6 ZN$2\t7v rα)8[5e'F됂11vKda3|溇׈5 dDd?Kp5u5Z8palnc w%_Ddf'_={8g ֮;$R&ނqbw_eD. 03}Fej-.ELLR˧oh-{f\ ]Cd.' ؃TTEE,b- "zkM~VZ$BfU44j#eH8@?c>b9i S}}rg:WYNC.1-wvEsz;] 42/rmq(%XdCHU\sV5qSf1 왟aKlⵂlEDU$!2/nEؒ9""nՑW?480܎Mu]XG!* Dܙٳ'Y\.y>nc ElBukS\jy~ԄH -()=4˯bj Encm˚**PtEQ hp~V1еF^+ԇsk[Am RRl [˖F#{?ǛbM-w|Bꎇxnxr/!gbGs7t`z#< i+CIcV-LRhIdfG4+m =mMϱM"Öneuȭj-m$W`:*rO\tB,6Pri' Xfm*45ى:mPVUNZ$[RVFp ln1Tޡf h1'krgA#' QC~?FT:xO_.Y'Ө;B/qnXoR2m)]>W߈'RS{؜u'!꿎Bmڏ+W!x19{Ajtc^kboT|,[_7l+iEb| X}WC9)'1{. Pa7^ c߈vڙ_y/sϡ9߉ۯX\ƣ|絲mwZ'/ P Ihs~-,h}v8h3PgWwJ2ZvtX{#%m !ADJ,yo ԙt1|8]XՍmb'@Gy~pJ儆rDL)Win7Ȱ8N''\DV6`Q1؊H[1#q) 865z`:mgjr+#sFTr eJ$n#  Ɔox?s=>"Z}H^OdOIJVVV_H_ñL%$nng &s7V;, wHpGkn:b|ϺhO}6 (zgбB@VL7CM|!C9PгBQP1!ԉI y)}nn Qѣ$5s#`Փ@;tMIL(:bVsqYW 'uSx[&Ud[ys!B,cJПFHY3fs9ſjX5z[ u/~ u%c;#0"W :+學 wUD$L6R@߇q V!.AB7^$ sIwwKC1H>!aJͫ/a䳝#`2maÀ {P&2N%95*l5i%19ɛD`QN/xU#x9>y$5 wI^9+%@d1ܮV'.)jʰF\6.rjH^[KX xuT6xeB<@ ök`CQ*It, 7h?LV0=!/Q5+=&o)Nc:5O1zfL-ߖ54~[[bB: o|V6X(/\4֭eV8-5vسOA`UFN%r ~QOf`浈 IĘsUia jw~y7^vyƞ%04n ë`<+=Ԇh)8+9ֲ.gX8;ڻ|!R8k{"XD= ?8b5$}qCrf߂`Mg<lWYy(8xtet]1!"m wU g;`r׈a+(RO1SA`Pl&AfgB10pM|ǝq髩"/v e6Yg6#OHr@o$D#GX ;V귊4J>({Sric(LWfQ]Z^)ok|zڼ!;<tNyϢEھv ,'hSt5DGy0YL$4E0|#y']T>%®RϾ9*A&k$ c"j؀&aF" {}RŢ)WT1#eÐw\sH19imѐ}N7lI9Y8Z*h~T6F1䐢es.j_(;>t>&lR%{#9 HmrxFR&5YO_B<º (V9jM;FXك}&5\Bet`rZ*͂OxpyέDrx:{S!h-2 _$MBq]FTyɝAG4!dܞ$&?nYHWIqW>/:Ӻϫ9K$:҃/uv 9 M3uC107=.2T.cDIl$I)_*nl֊P*|IKQ>ě O=fbDU:K##ރ<|(jzQHk  $(D@N`c<LtSK4TOU/2HI)VSӓHz$+𖱔?zDxPfج.;mJs*0EsT.mQ+,yI0?gGѧ%J#ں~ vR'=Ȱ&GҤY툩熵-Z/¥VHQ1Cj+ 7V&&¹>F&~LTyϓh4/ɽ1 X:$.vP" S wԪ_3MI)_b3ǴzG[Z+CO5;_nyq]ļ}PG<}V|&@ٍj Låe50&OF΀~9K+O3? ^3W-w|(or{?>-V6; dҽ,K@AۥK>H DoO׳:D (=Ѥv,RщAL e4؄u?骖4<~N\w܅)l3uIrG$=I4Ue8cG2K u7.㴯6Ry?М1|+z93G&WՖ aTslINw_riR ezZ(m.ոz7ޞYn@/}+8 ].KA&m 56_C_LHz orX9Yf Łjݡ5Pe˞#|g IZ.CEhje.KP`Ng_AP n#Yg >v% iKQ98y$32qtWF=cVg i3~{06Xm~ì\B||Qڵ2$X;Ibpon!'rPI O3)ֹj̪BLVy ,>waL,n}Doz׬95adk{kIHS<,Fa d[;}}},Y`b{U/r4GwHZ3U _n :S? 'p:kfKᵻɈT?!rK_Ovo%dub2YެUZ"aG - ECol)pO^wYQ7ikѫ&ѧsBp^wi=N5 v~V܇&ՄWjLo'G^(#g }.58. ޳6BKS|lKݟY/КD)V9 e" (LF$j#EhTAN?q_(`箻ݑb:_ MZgW3o&!;冘yo,c~5Jâh,V2w2fEjL7Sv7ԇ*GpJwX$$z[K94 `[i5H O',hI?!hSl|~4f*ֶ^^cNS vHbfL>!1KFȁn-sbev=_rX;0Q[Rkd+b Fi ki=C,v|-&}:@j8TR ^Ǥ\%[>aQ6 Q}u(M8/=f kdH؟{S6$ј@0lʴ]T 㑼zhʃ "h'6=x^QT-1qu -4HB c0vUmW /?Re%{ߑ0q TD=#“ͣ#Jh)/.AZ@c,v J9[;ゥ؋4waϊ1 )#;#imJ8+ VZdHo3igC}WJyQ|G+ޱ@ՊVZ-,Omϭx&;yfc1<<V2C;L <]ÊN0^x2Y#ۯV[~dQyu~8l5akMk5QB;DBd>s˕w͓d <#ćIӤ]C-$R0˵*J?zFitp !9#q< UN="@q4*CA-z5–{-3 ad3j7xzJ̳i viw 5+ %V׿-ĀOTI"bP;ϠT,w՚nc~N< >H>}Bf^tҟPaM >mn} 0vI<,?&b\G~x0>ޟo_0c>9-QljZˋ*ѭ:xnt>!/06$zo=To'(XI`GFS|-\:ƲŸ&rV@S)0=v˂40x/}ރ C/N8 \ l(g:N6"wǥ24d-{Ԉ*\a"aZ67(v'L({ViXb!^NG6"p O+ "|Z e?ևɜL}ΠǺz>o*mTzvXtP[-#zukiBQ:Jg?/叹ӌ}3_;h !o3ȖY႟hya0<_xƼ #% ev]!vP 8Wjn9+G,^/n=xy6= {U];S2!A%=d'ΠFY9vnrZ(&?*HZx,T/b>GR+"ޤK CBwEs/L6LዂYL$.|E0UDL O(*o ٝr#@3 r3m8!z@[ [GC7s=w%_2W* ,Ur<ڑ/f܆{ on>z)v]\Y 2#)ǰaSԷ]|M>B!WՉm;>)!#*η1XwEu\]&@:6ʴXi{I8z) c\G3[ڟY-2 *7qKȽc5biz#NJ"g7IK'"dj ^L_ h.IUhn4[ A^ٝKZ #ScZqy4)V7Xb[f c{ [Ac0^3n?w”CEwrf#3Bml77^ƺcuIrWǿ9gv:PoL Ӧq,Pɜ6uLe&c\אt Tfb7ЗٺIJbz]ҧ:Tp;h'zF. R:B6zf 1~Gx"M7S%!09eVԸO4MK %j ;&{GRF&XcG~}Xky^>|Գpp^dzVupPpyVB; yIp{gsLht"V 2|yo!-0وF:LQ0CuZqub- ;^myx(fC:lQҘƪ`U$m؉ށq}HQ[~MdPK@:_&Z 0Xڕ. 4~wFk1P$E/nXP,o0:[Shcs=_K!2)7RSݱW;iȀ 鏊Mɨyv5ȃgv{jӍd.k.1*!mdeq;yBwT] :Ҏzw ozjHI <^u ԿH:ife} Hꇤy?P][!MP}3Bx4H҅˶Lr4ޅcem7'굩@qׁW3K˪pS<{WT&}N3옔Myxhw Dz+i_1`Uѹ}3o@{ [cF>)'LeOU_}5FAb%BPO6e:"o[s?%+ (GOU6ivh:sC^0G} EȦ 4e7@Fǣ9@#@ڝf9jJdxEyQ+!Jm`%әZDvc|F'r_ȈbgS9ܔJZ~R. ]@z~LWD8#D:rA_iU ^gu7JiIdMޫƋ3%]p'YnZ4is {6;mE d"~@nxHxX̶*KxKM r]3ԜuUh#¼„rw֜iX&_V㣪\Sbgx0 bz0A:|=ul곮u†(Ǿn 'avd Mk]K[yçLI)*c*E{RLqKC gL؁_e S %?!6`+ahc@0 7+[ 62lK%\Msښ}x+!T#=K)cti((nI(1µ7P`BF0\WƮ᳉)|ut7fݯ(Pe'E׏03/('O Ra2KSk.+3[KO7T@)Pu$f?uBIyaV'])ҕc(ӹ6O~ i;x▃M`.L5]U#/& o|ޙAO#vJ9#J-%!(< %B/ X,֓k^,Sۻ180"eFe:&hXν:i:Ckm]JXVIԟ1|d`-Գ1pFy8=RR.w.O$y(eOrD:NwbxVځ/ pQccSiÊ^q HɀpD*'Q_O[$}CW ?ј<=lH^Qg}Õš8w,68(l5bCwDYMIz^ÍY=q4r)a y 8ZTJa'#pb/gmܿjfup"oRvCw xyC8 Y>}˶w2cӺ28b6ABndw5ccFBQ XW}xH9~IgTKsٲ܏Z, LJb" ʏ]T#+4lRҚZp=iʂ+9)NpT73 ѮɖkOB53$Bxd`Q6 m6ASvZbSƒ39К۷zji$'lIF6A'-wo(*A}حm@\*% w@QU-j ! Xj,Y֊::T1if4O U$P{r<`lOӉԧ}]#[WDž#y[wLktxuqd!r!d 3SDf`_ 7“ jx2#K/$T-])0mk=\RATPYIE(Q.۸{yQݢ)ʱK}wX#)弒V@SZҪ_7vd{Wv!ڲ#c˟vX#Ӟkӏ#j&ܳ"K=wRq$b2g_R ZŹO_6֖c$/2qDm{D>8Hk8Kzfa2+[.bup$*kQS= XiO9qzkC7*#GRE6':Ȁb'4&h Ca؟7ۦ{lFup ֫6moG3޺&3o@qZ]`3mÄj3HފLk%nR0CCph_8H]*¨yI͊9—ڂt6nd1/"˗D9J?7ѭ~¤RD;".v(ɬOPͤM$U ]hkSu:32`ɅO%ښ(dAXꟄ   =d ;-tǑEKeBɂgSn?랼 ~6q ɑov_sR\z7 xz *8wh)^q0^_UѫkEp+_gHQ=AC+F~wSğZ|Qhш>pQ.XGj#>zAONEi~r9o3%e-=]zS 4jJgE:v0LS(UpE:~?˦<[?kC{1O&cKN[aŔTpU*9L%wHNQS~ՐLOT @Ȗ: %4~Vxd$YYͷ娹S9ٕLk~lL /$_,VyjJ1]Z Rx0Zԟar/`H160E/sMJJ=vvv{P~P4P,OyօVCww՗եSS=n,%&~/upZK[ثKE9dԢmCAobO-"ˮ1绑fv̿V<jۘ0K)tRznpQj]L ;(9MWG!fer!Ksu'Xbͦ]K@RXl(c3aS>gEGo[HeF2ӽsymkyl-%k/4Æ&XNNfrwbmveal7s}%ؙ0(JIB?ěIsxXw^+%E>)Ucu-27FcI$یJϊDRqyϱJ80ݿh _ŸIZEpT#*^rc_#,\N٠K>hg5#@aC GN3 bJ$xzC<?^,-Pf&V*&}#JHVX1xHYÔ>-OMh7_ Q"2) !)7TII9"lb ?c alKSBM>wpK'x&`R%(4I>Hf Oɋ'W7'f^AìI@1WP1ɭI5 vlVJ,"c7~QDNN.}@nwXs\UaG<^ȃ4]%r"xWPj<#ڝn}hQ/Y PR\ezR-Οx"uН1rb0=ߞ+*K4y¤ͭJ?:m 2#q>ɫT]=]k4OA% A YZ